diff --git a/nixos/modules/hardware/cpu/x86-msr.nix b/nixos/modules/hardware/cpu/x86-msr.nix index 56f6e23812ab..9d8216f16d9d 100644 --- a/nixos/modules/hardware/cpu/x86-msr.nix +++ b/nixos/modules/hardware/cpu/x86-msr.nix @@ -107,7 +107,7 @@ in ''; }; - meta = with lib; { - maintainers = with maintainers; [ lorenzleutgeb ]; + meta = { + maintainers = with lib.maintainers; [ lorenzleutgeb ]; }; } diff --git a/nixos/modules/hardware/raid/hpsa.nix b/nixos/modules/hardware/raid/hpsa.nix index effac77bdd5a..25efbe74070c 100644 --- a/nixos/modules/hardware/raid/hpsa.nix +++ b/nixos/modules/hardware/raid/hpsa.nix @@ -37,10 +37,10 @@ let dontStrip = true; - meta = with lib; { + meta = { description = "HP Smart Array CLI"; homepage = "https://downloads.linux.hpe.com/SDR/downloads/MCP/Ubuntu/pool/non-free/"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; platforms = [ "x86_64-linux" ]; maintainers = [ ]; }; diff --git a/nixos/modules/services/desktops/geoclue2.nix b/nixos/modules/services/desktops/geoclue2.nix index 5bf4497dabe0..ffc48d6b9435 100644 --- a/nixos/modules/services/desktops/geoclue2.nix +++ b/nixos/modules/services/desktops/geoclue2.nix @@ -372,7 +372,7 @@ in }; }; - meta = with lib; { - maintainers = with maintainers; [ ] ++ teams.pantheon.members; + meta = { + maintainers = [ ] ++ lib.teams.pantheon.members; }; } diff --git a/nixos/modules/services/desktops/zeitgeist.nix b/nixos/modules/services/desktops/zeitgeist.nix index 5e9cba993016..227287dd2377 100644 --- a/nixos/modules/services/desktops/zeitgeist.nix +++ b/nixos/modules/services/desktops/zeitgeist.nix @@ -7,8 +7,8 @@ }: { - meta = with lib; { - maintainers = with maintainers; [ ] ++ teams.pantheon.members; + meta = { + maintainers = [ ] ++ lib.teams.pantheon.members; }; ###### interface diff --git a/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix index 8ec6b72cb5ea..2a5463fc13be 100644 --- a/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix +++ b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation { dontStrip = true; dontPatchELF = true; - meta = with lib; { + meta = { description = "Brother brscan4 sane backend driver etc files"; homepage = "http://www.brother.com"; - platforms = platforms.linux; - license = licenses.unfree; - maintainers = with maintainers; [ jraygauthier ]; + platforms = lib.platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jraygauthier ]; }; } diff --git a/nixos/modules/services/hardware/sane_extra_backends/brscan5_etc_files.nix b/nixos/modules/services/hardware/sane_extra_backends/brscan5_etc_files.nix index 9ad64c41ee69..074126518b45 100644 --- a/nixos/modules/services/hardware/sane_extra_backends/brscan5_etc_files.nix +++ b/nixos/modules/services/hardware/sane_extra_backends/brscan5_etc_files.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation { dontInstall = true; - meta = with lib; { + meta = { description = "Brother brscan5 sane backend driver etc files"; homepage = "https://www.brother.com"; - platforms = platforms.linux; - license = licenses.unfree; - maintainers = with maintainers; [ mattchrist ]; + platforms = lib.platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mattchrist ]; }; } diff --git a/nixos/modules/services/misc/xmrig.nix b/nixos/modules/services/misc/xmrig.nix index 1d1c0724a892..aaf3806be1fd 100644 --- a/nixos/modules/services/misc/xmrig.nix +++ b/nixos/modules/services/misc/xmrig.nix @@ -65,7 +65,7 @@ in }; }; - meta = with lib; { - maintainers = with maintainers; [ ratsclub ]; + meta = { + maintainers = with lib.maintainers; [ ratsclub ]; }; } diff --git a/nixos/modules/services/web-apps/pretalx.nix b/nixos/modules/services/web-apps/pretalx.nix index 1fae59517aba..00ea66a4c82e 100644 --- a/nixos/modules/services/web-apps/pretalx.nix +++ b/nixos/modules/services/web-apps/pretalx.nix @@ -30,8 +30,8 @@ let in { - meta = with lib; { - maintainers = with maintainers; [ hexa ] ++ teams.c3d2.members; + meta = { + maintainers = with lib.maintainers; [ hexa ] ++ lib.teams.c3d2.members; }; options.services.pretalx = { diff --git a/nixos/modules/services/web-apps/pretix.nix b/nixos/modules/services/web-apps/pretix.nix index 9c28790845a2..c62ae9bcc49e 100644 --- a/nixos/modules/services/web-apps/pretix.nix +++ b/nixos/modules/services/web-apps/pretix.nix @@ -62,8 +62,8 @@ let withRedis = cfg.settings.redis.location != null; in { - meta = with lib; { - maintainers = with maintainers; [ hexa ]; + meta = { + maintainers = with lib.maintainers; [ hexa ]; }; options.services.pretix = { diff --git a/nixos/modules/services/x11/display-managers/account-service-util.nix b/nixos/modules/services/x11/display-managers/account-service-util.nix index 93affdef3fc8..46dbdbd4d1a4 100644 --- a/nixos/modules/services/x11/display-managers/account-service-util.nix +++ b/nixos/modules/services/x11/display-managers/account-service-util.nix @@ -39,7 +39,7 @@ python3.pkgs.buildPythonApplication { chmod +x $out/bin/set-session ''; - meta = with lib; { - maintainers = with maintainers; [ ] ++ teams.pantheon.members; + meta = { + maintainers = [ ] ++ lib.teams.pantheon.members; }; } diff --git a/nixos/modules/services/x11/display-managers/lightdm-greeters/pantheon.nix b/nixos/modules/services/x11/display-managers/lightdm-greeters/pantheon.nix index f598fd1171a2..05e03befdad6 100644 --- a/nixos/modules/services/x11/display-managers/lightdm-greeters/pantheon.nix +++ b/nixos/modules/services/x11/display-managers/lightdm-greeters/pantheon.nix @@ -15,8 +15,8 @@ let in { - meta = with lib; { - maintainers = with maintainers; [ ] ++ teams.pantheon.members; + meta = { + maintainers = [ ] ++ lib.teams.pantheon.members; }; options = { diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix index be0f4bf368bb..c2563b575ebc 100644 --- a/nixos/modules/services/x11/display-managers/lightdm.nix +++ b/nixos/modules/services/x11/display-managers/lightdm.nix @@ -72,8 +72,8 @@ let in { - meta = with lib; { - maintainers = with maintainers; [ ] ++ teams.pantheon.members; + meta = { + maintainers = [ ] ++ lib.teams.pantheon.members; }; # Note: the order in which lightdm greeter modules are imported diff --git a/nixos/tests/systemd-networkd-bridge.nix b/nixos/tests/systemd-networkd-bridge.nix index 80f2670209c7..4acec664f4be 100644 --- a/nixos/tests/systemd-networkd-bridge.nix +++ b/nixos/tests/systemd-networkd-bridge.nix @@ -18,7 +18,7 @@ and each link is labeled with the VLAN we are assigning it in virtualisation.vlans. */ -with builtins; + let commonConf = { systemd.services.systemd-networkd.environment.SYSTEMD_LOG_LEVEL = "debug"; diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix index e25b30b30f70..4159c53657d7 100644 --- a/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix @@ -105,7 +105,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Digital audio workstation"; longDescription = '' Bitwig Studio is a multi-platform music-creation system for @@ -113,9 +113,9 @@ stdenv.mkDerivation rec { editing tools and a super-fast workflow. ''; homepage = "https://www.bitwig.com/"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bfortz michalrus mrVanDalo diff --git a/pkgs/applications/audio/chuck/default.nix b/pkgs/applications/audio/chuck/default.nix index 0c9f2f1932f1..c8bac3d8d664 100644 --- a/pkgs/applications/audio/chuck/default.nix +++ b/pkgs/applications/audio/chuck/default.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { ]; buildFlags = [ (if stdenv.hostPlatform.isDarwin then "mac" else "linux-alsa") ]; - meta = with lib; { + meta = { description = "Programming language for real-time sound synthesis and music creation"; homepage = "http://chuck.cs.princeton.edu"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ ftrvxmtrx ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ftrvxmtrx ]; mainProgram = "chuck"; }; } diff --git a/pkgs/applications/audio/codecserver/default.nix b/pkgs/applications/audio/codecserver/default.nix index f3f39ec81cf1..c39392851d24 100644 --- a/pkgs/applications/audio/codecserver/default.nix +++ b/pkgs/applications/audio/codecserver/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { --replace-fail '=''${exec_prefix}//' '=/' ''; - meta = with lib; { + meta = { homepage = "https://github.com/jketterl/codecserver"; description = "Modular audio codec server"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; mainProgram = "codecserver"; }; } diff --git a/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix b/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix index 784195b23d73..7444e5106cb8 100644 --- a/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix +++ b/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = with lib; { + meta = { description = "Plug-in that adds GTK 3 header bar to the DeaDBeeF music player"; homepage = "https://github.com/saivert/ddb_misc_headerbar_GTK3"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.jtojnar ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.jtojnar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix b/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix index 28b390d837e9..ca704d100a12 100644 --- a/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix +++ b/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { buildFlags = [ "gtk3" ]; - meta = with lib; { + meta = { description = "Plugin for DeaDBeeF audio player that fetches and shows the song’s lyrics"; homepage = "https://github.com/C0rn3j/deadbeef-lyricbar"; - license = licenses.mit; - maintainers = [ maintainers.jtojnar ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jtojnar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/deadbeef/plugins/mpris2.nix b/pkgs/applications/audio/deadbeef/plugins/mpris2.nix index 643cd382ae67..21aceffb970f 100644 --- a/pkgs/applications/audio/deadbeef/plugins/mpris2.nix +++ b/pkgs/applications/audio/deadbeef/plugins/mpris2.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { glib ]; - meta = with lib; { + meta = { description = "MPRISv2 plugin for the DeaDBeeF music player"; homepage = "https://github.com/DeaDBeeF-Player/deadbeef-mpris2-plugin/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; }; }) diff --git a/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix b/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix index 3cac7e91ec29..a5d89de1e3c7 100644 --- a/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix +++ b/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Musical spectrum plugin for the DeaDBeeF music player"; homepage = "https://github.com/cboxdoerfer/ddb_musical_spectrum"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.ddelabru ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.ddelabru ]; }; } diff --git a/pkgs/applications/audio/deadbeef/plugins/playlist-manager.nix b/pkgs/applications/audio/deadbeef/plugins/playlist-manager.nix index f6113cb9e904..23e5d09955e6 100644 --- a/pkgs/applications/audio/deadbeef/plugins/playlist-manager.nix +++ b/pkgs/applications/audio/deadbeef/plugins/playlist-manager.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { "gtk3" ]; - meta = with lib; { + meta = { description = "Removes duplicate and vanished files from the current playlist"; homepage = "https://github.com/kpcee/deadbeef-playlist-manager"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.cmm ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.cmm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix b/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix index c6a1a08d5954..4cd945cc3c4e 100644 --- a/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix +++ b/pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "DeaDBeeF StatusNotifier Plugin"; homepage = "https://github.com/vovochka404/deadbeef-statusnotifier-plugin"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.kurnevsky ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.kurnevsky ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/espeak/default.nix b/pkgs/applications/audio/espeak/default.nix index fa89133c76c1..e4a4bc289e6f 100644 --- a/pkgs/applications/audio/espeak/default.nix +++ b/pkgs/applications/audio/espeak/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { makeFlags="PREFIX=$out DATADIR=$out/share/espeak-data" ''; - meta = with lib; { + meta = { description = "Compact open source software speech synthesizer"; mainProgram = "espeak"; homepage = "https://espeak.sourceforge.net/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/espeak/edit.nix b/pkgs/applications/audio/espeak/edit.nix index b295b792fc97..9e6adde36162 100644 --- a/pkgs/applications/audio/espeak/edit.nix +++ b/pkgs/applications/audio/espeak/edit.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { cp src/espeakedit "$out/bin" ''; - meta = with lib; { + meta = { description = "Phoneme editor for espeak"; mainProgram = "espeakedit"; homepage = "https://espeak.sourceforge.net/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/freqtweak/default.nix b/pkgs/applications/audio/freqtweak/default.nix index bb29d1d61a65..ba6d36c08884 100644 --- a/pkgs/applications/audio/freqtweak/default.nix +++ b/pkgs/applications/audio/freqtweak/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://essej.net/freqtweak/"; description = "Realtime audio frequency spectral manipulation"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; mainProgram = "freqtweak"; }; } diff --git a/pkgs/applications/audio/guitarix/default.nix b/pkgs/applications/audio/guitarix/default.nix index b7ae5c9f1e5e..de9da8bf57e7 100644 --- a/pkgs/applications/audio/guitarix/default.nix +++ b/pkgs/applications/audio/guitarix/default.nix @@ -106,7 +106,7 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = toString [ "-fpermissive" ]; - meta = with lib; { + meta = { description = "Virtual guitar amplifier for Linux running with JACK"; mainProgram = "guitarix"; longDescription = '' @@ -132,10 +132,10 @@ stdenv.mkDerivation (finalAttrs: { crazy sounds never heard before. ''; homepage = "https://github.com/brummer10/guitarix"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lord-valen ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/audio/ladspa-plugins/default.nix b/pkgs/applications/audio/ladspa-plugins/default.nix index 9032f34d5a32..ffc5d741953d 100644 --- a/pkgs/applications/audio/ladspa-plugins/default.nix +++ b/pkgs/applications/audio/ladspa-plugins/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { cp ${automake}/share/automake-*/mkinstalldirs . ''; - meta = with lib; { + meta = { homepage = "http://plugin.org.uk/"; description = "LADSPA format audio plugins"; - license = licenses.gpl2Only; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/audio/lmms/default.nix b/pkgs/applications/audio/lmms/default.nix index 416dd6c06174..cba49b7afe50 100644 --- a/pkgs/applications/audio/lmms/default.nix +++ b/pkgs/applications/audio/lmms/default.nix @@ -86,12 +86,12 @@ mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { description = "DAW similar to FL Studio (music production software)"; mainProgram = "lmms"; homepage = "https://lmms.io"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/mmlgui/default.nix b/pkgs/applications/audio/mmlgui/default.nix index 9b46307cd780..97db1d5a099e 100644 --- a/pkgs/applications/audio/mmlgui/default.nix +++ b/pkgs/applications/audio/mmlgui/default.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation { url = "https://github.com/superctr/mmlgui.git"; }; - meta = with lib; { + meta = { homepage = "https://github.com/superctr/mmlgui"; description = "MML (Music Macro Language) editor and compiler GUI, powered by the ctrmml framework"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; mainProgram = "mmlgui"; }; } diff --git a/pkgs/applications/audio/mopidy/bandcamp.nix b/pkgs/applications/audio/mopidy/bandcamp.nix index c389c1cad22e..f73b376d087b 100644 --- a/pkgs/applications/audio/mopidy/bandcamp.nix +++ b/pkgs/applications/audio/mopidy/bandcamp.nix @@ -27,10 +27,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_bandcamp" ]; - meta = with lib; { + meta = { description = "Mopidy extension for playing music from bandcamp"; homepage = "https://github.com/impliedchaos/mopidy-bandcamp"; - license = licenses.mit; - maintainers = with maintainers; [ desttinghim ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ desttinghim ]; }; } diff --git a/pkgs/applications/audio/mopidy/iris.nix b/pkgs/applications/audio/mopidy/iris.nix index 7b619f41ae8f..b1a9098c7f9b 100644 --- a/pkgs/applications/audio/mopidy/iris.nix +++ b/pkgs/applications/audio/mopidy/iris.nix @@ -32,10 +32,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_iris" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jaedb/Iris"; description = "Fully-functional Mopidy web client encompassing Spotify and many other backends"; - license = licenses.asl20; - maintainers = [ maintainers.rvolosatovs ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.rvolosatovs ]; }; } diff --git a/pkgs/applications/audio/mopidy/jellyfin.nix b/pkgs/applications/audio/mopidy/jellyfin.nix index 6c407dd3c02e..3f4804ae44dc 100644 --- a/pkgs/applications/audio/mopidy/jellyfin.nix +++ b/pkgs/applications/audio/mopidy/jellyfin.nix @@ -28,10 +28,10 @@ pythonPackages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "mopidy_jellyfin" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jellyfin/mopidy-jellyfin"; description = "Mopidy extension for playing audio files from Jellyfin"; - license = licenses.asl20; - maintainers = [ maintainers.pstn ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.pstn ]; }; } diff --git a/pkgs/applications/audio/mopidy/local.nix b/pkgs/applications/audio/mopidy/local.nix index ddb91a8c01ab..e57766f3e901 100644 --- a/pkgs/applications/audio/mopidy/local.nix +++ b/pkgs/applications/audio/mopidy/local.nix @@ -31,10 +31,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_local" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mopidy/mopidy-local"; description = "Mopidy extension for playing music from your local music archive"; - license = licenses.asl20; - maintainers = with maintainers; [ ruuda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ruuda ]; }; } diff --git a/pkgs/applications/audio/mopidy/moped.nix b/pkgs/applications/audio/mopidy/moped.nix index 21e8c5a1cd58..edf9877fcaf6 100644 --- a/pkgs/applications/audio/mopidy/moped.nix +++ b/pkgs/applications/audio/mopidy/moped.nix @@ -29,10 +29,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_moped" ]; - meta = with lib; { + meta = { homepage = "https://github.com/martijnboland/moped"; description = "Web client for Mopidy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; hydraPlatforms = [ ]; }; diff --git a/pkgs/applications/audio/mopidy/mopify.nix b/pkgs/applications/audio/mopidy/mopify.nix index 5fc4a93ed6b7..c56da3886c37 100644 --- a/pkgs/applications/audio/mopidy/mopify.nix +++ b/pkgs/applications/audio/mopidy/mopify.nix @@ -30,10 +30,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_mopify" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dirkgroenen/mopidy-mopify"; description = "Mopidy webclient based on the Spotify webbased interface"; - license = licenses.gpl3; - maintainers = [ maintainers.Gonzih ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.Gonzih ]; }; } diff --git a/pkgs/applications/audio/mopidy/mpd.nix b/pkgs/applications/audio/mopidy/mpd.nix index bcdac00f619b..01babc7d6fa3 100644 --- a/pkgs/applications/audio/mopidy/mpd.nix +++ b/pkgs/applications/audio/mopidy/mpd.nix @@ -24,10 +24,10 @@ pythonPackages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "mopidy_mpd" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mopidy/mopidy-mpd"; description = "Mopidy extension for controlling playback from MPD clients"; - license = licenses.asl20; - maintainers = [ maintainers.tomahna ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.tomahna ]; }; } diff --git a/pkgs/applications/audio/mopidy/mpris.nix b/pkgs/applications/audio/mopidy/mpris.nix index 259a94fa18a3..a58e4aef907e 100644 --- a/pkgs/applications/audio/mopidy/mpris.nix +++ b/pkgs/applications/audio/mopidy/mpris.nix @@ -29,10 +29,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_mpris" ]; - meta = with lib; { + meta = { homepage = "https://www.mopidy.com/"; description = "Mopidy extension for controlling Mopidy through D-Bus using the MPRIS specification"; - license = licenses.asl20; - maintainers = [ maintainers.nickhu ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.nickhu ]; }; } diff --git a/pkgs/applications/audio/mopidy/muse.nix b/pkgs/applications/audio/mopidy/muse.nix index 28bddda5fd51..58ea88c714b2 100644 --- a/pkgs/applications/audio/mopidy/muse.nix +++ b/pkgs/applications/audio/mopidy/muse.nix @@ -30,10 +30,10 @@ pythonPackages.buildPythonApplication rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Mopidy web client with Snapcast support"; homepage = "https://github.com/cristianpb/muse"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/mopidy/notify.nix b/pkgs/applications/audio/mopidy/notify.nix index ea989b951e49..b139f61949b0 100644 --- a/pkgs/applications/audio/mopidy/notify.nix +++ b/pkgs/applications/audio/mopidy/notify.nix @@ -33,10 +33,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_notify" ]; - meta = with lib; { + meta = { homepage = "https://github.com/phijor/mopidy-notify"; description = "Mopidy extension for showing desktop notifications on track change"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/mopidy/podcast.nix b/pkgs/applications/audio/mopidy/podcast.nix index 493e2a1f4bd2..a944c91bece9 100644 --- a/pkgs/applications/audio/mopidy/podcast.nix +++ b/pkgs/applications/audio/mopidy/podcast.nix @@ -32,12 +32,12 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_podcast" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tkem/mopidy-podcast"; description = "Mopidy extension for browsing and playing podcasts"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ - maintainers.daneads + lib.maintainers.daneads ]; }; } diff --git a/pkgs/applications/audio/mopidy/scrobbler.nix b/pkgs/applications/audio/mopidy/scrobbler.nix index e47f85beb1a4..1e5aa6ad9ff0 100644 --- a/pkgs/applications/audio/mopidy/scrobbler.nix +++ b/pkgs/applications/audio/mopidy/scrobbler.nix @@ -29,10 +29,10 @@ pythonPackages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "mopidy_scrobbler" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mopidy/mopidy-scrobbler"; description = "Mopidy extension for scrobbling played tracks to Last.fm"; - license = licenses.asl20; - maintainers = with maintainers; [ jakeisnt ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jakeisnt ]; }; } diff --git a/pkgs/applications/audio/mopidy/somafm.nix b/pkgs/applications/audio/mopidy/somafm.nix index cda376c41281..c3403dfba373 100644 --- a/pkgs/applications/audio/mopidy/somafm.nix +++ b/pkgs/applications/audio/mopidy/somafm.nix @@ -28,10 +28,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_somafm" ]; - meta = with lib; { + meta = { homepage = "https://www.mopidy.com/"; description = "Mopidy extension for playing music from SomaFM"; - license = licenses.mit; - maintainers = [ maintainers.nickhu ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.nickhu ]; }; } diff --git a/pkgs/applications/audio/mopidy/soundcloud.nix b/pkgs/applications/audio/mopidy/soundcloud.nix index 61dbcc2aa640..048fe6298412 100644 --- a/pkgs/applications/audio/mopidy/soundcloud.nix +++ b/pkgs/applications/audio/mopidy/soundcloud.nix @@ -30,9 +30,9 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_soundcloud" ]; - meta = with lib; { + meta = { description = "Mopidy extension for playing music from SoundCloud"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/mopidy/subidy.nix b/pkgs/applications/audio/mopidy/subidy.nix index 6050da53fb29..374e8a535496 100644 --- a/pkgs/applications/audio/mopidy/subidy.nix +++ b/pkgs/applications/audio/mopidy/subidy.nix @@ -32,10 +32,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_subidy" ]; - meta = with lib; { + meta = { homepage = "https://www.mopidy.com/"; description = "Mopidy extension for playing music from a Subsonic-compatible Music Server"; - license = licenses.bsd3; - maintainers = with maintainers; [ wenngle ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ wenngle ]; }; } diff --git a/pkgs/applications/audio/mopidy/tunein.nix b/pkgs/applications/audio/mopidy/tunein.nix index a356e13e76e6..346d8ac7dde6 100644 --- a/pkgs/applications/audio/mopidy/tunein.nix +++ b/pkgs/applications/audio/mopidy/tunein.nix @@ -26,10 +26,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_tunein.tunein" ]; - meta = with lib; { + meta = { description = "Mopidy extension for playing music from tunein"; homepage = "https://github.com/kingosticks/mopidy-tunein"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/mopidy/youtube.nix b/pkgs/applications/audio/mopidy/youtube.nix index a59a25aabe29..576ea7a27203 100644 --- a/pkgs/applications/audio/mopidy/youtube.nix +++ b/pkgs/applications/audio/mopidy/youtube.nix @@ -63,10 +63,10 @@ pythonPackages.buildPythonApplication rec { pythonImportsCheck = [ "mopidy_youtube" ]; - meta = with lib; { + meta = { description = "Mopidy extension for playing music from YouTube"; homepage = "https://github.com/natumbri/mopidy-youtube"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/mopidy/ytmusic.nix b/pkgs/applications/audio/mopidy/ytmusic.nix index 5db613bc3ebe..9a2f26ed0d26 100644 --- a/pkgs/applications/audio/mopidy/ytmusic.nix +++ b/pkgs/applications/audio/mopidy/ytmusic.nix @@ -40,11 +40,11 @@ python.pkgs.buildPythonApplication rec { # has no tests doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/jmcdo29/mopidy-ytmusic/releases/tag/${src.rev}"; description = "Mopidy extension for playing music from YouTube Music"; homepage = "https://github.com/jmcdo29/mopidy-ytmusic"; - license = licenses.asl20; - maintainers = [ maintainers.nickhu ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.nickhu ]; }; } diff --git a/pkgs/applications/audio/mpg123/default.nix b/pkgs/applications/audio/mpg123/default.nix index 20175c813f8a..fb95111cbfe5 100644 --- a/pkgs/applications/audio/mpg123/default.nix +++ b/pkgs/applications/audio/mpg123/default.nix @@ -92,11 +92,11 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Fast console MPEG Audio Player and decoder library"; homepage = "https://mpg123.org"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ ftrvxmtrx ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ ftrvxmtrx ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/audio/open-music-kontrollers/generic.nix b/pkgs/applications/audio/open-music-kontrollers/generic.nix index 4d59d63857c0..a6b601601264 100644 --- a/pkgs/applications/audio/open-music-kontrollers/generic.nix +++ b/pkgs/applications/audio/open-music-kontrollers/generic.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { ] ++ additionalBuildInputs; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = description; homepage = "https://open-music-kontrollers.ch/lv2/${pname}:"; - license = licenses.artistic2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.all; + license = lib.licenses.artistic2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/audio/open-music-kontrollers/mephisto.nix b/pkgs/applications/audio/open-music-kontrollers/mephisto.nix index f64577d53e75..2658a3ca217b 100644 --- a/pkgs/applications/audio/open-music-kontrollers/mephisto.nix +++ b/pkgs/applications/audio/open-music-kontrollers/mephisto.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation (finalAttrs: { lv2lint ]; - meta = with lib; { + meta = { description = "Just-in-time FAUST embedded in an LV2 plugin"; homepage = "https://git.open-music-kontrollers.ch/~hp/mephisto.lv2"; - license = licenses.artistic2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.artistic2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/audio/pianoteq/default.nix b/pkgs/applications/audio/pianoteq/default.nix index fc65c1475f06..969e65253ec0 100644 --- a/pkgs/applications/audio/pianoteq/default.nix +++ b/pkgs/applications/audio/pianoteq/default.nix @@ -99,16 +99,16 @@ let runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.modartt.com/pianoteq"; description = "Software synthesizer that features real-time MIDI-control of digital physically modeled pianos and related instruments"; - license = licenses.unfree; + license = lib.licenses.unfree; inherit mainProgram; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mausch ners ]; diff --git a/pkgs/applications/audio/playbar2/default.nix b/pkgs/applications/audio/playbar2/default.nix index 1eff8ab97ee6..105d37a5529c 100644 --- a/pkgs/applications/audio/playbar2/default.nix +++ b/pkgs/applications/audio/playbar2/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Mpris2 Client for Plasma5"; homepage = "https://github.com/jsmitar/PlayBar2"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ pjones ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pjones ]; }; } diff --git a/pkgs/applications/audio/rakarrack/default.nix b/pkgs/applications/audio/rakarrack/default.nix index 86b074ee6ca8..7bbc20ac0c4c 100644 --- a/pkgs/applications/audio/rakarrack/default.nix +++ b/pkgs/applications/audio/rakarrack/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Multi-effects processor emulating a guitar effects pedalboard"; homepage = "https://rakarrack.sourceforge.net"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix index 6b4656b7967c..582e87fa9b7f 100644 --- a/pkgs/applications/audio/reaper/default.nix +++ b/pkgs/applications/audio/reaper/default.nix @@ -136,18 +136,18 @@ stdenv.mkDerivation rec { passthru.updateScript = ./updater.sh; - meta = with lib; { + meta = { description = "Digital audio workstation"; homepage = "https://www.reaper.fm/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ atinba ilian viraptor diff --git a/pkgs/applications/audio/sfxr-qt/default.nix b/pkgs/applications/audio/sfxr-qt/default.nix index e1caae7c8024..d7662d7e07fd 100644 --- a/pkgs/applications/audio/sfxr-qt/default.nix +++ b/pkgs/applications/audio/sfxr-qt/default.nix @@ -58,12 +58,12 @@ mkDerivation rec { sfxr-qt-starts = nixosTests.sfxr-qt; }; - meta = with lib; { + meta = { homepage = "https://github.com/agateau/sfxr-qt"; description = "Sound effect generator, QtQuick port of sfxr"; mainProgram = "sfxr-qt"; - license = licenses.gpl2; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/snapcast/default.nix b/pkgs/applications/audio/snapcast/default.nix index bd4f11a3da37..3a27ec0e9584 100644 --- a/pkgs/applications/audio/snapcast/default.nix +++ b/pkgs/applications/audio/snapcast/default.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { passthru.tests.snapcast = nixosTests.snapcast; - meta = with lib; { + meta = { description = "Synchronous multi-room audio player"; homepage = "https://github.com/badaix/snapcast"; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/applications/audio/zynaddsubfx/default.nix b/pkgs/applications/audio/zynaddsubfx/default.nix index 9cde53585717..c153d899aa27 100644 --- a/pkgs/applications/audio/zynaddsubfx/default.nix +++ b/pkgs/applications/audio/zynaddsubfx/default.nix @@ -187,7 +187,7 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : ${mruby-zest} ''; - meta = with lib; { + meta = { description = "High quality software synthesizer (${guiName} GUI)"; mainProgram = "zynaddsubfx"; homepage = @@ -196,9 +196,9 @@ stdenv.mkDerivation rec { else "https://zynaddsubfx.sourceforge.io"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ kira-bruneau ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kira-bruneau ]; + platforms = lib.platforms.all; # On macOS: # - Tests don't compile (ld: unknown option: --no-as-needed) diff --git a/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix b/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix index d7b9ad313353..e7b674d85192 100644 --- a/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix +++ b/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { touch "$out/qml/MainWindow.qml" ''; - meta = with lib; { + meta = { description = "Zest Framework used in ZynAddSubFX's UI"; homepage = "https://github.com/mruby-zest"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ kira-bruneau ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ kira-bruneau ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/blockchains/digibyte/default.nix b/pkgs/applications/blockchains/digibyte/default.nix index fa5dad72eb14..04161c6e0ac9 100644 --- a/pkgs/applications/blockchains/digibyte/default.nix +++ b/pkgs/applications/blockchains/digibyte/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { "--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin" ]; - meta = with lib; { + meta = { description = "DigiByte (DGB) is a rapidly growing decentralized, global blockchain"; homepage = "https://digibyte.io/"; - license = licenses.mit; - maintainers = [ maintainers.mmahut ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mmahut ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/blockchains/elements/default.nix b/pkgs/applications/blockchains/elements/default.nix index 1dbda8ed0797..ffe27fa9b87b 100644 --- a/pkgs/applications/blockchains/elements/default.nix +++ b/pkgs/applications/blockchains/elements/default.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Open Source implementation of advanced blockchain features extending the Bitcoin protocol"; longDescription = '' The Elements blockchain platform is a collection of feature experiments and extensions to the @@ -116,8 +116,8 @@ stdenv.mkDerivation rec { tokens. ''; homepage = "https://www.github.com/ElementsProject/elements"; - maintainers = with maintainers; [ prusnak ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ prusnak ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/blockchains/gridcoin-research/default.nix b/pkgs/applications/blockchains/gridcoin-research/default.nix index 011c3a76818e..ba5a14a53845 100644 --- a/pkgs/applications/blockchains/gridcoin-research/default.nix +++ b/pkgs/applications/blockchains/gridcoin-research/default.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "POS-based cryptocurrency that rewards users for participating on the BOINC network"; longDescription = '' A POS-based cryptocurrency that rewards users for participating on the BOINC network, @@ -66,8 +66,8 @@ stdenv.mkDerivation rec { issuing money and contributing to scientific research are carried out collectively by the network ''; homepage = "https://gridcoin.us/"; - license = licenses.mit; - maintainers = with maintainers; [ gigglesquid ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gigglesquid ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/blockchains/groestlcoin/default.nix b/pkgs/applications/blockchains/groestlcoin/default.nix index 564e5b4bc82d..52c7a08d4753 100644 --- a/pkgs/applications/blockchains/groestlcoin/default.nix +++ b/pkgs/applications/blockchains/groestlcoin/default.nix @@ -112,7 +112,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Peer-to-peer electronic cash system"; longDescription = '' Groestlcoin is a free open source peer-to-peer electronic cash system that is @@ -122,8 +122,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://groestlcoin.org/"; downloadPage = "https://github.com/Groestlcoin/groestlcoin/releases/tag/v${version}/"; - maintainers = with maintainers; [ gruve-p ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ gruve-p ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/blockchains/optimism/default.nix b/pkgs/applications/blockchains/optimism/default.nix index d4b915d8cd82..d60a6b12509f 100644 --- a/pkgs/applications/blockchains/optimism/default.nix +++ b/pkgs/applications/blockchains/optimism/default.nix @@ -34,11 +34,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Optimism is Ethereum, scaled"; homepage = "https://github.com/ethereum-optimism/optimism"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "cmd"; }; } diff --git a/pkgs/applications/blockchains/optimism/geth.nix b/pkgs/applications/blockchains/optimism/geth.nix index dfaa8cb15495..488bddd45c1f 100644 --- a/pkgs/applications/blockchains/optimism/geth.nix +++ b/pkgs/applications/blockchains/optimism/geth.nix @@ -38,12 +38,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = ""; homepage = "https://github.com/ethereum-optimism/op-geth"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/applications/blockchains/teos/default.nix b/pkgs/applications/blockchains/teos/default.nix index 0cf5983fc19d..4d687602ab13 100644 --- a/pkgs/applications/blockchains/teos/default.nix +++ b/pkgs/applications/blockchains/teos/default.nix @@ -18,10 +18,10 @@ let hash = "sha256-UrzH9xmhVq12TcSUQ1AihCG1sNGcy/N8LDsZINVKFkY="; }; - meta = with lib; { + meta = { homepage = "https://github.com/talaia-labs/rust-teos"; - license = licenses.mit; - maintainers = with maintainers; [ seberm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seberm ]; }; updateScript = ./update.sh; in diff --git a/pkgs/applications/blockchains/vertcoin/default.nix b/pkgs/applications/blockchains/vertcoin/default.nix index c5abb5aabed0..95a95a8de832 100644 --- a/pkgs/applications/blockchains/vertcoin/default.nix +++ b/pkgs/applications/blockchains/vertcoin/default.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { "--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin" ]; - meta = with lib; { + meta = { description = "Digital currency with mining decentralisation and ASIC resistance as a key focus"; homepage = "https://vertcoin.org/"; - license = licenses.mit; - maintainers = [ maintainers.mmahut ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mmahut ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/blockchains/zcash/default.nix b/pkgs/applications/blockchains/zcash/default.nix index 21f7b133f671..5b019e254e7f 100644 --- a/pkgs/applications/blockchains/zcash/default.nix +++ b/pkgs/applications/blockchains/zcash/default.nix @@ -102,15 +102,15 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Peer-to-peer, anonymous electronic cash system"; homepage = "https://z.cash/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rht tkerber centromere ]; - license = licenses.mit; + license = lib.licenses.mit; # https://github.com/zcash/zcash/issues/4405 broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin; diff --git a/pkgs/applications/display-managers/sddm/unwrapped.nix b/pkgs/applications/display-managers/sddm/unwrapped.nix index e3b2389f2f10..a1d059d26dae 100644 --- a/pkgs/applications/display-managers/sddm/unwrapped.nix +++ b/pkgs/applications/display-managers/sddm/unwrapped.nix @@ -108,14 +108,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = { inherit (nixosTests) sddm; }; - meta = with lib; { + meta = { description = "QML based X11 display manager"; homepage = "https://github.com/sddm/sddm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ttuegel k900 ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/applications/editors/android-studio-for-platform/common.nix b/pkgs/applications/editors/android-studio-for-platform/common.nix index a172d983e3af..7c2a3b2ab3ee 100644 --- a/pkgs/applications/editors/android-studio-for-platform/common.nix +++ b/pkgs/applications/editors/android-studio-for-platform/common.nix @@ -169,14 +169,14 @@ runCommand drvName passthru = { unwrapped = androidStudioForPlatform; }; - meta = with lib; { + meta = { description = "Official IDE for Android platform development"; longDescription = '' Android Studio for Platform (ASfP) is the version of the Android Studio IDE for Android Open Source Project (AOSP) platform developers who build with the Soong build system. ''; homepage = "https://developer.android.com/studio/platform.html"; - license = with licenses; [ + license = with lib.licenses; [ asl20 unfree ]; # The code is under Apache-2.0, but: @@ -188,8 +188,8 @@ runCommand drvName # binaries are also distributed as proprietary software (unlike the # source-code itself). platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ robbins ]; - teams = [ teams.android ]; + maintainers = with lib.maintainers; [ robbins ]; + teams = [ lib.teams.android ]; mainProgram = pname; }; } diff --git a/pkgs/applications/editors/cudatext/default.nix b/pkgs/applications/editors/cudatext/default.nix index d49e05bb7069..15188aa9f1ac 100644 --- a/pkgs/applications/editors/cudatext/default.nix +++ b/pkgs/applications/editors/cudatext/default.nix @@ -128,7 +128,7 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Cross-platform code editor"; longDescription = '' Text/code editor with lite UI. Syntax highlighting for 200+ languages. @@ -137,9 +137,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://cudatext.github.io/"; changelog = "https://cudatext.github.io/history.txt"; - license = licenses.mpl20; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; mainProgram = "cudatext"; }; } diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 743744aeb080..c14e4a52ff95 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -132,12 +132,12 @@ rec { sha256 = "1cn64xj2bm69vnn9db2xxh6kq148v83w5nx3183mrqb59ym3v9kf"; }; - meta = with lib; { + meta = { homepage = "https://github.com/tobiasmelcher/EclipseAceJump"; description = "Provides fast jumps to text based on initial letter"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; }; @@ -155,12 +155,12 @@ rec { hash = "sha256-WK7WxNZHvmMHGycC/12sIKj4wKIhWT8x1Anp3zuggsg="; }; - meta = with lib; { + meta = { homepage = "https://mihai-nita.net/java/#ePluginAEC"; description = "Adds support for ANSI escape sequences in the Eclipse console"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; }; @@ -178,12 +178,12 @@ rec { cp -v $src $dropinDir/${name}.jar ''; - meta = with lib; { + meta = { description = "Powerful parser generator for processing structured text or binary files"; homepage = "https://www.antlr.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsd3; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; }; @@ -201,12 +201,12 @@ rec { cp -v $src $dropinDir/${name}.jar ''; - meta = with lib; { + meta = { description = "Powerful parser generator for processing structured text or binary files"; homepage = "https://www.antlr.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsd3; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; }; @@ -224,12 +224,12 @@ rec { hash = "sha256-LrWCWJWZxsnMiBnTwXdWaXUoyXMYpLqXMUkHEOna2kk="; }; - meta = with lib; { + meta = { homepage = "https://github.com/iloveeclipse/plugins"; description = "Adds new tools to the context menu of text-based editors"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -247,12 +247,12 @@ rec { sha256 = "1n2rzybfcwp3ss2qi0fhd8vm38vdwav8j837lqiqlfcnvzwsk86m"; }; - meta = with lib; { + meta = { homepage = "https://github.com/cypher256/eclipse-encoding-plugin"; description = "Show file encoding and line ending for the active editor in the eclipse status bar"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -267,13 +267,13 @@ rec { hash = "sha256-39AoB5cKRQMFpRaOlrTEsyEKZYVqdTp1tMtlaDjjZ84="; }; - meta = with lib; { + meta = { homepage = "https://eclipse.org/cdt/"; description = "C/C++ development tooling"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; }; @@ -287,12 +287,12 @@ rec { sha256 = "07fymk705x4mwq7vh2i6frsf67jql4bzrkdzhb4n74zb0g1dib60"; }; - meta = with lib; { + meta = { homepage = "https://eclipse-cs.sourceforge.net/"; description = "Checkstyle integration into the Eclipse IDE"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl21; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; }; @@ -311,12 +311,12 @@ rec { sha256 = "0wz61909bhqwzpqwll27ia0cn3anyp81haqx3rj1iq42cbl42h0y"; }; - meta = with lib; { + meta = { homepage = "http://eclipsecolorthemes.org/"; description = "Plugin to switch color themes conveniently and without side effects"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -344,12 +344,12 @@ rec { propagatedBuildInputs = [ zest ]; - meta = with lib; { + meta = { homepage = "http://www2.cs.tum.edu/projects/cup/eclipse.php"; description = "IDE for developing CUP based parsers"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; }; @@ -370,11 +370,11 @@ rec { ''; }; - meta = with lib; { + meta = { homepage = "https://www.drools.org/"; description = "Drools is a Business Rules Management System (BRMS) solution"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; }; }; @@ -388,12 +388,12 @@ rec { sha256 = "0w1kwcjh45p7msv5vpc8i6dsqwrnfmjama6vavpnxlji56jd3c43"; }; - meta = with lib; { + meta = { homepage = "https://www.eclemma.org/"; description = "EclEmma is a free Java code coverage tool for Eclipse"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -411,12 +411,12 @@ rec { sha256 = "10p3mrbp9wi6jhlmmc23qv7frh605a23pqsc7w96569bsfb5wa8q"; }; - meta = with lib; { + meta = { homepage = "http://findbugs.sourceforge.net/"; description = "Plugin that uses static analysis to look for bugs in Java code"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -430,10 +430,10 @@ rec { stripRoot = false; }; - meta = with lib; { + meta = { homepage = "https://github.com/ddekany/jbosstools-freemarker"; description = "Plugin that provides an editor for Apache FreeMarker files"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; }; @@ -447,13 +447,13 @@ rec { sha256 = "sha256-0wHRIls48NGDQzD+wuX79Thgiax+VVYVPJw2Z6NEzsg="; }; - meta = with lib; { + meta = { homepage = "https://github.com/eclipse-embed-cdt/eclipse-plugins"; description = "Embedded C/C++ Development Tools (formerly GNU MCU/ARM Eclipse)"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl20; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl20; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; }; gnuarmeclipse = embed-cdt; # backward compat alias, added 2022-11-04 @@ -509,12 +509,12 @@ rec { propagatedBuildInputs = [ antlr-runtime_4_7 ]; - meta = with lib; { + meta = { description = "Adds support for JSON files to Eclipse"; homepage = "https://github.com/boothen/Json-Eclipse-Plugin"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -532,12 +532,12 @@ rec { sha256 = "0qdzlqcjcm2i4mwhmcdml0am83z1dayrcmf37ji7vmw6iwdk1xmp"; }; - meta = with lib; { + meta = { homepage = "https://github.com/angelozerr/jdt-codemining"; description = "Provides JDT Java CodeMining"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -557,12 +557,12 @@ rec { ''; }; - meta = with lib; { + meta = { homepage = "https://github.com/RustDT"; description = "Rust development tooling"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -576,12 +576,12 @@ rec { sha256 = "0aanqwx3gy1arpbkqd846381hiy6272lzwhfjl94x8jhfykpqqbj"; }; - meta = with lib; { + meta = { homepage = "https://spotbugs.github.io/"; description = "Plugin that uses static analysis to look for bugs in Java code"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl21; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; }; @@ -599,12 +599,12 @@ rec { hash = "sha256-DTE60G+1ZnBT0i6FHuYDQlzwxhwAeXbHN3hgkYbhn8g="; }; - meta = with lib; { + meta = { homepage = "https://testng.org/doc/"; description = "Eclipse plugin for the TestNG testing framework"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; }; @@ -621,13 +621,13 @@ rec { sha256 = "0nyirf6km97q211cxfy01kidxac20m8ba3kk9xj73ykrhsk3cxjp"; }; - meta = with lib; { + meta = { homepage = "https://github.com/vrapper/vrapper"; description = "Wrapper to provide a Vim-like input scheme for moving around and editing text"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = [ maintainers.stumoss ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.stumoss ]; }; }; @@ -645,12 +645,12 @@ rec { sha256 = "1wpyw4z28ka60z36f8m71kz1giajcm26wb9bpv18sjiqwdgx9v0z"; }; - meta = with lib; { + meta = { homepage = "https://github.com/oyse/yedit"; description = "YAML editor plugin for Eclipse"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; }; }; @@ -663,12 +663,12 @@ rec { sha256 = "01scn7cmcrjcp387spjm8ifgwrwwi77ypildandbisfvhj3qqs7m"; }; - meta = with lib; { + meta = { homepage = "https://www.eclipse.org/gef/zest/"; description = "Eclipse Visualization Toolkit"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lua/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lua/default.nix index 31b1613e722e..ce4275dfc227 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lua/default.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lua/default.nix @@ -30,10 +30,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/syohex/emacs-lua"; description = "Lua engine from Emacs Lisp"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nagy ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nagy ]; }; } diff --git a/pkgs/applications/editors/focuswriter/default.nix b/pkgs/applications/editors/focuswriter/default.nix index fed69100a0d7..0bc8aa027561 100644 --- a/pkgs/applications/editors/focuswriter/default.nix +++ b/pkgs/applications/editors/focuswriter/default.nix @@ -41,14 +41,14 @@ stdenv.mkDerivation rec { installFlags = [ "INSTALL_ROOT=$(out)" ]; - meta = with lib; { + meta = { description = "Simple, distraction-free writing environment"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ madjar kashw2 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "https://gottcode.org/focuswriter/"; mainProgram = "focuswriter"; }; diff --git a/pkgs/applications/editors/formiko/default.nix b/pkgs/applications/editors/formiko/default.nix index 2c1f7791fb15..280400d17d26 100644 --- a/pkgs/applications/editors/formiko/default.nix +++ b/pkgs/applications/editors/formiko/default.nix @@ -44,11 +44,11 @@ buildPythonApplication rec { # Needs a display doCheck = false; - meta = with lib; { + meta = { description = "reStructuredText editor and live previewer"; homepage = "https://github.com/ondratu/formiko"; - license = licenses.bsd3; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index 21b8ba0adc9d..25f3eed1e4c1 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Small and lightweight IDE"; longDescription = '' Geany is a small and lightweight Integrated Development Environment. @@ -79,9 +79,9 @@ stdenv.mkDerivation (finalAttrs: { - Plugin interface ''; homepage = "https://www.geany.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ frlan ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ frlan ]; + platforms = lib.platforms.all; mainProgram = "geany"; }; }) diff --git a/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix b/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix index 40dfdc959d50..ee081737e355 100644 --- a/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix +++ b/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix @@ -26,12 +26,12 @@ let pname = "clojupyter"; version = "0.3.3"; - meta = with lib; { + meta = { description = "Jupyter kernel for Clojure"; homepage = "https://github.com/clojupyter/clojupyter"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; # deps from maven - license = licenses.mit; - maintainers = with maintainers; [ thomasjm ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; # deps from maven + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thomasjm ]; platforms = jre.meta.platforms; }; diff --git a/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix b/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix index eab4626a663c..a06afcf42f75 100644 --- a/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix +++ b/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Jupyter kernel for Wolfram Language"; homepage = "https://github.com/WolframResearch/WolframLanguageForJupyter"; - license = licenses.mit; - maintainers = with maintainers; [ fbeffa ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fbeffa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/editors/kakoune/default.nix b/pkgs/applications/editors/kakoune/default.nix index 29b2c4674be7..edf2820fadda 100644 --- a/pkgs/applications/editors/kakoune/default.nix +++ b/pkgs/applications/editors/kakoune/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { ln -s --relative "$autoload_target" autoload ''; - meta = with lib; { + meta = { homepage = "http://kakoune.org/"; description = "Vim inspired text editor"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; mainProgram = "kak"; - maintainers = with maintainers; [ philiptaron ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ philiptaron ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/editors/kakoune/plugins/overrides.nix b/pkgs/applications/editors/kakoune/plugins/overrides.nix index 09d53750ca24..9e42f0cb523e 100644 --- a/pkgs/applications/editors/kakoune/plugins/overrides.nix +++ b/pkgs/applications/editors/kakoune/plugins/overrides.nix @@ -67,15 +67,15 @@ self: super: { ' rc/ansi.kak >$out/share/kak/autoload/plugins/ansi.kak ''; - meta = with lib; { + meta = { description = "Kakoune support for rendering ANSI code"; homepage = "https://github.com/eraserhd/kak-ansi"; - license = licenses.unlicense; - maintainers = with maintainers; [ + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ eraserhd philiptaron ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; @@ -100,15 +100,15 @@ self: super: { chmod +x $out/bin/edit-client ''; - meta = with lib; { + meta = { description = "Kakoune integration with the Plan 9 plumber"; homepage = "https://github.com/eraserhd/kak-plumb"; - license = licenses.unlicense; - maintainers = with maintainers; [ + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ eraserhd philiptaron ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; @@ -134,15 +134,15 @@ self: super: { sha256 = "AAOCG0TY3G188NnkkwMCSbkkNe487F4gwiFWwG9Yo+A="; }; - meta = with lib; { + meta = { description = "Help Kakoune save and restore state between sessions"; homepage = "https://gitlab.com/Screwtapello/kakoune-state-save"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Flakebi philiptaron ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; @@ -179,12 +179,12 @@ self: super: { mv $out/bin/hop-kak $out/share/kak/bin/ ''; - meta = with lib; { + meta = { description = "Hinting brought to Kakoune selections"; homepage = "https://git.sr.ht/~hadronized/hop.kak/"; - license = licenses.bsd3; - maintainers = with maintainers; [ oleina ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ oleina ]; + platforms = lib.platforms.all; }; }; @@ -207,12 +207,12 @@ self: super: { sed -e 's,[|] *lua,|${lua5_3}/bin/lua,' quickscope.kak >$out/share/kak/autoload/plugins/quickscope.kak ''; - meta = with lib; { + meta = { description = "Highlight f and t jump positions"; homepage = "https://sr.ht/~voroskoi/quickscope.kak/"; - license = licenses.unlicense; - maintainers = with maintainers; [ eraserhd ]; - platforms = platforms.all; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ eraserhd ]; + platforms = lib.platforms.all; }; }; @@ -225,12 +225,12 @@ self: super: { rev = "7f187d9da2867a7fda568b2135d29b9c00cfbb94"; hash = "sha256-acBOQuJ8MgsMKdvFV5B2CxuxvXIYsg11n1mHEGqd120="; }; - meta = with lib; { + meta = { description = "Soothing pastel theme for Kakoune"; homepage = "https://github.com/catppuccin/kakoune/"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ philipwilk ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ philipwilk ]; }; }; } diff --git a/pkgs/applications/editors/mindforger/default.nix b/pkgs/applications/editors/mindforger/default.nix index 5f3b23c4e013..f9dbc2383f26 100644 --- a/pkgs/applications/editors/mindforger/default.nix +++ b/pkgs/applications/editors/mindforger/default.nix @@ -100,19 +100,19 @@ stdenv.mkDerivation { mv app/mindforger.app "$out"/Applications/ ''; - meta = with lib; { + meta = { description = "Thinking Notebook & Markdown IDE"; longDescription = '' MindForger is actually more than an editor or IDE - it's human mind inspired personal knowledge management tool ''; homepage = "https://www.mindforger.com"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "aarch64-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ cyplo ]; + maintainers = with lib.maintainers; [ cyplo ]; mainProgram = "mindforger"; }; } diff --git a/pkgs/applications/editors/molsketch/default.nix b/pkgs/applications/editors/molsketch/default.nix index ca8c048fa182..7c08ea25f5de 100644 --- a/pkgs/applications/editors/molsketch/default.nix +++ b/pkgs/applications/editors/molsketch/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { desktop-file-utils ]; - meta = with lib; { + meta = { description = "2D molecule editor"; homepage = "https://sourceforge.net/projects/molsketch/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.moni ]; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.moni ]; mainProgram = "molsketch"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/editors/neovim/gnvim/default.nix b/pkgs/applications/editors/neovim/gnvim/default.nix index 6ca28b5e743d..5fabde8a695b 100644 --- a/pkgs/applications/editors/neovim/gnvim/default.nix +++ b/pkgs/applications/editors/neovim/gnvim/default.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { # GTK fails to initialize doCheck = false; - meta = with lib; { + meta = { description = "GUI for neovim, without any web bloat"; mainProgram = "gnvim"; homepage = "https://github.com/vhakulinen/gnvim"; - license = licenses.mit; - maintainers = with maintainers; [ minijackson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ minijackson ]; }; } diff --git a/pkgs/applications/editors/notepadqq/default.nix b/pkgs/applications/editors/notepadqq/default.nix index 019887ee324b..6f3d1917ef07 100644 --- a/pkgs/applications/editors/notepadqq/default.nix +++ b/pkgs/applications/editors/notepadqq/default.nix @@ -59,12 +59,12 @@ mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://notepadqq.com/"; description = "Notepad++-like editor for the Linux desktop"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.rszibele ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rszibele ]; mainProgram = "notepadqq"; }; } diff --git a/pkgs/applications/editors/okteta/default.nix b/pkgs/applications/editors/okteta/default.nix index 9a8bbfae3208..c66fac69c6bf 100644 --- a/pkgs/applications/editors/okteta/default.nix +++ b/pkgs/applications/editors/okteta/default.nix @@ -50,14 +50,14 @@ mkDerivation rec { "dev" ]; - meta = with lib; { - license = licenses.gpl2; + meta = { + license = lib.licenses.gpl2; description = "Hex editor"; homepage = "https://apps.kde.org/okteta/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ peterhoeg bkchr ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/editors/pinegrow/default.nix b/pkgs/applications/editors/pinegrow/default.nix index 559c9ada84d1..fdcb41335c28 100644 --- a/pkgs/applications/editors/pinegrow/default.nix +++ b/pkgs/applications/editors/pinegrow/default.nix @@ -99,13 +99,13 @@ stdenv.mkDerivation { ''${gappsWrapperArgs[@]} ''; - meta = with lib; { + meta = { homepage = "https://pinegrow.com"; description = "UI Web Editor"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = with licenses; [ unfreeRedistributable ]; - maintainers = with maintainers; [ gador ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with lib.licenses; [ unfreeRedistributable ]; + maintainers = with lib.maintainers; [ gador ]; mainProgram = "pinegrow"; }; } diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix index c6287da7111f..2e066d4afbc3 100644 --- a/pkgs/applications/editors/rednotebook/default.nix +++ b/pkgs/applications/editors/rednotebook/default.nix @@ -52,11 +52,11 @@ buildPythonApplication rec { pythonImportsCheck = [ "rednotebook" ]; - meta = with lib; { + meta = { homepage = "https://rednotebook.sourceforge.io/"; changelog = "https://github.com/jendrikseipp/rednotebook/blob/${src.tag}/CHANGELOG.md"; description = "Modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "rednotebook"; }; diff --git a/pkgs/applications/editors/sublime/3/common.nix b/pkgs/applications/editors/sublime/3/common.nix index 68553f5b96bc..44988cbbaad5 100644 --- a/pkgs/applications/editors/sublime/3/common.nix +++ b/pkgs/applications/editors/sublime/3/common.nix @@ -167,16 +167,16 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Sophisticated text editor for code, markup and prose"; homepage = "https://www.sublimetext.com/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ wmertens demin-dmitriy zimbatm ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/editors/sublime/4/common.nix b/pkgs/applications/editors/sublime/4/common.nix index de0e372f393b..6242e71b856e 100644 --- a/pkgs/applications/editors/sublime/4/common.nix +++ b/pkgs/applications/editors/sublime/4/common.nix @@ -201,17 +201,17 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "Sophisticated text editor for code, markup and prose"; homepage = "https://www.sublimetext.com/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jtojnar wmertens demin-dmitriy zimbatm ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix index 216f21518538..ab19250e69be 100644 --- a/pkgs/applications/editors/texmaker/default.nix +++ b/pkgs/applications/editors/texmaker/default.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { "METAINFODIR=${placeholder "out"}/share/metainfo" ]; - meta = with lib; { + meta = { description = "TeX and LaTeX editor"; longDescription = '' This editor is a full fledged IDE for TeX and @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { spell checking and support of any compilation chain. ''; homepage = "http://www.xm1math.net/texmaker/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cfouche markuskowa ]; diff --git a/pkgs/applications/editors/texworks/default.nix b/pkgs/applications/editors/texworks/default.nix index 68055e2af685..43753c97f1ad 100644 --- a/pkgs/applications/editors/texworks/default.nix +++ b/pkgs/applications/editors/texworks/default.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { ++ lib.optional withLua "-DWITH_LUA=ON" ++ lib.optional withPython "-DWITH_PYTHON=ON"; - meta = with lib; { + meta = { changelog = "https://github.com/TeXworks/texworks/blob/${src.rev}/NEWS"; description = "Simple TeX front-end program inspired by TeXShop"; homepage = "http://www.tug.org/texworks/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = with lib.platforms; linux; mainProgram = "texworks"; }; } diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index aaf9a414efdd..a12d991b1557 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -83,17 +83,17 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free, easy to use and flexible tile map editor"; homepage = "https://www.mapeditor.org/"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 # libtiled and tmxviewer gpl2Plus # all the rest ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dywedir ryan4yin ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/editors/vim/common.nix b/pkgs/applications/editors/vim/common.nix index eb20cd063c8e..48b8c7324cb3 100644 --- a/pkgs/applications/editors/vim/common.nix +++ b/pkgs/applications/editors/vim/common.nix @@ -35,16 +35,16 @@ rec { done ''; - meta = with lib; { + meta = { description = "Most popular clone of the VI editor"; homepage = "https://www.vim.org"; - license = licenses.vim; - maintainers = with maintainers; [ + license = lib.licenses.vim; + maintainers = with lib.maintainers; [ das_j equirosa philiptaron ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "vim"; outputsToInstall = [ "out" diff --git a/pkgs/applications/editors/vim/macvim.nix b/pkgs/applications/editors/vim/macvim.nix index 19266316fd84..0d356f77f762 100644 --- a/pkgs/applications/editors/vim/macvim.nix +++ b/pkgs/applications/editors/vim/macvim.nix @@ -195,12 +195,12 @@ stdenv.mkDerivation (finalAttrs: { (deny file-read* file-write* process-exec mach-lookup (subpath "/usr/local") (with no-log)) ''; - meta = with lib; { + meta = { description = "Vim - the text editor - for macOS"; homepage = "https://macvim.org/"; - license = licenses.vim; - maintainers = with maintainers; [ lilyball ]; - platforms = platforms.darwin; + license = lib.licenses.vim; + maintainers = with lib.maintainers; [ lilyball ]; + platforms = lib.platforms.darwin; hydraPlatforms = [ ]; # hydra can't build this as long as we rely on Xcode and sandboxProfile }; }) diff --git a/pkgs/applications/editors/vim/plugins/non-generated/vim-clap/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/vim-clap/default.nix index 270455c399f0..aec7179e5148 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/vim-clap/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/vim-clap/default.nix @@ -20,12 +20,12 @@ let hash = "sha256-rhCum59GCIAwdi5QgSaPfrALelAIMncNetu81i53Q8c="; }; - meta = with lib; { + meta = { description = "Modern performant fuzzy picker for Vim and NeoVim"; mainProgram = "maple"; homepage = "https://github.com/liuchengxu/vim-clap"; changelog = "https://github.com/liuchengxu/vim-clap/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; diff --git a/pkgs/applications/editors/vim/plugins/nvim-treesitter/overrides.nix b/pkgs/applications/editors/vim/plugins/nvim-treesitter/overrides.nix index 75623015e165..880ca3be7efb 100644 --- a/pkgs/applications/editors/vim/plugins/nvim-treesitter/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/nvim-treesitter/overrides.nix @@ -169,10 +169,9 @@ in }; meta = - with lib; - (super.nvim-treesitter.meta or { }) - // { - license = licenses.asl20; + + (super.nvim-treesitter.meta or { }) // { + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vim/vimacs.nix b/pkgs/applications/editors/vim/vimacs.nix index 09f092be322d..fbd53bf5791d 100644 --- a/pkgs/applications/editors/vim/vimacs.nix +++ b/pkgs/applications/editors/vim/vimacs.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Vim-Improved eMACS: Emacs emulation for Vim"; homepage = "http://algorithm.com.au/code/vimacs"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ millerjason ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 2688d76ba966..5f57a0d57a00 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4051,13 +4051,13 @@ let version = "0.20.0"; sha256 = "c000cbdc090b7d3d8df62a3c87a5d881c78aca5b490b3e591d9841d788a9aa93"; }; - meta = with lib; { + meta = { description = "Syntax highlighting for jinja(2) including HTML, Markdown, YAML, Ruby and LaTeX templates"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=samuelcolvin.jinjahtml"; homepage = "https://github.com/samuelcolvin/jinjahtml-vscode"; changelog = "https://marketplace.visualstudio.com/items/samuelcolvin.jinjahtml/changelog"; - license = licenses.mit; - maintainers = [ maintainers.DataHearth ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.DataHearth ]; }; }; diff --git a/pkgs/applications/editors/vscode/extensions/ms-python.isort/default.nix b/pkgs/applications/editors/vscode/extensions/ms-python.isort/default.nix index 599216b831ea..c0e7d4af4c30 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-python.isort/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-python.isort/default.nix @@ -10,11 +10,11 @@ vscode-utils.buildVscodeMarketplaceExtension { version = "2025.0.0"; hash = "sha256-nwt9Pv084jt9nWvxSXLIWu7981UGSbCgVRTrFfJA6q4="; }; - meta = with lib; { + meta = { description = "Import sorting extension for Visual Studio Code using isort"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.isort"; homepage = "https://github.com/microsoft/vscode-isort"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/applications/emulators/cdemu/common-drv-attrs.nix b/pkgs/applications/emulators/cdemu/common-drv-attrs.nix index f6dc006ad056..edc3361a5fad 100644 --- a/pkgs/applications/emulators/cdemu/common-drv-attrs.nix +++ b/pkgs/applications/emulators/cdemu/common-drv-attrs.nix @@ -12,7 +12,7 @@ url = "mirror://sourceforge/cdemu/${pname}-${version}.tar.xz"; inherit hash; }; - meta = with lib; { + meta = { description = "Suite of tools for emulating optical drives and discs"; longDescription = '' CDEmu consists of: @@ -26,8 +26,8 @@ Optical media emulated by CDemu can be mounted within Linux. Automounting is also allowed. ''; homepage = "https://cdemu.sourceforge.io/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ bendlas ]; }; } diff --git a/pkgs/applications/emulators/cdemu/vhba.nix b/pkgs/applications/emulators/cdemu/vhba.nix index 5e73d2acb5cc..50a0140fd483 100644 --- a/pkgs/applications/emulators/cdemu/vhba.nix +++ b/pkgs/applications/emulators/cdemu/vhba.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = kernel.moduleBuildDependencies; - meta = with lib; { + meta = { description = "Provides a Virtual (SCSI) HBA"; homepage = "https://cdemu.sourceforge.io/about/vhba/"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ bendlas ]; }; } diff --git a/pkgs/applications/emulators/goldberg-emu/default.nix b/pkgs/applications/emulators/goldberg-emu/default.nix index e3100d497681..b8805406a195 100644 --- a/pkgs/applications/emulators/goldberg-emu/default.nix +++ b/pkgs/applications/emulators/goldberg-emu/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { ln -s $out/share/goldberg/tools/find_interfaces.sh $out/bin/find_interfaces ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://gitlab.com/Mr_Goldberg/goldberg_emulator"; changelog = "https://gitlab.com/Mr_Goldberg/goldberg_emulator/-/releases"; @@ -52,8 +52,8 @@ stdenv.mkDerivation rec { use the steam multiplayer apis on a LAN without steam or an internet connection. ''; mainProgram = "lobby_connect"; - license = licenses.lgpl3Only; - platforms = platforms.unix; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/applications/emulators/kega-fusion/default.nix b/pkgs/applications/emulators/kega-fusion/default.nix index 12df94db6f75..c3a9cc999983 100644 --- a/pkgs/applications/emulators/kega-fusion/default.nix +++ b/pkgs/applications/emulators/kega-fusion/default.nix @@ -99,12 +99,12 @@ stdenv.mkDerivation { chmod +x "$out/bin/kega-fusion" ''; - meta = with lib; { + meta = { description = "Sega SG1000, SC3000, SF7000, Master System, Game Gear, Genesis/Megadrive, SVP, Pico, SegaCD/MegaCD and 32X emulator"; homepage = "https://www.carpeludum.com/kega-fusion/"; maintainers = [ ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; platforms = [ "i686-linux" ]; mainProgram = "kega-fusion"; }; diff --git a/pkgs/applications/emulators/wibo/default.nix b/pkgs/applications/emulators/wibo/default.nix index 1909e6b0fb8d..f0d0c6035a64 100644 --- a/pkgs/applications/emulators/wibo/default.nix +++ b/pkgs/applications/emulators/wibo/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { file test.o | grep "ELF 32-bit" ''; - meta = with lib; { + meta = { description = "Quick-and-dirty wrapper to run 32-bit windows EXEs on linux"; longDescription = '' A minimal, low-fuss wrapper that can run really simple command-line @@ -51,8 +51,8 @@ stdenv.mkDerivation rec { than WINE. ''; homepage = "https://github.com/decompals/WiBo"; - license = licenses.mit; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ r-burns ]; platforms = [ "i686-linux" ]; mainProgram = "wibo"; }; diff --git a/pkgs/applications/emulators/yabause/default.nix b/pkgs/applications/emulators/yabause/default.nix index 6e4b807d7bf0..e743e4a5c9bf 100644 --- a/pkgs/applications/emulators/yabause/default.nix +++ b/pkgs/applications/emulators/yabause/default.nix @@ -57,12 +57,12 @@ mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Open-source Sega Saturn emulator"; mainProgram = "yabause"; homepage = "https://yabause.org/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/gis/qgis/unwrapped-ltr.nix b/pkgs/applications/gis/qgis/unwrapped-ltr.nix index a7f219c4c5c3..1ab251f278c3 100644 --- a/pkgs/applications/gis/qgis/unwrapped-ltr.nix +++ b/pkgs/applications/gis/qgis/unwrapped-ltr.nix @@ -199,11 +199,11 @@ mkDerivation rec { # >9k objects, >3h build time on a normal build slot requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { description = "Free and Open Source Geographic Information System"; homepage = "https://www.qgis.org"; - license = licenses.gpl2Plus; - teams = [ teams.geospatial ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.geospatial ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/gis/qgis/unwrapped.nix b/pkgs/applications/gis/qgis/unwrapped.nix index ebeda7df6087..09bec63225ce 100644 --- a/pkgs/applications/gis/qgis/unwrapped.nix +++ b/pkgs/applications/gis/qgis/unwrapped.nix @@ -195,11 +195,11 @@ mkDerivation rec { # >9k objects, >3h build time on a normal build slot requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { description = "Free and Open Source Geographic Information System"; homepage = "https://www.qgis.org"; - license = licenses.gpl2Plus; - teams = [ teams.geospatial ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.geospatial ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/graphics/ImageMagick/6.x.nix b/pkgs/applications/graphics/ImageMagick/6.x.nix index b30cbc91e46d..885053e8445d 100644 --- a/pkgs/applications/graphics/ImageMagick/6.x.nix +++ b/pkgs/applications/graphics/ImageMagick/6.x.nix @@ -155,7 +155,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { homepage = "https://legacy.imagemagick.org/"; changelog = "https://legacy.imagemagick.org/script/changelog.php"; description = "Software suite to create, edit, compose, or convert bitmap images"; @@ -163,9 +163,9 @@ stdenv.mkDerivation (finalAttrs: { "ImageMagick" "MagickWand" ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; knownVulnerabilities = [ "CVE-2019-13136" "CVE-2019-17547" diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index 47ac7b7b66d6..8a33b6e6099c 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -194,7 +194,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "http://www.imagemagick.org/"; changelog = "https://github.com/ImageMagick/Website/blob/main/ChangeLog.md"; description = "Software suite to create, edit, compose, or convert bitmap images"; @@ -202,13 +202,13 @@ stdenv.mkDerivation (finalAttrs: { "ImageMagick" "MagickWand" ]; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dotlambda rhendric faukah ]; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "magick"; }; }) diff --git a/pkgs/applications/graphics/apngasm/2.nix b/pkgs/applications/graphics/apngasm/2.nix index dfa5e5eef2ab..cd518f5df658 100644 --- a/pkgs/applications/graphics/apngasm/2.nix +++ b/pkgs/applications/graphics/apngasm/2.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Create highly optimized Animated PNG files from PNG/TGA images"; mainProgram = "apngasm"; homepage = "https://apngasm.sourceforge.net/"; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/apngasm/default.nix b/pkgs/applications/graphics/apngasm/default.nix index a748883f2795..b5643329c87e 100644 --- a/pkgs/applications/graphics/apngasm/default.nix +++ b/pkgs/applications/graphics/apngasm/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "Create an APNG from multiple PNG files"; homepage = "https://github.com/apngasm/apngasm"; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "apngasm"; }; diff --git a/pkgs/applications/graphics/gimp/2.0/default.nix b/pkgs/applications/graphics/gimp/2.0/default.nix index 6e2d8ced22ed..5e0d2c2b5851 100644 --- a/pkgs/applications/graphics/gimp/2.0/default.nix +++ b/pkgs/applications/graphics/gimp/2.0/default.nix @@ -283,12 +283,12 @@ stdenv.mkDerivation (finalAttrs: { python2Support = withPython; }; - meta = with lib; { + meta = { description = "GNU Image Manipulation Program"; homepage = "https://www.gimp.org/"; maintainers = [ ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "gimp"; }; }) diff --git a/pkgs/applications/graphics/gimp/default.nix b/pkgs/applications/graphics/gimp/default.nix index 05d4676090a9..3e97de6cfee9 100644 --- a/pkgs/applications/graphics/gimp/default.nix +++ b/pkgs/applications/graphics/gimp/default.nix @@ -323,12 +323,12 @@ stdenv.mkDerivation (finalAttrs: { gtk = gtk3; }; - meta = with lib; { + meta = { description = "GNU Image Manipulation Program"; homepage = "https://www.gimp.org/"; - maintainers = with maintainers; [ jtojnar ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ jtojnar ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "gimp"; }; }) diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix index 3e238a406dc3..37f886e25e6d 100644 --- a/pkgs/applications/graphics/gimp/plugins/default.nix +++ b/pkgs/applications/graphics/gimp/plugins/default.nix @@ -143,11 +143,11 @@ lib.makeScope pkgs.newScope ( installTargets = [ "install-admin" ]; - meta = with lib; { + meta = { broken = gimp.majorVersion != "2.0"; description = "Batch Image Manipulation Plugin for GIMP"; homepage = "https://github.com/alessandrofrancesconi/gimp-plugin-bimp"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; }; @@ -207,11 +207,11 @@ lib.makeScope pkgs.newScope ( runHook postInstall ''; - meta = with lib; { + meta = { broken = gimp.majorVersion != "2.0"; description = "GIMP plug-in to do the fourier transform"; homepage = "https://people.via.ecp.fr/~remi/soft/gimp/gimp_plugin_en.php3#fourier"; - license = with licenses; [ gpl3Plus ]; + license = with lib.licenses; [ gpl3Plus ]; }; }; diff --git a/pkgs/applications/graphics/hugin/default.nix b/pkgs/applications/graphics/hugin/default.nix index 618fcc99d259..aad78856a954 100644 --- a/pkgs/applications/graphics/hugin/default.nix +++ b/pkgs/applications/graphics/hugin/default.nix @@ -91,10 +91,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://hugin.sourceforge.io/"; description = "Toolkit for stitching photographs and assembling panoramas, together with an easy to use graphical front end"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/imlibsetroot/default.nix b/pkgs/applications/graphics/imlibsetroot/default.nix index 81976a3160c9..d8612f866964 100644 --- a/pkgs/applications/graphics/imlibsetroot/default.nix +++ b/pkgs/applications/graphics/imlibsetroot/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Xinerama Aware Background Changer"; homepage = "http://robotmonkeys.net/2010/03/30/imlibsetroot/"; - license = licenses.mitAdvertising; - platforms = platforms.linux; - maintainers = with maintainers; [ dwarfmaster ]; + license = lib.licenses.mitAdvertising; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dwarfmaster ]; mainProgram = "imlibsetroot"; }; } diff --git a/pkgs/applications/graphics/inkscape/extensions.nix b/pkgs/applications/graphics/inkscape/extensions.nix index c5c8aa05793d..ec078caaf7cb 100644 --- a/pkgs/applications/graphics/inkscape/extensions.nix +++ b/pkgs/applications/graphics/inkscape/extensions.nix @@ -34,12 +34,12 @@ runHook postInstall ''; - meta = with lib; { + meta = { description = "This is an extension for creating hex grids in Inkscape. It can also be used to make brick patterns of staggered rectangles"; homepage = "https://github.com/lifelike/hexmapextension"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.raboof ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.raboof ]; + platforms = lib.platforms.all; }; }; inkcut = ( diff --git a/pkgs/applications/graphics/inkscape/extensions/applytransforms/default.nix b/pkgs/applications/graphics/inkscape/extensions/applytransforms/default.nix index 0405b961605c..85a45e1826ba 100644 --- a/pkgs/applications/graphics/inkscape/extensions/applytransforms/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/applytransforms/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Inkscape extension which removes all matrix transforms by applying them recursively to shapes"; homepage = "https://github.com/Klowner/inkscape-applytransforms"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix b/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix index 8bb0e7f39458..663a8b14c8de 100644 --- a/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix @@ -84,11 +84,11 @@ python3.pkgs.buildPythonApplication rec { wrapPythonProgramsIn "$out/share/inkscape/extensions/" "$out $pythonPath" ''; - meta = with lib; { + meta = { description = "Extension to drive Silhouette vinyl cutters (e.g. Cameo, Portrait, Curio series) from within Inkscape"; homepage = "https://github.com/fablabnbg/inkscape-silhouette"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ jfly ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jfly ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/graphics/inkscape/extensions/textext/default.nix b/pkgs/applications/graphics/inkscape/extensions/textext/default.nix index 25d9fd64f23a..aada64492ece 100644 --- a/pkgs/applications/graphics/inkscape/extensions/textext/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/textext/default.nix @@ -117,11 +117,11 @@ python3.pkgs.buildPythonApplication rec { cp ${launchScript} $out/share/inkscape/extensions/textext/launch.sh ''; - meta = with lib; { + meta = { description = "Re-editable LaTeX graphics for Inkscape"; homepage = "https://textext.github.io/textext/"; - license = licenses.bsd3; - maintainers = [ maintainers.raboof ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.raboof ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix index 6744c10d171e..c8faee73dc37 100644 --- a/pkgs/applications/graphics/luminance-hdr/default.nix +++ b/pkgs/applications/graphics/luminance-hdr/default.nix @@ -81,10 +81,10 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { homepage = "https://qtpfsgui.sourceforge.net/"; description = "Complete open source solution for HDR photography"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/nufraw/default.nix b/pkgs/applications/graphics/nufraw/default.nix index 4cc234d9c138..28c1f0b369fa 100644 --- a/pkgs/applications/graphics/nufraw/default.nix +++ b/pkgs/applications/graphics/nufraw/default.nix @@ -80,7 +80,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://nufraw.sourceforge.io/"; description = "Utility to read and manipulate raw images from digital cameras"; longDescription = '' @@ -89,8 +89,8 @@ stdenv.mkDerivation rec { Nufraw offers the same features (gimp plugin, batch, ecc) and the same quality of ufraw in a brand new improved user interface. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ asbachb ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ asbachb ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/sane/frontends.nix b/pkgs/applications/graphics/sane/frontends.nix index a4615d6cc625..684b477187f8 100644 --- a/pkgs/applications/graphics/sane/frontends.nix +++ b/pkgs/applications/graphics/sane/frontends.nix @@ -71,10 +71,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Scanner Access Now Easy"; homepage = "http://www.sane-project.org/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/scantailor/advanced.nix b/pkgs/applications/graphics/scantailor/advanced.nix index 17402ceac1a4..ca78f7d2162e 100644 --- a/pkgs/applications/graphics/scantailor/advanced.nix +++ b/pkgs/applications/graphics/scantailor/advanced.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { libsForQt5.qtbase ]; - meta = with lib; { + meta = { homepage = "https://github.com/vigri/scantailor-advanced"; description = "Interactive post-processing tool for scanned pages (vigri's fork)"; mainProgram = "scantailor"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = with platforms; gnu ++ linux ++ darwin; + platforms = with lib.platforms; gnu ++ linux ++ darwin; }; } diff --git a/pkgs/applications/graphics/scantailor/universal.nix b/pkgs/applications/graphics/scantailor/universal.nix index 954a50661f9a..2f8059f00774 100644 --- a/pkgs/applications/graphics/scantailor/universal.nix +++ b/pkgs/applications/graphics/scantailor/universal.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { libsForQt5.qttools ]; - meta = with lib; { + meta = { description = "Interactive post-processing tool for scanned pages"; homepage = "https://github.com/trufanov-nok/scantailor"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ unclamped ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ unclamped ]; + platforms = lib.platforms.unix; mainProgram = "scantailor-universal-cli"; }; } diff --git a/pkgs/applications/graphics/sxiv/default.nix b/pkgs/applications/graphics/sxiv/default.nix index b57e0c467de6..4fcd2792617e 100644 --- a/pkgs/applications/graphics/sxiv/default.nix +++ b/pkgs/applications/graphics/sxiv/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { install -Dt $out/share/applications sxiv.desktop ''; - meta = with lib; { + meta = { description = "Simple X Image Viewer"; homepage = "https://github.com/muennich/sxiv"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.linux; - maintainers = with maintainers; [ h7x4 ]; + maintainers = with lib.maintainers; [ h7x4 ]; mainProgram = "sxiv"; }; } diff --git a/pkgs/applications/graphics/zgv/default.nix b/pkgs/applications/graphics/zgv/default.nix index 25690e80480a..f1f9fca80b4a 100644 --- a/pkgs/applications/graphics/zgv/default.nix +++ b/pkgs/applications/graphics/zgv/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { cp src/zgv $out/bin ''; - meta = with lib; { + meta = { homepage = "http://www.svgalib.org/rus/zgv/"; description = "Picture viewer with a thumbnail-based selector"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "zgv"; }; } diff --git a/pkgs/applications/misc/ArchiSteamFarm/default.nix b/pkgs/applications/misc/ArchiSteamFarm/default.nix index 8951afb663bd..f2c3e1543b2c 100644 --- a/pkgs/applications/misc/ArchiSteamFarm/default.nix +++ b/pkgs/applications/misc/ArchiSteamFarm/default.nix @@ -100,11 +100,11 @@ buildDotnetModule rec { ui = callPackage ./web-ui { }; }; - meta = with lib; { + meta = { description = "Application with primary purpose of idling Steam cards from multiple accounts simultaneously"; homepage = "https://github.com/JustArchiNET/ArchiSteamFarm"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "ArchiSteamFarm"; - maintainers = with maintainers; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix b/pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix index c86b35ecf4ed..f4acdd4dc505 100644 --- a/pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix +++ b/pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix @@ -29,9 +29,9 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Official web interface for ASF"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/JustArchiNET/ASF-ui"; inherit (ArchiSteamFarm.meta) maintainers platforms; }; diff --git a/pkgs/applications/misc/ape/clex.nix b/pkgs/applications/misc/ape/clex.nix index 25914f8fdb97..199871f35bdc 100644 --- a/pkgs/applications/misc/ape/clex.nix +++ b/pkgs/applications/misc/ape/clex.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { cp clex_lexicon.pl $out ''; - meta = with lib; { + meta = { description = "Large lexicon for APE (~100,000 entries)"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ yrashk ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ yrashk ]; }; } diff --git a/pkgs/applications/misc/ape/default.nix b/pkgs/applications/misc/ape/default.nix index e667e71f9d70..b8af52d2aa47 100644 --- a/pkgs/applications/misc/ape/default.nix +++ b/pkgs/applications/misc/ape/default.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { makeWrapper $out/ape.exe $out/bin/ape --add-flags ace ''; - meta = with lib; { + meta = { description = description; homepage = "https://github.com/Attempto/APE"; license = license; - platforms = platforms.unix; - maintainers = with maintainers; [ yrashk ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ yrashk ]; mainProgram = "ape"; }; } diff --git a/pkgs/applications/misc/avalonia-ilspy/default.nix b/pkgs/applications/misc/avalonia-ilspy/default.nix index 45e3a7f02b70..d9984f028989 100644 --- a/pkgs/applications/misc/avalonia-ilspy/default.nix +++ b/pkgs/applications/misc/avalonia-ilspy/default.nix @@ -108,21 +108,21 @@ buildDotnetModule rec { }) ]; - meta = with lib; { + meta = { description = ".NET assembly browser and decompiler"; homepage = "https://github.com/icsharpcode/AvaloniaILSpy"; - license = with licenses; [ + license = with lib.licenses; [ mit # third party dependencies lgpl21Only mspl ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode binaryNativeCode ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ AngryAnt emilytrau ]; diff --git a/pkgs/applications/misc/bfcal/default.nix b/pkgs/applications/misc/bfcal/default.nix index c309652c6d48..a8ce4e6d7b3c 100644 --- a/pkgs/applications/misc/bfcal/default.nix +++ b/pkgs/applications/misc/bfcal/default.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { qtbase ]; - meta = with lib; { + meta = { description = "Quickly display a calendar"; mainProgram = "bfcal"; homepage = "https://git.sr.ht/~bitfehler/bfcal"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = qtbase.meta.platforms; - maintainers = with maintainers; [ laalsaas ]; + maintainers = with lib.maintainers; [ laalsaas ]; }; } diff --git a/pkgs/applications/misc/blucontrol/wrapper.nix b/pkgs/applications/misc/blucontrol/wrapper.nix index 714f2cf7f54d..eb004835ae20 100644 --- a/pkgs/applications/misc/blucontrol/wrapper.nix +++ b/pkgs/applications/misc/blucontrol/wrapper.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { preferLocalBuild = true; allowSubstitutes = false; - meta = with lib; { + meta = { description = "Configurable blue light filter"; mainProgram = "blucontrol"; longDescription = '' @@ -31,9 +31,9 @@ stdenv.mkDerivation { Configuration is done in Haskell in the style of xmonad. Blucontrol makes use of monad transformers and allows monadic calculation of gamma values and recoloring. The user chooses, what will be captured in the monadic state. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/jumper149/blucontrol"; - platforms = platforms.unix; - maintainers = with maintainers; [ jumper149 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jumper149 ]; }; } diff --git a/pkgs/applications/misc/bluetooth_battery/default.nix b/pkgs/applications/misc/bluetooth_battery/default.nix index 0eff5be2206f..bb78a4bb8655 100644 --- a/pkgs/applications/misc/bluetooth_battery/default.nix +++ b/pkgs/applications/misc/bluetooth_battery/default.nix @@ -25,12 +25,12 @@ buildPythonApplication rec { cp $src/bluetooth_battery.py $out/bin/bluetooth_battery ''; - meta = with lib; { + meta = { description = "Fetch the battery charge level of some Bluetooth headsets"; mainProgram = "bluetooth_battery"; homepage = "https://github.com/TheWeirdDev/Bluetooth_Headset_Battery_Level"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ cheriimoya ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ cheriimoya ]; }; } diff --git a/pkgs/applications/misc/cambrinary/default.nix b/pkgs/applications/misc/cambrinary/default.nix index f659a043e09a..2b79f962ecbd 100644 --- a/pkgs/applications/misc/cambrinary/default.nix +++ b/pkgs/applications/misc/cambrinary/default.nix @@ -30,12 +30,12 @@ buildPythonApplication { pythonImportsCheck = [ "cambrinary" ]; - meta = with lib; { + meta = { description = "Cambridge dictionary in a terminal"; mainProgram = "cambrinary"; homepage = "https://github.com/xueyuanl/cambrinary"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/applications/misc/cask-server/default.nix b/pkgs/applications/misc/cask-server/default.nix index 2c769d9c9396..b642494ea28d 100644 --- a/pkgs/applications/misc/cask-server/default.nix +++ b/pkgs/applications/misc/cask-server/default.nix @@ -22,16 +22,16 @@ mkDerivation rec { extra-cmake-modules ]; - meta = with lib; { + meta = { description = "Public server and API to interface with Cask features"; mainProgram = "CaskServer"; homepage = "https://github.com/Nitrux/cask-server"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 lgpl21Plus cc0 ]; - maintainers = with maintainers; [ onny ]; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/misc/coolreader/default.nix b/pkgs/applications/misc/coolreader/default.nix index 992046629577..13f13ce3fde4 100644 --- a/pkgs/applications/misc/coolreader/default.nix +++ b/pkgs/applications/misc/coolreader/default.nix @@ -32,13 +32,13 @@ mkDerivation rec { libunibreak ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/buggins/coolreader"; description = "Cross platform open source e-book reader"; mainProgram = "cr3"; - license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80 + license = lib.licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80 maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix index 1275693f7895..96417baaac4d 100644 --- a/pkgs/applications/misc/cura/default.nix +++ b/pkgs/applications/misc/cura/default.nix @@ -83,12 +83,12 @@ mkDerivation rec { wrapQtApp $out/bin/cura ''; - meta = with lib; { + meta = { description = "3D printer / slicing GUI built on top of the Uranium framework"; mainProgram = "cura"; homepage = "https://github.com/Ultimaker/Cura"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/misc/cura/plugins.nix b/pkgs/applications/misc/cura/plugins.nix index fe10b5e8c623..122ab49b24bc 100644 --- a/pkgs/applications/misc/cura/plugins.nix +++ b/pkgs/applications/misc/cura/plugins.nix @@ -31,10 +31,10 @@ let cp -rv . $out/lib/cura/plugins/OctoPrintPlugin/ ''; - meta = with lib; { + meta = { description = "Enables printing directly to OctoPrint and monitoring the process"; homepage = "https://github.com/fieldOfView/Cura-OctoPrintPlugin"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; maintainers = [ ]; }; }; @@ -70,10 +70,10 @@ let cp -rv . $out/lib/cura/plugins/RawMouse/ ''; - meta = with lib; { + meta = { description = "Cura plugin for HID mice such as 3Dconnexion spacemouse"; homepage = "https://github.com/smartavionics/RawMouse"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; maintainers = [ ]; }; }; diff --git a/pkgs/applications/misc/curaengine/default.nix b/pkgs/applications/misc/curaengine/default.nix index 39f94f8afa79..d68826a63009 100644 --- a/pkgs/applications/misc/curaengine/default.nix +++ b/pkgs/applications/misc/curaengine/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Powerful, fast and robust engine for processing 3D models into 3D printing instruction"; homepage = "https://github.com/Ultimaker/CuraEngine"; - license = licenses.agpl3Only; - platforms = platforms.linux; + license = lib.licenses.agpl3Only; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "CuraEngine"; }; diff --git a/pkgs/applications/misc/curaengine/stable.nix b/pkgs/applications/misc/curaengine/stable.nix index 103f081fe150..4eb072cace89 100644 --- a/pkgs/applications/misc/curaengine/stable.nix +++ b/pkgs/applications/misc/curaengine/stable.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { cp build/CuraEngine $out/bin/ ''; - meta = with lib; { + meta = { description = "Engine for processing 3D models into 3D printing instructions"; mainProgram = "CuraEngine"; homepage = "https://github.com/Ultimaker/CuraEngine"; - license = licenses.agpl3Plus; - platforms = platforms.linux; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/ddcui/default.nix b/pkgs/applications/misc/ddcui/default.nix index 7016c5c74617..a7768e99dd07 100644 --- a/pkgs/applications/misc/ddcui/default.nix +++ b/pkgs/applications/misc/ddcui/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { ddcutil ]; - meta = with lib; { + meta = { description = "Graphical user interface for ddcutil - control monitor settings"; mainProgram = "ddcui"; homepage = "https://www.ddcutil.com/ddcui_main/"; - license = licenses.gpl2; - maintainers = with maintainers; [ nh2 ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ nh2 ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/misc/diff-pdf/default.nix b/pkgs/applications/misc/diff-pdf/default.nix index 0adaf746640f..88d75a75fbe7 100644 --- a/pkgs/applications/misc/diff-pdf/default.nix +++ b/pkgs/applications/misc/diff-pdf/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { preConfigure = "./bootstrap"; - meta = with lib; { + meta = { homepage = "https://vslavik.github.io/diff-pdf/"; description = "Simple tool for visually comparing two PDF files"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "diff-pdf"; }; } diff --git a/pkgs/applications/misc/ding/default.nix b/pkgs/applications/misc/ding/default.nix index a80f3061241c..728293c004a2 100644 --- a/pkgs/applications/misc/ding/default.nix +++ b/pkgs/applications/misc/ding/default.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { } --prefix ASPELL_CONF : "\"prefix ${aspellEnv};\"" ''; - meta = with lib; { + meta = { description = "Simple and fast dictionary lookup tool"; mainProgram = "ding"; homepage = "https://www-user.tu-chemnitz.de/~fri/ding/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; # homepage says: unix-like except darwin - maintainers = [ maintainers.exi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; # homepage says: unix-like except darwin + maintainers = [ lib.maintainers.exi ]; }; } diff --git a/pkgs/applications/misc/dupeguru/default.nix b/pkgs/applications/misc/dupeguru/default.nix index 88a7f94b6b9c..62db4a697e92 100644 --- a/pkgs/applications/misc/dupeguru/default.nix +++ b/pkgs/applications/misc/dupeguru/default.nix @@ -70,13 +70,13 @@ python3Packages.buildPythonApplication rec { wrapPythonProgramsIn "$out/share/dupeguru" "$out $pythonPath" ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "GUI tool to find duplicate files in a system"; homepage = "https://github.com/arsenetar/dupeguru"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ novoxd ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ novoxd ]; mainProgram = "dupeguru"; }; } diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix index 8a55b89bf897..fe18804b1be3 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -155,7 +155,7 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = callPackage ./update.nix { }; - meta = with lib; { + meta = { description = "Lightweight Bitcoin wallet"; longDescription = '' An easy-to-use Bitcoin client featuring wallets generated from @@ -166,9 +166,9 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://electrum.org/"; downloadPage = "https://electrum.org/#download"; changelog = "https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ joachifm np prusnak diff --git a/pkgs/applications/misc/electrum/grs.nix b/pkgs/applications/misc/electrum/grs.nix index 2956977c914c..ee1ad77bd46a 100644 --- a/pkgs/applications/misc/electrum/grs.nix +++ b/pkgs/applications/misc/electrum/grs.nix @@ -128,7 +128,7 @@ python3.pkgs.buildPythonApplication { $out/bin/electrum-grs help >/dev/null ''; - meta = with lib; { + meta = { description = "Lightweight Groestlcoin wallet"; longDescription = '' An easy-to-use Groestlcoin client featuring wallets generated from @@ -138,9 +138,9 @@ python3.pkgs.buildPythonApplication { ''; homepage = "https://groestlcoin.org/"; downloadPage = "https://github.com/Groestlcoin/electrum-grs/releases/tag/v${version}"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ gruve-p ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ gruve-p ]; mainProgram = "electrum-grs"; }; } diff --git a/pkgs/applications/misc/electrum/ltc.nix b/pkgs/applications/misc/electrum/ltc.nix index 338b5fc316e8..439b12f7555d 100644 --- a/pkgs/applications/misc/electrum/ltc.nix +++ b/pkgs/applications/misc/electrum/ltc.nix @@ -174,7 +174,7 @@ python3.pkgs.buildPythonApplication { $out/bin/electrum-ltc help >/dev/null ''; - meta = with lib; { + meta = { description = "Lightweight Litecoin Client"; mainProgram = "electrum-ltc"; longDescription = '' @@ -184,8 +184,8 @@ python3.pkgs.buildPythonApplication { your litecoins to theft or hardware failure. ''; homepage = "https://electrum-ltc.org/"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ bbjubjub ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bbjubjub ]; }; } diff --git a/pkgs/applications/misc/elf-dissector/default.nix b/pkgs/applications/misc/elf-dissector/default.nix index 96df768f8380..d703d4d08ff2 100644 --- a/pkgs/applications/misc/elf-dissector/default.nix +++ b/pkgs/applications/misc/elf-dissector/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { libdwarf ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/sdk/elf-dissector"; description = "Tools for inspecting, analyzing and optimizing ELF files"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ philiptaron ]; }; diff --git a/pkgs/applications/misc/evtest-qt/default.nix b/pkgs/applications/misc/evtest-qt/default.nix index 2dbb4f17f84d..bd009007d3cc 100644 --- a/pkgs/applications/misc/evtest-qt/default.nix +++ b/pkgs/applications/misc/evtest-qt/default.nix @@ -36,12 +36,12 @@ mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Simple input device tester for linux with Qt GUI"; mainProgram = "evtest-qt"; homepage = "https://github.com/Grumbel/evtest-qt"; - maintainers = with maintainers; [ alexarice ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ alexarice ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/applications/misc/goldendict/default.nix b/pkgs/applications/misc/goldendict/default.nix index b34acb71035d..672a300a6c2c 100644 --- a/pkgs/applications/misc/goldendict/default.nix +++ b/pkgs/applications/misc/goldendict/default.nix @@ -103,14 +103,14 @@ stdenv.mkDerivation rec { mv GoldenDict.app $out/Applications ''; - meta = with lib; { + meta = { homepage = "http://goldendict.org/"; description = "Feature-rich dictionary lookup program"; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "goldendict"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sikmir ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/applications/misc/googleearth-pro/default.nix b/pkgs/applications/misc/googleearth-pro/default.nix index f8f8dba0321b..5684d80f6e47 100644 --- a/pkgs/applications/misc/googleearth-pro/default.nix +++ b/pkgs/applications/misc/googleearth-pro/default.nix @@ -128,16 +128,16 @@ mkDerivation rec { --set QT_XKB_CONFIG_ROOT "${xkeyboardconfig}/share/X11/xkb" ''; - meta = with lib; { + meta = { description = "World sphere viewer"; homepage = "https://www.google.com/earth/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ shamilton xddxdd ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; knownVulnerabilities = [ "Includes vulnerable versions of bundled libraries: openssl, ffmpeg, gdal, and proj." ]; diff --git a/pkgs/applications/misc/gphoto2/default.nix b/pkgs/applications/misc/gphoto2/default.nix index 7356267c5f59..2c5e1483f332 100644 --- a/pkgs/applications/misc/gphoto2/default.nix +++ b/pkgs/applications/misc/gphoto2/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { readline ]; - meta = with lib; { + meta = { description = "Ready to use set of digital camera software applications"; longDescription = '' @@ -48,9 +48,9 @@ stdenv.mkDerivation rec { ''; homepage = "http://www.gphoto.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.jcumming ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.jcumming ]; mainProgram = "gphoto2"; }; } diff --git a/pkgs/applications/misc/gphoto2/gphotofs.nix b/pkgs/applications/misc/gphoto2/gphotofs.nix index c34a0370140e..9232705e06d3 100644 --- a/pkgs/applications/misc/gphoto2/gphotofs.nix +++ b/pkgs/applications/misc/gphoto2/gphotofs.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { libtool ]; - meta = with lib; { + meta = { description = "Fuse FS to mount a digital camera"; mainProgram = "gphotofs"; homepage = "http://www.gphoto.org/"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; - license = with licenses; [ + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ lgpl2 gpl2 ]; diff --git a/pkgs/applications/misc/hue-plus/default.nix b/pkgs/applications/misc/hue-plus/default.nix index c2c545d3b8c0..0c73820b3cda 100644 --- a/pkgs/applications/misc/hue-plus/default.nix +++ b/pkgs/applications/misc/hue-plus/default.nix @@ -37,13 +37,13 @@ python3Packages.buildPythonApplication { "\${qtWrapperArgs[@]}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/kusti8/hue-plus"; description = "Windows and Linux driver in Python for the NZXT Hue+"; longDescription = '' A cross-platform driver in Python for the NZXT Hue+. Supports all functionality except FPS, CPU, and GPU lighting. ''; - license = licenses.gpl3Only; - maintainers = with maintainers; [ garaiza-93 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ garaiza-93 ]; }; } diff --git a/pkgs/applications/misc/huggle/default.nix b/pkgs/applications/misc/huggle/default.nix index 5fc2aabfb390..59d375ed1cf9 100644 --- a/pkgs/applications/misc/huggle/default.nix +++ b/pkgs/applications/misc/huggle/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { installTargets = [ "install" ]; - meta = with lib; { + meta = { description = "Anti-vandalism tool for use on MediaWiki-based projects"; mainProgram = "huggle"; homepage = "https://github.com/huggle/huggle3-qt-lx"; - license = licenses.gpl3Only; - maintainers = [ maintainers.fee1-dead ]; - platforms = platforms.x86_64; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.fee1-dead ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/applications/misc/ikiwiki/default.nix b/pkgs/applications/misc/ikiwiki/default.nix index 8f9b3e2e00c0..873074ca711a 100644 --- a/pkgs/applications/misc/ikiwiki/default.nix +++ b/pkgs/applications/misc/ikiwiki/default.nix @@ -135,11 +135,11 @@ stdenv.mkDerivation rec { checkTarget = "test"; doCheck = true; - meta = with lib; { + meta = { description = "Wiki compiler, storing pages and history in a RCS"; homepage = "http://ikiwiki.info/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.wentasah ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.wentasah ]; }; } diff --git a/pkgs/applications/misc/k4dirstat/default.nix b/pkgs/applications/misc/k4dirstat/default.nix index aaf4d0dd8cb0..b9377ea69e4d 100644 --- a/pkgs/applications/misc/k4dirstat/default.nix +++ b/pkgs/applications/misc/k4dirstat/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { command = "k4dirstat -platform offscreen --version &>/dev/stdout"; }; - meta = with lib; { + meta = { homepage = "https://github.com/jeromerobert/k4dirstat"; description = "Small utility program that sums up disk usage for directory trees"; mainProgram = "k4dirstat"; - license = licenses.gpl2; - maintainers = [ maintainers.raboof ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.raboof ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/kiwix/default.nix b/pkgs/applications/misc/kiwix/default.nix index fd7690db657a..73e4fef2f132 100644 --- a/pkgs/applications/misc/kiwix/default.nix +++ b/pkgs/applications/misc/kiwix/default.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Offline reader for Web content"; mainProgram = "kiwix-desktop"; homepage = "https://kiwix.org"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ greg ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ greg ]; }; } diff --git a/pkgs/applications/misc/kiwix/lib.nix b/pkgs/applications/misc/kiwix/lib.nix index 93381ecce06b..d6f02713b208 100644 --- a/pkgs/applications/misc/kiwix/lib.nix +++ b/pkgs/applications/misc/kiwix/lib.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Common code base for all Kiwix ports"; homepage = "https://kiwix.org"; changelog = "https://github.com/kiwix/libkiwix/releases/tag/${finalAttrs.version}"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ colinsane ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ colinsane ]; }; }) diff --git a/pkgs/applications/misc/kiwix/tools.nix b/pkgs/applications/misc/kiwix/tools.nix index a58416329742..9b384f0a8e1f 100644 --- a/pkgs/applications/misc/kiwix/tools.nix +++ b/pkgs/applications/misc/kiwix/tools.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Command line Kiwix tools"; homepage = "https://kiwix.org"; changelog = "https://github.com/kiwix/kiwix-tools/releases/tag/${finalAttrs.version}"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ colinsane ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ colinsane ]; }; }) diff --git a/pkgs/applications/misc/ksmoothdock/default.nix b/pkgs/applications/misc/ksmoothdock/default.nix index 526ee7eafd96..e5665632ed04 100644 --- a/pkgs/applications/misc/ksmoothdock/default.nix +++ b/pkgs/applications/misc/ksmoothdock/default.nix @@ -37,12 +37,12 @@ mkDerivation rec { cmakeDir = "../src"; - meta = with lib; { + meta = { description = "Cool desktop panel for KDE Plasma 5"; mainProgram = "ksmoothdock"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://dangvd.github.io/ksmoothdock/"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/kup/default.nix b/pkgs/applications/misc/kup/default.nix index 5c51c9401baa..a956b7de416e 100644 --- a/pkgs/applications/misc/kup/default.nix +++ b/pkgs/applications/misc/kup/default.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { kcmutils ]; - meta = with lib; { + meta = { description = "Backup tool for KDE"; homepage = "https://apps.kde.org/kup"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.pwoelfel ]; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.pwoelfel ]; }; } diff --git a/pkgs/applications/misc/lutris/default.nix b/pkgs/applications/misc/lutris/default.nix index 695e27216873..f91c0fc58be1 100644 --- a/pkgs/applications/misc/lutris/default.nix +++ b/pkgs/applications/misc/lutris/default.nix @@ -151,12 +151,12 @@ buildPythonApplication rec { "\${gappsWrapperArgs[@]}" ]; - meta = with lib; { + meta = { homepage = "https://lutris.net"; description = "Open Source gaming platform for GNU/Linux"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ rapiteanu ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ rapiteanu ]; + platforms = lib.platforms.linux; mainProgram = "lutris"; }; } diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix index 991f6f809bf2..fb30c9daea60 100644 --- a/pkgs/applications/misc/lyx/default.nix +++ b/pkgs/applications/misc/lyx/default.nix @@ -52,11 +52,11 @@ mkDerivation rec { # python is run during runtime to do various tasks qtWrapperArgs = [ " --prefix PATH : ${python3}/bin" ]; - meta = with lib; { + meta = { description = "WYSIWYM frontend for LaTeX, DocBook"; homepage = "https://www.lyx.org"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.vcunat ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.vcunat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/maliit-framework/default.nix b/pkgs/applications/misc/maliit-framework/default.nix index 7480e3fd371d..6bcc95825548 100644 --- a/pkgs/applications/misc/maliit-framework/default.nix +++ b/pkgs/applications/misc/maliit-framework/default.nix @@ -65,11 +65,11 @@ mkDerivation { "-DQT5_PLUGINS_INSTALL_DIR=${placeholder "out"}/${qtbase.qtPluginPrefix}" ]; - meta = with lib; { + meta = { description = "Core libraries of Maliit and server"; mainProgram = "maliit-server"; homepage = "http://maliit.github.io/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/misc/maliit-keyboard/default.nix b/pkgs/applications/misc/maliit-keyboard/default.nix index 7a470d8281f2..c5a5405a967a 100644 --- a/pkgs/applications/misc/maliit-keyboard/default.nix +++ b/pkgs/applications/misc/maliit-keyboard/default.nix @@ -61,11 +61,11 @@ mkDerivation { glib-compile-schemas "$out"/share/glib-2.0/schemas ''; - meta = with lib; { + meta = { description = "Virtual keyboard"; mainProgram = "maliit-keyboard"; homepage = "http://maliit.github.io/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only bsd3 cc-by-30 diff --git a/pkgs/applications/misc/masterpdfeditor4/default.nix b/pkgs/applications/misc/masterpdfeditor4/default.nix index 9eeac8660a2a..8dffa5b9a8ee 100644 --- a/pkgs/applications/misc/masterpdfeditor4/default.nix +++ b/pkgs/applications/misc/masterpdfeditor4/default.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Master PDF Editor - version 4, without watermark"; homepage = "https://code-industry.net/free-pdf-editor/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/misc/michabo/default.nix b/pkgs/applications/misc/michabo/default.nix index b44b5300749b..b4469a072f54 100644 --- a/pkgs/applications/misc/michabo/default.nix +++ b/pkgs/applications/misc/michabo/default.nix @@ -46,12 +46,12 @@ mkDerivation rec { ln -s ${desktopItem}/share $out/share ''; - meta = with lib; { + meta = { description = "Native desktop app for Pleroma and Mastodon servers"; mainProgram = "Michabo"; homepage = "https://git.pleroma.social/kaniini/michabo"; - license = licenses.gpl3; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/mkgmap/default.nix b/pkgs/applications/misc/mkgmap/default.nix index 47c566f6b4b7..06735f316a05 100644 --- a/pkgs/applications/misc/mkgmap/default.nix +++ b/pkgs/applications/misc/mkgmap/default.nix @@ -106,15 +106,15 @@ stdenv.mkDerivation rec { meta.downloadPage ]; - meta = with lib; { + meta = { description = "Create maps for Garmin GPS devices from OpenStreetMap (OSM) data"; downloadPage = "https://www.mkgmap.org.uk/download/mkgmap.html"; homepage = "https://www.mkgmap.org.uk/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "mkgmap"; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; diff --git a/pkgs/applications/misc/mkgmap/splitter/default.nix b/pkgs/applications/misc/mkgmap/splitter/default.nix index 7e3c40d7f9c6..fea9619173f7 100644 --- a/pkgs/applications/misc/mkgmap/splitter/default.nix +++ b/pkgs/applications/misc/mkgmap/splitter/default.nix @@ -99,15 +99,15 @@ stdenv.mkDerivation rec { meta.downloadPage ]; - meta = with lib; { + meta = { description = "Utility for splitting OpenStreetMap maps into tiles"; downloadPage = "https://www.mkgmap.org.uk/download/splitter.html"; homepage = "https://www.mkgmap.org.uk/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "splitter"; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; diff --git a/pkgs/applications/misc/moolticute/default.nix b/pkgs/applications/misc/moolticute/default.nix index a8d6e491fc20..8ee9daf1b7f8 100644 --- a/pkgs/applications/misc/moolticute/default.nix +++ b/pkgs/applications/misc/moolticute/default.nix @@ -48,18 +48,18 @@ mkDerivation rec { sed '1d;$d' > $udev/lib/udev/rules.d/50-mooltipass.rules ''; - meta = with lib; { + meta = { description = "GUI app and daemon to work with Mooltipass device via USB"; longDescription = '' To install udev rules, add `services.udev.packages = [ pkgs.moolticute.udev ]` into `nixos/configuration.nix`. ''; homepage = "https://github.com/mooltipass/moolticute"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kirikaza hughobrien ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/mwic/default.nix b/pkgs/applications/misc/mwic/default.nix index 46f4d14c8efc..9aa8902f416d 100644 --- a/pkgs/applications/misc/mwic/default.nix +++ b/pkgs/applications/misc/mwic/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { homepage = "http://jwilk.net/software/mwic"; description = "Spell-checker that groups possible misspellings and shows them in their contexts"; mainProgram = "mwic"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/applications/misc/nixnote2/default.nix b/pkgs/applications/misc/nixnote2/default.nix index 9014f2f32344..b9f92e3f3634 100644 --- a/pkgs/applications/misc/nixnote2/default.nix +++ b/pkgs/applications/misc/nixnote2/default.nix @@ -49,11 +49,11 @@ mkDerivation rec { cp theme.ini $out/share/nixnote2/theme.ini ''; - meta = with lib; { + meta = { description = "Unofficial client of Evernote"; homepage = "http://www.nixnote.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ htr ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ htr ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/ola/default.nix b/pkgs/applications/misc/ola/default.nix index 1ac44a057d09..7bd852e245fe 100644 --- a/pkgs/applications/misc/ola/default.nix +++ b/pkgs/applications/misc/ola/default.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Framework for controlling entertainment lighting equipment"; homepage = "https://www.openlighting.org/ola/"; maintainers = [ ]; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 gpl2Plus ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/openambit/default.nix b/pkgs/applications/misc/openambit/default.nix index 4c27e2d95981..358a7a00a151 100644 --- a/pkgs/applications/misc/openambit/default.nix +++ b/pkgs/applications/misc/openambit/default.nix @@ -76,11 +76,11 @@ mkDerivation rec { $out/lib/udev/rules.d/20-libambit.rules ''; - meta = with lib; { + meta = { description = "Helps fetch data from Suunto Ambit GPS watches"; homepage = "https://github.com/openambitproject/openambit/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ rycee ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ rycee ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/openbox-menu/default.nix b/pkgs/applications/misc/openbox-menu/default.nix index 465a3749df6d..d55359b66401 100644 --- a/pkgs/applications/misc/openbox-menu/default.nix +++ b/pkgs/applications/misc/openbox-menu/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { installFlags = [ "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "http://fabrice.thiroux.free.fr/openbox-menu_en.html"; description = "Dynamic XDG menu generator for Openbox"; longDescription = '' @@ -44,9 +44,9 @@ stdenv.mkDerivation rec { dynamic menu listing installed applications. Most of the work is done by the LXDE library menu-cache. ''; - license = licenses.gpl3Plus; - maintainers = [ maintainers.romildo ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.romildo ]; + platforms = lib.platforms.unix; mainProgram = "openbox-menu"; }; } diff --git a/pkgs/applications/misc/openbrf/default.nix b/pkgs/applications/misc/openbrf/default.nix index 6daad96ec869..8a7792b8e85f 100644 --- a/pkgs/applications/misc/openbrf/default.nix +++ b/pkgs/applications/misc/openbrf/default.nix @@ -73,12 +73,12 @@ mkDerivation { dontPatchELF = true; - meta = with lib; { + meta = { description = "Tool to edit resource files (BRF)"; mainProgram = "openBrf"; homepage = "https://github.com/cfcohen/openbrf"; maintainers = [ ]; - license = licenses.free; - platforms = platforms.linux; + license = lib.licenses.free; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/opencpn/default.nix b/pkgs/applications/misc/opencpn/default.nix index a39d5aca3f3f..84433d5492f4 100644 --- a/pkgs/applications/misc/opencpn/default.nix +++ b/pkgs/applications/misc/opencpn/default.nix @@ -151,14 +151,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Concise ChartPlotter/Navigator"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kragniz lovesegfault ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; homepage = "https://opencpn.org/"; }; }) diff --git a/pkgs/applications/misc/opentx/default.nix b/pkgs/applications/misc/opentx/default.nix index 2d3389ff0faa..3e9d0e569275 100644 --- a/pkgs/applications/misc/opentx/default.nix +++ b/pkgs/applications/misc/opentx/default.nix @@ -68,7 +68,7 @@ mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "OpenTX Companion transmitter support software"; longDescription = '' OpenTX Companion is used for many different tasks like loading OpenTX @@ -77,13 +77,13 @@ mkDerivation rec { ''; mainProgram = "companion" + lib.concatStrings (lib.take 2 (lib.splitVersion version)); homepage = "https://www.open-tx.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ elitak lopsided98 ]; diff --git a/pkgs/applications/misc/parsec/bin.nix b/pkgs/applications/misc/parsec/bin.nix index e1ebad558ae1..f259b7771750 100644 --- a/pkgs/applications/misc/parsec/bin.nix +++ b/pkgs/applications/misc/parsec/bin.nix @@ -108,16 +108,16 @@ stdenvNoCC.mkDerivation { runHook postFixup ''; - meta = with lib; { + meta = { homepage = "https://parsec.app/"; changelog = "https://parsec.app/changelog"; description = "Remote streaming service client"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ arcnmx pabloaul ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "parsecd"; }; } diff --git a/pkgs/applications/misc/pdfpc/default.nix b/pkgs/applications/misc/pdfpc/default.nix index 67c6052585ce..ba2cf235620e 100644 --- a/pkgs/applications/misc/pdfpc/default.nix +++ b/pkgs/applications/misc/pdfpc/default.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Presenter console with multi-monitor support for PDF files"; mainProgram = "pdfpc"; homepage = "https://pdfpc.github.io/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/misc/peaclock/default.nix b/pkgs/applications/misc/peaclock/default.nix index 266f82d7c6a1..7564bc874abe 100644 --- a/pkgs/applications/misc/peaclock/default.nix +++ b/pkgs/applications/misc/peaclock/default.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { icu ]; - meta = with lib; { + meta = { description = "Clock, timer, and stopwatch for the terminal"; homepage = "https://octobanana.com/software/peaclock"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ djanatyn ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ djanatyn ]; mainProgram = "peaclock"; }; } diff --git a/pkgs/applications/misc/playonlinux/default.nix b/pkgs/applications/misc/playonlinux/default.nix index 30542ec5bd32..725474759d98 100644 --- a/pkgs/applications/misc/playonlinux/default.nix +++ b/pkgs/applications/misc/playonlinux/default.nix @@ -161,12 +161,12 @@ stdenv.mkDerivation { --add-flags $out/share/playonlinux/playonlinux-wrapped ''; - meta = with lib; { + meta = { description = "GUI for managing Windows programs under linux"; homepage = "https://www.playonlinux.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl3; - maintainers = [ maintainers.pasqui23 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.pasqui23 ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/misc/plover/default.nix b/pkgs/applications/misc/plover/default.nix index 007cb55caf02..6ee360b9e226 100644 --- a/pkgs/applications/misc/plover/default.nix +++ b/pkgs/applications/misc/plover/default.nix @@ -19,11 +19,11 @@ meta = with lib; { broken = stdenv.hostPlatform.isDarwin; description = "OpenSteno Plover stenography software"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ twey kovirobi ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; src = fetchFromGitHub { diff --git a/pkgs/applications/misc/polychromatic/default.nix b/pkgs/applications/misc/polychromatic/default.nix index dac77128ff97..a69a45b3a9b3 100644 --- a/pkgs/applications/misc/polychromatic/default.nix +++ b/pkgs/applications/misc/polychromatic/default.nix @@ -82,16 +82,16 @@ python3Packages.buildPythonApplication rec { "\${qtWrapperArgs[@]}" ]; - meta = with lib; { + meta = { homepage = "https://polychromatic.app/"; description = "Graphical front-end and tray applet for configuring Razer peripherals on GNU/Linux"; longDescription = '' Polychromatic is a frontend for OpenRazer that enables Razer devices to control lighting effects and more on GNU/Linux. ''; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ evanjs ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ evanjs ]; mainProgram = "polychromatic-controller"; }; } diff --git a/pkgs/applications/misc/prusa-slicer/super-slicer.nix b/pkgs/applications/misc/prusa-slicer/super-slicer.nix index 92cadda3e57f..092803f44dbe 100644 --- a/pkgs/applications/misc/prusa-slicer/super-slicer.nix +++ b/pkgs/applications/misc/prusa-slicer/super-slicer.nix @@ -127,11 +127,11 @@ let }) ]; - meta = with lib; { + meta = { inherit description; homepage = "https://github.com/supermerill/SuperSlicer"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ cab404 tmarkus ]; diff --git a/pkgs/applications/misc/pure-maps/default.nix b/pkgs/applications/misc/pure-maps/default.nix index 6a9601bdd111..4da7653baac7 100644 --- a/pkgs/applications/misc/pure-maps/default.nix +++ b/pkgs/applications/misc/pure-maps/default.nix @@ -54,13 +54,13 @@ mkDerivation rec { qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH") ''; - meta = with lib; { + meta = { description = "Display vector and raster maps, places, routes, and provide navigation instructions with a flexible selection of data and service providers"; mainProgram = "pure-maps"; homepage = "https://github.com/rinigus/pure-maps"; changelog = "https://github.com/rinigus/pure-maps/blob/${src.rev}/NEWS.md"; - license = licenses.gpl3Only; - maintainers = [ maintainers.Thra11 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.Thra11 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/q4wine/default.nix b/pkgs/applications/misc/q4wine/default.nix index 708e965c0978..5a93c793e10f 100644 --- a/pkgs/applications/misc/q4wine/default.nix +++ b/pkgs/applications/misc/q4wine/default.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://q4wine.brezblock.org.ua/"; description = "Qt GUI for Wine to manage prefixes and applications"; - license = licenses.gpl3; - maintainers = with maintainers; [ rkitover ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ rkitover ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/misc/qMasterPassword/default.nix b/pkgs/applications/misc/qMasterPassword/default.nix index fc12322e17e4..e443741ebd25 100644 --- a/pkgs/applications/misc/qMasterPassword/default.nix +++ b/pkgs/applications/misc/qMasterPassword/default.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Stateless Master Password Manager"; mainProgram = "qMasterPassword"; longDescription = '' @@ -88,8 +88,8 @@ stdenv.mkDerivation rec { no need to trust any online password service. ''; homepage = "https://github.com/bkueng/qMasterPassword"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = with lib.maintainers; [ teutat3s ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/qlcplus/default.nix b/pkgs/applications/misc/qlcplus/default.nix index e93a3d61f028..8c438603a4b3 100644 --- a/pkgs/applications/misc/qlcplus/default.nix +++ b/pkgs/applications/misc/qlcplus/default.nix @@ -68,11 +68,11 @@ mkDerivation rec { ln -sf $out/lib/*/libqlcplus* $out/lib ''; - meta = with lib; { + meta = { description = "Free and cross-platform software to control DMX or analog lighting systems like moving heads, dimmers, scanners etc"; maintainers = [ ]; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; homepage = "https://www.qlcplus.org/"; }; } diff --git a/pkgs/applications/misc/qsudo/default.nix b/pkgs/applications/misc/qsudo/default.nix index cbd8f010d7e8..9364d7b3020a 100644 --- a/pkgs/applications/misc/qsudo/default.nix +++ b/pkgs/applications/misc/qsudo/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { substituteInPlace qsudo.pro --replace /usr/bin $out/bin ''; - meta = with lib; { + meta = { description = "Graphical sudo utility from Project Trident"; mainProgram = "qsudo"; homepage = "https://github.com/project-trident/qsudo"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/applications/misc/qsyncthingtray/default.nix b/pkgs/applications/misc/qsyncthingtray/default.nix index b59e0e163c31..dd844ae36546 100644 --- a/pkgs/applications/misc/qsyncthingtray/default.nix +++ b/pkgs/applications/misc/qsyncthingtray/default.nix @@ -74,7 +74,7 @@ mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/sieren/QSyncthingTray/"; description = "Traybar Application for Syncthing written in C++"; longDescription = '' @@ -82,12 +82,12 @@ mkDerivation rec { Currently supports macOS, Windows and Linux. Written in C++ with Qt. ''; - license = licenses.lgpl3; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ zraexy peterhoeg ]; - platforms = platforms.all; + platforms = lib.platforms.all; broken = !preferNative || stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/applications/misc/qt-box-editor/default.nix b/pkgs/applications/misc/qt-box-editor/default.nix index 7d584f78645d..03777a0373f0 100644 --- a/pkgs/applications/misc/qt-box-editor/default.nix +++ b/pkgs/applications/misc/qt-box-editor/default.nix @@ -37,12 +37,12 @@ mkDerivation { --replace '-llept' '-lleptonica' ''; - meta = with lib; { + meta = { description = "Editor of tesseract-ocr box files"; mainProgram = "qt-box-editor-1.12rc1"; homepage = "https://github.com/zdenop/qt-box-editor"; - license = licenses.asl20; - maintainers = [ maintainers.costrouc ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.costrouc ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix index aec14488480b..befbfe7f922c 100644 --- a/pkgs/applications/misc/redshift/default.nix +++ b/pkgs/applications/misc/redshift/default.nix @@ -144,7 +144,7 @@ rec { sha256 = "12cb4gaqkybp4bkkns8pam378izr2mwhr2iy04wkprs2v92j7bz6"; }; - meta = with lib; { + meta = { description = "Screen color temperature manager"; longDescription = '' Redshift adjusts the color temperature according to the position @@ -154,9 +154,9 @@ rec { your eyes to slowly adapt. At night the color temperature should be set to match the lamps in your room. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "http://jonls.dk/redshift"; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "redshift"; maintainers = [ ]; }; diff --git a/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix b/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix index ec12849f5547..980e5044af68 100644 --- a/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix +++ b/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix @@ -29,10 +29,10 @@ buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "remarkable_mouse" ]; - meta = with lib; { + meta = { description = "Program to use a reMarkable as a graphics tablet"; homepage = "https://github.com/evidlo/remarkable_mouse"; - license = licenses.gpl3; - maintainers = [ maintainers.nickhu ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.nickhu ]; }; } diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix index 7788357f9760..7e45f6203232 100644 --- a/pkgs/applications/misc/rescuetime/default.nix +++ b/pkgs/applications/misc/rescuetime/default.nix @@ -76,12 +76,12 @@ mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Helps you understand your daily habits so you can focus and be more productive"; homepage = "https://www.rescuetime.com"; maintainers = [ ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/applications/misc/resp-app/default.nix b/pkgs/applications/misc/resp-app/default.nix index eeb1037aadc9..6bff5a503556 100644 --- a/pkgs/applications/misc/resp-app/default.nix +++ b/pkgs/applications/misc/resp-app/default.nix @@ -94,12 +94,12 @@ mkDerivation rec { qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH") ''; - meta = with lib; { + meta = { description = "Cross-platform Developer GUI for Redis"; mainProgram = "resp"; homepage = "https://resp.app/"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/misc/rsibreak/default.nix b/pkgs/applications/misc/rsibreak/default.nix index e680ee956ef5..a001a100a75b 100644 --- a/pkgs/applications/misc/rsibreak/default.nix +++ b/pkgs/applications/misc/rsibreak/default.nix @@ -32,11 +32,11 @@ mkDerivation rec { kcrash ]; - meta = with lib; { + meta = { description = "Takes care of your health and regularly breaks your work to avoid repetitive strain injury (RSI)"; mainProgram = "rsibreak"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://www.kde.org/applications/utilities/rsibreak/"; - maintainers = with maintainers; [ vandenoever ]; + maintainers = with lib.maintainers; [ vandenoever ]; }; } diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix index 2efe5eaa4dbf..3443179133b0 100644 --- a/pkgs/applications/misc/stag/default.nix +++ b/pkgs/applications/misc/stag/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { make install PREFIX=$out ''; - meta = with lib; { + meta = { homepage = "https://github.com/seenaburns/stag"; description = "Terminal streaming bar graph passed through stdin"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.unix; mainProgram = "stag"; }; }) diff --git a/pkgs/applications/misc/stog/default.nix b/pkgs/applications/misc/stog/default.nix index 2b750ff6cae1..bf36ef2e8012 100644 --- a/pkgs/applications/misc/stog/default.nix +++ b/pkgs/applications/misc/stog/default.nix @@ -53,10 +53,10 @@ buildDunePackage rec { xtmpl ]; - meta = with lib; { + meta = { description = "XML documents and web site compiler"; homepage = "https://www.good-eris.net/stog"; - license = licenses.lgpl3; - maintainers = with maintainers; [ regnat ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ regnat ]; }; } diff --git a/pkgs/applications/misc/subsurface/default.nix b/pkgs/applications/misc/subsurface/default.nix index 595d60a05238..86d212de8c23 100644 --- a/pkgs/applications/misc/subsurface/default.nix +++ b/pkgs/applications/misc/subsurface/default.nix @@ -64,12 +64,12 @@ let enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.libdivecomputer.org"; description = "Cross-platform and open source library for communication with dive computers from various manufacturers"; - maintainers = with maintainers; [ mguentner ]; - license = licenses.lgpl21; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mguentner ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; }; @@ -103,12 +103,12 @@ let mv lib $out/ ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "QtLocation plugin for Google maps tile API"; maintainers = [ ]; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; }; @@ -177,7 +177,7 @@ stdenv.mkDerivation { ''; }; - meta = with lib; { + meta = { description = "Divelog program"; mainProgram = "subsurface"; longDescription = '' @@ -187,8 +187,8 @@ stdenv.mkDerivation { names of other divers, and lets users rate dives and provide additional notes. ''; homepage = "https://subsurface-divelog.org"; - license = licenses.gpl2; - maintainers = with maintainers; [ mguentner ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ mguentner ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/sway-contrib/default.nix b/pkgs/applications/misc/sway-contrib/default.nix index 33c79b9b04e7..34dc693e6680 100644 --- a/pkgs/applications/misc/sway-contrib/default.nix +++ b/pkgs/applications/misc/sway-contrib/default.nix @@ -26,10 +26,10 @@ let hash = "sha256-/gWL0hA8hDjpK5YJxuZqmvo0zuVRQkhAkgHlI4JzNP8="; }; - meta = with lib; { + meta = { homepage = "https://github.com/OctopusET/sway-contrib"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; in { diff --git a/pkgs/applications/misc/syncthingtray/default.nix b/pkgs/applications/misc/syncthingtray/default.nix index d54b3b1e74cc..cbd3a93aa0b4 100644 --- a/pkgs/applications/misc/syncthingtray/default.nix +++ b/pkgs/applications/misc/syncthingtray/default.nix @@ -113,12 +113,12 @@ stdenv.mkDerivation (finalAttrs: { "--prefix PATH : ${lib.makeBinPath [ xdg-utils ]}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Martchus/syncthingtray"; description = "Tray application and Dolphin/Plasma integration for Syncthing"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "syncthingtray"; }; }) diff --git a/pkgs/applications/misc/tellico/default.nix b/pkgs/applications/misc/tellico/default.nix index 5c79c5ffe5e7..253493ca99ec 100644 --- a/pkgs/applications/misc/tellico/default.nix +++ b/pkgs/applications/misc/tellico/default.nix @@ -60,16 +60,16 @@ stdenv.mkDerivation rec { taglib ]; - meta = with lib; { + meta = { description = "Collection management software, free and simple"; mainProgram = "tellico"; homepage = "https://tellico-project.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Only lgpl2Only ]; - maintainers = with maintainers; [ numkem ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ numkem ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/termpdf.py/default.nix b/pkgs/applications/misc/termpdf.py/default.nix index 1c88c1edd8a6..b09cc763abec 100644 --- a/pkgs/applications/misc/termpdf.py/default.nix +++ b/pkgs/applications/misc/termpdf.py/default.nix @@ -40,14 +40,14 @@ buildPythonApplication { # upstream doesn't contain tests doCheck = false; - meta = with lib; { + meta = { description = '' A graphical pdf (and epub, cbz, ...) reader that works inside the kitty terminal. ''; mainProgram = "termpdf.py"; homepage = "https://github.com/dsanson/termpdf.py"; - maintainers = with maintainers; [ teto ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ teto ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/applications/misc/tuxclocker/default.nix b/pkgs/applications/misc/tuxclocker/default.nix index 42f02f2ab223..9058eb147568 100644 --- a/pkgs/applications/misc/tuxclocker/default.nix +++ b/pkgs/applications/misc/tuxclocker/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation (finalAttrs: { inherit tuxclocker-without-unfree; }; - meta = with lib; { + meta = { description = "Qt overclocking tool for GNU/Linux"; homepage = "https://github.com/Lurkki14/tuxclocker"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ lurkki ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ lurkki ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/twitch-chat-downloader/default.nix b/pkgs/applications/misc/twitch-chat-downloader/default.nix index d076a579874e..79e6a2e6e88c 100644 --- a/pkgs/applications/misc/twitch-chat-downloader/default.nix +++ b/pkgs/applications/misc/twitch-chat-downloader/default.nix @@ -39,11 +39,11 @@ buildPythonApplication rec { pythonImportsCheck = [ "tcd" ]; - meta = with lib; { + meta = { description = "Twitch Chat Downloader"; mainProgram = "tcd"; homepage = "https://github.com/TheDrHax/Twitch-Chat-Downloader"; - license = licenses.mit; - maintainers = with maintainers; [ assistant ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ assistant ]; }; } diff --git a/pkgs/applications/misc/ubpm/default.nix b/pkgs/applications/misc/ubpm/default.nix index 013d31b9d57f..2cb89b59c296 100644 --- a/pkgs/applications/misc/ubpm/default.nix +++ b/pkgs/applications/misc/ubpm/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation (finalAttrs: { qtcharts ]; - meta = with lib; { + meta = { homepage = "https://codeberg.org/LazyT/ubpm"; description = "Universal Blood Pressure Manager"; mainProgram = "ubpm"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kurnevsky ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kurnevsky ]; broken = stdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/applications/misc/xca/default.nix b/pkgs/applications/misc/xca/default.nix index 9f460221896d..5c01961ab18b 100644 --- a/pkgs/applications/misc/xca/default.nix +++ b/pkgs/applications/misc/xca/default.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { mv "$out/xca.app" "$out/Applications/xca.app" ''; - meta = with lib; { + meta = { description = "X509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs"; mainProgram = "xca"; homepage = "https://hohnstaedt.de/xca/"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ offline peterhoeg ]; diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix index c8b01ecb2754..4130771b851b 100644 --- a/pkgs/applications/misc/xpdf/default.nix +++ b/pkgs/applications/misc/xpdf/default.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { install -Dm644 $src/xpdf-qt/xpdf-icon.svg $out/share/pixmaps/xpdf.svg ''; - meta = with lib; { + meta = { homepage = "https://www.xpdfreader.com"; description = "Viewer for Portable Document Format (PDF) files"; longDescription = '' @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { pdffonts: lists fonts used in PDF files pdfdetach: extracts attached files from PDF files ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Only ]; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; knownVulnerabilities = [ "CVE-2023-26930" ]; diff --git a/pkgs/applications/misc/xpdf/libxpdf.nix b/pkgs/applications/misc/xpdf/libxpdf.nix index 6f7ccfb89740..42e93c79eb47 100644 --- a/pkgs/applications/misc/xpdf/libxpdf.nix +++ b/pkgs/applications/misc/xpdf/libxpdf.nix @@ -54,8 +54,8 @@ stdenv.mkDerivation { cp -v xpdf/*.h $out/include ''; - meta = with lib; { - platforms = platforms.unix; - license = licenses.gpl2Only; + meta = { + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/applications/misc/xygrib/default.nix b/pkgs/applications/misc/xygrib/default.nix index 6060d1dea465..67d3e165702b 100644 --- a/pkgs/applications/misc/xygrib/default.nix +++ b/pkgs/applications/misc/xygrib/default.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation { --replace 'Exec=XyGrib' 'Exec=xygrib' ''; - meta = with lib; { + meta = { homepage = "https://opengribs.org"; description = "Weather Forecast Visualization"; mainProgram = "xygrib"; @@ -75,7 +75,7 @@ stdenv.mkDerivation { It interacts with OpenGribs's Grib server providing a choice of global and large area atmospheric and wave models. ''; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/networking/browsers/kristall/default.nix b/pkgs/applications/networking/browsers/kristall/default.nix index 2e2c1cdea95b..8cd69c42d670 100644 --- a/pkgs/applications/networking/browsers/kristall/default.nix +++ b/pkgs/applications/networking/browsers/kristall/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Graphical small-internet client, supports gemini, http, https, gopher, finger"; mainProgram = "kristall"; homepage = "https://random-projects.net/projects/kristall.gemini"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; inherit (qtmultimedia.meta) platforms; }; } diff --git a/pkgs/applications/networking/browsers/nyxt/default.nix b/pkgs/applications/networking/browsers/nyxt/default.nix index 82e6f0ff6469..c1f16bda6aa1 100644 --- a/pkgs/applications/networking/browsers/nyxt/default.nix +++ b/pkgs/applications/networking/browsers/nyxt/default.nix @@ -108,15 +108,15 @@ stdenv.mkDerivation (finalAttrs: { tests = { inherit (nixosTests) nyxt; }; }; - meta = with lib; { + meta = { description = "Infinitely extensible web-browser (with Lisp development files using WebKitGTK platform port)"; mainProgram = "nyxt"; homepage = "https://nyxt.atlas.engineer"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lewo dariof4 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/applications/networking/browsers/palemoon/bin.nix b/pkgs/applications/networking/browsers/palemoon/bin.nix index 10841acb7672..f9ab726d4e16 100644 --- a/pkgs/applications/networking/browsers/palemoon/bin.nix +++ b/pkgs/applications/networking/browsers/palemoon/bin.nix @@ -204,7 +204,7 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { homepage = "https://www.palemoon.org/"; description = "Open Source, Goanna-based web browser focusing on efficiency and customization"; longDescription = '' @@ -220,15 +220,15 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases/tag/${finalAttrs.version}_Release"; license = [ - licenses.mpl20 + lib.licenses.mpl20 { fullName = "Pale Moon Redistribution License"; url = "https://www.palemoon.org/redist.shtml"; # TODO free, redistributable? Has strict limitations on what modifications may be done & shipped by packagers } ]; - maintainers = with maintainers; [ OPNA2608 ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "palemoon"; platforms = [ "x86_64-linux" ]; hydraPlatforms = [ ]; diff --git a/pkgs/applications/networking/browsers/webmacs/default.nix b/pkgs/applications/networking/browsers/webmacs/default.nix index ae185be04e7b..737affc42bb9 100644 --- a/pkgs/applications/networking/browsers/webmacs/default.nix +++ b/pkgs/applications/networking/browsers/webmacs/default.nix @@ -60,7 +60,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Keyboard-based web browser with Emacs/conkeror heritage"; mainProgram = "webmacs"; longDescription = '' @@ -73,9 +73,9 @@ mkDerivationWith python3Packages.buildPythonApplication rec { ''; homepage = "https://webmacs.readthedocs.io/en/latest/"; changelog = "https://github.com/parkouss/webmacs/blob/master/CHANGELOG.md"; - license = licenses.gpl3; - maintainers = with maintainers; [ jacg ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ jacg ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/networking/cluster/cni/default.nix b/pkgs/applications/networking/cluster/cni/default.nix index c052501035a5..95f66bed73dd 100644 --- a/pkgs/applications/networking/cluster/cni/default.nix +++ b/pkgs/applications/networking/cluster/cni/default.nix @@ -26,12 +26,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Container Network Interface - networking for Linux containers"; mainProgram = "cnitool"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/containernetworking/cni"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ offline vdemeester ]; diff --git a/pkgs/applications/networking/cluster/cni/plugins.nix b/pkgs/applications/networking/cluster/cni/plugins.nix index d5ae1a805672..5803d84dc9d8 100644 --- a/pkgs/applications/networking/cluster/cni/plugins.nix +++ b/pkgs/applications/networking/cluster/cni/plugins.nix @@ -47,12 +47,12 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) cri-o; }; - meta = with lib; { + meta = { changelog = "https://github.com/containernetworking/plugins/releases/tag/${src.rev}"; description = "Some standard networking plugins, maintained by the CNI team"; homepage = "https://www.cni.dev/plugins/"; - license = licenses.asl20; - platforms = platforms.linux; - teams = [ teams.podman ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + teams = [ lib.teams.podman ]; }; } diff --git a/pkgs/applications/networking/cluster/docker-machine/hyperkit.nix b/pkgs/applications/networking/cluster/docker-machine/hyperkit.nix index 9d164878dfce..2e430baa0706 100644 --- a/pkgs/applications/networking/cluster/docker-machine/hyperkit.nix +++ b/pkgs/applications/networking/cluster/docker-machine/hyperkit.nix @@ -25,11 +25,11 @@ buildGoModule rec { install out/docker-machine-driver-hyperkit -Dt $out/bin ''; - meta = with lib; { + meta = { homepage = "https://minikube.sigs.k8s.io/docs/drivers/hyperkit"; description = "HyperKit driver for docker-machine"; - license = licenses.asl20; - maintainers = with maintainers; [ atkinschang ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ atkinschang ]; platforms = [ "x86_64-darwin" ]; }; } diff --git a/pkgs/applications/networking/cluster/docker-machine/kvm2.nix b/pkgs/applications/networking/cluster/docker-machine/kvm2.nix index 45baa6d8079a..94b134ce487b 100644 --- a/pkgs/applications/networking/cluster/docker-machine/kvm2.nix +++ b/pkgs/applications/networking/cluster/docker-machine/kvm2.nix @@ -28,15 +28,15 @@ buildGoModule rec { install out/docker-machine-driver-kvm2 -Dt $out/bin ''; - meta = with lib; { + meta = { homepage = "https://minikube.sigs.k8s.io/docs/drivers/kvm2"; description = "KVM2 driver for docker-machine"; mainProgram = "docker-machine-driver-kvm2"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tadfisher atkinschang ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/cluster/hadoop/containerExecutor.nix b/pkgs/applications/networking/cluster/hadoop/containerExecutor.nix index 2f8b27c170fd..21b39a5d06d2 100644 --- a/pkgs/applications/networking/cluster/hadoop/containerExecutor.nix +++ b/pkgs/applications/networking/cluster/hadoop/containerExecutor.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { homepage = "https://hadoop.apache.org/"; description = "Framework for distributed processing of large data sets across clusters of computers"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' The Hadoop YARN Container Executor is a native component responsible for managing the lifecycle of containers @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: { resources like CPU and memory are allocated according to the policies defined in the ResourceManager. ''; - maintainers = with maintainers; [ illustris ]; + maintainers = with lib.maintainers; [ illustris ]; platforms = filter (strings.hasSuffix "linux") (attrNames platformAttrs); }; }) diff --git a/pkgs/applications/networking/cluster/hadoop/default.nix b/pkgs/applications/networking/cluster/hadoop/default.nix index b771864c5b65..54a25ef3a743 100644 --- a/pkgs/applications/networking/cluster/hadoop/default.nix +++ b/pkgs/applications/networking/cluster/hadoop/default.nix @@ -151,8 +151,8 @@ let recursiveUpdate { homepage = "https://hadoop.apache.org/"; description = "Framework for distributed processing of large data sets across clusters of computers"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; longDescription = '' The Apache Hadoop software library is a framework that allows for @@ -165,7 +165,7 @@ let so delivering a highly-availabile service on top of a cluster of computers, each of which may be prone to failures. ''; - maintainers = with maintainers; [ illustris ]; + maintainers = with lib.maintainers; [ illustris ]; platforms = attrNames platformAttrs; } (attrByPath [ stdenv.system "meta" ] { } platformAttrs); }); diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix index ea93b134ac1e..9d1d8c72af57 100644 --- a/pkgs/applications/networking/cluster/helm/default.nix +++ b/pkgs/applications/networking/cluster/helm/default.nix @@ -70,12 +70,12 @@ buildGoModule (finalAttrs: { version = "v${finalAttrs.version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/helm/helm"; description = "Package manager for kubernetes"; mainProgram = "helm"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rlupton20 edude03 saschagrunert diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-cm-push.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-cm-push.nix index 825b8e1f7780..57ec5f09526e 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-cm-push.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-cm-push.nix @@ -39,10 +39,10 @@ buildGoModule rec { # Tests require the ChartMuseum service. doCheck = false; - meta = with lib; { + meta = { description = "Helm plugin to push chart package to ChartMuseum"; homepage = "https://github.com/chartmuseum/helm-push"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix index 6a6d10882375..e4cd4eea1d1b 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix @@ -35,10 +35,10 @@ buildGoModule rec { install -m644 -Dt $out/${pname} plugin.yaml ''; - meta = with lib; { + meta = { description = "Helm plugin that shows a diff"; homepage = "https://github.com/databus23/helm-diff"; - license = licenses.asl20; - maintainers = with maintainers; [ yurrriq ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ yurrriq ]; }; } diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-git.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-git.nix index df540e368944..d38a8858c733 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-git.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-git.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Helm downloader plugin that provides GIT protocol support"; homepage = "https://github.com/aslafy-z/helm-git"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-s3.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-s3.nix index 5adb432356f3..9c5df0a60b87 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-s3.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-s3.nix @@ -41,10 +41,10 @@ buildGoModule rec { install -m644 -Dt $out/helm-s3 plugin.yaml ''; - meta = with lib; { + meta = { description = "Helm plugin that allows to set up a chart repository using AWS S3"; homepage = "https://github.com/hypnoglow/helm-s3"; - license = licenses.mit; - maintainers = with maintainers; [ yurrriq ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yurrriq ]; }; } diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix index cc602f1147ee..b0c266c65ecd 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Helm plugin that helps manage secrets"; homepage = "https://github.com/jkroepke/helm-secrets"; - license = licenses.asl20; - maintainers = with maintainers; [ yurrriq ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ yurrriq ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/networking/cluster/kops/default.nix b/pkgs/applications/networking/cluster/kops/default.nix index 41158b2ee4eb..b6c565a9ee45 100644 --- a/pkgs/applications/networking/cluster/kops/default.nix +++ b/pkgs/applications/networking/cluster/kops/default.nix @@ -53,13 +53,13 @@ let --zsh <($GOPATH/bin/kops completion zsh) ''; - meta = with lib; { + meta = { description = "Easiest way to get a production Kubernetes up and running"; mainProgram = "kops"; homepage = "https://github.com/kubernetes/kops"; changelog = "https://github.com/kubernetes/kops/tree/master/docs/releases"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline zimbatm yurrriq diff --git a/pkgs/applications/networking/cluster/kubeval/default.nix b/pkgs/applications/networking/cluster/kubeval/default.nix index f9209c858ebc..a27d056d10a9 100644 --- a/pkgs/applications/networking/cluster/kubeval/default.nix +++ b/pkgs/applications/networking/cluster/kubeval/default.nix @@ -29,12 +29,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Validate your Kubernetes configuration files"; mainProgram = "kubeval"; homepage = "https://github.com/instrumenta/kubeval"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ johanot nicknovitski ]; diff --git a/pkgs/applications/networking/cluster/linkerd/generic.nix b/pkgs/applications/networking/cluster/linkerd/generic.nix index be21cfd10f3b..d4cca900ba69 100644 --- a/pkgs/applications/networking/cluster/linkerd/generic.nix +++ b/pkgs/applications/networking/cluster/linkerd/generic.nix @@ -62,13 +62,13 @@ buildGoModule rec { passthru.updateScript = (./. + "/update-${channel}.sh"); - meta = with lib; { + meta = { description = "Simple Kubernetes service mesh that improves security, observability and reliability"; mainProgram = "linkerd"; downloadPage = "https://github.com/linkerd/linkerd2/"; homepage = "https://linkerd.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Gonzih ]; }; diff --git a/pkgs/applications/networking/cluster/nixops/plugins/nixops-digitalocean.nix b/pkgs/applications/networking/cluster/nixops/plugins/nixops-digitalocean.nix index 55aec60b9e30..31db29b02116 100644 --- a/pkgs/applications/networking/cluster/nixops/plugins/nixops-digitalocean.nix +++ b/pkgs/applications/networking/cluster/nixops/plugins/nixops-digitalocean.nix @@ -45,10 +45,10 @@ buildPythonPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "NixOps Digitalocean plugin"; homepage = "https://github.com/nix-community/nixops-digitalocean"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/cluster/nixops/plugins/nixops-encrypted-links.nix b/pkgs/applications/networking/cluster/nixops/plugins/nixops-encrypted-links.nix index 5a7e261e8661..a0f8e1cce56c 100644 --- a/pkgs/applications/networking/cluster/nixops/plugins/nixops-encrypted-links.nix +++ b/pkgs/applications/networking/cluster/nixops/plugins/nixops-encrypted-links.nix @@ -37,10 +37,10 @@ buildPythonPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "EncryptedLinksTo from Nixops 1 module port"; homepage = "https://github.com/nix-community/nixops-encrypted-links"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/cluster/nixops/plugins/nixops-hercules-ci.nix b/pkgs/applications/networking/cluster/nixops/plugins/nixops-hercules-ci.nix index 5ac5cb6a53f0..df75e44cd666 100644 --- a/pkgs/applications/networking/cluster/nixops/plugins/nixops-hercules-ci.nix +++ b/pkgs/applications/networking/cluster/nixops/plugins/nixops-hercules-ci.nix @@ -31,10 +31,10 @@ buildPythonPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Use Hercules CI as a NixOps backend"; homepage = "https://github.com/hercules-ci/nixops-hercules-ci"; - license = licenses.asl20; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ roberth ]; }; } diff --git a/pkgs/applications/networking/cluster/nixops/plugins/nixops-vbox.nix b/pkgs/applications/networking/cluster/nixops/plugins/nixops-vbox.nix index ee071316d28d..01f37cf585e1 100644 --- a/pkgs/applications/networking/cluster/nixops/plugins/nixops-vbox.nix +++ b/pkgs/applications/networking/cluster/nixops/plugins/nixops-vbox.nix @@ -39,10 +39,10 @@ buildPythonPackage { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "NixOps plugin for VirtualBox VMs"; homepage = "https://github.com/nix-community/nixops-vbox"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ aminechikhaoui ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ aminechikhaoui ]; }; } diff --git a/pkgs/applications/networking/cluster/nixops/plugins/nixos-modules-contrib.nix b/pkgs/applications/networking/cluster/nixops/plugins/nixos-modules-contrib.nix index fc6f06460dec..c66fe0e31adf 100644 --- a/pkgs/applications/networking/cluster/nixops/plugins/nixos-modules-contrib.nix +++ b/pkgs/applications/networking/cluster/nixops/plugins/nixos-modules-contrib.nix @@ -37,10 +37,10 @@ buildPythonPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Useful NixOS modules which may not belong in the Nixpkgs repository itself"; homepage = "https://github.com/nix-community/nixos-modules-contrib"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/cluster/nixops/unwrapped.nix b/pkgs/applications/networking/cluster/nixops/unwrapped.nix index 9ac608bb8ff7..af7184580820 100644 --- a/pkgs/applications/networking/cluster/nixops/unwrapped.nix +++ b/pkgs/applications/networking/cluster/nixops/unwrapped.nix @@ -62,10 +62,10 @@ buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Tool for deploying to NixOS machines in a network or cloud"; homepage = "https://github.com/NixOS/nixops"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = with lib.maintainers; [ aminechikhaoui roberth diff --git a/pkgs/applications/networking/cluster/nomad/default.nix b/pkgs/applications/networking/cluster/nomad/default.nix index c21adc70c2b7..86127f9c54c1 100644 --- a/pkgs/applications/networking/cluster/nomad/default.nix +++ b/pkgs/applications/networking/cluster/nomad/default.nix @@ -64,12 +64,12 @@ let installShellCompletion nomad.bash ''; - meta = with lib; { + meta = { homepage = "https://developer.hashicorp.com/nomad"; description = "Distributed, Highly Available, Datacenter-Aware Scheduler"; mainProgram = "nomad"; inherit license; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rushmorem techknowlogick cottand diff --git a/pkgs/applications/networking/datovka/default.nix b/pkgs/applications/networking/datovka/default.nix index a9433b3be18a..40a2e4d17292 100644 --- a/pkgs/applications/networking/datovka/default.nix +++ b/pkgs/applications/networking/datovka/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Client application for operating Czech government-provided Databox infomation system"; homepage = "https://www.datovka.cz/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.mmahut ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.mmahut ]; + platforms = lib.platforms.linux; mainProgram = "datovka"; }; } diff --git a/pkgs/applications/networking/droopy/default.nix b/pkgs/applications/networking/droopy/default.nix index 0cbcdbe568d4..be41553ecfe7 100644 --- a/pkgs/applications/networking/droopy/default.nix +++ b/pkgs/applications/networking/droopy/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Mini Web server that let others upload files to your computer"; homepage = "http://stackp.online.fr/droopy"; - license = licenses.bsd3; - maintainers = [ maintainers.Profpatsch ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.Profpatsch ]; mainProgram = "droopy"; }; diff --git a/pkgs/applications/networking/firehol/default.nix b/pkgs/applications/networking/firehol/default.nix index a05258dcfcac..37f32da7e7c5 100644 --- a/pkgs/applications/networking/firehol/default.nix +++ b/pkgs/applications/networking/firehol/default.nix @@ -76,15 +76,15 @@ stdenv.mkDerivation rec { ] ++ lib.optionals onlyQOS [ "--disable-firehol" ]; - meta = with lib; { + meta = { description = "Firewall for humans"; longDescription = '' FireHOL, an iptables stateful packet filtering firewall for humans! FireQOS, a TC based bandwidth shaper for humans! ''; homepage = "https://firehol.org/"; - license = licenses.gpl2; - maintainers = with maintainers; [ oxzi ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ oxzi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/firehol/iprange.nix b/pkgs/applications/networking/firehol/iprange.nix index 8d73c99a4d87..e2cf0263e69e 100644 --- a/pkgs/applications/networking/firehol/iprange.nix +++ b/pkgs/applications/networking/firehol/iprange.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "0rymw4ydn09dng34q4g5111706fyppzs2gd5br76frgvfj4x2f71"; }; - meta = with lib; { + meta = { description = "Manage IP ranges"; mainProgram = "iprange"; homepage = "https://github.com/firehol/iprange"; - license = licenses.gpl2; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/applications/networking/icemon/default.nix b/pkgs/applications/networking/icemon/default.nix index 4b1ccf2776c2..7b7405f99d2f 100644 --- a/pkgs/applications/networking/icemon/default.nix +++ b/pkgs/applications/networking/icemon/default.nix @@ -38,12 +38,12 @@ mkDerivation rec { libarchive ]; - meta = with lib; { + meta = { description = "Icecream GUI Monitor"; inherit (src.meta) homepage; - license = licenses.gpl2; - maintainers = with maintainers; [ emantor ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ emantor ]; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "icemon"; }; } diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix index 7014d5ba3a6c..ff22c61e12f9 100644 --- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix +++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "IRC instant messaging gateway"; mainProgram = "bitlbee"; @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.bitlbee.org/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lassulus pSub ]; - platforms = platforms.gnu ++ platforms.linux; # arbitrary choice + platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice }; } diff --git a/pkgs/applications/networking/instant-messengers/dino/default.nix b/pkgs/applications/networking/instant-messengers/dino/default.nix index 7fdb45fe9ff5..54cc0ec5ba81 100644 --- a/pkgs/applications/networking/instant-messengers/dino/default.nix +++ b/pkgs/applications/networking/instant-messengers/dino/default.nix @@ -115,12 +115,12 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "Modern Jabber/XMPP Client using GTK/Vala"; mainProgram = "dino"; homepage = "https://github.com/dino/dino"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ qyliss ]; }; }) diff --git a/pkgs/applications/networking/instant-messengers/ferdium/default.nix b/pkgs/applications/networking/instant-messengers/ferdium/default.nix index 2d2ceb4c7798..527a8be60df5 100644 --- a/pkgs/applications/networking/instant-messengers/ferdium/default.nix +++ b/pkgs/applications/networking/instant-messengers/ferdium/default.nix @@ -35,11 +35,11 @@ mkFranzDerivation rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "All your services in one place built by the community"; homepage = "https://ferdium.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ magnouvean ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ magnouvean ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/applications/networking/instant-messengers/franz/default.nix b/pkgs/applications/networking/instant-messengers/franz/default.nix index be7e1f3faf14..16ddd0cf6ac0 100644 --- a/pkgs/applications/networking/instant-messengers/franz/default.nix +++ b/pkgs/applications/networking/instant-messengers/franz/default.nix @@ -12,11 +12,11 @@ mkFranzDerivation rec { url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb"; sha256 = "sha256-4+HeH9lY5/2fswSwzMPM1Idllj01zU7nmlLOMYfcSsU="; }; - meta = with lib; { + meta = { description = "Free messaging app that combines chat & messaging services into one application"; homepage = "https://meetfranz.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.free; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.free; maintainers = [ ]; platforms = [ "x86_64-linux" ]; hydraPlatforms = [ ]; diff --git a/pkgs/applications/networking/instant-messengers/jackline/default.nix b/pkgs/applications/networking/instant-messengers/jackline/default.nix index 04c8350f47fe..35099f2bf1fe 100644 --- a/pkgs/applications/networking/instant-messengers/jackline/default.nix +++ b/pkgs/applications/networking/instant-messengers/jackline/default.nix @@ -48,11 +48,11 @@ buildDunePackage { ppx_sexp_conv ]; - meta = with lib; { + meta = { homepage = "https://github.com/hannesm/jackline"; description = "Minimalistic secure XMPP client in OCaml"; mainProgram = "jackline"; - license = licenses.bsd2; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/matrix-commander/default.nix b/pkgs/applications/networking/instant-messengers/matrix-commander/default.nix index 2c215062250f..108d28a23069 100644 --- a/pkgs/applications/networking/instant-messengers/matrix-commander/default.nix +++ b/pkgs/applications/networking/instant-messengers/matrix-commander/default.nix @@ -54,12 +54,12 @@ buildPythonApplication rec { emoji ]; - meta = with lib; { + meta = { description = "Simple but convenient CLI-based Matrix client app for sending and receiving"; mainProgram = "matrix-commander"; homepage = "https://github.com/8go/matrix-commander"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.seb314 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.seb314 ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix b/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix index 0d249008961f..d4dccd139d94 100644 --- a/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix +++ b/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix @@ -87,10 +87,10 @@ python3Packages.buildPythonApplication rec { inherit (nixosTests) pantalaimon; }; - meta = with lib; { + meta = { description = "End-to-end encryption aware Matrix reverse proxy daemon"; homepage = "https://github.com/matrix-org/pantalaimon"; - license = licenses.asl20; - maintainers = with maintainers; [ valodim ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ valodim ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/carbons/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/carbons/default.nix index 6333693e946d..75ec27f6e5fc 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/carbons/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/carbons/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { pidgin ]; - meta = with lib; { + meta = { homepage = "https://github.com/gkdr/carbons"; description = "XEP-0280: Message Carbons plugin for libpurple"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/otr/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/otr/default.nix index be7a3f1b7920..192b82ee92bd 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/otr/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/otr/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { pidgin ]; - meta = with lib; { + meta = { homepage = "https://otr.cypherpunks.ca/"; description = "Plugin for Pidgin 2.x which implements OTR Messaging"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-indicator/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-indicator/default.nix index 7b61d3592b04..d2de73f864b8 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-indicator/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-indicator/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { pidgin ]; - meta = with lib; { + meta = { description = "AppIndicator and KStatusNotifierItem Plugin for Pidgin"; homepage = "https://github.com/philipl/pidgin-indicator"; - maintainers = with maintainers; [ imalison ]; - license = licenses.gpl2; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ imalison ]; + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-latex/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-latex/default.nix index 947039a5d9b9..011294e54cee 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-latex/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-latex/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { }"; }; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/pidgin-latex/"; description = "LaTeX rendering plugin for Pidgin IM"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-osd/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-osd/default.nix index bc3d98542a72..c7b83346aa2a 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-osd/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-osd/default.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { pidgin ]; - meta = with lib; { + meta = { homepage = "https://github.com/mbroemme/pidgin-osd"; description = "Plugin for Pidgin which implements on-screen display via libxosd"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-xmpp-receipts/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-xmpp-receipts/default.nix index da664ff0af27..5528929ae940 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-xmpp-receipts/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-xmpp-receipts/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { cp xmpp-receipts.so $out/lib/pidgin/ ''; - meta = with lib; { + meta = { homepage = "http://devel.kondorgulasch.de/pidgin-xmpp-receipts/"; description = "Message delivery receipts (XEP-0184) Pidgin plugin"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-discord/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-discord/default.nix index bda6c8455ad8..2e0202a2cc7b 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-discord/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-discord/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2"; PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share"; - meta = with lib; { + meta = { homepage = "https://github.com/EionRobb/purple-discord"; description = "Discord plugin for Pidgin"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ sna ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sna ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-googlechat/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-googlechat/default.nix index 66d5d1605e24..274cc6dafcc2 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-googlechat/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-googlechat/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2"; PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share"; - meta = with lib; { + meta = { homepage = "https://github.com/EionRobb/purple-googlechat"; description = "Native Google Chat support for pidgin"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-lurch/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-lurch/default.nix index 4f29ebdf3bb6..ac045726a110 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-lurch/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-lurch/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { install -Dm755 -t $out/lib/purple-2 build/lurch.so ''; - meta = with lib; { + meta = { homepage = "https://github.com/gkdr/lurch"; description = "XEP-0384: OMEMO Encryption for libpurple"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ emmanuelrosa ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ emmanuelrosa ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-mm-sms/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-mm-sms/default.nix index 624448e7fde2..28dd496ffdce 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-mm-sms/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-mm-sms/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { modemmanager ]; - meta = with lib; { + meta = { homepage = "https://source.puri.sm/Librem5/purple-mm-sms"; description = "Libpurple plugin for sending and receiving SMS via Modemmanager"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-plugin-pack/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-plugin-pack/default.nix index 46c3deaabc70..3379e750437c 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-plugin-pack/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-plugin-pack/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { pidgin ]; - meta = with lib; { + meta = { homepage = "https://keep.imfreedom.org/pidgin/purple-plugin-pack"; description = "Collection of plugins for purple-based clients such as Pidgin"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ bdimcheff ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bdimcheff ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-slack/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-slack/default.nix index 567b957c8aaa..89716495a135 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-slack/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2"; PKG_CONFIG_PURPLE_DATAROOTDIR = "${placeholder "out"}/share"; - meta = with lib; { + meta = { homepage = "https://github.com/dylex/slack-libpurple"; description = "Slack plugin for Pidgin"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-xmpp-http-upload/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-xmpp-http-upload/default.nix index 8e70c8f6d2c4..228e0d3cd537 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-xmpp-http-upload/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-xmpp-http-upload/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { install -Dm644 -t $out/lib/purple-2 jabber_http_file_upload.so ''; - meta = with lib; { + meta = { homepage = "https://github.com/Junker/purple-xmpp-http-upload"; description = "HTTP File Upload plugin for libpurple (XMPP Protocol XEP-0363)"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ emmanuelrosa ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ emmanuelrosa ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/sipe/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/sipe/default.nix index 15706024b23c..a2ad6df35052 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/sipe/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/sipe/default.nix @@ -50,10 +50,10 @@ stdenv.mkDerivation rec { postInstall = "ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe"; - meta = with lib; { + meta = { description = "SIPE plugin for Pidgin IM"; homepage = "http://sipe.sourceforge.net/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/tdlib-purple/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/tdlib-purple/default.nix index 1e8bf780dceb..d9c14c363579 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/tdlib-purple/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/tdlib-purple/default.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ "-U__ARM_NEON__" ] ); - meta = with lib; { + meta = { homepage = "https://github.com/ars3niy/tdlib-purple"; description = "libpurple Telegram plugin using tdlib"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; # tdlib-purple is not actively maintained and currently not # compatible with recent versions of tdlib diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/window-merge/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/window-merge/default.nix index 387ebbd9f3ce..aa28e7be082e 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/window-merge/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/window-merge/default.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { buildInputs = [ pidgin ]; - meta = with lib; { + meta = { homepage = "https://github.com/dm0-/window_merge"; description = "Pidgin plugin that merges the Buddy List window with a conversation window"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix index 141d18ab01b1..b8dc68206883 100644 --- a/pkgs/applications/networking/instant-messengers/profanity/default.nix +++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix @@ -108,7 +108,7 @@ stdenv.mkDerivation (finalAttrs: { LC_ALL = "en_US.utf8"; - meta = with lib; { + meta = { homepage = "https://profanity-im.github.io"; description = "Console based XMPP client"; mainProgram = "profanity"; @@ -116,8 +116,8 @@ stdenv.mkDerivation (finalAttrs: { Profanity is a console based XMPP client written in C using ncurses and libstrophe, inspired by Irssi. ''; - license = licenses.gpl3Plus; - maintainers = [ maintainers.devhell ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.devhell ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/networking/instant-messengers/psi/default.nix b/pkgs/applications/networking/instant-messengers/psi/default.nix index 2f8b2ef4811c..9b7ac59cd4e1 100644 --- a/pkgs/applications/networking/instant-messengers/psi/default.nix +++ b/pkgs/applications/networking/instant-messengers/psi/default.nix @@ -42,12 +42,12 @@ mkDerivation rec { hunspell ]; - meta = with lib; { + meta = { homepage = "https://psi-im.org"; description = "XMPP (Jabber) client"; mainProgram = "psi"; - maintainers = [ maintainers.raskin ]; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = [ lib.maintainers.raskin ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/quaternion/default.nix b/pkgs/applications/networking/instant-messengers/quaternion/default.nix index af2c5434bd68..e275452c9b9e 100644 --- a/pkgs/applications/networking/instant-messengers/quaternion/default.nix +++ b/pkgs/applications/networking/instant-messengers/quaternion/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { --replace 'Exec=quaternion' "Exec=$out/bin/quaternion" ''; - meta = with lib; { + meta = { description = "Cross-platform desktop IM client for the Matrix protocol"; mainProgram = "quaternion"; homepage = "https://matrix.org/ecosystem/clients/quaternion/"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; inherit (qtbase.meta) platforms; }; }) diff --git a/pkgs/applications/networking/instant-messengers/ripcord/darwin.nix b/pkgs/applications/networking/instant-messengers/ripcord/darwin.nix index 9fccad174317..a346ebd7b0de 100644 --- a/pkgs/applications/networking/instant-messengers/ripcord/darwin.nix +++ b/pkgs/applications/networking/instant-messengers/ripcord/darwin.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Desktop chat client for Slack and Discord"; homepage = "https://cancel.fm/ripcord/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # See: https://cancel.fm/ripcord/shareware-redistribution/ - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ mikroskeem ]; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ mikroskeem ]; platforms = [ "x86_64-darwin" ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/ripcord/default.nix b/pkgs/applications/networking/instant-messengers/ripcord/default.nix index 97e66ff4a258..116336eb2a70 100644 --- a/pkgs/applications/networking/instant-messengers/ripcord/default.nix +++ b/pkgs/applications/networking/instant-messengers/ripcord/default.nix @@ -96,12 +96,12 @@ mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Desktop chat client for Slack and Discord"; homepage = "https://cancel.fm/ripcord/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # See: https://cancel.fm/ripcord/shareware-redistribution/ - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/networking/instant-messengers/tensor/default.nix b/pkgs/applications/networking/instant-messengers/tensor/default.nix index 1ee4fec5e564..74e95ecf03df 100644 --- a/pkgs/applications/networking/instant-messengers/tensor/default.nix +++ b/pkgs/applications/networking/instant-messengers/tensor/default.nix @@ -70,12 +70,12 @@ mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/davidar/tensor"; description = "Cross-platform Qt5/QML-based Matrix client"; mainProgram = "tensor"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; inherit (qtbase.meta) platforms; }; } diff --git a/pkgs/applications/networking/instant-messengers/vacuum/default.nix b/pkgs/applications/networking/instant-messengers/vacuum/default.nix index b390d62ea975..b4b9f4873d83 100644 --- a/pkgs/applications/networking/instant-messengers/vacuum/default.nix +++ b/pkgs/applications/networking/instant-messengers/vacuum/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "XMPP client fully composed of plugins"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; homepage = "http://www.vacuum-im.org"; }; } diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix index a3b067be3f69..809a4b04cf3d 100644 --- a/pkgs/applications/networking/irc/communi/default.nix +++ b/pkgs/applications/networking/irc/communi/default.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation { rm -rf lib ''; - meta = with lib; { + meta = { description = "Simple and elegant cross-platform IRC client"; mainProgram = "communi"; homepage = "https://github.com/communi/communi-desktop"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/networking/irc/kvirc/default.nix b/pkgs/applications/networking/irc/kvirc/default.nix index f91905bc1a2a..e7ba832a0f4b 100644 --- a/pkgs/applications/networking/irc/kvirc/default.nix +++ b/pkgs/applications/networking/irc/kvirc/default.nix @@ -35,11 +35,11 @@ mkDerivation { gettext ]; - meta = with lib; { + meta = { description = "Advanced IRC Client"; homepage = "https://www.kvirc.net/"; - license = licenses.gpl2; - maintainers = [ maintainers.suhr ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.suhr ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/irc/quassel/default.nix b/pkgs/applications/networking/irc/quassel/default.nix index 9fffbd27288c..0d942c724b4a 100644 --- a/pkgs/applications/networking/irc/quassel/default.nix +++ b/pkgs/applications/networking/irc/quassel/default.nix @@ -110,7 +110,7 @@ in --prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules" ''; - meta = with lib; { + meta = { homepage = "https://quassel-irc.org/"; description = "Qt/KDE distributed IRC client supporting a remote daemon"; longDescription = '' @@ -120,8 +120,8 @@ in combination of screen and a text-based IRC client such as WeeChat, but graphical (based on Qt4/KDE4 or Qt5/KF5). ''; - license = licenses.gpl3; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ttuegel ]; mainProgram = if monolithic then "quassel" diff --git a/pkgs/applications/networking/irc/weechat/scripts/autosort/default.nix b/pkgs/applications/networking/irc/weechat/scripts/autosort/default.nix index 5758822dbdae..38773bfb9cb8 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/autosort/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/autosort/default.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation { scripts = [ "autosort.py" ]; }; - meta = with lib; { + meta = { inherit (weechat.meta) platforms; description = "autosort automatically keeps your buffers sorted and grouped by server"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/buffer_autoset/default.nix b/pkgs/applications/networking/irc/weechat/scripts/buffer_autoset/default.nix index 090b7dcbce40..c6a31cdc555d 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/buffer_autoset/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/buffer_autoset/default.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation { install -D $src $out/share/buffer_autoset.py ''; - meta = with lib; { + meta = { inherit (weechat.meta) platforms; description = "WeeChat script which auto-set buffer properties when a buffer is opened"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ govanify ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ govanify ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/colorize_nicks/default.nix b/pkgs/applications/networking/irc/weechat/scripts/colorize_nicks/default.nix index 7cdb408c2f67..af6c76a3c292 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/colorize_nicks/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/colorize_nicks/default.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation { scripts = [ "colorize_nicks.py" ]; }; - meta = with lib; { + meta = { inherit (weechat.meta) platforms; description = "Use the weechat nick colors in the chat area"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qyliss ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/edit/default.nix b/pkgs/applications/networking/irc/weechat/scripts/edit/default.nix index b89971bc0686..983f635010fb 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/edit/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/edit/default.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { inherit (weechat.meta) platforms; description = "This simple weechat plugin allows you to compose messages in your $EDITOR"; - license = licenses.mit; - maintainers = with maintainers; [ eraserhd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eraserhd ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/highmon/default.nix b/pkgs/applications/networking/irc/weechat/scripts/highmon/default.nix index 74302e67c436..33288a6cc426 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/highmon/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/highmon/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { inherit (weechat.meta) platforms; homepage = "https://github.com/KenjiE20/highmon/"; description = "WeeChat script that adds 'Highlight Monitor'"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ govanify ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ govanify ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/multiline/default.nix b/pkgs/applications/networking/irc/weechat/scripts/multiline/default.nix index 94d40da39e7d..14e16ab8d5d3 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/multiline/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/multiline/default.nix @@ -37,9 +37,9 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Multi-line edit box"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/url_hint/default.nix b/pkgs/applications/networking/irc/weechat/scripts/url_hint/default.nix index 25afe6aef2a9..21da32c9f00c 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/url_hint/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/url_hint/default.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { inherit (weechat.meta) platforms; description = "WeeChat URL opening script"; - license = licenses.mit; - maintainers = with maintainers; [ eraserhd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eraserhd ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix b/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix index 6e99039b5003..8fa2e35de506 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix @@ -45,9 +45,9 @@ stdenv.mkDerivation rec { install -D -m 0444 weemoji.json $out/share/wee-slack/weemoji.json ''; - meta = with lib; { + meta = { homepage = "https://github.com/wee-slack/wee-slack"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; description = '' A WeeChat plugin for Slack.com. Synchronizes read markers, provides typing notification, search, etc.. diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-autosort/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-autosort/default.nix index 8f577c8d148a..75873cb4c810 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-autosort/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-autosort/default.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation { install -D autosort.py $out/share/autosort.py ''; - meta = with lib; { + meta = { description = "Autosort is a weechat script to automatically or manually keep your buffers sorted"; homepage = "https://github.com/de-vri-es/weechat-autosort"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-go/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-go/default.nix index b27d71a8b526..e4a52e1d82fa 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-go/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-go/default.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation { install -D $src $out/share/go.py ''; - meta = with lib; { + meta = { inherit (weechat.meta) platforms; description = "WeeChat script to quickly jump to different buffers"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ govanify ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ govanify ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-grep/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-grep/default.nix index 8f1b6e5c1c33..578fa6bc26d6 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-grep/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-grep/default.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation { scripts = [ "grep.py" ]; }; - meta = with lib; { + meta = { description = "Search in Weechat buffers and logs (for Weechat 0.3.*)"; homepage = "https://github.com/weechat/scripts/blob/master/python/grep.py"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix index 3434f8d4047a..29c761b6fbed 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation { cp ${luaffi}/lib/lua/${luaffi.lua.luaversion}/ffi.so $out/lib/ffi.so ''; - meta = with lib; { + meta = { description = "WeeChat script in Lua that implements the matrix.org chat protocol"; homepage = "https://github.com/torhve/weechat-matrix-protocol-script"; maintainers = [ ]; - license = licenses.mit; # see https://github.com/torhve/weechat-matrix-protocol-script/blob/0052e7275ae149dc5241226391c9b1889ecc3c6b/matrix.lua#L53 - platforms = platforms.unix; + license = lib.licenses.mit; # see https://github.com/torhve/weechat-matrix-protocol-script/blob/0052e7275ae149dc5241226391c9b1889ecc3c6b/matrix.lua#L53 + platforms = lib.platforms.unix; # As of 2019-06-30, all of the dependencies are available on macOS but the # package itself does not build. diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix index 0a9765549b63..65155aecce72 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix @@ -98,11 +98,11 @@ buildPythonPackage { substituteInPlace $out/${python.sitePackages}/matrix/uploads.py --replace-fail \"matrix_upload\" \"$out/bin/matrix_upload\" ''; - meta = with lib; { + meta = { description = "Python plugin for Weechat that lets Weechat communicate over the Matrix protocol"; homepage = "https://github.com/poljar/weechat-matrix"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ tilpner ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tilpner ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-notify-send/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-notify-send/default.nix index 12115fd6e2d4..4890a8bbe4b7 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-notify-send/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-notify-send/default.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { --replace "'notify-send'" "'${libnotify}/bin/notify-send'" ''; - meta = with lib; { + meta = { description = "WeeChat script that sends highlight and message notifications through notify-send"; homepage = "https://github.com/s3rvac/weechat-notify-send"; - license = licenses.mit; - maintainers = with maintainers; [ tobim ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tobim ]; }; } diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix index 055bb141bcea..ff2e13479888 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix @@ -79,10 +79,10 @@ stdenv.mkDerivation rec { cp weechat_otr.py $out/share/weechat_otr.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/mmb/weechat-otr"; - license = licenses.gpl3; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ oxzi ]; description = "WeeChat script for Off-the-Record messaging"; knownVulnerabilities = [ "There is no upstream release since 2018-03." diff --git a/pkgs/applications/networking/irc/weechat/scripts/zncplayback/default.nix b/pkgs/applications/networking/irc/weechat/scripts/zncplayback/default.nix index 71bd89d3ec15..890c82dd4b56 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/zncplayback/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/zncplayback/default.nix @@ -24,9 +24,9 @@ stdenv.mkDerivation { scripts = [ "zncplayback.py" ]; }; - meta = with lib; { + meta = { description = "Add support for the ZNC Playback module"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qyliss ]; }; } diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index 132b68764952..b120ed78b549 100644 --- a/pkgs/applications/networking/linssid/default.nix +++ b/pkgs/applications/networking/linssid/default.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { }'' ]; - meta = with lib; { + meta = { description = "Graphical wireless scanning for Linux"; homepage = "https://sourceforge.net/projects/linssid/"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "linssid"; }; } diff --git a/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix index 6ccd3b6a4da6..8b1b9a3a83c5 100644 --- a/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix +++ b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix @@ -147,12 +147,12 @@ stdenv.mkDerivation rec { PKG_CONFIG_CAMEL_1_2_CAMEL_PROVIDERDIR = "${placeholder "out"}/lib/evolution-data-server/camel-providers"; PKG_CONFIG_LIBEDATASERVERUI_1_2_UIMODULEDIR = "${placeholder "out"}/lib/evolution-data-server/ui-modules"; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/evolution"; description = "Personal information management application that provides integrated mail, calendaring and address book functionality"; mainProgram = "evolution"; - teams = [ teams.gnome ]; - license = licenses.lgpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix index a8e304a65b42..34f5f05ea2d0 100644 --- a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix +++ b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { --prefix PERL5LIB : $PERL5LIB ''; - meta = with lib; { + meta = { description = "Mutt support for notmuch"; mainProgram = "notmuch-mutt"; homepage = "https://notmuchmail.org/"; - license = with licenses; gpl3; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = with lib.licenses; gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/networking/mkchromecast/default.nix b/pkgs/applications/networking/mkchromecast/default.nix index dec636d0bf85..03b835b042c4 100644 --- a/pkgs/applications/networking/mkchromecast/default.nix +++ b/pkgs/applications/networking/mkchromecast/default.nix @@ -89,11 +89,11 @@ python3Packages.buildPythonApplication { --replace './bin/audiodevice' '${placeholder "out"}/bin/audiodevice' ''; - meta = with lib; { + meta = { homepage = "https://mkchromecast.com/"; description = "Cast macOS and Linux Audio/Video to your Google Cast and Sonos Devices"; - license = licenses.mit; - maintainers = with maintainers; [ shou ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ shou ]; mainProgram = "mkchromecast"; }; } diff --git a/pkgs/applications/networking/mullvad/libwg.nix b/pkgs/applications/networking/mullvad/libwg.nix index a3d69357f13c..c66f71cc7174 100644 --- a/pkgs/applications/networking/mullvad/libwg.nix +++ b/pkgs/applications/networking/mullvad/libwg.nix @@ -33,10 +33,10 @@ buildGoModule { mv $out/lib/libwg{,.a} ''; - meta = with lib; { + meta = { description = "Tiny wrapper around wireguard-go"; homepage = "https://github.com/mullvad/mullvadvpn-app/tree/main/wireguard-go-rs/libwg"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ cole-h ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ cole-h ]; }; } diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index 6820ec4208a2..555439460d5e 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -86,15 +86,15 @@ let passthru.tests.connectivity = nixosTests.mumble; - meta = with lib; { + meta = { description = "Low-latency, high quality voice chat software"; homepage = "https://mumble.info"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ felixsinger lilacious ]; - platforms = platforms.linux ++ (overrides.platforms or [ ]); + platforms = lib.platforms.linux ++ (overrides.platforms or [ ]); }; } ); diff --git a/pkgs/applications/networking/ostinato/default.nix b/pkgs/applications/networking/ostinato/default.nix index 5ae05c37776e..d5a3a05d4da3 100644 --- a/pkgs/applications/networking/ostinato/default.nix +++ b/pkgs/applications/networking/ostinato/default.nix @@ -83,11 +83,11 @@ mkDerivation rec { # pdmlprotocol.h:23:25: fatal error: protocol.pb.h: No such file or directory enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Packet traffic generator and analyzer"; homepage = "https://ostinato.org/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ rick68 ]; - platforms = with platforms; linux ++ darwin ++ cygwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ rick68 ]; + platforms = with lib.platforms; linux ++ darwin ++ cygwin; }; } diff --git a/pkgs/applications/networking/p2p/deluge/default.nix b/pkgs/applications/networking/p2p/deluge/default.nix index 848c81bbe448..0dc03f005bc5 100644 --- a/pkgs/applications/networking/p2p/deluge/default.nix +++ b/pkgs/applications/networking/p2p/deluge/default.nix @@ -102,14 +102,14 @@ let passthru.tests = { inherit (nixosTests) deluge; }; - meta = with lib; { + meta = { description = "Torrent client"; homepage = "https://deluge-torrent.org"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ebzzry ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; diff --git a/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix index 116a1faaced0..9dad2f63d9d9 100644 --- a/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix +++ b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix @@ -88,10 +88,10 @@ mkDerivation rec { --replace "/usr/local" "$out" ''; - meta = with lib; { + meta = { description = "Cross-platform program that uses the Direct Connect and ADC protocols"; homepage = "https://github.com/eiskaltdcpp/eiskaltdcpp"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix b/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix index ccc8aeceb8a3..168a9525ae60 100644 --- a/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix +++ b/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix @@ -38,16 +38,16 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.frostwire.com/"; description = "BitTorrent Client and Cloud File Downloader"; mainProgram = "frostwire"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ gavin ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ gavin ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/networking/p2p/retroshare/default.nix b/pkgs/applications/networking/p2p/retroshare/default.nix index 1bc2b7db19c7..48e29311b7a9 100644 --- a/pkgs/applications/networking/p2p/retroshare/default.nix +++ b/pkgs/applications/networking/p2p/retroshare/default.nix @@ -93,11 +93,11 @@ mkDerivation rec { cp libbitdht/src/bitdht/bdboot.txt $out/share/retroshare ''; - meta = with lib; { + meta = { description = "Decentralized peer to peer chat application"; homepage = "https://retroshare.cc/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ StijnDW ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ StijnDW ]; }; } diff --git a/pkgs/applications/networking/p2p/transmission/4.nix b/pkgs/applications/networking/p2p/transmission/4.nix index a49cc0c788fa..2774a4903eae 100644 --- a/pkgs/applications/networking/p2p/transmission/4.nix +++ b/pkgs/applications/networking/p2p/transmission/4.nix @@ -201,7 +201,7 @@ stdenv.mkDerivation (finalAttrs: { smoke-test = nixosTests.bittorrent; }; - meta = with lib; { + meta = { description = "Fast, easy and free BitTorrent client"; mainProgram = if (enableQt5 || enableQt6) then @@ -222,10 +222,10 @@ stdenv.mkDerivation (finalAttrs: { * Full encryption, DHT, and PEX support ''; homepage = "https://www.transmissionbt.com/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus mit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/networking/remote/citrix-workspace/generic.nix b/pkgs/applications/networking/remote/citrix-workspace/generic.nix index 5240664a0f1a..5d564fc2bb94 100644 --- a/pkgs/applications/networking/remote/citrix-workspace/generic.nix +++ b/pkgs/applications/networking/remote/citrix-workspace/generic.nix @@ -315,11 +315,11 @@ stdenv.mkDerivation rec { meta = with lib; { # webkitgtk_4_0 was removed broken = true; - license = licenses.unfree; + license = lib.licenses.unfree; description = "Citrix Workspace"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" ] ++ optional (versionOlder version "24") "i686-linux"; - maintainers = with maintainers; [ flacks ]; + maintainers = with lib.maintainers; [ flacks ]; inherit homepage; }; } diff --git a/pkgs/applications/networking/remote/putty/default.nix b/pkgs/applications/networking/remote/putty/default.nix index fa3d0fc67f68..69f3360e1750 100644 --- a/pkgs/applications/networking/remote/putty/default.nix +++ b/pkgs/applications/networking/remote/putty/default.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Free Telnet/SSH Client"; longDescription = '' PuTTY is a free implementation of Telnet and SSH for Windows and Unix @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { It is written and maintained primarily by Simon Tatham. ''; homepage = "https://www.chiark.greenend.org.uk/~sgtatham/putty/"; - license = licenses.mit; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.mit; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; } diff --git a/pkgs/applications/networking/remote/teamviewer/default.nix b/pkgs/applications/networking/remote/teamviewer/default.nix index b9988c35e594..3dca39a4d274 100644 --- a/pkgs/applications/networking/remote/teamviewer/default.nix +++ b/pkgs/applications/networking/remote/teamviewer/default.nix @@ -154,16 +154,16 @@ mkDerivation rec { passthru.updateScript = ./update-teamviewer.sh; - meta = with lib; { + meta = { homepage = "https://www.teamviewer.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; description = "Desktop sharing application, providing remote support and online meetings"; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jraygauthier gador c4patino diff --git a/pkgs/applications/networking/remote/x2gokdriveclient/default.nix b/pkgs/applications/networking/remote/x2gokdriveclient/default.nix index 8435f3820c1b..162f0fe8c8b7 100644 --- a/pkgs/applications/networking/remote/x2gokdriveclient/default.nix +++ b/pkgs/applications/networking/remote/x2gokdriveclient/default.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { "--set QT_QPA_PLATFORM xcb" ]; - meta = with lib; { + meta = { description = "Graphical NoMachine NX3 remote desktop client (KDrive client)"; mainProgram = "x2gokdriveclient"; homepage = "https://x2go.org/"; - maintainers = with maintainers; [ juliabru ]; - license = licenses.gpl3; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ juliabru ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/networking/sync/lsyncd/default.nix b/pkgs/applications/networking/sync/lsyncd/default.nix index c11e062e33e0..41b163661cab 100644 --- a/pkgs/applications/networking/sync/lsyncd/default.nix +++ b/pkgs/applications/networking/sync/lsyncd/default.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { libxslt ]; - meta = with lib; { + meta = { homepage = "https://github.com/axkibe/lsyncd"; description = "Utility that synchronizes local directories with remote targets"; mainProgram = "lsyncd"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ bobvanderlinden ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bobvanderlinden ]; }; } diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix index 8d2ef524e2e8..b98c39cc1baa 100644 --- a/pkgs/applications/networking/sync/rsync/default.nix +++ b/pkgs/applications/networking/sync/rsync/default.nix @@ -84,15 +84,15 @@ stdenv.mkDerivation rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Fast incremental file transfer utility"; homepage = "https://rsync.samba.org/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "rsync"; maintainers = with lib.maintainers; [ ivan ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; identifiers.cpeParts = { vendor = "samba"; inherit version; diff --git a/pkgs/applications/networking/syncplay/default.nix b/pkgs/applications/networking/syncplay/default.nix index 76360dd32e2c..8ad4528894bf 100644 --- a/pkgs/applications/networking/syncplay/default.nix +++ b/pkgs/applications/networking/syncplay/default.nix @@ -51,11 +51,11 @@ buildPythonApplication rec { wrapQtApp $out/bin/syncplay ''; - meta = with lib; { + meta = { homepage = "https://syncplay.pl/"; description = "Free software that synchronises media players"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ assistant ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ assistant ]; }; } diff --git a/pkgs/applications/office/activitywatch/default.nix b/pkgs/applications/office/activitywatch/default.nix index 715c21e8b89f..fb325a7b6c42 100644 --- a/pkgs/applications/office/activitywatch/default.nix +++ b/pkgs/applications/office/activitywatch/default.nix @@ -51,12 +51,12 @@ rec { pythonImportsCheck = [ "aw_watcher_afk" ]; - meta = with lib; { + meta = { description = "Watches keyboard and mouse activity to determine if you are AFK or not (for use with ActivityWatch)"; homepage = "https://github.com/ActivityWatch/aw-watcher-afk"; - maintainers = with maintainers; [ huantian ]; + maintainers = with lib.maintainers; [ huantian ]; mainProgram = "aw-watcher-afk"; - license = licenses.mpl20; + license = lib.licenses.mpl20; }; }; @@ -80,12 +80,12 @@ rec { pythonImportsCheck = [ "aw_watcher_window" ]; - meta = with lib; { + meta = { description = "Cross-platform window watcher (for use with ActivityWatch)"; homepage = "https://github.com/ActivityWatch/aw-watcher-window"; - maintainers = with maintainers; [ huantian ]; + maintainers = with lib.maintainers; [ huantian ]; mainProgram = "aw-watcher-window"; - license = licenses.mpl20; + license = lib.licenses.mpl20; badPlatforms = lib.platforms.darwin; # requires pyobjc-framework }; }; @@ -142,12 +142,12 @@ rec { pythonImportsCheck = [ "aw_qt" ]; - meta = with lib; { + meta = { description = "Tray icon that manages ActivityWatch processes, built with Qt"; homepage = "https://github.com/ActivityWatch/aw-qt"; - maintainers = with maintainers; [ huantian ]; + maintainers = with lib.maintainers; [ huantian ]; mainProgram = "aw-qt"; - license = licenses.mpl20; + license = lib.licenses.mpl20; badPlatforms = lib.platforms.darwin; # requires pyobjc-framework }; }; @@ -172,12 +172,12 @@ rec { pythonImportsCheck = [ "aw_notify" ]; - meta = with lib; { + meta = { description = "Desktop notification service for ActivityWatch"; homepage = "https://github.com/ActivityWatch/aw-notify"; - maintainers = with maintainers; [ huantian ]; + maintainers = with lib.maintainers; [ huantian ]; mainProgram = "aw-notify"; - license = licenses.mpl20; + license = lib.licenses.mpl20; }; }; @@ -214,13 +214,13 @@ rec { export HOME="$TMPDIR" ''; - meta = with lib; { + meta = { description = "High-performance implementation of the ActivityWatch server, written in Rust"; homepage = "https://github.com/ActivityWatch/aw-server-rust"; - maintainers = with maintainers; [ huantian ]; + maintainers = with lib.maintainers; [ huantian ]; mainProgram = "aw-server"; - platforms = platforms.linux; - license = licenses.mpl20; + platforms = lib.platforms.linux; + license = lib.licenses.mpl20; }; }; @@ -255,11 +255,11 @@ rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Web-based UI for ActivityWatch, built with Vue.js"; homepage = "https://github.com/ActivityWatch/aw-webui/"; - maintainers = with maintainers; [ huantian ]; - license = licenses.mpl20; + maintainers = with lib.maintainers; [ huantian ]; + license = lib.licenses.mpl20; }; }; } diff --git a/pkgs/applications/office/activitywatch/wrapper.nix b/pkgs/applications/office/activitywatch/wrapper.nix index fbaf61873b3d..0a4736a2470c 100644 --- a/pkgs/applications/office/activitywatch/wrapper.nix +++ b/pkgs/applications/office/activitywatch/wrapper.nix @@ -20,14 +20,14 @@ symlinkJoin { ] ++ (lib.forEach extraWatchers (p: p.out)); - meta = with lib; { + meta = { description = "Best free and open-source automated time tracker"; homepage = "https://activitywatch.net/"; downloadPage = "https://github.com/ActivityWatch/activitywatch/releases"; changelog = "https://github.com/ActivityWatch/activitywatch/releases/tag/v${aw-server-rust.version}"; - maintainers = with maintainers; [ huantian ]; + maintainers = with lib.maintainers; [ huantian ]; mainProgram = "aw-qt"; - platforms = platforms.linux; - license = licenses.mpl20; + platforms = lib.platforms.linux; + license = lib.licenses.mpl20; }; } diff --git a/pkgs/applications/office/beamerpresenter/default.nix b/pkgs/applications/office/beamerpresenter/default.nix index e5fde0833bde..9aa3b0332879 100644 --- a/pkgs/applications/office/beamerpresenter/default.nix +++ b/pkgs/applications/office/beamerpresenter/default.nix @@ -88,15 +88,15 @@ stdenv.mkDerivation rec { qtWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Modular multi screen pdf presentation viewer"; homepage = "https://github.com/beamerpresenter/BeamerPresenter"; - license = with licenses; [ + license = with lib.licenses; [ agpl3Only gpl3Plus ]; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ euxane dotlambda ]; diff --git a/pkgs/applications/office/beancount/beancount-ing-diba.nix b/pkgs/applications/office/beancount/beancount-ing-diba.nix index 2a4b567177e8..68b290bf8e31 100644 --- a/pkgs/applications/office/beancount/beancount-ing-diba.nix +++ b/pkgs/applications/office/beancount/beancount-ing-diba.nix @@ -28,10 +28,10 @@ python3.pkgs.buildPythonApplication rec { poetry-core ]; - meta = with lib; { + meta = { homepage = "https://github.com/siddhantgoel/beancount-ing-diba"; description = "Beancount Importers for ING-DiBa (Germany) CSV Exports"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/applications/office/beancount/beancount_share.nix b/pkgs/applications/office/beancount/beancount_share.nix index 9e2a0c29c411..18862fca57f0 100644 --- a/pkgs/applications/office/beancount/beancount_share.nix +++ b/pkgs/applications/office/beancount/beancount_share.nix @@ -28,10 +28,10 @@ python3.pkgs.buildPythonApplication rec { python3.pkgs.setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/akuukis/beancount_share"; description = "Beancount plugin to share expenses with external partners within one ledger"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/applications/office/cb2bib/default.nix b/pkgs/applications/office/cb2bib/default.nix index d177d6efffc7..da972b7e7463 100644 --- a/pkgs/applications/office/cb2bib/default.nix +++ b/pkgs/applications/office/cb2bib/default.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Rapidly extract unformatted, or unstandardized bibliographic references from email alerts, journal Web pages and PDF files"; homepage = "http://www.molspaces.com/d_cb2bib-overview.php"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/applications/office/libreoffice/darwin/default.nix b/pkgs/applications/office/libreoffice/darwin/default.nix index 54a0b8a221d4..2194bd02870b 100644 --- a/pkgs/applications/office/libreoffice/darwin/default.nix +++ b/pkgs/applications/office/libreoffice/darwin/default.nix @@ -71,12 +71,12 @@ stdenvNoCC.mkDerivation { update-source-version libreoffice-bin $newVersion $newX86_64Sha256 --file=${defaultNixFile} --system=x86_64-darwin --ignore-same-version ''; - meta = with lib; { + meta = { description = "Comprehensive, professional-quality productivity suite, a variant of openoffice.org"; homepage = "https://libreoffice.org/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ tricktron ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ tricktron ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-darwin" "aarch64-darwin" diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix index 01023a01a8a6..1e7bdb69e1dc 100644 --- a/pkgs/applications/office/mendeley/default.nix +++ b/pkgs/applications/office/mendeley/default.nix @@ -34,13 +34,13 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${executableName}' ''; - meta = with lib; { + meta = { homepage = "https://www.mendeley.com"; description = "Reference manager and academic social network"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ atila ]; + maintainers = with lib.maintainers; [ atila ]; mainProgram = "mendeley-reference-manager"; }; diff --git a/pkgs/applications/office/mytetra/default.nix b/pkgs/applications/office/mytetra/default.nix index ee4fdc7e9c41..3ab36cc1684a 100644 --- a/pkgs/applications/office/mytetra/default.nix +++ b/pkgs/applications/office/mytetra/default.nix @@ -46,12 +46,12 @@ mkDerivation rec { --suffix PATH : ${xdg-utils}/bin ''; - meta = with lib; { + meta = { description = "Smart manager for information collecting"; mainProgram = "mytetra"; homepage = "https://webhamster.ru/site/page/index/articles/projectcode/138"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/office/paperwork/paperwork-backend.nix b/pkgs/applications/office/paperwork/paperwork-backend.nix index da40d64aff0c..32b3c466e458 100644 --- a/pkgs/applications/office/paperwork/paperwork-backend.nix +++ b/pkgs/applications/office/paperwork/paperwork-backend.nix @@ -84,11 +84,11 @@ buildPythonPackage rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { description = "Backend part of Paperwork (Python API, no UI)"; homepage = "https://openpaper.work"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aszlig symphorien ]; diff --git a/pkgs/applications/office/qpdfview/default.nix b/pkgs/applications/office/qpdfview/default.nix index ccac3a6e385a..1b79408c475e 100644 --- a/pkgs/applications/office/qpdfview/default.nix +++ b/pkgs/applications/office/qpdfview/default.nix @@ -64,12 +64,12 @@ mkDerivation rec { NIX_CFLAGS_COMPILE = "-std=c++17"; }; - meta = with lib; { + meta = { description = "Tabbed document viewer"; mainProgram = "qpdfview"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://launchpad.net/qpdfview"; }; } diff --git a/pkgs/applications/office/semantik/default.nix b/pkgs/applications/office/semantik/default.nix index 568a5e0ad142..5c805344b115 100644 --- a/pkgs/applications/office/semantik/default.nix +++ b/pkgs/applications/office/semantik/default.nix @@ -90,12 +90,12 @@ mkDerivation rec { "--qtlibs=${lib.getLib qtbase}/lib" ]; - meta = with lib; { + meta = { description = "Mind-mapping application for KDE"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://waf.io/semantik.html"; - maintainers = [ maintainers.shamilton ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.shamilton ]; + platforms = lib.platforms.linux; mainProgram = "semantik"; }; } diff --git a/pkgs/applications/office/tagainijisho/default.nix b/pkgs/applications/office/tagainijisho/default.nix index 810b2ece536d..be8bf1abcb18 100644 --- a/pkgs/applications/office/tagainijisho/default.nix +++ b/pkgs/applications/office/tagainijisho/default.nix @@ -37,17 +37,17 @@ stdenv.mkDerivation rec { "-DEMBED_SQLITE=OFF" ]; - meta = with lib; { + meta = { description = "Free, open-source Japanese dictionary and kanji lookup tool"; mainProgram = "tagainijisho"; homepage = "https://www.tagaini.net/"; - license = with licenses; [ + license = with lib.licenses; [ # program gpl3Plus # data cc-by-sa-30 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ vbgl ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/applications/radio/cqrlog/default.nix b/pkgs/applications/radio/cqrlog/default.nix index b2bcc7829414..ab0b5f9322d3 100644 --- a/pkgs/applications/radio/cqrlog/default.nix +++ b/pkgs/applications/radio/cqrlog/default.nix @@ -99,12 +99,12 @@ stdenv.mkDerivation rec { "$out/bin/.cqrlog-wrapped" ''; - meta = with lib; { + meta = { description = "Linux logging program for amateur radio operators"; mainProgram = "cqrlog"; homepage = "https://www.cqrlog.com/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/radio/fldigi/default.nix b/pkgs/applications/radio/fldigi/default.nix index e4a4a7ea226e..695cfb9ef1a8 100644 --- a/pkgs/applications/radio/fldigi/default.nix +++ b/pkgs/applications/radio/fldigi/default.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Digital modem program"; homepage = "https://sourceforge.net/projects/fldigi/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ relrod ftrvxmtrx ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/radio/js8call/default.nix b/pkgs/applications/radio/js8call/default.nix index 6b3a2ee76d7f..4054474be47a 100644 --- a/pkgs/applications/radio/js8call/default.nix +++ b/pkgs/applications/radio/js8call/default.nix @@ -47,16 +47,16 @@ stdenv.mkDerivation (finalAttrs: { --replace "/usr/bin/" "$out/bin" ''; - meta = with lib; { + meta = { description = "Weak-signal keyboard messaging for amateur radio"; longDescription = '' JS8Call is software using the JS8 Digital Mode providing weak signal keyboard to keyboard messaging to Amateur Radio Operators. ''; homepage = "http://js8call.com/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ melling sarcasticadmin ]; diff --git a/pkgs/applications/radio/klog/default.nix b/pkgs/applications/radio/klog/default.nix index f4729c183ed9..48e70b24d7b5 100644 --- a/pkgs/applications/radio/klog/default.nix +++ b/pkgs/applications/radio/klog/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { qmakeFlags = [ "KLog.pro" ]; - meta = with lib; { + meta = { description = "Multiplatform free hamradio logger"; mainProgram = "klog"; longDescription = '' @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { ClubLog integration, WSJT-X, DX-Marathon support and much more. ''; homepage = "https://www.klog.xyz/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ pulsation ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pulsation ]; }; } diff --git a/pkgs/applications/radio/limesuite/default.nix b/pkgs/applications/radio/limesuite/default.nix index 4e28a6197c62..2b7492d8fbf2 100644 --- a/pkgs/applications/radio/limesuite/default.nix +++ b/pkgs/applications/radio/limesuite/default.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/limesuite bin/Release/lms7suite_mcu/* ''; - meta = with lib; { + meta = { description = "Driver and GUI for LMS7002M-based SDR platforms"; homepage = "https://github.com/myriadrf/LimeSuite"; - license = licenses.asl20; - maintainers = with maintainers; [ markuskowa ]; - platforms = platforms.unix; - badPlatforms = lib.optionals withGui platforms.darwin; # withGui transitively depends on mesa, which is broken on darwin + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ markuskowa ]; + platforms = lib.platforms.unix; + badPlatforms = lib.optionals withGui lib.platforms.darwin; # withGui transitively depends on mesa, which is broken on darwin }; } diff --git a/pkgs/applications/radio/pothos/default.nix b/pkgs/applications/radio/pothos/default.nix index 3d49bd8229f9..bde117a91be9 100644 --- a/pkgs/applications/radio/pothos/default.nix +++ b/pkgs/applications/radio/pothos/default.nix @@ -106,11 +106,11 @@ mkDerivation rec { wrapQtApp $out/bin/spuce_window_plot ''; - meta = with lib; { + meta = { description = "Pothos data-flow framework"; homepage = "https://github.com/pothosware/PothosCore/wiki"; - license = licenses.boost; - platforms = platforms.linux; + license = lib.licenses.boost; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/radio/qsstv/default.nix b/pkgs/applications/radio/qsstv/default.nix index afe8427430af..f62d87719f26 100644 --- a/pkgs/applications/radio/qsstv/default.nix +++ b/pkgs/applications/radio/qsstv/default.nix @@ -45,11 +45,11 @@ mkDerivation rec { install -D qsstv.desktop $out/share/applications/qsstv.desktop ''; - meta = with lib; { + meta = { description = "Qt-based slow-scan TV and fax"; mainProgram = "qsstv"; homepage = "https://www.qsl.net/on4qz/"; - platforms = platforms.linux; + platforms = lib.platforms.linux; license = lib.licenses.gpl3; maintainers = with lib.maintainers; [ hax404 ]; }; diff --git a/pkgs/applications/radio/rtl-sdr/default.nix b/pkgs/applications/radio/rtl-sdr/default.nix index e49832d1f1f7..b0eb6627d12d 100644 --- a/pkgs/applications/radio/rtl-sdr/default.nix +++ b/pkgs/applications/radio/rtl-sdr/default.nix @@ -39,16 +39,16 @@ let --replace 'MODE:="0666"' 'ENV{ID_SOFTWARE_RADIO}="1", MODE="0660", GROUP="plugdev"' ''; - meta = with lib; { + meta = { inherit (meta) longDescription homepage; description = "Software to turn the RTL2832U into a SDR receiver"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ bjornfor skovati Tungsten842 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "rtl_sdr"; }; }; diff --git a/pkgs/applications/radio/sigdigger/default.nix b/pkgs/applications/radio/sigdigger/default.nix index 6e344c84d625..36c8c2f82a75 100644 --- a/pkgs/applications/radio/sigdigger/default.nix +++ b/pkgs/applications/radio/sigdigger/default.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { "SigDigger.pro" ]; - meta = with lib; { + meta = { description = "Qt-based digital signal analyzer, using Suscan core and Sigutils DSP library"; mainProgram = "SigDigger"; homepage = "https://github.com/BatchDrake/SigDigger"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ polygon oxapentane ]; diff --git a/pkgs/applications/radio/soapysdr/default.nix b/pkgs/applications/radio/soapysdr/default.nix index b2c3592845fb..c123a7b6f692 100644 --- a/pkgs/applications/radio/soapysdr/default.nix +++ b/pkgs/applications/radio/soapysdr/default.nix @@ -70,16 +70,16 @@ stdenv.mkDerivation (finalAttrs: { searchPath = "lib/SoapySDR/modules${finalAttrs.passthru.abiVersion}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapySDR"; description = "Vendor and platform neutral SDR support library"; - license = licenses.boost; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ markuskowa numinit ]; mainProgram = "SoapySDRUtil"; pkgConfigModules = [ "SoapySDR" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/radio/suwidgets/default.nix b/pkgs/applications/radio/suwidgets/default.nix index 103316cc81b1..f32e5d7cef25 100644 --- a/pkgs/applications/radio/suwidgets/default.nix +++ b/pkgs/applications/radio/suwidgets/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { "SuWidgetsLib.pro" ]; - meta = with lib; { + meta = { description = "Sigutils-related widgets"; homepage = "https://github.com/BatchDrake/SuWidgets"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ polygon oxapentane ]; diff --git a/pkgs/applications/radio/wsjtx/default.nix b/pkgs/applications/radio/wsjtx/default.nix index d67e875f5bd6..6c9c42d91954 100644 --- a/pkgs/applications/radio/wsjtx/default.nix +++ b/pkgs/applications/radio/wsjtx/default.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Weak-signal digital communication modes for amateur radio"; longDescription = '' WSJT-X implements communication protocols or "modes" called FT4, FT8, JT4, @@ -66,9 +66,9 @@ stdenv.mkDerivation rec { contacts under extreme weak-signal conditions. ''; homepage = "https://wsjt.sourceforge.io"; - license = with licenses; [ gpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = with lib.licenses; [ gpl3Plus ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lasandell numinit melling diff --git a/pkgs/applications/science/astronomy/calcmysky/default.nix b/pkgs/applications/science/astronomy/calcmysky/default.nix index 76d1a9ca3aa1..d103e4feea39 100644 --- a/pkgs/applications/science/astronomy/calcmysky/default.nix +++ b/pkgs/applications/science/astronomy/calcmysky/default.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { inherit stellarium; }; - meta = with lib; { + meta = { description = "Simulator of light scattering by planetary atmospheres"; homepage = "https://github.com/10110111/CalcMySky"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/applications/science/biology/cd-hit/default.nix b/pkgs/applications/science/biology/cd-hit/default.nix index 8a0faae9e63e..0e3e4cd40750 100644 --- a/pkgs/applications/science/biology/cd-hit/default.nix +++ b/pkgs/applications/science/biology/cd-hit/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/plot_2d.pl --prefix PERL5LIB : $PERL5LIB wrapProgram $out/bin/clstr_list_sort.pl --prefix PERL5LIB : $PERL5LIB ''; - meta = with lib; { + meta = { description = "Clustering and comparing protein or nucleotide sequences"; homepage = "http://weizhongli-lab.org/cd-hit/"; - license = licenses.gpl2; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/biology/hh-suite/default.nix b/pkgs/applications/science/biology/hh-suite/default.nix index 5cb62d1318df..d5ba108135c6 100644 --- a/pkgs/applications/science/biology/hh-suite/default.nix +++ b/pkgs/applications/science/biology/hh-suite/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Remote protein homology detection suite"; homepage = "https://github.com/soedinglab/hh-suite"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/chemistry/autodock-vina/default.nix b/pkgs/applications/science/chemistry/autodock-vina/default.nix index 66d1f3506a1b..e7f564088ad3 100644 --- a/pkgs/applications/science/chemistry/autodock-vina/default.nix +++ b/pkgs/applications/science/chemistry/autodock-vina/default.nix @@ -48,13 +48,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.boost = boost'; - meta = with lib; { + meta = { description = "One of the fastest and most widely used open-source docking engines"; homepage = "https://vina.scripps.edu/"; changelog = "https://github.com/ccsb-scripps/AutoDock-Vina/releases/tag/v${finalAttrs.version}"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; mainProgram = "vina"; }; }) diff --git a/pkgs/applications/science/chemistry/avogadro2/default.nix b/pkgs/applications/science/chemistry/avogadro2/default.nix index 4a18b8857166..0ab95960455c 100644 --- a/pkgs/applications/science/chemistry/avogadro2/default.nix +++ b/pkgs/applications/science/chemistry/avogadro2/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation (finalAttrs: { qtWrapperArgs = [ "--prefix PATH : ${lib.getBin openbabel}/bin" ]; - meta = with lib; { + meta = { description = "Molecule editor and visualizer"; mainProgram = "avogadro2"; - maintainers = with maintainers; [ sheepforce ]; + maintainers = with lib.maintainers; [ sheepforce ]; homepage = "https://github.com/OpenChemistry/avogadroapp"; inherit (mesa.meta) platforms; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/applications/science/chemistry/nwchem/default.nix b/pkgs/applications/science/chemistry/nwchem/default.nix index b320250e807a..910c3f19acec 100644 --- a/pkgs/applications/science/chemistry/nwchem/default.nix +++ b/pkgs/applications/science/chemistry/nwchem/default.nix @@ -222,18 +222,18 @@ stdenv.mkDerivation rec { passthru = { inherit mpi; }; - meta = with lib; { + meta = { description = "Open Source High-Performance Computational Chemistry"; mainProgram = "nwchem"; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sheepforce markuskowa ]; homepage = "https://nwchemgit.github.io"; - license = licenses.ecl20; + license = lib.licenses.ecl20; }; } diff --git a/pkgs/applications/science/chemistry/quantum-espresso/default.nix b/pkgs/applications/science/chemistry/quantum-espresso/default.nix index a09f27004e4a..7ca6947311d6 100644 --- a/pkgs/applications/science/chemistry/quantum-espresso/default.nix +++ b/pkgs/applications/science/chemistry/quantum-espresso/default.nix @@ -120,7 +120,7 @@ stdenv.mkDerivation rec { "-DQE_ENABLE_SCALAPACK=ON" ]; - meta = with lib; { + meta = { description = "Electronic-structure calculations and materials modeling at the nanoscale"; longDescription = '' Quantum ESPRESSO is an integrated suite of Open-Source computer codes for @@ -129,11 +129,11 @@ stdenv.mkDerivation rec { pseudopotentials. ''; homepage = "https://www.quantum-espresso.org/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; platforms = [ "x86_64-linux" "x86_64-darwin" ]; - maintainers = [ maintainers.costrouc ]; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/applications/science/electronics/bitscope/common.nix b/pkgs/applications/science/electronics/bitscope/common.nix index b5981e33d2a4..885a55334f02 100644 --- a/pkgs/applications/science/electronics/bitscope/common.nix +++ b/pkgs/applications/science/electronics/bitscope/common.nix @@ -30,11 +30,11 @@ let name = "${toolName}-${version}"; meta = - with lib; + { homepage = "http://bitscope.com/software/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; } // (attrs.meta or { }); diff --git a/pkgs/applications/science/electronics/degate/default.nix b/pkgs/applications/science/electronics/degate/default.nix index eb239685d008..1d5c5d5b32c0 100644 --- a/pkgs/applications/science/electronics/degate/default.nix +++ b/pkgs/applications/science/electronics/degate/default.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Modern and open-source cross-platform software for chips reverse engineering"; mainProgram = "Degate"; homepage = "https://degate.readthedocs.io/"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/applications/science/electronics/eagle/eagle.nix b/pkgs/applications/science/electronics/eagle/eagle.nix index 3277bda1326c..24e018f300d3 100644 --- a/pkgs/applications/science/electronics/eagle/eagle.nix +++ b/pkgs/applications/science/electronics/eagle/eagle.nix @@ -125,11 +125,11 @@ mkDerivation rec { ln -s "$out/eagle-${version}/bin/eagle-logo.png" "$out"/share/pixmaps/eagle.png ''; - meta = with lib; { + meta = { description = "Schematic editor and PCB layout tool from Autodesk (formerly CadSoft)"; homepage = "https://www.autodesk.com/products/eagle/overview"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; maintainers = [ ]; }; diff --git a/pkgs/applications/science/electronics/geda/default.nix b/pkgs/applications/science/electronics/geda/default.nix index 8efcbd3bae83..b7d68cb99b38 100644 --- a/pkgs/applications/science/electronics/geda/default.nix +++ b/pkgs/applications/science/electronics/geda/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { perl ]; - meta = with lib; { + meta = { description = "Full GPL'd suite of Electronic Design Automation tools"; homepage = "https://geda.sourceforge.net/"; - maintainers = with maintainers; [ pjones ]; - platforms = platforms.linux; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ pjones ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/applications/science/electronics/librepcb/default.nix b/pkgs/applications/science/electronics/librepcb/default.nix index 4beee81b114d..8bdb41ff99f7 100644 --- a/pkgs/applications/science/electronics/librepcb/default.nix +++ b/pkgs/applications/science/electronics/librepcb/default.nix @@ -57,14 +57,14 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 3.2)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Free EDA software to develop printed circuit boards"; homepage = "https://librepcb.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ luz thoughtpolice ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/electronics/linux-gpib/common.nix b/pkgs/applications/science/electronics/linux-gpib/common.nix index 1e47424cce1f..3c5a18d94021 100644 --- a/pkgs/applications/science/electronics/linux-gpib/common.nix +++ b/pkgs/applications/science/electronics/linux-gpib/common.nix @@ -19,11 +19,11 @@ rec { sourceRoot = "${pname}-${version}"; - meta = with lib; { + meta = { description = "Support package for GPIB (IEEE 488) hardware"; homepage = "https://linux-gpib.sourceforge.io/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fsagbuya ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fsagbuya ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/electronics/nanovna-saver/default.nix b/pkgs/applications/science/electronics/nanovna-saver/default.nix index 4740d026bbcb..9bf864ff5b83 100644 --- a/pkgs/applications/science/electronics/nanovna-saver/default.nix +++ b/pkgs/applications/science/electronics/nanovna-saver/default.nix @@ -64,7 +64,7 @@ python3.pkgs.buildPythonApplication rec { ) ''; - meta = with lib; { + meta = { homepage = "https://github.com/NanoVNA-Saver/nanovna-saver"; description = "Tool for reading, displaying and saving data from the NanoVNA"; mainProgram = "NanoVNASaver"; @@ -73,8 +73,8 @@ python3.pkgs.buildPythonApplication rec { frequency spans in segments to gain more than 101 data points, and generally display and analyze the resulting data. ''; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ zaninime tmarkus ]; diff --git a/pkgs/applications/science/electronics/openhantek6022/default.nix b/pkgs/applications/science/electronics/openhantek6022/default.nix index bf45edb15e8b..50e972b47730 100644 --- a/pkgs/applications/science/electronics/openhantek6022/default.nix +++ b/pkgs/applications/science/electronics/openhantek6022/default.nix @@ -43,12 +43,12 @@ mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Free software for Hantek and compatible (Voltcraft/Darkwire/Protek/Acetech) USB digital signal oscilloscopes"; mainProgram = "OpenHantek"; homepage = "https://github.com/OpenHantek/OpenHantek6022"; - license = licenses.gpl3; - maintainers = with maintainers; [ baracoder ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ baracoder ]; platforms = qtbase.meta.platforms; }; } diff --git a/pkgs/applications/science/electronics/pulseview/default.nix b/pkgs/applications/science/electronics/pulseview/default.nix index 637fc58a1199..99727944889d 100644 --- a/pkgs/applications/science/electronics/pulseview/default.nix +++ b/pkgs/applications/science/electronics/pulseview/default.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation { ] ++ lib.optionals stdenv.hostPlatform.isLinux [ bluez ]; - meta = with lib; { + meta = { description = "Qt-based LA/scope/MSO GUI for sigrok (a signal analysis software suite)"; mainProgram = "pulseview"; homepage = "https://sigrok.org/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bjornfor vifino ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/logic/cedille/default.nix b/pkgs/applications/science/logic/cedille/default.nix index 2e15890aa30c..d5a9c617efb8 100644 --- a/pkgs/applications/science/logic/cedille/default.nix +++ b/pkgs/applications/science/logic/cedille/default.nix @@ -52,16 +52,16 @@ stdenv.mkDerivation rec { cp -r lib/ $out/lib/cedille/ ''; - meta = with lib; { + meta = { description = "Interactive theorem-prover and dependently typed programming language, based on extrinsic (aka Curry-style) type theory"; homepage = "https://cedille.github.io/"; - license = licenses.mit; - maintainers = with maintainers; [ mpickering ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mpickering ]; + platforms = lib.platforms.unix; # Broken due to Agda update. See # https://github.com/NixOS/nixpkgs/pull/129606#issuecomment-881107449. broken = true; - hydraPlatforms = platforms.none; + hydraPlatforms = lib.platforms.none; }; } diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix index a07a3bf556f9..c0275c97eafd 100644 --- a/pkgs/applications/science/logic/coq/default.nix +++ b/pkgs/applications/science/logic/coq/default.nix @@ -300,7 +300,7 @@ let ln -s "$out/share/coq/coq.png" "$out/share/pixmaps/" ''; - meta = with lib; { + meta = { description = "Coq proof assistant"; longDescription = '' Coq is a formal proof management system. It provides a formal language @@ -309,15 +309,15 @@ let machine-checked proofs. ''; homepage = "https://coq.inria.fr"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; branch = coq-version; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ roconnor thoughtpolice vbgl Zimmi48 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "coqide"; }; }; diff --git a/pkgs/applications/science/logic/cubicle/default.nix b/pkgs/applications/science/logic/cubicle/default.nix index 60c0e82ca4de..10a0b4044f13 100644 --- a/pkgs/applications/science/logic/cubicle/default.nix +++ b/pkgs/applications/science/logic/cubicle/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { OCAMLOPT = "ocamlfind ocamlopt -package num"; }; - meta = with lib; { + meta = { description = "Open source model checker for verifying safety properties of array-based systems"; mainProgram = "cubicle"; homepage = "https://cubicle.lri.fr/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dwarfmaster ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dwarfmaster ]; }; } diff --git a/pkgs/applications/science/logic/cvc3/default.nix b/pkgs/applications/science/logic/cvc3/default.nix index 6c0f500816cd..8c5f6b146d1b 100644 --- a/pkgs/applications/science/logic/cvc3/default.nix +++ b/pkgs/applications/science/logic/cvc3/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Prover for satisfiability modulo theory (SMT)"; mainProgram = "cvc3"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.free; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.free; homepage = "https://cs.nyu.edu/acsys/cvc3/index.html"; }; passthru = { diff --git a/pkgs/applications/science/logic/ekrhyper/default.nix b/pkgs/applications/science/logic/ekrhyper/default.nix index d4daf57961f4..f515e5c9f3af 100644 --- a/pkgs/applications/science/logic/ekrhyper/default.nix +++ b/pkgs/applications/science/logic/ekrhyper/default.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { preInstall = "export INSTALLDIR=$out"; postInstall = ''for i in "$out/casc"/*; do ln -s "$i" "$out/bin/ekrh-casc-$(basename $i)"; done ''; - meta = with lib; { + meta = { description = "Automated first-order theorem prover"; - license = licenses.gpl2; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/logic/hol_light/default.nix b/pkgs/applications/science/logic/hol_light/default.nix index c8e9d1ee32f2..ac908ab9f8ab 100644 --- a/pkgs/applications/science/logic/hol_light/default.nix +++ b/pkgs/applications/science/logic/hol_light/default.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation { chmod a+x "$out/bin/hol_light" ''; - meta = with lib; { + meta = { description = "Interactive theorem prover based on Higher-Order Logic"; homepage = "http://www.cl.cam.ac.uk/~jrh13/hol-light/"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice vbgl ]; diff --git a/pkgs/applications/science/logic/klee/default.nix b/pkgs/applications/science/logic/klee/default.nix index dcccc03bb45c..459bfb52ade5 100644 --- a/pkgs/applications/science/logic/klee/default.nix +++ b/pkgs/applications/science/logic/klee/default.nix @@ -237,7 +237,7 @@ llvmPackages.stdenv.mkDerivation { __structuredAttrs = true; - meta = with lib; { + meta = { mainProgram = "klee"; description = "Symbolic virtual machine built on top of LLVM"; longDescription = '' @@ -260,9 +260,9 @@ llvmPackages.stdenv.mkDerivation { environment variables, and passing command line arguments. ''; homepage = "https://klee.github.io"; - license = licenses.ncsa; + license = lib.licenses.ncsa; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ numinit ]; + maintainers = with lib.maintainers; [ numinit ]; # Upstream is still working on support for LLVM ≥ 16; see: # # * diff --git a/pkgs/applications/science/logic/klee/klee-uclibc.nix b/pkgs/applications/science/logic/klee/klee-uclibc.nix index 695ff369d96c..31ffc0d18aa3 100644 --- a/pkgs/applications/science/logic/klee/klee-uclibc.nix +++ b/pkgs/applications/science/logic/klee/klee-uclibc.nix @@ -103,14 +103,14 @@ llvmPackages.stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "Modified version of uClibc for KLEE"; longDescription = '' klee-uclibc is a bitcode build of uClibc meant for compatibility with the KLEE symbolic virtual machine. ''; homepage = "https://github.com/klee/klee-uclibc"; - license = licenses.lgpl3; - maintainers = with maintainers; [ numinit ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ numinit ]; }; } diff --git a/pkgs/applications/science/logic/leo2/default.nix b/pkgs/applications/science/logic/leo2/default.nix index d26b2f06a97b..7d478ad0b527 100644 --- a/pkgs/applications/science/logic/leo2/default.nix +++ b/pkgs/applications/science/logic/leo2/default.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { --add-flags "--atprc $out/etc/leoatprc" ''; - meta = with lib; { + meta = { description = "High-performance typed higher order prover"; mainProgram = "leo"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.unix; - license = licenses.bsd3; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; homepage = "http://www.leoprover.org/"; }; } diff --git a/pkgs/applications/science/logic/prooftree/default.nix b/pkgs/applications/science/logic/prooftree/default.nix index 1ba82e1e05d1..e396aa977968 100644 --- a/pkgs/applications/science/logic/prooftree/default.nix +++ b/pkgs/applications/science/logic/prooftree/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { prefixKey = "--prefix "; - meta = with lib; { + meta = { description = "Program for proof-tree visualization"; mainProgram = "prooftree"; longDescription = '' @@ -51,8 +51,8 @@ stdenv.mkDerivation rec { shift-click). ''; homepage = "http://askra.de/software/prooftree"; - platforms = platforms.unix; - maintainers = [ maintainers.jwiegley ]; - license = licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.jwiegley ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/applications/science/logic/rocq-core/default.nix b/pkgs/applications/science/logic/rocq-core/default.nix index 1f0a8b063d6a..2a8a3d7be023 100644 --- a/pkgs/applications/science/logic/rocq-core/default.nix +++ b/pkgs/applications/science/logic/rocq-core/default.nix @@ -162,7 +162,7 @@ let runHook postInstall ''; - meta = with lib; { + meta = { description = "Rocq Prover"; longDescription = '' The Rocq Prover is an interactive theorem prover, or proof assistant. It provides @@ -171,15 +171,15 @@ let semi-interactive development of machine-checked proofs. ''; homepage = "https://rocq-prover.org"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; branch = rocq-version; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ proux01 roconnor vbgl Zimmi48 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "rocq"; }; }; diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix index 4fb4c5638bf6..62b81678fec5 100644 --- a/pkgs/applications/science/logic/why3/default.nix +++ b/pkgs/applications/science/logic/why3/default.nix @@ -104,12 +104,12 @@ stdenv.mkDerivation rec { passthru.withProvers = callPackage ./with-provers.nix { }; - meta = with lib; { + meta = { description = "Platform for deductive program verification"; homepage = "https://why3.lri.fr/"; - license = licenses.lgpl21; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice vbgl ]; diff --git a/pkgs/applications/science/machine-learning/openbugs/default.nix b/pkgs/applications/science/machine-learning/openbugs/default.nix index fb77641f0250..3aba254a69e2 100644 --- a/pkgs/applications/science/machine-learning/openbugs/default.nix +++ b/pkgs/applications/science/machine-learning/openbugs/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { sha256 = "sha256-11LrScN1kvtq0Fo7RWGjbQO0U5b5brCbipl5pdZnrFs="; }; - meta = with lib; { + meta = { description = "Software package for performing Bayesian analysis and simulation using Markov Chain Monte Carlo"; homepage = "https://github.com/jsta/openbugs/"; changelog = "https://github.com/jsta/openbugs/blob/master/ChangeLog"; @@ -25,7 +25,7 @@ stdenv.mkDerivation { "i686-linux" "x86_64-linux" ]; - license = licenses.gpl3Only; - maintainers = with maintainers; [ andresnav ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ andresnav ]; }; } diff --git a/pkgs/applications/science/machine-learning/shogun/default.nix b/pkgs/applications/science/machine-learning/shogun/default.nix index 00230a9f89c3..f2de71c05d22 100644 --- a/pkgs/applications/science/machine-learning/shogun/default.nix +++ b/pkgs/applications/science/machine-learning/shogun/default.nix @@ -259,11 +259,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "\''${_IMPORT_PREFIX}/lib/" "$out/lib/" ''; - meta = with lib; { + meta = { description = "Toolbox which offers a wide range of efficient and unified machine learning methods"; homepage = "http://shogun-toolbox.org/"; - license = if withSvmLight then licenses.unfree else licenses.gpl3Plus; - maintainers = with maintainers; [ + license = if withSvmLight then lib.licenses.unfree else lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ smancill ]; }; diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix index ae5ddf0274b9..d122f58af4f1 100644 --- a/pkgs/applications/science/math/R/default.nix +++ b/pkgs/applications/science/math/R/default.nix @@ -215,11 +215,11 @@ stdenv.mkDerivation (finalAttrs: { url ]; - meta = with lib; { + meta = { homepage = "http://www.r-project.org/"; description = "Free software environment for statistical computing and graphics"; mainProgram = "R"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' GNU R is a language and environment for statistical computing and @@ -241,9 +241,9 @@ stdenv.mkDerivation (finalAttrs: { ''; pkgConfigModules = [ "libR" ]; - platforms = platforms.all; + platforms = lib.platforms.all; - maintainers = with maintainers; [ jbedo ]; - teams = [ teams.sage ]; + maintainers = with lib.maintainers; [ jbedo ]; + teams = [ lib.teams.sage ]; }; }) diff --git a/pkgs/applications/science/math/caffe/default.nix b/pkgs/applications/science/math/caffe/default.nix index 46f792e67ec5..f755ad43abe9 100644 --- a/pkgs/applications/science/math/caffe/default.nix +++ b/pkgs/applications/science/math/caffe/default.nix @@ -165,7 +165,7 @@ stdenv.mkDerivation rec { -weights "${test_model_weights}" ''; - meta = with lib; { + meta = { description = "Deep learning framework"; longDescription = '' Caffe is a deep learning framework made with expression, speed, and @@ -178,7 +178,7 @@ stdenv.mkDerivation rec { (pythonSupport && (python.isPy310)) || !(leveldbSupport -> (leveldb != null && snappy != null)) || !(pythonSupport -> (python != null && numpy != null)); - license = licenses.bsd2; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/applications/science/math/cemu-ti/default.nix b/pkgs/applications/science/math/cemu-ti/default.nix index 1a4f3c253513..482698c245d3 100644 --- a/pkgs/applications/science/math/cemu-ti/default.nix +++ b/pkgs/applications/science/math/cemu-ti/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation (finalAttrs: { libpng ]; - meta = with lib; { + meta = { description = "Third-party TI-84 Plus CE / TI-83 Premium CE emulator, focused on developer features"; mainProgram = "CEmu"; homepage = "https://ce-programming.github.io/CEmu"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; platforms = lib.platforms.unix; }; diff --git a/pkgs/applications/science/math/cplex/default.nix b/pkgs/applications/science/math/cplex/default.nix index a5443152fa36..b778ec64e230 100644 --- a/pkgs/applications/science/math/cplex/default.nix +++ b/pkgs/applications/science/math/cplex/default.nix @@ -171,13 +171,13 @@ stdenv.mkDerivation rec { libSuffix = "${version}0"; }; - meta = with lib; { + meta = { description = "Optimization solver for mathematical programming"; homepage = "https://www.ibm.com/be-en/marketplace/ibm-ilog-cplex"; mainProgram = "cplex"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ bfortz ]; + maintainers = with lib.maintainers; [ bfortz ]; }; } diff --git a/pkgs/applications/science/math/engauge-digitizer/default.nix b/pkgs/applications/science/math/engauge-digitizer/default.nix index 22fd209930a6..1f7dc5dc3d23 100644 --- a/pkgs/applications/science/math/engauge-digitizer/default.nix +++ b/pkgs/applications/science/math/engauge-digitizer/default.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Engauge Digitizer is a tool for recovering graph data from an image file"; mainProgram = "engauge"; homepage = "https://markummitchell.github.io/engauge-digitizer"; - license = with licenses; [ gpl2Only ]; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + license = with lib.licenses; [ gpl2Only ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/applications/science/math/labplot/default.nix b/pkgs/applications/science/math/labplot/default.nix index 1866c4eeb78f..f1f07f250b81 100644 --- a/pkgs/applications/science/math/labplot/default.nix +++ b/pkgs/applications/science/math/labplot/default.nix @@ -106,10 +106,10 @@ stdenv.mkDerivation rec { discount ]; - meta = with lib; { + meta = { description = "Free, open source and cross-platform data visualization and analysis software accessible to everyone"; homepage = "https://labplot.kde.org"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 cc-by-30 @@ -121,8 +121,8 @@ stdenv.mkDerivation rec { lgpl3Plus mit ]; - maintainers = with maintainers; [ hqurve ]; + maintainers = with lib.maintainers; [ hqurve ]; mainProgram = "labplot2"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/math/lp_solve/default.nix b/pkgs/applications/science/math/lp_solve/default.nix index bd38d90accc6..650c361eb73e 100644 --- a/pkgs/applications/science/math/lp_solve/default.nix +++ b/pkgs/applications/science/math/lp_solve/default.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mixed Integer Linear Programming (MILP) solver"; mainProgram = "lp_solve"; homepage = "https://lpsolve.sourceforge.net"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ smironov ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ smironov ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/math/maxima/default.nix b/pkgs/applications/science/math/maxima/default.nix index f93929880410..462ea5d853fd 100644 --- a/pkgs/applications/science/math/maxima/default.nix +++ b/pkgs/applications/science/math/maxima/default.nix @@ -108,10 +108,10 @@ stdenv.mkDerivation (finalAttrs: { inherit lisp-compiler; }; - meta = with lib; { + meta = { description = "Computer algebra system"; homepage = "http://maxima.sourceforge.net"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' Maxima is a fairly complete computer algebra system written in @@ -119,7 +119,7 @@ stdenv.mkDerivation (finalAttrs: { DOE-MACSYMA and licensed under the GPL. Its abilities include symbolic integration, 3D plotting, and an ODE solver. ''; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/science/math/wolfram-engine/default.nix b/pkgs/applications/science/math/wolfram-engine/default.nix index f597da73c190..a52435a26659 100644 --- a/pkgs/applications/science/math/wolfram-engine/default.nix +++ b/pkgs/applications/science/math/wolfram-engine/default.nix @@ -146,12 +146,12 @@ stdenv.mkDerivation rec { # Stripping causes the program to core dump. dontStrip = true; - meta = with lib; { + meta = { description = "Wolfram Engine computational software system"; homepage = "https://www.wolfram.com/engine/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ fbeffa ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ fbeffa ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix index 7feac844d1f8..0ff54754c38b 100644 --- a/pkgs/applications/science/math/wxmaxima/default.nix +++ b/pkgs/applications/science/math/wxmaxima/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin) ''; - meta = with lib; { + meta = { description = "Cross platform GUI for the computer algebra system Maxima"; mainProgram = "wxmaxima"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://wxmaxima-developers.github.io/wxmaxima/"; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/science/misc/gplates/default.nix b/pkgs/applications/science/misc/gplates/default.nix index 2c49536d993d..435ed3f28a44 100644 --- a/pkgs/applications/science/misc/gplates/default.nix +++ b/pkgs/applications/science/misc/gplates/default.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation (finalAttrs: { qwt ]; - meta = with lib; { + meta = { description = "Desktop software for the interactive visualisation of plate-tectonics"; mainProgram = "gplates"; homepage = "https://www.gplates.org"; - license = licenses.gpl2Only; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # FIX: this check: https://github.com/GPlates/GPlates/blob/gplates/cmake/modules/Config_h.cmake#L72 }; }) diff --git a/pkgs/applications/science/misc/graphia/default.nix b/pkgs/applications/science/misc/graphia/default.nix index fcfd76ab24a9..9df8a729f035 100644 --- a/pkgs/applications/science/misc/graphia/default.nix +++ b/pkgs/applications/science/misc/graphia/default.nix @@ -35,15 +35,15 @@ stdenv.mkDerivation rec { qtwebengine ]; - meta = with lib; { + meta = { # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/graphia.x86_64-darwin broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; description = "Visualisation tool for the creation and analysis of graphs"; homepage = "https://graphia.app"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "Graphia"; - maintainers = [ maintainers.bgamari ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.bgamari ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/science/misc/megam/default.nix b/pkgs/applications/science/misc/megam/default.nix index d7df4da69b12..614b4935a644 100644 --- a/pkgs/applications/science/misc/megam/default.nix +++ b/pkgs/applications/science/misc/megam/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "MEGA Model Optimization Package"; longDescription = '' The software here is an implementation of maximum likelihood and maximum a @@ -63,7 +63,7 @@ stdenv.mkDerivation { ''; homepage = "http://www.umiacs.umd.edu/~hal/megam"; license = lib.licenses.unfree; - maintainers = with maintainers; [ leixb ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ leixb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/misc/openmodelica/combined/default.nix b/pkgs/applications/science/misc/openmodelica/combined/default.nix index e7649374cc67..c47c24e36d6c 100644 --- a/pkgs/applications/science/misc/openmodelica/combined/default.nix +++ b/pkgs/applications/science/misc/openmodelica/combined/default.nix @@ -39,14 +39,14 @@ symlinkJoin { --set-default OPENMODELICALIBRARY "${openmodelica.omlibrary}/lib/omlibrary" ''; - meta = with lib; { + meta = { description = "Open-source Modelica-based modeling and simulation environment intended for industrial and academic usage"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix b/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix index aae2c071fc35..2f8930d943e5 100644 --- a/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix @@ -68,15 +68,15 @@ mkOpenModelicaDerivation ( done ''; - meta = with lib; { + meta = { description = "Modelica compiler from OpenModelica suite"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } // lib.optionalAttrs isCross { diff --git a/pkgs/applications/science/misc/openmodelica/omedit/default.nix b/pkgs/applications/science/misc/openmodelica/omedit/default.nix index f0fc12f0a72b..d77aa018c932 100644 --- a/pkgs/applications/science/misc/openmodelica/omedit/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omedit/default.nix @@ -46,14 +46,14 @@ mkOpenModelicaDerivation { dontUseQmakeConfigure = true; QMAKESPEC = "linux-clang"; - meta = with lib; { + meta = { description = "Modelica connection editor for OpenModelica"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix b/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix index 64479fb90969..ed296cd3e7c3 100644 --- a/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix @@ -31,15 +31,15 @@ mkOpenModelicaDerivation { sed -i -e '/^OTHER_LIBS=/ s/EMOTH //' libraries/Makefile.libs ''; - meta = with lib; { + meta = { description = "Collection of Modelica libraries to use with OpenModelica, including Modelica Standard Library"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/misc/openmodelica/omparser/default.nix b/pkgs/applications/science/misc/openmodelica/omparser/default.nix index 53cd2784732e..ad9e7aeefd27 100644 --- a/pkgs/applications/science/misc/openmodelica/omparser/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omparser/default.nix @@ -21,15 +21,15 @@ mkOpenModelicaDerivation { patches = [ ./Makefile.in.patch ]; - meta = with lib; { + meta = { description = "Antlr4-based parser of Modelica files from OpenModelica suite"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/misc/openmodelica/omplot/default.nix b/pkgs/applications/science/misc/openmodelica/omplot/default.nix index 5656e63bf253..d986f3f37005 100644 --- a/pkgs/applications/science/misc/openmodelica/omplot/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omplot/default.nix @@ -30,14 +30,14 @@ mkOpenModelicaDerivation { dontUseQmakeConfigure = true; QMAKESPEC = "linux-clang"; - meta = with lib; { + meta = { description = "Plotting tool for OpenModelica-generated results files"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/misc/openmodelica/omshell/default.nix b/pkgs/applications/science/misc/openmodelica/omshell/default.nix index 972a2b664c5e..1af99e1d26ca 100644 --- a/pkgs/applications/science/misc/openmodelica/omshell/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omshell/default.nix @@ -45,14 +45,14 @@ mkOpenModelicaDerivation { dontUseQmakeConfigure = true; QMAKESPEC = "linux-clang"; - meta = with lib; { + meta = { description = "Interactive OpenModelica session shell"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix b/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix index 26dc2cb7f993..c63d9b8c19ea 100644 --- a/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix @@ -35,14 +35,14 @@ mkOpenModelicaDerivation { "-Wno-error=implicit-function-declaration" ]; - meta = with lib; { + meta = { description = "OpenModelica FMI & SSP-based co-simulation environment"; homepage = "https://openmodelica.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ balodja smironov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/molecular-dynamics/gromacs/default.nix b/pkgs/applications/science/molecular-dynamics/gromacs/default.nix index c1ae8ffbf3b1..d9acc8607a02 100644 --- a/pkgs/applications/science/molecular-dynamics/gromacs/default.nix +++ b/pkgs/applications/science/molecular-dynamics/gromacs/default.nix @@ -146,9 +146,9 @@ stdenv.mkDerivation rec { moveToOutput share/cmake $dev ''; - meta = with lib; { + meta = { homepage = "https://www.gromacs.org"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; description = "Molecular dynamics software package"; longDescription = '' GROMACS is a versatile package to perform molecular dynamics, @@ -169,8 +169,8 @@ stdenv.mkDerivation rec { See: https://www.gromacs.org/about.html for details. ''; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sheepforce markuskowa ]; diff --git a/pkgs/applications/science/physics/MCFM/default.nix b/pkgs/applications/science/physics/MCFM/default.nix index dc508d6eefcf..98b028c4da75 100644 --- a/pkgs/applications/science/physics/MCFM/default.nix +++ b/pkgs/applications/science/physics/MCFM/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "-Duse_internal_lhapdf=OFF" ]; - meta = with lib; { + meta = { description = "Monte Carlo for FeMtobarn processes"; homepage = "https://mcfm.fnal.gov"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ veprbl ]; platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/applications/science/physics/crystfel/default.nix b/pkgs/applications/science/physics/crystfel/default.nix index d495349aa75e..63907ca179a3 100644 --- a/pkgs/applications/science/physics/crystfel/default.nix +++ b/pkgs/applications/science/physics/crystfel/default.nix @@ -282,7 +282,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Data processing for serial crystallography"; longDescription = '' CrystFEL is a suite of programs for processing (and simulating) Bragg diffraction data from "serial crystallography" experiments, often (but not always) performed using an X-ray Free-Electron Laser. Compared to rotation data, some of the particular characteristics of such data which call for a specialised software suite are: @@ -294,9 +294,9 @@ stdenv.mkDerivation rec { homepage = "https://www.desy.de/~twhite/crystfel/"; changelog = "https://www.desy.de/~twhite/crystfel/changes.html"; downloadPage = "https://www.desy.de/~twhite/crystfel/download.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pmiddend ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pmiddend ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/physics/xflr5/default.nix b/pkgs/applications/science/physics/xflr5/default.nix index 853dc377c518..a795bb08e3f2 100644 --- a/pkgs/applications/science/physics/xflr5/default.nix +++ b/pkgs/applications/science/physics/xflr5/default.nix @@ -18,12 +18,12 @@ mkDerivation rec { nativeBuildInputs = [ qmake ]; - meta = with lib; { + meta = { description = "Analysis tool for airfoils, wings and planes"; mainProgram = "xflr5"; homepage = "https://sourceforge.net/projects/xflr5/"; - license = licenses.gpl3; - maintainers = [ maintainers.esclear ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.esclear ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/robotics/mavproxy/default.nix b/pkgs/applications/science/robotics/mavproxy/default.nix index 2550c9ee875f..cb459e8ef8c0 100644 --- a/pkgs/applications/science/robotics/mavproxy/default.nix +++ b/pkgs/applications/science/robotics/mavproxy/default.nix @@ -45,10 +45,10 @@ buildPythonApplication rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "MAVLink proxy and command line ground station"; homepage = "https://github.com/ArduPilot/MAVProxy"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ lopsided98 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/applications/science/robotics/sumorobot-manager/default.nix b/pkgs/applications/science/robotics/sumorobot-manager/default.nix index 57c0fbc2cf1f..f6f846bc4585 100644 --- a/pkgs/applications/science/robotics/sumorobot-manager/default.nix +++ b/pkgs/applications/science/robotics/sumorobot-manager/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { wrapPythonProgramsIn "$out/opt" "$pythonPath" ''; - meta = with lib; { + meta = { description = "Desktop App for managing SumoRobots"; mainProgram = "sumorobot-manager"; homepage = "https://www.robokoding.com/kits/sumorobot/sumomanager/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index d55fd6fd3c1a..a7c265341a3b 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -205,9 +205,9 @@ mkDerivation rec { ''; homepage = "https://www.recoll.org"; changelog = "https://www.recoll.org/pages/release-history.html"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jcumming ]; diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-autocomplete-all-the-things/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-autocomplete-all-the-things/default.nix index 192b98d32a49..df3444d31e7d 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-autocomplete-all-the-things/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-autocomplete-all-the-things/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp autocomplete-ALL-the-things $out/lib/urxvt/perl ''; - meta = with lib; { + meta = { description = "urxvt plugin allowing user to easily complete arbitrary text"; homepage = "https://github.com/Vifon/autocomplete-ALL-the-things"; - license = licenses.gpl3; - maintainers = with maintainers; [ nickhu ]; - platforms = with platforms; unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ nickhu ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-bidi/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-bidi/default.nix index ff7c1b1a2d7d..5f890a3c003b 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-bidi/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-bidi/default.nix @@ -27,11 +27,11 @@ perlPackages.buildPerlPackage rec { passthru.perlPackages = [ "self" ]; - meta = with lib; { + meta = { description = "Text::Bidi Perl package using fribidi, providing a urxvt plugin"; homepage = "https://github.com/mkamensky/Text-Bidi"; - maintainers = with maintainers; [ doronbehar ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = with lib.platforms; unix; # Quote from the README: # same terms as the Perl 5 programming language system itself license = perlPackages.perl.meta.license; diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix index 9a32da5427e7..ce599232e49e 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp font-size $out/lib/urxvt/perl ''; - meta = with lib; { + meta = { description = "Change the urxvt font size on the fly"; homepage = "https://github.com/majutsushi/urxvt-font-size"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix index 0fb6958f6dda..b4b44ade5ec9 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { cp newterm $out/lib/urxvt/perl ''; - meta = with lib; { + meta = { description = "Perl extensions for the rxvt-unicode terminal emulator"; homepage = "https://github.com/effigies/urxvt-perl"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perls/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perls/default.nix index 88c1a0292116..209249d6a305 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perls/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perls/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { $out/lib/urxvt/perl ''; - meta = with lib; { + meta = { description = "Perl extensions for the rxvt-unicode terminal emulator"; homepage = "https://github.com/muennich/urxvt-perls"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-resize-font/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-resize-font/default.nix index 8b71ccae9085..61758fefcb25 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-resize-font/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-resize-font/default.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { cp resize-font $out/lib/urxvt/perl ''; - meta = with lib; { + meta = { description = "URxvt Perl extension for resizing the font"; homepage = "https://github.com/simmel/urxvt-resize-font"; - license = licenses.mit; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-tabbedex/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-tabbedex/default.nix index 98fb59bf9795..64053ef9f3af 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-tabbedex/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-tabbedex/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Tabbed plugin for rxvt-unicode with many enhancements (mina86's fork)"; homepage = "https://github.com/mina86/urxvt-tabbedex"; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-theme-switch/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-theme-switch/default.nix index 78867cb6f685..e8420ce4790e 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-theme-switch/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-theme-switch/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { cp color-themes $out/lib/urxvt/perl ''; - meta = with lib; { + meta = { description = "urxvt plugin that allows to switch color themes during runtime"; homepage = "https://github.com/felixr/urxvt-theme-switch"; license = lib.licenses.cc-by-nc-30; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-vtwheel/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-vtwheel/default.nix index 0bdddaa88cb2..408d275c8a2d 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-vtwheel/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-vtwheel/default.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { cp vtwheel $out/lib/urxvt/perl ''; - meta = with lib; { + meta = { description = "Pass mouse wheel commands to secondary screens (screen, less, nano, etc)"; homepage = "https://aur.archlinux.org/packages/urxvt-vtwheel"; - license = licenses.mit; - maintainers = with maintainers; [ danbst ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danbst ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix index 7d11d972cbdb..7d0be835b33b 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix @@ -162,13 +162,13 @@ stdenv.mkDerivation { passthru.tests.test = nixosTests.terminal-emulators.urxvt; - meta = with lib; { + meta = { inherit description; homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html"; downloadPage = "http://dist.schmorp.de/rxvt-unicode/Attic/"; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.unix; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; mainProgram = "urxvt"; }; } diff --git a/pkgs/applications/terminal-emulators/termite/default.nix b/pkgs/applications/terminal-emulators/termite/default.nix index ec8118dd5d56..f5e814132df6 100644 --- a/pkgs/applications/terminal-emulators/termite/default.nix +++ b/pkgs/applications/terminal-emulators/termite/default.nix @@ -101,12 +101,12 @@ stdenv.mkDerivation rec { echo "$terminfo" >> $out/nix-support/propagated-user-env-packages ''; - meta = with lib; { + meta = { description = "Simple VTE-based terminal"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; homepage = "https://github.com/thestinger/termite/"; - maintainers = with maintainers; [ koral ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ koral ]; + platforms = lib.platforms.all; mainProgram = "termite"; }; } diff --git a/pkgs/applications/version-management/bcompare/default.nix b/pkgs/applications/version-management/bcompare/default.nix index 196c76b5025b..fe357ff001c0 100644 --- a/pkgs/applications/version-management/bcompare/default.nix +++ b/pkgs/applications/version-management/bcompare/default.nix @@ -103,7 +103,7 @@ let ''; }; - meta = with lib; { + meta = { description = "GUI application that allows to quickly and easily compare files and folders"; longDescription = '' Beyond Compare is focused. Beyond Compare allows you to quickly and easily compare your files and folders. @@ -111,9 +111,9 @@ let You can then merge the changes, synchronize your files, and generate reports for your records. ''; homepage = "https://www.scootersoftware.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ ktor arkivm ]; diff --git a/pkgs/applications/version-management/blackbox/default.nix b/pkgs/applications/version-management/blackbox/default.nix index 29ce188036c6..2b9f3587afc4 100644 --- a/pkgs/applications/version-management/blackbox/default.nix +++ b/pkgs/applications/version-management/blackbox/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Safely store secrets in a VCS repo"; homepage = "https://github.com/StackExchange/blackbox"; maintainers = [ ]; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/version-management/fossil/default.nix b/pkgs/applications/version-management/fossil/default.nix index f6421fc64f78..2f34ae428456 100644 --- a/pkgs/applications/version-management/fossil/default.nix +++ b/pkgs/applications/version-management/fossil/default.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { installShellCompletion --name fossil.bash tools/fossil-autocomplete.bash ''; - meta = with lib; { + meta = { description = "Simple, high-reliability, distributed software configuration management"; longDescription = '' Fossil is a software configuration management system. Fossil is @@ -78,8 +78,8 @@ stdenv.mkDerivation (finalAttrs: { from the others by being extremely simple to setup and operate. ''; homepage = "https://www.fossil-scm.org/"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; mainProgram = "fossil"; }; }) diff --git a/pkgs/applications/version-management/git-annex-metadata-gui/default.nix b/pkgs/applications/version-management/git-annex-metadata-gui/default.nix index 31be748ce9d2..d92ee4662222 100644 --- a/pkgs/applications/version-management/git-annex-metadata-gui/default.nix +++ b/pkgs/applications/version-management/git-annex-metadata-gui/default.nix @@ -34,15 +34,15 @@ buildPythonApplication rec { git-annex-adapter ]; - meta = with lib; { + meta = { homepage = "https://github.com/alpernebbi/git-annex-metadata-gui"; description = "Graphical interface for git-annex metadata commands"; mainProgram = "git-annex-metadata-gui"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dotlambda matthiasbeyer ]; - license = licenses.gpl3Plus; - platforms = with platforms; linux; + license = lib.licenses.gpl3Plus; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/version-management/git-annex-remote-dbx/default.nix b/pkgs/applications/version-management/git-annex-remote-dbx/default.nix index 5698123d4696..7744598f1566 100644 --- a/pkgs/applications/version-management/git-annex-remote-dbx/default.nix +++ b/pkgs/applications/version-management/git-annex-remote-dbx/default.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { humanfriendly ]; - meta = with lib; { + meta = { description = "Git-annex special remote for Dropbox"; homepage = "https://pypi.org/project/git-annex-remote-dbx/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "git-annex-remote-dbx"; - maintainers = with maintainers; [ matthiasbeyer ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/applications/version-management/git-credential-manager/default.nix b/pkgs/applications/version-management/git-credential-manager/default.nix index 00d840c7f064..3972f12adb54 100644 --- a/pkgs/applications/version-management/git-credential-manager/default.nix +++ b/pkgs/applications/version-management/git-credential-manager/default.nix @@ -55,12 +55,12 @@ buildDotnetModule rec { }; }; - meta = with lib; { + meta = { description = "Secure, cross-platform Git credential storage with authentication to GitHub, Azure Repos, and other popular Git hosting services"; homepage = "https://github.com/git-ecosystem/git-credential-manager"; - license = with licenses; [ mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ _999eagle ]; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ _999eagle ]; longDescription = '' git-credential-manager is a secure, cross-platform Git credential storage with authentication to GitHub, Azure Repos, and other popular Git hosting services. diff --git a/pkgs/applications/version-management/merge-fmt/default.nix b/pkgs/applications/version-management/merge-fmt/default.nix index 81f2ecfce4c8..409c355c28c1 100644 --- a/pkgs/applications/version-management/merge-fmt/default.nix +++ b/pkgs/applications/version-management/merge-fmt/default.nix @@ -28,15 +28,15 @@ buildDunePackage rec { # core v0.17 compatibility, obtained by `git diff -r 3e37827~2..3e37827` patches = [ ./merge-fmt.patch ]; - meta = with lib; { + meta = { description = "Git mergetool leveraging code formatters"; homepage = "https://github.com/hhugo/merge-fmt"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' `merge-fmt` is a small wrapper on top git commands to help resolve conflicts by leveraging code formatters. ''; - maintainers = [ maintainers.alizter ]; + maintainers = [ lib.maintainers.alizter ]; mainProgram = "merge-fmt"; }; } diff --git a/pkgs/applications/version-management/monotone/botan2.nix b/pkgs/applications/version-management/monotone/botan2.nix index 616dffa0adbe..0c89c5f7bf1f 100644 --- a/pkgs/applications/version-management/monotone/botan2.nix +++ b/pkgs/applications/version-management/monotone/botan2.nix @@ -88,15 +88,15 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Cryptographic algorithms library"; homepage = "https://botan.randombit.net"; mainProgram = "botan"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.bsd2; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; knownVulnerabilities = lib.optional ( !enableForMonotone ) "Botan2 is EOL and its full interface surface contains unpatched vulnerabilities"; diff --git a/pkgs/applications/version-management/monotone/default.nix b/pkgs/applications/version-management/monotone/default.nix index 0d2b3537dfaa..7a4fdb9d0811 100644 --- a/pkgs/applications/version-management/monotone/default.nix +++ b/pkgs/applications/version-management/monotone/default.nix @@ -107,10 +107,10 @@ stdenv.mkDerivation rec { #doCheck = true; # some tests fail (and they take VERY long) - meta = with lib; { + meta = { description = "Free distributed version control system"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index d99296d0c509..4e19564295cd 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -159,13 +159,13 @@ let passthru.tests = { inherit (nixosTests) svnserve; }; - meta = with lib; { + meta = { description = "Version control system intended to be a compelling replacement for CVS in the open source community"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://subversion.apache.org/"; mainProgram = "svn"; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.linux ++ platforms.darwin; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/applications/version-management/svn-all-fast-export/default.nix b/pkgs/applications/version-management/svn-all-fast-export/default.nix index f40d7a3b4d1a..d62d83c117ab 100644 --- a/pkgs/applications/version-management/svn-all-fast-export/default.nix +++ b/pkgs/applications/version-management/svn-all-fast-export/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { dontWrapQtApps = true; - meta = with lib; { + meta = { homepage = "https://github.com/svn-all-fast-export/svn2git"; description = "Fast-import based converter for an svn repo to git repos"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = [ maintainers.flokli ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.flokli ]; mainProgram = "svn-all-fast-export"; }; } diff --git a/pkgs/applications/video/anilibria-winmaclinux/default.nix b/pkgs/applications/video/anilibria-winmaclinux/default.nix index 6e4b6d9f18eb..a2b8be867f0b 100644 --- a/pkgs/applications/video/anilibria-winmaclinux/default.nix +++ b/pkgs/applications/video/anilibria-winmaclinux/default.nix @@ -104,11 +104,11 @@ mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/anilibria/anilibria-winmaclinux"; description = "AniLibria cross platform desktop client"; - license = licenses.gpl3; - maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; inherit (qtbase.meta) platforms; mainProgram = "AniLibria"; }; diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index edc680fad6ba..866fb9e28a57 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -79,7 +79,7 @@ mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Video downloader for YouTube and other sites"; longDescription = '' ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe, @@ -87,8 +87,8 @@ mkDerivation rec { videos to MPEG4, MP3 or other formats in just one easy step. ''; homepage = "https://clipgrab.org/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "clipgrab"; }; } diff --git a/pkgs/applications/video/flirc/default.nix b/pkgs/applications/video/flirc/default.nix index b051bae6b0dc..5de7e4e46830 100644 --- a/pkgs/applications/video/flirc/default.nix +++ b/pkgs/applications/video/flirc/default.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { install -D ${./99-flirc.rules} $out/lib/udev/rules.d/99-flirc.rules ''; - meta = with lib; { + meta = { homepage = "https://flirc.tv/more/flirc-usb"; description = "Use any Remote with your Media Center"; - maintainers = with maintainers; [ aanderse ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + maintainers = with lib.maintainers; [ aanderse ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; mainProgram = "Flirc"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/video/hyperion-ng/default.nix b/pkgs/applications/video/hyperion-ng/default.nix index 2d93d676e374..adb9eebc91ba 100644 --- a/pkgs/applications/video/hyperion-ng/default.nix +++ b/pkgs/applications/video/hyperion-ng/default.nix @@ -94,14 +94,14 @@ stdenv.mkDerivation rec { cd ../ && ./test/testrunner.sh && cd - ''; - meta = with lib; { + meta = { description = "Opensource Bias or Ambient Lighting implementation"; homepage = "https://github.com/hyperion-project/hyperion.ng"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ algram kazenyuk ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/video/jellyfin-media-player/default.nix b/pkgs/applications/video/jellyfin-media-player/default.nix index 15c9748675d6..771a101512d5 100644 --- a/pkgs/applications/video/jellyfin-media-player/default.nix +++ b/pkgs/applications/video/jellyfin-media-player/default.nix @@ -89,10 +89,10 @@ mkDerivation rec { ln -s "$out/Applications/Jellyfin Media Player.app/Contents/MacOS/Jellyfin Media Player" $out/bin/jellyfinmediaplayer ''; - meta = with lib; { + meta = { homepage = "https://github.com/jellyfin/jellyfin-media-player"; description = "Jellyfin Desktop Client based on Plex Media Player"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only mit ]; @@ -102,7 +102,7 @@ mkDerivation rec { "aarch64-darwin" "x86_64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jojosch kranzes paumr diff --git a/pkgs/applications/video/jellyfin-mpv-shim/default.nix b/pkgs/applications/video/jellyfin-mpv-shim/default.nix index a0a8743be688..3a1658a70d2e 100644 --- a/pkgs/applications/video/jellyfin-mpv-shim/default.nix +++ b/pkgs/applications/video/jellyfin-mpv-shim/default.nix @@ -103,7 +103,7 @@ buildPythonApplication rec { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/jellyfin/jellyfin-mpv-shim"; description = "Allows casting of videos to MPV via the jellyfin mobile and web app"; longDescription = '' @@ -113,7 +113,7 @@ buildPythonApplication rec { to prevent needless transcoding of your media files on the server. The player also has advanced features, such as bulk subtitle updates and launching commands on events. ''; - license = with licenses; [ + license = with lib.licenses; [ # jellyfin-mpv-shim gpl3Only mit @@ -126,7 +126,7 @@ buildPythonApplication rec { # Static Grain unlicense ]; - maintainers = with maintainers; [ jojosch ]; + maintainers = with lib.maintainers; [ jojosch ]; mainProgram = "jellyfin-mpv-shim"; }; } diff --git a/pkgs/applications/video/kaffeine/default.nix b/pkgs/applications/video/kaffeine/default.nix index 064b0f94b599..66527511271b 100644 --- a/pkgs/applications/video/kaffeine/default.nix +++ b/pkgs/applications/video/kaffeine/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { libXScrnSaver ]; - meta = with lib; { + meta = { description = "KDE media player"; homepage = "https://apps.kde.org/kaffeine/"; - license = licenses.gpl2; - maintainers = [ maintainers.pasqui23 ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.pasqui23 ]; + platforms = lib.platforms.all; mainProgram = "kaffeine"; }; } diff --git a/pkgs/applications/video/kodi/addons/a4ksubtitles/default.nix b/pkgs/applications/video/kodi/addons/a4ksubtitles/default.nix index 6e27e41a45a7..c10a7f5e45f2 100644 --- a/pkgs/applications/video/kodi/addons/a4ksubtitles/default.nix +++ b/pkgs/applications/video/kodi/addons/a4ksubtitles/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { vfs-libarchive ]; - meta = with lib; { + meta = { homepage = "https://a4k-openproject.github.io/a4kSubtitles/"; description = "Multi-Source Subtitles Addon"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/archive_tool/default.nix b/pkgs/applications/video/kodi/addons/archive_tool/default.nix index 4420d332bb5f..b01f7b30a10d 100644 --- a/pkgs/applications/video/kodi/addons/archive_tool/default.nix +++ b/pkgs/applications/video/kodi/addons/archive_tool/default.nix @@ -24,10 +24,10 @@ buildKodiAddon rec { pythonPath = "lib"; }; - meta = with lib; { + meta = { homepage = "https://github.com/zach-morris/script.module.archive_tool"; description = "Set of common python functions to work with the Kodi archive virtual file system (vfs) binary addons"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/arrow/default.nix b/pkgs/applications/video/kodi/addons/arrow/default.nix index 4f916c4a4036..9823ad8adc8c 100644 --- a/pkgs/applications/video/kodi/addons/arrow/default.nix +++ b/pkgs/applications/video/kodi/addons/arrow/default.nix @@ -29,10 +29,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/razzeee/script.module.arrow"; description = "Better dates & times for Python"; - license = licenses.asl20; - teams = [ teams.kodi ]; + license = lib.licenses.asl20; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/arteplussept/default.nix b/pkgs/applications/video/kodi/addons/arteplussept/default.nix index 8197e5ec000d..e6a700cd0a51 100644 --- a/pkgs/applications/video/kodi/addons/arteplussept/default.nix +++ b/pkgs/applications/video/kodi/addons/arteplussept/default.nix @@ -31,10 +31,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/thomas-ernest/plugin.video.arteplussept"; description = "Watch videos available on Arte+7"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/bluetooth-manager/default.nix b/pkgs/applications/video/kodi/addons/bluetooth-manager/default.nix index 56aa202a11d0..80ff4e915e3a 100644 --- a/pkgs/applications/video/kodi/addons/bluetooth-manager/default.nix +++ b/pkgs/applications/video/kodi/addons/bluetooth-manager/default.nix @@ -15,10 +15,10 @@ buildKodiAddon rec { hash = "sha256-KKaR7rIkflMYU6EDBEcorHQ3t7jsB4Qe6Ikg+eBblkA="; }; - meta = with lib; { + meta = { description = "Addon that allows to manage bluetooth devices from within a Linux based Kodi"; - platforms = platforms.all; - maintainers = teams.kodi.members; - license = licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = lib.teams.kodi.members; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/applications/video/kodi/addons/certifi/default.nix b/pkgs/applications/video/kodi/addons/certifi/default.nix index b42b95a0f525..4d0e566a16a1 100644 --- a/pkgs/applications/video/kodi/addons/certifi/default.nix +++ b/pkgs/applications/video/kodi/addons/certifi/default.nix @@ -38,10 +38,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://certifi.io"; description = "Python package for providing Mozilla's CA Bundle"; - license = licenses.mpl20; - teams = [ teams.kodi ]; + license = lib.licenses.mpl20; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/chardet/default.nix b/pkgs/applications/video/kodi/addons/chardet/default.nix index d472e4b70578..c7bb6b1dfab9 100644 --- a/pkgs/applications/video/kodi/addons/chardet/default.nix +++ b/pkgs/applications/video/kodi/addons/chardet/default.nix @@ -22,10 +22,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/Freso/script.module.chardet"; description = "Universal encoding detector"; - license = licenses.lgpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.lgpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/controller-topology-project/default.nix b/pkgs/applications/video/kodi/addons/controller-topology-project/default.nix index fc2bc01b8a5b..e25c08a7675e 100644 --- a/pkgs/applications/video/kodi/addons/controller-topology-project/default.nix +++ b/pkgs/applications/video/kodi/addons/controller-topology-project/default.nix @@ -32,11 +32,11 @@ let runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/controller-topology-project"; description = "Models how controllers connect to and map to each other for all gaming history"; - license = with licenses; [ odbl ]; - teams = [ teams.kodi ]; + license = with lib.licenses; [ odbl ]; + teams = [ lib.teams.kodi ]; }; }; in diff --git a/pkgs/applications/video/kodi/addons/dateutil/default.nix b/pkgs/applications/video/kodi/addons/dateutil/default.nix index 2ba64ae6ece4..b4ebc025c6c3 100644 --- a/pkgs/applications/video/kodi/addons/dateutil/default.nix +++ b/pkgs/applications/video/kodi/addons/dateutil/default.nix @@ -28,13 +28,13 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://dateutil.readthedocs.io/en/stable/"; description = "Extensions to the standard Python datetime module"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 ]; - teams = [ teams.kodi ]; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/defusedxml/default.nix b/pkgs/applications/video/kodi/addons/defusedxml/default.nix index 3a9ae800dc0d..d3bc60566c91 100644 --- a/pkgs/applications/video/kodi/addons/defusedxml/default.nix +++ b/pkgs/applications/video/kodi/addons/defusedxml/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/tiran/defusedxml"; description = "Defusing XML bombs and other exploits"; - license = licenses.psfl; - teams = [ teams.kodi ]; + license = lib.licenses.psfl; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/formula1/default.nix b/pkgs/applications/video/kodi/addons/formula1/default.nix index 8425005bea04..a8b25ce25e5f 100644 --- a/pkgs/applications/video/kodi/addons/formula1/default.nix +++ b/pkgs/applications/video/kodi/addons/formula1/default.nix @@ -27,10 +27,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/jaylinski/kodi-addon-formula1"; description = "Videos from the Formula 1 website"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/future/default.nix b/pkgs/applications/video/kodi/addons/future/default.nix index 65155d14e5a8..8c8d385eb2cf 100644 --- a/pkgs/applications/video/kodi/addons/future/default.nix +++ b/pkgs/applications/video/kodi/addons/future/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://python-future.org"; description = "Missing compatibility layer between Python 2 and Python 3"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/iagl/default.nix b/pkgs/applications/video/kodi/addons/iagl/default.nix index b24bfb78ea76..3ea3de4cb31b 100644 --- a/pkgs/applications/video/kodi/addons/iagl/default.nix +++ b/pkgs/applications/video/kodi/addons/iagl/default.nix @@ -33,10 +33,10 @@ buildKodiAddon rec { infotagger ]; - meta = with lib; { + meta = { homepage = "https://github.com/zach-morris/plugin.program.iagl"; description = "Launch Games from the Internet using Kodi"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/idna/default.nix b/pkgs/applications/video/kodi/addons/idna/default.nix index 7a258c2b3867..366974253c24 100644 --- a/pkgs/applications/video/kodi/addons/idna/default.nix +++ b/pkgs/applications/video/kodi/addons/idna/default.nix @@ -22,10 +22,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/Freso/script.module.idna"; description = "Internationalized Domain Names for Python"; - license = licenses.bsd3; - teams = [ teams.kodi ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/infotagger/default.nix b/pkgs/applications/video/kodi/addons/infotagger/default.nix index 4d7384a8c5df..add635f2dec7 100644 --- a/pkgs/applications/video/kodi/addons/infotagger/default.nix +++ b/pkgs/applications/video/kodi/addons/infotagger/default.nix @@ -24,10 +24,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/jurialmunkey/script.module.infotagger"; description = "Wrapper for new Nexus InfoTagVideo ListItem methods to maintain backwards compatibility"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix b/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix index 0be4e6e98eb5..7082f5698594 100644 --- a/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix +++ b/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix @@ -59,11 +59,11 @@ buildKodiBinaryAddon rec { ${lib.optionalString stdenv.hostPlatform.isAarch64 "ln -s $out/lib/addons/${n}/libcdm_aarch64_loader.so $out/${addonDir}/${n}/libcdm_aarch64_loader.so"} ''; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/inputstream.adaptive"; description = "Kodi inputstream addon for several manifest types"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstream-ffmpegdirect/default.nix b/pkgs/applications/video/kodi/addons/inputstream-ffmpegdirect/default.nix index 451fa8aa6e03..76080edb1517 100644 --- a/pkgs/applications/video/kodi/addons/inputstream-ffmpegdirect/default.nix +++ b/pkgs/applications/video/kodi/addons/inputstream-ffmpegdirect/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { kodi.ffmpeg ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/inputstream.ffmpegdirect/"; description = "InputStream Client for streams that can be opened by either FFmpeg's libavformat or Kodi's cURL"; - platforms = platforms.all; - license = licenses.gpl2Plus; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstream-rtmp/default.nix b/pkgs/applications/video/kodi/addons/inputstream-rtmp/default.nix index 7ebcbd340ea0..2267c3878eb4 100644 --- a/pkgs/applications/video/kodi/addons/inputstream-rtmp/default.nix +++ b/pkgs/applications/video/kodi/addons/inputstream-rtmp/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/inputstream.rtmp/"; description = "Client for RTMP streams"; - platforms = platforms.all; - license = licenses.gpl2Plus; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstreamhelper/default.nix b/pkgs/applications/video/kodi/addons/inputstreamhelper/default.nix index d4fb290b6daa..f8e36586462e 100644 --- a/pkgs/applications/video/kodi/addons/inputstreamhelper/default.nix +++ b/pkgs/applications/video/kodi/addons/inputstreamhelper/default.nix @@ -30,10 +30,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/emilsvennesson/script.module.inputstreamhelper"; description = "Simple Kodi module that makes life easier for add-on developers relying on InputStream based add-ons and DRM playback"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/invidious/default.nix b/pkgs/applications/video/kodi/addons/invidious/default.nix index 31d6028d3f4a..1fc40b951607 100644 --- a/pkgs/applications/video/kodi/addons/invidious/default.nix +++ b/pkgs/applications/video/kodi/addons/invidious/default.nix @@ -34,10 +34,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/petterreinholdtsen/kodi-invidious-plugin"; description = "Privacy-friendly way of watching YouTube content"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/jellycon/default.nix b/pkgs/applications/video/kodi/addons/jellycon/default.nix index 2bbfc23e46fb..6cf7703a4872 100644 --- a/pkgs/applications/video/kodi/addons/jellycon/default.nix +++ b/pkgs/applications/video/kodi/addons/jellycon/default.nix @@ -53,7 +53,7 @@ buildKodiAddon rec { websocket ]; - meta = with lib; { + meta = { homepage = "https://github.com/jellyfin/jellycon"; description = "Lightweight Kodi add-on for Jellyfin"; longDescription = '' @@ -61,7 +61,7 @@ buildKodiAddon rec { files directly from your Jellyfin server within the Kodi interface. It can easily switch between multiple user accounts at will. ''; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/jellyfin/default.nix b/pkgs/applications/video/kodi/addons/jellyfin/default.nix index 7e2bb9a17a5f..247cea1d2307 100644 --- a/pkgs/applications/video/kodi/addons/jellyfin/default.nix +++ b/pkgs/applications/video/kodi/addons/jellyfin/default.nix @@ -48,10 +48,10 @@ buildKodiAddon rec { websocket ]; - meta = with lib; { + meta = { homepage = "https://jellyfin.org/"; description = "Whole new way to manage and view your media library"; - license = licenses.gpl3Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/joystick/default.nix b/pkgs/applications/video/kodi/addons/joystick/default.nix index b533e34262b3..b1490de35942 100644 --- a/pkgs/applications/video/kodi/addons/joystick/default.nix +++ b/pkgs/applications/video/kodi/addons/joystick/default.nix @@ -23,10 +23,10 @@ buildKodiBinaryAddon rec { udev ]; - meta = with lib; { + meta = { description = "Binary addon for raw joystick input"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix b/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix index 3df2d5a8cee7..a12e92e43ecf 100644 --- a/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix +++ b/pkgs/applications/video/kodi/addons/jurialmunkey/default.nix @@ -27,10 +27,10 @@ buildKodiAddon rec { pythonPath = "resources/modules"; }; - meta = with lib; { + meta = { homepage = "https://github.com/jurialmunkey/script.module.jurialmunkey/tree/main"; description = "Common code required by TMDbHelper and other related jurialmunkey add-ons"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/keymap/default.nix b/pkgs/applications/video/kodi/addons/keymap/default.nix index 5070099be7e8..c3209089ae62 100644 --- a/pkgs/applications/video/kodi/addons/keymap/default.nix +++ b/pkgs/applications/video/kodi/addons/keymap/default.nix @@ -29,10 +29,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/tamland/xbmc-keymap-editor"; description = "GUI for configuring mappings for remotes, keyboard and other inputs supported by Kodi"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/kodi-six/default.nix b/pkgs/applications/video/kodi/addons/kodi-six/default.nix index e456b5813c27..2879c328f28f 100644 --- a/pkgs/applications/video/kodi/addons/kodi-six/default.nix +++ b/pkgs/applications/video/kodi/addons/kodi-six/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/romanvm/kodi.six"; description = "Wrappers around Kodi Python API for seamless Python 2/3 compatibility"; - license = licenses.gpl3Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-2048/default.nix b/pkgs/applications/video/kodi/addons/libretro-2048/default.nix index 533d316e1b65..548ea3d4b2f5 100644 --- a/pkgs/applications/video/kodi/addons/libretro-2048/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro-2048/default.nix @@ -27,12 +27,12 @@ buildKodiBinaryAddon rec { libretro ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro.2048"; description = "2048 GameClient for Kodi"; - platforms = platforms.all; - license = licenses.publicDomain; - maintainers = with maintainers; [ kazenyuk ]; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ kazenyuk ]; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-fuse/default.nix b/pkgs/applications/video/kodi/addons/libretro-fuse/default.nix index f80f0f4137a9..e150d2422708 100644 --- a/pkgs/applications/video/kodi/addons/libretro-fuse/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro-fuse/default.nix @@ -27,12 +27,12 @@ buildKodiBinaryAddon rec { libretro ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro.fuse"; description = "Sinclair - ZX Spectrum (Fuse) GameClient for Kodi"; - platforms = platforms.all; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kazenyuk ]; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kazenyuk ]; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-genplus/default.nix b/pkgs/applications/video/kodi/addons/libretro-genplus/default.nix index 674814e3974b..e8762e8c6bb0 100644 --- a/pkgs/applications/video/kodi/addons/libretro-genplus/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro-genplus/default.nix @@ -27,11 +27,11 @@ buildKodiBinaryAddon rec { libretro ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro.genplus"; description = "Genesis Plus GX GameClient for Kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-gw/default.nix b/pkgs/applications/video/kodi/addons/libretro-gw/default.nix index 4f8b3fad121c..412a80c4565b 100644 --- a/pkgs/applications/video/kodi/addons/libretro-gw/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro-gw/default.nix @@ -28,11 +28,11 @@ buildKodiBinaryAddon rec { libretro ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro.gw"; description = "Game and Watch for Kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-mgba/default.nix b/pkgs/applications/video/kodi/addons/libretro-mgba/default.nix index 30e907f175d0..5186818320c7 100644 --- a/pkgs/applications/video/kodi/addons/libretro-mgba/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro-mgba/default.nix @@ -27,11 +27,11 @@ buildKodiBinaryAddon rec { libretro ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro.mgba"; description = "mGBA for Kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-nestopia/default.nix b/pkgs/applications/video/kodi/addons/libretro-nestopia/default.nix index 87f28c23655d..ae27c7d69b6d 100644 --- a/pkgs/applications/video/kodi/addons/libretro-nestopia/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro-nestopia/default.nix @@ -28,11 +28,11 @@ buildKodiBinaryAddon rec { libretro ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro.nestopia"; description = "Nintendo - NES / Famicom (Nestopia UE) GameClient for Kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-snes9x/default.nix b/pkgs/applications/video/kodi/addons/libretro-snes9x/default.nix index d8a101d7150b..3f7ef10b048d 100644 --- a/pkgs/applications/video/kodi/addons/libretro-snes9x/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro-snes9x/default.nix @@ -27,11 +27,11 @@ buildKodiBinaryAddon rec { libretro ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro.snes9x"; description = "Snes9X GameClient for Kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro/default.nix b/pkgs/applications/video/kodi/addons/libretro/default.nix index da31ed8e199a..7006c2a7d348 100644 --- a/pkgs/applications/video/kodi/addons/libretro/default.nix +++ b/pkgs/applications/video/kodi/addons/libretro/default.nix @@ -20,11 +20,11 @@ buildKodiBinaryAddon rec { extraBuildInputs = [ tinyxml ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-game/game.libretro"; description = "Libretro wrapper for Kodi's Game API"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/mediacccde/default.nix b/pkgs/applications/video/kodi/addons/mediacccde/default.nix index 10941fb364ee..2199b44bdd0b 100644 --- a/pkgs/applications/video/kodi/addons/mediacccde/default.nix +++ b/pkgs/applications/video/kodi/addons/mediacccde/default.nix @@ -29,10 +29,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/voc/plugin.video.media-ccc-de/"; description = "media.ccc.de for Kodi"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/mediathekview/default.nix b/pkgs/applications/video/kodi/addons/mediathekview/default.nix index 6c9d21b8ec59..2188fb56b35a 100644 --- a/pkgs/applications/video/kodi/addons/mediathekview/default.nix +++ b/pkgs/applications/video/kodi/addons/mediathekview/default.nix @@ -21,10 +21,10 @@ buildKodiAddon rec { myconnpy ]; - meta = with lib; { + meta = { homepage = "https://github.com/mediathekview/plugin.video.mediathekview"; description = "Access media libraries of German speaking broadcasting stations"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/myconnpy/default.nix b/pkgs/applications/video/kodi/addons/myconnpy/default.nix index 097ae346c796..139ad2e95043 100644 --- a/pkgs/applications/video/kodi/addons/myconnpy/default.nix +++ b/pkgs/applications/video/kodi/addons/myconnpy/default.nix @@ -22,10 +22,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "http://dev.mysql.com/doc/connector-python/en/index.html"; description = "MySQL Connector/Python"; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/netflix/default.nix b/pkgs/applications/video/kodi/addons/netflix/default.nix index 4d61e5c73ef5..d57fd7c5a5d1 100644 --- a/pkgs/applications/video/kodi/addons/netflix/default.nix +++ b/pkgs/applications/video/kodi/addons/netflix/default.nix @@ -29,11 +29,11 @@ buildKodiAddon rec { myconnpy ]; - meta = with lib; { + meta = { homepage = "https://github.com/CastagnaIT/plugin.video.netflix"; description = "Netflix VOD Services Add-on"; - license = licenses.mit; - maintainers = [ maintainers.pks ]; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.pks ]; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/orftvthek/default.nix b/pkgs/applications/video/kodi/addons/orftvthek/default.nix index d8ecf5596b39..0b99b1689e53 100644 --- a/pkgs/applications/video/kodi/addons/orftvthek/default.nix +++ b/pkgs/applications/video/kodi/addons/orftvthek/default.nix @@ -26,10 +26,10 @@ buildKodiAddon rec { routing ]; - meta = with lib; { + meta = { homepage = "https://github.com/s0faking/plugin.video.orftvthek"; description = "Addon for accessing the Austrian ORF ON streaming service"; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/osmc-skin/default.nix b/pkgs/applications/video/kodi/addons/osmc-skin/default.nix index b45b7d51255c..3a00631e900b 100644 --- a/pkgs/applications/video/kodi/addons/osmc-skin/default.nix +++ b/pkgs/applications/video/kodi/addons/osmc-skin/default.nix @@ -15,11 +15,11 @@ buildKodiAddon rec { hash = "sha256-3BR6HfKefuyybDv9c/ZkkZMRDyWNZWpftulXyUAD9nY="; }; - meta = with lib; { + meta = { homepage = "https://github.com/osmc/skin.osmc"; description = "Default skin for OSMC"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; - license = licenses.cc-by-nc-sa-30; + license = lib.licenses.cc-by-nc-sa-30; }; } diff --git a/pkgs/applications/video/kodi/addons/pdfreader/default.nix b/pkgs/applications/video/kodi/addons/pdfreader/default.nix index 4eea80fe08a9..ec687e5bae27 100644 --- a/pkgs/applications/video/kodi/addons/pdfreader/default.nix +++ b/pkgs/applications/video/kodi/addons/pdfreader/default.nix @@ -17,10 +17,10 @@ buildKodiAddon rec { passthru.pythonPath = "lib/api"; - meta = with lib; { + meta = { homepage = "https://forum.kodi.tv/showthread.php?tid=187421"; description = "Comic book reader"; - license = licenses.gpl2Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/plex-for-kodi/default.nix b/pkgs/applications/video/kodi/addons/plex-for-kodi/default.nix index 086dce6bc82b..fc5dde5acd7e 100644 --- a/pkgs/applications/video/kodi/addons/plex-for-kodi/default.nix +++ b/pkgs/applications/video/kodi/addons/plex-for-kodi/default.nix @@ -42,10 +42,10 @@ buildKodiAddon rec { mv /build/source/addon.xml $out${addonDir}/${namespace}/ ''; - meta = with lib; { + meta = { homepage = "https://www.plex.tv"; description = "Unofficial Plex for Kodi add-on"; - license = licenses.gpl2Only; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/plugin-cache/default.nix b/pkgs/applications/video/kodi/addons/plugin-cache/default.nix index 7e21281c3156..338bac55fe55 100644 --- a/pkgs/applications/video/kodi/addons/plugin-cache/default.nix +++ b/pkgs/applications/video/kodi/addons/plugin-cache/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/anxdpanic/script.common.plugin.cache"; description = "Common plugin cache"; - license = licenses.gpl3Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/pvr-hdhomerun/default.nix b/pkgs/applications/video/kodi/addons/pvr-hdhomerun/default.nix index 125c891235c5..8c3d8c923fbf 100644 --- a/pkgs/applications/video/kodi/addons/pvr-hdhomerun/default.nix +++ b/pkgs/applications/video/kodi/addons/pvr-hdhomerun/default.nix @@ -23,11 +23,11 @@ buildKodiBinaryAddon rec { libhdhomerun ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-pvr/pvr.hdhomerun"; description = "Kodi's HDHomeRun PVR client addon"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/pvr-hts/default.nix b/pkgs/applications/video/kodi/addons/pvr-hts/default.nix index e7abb4e76abf..cb6d4b28f3b4 100644 --- a/pkgs/applications/video/kodi/addons/pvr-hts/default.nix +++ b/pkgs/applications/video/kodi/addons/pvr-hts/default.nix @@ -16,11 +16,11 @@ buildKodiBinaryAddon rec { sha256 = "sha256-opxNgin+Sz/Nb9IGZ+OFrCzbDc4FXl2LaNKUu5LAgFM="; }; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-pvr/pvr.hts"; description = "Kodi's Tvheadend HTSP client addon"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/pvr-iptvsimple/default.nix b/pkgs/applications/video/kodi/addons/pvr-iptvsimple/default.nix index e41a4b32d48f..7bb2d8de1e59 100644 --- a/pkgs/applications/video/kodi/addons/pvr-iptvsimple/default.nix +++ b/pkgs/applications/video/kodi/addons/pvr-iptvsimple/default.nix @@ -34,11 +34,11 @@ buildKodiBinaryAddon rec { inputstream-rtmp ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-pvr/pvr.iptvsimple"; description = "Kodi's IPTV Simple client addon"; - platforms = platforms.all; - license = licenses.gpl2Plus; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/pvr-vdr-vnsi/default.nix b/pkgs/applications/video/kodi/addons/pvr-vdr-vnsi/default.nix index a345f5255a26..e2dcf43c713d 100644 --- a/pkgs/applications/video/kodi/addons/pvr-vdr-vnsi/default.nix +++ b/pkgs/applications/video/kodi/addons/pvr-vdr-vnsi/default.nix @@ -19,11 +19,11 @@ buildKodiBinaryAddon rec { extraBuildInputs = [ libGL ]; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-pvr/pvr.vdr.vnsi"; description = "Kodi's VDR VNSI PVR client addon"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/radioparadise/default.nix b/pkgs/applications/video/kodi/addons/radioparadise/default.nix index 7980cfd8677a..49799deeaa6b 100644 --- a/pkgs/applications/video/kodi/addons/radioparadise/default.nix +++ b/pkgs/applications/video/kodi/addons/radioparadise/default.nix @@ -28,10 +28,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/alxndr42/script.radioparadise"; description = "Radio Paradise addon for Kodi"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/raiplay/default.nix b/pkgs/applications/video/kodi/addons/raiplay/default.nix index e28563254a87..640f4c59d4ea 100644 --- a/pkgs/applications/video/kodi/addons/raiplay/default.nix +++ b/pkgs/applications/video/kodi/addons/raiplay/default.nix @@ -29,10 +29,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/maxbambi/plugin.video.raitv/"; description = "Live radio and TV channels, latest 7 days of programming, broadcast archive, news"; - license = licenses.gpl3Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/requests-cache/default.nix b/pkgs/applications/video/kodi/addons/requests-cache/default.nix index 465d2cbd53a9..884178db3d47 100644 --- a/pkgs/applications/video/kodi/addons/requests-cache/default.nix +++ b/pkgs/applications/video/kodi/addons/requests-cache/default.nix @@ -27,10 +27,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/reclosedev/requests-cache"; description = "Persistent cache for requests library"; - license = licenses.bsd2; - teams = [ teams.kodi ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/requests/default.nix b/pkgs/applications/video/kodi/addons/requests/default.nix index ca9ad2c75cd5..46937758525a 100644 --- a/pkgs/applications/video/kodi/addons/requests/default.nix +++ b/pkgs/applications/video/kodi/addons/requests/default.nix @@ -33,10 +33,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "http://python-requests.org"; description = "Python HTTP for Humans"; - license = licenses.asl20; - teams = [ teams.kodi ]; + license = lib.licenses.asl20; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/robotocjksc/default.nix b/pkgs/applications/video/kodi/addons/robotocjksc/default.nix index 47b7e0ab2250..7ec96af90767 100644 --- a/pkgs/applications/video/kodi/addons/robotocjksc/default.nix +++ b/pkgs/applications/video/kodi/addons/robotocjksc/default.nix @@ -16,10 +16,10 @@ buildKodiAddon rec { hash = "sha256-s/h/KKlGYGMvf7RdI9ONk4S+NCzlaDX5w3CdNfbC2KE="; }; - meta = with lib; { + meta = { homepage = "https://github.com/jurialmunkey/resource.font.robotocjksc"; description = "Roboto CJKSC fonts"; - license = licenses.asl20; - teams = [ teams.kodi ]; + license = lib.licenses.asl20; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/routing/default.nix b/pkgs/applications/video/kodi/addons/routing/default.nix index d0cb93791eaa..0d226737433f 100644 --- a/pkgs/applications/video/kodi/addons/routing/default.nix +++ b/pkgs/applications/video/kodi/addons/routing/default.nix @@ -22,10 +22,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/tamland/kodi-plugin-routing"; description = "Routing module for kodi plugins"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/screensaver-asteroids/default.nix b/pkgs/applications/video/kodi/addons/screensaver-asteroids/default.nix index 36a00a191170..6f1f650b53f4 100644 --- a/pkgs/applications/video/kodi/addons/screensaver-asteroids/default.nix +++ b/pkgs/applications/video/kodi/addons/screensaver-asteroids/default.nix @@ -25,11 +25,11 @@ buildKodiBinaryAddon rec { libGL ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/screensaver.asteroids"; description = "Screensaver that plays Asteroids"; - license = licenses.gpl2Plus; - platforms = platforms.all; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/sendtokodi/default.nix b/pkgs/applications/video/kodi/addons/sendtokodi/default.nix index 1fa75900b7d4..1354e355ae49 100644 --- a/pkgs/applications/video/kodi/addons/sendtokodi/default.nix +++ b/pkgs/applications/video/kodi/addons/sendtokodi/default.nix @@ -39,11 +39,11 @@ buildKodiAddon rec { ln -s ${kodi.pythonPackages.yt-dlp}/${kodi.pythonPackages.python.sitePackages}/yt_dlp lib/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/firsttris/plugin.video.sendtokodi"; description = "Plays various stream sites on Kodi using yt-dlp"; - license = licenses.mit; - maintainers = [ maintainers.pks ]; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.pks ]; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/signals/default.nix b/pkgs/applications/video/kodi/addons/signals/default.nix index eab35bc94ca8..27d0c433fd21 100644 --- a/pkgs/applications/video/kodi/addons/signals/default.nix +++ b/pkgs/applications/video/kodi/addons/signals/default.nix @@ -22,10 +22,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/ruuk/script.module.addon.signals"; description = "Provides signal/slot mechanism for inter-addon communication"; - license = licenses.lgpl21Only; - teams = [ teams.kodi ]; + license = lib.licenses.lgpl21Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/simplecache/default.nix b/pkgs/applications/video/kodi/addons/simplecache/default.nix index 9b8d1716e262..8473eefa0d1c 100644 --- a/pkgs/applications/video/kodi/addons/simplecache/default.nix +++ b/pkgs/applications/video/kodi/addons/simplecache/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/kodi-community-addons/script.module.simplecache"; description = "Simple object cache for Kodi addons"; - license = licenses.asl20; - teams = [ teams.kodi ]; + license = lib.licenses.asl20; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/simplejson/default.nix b/pkgs/applications/video/kodi/addons/simplejson/default.nix index f9bf7cd6cae8..968cb12e97c0 100644 --- a/pkgs/applications/video/kodi/addons/simplejson/default.nix +++ b/pkgs/applications/video/kodi/addons/simplejson/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/simplejson/simplejson"; description = "Simple, fast, extensible JSON encoder/decoder for Python"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/six/default.nix b/pkgs/applications/video/kodi/addons/six/default.nix index 1df3cddcadf9..3b29de09b41a 100644 --- a/pkgs/applications/video/kodi/addons/six/default.nix +++ b/pkgs/applications/video/kodi/addons/six/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/six/"; description = "Python 2 and 3 compatibility utilities"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/skyvideoitalia/default.nix b/pkgs/applications/video/kodi/addons/skyvideoitalia/default.nix index 07aafa148c96..18845656fc8a 100644 --- a/pkgs/applications/video/kodi/addons/skyvideoitalia/default.nix +++ b/pkgs/applications/video/kodi/addons/skyvideoitalia/default.nix @@ -31,10 +31,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://www.github.com/nixxo/plugin.video.skyvideoitalia"; description = "Show video content from the website of Sky Italia (video.sky.it). News, sport, entertainment and much more"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/somafm/default.nix b/pkgs/applications/video/kodi/addons/somafm/default.nix index a750daba98cf..e64947d23156 100644 --- a/pkgs/applications/video/kodi/addons/somafm/default.nix +++ b/pkgs/applications/video/kodi/addons/somafm/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/Soma-FM-Kodi-Add-On/plugin.audio.somafm"; description = "SomaFM addon for Kodi"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/sponsorblock/default.nix b/pkgs/applications/video/kodi/addons/sponsorblock/default.nix index 1ec94912c27b..399234b9e7e9 100644 --- a/pkgs/applications/video/kodi/addons/sponsorblock/default.nix +++ b/pkgs/applications/video/kodi/addons/sponsorblock/default.nix @@ -26,10 +26,10 @@ buildKodiAddon rec { pythonPath = "resources/lib"; }; - meta = with lib; { + meta = { homepage = "https://github.com/siku2/script.service.sponsorblock"; description = "Port of SponsorBlock for Invidious and YouTube Plugin"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/steam-controller/default.nix b/pkgs/applications/video/kodi/addons/steam-controller/default.nix index 212552ab4b18..13e1258b8b68 100644 --- a/pkgs/applications/video/kodi/addons/steam-controller/default.nix +++ b/pkgs/applications/video/kodi/addons/steam-controller/default.nix @@ -18,9 +18,9 @@ buildKodiBinaryAddon rec { extraBuildInputs = [ libusb1 ]; - meta = with lib; { + meta = { description = "Binary addon for steam controller"; - platforms = platforms.all; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/steam-launcher/default.nix b/pkgs/applications/video/kodi/addons/steam-launcher/default.nix index d5e3bd6a5e40..917f5147d0a1 100644 --- a/pkgs/applications/video/kodi/addons/steam-launcher/default.nix +++ b/pkgs/applications/video/kodi/addons/steam-launcher/default.nix @@ -34,7 +34,7 @@ buildKodiAddon { ${dos2unix}/bin/dos2unix $out/share/kodi/addons/script.steam.launcher/resources/scripts/steam-launcher.sh ''; - meta = with lib; { + meta = { homepage = "https://forum.kodi.tv/showthread.php?tid=157499"; description = "Launch Steam in Big Picture Mode from Kodi"; longDescription = '' @@ -44,7 +44,7 @@ buildKodiAddon { restart/maximise. Running pre/post Steam scripts can be configured via the addon. ''; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/steam-library/default.nix b/pkgs/applications/video/kodi/addons/steam-library/default.nix index 397d3452ae56..03407280a02e 100644 --- a/pkgs/applications/video/kodi/addons/steam-library/default.nix +++ b/pkgs/applications/video/kodi/addons/steam-library/default.nix @@ -25,10 +25,10 @@ buildKodiAddon rec { routing ]; - meta = with lib; { + meta = { homepage = "https://github.com/aanderse/plugin.program.steam.library"; description = "View your entire Steam library right from Kodi"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/texturemaker/default.nix b/pkgs/applications/video/kodi/addons/texturemaker/default.nix index 51f6f909823d..44cb11f0947a 100644 --- a/pkgs/applications/video/kodi/addons/texturemaker/default.nix +++ b/pkgs/applications/video/kodi/addons/texturemaker/default.nix @@ -21,10 +21,10 @@ buildKodiAddon rec { jurialmunkey ]; - meta = with lib; { + meta = { homepage = "https://github.com/jurialmunkey/script.texturemaker/tree/main"; description = "Texture Maker helps skinners build gradient based textures"; - license = licenses.gpl3Plus; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/trakt-module/default.nix b/pkgs/applications/video/kodi/addons/trakt-module/default.nix index 6232965179e6..addbfb76ee49 100644 --- a/pkgs/applications/video/kodi/addons/trakt-module/default.nix +++ b/pkgs/applications/video/kodi/addons/trakt-module/default.nix @@ -31,10 +31,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/Razzeee/script.module.trakt"; description = "Python trakt.py library packed for Kodi"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/trakt/default.nix b/pkgs/applications/video/kodi/addons/trakt/default.nix index df8f2224697d..282510c07869 100644 --- a/pkgs/applications/video/kodi/addons/trakt/default.nix +++ b/pkgs/applications/video/kodi/addons/trakt/default.nix @@ -29,10 +29,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://kodi.wiki/view/Add-on:Trakt"; description = "Trakt.tv movie and TV show scrobbler for Kodi"; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/typing_extensions/default.nix b/pkgs/applications/video/kodi/addons/typing_extensions/default.nix index 51e48fb33b77..6243fd7a8ca4 100644 --- a/pkgs/applications/video/kodi/addons/typing_extensions/default.nix +++ b/pkgs/applications/video/kodi/addons/typing_extensions/default.nix @@ -22,10 +22,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/python/typing/tree/master/typing_extensions"; description = "Python typing extensions"; - license = licenses.psfl; - teams = [ teams.kodi ]; + license = lib.licenses.psfl; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/upnext/default.nix b/pkgs/applications/video/kodi/addons/upnext/default.nix index 591769343a82..61e2019cf4fc 100644 --- a/pkgs/applications/video/kodi/addons/upnext/default.nix +++ b/pkgs/applications/video/kodi/addons/upnext/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/im85288/service.upnext"; description = "Up Next - Proposes to play the next episode automatically"; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/urllib3/default.nix b/pkgs/applications/video/kodi/addons/urllib3/default.nix index f3aa3ac30c53..a500c6169f12 100644 --- a/pkgs/applications/video/kodi/addons/urllib3/default.nix +++ b/pkgs/applications/video/kodi/addons/urllib3/default.nix @@ -23,10 +23,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://urllib3.readthedocs.io/en/latest/"; description = "HTTP library with thread-safe connection pooling, file post, and more"; - license = licenses.mit; - teams = [ teams.kodi ]; + license = lib.licenses.mit; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/vfs-libarchive/default.nix b/pkgs/applications/video/kodi/addons/vfs-libarchive/default.nix index 5d3b338605e2..623eaab5031a 100644 --- a/pkgs/applications/video/kodi/addons/vfs-libarchive/default.nix +++ b/pkgs/applications/video/kodi/addons/vfs-libarchive/default.nix @@ -33,10 +33,10 @@ buildKodiBinaryAddon rec { openssl ]; - meta = with lib; { + meta = { description = "LibArchive Virtual Filesystem add-on for Kodi"; - license = licenses.gpl2Plus; - platforms = platforms.all; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/vfs-rar/default.nix b/pkgs/applications/video/kodi/addons/vfs-rar/default.nix index 28a0a0287708..37a056096942 100644 --- a/pkgs/applications/video/kodi/addons/vfs-rar/default.nix +++ b/pkgs/applications/video/kodi/addons/vfs-rar/default.nix @@ -19,10 +19,10 @@ buildKodiBinaryAddon rec { extraBuildInputs = [ tinyxml ]; - meta = with lib; { + meta = { description = "RAR archive Virtual Filesystem add-on for Kodi"; - license = licenses.gpl2Plus; - platforms = platforms.all; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/vfs-sftp/default.nix b/pkgs/applications/video/kodi/addons/vfs-sftp/default.nix index 6c544f21fc91..dc3de53c90c4 100644 --- a/pkgs/applications/video/kodi/addons/vfs-sftp/default.nix +++ b/pkgs/applications/video/kodi/addons/vfs-sftp/default.nix @@ -25,10 +25,10 @@ buildKodiBinaryAddon rec { zlib ]; - meta = with lib; { + meta = { description = "SFTP Virtual Filesystem add-on for Kodi"; - license = licenses.gpl2Plus; - platforms = platforms.all; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-fishbmc/default.nix b/pkgs/applications/video/kodi/addons/visualization-fishbmc/default.nix index dfd79938f53c..a0376e895012 100644 --- a/pkgs/applications/video/kodi/addons/visualization-fishbmc/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-fishbmc/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.fishbmc"; description = "FishBMC visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-goom/default.nix b/pkgs/applications/video/kodi/addons/visualization-goom/default.nix index c50458c11ee1..129247800f02 100644 --- a/pkgs/applications/video/kodi/addons/visualization-goom/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-goom/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.goom"; description = "Goom visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-matrix/default.nix b/pkgs/applications/video/kodi/addons/visualization-matrix/default.nix index 570952bc1747..8066f9a3c73f 100644 --- a/pkgs/applications/video/kodi/addons/visualization-matrix/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-matrix/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.matrix"; description = "Matrix visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-pictureit/default.nix b/pkgs/applications/video/kodi/addons/visualization-pictureit/default.nix index e6d7a8130cf8..4be108a2187f 100644 --- a/pkgs/applications/video/kodi/addons/visualization-pictureit/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-pictureit/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.pictureit"; description = "PictureIt visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-projectm/default.nix b/pkgs/applications/video/kodi/addons/visualization-projectm/default.nix index 7c207dd4e33e..19771e69fa89 100644 --- a/pkgs/applications/video/kodi/addons/visualization-projectm/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-projectm/default.nix @@ -28,11 +28,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.projectm"; description = "Projectm visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-shadertoy/default.nix b/pkgs/applications/video/kodi/addons/visualization-shadertoy/default.nix index 6f1da4d23af8..cac3e4a6284a 100644 --- a/pkgs/applications/video/kodi/addons/visualization-shadertoy/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-shadertoy/default.nix @@ -28,11 +28,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.shadertoy"; description = "Shadertoy visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-spectrum/default.nix b/pkgs/applications/video/kodi/addons/visualization-spectrum/default.nix index 7de865a02704..48563f640788 100644 --- a/pkgs/applications/video/kodi/addons/visualization-spectrum/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-spectrum/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.spectrum"; description = "Spectrum visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-starburst/default.nix b/pkgs/applications/video/kodi/addons/visualization-starburst/default.nix index ddc2acd6b0c2..8ed6c407dbd2 100644 --- a/pkgs/applications/video/kodi/addons/visualization-starburst/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-starburst/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.starburst"; description = "Starburst visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-waveform/default.nix b/pkgs/applications/video/kodi/addons/visualization-waveform/default.nix index 22fa4fb23aaa..1a6ec28e419a 100644 --- a/pkgs/applications/video/kodi/addons/visualization-waveform/default.nix +++ b/pkgs/applications/video/kodi/addons/visualization-waveform/default.nix @@ -26,11 +26,11 @@ buildKodiBinaryAddon rec { ]; propagatedBuildInputs = [ glm ]; - meta = with lib; { + meta = { homepage = "https://github.com/xbmc/visualization.waveform"; description = "Waveform visualization for kodi"; - platforms = platforms.all; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/websocket/default.nix b/pkgs/applications/video/kodi/addons/websocket/default.nix index b80060f77c15..848cdb83664e 100644 --- a/pkgs/applications/video/kodi/addons/websocket/default.nix +++ b/pkgs/applications/video/kodi/addons/websocket/default.nix @@ -28,10 +28,10 @@ buildKodiAddon rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/websocket-client/websocket-client"; description = "WebSocket client for Python"; - license = licenses.lgpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.lgpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/xbmcswift2/default.nix b/pkgs/applications/video/kodi/addons/xbmcswift2/default.nix index f647d5a98632..423ffdd0c0a7 100644 --- a/pkgs/applications/video/kodi/addons/xbmcswift2/default.nix +++ b/pkgs/applications/video/kodi/addons/xbmcswift2/default.nix @@ -20,10 +20,10 @@ buildKodiAddon rec { pythonPath = "lib"; }; - meta = with lib; { + meta = { homepage = "https://github.com/XBMC-Addons/script.module.xbmcswift2"; description = "Framework to ease development of Kodi addons"; - license = licenses.gpl3Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/addons/youtube/default.nix b/pkgs/applications/video/kodi/addons/youtube/default.nix index 834ea94e8c0d..020fb59bad9a 100644 --- a/pkgs/applications/video/kodi/addons/youtube/default.nix +++ b/pkgs/applications/video/kodi/addons/youtube/default.nix @@ -29,10 +29,10 @@ buildKodiAddon rec { pythonPath = "resources/lib"; }; - meta = with lib; { + meta = { homepage = "https://github.com/anxdpanic/plugin.video.youtube"; description = "YouTube is one of the biggest video-sharing websites of the world"; - license = licenses.gpl2Only; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/applications/video/kodi/unwrapped.nix b/pkgs/applications/video/kodi/unwrapped.nix index 6d1275a055f3..bf5f0a40752a 100644 --- a/pkgs/applications/video/kodi/unwrapped.nix +++ b/pkgs/applications/video/kodi/unwrapped.nix @@ -500,12 +500,12 @@ stdenv.mkDerivation ( kodi = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Media center"; homepage = "https://kodi.tv/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.kodi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.kodi ]; mainProgram = "kodi"; }; } diff --git a/pkgs/applications/video/memento/default.nix b/pkgs/applications/video/memento/default.nix index f846057c2a20..d33f97021fd8 100644 --- a/pkgs/applications/video/memento/default.nix +++ b/pkgs/applications/video/memento/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : "${yt-dlp}/bin" \ ''; - meta = with lib; { + meta = { description = "Mpv-based video player for studying Japanese"; homepage = "https://ripose-jp.github.io/Memento/"; - license = licenses.gpl2; - maintainers = with maintainers; [ teto ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ teto ]; + platforms = lib.platforms.linux; mainProgram = "memento"; }; }) diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix index 66dc8891988e..33f3e1c300b7 100644 --- a/pkgs/applications/video/minitube/default.nix +++ b/pkgs/applications/video/minitube/default.nix @@ -49,7 +49,7 @@ mkDerivation rec { qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ]; - meta = with lib; { + meta = { description = "Stand-alone YouTube video player"; longDescription = '' Watch YouTube videos in a new way: you type a keyword, Minitube gives @@ -57,8 +57,8 @@ mkDerivation rec { website, it aims to create a new TV-like experience. ''; homepage = "https://flavio.tordini.org/minitube"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "minitube"; }; diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix index 2878199a556a..57fc0c91c474 100644 --- a/pkgs/applications/video/mplayer/default.nix +++ b/pkgs/applications/video/mplayer/default.nix @@ -270,12 +270,12 @@ stdenv.mkDerivation { fi ''; - meta = with lib; { + meta = { description = "Movie player that supports many video formats"; homepage = "http://mplayerhq.hu"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; # Picking it up: no idea about the origin of some choices (but seems fine) - maintainers = [ maintainers.raskin ]; + maintainers = [ lib.maintainers.raskin ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/applications/video/mpv/scripts/autosubsync-mpv.nix b/pkgs/applications/video/mpv/scripts/autosubsync-mpv.nix index 59daec0aa67d..0e39cef46902 100644 --- a/pkgs/applications/video/mpv/scripts/autosubsync-mpv.nix +++ b/pkgs/applications/video/mpv/scripts/autosubsync-mpv.nix @@ -29,10 +29,10 @@ buildLua { scriptPath = "./"; passthru.scriptName = "autosubsync-mpv"; - meta = with lib; { + meta = { description = "Automatically sync subtitles in mpv using the `n` button"; homepage = "https://github.com/joaquintorres/autosubsync-mpv"; - maintainers = with maintainers; [ kovirobi ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ kovirobi ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/applications/video/mpv/scripts/convert.nix b/pkgs/applications/video/mpv/scripts/convert.nix index 1df83df46d8c..34243ab928d3 100644 --- a/pkgs/applications/video/mpv/scripts/convert.nix +++ b/pkgs/applications/video/mpv/scripts/convert.nix @@ -35,15 +35,15 @@ buildLua { scriptPath = "convert_script.lua"; - meta = with lib; { + meta = { description = "Convert parts of a video while you are watching it in mpv"; homepage = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0"; - maintainers = [ maintainers.Profpatsch ]; + maintainers = [ lib.maintainers.Profpatsch ]; longDescription = '' When this script is loaded into mpv, you can hit Alt+W to mark the beginning and Alt+W again to mark the end of the clip. Then a settings window opens. ''; # author was asked to add a license https://gist.github.com/Zehkul/25ea7ae77b30af959be0#gistcomment-3715700 - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/applications/video/mpv/scripts/cutter.nix b/pkgs/applications/video/mpv/scripts/cutter.nix index 8cbcf2c509ff..1cc12415f834 100644 --- a/pkgs/applications/video/mpv/scripts/cutter.nix +++ b/pkgs/applications/video/mpv/scripts/cutter.nix @@ -39,10 +39,10 @@ buildLua { --run "mkdir -p ~/.config/mpv/cutter/" ''; - meta = with lib; { + meta = { description = "Cut videos and concat them automatically"; homepage = "https://github.com/rushmj/mpv-video-cutter"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/eisa01.nix b/pkgs/applications/video/mpv/scripts/eisa01.nix index cd75861999e2..47721d5bf6c0 100644 --- a/pkgs/applications/video/mpv/scripts/eisa01.nix +++ b/pkgs/applications/video/mpv/scripts/eisa01.nix @@ -27,9 +27,9 @@ let }; passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/Eisa01/mpv-scripts"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; # Sadly needed to make `common-updaters` work here diff --git a/pkgs/applications/video/mpv/scripts/evafast.nix b/pkgs/applications/video/mpv/scripts/evafast.nix index 5260adb1a8ef..0663edf0bd71 100644 --- a/pkgs/applications/video/mpv/scripts/evafast.nix +++ b/pkgs/applications/video/mpv/scripts/evafast.nix @@ -19,10 +19,10 @@ buildLua { # Drop the `branch` parameter once upstream merges `rewrite` back into `master` passthru.updateScript = unstableGitUpdater { branch = "rewrite"; }; - meta = with lib; { + meta = { description = "Seeking and hybrid fastforwarding like VHS"; homepage = "https://github.com/po5/evafast"; - license = licenses.unfree; # no license; see https://github.com/po5/evafast/issues/15 + license = lib.licenses.unfree; # no license; see https://github.com/po5/evafast/issues/15 maintainers = with lib.maintainers; [ purrpurrn ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/inhibit-gnome.nix b/pkgs/applications/video/mpv/scripts/inhibit-gnome.nix index 02a54a2cf475..984e0e79ca5b 100644 --- a/pkgs/applications/video/mpv/scripts/inhibit-gnome.nix +++ b/pkgs/applications/video/mpv/scripts/inhibit-gnome.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { install -D ./lib/mpv_inhibit_gnome.so $out/share/mpv/scripts/mpv_inhibit_gnome.so ''; - meta = with lib; { + meta = { description = "This mpv plugin prevents screen blanking in GNOME"; homepage = "https://github.com/Guldoman/mpv_inhibit_gnome"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ myaats ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ myaats ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/memo.nix b/pkgs/applications/video/mpv/scripts/memo.nix index 0b6022e3de3c..5bbf3e1bf7e7 100644 --- a/pkgs/applications/video/mpv/scripts/memo.nix +++ b/pkgs/applications/video/mpv/scripts/memo.nix @@ -18,10 +18,10 @@ buildLua { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Recent files menu for mpv"; homepage = "https://github.com/po5/memo"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ purrpurrn ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/modernx.nix b/pkgs/applications/video/mpv/scripts/modernx.nix index 28a50e15d5d8..a5ae4e7b3c6f 100644 --- a/pkgs/applications/video/mpv/scripts/modernx.nix +++ b/pkgs/applications/video/mpv/scripts/modernx.nix @@ -31,10 +31,10 @@ buildLua (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Modern OSC UI replacement for MPV that retains the functionality of the default OSC"; homepage = "https://github.com/cyl0/ModernX"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ Guanran928 ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ Guanran928 ]; }; }) diff --git a/pkgs/applications/video/mpv/scripts/mpv-cheatsheet.nix b/pkgs/applications/video/mpv/scripts/mpv-cheatsheet.nix index c0c62867c1ee..6c148bb84f11 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-cheatsheet.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-cheatsheet.nix @@ -37,10 +37,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.scriptName = "cheatsheet.js"; - meta = with lib; { + meta = { description = "mpv script for looking up keyboard shortcuts"; homepage = "https://github.com/ento/mpv-cheatsheet"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; }) diff --git a/pkgs/applications/video/mpv/scripts/mpv-osc-modern.nix b/pkgs/applications/video/mpv/scripts/mpv-osc-modern.nix index 0d2c292d702a..89231e405a1f 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-osc-modern.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-osc-modern.nix @@ -31,10 +31,10 @@ buildLua (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Another MPV OSC Script"; homepage = "https://github.com/maoiscat/mpv-osc-modern"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ Guanran928 ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ Guanran928 ]; }; }) diff --git a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix index 4a49433f2df8..6f0d529e6b10 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix @@ -24,10 +24,10 @@ buildLua { 'youtube_dl_executable = "${lib.getExe yt-dlp}"', ''; - meta = with lib; { + meta = { description = "Mpv lua script to create and manage playlists"; homepage = "https://github.com/jonniek/mpv-playlistmanager"; - license = licenses.unlicense; - maintainers = with maintainers; [ lunik1 ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ lunik1 ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/mpv-webm.nix b/pkgs/applications/video/mpv/scripts/mpv-webm.nix index fd60f7dec7a7..8913b7621792 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-webm.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-webm.nix @@ -25,11 +25,11 @@ buildLua { nativeBuildInputs = [ luaPackages.moonscript ]; scriptPath = "build/webm.lua"; - meta = with lib; { + meta = { description = "Simple WebM maker for mpv, with no external dependencies"; homepage = "https://github.com/ekisu/mpv-webm"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/mpvacious.nix b/pkgs/applications/video/mpv/scripts/mpvacious.nix index adb0d76f4159..a515da1d6fb4 100644 --- a/pkgs/applications/video/mpv/scripts/mpvacious.nix +++ b/pkgs/applications/video/mpv/scripts/mpvacious.nix @@ -37,10 +37,10 @@ buildLua rec { passthru.scriptName = "mpvacious"; - meta = with lib; { + meta = { description = "Adds mpv keybindings to create Anki cards from movies and TV shows"; homepage = "https://github.com/Ajatt-Tools/mpvacious"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kmicklas ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kmicklas ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/occivink.nix b/pkgs/applications/video/mpv/scripts/occivink.nix index 7501c9e5ee1b..bcdc723728b2 100644 --- a/pkgs/applications/video/mpv/scripts/occivink.nix +++ b/pkgs/applications/video/mpv/scripts/occivink.nix @@ -30,10 +30,10 @@ let scriptPath = "scripts/${pname}.lua"; - meta = with lib; { + meta = { homepage = "https://github.com/occivink/mpv-scripts"; - license = licenses.unlicense; - maintainers = with maintainers; [ nicoo ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ nicoo ]; }; # Sadly needed to make `common-updaters` work here diff --git a/pkgs/applications/video/mpv/scripts/quality-menu.nix b/pkgs/applications/video/mpv/scripts/quality-menu.nix index f08c383e6559..cc40f9802176 100644 --- a/pkgs/applications/video/mpv/scripts/quality-menu.nix +++ b/pkgs/applications/video/mpv/scripts/quality-menu.nix @@ -21,10 +21,10 @@ buildLua rec { extraScriptsToCopy = lib.optional oscSupport "quality-menu-osc.lua"; extraScriptsToLoad = lib.optional oscSupport "quality-menu-osc.lua"; - meta = with lib; { + meta = { description = "Userscript for MPV that allows you to change youtube video quality (ytdl-format) on the fly"; homepage = "https://github.com/christoph-heinrich/mpv-quality-menu"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ lunik1 ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ lunik1 ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix b/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix index f36bce3cb200..ff8fd13871e0 100644 --- a/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix +++ b/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix @@ -27,10 +27,10 @@ buildLua rec { scriptPath = "."; passthru.scriptName = "webui"; - meta = with lib; { + meta = { description = "Web based user interface with controls for the mpv mediaplayer"; homepage = "https://github.com/open-dynaMIX/simple-mpv-webui"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ cript0nauta zopieux ]; @@ -39,6 +39,6 @@ buildLua rec { http://[::1]:8080 in your webbrowser. By default it listens on 0.0.0.0:8080 and [::0]:8080 ''; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/applications/video/mpv/scripts/sponsorblock-minimal.nix b/pkgs/applications/video/mpv/scripts/sponsorblock-minimal.nix index 071097720686..9b38977da3bb 100644 --- a/pkgs/applications/video/mpv/scripts/sponsorblock-minimal.nix +++ b/pkgs/applications/video/mpv/scripts/sponsorblock-minimal.nix @@ -27,11 +27,11 @@ buildLua { --replace-fail "sha256sum" "${lib.getExe' coreutils "sha256sum"}" ''; - meta = with lib; { + meta = { description = "Minimal script to skip sponsored segments of YouTube videos"; homepage = "https://codeberg.org/jouni/mpv_sponsorblock_minimal"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ arthsmn ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ arthsmn ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/sponsorblock.nix b/pkgs/applications/video/mpv/scripts/sponsorblock.nix index 5a4ebb998d45..b65646c079a5 100644 --- a/pkgs/applications/video/mpv/scripts/sponsorblock.nix +++ b/pkgs/applications/video/mpv/scripts/sponsorblock.nix @@ -43,10 +43,10 @@ buildLua { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Script for mpv to skip sponsored segments of YouTube videos"; homepage = "https://github.com/po5/mpv_sponsorblock"; - license = licenses.gpl3; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ euxane ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/uosc.nix b/pkgs/applications/video/mpv/scripts/uosc.nix index b5c5dcce7b26..7ac6405d2147 100644 --- a/pkgs/applications/video/mpv/scripts/uosc.nix +++ b/pkgs/applications/video/mpv/scripts/uosc.nix @@ -40,10 +40,10 @@ buildLua (finalAttrs: { (lib.getExe' finalAttrs.tools "ziggy") ]; - meta = with lib; { + meta = { description = "Feature-rich minimalist proximity-based UI for MPV player"; homepage = "https://github.com/tomasklaen/uosc"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ apfelkuchen6 ]; }; }) diff --git a/pkgs/applications/video/mpv/scripts/videoclip.nix b/pkgs/applications/video/mpv/scripts/videoclip.nix index cea7fc91adb2..44643207f144 100644 --- a/pkgs/applications/video/mpv/scripts/videoclip.nix +++ b/pkgs/applications/video/mpv/scripts/videoclip.nix @@ -34,11 +34,11 @@ buildLua { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { description = "Easily create videoclips with mpv"; homepage = "https://github.com/Ajatt-Tools/videoclip"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ BatteredBunny ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ BatteredBunny ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/visualizer.nix b/pkgs/applications/video/mpv/scripts/visualizer.nix index aa31c79ee833..a98fac130d0a 100644 --- a/pkgs/applications/video/mpv/scripts/visualizer.nix +++ b/pkgs/applications/video/mpv/scripts/visualizer.nix @@ -16,9 +16,9 @@ buildLua { }; passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Various audio visualization"; homepage = "https://github.com/mfcc64/mpv-scripts"; - maintainers = with maintainers; [ kmein ]; + maintainers = with lib.maintainers; [ kmein ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/vr-reversal.nix b/pkgs/applications/video/mpv/scripts/vr-reversal.nix index 69952aa724f5..49d234b7b641 100644 --- a/pkgs/applications/video/mpv/scripts/vr-reversal.nix +++ b/pkgs/applications/video/mpv/scripts/vr-reversal.nix @@ -32,11 +32,11 @@ stdenvNoCC.mkDerivation rec { passthru.scriptName = "360plugin.lua"; - meta = with lib; { + meta = { description = "Script for mpv to play VR video with optional saving of head tracking data"; homepage = "https://github.com/dfaker/VR-reversal"; - license = licenses.unlicense; - platforms = platforms.all; - maintainers = with maintainers; [ schnusch ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ schnusch ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/youtube-upnext.nix b/pkgs/applications/video/mpv/scripts/youtube-upnext.nix index ecd71353d6a3..31a04caf87c6 100644 --- a/pkgs/applications/video/mpv/scripts/youtube-upnext.nix +++ b/pkgs/applications/video/mpv/scripts/youtube-upnext.nix @@ -24,10 +24,10 @@ buildLua rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Userscript that allows you to play 'up next'/recommended youtube videos"; homepage = "https://github.com/cvzi/mpv-youtube-upnext"; - maintainers = with maintainers; [ bddvlpr ]; - license = licenses.unfree; + maintainers = with lib.maintainers; [ bddvlpr ]; + license = lib.licenses.unfree; }; } diff --git a/pkgs/applications/video/mythtv/default.nix b/pkgs/applications/video/mythtv/default.nix index 4f38d13efc97..63bb5b4a4f56 100644 --- a/pkgs/applications/video/mythtv/default.nix +++ b/pkgs/applications/video/mythtv/default.nix @@ -104,11 +104,11 @@ mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.mythtv.org/"; description = "Open Source DVR"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/video/natron/default.nix b/pkgs/applications/video/natron/default.nix index c715c1fa3827..a79bb1e575ae 100644 --- a/pkgs/applications/video/natron/default.nix +++ b/pkgs/applications/video/natron/default.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation { --set-default OCIO "$out/share/OpenColorIO-Configs/blender/config.ocio" ''; - meta = with lib; { + meta = { description = "Node-graph based, open-source compositing software"; longDescription = '' Node-graph based, open-source compositing software. Similar in @@ -103,8 +103,8 @@ stdenv.mkDerivation { ''; homepage = "https://natron.fr/"; license = lib.licenses.gpl2; - maintainers = [ maintainers.puffnfresh ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.puffnfresh ]; + platforms = lib.platforms.linux; # error: 'LogMessageVoidify' is not a member of 'google' broken = true; }; diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index ba5818198996..4815fc2b9849 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -250,7 +250,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Free and open source software for video recording and live streaming"; longDescription = '' This project is a rewrite of what was formerly known as "Open Broadcaster @@ -258,12 +258,12 @@ stdenv.mkDerivation (finalAttrs: { video content, efficiently ''; homepage = "https://obsproject.com"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jb55 materus fpletz ]; - license = with licenses; [ gpl2Plus ] ++ optional withFdk fraunhofer-fdk; + license = with lib.licenses; [ gpl2Plus ] ++ optional withFdk fraunhofer-fdk; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix b/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix index a46925d9a06d..aa852f81757e 100644 --- a/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=stringop-overflow -Wno-error=deprecated-declarations"; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Automated scene switcher for OBS Studio"; homepage = "https://github.com/WarmUpTill/SceneSwitcher"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ patrickdag ]; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/looking-glass-obs.nix b/pkgs/applications/video/obs-studio/plugins/looking-glass-obs.nix index c7b13fb5f18d..5c97daff325e 100644 --- a/pkgs/applications/video/obs-studio/plugins/looking-glass-obs.nix +++ b/pkgs/applications/video/obs-studio/plugins/looking-glass-obs.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { mv liblooking-glass-obs.so $out/lib/obs-plugins/ ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio for efficient capturing of looking-glass"; homepage = "https://looking-glass.io/docs/stable/obs/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ babbaj ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ babbaj ]; # Hard coded x86_64 support platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/video/obs-studio/plugins/obs-3d-effect.nix b/pkgs/applications/video/obs-studio/plugins/obs-3d-effect.nix index b10b8af8b702..908623ffd62e 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-3d-effect.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-3d-effect.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio adding 3D effect filter"; homepage = "https://github.com/exeldro/obs-3d-effect"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix index 955bdfc1eeef..0d8e37e71f70 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { cmake --install build_x86_64 --prefix "$out" ''; - meta = with lib; { + meta = { description = "OBS plugin to replace the background in portrait images and video"; homepage = "https://github.com/royshil/obs-backgroundremoval"; - maintainers = with maintainers; [ zahrun ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ zahrun ]; + license = lib.licenses.mit; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-command-source.nix b/pkgs/applications/video/obs-studio/plugins/obs-command-source.nix index 0696634bb95e..16f87c75cb02 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-command-source.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-command-source.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { mv $out/data $out/share/obs ''; - meta = with lib; { + meta = { description = "OBS Studio plugin that provides a dummy source to execute arbitrary commands when a scene is switched"; homepage = "https://github.com/norihiro/command-source"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-dir-watch-media.nix b/pkgs/applications/video/obs-studio/plugins/obs-dir-watch-media.nix index 28804383dc6e..7c783dc7170d 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-dir-watch-media.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-dir-watch-media.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio adding a filter that can watch a directory for media files"; homepage = "https://github.com/exeldro/obs-dir-watch-media"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Only; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-freeze-filter.nix b/pkgs/applications/video/obs-studio/plugins/obs-freeze-filter.nix index c09f617d2f3d..cd9461ab4a88 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-freeze-filter.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-freeze-filter.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (finalAttrs: { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Plugin for OBS Studio to freeze a source using a filter"; homepage = "https://github.com/exeldro/obs-freeze-filter"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ pschmitt ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pschmitt ]; }; }) diff --git a/pkgs/applications/video/obs-studio/plugins/obs-gradient-source.nix b/pkgs/applications/video/obs-studio/plugins/obs-gradient-source.nix index c092185b5f90..1401e0284514 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-gradient-source.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-gradient-source.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for adding a gradient Source to OBS Studio"; homepage = "https://github.com/exeldro/obs-gradient-source"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix b/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix index 837de444b22c..a5e292b68691 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix @@ -60,14 +60,14 @@ stdenv.mkDerivation rec { mv $out/lib/obs-gstreamer.so $out/lib/obs-plugins/ ''; - meta = with lib; { + meta = { description = "OBS Studio source, encoder and video filter plugin to use GStreamer elements/pipelines in OBS Studio"; homepage = "https://github.com/fzwoch/obs-gstreamer"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ahuzik pedrohlc ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-hyperion/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-hyperion/default.nix index e63c3a9e9d29..7ffa72461ef6 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-hyperion/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-hyperion/default.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { rm -rf external/flatbuffers ''; - meta = with lib; { + meta = { description = "OBS Studio plugin to connect to a Hyperion.ng server"; homepage = "https://github.com/hyperion-project/hyperion-obs-plugin"; - license = licenses.mit; - maintainers = with maintainers; [ algram ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ algram ]; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix index 7f5e69b85db2..ebb0c3dc863e 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix @@ -35,14 +35,14 @@ rustPlatform.buildRustPackage rec { mv $out/lib/libobs_livesplit_one.so $out/lib/obs-plugins/obs-livesplit-one.so ''; - meta = with lib; { + meta = { description = "OBS Studio plugin for adding LiveSplit One as a source"; homepage = "https://github.com/LiveSplit/obs-livesplit-one"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = [ maintainers.Bauke ]; + maintainers = [ lib.maintainers.Bauke ]; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-markdown.nix b/pkgs/applications/video/obs-studio/plugins/obs-markdown.nix index 51b6c29f99ad..81d09b9c0ae0 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-markdown.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-markdown.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio to add Markdown sources"; homepage = "https://github.com/exeldro/obs-markdown"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Only; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-move-transition.nix b/pkgs/applications/video/obs-studio/plugins/obs-move-transition.nix index 5c7527f58efc..1d421a75808a 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-move-transition.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-move-transition.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio to move source to a new position during scene transition"; homepage = "https://github.com/exeldro/obs-move-transition"; - maintainers = with maintainers; [ starcraft66 ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ starcraft66 ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-mute-filter.nix b/pkgs/applications/video/obs-studio/plugins/obs-mute-filter.nix index c8c480a8bb7b..ad19d4a872f8 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-mute-filter.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-mute-filter.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { mv $out/data $out/share/obs ''; - meta = with lib; { + meta = { description = "OBS Studio plugin to mute audio of a source"; homepage = "https://github.com/norihiro/obs-mute-filter"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-noise.nix b/pkgs/applications/video/obs-studio/plugins/obs-noise.nix index fc481e57c4eb..0d80566c576b 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-noise.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-noise.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { rm -rf $out/data $out/obs-plugins ''; - meta = with lib; { + meta = { description = "Plug-in for noise generation and noise effects for OBS"; homepage = "https://github.com/FiniteSingularity/obs-noise"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Only; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix b/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix index 01e71eafc00c..13dc8a6e59e2 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_DATADIR=./share" ]; - meta = with lib; { + meta = { description = "Audio device and application capture for OBS Studio using PipeWire"; homepage = "https://github.com/dimtpap/obs-pipewire-audio-capture"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ Elinvention fazzi ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix b/pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix index 8279fee497f9..b5a14b8e8247 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Replay source for OBS studio"; homepage = "https://github.com/exeldro/obs-replay-source"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ flexiondotorg pschmitt ]; diff --git a/pkgs/applications/video/obs-studio/plugins/obs-retro-effects.nix b/pkgs/applications/video/obs-studio/plugins/obs-retro-effects.nix index 10e92ac5a8bd..d866db831f3e 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-retro-effects.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-retro-effects.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { rm -rf $out/data ''; - meta = with lib; { + meta = { description = "Collection of OBS filters to give your stream that retro feel"; homepage = "https://github.com/FiniteSingularity/obs-retro-effects"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels.nix b/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels.nix index 406e7b65986a..287b6d9cfb06 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ obs-studio ]; - meta = with lib; { + meta = { description = "Simple OBS Studio filter to adjust RGB levels"; homepage = "https://github.com/wimpysworld/obs-rgb-levels"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Only; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-scene-as-transition.nix b/pkgs/applications/video/obs-studio/plugins/obs-scene-as-transition.nix index f844c0f25499..095a2bae8bd9 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-scene-as-transition.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-scene-as-transition.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "OBS Studio plugin that will allow you to use a Scene as a transition"; homepage = "https://github.com/andilippi/obs-scene-as-transition"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-shaderfilter.nix b/pkgs/applications/video/obs-studio/plugins/obs-shaderfilter.nix index 31236c550e79..1814f6bffccc 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-shaderfilter.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-shaderfilter.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { mv $out/data $out/share/obs ''; - meta = with lib; { + meta = { description = "OBS Studio filter for applying an arbitrary shader to a source"; homepage = "https://github.com/exeldro/obs-shaderfilter"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-source-record.nix b/pkgs/applications/video/obs-studio/plugins/obs-source-record.nix index 811e43e921e2..85a8c15c4132 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-source-record.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-source-record.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation rec { rm -rf $out/{data,obs-plugins} ''; - meta = with lib; { + meta = { description = "OBS Studio plugin to make sources available to record via a filter"; homepage = "https://github.com/exeldro/obs-source-record"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ robbins shackra ]; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-stroke-glow-shadow.nix b/pkgs/applications/video/obs-studio/plugins/obs-stroke-glow-shadow.nix index f68a03f80736..70ad8aa755b4 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-stroke-glow-shadow.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-stroke-glow-shadow.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { rm -rf $out/data ''; - meta = with lib; { + meta = { description = "OBS plugin to provide efficient Stroke, Glow, and Shadow effects on masked sources"; homepage = "https://github.com/FiniteSingularity/obs-stroke-glow-shadow"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Only; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-text-pthread.nix b/pkgs/applications/video/obs-studio/plugins/obs-text-pthread.nix index 61d203999ebc..e4f748bc0a86 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-text-pthread.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-text-pthread.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { mv $out/data $out/share/obs ''; - meta = with lib; { + meta = { description = "Rich text source plugin for OBS Studio"; homepage = "https://github.com/norihiro/obs-text-pthread"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-transition-table.nix b/pkgs/applications/video/obs-studio/plugins/obs-transition-table.nix index f1e27d4327de..07ab3bc0f475 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-transition-table.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-transition-table.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio to add a Transition Table to the tools menu"; homepage = "https://github.com/exeldro/obs-transition-table"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-vintage-filter.nix b/pkgs/applications/video/obs-studio/plugins/obs-vintage-filter.nix index 9a25cc41b839..92328621c5eb 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-vintage-filter.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-vintage-filter.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { mv $out/data $out/share/obs ''; - meta = with lib; { + meta = { description = "OBS Studio filter where the source can be set to be black & white or sepia"; homepage = "https://github.com/cg2121/obs-vintage-filter"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-vkcapture.nix b/pkgs/applications/video/obs-studio/plugins/obs-vkcapture.nix index bd8295db954b..f0c08e3012b2 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-vkcapture.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-vkcapture.nix @@ -80,15 +80,15 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "OBS Linux Vulkan/OpenGL game capture"; homepage = "https://github.com/nowrep/obs-vkcapture"; changelog = "https://github.com/nowrep/obs-vkcapture/releases/tag/v${finalAttrs.version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ atila pedrohlc ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/video/obs-studio/plugins/obs-websocket.nix b/pkgs/applications/video/obs-studio/plugins/obs-websocket.nix index 6c67a1d6a3db..8bf98ce01875 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-websocket.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-websocket.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { mv $out/data $out/share/obs ''; - meta = with lib; { + meta = { description = "Legacy websocket 4.9.1 protocol support for OBS Studio 28 or above"; homepage = "https://github.com/obsproject/obs-websocket"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/pixel-art.nix b/pkgs/applications/video/obs-studio/plugins/pixel-art.nix index 12e70c21847c..3408e03aa920 100644 --- a/pkgs/applications/video/obs-studio/plugins/pixel-art.nix +++ b/pkgs/applications/video/obs-studio/plugins/pixel-art.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ obs-studio ]; - meta = with lib; { + meta = { description = "OBS Plugin that can be used to create retro-inspired pixel art visuals"; homepage = "https://github.com/dspstanky/pixel-art"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Only; inherit (obs-studio.meta) platforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/wlrobs.nix b/pkgs/applications/video/obs-studio/plugins/wlrobs.nix index 2d169399a8fd..1f76b8db8fea 100644 --- a/pkgs/applications/video/obs-studio/plugins/wlrobs.nix +++ b/pkgs/applications/video/obs-studio/plugins/wlrobs.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { libX11 ]; - meta = with lib; { + meta = { description = "Obs-studio plugin that allows you to screen capture on wlroots based wayland compositors"; homepage = "https://hg.sr.ht/~scoopta/wlrobs"; - maintainers = with maintainers; [ grahamc ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ grahamc ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/video/pipe-viewer/default.nix b/pkgs/applications/video/pipe-viewer/default.nix index 919339af09ad..f9b64030344b 100644 --- a/pkgs/applications/video/pipe-viewer/default.nix +++ b/pkgs/applications/video/pipe-viewer/default.nix @@ -104,12 +104,12 @@ buildPerlModule rec { --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/trizen/pipe-viewer"; description = "CLI+GUI YouTube Client"; - license = licenses.artistic2; - maintainers = with maintainers; [ julm ]; - platforms = platforms.all; + license = lib.licenses.artistic2; + maintainers = with lib.maintainers; [ julm ]; + platforms = lib.platforms.all; mainProgram = "pipe-viewer"; }; } diff --git a/pkgs/applications/video/plex-mpv-shim/default.nix b/pkgs/applications/video/plex-mpv-shim/default.nix index 9d0b91b6fd02..7044f915d016 100644 --- a/pkgs/applications/video/plex-mpv-shim/default.nix +++ b/pkgs/applications/video/plex-mpv-shim/default.nix @@ -53,12 +53,12 @@ buildPythonApplication { # does not contain tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/iwalton3/plex-mpv-shim"; description = "Allows casting of videos to MPV via the Plex mobile and web app"; - maintainers = with maintainers; [ devusb ]; - license = licenses.mit; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ devusb ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "plex-mpv-shim"; }; } diff --git a/pkgs/applications/video/qarte/default.nix b/pkgs/applications/video/qarte/default.nix index 3b2ba7dc45f7..ee29477708ed 100644 --- a/pkgs/applications/video/qarte/default.nix +++ b/pkgs/applications/video/qarte/default.nix @@ -48,12 +48,12 @@ mkDerivation { --prefix PATH : ${rtmpdump}/bin ''; - meta = with lib; { + meta = { homepage = "https://launchpad.net/qarte"; description = "Recorder for Arte TV Guide and Arte Concert"; - license = licenses.gpl3; - maintainers = with maintainers; [ vbgl ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ vbgl ]; + platforms = lib.platforms.linux; mainProgram = "qarte"; }; } diff --git a/pkgs/applications/video/qmediathekview/default.nix b/pkgs/applications/video/qmediathekview/default.nix index 77338a87a6e5..2c5ff03d0a85 100644 --- a/pkgs/applications/video/qmediathekview/default.nix +++ b/pkgs/applications/video/qmediathekview/default.nix @@ -39,12 +39,12 @@ mkDerivation rec { installFlags = [ "INSTALL_ROOT=$(out)" ]; - meta = with lib; { + meta = { description = "Alternative Qt-based front-end for the database maintained by the MediathekView project"; inherit (src.meta) homepage; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dotlambda ]; broken = stdenv.hostPlatform.isAarch64; mainProgram = "QMediathekView"; }; diff --git a/pkgs/applications/video/simplescreenrecorder/default.nix b/pkgs/applications/video/simplescreenrecorder/default.nix index eacd82e1aaa2..0577ef00d9df 100644 --- a/pkgs/applications/video/simplescreenrecorder/default.nix +++ b/pkgs/applications/video/simplescreenrecorder/default.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Screen recorder for Linux"; homepage = "https://www.maartenbaert.be/simplescreenrecorder"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix index afb0d254bfe0..c700f54d1192 100644 --- a/pkgs/applications/video/smtube/default.nix +++ b/pkgs/applications/video/smtube/default.nix @@ -28,11 +28,11 @@ mkDerivation rec { qtwebkit ]; - meta = with lib; { + meta = { description = "Play and download Youtube videos"; homepage = "http://smplayer.sourceforge.net/smtube.php"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ vbgl ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ vbgl ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/video/streamlink-twitch-gui/bin.nix b/pkgs/applications/video/streamlink-twitch-gui/bin.nix index 086f3be3a4a6..88431b3f0c15 100644 --- a/pkgs/applications/video/streamlink-twitch-gui/bin.nix +++ b/pkgs/applications/video/streamlink-twitch-gui/bin.nix @@ -131,13 +131,13 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Twitch.tv browser for Streamlink"; longDescription = "Browse Twitch.tv and watch streams in your videoplayer of choice"; homepage = "https://streamlink.github.io/streamlink-twitch-gui/"; downloadPage = "https://github.com/streamlink/streamlink-twitch-gui/releases"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; mainProgram = "streamlink-twitch-gui"; maintainers = [ ]; platforms = [ diff --git a/pkgs/applications/video/tartube/default.nix b/pkgs/applications/video/tartube/default.nix index 198fd276d777..ef09ad9d26b3 100644 --- a/pkgs/applications/video/tartube/default.nix +++ b/pkgs/applications/video/tartube/default.nix @@ -70,11 +70,11 @@ python3Packages.buildPythonApplication rec { "--prefix PATH : ${lib.makeBinPath [ youtube-dl ]}" ]; - meta = with lib; { + meta = { description = "GUI front-end for youtube-dl"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mkg20001 ]; homepage = "https://tartube.sourceforge.io/"; mainProgram = "tartube"; }; diff --git a/pkgs/applications/video/vdr/default.nix b/pkgs/applications/video/vdr/default.nix index a86b9482d7b9..38077d1449fb 100644 --- a/pkgs/applications/video/vdr/default.nix +++ b/pkgs/applications/video/vdr/default.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { homepage = "https://www.tvdr.de/"; description = "Video Disc Recorder"; - maintainers = [ maintainers.ck3d ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.ck3d ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/applications/video/vdr/nopacity/default.nix b/pkgs/applications/video/vdr/nopacity/default.nix index 84e8e48ab7b6..4706961a8fae 100644 --- a/pkgs/applications/video/vdr/nopacity/default.nix +++ b/pkgs/applications/video/vdr/nopacity/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { installFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Highly customizable native true color skin for the Video Disc Recorder"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; } diff --git a/pkgs/applications/video/vdr/plugins.nix b/pkgs/applications/video/vdr/plugins.nix index c86fead10a56..a6e98470e40b 100644 --- a/pkgs/applications/video/vdr/plugins.nix +++ b/pkgs/applications/video/vdr/plugins.nix @@ -55,11 +55,11 @@ in makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "DVB Frontend Status Monitor plugin for VDR"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; @@ -80,11 +80,11 @@ in sha256 = "sha256-ivHdzX90ozMXSvIc5OrKC5qHeK5W3TK8zyrN8mY3IhE="; }; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "VDR plugin to handle KODI clients"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; @@ -120,11 +120,11 @@ in dontInstall = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "VDR Text2Skin Plugin"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; }; @@ -149,11 +149,11 @@ in installFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Plugin for VDR to access AVMs Fritz Box routers"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; }; diff --git a/pkgs/applications/video/vdr/softhddevice/default.nix b/pkgs/applications/video/vdr/softhddevice/default.nix index 3ccce10e05a2..61453be5e0be 100644 --- a/pkgs/applications/video/vdr/softhddevice/default.nix +++ b/pkgs/applications/video/vdr/softhddevice/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { --replace "LOCALBASE \"/bin/X\"" "\"${xorgserver}/bin/X\"" ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "VDR SoftHDDevice Plug-in"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; diff --git a/pkgs/applications/video/vdr/streamdev/default.nix b/pkgs/applications/video/vdr/streamdev/default.nix index e971ef130877..aa3b1b320ff3 100644 --- a/pkgs/applications/video/vdr/streamdev/default.nix +++ b/pkgs/applications/video/vdr/streamdev/default.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { vdr ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "This PlugIn is a VDR implementation of the VTP (Video Transfer Protocol) Version 0.0.3 (see file PROTOCOL) and a basic HTTP Streaming Protocol"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; } diff --git a/pkgs/applications/video/vdr/xineliboutput/default.nix b/pkgs/applications/video/vdr/xineliboutput/default.nix index 78deb1b0e98a..405d548bd7f2 100644 --- a/pkgs/applications/video/vdr/xineliboutput/default.nix +++ b/pkgs/applications/video/vdr/xineliboutput/default.nix @@ -86,11 +86,11 @@ let self ]; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/xineliboutput/"; description = "Xine-lib based software output device for VDR"; - maintainers = [ maintainers.ck3d ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.ck3d ]; + license = lib.licenses.gpl2; inherit (vdr.meta) platforms; }; }; diff --git a/pkgs/applications/video/vokoscreen/default.nix b/pkgs/applications/video/vokoscreen/default.nix index b691dde96aab..108ada943c46 100644 --- a/pkgs/applications/video/vokoscreen/default.nix +++ b/pkgs/applications/video/vokoscreen/default.nix @@ -56,7 +56,7 @@ mkDerivation rec { substituteInPlace settings/QvkSettings.cpp --subst-var-by ffmpeg ${ffmpeg} ''; - meta = with lib; { + meta = { description = "Simple GUI screencast recorder, using ffmpeg"; homepage = "https://linuxecke.volkoh.de/vokoscreen/vokoscreen.html"; longDescription = '' @@ -64,9 +64,9 @@ mkDerivation rec { educational videos, live recordings of browser, installation, videoconferences, etc. ''; - license = licenses.gpl2Plus; - maintainers = [ maintainers.league ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.league ]; + platforms = lib.platforms.linux; mainProgram = "vokoscreen"; }; } diff --git a/pkgs/applications/virtualization/cri-o/default.nix b/pkgs/applications/virtualization/cri-o/default.nix index e0a7a9797b53..b8e7db17a79d 100644 --- a/pkgs/applications/virtualization/cri-o/default.nix +++ b/pkgs/applications/virtualization/cri-o/default.nix @@ -77,14 +77,14 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) cri-o; }; - meta = with lib; { + meta = { homepage = "https://cri-o.io"; description = '' Open Container Initiative-based implementation of the Kubernetes Container Runtime Interface ''; - license = licenses.asl20; - teams = [ teams.podman ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + teams = [ lib.teams.podman ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/virtualization/docker/buildx.nix b/pkgs/applications/virtualization/docker/buildx.nix index ebdfc38a2a5e..374f6afe34d7 100644 --- a/pkgs/applications/virtualization/docker/buildx.nix +++ b/pkgs/applications/virtualization/docker/buildx.nix @@ -35,12 +35,12 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Docker CLI plugin for extended build capabilities with BuildKit"; mainProgram = "docker-buildx"; homepage = "https://github.com/docker/buildx"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ivan-babrou developer-guy ]; diff --git a/pkgs/applications/virtualization/docker/compose.nix b/pkgs/applications/virtualization/docker/compose.nix index 0c7e2792a62d..e7bb654d8ba0 100644 --- a/pkgs/applications/virtualization/docker/compose.nix +++ b/pkgs/applications/virtualization/docker/compose.nix @@ -33,11 +33,11 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Docker CLI plugin to define and run multi-container applications with Docker"; mainProgram = "docker-compose"; homepage = "https://github.com/docker/compose"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/applications/virtualization/docker/gc.nix b/pkgs/applications/virtualization/docker/gc.nix index fed3249e3caa..3f75c0318e76 100644 --- a/pkgs/applications/virtualization/docker/gc.nix +++ b/pkgs/applications/virtualization/docker/gc.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { }" ''; - meta = with lib; { + meta = { description = "Docker garbage collection of containers and images"; mainProgram = "docker-gc"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/spotify/docker-gc"; - maintainers = with maintainers; [ offline ]; + maintainers = with lib.maintainers; [ offline ]; platforms = docker.meta.platforms; }; } diff --git a/pkgs/applications/virtualization/docker/sbom.nix b/pkgs/applications/virtualization/docker/sbom.nix index afd78bd165eb..edf83d20307a 100644 --- a/pkgs/applications/virtualization/docker/sbom.nix +++ b/pkgs/applications/virtualization/docker/sbom.nix @@ -35,11 +35,11 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Plugin for Docker CLI to support SBOM creation using Syft"; mainProgram = "docker-sbom"; homepage = "https://github.com/docker/sbom-cli-plugin"; - license = licenses.asl20; - maintainers = with maintainers; [ raboof ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raboof ]; }; } diff --git a/pkgs/applications/virtualization/krunvm/default.nix b/pkgs/applications/virtualization/krunvm/default.nix index 60ecd8864526..5133bc090e69 100644 --- a/pkgs/applications/virtualization/krunvm/default.nix +++ b/pkgs/applications/virtualization/krunvm/default.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ buildah ]} \ ''; - meta = with lib; { + meta = { description = "CLI-based utility for creating microVMs from OCI images"; homepage = "https://github.com/containers/krunvm"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; platforms = libkrun.meta.platforms; mainProgram = "krunvm"; }; diff --git a/pkgs/applications/virtualization/qemu/canokey-qemu.nix b/pkgs/applications/virtualization/qemu/canokey-qemu.nix index 34a9bccbeeb5..be8235b8dda4 100644 --- a/pkgs/applications/virtualization/qemu/canokey-qemu.nix +++ b/pkgs/applications/virtualization/qemu/canokey-qemu.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/canokeys/canokey-qemu"; description = "CanoKey QEMU Virt Card"; - license = licenses.asl20; - maintainers = with maintainers; [ oxalica ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ oxalica ]; # Uses a four‐year‐old patched vendored version of Mbed TLS for # cryptography that doesn’t build with CMake 4. Doesn’t build with # gurrent versions of `canokey-core`, either. No upstream diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix index 41eb546cff0d..c62b5cc27db1 100644 --- a/pkgs/applications/virtualization/qemu/default.nix +++ b/pkgs/applications/virtualization/qemu/default.nix @@ -430,14 +430,14 @@ stdenv.mkDerivation (finalAttrs: { requiredSystemFeatures = [ "big-parallel" ]; meta = - with lib; + { homepage = "https://www.qemu.org/"; description = "Generic and open source machine emulator and virtualizer"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qyliss ]; teams = lib.optionals xenSupport xen.meta.teams; - platforms = platforms.unix; + platforms = lib.platforms.unix; } # toolsOnly: Does not have qemu-kvm and there's no main support tool # userOnly: There's one qemu- for every architecture @@ -446,7 +446,7 @@ stdenv.mkDerivation (finalAttrs: { } # userOnly: https://qemu.readthedocs.io/en/v9.0.2/user/main.html // lib.optionalAttrs userOnly { - platforms = with platforms; (linux ++ freebsd ++ openbsd ++ netbsd); + platforms = with lib.platforms; (linux ++ freebsd ++ openbsd ++ netbsd); description = "QEMU User space emulator - launch executables compiled for one CPU on another CPU"; }; }) diff --git a/pkgs/applications/virtualization/qtemu/default.nix b/pkgs/applications/virtualization/qtemu/default.nix index 081075f89065..5a654a01f166 100644 --- a/pkgs/applications/virtualization/qtemu/default.nix +++ b/pkgs/applications/virtualization/qtemu/default.nix @@ -43,12 +43,12 @@ mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Qt-based front-end for QEMU emulator"; homepage = "https://qtemu.org"; - license = licenses.gpl2; - platforms = with platforms; linux; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "qtemu"; }; } diff --git a/pkgs/applications/virtualization/rust-hypervisor-firmware/default.nix b/pkgs/applications/virtualization/rust-hypervisor-firmware/default.nix index 7e78d05a29f4..5e97d14d7aca 100644 --- a/pkgs/applications/virtualization/rust-hypervisor-firmware/default.nix +++ b/pkgs/applications/virtualization/rust-hypervisor-firmware/default.nix @@ -55,11 +55,11 @@ rustPlatform.buildRustPackage rec { # Tests don't work for `no_std`. See https://os.phil-opp.com/testing/ doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/cloud-hypervisor/rust-hypervisor-firmware"; description = "Simple firmware that is designed to be launched from anything that supports loading ELF binaries and running them with the PVH booting standard"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ astro ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ astro ]; platforms = [ "x86_64-none" ]; mainProgram = "hypervisor-fw"; }; diff --git a/pkgs/applications/virtualization/sail-riscv/default.nix b/pkgs/applications/virtualization/sail-riscv/default.nix index 55b11418df81..2ff65f3c1585 100644 --- a/pkgs/applications/virtualization/sail-riscv/default.nix +++ b/pkgs/applications/virtualization/sail-riscv/default.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { # sail-riscv 0.8 fails to install without compressed_changelog ninjaFlags = [ "compressed_changelog" ]; - meta = with lib; { + meta = { homepage = "https://github.com/riscv/sail-riscv"; description = "Formal specification of the RISC-V architecture, written in Sail"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/applications/virtualization/virtualbox/extpack.nix b/pkgs/applications/virtualization/virtualbox/extpack.nix index 92d6f7e3366b..1727a4496478 100644 --- a/pkgs/applications/virtualization/virtualbox/extpack.nix +++ b/pkgs/applications/virtualization/virtualbox/extpack.nix @@ -19,11 +19,11 @@ fetchurl rec { assert (builtins.stringLength value) == 64; value; - meta = with lib; { + meta = { description = "Oracle Extension pack for VirtualBox"; - license = licenses.virtualbox-puel; + license = lib.licenses.virtualbox-puel; homepage = "https://www.virtualbox.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ friedrichaltheide ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/applications/window-managers/2bwm/default.nix b/pkgs/applications/window-managers/2bwm/default.nix index 4ed3054a42e7..8e8131a0062d 100644 --- a/pkgs/applications/window-managers/2bwm/default.nix +++ b/pkgs/applications/window-managers/2bwm/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { installPhase = "make install DESTDIR=$out PREFIX=\"\""; - meta = with lib; { + meta = { homepage = "https://github.com/venam/2bwm"; description = "Fast floating WM written over the XCB library and derived from mcwm"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/window-managers/awesome/default.nix b/pkgs/applications/window-managers/awesome/default.nix index c313f6ab2ba9..f4eb0614ade3 100644 --- a/pkgs/applications/window-managers/awesome/default.nix +++ b/pkgs/applications/window-managers/awesome/default.nix @@ -168,13 +168,13 @@ stdenv.mkDerivation rec { inherit lua; }; - meta = with lib; { + meta = { description = "Highly configurable, dynamic window manager for X"; homepage = "https://awesomewm.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lovek323 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/evilwm/default.nix b/pkgs/applications/window-managers/evilwm/default.nix index 782c80599bed..c238f048874b 100644 --- a/pkgs/applications/window-managers/evilwm/default.nix +++ b/pkgs/applications/window-managers/evilwm/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { # Allow users set their own list of patches inherit patches; - meta = with lib; { + meta = { homepage = "http://www.6809.org.uk/evilwm/"; description = "Minimalist window manager for the X Window System"; license = { @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { url = "http://www.6809.org.uk/evilwm/"; free = true; }; # like BSD/MIT, but Share-Alike'y; See README. - maintainers = with maintainers; [ amiloradovsky ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ amiloradovsky ]; + platforms = lib.platforms.all; mainProgram = "evilwm"; }; } diff --git a/pkgs/applications/window-managers/hyprwm/hypr/default.nix b/pkgs/applications/window-managers/hyprwm/hypr/default.nix index c8b3fcbfa762..2d0d0e8209ad 100644 --- a/pkgs/applications/window-managers/hyprwm/hypr/default.nix +++ b/pkgs/applications/window-managers/hyprwm/hypr/default.nix @@ -76,10 +76,10 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/Hypr --prefix PATH : ${lib.makeBinPath [ xmodmap ]} ''; - meta = with lib; { + meta = { inherit (finalAttrs.src.meta) homepage; description = "Tiling X11 window manager written in modern C++"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; inherit (libX11.meta) platforms; mainProgram = "Hypr"; diff --git a/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix b/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix index c8a28a000c27..9aaf7bd4ef79 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { --prefix PATH : ${lib.makeBinPath [ hyprland ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/loqusion/hyprshade"; description = "Hyprland shade configuration tool"; mainProgram = "hyprshade"; - license = licenses.mit; - maintainers = with maintainers; [ willswats ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ willswats ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/altlayout.nix b/pkgs/applications/window-managers/i3/altlayout.nix index d72e313df00e..4e324c8cb7ef 100644 --- a/pkgs/applications/window-managers/i3/altlayout.nix +++ b/pkgs/applications/window-managers/i3/altlayout.nix @@ -25,12 +25,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "i3altlayout" ]; - meta = with lib; { - maintainers = with maintainers; [ magnetophon ]; + meta = { + maintainers = with lib.maintainers; [ magnetophon ]; description = "Helps you handle more efficiently your screen real estate in i3wm by auto-splitting windows on their longest side"; mainProgram = "i3altlayout"; homepage = "https://github.com/deadc0de6/i3altlayout"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/auto-layout.nix b/pkgs/applications/window-managers/i3/auto-layout.nix index 8f3ea6206e9c..79fa99d77037 100644 --- a/pkgs/applications/window-managers/i3/auto-layout.nix +++ b/pkgs/applications/window-managers/i3/auto-layout.nix @@ -20,15 +20,15 @@ rustPlatform.buildRustPackage { # Currently no tests are implemented, so we avoid building the package twice doCheck = false; - meta = with lib; { + meta = { description = "Automatic, optimal tiling for i3wm"; mainProgram = "i3-auto-layout"; homepage = "https://github.com/chmln/i3-auto-layout"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mephistophiles perstark ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/blocks-gaps.nix b/pkgs/applications/window-managers/i3/blocks-gaps.nix index a49cd469d15f..347242655347 100644 --- a/pkgs/applications/window-managers/i3/blocks-gaps.nix +++ b/pkgs/applications/window-managers/i3/blocks-gaps.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ alsa-utils ]} ''; - meta = with lib; { + meta = { description = "Flexible scheduler for your i3bar blocks -- this is a fork to use with i3-gaps"; mainProgram = "i3blocks"; homepage = "https://github.com/Airblader/i3blocks-gaps"; - license = licenses.gpl3; - maintainers = with maintainers; [ carlsverre ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ carlsverre ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/blocks.nix b/pkgs/applications/window-managers/i3/blocks.nix index c6905ae0f199..a9ecb366e11a 100644 --- a/pkgs/applications/window-managers/i3/blocks.nix +++ b/pkgs/applications/window-managers/i3/blocks.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { description = "Flexible scheduler for your i3bar blocks"; mainProgram = "i3blocks"; homepage = "https://github.com/vivien/i3blocks"; - license = licenses.gpl3; - platforms = with platforms; freebsd ++ linux; + license = lib.licenses.gpl3; + platforms = with lib.platforms; freebsd ++ linux; }; } diff --git a/pkgs/applications/window-managers/i3/cycle-focus.nix b/pkgs/applications/window-managers/i3/cycle-focus.nix index 986c153e0869..8cbd41ceb1d1 100644 --- a/pkgs/applications/window-managers/i3/cycle-focus.nix +++ b/pkgs/applications/window-managers/i3/cycle-focus.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-6d3a9iaXKakbs7g/649nO39bh4Ka8jcBI/yJImTqoZs="; - meta = with lib; { + meta = { description = "Simple tool to cyclically switch between the windows on the active workspace"; mainProgram = "i3-cycle-focus"; homepage = "https://github.com/TheDoctor314/i3-cycle-focus"; - license = licenses.unlicense; - maintainers = with maintainers; [ GaetanLepage ]; - platforms = platforms.linux; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ GaetanLepage ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/easyfocus.nix b/pkgs/applications/window-managers/i3/easyfocus.nix index 257604baf2d6..0512ea66c73c 100644 --- a/pkgs/applications/window-managers/i3/easyfocus.nix +++ b/pkgs/applications/window-managers/i3/easyfocus.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { cp i3-easyfocus $out/bin ''; - meta = with lib; { + meta = { description = "Focus and select windows in i3"; mainProgram = "i3-easyfocus"; homepage = "https://github.com/cornerman/i3-easyfocus"; - maintainers = with maintainers; [ teto ]; - license = licenses.gpl3; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ teto ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/i3-ratiosplit.nix b/pkgs/applications/window-managers/i3/i3-ratiosplit.nix index d5a169fde27e..8ff464a70ce3 100644 --- a/pkgs/applications/window-managers/i3/i3-ratiosplit.nix +++ b/pkgs/applications/window-managers/i3/i3-ratiosplit.nix @@ -20,12 +20,12 @@ rustPlatform.buildRustPackage rec { # Currently no tests are implemented, so we avoid building the package twice doCheck = false; - meta = with lib; { + meta = { description = "Resize newly created windows"; mainProgram = "i3-ratiosplit"; homepage = "https://github.com/333fred/i3-ratiosplit"; - license = licenses.mit; - maintainers = with maintainers; [ svrana ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ svrana ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/i3-resurrect.nix b/pkgs/applications/window-managers/i3/i3-resurrect.nix index 4ed93f6c8866..1cfb8a616574 100644 --- a/pkgs/applications/window-managers/i3/i3-resurrect.nix +++ b/pkgs/applications/window-managers/i3/i3-resurrect.nix @@ -32,12 +32,12 @@ buildPythonApplication rec { ]; doCheck = false; # no tests - meta = with lib; { + meta = { homepage = "https://github.com/JonnyHaystack/i3-resurrect"; description = "Simple but flexible solution to saving and restoring i3 workspaces"; mainProgram = "i3-resurrect"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ magnetophon ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ magnetophon ]; }; } diff --git a/pkgs/applications/window-managers/i3/i3ipc-glib.nix b/pkgs/applications/window-managers/i3/i3ipc-glib.nix index 753cb3b4eb9e..9eaf306be52d 100644 --- a/pkgs/applications/window-managers/i3/i3ipc-glib.nix +++ b/pkgs/applications/window-managers/i3/i3ipc-glib.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { gtkdocize ''; - meta = with lib; { + meta = { description = "C interface library to i3wm"; homepage = "https://github.com/acrisci/i3ipc-glib"; - maintainers = with maintainers; [ teto ]; - license = licenses.gpl3; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ teto ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/kitti3.nix b/pkgs/applications/window-managers/i3/kitti3.nix index 1c18ee4afa3d..846e1847ecf9 100644 --- a/pkgs/applications/window-managers/i3/kitti3.nix +++ b/pkgs/applications/window-managers/i3/kitti3.nix @@ -32,11 +32,11 @@ buildPythonApplication { i3ipc ]; - meta = with lib; { + meta = { homepage = "https://github.com/LandingEllipse/kitti3"; description = "Kitty drop-down service for sway & i3wm"; mainProgram = "kitti3"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/applications/window-managers/i3/layout-manager.nix b/pkgs/applications/window-managers/i3/layout-manager.nix index d019dd8b759e..a52de5e6bb54 100644 --- a/pkgs/applications/window-managers/i3/layout-manager.nix +++ b/pkgs/applications/window-managers/i3/layout-manager.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/klaxalk/i3-layout-manager"; description = "Saving, loading and managing layouts for i3wm"; mainProgram = "layout_manager"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/window-managers/i3/lock-blur.nix b/pkgs/applications/window-managers/i3/lock-blur.nix index 53d5e178f185..d0890f0b6a7c 100644 --- a/pkgs/applications/window-managers/i3/lock-blur.nix +++ b/pkgs/applications/window-managers/i3/lock-blur.nix @@ -30,12 +30,12 @@ i3lock-color.overrideAttrs (oldAttrs: rec { buildInputs = oldAttrs.buildInputs ++ [ libGL ]; - meta = with lib; { + meta = { description = "Improved screenlocker based upon XCB and PAM with background blurring filter"; homepage = "https://github.com/karulont/i3lock-blur/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/i3lock-blur.x86_64-darwin }; }) diff --git a/pkgs/applications/window-managers/i3/lock-color.nix b/pkgs/applications/window-managers/i3/lock-color.nix index c9cbe06ba560..bd05c1eb9326 100644 --- a/pkgs/applications/window-managers/i3/lock-color.nix +++ b/pkgs/applications/window-managers/i3/lock-color.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { mv $out/share/man/man1/i3lock.1 $out/share/man/man1/i3lock-color.1 sed -i 's/\(^\|\s\|"\)i3lock\(\s\|$\)/\1i3lock-color\2/g' $out/share/man/man1/i3lock-color.1 ''; - meta = with lib; { + meta = { description = "Simple screen locker like slock, enhanced version with extra configuration options"; longDescription = '' Simple screen locker. After locking, a colored background (default: white) or @@ -87,11 +87,11 @@ stdenv.mkDerivation rec { - keyboard-layout ''; homepage = "https://github.com/PandorasFox/i3lock-color"; - maintainers = with maintainers; [ malyn ]; + maintainers = with lib.maintainers; [ malyn ]; mainProgram = "i3lock-color"; - license = licenses.bsd3; + license = lib.licenses.bsd3; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/applications/window-managers/i3/lock-fancy-rapid.nix b/pkgs/applications/window-managers/i3/lock-fancy-rapid.nix index b5ae5c720d7a..a1f6ecd82cb7 100644 --- a/pkgs/applications/window-managers/i3/lock-fancy-rapid.nix +++ b/pkgs/applications/window-managers/i3/lock-fancy-rapid.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Faster implementation of i3lock-fancy"; homepage = "https://github.com/yvbbrjdr/i3lock-fancy-rapid"; - maintainers = with maintainers; [ nickhu ]; + maintainers = with lib.maintainers; [ nickhu ]; mainProgram = "i3lock-fancy-rapid"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/lock-fancy.nix b/pkgs/applications/window-managers/i3/lock-fancy.nix index 510e57622a46..a84feedfe2a7 100644 --- a/pkgs/applications/window-managers/i3/lock-fancy.nix +++ b/pkgs/applications/window-managers/i3/lock-fancy.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { description = "Bash script that takes a screenshot of the desktop, blurs the background and adds a lock icon and text"; homepage = "https://github.com/meskarune/i3lock-fancy"; - maintainers = [ maintainers.reedrw ]; + maintainers = [ lib.maintainers.reedrw ]; mainProgram = "i3lock-fancy"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix index 80598af4659b..b082a162e833 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { xorg.xcbutil ]; - meta = with lib; { + meta = { description = "Simple screen locker like slock"; longDescription = '' Simple screen locker. After locking, a colored background (default: white) or @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { for every keystroke. After entering your password, the screen is unlocked again. ''; homepage = "https://i3wm.org/i3lock/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ malyn ]; mainProgram = "i3lock"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/window-managers/i3/rounded.nix b/pkgs/applications/window-managers/i3/rounded.nix index ab647aad5192..d8acbc93889b 100644 --- a/pkgs/applications/window-managers/i3/rounded.nix +++ b/pkgs/applications/window-managers/i3/rounded.nix @@ -21,11 +21,11 @@ i3.overrideAttrs (oldAttrs: { # Some tests are failing. doCheck = false; - meta = with lib; { + meta = { description = "Fork of i3-gaps that adds rounding to window corners"; homepage = "https://github.com/LinoBigatti/i3-rounded"; - maintainers = with maintainers; [ marsupialgutz ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ marsupialgutz ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/window-managers/i3/swallow.nix b/pkgs/applications/window-managers/i3/swallow.nix index 1c73d6f5f773..339271efc0c4 100644 --- a/pkgs/applications/window-managers/i3/swallow.nix +++ b/pkgs/applications/window-managers/i3/swallow.nix @@ -34,11 +34,11 @@ buildPythonApplication { # No tests available doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/jamesofarrell/i3-swallow"; description = "Swallow a terminal window in i3wm"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "swallow"; maintainers = [ ]; }; diff --git a/pkgs/applications/window-managers/i3/wk-switch.nix b/pkgs/applications/window-managers/i3/wk-switch.nix index aa33e46134be..f5fadf35bca4 100644 --- a/pkgs/applications/window-managers/i3/wk-switch.nix +++ b/pkgs/applications/window-managers/i3/wk-switch.nix @@ -26,12 +26,12 @@ python3Packages.buildPythonApplication { cp i3-wk-switch.py "$out/bin/i3-wk-switch" ''; - meta = with lib; { + meta = { description = "XMonad-like workspace switching for i3 and sway"; mainProgram = "i3-wk-switch"; - maintainers = with maintainers; [ synthetica ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = with lib.maintainers; [ synthetica ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; homepage = "https://travisf.net/i3-wk-switcher"; }; } diff --git a/pkgs/applications/window-managers/i3/wmfocus.nix b/pkgs/applications/window-managers/i3/wmfocus.nix index 3978f6b1e538..cb7597bba41e 100644 --- a/pkgs/applications/window-managers/i3/wmfocus.nix +++ b/pkgs/applications/window-managers/i3/wmfocus.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { # users. buildFeatures = [ "i3" ]; - meta = with lib; { + meta = { description = "Visually focus windows by label"; mainProgram = "wmfocus"; homepage = "https://github.com/svenstaro/wmfocus"; - license = licenses.mit; - maintainers = with maintainers; [ synthetica ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ synthetica ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/i3/workstyle.nix b/pkgs/applications/window-managers/i3/workstyle.nix index a4191d1bcff2..bd519d92f5b1 100644 --- a/pkgs/applications/window-managers/i3/workstyle.nix +++ b/pkgs/applications/window-managers/i3/workstyle.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage { doCheck = false; # No tests - meta = with lib; { + meta = { description = "Sway workspaces with style"; homepage = "https://github.com/pierrechevalier83/workstyle"; - license = licenses.mit; - maintainers = with maintainers; [ FlorianFranzen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ FlorianFranzen ]; mainProgram = "workstyle"; }; } diff --git a/pkgs/applications/window-managers/i3/wsr.nix b/pkgs/applications/window-managers/i3/wsr.nix index edbb7c1537ef..0a8dfd4949ce 100644 --- a/pkgs/applications/window-managers/i3/wsr.nix +++ b/pkgs/applications/window-managers/i3/wsr.nix @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec { # has not tests doCheck = false; - meta = with lib; { + meta = { mainProgram = "i3wsr"; description = "Automatically change i3 workspace names based on their contents"; longDescription = '' @@ -34,7 +34,7 @@ rustPlatform.buildRustPackage rec { window property for each window in a workspace. ''; homepage = "https://github.com/roosta/i3wsr"; - license = licenses.mit; - maintainers = [ maintainers.sebbadk ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sebbadk ]; }; } diff --git a/pkgs/applications/window-managers/ion-3/default.nix b/pkgs/applications/window-managers/ion-3/default.nix index 451e243b163b..195461b39beb 100644 --- a/pkgs/applications/window-managers/ion-3/default.nix +++ b/pkgs/applications/window-managers/ion-3/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=\${out}" ]; - meta = with lib; { + meta = { description = "Tiling tabbed window manager designed with keyboard users in mind"; homepage = "https://tuomov.iki.fi/software/ion/"; - platforms = with platforms; linux; - license = licenses.lgpl21; + platforms = with lib.platforms; linux; + license = lib.licenses.lgpl21; maintainers = [ ]; }; } diff --git a/pkgs/applications/window-managers/jwm/jwm-settings-manager.nix b/pkgs/applications/window-managers/jwm/jwm-settings-manager.nix index be1493f60514..8b53f1711cfc 100644 --- a/pkgs/applications/window-managers/jwm/jwm-settings-manager.nix +++ b/pkgs/applications/window-managers/jwm/jwm-settings-manager.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { --replace "/var/empty" "/usr" ''; - meta = with lib; { + meta = { description = "Full configuration manager for JWM"; homepage = "https://joewing.net/projects/jwm"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/applications/window-managers/lemonbar/default.nix b/pkgs/applications/window-managers/lemonbar/default.nix index f157eee58114..3aa0b1dbdfe4 100644 --- a/pkgs/applications/window-managers/lemonbar/default.nix +++ b/pkgs/applications/window-managers/lemonbar/default.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = with lib; { + meta = { description = "Lightweight xcb based bar"; homepage = "https://github.com/LemonBoy/bar"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ meisternu moni ]; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "lemonbar"; }; } diff --git a/pkgs/applications/window-managers/lemonbar/xft.nix b/pkgs/applications/window-managers/lemonbar/xft.nix index 109d200a29b1..d2fb54a330ea 100644 --- a/pkgs/applications/window-managers/lemonbar/xft.nix +++ b/pkgs/applications/window-managers/lemonbar/xft.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { "PREFIX=" ]; - meta = with lib; { + meta = { description = "Lightweight xcb based bar with XFT-support"; mainProgram = "lemonbar"; homepage = "https://github.com/drscream/lemonbar-xft"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/applications/window-managers/phosh/default.nix b/pkgs/applications/window-managers/phosh/default.nix index f5c6aa078757..cb482e0b577f 100644 --- a/pkgs/applications/window-managers/phosh/default.nix +++ b/pkgs/applications/window-managers/phosh/default.nix @@ -156,16 +156,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Pure Wayland shell prototype for GNOME on mobile devices"; homepage = "https://gitlab.gnome.org/World/Phosh/phosh"; changelog = "https://gitlab.gnome.org/World/Phosh/phosh/-/blob/v${finalAttrs.version}/debian/changelog"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ zhaofengli armelclo ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "phosh-session"; }; }) diff --git a/pkgs/applications/window-managers/tabbed/default.nix b/pkgs/applications/window-managers/tabbed/default.nix index d306f0bba2b7..56ffaa458cf4 100644 --- a/pkgs/applications/window-managers/tabbed/default.nix +++ b/pkgs/applications/window-managers/tabbed/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://tools.suckless.org/tabbed"; description = "Simple generic tabbed fronted to xembed aware applications"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/window-managers/xmonad/log-applet/default.nix b/pkgs/applications/window-managers/xmonad/log-applet/default.nix index d9cd26569f22..069d5e9a9604 100644 --- a/pkgs/applications/window-managers/xmonad/log-applet/default.nix +++ b/pkgs/applications/window-managers/xmonad/log-applet/default.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { # --define-variable=prefix=$prefix PKG_CONFIG_LIBXFCE4PANEL_1_0_LIBDIR = "$(out)/lib"; - meta = with lib; { + meta = { homepage = "https://github.com/kalj/xmonad-log-applet"; - license = licenses.bsd3; + license = lib.licenses.bsd3; broken = desktopSupport == "gnomeflashback" || desktopSupport == "xfce4"; description = "Applet that will display XMonad log information (${desktopSupport} version)"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/window-managers/xmonad/xmonadctl.nix b/pkgs/applications/window-managers/xmonad/xmonadctl.nix index e28e6da55d06..f7a2f045fb3b 100644 --- a/pkgs/applications/window-managers/xmonad/xmonadctl.nix +++ b/pkgs/applications/window-managers/xmonad/xmonadctl.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { - platforms = platforms.unix; + meta = { + platforms = lib.platforms.unix; description = "Send commands to a running instance of xmonad"; mainProgram = "xmonadctl"; homepage = "https://github.com/xmonad/xmonad-contrib"; - license = licenses.bsd3; - maintainers = [ maintainers.ajgrf ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ajgrf ]; }; } diff --git a/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix b/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix index 99903f3e4ad6..194e77a67a43 100644 --- a/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix +++ b/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation { ]; buildInputs = [ glib ]; - meta = with lib; { + meta = { description = "Setup mount/user namespace for FHS emulation"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/build-support/docker/nix-prefetch-docker.nix b/pkgs/build-support/docker/nix-prefetch-docker.nix index 389e3be8efe5..1a893e47e0f6 100644 --- a/pkgs/build-support/docker/nix-prefetch-docker.nix +++ b/pkgs/build-support/docker/nix-prefetch-docker.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Script used to obtain source hashes for dockerTools.pullImage"; mainProgram = "nix-prefetch-docker"; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/build-support/node/fetch-npm-deps/default.nix b/pkgs/build-support/node/fetch-npm-deps/default.nix index 997de7becd4a..d5c67dbca65e 100644 --- a/pkgs/build-support/node/fetch-npm-deps/default.nix +++ b/pkgs/build-support/node/fetch-npm-deps/default.nix @@ -197,11 +197,11 @@ }; }; - meta = with lib; { + meta = { description = "Prefetch dependencies from npm (for use with `fetchNpmDeps`)"; mainProgram = "prefetch-npm-deps"; - maintainers = with maintainers; [ winter ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ winter ]; + license = lib.licenses.mit; }; }; diff --git a/pkgs/build-support/replace-secret/replace-secret.nix b/pkgs/build-support/replace-secret/replace-secret.nix index 7e661a012bc3..f9e4b860f1c8 100644 --- a/pkgs/build-support/replace-secret/replace-secret.nix +++ b/pkgs/build-support/replace-secret/replace-secret.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation { $out/bin/replace-secret "and this" <(echo "b") short_test diff ${./test/expected_short_output} short_test ''; - meta = with lib; { - platforms = platforms.all; - maintainers = with maintainers; [ talyz ]; - license = licenses.mit; + meta = { + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.mit; description = "Replace a string in one file with a secret from a second file"; longDescription = '' Replace a string in one file with a secret from a second file. diff --git a/pkgs/build-support/setup-hooks/patch-rc-path-hooks/default.nix b/pkgs/build-support/setup-hooks/patch-rc-path-hooks/default.nix index e07cc15cacd0..298101976ee2 100644 --- a/pkgs/build-support/setup-hooks/patch-rc-path-hooks/default.nix +++ b/pkgs/build-support/setup-hooks/patch-rc-path-hooks/default.nix @@ -10,9 +10,9 @@ in { patchRcPathBash = makeSetupHook { name = "patch-rc-path-bash"; - meta = with lib; { + meta = { description = "Setup-hook to inject source-time PATH prefix to a Bash/Ksh/Zsh script"; - maintainers = with maintainers; [ ShamrockLee ]; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; passthru.tests = { inherit (tests) test-bash; @@ -23,9 +23,9 @@ in substitutions = { sed = "${gnused}/bin/sed"; }; - meta = with lib; { + meta = { description = "Setup-hook to inject source-time PATH prefix to a Csh script"; - maintainers = with maintainers; [ ShamrockLee ]; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; passthru.tests = { inherit (tests) test-csh; @@ -33,9 +33,9 @@ in } ./patch-rc-path-csh.sh; patchRcPathFish = makeSetupHook { name = "patch-rc-path-fish"; - meta = with lib; { + meta = { description = "Setup-hook to inject source-time PATH prefix to a Fish script"; - maintainers = with maintainers; [ ShamrockLee ]; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; passthru.tests = { inherit (tests) test-fish; @@ -46,9 +46,9 @@ in substitutions = { sed = "${gnused}/bin/sed"; }; - meta = with lib; { + meta = { description = "Setup-hook to inject source-time PATH prefix to a POSIX shell script"; - maintainers = with maintainers; [ ShamrockLee ]; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; passthru.tests = { inherit (tests) test-posix; diff --git a/pkgs/by-name/_9/_90secondportraits/package.nix b/pkgs/by-name/_9/_90secondportraits/package.nix index d66541a0ebfa..557871e714e4 100644 --- a/pkgs/by-name/_9/_90secondportraits/package.nix +++ b/pkgs/by-name/_9/_90secondportraits/package.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Silly speed painting game"; mainProgram = "90secondportraits"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ zlib cc-by-sa-40 cc-by-sa-30 # vendored diff --git a/pkgs/by-name/ad/adb-sync/package.nix b/pkgs/by-name/ad/adb-sync/package.nix index 2f96ee0c5f45..be283bd55817 100644 --- a/pkgs/by-name/ad/adb-sync/package.nix +++ b/pkgs/by-name/ad/adb-sync/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to synchronise files between a PC and an Android devices using ADB (Android Debug Bridge)"; homepage = "https://github.com/google/adb-sync"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; hydraPlatforms = [ ]; - maintainers = with maintainers; [ scolobb ]; + maintainers = with lib.maintainers; [ scolobb ]; }; } diff --git a/pkgs/by-name/ad/adementary-theme/package.nix b/pkgs/by-name/ad/adementary-theme/package.nix index f3602d778131..688e37965e47 100644 --- a/pkgs/by-name/ad/adementary-theme/package.nix +++ b/pkgs/by-name/ad/adementary-theme/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { ./install.sh -d $out/share/themes ''; - meta = with lib; { + meta = { description = "Adwaita-based GTK theme with design influence from elementary OS and Vertex GTK theme"; homepage = "https://github.com/hrdwrrsk/adementary-theme"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ad/adenum/package.nix b/pkgs/by-name/ad/adenum/package.nix index 64ecceca93b5..92d93f660d7d 100644 --- a/pkgs/by-name/ad/adenum/package.nix +++ b/pkgs/by-name/ad/adenum/package.nix @@ -42,11 +42,11 @@ python3.pkgs.buildPythonApplication { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Tool to find misconfiguration through LDAP"; mainProgram = "adenum"; homepage = "https://github.com/SecuProject/ADenum"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ad/adguardian/package.nix b/pkgs/by-name/ad/adguardian/package.nix index 803b80a15027..bcc15b3a28d4 100644 --- a/pkgs/by-name/ad/adguardian/package.nix +++ b/pkgs/by-name/ad/adguardian/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-yPDysaslL/7N60eZ/hqZl5ZXIsof/pvlgHYfW1mIWtI="; - meta = with lib; { + meta = { description = "Terminal-based, real-time traffic monitoring and statistics for your AdGuard Home instance"; mainProgram = "adguardian"; homepage = "https://github.com/Lissy93/AdGuardian-Term"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/by-name/ad/adidnsdump/package.nix b/pkgs/by-name/ad/adidnsdump/package.nix index b935efd8552d..52ce80b049d6 100644 --- a/pkgs/by-name/ad/adidnsdump/package.nix +++ b/pkgs/by-name/ad/adidnsdump/package.nix @@ -25,12 +25,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "adidnsdump" ]; - meta = with lib; { + meta = { description = "Active Directory Integrated DNS dumping by any authenticated user"; homepage = "https://github.com/dirkjanm/adidnsdump"; changelog = "https://github.com/dirkjanm/adidnsdump/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "adidnsdump"; }; } diff --git a/pkgs/by-name/ad/adif-multitool/package.nix b/pkgs/by-name/ad/adif-multitool/package.nix index b2e8b0d65924..58ee6fa78ec9 100644 --- a/pkgs/by-name/ad/adif-multitool/package.nix +++ b/pkgs/by-name/ad/adif-multitool/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { hash = "sha256-qeAH8UTyEZn8As3wTjluONpjeT/5l9zicN5+8uwnbLo="; }; - meta = with lib; { + meta = { description = "Command-line program for working with ham logfiles"; homepage = "https://github.com/flwyd/adif-multitool"; - license = licenses.asl20; - maintainers = with maintainers; [ mafo ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mafo ]; mainProgram = "adifmt"; }; } diff --git a/pkgs/by-name/ad/adl/package.nix b/pkgs/by-name/ad/adl/package.nix index 220f092313a4..1f4559144f4f 100644 --- a/pkgs/by-name/ad/adl/package.nix +++ b/pkgs/by-name/ad/adl/package.nix @@ -44,12 +44,12 @@ stdenvNoCC.mkDerivation rec { --prefix PATH : ${lib.makeBinPath buildInputs} ''; - meta = with lib; { + meta = { homepage = "https://github.com/RaitaroH/adl"; description = "Popcorn anime scraper/downloader + trackma wrapper"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ weathercold ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ weathercold ]; mainProgram = "adl"; }; } diff --git a/pkgs/by-name/ad/adminerevo/package.nix b/pkgs/by-name/ad/adminerevo/package.nix index 5a0fb733ea77..ea8d1a939637 100644 --- a/pkgs/by-name/ad/adminerevo/package.nix +++ b/pkgs/by-name/ad/adminerevo/package.nix @@ -62,14 +62,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Database management in a single PHP file"; homepage = "https://docs.adminerevo.org"; - license = with licenses; [ + license = with lib.licenses; [ asl20 gpl2Only ]; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ad/adolc/package.nix b/pkgs/by-name/ad/adolc/package.nix index d74245b104e7..ee3845ea882b 100644 --- a/pkgs/by-name/ad/adolc/package.nix +++ b/pkgs/by-name/ad/adolc/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = lib.optional stdenv.cc.isClang llvmPackages.openmp; - meta = with lib; { + meta = { description = "Automatic Differentiation of C/C++"; homepage = "https://github.com/coin-or/ADOL-C"; - maintainers = [ maintainers.bzizou ]; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.bzizou ]; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/ad/adslib/package.nix b/pkgs/by-name/ad/adslib/package.nix index aa039a0c99da..8c7849ed6344 100644 --- a/pkgs/by-name/ad/adslib/package.nix +++ b/pkgs/by-name/ad/adslib/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation { cp adslib.so $out/lib/adslib.so ''; - meta = with lib; { + meta = { description = "Beckhoff protocol to communicate with TwinCAT devices"; homepage = "https://github.com/stlehmann/ADS"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/by-name/ad/adwaita-icon-theme-legacy/package.nix b/pkgs/by-name/ad/adwaita-icon-theme-legacy/package.nix index e798acf99c7b..5fd67e73632a 100644 --- a/pkgs/by-name/ad/adwaita-icon-theme-legacy/package.nix +++ b/pkgs/by-name/ad/adwaita-icon-theme-legacy/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Fullcolor icon theme providing fallback for legacy apps"; homepage = "https://gitlab.gnome.org/GNOME/adwaita-icon-theme-legacy"; changelog = "https://gitlab.gnome.org/GNOME/adwaita-icon-theme-legacy/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.cc-by-sa-30; - teams = [ teams.gnome ]; - platforms = platforms.all; + license = lib.licenses.cc-by-sa-30; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ae/aemu/package.nix b/pkgs/by-name/ae/aemu/package.nix index 910e5acae139..1db8ebbad7b3 100644 --- a/pkgs/by-name/ae/aemu/package.nix +++ b/pkgs/by-name/ae/aemu/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation (finalAttrs: { # "-DENABLE_VKCEREAL_TESTS=OFF" ]; - meta = with lib; { + meta = { homepage = "https://android.googlesource.com/platform/hardware/google/aemu"; description = "Android emulation utilities library"; - maintainers = with maintainers; [ qyliss ]; + maintainers = with lib.maintainers; [ qyliss ]; # The BSD license comes from host-common/VpxFrameParser.cpp, which # incorporates some code from libvpx, which uses the 3-clause BSD license. - license = with licenses; [ + license = with lib.licenses; [ asl20 mit bsd3 diff --git a/pkgs/by-name/ae/aeolus-stops/package.nix b/pkgs/by-name/ae/aeolus-stops/package.nix index a72975b3deb7..1746b1a80137 100644 --- a/pkgs/by-name/ae/aeolus-stops/package.nix +++ b/pkgs/by-name/ae/aeolus-stops/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Aeolus synthesizer instrument definitions"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/index.html"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nico202 ]; }; diff --git a/pkgs/by-name/ae/aeron-cpp/package.nix b/pkgs/by-name/ae/aeron-cpp/package.nix index 5b084c51c9a6..2260544631f1 100644 --- a/pkgs/by-name/ae/aeron-cpp/package.nix +++ b/pkgs/by-name/ae/aeron-cpp/package.nix @@ -125,15 +125,15 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Aeron Messaging C++ Library"; homepage = "https://aeron.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "aeronmd"; - maintainers = [ maintainers.vaci ]; + maintainers = [ lib.maintainers.vaci ]; sourceProvenance = [ - sourceTypes.fromSource - sourceTypes.binaryBytecode + lib.sourceTypes.fromSource + lib.sourceTypes.binaryBytecode ]; }; } diff --git a/pkgs/by-name/ae/aeron/package.nix b/pkgs/by-name/ae/aeron/package.nix index c8234842d170..43d8756ad455 100644 --- a/pkgs/by-name/ae/aeron/package.nix +++ b/pkgs/by-name/ae/aeron/package.nix @@ -721,14 +721,14 @@ stdenv.mkDerivation { jar = aeronAll.jar; }; - meta = with lib; { + meta = { description = "Low-latency messaging library"; homepage = "https://aeron.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "${pname}-media-driver"; - maintainers = [ maintainers.vaci ]; + maintainers = [ lib.maintainers.vaci ]; sourceProvenance = [ - sourceTypes.binaryBytecode + lib.sourceTypes.binaryBytecode ]; }; } diff --git a/pkgs/by-name/ae/aescrypt/package.nix b/pkgs/by-name/ae/aescrypt/package.nix index 14cbc18efac5..a93e73ddf10b 100644 --- a/pkgs/by-name/ae/aescrypt/package.nix +++ b/pkgs/by-name/ae/aescrypt/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation rec { buildInputs = [ libiconv ]; - meta = with lib; { + meta = { description = "Encrypt files with Advanced Encryption Standard (AES)"; homepage = "https://www.aescrypt.com/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ lovek323 qknight ]; platforms = lib.platforms.all; - hydraPlatforms = with platforms; unix; + hydraPlatforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/ae/aesfix/package.nix b/pkgs/by-name/ae/aesfix/package.nix index 4a48a5c553e5..b4df2a8a1e26 100644 --- a/pkgs/by-name/ae/aesfix/package.nix +++ b/pkgs/by-name/ae/aesfix/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Correct bit errors in an AES key schedules"; mainProgram = "aesfix"; homepage = "https://citp.princeton.edu/our-work/memory/"; - maintainers = with maintainers; [ fedx-sudo ]; + maintainers = with lib.maintainers; [ fedx-sudo ]; }; } diff --git a/pkgs/by-name/ae/aeskeyfind/package.nix b/pkgs/by-name/ae/aeskeyfind/package.nix index 5a472b82e7b6..0d663322a9cb 100644 --- a/pkgs/by-name/ae/aeskeyfind/package.nix +++ b/pkgs/by-name/ae/aeskeyfind/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Locates 128-bit and 256-bit AES keys in a captured memory image"; mainProgram = "aeskeyfind"; homepage = "https://citp.princeton.edu/our-work/memory/"; - license = licenses.bsd3; - maintainers = with maintainers; [ fedx-sudo ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fedx-sudo ]; }; } diff --git a/pkgs/by-name/ae/aether-lv2/package.nix b/pkgs/by-name/ae/aether-lv2/package.nix index b2b998e778c1..3bc7e3efba04 100644 --- a/pkgs/by-name/ae/aether-lv2/package.nix +++ b/pkgs/by-name/ae/aether-lv2/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { cp -r aether.lv2 $out/lib/lv2 ''; - meta = with lib; { + meta = { homepage = "https://dougal-s.github.io/Aether/"; description = "Algorithmic reverb LV2 based on Cloudseed"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/af/afterglow-cursors-recolored/package.nix b/pkgs/by-name/af/afterglow-cursors-recolored/package.nix index 94f8460645fe..733c3df8c963 100644 --- a/pkgs/by-name/af/afterglow-cursors-recolored/package.nix +++ b/pkgs/by-name/af/afterglow-cursors-recolored/package.nix @@ -133,11 +133,11 @@ lib.checkListOfEnum "${pname}: theme variants" availableThemeVariants themeVaria runHook postInstall ''; - meta = with lib; { + meta = { description = "Recoloring of the Afterglow Cursors x-cursor theme"; homepage = "https://github.com/TeddyBearKilla/Afterglow-Cursors-Recolored"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.all; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/ag/agave/package.nix b/pkgs/by-name/ag/agave/package.nix index e0fb5f0e508b..1a55a5d39e1f 100644 --- a/pkgs/by-name/ag/agave/package.nix +++ b/pkgs/by-name/ag/agave/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { install -D $srcs -t $out/share/fonts/truetype/ ''; - meta = with lib; { + meta = { description = "TrueType monospaced typeface designed for X environments"; homepage = "https://b.agaric.net/page/agave"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ag/agdsn-zsh-config/package.nix b/pkgs/by-name/ag/agdsn-zsh-config/package.nix index f7ee3274653b..0d71d6e560a2 100644 --- a/pkgs/by-name/ag/agdsn-zsh-config/package.nix +++ b/pkgs/by-name/ag/agdsn-zsh-config/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Modified version of the Grml Zsh configuration specialised for the needs of system administration"; homepage = "https://github.com/agdsn/agdsn-zsh-config"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ fugi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fugi ]; }; } diff --git a/pkgs/by-name/ag/age-plugin-1p/package.nix b/pkgs/by-name/ag/age-plugin-1p/package.nix index 453c3752cbdf..5f9519fafadd 100644 --- a/pkgs/by-name/ag/age-plugin-1p/package.nix +++ b/pkgs/by-name/ag/age-plugin-1p/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Use SSH keys from 1Password with age"; mainProgram = "age-plugin-1p"; homepage = "https://github.com/Enzime/age-plugin-1p"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ Enzime ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ Enzime ]; }; } diff --git a/pkgs/by-name/ag/age-plugin-fido2-hmac/package.nix b/pkgs/by-name/ag/age-plugin-fido2-hmac/package.nix index 979f359e6654..c8e067588290 100644 --- a/pkgs/by-name/ag/age-plugin-fido2-hmac/package.nix +++ b/pkgs/by-name/ag/age-plugin-fido2-hmac/package.nix @@ -45,11 +45,11 @@ buildGoModule rec { postConfigure = lib.optional stdenv.hostPlatform.isDarwin darwin_configure; - meta = with lib; { + meta = { description = "Age plugin to encrypt files with fido2 tokens using the hmac-secret extension and non-discoverable credentials"; homepage = "https://github.com/olastor/age-plugin-fido2-hmac/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "age-plugin-fido2-hmac"; }; } diff --git a/pkgs/by-name/ag/age-plugin-ledger/package.nix b/pkgs/by-name/ag/age-plugin-ledger/package.nix index 1afa912b7135..117028549f56 100644 --- a/pkgs/by-name/ag/age-plugin-ledger/package.nix +++ b/pkgs/by-name/ag/age-plugin-ledger/package.nix @@ -34,14 +34,14 @@ rustPlatform.buildRustPackage rec { rage ]; - meta = with lib; { + meta = { description = "Ledger Nano plugin for age"; mainProgram = "age-plugin-ledger"; homepage = "https://github.com/Ledger-Donjon/age-plugin-ledger"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ erdnaxe ]; + maintainers = with lib.maintainers; [ erdnaxe ]; }; } diff --git a/pkgs/by-name/ag/age-plugin-tpm/package.nix b/pkgs/by-name/ag/age-plugin-tpm/package.nix index 73437e75bd37..244fdc44913a 100644 --- a/pkgs/by-name/ag/age-plugin-tpm/package.nix +++ b/pkgs/by-name/ag/age-plugin-tpm/package.nix @@ -43,13 +43,13 @@ buildGoModule rec { decrypt = nixosTests.age-plugin-tpm-decrypt; }; - meta = with lib; { + meta = { description = "TPM 2.0 plugin for age (This software is experimental, use it at your own risk)"; mainProgram = "age-plugin-tpm"; homepage = "https://github.com/Foxboron/age-plugin-tpm"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kranzes sgo ]; diff --git a/pkgs/by-name/ag/age-plugin-yubikey/package.nix b/pkgs/by-name/ag/age-plugin-yubikey/package.nix index 9a2d46fcc282..213f613fe615 100644 --- a/pkgs/by-name/ag/age-plugin-yubikey/package.nix +++ b/pkgs/by-name/ag/age-plugin-yubikey/package.nix @@ -30,16 +30,16 @@ rustPlatform.buildRustPackage rec { ] ++ lib.optionals stdenv.hostPlatform.isLinux [ pcsclite ]; - meta = with lib; { + meta = { description = "YubiKey plugin for age"; mainProgram = "age-plugin-yubikey"; homepage = "https://github.com/str4d/age-plugin-yubikey"; changelog = "https://github.com/str4d/age-plugin-yubikey/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kranzes vtuan10 adamcstephens diff --git a/pkgs/by-name/ag/age/package.nix b/pkgs/by-name/ag/age/package.nix index 2a36745377b6..7313555ba269 100644 --- a/pkgs/by-name/ag/age/package.nix +++ b/pkgs/by-name/ag/age/package.nix @@ -82,12 +82,12 @@ buildGoModule (final: { --prefix PATH : "${lib.makeBinPath (filter final.passthru.plugins)}" ''; - meta = with lib; { + meta = { changelog = "https://github.com/FiloSottile/age/releases/tag/v${final.version}"; homepage = "https://age-encryption.org/"; description = "Modern encryption tool with small explicit keys"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "age"; - maintainers = with maintainers; [ tazjin ]; + maintainers = with lib.maintainers; [ tazjin ]; }; }) diff --git a/pkgs/by-name/ag/agedu/package.nix b/pkgs/by-name/ag/agedu/package.nix index 24509c5e0030..c839333b2186 100644 --- a/pkgs/by-name/ag/agedu/package.nix +++ b/pkgs/by-name/ag/agedu/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { halibut ]; - meta = with lib; { + meta = { description = "Unix utility for tracking down wasted disk space"; longDescription = '' Most Unix file systems, in their default mode, helpfully record when a @@ -39,9 +39,9 @@ stdenv.mkDerivation { you haven't used them since a long time. ''; homepage = "https://www.chiark.greenend.org.uk/~sgtatham/agedu/"; - license = licenses.mit; - maintainers = with maintainers; [ symphorien ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ symphorien ]; + platforms = lib.platforms.unix; mainProgram = "agedu"; }; } diff --git a/pkgs/by-name/ag/agenda/package.nix b/pkgs/by-name/ag/agenda/package.nix index 4fd92b8e78d3..3fc37e1b6e72 100644 --- a/pkgs/by-name/ag/agenda/package.nix +++ b/pkgs/by-name/ag/agenda/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple, fast, no-nonsense to-do (task) list designed for elementary OS"; homepage = "https://github.com/dahenson/agenda"; - maintainers = with maintainers; [ xiorcale ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ xiorcale ]; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; mainProgram = "com.github.dahenson.agenda"; }; } diff --git a/pkgs/by-name/ag/agkozak-zsh-prompt/package.nix b/pkgs/by-name/ag/agkozak-zsh-prompt/package.nix index e9ff9c886a75..f593f49ed78d 100644 --- a/pkgs/by-name/ag/agkozak-zsh-prompt/package.nix +++ b/pkgs/by-name/ag/agkozak-zsh-prompt/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { cp -r -- lib/*.zsh agkozak-zsh-prompt.plugin.zsh prompt_agkozak-zsh-prompt_setup "$plugindir"/ ''; - meta = with lib; { + meta = { description = "Fast, asynchronous Zsh prompt"; homepage = "https://github.com/agkozak/agkozak-zsh-prompt"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/by-name/ag/agnos/package.nix b/pkgs/by-name/ag/agnos/package.nix index ff17584c23ec..5e1d06151e0c 100644 --- a/pkgs/by-name/ag/agnos/package.nix +++ b/pkgs/by-name/ag/agnos/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Obtains certificates from Let's Encrypt using DNS-01 without the need for API access to the DNS provider"; homepage = "https://github.com/krtab/agnos"; - license = licenses.mit; - maintainers = with maintainers; [ justinas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ justinas ]; }; passthru.tests = nixosTests.agnos; diff --git a/pkgs/by-name/ag/agola/package.nix b/pkgs/by-name/ag/agola/package.nix index 873416720b9c..4eb617208e18 100644 --- a/pkgs/by-name/ag/agola/package.nix +++ b/pkgs/by-name/ag/agola/package.nix @@ -34,10 +34,10 @@ buildGoModule { # somehow the tests get stuck doCheck = false; - meta = with lib; { + meta = { description = "CI/CD Redefined"; homepage = "https://agola.io"; - maintainers = with maintainers; [ happysalada ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ah/ahoviewer/package.nix b/pkgs/by-name/ah/ahoviewer/package.nix index 94e344065c89..1af07950efdc 100644 --- a/pkgs/by-name/ah/ahoviewer/package.nix +++ b/pkgs/by-name/ah/ahoviewer/package.nix @@ -66,14 +66,14 @@ stdenv.mkDerivation rec { --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" ''; - meta = with lib; { + meta = { homepage = "https://github.com/ahodesuka/ahoviewer"; description = "GTK2 image viewer, manga reader, and booru browser"; mainProgram = "ahoviewer"; - maintainers = with maintainers; [ xzfc ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ xzfc ]; + license = lib.licenses.mit; # Unintentionally not working on Darwin: # https://github.com/ahodesuka/ahoviewer/issues/62 - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ai/aiac/package.nix b/pkgs/by-name/ai/aiac/package.nix index ffa316e45412..cbfc5cc0851e 100644 --- a/pkgs/by-name/ai/aiac/package.nix +++ b/pkgs/by-name/ai/aiac/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X github.com/gofireflyio/aiac/v4/libaiac.Version=v${version}" ]; - meta = with lib; { + meta = { description = ''Artificial Intelligence Infrastructure-as-Code Generator''; mainProgram = "aiac"; homepage = "https://github.com/gofireflyio/aiac/"; - license = licenses.asl20; - maintainers = with maintainers; [ qjoly ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qjoly ]; }; } diff --git a/pkgs/by-name/ai/aileron/package.nix b/pkgs/by-name/ai/aileron/package.nix index a4e8245c7214..d7df4c29ab3b 100644 --- a/pkgs/by-name/ai/aileron/package.nix +++ b/pkgs/by-name/ai/aileron/package.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/aileron/"; description = "Helvetica font in nine weights"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/ai/air/package.nix b/pkgs/by-name/ai/air/package.nix index 3e79456d6076..2f2440ecdbdf 100644 --- a/pkgs/by-name/ai/air/package.nix +++ b/pkgs/by-name/ai/air/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Live reload for Go apps"; mainProgram = "air"; homepage = "https://github.com/air-verse/air"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Gonzih ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Gonzih ]; }; } diff --git a/pkgs/by-name/ai/airbuddy/package.nix b/pkgs/by-name/ai/airbuddy/package.nix index 9c5a2231869f..50c5a10791af 100644 --- a/pkgs/by-name/ai/airbuddy/package.nix +++ b/pkgs/by-name/ai/airbuddy/package.nix @@ -34,7 +34,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Take Control of Your Wireless Devices on macOS"; longDescription = '' Open your AirPods case next to your Mac to see the status right away, just like it works on your iPhone or iPad. @@ -42,9 +42,9 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; homepage = "https://v2.airbuddy.app"; changelog = "https://support.airbuddy.app/articles/airbuddy-2-changelog"; - license = with licenses; [ unfree ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ stepbrobd ]; + license = with lib.licenses; [ unfree ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ stepbrobd ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/by-name/ai/airshipper/package.nix b/pkgs/by-name/ai/airshipper/package.nix index 4e75ecda36f9..aba284758545 100644 --- a/pkgs/by-name/ai/airshipper/package.nix +++ b/pkgs/by-name/ai/airshipper/package.nix @@ -129,11 +129,11 @@ rustPlatform.buildRustPackage { "airshipper" ]; - meta = with lib; { + meta = { description = "Provides automatic updates for the voxel RPG Veloren"; mainProgram = "airshipper"; homepage = "https://www.veloren.net"; - license = licenses.gpl3; - maintainers = with maintainers; [ yusdacra ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ yusdacra ]; }; } diff --git a/pkgs/by-name/ai/airsonic/package.nix b/pkgs/by-name/ai/airsonic/package.nix index 2bf56ce8f653..1fc5177be36d 100644 --- a/pkgs/by-name/ai/airsonic/package.nix +++ b/pkgs/by-name/ai/airsonic/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { airsonic-starts = nixosTests.airsonic; }; - meta = with lib; { + meta = { description = "Personal media streamer"; homepage = "https://airsonic.github.io"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ disassembler ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ disassembler ]; }; } diff --git a/pkgs/by-name/ai/airspy/package.nix b/pkgs/by-name/ai/airspy/package.nix index 7b6b27a8f47a..696bb8aeff67 100644 --- a/pkgs/by-name/ai/airspy/package.nix +++ b/pkgs/by-name/ai/airspy/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { homepage = "https://github.com/airspy/airspyone_host"; description = "Host tools and driver library for the AirSpy SDR"; - license = licenses.bsd3; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ markuskowa ]; + license = lib.licenses.bsd3; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ markuskowa ]; }; } diff --git a/pkgs/by-name/ai/airspyhf/package.nix b/pkgs/by-name/ai/airspyhf/package.nix index 344c5da3be54..8170b10373d3 100644 --- a/pkgs/by-name/ai/airspyhf/package.nix +++ b/pkgs/by-name/ai/airspyhf/package.nix @@ -25,14 +25,14 @@ stdenv.mkDerivation { buildInputs = [ libusb1 ]; - meta = with lib; { + meta = { description = "User mode driver for Airspy HF+"; homepage = "https://github.com/airspy/airspyhf"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ aciceri sikmir ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ai/airstrike/package.nix b/pkgs/by-name/ai/airstrike/package.nix index 53fdb6529c75..b08d252d1a24 100644 --- a/pkgs/by-name/ai/airstrike/package.nix +++ b/pkgs/by-name/ai/airstrike/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { --chdir "$out/share" ''; - meta = with lib; { + meta = { description = "2d dogfighting game"; mainProgram = "airstrike"; homepage = "https://icculus.org/airstrike/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ai/aisleriot/package.nix b/pkgs/by-name/ai/aisleriot/package.nix index d68221a23384..4be46e64f9e5 100644 --- a/pkgs/by-name/ai/aisleriot/package.nix +++ b/pkgs/by-name/ai/aisleriot/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/aisleriot"; description = "Collection of patience games written in guile scheme"; mainProgram = "sol"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ai/aitrack/package.nix b/pkgs/by-name/ai/aitrack/package.nix index 75543c9ffa9f..d84af9229587 100644 --- a/pkgs/by-name/ai/aitrack/package.nix +++ b/pkgs/by-name/ai/aitrack/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { install -Dt $out/share/aitrack/models models/* ''; - meta = with lib; { + meta = { description = "6DoF Head tracking software"; mainProgram = "aitrack"; - maintainers = with maintainers; [ ck3d ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = with lib.maintainers; [ ck3d ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ai/aixlog/package.nix b/pkgs/by-name/ai/aixlog/package.nix index 44b76be3e101..7a3edcc4f535 100644 --- a/pkgs/by-name/ai/aixlog/package.nix +++ b/pkgs/by-name/ai/aixlog/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Header-only C++ logging library"; homepage = "https://github.com/badaix/aixlog"; changelog = "https://github.com/badaix/aixlog/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/aj/aj-snapshot/package.nix b/pkgs/by-name/aj/aj-snapshot/package.nix index 9e98fc09dd31..0f24c9f967d4 100644 --- a/pkgs/by-name/aj/aj-snapshot/package.nix +++ b/pkgs/by-name/aj/aj-snapshot/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { jack2 ]; - meta = with lib; { + meta = { description = "Tool for storing/restoring JACK and/or ALSA connections to/from cml files"; longDescription = '' Aj-snapshot is a small program that can be used to make snapshots of the connections made between JACK and/or ALSA clients. @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { ''; homepage = "http://aj-snapshot.sourceforge.net/"; - license = licenses.gpl2; - maintainers = [ maintainers.mrVanDalo ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.mrVanDalo ]; + platforms = lib.platforms.all; mainProgram = "aj-snapshot"; }; } diff --git a/pkgs/by-name/ak/akira-unstable/package.nix b/pkgs/by-name/ak/akira-unstable/package.nix index 9256ce3914c1..006315c43ef0 100644 --- a/pkgs/by-name/ak/akira-unstable/package.nix +++ b/pkgs/by-name/ak/akira-unstable/package.nix @@ -64,13 +64,13 @@ stdenv.mkDerivation rec { patchShebangs build-aux/meson/post_install.py ''; - meta = with lib; { + meta = { description = "Native Linux Design application built in Vala and GTK"; homepage = "https://github.com/akiraux/Akira"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "com.github.akiraux.akira"; }; } diff --git a/pkgs/by-name/al/alacritty-theme/package.nix b/pkgs/by-name/al/alacritty-theme/package.nix index 0c23155628e6..0e0ce734fb3c 100644 --- a/pkgs/by-name/al/alacritty-theme/package.nix +++ b/pkgs/by-name/al/alacritty-theme/package.nix @@ -32,11 +32,11 @@ stdenvNoCC.mkDerivation (self: { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { description = "Collection of Alacritty color schemes"; homepage = "https://alacritty.org/"; - license = licenses.asl20; - maintainers = [ maintainers.nicoo ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.nicoo ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/al/alarm-clock-applet/package.nix b/pkgs/by-name/al/alarm-clock-applet/package.nix index 36fc05d4e453..a0582077b736 100644 --- a/pkgs/by-name/al/alarm-clock-applet/package.nix +++ b/pkgs/by-name/al/alarm-clock-applet/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { "-DENABLE_GCONF_MIGRATION=OFF" ]; - meta = with lib; { + meta = { description = "Fully-featured alarm clock with an indicator"; homepage = "https://alarm-clock-applet.github.io"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; mainProgram = "alarm-clock-applet"; }; } diff --git a/pkgs/by-name/al/alchemy/package.nix b/pkgs/by-name/al/alchemy/package.nix index 658afb3da34f..d113d7a9c9ab 100644 --- a/pkgs/by-name/al/alchemy/package.nix +++ b/pkgs/by-name/al/alchemy/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { chmod +x $out/bin/alchemy ''; - meta = with lib; { + meta = { description = "Drawing application"; longDescription = '' Alchemy is an open drawing project aimed at exploring how we can sketch, @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { an expanded range of ideas and possibilities in a serendipitous way. ''; homepage = "http://al.chemy.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3Plus; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.linux; mainProgram = "alchemy"; }; } diff --git a/pkgs/by-name/al/aldo/package.nix b/pkgs/by-name/al/aldo/package.nix index 18e9469dd65e..73a7c4275ec4 100644 --- a/pkgs/by-name/al/aldo/package.nix +++ b/pkgs/by-name/al/aldo/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { buildInputs = [ libao ]; - meta = with lib; { + meta = { description = "Morse code training program"; homepage = "http://aldo.nongnu.org/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "aldo"; }; } diff --git a/pkgs/by-name/al/alegreya-sans/package.nix b/pkgs/by-name/al/alegreya-sans/package.nix index 72a982fa4734..a2db445ef4e4 100644 --- a/pkgs/by-name/al/alegreya-sans/package.nix +++ b/pkgs/by-name/al/alegreya-sans/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { install -D -m 444 fonts/webfonts/*.woff2 -t $out/share/fonts/woff2 ''; - meta = with lib; { + meta = { description = "Humanist sans serif family with a calligraphic feeling"; longDescription = '' Alegreya Sans is a humanist sans serif family with a calligraphic feeling that conveys a dynamic and varied rhythm. This gives a pleasant feeling to readers of long texts. @@ -34,8 +34,8 @@ stdenv.mkDerivation rec { The Alegreya type system is a "super family", originally intended for literature, and includes sans and serif sister families. ''; homepage = "https://www.huertatipografica.com/en/fonts/alegreya-sans-ht"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ Thra11 ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ Thra11 ]; }; } diff --git a/pkgs/by-name/al/alegreya/package.nix b/pkgs/by-name/al/alegreya/package.nix index 289369b8d582..ab886d2233b0 100644 --- a/pkgs/by-name/al/alegreya/package.nix +++ b/pkgs/by-name/al/alegreya/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { install -D -m 444 fonts/webfonts/*.woff2 -t $out/share/fonts/woff2 ''; - meta = with lib; { + meta = { description = "Elegant and versatile font family for comfortable reading"; longDescription = '' Alegreya is a typeface originally intended for literature. Among its crowning characteristics, it conveys a dynamic and varied rhythm which facilitates the reading of long texts. Also, it provides freshness to the page while referring to the calligraphic letter, not as a literal interpretation, but rather in a contemporary typographic language. @@ -40,8 +40,8 @@ stdenv.mkDerivation rec { Designed by Juan Pablo del Peral for Huerta Tipográfica. ''; homepage = "https://www.huertatipografica.com/en/fonts/alegreya-ht-pro"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ Thra11 ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ Thra11 ]; }; } diff --git a/pkgs/by-name/al/alembic/package.nix b/pkgs/by-name/al/alembic/package.nix index efbdecd13497..c1ae808b9888 100644 --- a/pkgs/by-name/al/alembic/package.nix +++ b/pkgs/by-name/al/alembic/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { doCheck = true; enableParallelChecking = false; - meta = with lib; { + meta = { description = "Open framework for storing and sharing scene data"; homepage = "http://alembic.io/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ guibou tmarkus ]; diff --git a/pkgs/by-name/al/alerta-server/package.nix b/pkgs/by-name/al/alerta-server/package.nix index d7ebe418a73d..df4d90cb7c93 100644 --- a/pkgs/by-name/al/alerta-server/package.nix +++ b/pkgs/by-name/al/alerta-server/package.nix @@ -42,11 +42,11 @@ python3.pkgs.buildPythonApplication rec { "alerta" ]; - meta = with lib; { + meta = { homepage = "https://alerta.io"; description = "Alerta Monitoring System server"; mainProgram = "alertad"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/al/alerta/package.nix b/pkgs/by-name/al/alerta/package.nix index e519085ba510..5211f0bb37fe 100644 --- a/pkgs/by-name/al/alerta/package.nix +++ b/pkgs/by-name/al/alerta/package.nix @@ -27,10 +27,10 @@ python3.pkgs.buildPythonApplication rec { disabled = python3.pythonOlder "3.6"; - meta = with lib; { + meta = { homepage = "https://alerta.io"; description = "Alerta Monitoring System command-line interface"; mainProgram = "alerta"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/al/alertmanager-irc-relay/package.nix b/pkgs/by-name/al/alertmanager-irc-relay/package.nix index 290f571b78ef..10d9025a70f3 100644 --- a/pkgs/by-name/al/alertmanager-irc-relay/package.nix +++ b/pkgs/by-name/al/alertmanager-irc-relay/package.nix @@ -22,7 +22,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Alertmanager IRC Relay is a bot relaying Prometheus alerts to IRC"; mainProgram = "alertmanager-irc-relay"; longDescription = '' @@ -31,7 +31,7 @@ buildGoModule rec { IRC channel ''; homepage = "https://github.com/google/alertmanager-irc-relay"; - license = licenses.asl20; - maintainers = with maintainers; [ ymatsiuk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ymatsiuk ]; }; } diff --git a/pkgs/by-name/al/alertmanager-webhook-logger/package.nix b/pkgs/by-name/al/alertmanager-webhook-logger/package.nix index b256a389ab04..afe5ce08943b 100644 --- a/pkgs/by-name/al/alertmanager-webhook-logger/package.nix +++ b/pkgs/by-name/al/alertmanager-webhook-logger/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests.prometheus) alertmanager; }; - meta = with lib; { + meta = { description = "Generates (structured) log messages from Prometheus AlertManager webhook notifier"; mainProgram = "alertmanager-webhook-logger"; homepage = "https://github.com/tomtom-international/alertmanager-webhook-logger"; - license = licenses.asl20; - maintainers = with maintainers; [ jpds ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jpds ]; }; } diff --git a/pkgs/by-name/al/alfaview/package.nix b/pkgs/by-name/al/alfaview/package.nix index 8db08d541eb0..627b89b7ce21 100644 --- a/pkgs/by-name/al/alfaview/package.nix +++ b/pkgs/by-name/al/alfaview/package.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Video-conferencing application, specialized in virtual online meetings, seminars, training sessions and conferences"; homepage = "https://alfaview.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; mainProgram = "alfaview"; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/al/alglib/package.nix b/pkgs/by-name/al/alglib/package.nix index f0044b3198db..620642ae1163 100644 --- a/pkgs/by-name/al/alglib/package.nix +++ b/pkgs/by-name/al/alglib/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { ./patch-alglib-CMakeLists.patch ]; - meta = with lib; { + meta = { description = "Numerical analysis and data processing library"; homepage = "https://www.alglib.net/"; license = lib.licenses.gpl2Plus; - maintainers = [ maintainers.paperdigits ]; + maintainers = [ lib.maintainers.paperdigits ]; longDescription = '' ALGLIB is a cross-platform numerical analysis and data processing library. It supports several programming languages (C++, C#, Delphi) and several operating systems (Windows and POSIX, including Linux). ALGLIB features include: diff --git a/pkgs/by-name/al/alice/package.nix b/pkgs/by-name/al/alice/package.nix index 244e8afad623..88ef1554dd51 100644 --- a/pkgs/by-name/al/alice/package.nix +++ b/pkgs/by-name/al/alice/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (attrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open-source font by Ksenia Erulevich"; homepage = "https://github.com/cyrealtype/Alice"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ncfavier ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ncfavier ]; }; }) diff --git a/pkgs/by-name/al/align/package.nix b/pkgs/by-name/al/align/package.nix index af515edd6518..627ec32c30f2 100644 --- a/pkgs/by-name/al/align/package.nix +++ b/pkgs/by-name/al/align/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { homepage = "https://github.com/Guitarbum722/align"; description = "General purpose application and library for aligning text"; mainProgram = "align"; - maintainers = with maintainers; [ hrhino ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ hrhino ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/al/alioth/package.nix b/pkgs/by-name/al/alioth/package.nix index b5bf54c9396d..065ecb438e18 100644 --- a/pkgs/by-name/al/alioth/package.nix +++ b/pkgs/by-name/al/alioth/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { separateDebugInfo = true; - meta = with lib; { + meta = { homepage = "https://github.com/google/alioth"; description = "Experimental Type-2 Hypervisor in Rust implemented from scratch"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "alioth"; - maintainers = with maintainers; [ astro ]; + maintainers = with lib.maintainers; [ astro ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/al/alkalami/package.nix b/pkgs/by-name/al/alkalami/package.nix index 6b3535bc074a..723094569184 100644 --- a/pkgs/by-name/al/alkalami/package.nix +++ b/pkgs/by-name/al/alkalami/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/alkalami/"; description = "Font for Arabic-based writing systems in the Kano region of Nigeria and in Niger"; - license = licenses.ofl; - maintainers = [ maintainers.vbgl ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.vbgl ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/al/alliance/package.nix b/pkgs/by-name/al/alliance/package.nix index fe56e205ed8f..1090c1b81474 100644 --- a/pkgs/by-name/al/alliance/package.nix +++ b/pkgs/by-name/al/alliance/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation { cp -p distrib/*.png $out/icons/hicolor/48x48/apps/ ''; - meta = with lib; { + meta = { description = "(deprecated) Complete set of free CAD tools and portable libraries for VLSI design"; homepage = "http://coriolis.lip6.fr/"; - license = with licenses; gpl2Plus; + license = with lib.licenses; gpl2Plus; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/al/almanah/package.nix b/pkgs/by-name/al/almanah/package.nix index 3a08d10ab794..2d1d0b096e82 100644 --- a/pkgs/by-name/al/almanah/package.nix +++ b/pkgs/by-name/al/almanah/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Small GTK application to allow to keep a diary of your life"; mainProgram = "almanah"; homepage = "https://gitlab.gnome.org/GNOME/almanah"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/al/almonds/package.nix b/pkgs/by-name/al/almonds/package.nix index 1a304476070a..1a79eb6dd83c 100644 --- a/pkgs/by-name/al/almonds/package.nix +++ b/pkgs/by-name/al/almonds/package.nix @@ -25,11 +25,11 @@ python3.pkgs.buildPythonApplication rec { nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Terminal Mandelbrot fractal viewer"; mainProgram = "almonds"; homepage = "https://github.com/Tenchi2xh/Almonds"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/al/alock/package.nix b/pkgs/by-name/al/alock/package.nix index e00ef5e9c2ad..965619d8b0ee 100644 --- a/pkgs/by-name/al/alock/package.nix +++ b/pkgs/by-name/al/alock/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { allowedVersions = "\\."; }; - meta = with lib; { + meta = { homepage = "https://github.com/Arkq/alock"; description = "Simple screen lock application for X server"; mainProgram = "alock"; @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { xscreensaver and never will. It's just for locking the current X session. ''; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ftrvxmtrx chris-martin ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/al/alp/package.nix b/pkgs/by-name/al/alp/package.nix index 1de39c8c3fd3..ecf122ef7e00 100644 --- a/pkgs/by-name/al/alp/package.nix +++ b/pkgs/by-name/al/alp/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { ''; }; - meta = with lib; { + meta = { description = "Convenient authentication method that lets you use your android device as a key for your Linux machine"; homepage = "https://github.com/gernotfeichter/alp"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "alp"; - maintainers = with maintainers; [ gernotfeichter ]; + maintainers = with lib.maintainers; [ gernotfeichter ]; }; } diff --git a/pkgs/by-name/al/alpaca-proxy/package.nix b/pkgs/by-name/al/alpaca-proxy/package.nix index 7489aadc3675..2527944c3bdf 100644 --- a/pkgs/by-name/al/alpaca-proxy/package.nix +++ b/pkgs/by-name/al/alpaca-proxy/package.nix @@ -27,13 +27,13 @@ buildGoModule rec { mv $out/bin/alpaca $out/bin/alpaca-proxy ''; - meta = with lib; { + meta = { description = "HTTP forward proxy with PAC and NTLM authentication support"; homepage = "https://github.com/samuong/alpaca"; changelog = "https://github.com/samuong/alpaca/releases/tag/v${src.rev}"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ _1nv0k32 ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ _1nv0k32 ]; mainProgram = "alpaca-proxy"; }; } diff --git a/pkgs/by-name/al/alpine-make-rootfs/package.nix b/pkgs/by-name/al/alpine-make-rootfs/package.nix index af1302b7c80c..9a2981965725 100644 --- a/pkgs/by-name/al/alpine-make-rootfs/package.nix +++ b/pkgs/by-name/al/alpine-make-rootfs/package.nix @@ -47,12 +47,12 @@ stdenvNoCC.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/alpinelinux/alpine-make-rootfs"; description = "Make customized Alpine Linux rootfs (base image) for containers"; mainProgram = "alpine-make-rootfs"; - maintainers = with maintainers; [ danielsidhion ]; - license = licenses.mit; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ danielsidhion ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/al/alpine-make-vm-image/package.nix b/pkgs/by-name/al/alpine-make-vm-image/package.nix index ae14ca7d5bf4..b6126fcbd66d 100644 --- a/pkgs/by-name/al/alpine-make-vm-image/package.nix +++ b/pkgs/by-name/al/alpine-make-vm-image/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/alpinelinux/alpine-make-vm-image"; description = "Make customized Alpine Linux disk image for virtual machines"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; mainProgram = "alpine-make-vm-image"; }; } diff --git a/pkgs/by-name/al/alpine/package.nix b/pkgs/by-name/al/alpine/package.nix index 83ff880d353e..8bc2e4ae968d 100644 --- a/pkgs/by-name/al/alpine/package.nix +++ b/pkgs/by-name/al/alpine/package.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Console mail reader"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raskin rhendric ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "https://alpineapp.email/"; }; } diff --git a/pkgs/by-name/al/alpnpass/package.nix b/pkgs/by-name/al/alpnpass/package.nix index d6a4511d628d..5278f7a08c65 100644 --- a/pkgs/by-name/al/alpnpass/package.nix +++ b/pkgs/by-name/al/alpnpass/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Inspect the plaintext payload inside of proxied TLS connections"; longDescription = '' This tool will listen on a given port, strip SSL encryption, @@ -29,8 +29,8 @@ buildGoModule rec { preserve the negotiated protocol all the way to the target. ''; homepage = "https://github.com/VerSprite/alpnpass"; - license = licenses.unlicense; - maintainers = [ maintainers.raboof ]; + license = lib.licenses.unlicense; + maintainers = [ lib.maintainers.raboof ]; mainProgram = "alpnpass"; }; } diff --git a/pkgs/by-name/al/alps/package.nix b/pkgs/by-name/al/alps/package.nix index fb640e4a3712..bdefa56e2e5b 100644 --- a/pkgs/by-name/al/alps/package.nix +++ b/pkgs/by-name/al/alps/package.nix @@ -47,11 +47,11 @@ buildGoModule { passthru.tests = { inherit (nixosTests) alps; }; - meta = with lib; { + meta = { description = "Simple and extensible webmail"; homepage = "https://git.sr.ht/~migadu/alps"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ booklearner madonius hmenke diff --git a/pkgs/by-name/al/alsa-lib-with-plugins/package.nix b/pkgs/by-name/al/alsa-lib-with-plugins/package.nix index e26a0be172ce..0eb4a9ca72e5 100644 --- a/pkgs/by-name/al/alsa-lib-with-plugins/package.nix +++ b/pkgs/by-name/al/alsa-lib-with-plugins/package.nix @@ -15,10 +15,10 @@ let in runCommand "${alsa-lib.pname}-${alsa-lib.version}" { - meta = with lib; { + meta = { description = "Wrapper to ease access to ALSA plugins"; mainProgram = "aserver"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; outputs = alsa-lib.outputs; } diff --git a/pkgs/by-name/al/alsa-oss/package.nix b/pkgs/by-name/al/alsa-oss/package.nix index 494d56feab97..76e075d482e3 100644 --- a/pkgs/by-name/al/alsa-oss/package.nix +++ b/pkgs/by-name/al/alsa-oss/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ]; - meta = with lib; { + meta = { homepage = "http://www.alsa-project.org/"; description = "ALSA, the Advanced Linux Sound Architecture alsa-oss emulation"; mainProgram = "aoss"; @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { MIDI functionality to the Linux-based operating system. ''; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/al/alsa-scarlett-gui/package.nix b/pkgs/by-name/al/alsa-scarlett-gui/package.nix index 8edcd60bc5e7..c26925fec9f5 100644 --- a/pkgs/by-name/al/alsa-scarlett-gui/package.nix +++ b/pkgs/by-name/al/alsa-scarlett-gui/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "GUI for alsa controls presented by Focusrite Scarlett Gen 2/3/4 Mixer Driver"; mainProgram = "alsa-scarlett-gui"; homepage = "https://github.com/geoffreybennett/alsa-scarlett-gui"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mdorman ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mdorman ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/al/alsa-topology-conf/package.nix b/pkgs/by-name/al/alsa-topology-conf/package.nix index 87cb278760da..f74378c61ebf 100644 --- a/pkgs/by-name/al/alsa-topology-conf/package.nix +++ b/pkgs/by-name/al/alsa-topology-conf/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.alsa-project.org/"; description = "ALSA topology configuration files"; @@ -33,8 +33,8 @@ stdenv.mkDerivation rec { MIDI functionality to the Linux-based operating system. ''; - license = licenses.bsd3; - maintainers = [ maintainers.roastiek ]; - platforms = platforms.linux ++ platforms.freebsd; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.roastiek ]; + platforms = lib.platforms.linux ++ lib.platforms.freebsd; }; } diff --git a/pkgs/by-name/al/alsaequal/package.nix b/pkgs/by-name/al/alsaequal/package.nix index 924e9ca0b47d..de522ea490bb 100644 --- a/pkgs/by-name/al/alsaequal/package.nix +++ b/pkgs/by-name/al/alsaequal/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { mkdir -p "$out/lib/alsa-lib" ''; - meta = with lib; { + meta = { description = "Real-time adjustable equalizer plugin for ALSA"; homepage = "https://github.com/bassdr/alsaequal"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ymeister ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ymeister ]; }; } diff --git a/pkgs/by-name/al/altair/package.nix b/pkgs/by-name/al/altair/package.nix index 42fa7a0d2381..160c2e3cb69b 100644 --- a/pkgs/by-name/al/altair/package.nix +++ b/pkgs/by-name/al/altair/package.nix @@ -31,12 +31,12 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Feature-rich GraphQL Client IDE"; mainProgram = "altair"; homepage = "https://github.com/imolorhe/altair"; - license = licenses.mit; - maintainers = with maintainers; [ evalexpr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evalexpr ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/al/altdns/package.nix b/pkgs/by-name/al/altdns/package.nix index 549576644db7..6d59460590cc 100644 --- a/pkgs/by-name/al/altdns/package.nix +++ b/pkgs/by-name/al/altdns/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication { "altdns" ]; - meta = with lib; { + meta = { description = "Generates permutations, alterations and mutations of subdomains and then resolves them"; homepage = "https://github.com/infosec-au/altdns"; - license = licenses.asl20; - maintainers = with maintainers; [ octodi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ octodi ]; mainProgram = "altdns"; }; } diff --git a/pkgs/by-name/al/altermime/package.nix b/pkgs/by-name/al/altermime/package.nix index c00cae2e35f6..a4a3c8ade8e3 100644 --- a/pkgs/by-name/al/altermime/package.nix +++ b/pkgs/by-name/al/altermime/package.nix @@ -28,10 +28,10 @@ gccStdenv.mkDerivation rec { --replace-fail "strip " "${gccStdenv.cc.targetPrefix}strip " ''; - meta = with lib; { + meta = { description = "MIME alteration tool"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.all; license.fullName = "alterMIME LICENSE"; downloadPage = "https://pldaniels.com/altermime/"; mainProgram = "altermime"; diff --git a/pkgs/by-name/al/althttpd/package.nix b/pkgs/by-name/al/althttpd/package.nix index ecabafa8cfcb..f467d0fd03f1 100644 --- a/pkgs/by-name/al/althttpd/package.nix +++ b/pkgs/by-name/al/althttpd/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { install -Dm755 -t $out/bin althttpd ''; - meta = with lib; { + meta = { description = "Althttpd webserver"; homepage = "https://sqlite.org/althttpd/"; - license = licenses.publicDomain; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; mainProgram = "althttpd"; }; } diff --git a/pkgs/by-name/al/altserver-linux/package.nix b/pkgs/by-name/al/altserver-linux/package.nix index 30614f51c7a0..d39fdd7c83df 100644 --- a/pkgs/by-name/al/altserver-linux/package.nix +++ b/pkgs/by-name/al/altserver-linux/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/NyaMisty/AltServer-Linux"; description = "AltServer for AltStore, but on-device. Requires root privileges as well as running a custom anisette server currently"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "alt-server"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.linux; - maintainers = with maintainers; [ max-amb ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ max-amb ]; }; }) diff --git a/pkgs/by-name/al/alttab/package.nix b/pkgs/by-name/al/alttab/package.nix index 15ff4dad4d80..0695c17551de 100644 --- a/pkgs/by-name/al/alttab/package.nix +++ b/pkgs/by-name/al/alttab/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { xorg.xprop ]; - meta = with lib; { + meta = { homepage = "https://github.com/sagb/alttab"; description = "X11 window switcher designed for minimalistic window managers or standalone X11 session"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "alttab"; }; diff --git a/pkgs/by-name/al/alttpr-opentracker/package.nix b/pkgs/by-name/al/alttpr-opentracker/package.nix index 21fbc80973ec..07a6123025f0 100644 --- a/pkgs/by-name/al/alttpr-opentracker/package.nix +++ b/pkgs/by-name/al/alttpr-opentracker/package.nix @@ -65,16 +65,16 @@ buildDotnetModule rec { "libintl.so.8" ]; - meta = with lib; { + meta = { description = "Tracking application for A Link to the Past Randomizer"; homepage = "https://github.com/trippsc2/OpenTracker"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource # deps binaryBytecode binaryNativeCode ]; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "OpenTracker"; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/al/alure2/package.nix b/pkgs/by-name/al/alure2/package.nix index b3183af7a0ac..ca69857c848a 100644 --- a/pkgs/by-name/al/alure2/package.nix +++ b/pkgs/by-name/al/alure2/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 3.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Utility library for OpenAL, providing a C++ API and managing common tasks that include file loading, caching, and streaming"; homepage = "https://github.com/kcat/alure"; - license = licenses.zlib; - platforms = platforms.linux; - maintainers = with maintainers; [ McSinyx ]; + license = lib.licenses.zlib; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ McSinyx ]; }; } diff --git a/pkgs/by-name/am/am2rlauncher/package.nix b/pkgs/by-name/am/am2rlauncher/package.nix index 40a7e4d860a5..ae84cf33a388 100644 --- a/pkgs/by-name/am/am2rlauncher/package.nix +++ b/pkgs/by-name/am/am2rlauncher/package.nix @@ -115,7 +115,7 @@ buildDotnetModule { mv $out/bin/AM2RLauncher.Gtk $out/bin/AM2RLauncher ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; homepage = "https://github.com/AM2R-Community-Developers/AM2RLauncher"; @@ -125,9 +125,9 @@ buildDotnetModule { AM2R-Community-Updates, creating APKs for Android use, as well as Mods for AM2R. ''; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nsnelson ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nsnelson ]; mainProgram = "AM2RLauncher"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/am/amazon-ecr-credential-helper/package.nix b/pkgs/by-name/am/amazon-ecr-credential-helper/package.nix index 16906329437c..9fdb15eb24cd 100644 --- a/pkgs/by-name/am/amazon-ecr-credential-helper/package.nix +++ b/pkgs/by-name/am/amazon-ecr-credential-helper/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { command = "docker-credential-ecr-login -v"; }; - meta = with lib; { + meta = { description = "Amazon ECR Docker Credential Helper is a credential helper for the Docker daemon that makes it easier to use Amazon Elastic Container Registry"; homepage = "https://github.com/awslabs/amazon-ecr-credential-helper"; - license = licenses.asl20; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit ]; mainProgram = "docker-credential-ecr-login"; }; } diff --git a/pkgs/by-name/am/amazon-ecs-cli/package.nix b/pkgs/by-name/am/amazon-ecs-cli/package.nix index 7242f8cf113a..65fca5099abf 100644 --- a/pkgs/by-name/am/amazon-ecs-cli/package.nix +++ b/pkgs/by-name/am/amazon-ecs-cli/package.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { chmod +x $out/bin/ecs-cli ''; # */ - meta = with lib; { + meta = { homepage = "https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_CLI.html"; description = "Amazon ECS command line interface"; longDescription = "The Amazon Elastic Container Service (Amazon ECS) command line interface (CLI) provides high-level commands to simplify creating, updating, and monitoring clusters and tasks from a local development environment."; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.asl20; - maintainers = with maintainers; [ Scriptkiddi ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Scriptkiddi ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/am/amber-lang/package.nix b/pkgs/by-name/am/amber-lang/package.nix index e8576703bcd9..e3180bf19415 100644 --- a/pkgs/by-name/am/amber-lang/package.nix +++ b/pkgs/by-name/am/amber-lang/package.nix @@ -69,15 +69,15 @@ rustPlatform.buildRustPackage rec { ''; }; - meta = with lib; { + meta = { description = "Programming language compiled to bash"; homepage = "https://amber-lang.com"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "amber"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ cafkafk aleksana ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/am/amber-theme/package.nix b/pkgs/by-name/am/amber-theme/package.nix index 5ac30cd315d2..16a227216941 100644 --- a/pkgs/by-name/am/amber-theme/package.nix +++ b/pkgs/by-name/am/amber-theme/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gtk-engine-murrine ]; - meta = with lib; { + meta = { description = "GTK, gnome-shell and Xfce theme based on Ubuntu Ambiance"; homepage = "https://github.com/lassekongo83/amber-theme"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/am/amber/package.nix b/pkgs/by-name/am/amber/package.nix index 387ef38b6f7f..acc3242f0dbf 100644 --- a/pkgs/by-name/am/amber/package.nix +++ b/pkgs/by-name/am/amber/package.nix @@ -23,10 +23,10 @@ rustPlatform.buildRustPackage rec { libiconv ]; - meta = with lib; { + meta = { description = "Code search-and-replace tool"; homepage = "https://github.com/dalance/amber"; - license = with licenses; [ mit ]; - maintainers = [ maintainers.bdesham ]; + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.bdesham ]; }; } diff --git a/pkgs/by-name/am/amd-libflame/package.nix b/pkgs/by-name/am/amd-libflame/package.nix index 35453a68c634..6f3c59995539 100644 --- a/pkgs/by-name/am/amd-libflame/package.nix +++ b/pkgs/by-name/am/amd-libflame/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { ln -s $out/lib/libflame.so $out/lib/liblapacke.so.3 ''; - meta = with lib; { + meta = { description = "LAPACK-compatible linear algebra library optimized for AMD CPUs"; homepage = "https://developer.amd.com/amd-aocl/blas-library/"; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/am/amdctl/package.nix b/pkgs/by-name/am/amdctl/package.nix index 63fe47c113b3..ae46d5f4c097 100644 --- a/pkgs/by-name/am/amdctl/package.nix +++ b/pkgs/by-name/am/amdctl/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Set P-State voltages and clock speeds on recent AMD CPUs on Linux"; mainProgram = "amdctl"; homepage = "https://github.com/kevinlekiller/amdctl"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/am/amf-headers/package.nix b/pkgs/by-name/am/amf-headers/package.nix index 29d5dc1bf9ef..4da4339ac3ca 100644 --- a/pkgs/by-name/am/amf-headers/package.nix +++ b/pkgs/by-name/am/amf-headers/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp -r amf/public/include/* $out/include/AMF ''; - meta = with lib; { + meta = { description = "Headers for The Advanced Media Framework (AMF)"; homepage = "https://github.com/GPUOpen-LibrariesAndSDKs/AMF"; - license = licenses.mit; - maintainers = with maintainers; [ devusb ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ devusb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/am/amiberry/package.nix b/pkgs/by-name/am/amiberry/package.nix index 384fbcd30146..ee3325d581f1 100644 --- a/pkgs/by-name/am/amiberry/package.nix +++ b/pkgs/by-name/am/amiberry/package.nix @@ -108,11 +108,11 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/BlitterStudio/amiberry"; description = "Optimized Amiga emulator for Linux/macOS"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "amiberry"; }; diff --git a/pkgs/by-name/am/amidst/package.nix b/pkgs/by-name/am/amidst/package.nix index 422b902f3076..099e8e4518eb 100644 --- a/pkgs/by-name/am/amidst/package.nix +++ b/pkgs/by-name/am/amidst/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { --add-flags "-jar $out/lib/amidst/amidst.jar" ''; - meta = with lib; { + meta = { homepage = "https://github.com/toolbox4minecraft/amidst"; description = "Advanced Minecraft Interface and Data/Structure Tracking"; mainProgram = "amidst"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3Only; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/am/amiri/package.nix b/pkgs/by-name/am/amiri/package.nix index fab445ec5790..3419dd996661 100644 --- a/pkgs/by-name/am/amiri/package.nix +++ b/pkgs/by-name/am/amiri/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Classical Arabic typeface in Naskh style"; homepage = "https://www.amirifont.org/"; - license = licenses.ofl; - maintainers = [ maintainers.vbgl ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.vbgl ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/am/aml/package.nix b/pkgs/by-name/am/aml/package.nix index 2d8d9d553168..582dfac3303e 100644 --- a/pkgs/by-name/am/aml/package.nix +++ b/pkgs/by-name/am/aml/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { ninja ]; - meta = with lib; { + meta = { description = "Another main loop"; inherit (src.meta) homepage; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/am/amnezia-vpn/package.nix b/pkgs/by-name/am/amnezia-vpn/package.nix index d7e0faf33833..248387e340ad 100644 --- a/pkgs/by-name/am/amnezia-vpn/package.nix +++ b/pkgs/by-name/am/amnezia-vpn/package.nix @@ -175,13 +175,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Amnezia VPN Client"; downloadPage = "https://amnezia.org/en/downloads"; homepage = "https://github.com/amnezia-vpn/amnezia-client"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "AmneziaVPN"; - maintainers = with maintainers; [ sund3RRR ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ sund3RRR ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/am/amoco/package.nix b/pkgs/by-name/am/amoco/package.nix index e66d63630dc1..451c0295c34a 100644 --- a/pkgs/by-name/am/amoco/package.nix +++ b/pkgs/by-name/am/amoco/package.nix @@ -64,11 +64,11 @@ python3.pkgs.buildPythonApplication rec { "test_func" ]; - meta = with lib; { + meta = { description = "Tool for analysing binaries"; mainProgram = "amoco"; homepage = "https://github.com/bdcht/amoco"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/am/among-sus/package.nix b/pkgs/by-name/am/among-sus/package.nix index b666073e0e7c..ef7f22e9f977 100644 --- a/pkgs/by-name/am/among-sus/package.nix +++ b/pkgs/by-name/am/among-sus/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { install -Dm755 among-sus $out/bin ''; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~martijnbraam/among-sus"; description = "Among us, but it's a text adventure"; mainProgram = "among-sus"; - license = licenses.agpl3Plus; - maintainers = [ maintainers.eyjhb ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Plus; + maintainers = [ lib.maintainers.eyjhb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/am/amphetype/package.nix b/pkgs/by-name/am/amphetype/package.nix index 23d4c30edf8b..db9b9d50f639 100644 --- a/pkgs/by-name/am/amphetype/package.nix +++ b/pkgs/by-name/am/amphetype/package.nix @@ -65,11 +65,11 @@ python3Packages.buildPythonApplication { }) ]; - meta = with lib; { + meta = { inherit description; mainProgram = "amphetype"; homepage = "https://gitlab.com/franksh/amphetype"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ rycee ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ rycee ]; }; } diff --git a/pkgs/by-name/am/ams/package.nix b/pkgs/by-name/am/ams/package.nix index 86b8f2f1c4da..39f6ab2cebe3 100644 --- a/pkgs/by-name/am/ams/package.nix +++ b/pkgs/by-name/am/ams/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { qttools ]); - meta = with lib; { + meta = { description = "Realtime modular synthesizer for ALSA"; mainProgram = "ams"; homepage = "https://alsamodular.sourceforge.net"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ sjfloat ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sjfloat ]; }; } diff --git a/pkgs/by-name/am/amule/package.nix b/pkgs/by-name/am/amule/package.nix index efb0627dc95a..791f01e1c906 100644 --- a/pkgs/by-name/am/amule/package.nix +++ b/pkgs/by-name/am/amule/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libupnp ]} ''; - meta = with lib; { + meta = { description = "Peer-to-peer client for the eD2K and Kademlia networks"; longDescription = '' aMule is an eMule-like client for the eD2k and Kademlia @@ -105,9 +105,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/amule-project/amule"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # Undefined symbols for architecture arm64: "_FSFindFolder" broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/an/ananicy/package.nix b/pkgs/by-name/an/ananicy/package.nix index bb8197bcc9b8..cc23e78fa516 100644 --- a/pkgs/by-name/an/ananicy/package.nix +++ b/pkgs/by-name/an/ananicy/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation { --replace "/usr/bin/ananicy" "$out/bin/ananicy" ''; - meta = with lib; { + meta = { homepage = "https://github.com/Nefelim4ag/Ananicy"; description = "Another auto nice daemon, with community rules support"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ artturin ]; mainProgram = "ananicy"; }; } diff --git a/pkgs/by-name/an/anarchism/package.nix b/pkgs/by-name/an/anarchism/package.nix index 604efc0d403c..0e9cd164c62c 100644 --- a/pkgs/by-name/an/anarchism/package.nix +++ b/pkgs/by-name/an/anarchism/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { cp debian/anarchism.desktop $out/share/applications ''; - meta = with lib; { + meta = { homepage = "https://www.anarchistfaq.org/"; changelog = "http://anarchism.pageabode.com/afaq/new.html"; description = "Exhaustive exploration of Anarchist theory and practice"; @@ -41,8 +41,8 @@ stdenv.mkDerivation rec { from the basics of Anarchism to very specific discussions of politics, social organization, and economics. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ davidak ]; - platforms = with platforms; all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ davidak ]; + platforms = with lib.platforms; all; }; } diff --git a/pkgs/by-name/an/anchor/package.nix b/pkgs/by-name/an/anchor/package.nix index d2fee84605a2..dac615caa9ac 100644 --- a/pkgs/by-name/an/anchor/package.nix +++ b/pkgs/by-name/an/anchor/package.nix @@ -25,12 +25,12 @@ rustPlatform.buildRustPackage rec { "--skip=tests::test_get_anchor_version_from_commit" ]; - meta = with lib; { + meta = { description = "Solana Sealevel Framework"; homepage = "https://github.com/coral-xyz/anchor"; changelog = "https://github.com/coral-xyz/anchor/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ Denommus ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Denommus ]; mainProgram = "anchor"; }; } diff --git a/pkgs/by-name/an/anders/package.nix b/pkgs/by-name/an/anders/package.nix index 4c512c9629be..e9cfa9dbd506 100644 --- a/pkgs/by-name/an/anders/package.nix +++ b/pkgs/by-name/an/anders/package.nix @@ -22,11 +22,11 @@ ocamlPackages.buildDunePackage rec { nativeBuildInputs = [ ocamlPackages.menhir ]; buildInputs = [ ocamlPackages.zarith ]; - meta = with lib; { + meta = { description = "Modal Homotopy Type System"; mainProgram = "anders"; homepage = "https://homotopy.dev/"; - license = licenses.isc; - maintainers = [ maintainers.suhr ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.suhr ]; }; } diff --git a/pkgs/by-name/an/andika/package.nix b/pkgs/by-name/an/andika/package.nix index 4b339b2a6a98..481426a3d502 100644 --- a/pkgs/by-name/an/andika/package.nix +++ b/pkgs/by-name/an/andika/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/andika"; description = "Family designed especially for literacy use taking into account the needs of beginning readers"; longDescription = '' @@ -30,8 +30,8 @@ stdenvNoCC.mkDerivation rec { A sans serif font is preferred by some literacy personnel for teaching people to read. Its forms are simpler and less cluttered than those of most serif fonts. For years, literacy workers have had to make do with fonts that were not really suitable for beginning readers and writers. In some cases, literacy specialists have had to tediously assemble letters from a variety of fonts in order to get all of the characters they need for their particular language project, resulting in confusing and unattractive publications. Andika addresses those issues. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.f--t ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.f--t ]; }; } diff --git a/pkgs/by-name/an/android-backup-extractor/package.nix b/pkgs/by-name/an/android-backup-extractor/package.nix index 37a9877f8dfb..4a3f1873c12c 100644 --- a/pkgs/by-name/an/android-backup-extractor/package.nix +++ b/pkgs/by-name/an/android-backup-extractor/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Utility to extract and repack Android backups created with adb backup"; mainProgram = "abe"; homepage = "https://github.com/nelenkov/android-backup-extractor"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ prusnak ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/by-name/an/android-file-transfer/package.nix b/pkgs/by-name/an/android-file-transfer/package.nix index 68c27eae9c3b..97b84ba965c8 100644 --- a/pkgs/by-name/an/android-file-transfer/package.nix +++ b/pkgs/by-name/an/android-file-transfer/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { mv $out/*.app $out/Applications ''; - meta = with lib; { + meta = { description = "Reliable MTP client with minimalistic UI"; homepage = "https://whoozle.github.io/android-file-transfer-linux/"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.xaverdh ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.xaverdh ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/an/andyetitmoves/package.nix b/pkgs/by-name/an/andyetitmoves/package.nix index 3a3e09e8048b..7a7d60bd0691 100644 --- a/pkgs/by-name/an/andyetitmoves/package.nix +++ b/pkgs/by-name/an/andyetitmoves/package.nix @@ -88,12 +88,12 @@ stdenv.mkDerivation rec { openal ]; - meta = with lib; { + meta = { description = "Physics/Gravity Platform game"; longDescription = '' And Yet It Moves is an award-winning physics-based platform game in which players rotate the game world at will to solve challenging puzzles. Tilting the world turns walls into floors, slides into platforms, and stacks of rocks into dangerous hazards. ''; homepage = "http://www.andyetitmoves.net/"; - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/an/anew/package.nix b/pkgs/by-name/an/anew/package.nix index 387152175add..fef86a510a0d 100644 --- a/pkgs/by-name/an/anew/package.nix +++ b/pkgs/by-name/an/anew/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tool for adding new lines to files, skipping duplicates"; mainProgram = "anew"; homepage = "https://github.com/tomnomnom/anew"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/an/anewer/package.nix b/pkgs/by-name/an/anewer/package.nix index 2b0caacc36b2..7b123479ebce 100644 --- a/pkgs/by-name/an/anewer/package.nix +++ b/pkgs/by-name/an/anewer/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ojgm5LTOOhnGS7tUD1UUktviivp68u0c06gIJNhEO1E="; - meta = with lib; { + meta = { description = "Append lines from stdin to a file if they don't already exist in the file"; mainProgram = "anewer"; homepage = "https://github.com/ysf/anewer"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/an/angband/package.nix b/pkgs/by-name/an/angband/package.nix index 9bb9a7e09de8..13065d826779 100644 --- a/pkgs/by-name/an/angband/package.nix +++ b/pkgs/by-name/an/angband/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "bindir=$(out)/bin" ]; - meta = with lib; { + meta = { homepage = "https://angband.github.io/angband"; description = "Single-player roguelike dungeon exploration game"; mainProgram = "angband"; - maintainers = [ maintainers.kenran ]; - license = licenses.gpl2Only; - platforms = platforms.unix; + maintainers = [ lib.maintainers.kenran ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/an/angelscript/package.nix b/pkgs/by-name/an/angelscript/package.nix index a84cc9910126..d0811fe73c0e 100644 --- a/pkgs/by-name/an/angelscript/package.nix +++ b/pkgs/by-name/an/angelscript/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { cp -r $ROOT/docs/* "$out/share/docs/angelscript" ''; - meta = with lib; { + meta = { description = "Light-weight scripting library"; - license = licenses.zlib; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.all; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.all; downloadPage = "https://www.angelcode.com/angelscript/downloads.html"; homepage = "https://www.angelcode.com/angelscript/"; }; diff --git a/pkgs/by-name/an/angle-grinder/package.nix b/pkgs/by-name/an/angle-grinder/package.nix index 1c345bd20da3..efc3ac66d72b 100644 --- a/pkgs/by-name/an/angle-grinder/package.nix +++ b/pkgs/by-name/an/angle-grinder/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; }; - meta = with lib; { + meta = { description = "Slice and dice logs on the command line"; homepage = "https://github.com/rcoh/angle-grinder"; - license = licenses.mit; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bbigras ]; mainProgram = "agrind"; }; } diff --git a/pkgs/by-name/an/angsd/package.nix b/pkgs/by-name/an/angsd/package.nix index f9c6d2775d62..2ef0ac0c1e74 100644 --- a/pkgs/by-name/an/angsd/package.nix +++ b/pkgs/by-name/an/angsd/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Program for analysing NGS data"; homepage = "http://www.popgen.dk/angsd"; - maintainers = [ maintainers.bzizou ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.bzizou ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/an/anime-downloader/package.nix b/pkgs/by-name/an/anime-downloader/package.nix index e65d02551123..f247b1a97b92 100644 --- a/pkgs/by-name/an/anime-downloader/package.nix +++ b/pkgs/by-name/an/anime-downloader/package.nix @@ -54,11 +54,11 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { homepage = "https://github.com/anime-dl/anime-downloader"; description = "Simple but powerful anime downloader and streamer"; - license = licenses.unlicense; - platforms = platforms.linux; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "anime"; }; diff --git a/pkgs/by-name/an/anime4k/package.nix b/pkgs/by-name/an/anime4k/package.nix index 3a537d1b85a9..6d8c4412b17f 100644 --- a/pkgs/by-name/an/anime4k/package.nix +++ b/pkgs/by-name/an/anime4k/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "High-quality real time upscaler for anime"; homepage = "https://github.com/bloc97/Anime4K"; - license = licenses.mit; - maintainers = with maintainers; [ surfaceflinger ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ surfaceflinger ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/an/ankacoder-condensed/package.nix b/pkgs/by-name/an/ankacoder-condensed/package.nix index ebcd69d68ee0..359fd69ad37b 100644 --- a/pkgs/by-name/an/ankacoder-condensed/package.nix +++ b/pkgs/by-name/an/ankacoder-condensed/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Anka/Coder Condensed font"; homepage = "https://code.google.com/archive/p/anka-coder-fonts"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/an/ankacoder/package.nix b/pkgs/by-name/an/ankacoder/package.nix index f11a8dda67c5..29ee108f14cb 100644 --- a/pkgs/by-name/an/ankacoder/package.nix +++ b/pkgs/by-name/an/ankacoder/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Anka/Coder fonts"; homepage = "https://code.google.com/archive/p/anka-coder-fonts"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/an/anki-bin/package.nix b/pkgs/by-name/an/anki-bin/package.nix index cfe3b58ea442..1d99a55fff75 100644 --- a/pkgs/by-name/an/anki-bin/package.nix +++ b/pkgs/by-name/an/anki-bin/package.nix @@ -54,7 +54,7 @@ let ''; }; - meta = with lib; { + meta = { inherit (anki.meta) license homepage @@ -67,7 +67,7 @@ let "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mahmoudk1000 cything ]; diff --git a/pkgs/by-name/an/anki/package.nix b/pkgs/by-name/an/anki/package.nix index c3504efd0962..d4880fb4eefa 100644 --- a/pkgs/by-name/an/anki/package.nix +++ b/pkgs/by-name/an/anki/package.nix @@ -288,7 +288,7 @@ python3Packages.buildPythonApplication rec { tests.anki-sync-server = nixosTests.anki-sync-server; }; - meta = with lib; { + meta = { description = "Spaced repetition flashcard program"; mainProgram = "anki"; longDescription = '' @@ -304,9 +304,9 @@ python3Packages.buildPythonApplication rec { or even practicing guitar chords! ''; homepage = "https://apps.ankiweb.net"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; inherit (mesa.meta) platforms; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ euank junestepp oxij diff --git a/pkgs/by-name/an/anko/package.nix b/pkgs/by-name/an/anko/package.nix index 92b1714e84c7..e05bef301b59 100644 --- a/pkgs/by-name/an/anko/package.nix +++ b/pkgs/by-name/an/anko/package.nix @@ -24,10 +24,10 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Scriptable interpreter written in golang"; homepage = "https://github.com/mattn/anko"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/an/annapurna-sil/package.nix b/pkgs/by-name/an/annapurna-sil/package.nix index ef9cdbc6e62a..d30aaa2ab603 100644 --- a/pkgs/by-name/an/annapurna-sil/package.nix +++ b/pkgs/by-name/an/annapurna-sil/package.nix @@ -22,14 +22,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/annapurna"; description = "Unicode-based font family with broad support for writing systems that use the Devanagari script"; longDescription = '' Annapurna SIL is a Unicode-based font family with broad support for writing systems that use the Devanagari script. Inspired by traditional calligraphic forms, the design is intended to be highly readable, reasonably compact, and visually attractive. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.kmein ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.kmein ]; }; } diff --git a/pkgs/by-name/an/annextimelog/package.nix b/pkgs/by-name/an/annextimelog/package.nix index 0267b432e92c..a8fb4cdff1d1 100644 --- a/pkgs/by-name/an/annextimelog/package.nix +++ b/pkgs/by-name/an/annextimelog/package.nix @@ -33,10 +33,10 @@ python3.pkgs.buildPythonApplication rec { rich ]; - meta = with lib; { + meta = { description = "git-annex based cli time tracker"; homepage = "https://gitlab.com/nobodyinperson/annextimelog"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/an/anonymousPro/package.nix b/pkgs/by-name/an/anonymousPro/package.nix index ae8644b1547d..2936a9f0e402 100644 --- a/pkgs/by-name/an/anonymousPro/package.nix +++ b/pkgs/by-name/an/anonymousPro/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.marksimonson.com/fonts/view/anonymous-pro"; description = "TrueType font set intended for source code"; longDescription = '' @@ -34,8 +34,8 @@ stdenvNoCC.mkDerivation rec { most Western and Central European Latin-based languages, plus Greek and Cyrillic. It is designed by Mark Simonson. ''; - maintainers = with maintainers; [ raskin ]; - license = licenses.ofl; - platforms = platforms.all; + maintainers = with lib.maintainers; [ raskin ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/an/ante/package.nix b/pkgs/by-name/an/ante/package.nix index 31db0243ecd9..0368755b9997 100644 --- a/pkgs/by-name/an/ante/package.nix +++ b/pkgs/by-name/an/ante/package.nix @@ -66,11 +66,11 @@ rustPlatform.buildRustPackage { ) ''; - meta = with lib; { + meta = { homepage = "https://antelang.org/"; description = "Low-level functional language for exploring refinement types, lifetime inference, and algebraic effects"; mainProgram = "ante"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ehllie ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ehllie ]; }; } diff --git a/pkgs/by-name/an/antfs-cli/package.nix b/pkgs/by-name/an/antfs-cli/package.nix index a6f6e5c2c6e4..555362a9acd7 100644 --- a/pkgs/by-name/an/antfs-cli/package.nix +++ b/pkgs/by-name/an/antfs-cli/package.nix @@ -9,12 +9,12 @@ python3Packages.buildPythonApplication { version = "0-unstable-2017-02-11"; format = "pyproject"; - meta = with lib; { + meta = { homepage = "https://github.com/Tigge/antfs-cli"; description = "Extracts FIT files from ANT-FS based sport watches"; mainProgram = "antfs-cli"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; src = fetchFromGitHub { diff --git a/pkgs/by-name/an/anthy/package.nix b/pkgs/by-name/an/anthy/package.nix index 1d908acc8637..e38485fcbc02 100644 --- a/pkgs/by-name/an/anthy/package.nix +++ b/pkgs/by-name/an/anthy/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Hiragana text to Kana Kanji mixed text Japanese input method"; homepage = "https://anthy.osdn.jp/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; postFixup = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' diff --git a/pkgs/by-name/an/antibody/package.nix b/pkgs/by-name/an/antibody/package.nix index d013cc767dc4..ebb0047a3844 100644 --- a/pkgs/by-name/an/antibody/package.nix +++ b/pkgs/by-name/an/antibody/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "Fastest shell plugin manager"; mainProgram = "antibody"; homepage = "https://github.com/getantibody/antibody"; - license = licenses.mit; + license = lib.licenses.mit; # golang.org/x/sys needs to be updated due to: # diff --git a/pkgs/by-name/an/antiprism/package.nix b/pkgs/by-name/an/antiprism/package.nix index bccf6309f79d..e74330edf20d 100644 --- a/pkgs/by-name/an/antiprism/package.nix +++ b/pkgs/by-name/an/antiprism/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation (finalAttrs: { libglut ]; - meta = with lib; { + meta = { homepage = "https://www.antiprism.com"; description = "Collection of programs for generating, manipulating, transforming and viewing polyhedra"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/an/antora/package.nix b/pkgs/by-name/an/antora/package.nix index 9f40af7698a0..ce4bc1fd9044 100644 --- a/pkgs/by-name/an/antora/package.nix +++ b/pkgs/by-name/an/antora/package.nix @@ -35,13 +35,13 @@ buildNpmPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Modular documentation site generator. Designed for users of Asciidoctor"; homepage = "https://antora.org"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "antora"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ehllie naho ]; diff --git a/pkgs/by-name/an/anyk/package.nix b/pkgs/by-name/an/anyk/package.nix index 82c8dc8b8afe..883ee9450c45 100644 --- a/pkgs/by-name/an/anyk/package.nix +++ b/pkgs/by-name/an/anyk/package.nix @@ -135,7 +135,7 @@ stdenv.mkDerivation { ln -s $out/opt/abevjava.png $out/share/icons/anyk.png ''; - meta = with lib; { + meta = { description = "Tool for filling forms for the Hungarian government"; longDescription = '' Official tool for filling Hungarian government forms. @@ -143,10 +143,10 @@ stdenv.mkDerivation { Use `anyk-java` to install form templates/help files like this: `anyk-java -jar NAV_IGAZOL.jar` ''; homepage = "https://nav.gov.hu/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvany_apeh/keretprogramok/javakitolto"; - license = licenses.unfree; - maintainers = with maintainers; [ chpatrick ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ chpatrick ]; platforms = openjdk.meta.platforms; - sourceProvenance = [ sourceTypes.binaryBytecode ]; + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; mainProgram = "anyk"; }; } diff --git a/pkgs/by-name/an/anytone-emu/package.nix b/pkgs/by-name/an/anytone-emu/package.nix index eb4ee687b6af..f40479ba781d 100644 --- a/pkgs/by-name/an/anytone-emu/package.nix +++ b/pkgs/by-name/an/anytone-emu/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage { udev ]; - meta = with lib; { + meta = { description = "Tiny emulator for AnyTone radios"; homepage = "https://github.com/hmatuschek/anytone-emu"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "anytone-emu"; }; } diff --git a/pkgs/by-name/ao/aoc-cli/package.nix b/pkgs/by-name/ao/aoc-cli/package.nix index 526a9b7dbd86..9f1511d95e34 100644 --- a/pkgs/by-name/ao/aoc-cli/package.nix +++ b/pkgs/by-name/ao/aoc-cli/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-cm8yt7PRjar21EVFIjXYgDkO7+VpHGIB3tJ8hkK+Phw="; - meta = with lib; { + meta = { description = "Advent of code command line tool"; homepage = "https://github.com/scarvalhojr/aoc-cli/"; - license = licenses.mit; - maintainers = with maintainers; [ jordanisaacs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jordanisaacs ]; mainProgram = "aoc"; }; } diff --git a/pkgs/by-name/ao/aocl-utils/package.nix b/pkgs/by-name/ao/aocl-utils/package.nix index 663fb89c6496..af9c835cbeb4 100644 --- a/pkgs/by-name/ao/aocl-utils/package.nix +++ b/pkgs/by-name/ao/aocl-utils/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { (lib.cmakeBool "AU_BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) ]; - meta = with lib; { + meta = { description = "Interface to all AMD AOCL libraries to access CPU features"; homepage = "https://github.com/amd/aocl-utils"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.markuskowa ]; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/ap/apache-airflow/python-package.nix b/pkgs/by-name/ap/apache-airflow/python-package.nix index f50d76e6161a..80f9b0e863a2 100644 --- a/pkgs/by-name/ap/apache-airflow/python-package.nix +++ b/pkgs/by-name/ap/apache-airflow/python-package.nix @@ -331,11 +331,11 @@ buildPythonPackage rec { # triggering the 'example_bash_operator' and 'example_bash_operator' DAGs and # see if they report success. - meta = with lib; { + meta = { description = "Programmatically author, schedule and monitor data pipelines"; homepage = "https://airflow.apache.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gbpdt ingenieroariel ]; diff --git a/pkgs/by-name/ap/apache-directory-server/package.nix b/pkgs/by-name/ap/apache-directory-server/package.nix index d53e816461ee..c217bd94f90a 100644 --- a/pkgs/by-name/ap/apache-directory-server/package.nix +++ b/pkgs/by-name/ap/apache-directory-server/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { --add-flags "-classpath $classpath org.apache.directory.server.UberjarMain" ''; - meta = with lib; { + meta = { description = "Extensible and embeddable directory server"; mainProgram = "apache-directory-server"; homepage = "https://directory.apache.org/apacheds/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.ners ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ners ]; }; } diff --git a/pkgs/by-name/ap/apache-directory-studio/package.nix b/pkgs/by-name/ap/apache-directory-studio/package.nix index 6fd1e7301e56..ee7f854042cf 100644 --- a/pkgs/by-name/ap/apache-directory-studio/package.nix +++ b/pkgs/by-name/ap/apache-directory-studio/package.nix @@ -74,17 +74,17 @@ stdenv.mkDerivation rec { install -D -t "$out/share/applications" ${desktopItem}/share/applications/* ''; - meta = with lib; { + meta = { description = "Eclipse-based LDAP browser and directory client"; homepage = "https://directory.apache.org/studio/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.asl20; + license = lib.licenses.asl20; # Upstream supports macOS and Windows too. - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "ApacheDirectoryStudio"; }; } diff --git a/pkgs/by-name/ap/apache-flex-sdk/package.nix b/pkgs/by-name/ap/apache-flex-sdk/package.nix index 210efb7ffd44..df05bd8aefd0 100644 --- a/pkgs/by-name/ap/apache-flex-sdk/package.nix +++ b/pkgs/by-name/ap/apache-flex-sdk/package.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { dontFixup = true; - meta = with lib; { + meta = { description = "Flex SDK for Adobe Flash / ActionScript"; homepage = "https://flex.apache.org/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ dywedir ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ dywedir ]; }; } diff --git a/pkgs/by-name/ap/apache-users/package.nix b/pkgs/by-name/ap/apache-users/package.nix index a60fad578c87..6948b635d718 100644 --- a/pkgs/by-name/ap/apache-users/package.nix +++ b/pkgs/by-name/ap/apache-users/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Username Enumeration through Apache UserDir"; homepage = "https://labs.portcullis.co.uk/downloads/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ emilytrau ]; mainProgram = "apache-users"; }; }) diff --git a/pkgs/by-name/ap/apbs/package.nix b/pkgs/by-name/ap/apbs/package.nix index db801d5ad865..81ed839f0951 100644 --- a/pkgs/by-name/ap/apbs/package.nix +++ b/pkgs/by-name/ap/apbs/package.nix @@ -40,13 +40,13 @@ let suitesparse ]; - meta = with lib; { + meta = { description = "Fork of the Finite Element ToolKit from fetk.org"; homepage = "https://github.com/Electrostatics/FETK"; changelog = "https://github.com/Electrostatics/FETK/releases/tag/${finalAttrs.version}"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; }); in @@ -96,13 +96,13 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Software for biomolecular electrostatics and solvation calculations"; mainProgram = "apbs"; homepage = "https://www.poissonboltzmann.org/"; changelog = "https://github.com/Electrostatics/apbs/releases/tag/v${finalAttrs.version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ap/apcupsd/package.nix b/pkgs/by-name/ap/apcupsd/package.nix index aba4a4a1b9bd..0588c7affbf3 100644 --- a/pkgs/by-name/ap/apcupsd/package.nix +++ b/pkgs/by-name/ap/apcupsd/package.nix @@ -98,11 +98,11 @@ stdenv.mkDerivation rec { passthru.tests.smoke = nixosTests.apcupsd; - meta = with lib; { + meta = { description = "Daemon for controlling APC UPSes"; homepage = "http://www.apcupsd.com/"; - license = licenses.gpl2Only; - platforms = platforms.linux ++ platforms.darwin; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/ap/apfel/package.nix b/pkgs/by-name/ap/apfel/package.nix index 5afecc9172ae..3432d1beec5e 100644 --- a/pkgs/by-name/ap/apfel/package.nix +++ b/pkgs/by-name/ap/apfel/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-DAPFEL_VERSION=${version}"; - meta = with lib; { + meta = { description = "PDF Evolution Library"; homepage = "https://apfel.mi.infn.it/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ veprbl ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ veprbl ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ap/apfelgrid/package.nix b/pkgs/by-name/ap/apfelgrid/package.nix index 1ed9f0782e18..6f8a593af1ac 100644 --- a/pkgs/by-name/ap/apfelgrid/package.nix +++ b/pkgs/by-name/ap/apfelgrid/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Ultra-fast theory predictions for collider observables"; mainProgram = "apfelgrid-config"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://nhartland.github.io/APFELgrid/"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/ap/apfs-fuse/package.nix b/pkgs/by-name/ap/apfs-fuse/package.nix index 4baa335c315c..87d9b78f61d2 100644 --- a/pkgs/by-name/ap/apfs-fuse/package.nix +++ b/pkgs/by-name/ap/apfs-fuse/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation { ln -s $out/bin/apfs-fuse $out/bin/mount.fuse.apfs-fuse ''; - meta = with lib; { + meta = { homepage = "https://github.com/sgan81/apfs-fuse"; description = "FUSE driver for APFS (Apple File System)"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "apfs-fuse"; - maintainers = with maintainers; [ ealasu ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ealasu ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ap/apfsprogs/package.nix b/pkgs/by-name/ap/apfsprogs/package.nix index 1ea1b3595633..7b5412e0c6f4 100644 --- a/pkgs/by-name/ap/apfsprogs/package.nix +++ b/pkgs/by-name/ap/apfsprogs/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = with lib; { + meta = { description = "Experimental APFS tools for linux"; homepage = "https://github.com/linux-apfs/apfsprogs"; changelog = "https://github.com/linux-apfs/apfsprogs/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Luflosi ]; }; }) diff --git a/pkgs/by-name/ap/apgdiff/package.nix b/pkgs/by-name/ap/apgdiff/package.nix index 23f2213939e3..17bd4b786974 100644 --- a/pkgs/by-name/ap/apgdiff/package.nix +++ b/pkgs/by-name/ap/apgdiff/package.nix @@ -36,12 +36,12 @@ maven.buildMavenPackage rec { --add-flags "-jar $out/lib/apgdiff.jar" ''; - meta = with lib; { + meta = { description = "Another PostgreSQL diff tool"; mainProgram = "apgdiff"; homepage = "https://apgdiff.com"; - license = licenses.mit; + license = lib.licenses.mit; inherit (jre.meta) platforms; - maintainers = [ maintainers.misterio77 ]; + maintainers = [ lib.maintainers.misterio77 ]; }; } diff --git a/pkgs/by-name/ap/api-linter/package.nix b/pkgs/by-name/ap/api-linter/package.nix index 99fc95a94be3..dacce7053c49 100644 --- a/pkgs/by-name/ap/api-linter/package.nix +++ b/pkgs/by-name/ap/api-linter/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Linter for APIs defined in protocol buffers"; homepage = "https://github.com/googleapis/api-linter/"; changelog = "https://github.com/googleapis/api-linter/releases/tag/${src.rev}"; - license = licenses.asl20; - maintainers = with maintainers; [ xrelkd ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ xrelkd ]; mainProgram = "api-linter"; }; } diff --git a/pkgs/by-name/ap/apitrace/package.nix b/pkgs/by-name/ap/apitrace/package.nix index b85d3de67aea..b2553e23d1dc 100644 --- a/pkgs/by-name/ap/apitrace/package.nix +++ b/pkgs/by-name/ap/apitrace/package.nix @@ -96,10 +96,10 @@ stdenv.mkDerivation rec { wrapQtApp $out/bin/qapitrace ''; - meta = with lib; { + meta = { homepage = "https://apitrace.github.io"; description = "Tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ap/apkg/package.nix b/pkgs/by-name/ap/apkg/package.nix index 0fcca3c6e04e..f4b845e8940a 100644 --- a/pkgs/by-name/ap/apkg/package.nix +++ b/pkgs/by-name/ap/apkg/package.nix @@ -62,12 +62,12 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Upstream packaging automation tool"; homepage = "https://pkg.labs.nic.cz/pages/apkg"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ - maintainers.vcunat # close to upstream + lib.maintainers.vcunat # close to upstream ]; mainProgram = "apkg"; }; diff --git a/pkgs/by-name/ap/apkid/package.nix b/pkgs/by-name/ap/apkid/package.nix index 2ee7d82560bc..f831f1b166e9 100644 --- a/pkgs/by-name/ap/apkid/package.nix +++ b/pkgs/by-name/ap/apkid/package.nix @@ -35,12 +35,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "apkid" ]; - meta = with lib; { + meta = { description = "Android Application Identifier"; homepage = "https://github.com/rednaga/APKiD"; changelog = "https://github.com/rednaga/APKiD/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "apkid"; }; } diff --git a/pkgs/by-name/ap/apksigcopier/package.nix b/pkgs/by-name/ap/apksigcopier/package.nix index 58ee87f22228..0f78df25af6e 100644 --- a/pkgs/by-name/ap/apksigcopier/package.nix +++ b/pkgs/by-name/ap/apksigcopier/package.nix @@ -61,7 +61,7 @@ python3.pkgs.buildPythonApplication rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Copy/extract/patch android apk signatures & compare APKs"; mainProgram = "apksigcopier"; longDescription = '' @@ -76,7 +76,7 @@ python3.pkgs.buildPythonApplication rec { * compare two APKs with different signatures (requires apksigner) ''; homepage = "https://github.com/obfusk/apksigcopier"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ obfusk ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ obfusk ]; }; } diff --git a/pkgs/by-name/ap/apng2gif/package.nix b/pkgs/by-name/ap/apng2gif/package.nix index 9c9f4b09a6e5..5d302e1ca6bd 100644 --- a/pkgs/by-name/ap/apng2gif/package.nix +++ b/pkgs/by-name/ap/apng2gif/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://apng2gif.sourceforge.net/"; description = "Simple program that converts APNG files to animated GIF format"; - license = licenses.zlib; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ap/apngopt/package.nix b/pkgs/by-name/ap/apngopt/package.nix index 52a178c6ef0a..649162226f34 100644 --- a/pkgs/by-name/ap/apngopt/package.nix +++ b/pkgs/by-name/ap/apngopt/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/apng/"; description = "Optimizes APNG animations"; - license = licenses.zlib; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ap/apparix/package.nix b/pkgs/by-name/ap/apparix/package.nix index da89f91f048e..3d3391761461 100644 --- a/pkgs/by-name/ap/apparix/package.nix +++ b/pkgs/by-name/ap/apparix/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "http://micans.org/apparix"; description = "Add directory bookmarks, distant listing, and distant editing to the command line"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; mainProgram = "apparix"; }; } diff --git a/pkgs/by-name/ap/appeditor/package.nix b/pkgs/by-name/ap/appeditor/package.nix index 4ab3c865f91f..d422afdf677b 100644 --- a/pkgs/by-name/ap/appeditor/package.nix +++ b/pkgs/by-name/ap/appeditor/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Edit the Pantheon desktop application menu"; homepage = "https://github.com/donadigo/appeditor"; - maintainers = with maintainers; [ xiorcale ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ xiorcale ]; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; mainProgram = "com.github.donadigo.appeditor"; }; } diff --git a/pkgs/by-name/ap/appflowy/package.nix b/pkgs/by-name/ap/appflowy/package.nix index 6c8749c59b61..6565c8c0a8af 100644 --- a/pkgs/by-name/ap/appflowy/package.nix +++ b/pkgs/by-name/ap/appflowy/package.nix @@ -101,14 +101,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Open-source alternative to Notion"; homepage = "https://www.appflowy.io/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.agpl3Only; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.agpl3Only; changelog = "https://github.com/AppFlowy-IO/appflowy/releases/tag/${finalAttrs.version}"; - maintainers = with maintainers; [ darkonion0 ]; - platforms = [ "x86_64-linux" ] ++ platforms.darwin; + maintainers = with lib.maintainers; [ darkonion0 ]; + platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin; mainProgram = "appflowy"; }; }) diff --git a/pkgs/by-name/ap/appgate-sdp/package.nix b/pkgs/by-name/ap/appgate-sdp/package.nix index 00e205035f8b..f9e5666bad4b 100644 --- a/pkgs/by-name/ap/appgate-sdp/package.nix +++ b/pkgs/by-name/ap/appgate-sdp/package.nix @@ -155,13 +155,13 @@ stdenv.mkDerivation rec { wrapProgram $out/opt/appgate/linux/set_dns --set PYTHONPATH $PYTHONPATH ''; - meta = with lib; { + meta = { description = "Appgate SDP (Software Defined Perimeter) desktop client"; homepage = "https://www.appgate.com/support/software-defined-perimeter-support"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ ymatsiuk ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ymatsiuk ]; mainProgram = "appgate"; }; } diff --git a/pkgs/by-name/ap/apple-cursor/package.nix b/pkgs/by-name/ap/apple-cursor/package.nix index f4633e7c6f2b..6d88f54fd724 100644 --- a/pkgs/by-name/ap/apple-cursor/package.nix +++ b/pkgs/by-name/ap/apple-cursor/package.nix @@ -34,16 +34,16 @@ stdenv.mkDerivation { cp -r macOS/macOS* $out/share/icons/ ''; - meta = with lib; { + meta = { description = "Opensource macOS Cursors"; homepage = "https://github.com/ful1e5/apple_cursor"; license = [ - licenses.gpl3Only + lib.licenses.gpl3Only # Potentially a derivative work of copyrighted Apple designs - licenses.unfree + lib.licenses.unfree ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ colemickens dxwil ]; diff --git a/pkgs/by-name/ap/applgrid/package.nix b/pkgs/by-name/ap/applgrid/package.nix index 23bb457edd2a..8df1430559d4 100644 --- a/pkgs/by-name/ap/applgrid/package.nix +++ b/pkgs/by-name/ap/applgrid/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Fast and flexible way to reproduce the results of full NLO calculations with any input parton distribution set in only a few milliseconds rather than the weeks normally required to gain adequate statistics"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "http://applgrid.hepforge.org"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/ap/approxmc/package.nix b/pkgs/by-name/ap/approxmc/package.nix index 20460dc5428b..cb6cb3fd95b6 100644 --- a/pkgs/by-name/ap/approxmc/package.nix +++ b/pkgs/by-name/ap/approxmc/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { louvain-community ]; - meta = with lib; { + meta = { description = "Approximate Model Counter"; homepage = "https://github.com/meelgroup/approxmc"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; + platforms = lib.platforms.linux; mainProgram = "approxmc"; }; }) diff --git a/pkgs/by-name/ap/appstream-glib/package.nix b/pkgs/by-name/ap/appstream-glib/package.nix index 7ea04c570994..150706a13108 100644 --- a/pkgs/by-name/ap/appstream-glib/package.nix +++ b/pkgs/by-name/ap/appstream-glib/package.nix @@ -91,11 +91,11 @@ stdenv.mkDerivation rec { moveToOutput "share/installed-tests" "$installedTests" ''; - meta = with lib; { + meta = { description = "Objects and helper methods to read and write AppStream metadata"; homepage = "https://people.freedesktop.org/~hughsient/appstream-glib/"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ap/apr/package.nix b/pkgs/by-name/ap/apr/package.nix index f9feea54a782..f23757271e5c 100644 --- a/pkgs/by-name/ap/apr/package.nix +++ b/pkgs/by-name/ap/apr/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://apr.apache.org/"; description = "Apache Portable Runtime library"; mainProgram = "apr-1-config"; - platforms = platforms.all; - license = licenses.asl20; + platforms = lib.platforms.all; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ap/aprutil/package.nix b/pkgs/by-name/ap/aprutil/package.nix index da6da9d000a7..6b396acba190 100644 --- a/pkgs/by-name/ap/aprutil/package.nix +++ b/pkgs/by-name/ap/aprutil/package.nix @@ -111,12 +111,12 @@ stdenv.mkDerivation rec { inherit sslSupport bdbSupport ldapSupport; }; - meta = with lib; { + meta = { homepage = "https://apr.apache.org/"; description = "Companion library to APR, the Apache Portable Runtime"; mainProgram = "apu-1-config"; maintainers = [ ]; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/ap/aprx/package.nix b/pkgs/by-name/ap/aprx/package.nix index 6137983e193c..690540326d52 100644 --- a/pkgs/by-name/ap/aprx/package.nix +++ b/pkgs/by-name/ap/aprx/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { mkdir -p $out/bin $out/share/man/man8 $out/etc ''; - meta = with lib; { + meta = { description = "Multitalented APRS i-gate / digipeater"; homepage = "http://thelifeofkenneth.com/aprx"; - license = licenses.bsd3; - maintainers = with maintainers; [ sarcasticadmin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sarcasticadmin ]; mainProgram = "aprx"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ap/apt-mirror/package.nix b/pkgs/by-name/ap/apt-mirror/package.nix index 8f606e921af0..e3fa1124b098 100644 --- a/pkgs/by-name/ap/apt-mirror/package.nix +++ b/pkgs/by-name/ap/apt-mirror/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Tool that provides the ability to mirror any parts of apt sources"; homepage = "https://github.com/apt-mirror/apt-mirror"; changelog = "https://github.com/apt-mirror/apt-mirror/blob/${finalAttrs.src.rev}/CHANGELOG"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ arthsmn ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ arthsmn ]; mainProgram = "apt-mirror"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ap/aptdec/package.nix b/pkgs/by-name/ap/aptdec/package.nix index 213c7762809d..30aca08b3fee 100644 --- a/pkgs/by-name/ap/aptdec/package.nix +++ b/pkgs/by-name/ap/aptdec/package.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { cmakeFlags = [ (lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.10") ]; - meta = with lib; { + meta = { description = "NOAA APT satellite imagery decoding library"; mainProgram = "aptdec"; homepage = "https://github.com/Xerbo/aptdec"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ aciceri alexwinter ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/aq/aquosctl/package.nix b/pkgs/by-name/aq/aquosctl/package.nix index e3534fac9682..72b83aa21b2d 100644 --- a/pkgs/by-name/aq/aquosctl/package.nix +++ b/pkgs/by-name/aq/aquosctl/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Sharp Aquos television RS-232 control application"; homepage = "https://github.com/jdwhite/aquosctl"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.linux; mainProgram = "aquosctl"; }; } diff --git a/pkgs/by-name/ar/arachne-pnr/package.nix b/pkgs/by-name/ar/arachne-pnr/package.nix index a9870ca9f6e1..6b3b29170e6b 100644 --- a/pkgs/by-name/ar/arachne-pnr/package.nix +++ b/pkgs/by-name/ar/arachne-pnr/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { --replace 'echo UNKNOWN' 'echo ${lib.substring 0 10 src.rev}' ''; - meta = with lib; { + meta = { description = "Place and route tool for FPGAs"; mainProgram = "arachne-pnr"; longDescription = '' @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { the IceStorm [2] icepack command. ''; homepage = "https://github.com/cseed/arachne-pnr"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ shell thoughtpolice ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ar/aragorn/package.nix b/pkgs/by-name/ar/aragorn/package.nix index 5f0d71683a8f..deaf14cc0401 100644 --- a/pkgs/by-name/ar/aragorn/package.nix +++ b/pkgs/by-name/ar/aragorn/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Detects tRNA, mtRNA, and tmRNA genes in nucleotide sequences"; mainProgram = "aragorn"; homepage = "https://www.trna.se/ARAGORN/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ar/arc-icon-theme/package.nix b/pkgs/by-name/ar/arc-icon-theme/package.nix index 7d17fdfc09c7..4a89c1116833 100644 --- a/pkgs/by-name/ar/arc-icon-theme/package.nix +++ b/pkgs/by-name/ar/arc-icon-theme/package.nix @@ -37,12 +37,12 @@ stdenvNoCC.mkDerivation rec { postFixup = "gtk-update-icon-cache $out/share/icons/Arc"; - meta = with lib; { + meta = { description = "Arc icon theme"; homepage = "https://github.com/horst3180/arc-icon-theme"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # moka-icon-theme dependency is restricted to linux - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/ar/arc-theme/package.nix b/pkgs/by-name/ar/arc-theme/package.nix index ce38dabf68ac..a1e3bf7649c9 100644 --- a/pkgs/by-name/ar/arc-theme/package.nix +++ b/pkgs/by-name/ar/arc-theme/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { "-Dgnome_shell_gresource=true" ]; - meta = with lib; { + meta = { description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell"; homepage = "https://github.com/jnsh/arc-theme"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ simonvandel romildo ]; diff --git a/pkgs/by-name/ar/arc_unpacker/package.nix b/pkgs/by-name/ar/arc_unpacker/package.nix index 9f6853b3b055..1d75fce17a12 100644 --- a/pkgs/by-name/ar/arc_unpacker/package.nix +++ b/pkgs/by-name/ar/arc_unpacker/package.nix @@ -99,12 +99,12 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "Tool to extract files from visual novel archives"; homepage = "https://github.com/vn-tools/arc_unpacker"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ midchildan ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ midchildan ]; + platforms = lib.platforms.all; mainProgram = "arc_unpacker"; }; } diff --git a/pkgs/by-name/ar/arch-install-scripts/package.nix b/pkgs/by-name/ar/arch-install-scripts/package.nix index 310dd15257ad..f02d4d73d5f5 100644 --- a/pkgs/by-name/ar/arch-install-scripts/package.nix +++ b/pkgs/by-name/ar/arch-install-scripts/package.nix @@ -111,14 +111,14 @@ resholve.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Useful scripts for installing Arch Linux"; longDescription = '' A small suite of scripts aimed at automating some menial tasks when installing Arch Linux. ''; homepage = "https://github.com/archlinux/arch-install-scripts"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ samlukeyes123 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ samlukeyes123 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ar/archiver/package.nix b/pkgs/by-name/ar/archiver/package.nix index c46930d9f3b9..62f06dce4d8c 100644 --- a/pkgs/by-name/ar/archiver/package.nix +++ b/pkgs/by-name/ar/archiver/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Easily create & extract archives, and compress & decompress files of various formats"; homepage = "https://github.com/mholt/archiver"; mainProgram = "arc"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; knownVulnerabilities = [ "CVE-2024-0406" "Package is unmaintained upstream" diff --git a/pkgs/by-name/ar/archivy/package.nix b/pkgs/by-name/ar/archivy/package.nix index cd9c0842e59d..49e26bf1c979 100644 --- a/pkgs/by-name/ar/archivy/package.nix +++ b/pkgs/by-name/ar/archivy/package.nix @@ -61,11 +61,11 @@ py.pkgs.buildPythonApplication rec { # __init__.py attempts to mkdir in read-only file system doCheck = false; - meta = with lib; { + meta = { description = "Self-hosted knowledge repository"; homepage = "https://archivy.github.io"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ar/ardopc/package.nix b/pkgs/by-name/ar/ardopc/package.nix index 82121c5e107a..eb7ce91710ea 100644 --- a/pkgs/by-name/ar/ardopc/package.nix +++ b/pkgs/by-name/ar/ardopc/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "ARDOP (Amateur Radio Digital Open Protocol) TNC implementation by John Wiseman (GM8BPQ)"; homepage = "https://github.com/hamarituc/ardop/ARDOPC"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ oliver-koss ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ oliver-koss ]; mainProgram = "ardopc"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ar/arduino-ci/package.nix b/pkgs/by-name/ar/arduino-ci/package.nix index af301786fee7..9553322bfec1 100644 --- a/pkgs/by-name/ar/arduino-ci/package.nix +++ b/pkgs/by-name/ar/arduino-ci/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/arduino-ci --prefix PATH ":" "${runtimePath}" ''; - meta = with lib; { + meta = { description = "CI for Arduino Libraries"; mainProgram = "arduino-ci"; homepage = src.meta.homepage; - license = licenses.mit; - maintainers = with maintainers; [ ryantm ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ryantm ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ar/arduino-mk/package.nix b/pkgs/by-name/ar/arduino-mk/package.nix index 9f6b8168aeb8..e83caa531a60 100644 --- a/pkgs/by-name/ar/arduino-mk/package.nix +++ b/pkgs/by-name/ar/arduino-mk/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Makefile for Arduino sketches"; homepage = "https://github.com/sudar/Arduino-Makefile"; - license = licenses.lgpl21; - maintainers = [ maintainers.eyjhb ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.eyjhb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ar/arduinoOTA/package.nix b/pkgs/by-name/ar/arduinoOTA/package.nix index 8147d512dafa..3419ba6bfe52 100644 --- a/pkgs/by-name/ar/arduinoOTA/package.nix +++ b/pkgs/by-name/ar/arduinoOTA/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/arduino/arduinoOTA"; description = "Tool for uploading programs to Arduino boards over a network"; mainProgram = "arduinoOTA"; - license = licenses.gpl3; - maintainers = with maintainers; [ poelzi ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ poelzi ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ar/ares-rs/package.nix b/pkgs/by-name/ar/ares-rs/package.nix index 1226dbe2b8ba..5da95890878e 100644 --- a/pkgs/by-name/ar/ares-rs/package.nix +++ b/pkgs/by-name/ar/ares-rs/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { OPENSSL_NO_VENDOR = true; }; - meta = with lib; { + meta = { description = "Automated decoding of encrypted text without knowing the key or ciphers used"; homepage = "https://github.com/bee-san/ares"; changelog = "https://github.com/bee-san/Ares/releases/tag/v${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ares"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ar/argo-rollouts/package.nix b/pkgs/by-name/ar/argo-rollouts/package.nix index 9a91e8bce35e..22c39216b2c9 100644 --- a/pkgs/by-name/ar/argo-rollouts/package.nix +++ b/pkgs/by-name/ar/argo-rollouts/package.nix @@ -25,10 +25,10 @@ buildGoModule rec { "cmd/kubectl-argo-rollouts" ]; - meta = with lib; { + meta = { description = "Kubernetes Progressive Delivery Controller"; homepage = "https://github.com/argoproj/argo-rollouts/"; - license = licenses.asl20; - maintainers = with maintainers; [ psibi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ psibi ]; }; } diff --git a/pkgs/by-name/ar/argocd-autopilot/package.nix b/pkgs/by-name/ar/argocd-autopilot/package.nix index 8965fa56c24e..586b05e119db 100644 --- a/pkgs/by-name/ar/argocd-autopilot/package.nix +++ b/pkgs/by-name/ar/argocd-autopilot/package.nix @@ -50,13 +50,13 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "ArgoCD Autopilot"; mainProgram = "argocd-autopilot"; downloadPage = "https://github.com/argoproj-labs/argocd-autopilot"; homepage = "https://argocd-autopilot.readthedocs.io/en/stable/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sagikazarmark ]; }; diff --git a/pkgs/by-name/ar/argocd/package.nix b/pkgs/by-name/ar/argocd/package.nix index 45ea37d35d49..a91bac02d0c8 100644 --- a/pkgs/by-name/ar/argocd/package.nix +++ b/pkgs/by-name/ar/argocd/package.nix @@ -100,13 +100,13 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Declarative continuous deployment for Kubernetes"; mainProgram = "argocd"; downloadPage = "https://github.com/argoproj/argo-cd"; homepage = "https://argo-cd.readthedocs.io/en/stable/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ shahrukh330 qjoly FKouhai diff --git a/pkgs/by-name/ar/argononed/package.nix b/pkgs/by-name/ar/argononed/package.nix index 4abec044c337..3dd9495a8c76 100644 --- a/pkgs/by-name/ar/argononed/package.nix +++ b/pkgs/by-name/ar/argononed/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/DarkElvenAngel/argononed"; description = "Replacement daemon for the Argon One Raspberry Pi case"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.misterio77 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.misterio77 ]; }; } diff --git a/pkgs/by-name/ar/argp-standalone/package.nix b/pkgs/by-name/ar/argp-standalone/package.nix index eb566ed184b9..260f0a392f4c 100644 --- a/pkgs/by-name/ar/argp-standalone/package.nix +++ b/pkgs/by-name/ar/argp-standalone/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/argp-standalone/argp-standalone"; description = "Standalone version of arguments parsing functions from Glibc"; - platforms = platforms.unix; - maintainers = with maintainers; [ amar1729 ]; - license = licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ amar1729 ]; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/by-name/ar/argparse/package.nix b/pkgs/by-name/ar/argparse/package.nix index fdc58a33f769..19eebd6d7c4a 100644 --- a/pkgs/by-name/ar/argparse/package.nix +++ b/pkgs/by-name/ar/argparse/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { cmake ]; - meta = with lib; { + meta = { description = "Argument Parser for Modern C++"; homepage = "https://github.com/p-ranav/argparse"; - maintainers = with maintainers; [ _2gn ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ _2gn ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ar/argus-clients/package.nix b/pkgs/by-name/ar/argus-clients/package.nix index cc41700daa91..32e81d159849 100644 --- a/pkgs/by-name/ar/argus-clients/package.nix +++ b/pkgs/by-name/ar/argus-clients/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { libnsl ]; - meta = with lib; { + meta = { description = "Clients for ARGUS"; longDescription = '' Clients for Audit Record Generation and @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { you will find Argus a useful tool. ''; homepage = "http://qosient.com/argus"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ar/argus/package.nix b/pkgs/by-name/ar/argus/package.nix index cf1562e523e3..8aa21459e36b 100644 --- a/pkgs/by-name/ar/argus/package.nix +++ b/pkgs/by-name/ar/argus/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { --replace /usr/bin/snmpwalk ${lib.getBin net-snmp}/bin/snmpwalk ''; - meta = with lib; { + meta = { description = "Audit Record Generation and Utilization System for networks"; longDescription = '' The Argus Project is focused on developing all @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { you will find Argus a useful tool. ''; homepage = "http://qosient.com/argus"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ar/argyllcms/package.nix b/pkgs/by-name/ar/argyllcms/package.nix index 7ab53ed7f5fc..2fa6337ae613 100644 --- a/pkgs/by-name/ar/argyllcms/package.nix +++ b/pkgs/by-name/ar/argyllcms/package.nix @@ -182,11 +182,11 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { homepage = "https://www.argyllcms.com/"; description = "Color management system (compatible with ICC)"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ar/aribb24/package.nix b/pkgs/by-name/ar/aribb24/package.nix index 807d706c9dbb..f1cf59a5cf20 100644 --- a/pkgs/by-name/ar/aribb24/package.nix +++ b/pkgs/by-name/ar/aribb24/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Library for ARIB STD-B24, decoding JIS 8 bit characters and parsing MPEG-TS stream"; homepage = "https://code.videolan.org/jeeb/aribb24/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; pkgConfigModules = [ "aribb24" ]; - platforms = platforms.unix; - maintainers = with maintainers; [ jopejoe1 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/ar/aribb25/package.nix b/pkgs/by-name/ar/aribb25/package.nix index 8af9c4f65b6e..1e7acc40b713 100644 --- a/pkgs/by-name/ar/aribb25/package.nix +++ b/pkgs/by-name/ar/aribb25/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { }) ]; - meta = with lib; { + meta = { description = "Sample implementation of the ARIB STD-B25 standard"; homepage = "https://code.videolan.org/videolan/aribb25"; - license = licenses.isc; - maintainers = with maintainers; [ midchildan ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ midchildan ]; mainProgram = "b25"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ar/ario/package.nix b/pkgs/by-name/ar/ario/package.nix index 63de04284726..d08fca8aed30 100644 --- a/pkgs/by-name/ar/ario/package.nix +++ b/pkgs/by-name/ar/ario/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "GTK client for MPD (Music player daemon)"; mainProgram = "ario"; homepage = "https://ario-player.sourceforge.net/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.garrison ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.garrison ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ar/arjun-cnf/package.nix b/pkgs/by-name/ar/arjun-cnf/package.nix index 0542eef55abc..cdac7ba155a5 100644 --- a/pkgs/by-name/ar/arjun-cnf/package.nix +++ b/pkgs/by-name/ar/arjun-cnf/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "cmake_minimum_required(VERSION 3.3 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "CNF minimizer and minimal independent set calculator"; homepage = "https://github.com/meelgroup/arjun"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; + platforms = lib.platforms.linux; mainProgram = "arjun"; }; }) diff --git a/pkgs/by-name/ar/arkade/package.nix b/pkgs/by-name/ar/arkade/package.nix index 56dc6928c2b9..aa61568f2b1c 100644 --- a/pkgs/by-name/ar/arkade/package.nix +++ b/pkgs/by-name/ar/arkade/package.nix @@ -50,12 +50,12 @@ buildGoModule rec { --fish <($out/bin/arkade completion fish) ''; - meta = with lib; { + meta = { homepage = "https://github.com/alexellis/arkade"; description = "Open Source Kubernetes Marketplace"; mainProgram = "arkade"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ welteki techknowlogick qjoly diff --git a/pkgs/by-name/ar/armadillo/package.nix b/pkgs/by-name/ar/armadillo/package.nix index 4404a640e21e..82d9a248bc96 100644 --- a/pkgs/by-name/ar/armadillo/package.nix +++ b/pkgs/by-name/ar/armadillo/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { patches = [ ./use-unix-config-on-OS-X.patch ]; - meta = with lib; { + meta = { description = "C++ linear algebra library"; homepage = "https://arma.sourceforge.net"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ juliendehos ]; }; diff --git a/pkgs/by-name/ar/armbian-firmware/package.nix b/pkgs/by-name/ar/armbian-firmware/package.nix index 67ec471c5df6..adb54adc6e44 100644 --- a/pkgs/by-name/ar/armbian-firmware/package.nix +++ b/pkgs/by-name/ar/armbian-firmware/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation { dontBuild = true; dontFixup = true; - meta = with lib; { + meta = { description = "Firmware from Armbian"; homepage = "https://github.com/armbian/firmware"; - license = licenses.unfree; - platforms = platforms.all; - maintainers = with maintainers; [ zaldnoay ]; + license = lib.licenses.unfree; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zaldnoay ]; }; } diff --git a/pkgs/by-name/ar/armips/package.nix b/pkgs/by-name/ar/armips/package.nix index 38a741b51356..72c1bada4f56 100644 --- a/pkgs/by-name/ar/armips/package.nix +++ b/pkgs/by-name/ar/armips/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/Kingcom/armips"; description = "Assembler for various ARM and MIPS platforms"; mainProgram = "armips"; - license = licenses.mit; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/by-name/ar/armitage/package.nix b/pkgs/by-name/ar/armitage/package.nix index 91b219c024bf..cfda2a98351b 100644 --- a/pkgs/by-name/ar/armitage/package.nix +++ b/pkgs/by-name/ar/armitage/package.nix @@ -131,12 +131,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Graphical cyber attack management tool for Metasploit"; homepage = "https://github.com/r00t0v3rr1d3/armitage"; - license = licenses.bsd3; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; mainProgram = "armitage"; }; }) diff --git a/pkgs/by-name/ar/arp-scan/package.nix b/pkgs/by-name/ar/arp-scan/package.nix index a1216e9d8876..0efca7f8033f 100644 --- a/pkgs/by-name/ar/arp-scan/package.nix +++ b/pkgs/by-name/ar/arp-scan/package.nix @@ -46,16 +46,16 @@ stdenv.mkDerivation rec { done; ''; - meta = with lib; { + meta = { description = "ARP scanning and fingerprinting tool"; longDescription = '' Arp-scan is a command-line tool that uses the ARP protocol to discover and fingerprint IP hosts on the local network. ''; homepage = "https://github.com/royhills/arp-scan/wiki/arp-scan-User-Guide"; - license = licenses.gpl3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor mikoim r-burns diff --git a/pkgs/by-name/ar/arpa2cm/package.nix b/pkgs/by-name/ar/arpa2cm/package.nix index b9d0cfd67d7b..56f42060ed7f 100644 --- a/pkgs/by-name/ar/arpa2cm/package.nix +++ b/pkgs/by-name/ar/arpa2cm/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "CMake Module library for the ARPA2 project"; longDescription = '' The CMake module library for the ARPA2 project, including the LillyDAP, @@ -32,8 +32,8 @@ stdenv.mkDerivation rec { the ARPA2 software stack. ''; homepage = "https://gitlab.com/arpa2/arpa2cm"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fufexan ]; }; diff --git a/pkgs/by-name/ar/arphic-ukai/package.nix b/pkgs/by-name/ar/arphic-ukai/package.nix index 6df92965f5ef..c4addb593b51 100644 --- a/pkgs/by-name/ar/arphic-ukai/package.nix +++ b/pkgs/by-name/ar/arphic-ukai/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CJK Unicode font Kai style"; homepage = "https://www.freedesktop.org/wiki/Software/CJKUnifonts/"; - license = licenses.arphicpl; - maintainers = [ maintainers.changlinli ]; - platforms = platforms.all; + license = lib.licenses.arphicpl; + maintainers = [ lib.maintainers.changlinli ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ar/arphic-uming/package.nix b/pkgs/by-name/ar/arphic-uming/package.nix index 3d23d2e3c1ce..942b157f7f26 100644 --- a/pkgs/by-name/ar/arphic-uming/package.nix +++ b/pkgs/by-name/ar/arphic-uming/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CJK Unicode font Ming style"; homepage = "https://www.freedesktop.org/wiki/Software/CJKUnifonts/"; - license = licenses.arphicpl; - maintainers = [ maintainers.changlinli ]; - platforms = platforms.all; + license = lib.licenses.arphicpl; + maintainers = [ lib.maintainers.changlinli ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ar/arping/package.nix b/pkgs/by-name/ar/arping/package.nix index a53167badfd0..5acbd4d47f0d 100644 --- a/pkgs/by-name/ar/arping/package.nix +++ b/pkgs/by-name/ar/arping/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { libpcap ]; - meta = with lib; { + meta = { description = "Broadcasts a who-has ARP packet on the network and prints answers"; homepage = "https://github.com/ThomasHabets/arping"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ michalrus ]; - platforms = platforms.unix; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ michalrus ]; + platforms = lib.platforms.unix; mainProgram = "arping"; }; } diff --git a/pkgs/by-name/ar/arpoison/package.nix b/pkgs/by-name/ar/arpoison/package.nix index 5b6ec393016c..c7aaa0d8fcf2 100644 --- a/pkgs/by-name/ar/arpoison/package.nix +++ b/pkgs/by-name/ar/arpoison/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { cp arpoison.8.gz $out/share/man/man8 ''; - meta = with lib; { + meta = { description = "UNIX arp cache update utility"; homepage = "http://www.arpoison.net/"; - license = with licenses; [ gpl2Only ]; - maintainers = [ maintainers.michalrus ]; - platforms = platforms.unix; + license = with lib.licenses; [ gpl2Only ]; + maintainers = [ lib.maintainers.michalrus ]; + platforms = lib.platforms.unix; mainProgram = "arpoison"; }; } diff --git a/pkgs/by-name/ar/arrow-cpp/package.nix b/pkgs/by-name/ar/arrow-cpp/package.nix index 4ef558b4bf1e..50e138504ab1 100644 --- a/pkgs/by-name/ar/arrow-cpp/package.nix +++ b/pkgs/by-name/ar/arrow-cpp/package.nix @@ -306,12 +306,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Cross-language development platform for in-memory data"; homepage = "https://arrow.apache.org/docs/cpp/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tobim veprbl cpcloud diff --git a/pkgs/by-name/ar/artha/package.nix b/pkgs/by-name/ar/artha/package.nix index 6e106ce2880a..766cdb772c27 100644 --- a/pkgs/by-name/ar/artha/package.nix +++ b/pkgs/by-name/ar/artha/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { wordnet ]; - meta = with lib; { + meta = { description = "Offline thesaurus based on WordNet"; homepage = "https://artha.sourceforge.net"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "artha"; }; } diff --git a/pkgs/by-name/ar/artyFX/package.nix b/pkgs/by-name/ar/artyFX/package.nix index 3c9e24e534a5..d3219d8b3cdc 100644 --- a/pkgs/by-name/ar/artyFX/package.nix +++ b/pkgs/by-name/ar/artyFX/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 4.0)' ''; - meta = with lib; { + meta = { homepage = "http://openavproductions.com/artyfx/"; description = "LV2 plugin bundle of artistic realtime effects"; - license = licenses.gpl2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; # Build uses `-msse` and `-mfpmath=sse` badPlatforms = [ "aarch64-linux" ]; }; diff --git a/pkgs/by-name/ar/arubaotp-seed-extractor/package.nix b/pkgs/by-name/ar/arubaotp-seed-extractor/package.nix index 798168639aac..b28fce2c7aff 100644 --- a/pkgs/by-name/ar/arubaotp-seed-extractor/package.nix +++ b/pkgs/by-name/ar/arubaotp-seed-extractor/package.nix @@ -38,11 +38,11 @@ python3Packages.buildPythonApplication { ln -s "$libdir/main.py" $out/bin/arubaotp-seed-extractor ''; - meta = with lib; { + meta = { homepage = "https://github.com/andry08/ArubaOTP-seed-extractor"; description = "Extract TOTP seed instead of using ArubaOTP app"; mainProgram = "arubaotp-seed-extractor"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/ar/arxiv-latex-cleaner/package.nix b/pkgs/by-name/ar/arxiv-latex-cleaner/package.nix index 83e7e96a662f..0d869877bdeb 100644 --- a/pkgs/by-name/ar/arxiv-latex-cleaner/package.nix +++ b/pkgs/by-name/ar/arxiv-latex-cleaner/package.nix @@ -33,11 +33,11 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/google-research/arxiv-latex-cleaner"; description = "Easily clean the LaTeX code of your paper to submit to arXiv"; mainProgram = "arxiv_latex_cleaner"; - license = licenses.asl20; - maintainers = with maintainers; [ arkivm ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arkivm ]; }; } diff --git a/pkgs/by-name/as/asahi-bless/package.nix b/pkgs/by-name/as/asahi-bless/package.nix index a002b2c7cb5e..f7127f9e2858 100644 --- a/pkgs/by-name/as/asahi-bless/package.nix +++ b/pkgs/by-name/as/asahi-bless/package.nix @@ -16,12 +16,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-nfSJ9RkzFAWlxlfoUKk8ZmIXDJXoSyHCGgRgMy9FDkw="; cargoDepsName = pname; - meta = with lib; { + meta = { description = "Tool to select active boot partition on ARM Macs"; homepage = "https://crates.io/crates/asahi-bless"; - license = licenses.mit; - maintainers = with maintainers; [ lukaslihotzki ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukaslihotzki ]; mainProgram = "asahi-bless"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/as/asahi-btsync/package.nix b/pkgs/by-name/as/asahi-btsync/package.nix index b941c8e16097..86093c310485 100644 --- a/pkgs/by-name/as/asahi-btsync/package.nix +++ b/pkgs/by-name/as/asahi-btsync/package.nix @@ -16,12 +16,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-gGWhi0T7xDIsbzfw/KL3TSneLvQaiz/2xbpHeZt1i3I="; cargoDepsName = pname; - meta = with lib; { + meta = { description = "Tool to sync Bluetooth pairing keys with macos on ARM Macs"; homepage = "https://crates.io/crates/asahi-btsync"; - license = licenses.mit; - maintainers = with maintainers; [ lukaslihotzki ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukaslihotzki ]; mainProgram = "asahi-btsync"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/as/asahi-nvram/package.nix b/pkgs/by-name/as/asahi-nvram/package.nix index c6f6dbfb972f..779866ec040a 100644 --- a/pkgs/by-name/as/asahi-nvram/package.nix +++ b/pkgs/by-name/as/asahi-nvram/package.nix @@ -16,12 +16,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-NW/puo/Xoum7DjSQjBgilQcKbY3mAfVgXxUK6+1H1JI="; cargoDepsName = pname; - meta = with lib; { + meta = { description = "Tool to read and write nvram variables on ARM Macs"; homepage = "https://crates.io/crates/asahi-nvram"; - license = licenses.mit; - maintainers = with maintainers; [ lukaslihotzki ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukaslihotzki ]; mainProgram = "asahi-nvram"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/as/asahi-wifisync/package.nix b/pkgs/by-name/as/asahi-wifisync/package.nix index a3839a84e5cd..45257bc7ca54 100644 --- a/pkgs/by-name/as/asahi-wifisync/package.nix +++ b/pkgs/by-name/as/asahi-wifisync/package.nix @@ -16,12 +16,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ZxgRxQyDID3mBpr8dhHScctk14Pm9V51Gn24d24JyVk="; cargoDepsName = pname; - meta = with lib; { + meta = { description = "Tool to sync Wifi passwords with macos on ARM Macs"; homepage = "https://crates.io/crates/asahi-wifisync"; - license = licenses.mit; - maintainers = with maintainers; [ lukaslihotzki ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukaslihotzki ]; mainProgram = "asahi-wifisync"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/as/ascii/package.nix b/pkgs/by-name/as/ascii/package.nix index 699b65083a90..06180ba28fb7 100644 --- a/pkgs/by-name/as/ascii/package.nix +++ b/pkgs/by-name/as/ascii/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Interactive ASCII name and synonym chart"; mainProgram = "ascii"; homepage = "http://www.catb.org/~esr/ascii/"; changelog = "https://gitlab.com/esr/ascii/-/blob/${finalAttrs.version}/NEWS.adoc"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; }) diff --git a/pkgs/by-name/as/asciidoctor-with-extensions/package.nix b/pkgs/by-name/as/asciidoctor-with-extensions/package.nix index 1c21d8238659..c39ed47258ad 100644 --- a/pkgs/by-name/as/asciidoctor-with-extensions/package.nix +++ b/pkgs/by-name/as/asciidoctor-with-extensions/package.nix @@ -36,11 +36,11 @@ bundlerApp rec { updateScript = bundlerUpdateScript "asciidoctor-with-extensions"; }; - meta = with lib; { + meta = { description = "Faster Asciidoc processor written in Ruby, with many extensions enabled"; homepage = "https://asciidoctor.org/"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/as/asciidoctor/package.nix b/pkgs/by-name/as/asciidoctor/package.nix index 43218736abc1..88651f1c8d5b 100644 --- a/pkgs/by-name/as/asciidoctor/package.nix +++ b/pkgs/by-name/as/asciidoctor/package.nix @@ -17,14 +17,14 @@ bundlerApp { updateScript = bundlerUpdateScript "asciidoctor"; }; - meta = with lib; { + meta = { description = "Faster Asciidoc processor written in Ruby"; homepage = "https://asciidoctor.org/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gpyh nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/as/asciinema-scenario/package.nix b/pkgs/by-name/as/asciinema-scenario/package.nix index e81f5b3460e1..825d4a0aacad 100644 --- a/pkgs/by-name/as/asciinema-scenario/package.nix +++ b/pkgs/by-name/as/asciinema-scenario/package.nix @@ -15,10 +15,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-D9CSw05OFaWvBzGSEQmH8ao6gY/0OhQQ5gFkL1TVeO4="; - meta = with lib; { + meta = { description = "Create asciinema videos from a text file"; homepage = "https://github.com/garbas/asciinema-scenario/"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; mainProgram = "asciinema-scenario"; }; } diff --git a/pkgs/by-name/as/ashpd-demo/package.nix b/pkgs/by-name/as/ashpd-demo/package.nix index f03cbff96f3d..8b986b420188 100644 --- a/pkgs/by-name/as/ashpd-demo/package.nix +++ b/pkgs/by-name/as/ashpd-demo/package.nix @@ -97,12 +97,12 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Tool for playing with XDG desktop portals"; mainProgram = "ashpd-demo"; homepage = "https://github.com/bilelmoussaoui/ashpd/tree/master/ashpd-demo"; - license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/as/ashuffle/package.nix b/pkgs/by-name/as/ashuffle/package.nix index 445b02f07c40..7448598ae588 100644 --- a/pkgs/by-name/as/ashuffle/package.nix +++ b/pkgs/by-name/as/ashuffle/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-framework CoreFoundation"; }; - meta = with lib; { + meta = { homepage = "https://github.com/joshkunz/ashuffle"; description = "Automatic library-wide shuffle for mpd"; - maintainers = [ maintainers.tcbravo ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = [ lib.maintainers.tcbravo ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; mainProgram = "ashuffle"; }; } diff --git a/pkgs/by-name/as/asl/package.nix b/pkgs/by-name/as/asl/package.nix index 76a49b805c94..d8696bc13cf4 100644 --- a/pkgs/by-name/as/asl/package.nix +++ b/pkgs/by-name/as/asl/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p .objdir ''; - meta = with lib; { + meta = { homepage = "http://john.ccac.rwth-aachen.de:8000/as/index.html"; description = "Portable macro cross assembler"; longDescription = '' @@ -57,9 +57,9 @@ stdenv.mkDerivation (finalAttrs: { single-board computers, you also find CPU families in the target list that are used in workstations and PCs. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) # TODO: cross-compilation support diff --git a/pkgs/by-name/as/asmjit/package.nix b/pkgs/by-name/as/asmjit/package.nix index 007affbf0340..01ede97fc718 100644 --- a/pkgs/by-name/as/asmjit/package.nix +++ b/pkgs/by-name/as/asmjit/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Machine code generation for C++"; longDescription = '' AsmJit is a lightweight library for machine code generation written in @@ -36,7 +36,7 @@ stdenv.mkDerivation { extensions. ''; homepage = "https://asmjit.com/"; - license = licenses.zlib; - maintainers = with maintainers; [ thillux ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ thillux ]; }; } diff --git a/pkgs/by-name/as/asn1editor/package.nix b/pkgs/by-name/as/asn1editor/package.nix index b3232610614e..83589dfbea42 100644 --- a/pkgs/by-name/as/asn1editor/package.nix +++ b/pkgs/by-name/as/asn1editor/package.nix @@ -32,11 +32,11 @@ python3.pkgs.buildPythonApplication rec { # "SystemExit: Unable to access the X Display, is $DISPLAY set properly?" doCheck = false; - meta = with lib; { + meta = { description = "Python based editor for ASN.1 encoded data"; homepage = "https://github.com/Futsch1/asn1editor"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "asn1editor"; - maintainers = with maintainers; [ bjornfor ]; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/by-name/as/asouldocs/package.nix b/pkgs/by-name/as/asouldocs/package.nix index f5392796fdde..cac82b9ce8bd 100644 --- a/pkgs/by-name/as/asouldocs/package.nix +++ b/pkgs/by-name/as/asouldocs/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { command = "asouldocs --version"; }; - meta = with lib; { + meta = { description = "Web server for multi-language, real-time synchronization and searchable documentation"; homepage = "https://asouldocs.dev/"; - license = licenses.mit; - maintainers = with maintainers; [ anthonyroussel ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anthonyroussel ]; mainProgram = "asouldocs"; }; } diff --git a/pkgs/by-name/as/aspcud/package.nix b/pkgs/by-name/as/aspcud/package.nix index 85219aa1b1be..da5914a1b8ed 100644 --- a/pkgs/by-name/as/aspcud/package.nix +++ b/pkgs/by-name/as/aspcud/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Solver for package problems in CUDF format using ASP"; homepage = "https://potassco.org/aspcud/"; - platforms = platforms.all; - maintainers = [ maintainers.hakuch ]; - license = licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.hakuch ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/as/assemblyscript/package.nix b/pkgs/by-name/as/assemblyscript/package.nix index bb26dc73b523..cfde0ada2247 100644 --- a/pkgs/by-name/as/assemblyscript/package.nix +++ b/pkgs/by-name/as/assemblyscript/package.nix @@ -17,10 +17,10 @@ buildNpmPackage rec { npmDepsHash = "sha256-wj/PMoqUBjXqz8/KOFAH5P5eFty3pztpQ8inGIy+ve4="; - meta = with lib; { + meta = { homepage = "https://github.com/AssemblyScript/assemblyscript"; description = "TypeScript-like language for WebAssembly"; - license = licenses.asl20; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/as/assetfinder/package.nix b/pkgs/by-name/as/assetfinder/package.nix index b27ecc9e1a4b..56b9e40866e9 100644 --- a/pkgs/by-name/as/assetfinder/package.nix +++ b/pkgs/by-name/as/assetfinder/package.nix @@ -21,16 +21,16 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { homepage = "https://github.com/tomnomnom/assetfinder"; description = "Find domains and subdomains related to a given domain"; mainProgram = "assetfinder"; - maintainers = with maintainers; [ shard7 ]; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ + maintainers = with lib.maintainers; [ shard7 ]; + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode ]; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/by-name/as/astartectl/package.nix b/pkgs/by-name/as/astartectl/package.nix index 7c96404b0098..a891c85f1448 100644 --- a/pkgs/by-name/as/astartectl/package.nix +++ b/pkgs/by-name/as/astartectl/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { --zsh <($out/bin/astartectl completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/astarte-platform/astartectl"; description = "Astarte command line client utility"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "astartectl"; - maintainers = with maintainers; [ noaccos ]; + maintainers = with lib.maintainers; [ noaccos ]; }; } diff --git a/pkgs/by-name/as/astral/package.nix b/pkgs/by-name/as/astral/package.nix index 6ee623117c63..01cb191f0749 100644 --- a/pkgs/by-name/as/astral/package.nix +++ b/pkgs/by-name/as/astral/package.nix @@ -66,16 +66,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/smirarab/ASTRAL"; description = "Tool for estimating an unrooted species tree given a set of unrooted gene trees"; mainProgram = "astral"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bzizou tomasajt ]; diff --git a/pkgs/by-name/as/astromenace/package.nix b/pkgs/by-name/as/astromenace/package.nix index 72aea1f8232d..87a490d46371 100644 --- a/pkgs/by-name/as/astromenace/package.nix +++ b/pkgs/by-name/as/astromenace/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Hardcore 3D space shooter with spaceship upgrade possibilities"; homepage = "https://www.viewizard.com/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "astromenace"; - maintainers = with maintainers; [ fgaz ]; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/as/astronomer/package.nix b/pkgs/by-name/as/astronomer/package.nix index 6e7325ebdcae..7fae5e1f79c4 100644 --- a/pkgs/by-name/as/astronomer/package.nix +++ b/pkgs/by-name/as/astronomer/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tool to detect illegitimate stars from bot accounts on GitHub projects"; homepage = "https://github.com/Ullaakut/astronomer"; changelog = "https://github.com/Ullaakut/astronomer/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "astronomer"; }; diff --git a/pkgs/by-name/as/astyle/package.nix b/pkgs/by-name/as/astyle/package.nix index afb4a3537142..21156962d605 100644 --- a/pkgs/by-name/as/astyle/package.nix +++ b/pkgs/by-name/as/astyle/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { versionCheckProgramArg = "--version"; doInstallCheck = !asLibrary; - meta = with lib; { + meta = { description = "Source code indenter, formatter, and beautifier for C, C++, C# and Java"; mainProgram = "astyle"; homepage = "https://astyle.sourceforge.net/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ carlossless ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ carlossless ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/as/asusctl/package.nix b/pkgs/by-name/as/asusctl/package.nix index aa025acb6583..7b53d3916c2f 100644 --- a/pkgs/by-name/as/asusctl/package.nix +++ b/pkgs/by-name/as/asusctl/package.nix @@ -98,12 +98,12 @@ rustPlatform.buildRustPackage rec { --add-needed ${lib.getLib libxkbcommon}/lib/libxkbcommon.so.0 ''; - meta = with lib; { + meta = { description = "Control daemon, CLI tools, and a collection of crates for interacting with ASUS ROG laptops"; homepage = "https://gitlab.com/asus-linux/asusctl"; - license = licenses.mpl20; + license = lib.licenses.mpl20; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ k900 aacebedo ]; diff --git a/pkgs/by-name/as/async-profiler/package.nix b/pkgs/by-name/as/async-profiler/package.nix index 11c21e61711b..0bb0d1aa4cf8 100644 --- a/pkgs/by-name/as/async-profiler/package.nix +++ b/pkgs/by-name/as/async-profiler/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Low overhead sampling profiler for Java that does not suffer from Safepoint bias problem"; homepage = "https://github.com/jvm-profiling-tools/async-profiler"; - license = licenses.asl20; - maintainers = with maintainers; [ mschuwalow ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mschuwalow ]; + platforms = lib.platforms.all; mainProgram = "async-profiler"; }; } diff --git a/pkgs/by-name/at/at-spi2-core/package.nix b/pkgs/by-name/at/at-spi2-core/package.nix index 1ca88332ea10..a7f40c07c95d 100644 --- a/pkgs/by-name/at/at-spi2-core/package.nix +++ b/pkgs/by-name/at/at-spi2-core/package.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation rec { --prefix XDG_DATA_DIRS : ${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name} ''; - meta = with lib; { + meta = { description = "Assistive Technology Service Provider Interface protocol definitions and daemon for D-Bus"; homepage = "https://gitlab.gnome.org/GNOME/at-spi2-core"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ raskin ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ raskin ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/at/at/package.nix b/pkgs/by-name/at/at/package.nix index 4b5d03362e4a..d354dc4b0d3d 100644 --- a/pkgs/by-name/at/at/package.nix +++ b/pkgs/by-name/at/at/package.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation rec { sed -i "6i test -x ${atWrapperPath} && exec ${atWrapperPath} -qb now # exec doesn't return" "$out/bin/batch" ''; - meta = with lib; { + meta = { description = "Classical Unix `at' job scheduling command"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://tracker.debian.org/pkg/at"; changelog = "https://salsa.debian.org/debian/at/-/raw/master/ChangeLog"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "at"; }; } diff --git a/pkgs/by-name/at/atac/package.nix b/pkgs/by-name/at/atac/package.nix index cf4fafdb9f4e..239258b14fd5 100644 --- a/pkgs/by-name/at/atac/package.nix +++ b/pkgs/by-name/at/atac/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { RUSTONIG_SYSTEM_LIBONIG = true; }; - meta = with lib; { + meta = { description = "Simple API client (postman like) in your terminal"; homepage = "https://github.com/Julien-cpsn/ATAC"; - license = licenses.mit; - maintainers = with maintainers; [ vinnymeller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vinnymeller ]; mainProgram = "atac"; }; } diff --git a/pkgs/by-name/at/atanks/package.nix b/pkgs/by-name/at/atanks/package.nix index 3b86071d5bf9..7adde324dd97 100644 --- a/pkgs/by-name/at/atanks/package.nix +++ b/pkgs/by-name/at/atanks/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { "CXX=g++" ]; - meta = with lib; { + meta = { description = "Atomic Tanks ballistics game"; mainProgram = "atanks"; homepage = "http://atanks.sourceforge.net/"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/at/atheme/package.nix b/pkgs/by-name/at/atheme/package.nix index 7fc5cec53ddd..021786741ea4 100644 --- a/pkgs/by-name/at/atheme/package.nix +++ b/pkgs/by-name/at/atheme/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { "--enable-reproducible-builds" ]; - meta = with lib; { + meta = { description = "Set of services for IRC networks"; homepage = "https://atheme.github.io/"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ leo60228 ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ leo60228 ]; }; } diff --git a/pkgs/by-name/at/atinout/package.nix b/pkgs/by-name/at/atinout/package.nix index 06282bcf8535..64609395b210 100644 --- a/pkgs/by-name/at/atinout/package.nix +++ b/pkgs/by-name/at/atinout/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { make PREFIX=$out install ''; - meta = with lib; { + meta = { homepage = "https://atinout.sourceforge.net"; description = "Tool for talking to modems"; - platforms = platforms.unix; - license = licenses.gpl3; - maintainers = with maintainers; [ bendlas ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ bendlas ]; mainProgram = "atinout"; }; } diff --git a/pkgs/by-name/at/atkinson-hyperlegible/package.nix b/pkgs/by-name/at/atkinson-hyperlegible/package.nix index 47ba83118dba..021313b35924 100644 --- a/pkgs/by-name/at/atkinson-hyperlegible/package.nix +++ b/pkgs/by-name/at/atkinson-hyperlegible/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Typeface designed to offer greater legibility and readability for low vision readers"; homepage = "https://brailleinstitute.org/freefont"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/by-name/at/atlassian-plugin-sdk/package.nix b/pkgs/by-name/at/atlassian-plugin-sdk/package.nix index 5547053892a8..f3915dbd578a 100644 --- a/pkgs/by-name/at/atlassian-plugin-sdk/package.nix +++ b/pkgs/by-name/at/atlassian-plugin-sdk/package.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Atlassian Plugin SDK"; homepage = "https://developer.atlassian.com/server/framework/atlassian-sdk/"; - license = licenses.asl20; - maintainers = with maintainers; [ pathob ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pathob ]; + platforms = lib.platforms.linux; mainProgram = "atlas-mvn"; }; } diff --git a/pkgs/by-name/at/atomic-operator/package.nix b/pkgs/by-name/at/atomic-operator/package.nix index 3d77523dff28..5aa64b3a90b9 100644 --- a/pkgs/by-name/at/atomic-operator/package.nix +++ b/pkgs/by-name/at/atomic-operator/package.nix @@ -55,11 +55,11 @@ python3.pkgs.buildPythonApplication rec { "test_config_parser" ]; - meta = with lib; { + meta = { description = "Tool to execute Atomic Red Team tests (Atomics)"; mainProgram = "atomic-operator"; homepage = "https://www.atomic-operator.com/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/at/atomicparsley/package.nix b/pkgs/by-name/at/atomicparsley/package.nix index 0e50d3f862d4..7cd995415b4a 100644 --- a/pkgs/by-name/at/atomicparsley/package.nix +++ b/pkgs/by-name/at/atomicparsley/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "CLI program for reading, parsing and setting metadata into MPEG-4 files"; homepage = "https://github.com/wez/atomicparsley"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ pjones ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pjones ]; mainProgram = "AtomicParsley"; }; } diff --git a/pkgs/by-name/at/atomix/package.nix b/pkgs/by-name/at/atomix/package.nix index 9a9919630f83..da2db0a49c84 100644 --- a/pkgs/by-name/at/atomix/package.nix +++ b/pkgs/by-name/at/atomix/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "atomix"; }; }; - meta = with lib; { + meta = { description = "Puzzle game where you move atoms to build a molecule"; mainProgram = "atomix"; homepage = "https://gitlab.gnome.org/GNOME/atomix"; changelog = "https://gitlab.gnome.org/GNOME/atomix/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/at/atop/package.nix b/pkgs/by-name/at/atop/package.nix index f06e8ee3f605..10c5f2816c65 100644 --- a/pkgs/by-name/at/atop/package.nix +++ b/pkgs/by-name/at/atop/package.nix @@ -92,9 +92,9 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) atop; }; - meta = with lib; { - platforms = platforms.linux; - maintainers = with maintainers; [ raskin ]; + meta = { + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; description = "Console system performance monitor"; longDescription = '' Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of @@ -104,7 +104,7 @@ stdenv.mkDerivation rec { swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; downloadPage = "http://atoptool.nl/downloadatop.php"; }; } diff --git a/pkgs/by-name/at/ats-acc/package.nix b/pkgs/by-name/at/ats-acc/package.nix index 9ad0d5fc217a..3f2f29f74b3f 100644 --- a/pkgs/by-name/at/ats-acc/package.nix +++ b/pkgs/by-name/at/ats-acc/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation { nativeBuildInputs = [ ats2 ]; - meta = with lib; { + meta = { description = "Pretty-print error messages of the ATS Compiler"; homepage = "https://github.com/sparverius/ats-acc"; - maintainers = with maintainers; [ moni ]; - license = licenses.unfree; # Upstream has no license + maintainers = with lib.maintainers; [ moni ]; + license = lib.licenses.unfree; # Upstream has no license }; } diff --git a/pkgs/by-name/at/ats2/package.nix b/pkgs/by-name/at/ats2/package.nix index 172ba12c1342..47ceaca68994 100644 --- a/pkgs/by-name/at/ats2/package.nix +++ b/pkgs/by-name/at/ats2/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { postInstall = postInstallContrib + postInstallEmacs; - meta = with lib; { + meta = { description = "Functional programming language with dependent types"; homepage = "http://www.ats-lang.org"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ttuegel bbarker diff --git a/pkgs/by-name/au/aubio/package.nix b/pkgs/by-name/au/aubio/package.nix index 8fa25d129247..c6f1b09b9525 100644 --- a/pkgs/by-name/au/aubio/package.nix +++ b/pkgs/by-name/au/aubio/package.nix @@ -44,14 +44,14 @@ stdenv.mkDerivation rec { --replace "'rU'" "'r'" ''; - meta = with lib; { + meta = { description = "Library for audio labelling"; homepage = "https://aubio.org/"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ marcweber fpletz ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/au/aucatctl/package.nix b/pkgs/by-name/au/aucatctl/package.nix index e3d0ca43d98f..70c8cb192d5c 100644 --- a/pkgs/by-name/au/aucatctl/package.nix +++ b/pkgs/by-name/au/aucatctl/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { --replace '#include ' '#include ' ''; - meta = with lib; { + meta = { description = "Utility that allows to send MIDI messages to control sndiod and/or aucat volumes"; homepage = "http://www.sndio.org"; - license = licenses.isc; - maintainers = with maintainers; [ sna ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sna ]; + platforms = lib.platforms.unix; mainProgram = "aucatctl"; }; }) diff --git a/pkgs/by-name/au/auctex/package.nix b/pkgs/by-name/au/auctex/package.nix index e1d148e785bc..cc4f358ef034 100644 --- a/pkgs/by-name/au/auctex/package.nix +++ b/pkgs/by-name/au/auctex/package.nix @@ -44,11 +44,11 @@ let "--with-texmf-dir=\${tex}" ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/auctex"; description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; }; diff --git a/pkgs/by-name/au/audiality2/package.nix b/pkgs/by-name/au/audiality2/package.nix index d6c6e328fa7d..dd640126a078 100644 --- a/pkgs/by-name/au/audiality2/package.nix +++ b/pkgs/by-name/au/audiality2/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { jack2 ]; - meta = with lib; { + meta = { description = "Realtime scripted modular audio engine for video games and musical applications"; mainProgram = "a2play"; homepage = "http://audiality.org"; - license = licenses.zlib; - platforms = platforms.all; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.zlib; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; }; }) diff --git a/pkgs/by-name/au/audible-cli/package.nix b/pkgs/by-name/au/audible-cli/package.nix index a62119da1ba1..94bb8c33473b 100644 --- a/pkgs/by-name/au/audible-cli/package.nix +++ b/pkgs/by-name/au/audible-cli/package.nix @@ -68,12 +68,12 @@ python3Packages.buildPythonApplication rec { ]; }; - meta = with lib; { + meta = { description = "Command line interface for audible package. With the cli you can download your Audible books, cover, chapter files"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; homepage = "https://github.com/mkb79/audible-cli"; changelog = "https://github.com/mkb79/audible-cli/blob/${src.rev}/CHANGELOG.md"; - maintainers = with maintainers; [ jvanbruegge ]; + maintainers = with lib.maintainers; [ jvanbruegge ]; mainProgram = "audible"; }; } diff --git a/pkgs/by-name/au/audio-sharing/package.nix b/pkgs/by-name/au/audio-sharing/package.nix index 2767b17793f2..e7ad08950c18 100644 --- a/pkgs/by-name/au/audio-sharing/package.nix +++ b/pkgs/by-name/au/audio-sharing/package.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/AudioSharing"; description = "Automatically share the current audio playback in the form of an RTSP stream"; mainProgram = "audio-sharing"; - maintainers = with maintainers; [ benediktbroich ]; - teams = [ teams.gnome-circle ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ benediktbroich ]; + teams = [ lib.teams.gnome-circle ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/au/audiofile/package.nix b/pkgs/by-name/au/audiofile/package.nix index 04233447d471..926e63f246c5 100644 --- a/pkgs/by-name/au/audiofile/package.nix +++ b/pkgs/by-name/au/audiofile/package.nix @@ -124,11 +124,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Library for reading and writing audio files in various formats"; homepage = "http://www.68k.org/~michael/audiofile/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/au/audiothekar/package.nix b/pkgs/by-name/au/audiothekar/package.nix index a653cf0324ec..3a499d597590 100644 --- a/pkgs/by-name/au/audiothekar/package.nix +++ b/pkgs/by-name/au/audiothekar/package.nix @@ -40,15 +40,15 @@ buildDotnetModule rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Download-Client für die ARD-Audiothek"; longDescription = '' Audiothekar is a command line client to browse and download programs from German public broadcast online offering at https://www.ardaudiothek.de/. ''; homepage = "https://github.com/fxsth/Audiothekar"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wamserma ]; platforms = [ "x86_64-linux" ]; # needs some work to enable dotnet-sdk.meta.platforms; diff --git a/pkgs/by-name/au/august/package.nix b/pkgs/by-name/au/august/package.nix index e0966fb5608a..2305dfbd2279 100644 --- a/pkgs/by-name/au/august/package.nix +++ b/pkgs/by-name/au/august/package.nix @@ -21,10 +21,10 @@ rustPlatform.buildRustPackage { mv $out/bin/{august-cli,ag} ''; - meta = with lib; { + meta = { description = "Emmet-like language that produces JSON, TOML, or YAML"; homepage = "https://github.com/yoav-lavi/august"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/au/augustus/package.nix b/pkgs/by-name/au/augustus/package.nix index 262147c9ee17..d183ab7d0f2e 100644 --- a/pkgs/by-name/au/augustus/package.nix +++ b/pkgs/by-name/au/augustus/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source re-implementation of Caesar III. Fork of Julius incorporating gameplay changes"; mainProgram = "augustus"; homepage = "https://github.com/Keriew/augustus"; - license = licenses.agpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ Thra11 matteopacini ]; diff --git a/pkgs/by-name/au/authz0/package.nix b/pkgs/by-name/au/authz0/package.nix index ebac18bcfe67..cd888a2f305f 100644 --- a/pkgs/by-name/au/authz0/package.nix +++ b/pkgs/by-name/au/authz0/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-ARPrArvCgxLdCaiUdJyjB/9GbbldnMXwFbyYubbsqxc="; - meta = with lib; { + meta = { description = "Automated authorization test tool"; mainProgram = "authz0"; homepage = "https://github.com/hahwul/authz0"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/au/auto-epp/package.nix b/pkgs/by-name/au/auto-epp/package.nix index 0fd79f325e39..4d902a889813 100644 --- a/pkgs/by-name/au/auto-epp/package.nix +++ b/pkgs/by-name/au/auto-epp/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { mainProgram = "auto-epp"; homepage = "https://github.com/jothi-prasath/auto-epp"; description = "Energy performance preference tuner for AMD processors when amd_pstate=active"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = [ maintainers.lamarios ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lamarios ]; }; } diff --git a/pkgs/by-name/au/auto-multiple-choice/package.nix b/pkgs/by-name/au/auto-multiple-choice/package.nix index 8c64d64dd504..66255e11feb1 100644 --- a/pkgs/by-name/au/auto-multiple-choice/package.nix +++ b/pkgs/by-name/au/auto-multiple-choice/package.nix @@ -145,7 +145,7 @@ stdenv.mkDerivation (finalAttrs: { pkgs = [ finalAttrs.finalPackage ]; }; - meta = with lib; { + meta = { description = "Create and manage multiple choice questionnaires with automated marking"; mainProgram = "auto-multiple-choice"; longDescription = '' @@ -174,8 +174,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.auto-multiple-choice.net/"; changelog = "https://gitlab.com/jojo_boulix/auto-multiple-choice/-/blob/master/ChangeLog"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.thblt ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.thblt ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/au/autoconf-archive/package.nix b/pkgs/by-name/au/autoconf-archive/package.nix index f83a75002a9f..91e3e07e1740 100644 --- a/pkgs/by-name/au/autoconf-archive/package.nix +++ b/pkgs/by-name/au/autoconf-archive/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { buildInputs = [ xz ]; - meta = with lib; { + meta = { description = "Archive of autoconf m4 macros"; homepage = "https://www.gnu.org/software/autoconf-archive/"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/au/autogen/package.nix b/pkgs/by-name/au/autogen/package.nix index 4298b8ca2e41..e0559379ce25 100644 --- a/pkgs/by-name/au/autogen/package.nix +++ b/pkgs/by-name/au/autogen/package.nix @@ -150,14 +150,14 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Automated text and program generation tool"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; homepage = "https://www.gnu.org/software/autogen/"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/au/autojump/package.nix b/pkgs/by-name/au/autojump/package.nix index f64ec83caf48..7e36a036ed5c 100644 --- a/pkgs/by-name/au/autojump/package.nix +++ b/pkgs/by-name/au/autojump/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { install -Dt "$out/share/zsh/site-functions/" -m444 "$out/share/autojump/autojump.zsh" ''; - meta = with lib; { + meta = { description = "`cd' command that learns"; mainProgram = "autojump"; longDescription = '' @@ -54,9 +54,9 @@ stdenv.mkDerivation rec { Autojump supports tab-completion. ''; homepage = "https://github.com/wting/autojump"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ yurrriq ]; }; diff --git a/pkgs/by-name/au/automaticcomponenttoolkit/package.nix b/pkgs/by-name/au/automaticcomponenttoolkit/package.nix index 6edde33aea79..aae670560be8 100644 --- a/pkgs/by-name/au/automaticcomponenttoolkit/package.nix +++ b/pkgs/by-name/au/automaticcomponenttoolkit/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { install -Dm0755 act $out/bin/act ''; - meta = with lib; { + meta = { description = "Toolkit to automatically generate software components: abstract API, implementation stubs and language bindings"; mainProgram = "act"; homepage = "https://github.com/Autodesk/AutomaticComponentToolkit"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/au/automirror/package.nix b/pkgs/by-name/au/automirror/package.nix index 8d8376542d28..f0740c09097b 100644 --- a/pkgs/by-name/au/automirror/package.nix +++ b/pkgs/by-name/au/automirror/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { installFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/schlomo/automirror"; description = "Automatic Display Mirror"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; mainProgram = "automirror"; }; } diff --git a/pkgs/by-name/au/automysqlbackup/package.nix b/pkgs/by-name/au/automysqlbackup/package.nix index da92e32ccfb2..95d3298b81f1 100644 --- a/pkgs/by-name/au/automysqlbackup/package.nix +++ b/pkgs/by-name/au/automysqlbackup/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Script to run daily, weekly and monthly backups for your MySQL database"; mainProgram = "automysqlbackup"; homepage = "https://github.com/sixhop/AutoMySQLBackup"; - platforms = platforms.linux; - maintainers = [ maintainers.aanderse ]; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.aanderse ]; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/au/autorandr/package.nix b/pkgs/by-name/au/autorandr/package.nix index 7cd2591fae8b..66c94165e587 100644 --- a/pkgs/by-name/au/autorandr/package.nix +++ b/pkgs/by-name/au/autorandr/package.nix @@ -78,12 +78,12 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/phillipberndt/autorandr/"; description = "Automatically select a display configuration based on connected devices"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "autorandr"; }; } diff --git a/pkgs/by-name/au/autorestic/package.nix b/pkgs/by-name/au/autorestic/package.nix index d8f22c918350..9f118272853d 100644 --- a/pkgs/by-name/au/autorestic/package.nix +++ b/pkgs/by-name/au/autorestic/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { --zsh <($out/bin/autorestic completion zsh) ''; - meta = with lib; { + meta = { description = "High level CLI utility for restic"; homepage = "https://github.com/cupcakearmy/autorestic"; - license = licenses.asl20; - maintainers = with maintainers; [ renesat ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ renesat ]; mainProgram = "autorestic"; }; } diff --git a/pkgs/by-name/au/autorevision/package.nix b/pkgs/by-name/au/autorevision/package.nix index 1fd604895e9c..0c2e3b37faf0 100644 --- a/pkgs/by-name/au/autorevision/package.nix +++ b/pkgs/by-name/au/autorevision/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { -i "$out/bin/autorevision" ''; - meta = with lib; { + meta = { description = "Extracts revision metadata from your VCS repository"; homepage = "https://autorevision.github.io/"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "autorevision"; }; } diff --git a/pkgs/by-name/au/autospotting/package.nix b/pkgs/by-name/au/autospotting/package.nix index e780d7129114..d7d0cf6c32a0 100644 --- a/pkgs/by-name/au/autospotting/package.nix +++ b/pkgs/by-name/au/autospotting/package.nix @@ -24,11 +24,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Automatically convert your existing AutoScaling groups to up to 90% cheaper spot instances with minimal configuration changes"; homepage = "https://github.com/cloudutil/AutoSpotting"; - license = licenses.osl3; - maintainers = with maintainers; [ costrouc ]; + license = lib.licenses.osl3; + maintainers = with lib.maintainers; [ costrouc ]; mainProgram = "AutoSpotting"; }; } diff --git a/pkgs/by-name/au/autossh/package.nix b/pkgs/by-name/au/autossh/package.nix index a533e428dd0c..b404c1adede5 100644 --- a/pkgs/by-name/au/autossh/package.nix +++ b/pkgs/by-name/au/autossh/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { install -D -m644 autossh.1 $out/man/man1/autossh.1 || return 1 ''; - meta = with lib; { + meta = { homepage = "https://www.harding.motd.ca/autossh/"; description = "Automatically restart SSH sessions and tunnels"; - license = licenses.bsd1; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.bsd1; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "autossh"; }; } diff --git a/pkgs/by-name/au/autotalent/package.nix b/pkgs/by-name/au/autotalent/package.nix index 214c06fac565..d5a435f85f73 100644 --- a/pkgs/by-name/au/autotalent/package.nix +++ b/pkgs/by-name/au/autotalent/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { sed -r 's/^const LADSPA_Descriptor \*/__attribute__ ((visibility ("default"))) \0/' -i autotalent.c ''; - meta = with lib; { + meta = { homepage = "http://tombaran.info/autotalent.html"; description = "Real-time pitch correction LADSPA plugin (no MIDI control)"; - license = licenses.gpl2; - maintainers = [ maintainers.michalrus ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.michalrus ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/au/autotiling-rs/package.nix b/pkgs/by-name/au/autotiling-rs/package.nix index 8e8a2aba61a5..2b37add99e8f 100644 --- a/pkgs/by-name/au/autotiling-rs/package.nix +++ b/pkgs/by-name/au/autotiling-rs/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-+5GibhSkiKmgRrESKrliKLrrtUQ7iv2sFz46OFwAIwE="; - meta = with lib; { + meta = { description = "Autotiling for sway (and possibly i3)"; homepage = "https://github.com/ammgws/autotiling-rs"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "autotiling-rs"; }; } diff --git a/pkgs/by-name/au/autotools-language-server/package.nix b/pkgs/by-name/au/autotools-language-server/package.nix index b1fbff0a93d7..727c3993c712 100644 --- a/pkgs/by-name/au/autotools-language-server/package.nix +++ b/pkgs/by-name/au/autotools-language-server/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication rec { python3.pkgs.pytestCheckHook ]; - meta = with lib; { + meta = { description = "Autotools language server, support configure.ac, Makefile.am, Makefile"; homepage = "https://github.com/Freed-Wu/autotools-language-server"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "autotools-language-server"; }; } diff --git a/pkgs/by-name/au/autotrace/package.nix b/pkgs/by-name/au/autotrace/package.nix index 8e910f39d80e..dc5a80d1e5ba 100644 --- a/pkgs/by-name/au/autotrace/package.nix +++ b/pkgs/by-name/au/autotrace/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { pstoedit ]; - meta = with lib; { + meta = { homepage = "https://github.com/autotrace/autotrace"; description = "Utility for converting bitmap into vector graphics"; - platforms = platforms.unix; - maintainers = with maintainers; [ hodapp ]; - license = licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ hodapp ]; + license = lib.licenses.gpl2; mainProgram = "autotrace"; }; } diff --git a/pkgs/by-name/av/avell-unofficial-control-center/package.nix b/pkgs/by-name/av/avell-unofficial-control-center/package.nix index 8001a3d168cf..7802f3057deb 100644 --- a/pkgs/by-name/av/avell-unofficial-control-center/package.nix +++ b/pkgs/by-name/av/avell-unofficial-control-center/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication { elevate ]; - meta = with lib; { + meta = { homepage = "https://github.com/rodgomesc/avell-unofficial-control-center"; description = "Software for controlling RGB keyboard lights on some gaming laptops that use ITE Device(8291) Rev 0.03"; mainProgram = "aucc"; - license = licenses.mit; - maintainers = with maintainers; [ rkitover ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rkitover ]; }; } diff --git a/pkgs/by-name/av/aviator/package.nix b/pkgs/by-name/av/aviator/package.nix index 8322341497a2..22482213acbb 100644 --- a/pkgs/by-name/av/aviator/package.nix +++ b/pkgs/by-name/av/aviator/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { deleteVendor = true; vendorHash = "sha256-AJyxCE4DdAXRS+2sY4Zzu8NTEFKJoV1bopfOqOFKZfI="; - meta = with lib; { + meta = { description = "Merge YAML/JSON files in a in a convenient fashion"; mainProgram = "aviator"; homepage = "https://github.com/herrjulz/aviator"; - license = licenses.mit; - maintainers = with maintainers; [ risson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ risson ]; }; } diff --git a/pkgs/by-name/av/avidemux/package.nix b/pkgs/by-name/av/avidemux/package.nix index 2343a70b463d..435427403252 100644 --- a/pkgs/by-name/av/avidemux/package.nix +++ b/pkgs/by-name/av/avidemux/package.nix @@ -177,7 +177,7 @@ stdenv.mkDerivation rec { fixupPhase ''; - meta = with lib; { + meta = { homepage = "http://fixounet.free.fr/avidemux/"; description = "Free video editor designed for simple video editing tasks"; maintainers = [ ]; @@ -186,6 +186,6 @@ stdenv.mkDerivation rec { "i686-linux" "x86_64-linux" ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/av/avisynthplus/package.nix b/pkgs/by-name/av/avisynthplus/package.nix index 7de69303bc88..46d36591db84 100644 --- a/pkgs/by-name/av/avisynthplus/package.nix +++ b/pkgs/by-name/av/avisynthplus/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Improved version of the AviSynth frameserver"; homepage = "https://avs-plus.net/"; changelog = "https://github.com/AviSynth/AviSynthPlus/releases/tag/${finalAttrs.src.rev}"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; pkgConfigModules = [ "avisynth" ]; - platforms = platforms.unix; - maintainers = with maintainers; [ jopejoe1 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/av/avizo/package.nix b/pkgs/by-name/av/avizo/package.nix index 10c0c6a1d1b2..b7e53f49079c 100644 --- a/pkgs/by-name/av/avizo/package.nix +++ b/pkgs/by-name/av/avizo/package.nix @@ -54,14 +54,14 @@ stdenv.mkDerivation { wrapProgram $out/bin/lightctl --suffix PATH : $out/bin:${lib.makeBinPath [ brightnessctl ]} ''; - meta = with lib; { + meta = { description = "Neat notification daemon for Wayland"; homepage = "https://github.com/misterdanb/avizo"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ - maintainers.berbiche - maintainers.flexiondotorg + lib.maintainers.berbiche + lib.maintainers.flexiondotorg ]; }; } diff --git a/pkgs/by-name/av/avocode/package.nix b/pkgs/by-name/av/avocode/package.nix index 9edb6cf583ac..5961fddf2b00 100644 --- a/pkgs/by-name/av/avocode/package.nix +++ b/pkgs/by-name/av/avocode/package.nix @@ -135,12 +135,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://avocode.com/"; description = "Bridge between designers and developers"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ megheaiulian ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ megheaiulian ]; }; } diff --git a/pkgs/by-name/av/avr8burnomat/package.nix b/pkgs/by-name/av/avr8burnomat/package.nix index 04051bcb3fdc..b8c7c432cd31 100644 --- a/pkgs/by-name/av/avr8burnomat/package.nix +++ b/pkgs/by-name/av/avr8burnomat/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { chmod +x $out/bin/avr8-burn-omat ''; - meta = with lib; { + meta = { description = "GUI tool for avrdude"; mainProgram = "avr8-burn-omat"; homepage = "http://avr8-burn-o-mat.aaabbb.de/avr8_burn_o_mat_avrdude_gui_en.html"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.gpl3; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/av/avra/package.nix b/pkgs/by-name/av/avra/package.nix index 61f106ce8517..ea89544b0f7d 100644 --- a/pkgs/by-name/av/avra/package.nix +++ b/pkgs/by-name/av/avra/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Assembler for the Atmel AVR microcontroller family"; mainProgram = "avra"; homepage = "https://github.com/Ro5bert/avra"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/av/avrdude/package.nix b/pkgs/by-name/av/avrdude/package.nix index 4d0b12f6cc8e..c7b2bc61b4f5 100644 --- a/pkgs/by-name/av/avrdude/package.nix +++ b/pkgs/by-name/av/avrdude/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation (finalAttrs: { libelf = callPackage ./libelf.nix { }; }; - meta = with lib; { + meta = { description = "Command-line tool for programming Atmel AVR microcontrollers"; mainProgram = "avrdude"; longDescription = '' @@ -92,8 +92,8 @@ stdenv.mkDerivation (finalAttrs: { microcontrollers using the in-system programming technique (ISP). ''; homepage = "https://www.nongnu.org/avrdude/"; - license = licenses.gpl2Plus; - platforms = with platforms; linux ++ darwin; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux ++ darwin; + maintainers = [ lib.maintainers.bjornfor ]; }; }) diff --git a/pkgs/by-name/av/avrlibc/package.nix b/pkgs/by-name/av/avrlibc/package.nix index 67829b91d9b2..48213fcfd04d 100644 --- a/pkgs/by-name/av/avrlibc/package.nix +++ b/pkgs/by-name/av/avrlibc/package.nix @@ -31,13 +31,13 @@ stdenvNoLibc.mkDerivation (finalAttrs: { incdir = "/avr/include"; }; - meta = with lib; { + meta = { description = "C runtime library for AVR microcontrollers"; homepage = "https://github.com/avrdudes/avr-libc"; changelog = "https://github.com/avrdudes/avr-libc/blob/avr-libc-${finalAttrs.tag_version}-release/NEWS"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "avr-none" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mguentner emilytrau ]; diff --git a/pkgs/by-name/av/avro-c/package.nix b/pkgs/by-name/av/avro-c/package.nix index a50794c48e62..d50bed88d0f2 100644 --- a/pkgs/by-name/av/avro-c/package.nix +++ b/pkgs/by-name/av/avro-c/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "C library which implements parts of the Avro Specification"; homepage = "https://avro.apache.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ lblasc ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lblasc ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/aw/awatcher/package.nix b/pkgs/by-name/aw/awatcher/package.nix index be9117428b43..d900f4657772 100644 --- a/pkgs/by-name/aw/awatcher/package.nix +++ b/pkgs/by-name/aw/awatcher/package.nix @@ -23,7 +23,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pUqwg7jblSWRLPcsUDqkir/asSM8zY0jrvrre4OIeZc="; - meta = with lib; { + meta = { description = "Activity and idle watchers"; longDescription = '' Awatcher is a window activity and idle watcher with an optional tray and UI for statistics. The goal is to compensate @@ -32,9 +32,9 @@ rustPlatform.buildRustPackage rec { ''; downloadPage = "https://github.com/2e3s/awatcher/releases"; homepage = "https://github.com/2e3s/awatcher"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "awatcher"; - maintainers = [ maintainers.aikooo7 ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.aikooo7 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/aw/awk-language-server/package.nix b/pkgs/by-name/aw/awk-language-server/package.nix index 5a985c8823fa..121a283073d5 100644 --- a/pkgs/by-name/aw/awk-language-server/package.nix +++ b/pkgs/by-name/aw/awk-language-server/package.nix @@ -57,11 +57,11 @@ mkYarnPackage rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Language Server for AWK and associated VSCode client extension"; homepage = "https://github.com/Beaglefoot/awk-language-server"; - license = licenses.mit; - maintainers = with maintainers; [ mathiassven ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mathiassven ]; mainProgram = "awk-language-server"; }; } diff --git a/pkgs/by-name/aw/aws-assume-role/package.nix b/pkgs/by-name/aw/aws-assume-role/package.nix index 9a5556f8dd6e..138dff88f271 100644 --- a/pkgs/by-name/aw/aws-assume-role/package.nix +++ b/pkgs/by-name/aw/aws-assume-role/package.nix @@ -33,12 +33,12 @@ buildGoModule rec { install -Dm444 -t $out/share/doc/aws-assume-role README.md ''; - meta = with lib; { + meta = { description = "Easily assume AWS roles in your terminal"; homepage = "https://github.com/remind101/assume-role"; - license = licenses.bsd2; + license = lib.licenses.bsd2; mainProgram = "assume-role"; maintainers = with lib.maintainers; [ averyvigolo ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/aw/aws-c-auth/package.nix b/pkgs/by-name/aw/aws-c-auth/package.nix index 0fdb9c282641..afc41ea299a9 100644 --- a/pkgs/by-name/aw/aws-c-auth/package.nix +++ b/pkgs/by-name/aw/aws-c-auth/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C99 library implementation of AWS client-side authentication"; homepage = "https://github.com/awslabs/aws-c-auth"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/aw/aws-c-cal/package.nix b/pkgs/by-name/aw/aws-c-cal/package.nix index 1432af7407b7..80864743fe78 100644 --- a/pkgs/by-name/aw/aws-c-cal/package.nix +++ b/pkgs/by-name/aw/aws-c-cal/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { inherit nix; }; - meta = with lib; { + meta = { description = "AWS Crypto Abstraction Layer"; homepage = "https://github.com/awslabs/aws-c-cal"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/aw/aws-c-common/package.nix b/pkgs/by-name/aw/aws-c-common/package.nix index 1648736d7985..e2e3833da048 100644 --- a/pkgs/by-name/aw/aws-c-common/package.nix +++ b/pkgs/by-name/aw/aws-c-common/package.nix @@ -52,14 +52,14 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "AWS SDK for C common core"; homepage = "https://github.com/awslabs/aws-c-common"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; # https://github.com/awslabs/aws-c-common/issues/1175 - badPlatforms = platforms.bigEndian; - maintainers = with maintainers; [ + badPlatforms = lib.platforms.bigEndian; + maintainers = with lib.maintainers; [ r-burns ]; }; diff --git a/pkgs/by-name/aw/aws-c-compression/package.nix b/pkgs/by-name/aw/aws-c-compression/package.nix index 04ea9c4105bb..ac143760193f 100644 --- a/pkgs/by-name/aw/aws-c-compression/package.nix +++ b/pkgs/by-name/aw/aws-c-compression/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C99 implementation of huffman encoding/decoding"; homepage = "https://github.com/awslabs/aws-c-compression"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/aw/aws-c-event-stream/package.nix b/pkgs/by-name/aw/aws-c-event-stream/package.nix index e9c6c94b8fe8..d8e93de74428 100644 --- a/pkgs/by-name/aw/aws-c-event-stream/package.nix +++ b/pkgs/by-name/aw/aws-c-event-stream/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C99 implementation of the vnd.amazon.eventstream content-type"; homepage = "https://github.com/awslabs/aws-c-event-stream"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/aw/aws-c-http/package.nix b/pkgs/by-name/aw/aws-c-http/package.nix index 8d7ebf6c5eaa..7e5dfdc6d402 100644 --- a/pkgs/by-name/aw/aws-c-http/package.nix +++ b/pkgs/by-name/aw/aws-c-http/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C99 implementation of the HTTP/1.1 and HTTP/2 specifications"; homepage = "https://github.com/awslabs/aws-c-http"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/aw/aws-c-io/package.nix b/pkgs/by-name/aw/aws-c-io/package.nix index 48565c67d03d..837f8fc45e0e 100644 --- a/pkgs/by-name/aw/aws-c-io/package.nix +++ b/pkgs/by-name/aw/aws-c-io/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "AWS SDK for C module for IO and TLS"; homepage = "https://github.com/awslabs/aws-c-io"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/aw/aws-c-mqtt/package.nix b/pkgs/by-name/aw/aws-c-mqtt/package.nix index d09cb15ed80e..250fe47283d8 100644 --- a/pkgs/by-name/aw/aws-c-mqtt/package.nix +++ b/pkgs/by-name/aw/aws-c-mqtt/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C99 implementation of the MQTT 3.1.1 specification"; homepage = "https://github.com/awslabs/aws-c-mqtt"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/aw/aws-c-s3/package.nix b/pkgs/by-name/aw/aws-c-s3/package.nix index b4787f2db12d..a82a3abb340b 100644 --- a/pkgs/by-name/aw/aws-c-s3/package.nix +++ b/pkgs/by-name/aw/aws-c-s3/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C99 library implementation for communicating with the S3 service"; homepage = "https://github.com/awslabs/aws-c-s3"; - license = licenses.asl20; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ r-burns ]; mainProgram = "s3"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/aw/aws-c-sdkutils/package.nix b/pkgs/by-name/aw/aws-c-sdkutils/package.nix index 3fe0136297b7..f676da89baa7 100644 --- a/pkgs/by-name/aw/aws-c-sdkutils/package.nix +++ b/pkgs/by-name/aw/aws-c-sdkutils/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "AWS SDK utility library"; homepage = "https://github.com/awslabs/aws-c-sdkutils"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/aw/aws-checksums/package.nix b/pkgs/by-name/aw/aws-checksums/package.nix index a02fb29573f2..6c57c249129d 100644 --- a/pkgs/by-name/aw/aws-checksums/package.nix +++ b/pkgs/by-name/aw/aws-checksums/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "HW accelerated CRC32c and CRC32"; homepage = "https://github.com/awslabs/aws-checksums"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/aw/aws-crt-cpp/package.nix b/pkgs/by-name/aw/aws-crt-cpp/package.nix index d5629c850d1f..2f540e015edf 100644 --- a/pkgs/by-name/aw/aws-crt-cpp/package.nix +++ b/pkgs/by-name/aw/aws-crt-cpp/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C++ wrapper around the aws-c-* libraries"; homepage = "https://github.com/awslabs/aws-crt-cpp"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/aw/aws-gate/package.nix b/pkgs/by-name/aw/aws-gate/package.nix index 0508bc26cfcc..847c9b64c5b6 100644 --- a/pkgs/by-name/aw/aws-gate/package.nix +++ b/pkgs/by-name/aw/aws-gate/package.nix @@ -55,12 +55,12 @@ python3Packages.buildPythonApplication rec { $out/bin/aws-gate --version ''; - meta = with lib; { + meta = { description = "Better AWS SSM Session manager CLI client"; homepage = "https://github.com/xen0l/aws-gate"; - license = licenses.bsd3; - maintainers = with maintainers; [ tirimia ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ tirimia ]; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "aws-gate"; }; } diff --git a/pkgs/by-name/aw/aws-lambda-rie/package.nix b/pkgs/by-name/aw/aws-lambda-rie/package.nix index 10c7a775c45d..186944674f3e 100644 --- a/pkgs/by-name/aw/aws-lambda-rie/package.nix +++ b/pkgs/by-name/aw/aws-lambda-rie/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # disabled because I lack the skill doCheck = false; - meta = with lib; { + meta = { description = "Locally test Lambda functions packaged as container images"; mainProgram = "aws-lambda-rie"; homepage = "https://github.com/aws/aws-lambda-runtime-interface-emulator"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/aw/aws-mfa/package.nix b/pkgs/by-name/aw/aws-mfa/package.nix index 722dd410729a..cf68b087c4a7 100644 --- a/pkgs/by-name/aw/aws-mfa/package.nix +++ b/pkgs/by-name/aw/aws-mfa/package.nix @@ -41,11 +41,11 @@ python3Packages.buildPythonApplication rec { "awsmfa" ]; - meta = with lib; { + meta = { description = "Manage AWS MFA Security Credentials"; mainProgram = "aws-mfa"; homepage = "https://github.com/broamski/aws-mfa"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/aw/aws-rotate-key/package.nix b/pkgs/by-name/aw/aws-rotate-key/package.nix index b75901f3b0dc..41c6a020b642 100644 --- a/pkgs/by-name/aw/aws-rotate-key/package.nix +++ b/pkgs/by-name/aw/aws-rotate-key/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { command = "AWS_SHARED_CREDENTIALS_FILE=/dev/null aws-rotate-key --version"; }; - meta = with lib; { + meta = { description = "Easily rotate your AWS key"; homepage = "https://github.com/Fullscreen/aws-rotate-key"; - license = licenses.mit; - maintainers = [ maintainers.mbode ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mbode ]; mainProgram = "aws-rotate-key"; }; } diff --git a/pkgs/by-name/aw/aws-sdk-cpp/package.nix b/pkgs/by-name/aw/aws-sdk-cpp/package.nix index b78a3a84e9f7..d1fdc2f125a4 100644 --- a/pkgs/by-name/aw/aws-sdk-cpp/package.nix +++ b/pkgs/by-name/aw/aws-sdk-cpp/package.nix @@ -156,11 +156,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface for Amazon Web Services"; homepage = "https://github.com/aws/aws-sdk-cpp"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; maintainers = [ ]; # building ec2 runs out of memory: cc1plus: out of memory allocating 33554372 bytes after a total of 74424320 bytes broken = stdenv.buildPlatform.is32bit && ((builtins.elem "ec2" apis) || (builtins.elem "*" apis)); diff --git a/pkgs/by-name/aw/aws-sso-cli/package.nix b/pkgs/by-name/aw/aws-sso-cli/package.nix index 367906f5a32a..0ea42c394908 100644 --- a/pkgs/by-name/aw/aws-sso-cli/package.nix +++ b/pkgs/by-name/aw/aws-sso-cli/package.nix @@ -54,11 +54,11 @@ buildGoModule rec { in [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; - meta = with lib; { + meta = { homepage = "https://github.com/synfinatic/aws-sso-cli"; description = "AWS SSO CLI is a secure replacement for using the aws configure sso wizard"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ devusb ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ devusb ]; mainProgram = "aws-sso"; }; } diff --git a/pkgs/by-name/aw/aws-sso-creds/package.nix b/pkgs/by-name/aw/aws-sso-creds/package.nix index e5a431a7c5bc..49bf9bbcab37 100644 --- a/pkgs/by-name/aw/aws-sso-creds/package.nix +++ b/pkgs/by-name/aw/aws-sso-creds/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/jaxxstorm/aws-sso-creds"; description = "Get AWS SSO temporary creds from an SSO profile"; - license = licenses.mit; - maintainers = with maintainers; [ lafrenierejm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lafrenierejm ]; mainProgram = "aws-sso-creds"; }; } diff --git a/pkgs/by-name/aw/aws-vault/package.nix b/pkgs/by-name/aw/aws-vault/package.nix index dc93f6fc4fa6..cc66766d5726 100644 --- a/pkgs/by-name/aw/aws-vault/package.nix +++ b/pkgs/by-name/aw/aws-vault/package.nix @@ -55,12 +55,12 @@ buildGoModule rec { $out/bin/aws-vault --version 2>&1 | grep ${version} > /dev/null ''; - meta = with lib; { + meta = { description = "Vault for securely storing and accessing AWS credentials in development environments"; mainProgram = "aws-vault"; homepage = "https://github.com/ByteNess/aws-vault"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm er0k ]; diff --git a/pkgs/by-name/aw/awsbck/package.nix b/pkgs/by-name/aw/awsbck/package.nix index 5fe548b6eef5..a8066499ed55 100644 --- a/pkgs/by-name/aw/awsbck/package.nix +++ b/pkgs/by-name/aw/awsbck/package.nix @@ -20,14 +20,14 @@ rustPlatform.buildRustPackage rec { # tests run in CI on the source repo doCheck = false; - meta = with lib; { + meta = { description = "Backup a folder to AWS S3, once or periodically"; homepage = "https://github.com/beeb/awsbck"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ beeb ]; + maintainers = with lib.maintainers; [ beeb ]; mainProgram = "awsbck"; }; } diff --git a/pkgs/by-name/aw/awslogs/package.nix b/pkgs/by-name/aw/awslogs/package.nix index 596e9c3727d1..937d140d9078 100644 --- a/pkgs/by-name/aw/awslogs/package.nix +++ b/pkgs/by-name/aw/awslogs/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication rec { "awslogs" ]; - meta = with lib; { + meta = { description = "AWS CloudWatch logs for Humans"; mainProgram = "awslogs"; homepage = "https://github.com/jorgebastida/awslogs"; - license = licenses.bsd3; - maintainers = with maintainers; [ dbrock ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dbrock ]; }; } diff --git a/pkgs/by-name/aw/awsls/package.nix b/pkgs/by-name/aw/awsls/package.nix index aafdfdd850ef..c4d3565a180e 100644 --- a/pkgs/by-name/aw/awsls/package.nix +++ b/pkgs/by-name/aw/awsls/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "List command for AWS resources"; homepage = "https://github.com/jckuester/awsls"; - license = licenses.mit; - maintainers = [ maintainers.markus1189 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.markus1189 ]; mainProgram = "awsls"; }; } diff --git a/pkgs/by-name/aw/awsrm/package.nix b/pkgs/by-name/aw/awsrm/package.nix index cb415a3182a9..43298af31e8a 100644 --- a/pkgs/by-name/aw/awsrm/package.nix +++ b/pkgs/by-name/aw/awsrm/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Remove command for AWS resources"; homepage = "https://github.com/jckuester/awsrm"; - license = licenses.mit; - maintainers = [ maintainers.markus1189 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.markus1189 ]; mainProgram = "awsrm"; }; } diff --git a/pkgs/by-name/aw/awstats/package.nix b/pkgs/by-name/aw/awstats/package.nix index 7121925070d7..b92e889ee4fa 100644 --- a/pkgs/by-name/aw/awstats/package.nix +++ b/pkgs/by-name/aw/awstats/package.nix @@ -62,12 +62,12 @@ perlPackages.buildPerlPackage rec { mv docs "$doc/share/doc/awstats" ''; - meta = with lib; { + meta = { changelog = "https://www.awstats.org/docs/awstats_changelog.txt"; description = "Real-time logfile analyzer to get advanced statistics"; homepage = "https://awstats.org"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "awstats"; }; } diff --git a/pkgs/by-name/aw/awsweeper/package.nix b/pkgs/by-name/aw/awsweeper/package.nix index 954f8e7d9456..2ed9648251eb 100644 --- a/pkgs/by-name/aw/awsweeper/package.nix +++ b/pkgs/by-name/aw/awsweeper/package.nix @@ -27,10 +27,10 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Tool to clean out your AWS account"; homepage = "https://github.com/jckuester/awsweeper"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; mainProgram = "awsweeper"; }; diff --git a/pkgs/by-name/ax/ax25-tools/package.nix b/pkgs/by-name/ax/ax25-tools/package.nix index 649851fcd69b..dddfb8a29bc3 100644 --- a/pkgs/by-name/ax/ax25-tools/package.nix +++ b/pkgs/by-name/ax/ax25-tools/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { "--localstatedir=/var/lib" ]; - meta = with lib; { + meta = { description = "Non-GUI tools used to configure an AX.25 enabled computer"; homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ sarcasticadmin ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ sarcasticadmin ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ax/ax25ms/package.nix b/pkgs/by-name/ax/ax25ms/package.nix index 554ce93c0c4e..7048b0dd4dfd 100644 --- a/pkgs/by-name/ax/ax25ms/package.nix +++ b/pkgs/by-name/ax/ax25ms/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation { set -e ''; - meta = with lib; { + meta = { description = "Set of AX.25 microservices, designed to be pluggable for any implementation"; homepage = "https://github.com/ThomasHabets/ax25ms"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthewcroughan sarcasticadmin pkharvey ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ay/ayu-theme-gtk/package.nix b/pkgs/by-name/ay/ayu-theme-gtk/package.nix index f9af839c04d6..1c940f891706 100644 --- a/pkgs/by-name/ay/ayu-theme-gtk/package.nix +++ b/pkgs/by-name/ay/ayu-theme-gtk/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md ''; - meta = with lib; { + meta = { description = "Ayu colored GTK and Kvantum themes based on Arc"; homepage = "https://github.com/dnordstrom/ayu-theme/"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/by-name/az/azeret-mono/package.nix b/pkgs/by-name/az/azeret-mono/package.nix index c76f1064faea..edfe06bf8bb0 100644 --- a/pkgs/by-name/az/azeret-mono/package.nix +++ b/pkgs/by-name/az/azeret-mono/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Azeret Mono"; longDescription = '' The story of the typeface began with a draft that was driven by an exploration of OCR fonts, past and futuristic operating systems, various interfaces and the nineties. The final result is more based on a desire to achieve an appearance of the typeface that could serve in operating systems. Thus the overall character is a conjunction of everything described with details that evoke a specific personality. @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation { Production: Renegade Fonts (Jan Charvát, Zuzana Konečná) ''; homepage = "https://displaay.net/typeface/azeret/azeret-mono/"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ _21eleven ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ _21eleven ]; }; } diff --git a/pkgs/by-name/az/azmq/package.nix b/pkgs/by-name/az/azmq/package.nix index 85bd155514f2..fc0b61a4979a 100644 --- a/pkgs/by-name/az/azmq/package.nix +++ b/pkgs/by-name/az/azmq/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { tagPrefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://github.com/zeromq/azmq"; - license = licenses.boost; + license = lib.licenses.boost; description = "C++ language binding library integrating ZeroMQ with Boost Asio"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/az/azpainter/package.nix b/pkgs/by-name/az/azpainter/package.nix index 5b9b34d80263..2ae82e143987 100644 --- a/pkgs/by-name/az/azpainter/package.nix +++ b/pkgs/by-name/az/azpainter/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Full color painting software for illustration drawing"; homepage = "http://azsky2.html.xdomain.jp/soft/azpainter.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dtzWill ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dtzWill ]; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "azpainter"; }; } diff --git a/pkgs/by-name/b4/b4/package.nix b/pkgs/by-name/b4/b4/package.nix index 107fa54983db..6dac4f00380f 100644 --- a/pkgs/by-name/b4/b4/package.nix +++ b/pkgs/by-name/b4/b4/package.nix @@ -30,12 +30,12 @@ python3Packages.buildPythonApplication rec { git-filter-repo ]; - meta = with lib; { + meta = { homepage = "https://git.kernel.org/pub/scm/utils/b4/b4.git/about"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; description = "Helper utility to work with patches made available via a public-inbox archive"; mainProgram = "b4"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jb55 qyliss mfrw diff --git a/pkgs/by-name/b6/b612/package.nix b/pkgs/by-name/b6/b612/package.nix index a25eb51bdaf3..1bd6ac5a1421 100644 --- a/pkgs/by-name/b6/b612/package.nix +++ b/pkgs/by-name/b6/b612/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://b612-font.com/"; description = "Highly legible font family for use on aircraft cockpit screens"; longDescription = '' @@ -41,11 +41,11 @@ stdenvNoCC.mkDerivation rec { imaginary asteroid of the aviator Saint‑Exupéry, benefited from a complete hinting on all the characters. ''; - license = with licenses; [ + license = with lib.licenses; [ ofl epl10 bsd3 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/babeld/package.nix b/pkgs/by-name/ba/babeld/package.nix index 46b037653afe..5756a3a9a1e6 100644 --- a/pkgs/by-name/ba/babeld/package.nix +++ b/pkgs/by-name/ba/babeld/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { passthru.tests.babeld = nixosTests.babeld; - meta = with lib; { + meta = { homepage = "http://www.irif.fr/~jch/software/babel/"; description = "Loop-avoiding distance-vector routing protocol"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.linux; mainProgram = "babeld"; }; } diff --git a/pkgs/by-name/ba/babelstone-han/package.nix b/pkgs/by-name/ba/babelstone-han/package.nix index 658fd90c89f1..183963b55897 100644 --- a/pkgs/by-name/ba/babelstone-han/package.nix +++ b/pkgs/by-name/ba/babelstone-han/package.nix @@ -26,12 +26,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode CJK font with over 36000 Han characters"; homepage = "https://www.babelstone.co.uk/Fonts/Han.html"; - license = licenses.arphicpl; - platforms = platforms.all; - maintainers = with maintainers; [ emily ]; + license = lib.licenses.arphicpl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ emily ]; }; } diff --git a/pkgs/by-name/ba/babl/package.nix b/pkgs/by-name/ba/babl/package.nix index 779330f42be6..e8f013ea168d 100644 --- a/pkgs/by-name/ba/babl/package.nix +++ b/pkgs/by-name/ba/babl/package.nix @@ -65,8 +65,8 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://gitlab.gnome.org/GNOME/babl/-/blob/BABL_${ replaceStrings [ "." ] [ "_" ] finalAttrs.version }/NEWS"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ba/backblaze-b2/package.nix b/pkgs/by-name/ba/backblaze-b2/package.nix index 95f5f51dfcaf..7c68d61f2ec1 100644 --- a/pkgs/by-name/ba/backblaze-b2/package.nix +++ b/pkgs/by-name/ba/backblaze-b2/package.nix @@ -100,11 +100,11 @@ python3Packages.buildPythonApplication rec { ''; }); - meta = with lib; { + meta = { description = "Command-line tool for accessing the Backblaze B2 storage service"; homepage = "https://github.com/Backblaze/B2_Command_Line_Tool"; changelog = "https://github.com/Backblaze/B2_Command_Line_Tool/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "backblaze-b2"; }; } diff --git a/pkgs/by-name/ba/backdown/package.nix b/pkgs/by-name/ba/backdown/package.nix index 8a1bc83b608a..20066f07293f 100644 --- a/pkgs/by-name/ba/backdown/package.nix +++ b/pkgs/by-name/ba/backdown/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-qVE4MOFr0YO+9rAbfnz92h0KocaLu+v2u5ompwY/o6k="; - meta = with lib; { + meta = { description = "File deduplicator"; homepage = "https://github.com/Canop/backdown"; changelog = "https://github.com/Canop/backdown/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "backdown"; }; diff --git a/pkgs/by-name/ba/bacnet-stack/package.nix b/pkgs/by-name/ba/bacnet-stack/package.nix index f3f0f14366ae..9d4d454319d3 100644 --- a/pkgs/by-name/ba/bacnet-stack/package.nix +++ b/pkgs/by-name/ba/bacnet-stack/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { cp -r bin $out/bin ''; - meta = with lib; { + meta = { description = "BACnet open source protocol stack for embedded systems, Linux, and Windows"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ WhittlesJr ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ WhittlesJr ]; }; } diff --git a/pkgs/by-name/ba/bacula/package.nix b/pkgs/by-name/ba/bacula/package.nix index 9397eab8c4dd..73e550554a97 100644 --- a/pkgs/by-name/ba/bacula/package.nix +++ b/pkgs/by-name/ba/bacula/package.nix @@ -68,17 +68,17 @@ stdenv.mkDerivation rec { ln -s $out/sbin/* $out/bin ''; - meta = with lib; { + meta = { description = "Enterprise ready, Network Backup Tool"; homepage = "http://bacula.org/"; - license = with licenses; [ + license = with lib.licenses; [ agpl3Only bsd2 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 eleanor ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/bada-bib/package.nix b/pkgs/by-name/ba/bada-bib/package.nix index fcc082f28c07..ec986405b5d2 100644 --- a/pkgs/by-name/ba/bada-bib/package.nix +++ b/pkgs/by-name/ba/bada-bib/package.nix @@ -72,11 +72,11 @@ python3Packages.buildPythonApplication rec { wrapPythonProgramsIn "$out/libexec" "$out $pythonPath" ''; - meta = with lib; { + meta = { homepage = "https://github.com/RogerCrocker/BadaBib"; description = "Simple BibTeX Viewer and Editor"; mainProgram = "badabib"; - maintainers = [ maintainers.Cogitri ]; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.Cogitri ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/ba/badger/package.nix b/pkgs/by-name/ba/badger/package.nix index 3a6fa9aa0904..684269f6ea96 100644 --- a/pkgs/by-name/ba/badger/package.nix +++ b/pkgs/by-name/ba/badger/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Fast key-value DB in Go"; homepage = "https://github.com/dgraph-io/badger"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "badger"; - maintainers = with maintainers; [ farcaller ]; + maintainers = with lib.maintainers; [ farcaller ]; }; } diff --git a/pkgs/by-name/ba/badvpn/package.nix b/pkgs/by-name/ba/badvpn/package.nix index 887eb08e4be6..c7cc75de227b 100644 --- a/pkgs/by-name/ba/badvpn/package.nix +++ b/pkgs/by-name/ba/badvpn/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { -i CMakeLists.txt ''; - meta = with lib; { + meta = { description = "Set of network-related (mostly VPN-related) tools"; - license = licenses.bsd3; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ba/ballerina/package.nix b/pkgs/by-name/ba/ballerina/package.nix index e0c32c309296..97d9984747ca 100644 --- a/pkgs/by-name/ba/ballerina/package.nix +++ b/pkgs/by-name/ba/ballerina/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { [[ $result = "Hello, World!" ]] ''; - meta = with lib; { + meta = { description = "Open-source programming language for the cloud"; mainProgram = "bal"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = openjdk.meta.platforms; - maintainers = with maintainers; [ eigengrau ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ eigengrau ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; } diff --git a/pkgs/by-name/ba/bam/package.nix b/pkgs/by-name/ba/bam/package.nix index 21493a5530b1..f6d4436b8443 100644 --- a/pkgs/by-name/ba/bam/package.nix +++ b/pkgs/by-name/ba/bam/package.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation rec { cp bam "$out/bin" ''; - meta = with lib; { + meta = { description = "Yet another build manager"; mainProgram = "bam"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.zlib; + platforms = lib.platforms.linux; + license = lib.licenses.zlib; downloadPage = "http://matricks.github.com/bam/"; }; } diff --git a/pkgs/by-name/ba/bamf/package.nix b/pkgs/by-name/ba/bamf/package.nix index 23f13a84f067..2a500d5f1a50 100644 --- a/pkgs/by-name/ba/bamf/package.nix +++ b/pkgs/by-name/ba/bamf/package.nix @@ -97,16 +97,16 @@ stdenv.mkDerivation rec { ignoredVersions = ".ubuntu.*"; }; - meta = with lib; { + meta = { description = "Application matching framework"; longDescription = '' Removes the headache of applications matching into a simple DBus daemon and c wrapper library. ''; homepage = "https://launchpad.net/bamf"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ davidak ]; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ davidak ]; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/by-name/ba/bamtools/package.nix b/pkgs/by-name/ba/bamtools/package.nix index e522610b1df9..97b25bff2ab6 100644 --- a/pkgs/by-name/ba/bamtools/package.nix +++ b/pkgs/by-name/ba/bamtools/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "C++ API & command-line toolkit for working with BAM data"; mainProgram = "bamtools"; homepage = "https://github.com/pezmaster31/bamtools"; changelog = "https://github.com/pezmaster31/bamtools/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ba/banana-cursor/package.nix b/pkgs/by-name/ba/banana-cursor/package.nix index 309b476ded8b..74ff3ca6627b 100644 --- a/pkgs/by-name/ba/banana-cursor/package.nix +++ b/pkgs/by-name/ba/banana-cursor/package.nix @@ -41,14 +41,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Banana Cursor"; homepage = "https://github.com/ful1e5/banana-cursor"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ getpsyched yrd ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ba/banner/package.nix b/pkgs/by-name/ba/banner/package.nix index 7bbcf4e5057f..6946017ed023 100644 --- a/pkgs/by-name/ba/banner/package.nix +++ b/pkgs/by-name/ba/banner/package.nix @@ -15,18 +15,18 @@ stdenv.mkDerivation rec { sha256 = "sha256-g9i460W0SanW2xIfZk9Am/vDsRlL7oxJOUhksa+I8zY="; }; - meta = with lib; { + meta = { homepage = "https://github.com/pronovic/banner"; description = "Print large banners to ASCII terminals"; mainProgram = "banner"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; longDescription = '' An implementation of the traditional Unix-program used to display large characters. ''; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/ba/baobab/package.nix b/pkgs/by-name/ba/baobab/package.nix index 10b9603c6206..650780e09824 100644 --- a/pkgs/by-name/ba/baobab/package.nix +++ b/pkgs/by-name/ba/baobab/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Graphical application to analyse disk usage in any GNOME environment"; mainProgram = "baobab"; homepage = "https://apps.gnome.org/Baobab/"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ba/barcode/package.nix b/pkgs/by-name/ba/barcode/package.nix index 7c27e5cf0ef3..2554df805b26 100644 --- a/pkgs/by-name/ba/barcode/package.nix +++ b/pkgs/by-name/ba/barcode/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "GNU barcode generator"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; downloadPage = "https://ftp.gnu.org/gnu/barcode/"; homepage = "https://www.gnu.org/software/barcode/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/ba/barlow/package.nix b/pkgs/by-name/ba/barlow/package.nix index 22d527dc1310..077d4bc8536b 100644 --- a/pkgs/by-name/ba/barlow/package.nix +++ b/pkgs/by-name/ba/barlow/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Grotesk variable font superfamily"; homepage = "https://tribby.com/fonts/barlow/"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/bartib/package.nix b/pkgs/by-name/ba/bartib/package.nix index f8410b421a34..db224d4d668e 100644 --- a/pkgs/by-name/ba/bartib/package.nix +++ b/pkgs/by-name/ba/bartib/package.nix @@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec { installShellCompletion --cmd bartib --bash misc/bartibCompletion.sh ''; - meta = with lib; { + meta = { description = "Simple timetracker for the command line"; homepage = "https://github.com/nikolassv/bartib"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "bartib"; }; diff --git a/pkgs/by-name/ba/base16-universal-manager/package.nix b/pkgs/by-name/ba/base16-universal-manager/package.nix index 8918ddd20f31..454b3e098426 100644 --- a/pkgs/by-name/ba/base16-universal-manager/package.nix +++ b/pkgs/by-name/ba/base16-universal-manager/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-U28OJ5heeiaj3aGAhR6eAXzfvFMehAUcHzyFkZBRK6c="; - meta = with lib; { + meta = { description = "Universal manager to set base16 themes for any supported application"; homepage = "https://github.com/pinpox/base16-universal-manager"; - license = licenses.mit; - maintainers = with maintainers; [ jo1gi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jo1gi ]; mainProgram = "base16-universal-manager"; }; } diff --git a/pkgs/by-name/ba/base16384/package.nix b/pkgs/by-name/ba/base16384/package.nix index e066d25885d7..8517ef6cdd5a 100644 --- a/pkgs/by-name/ba/base16384/package.nix +++ b/pkgs/by-name/ba/base16384/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Encode binary files to printable utf16be"; mainProgram = "base16384"; homepage = "https://github.com/fumiama/base16384"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/basex/package.nix b/pkgs/by-name/ba/basex/package.nix index 44a3fc81bfd0..5f4610931ffc 100644 --- a/pkgs/by-name/ba/basex/package.nix +++ b/pkgs/by-name/ba/basex/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "XML database and XPath/XQuery processor"; longDescription = '' BaseX is a very fast and light-weight, yet powerful XML database and @@ -78,9 +78,9 @@ stdenv.mkDerivation rec { modes, BaseX offers a client/server architecture. ''; homepage = "https://basex.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/ba/basez/package.nix b/pkgs/by-name/ba/basez/package.nix index fb34b61677d5..df86a85a5eed 100644 --- a/pkgs/by-name/ba/basez/package.nix +++ b/pkgs/by-name/ba/basez/package.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Base 16/32/64 encode/decode data to standard output"; longDescription = '' Encode data into/decode data from base16, base32, base32hex, base64 or @@ -23,8 +23,8 @@ stdenv.mkDerivation rec { per RFC 2045; or PEM Printable Encoding per RFC 1421. ''; homepage = "http://www.quarkline.net/basez/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.oaksoaj ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.oaksoaj ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/bash-completion/package.nix b/pkgs/by-name/ba/bash-completion/package.nix index 1d7ef107008a..b2da793ce093 100644 --- a/pkgs/by-name/ba/bash-completion/package.nix +++ b/pkgs/by-name/ba/bash-completion/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { sed -i -e 's/readlink -f/readlink/g' bash_completion completions/* ''; - meta = with lib; { + meta = { homepage = "https://github.com/scop/bash-completion"; description = "Programmable completion for the bash shell"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ philiptaron ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ philiptaron ]; }; } diff --git a/pkgs/by-name/ba/bash-my-aws/package.nix b/pkgs/by-name/ba/bash-my-aws/package.nix index 8b4c52fdadcb..fe9655631632 100644 --- a/pkgs/by-name/ba/bash-my-aws/package.nix +++ b/pkgs/by-name/ba/bash-my-aws/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation { chmod +x $out/lib/* ''; - meta = with lib; { + meta = { homepage = "https://bash-my-aws.org"; description = "CLI commands for AWS"; - license = licenses.mit; - maintainers = with maintainers; [ tomberek ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomberek ]; mainProgram = "bma"; }; } diff --git a/pkgs/by-name/ba/bash-supergenpass/package.nix b/pkgs/by-name/ba/bash-supergenpass/package.nix index bc83a9d6345d..fc4d012132a9 100644 --- a/pkgs/by-name/ba/bash-supergenpass/package.nix +++ b/pkgs/by-name/ba/bash-supergenpass/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation { url = "https://github.com/lanzz/bash-supergenpass.git"; }; - meta = with lib; { + meta = { description = "Bash shell-script implementation of SuperGenPass password generation"; longDescription = '' Bash shell-script implementation of SuperGenPass password generation @@ -50,9 +50,9 @@ stdenv.mkDerivation { supergenpass will ask for your master password interactively, and it will not be displayed on your terminal. ''; homepage = "https://github.com/lanzz/bash-supergenpass"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "supergenpass"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/bashSnippets/package.nix b/pkgs/by-name/ba/bashSnippets/package.nix index 0dc28d54d75a..577a479e5e94 100644 --- a/pkgs/by-name/ba/bashSnippets/package.nix +++ b/pkgs/by-name/ba/bashSnippets/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Collection of small bash scripts for heavy terminal users"; homepage = "https://github.com/alexanderepstein/Bash-Snippets"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ba/bash_unit/package.nix b/pkgs/by-name/ba/bash_unit/package.nix index 5a1e0c3638ac..760333f9b31f 100644 --- a/pkgs/by-name/ba/bash_unit/package.nix +++ b/pkgs/by-name/ba/bash_unit/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { cp bash_unit $out/bin/ ''; - meta = with lib; { + meta = { description = "Bash unit testing enterprise edition framework for professionals"; - maintainers = with maintainers; [ pamplemousse ]; - platforms = platforms.all; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pamplemousse ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; mainProgram = "bash_unit"; }; } diff --git a/pkgs/by-name/ba/bashblog/package.nix b/pkgs/by-name/ba/bashblog/package.nix index 5f6fece6e1ae..901607a53d5b 100644 --- a/pkgs/by-name/ba/bashblog/package.nix +++ b/pkgs/by-name/ba/bashblog/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Single Bash script to create blogs"; mainProgram = "bashblog"; homepage = "https://github.com/cfenollosa/bashblog"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ba/bashcards/package.nix b/pkgs/by-name/ba/bashcards/package.nix index bf0f03f9a80e..f6cab3d940b3 100644 --- a/pkgs/by-name/ba/bashcards/package.nix +++ b/pkgs/by-name/ba/bashcards/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp bashcards $out/bin/ ''; - meta = with lib; { + meta = { description = "Practice flashcards in bash"; homepage = "https://github.com/rpearce/bashcards/"; - license = licenses.bsd3; - maintainers = with maintainers; [ rpearce ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ rpearce ]; + platforms = lib.platforms.all; mainProgram = "bashcards"; }; } diff --git a/pkgs/by-name/ba/bashmount/package.nix b/pkgs/by-name/ba/bashmount/package.nix index da584d14f5e0..5d4397cd8529 100644 --- a/pkgs/by-name/ba/bashmount/package.nix +++ b/pkgs/by-name/ba/bashmount/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { cp NEWS $out/share/doc/bashmount ''; - meta = with lib; { + meta = { homepage = "https://github.com/jamielinux/bashmount"; description = "Menu-driven bash script for the management of removable media with udisks"; mainProgram = "bashmount"; - maintainers = [ maintainers.koral ]; - license = licenses.gpl2Only; - platforms = platforms.all; + maintainers = [ lib.maintainers.koral ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/basicswap/package.nix b/pkgs/by-name/ba/basicswap/package.nix index b075824140ad..2f8f9cc8b2c3 100644 --- a/pkgs/by-name/ba/basicswap/package.nix +++ b/pkgs/by-name/ba/basicswap/package.nix @@ -100,11 +100,11 @@ python3Packages.buildPythonApplication rec { passthru.bindir = bindir; - meta = with lib; { + meta = { description = "Basic Atomic Swap Proof of Concept"; homepage = "https://basicswapdex.com"; - license = licenses.mit; - maintainers = with maintainers; [ linsui ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ linsui ]; mainProgram = "basicswap-run"; }; } diff --git a/pkgs/by-name/ba/basiliskii/package.nix b/pkgs/by-name/ba/basiliskii/package.nix index 9b7496745aed..256055aa1ca4 100644 --- a/pkgs/by-name/ba/basiliskii/package.nix +++ b/pkgs/by-name/ba/basiliskii/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { "--with-bincue" ]; - meta = with lib; { + meta = { description = "68k Macintosh emulator"; homepage = "https://basilisk.cebix.net/"; - license = licenses.gpl2; - maintainers = with maintainers; [ quag ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ quag ]; + platforms = lib.platforms.linux; mainProgram = "BasiliskII"; }; }) diff --git a/pkgs/by-name/ba/bastet/package.nix b/pkgs/by-name/ba/bastet/package.nix index 593707065c44..945fe048dbd0 100644 --- a/pkgs/by-name/ba/bastet/package.nix +++ b/pkgs/by-name/ba/bastet/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { cp bastet.6 "$out"/share/man/man6 ''; - meta = with lib; { + meta = { description = "Tetris clone with 'bastard' block-choosing AI"; mainProgram = "bastet"; homepage = "http://fph.altervista.org/prog/bastet.html"; - license = licenses.gpl3; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ba/batik/package.nix b/pkgs/by-name/ba/batik/package.nix index 86eec1f91b04..8b79cace5371 100644 --- a/pkgs/by-name/ba/batik/package.nix +++ b/pkgs/by-name/ba/batik/package.nix @@ -45,11 +45,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "Java based toolkit for handling SVG"; homepage = "https://xmlgraphics.apache.org/batik"; - license = licenses.asl20; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/ba/bats/package.nix b/pkgs/by-name/ba/bats/package.nix index 2f28e4093b2e..44881b4b4cc3 100644 --- a/pkgs/by-name/ba/bats/package.nix +++ b/pkgs/by-name/ba/bats/package.nix @@ -252,12 +252,12 @@ resholve.mkDerivation rec { inherit kikit; }; - meta = with lib; { + meta = { homepage = "https://github.com/bats-core/bats-core"; description = "Bash Automated Testing System"; mainProgram = "bats"; - maintainers = with maintainers; [ abathur ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ abathur ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ba/batsignal/package.nix b/pkgs/by-name/ba/batsignal/package.nix index a3b3cedf19c1..3f41df8f6263 100644 --- a/pkgs/by-name/ba/batsignal/package.nix +++ b/pkgs/by-name/ba/batsignal/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; installFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/electrickite/batsignal"; description = "Lightweight battery daemon written in C"; - license = licenses.isc; - maintainers = with maintainers; [ SlothOfAnarchy ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ SlothOfAnarchy ]; + platforms = lib.platforms.linux; mainProgram = "batsignal"; }; } diff --git a/pkgs/by-name/ba/baudline/package.nix b/pkgs/by-name/ba/baudline/package.nix index 6dec714c2e4f..31b6a1c573be 100644 --- a/pkgs/by-name/ba/baudline/package.nix +++ b/pkgs/by-name/ba/baudline/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Scientific signal analysis application"; longDescription = '' Baudline is a time-frequency browser designed for scientific @@ -77,13 +77,13 @@ stdenv.mkDerivation rec { homepage = "http://www.baudline.com/"; # See http://www.baudline.com/faq.html#licensing_terms. # (Do NOT (re)distribute on hydra.) - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ maintainers.bjornfor ]; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/ba/bayescan/package.nix b/pkgs/by-name/ba/bayescan/package.nix index 097f1f17f6dc..1919f0fea456 100644 --- a/pkgs/by-name/ba/bayescan/package.nix +++ b/pkgs/by-name/ba/bayescan/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ]; - meta = with lib; { + meta = { description = "Detecting natural selection from population-based genetic data"; homepage = "http://cmpg.unibe.ch/software/BayeScan"; - license = licenses.gpl3; - maintainers = [ maintainers.bzizou ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.bzizou ]; mainProgram = "bayescan_${version}"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/ba/bazarr/package.nix b/pkgs/by-name/ba/bazarr/package.nix index 84d4445c5f64..4d152125e41e 100644 --- a/pkgs/by-name/ba/bazarr/package.nix +++ b/pkgs/by-name/ba/bazarr/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { smoke-test = nixosTests.bazarr; }; - meta = with lib; { + meta = { description = "Subtitle manager for Sonarr and Radarr"; homepage = "https://www.bazarr.media/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl3Only; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3Only; mainProgram = "bazarr"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/bazel-gazelle/package.nix b/pkgs/by-name/ba/bazel-gazelle/package.nix index bcbbba57d4ed..4de9e3f5f06d 100644 --- a/pkgs/by-name/ba/bazel-gazelle/package.nix +++ b/pkgs/by-name/ba/bazel-gazelle/package.nix @@ -21,15 +21,15 @@ buildGoModule rec { subPackages = [ "cmd/gazelle" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bazelbuild/bazel-gazelle"; description = '' Gazelle is a Bazel build file generator for Bazel projects. It natively supports Go and protobuf, and it may be extended to support new languages and custom rule sets. ''; - license = licenses.asl20; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit ]; mainProgram = "gazelle"; }; } diff --git a/pkgs/by-name/ba/bazel-kazel/package.nix b/pkgs/by-name/ba/bazel-kazel/package.nix index d9a4b2ca8e2b..b2c4f710a37e 100644 --- a/pkgs/by-name/ba/bazel-kazel/package.nix +++ b/pkgs/by-name/ba/bazel-kazel/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { subPackages = [ "cmd/kazel" ]; - meta = with lib; { + meta = { description = "BUILD file generator for go and bazel"; homepage = "https://github.com/kubernetes/repo-infra"; - license = licenses.asl20; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit ]; mainProgram = "kazel"; }; } diff --git a/pkgs/by-name/ba/bazel-watcher/package.nix b/pkgs/by-name/ba/bazel-watcher/package.nix index b88e1803456a..ca974a1e93ef 100644 --- a/pkgs/by-name/ba/bazel-watcher/package.nix +++ b/pkgs/by-name/ba/bazel-watcher/package.nix @@ -36,12 +36,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/bazelbuild/bazel-watcher"; description = "Tools for building Bazel targets when source files change"; - license = licenses.asl20; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit ]; mainProgram = "ibazel"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/bazel_7/package.nix b/pkgs/by-name/ba/bazel_7/package.nix index 7952a07757c8..d8c7ea384e90 100644 --- a/pkgs/by-name/ba/bazel_7/package.nix +++ b/pkgs/by-name/ba/bazel_7/package.nix @@ -519,14 +519,14 @@ stdenv.mkDerivation rec { + lib.optionalString stdenv.hostPlatform.isDarwin darwinPatches + genericPatches; - meta = with lib; { + meta = { homepage = "https://github.com/bazelbuild/bazel/"; description = "Build tool that builds code quickly and reliably"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; - license = licenses.asl20; + license = lib.licenses.asl20; teams = [ lib.teams.bazel ]; mainProgram = "bazel"; inherit platforms; diff --git a/pkgs/by-name/ba/bazel_8/package.nix b/pkgs/by-name/ba/bazel_8/package.nix index 18cbc6cd3190..e29d233594ca 100644 --- a/pkgs/by-name/ba/bazel_8/package.nix +++ b/pkgs/by-name/ba/bazel_8/package.nix @@ -215,14 +215,14 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/bazelbuild/bazel/"; description = "Build tool that builds code quickly and reliably"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; - license = licenses.asl20; + license = lib.licenses.asl20; teams = [ lib.teams.bazel ]; mainProgram = "bazel"; platforms = lib.platforms.linux ++ lib.platforms.darwin; diff --git a/pkgs/by-name/bb/bb/package.nix b/pkgs/by-name/bb/bb/package.nix index 07aff0992d81..dfc4fecf42a8 100644 --- a/pkgs/by-name/bb/bb/package.nix +++ b/pkgs/by-name/bb/bb/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { --replace-fail "__attribute__ ((regparm(n)))" "" ''; - meta = with lib; { + meta = { homepage = "http://aa-project.sourceforge.net/bb"; description = "AA-lib demo"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.rnhmjoj ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.rnhmjoj ]; + platforms = lib.platforms.unix; mainProgram = "bb"; }; } diff --git a/pkgs/by-name/bb/bbe/package.nix b/pkgs/by-name/bb/bbe/package.nix index d300c7dea369..2087730fa62b 100644 --- a/pkgs/by-name/bb/bbe/package.nix +++ b/pkgs/by-name/bb/bbe/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { description = "Sed-like editor for binary files"; homepage = "https://bbe-.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.hhm ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.hhm ]; mainProgram = "bbe"; }; } diff --git a/pkgs/by-name/bb/bbin/package.nix b/pkgs/by-name/bb/bbin/package.nix index f4a69d09e79b..d6e27221071f 100644 --- a/pkgs/by-name/bb/bbin/package.nix +++ b/pkgs/by-name/bb/bbin/package.nix @@ -44,12 +44,12 @@ stdenvNoCC.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/babashka/bbin"; description = "Install any Babashka script or project with one command"; mainProgram = "bbin"; - license = licenses.mit; + license = lib.licenses.mit; inherit (babashka-unwrapped.meta) platforms; - maintainers = with maintainers; [ sohalt ]; + maintainers = with lib.maintainers; [ sohalt ]; }; } diff --git a/pkgs/by-name/bc/bc-ur/package.nix b/pkgs/by-name/bc/bc-ur/package.nix index 62c7cf0d8a20..9cb7275254d9 100644 --- a/pkgs/by-name/bc/bc-ur/package.nix +++ b/pkgs/by-name/bc/bc-ur/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/BlockchainCommons/bc-ur"; description = "UR reference library in C++"; - license = licenses.bsd2Patent; - maintainers = with maintainers; [ surfaceflinger ]; - platforms = platforms.linux; + license = lib.licenses.bsd2Patent; + maintainers = with lib.maintainers; [ surfaceflinger ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bc/bc/package.nix b/pkgs/by-name/bc/bc/package.nix index f020c93621be..c483783dc4a8 100644 --- a/pkgs/by-name/bc/bc/package.nix +++ b/pkgs/by-name/bc/bc/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { # masss-rebuild. strictDeps = true; - meta = with lib; { + meta = { description = "GNU software calculator"; homepage = "https://www.gnu.org/software/bc/"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; mainProgram = "bc"; }; } diff --git a/pkgs/by-name/bc/bcal/package.nix b/pkgs/by-name/bc/bcal/package.nix index d832900dde35..401c01d3b9b8 100644 --- a/pkgs/by-name/bc/bcal/package.nix +++ b/pkgs/by-name/bc/bcal/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { enabledTestPaths = [ "test.py" ]; - meta = with lib; { + meta = { description = "Storage conversion and expression calculator"; mainProgram = "bcal"; homepage = "https://github.com/jarun/bcal"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/bc/bcc/package.nix b/pkgs/by-name/bc/bcc/package.nix index 1a378885979d..4d28265f8c64 100644 --- a/pkgs/by-name/bc/bcc/package.nix +++ b/pkgs/by-name/bc/bcc/package.nix @@ -130,17 +130,17 @@ python3Packages.buildPythonApplication rec { bpf = nixosTests.bpf; }; - meta = with lib; { + meta = { description = "Dynamic Tracing Tools for Linux"; homepage = "https://iovisor.github.io/bcc/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ragge mic92 thoughtpolice martinetd ryan4yin ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bc/bcftools/package.nix b/pkgs/by-name/bc/bcftools/package.nix index 29d200a18e2f..86124012879c 100644 --- a/pkgs/by-name/bc/bcftools/package.nix +++ b/pkgs/by-name/bc/bcftools/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Tools for manipulating BCF2/VCF/gVCF format, SNP and short indel sequence variants"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "http://www.htslib.org/"; - platforms = platforms.unix; - maintainers = [ maintainers.mimame ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.mimame ]; }; }) diff --git a/pkgs/by-name/bc/bchoppr/package.nix b/pkgs/by-name/bc/bchoppr/package.nix index 8faf2a6b964c..47c35fe14a0c 100644 --- a/pkgs/by-name/bc/bchoppr/package.nix +++ b/pkgs/by-name/bc/bchoppr/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/sjaehn/BChoppr"; description = "Audio stream chopping LV2 plugin"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/bc/bchunk/package.nix b/pkgs/by-name/bc/bchunk/package.nix index a0a2451e96a5..392f9ca64bce 100644 --- a/pkgs/by-name/bc/bchunk/package.nix +++ b/pkgs/by-name/bc/bchunk/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "http://he.fi/bchunk/"; description = "Program that converts CD images in BIN/CUE format into a set of ISO and CDR tracks"; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "bchunk"; }; }) diff --git a/pkgs/by-name/bd/bdf2psf/package.nix b/pkgs/by-name/bd/bdf2psf/package.nix index a25cb1361b7e..f4dd3a632e25 100644 --- a/pkgs/by-name/bd/bdf2psf/package.nix +++ b/pkgs/by-name/bd/bdf2psf/package.nix @@ -28,15 +28,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "BDF to PSF converter"; homepage = "https://packages.debian.org/sid/bdf2psf"; longDescription = '' Font converter to generate console fonts from BDF source fonts ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.all; mainProgram = "bdf2psf"; }; } diff --git a/pkgs/by-name/bd/bdf2sfd/package.nix b/pkgs/by-name/bd/bdf2sfd/package.nix index 6f80caafaa8e..20e6dd4a6ff1 100644 --- a/pkgs/by-name/bd/bdf2sfd/package.nix +++ b/pkgs/by-name/bd/bdf2sfd/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "BDF to SFD converter"; homepage = "https://github.com/fcambus/bdf2sfd"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "bdf2sfd"; }; diff --git a/pkgs/by-name/bd/bdfresize/package.nix b/pkgs/by-name/bd/bdfresize/package.nix index d35340030f5f..ab8ebee3f20d 100644 --- a/pkgs/by-name/bd/bdfresize/package.nix +++ b/pkgs/by-name/bd/bdfresize/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { # Fix compilation of getopt; see getopt package for more details env.NIX_CFLAGS_COMPILE = "-D__GNU_LIBRARY__"; - meta = with lib; { + meta = { description = "Tool to resize BDF fonts"; homepage = "http://openlab.ring.gr.jp/efont/dist/tools/bdfresize/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ malte-v ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ malte-v ]; mainProgram = "bdfresize"; }; } diff --git a/pkgs/by-name/bd/bdsync/package.nix b/pkgs/by-name/bd/bdsync/package.nix index 5e4bfad04385..edf765d3967e 100644 --- a/pkgs/by-name/bd/bdsync/package.nix +++ b/pkgs/by-name/bd/bdsync/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { install -Dm644 bdsync.1 -t $out/share/man/man1/ ''; - meta = with lib; { + meta = { description = "Fast block device synchronizing tool"; homepage = "https://github.com/rolffokkens/bdsync"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jluttine ]; mainProgram = "bdsync"; }; } diff --git a/pkgs/by-name/bd/bdt/package.nix b/pkgs/by-name/bd/bdt/package.nix index f6f37623524c..437bce935a0f 100644 --- a/pkgs/by-name/bd/bdt/package.nix +++ b/pkgs/by-name/bd/bdt/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-TikWh0U56x3HKca5Dj68Z59mOgedv+K5r+y7/CcpWa8="; - meta = with lib; { + meta = { description = "CLI tool to query parquet, json and avro files"; homepage = "https://github.com/datafusion-contrib/bdt"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "bdt"; - maintainers = with maintainers; [ matthiasq ]; + maintainers = with lib.maintainers; [ matthiasq ]; }; } diff --git a/pkgs/by-name/be/beancount-language-server/package.nix b/pkgs/by-name/be/beancount-language-server/package.nix index e640d651efb8..d8823cbf0695 100644 --- a/pkgs/by-name/be/beancount-language-server/package.nix +++ b/pkgs/by-name/be/beancount-language-server/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { $out/bin/beancount-language-server --help > /dev/null ''; - meta = with lib; { + meta = { description = "Language Server Protocol (LSP) for beancount files"; mainProgram = "beancount-language-server"; homepage = "https://github.com/polarmutex/beancount-language-server"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ polarmutex ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ polarmutex ]; }; } diff --git a/pkgs/by-name/be/beanstalkd/package.nix b/pkgs/by-name/be/beanstalkd/package.nix index f7cce03717ed..b022c9653d8b 100644 --- a/pkgs/by-name/be/beanstalkd/package.nix +++ b/pkgs/by-name/be/beanstalkd/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { smoke-test = nixosTests.beanstalkd; }; - meta = with lib; { + meta = { homepage = "http://kr.github.io/beanstalkd/"; description = "Simple, fast work queue"; - license = licenses.mit; - maintainers = [ maintainers.zimbatm ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.zimbatm ]; + platforms = lib.platforms.all; mainProgram = "beanstalkd"; }; } diff --git a/pkgs/by-name/be/beats/package.nix b/pkgs/by-name/be/beats/package.nix index 2c21e45952ab..d27d2556d8db 100644 --- a/pkgs/by-name/be/beats/package.nix +++ b/pkgs/by-name/be/beats/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { "CC=cc" ]; - meta = with lib; { + meta = { homepage = "https://github.com/j0hax/beats"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; description = "Swatch Internet Time implemented as a C program"; - platforms = platforms.all; - maintainers = [ maintainers.j0hax ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.j0hax ]; mainProgram = "beats"; }; } diff --git a/pkgs/by-name/be/bedops/package.nix b/pkgs/by-name/be/bedops/package.nix index 2907ed497d9e..a47a50ce2c08 100644 --- a/pkgs/by-name/be/bedops/package.nix +++ b/pkgs/by-name/be/bedops/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Suite of tools for addressing questions arising in genomics studies"; homepage = "https://github.com/bedops/bedops"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/be/bedtools/package.nix b/pkgs/by-name/be/bedtools/package.nix index 67ba0d019e47..6997af241be2 100644 --- a/pkgs/by-name/be/bedtools/package.nix +++ b/pkgs/by-name/be/bedtools/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { buildPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cxx} CC=${cc} -j $NIX_BUILD_CORES"; installPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cxx} CC=${cc} install"; - meta = with lib; { + meta = { description = "Powerful toolset for genome arithmetic"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://bedtools.readthedocs.io/en/latest/"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/be/bee/package.nix b/pkgs/by-name/be/bee/package.nix index 4bffa8569d31..012eee1a2e6a 100644 --- a/pkgs/by-name/be/bee/package.nix +++ b/pkgs/by-name/be/bee/package.nix @@ -39,7 +39,7 @@ buildGoModule rec { patchShebangs $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/ethersphere/bee"; description = "Ethereum Swarm Bee"; longDescription = '' @@ -51,7 +51,7 @@ buildGoModule rec { Bee is a Swarm node implementation, written in Go. ''; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/be/beefi/package.nix b/pkgs/by-name/be/beefi/package.nix index 5834cd848e33..ac3a5e6b9d02 100644 --- a/pkgs/by-name/be/beefi/package.nix +++ b/pkgs/by-name/be/beefi/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { installManPage beefi.1 ''; - meta = with lib; { + meta = { description = "Small script to create bootable EFISTUB kernel images"; mainProgram = "beefi"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ tu-maurice ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tu-maurice ]; homepage = "https://github.com/jfeick/beefi"; }; } diff --git a/pkgs/by-name/be/beep/package.nix b/pkgs/by-name/be/beep/package.nix index b1a37e5f9851..5d534994419e 100644 --- a/pkgs/by-name/be/beep/package.nix +++ b/pkgs/by-name/be/beep/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "Advanced PC speaker beeper"; homepage = "https://github.com/spkr-beep/beep"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "beep"; }; } diff --git a/pkgs/by-name/be/beeper/package.nix b/pkgs/by-name/be/beeper/package.nix index 8517c9ec7390..75cc2ce6d53a 100644 --- a/pkgs/by-name/be/beeper/package.nix +++ b/pkgs/by-name/be/beeper/package.nix @@ -70,7 +70,7 @@ appimageTools.wrapAppImage { inherit src; }; - meta = with lib; { + meta = { description = "Universal chat app"; longDescription = '' Beeper is a universal chat app. With Beeper, you can send @@ -78,8 +78,8 @@ appimageTools.wrapAppImage { many different chat networks. ''; homepage = "https://beeper.com"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jshcmpbll zh4ngx ]; diff --git a/pkgs/by-name/be/bees/package.nix b/pkgs/by-name/be/bees/package.nix index a2061bd6ccba..0366d72e5741 100644 --- a/pkgs/by-name/be/bees/package.nix +++ b/pkgs/by-name/be/bees/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { smoke-test = nixosTests.bees; }; - meta = with lib; { + meta = { homepage = "https://github.com/Zygo/bees"; description = "Block-oriented BTRFS deduplication service"; longDescription = "Best-Effort Extent-Same: bees finds not just identical files, but also identical extents within files that differ"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ chaduffy ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ chaduffy ]; }; } diff --git a/pkgs/by-name/be/behdad-fonts/package.nix b/pkgs/by-name/be/behdad-fonts/package.nix index d61be9664231..feacfc143509 100644 --- a/pkgs/by-name/be/behdad-fonts/package.nix +++ b/pkgs/by-name/be/behdad-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/font-store/BehdadFont"; description = "Persian/Arabic Open Source Font"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/be/bemenu/package.nix b/pkgs/by-name/be/bemenu/package.nix index dfca37bbc0c5..da29bc3e1ae8 100644 --- a/pkgs/by-name/be/bemenu/package.nix +++ b/pkgs/by-name/be/bemenu/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/Cloudef/bemenu"; description = "Dynamic menu library and client program inspired by dmenu"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ crertel ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ crertel ]; mainProgram = "bemenu"; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; }) diff --git a/pkgs/by-name/be/bemoji/package.nix b/pkgs/by-name/be/bemoji/package.nix index 939964c6bc87..8621195173bb 100644 --- a/pkgs/by-name/be/bemoji/package.nix +++ b/pkgs/by-name/be/bemoji/package.nix @@ -21,13 +21,13 @@ stdenvNoCC.mkDerivation { install -Dm555 bemoji -t $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/marty-oehme/bemoji/"; description = "Emoji picker with support for bemenu/wofi/rofi/dmenu and wayland/X11"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "bemoji"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ laurent-f1z1 MrSom3body ]; diff --git a/pkgs/by-name/be/benchexec/package.nix b/pkgs/by-name/be/benchexec/package.nix index b992caa71598..10cd1d8d3855 100644 --- a/pkgs/by-name/be/benchexec/package.nix +++ b/pkgs/by-name/be/benchexec/package.nix @@ -60,11 +60,11 @@ python3.pkgs.buildPythonApplication rec { containerexec-version = testVersion "containerexec"; }; - meta = with lib; { + meta = { description = "Framework for Reliable Benchmarking and Resource Measurement"; homepage = "https://github.com/sosy-lab/benchexec"; - maintainers = with maintainers; [ lorenzleutgeb ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ lorenzleutgeb ]; + license = lib.licenses.asl20; mainProgram = "benchexec"; }; } diff --git a/pkgs/by-name/be/bencode/package.nix b/pkgs/by-name/be/bencode/package.nix index 776f1dcddf0d..d4e2257c6665 100644 --- a/pkgs/by-name/be/bencode/package.nix +++ b/pkgs/by-name/be/bencode/package.nix @@ -49,9 +49,9 @@ stdenv.mkDerivation rec { description = "Header-only C++20 bencode serialization/deserialization library"; homepage = "https://github.com/fbdtemme/bencode"; changelog = "https://github.com/fbdtemme/bencode/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # Broken because the default stdenv on these targets doesn't support C++20. broken = with stdenv; isDarwin || (isLinux && isAarch64); }; diff --git a/pkgs/by-name/be/bento4/package.nix b/pkgs/by-name/be/bento4/package.nix index d32d54457110..64f4a6e27bdd 100644 --- a/pkgs/by-name/be/bento4/package.nix +++ b/pkgs/by-name/be/bento4/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { find $out/bin -maxdepth 1 -executable -type f -exec install_name_tool -change @rpath/libap4.dylib $out/lib/libap4.dylib {} \; ''; - meta = with lib; { + meta = { description = "Full-featured MP4 format and MPEG DASH library and tools"; homepage = "http://bento4.com"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ makefu ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ makefu ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/be/bepass/package.nix b/pkgs/by-name/be/bepass/package.nix index 02d8b58a2208..bdd19c2a9a1d 100644 --- a/pkgs/by-name/be/bepass/package.nix +++ b/pkgs/by-name/be/bepass/package.nix @@ -51,12 +51,12 @@ buildGoModule rec { mv $out/bin/cli $out/bin/bepass ''; - meta = with lib; { + meta = { homepage = "https://github.com/bepass-org/bepass"; description = "Simple DPI bypass tool written in go"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "bepass"; - maintainers = with maintainers; [ oluceps ]; + maintainers = with lib.maintainers; [ oluceps ]; broken = enableGUI; }; } diff --git a/pkgs/by-name/be/bepasty/package.nix b/pkgs/by-name/be/bepasty/package.nix index c2b9e46d286a..bb59d8c119db 100644 --- a/pkgs/by-name/be/bepasty/package.nix +++ b/pkgs/by-name/be/bepasty/package.nix @@ -73,11 +73,11 @@ bepastyPython.pkgs.buildPythonPackage rec { "src/bepasty/tests/test_website.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bepasty/bepasty-server"; description = "Binary pastebin server"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ aither64 makefu ]; diff --git a/pkgs/by-name/be/berglas/package.nix b/pkgs/by-name/be/berglas/package.nix index 86925484ca48..4e86bbb85c82 100644 --- a/pkgs/by-name/be/berglas/package.nix +++ b/pkgs/by-name/be/berglas/package.nix @@ -60,10 +60,10 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Tool for managing secrets on Google Cloud"; homepage = "https://github.com/GoogleCloudPlatform/berglas"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "berglas"; }; } diff --git a/pkgs/by-name/be/besu/package.nix b/pkgs/by-name/be/besu/package.nix index e0e2675f2937..ef0f32f5dadf 100644 --- a/pkgs/by-name/be/besu/package.nix +++ b/pkgs/by-name/be/besu/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Enterprise-grade Java-based, Apache 2.0 licensed Ethereum client"; homepage = "https://www.hyperledger.org/projects/besu"; changelog = "https://github.com/hyperledger/besu/blob/${finalAttrs.version}/CHANGELOG.md"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.all; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mmahut ]; }; }) diff --git a/pkgs/by-name/be/betaflight-configurator/package.nix b/pkgs/by-name/be/betaflight-configurator/package.nix index a153bd32a24d..1ef369d7f25f 100644 --- a/pkgs/by-name/be/betaflight-configurator/package.nix +++ b/pkgs/by-name/be/betaflight-configurator/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Betaflight flight control system configuration tool"; mainProgram = "betaflight-configurator"; longDescription = '' @@ -66,9 +66,9 @@ stdenv.mkDerivation rec { quadcopters, hexacopters, octocopters and fixed-wing aircraft. ''; homepage = "https://github.com/betaflight/betaflight/wiki"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl3; - maintainers = with maintainers; [ wucke13 ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ wucke13 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/be/better-commits/package.nix b/pkgs/by-name/be/better-commits/package.nix index 7f5a6d96705b..8c12954d937b 100644 --- a/pkgs/by-name/be/better-commits/package.nix +++ b/pkgs/by-name/be/better-commits/package.nix @@ -21,12 +21,12 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "CLI for creating better commits following the conventional commits specification"; homepage = "https://github.com/Everduin94/better-commits"; - license = licenses.mit; - maintainers = [ maintainers.ilarvne ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ilarvne ]; + platforms = lib.platforms.unix; mainProgram = "better-commits"; }; } diff --git a/pkgs/by-name/be/bettercap/package.nix b/pkgs/by-name/be/bettercap/package.nix index cc7a2e5df954..e189c63b70e7 100644 --- a/pkgs/by-name/be/bettercap/package.nix +++ b/pkgs/by-name/be/bettercap/package.nix @@ -35,7 +35,7 @@ buildGoModule rec { libnetfilter_queue ]; - meta = with lib; { + meta = { description = "Man in the middle tool"; longDescription = '' BetterCAP is a powerful, flexible and portable tool created to perform various @@ -43,7 +43,7 @@ buildGoModule rec { in realtime, sniff for credentials and much more. ''; homepage = "https://www.bettercap.org/"; - license = with licenses; [ gpl3Only ]; + license = with lib.licenses; [ gpl3Only ]; mainProgram = "bettercap"; # Broken on darwin for Go toolchain > 1.22, with error: # 'link: golang.org/x/net/internal/socket: invalid reference to syscall.recvmsg' diff --git a/pkgs/by-name/be/betterdiscord-installer/package.nix b/pkgs/by-name/be/betterdiscord-installer/package.nix index 35e66add048a..2889af991afe 100644 --- a/pkgs/by-name/be/betterdiscord-installer/package.nix +++ b/pkgs/by-name/be/betterdiscord-installer/package.nix @@ -24,10 +24,10 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Installer for BetterDiscord"; homepage = "https://betterdiscord.app"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "betterdiscord-installer"; diff --git a/pkgs/by-name/be/betterlockscreen/package.nix b/pkgs/by-name/be/betterlockscreen/package.nix index 71c86c823b28..13d9998fdbb4 100644 --- a/pkgs/by-name/be/betterlockscreen/package.nix +++ b/pkgs/by-name/be/betterlockscreen/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fast and sweet looking lockscreen for linux systems with effects"; homepage = "https://github.com/betterlockscreen/betterlockscreen"; mainProgram = "betterlockscreen"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ eyjhb sebtm ]; diff --git a/pkgs/by-name/be/betula/package.nix b/pkgs/by-name/be/betula/package.nix index 7b5ee7064910..0d4f48597e61 100644 --- a/pkgs/by-name/be/betula/package.nix +++ b/pkgs/by-name/be/betula/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # See also: https://todo.sr.ht/~bouncepaw/betula/91 checkFlags = "-skip=TestTitles|TestHEntries"; - meta = with lib; { + meta = { description = "Single-user self-hosted bookmarking software"; mainProgram = "betula"; homepage = "https://betula.mycorrhiza.wiki/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ GoldsteinE ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ GoldsteinE ]; }; } diff --git a/pkgs/by-name/be/beyond-identity/package.nix b/pkgs/by-name/be/beyond-identity/package.nix index c28fab441b74..d87ccd7e832f 100644 --- a/pkgs/by-name/be/beyond-identity/package.nix +++ b/pkgs/by-name/be/beyond-identity/package.nix @@ -27,13 +27,13 @@ let polkit polkit_gnome ]; - meta = with lib; { + meta = { description = "Passwordless MFA identities for workforces, customers, and developers"; homepage = "https://www.beyondidentity.com"; downloadPage = "https://app.byndid.com/downloads"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ klden hornwall ]; diff --git a/pkgs/by-name/bf/bfetch/package.nix b/pkgs/by-name/bf/bfetch/package.nix index f7a8957e6d4f..27e52cdf554a 100644 --- a/pkgs/by-name/bf/bfetch/package.nix +++ b/pkgs/by-name/bf/bfetch/package.nix @@ -24,12 +24,12 @@ stdenvNoCC.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "SuperB general-purpose fetch displayer written in portable sh"; homepage = "https://github.com/NNBnh/bfetch"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moni ]; mainProgram = "bfetch"; }; } diff --git a/pkgs/by-name/bf/bfg-repo-cleaner/package.nix b/pkgs/by-name/bf/bfg-repo-cleaner/package.nix index 9a9dea4594d3..77b63b8435fe 100644 --- a/pkgs/by-name/bf/bfg-repo-cleaner/package.nix +++ b/pkgs/by-name/bf/bfg-repo-cleaner/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { versionCheckProgram = "${placeholder "out"}/bin/${meta.mainProgram}"; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { homepage = "https://rtyley.github.io/bfg-repo-cleaner/"; # Descriptions taken with minor modification from the homepage of bfg-repo-cleaner description = "Removes large or troublesome blobs in a git repository like git-filter-branch does, but faster"; @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { it's faster (10-720x), simpler (dedicated to just removing things), and beautiful (can use Scala instead of bash to script customizations). ''; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3; - maintainers = [ maintainers.changlinli ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.changlinli ]; mainProgram = "bfg"; - platforms = platforms.unix; + platforms = lib.platforms.unix; downloadPage = "https://mvnrepository.com/artifact/com.madgag/bfg/${version}"; }; diff --git a/pkgs/by-name/bf/bfr/package.nix b/pkgs/by-name/bf/bfr/package.nix index 19b500f0fb1c..04a07efff125 100644 --- a/pkgs/by-name/bf/bfr/package.nix +++ b/pkgs/by-name/bf/bfr/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; - meta = with lib; { + meta = { description = "General-purpose command-line pipe buffer"; license = lib.licenses.gpl2Only; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bf/bfs/package.nix b/pkgs/by-name/bf/bfs/package.nix index 4e644915e18d..4a4461b264ca 100644 --- a/pkgs/by-name/bf/bfs/package.nix +++ b/pkgs/by-name/bf/bfs/package.nix @@ -33,16 +33,16 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-release" ]; makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Breadth-first version of the UNIX find command"; longDescription = '' bfs is a variant of the UNIX find command that operates breadth-first rather than depth-first. It is otherwise intended to be compatible with many versions of find. ''; homepage = "https://github.com/tavianator/bfs"; - license = licenses.bsd0; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd0; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ yesbox cafkafk ]; diff --git a/pkgs/by-name/bf/bfscripts/package.nix b/pkgs/by-name/bf/bfscripts/package.nix index 80bc09cc4a38..669de3c9015f 100644 --- a/pkgs/by-name/bf/bfscripts/package.nix +++ b/pkgs/by-name/bf/bfscripts/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { ${lib.concatStringsSep "\n" (map (b: "install -D ${b} $out/bin/${b}") binaries)} ''; - meta = with lib; { + meta = { description = "Collection of scripts used for BlueField SoC system management"; homepage = "https://github.com/Mellanox/bfscripts"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nikstur thillux ]; diff --git a/pkgs/by-name/bf/bftools/package.nix b/pkgs/by-name/bf/bftools/package.nix index 2e60748d162e..9877c511df02 100644 --- a/pkgs/by-name/bf/bftools/package.nix +++ b/pkgs/by-name/bf/bftools/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; - meta = with lib; { + meta = { description = "Bundle of scripts for using Bio-Formats on the command line with bioformats_package.jar already included"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl2; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; homepage = "https://www.openmicroscopy.org/bio-formats/"; - maintainers = [ maintainers.tbenst ]; + maintainers = [ lib.maintainers.tbenst ]; }; } diff --git a/pkgs/by-name/bf/bftpd/package.nix b/pkgs/by-name/bf/bftpd/package.nix index 414171b7aa72..7c1b49f1bfe9 100644 --- a/pkgs/by-name/bf/bftpd/package.nix +++ b/pkgs/by-name/bf/bftpd/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Minimal ftp server"; mainProgram = "bftpd"; downloadPage = "http://bftpd.sf.net/download.html"; homepage = "http://bftpd.sf.net/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bg/bgpq3/package.nix b/pkgs/by-name/bg/bgpq3/package.nix index b8e46187787a..c628b26be221 100644 --- a/pkgs/by-name/bg/bgpq3/package.nix +++ b/pkgs/by-name/bg/bgpq3/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { hash = "sha256-rqZI7yqlVHfdRTOsA5V6kzJ2TGCy8mp6yP+rzsQX9Yc="; }; - meta = with lib; { + meta = { description = "bgp filtering automation tool"; homepage = "https://github.com/snar/bgpq3"; - license = licenses.bsd2; - maintainers = with maintainers; [ b4dm4n ]; - platforms = with platforms; unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ b4dm4n ]; + platforms = with lib.platforms; unix; mainProgram = "bgpq3"; }; } diff --git a/pkgs/by-name/bg/bgpq4/package.nix b/pkgs/by-name/bg/bgpq4/package.nix index b5ff94576863..4f30a93f98a2 100644 --- a/pkgs/by-name/bg/bgpq4/package.nix +++ b/pkgs/by-name/bg/bgpq4/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "BGP filtering automation tool"; homepage = "https://github.com/bgp/bgpq4"; - license = licenses.bsd2; - maintainers = with maintainers; [ vincentbernat ]; - platforms = with platforms; unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ vincentbernat ]; + platforms = with lib.platforms; unix; mainProgram = "bgpq4"; }; } diff --git a/pkgs/by-name/bg/bgs/package.nix b/pkgs/by-name/bg/bgs/package.nix index c37dfa311cbe..c731c393059d 100644 --- a/pkgs/by-name/bg/bgs/package.nix +++ b/pkgs/by-name/bg/bgs/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { preConfigure = ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk''; - meta = with lib; { + meta = { description = "Extremely fast and small background setter for X"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "bgs"; }; } diff --git a/pkgs/by-name/bi/bibata-cursors-translucent/package.nix b/pkgs/by-name/bi/bibata-cursors-translucent/package.nix index 89687d203247..97798aeeaea9 100644 --- a/pkgs/by-name/bi/bibata-cursors-translucent/package.nix +++ b/pkgs/by-name/bi/bibata-cursors-translucent/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { cp -pr Bibata_* $out/share/icons/ ''; - meta = with lib; { + meta = { description = "Translucent Varient of the Material Based Cursor"; homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/bi/bibclean/package.nix b/pkgs/by-name/bi/bibclean/package.nix index a87569b0213e..710d0ed797be 100644 --- a/pkgs/by-name/bi/bibclean/package.nix +++ b/pkgs/by-name/bi/bibclean/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Prettyprint and syntax check BibTeX and Scribe bibliography data base files"; homepage = "http://ftp.math.utah.edu/pub/bibclean"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/by-name/bi/biber-ms/package.nix b/pkgs/by-name/bi/biber-ms/package.nix index 0ab78240ec49..b221b1d15dbd 100644 --- a/pkgs/by-name/bi/biber-ms/package.nix +++ b/pkgs/by-name/bi/biber-ms/package.nix @@ -91,11 +91,11 @@ perlPackages.buildPerlModule { shortenPerlShebang "$out"/bin/biber-ms ''; - meta = with lib; { + meta = { description = "Backend for BibLaTeX (multiscript version)"; license = biberSource.meta.license; - platforms = platforms.unix; - maintainers = [ maintainers.xworld21 ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.xworld21 ]; mainProgram = "biber-ms"; }; } diff --git a/pkgs/by-name/bi/biber/package.nix b/pkgs/by-name/bi/biber/package.nix index ccc47ea66539..57c31398d7d3 100644 --- a/pkgs/by-name/bi/biber/package.nix +++ b/pkgs/by-name/bi/biber/package.nix @@ -75,11 +75,11 @@ perlPackages.buildPerlModule { shortenPerlShebang $out/bin/biber ''; - meta = with lib; { + meta = { description = "Backend for BibLaTeX"; license = biberSource.meta.license; - platforms = platforms.unix; - maintainers = [ maintainers.ttuegel ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ttuegel ]; mainProgram = "biber"; }; } diff --git a/pkgs/by-name/bi/biblatex-check/package.nix b/pkgs/by-name/bi/biblatex-check/package.nix index 79cc1264a057..f7b7eee5d333 100644 --- a/pkgs/by-name/bi/biblatex-check/package.nix +++ b/pkgs/by-name/bi/biblatex-check/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { install -Dm755 biblatex_check.py $out/bin/biblatex-check ''; - meta = with lib; { + meta = { description = "Python2/3 script for checking BibLatex .bib files"; homepage = "https://github.com/Pezmc/BibLatex-Check"; - license = licenses.mit; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "biblatex-check"; }; } diff --git a/pkgs/by-name/bi/biblesync/package.nix b/pkgs/by-name/bi/biblesync/package.nix index 58201c9ea269..1ea944123e14 100644 --- a/pkgs/by-name/bi/biblesync/package.nix +++ b/pkgs/by-name/bi/biblesync/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libuuid ]; - meta = with lib; { + meta = { homepage = "https://wiki.crosswire.org/BibleSync"; description = "Multicast protocol to Bible software shared conavigation"; longDescription = '' @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { support mode setting, setup for packet reception, transmit on local navigation, and handling of incoming packets. ''; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; maintainers = [ ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/bi/bibtex2html/package.nix b/pkgs/by-name/bi/bibtex2html/package.nix index eae4f6624673..1ae7bf9bbd80 100644 --- a/pkgs/by-name/bi/bibtex2html/package.nix +++ b/pkgs/by-name/bi/bibtex2html/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { perl ]; - meta = with lib; { + meta = { description = "Collection of tools for translating from BibTeX to HTML"; homepage = "https://www.lri.fr/~filliatr/bibtex2html/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = ocaml.meta.platforms or [ ]; - maintainers = [ maintainers.scolobb ]; + maintainers = [ lib.maintainers.scolobb ]; }; } diff --git a/pkgs/by-name/bi/bibtool/package.nix b/pkgs/by-name/bi/bibtool/package.nix index e52c0bd97929..5a3dd0a88dca 100644 --- a/pkgs/by-name/bi/bibtool/package.nix +++ b/pkgs/by-name/bi/bibtool/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "test"; - meta = with lib; { + meta = { description = "Tool for manipulating BibTeX bibliographies"; homepage = "http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; mainProgram = "bibtool"; }; } diff --git a/pkgs/by-name/bi/bibutils/package.nix b/pkgs/by-name/bi/bibutils/package.nix index 54cc64412ac5..f62046e729e1 100644 --- a/pkgs/by-name/bi/bibutils/package.nix +++ b/pkgs/by-name/bi/bibutils/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { export DYLD_LIBRARY_PATH=`pwd`/lib ''; - meta = with lib; { + meta = { description = "Bibliography format interconversion"; longDescription = "The bibutils program set interconverts between various bibliography formats using a common MODS-format XML intermediate. For example, one can convert RIS-format files to Bibtex by doing two transformations: RIS->MODS->Bibtex. By using a common intermediate for N formats, only 2N programs are required and not N²-N. These programs operate on the command line and are styled after standard UNIX-like filters."; homepage = "https://sourceforge.net/p/bibutils/home/Bibutils/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.garrison ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.garrison ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bi/bicgl/package.nix b/pkgs/by-name/bi/bicgl/package.nix index 76231816053c..b8bd56e83072 100644 --- a/pkgs/by-name/bi/bicgl/package.nix +++ b/pkgs/by-name/bi/bicgl/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://github.com/${owner}/bicgl"; description = "Brain Imaging Centre graphics library"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = licenses.hpndUc; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.hpndUc; }; } diff --git a/pkgs/by-name/bi/bicpl/package.nix b/pkgs/by-name/bi/bicpl/package.nix index c783217ab8cb..b7c88f8b7d70 100644 --- a/pkgs/by-name/bi/bicpl/package.nix +++ b/pkgs/by-name/bi/bicpl/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { doCheck = false; # internal_volume_io.h: No such file or directory - meta = with lib; { + meta = { homepage = "https://github.com/BIC-MNI/bicpl"; description = "Brain Imaging Centre programming library"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = with licenses; [ + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = with lib.licenses; [ hpndUc gpl3Plus ]; diff --git a/pkgs/by-name/bi/bikeshed/package.nix b/pkgs/by-name/bi/bikeshed/package.nix index cbe0a347ebfc..307e25dd7c66 100644 --- a/pkgs/by-name/bi/bikeshed/package.nix +++ b/pkgs/by-name/bi/bikeshed/package.nix @@ -59,7 +59,7 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "bikeshed" ]; - meta = with lib; { + meta = { description = "Preprocessor for anyone writing specifications that converts source files into actual specs"; mainProgram = "bikeshed"; longDescription = '' @@ -70,7 +70,7 @@ python3Packages.buildPythonApplication rec { and many other W3C working groups, WHATWG, the C++ standards committee, and elsewhere! ''; homepage = "https://tabatkins.github.io/bikeshed/"; - license = licenses.cc0; + license = lib.licenses.cc0; maintainers = with lib.maintainers; [ matthiasbeyer hemera diff --git a/pkgs/by-name/bi/bin2c/package.nix b/pkgs/by-name/bi/bin2c/package.nix index b918d20dbdcb..7101b17f2000 100644 --- a/pkgs/by-name/bi/bin2c/package.nix +++ b/pkgs/by-name/bi/bin2c/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { checkTarget = "test"; checkInputs = [ util-linux ]; # uuidgen - meta = with lib; { + meta = { description = "Embed binary & text files inside C binaries"; mainProgram = "bin2c"; homepage = "https://github.com/adobe/bin2c"; - license = licenses.asl20; - maintainers = [ maintainers.shadowrz ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.shadowrz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bi/binbloom/package.nix b/pkgs/by-name/bi/binbloom/package.nix index d87670431d56..869a907bc2f1 100644 --- a/pkgs/by-name/bi/binbloom/package.nix +++ b/pkgs/by-name/bi/binbloom/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Raw binary firmware analysis software"; mainProgram = "binbloom"; homepage = "https://github.com/quarkslab/binbloom"; - license = licenses.asl20; - maintainers = with maintainers; [ erdnaxe ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ erdnaxe ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bi/bind/package.nix b/pkgs/by-name/bi/bind/package.nix index f77606459334..68b0f8f4f81f 100644 --- a/pkgs/by-name/bi/bind/package.nix +++ b/pkgs/by-name/bi/bind/package.nix @@ -159,15 +159,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://www.isc.org/bind/"; description = "Domain name server"; - license = licenses.mpl20; + license = lib.licenses.mpl20; changelog = "https://downloads.isc.org/isc/bind9/cur/${lib.versions.majorMinor finalAttrs.version}/doc/arm/html/notes.html#notes-for-bind-${ lib.replaceStrings [ "." ] [ "-" ] finalAttrs.version }"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; outputsToInstall = [ "out" diff --git a/pkgs/by-name/bi/bingrep/package.nix b/pkgs/by-name/bi/bingrep/package.nix index 3d81f8202de9..d66c76afc307 100644 --- a/pkgs/by-name/bi/bingrep/package.nix +++ b/pkgs/by-name/bi/bingrep/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-cGDFbf8fUGbuxl8tOvKss5tqpBd1TY7TcwNzWwdw12A="; - meta = with lib; { + meta = { description = "Greps through binaries from various OSs and architectures, and colors them"; mainProgram = "bingrep"; homepage = "https://github.com/m4b/bingrep"; - license = licenses.mit; - maintainers = with maintainers; [ minijackson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/bi/binocle/package.nix b/pkgs/by-name/bi/binocle/package.nix index 6441a3980039..e6b10eb15dd0 100644 --- a/pkgs/by-name/bi/binocle/package.nix +++ b/pkgs/by-name/bi/binocle/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { description = "Graphical tool to visualize binary data"; mainProgram = "binocle"; homepage = "https://github.com/sharkdp/binocle"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; diff --git a/pkgs/by-name/bi/binsider/package.nix b/pkgs/by-name/bi/binsider/package.nix index 78295d09b77a..25e6aea924e0 100644 --- a/pkgs/by-name/bi/binsider/package.nix +++ b/pkgs/by-name/bi/binsider/package.nix @@ -25,14 +25,14 @@ rustPlatform.buildRustPackage rec { "--skip=test_init" ]; - meta = with lib; { + meta = { description = "Analyzer of executables using a terminal user interface"; homepage = "https://github.com/orhun/binsider"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ samueltardieu ]; + maintainers = with lib.maintainers; [ samueltardieu ]; mainProgram = "binsider"; }; } diff --git a/pkgs/by-name/bi/binsort/package.nix b/pkgs/by-name/bi/binsort/package.nix index d1296d8334ae..f9b059586a65 100644 --- a/pkgs/by-name/bi/binsort/package.nix +++ b/pkgs/by-name/bi/binsort/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Sort files by binary similarity"; mainProgram = "binsort"; homepage = "http://neoscientists.org/~tmueller/binsort/"; - license = licenses.bsd3; - maintainers = with maintainers; [ numinit ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ numinit ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/bi/bio-gappa/package.nix b/pkgs/by-name/bi/bio-gappa/package.nix index f619ad313517..1817be15227b 100644 --- a/pkgs/by-name/bi/bio-gappa/package.nix +++ b/pkgs/by-name/bi/bio-gappa/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/lczech/gappa"; description = "Toolkit for analyzing and visualizing phylogenetic (placement) data"; longDescription = '' @@ -62,9 +62,9 @@ stdenv.mkDerivation (finalAttrs: { tools such as EPA-ng, RAxML-EPA or pplacer, and usually stored in jplace files. ''; - platforms = platforms.all; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ bzizou ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bzizou ]; mainProgram = "gappa"; }; }) diff --git a/pkgs/by-name/bi/bioawk/package.nix b/pkgs/by-name/bi/bioawk/package.nix index 8caee2afea0d..c116831eb63e 100644 --- a/pkgs/by-name/bi/bioawk/package.nix +++ b/pkgs/by-name/bi/bioawk/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "BWK awk modified for biological data"; mainProgram = "bioawk"; homepage = "https://github.com/lh3/bioawk"; - license = licenses.hpnd; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.hpnd; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bi/biosdevname/package.nix b/pkgs/by-name/bi/biosdevname/package.nix index c1085956f00b..26ec44e35d29 100644 --- a/pkgs/by-name/bi/biosdevname/package.nix +++ b/pkgs/by-name/bi/biosdevname/package.nix @@ -29,9 +29,9 @@ stdenv.mkDerivation rec { configureFlags = [ "--sbindir=\${out}/bin" ]; - meta = with lib; { + meta = { description = "Udev helper for naming devices per BIOS names"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/bi/biscuit-cli/package.nix b/pkgs/by-name/bi/biscuit-cli/package.nix index 7a007e0a8bbc..80fad7fff0e8 100644 --- a/pkgs/by-name/bi/biscuit-cli/package.nix +++ b/pkgs/by-name/bi/biscuit-cli/package.nix @@ -29,14 +29,14 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "CLI to generate and inspect biscuit tokens"; homepage = "https://www.biscuitsec.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ shlevy gaelreyrol ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "biscuit"; }; } diff --git a/pkgs/by-name/bi/bisoncpp/package.nix b/pkgs/by-name/bi/bisoncpp/package.nix index d4a2d08259ff..6e9cb76f0570 100644 --- a/pkgs/by-name/bi/bisoncpp/package.nix +++ b/pkgs/by-name/bi/bisoncpp/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { ./build install x ''; - meta = with lib; { + meta = { description = "Parser generator like bison, but it generates C++ code"; mainProgram = "bisonc++"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://fbb-git.gitlab.io/bisoncpp/"; }; } diff --git a/pkgs/by-name/bi/bit/package.nix b/pkgs/by-name/bi/bit/package.nix index 76bdfa373a7f..3c9f2b572ba0 100644 --- a/pkgs/by-name/bi/bit/package.nix +++ b/pkgs/by-name/bi/bit/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { # Tests require a repository doCheck = false; - meta = with lib; { + meta = { description = "Command-line tool for git"; homepage = "https://github.com/chriswalz/bit"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "bit"; }; } diff --git a/pkgs/by-name/bi/bite/package.nix b/pkgs/by-name/bi/bite/package.nix index 4dd3f6c0efb8..b134e95c9446 100644 --- a/pkgs/by-name/bi/bite/package.nix +++ b/pkgs/by-name/bi/bite/package.nix @@ -86,11 +86,11 @@ rustPlatform.buildRustPackage rec { }) ]; - meta = with lib; { + meta = { description = "Disassembler focused on comprehensive rust support"; homepage = "https://github.com/WINSDK/bite"; - license = licenses.mit; - maintainers = with maintainers; [ vinnymeller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vinnymeller ]; mainProgram = "bite"; }; } diff --git a/pkgs/by-name/bi/bitlbee-discord/package.nix b/pkgs/by-name/bi/bitlbee-discord/package.nix index e3356027cef5..c777f92c4a24 100644 --- a/pkgs/by-name/bi/bitlbee-discord/package.nix +++ b/pkgs/by-name/bi/bitlbee-discord/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { description = "Bitlbee plugin for Discord"; homepage = "https://github.com/sm00th/bitlbee-discord"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lassulus ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lassulus ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bi/bitlbee-facebook/package.nix b/pkgs/by-name/bi/bitlbee-facebook/package.nix index 086675c4f043..43ccd789e11d 100644 --- a/pkgs/by-name/bi/bitlbee-facebook/package.nix +++ b/pkgs/by-name/bi/bitlbee-facebook/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { description = "Facebook protocol plugin for bitlbee"; homepage = "https://github.com/bitlbee/bitlbee-facebook"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ toonn ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ toonn ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bi/bitlbee-mastodon/package.nix b/pkgs/by-name/bi/bitlbee-mastodon/package.nix index 1483602490ab..10d6b239e2cb 100644 --- a/pkgs/by-name/bi/bitlbee-mastodon/package.nix +++ b/pkgs/by-name/bi/bitlbee-mastodon/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { export BITLBEE_DATADIR=$out/share/bitlbee ''; - meta = with lib; { + meta = { description = "Bitlbee plugin for Mastodon"; homepage = "https://alexschroeder.ch/cgit/bitlbee-mastodon/about"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ jpotier ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ jpotier ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bi/bitlbee-steam/package.nix b/pkgs/by-name/bi/bitlbee-steam/package.nix index 02e6f5468c9d..1aed226f155a 100644 --- a/pkgs/by-name/bi/bitlbee-steam/package.nix +++ b/pkgs/by-name/bi/bitlbee-steam/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { description = "Steam protocol plugin for BitlBee"; homepage = "https://github.com/jgeboski/bitlbee-steam"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bi/bitwise/package.nix b/pkgs/by-name/bi/bitwise/package.nix index 44744927c45b..1da56d712dc3 100644 --- a/pkgs/by-name/bi/bitwise/package.nix +++ b/pkgs/by-name/bi/bitwise/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Terminal based bitwise calculator in curses"; homepage = "https://github.com/mellowcandle/bitwise"; - license = licenses.gpl3Only; - maintainers = [ maintainers.whonore ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.whonore ]; + platforms = lib.platforms.unix; mainProgram = "bitwise"; }; } diff --git a/pkgs/by-name/bj/bjumblr/package.nix b/pkgs/by-name/bj/bjumblr/package.nix index e5c590cf0e04..da18b166204f 100644 --- a/pkgs/by-name/bj/bjumblr/package.nix +++ b/pkgs/by-name/bj/bjumblr/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sjaehn/BJumblr"; description = "Pattern-controlled audio stream / sample re-sequencer LV2 plugin"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/bk/bk/package.nix b/pkgs/by-name/bk/bk/package.nix index ca0933b49f90..f7d7489e5aff 100644 --- a/pkgs/by-name/bk/bk/package.nix +++ b/pkgs/by-name/bk/bk/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { installManPage bk.? ''; - meta = with lib; { + meta = { homepage = "https://github.com/aeosynth/bk"; description = "Terminal epub reader written in rust"; - license = licenses.mit; - maintainers = with maintainers; [ vuimuich ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vuimuich ]; mainProgram = "bk"; }; } diff --git a/pkgs/by-name/bk/bkcrack/package.nix b/pkgs/by-name/bk/bkcrack/package.nix index 9e11a3a4e776..fd318d12002e 100644 --- a/pkgs/by-name/bk/bkcrack/package.nix +++ b/pkgs/by-name/bk/bkcrack/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Crack legacy zip encryption with Biham and Kocher's known plaintext attack"; homepage = "https://github.com/kimci86/bkcrack"; - license = licenses.zlib; - platforms = platforms.unix; - maintainers = with maintainers; [ erdnaxe ]; + license = lib.licenses.zlib; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ erdnaxe ]; mainProgram = "bkcrack"; }; }) diff --git a/pkgs/by-name/bk/bklk/package.nix b/pkgs/by-name/bk/bklk/package.nix index f4b78aa20710..ebbbd92bc7d7 100644 --- a/pkgs/by-name/bk/bklk/package.nix +++ b/pkgs/by-name/bk/bklk/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation { cp bklk $out/bin ''; - meta = with lib; { + meta = { description = "Ncurses Binary Clock"; longDescription = "bklk is a simple binary clock for your terminal."; homepage = "https://github.com/Ruunyox/bklk"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; + platforms = lib.platforms.all; mainProgram = "bklk"; }; } diff --git a/pkgs/by-name/bk/bkyml/package.nix b/pkgs/by-name/bk/bkyml/package.nix index c0843b934511..660c3150fbee 100644 --- a/pkgs/by-name/bk/bkyml/package.nix +++ b/pkgs/by-name/bk/bkyml/package.nix @@ -40,10 +40,10 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "bkyml" ]; - meta = with lib; { + meta = { homepage = "https://github.com/joscha/bkyml"; description = "CLI tool to generate a pipeline.yaml file for Buildkite on the fly"; - license = licenses.mit; - maintainers = with maintainers; [ olebedev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olebedev ]; }; } diff --git a/pkgs/by-name/bl/blackfire/package.nix b/pkgs/by-name/bl/blackfire/package.nix index d8c95f232f01..d90289827fa2 100644 --- a/pkgs/by-name/bl/blackfire/package.nix +++ b/pkgs/by-name/bl/blackfire/package.nix @@ -102,11 +102,11 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Profiler agent and client"; homepage = "https://blackfire.io/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/bl/blackmagic-desktop-video/package.nix b/pkgs/by-name/bl/blackmagic-desktop-video/package.nix index bc2f468de70b..07db3178fb0a 100644 --- a/pkgs/by-name/bl/blackmagic-desktop-video/package.nix +++ b/pkgs/by-name/bl/blackmagic-desktop-video/package.nix @@ -131,11 +131,11 @@ stdenv.mkDerivation (finalAttrs: { # need to tell the DesktopVideoHelper where to find its own library appendRunpaths = [ "${placeholder "out"}/lib" ]; - meta = with lib; { + meta = { homepage = "https://www.blackmagicdesign.com/support/family/capture-and-playback"; - maintainers = [ maintainers.naxdy ]; - license = licenses.unfree; + maintainers = [ lib.maintainers.naxdy ]; + license = lib.licenses.unfree; description = "Supporting applications for Blackmagic Decklink. Doesn't include the desktop applications, only the helper required to make the driver work"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bl/blackmagic/package.nix b/pkgs/by-name/bl/blackmagic/package.nix index 5755cd4f63e2..c6d756d18655 100644 --- a/pkgs/by-name/bl/blackmagic/package.nix +++ b/pkgs/by-name/bl/blackmagic/package.nix @@ -117,7 +117,7 @@ stdenv.mkDerivation rec { versionCheckProgramArg = "--help"; doInstallCheck = true; - meta = with lib; { + meta = { description = "In-application debugger for ARM Cortex microcontrollers"; mainProgram = "blackmagic"; longDescription = '' @@ -132,12 +132,12 @@ stdenv.mkDerivation rec { executable in the bin directory. ''; homepage = "https://github.com/blacksphere/blackmagic"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pjones sorki carlossless ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bl/blahaj/package.nix b/pkgs/by-name/bl/blahaj/package.nix index c4237eb424bc..eb9d2c9595df 100644 --- a/pkgs/by-name/bl/blahaj/package.nix +++ b/pkgs/by-name/bl/blahaj/package.nix @@ -24,11 +24,11 @@ crystal.buildCrystalPackage rec { buildTargets = [ "${if static then "static" else "build"}${if multithreading then "_mt" else ""}" ]; - meta = with lib; { + meta = { description = "Gay sharks at your local terminal - lolcat-like CLI tool"; homepage = "https://blahaj.geopjr.dev"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ aleksana cafkafk ]; diff --git a/pkgs/by-name/bl/blahtexml/package.nix b/pkgs/by-name/bl/blahtexml/package.nix index 2053eb68790e..b5dd1ab54cbd 100644 --- a/pkgs/by-name/bl/blahtexml/package.nix +++ b/pkgs/by-name/bl/blahtexml/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { install -m644 -D -t "$doc/share/doc/blahtexml" Documentation/manual.pdf ''; - meta = with lib; { + meta = { homepage = "https://gva.noekeon.org/blahtexml/"; description = "TeX to MathML converter"; longDescription = '' @@ -73,8 +73,8 @@ stdenv.mkDerivation rec { document. Instead of converting only one formula at a time, blahtexml can convert all the formulas of the given XML file into MathML. ''; - license = licenses.bsd3; - maintainers = [ maintainers.xworld21 ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.xworld21 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bl/blast-bin/package.nix b/pkgs/by-name/bl/blast-bin/package.nix index 3f317d999fbc..7436773c178f 100644 --- a/pkgs/by-name/bl/blast-bin/package.nix +++ b/pkgs/by-name/bl/blast-bin/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation { --replace /bin/rm ${coreutils}/bin/rm ''; - meta = with lib; { + meta = { inherit (blast.meta) description homepage license; platforms = [ "x86_64-linux" @@ -75,7 +75,7 @@ stdenv.mkDerivation { "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ natsukium ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/by-name/bl/blast/package.nix b/pkgs/by-name/bl/blast/package.nix index 8c67b6e0b026..13073175d1ff 100644 --- a/pkgs/by-name/bl/blast/package.nix +++ b/pkgs/by-name/bl/blast/package.nix @@ -117,14 +117,14 @@ stdenv.mkDerivation rec { # Many tests require either network access or locally available databases doCheck = false; - meta = with lib; { + meta = { description = ''Basic Local Alignment Search Tool (BLAST) finds regions of similarity between biological sequences''; homepage = "https://blast.ncbi.nlm.nih.gov/Blast.cgi"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; # Version 2.10.0 fails on Darwin # See https://github.com/NixOS/nixpkgs/pull/61430 - platforms = platforms.linux; - maintainers = with maintainers; [ luispedro ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ luispedro ]; }; } diff --git a/pkgs/by-name/bl/blaze/package.nix b/pkgs/by-name/bl/blaze/package.nix index 793a318d45c0..2901db3175cd 100644 --- a/pkgs/by-name/bl/blaze/package.nix +++ b/pkgs/by-name/bl/blaze/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation (finalAttrs: { lapack-reference ]; - meta = with lib; { + meta = { description = "High performance C++ math library"; homepage = "https://bitbucket.org/blaze-lib/blaze"; - license = with licenses; [ bsd3 ]; - platforms = platforms.unix; + license = with lib.licenses; [ bsd3 ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/bl/bleachbit/package.nix b/pkgs/by-name/bl/bleachbit/package.nix index d43caf27811f..7322594d351c 100644 --- a/pkgs/by-name/bl/bleachbit/package.nix +++ b/pkgs/by-name/bl/bleachbit/package.nix @@ -60,12 +60,12 @@ python3Packages.buildPythonApplication rec { strictDeps = false; - meta = with lib; { + meta = { homepage = "https://bleachbit.sourceforge.net"; description = "Program to clean your computer"; longDescription = "BleachBit helps you easily clean your computer to free space and maintain privacy."; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ leonardoce mbprtpmnr ]; diff --git a/pkgs/by-name/bl/blendfarm/package.nix b/pkgs/by-name/bl/blendfarm/package.nix index 19ba76ac5dc2..28333e1f2cac 100644 --- a/pkgs/by-name/bl/blendfarm/package.nix +++ b/pkgs/by-name/bl/blendfarm/package.nix @@ -131,12 +131,12 @@ buildDotnetModule rec { ln -s ${libgdiplus}/lib/libgdiplus.dylib $out/lib/blendfarm/ ''; - meta = with lib; { + meta = { description = "Open-source, cross-platform, stand-alone, Network Renderer for Blender"; homepage = "https://github.com/LogicReinc/LogicReinc.BlendFarm"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ gador ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ gador ]; mainProgram = "blendfarm-nix"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bl/blesh/package.nix b/pkgs/by-name/bl/blesh/package.nix index 79fb35dd0701..35204db36a59 100644 --- a/pkgs/by-name/bl/blesh/package.nix +++ b/pkgs/by-name/bl/blesh/package.nix @@ -55,15 +55,15 @@ stdenvNoCC.mkDerivation rec { chmod +x "$out/bin/blesh-share" ''; - meta = with lib; { + meta = { homepage = "https://github.com/akinomyoga/ble.sh"; description = "Bash Line Editor -- a full-featured line editor written in pure Bash"; mainProgram = "blesh-share"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ aiotter matthiasbeyer ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bl/blflash/package.nix b/pkgs/by-name/bl/blflash/package.nix index ecdc884e4c42..5f77f74ad75e 100644 --- a/pkgs/by-name/bl/blflash/package.nix +++ b/pkgs/by-name/bl/blflash/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-9CTq/NFhc/pJ3CyvhidQxbWx5iHFbOZDPm3g7cz6uRU="; - meta = with lib; { + meta = { description = "Bl602 serial flasher written in Rust"; homepage = "https://github.com/spacemeowx2/blflash"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ _0x4A6F ]; + maintainers = with lib.maintainers; [ _0x4A6F ]; mainProgram = "blflash"; }; } diff --git a/pkgs/by-name/bl/blink1-tool/package.nix b/pkgs/by-name/bl/blink1-tool/package.nix index 5ab2630cb58c..e0513e3c9981 100644 --- a/pkgs/by-name/bl/blink1-tool/package.nix +++ b/pkgs/by-name/bl/blink1-tool/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Command line client for the blink(1) notification light"; homepage = "https://blink1.thingm.com/"; - license = with licenses; [ cc-by-sa-40 ]; - maintainers = with maintainers; [ cransom ]; - platforms = platforms.linux; + license = with lib.licenses; [ cc-by-sa-40 ]; + maintainers = with lib.maintainers; [ cransom ]; + platforms = lib.platforms.linux; mainProgram = "blink1-tool"; }; } diff --git a/pkgs/by-name/bl/blis/package.nix b/pkgs/by-name/bl/blis/package.nix index 4782638f03c7..f0a553c16d90 100644 --- a/pkgs/by-name/bl/blis/package.nix +++ b/pkgs/by-name/bl/blis/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { ln -s $out/lib/libcblas.so.3 $out/lib/libcblas.so ''; - meta = with lib; { + meta = { description = "BLAS-compatible linear algebra library"; homepage = "https://github.com/flame/blis"; - license = licenses.bsd3; - maintainers = with maintainers; [ stephen-huan ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ stephen-huan ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/bl/blisp/package.nix b/pkgs/by-name/bl/blisp/package.nix index ef62eaf4ea1f..f7fef3797567 100644 --- a/pkgs/by-name/bl/blisp/package.nix +++ b/pkgs/by-name/bl/blisp/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { version = "v${finalAttrs.version}"; }; - meta = with lib; { + meta = { description = "In-System-Programming (ISP) tool & library for Bouffalo Labs RISC-V Microcontrollers and SoCs"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "blisp"; homepage = "https://github.com/pine64/blisp"; - platforms = platforms.unix; - maintainers = [ maintainers.bdd ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bdd ]; }; }) diff --git a/pkgs/by-name/bl/bliss/package.nix b/pkgs/by-name/bl/bliss/package.nix index a277e257fe3f..be36253fa136 100644 --- a/pkgs/by-name/bl/bliss/package.nix +++ b/pkgs/by-name/bl/bliss/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { mv *.h *.hh $out/include/bliss ''; - meta = with lib; { + meta = { description = "Open source tool for computing automorphism groups and canonical forms of graphs. It has both a command line user interface as well as C++ and C programming language APIs"; mainProgram = "bliss"; homepage = "http://www.tcs.hut.fi/Software/bliss/"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/bl/blitz/package.nix b/pkgs/by-name/bl/blitz/package.nix index 4929a9ac66e3..baecb22da069 100644 --- a/pkgs/by-name/bl/blitz/package.nix +++ b/pkgs/by-name/bl/blitz/package.nix @@ -78,16 +78,16 @@ stdenv.mkDerivation rec { inherit doCheck; - meta = with lib; { + meta = { description = "Fast multi-dimensional array library for C++"; homepage = "https://sourceforge.net/projects/blitz/"; - license = with licenses; [ + license = with lib.licenses; [ artistic2 # or bsd3 # or lgpl3Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ ToxicFrog ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ToxicFrog ]; longDescription = '' Blitz++ is a C++ class library for scientific computing which provides performance on par with Fortran 77/90. It uses template techniques to diff --git a/pkgs/by-name/bl/blktrace/package.nix b/pkgs/by-name/bl/blktrace/package.nix index d08a341860f4..ab1e6a20fe23 100644 --- a/pkgs/by-name/bl/blktrace/package.nix +++ b/pkgs/by-name/bl/blktrace/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { "CC:=$(CC)" ]; - meta = with lib; { + meta = { description = "Block layer IO tracing mechanism"; - maintainers = with maintainers; [ nickcao ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ nickcao ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bl/bloat/package.nix b/pkgs/by-name/bl/bloat/package.nix index e2efe3f83307..44c86d520ca4 100644 --- a/pkgs/by-name/bl/bloat/package.nix +++ b/pkgs/by-name/bl/bloat/package.nix @@ -29,7 +29,7 @@ buildGoModule { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Web client for Pleroma and Mastodon"; longDescription = '' A lightweight web client for Pleroma and Mastodon. @@ -37,8 +37,8 @@ buildGoModule { ''; homepage = "https://bloat.freesoftwareextremist.com"; downloadPage = "https://git.freesoftwareextremist.com/bloat/"; - license = licenses.cc0; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "bloat"; }; } diff --git a/pkgs/by-name/bl/blobby/package.nix b/pkgs/by-name/bl/blobby/package.nix index ce2b8ce56e0b..e61cc1d52f35 100644 --- a/pkgs/by-name/bl/blobby/package.nix +++ b/pkgs/by-name/bl/blobby/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { chmod a+x "$out/bin/blobby" ''; - meta = with lib; { + meta = { description = "Volleyball game"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ raskin ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; homepage = "https://blobbyvolley.de/"; downloadPage = "https://sourceforge.net/projects/blobby/files/Blobby%20Volley%202%20%28Linux%29/"; mainProgram = "blobby"; diff --git a/pkgs/by-name/bl/blobfuse/package.nix b/pkgs/by-name/bl/blobfuse/package.nix index 73275675c8ad..756591dade3c 100644 --- a/pkgs/by-name/bl/blobfuse/package.nix +++ b/pkgs/by-name/bl/blobfuse/package.nix @@ -34,11 +34,11 @@ buildGoModule { tests.version = testers.testVersion { package = blobfuse; }; }; - meta = with lib; { + meta = { description = "Mount an Azure Blob storage as filesystem through FUSE"; - license = licenses.mit; - maintainers = with maintainers; [ jbgi ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jbgi ]; + platforms = lib.platforms.linux; mainProgram = "azure-storage-fuse"; }; } diff --git a/pkgs/by-name/bl/blobwars/package.nix b/pkgs/by-name/bl/blobwars/package.nix index 945f90300c5b..a2b6d8d34dd0 100644 --- a/pkgs/by-name/bl/blobwars/package.nix +++ b/pkgs/by-name/bl/blobwars/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { find $out/share/games/blobwars/. -type f -exec chmod 644 {} + ''; - meta = with lib; { + meta = { description = "Platform action game featuring a blob with lots of weapons"; mainProgram = "blobwars"; homepage = "https://www.parallelrealities.co.uk/games/metalBlobSolid/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus free ]; - maintainers = with maintainers; [ iblech ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ iblech ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bl/blockbook/package.nix b/pkgs/by-name/bl/blockbook/package.nix index 43f5bacc0f42..411221f63052 100644 --- a/pkgs/by-name/bl/blockbook/package.nix +++ b/pkgs/by-name/bl/blockbook/package.nix @@ -76,14 +76,14 @@ buildGoModule rec { smoke-test = nixosTests.blockbook-frontend; }; - meta = with lib; { + meta = { description = "Trezor address/account balance backend"; homepage = "https://github.com/trezor/blockbook"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ mmahut ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "blockbook"; }; } diff --git a/pkgs/by-name/bl/blockhash/package.nix b/pkgs/by-name/bl/blockhash/package.nix index aa956b0360fa..f1e1974a5533 100644 --- a/pkgs/by-name/bl/blockhash/package.nix +++ b/pkgs/by-name/bl/blockhash/package.nix @@ -28,16 +28,16 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://github.com/commonsmachinery/blockhash"; description = '' This is a perceptual image hash calculation tool based on algorithm descibed in Block Mean Value Based Image Perceptual Hashing by Bian Yang, Fan Gu and Xiamu Niu. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "blockhash"; }; } diff --git a/pkgs/by-name/bl/blocky/package.nix b/pkgs/by-name/bl/blocky/package.nix index b365e6c3dd6c..fa2598ef5450 100644 --- a/pkgs/by-name/bl/blocky/package.nix +++ b/pkgs/by-name/bl/blocky/package.nix @@ -30,12 +30,12 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) blocky; }; - meta = with lib; { + meta = { description = "Fast and lightweight DNS proxy as ad-blocker for local network with many features"; homepage = "https://0xerr0r.github.io/blocky"; changelog = "https://github.com/0xERR0R/blocky/releases"; - license = licenses.asl20; - maintainers = with maintainers; [ ratsclub ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ratsclub ]; mainProgram = "blocky"; }; } diff --git a/pkgs/by-name/bl/blogc/package.nix b/pkgs/by-name/bl/blogc/package.nix index a90f54da0bd0..b67dd86a70c5 100644 --- a/pkgs/by-name/bl/blogc/package.nix +++ b/pkgs/by-name/bl/blogc/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Blog compiler"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://blogc.rgm.io"; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/bl/bloodhound-ce/package.nix b/pkgs/by-name/bl/bloodhound-ce/package.nix index c992da48651a..b91e2fdabcc9 100644 --- a/pkgs/by-name/bl/bloodhound-ce/package.nix +++ b/pkgs/by-name/bl/bloodhound-ce/package.nix @@ -188,14 +188,14 @@ buildGoModule { inherit frontend collectors; }; - meta = with lib; { + meta = { description = "Six Degrees of Domain Admin"; homepage = "https://github.com/SpecterOps/BloodHound"; changelog = "https://github.com/SpecterOps/BloodHound/releases/tag/v${version}"; downloadPage = "https://github.com/SpecterOps/BloodHound/releases"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ eleonora ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ eleonora ]; mainProgram = "bloodhound-ce"; }; } diff --git a/pkgs/by-name/bl/bloodhound/package.nix b/pkgs/by-name/bl/bloodhound/package.nix index 6b754ed4cf56..b5ee9459595a 100644 --- a/pkgs/by-name/bl/bloodhound/package.nix +++ b/pkgs/by-name/bl/bloodhound/package.nix @@ -117,14 +117,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Active Directory reconnaissance and attack path management tool"; homepage = "https://github.com/SpecterOps/BloodHound-Legacy"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; changelog = "https://github.com/SpecterOps/BloodHound-Legacy/releases/tag/v${finalAttrs.version}"; downloadPage = "https://github.com/SpecterOps/BloodHound-Legacy/releases"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ akechishiro ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ akechishiro ]; platforms = [ "x86_64-linux" ]; mainProgram = "BloodHound"; }; diff --git a/pkgs/by-name/bl/bloomrpc/package.nix b/pkgs/by-name/bl/bloomrpc/package.nix index 764b4082990a..40b35cd31902 100644 --- a/pkgs/by-name/bl/bloomrpc/package.nix +++ b/pkgs/by-name/bl/bloomrpc/package.nix @@ -33,15 +33,15 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "GUI Client for GRPC Services"; longDescription = '' Inspired by Postman and GraphQL Playground BloomRPC aims to provide the simplest and most efficient developer experience for exploring and querying your GRPC services. ''; homepage = "https://github.com/uw-labs/bloomrpc"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ zoedsoupe ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ zoedsoupe ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/bl/bloop/package.nix b/pkgs/by-name/bl/bloop/package.nix index 7f1d0db780a1..d3d5a94e85a6 100644 --- a/pkgs/by-name/bl/bloop/package.nix +++ b/pkgs/by-name/bl/bloop/package.nix @@ -78,10 +78,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://scalacenter.github.io/bloop/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; description = "Scala build server and command-line tool to make the compile and test developer workflows fast and productive in a build-tool-agnostic way"; mainProgram = "bloop"; platforms = [ @@ -89,7 +89,7 @@ stdenv.mkDerivation rec { "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ agilesteel kubukoz tomahna diff --git a/pkgs/by-name/bl/blst/package.nix b/pkgs/by-name/bl/blst/package.nix index 8dee4bca7a6a..82d6e19a6bab 100644 --- a/pkgs/by-name/bl/blst/package.nix +++ b/pkgs/by-name/bl/blst/package.nix @@ -71,15 +71,15 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { changelog = "https://github.com/supranational/blst/releases/tag/${finalAttrs.src.tag}"; description = "Multilingual BLS12-381 signature library"; homepage = "https://github.com/supranational/blst"; - license = licenses.isc; - maintainers = with maintainers; [ + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ iquerejeta yvan-sraka ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/bl/blueberry/package.nix b/pkgs/by-name/bl/blueberry/package.nix index 81b7c50f165c..e0a55e730e00 100644 --- a/pkgs/by-name/bl/blueberry/package.nix +++ b/pkgs/by-name/bl/blueberry/package.nix @@ -87,12 +87,12 @@ python3Packages.buildPythonApplication rec { wrapPythonProgramsIn $out/lib "$out $pythonPath" ''; - meta = with lib; { + meta = { description = "Bluetooth configuration tool"; homepage = "https://github.com/linuxmint/blueberry"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bobby285271 romildo ]; diff --git a/pkgs/by-name/bl/bluemail/package.nix b/pkgs/by-name/bl/bluemail/package.nix index 29ff5c5a5997..d8e70610d742 100644 --- a/pkgs/by-name/bl/bluemail/package.nix +++ b/pkgs/by-name/bl/bluemail/package.nix @@ -115,13 +115,13 @@ stdenv.mkDerivation rec { ''${gappsWrapperArgs[@]} ''; - meta = with lib; { + meta = { description = "Cross platform email and calendar app, with AI features and a modern design"; homepage = "https://bluemail.me"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; # Vendored copy of Electron. - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; maintainers = [ ]; mainProgram = "bluemail"; }; diff --git a/pkgs/by-name/bl/bluemix-cli/package.nix b/pkgs/by-name/bl/bluemix-cli/package.nix index 38e715c0f3d6..2a463a7b112c 100644 --- a/pkgs/by-name/bl/bluemix-cli/package.nix +++ b/pkgs/by-name/bl/bluemix-cli/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { install -D -t "$out/share/zsh/site-functions" bx/zsh_autocomplete ''; - meta = with lib; { + meta = { description = "Administration CLI for IBM BlueMix"; homepage = "https://console.bluemix.net/docs/cli/index.html"; downloadPage = "https://console.bluemix.net/docs/cli/reference/bluemix_cli/download_cli.html#download_install"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ - maintainers.tazjin - maintainers.jensbin + lib.maintainers.tazjin + lib.maintainers.jensbin ]; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/bl/blueprint-compiler/package.nix b/pkgs/by-name/bl/blueprint-compiler/package.nix index 8de33e20aa1b..b588dcb95dcd 100644 --- a/pkgs/by-name/bl/blueprint-compiler/package.nix +++ b/pkgs/by-name/bl/blueprint-compiler/package.nix @@ -80,15 +80,15 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Markup language for GTK user interface files"; mainProgram = "blueprint-compiler"; homepage = "https://gitlab.gnome.org/GNOME/blueprint-compiler"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ benediktbroich ranfdev ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/bl/bluetility/package.nix b/pkgs/by-name/bl/bluetility/package.nix index 7a2241a2f5e1..b70b60fb75eb 100644 --- a/pkgs/by-name/bl/bluetility/package.nix +++ b/pkgs/by-name/bl/bluetility/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Bluetooth Low Energy browse"; homepage = "https://github.com/jnross/Bluetility"; - license = licenses.mit; + license = lib.licenses.mit; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/bl/blugon/package.nix b/pkgs/by-name/bl/blugon/package.nix index eb9f6bb543b1..b334c1344473 100644 --- a/pkgs/by-name/bl/blugon/package.nix +++ b/pkgs/by-name/bl/blugon/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple and configurable Blue Light Filter for X"; longDescription = '' blugon is a simple and fast Blue Light Filter, that is highly configurable and provides a command line interface. @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { There are several different backends available. blugon calculates the screen color from your local time and configuration. ''; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/jumper149/blugon"; - platforms = platforms.unix; - maintainers = with maintainers; [ jumper149 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jumper149 ]; mainProgram = "blugon"; }; } diff --git a/pkgs/by-name/bl/blur-effect/package.nix b/pkgs/by-name/bl/blur-effect/package.nix index 1330442ab55a..0629583afb30 100644 --- a/pkgs/by-name/bl/blur-effect/package.nix +++ b/pkgs/by-name/bl/blur-effect/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { libgbm ]; - meta = with lib; { + meta = { homepage = "https://github.com/sonald/blur-effect"; description = "Off-screen image blurring utility using OpenGL ES 3.0"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # packages 'libdrm' and 'gbm' not found - maintainers = with maintainers; [ romildo ]; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "blur_image"; }; } diff --git a/pkgs/by-name/bm/bmon/package.nix b/pkgs/by-name/bm/bmon/package.nix index 01f0d49323fb..bf7c33d77187 100644 --- a/pkgs/by-name/bm/bmon/package.nix +++ b/pkgs/by-name/bm/bmon/package.nix @@ -47,15 +47,15 @@ stdenv.mkDerivation rec { export PKG_CONFIG="$(command -v "$PKG_CONFIG")" ''; - meta = with lib; { + meta = { description = "Network bandwidth monitor"; homepage = "https://github.com/tgraf/bmon"; # Licensed under BSD and MIT # - https://github.com/tgraf/bmon/blob/master/LICENSE.BSD # - https://github.com/tgraf/bmon/blob/master/LICENSE.MIT - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor pSub ]; diff --git a/pkgs/by-name/bn/bngblaster/package.nix b/pkgs/by-name/bn/bngblaster/package.nix index 32adfde8f911..64f4f10bced2 100644 --- a/pkgs/by-name/bn/bngblaster/package.nix +++ b/pkgs/by-name/bn/bngblaster/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Network tester for access and routing protocols"; homepage = "https://github.com/rtbrick/bngblaster/"; changelog = "https://github.com/rtbrick/bngblaster/releases/tag/${finalAttrs.version}"; - license = licenses.bsd3; - teams = [ teams.wdz ]; - badPlatforms = platforms.darwin; + license = lib.licenses.bsd3; + teams = [ lib.teams.wdz ]; + badPlatforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/bo/boa/package.nix b/pkgs/by-name/bo/boa/package.nix index eb69566b49e2..4f058fc7ff9e 100644 --- a/pkgs/by-name/bo/boa/package.nix +++ b/pkgs/by-name/bo/boa/package.nix @@ -39,15 +39,15 @@ rustPlatform.buildRustPackage rec { ZSTD_SYS_USE_PKG_CONFIG = true; }; - meta = with lib; { + meta = { description = "Embeddable and experimental Javascript engine written in Rust"; mainProgram = "boa"; homepage = "https://github.com/boa-dev/boa"; changelog = "https://github.com/boa-dev/boa/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit # or unlicense ]; - maintainers = with maintainers; [ dit7ya ]; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/bo/bob/package.nix b/pkgs/by-name/bo/bob/package.nix index 6d55e9688f3d..f4bb17388f58 100644 --- a/pkgs/by-name/bo/bob/package.nix +++ b/pkgs/by-name/bo/bob/package.nix @@ -52,11 +52,11 @@ buildGoModule rec { # tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Build system for microservices"; mainProgram = "bob"; homepage = "https://bob.build"; - license = licenses.asl20; - maintainers = with maintainers; [ zuzuleinen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zuzuleinen ]; }; } diff --git a/pkgs/by-name/bo/bobcat/package.nix b/pkgs/by-name/bo/bobcat/package.nix index 8369ac6ee561..778a4e482cbe 100644 --- a/pkgs/by-name/bo/bobcat/package.nix +++ b/pkgs/by-name/bo/bobcat/package.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Brokken's Own Base Classes And Templates"; homepage = "https://fbb-git.gitlab.io/bobcat/"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bo/boca/package.nix b/pkgs/by-name/bo/boca/package.nix index 93bde7439f40..de108025a1f2 100644 --- a/pkgs/by-name/bo/boca/package.nix +++ b/pkgs/by-name/bo/boca/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Component library used by the fre:ac audio converter"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/enzo1982/boca"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bo/bodyclose/package.nix b/pkgs/by-name/bo/bodyclose/package.nix index a563e6d4782c..cdf353e7b586 100644 --- a/pkgs/by-name/bo/bodyclose/package.nix +++ b/pkgs/by-name/bo/bodyclose/package.nix @@ -25,11 +25,11 @@ buildGoModule { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Golang linter to check whether HTTP response body is closed and a re-use of TCP connection is not blocked"; mainProgram = "bodyclose"; homepage = "https://github.com/timakin/bodyclose"; - license = licenses.mit; - maintainers = with maintainers; [ meain ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ meain ]; }; } diff --git a/pkgs/by-name/bo/boinc/package.nix b/pkgs/by-name/bo/boinc/package.nix index 52390386ac90..7d037a93aaf9 100644 --- a/pkgs/by-name/bo/boinc/package.nix +++ b/pkgs/by-name/bo/boinc/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { install --mode=444 -D 'client/scripts/boinc-client.service' "$out/etc/systemd/system/boinc.service" ''; - meta = with lib; { + meta = { description = "Free software for distributed and grid computing"; homepage = "https://boinc.berkeley.edu/"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/by-name/bo/boinctui/package.nix b/pkgs/by-name/bo/boinctui/package.nix index b0ff4f348316..8da9cc94d351 100644 --- a/pkgs/by-name/bo/boinctui/package.nix +++ b/pkgs/by-name/bo/boinctui/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation { openssl ]; - meta = with lib; { + meta = { description = "Curses based fullscreen BOINC manager"; homepage = "https://github.com/suleman1971/boinctui"; changelog = "https://github.com/suleman1971/boinctui/blob/master/changelog"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ christoph-heiss ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ christoph-heiss ]; + platforms = lib.platforms.linux; mainProgram = "boinctui"; }; } diff --git a/pkgs/by-name/bo/bolliedelayxt-lv2/package.nix b/pkgs/by-name/bo/bolliedelayxt-lv2/package.nix index d4166fdf3122..fa41e960d30d 100644 --- a/pkgs/by-name/bo/bolliedelayxt-lv2/package.nix +++ b/pkgs/by-name/bo/bolliedelayxt-lv2/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Flexible LV2 delay plugin"; homepage = "https://github.com/MrBollie/bolliedelayxt.lv2"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bo/bolt/package.nix b/pkgs/by-name/bo/bolt/package.nix index aedd111c7464..ed2ac1fb71b9 100644 --- a/pkgs/by-name/bo/bolt/package.nix +++ b/pkgs/by-name/bo/bolt/package.nix @@ -93,12 +93,12 @@ stdenv.mkDerivation rec { PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system"; PKG_CONFIG_UDEV_UDEVDIR = "${placeholder "out"}/lib/udev"; - meta = with lib; { + meta = { description = "Thunderbolt 3 device management daemon"; mainProgram = "boltctl"; homepage = "https://gitlab.freedesktop.org/bolt/bolt"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ callahad ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ callahad ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bo/boltbrowser/package.nix b/pkgs/by-name/bo/boltbrowser/package.nix index 9b911dd6d9b4..48c47fe43177 100644 --- a/pkgs/by-name/bo/boltbrowser/package.nix +++ b/pkgs/by-name/bo/boltbrowser/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-lLSjAO0sK2zwl+id/e15XWYbLPCa7qK8J6tdvaBMLPs="; - meta = with lib; { + meta = { description = "CLI Browser for BoltDB files"; homepage = "https://github.com/br0xen/boltbrowser"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "boltbrowser"; }; } diff --git a/pkgs/by-name/bo/bombadillo/package.nix b/pkgs/by-name/bo/bombadillo/package.nix index 676b4e52fdd8..a503a2df9324 100644 --- a/pkgs/by-name/bo/bombadillo/package.nix +++ b/pkgs/by-name/bo/bombadillo/package.nix @@ -28,10 +28,10 @@ buildGoModule rec { installManPage bombadillo.1 ''; - meta = with lib; { + meta = { description = "Non-web client for the terminal, supporting Gopher, Gemini and more"; mainProgram = "bombadillo"; homepage = "https://bombadillo.colorfield.space/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/bo/bombardier/package.nix b/pkgs/by-name/bo/bombardier/package.nix index 9b5f385893b2..89928af20638 100644 --- a/pkgs/by-name/bo/bombardier/package.nix +++ b/pkgs/by-name/bo/bombardier/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Fast cross-platform HTTP benchmarking tool written in Go"; homepage = "https://github.com/codesenberg/bombardier"; changelog = "https://github.com/codesenberg/bombardier/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "bombardier"; }; diff --git a/pkgs/by-name/bo/bombono/package.nix b/pkgs/by-name/bo/bombono/package.nix index f10dd7a7c941..f7fe83f4ab9e 100644 --- a/pkgs/by-name/bo/bombono/package.nix +++ b/pkgs/by-name/bo/bombono/package.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { description = "DVD authoring program for personal computers"; homepage = "https://www.bombono.org/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ symphorien ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ symphorien ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bo/bomutils/package.nix b/pkgs/by-name/bo/bomutils/package.nix index 91d835b8c3ec..89b36dc62e8e 100644 --- a/pkgs/by-name/bo/bomutils/package.nix +++ b/pkgs/by-name/bo/bomutils/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { # which refers to std::data from C++17 env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ]; - meta = with lib; { + meta = { homepage = "https://github.com/hogliux/bomutils"; description = "Open source tools to create bill-of-materials files used in macOS installers"; - platforms = platforms.all; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ prusnak ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/by-name/bo/bonnmotion/package.nix b/pkgs/by-name/bo/bonnmotion/package.nix index 28011069f553..dfce23d8ecc5 100644 --- a/pkgs/by-name/bo/bonnmotion/package.nix +++ b/pkgs/by-name/bo/bonnmotion/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mobility scenario generation and analysis tool"; mainProgram = "bm"; longDescription = '' @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { COOJA, MiXiM, and ONE. ''; homepage = "https://sys.cs.uos.de/bonnmotion/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependency jars ]; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/bo/bonsai/package.nix b/pkgs/by-name/bo/bonsai/package.nix index 6a33d21a259d..150e87e52459 100644 --- a/pkgs/by-name/bo/bonsai/package.nix +++ b/pkgs/by-name/bo/bonsai/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Finite State Machine structured as a tree"; homepage = "https://git.sr.ht/~stacyharper/bonsai"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ colinsane ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ colinsane ]; + platforms = lib.platforms.linux; mainProgram = "bonsaictl"; }; }) diff --git a/pkgs/by-name/bo/bonzomatic/package.nix b/pkgs/by-name/bo/bonzomatic/package.nix index 85d329a21e42..7a7e4747e67e 100644 --- a/pkgs/by-name/bo/bonzomatic/package.nix +++ b/pkgs/by-name/bo/bonzomatic/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/bonzomatic --prefix LD_LIBRARY_PATH : "${alsa-lib}/lib" ''; - meta = with lib; { + meta = { description = "Live shader coding tool and Shader Showdown workhorse"; homepage = "https://github.com/gargaj/bonzomatic"; - license = licenses.unlicense; - maintainers = [ maintainers.ilian ]; + license = lib.licenses.unlicense; + maintainers = [ lib.maintainers.ilian ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/bo/boohu/package.nix b/pkgs/by-name/bo/boohu/package.nix index e6b7b1bbe010..5c35875dce5e 100644 --- a/pkgs/by-name/bo/boohu/package.nix +++ b/pkgs/by-name/bo/boohu/package.nix @@ -20,7 +20,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "New coffee-break roguelike game"; mainProgram = "boohu"; longDescription = '' @@ -30,8 +30,8 @@ buildGoModule rec { simplified inventory. ''; homepage = "https://download.tuxfamily.org/boohu/index.html"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/bo/book-summary/package.nix b/pkgs/by-name/bo/book-summary/package.nix index 11e0177635d7..4d21bcc3e673 100644 --- a/pkgs/by-name/bo/book-summary/package.nix +++ b/pkgs/by-name/bo/book-summary/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8waVWCyjulMrXRc1nXZsiP4tMg70VZJ4wbgCQUgpX4A="; - meta = with lib; { + meta = { description = "Book auto-summary for gitbook and mdBook"; mainProgram = "book-summary"; homepage = "https://github.com/dvogt23/book-summary"; - license = licenses.mit; - teams = with teams; [ iog ]; + license = lib.licenses.mit; + teams = with lib.teams; [ iog ]; }; } diff --git a/pkgs/by-name/bo/bookworm/package.nix b/pkgs/by-name/bo/bookworm/package.nix index d68f8da9219f..d615ff72fae2 100644 --- a/pkgs/by-name/bo/bookworm/package.nix +++ b/pkgs/by-name/bo/bookworm/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation { patchShebangs $out/share/bookworm/scripts/tasks/*.sh ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Simple, focused eBook reader"; @@ -100,7 +100,7 @@ stdenv.mkDerivation { Read the books you love without having to worry about different format complexities like epub, pdf, mobi, cbr, etc. ''; homepage = "https://babluboy.github.io/bookworm/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bo/boolector/package.nix b/pkgs/by-name/bo/boolector/package.nix index 5de394bf3bb0..6d9d3d7526de 100644 --- a/pkgs/by-name/bo/boolector/package.nix +++ b/pkgs/by-name/bo/boolector/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation rec { cp $out/include/boolector/btortypes.h $out/include/btortypes.h ''; - meta = with lib; { + meta = { description = "Extremely fast SMT solver for bit-vectors and arrays"; homepage = "https://boolector.github.io"; - license = licenses.mit; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.mit; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/bo/boops/package.nix b/pkgs/by-name/bo/boops/package.nix index 2d3addead3ea..e3e3908479ff 100644 --- a/pkgs/by-name/bo/boops/package.nix +++ b/pkgs/by-name/bo/boops/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sjaehn/BOops"; description = "Sound glitch effect sequencer LV2 plugin"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/bo/boost-build/package.nix b/pkgs/by-name/bo/boost-build/package.nix index 89eefca6ba25..f789f8c0cb82 100644 --- a/pkgs/by-name/bo/boost-build/package.nix +++ b/pkgs/by-name/bo/boost-build/package.nix @@ -74,10 +74,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.boost.org/build/"; license = lib.licenses.boost; - platforms = platforms.unix; - maintainers = with maintainers; [ ivan-tkatchev ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ivan-tkatchev ]; }; } diff --git a/pkgs/by-name/bo/boost-sml/package.nix b/pkgs/by-name/bo/boost-sml/package.nix index 09018cd506ce..3d925b316772 100644 --- a/pkgs/by-name/bo/boost-sml/package.nix +++ b/pkgs/by-name/bo/boost-sml/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Header only state machine library with no dependencies"; homepage = "https://github.com/boost-ext/sml"; - license = licenses.boost; - maintainers = with maintainers; [ prtzl ]; - platforms = platforms.all; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ prtzl ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bo/booster/package.nix b/pkgs/by-name/bo/booster/package.nix index 411d77b7ba2b..0f4466c931dd 100644 --- a/pkgs/by-name/bo/booster/package.nix +++ b/pkgs/by-name/bo/booster/package.nix @@ -59,11 +59,11 @@ buildGoModule rec { wrapProgram $out/bin/init --prefix PATH : ${lib.makeBinPath runtimeInputs} ''; - meta = with lib; { + meta = { description = "Fast and secure initramfs generator"; homepage = "https://github.com/anatol/booster"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "init"; }; } diff --git a/pkgs/by-name/bo/boot/package.nix b/pkgs/by-name/bo/boot/package.nix index a89623da102c..fcaabd8ccbb9 100644 --- a/pkgs/by-name/bo/boot/package.nix +++ b/pkgs/by-name/bo/boot/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ jdk ]; - meta = with lib; { + meta = { description = "Build tooling for Clojure"; mainProgram = "boot"; homepage = "https://boot-clj.github.io/"; - license = licenses.epl10; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ ragge ]; + license = lib.licenses.epl10; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ ragge ]; }; } diff --git a/pkgs/by-name/bo/bootil/package.nix b/pkgs/by-name/bo/bootil/package.nix index 55c9d5bc5680..c2477d72e672 100644 --- a/pkgs/by-name/bo/bootil/package.nix +++ b/pkgs/by-name/bo/bootil/package.nix @@ -40,14 +40,14 @@ stdenv.mkDerivation { cp -r include $out ''; - meta = with lib; { + meta = { description = "Garry Newman's personal utility library"; homepage = "https://github.com/garrynewman/bootil"; # License unsure - see https://github.com/garrynewman/bootil/issues/21 - license = licenses.free; - maintainers = with maintainers; [ abigailbuccaneer ]; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ abigailbuccaneer ]; # Build uses `-msse` and `-mfpmath=sse` - platforms = platforms.all; + platforms = lib.platforms.all; badPlatforms = [ "aarch64-linux" ]; }; } diff --git a/pkgs/by-name/bo/bootiso/package.nix b/pkgs/by-name/bo/bootiso/package.nix index c91a0db713f7..38a7d7a3d540 100644 --- a/pkgs/by-name/bo/bootiso/package.nix +++ b/pkgs/by-name/bo/bootiso/package.nix @@ -63,12 +63,12 @@ stdenvNoCC.mkDerivation rec { } \ ''; - meta = with lib; { + meta = { description = "Script for securely creating a bootable USB device from one image file"; homepage = "https://github.com/jsamr/bootiso"; - license = licenses.gpl3; - maintainers = with maintainers; [ muscaln ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ muscaln ]; + platforms = lib.platforms.all; mainProgram = "bootiso"; }; } diff --git a/pkgs/by-name/bo/bootspec-lix/package.nix b/pkgs/by-name/bo/bootspec-lix/package.nix index 96171161879b..2b88f42492fc 100644 --- a/pkgs/by-name/bo/bootspec-lix/package.nix +++ b/pkgs/by-name/bo/bootspec-lix/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-65jk8UlXZgQoxuwRcGlMnI4e+LpCJuP2TaqK+Kn4GnQ="; - meta = with lib; { + meta = { description = "Vendor-neutral implementation of RFC-0125's datatype and synthesis tooling"; homepage = "https://git.lix.systems/lix-community/bootspec"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.raitobezarius ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bo/bootspec/package.nix b/pkgs/by-name/bo/bootspec/package.nix index 208d5ed30900..9990c30ae83f 100644 --- a/pkgs/by-name/bo/bootspec/package.nix +++ b/pkgs/by-name/bo/bootspec/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Implementation of RFC-0125's datatype and synthesis tooling"; homepage = "https://github.com/DeterminateSystems/bootspec"; - license = licenses.mit; - teams = [ teams.determinatesystems ]; - platforms = platforms.unix; + license = lib.licenses.mit; + teams = [ lib.teams.determinatesystems ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bo/bootstrap-studio/package.nix b/pkgs/by-name/bo/bootstrap-studio/package.nix index da5c80cd647e..481047cfc55d 100644 --- a/pkgs/by-name/bo/bootstrap-studio/package.nix +++ b/pkgs/by-name/bo/bootstrap-studio/package.nix @@ -26,11 +26,11 @@ appimageTools.wrapType2 { $out/share/icons/hicolor/512x512/apps/bstudio.png ''; - meta = with lib; { + meta = { description = "Drag-and-drop designer for bootstrap"; homepage = "https://bootstrapstudio.io/"; - license = licenses.unfree; - maintainers = with maintainers; [ khushraj ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ khushraj ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/bo/bore-cli/package.nix b/pkgs/by-name/bo/bore-cli/package.nix index 3225edc70b49..8533f2b1f70b 100644 --- a/pkgs/by-name/bo/bore-cli/package.nix +++ b/pkgs/by-name/bo/bore-cli/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CLnwzgDbHy6nTfVathycObArtEsF8tpMNoh19/uQqGA="; # tests do not find grcov path correctly - meta = with lib; { + meta = { description = "Rust tool to create TCP tunnels"; homepage = "https://github.com/ekzhang/bore"; - license = licenses.mit; - maintainers = with maintainers; [ DieracDelta ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DieracDelta ]; mainProgram = "bore"; }; } diff --git a/pkgs/by-name/bo/bore/package.nix b/pkgs/by-name/bo/bore/package.nix index a334e4a3e3a9..69926bd69aa2 100644 --- a/pkgs/by-name/bo/bore/package.nix +++ b/pkgs/by-name/bo/bore/package.nix @@ -49,10 +49,10 @@ rustPlatform.buildRustPackage rec { | grep -q ';; NoError #0 Query 0 0 0 0 flags' ''; - meta = with lib; { + meta = { description = "DNS query tool"; homepage = "https://crates.io/crates/bore"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; mainProgram = "bore"; broken = stdenv.hostPlatform.isDarwin; # bindgen fails on: "in6_addr_union_(...)" is not a valid Ident diff --git a/pkgs/by-name/bo/borealis-cursors/package.nix b/pkgs/by-name/bo/borealis-cursors/package.nix index 7d1b99953ad4..7fac2c932cd9 100644 --- a/pkgs/by-name/bo/borealis-cursors/package.nix +++ b/pkgs/by-name/bo/borealis-cursors/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cursor theme using a custom color palette inspired by boreal colors"; homepage = "https://www.gnome-look.org/s/Gnome/p/1717914"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ argrat ]; }; }) diff --git a/pkgs/by-name/bo/borg-sans-mono/package.nix b/pkgs/by-name/bo/borg-sans-mono/package.nix index 2341003ae24a..c27f41e0d335 100644 --- a/pkgs/by-name/bo/borg-sans-mono/package.nix +++ b/pkgs/by-name/bo/borg-sans-mono/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Droid Sans Mono Slashed + Hasklig-style ligatures"; homepage = "https://github.com/marnen/borg-sans-mono"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ atila ]; }; } diff --git a/pkgs/by-name/bo/borgbackup/package.nix b/pkgs/by-name/bo/borgbackup/package.nix index d64d4f105631..ec6064bf1eee 100644 --- a/pkgs/by-name/bo/borgbackup/package.nix +++ b/pkgs/by-name/bo/borgbackup/package.nix @@ -152,14 +152,14 @@ python.pkgs.buildPythonApplication rec { ]; }; - meta = with lib; { + meta = { changelog = "https://github.com/borgbackup/borg/blob/${src.rev}/docs/changes.rst"; description = "Deduplicating archiver with compression and encryption"; homepage = "https://www.borgbackup.org"; - license = licenses.bsd3; - platforms = platforms.unix; # Darwin and FreeBSD mentioned on homepage + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; # Darwin and FreeBSD mentioned on homepage mainProgram = "borg"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dotlambda ]; }; diff --git a/pkgs/by-name/bo/boron/package.nix b/pkgs/by-name/bo/boron/package.nix index a7b278ba50b5..f524378f1790 100644 --- a/pkgs/by-name/bo/boron/package.nix +++ b/pkgs/by-name/bo/boron/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { make -C test ''; - meta = with lib; { + meta = { homepage = "https://urlan.sourceforge.net/boron/"; description = "Scripting language and C library useful for building DSLs"; mainProgram = "boron"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ mausch ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mausch ]; }; } diff --git a/pkgs/by-name/bo/bossa/package.nix b/pkgs/by-name/bo/bossa/package.nix index 1aa463aeeebd..fbbe01285159 100644 --- a/pkgs/by-name/bo/bossa/package.nix +++ b/pkgs/by-name/bo/bossa/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { cp bin/bossa{c,sh,} $out/bin/ ''; - meta = with lib; { + meta = { description = "Flash programming utility for Atmel's SAM family of flash-based ARM microcontrollers"; longDescription = '' BOSSA is a flash programming utility for Atmel's SAM family of @@ -85,7 +85,7 @@ stdenv.mkDerivation rec { Source SAM-BA Application to reflect that goal. ''; homepage = "http://www.shumatech.com/web/products/bossa"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bo/bosun/package.nix b/pkgs/by-name/bo/bosun/package.nix index 65de68f8250c..5732891a9489 100644 --- a/pkgs/by-name/bo/bosun/package.nix +++ b/pkgs/by-name/bo/bosun/package.nix @@ -28,11 +28,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Time Series Alerting Framework"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://bosun.org"; - maintainers = with maintainers; [ offline ]; + maintainers = with lib.maintainers; [ offline ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/bo/botamusique/package.nix b/pkgs/by-name/bo/botamusique/package.nix index 19c73bdf9527..1b2702ac5734 100644 --- a/pkgs/by-name/bo/botamusique/package.nix +++ b/pkgs/by-name/bo/botamusique/package.nix @@ -156,11 +156,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) botamusique; }; - meta = with lib; { + meta = { description = "Bot to play youtube / soundcloud / radio / local music on Mumble"; homepage = "https://github.com/azlux/botamusique"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "botamusique"; }; diff --git a/pkgs/by-name/bo/botan3/package.nix b/pkgs/by-name/bo/botan3/package.nix index f3c13297c70d..c0483272cc8f 100644 --- a/pkgs/by-name/bo/botan3/package.nix +++ b/pkgs/by-name/bo/botan3/package.nix @@ -184,16 +184,16 @@ stdenv.mkDerivation (finalAttrs: { static = pkgsStatic.botan3; }; - meta = with lib; { + meta = { description = "Cryptographic algorithms library"; homepage = "https://botan.randombit.net"; mainProgram = "botan"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin thillux nikstur ]; - platforms = platforms.unix ++ platforms.windows; - license = licenses.bsd2; + platforms = lib.platforms.unix ++ lib.platforms.windows; + license = lib.licenses.bsd2; }; }) diff --git a/pkgs/by-name/bo/bottom-rs/package.nix b/pkgs/by-name/bo/bottom-rs/package.nix index ab6dc5dbe623..da40c74735f5 100644 --- a/pkgs/by-name/bo/bottom-rs/package.nix +++ b/pkgs/by-name/bo/bottom-rs/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ULMW/1kvq5GeMUMUTQprwcXwnRMDCbow8P6jNwSXHQ8="; - meta = with lib; { + meta = { description = "Fantastic (maybe) CLI for translating between bottom and human-readable text"; homepage = "https://github.com/bottom-software-foundation/bottom-rs"; - license = licenses.mit; - maintainers = with maintainers; [ winter ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ winter ]; mainProgram = "bottomify"; }; } diff --git a/pkgs/by-name/bo/bowtie/package.nix b/pkgs/by-name/bo/bowtie/package.nix index 5f13cdb5470d..3ccf414c60a1 100644 --- a/pkgs/by-name/bo/bowtie/package.nix +++ b/pkgs/by-name/bo/bowtie/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Ultrafast memory-efficient short read aligner"; - license = licenses.artistic2; + license = lib.licenses.artistic2; homepage = "https://bowtie-bio.sourceforge.net"; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bo/bowtie2/package.nix b/pkgs/by-name/bo/bowtie2/package.nix index 7349d505e7ce..5b1f4f3fc2e2 100644 --- a/pkgs/by-name/bo/bowtie2/package.nix +++ b/pkgs/by-name/bo/bowtie2/package.nix @@ -60,13 +60,13 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "http://bowtie-bio.sf.net/bowtie2"; changelog = "https://github.com/BenLangmead/bowtie2/releases/tag/v${finalAttrs.version}"; - maintainers = with maintainers; [ rybern ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ rybern ]; + platforms = lib.platforms.all; mainProgram = "bowtie2"; }; }) diff --git a/pkgs/by-name/bo/boxbuddy/package.nix b/pkgs/by-name/bo/boxbuddy/package.nix index 5b18bbfaf058..858a59b913ef 100644 --- a/pkgs/by-name/bo/boxbuddy/package.nix +++ b/pkgs/by-name/bo/boxbuddy/package.nix @@ -51,12 +51,12 @@ rustPlatform.buildRustPackage rec { doCheck = false; # No checks defined - meta = with lib; { + meta = { description = "Unofficial GUI for managing your Distroboxes, written with GTK4 + Libadwaita"; homepage = "https://dvlv.github.io/BoxBuddyRS"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "boxbuddy-rs"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bo/boxed-cpp/package.nix b/pkgs/by-name/bo/boxed-cpp/package.nix index a6ba4a21e10f..6977c595aca2 100644 --- a/pkgs/by-name/bo/boxed-cpp/package.nix +++ b/pkgs/by-name/bo/boxed-cpp/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation (final: { buildInputs = [ catch2 ]; - meta = with lib; { + meta = { description = "Boxing primitive types in C++"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.moni ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.moni ]; }; }) diff --git a/pkgs/by-name/bo/boxes/package.nix b/pkgs/by-name/bo/boxes/package.nix index 476eae96fe76..b8b348633910 100644 --- a/pkgs/by-name/bo/boxes/package.nix +++ b/pkgs/by-name/bo/boxes/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { install -Dm644 -t $out/share/man/man1 doc/boxes.1 ''; - meta = with lib; { + meta = { description = "Command line program which draws, removes, and repairs ASCII art boxes"; mainProgram = "boxes"; homepage = "https://boxes.thomasjensen.com"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ waiting-for-dev ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ waiting-for-dev ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bo/boxfort/package.nix b/pkgs/by-name/bo/boxfort/package.nix index 65ab07307b42..732ae3d2798d 100644 --- a/pkgs/by-name/bo/boxfort/package.nix +++ b/pkgs/by-name/bo/boxfort/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation rec { "out" ]; - meta = with lib; { + meta = { description = "Convenient & cross-platform sandboxing C library"; homepage = "https://github.com/Snaipe/BoxFort"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thesola10 Yumasi ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bo/boxfs/package.nix b/pkgs/by-name/bo/boxfs/package.nix index 111b7c73b4f3..cd5b2af099b6 100644 --- a/pkgs/by-name/bo/boxfs/package.nix +++ b/pkgs/by-name/bo/boxfs/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation { install boxfs boxfs-init $out/bin ''; - meta = with lib; { + meta = { description = "FUSE file system for box.com accounts"; longDescription = '' Store files on box.com (an account is required). The first time you run @@ -74,7 +74,7 @@ stdenv.mkDerivation { unmount the file system with `fusermount -u mountpoint`. ''; homepage = "https://github.com/drotiro/boxfs2"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bo/boxxy/package.nix b/pkgs/by-name/bo/boxxy/package.nix index a95fd79f0655..69abb7af88e5 100644 --- a/pkgs/by-name/bo/boxxy/package.nix +++ b/pkgs/by-name/bo/boxxy/package.nix @@ -32,14 +32,14 @@ rustPlatform.buildRustPackage rec { RUSTONIG_SYSTEM_LIBONIG = true; }; - meta = with lib; { + meta = { description = "Puts bad Linux applications in a box with only their files"; homepage = "https://github.com/queer/boxxy"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = stdenv.hostPlatform.isAarch64; mainProgram = "boxxy"; }; diff --git a/pkgs/by-name/bp/bpftools/package.nix b/pkgs/by-name/bp/bpftools/package.nix index c94bd1d3cd69..0f2f39951445 100644 --- a/pkgs/by-name/bp/bpftools/package.nix +++ b/pkgs/by-name/bp/bpftools/package.nix @@ -78,14 +78,14 @@ stdenv.mkDerivation rec { install -Dm755 -t $out/bin bpf_dbg ''; - meta = with lib; { + meta = { homepage = "https://github.com/libbpf/bpftool"; description = "Debugging/program analysis tools for the eBPF subsystem"; license = [ - licenses.gpl2Only - licenses.bsd2 + lib.licenses.gpl2Only + lib.licenses.bsd2 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ thoughtpolice ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/bp/bpftune/package.nix b/pkgs/by-name/bp/bpftune/package.nix index 8f3ca13e6329..3a7a0ce77b6f 100644 --- a/pkgs/by-name/bp/bpftune/package.nix +++ b/pkgs/by-name/bp/bpftune/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "BPF-based auto-tuning of Linux system parameters"; mainProgram = "bpftune"; homepage = "https://github.com/oracle-samples/bpftune"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/bp/bpm-tools/package.nix b/pkgs/by-name/bp/bpm-tools/package.nix index b3d7d8f7aceb..af2b096e731d 100644 --- a/pkgs/by-name/bp/bpm-tools/package.nix +++ b/pkgs/by-name/bp/bpm-tools/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/bpm-graph --prefix PATH : "${path}" ''; - meta = with lib; { + meta = { homepage = "http://www.pogo.org.uk/~mark/bpm-tools/"; description = "Automatically calculate BPM (tempo) of music files"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ doronbehar ]; }; }) diff --git a/pkgs/by-name/bp/bpp-core/package.nix b/pkgs/by-name/bp/bpp-core/package.nix index 0613fd293174..1b7ccaacbb0f 100644 --- a/pkgs/by-name/bp/bpp-core/package.nix +++ b/pkgs/by-name/bp/bpp-core/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { homepage = "https://github.com/BioPP/bpp-core"; changelog = "https://github.com/BioPP/bpp-core/blob/master/ChangeLog"; description = "C++ bioinformatics libraries and tools"; - maintainers = with maintainers; [ bcdarwin ]; - license = licenses.cecill20; + maintainers = with lib.maintainers; [ bcdarwin ]; + license = lib.licenses.cecill20; }; } diff --git a/pkgs/by-name/br/braa/package.nix b/pkgs/by-name/br/braa/package.nix index b08403987090..30273379b3db 100644 --- a/pkgs/by-name/br/braa/package.nix +++ b/pkgs/by-name/br/braa/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mass snmp scanner"; homepage = "http://s-tech.elsat.net.pl"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ bycEEE ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bycEEE ]; mainProgram = "braa"; }; } diff --git a/pkgs/by-name/br/braincurses/package.nix b/pkgs/by-name/br/braincurses/package.nix index 419248c40c00..7dde10da68c2 100644 --- a/pkgs/by-name/br/braincurses/package.nix +++ b/pkgs/by-name/br/braincurses/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { install -Dt $out/bin braincurses ''; - meta = with lib; { + meta = { homepage = "https://github.com/bderrly/braincurses"; description = "Version of the classic game Mastermind"; mainProgram = "braincurses"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/br/brasero-unwrapped/package.nix b/pkgs/by-name/br/brasero-unwrapped/package.nix index 508a588041da..2fefdd57c720 100644 --- a/pkgs/by-name/br/brasero-unwrapped/package.nix +++ b/pkgs/by-name/br/brasero-unwrapped/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; }; - meta = with lib; { + meta = { description = "Gnome CD/DVD Burner"; homepage = "https://gitlab.gnome.org/GNOME/brasero"; - maintainers = [ maintainers.bdimcheff ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.bdimcheff ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "brasero"; }; } diff --git a/pkgs/by-name/br/breakpad/package.nix b/pkgs/by-name/br/breakpad/package.nix index a62d131d5970..b6785405496c 100644 --- a/pkgs/by-name/br/breakpad/package.nix +++ b/pkgs/by-name/br/breakpad/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { ln -s ${lss} $sourceRoot/src/third_party/lss ''; - meta = with lib; { + meta = { description = "Open-source multi-platform crash reporting system"; homepage = "https://chromium.googlesource.com/breakpad"; - license = licenses.bsd3; - maintainers = with maintainers; [ berberman ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ berberman ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/br/breeze-hacked-cursor-theme/package.nix b/pkgs/by-name/br/breeze-hacked-cursor-theme/package.nix index f05e0a788ed9..ff520395e4da 100644 --- a/pkgs/by-name/br/breeze-hacked-cursor-theme/package.nix +++ b/pkgs/by-name/br/breeze-hacked-cursor-theme/package.nix @@ -45,11 +45,11 @@ stdenvNoCC.mkDerivation { xcursorgen ]; - meta = with lib; { + meta = { homepage = "https://github.com/clayrisser/breeze-hacked-cursor-theme"; description = "Breeze Hacked cursor theme"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ anomalocaris ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ anomalocaris ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/br/breitbandmessung/package.nix b/pkgs/by-name/br/breitbandmessung/package.nix index f52dfb233f9b..b710dcf2d060 100644 --- a/pkgs/by-name/br/breitbandmessung/package.nix +++ b/pkgs/by-name/br/breitbandmessung/package.nix @@ -89,12 +89,12 @@ stdenv.mkDerivation ( passthru.tests = { inherit (nixosTests) breitbandmessung; }; passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Broadband internet speed test app from the german Bundesnetzagentur"; homepage = "https://www.breitbandmessung.de"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ b4dm4n ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ b4dm4n ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/br/brial/package.nix b/pkgs/by-name/br/brial/package.nix index 776e5b105a2f..f9894246b2e7 100644 --- a/pkgs/by-name/br/brial/package.nix +++ b/pkgs/by-name/br/brial/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { homepage = "https://github.com/BRiAl/BRiAl"; description = "Legacy version of PolyBoRi maintained by sagemath developers"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/br/brig/package.nix b/pkgs/by-name/br/brig/package.nix index 6e20c75ea67c..07b8c692a283 100644 --- a/pkgs/by-name/br/brig/package.nix +++ b/pkgs/by-name/br/brig/package.nix @@ -44,7 +44,7 @@ buildGoModule rec { # There are no tests for the brig executable. doCheck = false; - meta = with lib; { + meta = { description = "File synchronization on top of IPFS with a git-like interface and a FUSE filesystem"; longDescription = '' brig is a distributed and secure file synchronization tool with a version @@ -54,8 +54,8 @@ buildGoModule rec { ''; homepage = "https://brig.readthedocs.io"; changelog = "https://github.com/sahib/brig/releases/tag/${src.rev}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ offline ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ offline ]; mainProgram = "brig"; }; } diff --git a/pkgs/by-name/br/brightnessctl/package.nix b/pkgs/by-name/br/brightnessctl/package.nix index ddfb76a1ce73..5b770fed6537 100644 --- a/pkgs/by-name/br/brightnessctl/package.nix +++ b/pkgs/by-name/br/brightnessctl/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/Hummer12007/brightnessctl"; description = "This program allows you read and control device brightness"; - license = licenses.mit; - maintainers = with maintainers; [ megheaiulian ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ megheaiulian ]; + platforms = lib.platforms.linux; mainProgram = "brightnessctl"; }; diff --git a/pkgs/by-name/br/brill/package.nix b/pkgs/by-name/br/brill/package.nix index ff7cc19b750f..922bf72c9790 100644 --- a/pkgs/by-name/br/brill/package.nix +++ b/pkgs/by-name/br/brill/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "In-house serif typeface for the publishing house Brill, designed by John Hudson; free for non-commercial use"; longDescription = '' Brill has “a neo-classical design geared towards optimum legibility”. @@ -35,8 +35,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; homepage = "https://brill.com/page/BrillFont/brill-typeface"; downloadPage = "https://brill.com/page/419382"; - license = licenses.unfree; - platforms = platforms.all; - maintainers = with maintainers; [ trespaul ]; + license = lib.licenses.unfree; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ trespaul ]; }; }) diff --git a/pkgs/by-name/br/brillo/package.nix b/pkgs/by-name/br/brillo/package.nix index 7bece9462dd4..f02b17e415fc 100644 --- a/pkgs/by-name/br/brillo/package.nix +++ b/pkgs/by-name/br/brillo/package.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation rec { installTargets = [ "install-dist" ]; - meta = with lib; { + meta = { description = "Backlight and Keyboard LED control tool"; homepage = "https://gitlab.com/cameronnemo/brillo"; mainProgram = "brillo"; license = [ - licenses.gpl3Only - licenses.bsd0 + lib.licenses.gpl3Only + lib.licenses.bsd0 ]; - platforms = platforms.linux; - maintainers = [ maintainers.alexarice ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.alexarice ]; }; } diff --git a/pkgs/by-name/br/brise/package.nix b/pkgs/by-name/br/brise/package.nix index 4d4ab988cfec..c6fb6b1c7dc0 100644 --- a/pkgs/by-name/br/brise/package.nix +++ b/pkgs/by-name/br/brise/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Rime Schema Repository"; longDescription = '' This software is a collection of data packages used by Rime @@ -43,8 +43,8 @@ stdenv.mkDerivation { homepage = "https://rime.im"; # Note that individual packages in this collection # may be released under different licenses - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.sifmelcara ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sifmelcara ]; }; } diff --git a/pkgs/by-name/br/brlcad/package.nix b/pkgs/by-name/br/brlcad/package.nix index c5820b0d5d7b..f96fc1064def 100644 --- a/pkgs/by-name/br/brlcad/package.nix +++ b/pkgs/by-name/br/brlcad/package.nix @@ -53,16 +53,16 @@ stdenv.mkDerivation rec { "-Wno-error=array-bounds" ]; - meta = with lib; { + meta = { homepage = "https://brlcad.org"; description = "BRL-CAD is a powerful cross-platform open source combinatorial solid modeling system"; changelog = "https://github.com/BRL-CAD/brlcad/releases/tag/${lib.removePrefix "refs/tags/" src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 bsd2 ]; - maintainers = with maintainers; [ GaetanLepage ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ GaetanLepage ]; + platforms = lib.platforms.linux; # error Exactly one of ON_LITTLE_ENDIAN or ON_BIG_ENDIAN should be defined. broken = stdenv.system == "aarch64-linux"; }; diff --git a/pkgs/by-name/br/brmodelo/package.nix b/pkgs/by-name/br/brmodelo/package.nix index 823c6fc8067c..4aeeefd05799 100644 --- a/pkgs/by-name/br/brmodelo/package.nix +++ b/pkgs/by-name/br/brmodelo/package.nix @@ -122,10 +122,10 @@ stdenv.mkDerivation (finalAttrs: { find $out/share/doc/brmodelo/javadoc -name "*.html" -exec strip-nondeterminism --type javadoc {} + ''; - meta = with lib; { + meta = { description = "Entity-relationship diagram tool for making conceptual and logical database models"; homepage = "https://github.com/chcandido/brModelo"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "brmodelo"; maintainers = [ ]; }; diff --git a/pkgs/by-name/br/broadcom-bt-firmware/package.nix b/pkgs/by-name/br/broadcom-bt-firmware/package.nix index aacf0451891f..2824fd6330f4 100644 --- a/pkgs/by-name/br/broadcom-bt-firmware/package.nix +++ b/pkgs/by-name/br/broadcom-bt-firmware/package.nix @@ -42,11 +42,11 @@ stdenvNoCC.mkDerivation rec { outputHashAlgo = "sha256"; outputHash = "042frb2dmrqfj8q83h5p769q6hg2b3i8fgnyvs9r9a71z7pbsagq"; - meta = with lib; { + meta = { description = "Firmware for Broadcom WIDCOMM® Bluetooth devices"; homepage = "https://www.catalog.update.microsoft.com/Search.aspx?q=Broadcom+bluetooth"; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ zraexy ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zraexy ]; }; } diff --git a/pkgs/by-name/br/broadlink-cli/package.nix b/pkgs/by-name/br/broadlink-cli/package.nix index ecd5e45c535e..59c901578856 100644 --- a/pkgs/by-name/br/broadlink-cli/package.nix +++ b/pkgs/by-name/br/broadlink-cli/package.nix @@ -32,9 +32,9 @@ python3Packages.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tools for interfacing with Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs"; - maintainers = with maintainers; [ peterhoeg ]; + maintainers = with lib.maintainers; [ peterhoeg ]; inherit (python3Packages.broadlink.meta) homepage license; }; } diff --git a/pkgs/by-name/br/brogue-ce/package.nix b/pkgs/by-name/br/brogue-ce/package.nix index fe1040e2b634..80b2056bdd2e 100644 --- a/pkgs/by-name/br/brogue-ce/package.nix +++ b/pkgs/by-name/br/brogue-ce/package.nix @@ -82,14 +82,14 @@ stdenv.mkDerivation (finalAttrs: { mv Brogue.app "$out/Applications/Brogue CE.app" ''; - meta = with lib; { + meta = { description = "Community-lead fork of the minimalist roguelike game Brogue"; mainProgram = "brogue-ce"; homepage = "https://github.com/tmewett/BrogueCE"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/br/bront_fonts/package.nix b/pkgs/by-name/br/bront_fonts/package.nix index 9c7235836404..ffaaddcb10c6 100644 --- a/pkgs/by-name/br/bront_fonts/package.nix +++ b/pkgs/by-name/br/bront_fonts/package.nix @@ -19,15 +19,15 @@ stdenvNoCC.mkDerivation { install -m444 -Dt $out/share/fonts/truetype *Bront.ttf ''; - meta = with lib; { + meta = { description = "Bront Fonts"; longDescription = "Ubuntu Mono Bront and DejaVu Sans Mono Bront fonts."; homepage = "https://github.com/chrismwendt/bront"; - license = with licenses; [ + license = with lib.licenses; [ bitstreamVera ufl ]; - platforms = platforms.all; - maintainers = [ maintainers.grburst ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.grburst ]; }; } diff --git a/pkgs/by-name/br/brook/package.nix b/pkgs/by-name/br/brook/package.nix index a4c4cfca1e42..5b5b50a85455 100644 --- a/pkgs/by-name/br/brook/package.nix +++ b/pkgs/by-name/br/brook/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-dYiifLUOq6RKAVSXuoGlok9Jp8jHmbXN/EjQeQpoqWw="; - meta = with lib; { + meta = { homepage = "https://github.com/txthinking/brook"; description = "Cross-platform Proxy/VPN software"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ xrelkd ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ xrelkd ]; mainProgram = "brook"; }; } diff --git a/pkgs/by-name/br/broom/package.nix b/pkgs/by-name/br/broom/package.nix index 6c7d0cb264c5..ba32d447a8cb 100644 --- a/pkgs/by-name/br/broom/package.nix +++ b/pkgs/by-name/br/broom/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Interactive CLI tool for managing local git branches"; homepage = "https://github.com/a-camarillo/broom"; - license = licenses.mit; - maintainers = with maintainers; [ a-camarillo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ a-camarillo ]; mainProgram = "broom"; }; } diff --git a/pkgs/by-name/br/brotab/package.nix b/pkgs/by-name/br/brotab/package.nix index 4c887d103f7e..20f6f9dd2ff8 100644 --- a/pkgs/by-name/br/brotab/package.nix +++ b/pkgs/by-name/br/brotab/package.nix @@ -50,10 +50,10 @@ python3Packages.buildPythonApplication rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/balta2ar/brotab"; description = "Control your browser's tabs from the command line"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/by-name/br/brotli/package.nix b/pkgs/by-name/br/brotli/package.nix index bb6c287c870f..31115184f157 100644 --- a/pkgs/by-name/br/brotli/package.nix +++ b/pkgs/by-name/br/brotli/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { python = python3Packages.brotli; }; - meta = with lib; { + meta = { homepage = "https://github.com/google/brotli"; description = "General-purpose lossless compression library with CLI"; longDescription = '' @@ -73,13 +73,13 @@ stdenv.mkDerivation (finalAttrs: { in the following Internet-Draft: https://datatracker.ietf.org/doc/html/rfc7932 ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; pkgConfigModules = [ "libbrotlidec" "libbrotlienc" ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "brotli"; }; }) diff --git a/pkgs/by-name/br/browserpass/package.nix b/pkgs/by-name/br/browserpass/package.nix index 47a12a2ac940..fd3e9f0a0a16 100644 --- a/pkgs/by-name/br/browserpass/package.nix +++ b/pkgs/by-name/br/browserpass/package.nix @@ -68,11 +68,11 @@ buildGoModule rec { command = "browserpass --version"; }; - meta = with lib; { + meta = { description = "Browserpass native client app"; mainProgram = "browserpass"; homepage = "https://github.com/browserpass/browserpass-native"; - license = licenses.isc; - maintainers = with maintainers; [ rvolosatovs ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ rvolosatovs ]; }; } diff --git a/pkgs/by-name/br/browsh/package.nix b/pkgs/by-name/br/browsh/package.nix index 8d4661c5045d..addbeb091e70 100644 --- a/pkgs/by-name/br/browsh/package.nix +++ b/pkgs/by-name/br/browsh/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { # Tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Fully-modern text-based browser, rendering to TTY and browsers"; mainProgram = "browsh"; homepage = "https://www.brow.sh/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kalbasit siraben ]; diff --git a/pkgs/by-name/br/brutalmaze/package.nix b/pkgs/by-name/br/brutalmaze/package.nix index b49940db1124..fd7341aae392 100644 --- a/pkgs/by-name/br/brutalmaze/package.nix +++ b/pkgs/by-name/br/brutalmaze/package.nix @@ -29,11 +29,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; # there's no test - meta = with lib; { + meta = { description = "Minimalist thrilling shoot 'em up game"; mainProgram = "brutalmaze"; homepage = "https://brutalmaze.rtfd.io"; - license = licenses.agpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.agpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; }; } diff --git a/pkgs/by-name/br/brutefir/package.nix b/pkgs/by-name/br/brutefir/package.nix index c83c8a246131..38524edc4202 100644 --- a/pkgs/by-name/br/brutefir/package.nix +++ b/pkgs/by-name/br/brutefir/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { installFlags = [ "INSTALL_PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://torger.se/anders/brutefir.html"; description = "Software convolution engine"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ auchter ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ auchter ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/br/bruteforce-salted-openssl/package.nix b/pkgs/by-name/br/bruteforce-salted-openssl/package.nix index 743f09e7d980..6e50f2bc80a0 100644 --- a/pkgs/by-name/br/bruteforce-salted-openssl/package.nix +++ b/pkgs/by-name/br/bruteforce-salted-openssl/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Try to find the password of file encrypted with OpenSSL"; homepage = "https://github.com/glv2/bruteforce-salted-openssl"; changelog = "https://github.com/glv2/bruteforce-salted-openssl/blob/${src.rev}/NEWS"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ octodi ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ octodi ]; mainProgram = "bruteforce-salted-openssl"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/br/bruteforce-wallet/package.nix b/pkgs/by-name/br/bruteforce-wallet/package.nix index ffb4b44d87a0..f9a3c705aed8 100644 --- a/pkgs/by-name/br/bruteforce-wallet/package.nix +++ b/pkgs/by-name/br/bruteforce-wallet/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Try to find password of encrypted cryptocurrency wallet"; homepage = "https://github.com/glv2/bruteforce-wallet"; changelog = "https://github.com/glv2/bruteforce-wallet/blob/${src.rev}/NEWS"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ octodi ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ octodi ]; mainProgram = "bruteforce-wallet"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bs/bs2b-lv2/package.nix b/pkgs/by-name/bs/bs2b-lv2/package.nix index d8dfddf1f2ce..f8f02e07a339 100644 --- a/pkgs/by-name/bs/bs2b-lv2/package.nix +++ b/pkgs/by-name/bs/bs2b-lv2/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { lv2 ]; - meta = with lib; { + meta = { description = "LV2 plugin for using Bauer stereophonic-to-binaural DSP library"; homepage = "https://github.com/nilninull/bs2b-lv2"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bs/bschaffl/package.nix b/pkgs/by-name/bs/bschaffl/package.nix index d99738ef42a7..0ee9d001a0b1 100644 --- a/pkgs/by-name/bs/bschaffl/package.nix +++ b/pkgs/by-name/bs/bschaffl/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/sjaehn/BSchaffl"; description = "Pattern-controlled MIDI amp & time stretch LV2 plugin"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/bs/bsdiff/package.nix b/pkgs/by-name/bs/bsdiff/package.nix index 91062c64ab32..deee5d11681b 100644 --- a/pkgs/by-name/bs/bsdiff/package.nix +++ b/pkgs/by-name/bs/bsdiff/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { cp bspatch.1 $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Efficient binary diff/patch tool"; homepage = "https://www.daemonology.net/bsdiff/"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.thoughtpolice ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/bs/bsequencer/package.nix b/pkgs/by-name/bs/bsequencer/package.nix index 9752f02a5574..10deec5009b1 100644 --- a/pkgs/by-name/bs/bsequencer/package.nix +++ b/pkgs/by-name/bs/bsequencer/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sjaehn/BSEQuencer"; description = "Multi channel MIDI step sequencer LV2 plugin"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/bs/bshapr/package.nix b/pkgs/by-name/bs/bshapr/package.nix index 884ae2cb47bd..18656405e55a 100644 --- a/pkgs/by-name/bs/bshapr/package.nix +++ b/pkgs/by-name/bs/bshapr/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sjaehn/BShapr"; description = "Beat / envelope shaper LV2 plugin"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/bs/bslizr/package.nix b/pkgs/by-name/bs/bslizr/package.nix index 67bc8b89c7cf..ec102ea1b281 100644 --- a/pkgs/by-name/bs/bslizr/package.nix +++ b/pkgs/by-name/bs/bslizr/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sjaehn/BSlizr"; description = "Sequenced audio slicing effect LV2 plugin (step sequencer effect)"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/bs/bsp-layout/package.nix b/pkgs/by-name/bs/bsp-layout/package.nix index 997df1f5f038..b2bd5722abc2 100644 --- a/pkgs/by-name/bs/bsp-layout/package.nix +++ b/pkgs/by-name/bs/bsp-layout/package.nix @@ -36,16 +36,16 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Manage layouts in bspwm"; longDescription = '' bsp-layout is a dynamic layout manager for bspwm, written in bash. It provides layout options to fit most workflows. ''; homepage = "https://github.com/phenax/bsp-layout"; - license = licenses.mit; - maintainers = with maintainers; [ totoroot ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ totoroot ]; + platforms = lib.platforms.linux; mainProgram = "bsp-layout"; }; } diff --git a/pkgs/by-name/bs/bspwm/package.nix b/pkgs/by-name/bs/bspwm/package.nix index 003078db12de..4faf9f3da5bb 100644 --- a/pkgs/by-name/bs/bspwm/package.nix +++ b/pkgs/by-name/bs/bspwm/package.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation rec { inherit (nixosTests) startx; }; - meta = with lib; { + meta = { description = "Tiling window manager based on binary space partitioning"; homepage = "https://github.com/baskerville/bspwm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ meisternu ncfavier ]; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bs/bsync/package.nix b/pkgs/by-name/bs/bsync/package.nix index c86b1230235b..447b8b2bff56 100644 --- a/pkgs/by-name/bs/bsync/package.nix +++ b/pkgs/by-name/bs/bsync/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { runHook postFixup ''; - meta = with lib; { + meta = { homepage = "https://github.com/dooblem/bsync"; description = "Bidirectional Synchronization using Rsync"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dietmarw ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dietmarw ]; + platforms = lib.platforms.unix; mainProgram = "bsync"; }; } diff --git a/pkgs/by-name/bt/bt-fw-converter/package.nix b/pkgs/by-name/bt/bt-fw-converter/package.nix index 5a0175069e30..bd79c982f3ee 100644 --- a/pkgs/by-name/bt/bt-fw-converter/package.nix +++ b/pkgs/by-name/bt/bt-fw-converter/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/bt-fw-converter --set PERL5LIB $PERL5LIB ''; - meta = with lib; { + meta = { homepage = "https://github.com/winterheart/broadcom-bt-firmware/"; description = "Tool that converts hex to hcd based on inf file"; mainProgram = "bt-fw-converter"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ zraexy ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zraexy ]; }; } diff --git a/pkgs/by-name/bt/btar/package.nix b/pkgs/by-name/bt/btar/package.nix index 2109d92ab884..d3e13559c2c8 100644 --- a/pkgs/by-name/bt/btar/package.nix +++ b/pkgs/by-name/bt/btar/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Tar-compatible block-based archiver"; mainProgram = "btar"; license = lib.licenses.gpl3Plus; homepage = "https://briantracy.xyz/writing/btar.html"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/bt/btcdeb/package.nix b/pkgs/by-name/bt/btcdeb/package.nix index 2ffe238390b0..73d4360c0e3c 100644 --- a/pkgs/by-name/bt/btcdeb/package.nix +++ b/pkgs/by-name/bt/btcdeb/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Bitcoin Script Debugger"; homepage = "https://github.com/bitcoin-core/btcdeb"; changelog = "https://github.com/bitcoin-core/btcdeb/releases"; - license = licenses.mit; - maintainers = with maintainers; [ akru ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ akru ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bt/btdu/package.nix b/pkgs/by-name/bt/btdu/package.nix index 6612306aa49e..f9f0acd6fb62 100644 --- a/pkgs/by-name/bt/btdu/package.nix +++ b/pkgs/by-name/bt/btdu/package.nix @@ -30,13 +30,13 @@ buildDubPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Sampling disk usage profiler for btrfs"; homepage = "https://github.com/CyberShadow/btdu"; changelog = "https://github.com/CyberShadow/btdu/releases/tag/${src.rev}"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ atila cybershadow ]; diff --git a/pkgs/by-name/bt/btfs/package.nix b/pkgs/by-name/bt/btfs/package.nix index 291388e58e43..18b15cae94a5 100644 --- a/pkgs/by-name/bt/btfs/package.nix +++ b/pkgs/by-name/bt/btfs/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "Bittorrent filesystem based on FUSE"; homepage = "https://github.com/johang/btfs"; - license = licenses.gpl3; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bt/btor2tools/package.nix b/pkgs/by-name/bt/btor2tools/package.nix index 50591eba7f09..1ca0da27c480 100644 --- a/pkgs/by-name/bt/btor2tools/package.nix +++ b/pkgs/by-name/bt/btor2tools/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { "-DCMAKE_BUILD_WITH_INSTALL_NAME_DIR=ON" ]; - meta = with lib; { + meta = { description = "Generic parser and tool package for the BTOR2 format"; homepage = "https://github.com/Boolector/btor2tools"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/bt/btrbk/package.nix b/pkgs/by-name/bt/btrbk/package.nix index dad8be36e594..015dd59a95fc 100644 --- a/pkgs/by-name/bt/btrbk/package.nix +++ b/pkgs/by-name/bt/btrbk/package.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Backup tool for btrfs subvolumes"; homepage = "https://digint.ch/btrbk"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ asymmetric ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ asymmetric ]; mainProgram = "btrbk"; }; } diff --git a/pkgs/by-name/bt/btrfs-auto-snapshot/package.nix b/pkgs/by-name/bt/btrfs-auto-snapshot/package.nix index e11e98f74c84..b31fb3f9b475 100644 --- a/pkgs/by-name/bt/btrfs-auto-snapshot/package.nix +++ b/pkgs/by-name/bt/btrfs-auto-snapshot/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { --prefix PATH : "${wrapperPath}" ''; - meta = with lib; { + meta = { description = "BTRFS Automatic Snapshot Service for Linux"; homepage = "https://github.com/hunleyd/btrfs-auto-snapshot"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "btrfs-auto-snapshot"; - maintainers = with maintainers; [ motiejus ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ motiejus ]; + platforms = lib.platforms.linux; longDescription = '' btrfs-auto-snapshot is a Bash script designed to bring as much of the diff --git a/pkgs/by-name/bt/btrfs-heatmap/package.nix b/pkgs/by-name/bt/btrfs-heatmap/package.nix index 32c6c06c1070..c331dc57fc69 100644 --- a/pkgs/by-name/bt/btrfs-heatmap/package.nix +++ b/pkgs/by-name/bt/btrfs-heatmap/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Visualize the layout of a mounted btrfs"; mainProgram = "btrfs-heatmap"; homepage = "https://github.com/knorrie/btrfs-heatmap"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/bt/btrfs-snap/package.nix b/pkgs/by-name/bt/btrfs-snap/package.nix index bbf9db4e99c7..63db64564331 100644 --- a/pkgs/by-name/bt/btrfs-snap/package.nix +++ b/pkgs/by-name/bt/btrfs-snap/package.nix @@ -34,12 +34,12 @@ stdenvNoCC.mkDerivation rec { ] } ''; - meta = with lib; { + meta = { description = "Create and maintain the history of snapshots of btrfs filesystems"; mainProgram = "btrfs-snap"; homepage = "https://github.com/jf647/btrfs-snap"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ lionello ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ lionello ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bu/bubblemail/package.nix b/pkgs/by-name/bu/bubblemail/package.nix index cf05f04a0fb5..8c9458cda9ae 100644 --- a/pkgs/by-name/bu/bubblemail/package.nix +++ b/pkgs/by-name/bu/bubblemail/package.nix @@ -71,11 +71,11 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Extensible mail notification service"; homepage = "http://bubblemail.free.fr/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/by-name/bu/bubblewrap/package.nix b/pkgs/by-name/bu/bubblewrap/package.nix index 2aaf1399a90b..f8e4f6b2f4a3 100644 --- a/pkgs/by-name/bu/bubblewrap/package.nix +++ b/pkgs/by-name/bu/bubblewrap/package.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { # incompatible with Nix sandbox doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/containers/bubblewrap/releases/tag/${src.rev}"; description = "Unprivileged sandboxing tool"; homepage = "https://github.com/containers/bubblewrap"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.linux; mainProgram = "bwrap"; }; } diff --git a/pkgs/by-name/bu/buffybox/package.nix b/pkgs/by-name/bu/buffybox/package.nix index 37f670b19e8c..e7d944b4d20b 100644 --- a/pkgs/by-name/bu/buffybox/package.nix +++ b/pkgs/by-name/bu/buffybox/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Suite of graphical applications for the terminal"; homepage = "https://gitlab.postmarketos.org/postmarketOS/buffybox"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ colinsane ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bu/bugdom/package.nix b/pkgs/by-name/bu/bugdom/package.nix index 61ba303af5b3..46b991693a9b 100644 --- a/pkgs/by-name/bu/bugdom/package.nix +++ b/pkgs/by-name/bu/bugdom/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Port of Bugdom, a 1999 Macintosh game by Pangea Software, for modern operating systems"; homepage = "https://github.com/jorio/Bugdom"; - license = with licenses; [ cc-by-sa-40 ]; - maintainers = with maintainers; [ lux ]; + license = with lib.licenses; [ cc-by-sa-40 ]; + maintainers = with lib.maintainers; [ lux ]; mainProgram = "Bugdom"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bu/buildkit-nix/package.nix b/pkgs/by-name/bu/buildkit-nix/package.nix index 3cb79b32457e..40cdfba77fae 100644 --- a/pkgs/by-name/bu/buildkit-nix/package.nix +++ b/pkgs/by-name/bu/buildkit-nix/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Nix frontend for BuildKit"; homepage = "https://github.com/reproducible-containers/buildkit-nix/"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ lesuisse ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lesuisse ]; mainProgram = "buildkit-nix"; }; } diff --git a/pkgs/by-name/bu/buildkite-agent-metrics/package.nix b/pkgs/by-name/bu/buildkite-agent-metrics/package.nix index 14cef84eab9c..1f153895a938 100644 --- a/pkgs/by-name/bu/buildkite-agent-metrics/package.nix +++ b/pkgs/by-name/bu/buildkite-agent-metrics/package.nix @@ -28,10 +28,10 @@ buildGoModule rec { mv $out/bin/lambda $lambda/bin ''; - meta = with lib; { + meta = { description = "Command-line tool (and Lambda) for collecting Buildkite agent metrics"; homepage = "https://github.com/buildkite/buildkite-agent-metrics"; - license = licenses.mit; - teams = [ teams.determinatesystems ]; + license = lib.licenses.mit; + teams = [ lib.teams.determinatesystems ]; }; } diff --git a/pkgs/by-name/bu/buildkite-agent/package.nix b/pkgs/by-name/bu/buildkite-agent/package.nix index 4af365c8d316..1cfde8e7cbed 100644 --- a/pkgs/by-name/bu/buildkite-agent/package.nix +++ b/pkgs/by-name/bu/buildkite-agent/package.nix @@ -64,7 +64,7 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Build runner for buildkite.com"; longDescription = '' The buildkite-agent is a small, reliable, and cross-platform build runner @@ -74,13 +74,13 @@ buildGoModule rec { and uploading the job's artifacts. ''; homepage = "https://buildkite.com/docs/agent"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pawelpacana zimbatm jsoo1 techknowlogick ]; - platforms = with platforms; unix ++ darwin; + platforms = with lib.platforms; unix ++ darwin; }; } diff --git a/pkgs/by-name/bu/buildkite-cli/package.nix b/pkgs/by-name/bu/buildkite-cli/package.nix index c1dcf1d24578..eccaa5581941 100644 --- a/pkgs/by-name/bu/buildkite-cli/package.nix +++ b/pkgs/by-name/bu/buildkite-cli/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { "-X main.VERSION=${version}" ]; - meta = with lib; { + meta = { description = "Command line interface for Buildkite"; homepage = "https://github.com/buildkite/cli"; - license = licenses.mit; - maintainers = with maintainers; [ groodt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ groodt ]; mainProgram = "bk"; }; } diff --git a/pkgs/by-name/bu/buildtorrent/package.nix b/pkgs/by-name/bu/buildtorrent/package.nix index 001cb8da5b92..bebeddfa66d0 100644 --- a/pkgs/by-name/bu/buildtorrent/package.nix +++ b/pkgs/by-name/bu/buildtorrent/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-6OJ2R72ziHOsVw1GwalompKwG7Z/WQidHN0IeE9wUtA="; }; - meta = with lib; { + meta = { description = "Simple commandline torrent creator"; homepage = "https://mathr.co.uk/blog/torrent.html"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; mainProgram = "buildtorrent"; }; } diff --git a/pkgs/by-name/bu/buku/package.nix b/pkgs/by-name/bu/buku/package.nix index 49daf6e7930a..256a5ddb4fbd 100644 --- a/pkgs/by-name/bu/buku/package.nix +++ b/pkgs/by-name/bu/buku/package.nix @@ -85,12 +85,12 @@ buildPythonApplication rec { rm $out/bin/bukuserver ''; - meta = with lib; { + meta = { description = "Private cmdline bookmark manager"; mainProgram = "buku"; homepage = "https://github.com/jarun/Buku"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/bu/bukubrow/package.nix b/pkgs/by-name/bu/bukubrow/package.nix index 4a8c4ddfccdb..c3ad4de8366f 100644 --- a/pkgs/by-name/bu/bukubrow/package.nix +++ b/pkgs/by-name/bu/bukubrow/package.nix @@ -54,10 +54,10 @@ rustPlatform.buildRustPackage rec { install -Dm0644 chrome.json $out/etc/chromium/native-messaging-hosts/com.samhh.bukubrow.json ''; - meta = with lib; { + meta = { description = "WebExtension for Buku, a command-line bookmark manager"; homepage = "https://github.com/SamHH/bukubrow-host"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "bukubrow"; }; diff --git a/pkgs/by-name/bu/bulk_extractor/package.nix b/pkgs/by-name/bu/bulk_extractor/package.nix index 14337a7035cd..e03a6105b398 100644 --- a/pkgs/by-name/bu/bulk_extractor/package.nix +++ b/pkgs/by-name/bu/bulk_extractor/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace src/be20_api/feature_recorder_set.cpp --replace-fail '#warn ' '#warning ' ''; - meta = with lib; { + meta = { description = "Digital forensics tool for extracting information from file systems"; longDescription = '' bulk_extractor is a C++ program that scans a disk image, a file, or a @@ -65,15 +65,15 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/simsong/bulk_extractor"; downloadPage = "http://downloads.digitalcorpora.org/downloads/bulk_extractor/"; changelog = "https://github.com/simsong/bulk_extractor/blob/${finalAttrs.src.rev}/ChangeLog"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = with platforms; unix ++ windows; - license = with licenses; [ + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = with lib.platforms; unix ++ windows; + license = with lib.licenses; [ mit cpl10 gpl3Only lgpl21Only lgpl3Only - licenses.openssl + lib.licenses.openssl ]; }; }) diff --git a/pkgs/by-name/bu/bulky/package.nix b/pkgs/by-name/bu/bulky/package.nix index 2592d397beb1..5e835d07462a 100644 --- a/pkgs/by-name/bu/bulky/package.nix +++ b/pkgs/by-name/bu/bulky/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Bulk rename app"; mainProgram = "bulky"; homepage = "https://github.com/linuxmint/bulky"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/bu/bullet/package.nix b/pkgs/by-name/bu/bullet/package.nix index df5ba69cb3f0..b553a8ce52c1 100644 --- a/pkgs/by-name/bu/bullet/package.nix +++ b/pkgs/by-name/bu/bullet/package.nix @@ -53,15 +53,15 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=argument-outside-range -Wno-error=c++11-narrowing"; - meta = with lib; { + meta = { description = "Professional free 3D Game Multiphysics Library"; longDescription = '' Bullet 3D Game Multiphysics Library provides state of the art collision detection, soft body and rigid body dynamics. ''; homepage = "http://bulletphysics.org"; - license = licenses.zlib; - maintainers = with maintainers; [ aforemny ]; - platforms = platforms.unix; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ aforemny ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bu/bulletml/package.nix b/pkgs/by-name/bu/bulletml/package.nix index 344afc966811..fdce3336f7d4 100644 --- a/pkgs/by-name/bu/bulletml/package.nix +++ b/pkgs/by-name/bu/bulletml/package.nix @@ -76,17 +76,17 @@ stdenv.mkDerivation { install -m 644 README.en "$out"/share/licenses/libbulletml ''; - meta = with lib; { + meta = { description = "C++ library to handle BulletML easily"; longDescription = '' BulletML is the Bullet Markup Language. BulletML can describe the barrage of bullets in shooting games. ''; homepage = "http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/index_e.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fgaz ]; # See https://github.com/NixOS/nixpkgs/pull/35482 # for some attempts in getting it to build on darwin - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bu/bullshit/package.nix b/pkgs/by-name/bu/bullshit/package.nix index 6756a87e0a1e..071c529c6754 100644 --- a/pkgs/by-name/bu/bullshit/package.nix +++ b/pkgs/by-name/bu/bullshit/package.nix @@ -34,12 +34,12 @@ stdenvNoCC.mkDerivation { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Nonsense phrase generator"; mainProgram = "bullshit"; homepage = "https://github.com/fceschmidt/bullshit-arch"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ krloer ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ krloer ]; inherit (gawk.meta) platforms; }; } diff --git a/pkgs/by-name/bu/bully/package.nix b/pkgs/by-name/bu/bully/package.nix index 0e9e50de1c7b..f823b19eea06 100644 --- a/pkgs/by-name/bu/bully/package.nix +++ b/pkgs/by-name/bu/bully/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/doc/${pname} ../*.md ''; - meta = with lib; { + meta = { description = "Retrieve WPA/WPA2 passphrase from a WPS enabled access point"; homepage = "https://github.com/kimocoder/bully"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "bully"; }; } diff --git a/pkgs/by-name/bu/bumblebee-status/package.nix b/pkgs/by-name/bu/bumblebee-status/package.nix index 3a7972ec5dc3..da4657998da2 100644 --- a/pkgs/by-name/bu/bumblebee-status/package.nix +++ b/pkgs/by-name/bu/bumblebee-status/package.nix @@ -79,12 +79,12 @@ python3.pkgs.buildPythonPackage { cp -r ./themes $out/${python3.sitePackages} ''; - meta = with lib; { + meta = { description = "Modular, theme-able status line generator for the i3 window manager"; homepage = "https://github.com/tobi-wan-kenobi/bumblebee-status"; mainProgram = "bumblebee-status"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ jamerrq ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jamerrq ]; }; } diff --git a/pkgs/by-name/bu/bumblebee/package.nix b/pkgs/by-name/bu/bumblebee/package.nix index 4d59f5c5de5d..d44ac9bfaa2e 100644 --- a/pkgs/by-name/bu/bumblebee/package.nix +++ b/pkgs/by-name/bu/bumblebee/package.nix @@ -178,11 +178,11 @@ stdenv.mkDerivation rec { --prefix PATH : "${virtualgl}/bin" ''; - meta = with lib; { + meta = { description = "Daemon for managing Optimus videocards (power-on/off, spawns xservers)"; homepage = "https://github.com/Bumblebee-Project/Bumblebee"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bu/bump/package.nix b/pkgs/by-name/bu/bump/package.nix index 338bb7a2a450..2b49242ceecd 100644 --- a/pkgs/by-name/bu/bump/package.nix +++ b/pkgs/by-name/bu/bump/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X main.buildDate=1970-01-01" ]; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://github.com/mroth/bump"; description = "CLI tool to draft a GitHub Release for the next semantic version"; mainProgram = "bump"; - maintainers = with maintainers; [ doronbehar ]; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/by-name/bu/bumpver/package.nix b/pkgs/by-name/bu/bumpver/package.nix index 5d3c6b531fbb..513f126f02f3 100644 --- a/pkgs/by-name/bu/bumpver/package.nix +++ b/pkgs/by-name/bu/bumpver/package.nix @@ -47,11 +47,11 @@ python3.pkgs.buildPythonApplication rec { "test_parse_default_pattern" ]; - meta = with lib; { + meta = { description = "Bump version numbers in project files"; homepage = "https://pypi.org/project/bumpver/"; - license = licenses.mit; - maintainers = with maintainers; [ kfollesdal ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kfollesdal ]; mainProgram = "bumpver"; }; } diff --git a/pkgs/by-name/bu/bunnyfetch/package.nix b/pkgs/by-name/bu/bunnyfetch/package.nix index f4cc317f6010..3d3f76cffd78 100644 --- a/pkgs/by-name/bu/bunnyfetch/package.nix +++ b/pkgs/by-name/bu/bunnyfetch/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { # No upstream tests doCheck = false; - meta = with lib; { + meta = { description = "Tiny system info fetch utility"; homepage = "https://github.com/Rosettea/bunnyfetch"; - license = licenses.mit; - maintainers = with maintainers; [ devins2518 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ devins2518 ]; + platforms = lib.platforms.linux; mainProgram = "bunnyfetch"; }; } diff --git a/pkgs/by-name/bu/bunyan-rs/package.nix b/pkgs/by-name/bu/bunyan-rs/package.nix index d8565d81475e..fb1789f3f5b6 100644 --- a/pkgs/by-name/bu/bunyan-rs/package.nix +++ b/pkgs/by-name/bu/bunyan-rs/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eLbfrlZWwPv1AFgwFz+IacLZrSl9/KU9zfTstwB8ol0="; - meta = with lib; { + meta = { description = "CLI to pretty print logs in bunyan format (Rust port of the original JavaScript bunyan CLI)"; homepage = "https://github.com/LukeMathWalker/bunyan"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ netcrns ]; + maintainers = with lib.maintainers; [ netcrns ]; mainProgram = "bunyan"; }; } diff --git a/pkgs/by-name/bu/bup/package.nix b/pkgs/by-name/bu/bup/package.nix index c1b7ff256622..8373c3b527d1 100644 --- a/pkgs/by-name/bu/bup/package.nix +++ b/pkgs/by-name/bu/bup/package.nix @@ -81,19 +81,19 @@ stdenv.mkDerivation { --prefix NIX_PYTHONPATH : ${lib.makeSearchPathOutput "lib" python3.sitePackages pythonDeps} ''; - meta = with lib; { + meta = { homepage = "https://github.com/bup/bup"; description = "Efficient file backup system based on the git packfile format"; mainProgram = "bup"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' Highly efficient file backup system based on the git packfile format. Capable of doing *fast* incremental backups of virtual machine images. ''; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ rnhmjoj ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ rnhmjoj ]; # bespoke ./configure does not like cross broken = stdenv.buildPlatform != stdenv.hostPlatform; }; diff --git a/pkgs/by-name/bu/bupc/package.nix b/pkgs/by-name/bu/bupc/package.nix index b193adbeba11..e46d31fabf00 100644 --- a/pkgs/by-name/bu/bupc/package.nix +++ b/pkgs/by-name/bu/bupc/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; - meta = with lib; { + meta = { description = "Compiler for the Berkely Unified Parallel C language"; longDescription = '' Unified Parallel C (UPC) is an extension of the C programming language @@ -39,8 +39,8 @@ stdenv.mkDerivation rec { thread of execution per processor. ''; homepage = "https://upc.lbl.gov/"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/bu/bupstash/package.nix b/pkgs/by-name/bu/bupstash/package.nix index 7b62844dbfe9..c26b9e0e5f19 100644 --- a/pkgs/by-name/bu/bupstash/package.nix +++ b/pkgs/by-name/bu/bupstash/package.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { installManPage doc/man/*.[1-9] ''; - meta = with lib; { + meta = { description = "Easy and efficient encrypted backups"; homepage = "https://bupstash.io"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "bupstash"; }; diff --git a/pkgs/by-name/bu/burp/package.nix b/pkgs/by-name/bu/burp/package.nix index 7a7b45897c9e..b8dd5e994a51 100644 --- a/pkgs/by-name/bu/burp/package.nix +++ b/pkgs/by-name/bu/burp/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { installFlags = [ "localstatedir=/tmp" ]; - meta = with lib; { + meta = { description = "BackUp and Restore Program"; homepage = "https://burp.grke.org"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ arjan-s ]; - platforms = platforms.all; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ arjan-s ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bu/burpsuite/package.nix b/pkgs/by-name/bu/burpsuite/package.nix index 7e3e869b3b5d..050c6ba88aad 100644 --- a/pkgs/by-name/bu/burpsuite/package.nix +++ b/pkgs/by-name/bu/burpsuite/package.nix @@ -105,11 +105,11 @@ buildFHSEnv { changelog = "https://portswigger.net/burp/releases/professional-community-" + replaceStrings [ "." ] [ "-" ] version; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; platforms = jdk.meta.platforms; hydraPlatforms = [ ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bennofs blackzeshi fab diff --git a/pkgs/by-name/bu/butane/package.nix b/pkgs/by-name/bu/butane/package.nix index cc902402437b..d5492178a184 100644 --- a/pkgs/by-name/bu/butane/package.nix +++ b/pkgs/by-name/bu/butane/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { mv $out/bin/{internal,butane} ''; - meta = with lib; { + meta = { description = "Translates human-readable Butane configs into machine-readable Ignition configs"; mainProgram = "butane"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/coreos/butane"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ elijahcaine ruuda ]; diff --git a/pkgs/by-name/bu/buttercup-desktop/package.nix b/pkgs/by-name/bu/buttercup-desktop/package.nix index 31d03a524313..24197d672939 100644 --- a/pkgs/by-name/bu/buttercup-desktop/package.nix +++ b/pkgs/by-name/bu/buttercup-desktop/package.nix @@ -26,11 +26,11 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Cross-Platform Passwords & Secrets Vault"; mainProgram = "buttercup-desktop"; homepage = "https://buttercup.pw"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/bu/buttermanager/package.nix b/pkgs/by-name/bu/buttermanager/package.nix index 179f91e7fd87..6bb46d81f9ab 100644 --- a/pkgs/by-name/bu/buttermanager/package.nix +++ b/pkgs/by-name/bu/buttermanager/package.nix @@ -45,11 +45,11 @@ python3Packages.buildPythonApplication rec { install -Dm444 packaging/buttermanager.svg -t $out/share/icons/hicolor/scalable/apps ''; - meta = with lib; { + meta = { description = "Btrfs tool for managing snapshots, balancing filesystems and upgrading the system safetly"; homepage = "https://github.com/egara/buttermanager"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ t4ccer ]; mainProgram = "buttermanager"; }; } diff --git a/pkgs/by-name/bu/buzztrax/package.nix b/pkgs/by-name/bu/buzztrax/package.nix index a00c53a6050c..bab43b337694 100644 --- a/pkgs/by-name/bu/buzztrax/package.nix +++ b/pkgs/by-name/bu/buzztrax/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation { # Suppress incompatible function pointer error in clang due to libxml2 2.12 const changes + lib.optionalString stdenv.cc.isClang " -Wno-error=incompatible-function-pointer-types"; - meta = with lib; { + meta = { description = "Modular music composer for Linux"; homepage = "https://www.buzztrax.org/"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.bendlas ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.bendlas ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bv/bvi/package.nix b/pkgs/by-name/bv/bvi/package.nix index 998701b916e6..c702b5651210 100644 --- a/pkgs/by-name/bv/bvi/package.nix +++ b/pkgs/by-name/bv/bvi/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Hex editor with vim style keybindings"; homepage = "https://bvi.sourceforge.net/download.html"; - license = licenses.gpl2; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/bw/bwa-mem2/package.nix b/pkgs/by-name/bw/bwa-mem2/package.nix index 97e902dbb562..7ce7e218bbf0 100644 --- a/pkgs/by-name/bw/bwa-mem2/package.nix +++ b/pkgs/by-name/bw/bwa-mem2/package.nix @@ -82,13 +82,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Next version of the bwa-mem algorithm in bwa, a software package for mapping low-divergent sequences against a large reference genome"; mainProgram = "bwa-mem2"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/bwa-mem2/bwa-mem2/"; changelog = "https://github.com/bwa-mem2/bwa-mem2/blob/${finalAttrs.src.rev}/NEWS.md"; - platforms = platforms.x86_64; - maintainers = with maintainers; [ apraga ]; + platforms = lib.platforms.x86_64; + maintainers = with lib.maintainers; [ apraga ]; }; }) diff --git a/pkgs/by-name/bw/bwa/package.nix b/pkgs/by-name/bw/bwa/package.nix index 5ee4d19b3f99..e8a23ecb8682 100644 --- a/pkgs/by-name/bw/bwa/package.nix +++ b/pkgs/by-name/bw/bwa/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Software package for mapping low-divergent sequences against a large reference genome, such as the human genome"; mainProgram = "bwa"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://bio-bwa.sourceforge.net/"; - maintainers = with maintainers; [ luispedro ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ luispedro ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bw/bwm_ng/package.nix b/pkgs/by-name/bw/bwm_ng/package.nix index aec275e41c24..2b80aa5700c9 100644 --- a/pkgs/by-name/bw/bwm_ng/package.nix +++ b/pkgs/by-name/bw/bwm_ng/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { description = "Small and simple console-based live network and disk io bandwidth monitor"; mainProgram = "bwm-ng"; homepage = "http://www.gropp.org/?id=projects&sub=bwm-ng"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; longDescription = '' bwm-ng supports: diff --git a/pkgs/by-name/by/bytecode-viewer/package.nix b/pkgs/by-name/by/bytecode-viewer/package.nix index 13aa8359eb69..7c553a22ef19 100644 --- a/pkgs/by-name/by/bytecode-viewer/package.nix +++ b/pkgs/by-name/by/bytecode-viewer/package.nix @@ -67,19 +67,19 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://bytecodeviewer.com"; description = "Lightweight user-friendly Java/Android Bytecode Viewer, Decompiler & More"; mainProgram = "bytecode-viewer"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ shard7 d3vil0p3r ]; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = with licenses; [ gpl3Only ]; + license = with lib.licenses; [ gpl3Only ]; }; } diff --git a/pkgs/by-name/c-/c-graph/package.nix b/pkgs/by-name/c-/c-graph/package.nix index 4b586eef0e7a..3e60cfe16473 100644 --- a/pkgs/by-name/c-/c-graph/package.nix +++ b/pkgs/by-name/c-/c-graph/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/c-graph --prefix PATH : ${lib.makeBinPath [ gnuplot ]} ''; - meta = with lib; { + meta = { description = "Tool for Learning about Convolution"; homepage = "https://www.gnu.org/software/c-graph/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; mainProgram = "c-graph"; }; } diff --git a/pkgs/by-name/c2/c2ffi/package.nix b/pkgs/by-name/c2/c2ffi/package.nix index 3f45fb6567ec..6389832770d0 100644 --- a/pkgs/by-name/c2/c2ffi/package.nix +++ b/pkgs/by-name/c2/c2ffi/package.nix @@ -51,11 +51,11 @@ llvmPackages.stdenv.mkDerivation { # undefined reference to `typeinfo for clang::ASTConsumer' env.CXXFLAGS = "-fno-rtti"; - meta = with lib; { + meta = { homepage = "https://github.com/rpav/c2ffi"; description = "LLVM based tool for extracting definitions from C, C++, and Objective C header files for use with foreign function call interfaces"; mainProgram = "c2ffi"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/c2/c2fmzq/package.nix b/pkgs/by-name/c2/c2fmzq/package.nix index a2453ddfe127..79f12e450802 100644 --- a/pkgs/by-name/c2/c2fmzq/package.nix +++ b/pkgs/by-name/c2/c2fmzq/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) c2fmzq; }; - meta = with lib; { + meta = { description = "Securely encrypt, store, and share files, including but not limited to pictures and videos"; homepage = "https://github.com/c2FmZQ/c2FmZQ"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "c2FmZQ-server"; - maintainers = with maintainers; [ hmenke ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ hmenke ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/c3/c3c/package.nix b/pkgs/by-name/c3/c3c/package.nix index 43e2ce68aa5d..e3516e13c591 100644 --- a/pkgs/by-name/c3/c3c/package.nix +++ b/pkgs/by-name/c3/c3c/package.nix @@ -74,15 +74,15 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: { nativeInstallCheckInputs = [ versionCheckHook ]; doInstallCheck = true; - meta = with lib; { + meta = { description = "Compiler for the C3 language"; homepage = "https://github.com/c3lang/c3c"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ hucancode anas ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "c3c"; }; }) diff --git a/pkgs/by-name/c3/c3d/package.nix b/pkgs/by-name/c3/c3d/package.nix index ceb1f60c8a6c..4da4e8f3e662 100644 --- a/pkgs/by-name/c3/c3d/package.nix +++ b/pkgs/by-name/c3/c3d/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { cmakeFlags = [ "-DCONVERT3D_USE_ITK_REMOTE_MODULES=OFF" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pyushkevich/c3d"; description = "Medical imaging processing tool"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; broken = stdenv.hostPlatform.isAarch64; # /build/source/itkextras/OneDimensionalInPlaceAccumulateFilter.txx:312:10: fatal error: xmmintrin.h: No such file or directory }; diff --git a/pkgs/by-name/ca/cabextract/package.nix b/pkgs/by-name/ca/cabextract/package.nix index 36cd8ff6bece..2cc6c90876ae 100644 --- a/pkgs/by-name/ca/cabextract/package.nix +++ b/pkgs/by-name/ca/cabextract/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { "ac_cv_func_fnmatch_works=yes" ]; - meta = with lib; { + meta = { homepage = "https://www.cabextract.org.uk/"; description = "Free Software for extracting Microsoft cabinet files"; - platforms = platforms.all; - license = licenses.gpl3; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "cabextract"; }; } diff --git a/pkgs/by-name/ca/cabin/package.nix b/pkgs/by-name/ca/cabin/package.nix index dc4c872944e5..53869193e01a 100644 --- a/pkgs/by-name/ca/cabin/package.nix +++ b/pkgs/by-name/ca/cabin/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Humanist sans with 4 weights and true italics"; longDescription = '' The Cabin font family is a humanist sans with 4 weights and true italics, @@ -39,8 +39,8 @@ stdenvNoCC.mkDerivation rec { shorter center arms. M is splashed. ''; homepage = "http://www.impallari.com/cabin"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ca/cables/package.nix b/pkgs/by-name/ca/cables/package.nix index 5373e2bd7518..b3647718cba1 100644 --- a/pkgs/by-name/ca/cables/package.nix +++ b/pkgs/by-name/ca/cables/package.nix @@ -31,13 +31,13 @@ appimageTools.wrapType2 { install -m 444 -D ${appimageContents}/${name}.png $out/share/icons/hicolor/512x512/apps/cables.png ''; - meta = with lib; { + meta = { description = "Standalone version of cables, a tool for creating beautiful interactive content"; homepage = "https://cables.gl"; changelog = "https://cables.gl/changelog"; - license = licenses.mit; - maintainers = with maintainers; [ rubikcubed ]; - platforms = with platforms; linux ++ darwin ++ windows; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rubikcubed ]; + platforms = with lib.platforms; linux ++ darwin ++ windows; broken = !(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64); mainProgram = "cables"; }; diff --git a/pkgs/by-name/ca/cacert/package.nix b/pkgs/by-name/ca/cacert/package.nix index 281b77a8a922..02beade08c97 100644 --- a/pkgs/by-name/ca/cacert/package.nix +++ b/pkgs/by-name/ca/cacert/package.nix @@ -25,15 +25,15 @@ let srcVersion = "3.115"; version = if nssOverride != null then nssOverride.version else srcVersion; - meta = with lib; { + meta = { homepage = "https://curl.haxx.se/docs/caextract.html"; description = "Bundle of X.509 certificates of public Certificate Authorities (CA)"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fpletz lukegb ]; - license = licenses.mpl20; + license = lib.licenses.mpl20; }; certdata = stdenv.mkDerivation { pname = "nss-cacert-certdata"; diff --git a/pkgs/by-name/ca/cachefilesd/package.nix b/pkgs/by-name/ca/cachefilesd/package.nix index d2f90e05dc40..85cc733f664d 100644 --- a/pkgs/by-name/ca/cachefilesd/package.nix +++ b/pkgs/by-name/ca/cachefilesd/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { "MANDIR=$(out)/share/man" ]; - meta = with lib; { + meta = { description = "Local network file caching management daemon"; mainProgram = "cachefilesd"; homepage = "https://people.redhat.com/dhowells/fscache/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/cadical/package.nix b/pkgs/by-name/ca/cadical/package.nix index 4bc02b48f4c6..8cca4752544c 100644 --- a/pkgs/by-name/ca/cadical/package.nix +++ b/pkgs/by-name/ca/cadical/package.nix @@ -94,11 +94,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simplified Satisfiability Solver"; - maintainers = with maintainers; [ shnarazk ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ shnarazk ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; homepage = "https://fmv.jku.at/cadical/"; }; } diff --git a/pkgs/by-name/ca/cadre/package.nix b/pkgs/by-name/ca/cadre/package.nix index 1694f36647ee..d64c41b3d7d1 100644 --- a/pkgs/by-name/ca/cadre/package.nix +++ b/pkgs/by-name/ca/cadre/package.nix @@ -11,14 +11,14 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "cadre"; - meta = with lib; { + meta = { description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs"; homepage = "https://github.com/nyarly/cadre"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyarly nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ca/cadvisor/package.nix b/pkgs/by-name/ca/cadvisor/package.nix index ba27a158b009..1cad30f2dd69 100644 --- a/pkgs/by-name/ca/cadvisor/package.nix +++ b/pkgs/by-name/ca/cadvisor/package.nix @@ -33,12 +33,12 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) cadvisor; }; - meta = with lib; { + meta = { description = "Analyzes resource usage and performance characteristics of running docker containers"; mainProgram = "cadvisor"; homepage = "https://github.com/google/cadvisor"; - license = licenses.asl20; - maintainers = with maintainers; [ offline ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ca/cadzinho/package.nix b/pkgs/by-name/ca/cadzinho/package.nix index a9280b1ef470..3ffc084f253a 100644 --- a/pkgs/by-name/ca/cadzinho/package.nix +++ b/pkgs/by-name/ca/cadzinho/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Minimalist computer aided design (CAD) software"; homepage = "https://github.com/zecruel/CadZinho"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; mainProgram = "cadzinho"; }; } diff --git a/pkgs/by-name/ca/caeml/package.nix b/pkgs/by-name/ca/caeml/package.nix index 3c53f53fb7ab..6a48edd2dc7b 100644 --- a/pkgs/by-name/ca/caeml/package.nix +++ b/pkgs/by-name/ca/caeml/package.nix @@ -16,7 +16,7 @@ buildGoModule { vendorHash = "sha256-SDJsRLIGlLv/6NUctCrn6z1IDEmum1Wn5I8RFuwcOe8="; - meta = with lib; { + meta = { description = "cat eml files"; mainProgram = "caeml"; longDescription = '' @@ -26,7 +26,7 @@ buildGoModule { kept and these are decoded and of all the parts only text/plain is returned. ''; homepage = "https://github.com/ferdinandyb/caeml"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/by-name/ca/caffeine/package.nix b/pkgs/by-name/ca/caffeine/package.nix index f818dbabbd52..b123b8ba3267 100644 --- a/pkgs/by-name/ca/caffeine/package.nix +++ b/pkgs/by-name/ca/caffeine/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Don't let your Mac fall asleep"; homepage = "https://intelliscapesolutions.com/apps/caffeine"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; platforms = [ "x86_64-darwin" "aarch64-darwin" diff --git a/pkgs/by-name/ca/cairo-lang/package.nix b/pkgs/by-name/ca/cairo-lang/package.nix index 5773ec07e673..c08bf53bd4f8 100644 --- a/pkgs/by-name/ca/cairo-lang/package.nix +++ b/pkgs/by-name/ca/cairo-lang/package.nix @@ -41,10 +41,10 @@ rustPlatform.buildRustPackage rec { cp -r corelib $out/ ''; - meta = with lib; { + meta = { description = "Turing-complete language for creating provable programs for general computation"; homepage = "https://github.com/starkware-libs/cairo"; - license = licenses.asl20; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/by-name/ca/cairo/package.nix b/pkgs/by-name/ca/cairo/package.nix index fe6a3cb29f06..73120b1031aa 100644 --- a/pkgs/by-name/ca/cairo/package.nix +++ b/pkgs/by-name/ca/cairo/package.nix @@ -125,7 +125,7 @@ stdenv.mkDerivation ( passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "2D graphics library with support for multiple output devices"; mainProgram = "cairo-trace"; longDescription = '' @@ -139,7 +139,7 @@ stdenv.mkDerivation ( when available (e.g., through the X Render Extension). ''; homepage = "http://cairographics.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus mpl10 ]; @@ -149,7 +149,7 @@ stdenv.mkDerivation ( "cairo-svg" ] ++ lib.optional gobjectSupport "cairo-gobject"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } ) diff --git a/pkgs/by-name/ca/cakelisp/package.nix b/pkgs/by-name/ca/cakelisp/package.nix index 88cf6b82658a..14670c844564 100644 --- a/pkgs/by-name/ca/cakelisp/package.nix +++ b/pkgs/by-name/ca/cakelisp/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation { url = "https://macoy.me/code/macoy/cakelisp"; }; - meta = with lib; { + meta = { description = "Performance-oriented Lisp-like language"; mainProgram = "cakelisp"; homepage = "https://macoy.me/code/macoy/cakelisp"; - license = licenses.gpl3Plus; - platforms = platforms.darwin ++ platforms.linux; - maintainers = [ maintainers.sbond75 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.darwin ++ lib.platforms.linux; + maintainers = [ lib.maintainers.sbond75 ]; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/ca/caladea/package.nix b/pkgs/by-name/ca/caladea/package.nix index 604ed6ab3dcc..bed6b5d02604 100644 --- a/pkgs/by-name/ca/caladea/package.nix +++ b/pkgs/by-name/ca/caladea/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { # This font doesn't appear to have any official web site but this # one provides some good information and samples. homepage = "http://openfontlibrary.org/en/font/caladea"; @@ -34,9 +34,9 @@ stdenvNoCC.mkDerivation rec { Microsoft Cambria font. Developed by Carolina Giovagnoli and Andrés Torresi at Huerta Tipográfica foundry. ''; - license = licenses.asl20; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; # Reduce the priority of this package. The intent is that if you # also install the `vista-fonts` package, then you probably will diff --git a/pkgs/by-name/ca/calamares-nixos-extensions/package.nix b/pkgs/by-name/ca/calamares-nixos-extensions/package.nix index 5dcf4ace066e..505de0557e57 100644 --- a/pkgs/by-name/ca/calamares-nixos-extensions/package.nix +++ b/pkgs/by-name/ca/calamares-nixos-extensions/package.nix @@ -23,16 +23,16 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Calamares modules for NixOS"; homepage = "https://github.com/NixOS/calamares-nixos-extensions"; - license = with licenses; [ + license = with lib.licenses; [ mit # assets cc-by-40 cc-by-sa-40 ]; - maintainers = with maintainers; [ vlinkz ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ vlinkz ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ca/calamares/package.nix b/pkgs/by-name/ca/calamares/package.nix index 682e0cbec8a2..c1f63380483a 100644 --- a/pkgs/by-name/ca/calamares/package.nix +++ b/pkgs/by-name/ca/calamares/package.nix @@ -117,19 +117,19 @@ stdenv.mkDerivation (finalAttrs: { inherit calamares-nixos; }; - meta = with lib; { + meta = { description = "Distribution-independent installer framework"; homepage = "https://calamares.io/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus bsd2 cc0 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ manveru vlinkz ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "calamares"; }; }) diff --git a/pkgs/by-name/ca/calcure/package.nix b/pkgs/by-name/ca/calcure/package.nix index 1ef4bef9ccfc..c38afa3cb4fe 100644 --- a/pkgs/by-name/ca/calcure/package.nix +++ b/pkgs/by-name/ca/calcure/package.nix @@ -31,12 +31,12 @@ python3.pkgs.buildPythonApplication rec { "calcure" ]; - meta = with lib; { + meta = { description = "Modern TUI calendar and task manager with minimal and customizable UI"; mainProgram = "calcure"; homepage = "https://github.com/anufrievroman/calcure"; changelog = "https://github.com/anufrievroman/calcure/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/ca/calendar-cli/package.nix b/pkgs/by-name/ca/calendar-cli/package.nix index 2bfc9144085b..3bd971ed6fd8 100644 --- a/pkgs/by-name/ca/calendar-cli/package.nix +++ b/pkgs/by-name/ca/calendar-cli/package.nix @@ -64,11 +64,11 @@ python3.pkgs.buildPythonApplication rec { inherit (nixosTests) radicale; }; - meta = with lib; { + meta = { description = "Simple command-line CalDav client"; homepage = "https://github.com/tobixen/calendar-cli"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "calendar-cli"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/ca/caligula/package.nix b/pkgs/by-name/ca/caligula/package.nix index 4c4b320a8181..7084041552b8 100644 --- a/pkgs/by-name/ca/caligula/package.nix +++ b/pkgs/by-name/ca/caligula/package.nix @@ -23,15 +23,15 @@ rustPlatform.buildRustPackage rec { RUSTFLAGS = "--cfg tracing_unstable"; - meta = with lib; { + meta = { description = "User-friendly, lightweight TUI for disk imaging"; homepage = "https://github.com/ifd3f/caligula/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ifd3f sodiboo ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "caligula"; }; } diff --git a/pkgs/by-name/ca/callaudiod/package.nix b/pkgs/by-name/ca/callaudiod/package.nix index 6ca7f2dd72fa..1468fb4998aa 100644 --- a/pkgs/by-name/ca/callaudiod/package.nix +++ b/pkgs/by-name/ca/callaudiod/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { glib ]; - meta = with lib; { + meta = { description = "Daemon for dealing with audio routing during phone calls"; homepage = "https://gitlab.com/mobian1/callaudiod"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pacman99 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pacman99 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ca/calls/package.nix b/pkgs/by-name/ca/calls/package.nix index 5c21a92baee2..85350e4e8569 100644 --- a/pkgs/by-name/ca/calls/package.nix +++ b/pkgs/by-name/ca/calls/package.nix @@ -123,13 +123,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = with lib; { + meta = { description = "Phone dialer and call handler"; longDescription = "GNOME Calls is a phone dialer and call handler. Setting NixOS option `programs.calls.enable = true` is recommended."; homepage = "https://gitlab.gnome.org/GNOME/calls"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ craigem ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ craigem ]; + platforms = lib.platforms.linux; mainProgram = "gnome-calls"; }; }) diff --git a/pkgs/by-name/ca/camingo-code/package.nix b/pkgs/by-name/ca/camingo-code/package.nix index 6fceebb1a6f9..8218c79088d7 100644 --- a/pkgs/by-name/ca/camingo-code/package.nix +++ b/pkgs/by-name/ca/camingo-code/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.myfonts.com/fonts/jan-fromm/camingo-code/"; description = "Monospaced typeface designed for source-code editors"; - platforms = platforms.all; - license = licenses.cc-by-nd-30; + platforms = lib.platforms.all; + license = lib.licenses.cc-by-nd-30; }; } diff --git a/pkgs/by-name/ca/camunda-modeler/package.nix b/pkgs/by-name/ca/camunda-modeler/package.nix index 9f203a094aeb..35836de9ef3f 100644 --- a/pkgs/by-name/ca/camunda-modeler/package.nix +++ b/pkgs/by-name/ca/camunda-modeler/package.nix @@ -73,11 +73,11 @@ stdenvNoCC.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/camunda/camunda-modeler"; description = "Integrated modeling solution for BPMN, DMN and Forms based on bpmn.io"; - teams = [ teams.wdz ]; - license = licenses.mit; + teams = [ lib.teams.wdz ]; + license = lib.licenses.mit; inherit (electron.meta) platforms; mainProgram = "camunda-modeler"; }; diff --git a/pkgs/by-name/ca/can-utils/package.nix b/pkgs/by-name/ca/can-utils/package.nix index 8d377fdb3997..0baea4fe36e9 100644 --- a/pkgs/by-name/ca/can-utils/package.nix +++ b/pkgs/by-name/ca/can-utils/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "CAN userspace utilities and tools (for use with Linux SocketCAN)"; homepage = "https://github.com/linux-can/can-utils"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bjornfor Luflosi ]; diff --git a/pkgs/by-name/ca/canaille/package.nix b/pkgs/by-name/ca/canaille/package.nix index 9b1d6043b80b..87fc242bed68 100644 --- a/pkgs/by-name/ca/canaille/package.nix +++ b/pkgs/by-name/ca/canaille/package.nix @@ -141,13 +141,13 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Lightweight Identity and Authorization Management"; homepage = "https://canaille.readthedocs.io/en/latest/index.html"; changelog = "https://gitlab.com/yaal/canaille/-/blob/${src.rev}/CHANGES.rst"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ erictapen ]; mainProgram = "canaille"; }; diff --git a/pkgs/by-name/ca/candy-icons/package.nix b/pkgs/by-name/ca/candy-icons/package.nix index 6600cda39192..164d18b7cedf 100644 --- a/pkgs/by-name/ca/candy-icons/package.nix +++ b/pkgs/by-name/ca/candy-icons/package.nix @@ -33,12 +33,12 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/EliverLara/candy-icons"; description = "Icon theme colored with sweet gradients"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ clr-cera arunoruto ]; diff --git a/pkgs/by-name/ca/canon-capt/package.nix b/pkgs/by-name/ca/canon-capt/package.nix index e2f77fee9c07..389e7c898eda 100644 --- a/pkgs/by-name/ca/canon-capt/package.nix +++ b/pkgs/by-name/ca/canon-capt/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Community-driven driver for Canon CAPT-based printers"; homepage = "https://github.com/mounaiban/captdriver"; - license = licenses.gpl3; - maintainers = with maintainers; [ cryptoluks ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ cryptoluks ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ca/canon-cups-ufr2/package.nix b/pkgs/by-name/ca/canon-cups-ufr2/package.nix index f556ff2b7346..5db657dbe64a 100644 --- a/pkgs/by-name/ca/canon-cups-ufr2/package.nix +++ b/pkgs/by-name/ca/canon-cups-ufr2/package.nix @@ -207,11 +207,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CUPS Linux drivers for Canon printers"; homepage = "http://www.canon.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ lluchs ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ lluchs ]; }; } diff --git a/pkgs/by-name/ca/canta-theme/package.nix b/pkgs/by-name/ca/canta-theme/package.nix index c664a2177125..29f7355deeaa 100644 --- a/pkgs/by-name/ca/canta-theme/package.nix +++ b/pkgs/by-name/ca/canta-theme/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { gtk-update-icon-cache $out/share/icons/Canta ''; - meta = with lib; { + meta = { description = "Flat Design theme for GTK based desktop environments"; homepage = "https://github.com/vinceliuice/Canta-theme"; - license = licenses.gpl2Only; - platforms = platforms.linux; # numix-icon-theme-circle unavailable in darwin - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; # numix-icon-theme-circle unavailable in darwin + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ca/canto-daemon/package.nix b/pkgs/by-name/ca/canto-daemon/package.nix index d02fd492273f..18e56682963d 100644 --- a/pkgs/by-name/ca/canto-daemon/package.nix +++ b/pkgs/by-name/ca/canto-daemon/package.nix @@ -24,7 +24,7 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "canto_next" ]; - meta = with lib; { + meta = { description = "Daemon for the canto Atom/RSS feed reader"; longDescription = '' Canto is an Atom/RSS feed reader for the console that is meant to be @@ -35,8 +35,8 @@ python3Packages.buildPythonApplication rec { and extensibility using the excellent Python programming language. ''; homepage = "https://codezen.org/canto-ng/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ devhell ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ devhell ]; }; } diff --git a/pkgs/by-name/ca/cantoolz/package.nix b/pkgs/by-name/ca/cantoolz/package.nix index 7f911f9001cd..74ef9c75fbb5 100644 --- a/pkgs/by-name/ca/cantoolz/package.nix +++ b/pkgs/by-name/ca/cantoolz/package.nix @@ -56,7 +56,7 @@ python3.pkgs.buildPythonApplication rec { "cantoolz" ]; - meta = with lib; { + meta = { description = "Black-box CAN network analysis framework"; mainProgram = "cantoolz"; longDescription = '' @@ -70,7 +70,7 @@ python3.pkgs.buildPythonApplication rec { implemented with a new module. ''; homepage = "https://github.com/CANToolz/CANToolz"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ca/capitaine-cursors-themed/package.nix b/pkgs/by-name/ca/capitaine-cursors-themed/package.nix index d95779fec79f..5b97e2fabbca 100644 --- a/pkgs/by-name/ca/capitaine-cursors-themed/package.nix +++ b/pkgs/by-name/ca/capitaine-cursors-themed/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fork of the capitaine cursor theme, with some additional variants (Gruvbox, Nord, Palenight) and support for HiDPI"; homepage = "https://github.com/sainnhe/capitaine-cursors"; - license = licenses.lgpl3Only; - platforms = platforms.unix; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ca/capitaine-cursors/package.nix b/pkgs/by-name/ca/capitaine-cursors/package.nix index 7488055e46f1..b2d7fb323971 100644 --- a/pkgs/by-name/ca/capitaine-cursors/package.nix +++ b/pkgs/by-name/ca/capitaine-cursors/package.nix @@ -55,11 +55,11 @@ stdenvNoCC.mkDerivation rec { cp -pr dist/light $out/share/icons/capitaine-cursors-white ''; - meta = with lib; { + meta = { description = "X-cursor theme inspired by macOS and based on KDE Breeze"; homepage = "https://github.com/keeferrourke/capitaine-cursors"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/by-name/ca/capnproto-java/package.nix b/pkgs/by-name/ca/capnproto-java/package.nix index 5540b1eeff75..e8833fffe065 100644 --- a/pkgs/by-name/ca/capnproto-java/package.nix +++ b/pkgs/by-name/ca/capnproto-java/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Cap'n Proto codegen plugin for Java"; mainProgram = "capnpc-java"; longDescription = "Only includes compiler plugin, the Java runtime/library that the generated code will link to must be built separately with Maven."; homepage = "https://dwrensha.github.io/capnproto-java/index.html"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ solson ]; }; diff --git a/pkgs/by-name/ca/capnproto-rust/package.nix b/pkgs/by-name/ca/capnproto-rust/package.nix index a8204ea3f101..78faba168e37 100644 --- a/pkgs/by-name/ca/capnproto-rust/package.nix +++ b/pkgs/by-name/ca/capnproto-rust/package.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Cap'n Proto codegen plugin for Rust"; homepage = "https://github.com/capnproto/capnproto-rust"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mikroskeem solson ]; diff --git a/pkgs/by-name/ca/capnproto/package.nix b/pkgs/by-name/ca/capnproto/package.nix index 5dce43d12f35..c308fb66ef7b 100644 --- a/pkgs/by-name/ca/capnproto/package.nix +++ b/pkgs/by-name/ca/capnproto/package.nix @@ -87,7 +87,7 @@ clangStdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://capnproto.org/"; description = "Cap'n Proto cerealization protocol"; longDescription = '' @@ -95,8 +95,8 @@ clangStdenv.mkDerivation rec { capability-based RPC system. Think JSON, except binary. Or think Protocol Buffers, except faster. ''; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; teams = [ lib.teams.lix ]; }; } diff --git a/pkgs/by-name/ca/caprice32/package.nix b/pkgs/by-name/ca/caprice32/package.nix index 0b173cbe4af3..502d2e27bd38 100644 --- a/pkgs/by-name/ca/caprice32/package.nix +++ b/pkgs/by-name/ca/caprice32/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { install -Dm644 $out/share/caprice32/resources/freedesktop/caprice32.menu -t $out/etc/xdg/menus/applications-merged/ ''; - meta = with lib; { + meta = { description = "Complete emulation of CPC464, CPC664 and CPC6128"; homepage = "https://github.com/ColinPitrat/caprice32"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "cap32"; }; } diff --git a/pkgs/by-name/ca/captive-browser/package.nix b/pkgs/by-name/ca/captive-browser/package.nix index 596d3d749c85..7f6f740261e7 100644 --- a/pkgs/by-name/ca/captive-browser/package.nix +++ b/pkgs/by-name/ca/captive-browser/package.nix @@ -32,10 +32,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Dedicated Chrome instance to log into captive portals without messing with DNS settings"; homepage = "https://blog.filippo.io/captive-browser"; - license = licenses.mit; - maintainers = with maintainers; [ ma27 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ma27 ]; }; } diff --git a/pkgs/by-name/ca/capture/package.nix b/pkgs/by-name/ca/capture/package.nix index 30632cd00f74..6887436ceda7 100644 --- a/pkgs/by-name/ca/capture/package.nix +++ b/pkgs/by-name/ca/capture/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { }' ''; - meta = with lib; { + meta = { description = "No bullshit screen capture tool"; homepage = "https://github.com/buhman/capture"; - maintainers = [ maintainers.ar1a ]; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.ar1a ]; + license = lib.licenses.gpl3Plus; mainProgram = "capture"; }; } diff --git a/pkgs/by-name/ca/carapace/package.nix b/pkgs/by-name/ca/carapace/package.nix index 0c1cb3782c61..f258f37fe9d3 100644 --- a/pkgs/by-name/ca/carapace/package.nix +++ b/pkgs/by-name/ca/carapace/package.nix @@ -37,11 +37,11 @@ buildGoModule (finalAttrs: { passthru.updateScript = nix-update-script { }; passthru.tests.version = testers.testVersion { package = carapace; }; - meta = with lib; { + meta = { description = "Multi-shell multi-command argument completer"; homepage = "https://carapace.sh/"; - maintainers = with maintainers; [ mimame ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ mimame ]; + license = lib.licenses.mit; mainProgram = "carapace"; }; }) diff --git a/pkgs/by-name/ca/carddav-util/package.nix b/pkgs/by-name/ca/carddav-util/package.nix index 482e564d2022..ed2c0acae466 100644 --- a/pkgs/by-name/ca/carddav-util/package.nix +++ b/pkgs/by-name/ca/carddav-util/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { --prefix PATH : "$prefix/bin:$PATH" ''; - meta = with lib; { + meta = { homepage = "https://github.com/ljanyst/carddav-util"; description = "CardDAV import/export utility"; mainProgram = "carddav-util.py"; - platforms = platforms.unix; - license = licenses.isc; + platforms = lib.platforms.unix; + license = lib.licenses.isc; }; } diff --git a/pkgs/by-name/ca/cardo/package.nix b/pkgs/by-name/ca/cardo/package.nix index d0ad44b5bb8d..5211dde600cf 100644 --- a/pkgs/by-name/ca/cardo/package.nix +++ b/pkgs/by-name/ca/cardo/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Large Unicode font specifically designed for the needs of classicists, Biblical scholars, medievalists, and linguists"; longDescription = '' Cardo is a large Unicode font specifically designed for the needs of @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation { a variety of punctuation and space characters. ''; homepage = "http://scholarsfonts.net/cardofnt.html"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = with lib.maintainers; [ kmein ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ca/cargo-all-features/package.nix b/pkgs/by-name/ca/cargo-all-features/package.nix index 9b5ba8852219..58abcbd4ae39 100644 --- a/pkgs/by-name/ca/cargo-all-features/package.nix +++ b/pkgs/by-name/ca/cargo-all-features/package.nix @@ -20,14 +20,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-EKDeBib52Os1X3sgM9CtrNkl20l1Wn/cMBIBM1/KY5A="; - meta = with lib; { + meta = { description = "Cargo subcommand to build and test all feature flag combinations"; homepage = "https://github.com/frewsxcv/cargo-all-features"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-apk/package.nix b/pkgs/by-name/ca/cargo-apk/package.nix index b497382e9a11..33638f035fc5 100644 --- a/pkgs/by-name/ca/cargo-apk/package.nix +++ b/pkgs/by-name/ca/cargo-apk/package.nix @@ -15,14 +15,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8qjj5rcaqXBIte8+r0llj33Saat85SqNljGRaS1E3q0="; - meta = with lib; { + meta = { description = "Tool for creating Android packages"; mainProgram = "cargo-apk"; homepage = "https://github.com/rust-windowing/android-ndk-rs"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ nickcao ]; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/ca/cargo-autoinherit/package.nix b/pkgs/by-name/ca/cargo-autoinherit/package.nix index a191477056bb..df1403a5ab1c 100644 --- a/pkgs/by-name/ca/cargo-autoinherit/package.nix +++ b/pkgs/by-name/ca/cargo-autoinherit/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-TUW0DdTVNrFpRaTGWM9XD0kW1CjmSAfWrbZxFGn1jJw="; - meta = with lib; { + meta = { description = "Automatically DRY up your Rust dependencies"; homepage = "https://github.com/mainmatter/cargo-autoinherit"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # OR mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "cargo-autoinherit"; }; } diff --git a/pkgs/by-name/ca/cargo-bazel/package.nix b/pkgs/by-name/ca/cargo-bazel/package.nix index 3403e1a5cd62..1fbec233cf70 100644 --- a/pkgs/by-name/ca/cargo-bazel/package.nix +++ b/pkgs/by-name/ca/cargo-bazel/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { # `test_data` is explicitly excluded from the package published to crates.io, so tests cannot be run doCheck = false; - meta = with lib; { + meta = { description = "Part of the `crate_universe` collection of tools which use Cargo to generate build targets for Bazel"; mainProgram = "cargo-bazel"; homepage = "https://github.com/bazelbuild/rules_rust"; - license = licenses.asl20; - maintainers = with maintainers; [ rickvanprim ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rickvanprim ]; }; } diff --git a/pkgs/by-name/ca/cargo-bisect-rustc/package.nix b/pkgs/by-name/ca/cargo-bisect-rustc/package.nix index a38614fb9e55..6138db509936 100644 --- a/pkgs/by-name/ca/cargo-bisect-rustc/package.nix +++ b/pkgs/by-name/ca/cargo-bisect-rustc/package.nix @@ -50,11 +50,11 @@ rustPlatform.buildRustPackage rec { "--skip test_github" # requires internet ]; - meta = with lib; { + meta = { description = "Bisects rustc, either nightlies or CI artifacts"; mainProgram = "cargo-bisect-rustc"; homepage = "https://github.com/rust-lang/cargo-bisect-rustc"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/ca/cargo-bitbake/package.nix b/pkgs/by-name/ca/cargo-bitbake/package.nix index 7db2d6326592..c0fd20867f8c 100644 --- a/pkgs/by-name/ca/cargo-bitbake/package.nix +++ b/pkgs/by-name/ca/cargo-bitbake/package.nix @@ -22,15 +22,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-drupV59sBuR6AZ7jVO2EJn62I6XX5vv3QR+Mu8cLklk="; - meta = with lib; { + meta = { description = "Cargo extension that can generate BitBake recipes utilizing the classes from meta-rust"; mainProgram = "cargo-bitbake"; homepage = "https://github.com/meta-rust/cargo-bitbake"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ rvarago ]; + maintainers = with lib.maintainers; [ rvarago ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ca/cargo-bloat/package.nix b/pkgs/by-name/ca/cargo-bloat/package.nix index d2b781cffdc8..801540ca11bf 100644 --- a/pkgs/by-name/ca/cargo-bloat/package.nix +++ b/pkgs/by-name/ca/cargo-bloat/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8Omw8IsmoFYPBB6q1EAAbcBhTjBWfCChV2MhX9ImY8Y="; - meta = with lib; { + meta = { description = "Tool and Cargo subcommand that helps you find out what takes most of the space in your executable"; homepage = "https://github.com/RazrFalcon/cargo-bloat"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ xrelkd matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-bolero/package.nix b/pkgs/by-name/ca/cargo-bolero/package.nix index 987017fdde30..15a37cd59700 100644 --- a/pkgs/by-name/ca/cargo-bolero/package.nix +++ b/pkgs/by-name/ca/cargo-bolero/package.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Fuzzing and property testing front-end framework for Rust"; mainProgram = "cargo-bolero"; homepage = "https://github.com/camshaft/bolero"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ekleog ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ekleog ]; }; } diff --git a/pkgs/by-name/ca/cargo-bootimage/package.nix b/pkgs/by-name/ca/cargo-bootimage/package.nix index 75616ea2abcf..800a067f9a8b 100644 --- a/pkgs/by-name/ca/cargo-bootimage/package.nix +++ b/pkgs/by-name/ca/cargo-bootimage/package.nix @@ -17,13 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CkFJHW7yrIJi/KMGJgyhnLTMkrxnDwO3X4M1aml9cuM="; - meta = with lib; { + meta = { description = "Creates a bootable disk image from a Rust OS kernel"; homepage = "https://github.com/rust-osdev/bootimage"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ dbeckwith ]; + maintainers = with lib.maintainers; [ dbeckwith ]; }; } diff --git a/pkgs/by-name/ca/cargo-bump/package.nix b/pkgs/by-name/ca/cargo-bump/package.nix index dbba28d4c8dc..e1f8e022ae3f 100644 --- a/pkgs/by-name/ca/cargo-bump/package.nix +++ b/pkgs/by-name/ca/cargo-bump/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { pkg-config ]; - meta = with lib; { + meta = { description = "Increments the version number of the current project"; mainProgram = "cargo-bump"; homepage = "https://github.com/wraithan/cargo-bump"; - license = with licenses; [ isc ]; - maintainers = with maintainers; [ cafkafk ]; + license = with lib.licenses; [ isc ]; + maintainers = with lib.maintainers; [ cafkafk ]; }; } diff --git a/pkgs/by-name/ca/cargo-bundle-licenses/package.nix b/pkgs/by-name/ca/cargo-bundle-licenses/package.nix index 1931d584ce77..8beb82c7eb52 100644 --- a/pkgs/by-name/ca/cargo-bundle-licenses/package.nix +++ b/pkgs/by-name/ca/cargo-bundle-licenses/package.nix @@ -17,16 +17,16 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-HHBFT4u0NPjhKJa3KNg8/AgkgNoFUkMWmioVaXYlD2M="; - meta = with lib; { + meta = { description = "Generate a THIRDPARTY file with all licenses in a cargo project"; mainProgram = "cargo-bundle-licenses"; homepage = "https://github.com/sstadick/cargo-bundle-licenses"; changelog = "https://github.com/sstadick/cargo-bundle-licenses/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-cache/package.nix b/pkgs/by-name/ca/cargo-cache/package.nix index 43f827d1ad55..2fe9f44abf86 100644 --- a/pkgs/by-name/ca/cargo-cache/package.nix +++ b/pkgs/by-name/ca/cargo-cache/package.nix @@ -25,15 +25,15 @@ rustPlatform.buildRustPackage rec { checkFlags = [ "offline_tests" ]; - meta = with lib; { + meta = { description = "Manage cargo cache (\${CARGO_HOME}, ~/.cargo/), print sizes of dirs and remove dirs selectively"; mainProgram = "cargo-cache"; homepage = "https://github.com/matthiaskrgr/cargo-cache"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-careful/package.nix b/pkgs/by-name/ca/cargo-careful/package.nix index 319947b3df3d..1260f841f435 100644 --- a/pkgs/by-name/ca/cargo-careful/package.nix +++ b/pkgs/by-name/ca/cargo-careful/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-mjGUSwqyqgnGwKjznj8KedIzOJi4GDldJEL0fzpuvec="; - meta = with lib; { + meta = { description = "Tool to execute Rust code carefully, with extra checking along the way"; mainProgram = "cargo-careful"; homepage = "https://github.com/RalfJung/cargo-careful"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-chef/package.nix b/pkgs/by-name/ca/cargo-chef/package.nix index 74f1c138ec42..faf19cab50aa 100644 --- a/pkgs/by-name/ca/cargo-chef/package.nix +++ b/pkgs/by-name/ca/cargo-chef/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-diox0Vafn8881tW4Z5Udm6U2lNQKe9m/H5bRTRN3aGs="; - meta = with lib; { + meta = { description = "Cargo-subcommand to speed up Rust Docker builds using Docker layer caching"; mainProgram = "cargo-chef"; homepage = "https://github.com/LukeMathWalker/cargo-chef"; - license = licenses.mit; - maintainers = with maintainers; [ kkharji ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kkharji ]; }; } diff --git a/pkgs/by-name/ca/cargo-codspeed/package.nix b/pkgs/by-name/ca/cargo-codspeed/package.nix index 8e4fb5c2138e..93c12ae25c80 100644 --- a/pkgs/by-name/ca/cargo-codspeed/package.nix +++ b/pkgs/by-name/ca/cargo-codspeed/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { LIBGIT2_NO_VENDOR = 1; }; - meta = with lib; { + meta = { description = "Cargo extension to build & run your codspeed benchmarks"; homepage = "https://github.com/CodSpeedHQ/codspeed-rust"; changelog = "https://github.com/CodSpeedHQ/codspeed-rust/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; diff --git a/pkgs/by-name/ca/cargo-crev/package.nix b/pkgs/by-name/ca/cargo-crev/package.nix index 8a2a70979b09..60143118bd9c 100644 --- a/pkgs/by-name/ca/cargo-crev/package.nix +++ b/pkgs/by-name/ca/cargo-crev/package.nix @@ -45,16 +45,16 @@ rustPlatform.buildRustPackage rec { nativeCheckInputs = [ gitMinimal ]; - meta = with lib; { + meta = { description = "Cryptographically verifiable code review system for the cargo (Rust) package manager"; mainProgram = "cargo-crev"; homepage = "https://github.com/crev-dev/cargo-crev"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit mpl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ b4dm4n matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-criterion/package.nix b/pkgs/by-name/ca/cargo-criterion/package.nix index aa8dbf3cbd66..9234161f518f 100644 --- a/pkgs/by-name/ca/cargo-criterion/package.nix +++ b/pkgs/by-name/ca/cargo-criterion/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-D0Exfm6NRRedncDAgC3MgfagzsM0Dsc7X0i9arYYOgc="; - meta = with lib; { + meta = { description = "Cargo extension for running Criterion.rs benchmarks"; mainProgram = "cargo-criterion"; homepage = "https://github.com/bheisler/cargo-criterion"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ humancalico matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-cyclonedx/package.nix b/pkgs/by-name/ca/cargo-cyclonedx/package.nix index 34f8ff041331..c265434b9825 100644 --- a/pkgs/by-name/ca/cargo-cyclonedx/package.nix +++ b/pkgs/by-name/ca/cargo-cyclonedx/package.nix @@ -36,7 +36,7 @@ rustPlatform.buildRustPackage rec { curl ]; - meta = with lib; { + meta = { description = "Creates CycloneDX Software Bill of Materials (SBOM) from Rust (Cargo) projects"; mainProgram = "cargo-cyclonedx"; longDescription = '' @@ -46,7 +46,7 @@ rustPlatform.buildRustPackage rec { easily created, human and machine readable, and simple to parse. ''; homepage = "https://github.com/CycloneDX/cyclonedx-rust-cargo"; - license = licenses.asl20; - maintainers = with maintainers; [ nikstur ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nikstur ]; }; } diff --git a/pkgs/by-name/ca/cargo-deb/package.nix b/pkgs/by-name/ca/cargo-deb/package.nix index ae3f8f99a351..ecbeeac8d405 100644 --- a/pkgs/by-name/ca/cargo-deb/package.nix +++ b/pkgs/by-name/ca/cargo-deb/package.nix @@ -47,12 +47,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ dpkg ]} ''; - meta = with lib; { + meta = { description = "Cargo subcommand that generates Debian packages from information in Cargo.toml"; mainProgram = "cargo-deb"; homepage = "https://github.com/kornelski/cargo-deb"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-depgraph/package.nix b/pkgs/by-name/ca/cargo-depgraph/package.nix index 8eaeac653937..5117c430ae81 100644 --- a/pkgs/by-name/ca/cargo-depgraph/package.nix +++ b/pkgs/by-name/ca/cargo-depgraph/package.nix @@ -17,13 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-5GFYp1ZEkmag2GfzHRz3QDYaURzbDKY9yTSznkxddnE="; - meta = with lib; { + meta = { description = "Create dependency graphs for cargo projects using `cargo metadata` and graphviz"; mainProgram = "cargo-depgraph"; homepage = "https://sr.ht/~jplatte/cargo-depgraph"; changelog = "https://git.sr.ht/~jplatte/cargo-depgraph/tree/${src.rev}/item/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-dephell/package.nix b/pkgs/by-name/ca/cargo-dephell/package.nix index 3ef32320070d..2a300e79fae9 100644 --- a/pkgs/by-name/ca/cargo-dephell/package.nix +++ b/pkgs/by-name/ca/cargo-dephell/package.nix @@ -46,15 +46,15 @@ rustPlatform.buildRustPackage rec { LIBGIT2_NO_VENDOR = 1; }; - meta = with lib; { + meta = { description = "Tool to analyze the third-party dependencies imported by a rust crate or rust workspace"; mainProgram = "cargo-dephell"; homepage = "https://github.com/mimoo/cargo-dephell"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-dist/package.nix b/pkgs/by-name/ca/cargo-dist/package.nix index 61bd4e6f3511..b6a54c858b81 100644 --- a/pkgs/by-name/ca/cargo-dist/package.nix +++ b/pkgs/by-name/ca/cargo-dist/package.nix @@ -50,16 +50,16 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Tool for building final distributable artifacts and uploading them to an archive"; mainProgram = "dist"; homepage = "https://github.com/axodotdev/cargo-dist"; changelog = "https://github.com/axodotdev/cargo-dist/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer mistydemeo ]; diff --git a/pkgs/by-name/ca/cargo-duplicates/package.nix b/pkgs/by-name/ca/cargo-duplicates/package.nix index 2a67b7cc8d5e..7241e24c8a3c 100644 --- a/pkgs/by-name/ca/cargo-duplicates/package.nix +++ b/pkgs/by-name/ca/cargo-duplicates/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { zlib ]; - meta = with lib; { + meta = { description = "Cargo subcommand for displaying when different versions of a same dependency are pulled in"; mainProgram = "cargo-duplicates"; homepage = "https://github.com/Keruspe/cargo-duplicates"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-espmonitor/package.nix b/pkgs/by-name/ca/cargo-espmonitor/package.nix index 3834b7a06d70..a9e5fdd4cdc3 100644 --- a/pkgs/by-name/ca/cargo-espmonitor/package.nix +++ b/pkgs/by-name/ca/cargo-espmonitor/package.nix @@ -16,10 +16,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Fb/xJLhmInYOanJC6XGsxxsCJNCLvHDe04+wtvXMecE="; - meta = with lib; { + meta = { description = "Cargo tool for monitoring ESP32/ESP8266 execution"; homepage = "https://github.com/esp-rs/espmonitor"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ xanderio ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ xanderio ]; }; } diff --git a/pkgs/by-name/ca/cargo-feature/package.nix b/pkgs/by-name/ca/cargo-feature/package.nix index 0daa76cb1a87..abf16324c42c 100644 --- a/pkgs/by-name/ca/cargo-feature/package.nix +++ b/pkgs/by-name/ca/cargo-feature/package.nix @@ -24,13 +24,13 @@ rustPlatform.buildRustPackage rec { "--skip=list_optional_deps_as_feature" ]; - meta = with lib; { + meta = { description = "Cargo plugin to manage dependency features"; mainProgram = "cargo-feature"; homepage = "https://github.com/Riey/cargo-feature"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ riey matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-flamegraph/package.nix b/pkgs/by-name/ca/cargo-flamegraph/package.nix index 0a2d36bf9bdc..19cf8c44c129 100644 --- a/pkgs/by-name/ca/cargo-flamegraph/package.nix +++ b/pkgs/by-name/ca/cargo-flamegraph/package.nix @@ -32,14 +32,14 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3"; homepage = "https://github.com/flamegraph-rs/flamegraph"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ killercup matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-fund/package.nix b/pkgs/by-name/ca/cargo-fund/package.nix index c963048e21eb..d9f23c937b28 100644 --- a/pkgs/by-name/ca/cargo-fund/package.nix +++ b/pkgs/by-name/ca/cargo-fund/package.nix @@ -35,14 +35,14 @@ rustPlatform.buildRustPackage rec { curl ]; - meta = with lib; { + meta = { description = "Discover funding links for your project's dependencies"; mainProgram = "cargo-fund"; homepage = "https://github.com/acfoltzer/cargo-fund"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ johntitor ]; + maintainers = with lib.maintainers; [ johntitor ]; }; } diff --git a/pkgs/by-name/ca/cargo-fuzz/package.nix b/pkgs/by-name/ca/cargo-fuzz/package.nix index 367d2319b7c4..5433ccb7e15f 100644 --- a/pkgs/by-name/ca/cargo-fuzz/package.nix +++ b/pkgs/by-name/ca/cargo-fuzz/package.nix @@ -19,15 +19,15 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Command line helpers for fuzzing"; mainProgram = "cargo-fuzz"; homepage = "https://github.com/rust-fuzz/cargo-fuzz"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-guppy/package.nix b/pkgs/by-name/ca/cargo-guppy/package.nix index b4670705aefe..32de7e285a4d 100644 --- a/pkgs/by-name/ca/cargo-guppy/package.nix +++ b/pkgs/by-name/ca/cargo-guppy/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage { "cargo-guppy" ]; - meta = with lib; { + meta = { description = "Command-line frontend for guppy"; mainProgram = "cargo-guppy"; homepage = "https://github.com/guppy-rs/guppy/tree/main/cargo-guppy"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/ca/cargo-hf2/package.nix b/pkgs/by-name/ca/cargo-hf2/package.nix index d5fb5f493c0b..d588c3ee32d8 100644 --- a/pkgs/by-name/ca/cargo-hf2/package.nix +++ b/pkgs/by-name/ca/cargo-hf2/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ libusb1 ]; - meta = with lib; { + meta = { description = "Cargo Subcommand for Microsoft HID Flashing Library for UF2 Bootloaders"; mainProgram = "cargo-hf2"; homepage = "https://lib.rs/crates/cargo-hf2"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ astrobeastie ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ astrobeastie ]; }; } diff --git a/pkgs/by-name/ca/cargo-i18n/package.nix b/pkgs/by-name/ca/cargo-i18n/package.nix index eb083c628491..eeaf52dbe1e4 100644 --- a/pkgs/by-name/ca/cargo-i18n/package.nix +++ b/pkgs/by-name/ca/cargo-i18n/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { cargoTestFlags = [ "--lib" ]; - meta = with lib; { + meta = { description = "Rust Cargo sub-command and libraries to extract and build localization resources to embed in your application/library"; homepage = "https://github.com/kellpossible/cargo-i18n"; - license = licenses.mit; - maintainers = with maintainers; [ xrelkd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xrelkd ]; mainProgram = "cargo-i18n"; }; } diff --git a/pkgs/by-name/ca/cargo-info/package.nix b/pkgs/by-name/ca/cargo-info/package.nix index 8b3e3fff7c49..04b2aa4c90de 100644 --- a/pkgs/by-name/ca/cargo-info/package.nix +++ b/pkgs/by-name/ca/cargo-info/package.nix @@ -27,16 +27,16 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Cargo subcommand to show crates info from crates.io"; mainProgram = "cargo-info"; homepage = "https://gitlab.com/imp/cargo-info"; changelog = "https://gitlab.com/imp/cargo-info/-/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-license/package.nix b/pkgs/by-name/ca/cargo-license/package.nix index 107adda8b752..71d1ffee7ee2 100644 --- a/pkgs/by-name/ca/cargo-license/package.nix +++ b/pkgs/by-name/ca/cargo-license/package.nix @@ -15,12 +15,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-VQ8320yxMo102UZ9iO9n7ujq7d6wUuqOnQB02hxHZas="; - meta = with lib; { + meta = { description = "Cargo subcommand to see license of dependencies"; mainProgram = "cargo-license"; homepage = "https://github.com/onur/cargo-license"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ basvandijk matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-limit/package.nix b/pkgs/by-name/ca/cargo-limit/package.nix index 11b64c020215..9e9c45a5958a 100644 --- a/pkgs/by-name/ca/cargo-limit/package.nix +++ b/pkgs/by-name/ca/cargo-limit/package.nix @@ -22,14 +22,14 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Cargo subcommand \"limit\": reduces the noise of compiler messages"; homepage = "https://github.com/alopatindev/cargo-limit"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ otavio matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-llvm-lines/package.nix b/pkgs/by-name/ca/cargo-llvm-lines/package.nix index 9ef4b933eefe..69d2559d640b 100644 --- a/pkgs/by-name/ca/cargo-llvm-lines/package.nix +++ b/pkgs/by-name/ca/cargo-llvm-lines/package.nix @@ -17,16 +17,16 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-JrH7W2zRDoPa1ENQCfE++2y2VEC3INg/cst5ob2hmy0="; - meta = with lib; { + meta = { description = "Count the number of lines of LLVM IR across all instantiations of a generic function"; mainProgram = "cargo-llvm-lines"; homepage = "https://github.com/dtolnay/cargo-llvm-lines"; changelog = "https://github.com/dtolnay/cargo-llvm-lines/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-machete/package.nix b/pkgs/by-name/ca/cargo-machete/package.nix index 102c7b768319..28fb82e53a4b 100644 --- a/pkgs/by-name/ca/cargo-machete/package.nix +++ b/pkgs/by-name/ca/cargo-machete/package.nix @@ -20,13 +20,13 @@ rustPlatform.buildRustPackage rec { # tests require internet access doCheck = false; - meta = with lib; { + meta = { description = "Cargo tool that detects unused dependencies in Rust projects"; mainProgram = "cargo-machete"; homepage = "https://github.com/bnjbvr/cargo-machete"; changelog = "https://github.com/bnjbvr/cargo-machete/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-mobile2/package.nix b/pkgs/by-name/ca/cargo-mobile2/package.nix index e34ee1e278a8..ca87438bf061 100644 --- a/pkgs/by-name/ca/cargo-mobile2/package.nix +++ b/pkgs/by-name/ca/cargo-mobile2/package.nix @@ -47,13 +47,13 @@ rustPlatform.buildRustPackage { done ''; - meta = with lib; { + meta = { description = "Rust on mobile made easy"; homepage = "https://tauri.app/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ happysalada ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/ca/cargo-mommy/package.nix b/pkgs/by-name/ca/cargo-mommy/package.nix index ed60cc850e52..21c85ae6f273 100644 --- a/pkgs/by-name/ca/cargo-mommy/package.nix +++ b/pkgs/by-name/ca/cargo-mommy/package.nix @@ -15,14 +15,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-B0hPxw/8T5x6E0dwPIHoPChLx4K2ORvPEUDYHncZrPE="; - meta = with lib; { + meta = { description = "Cargo wrapper that encourages you after running commands"; mainProgram = "cargo-mommy"; homepage = "https://github.com/Gankra/cargo-mommy"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ GoldsteinE ]; + maintainers = with lib.maintainers; [ GoldsteinE ]; }; } diff --git a/pkgs/by-name/ca/cargo-msrv/package.nix b/pkgs/by-name/ca/cargo-msrv/package.nix index e43ccf791534..6a5f0ac2c861 100644 --- a/pkgs/by-name/ca/cargo-msrv/package.nix +++ b/pkgs/by-name/ca/cargo-msrv/package.nix @@ -45,15 +45,15 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/cargo-msrv --prefix PATH : ${lib.makeBinPath [ rustup ]}; ''; - meta = with lib; { + meta = { description = "Cargo subcommand \"msrv\": assists with finding your minimum supported Rust version (MSRV)"; mainProgram = "cargo-msrv"; homepage = "https://github.com/foresterre/cargo-msrv"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ otavio matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-ndk/package.nix b/pkgs/by-name/ca/cargo-ndk/package.nix index ebc57d155a6f..dd0c754c9c05 100644 --- a/pkgs/by-name/ca/cargo-ndk/package.nix +++ b/pkgs/by-name/ca/cargo-ndk/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-QB4s6g3QmHFPtR7utGmfhQ8iUFyw6DXGii4XTj2V874="; - meta = with lib; { + meta = { description = "Cargo extension for building Android NDK projects"; mainProgram = "cargo-ndk"; homepage = "https://github.com/bbqsrc/cargo-ndk"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; diff --git a/pkgs/by-name/ca/cargo-nextest/package.nix b/pkgs/by-name/ca/cargo-nextest/package.nix index 1708d4974b12..06f03bf68fc8 100644 --- a/pkgs/by-name/ca/cargo-nextest/package.nix +++ b/pkgs/by-name/ca/cargo-nextest/package.nix @@ -35,16 +35,16 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Next-generation test runner for Rust projects"; mainProgram = "cargo-nextest"; homepage = "https://github.com/nextest-rs/nextest"; changelog = "https://nexte.st/CHANGELOG.html"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-pgo/package.nix b/pkgs/by-name/ca/cargo-pgo/package.nix index bdcfb22a7569..f2d61e4e112b 100644 --- a/pkgs/by-name/ca/cargo-pgo/package.nix +++ b/pkgs/by-name/ca/cargo-pgo/package.nix @@ -21,10 +21,10 @@ rustPlatform.buildRustPackage rec { # create and build Cargo workspaces. doCheck = false; - meta = with lib; { + meta = { description = "Cargo subcommand for optimizing Rust binaries/libraries with PGO and BOLT"; homepage = "https://github.com/kobzol/cargo-pgo"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ dannixon ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ dannixon ]; }; } diff --git a/pkgs/by-name/ca/cargo-pio/package.nix b/pkgs/by-name/ca/cargo-pio/package.nix index b15395640078..42f3787f95b7 100644 --- a/pkgs/by-name/ca/cargo-pio/package.nix +++ b/pkgs/by-name/ca/cargo-pio/package.nix @@ -18,14 +18,14 @@ rustPlatform.buildRustPackage rec { buildAndTestSubdir = "cargo-pio"; - meta = with lib; { + meta = { description = "Build Rust embedded projects with PlatformIO"; homepage = "https://github.com/esp-rs/embuild/tree/master/cargo-pio"; license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ dannixon ]; + maintainers = with lib.maintainers; [ dannixon ]; mainProgram = "cargo-pio"; }; } diff --git a/pkgs/by-name/ca/cargo-profiler/package.nix b/pkgs/by-name/ca/cargo-profiler/package.nix index 266751f99d95..7050abff55b8 100644 --- a/pkgs/by-name/ca/cargo-profiler/package.nix +++ b/pkgs/by-name/ca/cargo-profiler/package.nix @@ -27,11 +27,11 @@ buildRustPackage { inherit cargoHash; - meta = with lib; { + meta = { description = "Cargo subcommand for profiling Rust binaries"; mainProgram = "cargo-profiler"; homepage = "https://github.com/svenstaro/cargo-profiler"; - license = licenses.mit; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/ca/cargo-readme/package.nix b/pkgs/by-name/ca/cargo-readme/package.nix index 3ce7f2fa56eb..17d5649eb0d4 100644 --- a/pkgs/by-name/ca/cargo-readme/package.nix +++ b/pkgs/by-name/ca/cargo-readme/package.nix @@ -23,15 +23,15 @@ rustPlatform.buildRustPackage rec { "--lib" ]; - meta = with lib; { + meta = { description = "Generate README.md from docstrings"; mainProgram = "cargo-readme"; homepage = "https://github.com/livioribeiro/cargo-readme"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ baloo matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-rr/package.nix b/pkgs/by-name/ca/cargo-rr/package.nix index 107a12e934f4..2020e1cb7b2b 100644 --- a/pkgs/by-name/ca/cargo-rr/package.nix +++ b/pkgs/by-name/ca/cargo-rr/package.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/cargo-rr --prefix PATH : ${lib.makeBinPath [ rr ]} ''; - meta = with lib; { + meta = { description = "Cargo subcommand \"rr\": a light wrapper around rr, the time-travelling debugger"; mainProgram = "cargo-rr"; homepage = "https://github.com/danielzfranklin/cargo-rr"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ otavio matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-supply-chain/package.nix b/pkgs/by-name/ca/cargo-supply-chain/package.nix index 23ef43511a4e..97bc278430c9 100644 --- a/pkgs/by-name/ca/cargo-supply-chain/package.nix +++ b/pkgs/by-name/ca/cargo-supply-chain/package.nix @@ -17,17 +17,17 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Lk08Avmx563A2Ka5J/TqxY3FRNgbKRSsIpJWYlcLt0E="; - meta = with lib; { + meta = { description = "Gather author, contributor and publisher data on crates in your dependency graph"; mainProgram = "cargo-supply-chain"; homepage = "https://github.com/rust-secure-code/cargo-supply-chain"; changelog = "https://github.com/rust-secure-code/cargo-supply-chain/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit zlib ]; # any of three - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-sweep/package.nix b/pkgs/by-name/ca/cargo-sweep/package.nix index 781ede8252df..03ae04c8b331 100644 --- a/pkgs/by-name/ca/cargo-sweep/package.nix +++ b/pkgs/by-name/ca/cargo-sweep/package.nix @@ -24,12 +24,12 @@ rustPlatform.buildRustPackage rec { "--skip empty_project_output" ]; - meta = with lib; { + meta = { description = "Cargo subcommand for cleaning up unused build files generated by Cargo"; mainProgram = "cargo-sweep"; homepage = "https://github.com/holmgr/cargo-sweep"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xrelkd matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-swift/package.nix b/pkgs/by-name/ca/cargo-swift/package.nix index 558deb26c74d..0bdc41fd09a3 100644 --- a/pkgs/by-name/ca/cargo-swift/package.nix +++ b/pkgs/by-name/ca/cargo-swift/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8aFISZ2nzCmxxKkX77jEOE/MWcKwyTw8IGTEbJ0mKWg="; - meta = with lib; { + meta = { description = "Cargo plugin to easily build Swift packages from Rust code"; mainProgram = "cargo-swift"; homepage = "https://github.com/antoniusnaumann/cargo-swift"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ elliot ]; + maintainers = with lib.maintainers; [ elliot ]; }; } diff --git a/pkgs/by-name/ca/cargo-temp/package.nix b/pkgs/by-name/ca/cargo-temp/package.nix index f90f7f29abf9..e697ffe5c069 100644 --- a/pkgs/by-name/ca/cargo-temp/package.nix +++ b/pkgs/by-name/ca/cargo-temp/package.nix @@ -17,16 +17,16 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-7S7L/OKHTOAP9tbM7+xWhvcYBZScvX6SBW3U1AyFGrs="; - meta = with lib; { + meta = { description = "CLI tool that allow you to create a temporary new Rust project using cargo with already installed dependencies"; mainProgram = "cargo-temp"; homepage = "https://github.com/yozhgoor/cargo-temp"; changelog = "https://github.com/yozhgoor/cargo-temp/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/ca/cargo-udeps/package.nix b/pkgs/by-name/ca/cargo-udeps/package.nix index 1f874a778725..bcfb58c99d53 100644 --- a/pkgs/by-name/ca/cargo-udeps/package.nix +++ b/pkgs/by-name/ca/cargo-udeps/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { # Requires network access doCheck = false; - meta = with lib; { + meta = { description = "Find unused dependencies in Cargo.toml"; homepage = "https://github.com/est31/cargo-udeps"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ b4dm4n matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-unfmt/package.nix b/pkgs/by-name/ca/cargo-unfmt/package.nix index 9484d5f71b1c..4c61fe9e51d2 100644 --- a/pkgs/by-name/ca/cargo-unfmt/package.nix +++ b/pkgs/by-name/ca/cargo-unfmt/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage { # Doc tests are broken on 0.3.3 doCheck = false; - meta = with lib; { + meta = { description = "Unformat code into perfect rectangles"; homepage = "https://github.com/fprasx/cargo-unfmt"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "cargo-unfmt"; - maintainers = with maintainers; [ cafkafk ]; + maintainers = with lib.maintainers; [ cafkafk ]; }; } diff --git a/pkgs/by-name/ca/cargo-unused-features/package.nix b/pkgs/by-name/ca/cargo-unused-features/package.nix index 6367350f5fb8..a846e13f9193 100644 --- a/pkgs/by-name/ca/cargo-unused-features/package.nix +++ b/pkgs/by-name/ca/cargo-unused-features/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { LIBGIT2_NO_VENDOR = 1; }; - meta = with lib; { + meta = { description = "Tool to find potential unused enabled feature flags and prune them"; homepage = "https://github.com/timonpost/cargo-unused-features"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "unused-features"; diff --git a/pkgs/by-name/ca/cargo-valgrind/package.nix b/pkgs/by-name/ca/cargo-valgrind/package.nix index 40fad8f71036..995bbe5fcffa 100644 --- a/pkgs/by-name/ca/cargo-valgrind/package.nix +++ b/pkgs/by-name/ca/cargo-valgrind/package.nix @@ -38,15 +38,15 @@ rustPlatform.buildRustPackage rec { "--skip empty_tests_not_leak_in_release_mode" ]; - meta = with lib; { + meta = { description = ''Cargo subcommand "valgrind": runs valgrind and collects its output in a helpful manner''; mainProgram = "cargo-valgrind"; homepage = "https://github.com/jfrimmel/cargo-valgrind"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ otavio matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-vibe/package.nix b/pkgs/by-name/ca/cargo-vibe/package.nix index 7a0c5dbc0e50..6c5b8df91893 100644 --- a/pkgs/by-name/ca/cargo-vibe/package.nix +++ b/pkgs/by-name/ca/cargo-vibe/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage { ] ++ lib.optional stdenv.hostPlatform.isLinux udev; - meta = with lib; { + meta = { description = "Cargo x Buttplug.io"; mainProgram = "cargo-vibe"; homepage = "https://github.com/shadlock0133/cargo-vibe"; - license = licenses.mit; - maintainers = with maintainers; [ _999eagle ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _999eagle ]; }; } diff --git a/pkgs/by-name/ca/cargo-wasi/package.nix b/pkgs/by-name/ca/cargo-wasi/package.nix index b87d72214d3d..f89f556b210e 100644 --- a/pkgs/by-name/ca/cargo-wasi/package.nix +++ b/pkgs/by-name/ca/cargo-wasi/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { # https://github.com/bytecodealliance/cargo-wasi/blob/0.1.28/tests/tests/support.rs#L13-L18 doCheck = false; - meta = with lib; { + meta = { description = "Lightweight Cargo subcommand to build code for the wasm32-wasi target"; mainProgram = "cargo-wasi"; homepage = "https://bytecodealliance.github.io/cargo-wasi"; - license = licenses.asl20; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/ca/cargo-watch/package.nix b/pkgs/by-name/ca/cargo-watch/package.nix index a8ba990eba67..bb066eac03a7 100644 --- a/pkgs/by-name/ca/cargo-watch/package.nix +++ b/pkgs/by-name/ca/cargo-watch/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { export PATH="$(pwd)/target/${stdenv.hostPlatform.rust.rustcTarget}/release:$PATH" ''; - meta = with lib; { + meta = { description = "Cargo subcommand for watching over Cargo project's source"; mainProgram = "cargo-watch"; homepage = "https://github.com/watchexec/cargo-watch"; - license = licenses.cc0; - maintainers = with maintainers; [ + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ xrelkd ivan matthiasbeyer diff --git a/pkgs/by-name/ca/cargo-whatfeatures/package.nix b/pkgs/by-name/ca/cargo-whatfeatures/package.nix index 8db4062b1838..9f94cc7b6d60 100644 --- a/pkgs/by-name/ca/cargo-whatfeatures/package.nix +++ b/pkgs/by-name/ca/cargo-whatfeatures/package.nix @@ -23,15 +23,15 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Simple cargo plugin to get a list of features for a specific crate"; mainProgram = "cargo-whatfeatures"; homepage = "https://github.com/museun/cargo-whatfeatures"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ivan-babrou matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-wipe/package.nix b/pkgs/by-name/ca/cargo-wipe/package.nix index 8ca933496820..fe8eb2802c40 100644 --- a/pkgs/by-name/ca/cargo-wipe/package.nix +++ b/pkgs/by-name/ca/cargo-wipe/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = ''Cargo subcommand "wipe": recursively finds and optionally wipes all "target" or "node_modules" folders''; mainProgram = "cargo-wipe"; homepage = "https://github.com/mihai-dinculescu/cargo-wipe"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ otavio ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ otavio ]; }; } diff --git a/pkgs/by-name/ca/cargo-wizard/package.nix b/pkgs/by-name/ca/cargo-wizard/package.nix index b6d0850302e7..04deb0a47bac 100644 --- a/pkgs/by-name/ca/cargo-wizard/package.nix +++ b/pkgs/by-name/ca/cargo-wizard/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { export PATH=$PATH:$PWD/target/${stdenv.hostPlatform.rust.rustcTarget}/$cargoBuildType ''; - meta = with lib; { + meta = { description = "Cargo subcommand for configuring Cargo profile for best performance"; homepage = "https://github.com/kobzol/cargo-wizard"; changelog = "https://github.com/kobzol/cargo-wizard/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; mainProgram = "cargo-wizard"; }; } diff --git a/pkgs/by-name/ca/cargo-xbuild/package.nix b/pkgs/by-name/ca/cargo-xbuild/package.nix index d8683ab1d66d..f0fb66d52950 100644 --- a/pkgs/by-name/ca/cargo-xbuild/package.nix +++ b/pkgs/by-name/ca/cargo-xbuild/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8ceL4Ntb+P+BvLqlnSxKcyZREckyWAKDhxR6prjaxHM="; - meta = with lib; { + meta = { description = "Automatically cross-compiles the sysroot crates core, compiler_builtins, and alloc"; homepage = "https://github.com/rust-osdev/cargo-xbuild"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ johntitor xrelkd ]; diff --git a/pkgs/by-name/ca/cargo-xwin/package.nix b/pkgs/by-name/ca/cargo-xwin/package.nix index 1fc98aaabd9b..a964b7f3c7e7 100644 --- a/pkgs/by-name/ca/cargo-xwin/package.nix +++ b/pkgs/by-name/ca/cargo-xwin/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-DwQGmdSzEjzqfsvqczAMJfi9gJjK2b9FAGmMi7rGKuw="; - meta = with lib; { + meta = { description = "Cross compile Cargo project to Windows MSVC target with ease"; mainProgram = "cargo-xwin"; homepage = "https://github.com/rust-cross/cargo-xwin"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ shivaraj-bh ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ shivaraj-bh ]; }; } diff --git a/pkgs/by-name/ca/cargo2junit/package.nix b/pkgs/by-name/ca/cargo2junit/package.nix index f5272e931529..3e4f10adaa6a 100644 --- a/pkgs/by-name/ca/cargo2junit/package.nix +++ b/pkgs/by-name/ca/cargo2junit/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-FPCLy4mIuUeHMuYgYGTs/fn8tUf55LVWBwrrA5hiG2k="; - meta = with lib; { + meta = { description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout)"; mainProgram = "cargo2junit"; homepage = "https://github.com/johnterickson/cargo2junit"; - license = licenses.mit; - maintainers = with maintainers; [ alekseysidorov ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alekseysidorov ]; }; } diff --git a/pkgs/by-name/ca/caribou/package.nix b/pkgs/by-name/ca/caribou/package.nix index be87c6bf92fd..63138073731b 100644 --- a/pkgs/by-name/ca/caribou/package.nix +++ b/pkgs/by-name/ca/caribou/package.nix @@ -107,13 +107,13 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "caribou"; }; }; - meta = with lib; { + meta = { description = "Input assistive technology intended for switch and pointer users"; mainProgram = "caribou-preferences"; homepage = "https://gitlab.gnome.org/Archive/caribou"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; # checking for a Python interpreter with version >= 2.4... none # configure: error: no suitable Python interpreter found broken = stdenv.buildPlatform != stdenv.hostPlatform; diff --git a/pkgs/by-name/ca/carlito/package.nix b/pkgs/by-name/ca/carlito/package.nix index c7d11fab15fd..cef1eb4b941a 100644 --- a/pkgs/by-name/ca/carlito/package.nix +++ b/pkgs/by-name/ca/carlito/package.nix @@ -20,7 +20,7 @@ stdenvNoCC.mkDerivation rec { cp -v ${./calibri-alias.conf} $out/etc/fonts/conf.d/30-calibri.conf ''; - meta = with lib; { + meta = { # This font doesn't appear to have any official web site but this # one provides some good information and samples. homepage = "http://openfontlibrary.org/en/font/carlito"; @@ -30,8 +30,8 @@ stdenvNoCC.mkDerivation rec { Microsoft Calibri font. The font is designed by Łukasz Dziedzic of the tyPoland foundry and based upon his Lato font. ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; # Reduce the priority of this package. The intent is that if you diff --git a/pkgs/by-name/ca/caroline/package.nix b/pkgs/by-name/ca/caroline/package.nix index 62a762c0e9a0..a0d47bc16611 100644 --- a/pkgs/by-name/ca/caroline/package.nix +++ b/pkgs/by-name/ca/caroline/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { gtk3 ]; - meta = with lib; { + meta = { description = "Simple Cairo Chart Library for GTK and Vala"; homepage = "https://github.com/dcharles525/Caroline"; - maintainers = with maintainers; [ grindhold ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ grindhold ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ca/carps-cups/package.nix b/pkgs/by-name/ca/carps-cups/package.nix index f7a3572ba622..15d52616d8ec 100644 --- a/pkgs/by-name/ca/carps-cups/package.nix +++ b/pkgs/by-name/ca/carps-cups/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { buildInputs = [ cups ]; - meta = with lib; { + meta = { description = "CUPS Linux drivers for Canon printers"; homepage = "https://www.canon.com/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ewok ]; }; diff --git a/pkgs/by-name/ca/cassowary/package.nix b/pkgs/by-name/ca/cassowary/package.nix index bbadc9ab9d49..48b41fb8c0db 100644 --- a/pkgs/by-name/ca/cassowary/package.nix +++ b/pkgs/by-name/ca/cassowary/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rogerwelin/cassowary"; description = "Modern cross-platform HTTP load-testing tool written in Go"; - license = licenses.mit; - maintainers = with maintainers; [ hugoreeves ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hugoreeves ]; mainProgram = "cassowary"; }; } diff --git a/pkgs/by-name/ca/castero/package.nix b/pkgs/by-name/ca/castero/package.nix index f7d289e1707f..755cf2a95198 100644 --- a/pkgs/by-name/ca/castero/package.nix +++ b/pkgs/by-name/ca/castero/package.nix @@ -71,12 +71,12 @@ python3.pkgs.buildPythonApplication rec { ''; # VLC currently doesn't support Darwin on NixOS - meta = with lib; { + meta = { mainProgram = "castero"; description = "TUI podcast client for the terminal"; homepage = "https://github.com/xgi/castero"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ keto ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ keto ]; }; } diff --git a/pkgs/by-name/ca/castopod/package.nix b/pkgs/by-name/ca/castopod/package.nix index 72bc5d402557..ff97a11c338a 100644 --- a/pkgs/by-name/ca/castopod/package.nix +++ b/pkgs/by-name/ca/castopod/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { passthru.tests.castopod = nixosTests.castopod; passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Open-source hosting platform made for podcasters who want to engage and interact with their audience"; homepage = "https://castopod.org"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ alexoundos ]; - platforms = platforms.all; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ alexoundos ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ca/castor/package.nix b/pkgs/by-name/ca/castor/package.nix index 4d142863bf77..668a94e84e9f 100644 --- a/pkgs/by-name/ca/castor/package.nix +++ b/pkgs/by-name/ca/castor/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec { useNextest = true; - meta = with lib; { + meta = { description = "Graphical client for plain-text protocols written in Rust with GTK. It currently supports the Gemini, Gopher and Finger protocols"; mainProgram = "castor"; homepage = "https://sr.ht/~julienxx/Castor"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/ca/castty/package.nix b/pkgs/by-name/ca/castty/package.nix index a744c72b1973..3cca198a40a0 100644 --- a/pkgs/by-name/ca/castty/package.nix +++ b/pkgs/by-name/ca/castty/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "CLI tool to record audio-enabled screencasts of your terminal, for the web"; homepage = "https://github.com/dhobsd/castty"; - license = licenses.bsd3; - maintainers = with maintainers; [ iblech ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ iblech ]; + platforms = lib.platforms.unix; mainProgram = "castty"; }; } diff --git a/pkgs/by-name/ca/casync/package.nix b/pkgs/by-name/ca/casync/package.nix index 7fa983f85ff3..21c62cc44db6 100644 --- a/pkgs/by-name/ca/casync/package.nix +++ b/pkgs/by-name/ca/casync/package.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation { doInstallCheck = true; - meta = with lib; { + meta = { description = "Content-Addressable Data Synchronizer"; mainProgram = "casync"; homepage = "https://github.com/systemd/casync"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/ca/catamaran/package.nix b/pkgs/by-name/ca/catamaran/package.nix index 66fcb9a16f4e..59cc2e14a925 100644 --- a/pkgs/by-name/ca/catamaran/package.nix +++ b/pkgs/by-name/ca/catamaran/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://fonts.google.com/specimen/Catamaran"; description = "Stylish sans-serif Tamil and Latin typeface"; longDescription = '' @@ -35,8 +35,8 @@ stdenvNoCC.mkDerivation { (A catamaran is a multihulled vessel consisting of two parallel hulls of equal size. The catamaran concept is a relative newcomer for Western boat designers, been used since time immemorial among the Dravidian people, in South India.) ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/catatonit/package.nix b/pkgs/by-name/ca/catatonit/package.nix index 687b68fb353e..23c62c0afd85 100644 --- a/pkgs/by-name/ca/catatonit/package.nix +++ b/pkgs/by-name/ca/catatonit/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) podman; }; - meta = with lib; { + meta = { description = "Container init that is so simple it's effectively brain-dead"; homepage = "https://github.com/openSUSE/catatonit"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ erosennin ]; - teams = [ teams.podman ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ erosennin ]; + teams = [ lib.teams.podman ]; + platforms = lib.platforms.linux; mainProgram = "catatonit"; }; } diff --git a/pkgs/by-name/ca/catch2/package.nix b/pkgs/by-name/ca/catch2/package.nix index 0551ba9828ef..48e296cefded 100644 --- a/pkgs/by-name/ca/catch2/package.nix +++ b/pkgs/by-name/ca/catch2/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-H.." ]; - meta = with lib; { + meta = { description = "Multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)"; homepage = "http://catch-lib.net"; - license = licenses.boost; + license = lib.licenses.boost; maintainers = [ ]; - platforms = with platforms; unix ++ windows; + platforms = with lib.platforms; unix ++ windows; }; } diff --git a/pkgs/by-name/ca/catclock/package.nix b/pkgs/by-name/ca/catclock/package.nix index e903243d42e7..1cd93052c864 100644 --- a/pkgs/by-name/ca/catclock/package.nix +++ b/pkgs/by-name/ca/catclock/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { aubio ]; - meta = with lib; { + meta = { homepage = "http://codefromabove.com/2014/05/catclock/"; description = "Analog / Digital / Cat clock for X"; - license = with licenses; mit; - maintainers = with maintainers; [ ramkromberg ]; + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ ramkromberg ]; mainProgram = "xclock"; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/ca/catdoc/package.nix b/pkgs/by-name/ca/catdoc/package.nix index 998d3e74841e..01e4ee58488f 100644 --- a/pkgs/by-name/ca/catdoc/package.nix +++ b/pkgs/by-name/ca/catdoc/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-wordview" ]; - meta = with lib; { + meta = { description = "MS-Word/Excel/PowerPoint to text converter"; - platforms = platforms.all; - license = licenses.gpl2Only; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/catdocx/package.nix b/pkgs/by-name/ca/catdocx/package.nix index f44b07d95fce..69be98201e9d 100644 --- a/pkgs/by-name/ca/catdocx/package.nix +++ b/pkgs/by-name/ca/catdocx/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation { ln -s $out/libexec/catdocx.sh $out/bin/catdocx ''; - meta = with lib; { + meta = { description = "Extracts plain text from docx files"; mainProgram = "catdocx"; homepage = "https://github.com/jncraton/catdocx"; - license = with licenses; [ bsd3 ]; - maintainers = [ maintainers.michalrus ]; - platforms = platforms.all; + license = with lib.licenses; [ bsd3 ]; + maintainers = [ lib.maintainers.michalrus ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ca/catdvi/package.nix b/pkgs/by-name/ca/catdvi/package.nix index 5af575707a55..0a4161c1cbc8 100644 --- a/pkgs/by-name/ca/catdvi/package.nix +++ b/pkgs/by-name/ca/catdvi/package.nix @@ -91,10 +91,10 @@ stdenv.mkDerivation (finalAttrs: { ln -s ${tex}/share/texmf-var $out/share/texmf ''; - meta = with lib; { + meta = { homepage = "https://catdvi.sourceforge.net"; description = "DVI to plain text translator"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ca/catfs/package.nix b/pkgs/by-name/ca/catfs/package.nix index ce11652a0b5f..c307b68e15b7 100644 --- a/pkgs/by-name/ca/catfs/package.nix +++ b/pkgs/by-name/ca/catfs/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage { $out/bin/catfs --help > /dev/null ''; - meta = with lib; { + meta = { description = "Caching filesystem written in Rust"; mainProgram = "catfs"; homepage = "https://github.com/kahing/catfs"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/catimg/package.nix b/pkgs/by-name/ca/catimg/package.nix index 7a0ee8b8d6cc..4c5e97131dbd 100644 --- a/pkgs/by-name/ca/catimg/package.nix +++ b/pkgs/by-name/ca/catimg/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { CFLAGS = "-D_DEFAULT_SOURCE"; }; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://github.com/posva/catimg"; description = "Insanely fast image printing in your terminal"; - maintainers = with maintainers; [ ryantm ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ryantm ]; + platforms = lib.platforms.unix; mainProgram = "catimg"; }; diff --git a/pkgs/by-name/ca/catnip-gtk4/package.nix b/pkgs/by-name/ca/catnip-gtk4/package.nix index c47310df3bc0..a5525d4b9ba0 100644 --- a/pkgs/by-name/ca/catnip-gtk4/package.nix +++ b/pkgs/by-name/ca/catnip-gtk4/package.nix @@ -40,10 +40,10 @@ buildGoModule { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "GTK4 frontend for catnip"; homepage = "https://github.com/diamondburned/catnip-gtk4"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "catnip-gtk4"; }; diff --git a/pkgs/by-name/ca/catppuccin-kde/package.nix b/pkgs/by-name/ca/catppuccin-kde/package.nix index 7569d0f253d1..a555ee0055c0 100644 --- a/pkgs/by-name/ca/catppuccin-kde/package.nix +++ b/pkgs/by-name/ca/catppuccin-kde/package.nix @@ -85,11 +85,11 @@ lib.checkListOfEnum "Invalid accent, valid accents are ${toString validAccents}" runHook postInstall ''; - meta = with lib; { + meta = { description = "Soothing pastel theme for KDE"; homepage = "https://github.com/catppuccin/kde"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ michaelBelsanti gigglesquid ]; diff --git a/pkgs/by-name/ca/catppuccin-papirus-folders/package.nix b/pkgs/by-name/ca/catppuccin-papirus-folders/package.nix index 24cc66cda7ec..6292184270fe 100644 --- a/pkgs/by-name/ca/catppuccin-papirus-folders/package.nix +++ b/pkgs/by-name/ca/catppuccin-papirus-folders/package.nix @@ -85,11 +85,11 @@ lib.checkListOfEnum "${pname}: accent colors" validAccents [ accent ] lib.checkL runHook postInstall ''; - meta = with lib; { + meta = { description = "Soothing pastel theme for Papirus Icon Theme folders"; homepage = "https://github.com/catppuccin/papirus-folders"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ rubyowo ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rubyowo ]; }; } diff --git a/pkgs/by-name/ca/caudec/package.nix b/pkgs/by-name/ca/caudec/package.nix index 7d4a971e6b42..742d4c5863c1 100644 --- a/pkgs/by-name/ca/caudec/package.nix +++ b/pkgs/by-name/ca/caudec/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://caudec.cocatre.net/"; description = "Multiprocess audio converter that supports many formats (FLAC, MP3, Ogg Vorbis, Windows codecs and many more)"; - license = licenses.gpl3; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ca/cauwugo/package.nix b/pkgs/by-name/ca/cauwugo/package.nix index d13a988ab137..84744da712bd 100644 --- a/pkgs/by-name/ca/cauwugo/package.nix +++ b/pkgs/by-name/ca/cauwugo/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/cauwugo --bpaf-complete-style-zsh) ''; - meta = with lib; { + meta = { description = "Alternative cargo frontend that implements dynamic shell completion for usual cargo commands"; mainProgram = "cauwugo"; homepage = "https://github.com/pacak/bpaf/tree/master/bpaf_cauwugo"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/ca/cava/package.nix b/pkgs/by-name/ca/cava/package.nix index 3453d7db9d1b..e3e12a739346 100644 --- a/pkgs/by-name/ca/cava/package.nix +++ b/pkgs/by-name/ca/cava/package.nix @@ -65,15 +65,15 @@ stdenv.mkDerivation rec { echo ${version} > version ''; - meta = with lib; { + meta = { description = "Console-based Audio Visualizer for Alsa"; homepage = "https://github.com/karlstav/cava"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ offline mirrexagon ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "cava"; }; } diff --git a/pkgs/by-name/ca/cayley/package.nix b/pkgs/by-name/ca/cayley/package.nix index f6afb01a2e42..592ac29c8c8f 100644 --- a/pkgs/by-name/ca/cayley/package.nix +++ b/pkgs/by-name/ca/cayley/package.nix @@ -31,15 +31,15 @@ buildGoModule rec { "-X ${basename}.GitHash=${rev}" ]; - meta = with lib; { + meta = { description = "Graph database designed for ease of use and storing complex data"; longDescription = '' Cayley is an open-source database for Linked Data. It is inspired by the graph database behind Google's Knowledge Graph (formerly Freebase). ''; homepage = "https://cayley.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ sigma ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sigma ]; mainProgram = "cayley"; }; } diff --git a/pkgs/by-name/cb/cbatticon/package.nix b/pkgs/by-name/cb/cbatticon/package.nix index 31eec833e0c8..77e444b32207 100644 --- a/pkgs/by-name/cb/cbatticon/package.nix +++ b/pkgs/by-name/cb/cbatticon/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Lightweight and fast battery icon that sits in the system tray"; mainProgram = "cbatticon"; homepage = "https://github.com/valr/cbatticon"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/cb/cbfmt/package.nix b/pkgs/by-name/cb/cbfmt/package.nix index 311d6e89d1e2..cabca9dc0291 100644 --- a/pkgs/by-name/cb/cbfmt/package.nix +++ b/pkgs/by-name/cb/cbfmt/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { package = cbfmt; }; - meta = with lib; { + meta = { description = "Tool to format codeblocks inside markdown and org documents"; mainProgram = "cbfmt"; homepage = "https://github.com/lukas-reineke/cbfmt"; - license = licenses.mit; - maintainers = [ maintainers.stehessel ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.stehessel ]; }; } diff --git a/pkgs/by-name/cb/cbftp/package.nix b/pkgs/by-name/cb/cbftp/package.nix index c7d38a575fe3..1266c5cc402d 100644 --- a/pkgs/by-name/cb/cbftp/package.nix +++ b/pkgs/by-name/cb/cbftp/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://cbftp.eu/"; description = "Advanced multi-purpose FTP/FXP client"; longDescription = '' @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { FTP/FXP use cases in a modern way. It runs in a terminal and provides a semi-graphical user interface through ncurses. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/cb/cbmbasic/package.nix b/pkgs/by-name/cb/cbmbasic/package.nix index 8d26db3535aa..38fd85923edc 100644 --- a/pkgs/by-name/cb/cbmbasic/package.nix +++ b/pkgs/by-name/cb/cbmbasic/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Portable version of Commodore's version of Microsoft BASIC 6502 as found on the Commodore 64"; longDescription = '' "Commodore BASIC" (cbmbasic) is a 100% compatible version of Commodore's @@ -61,9 +61,9 @@ stdenv.mkDerivation (finalAttrs: { a 1 GHz CPU you get about 1000x speed compared to a 1 MHz 6502. ''; homepage = "https://github.com/mist64/cbmbasic"; - license = licenses.bsd2; - maintainers = [ maintainers.cafkafk ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.cafkafk ]; mainProgram = "cbmbasic"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/cb/cbonsai/package.nix b/pkgs/by-name/cb/cbonsai/package.nix index 8825467d762a..5d53d43de2f0 100644 --- a/pkgs/by-name/cb/cbonsai/package.nix +++ b/pkgs/by-name/cb/cbonsai/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Grow bonsai trees in your terminal"; mainProgram = "cbonsai"; homepage = "https://gitlab.com/jallbrit/cbonsai"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ manveru ]; - platforms = platforms.unix; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ manveru ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cb/cbor-diag/package.nix b/pkgs/by-name/cb/cbor-diag/package.nix index 4ff0cb33fcad..825f2e1ec8af 100644 --- a/pkgs/by-name/cb/cbor-diag/package.nix +++ b/pkgs/by-name/cb/cbor-diag/package.nix @@ -29,15 +29,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "cbor-diag"; - meta = with lib; { + meta = { description = "CBOR diagnostic utilities"; homepage = "https://github.com/cabo/cbor-diag"; - license = with licenses; asl20; - maintainers = with maintainers; [ + license = with lib.licenses; asl20; + maintainers = with lib.maintainers; [ fdns nicknovitski amesgen ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cb/cbtemulator/package.nix b/pkgs/by-name/cb/cbtemulator/package.nix index 9fdf25879294..cd657c4d26a9 100644 --- a/pkgs/by-name/cb/cbtemulator/package.nix +++ b/pkgs/by-name/cb/cbtemulator/package.nix @@ -62,12 +62,12 @@ buildGoModule rec { ''; }; - meta = with lib; { + meta = { description = "In-memory Google Cloud Bigtable server"; homepage = "https://github.com/googleapis/google-cloud-go/blob/bigtable/v${version}/bigtable/cmd/emulator/cbtemulator.go"; - license = licenses.asl20; - maintainers = [ maintainers.flokli ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.flokli ]; mainProgram = "cbtemulator"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cc/cc-tool/package.nix b/pkgs/by-name/cc/cc-tool/package.nix index 5691929654b4..b9186467190c 100644 --- a/pkgs/by-name/cc/cc-tool/package.nix +++ b/pkgs/by-name/cc/cc-tool/package.nix @@ -39,15 +39,15 @@ stdenv.mkDerivation { install -D udev/90-cc-debugger.rules $out/lib/udev/rules.d/90-cc-debugger.rules ''; - meta = with lib; { + meta = { description = "Command line tool for the Texas Instruments CC Debugger"; mainProgram = "cc-tool"; longDescription = '' cc-tool provides support for Texas Instruments CC Debugger ''; homepage = "https://github.com/dashesy/cc-tool"; - license = licenses.gpl2; - platforms = with platforms; linux ++ darwin; - maintainers = [ maintainers.CRTified ]; + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux ++ darwin; + maintainers = [ lib.maintainers.CRTified ]; }; } diff --git a/pkgs/by-name/cc/cc1541/package.nix b/pkgs/by-name/cc/cc1541/package.nix index cc2546987b65..43b9126f0e34 100644 --- a/pkgs/by-name/cc/cc1541/package.nix +++ b/pkgs/by-name/cc/cc1541/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = with lib; { + meta = { description = "Tool for creating Commodore 1541 Floppy disk images in D64, D71 or D81 format"; homepage = "https://bitbucket.org/ptv_claus/cc1541/src/master/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "cc1541"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/cc/cc65/package.nix b/pkgs/by-name/cc/cc65/package.nix index a5444ee5adc7..fe51a4299890 100644 --- a/pkgs/by-name/cc/cc65/package.nix +++ b/pkgs/by-name/cc/cc65/package.nix @@ -19,7 +19,7 @@ gccStdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://cc65.github.io/"; description = "C compiler for processors of 6502 family"; longDescription = '' @@ -55,8 +55,8 @@ gccStdenv.mkDerivation rec { The libraries are fairly portable, so creating a version for other 6502s shouldn't be too much work. ''; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cc/ccache/package.nix b/pkgs/by-name/cc/ccache/package.nix index ba3dbb6a1ea7..c8be20b00970 100644 --- a/pkgs/by-name/cc/ccache/package.nix +++ b/pkgs/by-name/cc/ccache/package.nix @@ -171,19 +171,19 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Compiler cache for fast recompilation of C/C++ code"; homepage = "https://ccache.dev"; downloadPage = "https://ccache.dev/download.html"; changelog = "https://ccache.dev/releasenotes.html#_ccache_${ builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version }"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kira-bruneau r-burns ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "ccache"; }; }) diff --git a/pkgs/by-name/cc/ccd2iso/package.nix b/pkgs/by-name/cc/ccd2iso/package.nix index 60b863bddbcf..486ca1858865 100644 --- a/pkgs/by-name/cc/ccd2iso/package.nix +++ b/pkgs/by-name/cc/ccd2iso/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { ./include.patch ]; - meta = with lib; { + meta = { description = "CloneCD to ISO converter"; homepage = "https://sourceforge.net/projects/ccd2iso/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "ccd2iso"; }; } diff --git a/pkgs/by-name/cc/ccemux/package.nix b/pkgs/by-name/cc/ccemux/package.nix index b6ba73ad22ff..663d44b6ea61 100644 --- a/pkgs/by-name/cc/ccemux/package.nix +++ b/pkgs/by-name/cc/ccemux/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Modular ComputerCraft emulator"; homepage = "https://github.com/CCEmuX/CCEmuX"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ viluon ]; mainProgram = "ccemux"; diff --git a/pkgs/by-name/cc/ccid/package.nix b/pkgs/by-name/cc/ccid/package.nix index c18ad31b92d2..3c28c5faeaae 100644 --- a/pkgs/by-name/cc/ccid/package.nix +++ b/pkgs/by-name/cc/ccid/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "PC/SC driver for USB CCID smart card readers"; homepage = "https://ccid.apdu.fr/"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.anthonyroussel ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.anthonyroussel ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cc/ccls/package.nix b/pkgs/by-name/cc/ccls/package.nix index 2ee8eb19e5f9..9971193f5585 100644 --- a/pkgs/by-name/cc/ccls/package.nix +++ b/pkgs/by-name/cc/ccls/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { chmod --reference=$out/bin/$wrapped $out/bin/ccls ''; - meta = with lib; { + meta = { description = "C/c++ language server powered by clang"; mainProgram = "ccls"; homepage = "https://github.com/MaskRay/ccls"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ mic92 tobim ]; diff --git a/pkgs/by-name/cc/cconv/package.nix b/pkgs/by-name/cc/cconv/package.nix index cc739c86ce3b..092aad782b18 100644 --- a/pkgs/by-name/cc/cconv/package.nix +++ b/pkgs/by-name/cc/cconv/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { buildInputs = [ libiconv ]; configureFlags = lib.optional stdenv.hostPlatform.isDarwin "LDFLAGS=-liconv"; - meta = with lib; { + meta = { description = "Iconv based simplified-traditional chinese conversion tool"; mainProgram = "cconv"; homepage = "https://github.com/xiaoyjy/cconv"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.redfish64 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.redfish64 ]; }; } diff --git a/pkgs/by-name/cc/ccsymbols/package.nix b/pkgs/by-name/cc/ccsymbols/package.nix index f3eff1e6432a..f9132d165e3e 100644 --- a/pkgs/by-name/cc/ccsymbols/package.nix +++ b/pkgs/by-name/cc/ccsymbols/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation rec { passthru = { inherit pname version; }; - meta = with lib; { + meta = { description = "Creative Commons symbol font"; homepage = "https://www.ctrl.blog/entry/creative-commons-unicode-fallback-font.html"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.publicDomain; - platforms = platforms.all; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cc/cctz/package.nix b/pkgs/by-name/cc/cctz/package.nix index c657e72144cd..7a4f5c015da0 100644 --- a/pkgs/by-name/cc/cctz/package.nix +++ b/pkgs/by-name/cc/cctz/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/google/cctz"; description = "C++ library for translating between absolute and civil times"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cc/ccze/package.nix b/pkgs/by-name/cc/ccze/package.nix index 88c9ee31abe9..79aeb2f40538 100644 --- a/pkgs/by-name/cc/ccze/package.nix +++ b/pkgs/by-name/cc/ccze/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { # provide correct pcre2-config for cross env.PCRE_CONFIG = lib.getExe' (lib.getDev pcre2) "pcre2-config"; - meta = with lib; { + meta = { mainProgram = "ccze"; description = "Fast, modular log colorizer"; homepage = "https://salsa.debian.org/debian/ccze"; @@ -51,11 +51,11 @@ stdenv.mkDerivation (finalAttrs: { Fast log colorizer written in C, intended to be a drop-in replacement for the Perl colorize tool. Includes plugins for a variety of log formats (Apache, Postfix, Procmail, etc.). ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ malyn philiptaron ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/cd/cddiscid/package.nix b/pkgs/by-name/cd/cddiscid/package.nix index 7360ec62239c..54a28a678310 100644 --- a/pkgs/by-name/cd/cddiscid/package.nix +++ b/pkgs/by-name/cd/cddiscid/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { "INSTALL=install" ]; - meta = with lib; { + meta = { homepage = "http://linukz.org/cd-discid.shtml"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; description = "Command-line utility to get CDDB discid information from a CD-ROM disc"; mainProgram = "cd-discid"; diff --git a/pkgs/by-name/cd/cddl/package.nix b/pkgs/by-name/cd/cddl/package.nix index 07fff5a88702..94619daa0f1e 100644 --- a/pkgs/by-name/cd/cddl/package.nix +++ b/pkgs/by-name/cd/cddl/package.nix @@ -32,15 +32,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "cddl"; - meta = with lib; { + meta = { description = "Parser, generator, and validator for CDDL"; homepage = "https://rubygems.org/gems/cddl"; - license = with licenses; mit; - maintainers = with maintainers; [ + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ fdns nicknovitski amesgen ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cd/cddlib/package.nix b/pkgs/by-name/cd/cddlib/package.nix index 53d55834927d..e9bda06e0d70 100644 --- a/pkgs/by-name/cd/cddlib/package.nix +++ b/pkgs/by-name/cd/cddlib/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { # No actual checks yet (2018-05-05), but maybe one day. # Requested here: https://github.com/cddlib/cddlib/issues/25 doCheck = true; - meta = with lib; { + meta = { description = "Implementation of the Double Description Method for generating all vertices of a convex polyhedron"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; homepage = "https://www.inf.ethz.ch/personal/fukudak/cdd_home/index.html"; }; } diff --git a/pkgs/by-name/cd/cdesktopenv/package.nix b/pkgs/by-name/cd/cdesktopenv/package.nix index 55f2ad40ac74..236033814bcc 100644 --- a/pkgs/by-name/cd/cdesktopenv/package.nix +++ b/pkgs/by-name/cd/cdesktopenv/package.nix @@ -116,11 +116,11 @@ stdenv.mkDerivation rec { mkdir -p $out/opt/dt/bin ''; - meta = with lib; { + meta = { description = "Common Desktop Environment"; homepage = "https://sourceforge.net/projects/cdesktopenv/"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cd/cdi2iso/package.nix b/pkgs/by-name/cd/cdi2iso/package.nix index bdeb23b2ba57..a0c67ff4f0d1 100644 --- a/pkgs/by-name/cd/cdi2iso/package.nix +++ b/pkgs/by-name/cd/cdi2iso/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { cp cdi2iso $out/bin ''; - meta = with lib; { + meta = { description = "Very simple utility for converting DiscJuggler images to the standard ISO-9660 format"; homepage = "https://sourceforge.net/projects/cdi2iso.berlios"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; mainProgram = "cdi2iso"; }; } diff --git a/pkgs/by-name/cd/cdimgtools/package.nix b/pkgs/by-name/cd/cdimgtools/package.nix index c7eb90c088e6..cce53c313608 100644 --- a/pkgs/by-name/cd/cdimgtools/package.nix +++ b/pkgs/by-name/cd/cdimgtools/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation { "install-doc" ]; - meta = with lib; { + meta = { homepage = "https://repo.or.cz/cdimgtools.git/blob_plain/refs/heads/release:/README.html"; description = "Tools to inspect and manipulate CD/DVD optical disc images"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ hhm ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ hhm ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/cd/cdogs-sdl/package.nix b/pkgs/by-name/cd/cdogs-sdl/package.nix index e0972de49b02..f88126c1b81d 100644 --- a/pkgs/by-name/cd/cdogs-sdl/package.nix +++ b/pkgs/by-name/cd/cdogs-sdl/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { # inlining failed in call to 'tinydir_open': --param max-inline-insns-single limit reached hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { homepage = "https://cxong.github.io/cdogs-sdl"; description = "Open source classic overhead run-and-gun game"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ nixinator ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ nixinator ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/cdogs-sdl.x86_64-darwin }; } diff --git a/pkgs/by-name/cd/cdparanoiaIII/package.nix b/pkgs/by-name/cd/cdparanoiaIII/package.nix index b0c143d21537..1f968bb1499c 100644 --- a/pkgs/by-name/cd/cdparanoiaIII/package.nix +++ b/pkgs/by-name/cd/cdparanoiaIII/package.nix @@ -164,14 +164,14 @@ stdenv.mkDerivation rec { # scan_devices.o: file not recognized: file format not recognized enableParallelBuilding = false; - meta = with lib; { + meta = { homepage = "https://xiph.org/paranoia"; description = "Tool and library for reading digital audio from CDs"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "cdparanoia"; }; } diff --git a/pkgs/by-name/cd/cdpr/package.nix b/pkgs/by-name/cd/cdpr/package.nix index 8ccf2b1788a4..de76fcbffd2c 100644 --- a/pkgs/by-name/cd/cdpr/package.nix +++ b/pkgs/by-name/cd/cdpr/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { install -Dm755 cdpr $out/bin/cdpr ''; - meta = with lib; { + meta = { description = "Cisco Discovery Protocol Reporter"; homepage = "https://cdpr.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.sgo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sgo ]; mainProgram = "cdpr"; }; } diff --git a/pkgs/by-name/cd/cdwe/package.nix b/pkgs/by-name/cd/cdwe/package.nix index 58d22ae24816..ddd3b96cc4ff 100644 --- a/pkgs/by-name/cd/cdwe/package.nix +++ b/pkgs/by-name/cd/cdwe/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pZpG98lwvggBU1TBb2JuSNLev5Jx8n5QjY902dJVn0Y="; - meta = with lib; { + meta = { description = "Configurable cd wrapper that lets you define your environment per directory"; homepage = "https://github.com/synoet/cdwe"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "cdwe"; }; diff --git a/pkgs/by-name/cd/cdxgen/package.nix b/pkgs/by-name/cd/cdxgen/package.nix index ff0f443c234a..1b68370f1a0e 100644 --- a/pkgs/by-name/cd/cdxgen/package.nix +++ b/pkgs/by-name/cd/cdxgen/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Creates CycloneDX Software Bill-of-Materials (SBOM) for your projects from source and container images"; mainProgram = "cdxgen"; homepage = "https://github.com/CycloneDX/cdxgen"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya quincepie ]; diff --git a/pkgs/by-name/ce/cegui/package.nix b/pkgs/by-name/ce/cegui/package.nix index 8415b5492972..918fc9182acc 100644 --- a/pkgs/by-name/ce/cegui/package.nix +++ b/pkgs/by-name/ce/cegui/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { homepage = "http://cegui.org.uk/"; description = "C++ Library for creating GUIs"; mainProgram = "CEGUISampleFramework-0.9999"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ce/cel-go/package.nix b/pkgs/by-name/ce/cel-go/package.nix index 3f2a5de27983..e12105bcf464 100644 --- a/pkgs/by-name/ce/cel-go/package.nix +++ b/pkgs/by-name/ce/cel-go/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { mv $out/bin/{main,cel-go} ''; - meta = with lib; { + meta = { description = "Fast, portable, non-Turing complete expression evaluation with gradual typing"; mainProgram = "cel-go"; homepage = "https://github.com/google/cel-go"; changelog = "https://github.com/google/cel-go/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ce/celeste-classic/package.nix b/pkgs/by-name/ce/celeste-classic/package.nix index 963d28651d62..8674a1c3de5b 100644 --- a/pkgs/by-name/ce/celeste-classic/package.nix +++ b/pkgs/by-name/ce/celeste-classic/package.nix @@ -38,13 +38,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "PICO-8 platformer about climbing a mountain, made in four days${lib.optionalString practiceMod " (Practice Mod)"}"; homepage = "https://celesteclassic.github.io/"; - license = licenses.unfree; - platforms = platforms.linux; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; mainProgram = outbin; - maintainers = with maintainers; [ mrtnvgr ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ mrtnvgr ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ce/celf/package.nix b/pkgs/by-name/ce/celf/package.nix index 50b2204d4301..2d564f4bccb4 100644 --- a/pkgs/by-name/ce/celf/package.nix +++ b/pkgs/by-name/ce/celf/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { ./.mkexec ${smlnj}/bin/sml $out/bin celf ''; - meta = with lib; { + meta = { description = "Linear logic programming system"; mainProgram = "celf"; homepage = "https://github.com/clf/celf"; - license = licenses.gpl3; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ce/centerpiece/package.nix b/pkgs/by-name/ce/centerpiece/package.nix index cd31952b7a0a..e150dcd40317 100644 --- a/pkgs/by-name/ce/centerpiece/package.nix +++ b/pkgs/by-name/ce/centerpiece/package.nix @@ -56,15 +56,15 @@ rustPlatform.buildRustPackage rec { }" $out/bin/centerpiece ''; - meta = with lib; { + meta = { homepage = "https://github.com/friedow/centerpiece"; description = "Your trusty omnibox search"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ a-kenji friedow ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "centerpiece"; }; } diff --git a/pkgs/by-name/ce/ceph/arrow-cpp-19.nix b/pkgs/by-name/ce/ceph/arrow-cpp-19.nix index 769c8297037b..549ca5e77f17 100644 --- a/pkgs/by-name/ce/ceph/arrow-cpp-19.nix +++ b/pkgs/by-name/ce/ceph/arrow-cpp-19.nix @@ -307,12 +307,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Cross-language development platform for in-memory data"; homepage = "https://arrow.apache.org/docs/cpp/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tobim veprbl cpcloud diff --git a/pkgs/by-name/ce/ceph/old-python-packages/cryptography-vectors.nix b/pkgs/by-name/ce/ceph/old-python-packages/cryptography-vectors.nix index 74fd8dd95676..74bc41127e8e 100644 --- a/pkgs/by-name/ce/ceph/old-python-packages/cryptography-vectors.nix +++ b/pkgs/by-name/ce/ceph/old-python-packages/cryptography-vectors.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "cryptography_vectors" ]; - meta = with lib; { + meta = { description = "Test vectors for the cryptography package"; homepage = "https://cryptography.io/en/latest/development/test-vectors/"; # Source: https://github.com/pyca/cryptography/tree/master/vectors; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 ]; - maintainers = with maintainers; [ nh2 ]; + maintainers = with lib.maintainers; [ nh2 ]; }; } diff --git a/pkgs/by-name/ce/ceph/old-python-packages/cryptography.nix b/pkgs/by-name/ce/ceph/old-python-packages/cryptography.nix index f10d285617a7..27d704118332 100644 --- a/pkgs/by-name/ce/ceph/old-python-packages/cryptography.nix +++ b/pkgs/by-name/ce/ceph/old-python-packages/cryptography.nix @@ -130,11 +130,11 @@ buildPythonPackage rec { homepage = "https://github.com/pyca/cryptography"; changelog = "https://cryptography.io/en/latest/changelog/#v" + replaceStrings [ "." ] [ "-" ] version; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 psfl ]; - maintainers = with maintainers; [ nh2 ]; + maintainers = with lib.maintainers; [ nh2 ]; }; } diff --git a/pkgs/by-name/ce/ceph/old-python-packages/trustme.nix b/pkgs/by-name/ce/ceph/old-python-packages/trustme.nix index 31578bcb8d7d..de8befd9e917 100644 --- a/pkgs/by-name/ce/ceph/old-python-packages/trustme.nix +++ b/pkgs/by-name/ce/ceph/old-python-packages/trustme.nix @@ -39,14 +39,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "trustme" ]; - meta = with lib; { + meta = { description = "High quality TLS certs while you wait, for the discerning tester"; homepage = "https://github.com/python-trio/trustme"; changelog = "https://trustme.readthedocs.io/en/latest/#change-history"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ jfly ]; + maintainers = with lib.maintainers; [ jfly ]; }; } diff --git a/pkgs/by-name/ce/certgraph/package.nix b/pkgs/by-name/ce/certgraph/package.nix index 594fddb273de..ddf6ebe2b302 100644 --- a/pkgs/by-name/ce/certgraph/package.nix +++ b/pkgs/by-name/ce/certgraph/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-ErTn7pUCtz6ip2kL8FCe+3Rhs876xtqto+z5nZqQ6cI="; - meta = with lib; { + meta = { description = "Intelligence tool to crawl the graph of certificate alternate names"; mainProgram = "certgraph"; homepage = "https://github.com/lanrat/certgraph"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ce/certi/package.nix b/pkgs/by-name/ce/certi/package.nix index 2c6bbdf5475f..44abc8c97ba4 100644 --- a/pkgs/by-name/ce/certi/package.nix +++ b/pkgs/by-name/ce/certi/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication { "certilib" ]; - meta = with lib; { + meta = { description = "ADCS abuser"; homepage = "https://github.com/zer1t0/certi"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "certi"; }; } diff --git a/pkgs/by-name/ce/certigo/package.nix b/pkgs/by-name/ce/certigo/package.nix index d98cbdd0a773..64118621f147 100644 --- a/pkgs/by-name/ce/certigo/package.nix +++ b/pkgs/by-name/ce/certigo/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-hBuR6a0gBhuYICbuiHxJdbDr4hLF4mQvIcMr5FHfOu8="; - meta = with lib; { + meta = { description = "Utility to examine and validate certificates in a variety of formats"; homepage = "https://github.com/square/certigo"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "certigo"; }; diff --git a/pkgs/by-name/ce/certinfo/package.nix b/pkgs/by-name/ce/certinfo/package.nix index a60a6e8da809..7ce53102cd21 100644 --- a/pkgs/by-name/ce/certinfo/package.nix +++ b/pkgs/by-name/ce/certinfo/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Print x509 certificate info"; mainProgram = "certinfo"; homepage = "https://github.com/pete911/certinfo"; - license = licenses.mit; - maintainers = with maintainers; [ jakuzure ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakuzure ]; }; } diff --git a/pkgs/by-name/ce/certmgr/package.nix b/pkgs/by-name/ce/certmgr/package.nix index 6a81e0952791..0db056223236 100644 --- a/pkgs/by-name/ce/certmgr/package.nix +++ b/pkgs/by-name/ce/certmgr/package.nix @@ -25,13 +25,13 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) certmgr; }; - meta = with lib; { + meta = { homepage = "https://cfssl.org/"; description = "Cloudflare's automated certificate management using a CFSSL CA"; mainProgram = "certmgr"; - platforms = platforms.linux; - license = licenses.bsd2; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ johanot srhb ]; diff --git a/pkgs/by-name/ce/certspotter/package.nix b/pkgs/by-name/ce/certspotter/package.nix index a09d1211169c..932366f023c3 100644 --- a/pkgs/by-name/ce/certspotter/package.nix +++ b/pkgs/by-name/ce/certspotter/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { mv *.8 $out/share/man/man8 ''; - meta = with lib; { + meta = { description = "Certificate Transparency Log Monitor"; homepage = "https://github.com/SSLMate/certspotter"; changelog = "https://github.com/SSLMate/certspotter/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "certspotter"; - maintainers = with maintainers; [ chayleaf ]; + maintainers = with lib.maintainers; [ chayleaf ]; }; } diff --git a/pkgs/by-name/ce/certstrap/package.nix b/pkgs/by-name/ce/certstrap/package.nix index 3cc981bf68a6..be90f72c9388 100644 --- a/pkgs/by-name/ce/certstrap/package.nix +++ b/pkgs/by-name/ce/certstrap/package.nix @@ -21,7 +21,7 @@ buildGoModule rec { ldflags = [ "-X main.release=${version}" ]; - meta = with lib; { + meta = { description = "Tools to bootstrap CAs, certificate requests, and signed certificates"; mainProgram = "certstrap"; longDescription = '' @@ -30,7 +30,7 @@ buildGoModule rec { ''; homepage = "https://github.com/square/certstrap"; changelog = "https://github.com/square/certstrap/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ce/certsync/package.nix b/pkgs/by-name/ce/certsync/package.nix index 1b059153ab36..81b7c63b4fb3 100644 --- a/pkgs/by-name/ce/certsync/package.nix +++ b/pkgs/by-name/ce/certsync/package.nix @@ -27,12 +27,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "certsync" ]; - meta = with lib; { + meta = { description = "Dump NTDS with golden certificates and UnPAC the hash"; homepage = "https://github.com/zblurx/certsync"; changelog = "https://github.com/zblurx/certsync/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "certsync"; }; } diff --git a/pkgs/by-name/ce/cewler/package.nix b/pkgs/by-name/ce/cewler/package.nix index 3a65802c2615..2b8d93ea574e 100644 --- a/pkgs/by-name/ce/cewler/package.nix +++ b/pkgs/by-name/ce/cewler/package.nix @@ -36,11 +36,11 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Custom Word List generator Redefined"; mainProgram = "cewler"; homepage = "https://github.com/roys/cewler"; - license = licenses.cc-by-nc-40; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.cc-by-nc-40; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/by-name/cf/cf-terraforming/package.nix b/pkgs/by-name/cf/cf-terraforming/package.nix index d29825d2f2ff..71cbb508e6c3 100644 --- a/pkgs/by-name/cf/cf-terraforming/package.nix +++ b/pkgs/by-name/cf/cf-terraforming/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { --zsh <($out/bin/cf-terraforming completion zsh) ''; - meta = with lib; { + meta = { description = "Command line utility to facilitate terraforming your existing Cloudflare resources"; homepage = "https://github.com/cloudflare/cf-terraforming/"; - license = licenses.mpl20; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ benley ]; mainProgram = "cf-terraforming"; }; } diff --git a/pkgs/by-name/cf/cf-tool/package.nix b/pkgs/by-name/cf/cf-tool/package.nix index 044a7f7e602b..cd53ccbdc2d9 100644 --- a/pkgs/by-name/cf/cf-tool/package.nix +++ b/pkgs/by-name/cf/cf-tool/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Codeforces CLI (Submit, Parse, Test, etc.). Support Contests, Gym, Groups, acmsguru, Windows, macOS, Linux, 7 MB"; homepage = "https://github.com/sempr/cf-tool"; - license = licenses.mit; - maintainers = with maintainers; [ bot-wxt1221 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bot-wxt1221 ]; mainProgram = "cf"; }; } diff --git a/pkgs/by-name/cf/cf-vault/package.nix b/pkgs/by-name/cf/cf-vault/package.nix index d5707d959ca0..c87fbf28583d 100644 --- a/pkgs/by-name/cf/cf-vault/package.nix +++ b/pkgs/by-name/cf/cf-vault/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { command = "cf-vault version"; }; - meta = with lib; { + meta = { description = "Tool for managing your Cloudflare credentials, securely"; homepage = "https://github.com/jacobbednarz/cf-vault/"; - license = licenses.mit; - maintainers = with maintainers; [ viraptor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ viraptor ]; mainProgram = "cf-vault"; }; } diff --git a/pkgs/by-name/cf/cfdg/package.nix b/pkgs/by-name/cf/cfdg/package.nix index c6f66b123d13..461678ec5bae 100644 --- a/pkgs/by-name/cf/cfdg/package.nix +++ b/pkgs/by-name/cf/cfdg/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Context-free design grammar - a tool for graphics generation"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://contextfreeart.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "cfdg"; }; } diff --git a/pkgs/by-name/cf/cfdyndns/package.nix b/pkgs/by-name/cf/cfdyndns/package.nix index 2c0172252ffc..e3a73ce405ff 100644 --- a/pkgs/by-name/cf/cfdyndns/package.nix +++ b/pkgs/by-name/cf/cfdyndns/package.nix @@ -21,14 +21,14 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "CloudFlare Dynamic DNS Client"; mainProgram = "cfdyndns"; homepage = "https://github.com/nrdxp/cfdyndns"; license = lib.licenses.mit; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ colemickens ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/cf/cflow/package.nix b/pkgs/by-name/cf/cflow/package.nix index 06e0c6af6ca5..2fa5fbf34219 100644 --- a/pkgs/by-name/cf/cflow/package.nix +++ b/pkgs/by-name/cf/cflow/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tool to analyze the control flow of C programs"; mainProgram = "cflow"; @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { produced flowcharts in Emacs. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://www.gnu.org/software/cflow/"; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/cf/cfm/package.nix b/pkgs/by-name/cf/cfm/package.nix index 769488e20325..9209a64b4e02 100644 --- a/pkgs/by-name/cf/cfm/package.nix +++ b/pkgs/by-name/cf/cfm/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = with lib; { + meta = { homepage = "https://github.com/willeccles/cfm"; description = "Simple and fast TUI file manager with no dependencies"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "cfm"; }; } diff --git a/pkgs/by-name/cf/cfonts/package.nix b/pkgs/by-name/cf/cfonts/package.nix index 226aa06b9f45..48c0aa7f68b3 100644 --- a/pkgs/by-name/cf/cfonts/package.nix +++ b/pkgs/by-name/cf/cfonts/package.nix @@ -14,11 +14,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Gf4W7ACyyVSCXV2RmpAfrE7Xircjk34Llk2j58cWXtU="; - meta = with lib; { + meta = { homepage = "https://github.com/dominikwilkowski/cfonts"; description = "Silly little command line tool for sexy ANSI fonts in the console"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ leifhelm ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ leifhelm ]; mainProgram = "cfonts"; }; } diff --git a/pkgs/by-name/cf/cfr/package.nix b/pkgs/by-name/cf/cfr/package.nix index f6eec5e8cdb0..f9d159a6fcb1 100644 --- a/pkgs/by-name/cf/cfr/package.nix +++ b/pkgs/by-name/cf/cfr/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { makeWrapper ${jre}/bin/java $out/bin/cfr --add-flags "-jar $jar" ''; - meta = with lib; { + meta = { description = "Another java decompiler"; mainProgram = "cfr"; longDescription = '' @@ -32,8 +32,8 @@ stdenv.mkDerivation rec { entirely in Java 6. ''; homepage = "http://www.benf.org/other/cfr/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cf/cfripper/package.nix b/pkgs/by-name/cf/cfripper/package.nix index cbbd6cbdc633..07f92599f62e 100644 --- a/pkgs/by-name/cf/cfripper/package.nix +++ b/pkgs/by-name/cf/cfripper/package.nix @@ -59,12 +59,12 @@ python3.pkgs.buildPythonApplication rec { "cfripper" ]; - meta = with lib; { + meta = { description = "Tool for analysing CloudFormation templates"; homepage = "https://github.com/Skyscanner/cfripper"; changelog = "https://github.com/Skyscanner/cfripper/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "cfripper"; }; } diff --git a/pkgs/by-name/cf/cfs-zen-tweaks/package.nix b/pkgs/by-name/cf/cfs-zen-tweaks/package.nix index 509978486d46..61f2c5667e35 100644 --- a/pkgs/by-name/cf/cfs-zen-tweaks/package.nix +++ b/pkgs/by-name/cf/cfs-zen-tweaks/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Tweak Linux CPU scheduler for desktop responsiveness"; homepage = "https://github.com/igo95862/cfs-zen-tweaks"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/cf/cfssl/package.nix b/pkgs/by-name/cf/cfssl/package.nix index 8d18fe922bd3..57e3f8199292 100644 --- a/pkgs/by-name/cf/cfssl/package.nix +++ b/pkgs/by-name/cf/cfssl/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) cfssl; }; - meta = with lib; { + meta = { homepage = "https://cfssl.org/"; description = "Cloudflare's PKI and TLS toolkit"; - license = licenses.bsd2; - maintainers = with maintainers; [ mbrgm ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mbrgm ]; mainProgram = "cfssl"; }; } diff --git a/pkgs/by-name/cg/cgal/5.nix b/pkgs/by-name/cg/cgal/5.nix index 2615fc73d02d..7048408ac0ec 100644 --- a/pkgs/by-name/cg/cgal/5.nix +++ b/pkgs/by-name/cg/cgal/5.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "Computational Geometry Algorithms Library"; homepage = "http://cgal.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; - platforms = platforms.all; - maintainers = [ maintainers.raskin ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.raskin ]; }; } diff --git a/pkgs/by-name/cg/cgdb/package.nix b/pkgs/by-name/cg/cgdb/package.nix index 82b029a8c8c0..5c811d78afba 100644 --- a/pkgs/by-name/cg/cgdb/package.nix +++ b/pkgs/by-name/cg/cgdb/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = with lib; { + meta = { description = "Curses interface to gdb"; mainProgram = "cgdb"; homepage = "https://cgdb.github.io/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; - platforms = with platforms; linux ++ cygwin; + platforms = with lib.platforms; linux ++ cygwin; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/cg/cgiserver/package.nix b/pkgs/by-name/cg/cgiserver/package.nix index f26d44a1d0b4..31feedaf14a1 100644 --- a/pkgs/by-name/cg/cgiserver/package.nix +++ b/pkgs/by-name/cg/cgiserver/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-mygMtVbNWwtIkxTGxMnuAMUU0mp49NZ50B9d436nWgI="; - meta = with lib; { + meta = { homepage = "https://src.anomalous.eu/cgiserver/about/"; description = "Lightweight web server for sandboxing CGI applications"; mainProgram = "cgiserver"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.osl3; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.osl3; }; } diff --git a/pkgs/by-name/cg/cgl/package.nix b/pkgs/by-name/cg/cgl/package.nix index 3f4ebde2354e..5e090e2129c4 100644 --- a/pkgs/by-name/cg/cgl/package.nix +++ b/pkgs/by-name/cg/cgl/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { osi ]; - meta = with lib; { + meta = { description = "Cut Generator Library"; homepage = "https://github.com/coin-or/Cgl"; - license = licenses.epl20; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/cg/cglm/package.nix b/pkgs/by-name/cg/cglm/package.nix index 2a5272dd06d2..7ab692763c03 100644 --- a/pkgs/by-name/cg/cglm/package.nix +++ b/pkgs/by-name/cg/cglm/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { --replace '\$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR} ''; - meta = with lib; { + meta = { homepage = "https://github.com/recp/cglm"; description = "Highly Optimized Graphics Math (glm) for C"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cg/cgminer/package.nix b/pkgs/by-name/cg/cgminer/package.nix index 2104e05a834b..8e96b24e0310 100644 --- a/pkgs/by-name/cg/cgminer/package.nix +++ b/pkgs/by-name/cg/cgminer/package.nix @@ -65,15 +65,15 @@ stdenv.mkDerivation rec { # first defined here env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = with lib; { + meta = { description = "CPU/GPU miner in c for bitcoin"; mainProgram = "cgminer"; homepage = "https://github.com/ckolivas/cgminer"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ offline mmahut ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cg/cgoban/package.nix b/pkgs/by-name/cg/cgoban/package.nix index cddcbf93d391..5829df65df2e 100644 --- a/pkgs/by-name/cg/cgoban/package.nix +++ b/pkgs/by-name/cg/cgoban/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Client for the KGS Go Server"; mainProgram = "cgoban"; homepage = "https://www.gokgs.com/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.free; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.free; maintainers = [ ]; platforms = temurin-jre-bin-17.meta.platforms; }; diff --git a/pkgs/by-name/cg/cgt-calc/package.nix b/pkgs/by-name/cg/cgt-calc/package.nix index 23a33881ab63..ee7aeb9813c3 100644 --- a/pkgs/by-name/cg/cgt-calc/package.nix +++ b/pkgs/by-name/cg/cgt-calc/package.nix @@ -37,12 +37,12 @@ python3Packages.buildPythonApplication rec { "${lib.getBin texliveSmall}/bin" ]; - meta = with lib; { + meta = { description = "UK capital gains tax calculator"; homepage = "https://github.com/KapJI/capital-gains-calculator"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "cgt-calc"; - maintainers = with maintainers; [ ambroisie ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ambroisie ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cg/cgterm/package.nix b/pkgs/by-name/cg/cgterm/package.nix index a9ee641df1d3..4a27cd58c596 100644 --- a/pkgs/by-name/cg/cgterm/package.nix +++ b/pkgs/by-name/cg/cgterm/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "C/G telnet client for C64 BBS's"; homepage = "https://github.com/MagerValp/CGTerm"; - license = licenses.bsd2; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "cg-term"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/cg/cgui/package.nix b/pkgs/by-name/cg/cgui/package.nix index ed6425d2290b..c6d8eeadae8f 100644 --- a/pkgs/by-name/cg/cgui/package.nix +++ b/pkgs/by-name/cg/cgui/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { makeFlags = [ "SYSTEM_DIR=$(out)" ]; - meta = with lib; { + meta = { description = "Multiplatform basic GUI library"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; - license = licenses.free; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.free; }; } diff --git a/pkgs/by-name/ch/chamber/package.nix b/pkgs/by-name/ch/chamber/package.nix index 2a8b9afa6178..4ce0c009cbb3 100644 --- a/pkgs/by-name/ch/chamber/package.nix +++ b/pkgs/by-name/ch/chamber/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X main.Version=v${version}" ]; - meta = with lib; { + meta = { description = "Tool for managing secrets by storing them in AWS SSM Parameter Store"; homepage = "https://github.com/segmentio/chamber"; - license = licenses.mit; - maintainers = with maintainers; [ kalekseev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalekseev ]; mainProgram = "chamber"; }; } diff --git a/pkgs/by-name/ch/changetower/package.nix b/pkgs/by-name/ch/changetower/package.nix index e3496e4fe279..f3e10234483f 100644 --- a/pkgs/by-name/ch/changetower/package.nix +++ b/pkgs/by-name/ch/changetower/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-eA2gReP2PbCPHAQGjC/4CvalfczyCAuNNlS3zOHUT0E="; - meta = with lib; { + meta = { description = "Tools to watch for webppage changes"; homepage = "https://github.com/Dc4ts/ChangeTower"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ChangeTower"; }; } diff --git a/pkgs/by-name/ch/charasay/package.nix b/pkgs/by-name/ch/charasay/package.nix index b6449fde99bd..c69556333957 100644 --- a/pkgs/by-name/ch/charasay/package.nix +++ b/pkgs/by-name/ch/charasay/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/chara completions --shell zsh) ''; - meta = with lib; { + meta = { description = "Future of cowsay - Colorful characters saying something"; homepage = "https://github.com/latipun7/charasay"; - license = licenses.mit; - maintainers = with maintainers; [ hmajid2301 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hmajid2301 ]; mainProgram = "chara"; }; } diff --git a/pkgs/by-name/ch/charis-sil/package.nix b/pkgs/by-name/ch/charis-sil/package.nix index 9d2614f965c9..71e143a87ffc 100644 --- a/pkgs/by-name/ch/charis-sil/package.nix +++ b/pkgs/by-name/ch/charis-sil/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/charis"; description = "Family of highly readable fonts for broad multilingual use"; longDescription = '' @@ -30,8 +30,8 @@ stdenvNoCC.mkDerivation rec { The goal for this product was to provide a single Unicode-based font family that would contain a comprehensive inventory of glyphs needed for almost any Roman- or Cyrillic-based writing system, whether used for phonetic or orthographic needs. In addition, there is provision for other characters and symbols useful to linguists. This font makes use of state-of-the-art font technologies to support complex typographic issues, such as the need to position arbitrary combinations of base glyphs and diacritics optimally. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.f--t ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.f--t ]; }; } diff --git a/pkgs/by-name/ch/charls/package.nix b/pkgs/by-name/ch/charls/package.nix index 2887eb8e5774..430f289ec253 100644 --- a/pkgs/by-name/ch/charls/package.nix +++ b/pkgs/by-name/ch/charls/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { # but the recommended `charlstest -unittest` fails with an inscrutable C++ IO error doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/team-charls/charls"; description = "JPEG-LS library implementation in C++"; - maintainers = with maintainers; [ bcdarwin ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ch/chars/package.nix b/pkgs/by-name/ch/chars/package.nix index 00a5a7cb78f0..0070d478c3e6 100644 --- a/pkgs/by-name/ch/chars/package.nix +++ b/pkgs/by-name/ch/chars/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; }; - meta = with lib; { + meta = { description = "Commandline tool to display information about unicode characters"; mainProgram = "chars"; homepage = "https://github.com/antifuchs/chars"; - license = licenses.mit; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bbigras ]; }; } diff --git a/pkgs/by-name/ch/chart-testing/package.nix b/pkgs/by-name/ch/chart-testing/package.nix index de3c2d68332a..cface28c16ed 100644 --- a/pkgs/by-name/ch/chart-testing/package.nix +++ b/pkgs/by-name/ch/chart-testing/package.nix @@ -64,11 +64,11 @@ buildGoModule rec { } ''; - meta = with lib; { + meta = { description = "Tool for testing Helm charts"; homepage = "https://github.com/helm/chart-testing"; - license = licenses.asl20; - maintainers = with maintainers; [ atkinschang ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ atkinschang ]; mainProgram = "ct"; }; } diff --git a/pkgs/by-name/ch/charybdis/package.nix b/pkgs/by-name/ch/charybdis/package.nix index 52235a2e3a97..714d68cd0610 100644 --- a/pkgs/by-name/ch/charybdis/package.nix +++ b/pkgs/by-name/ch/charybdis/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { gnutls ]; - meta = with lib; { + meta = { description = "IRCv3 server designed to be highly scalable"; homepage = "https://github.com/charybdis-ircd/charybdis"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lassulus ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lassulus ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ch/chase/package.nix b/pkgs/by-name/ch/chase/package.nix index 240e9a85bebf..a22ff96a6180 100644 --- a/pkgs/by-name/ch/chase/package.nix +++ b/pkgs/by-name/ch/chase/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { "LIBS=-lgc" ]; - meta = with lib; { + meta = { description = "Follow a symlink and print out its target file"; longDescription = '' A commandline program that chases symbolic filesystems links to the original file ''; homepage = "https://qa.debian.org/developer.php?login=rotty%40debian.org"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.polyrod ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.polyrod ]; + platforms = lib.platforms.all; mainProgram = "chase"; }; } diff --git a/pkgs/by-name/ch/chatblade/package.nix b/pkgs/by-name/ch/chatblade/package.nix index 50cef1df9416..5736b0c2974f 100644 --- a/pkgs/by-name/ch/chatblade/package.nix +++ b/pkgs/by-name/ch/chatblade/package.nix @@ -33,11 +33,11 @@ python3Packages.buildPythonApplication rec { tiktoken ]; - meta = with lib; { + meta = { homepage = "https://github.com/npiv/chatblade/"; description = "CLI Swiss Army Knife for ChatGPT"; mainProgram = "chatblade"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ deejayem ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ deejayem ]; }; } diff --git a/pkgs/by-name/ch/chatgpt-cli/package.nix b/pkgs/by-name/ch/chatgpt-cli/package.nix index 047336868ae2..852e503baf88 100644 --- a/pkgs/by-name/ch/chatgpt-cli/package.nix +++ b/pkgs/by-name/ch/chatgpt-cli/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { subPackages = [ "cmd/chatgpt" ]; - meta = with lib; { + meta = { description = "Interactive CLI for ChatGPT"; homepage = "https://github.com/j178/chatgpt"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "chatgpt"; - maintainers = with maintainers; [ Ruixi-rebirth ]; + maintainers = with lib.maintainers; [ Ruixi-rebirth ]; }; } diff --git a/pkgs/by-name/ch/chatgpt-shell-cli/package.nix b/pkgs/by-name/ch/chatgpt-shell-cli/package.nix index 5a2ab5ae10da..cae333008f9a 100644 --- a/pkgs/by-name/ch/chatgpt-shell-cli/package.nix +++ b/pkgs/by-name/ch/chatgpt-shell-cli/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/0xacx/chatGPT-shell-cli"; description = "Simple shell script to use OpenAI's ChatGPT and DALL-E from the terminal. No Python or JS required"; - license = licenses.mit; - maintainers = with maintainers; [ jfvillablanca ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jfvillablanca ]; }; } diff --git a/pkgs/by-name/ch/chatty/package.nix b/pkgs/by-name/ch/chatty/package.nix index 703286f096b3..c142e52bb501 100644 --- a/pkgs/by-name/ch/chatty/package.nix +++ b/pkgs/by-name/ch/chatty/package.nix @@ -76,13 +76,13 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = with lib; { + meta = { description = "XMPP and SMS messaging via libpurple and ModemManager"; mainProgram = "chatty"; homepage = "https://gitlab.gnome.org/World/Chatty"; changelog = "https://gitlab.gnome.org/World/Chatty/-/blob/${finalAttrs.src.tag}/NEWS"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ch/chayang/package.nix b/pkgs/by-name/ch/chayang/package.nix index 0be994cdda62..4af922aa77bd 100644 --- a/pkgs/by-name/ch/chayang/package.nix +++ b/pkgs/by-name/ch/chayang/package.nix @@ -39,16 +39,16 @@ stdenv.mkDerivation (finalAttrs: { wayland ]; - meta = with lib; { + meta = { description = "Gradually dim the screen on Wayland"; homepage = "https://git.sr.ht/~emersion/chayang/"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' Gradually dim the screen on Wayland. Can be used to implement a grace period before locking the session. ''; - maintainers = with maintainers; [ mxkrsv ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ mxkrsv ]; + platforms = lib.platforms.linux; mainProgram = "chayang"; }; }) diff --git a/pkgs/by-name/ch/cheat/package.nix b/pkgs/by-name/ch/cheat/package.nix index 6caa772fef06..a50cca642123 100644 --- a/pkgs/by-name/ch/cheat/package.nix +++ b/pkgs/by-name/ch/cheat/package.nix @@ -44,10 +44,10 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Create and view interactive cheatsheets on the command-line"; - maintainers = with maintainers; [ mic92 ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ mic92 ]; + license = with lib.licenses; [ gpl3 mit ]; diff --git a/pkgs/by-name/ch/check/package.nix b/pkgs/by-name/ch/check/package.nix index 853bc99382bb..dd8566805aff 100644 --- a/pkgs/by-name/ch/check/package.nix +++ b/pkgs/by-name/ch/check/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { # Test can randomly fail: https://hydra.nixos.org/build/7243912 doCheck = false; - meta = with lib; { + meta = { description = "Unit testing framework for C"; longDescription = '' @@ -35,8 +35,8 @@ stdenv.mkDerivation rec { homepage = "https://libcheck.github.io/check/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; mainProgram = "checkmk"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ch/checkmake/package.nix b/pkgs/by-name/ch/checkmake/package.nix index c86964de7c83..dd8091f3ba44 100644 --- a/pkgs/by-name/ch/checkmake/package.nix +++ b/pkgs/by-name/ch/checkmake/package.nix @@ -47,12 +47,12 @@ buildGoModule rec { installManPage man/man1/checkmake.1 ''; - meta = with lib; { + meta = { description = "Experimental tool for linting and checking Makefiles"; mainProgram = "checkmake"; homepage = "https://github.com/mrtazz/checkmake"; changelog = "https://github.com/mrtazz/checkmake/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' checkmake is an experimental tool for linting and checking Makefiles. It may not do what you want it to. diff --git a/pkgs/by-name/ch/checkra1n/package.nix b/pkgs/by-name/ch/checkra1n/package.nix index 3c58885a2777..b65c5da47d26 100644 --- a/pkgs/by-name/ch/checkra1n/package.nix +++ b/pkgs/by-name/ch/checkra1n/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { install -m755 $src $out/bin/${pname} ''; - meta = with lib; { + meta = { description = "Jailbreak for iPhone 5s though iPhone X, iOS 12.0 and up"; homepage = "https://checkra.in/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ch/checksec/package.nix b/pkgs/by-name/ch/checksec/package.nix index 970b3332da07..7338e2b9a5dd 100644 --- a/pkgs/by-name/ch/checksec/package.nix +++ b/pkgs/by-name/ch/checksec/package.nix @@ -35,13 +35,13 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Tool for checking security bits on executables"; mainProgram = "checksec"; homepage = "https://slimm609.github.io/checksec/"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice sdht0 ]; diff --git a/pkgs/by-name/ch/cheesecutter/package.nix b/pkgs/by-name/ch/cheesecutter/package.nix index 46bdd57d2376..42531867b15c 100644 --- a/pkgs/by-name/ch/cheesecutter/package.nix +++ b/pkgs/by-name/ch/cheesecutter/package.nix @@ -61,15 +61,15 @@ stdenv.mkDerivation { patchelf --set-rpath "$rpath:${rpathSDL}" $out/bin/ccutter ''; - meta = with lib; { + meta = { description = "Tracker program for composing music for the SID chip"; homepage = "https://github.com/theyamo/CheeseCutter/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; - maintainers = with maintainers; [ OPNA2608 ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; }; } diff --git a/pkgs/by-name/ch/chelf/package.nix b/pkgs/by-name/ch/chelf/package.nix index 790bc3bdf58b..addf2f4e49be 100644 --- a/pkgs/by-name/ch/chelf/package.nix +++ b/pkgs/by-name/ch/chelf/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { mv chelf $out/bin/chelf ''; - meta = with lib; { + meta = { description = "Change or display the stack size of an ELF binary"; homepage = "https://github.com/Gottox/chelf"; - license = licenses.bsd2; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "chelf"; }; } diff --git a/pkgs/by-name/ch/chemtool/package.nix b/pkgs/by-name/ch/chemtool/package.nix index a3d57e1213ff..9fac17fa9a0c 100644 --- a/pkgs/by-name/ch/chemtool/package.nix +++ b/pkgs/by-name/ch/chemtool/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ fig2dev ]}") ''; - meta = with lib; { + meta = { homepage = "http://ruby.chemie.uni-freiburg.de/~martin/chemtool/"; description = "Draw chemical structures"; longDescription = '' @@ -54,8 +54,8 @@ stdenv.mkDerivation rec { symbols, seven colors, drawing at several zoom scales, and square and hexagonal backdrop grids for easier alignment. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ch/cherry/package.nix b/pkgs/by-name/ch/cherry/package.nix index d9554124b5d6..55f778cc7372 100644 --- a/pkgs/by-name/ch/cherry/package.nix +++ b/pkgs/by-name/ch/cherry/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { mkfontdir $out/share/fonts/misc ''; - meta = with lib; { + meta = { description = "cherry font"; homepage = "https://github.com/turquoise-hexagon/cherry"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ch/chez-matchable/package.nix b/pkgs/by-name/ch/chez-matchable/package.nix index 621983e5b41c..88288690db47 100644 --- a/pkgs/by-name/ch/chez-matchable/package.nix +++ b/pkgs/by-name/ch/chez-matchable/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "Library for ChezScheme providing the portable hygenic pattern matcher by Alex Shinn"; homepage = "https://github.com/fedeinthemix/chez-matchable/"; - maintainers = [ maintainers.jitwit ]; - license = licenses.publicDomain; + maintainers = [ lib.maintainers.jitwit ]; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/ch/chez-mit/package.nix b/pkgs/by-name/ch/chez-mit/package.nix index bba42958b0c3..e6e0fd7ebd12 100644 --- a/pkgs/by-name/ch/chez-mit/package.nix +++ b/pkgs/by-name/ch/chez-mit/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "MIT/GNU Scheme compatibility library for Chez Scheme"; homepage = "https://github.com/fedeinthemix/chez-mit/"; - maintainers = [ maintainers.jitwit ]; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.jitwit ]; + license = lib.licenses.gpl3Plus; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ch/chez-scmutils/package.nix b/pkgs/by-name/ch/chez-scmutils/package.nix index faecbe619935..7464cf168cbe 100644 --- a/pkgs/by-name/ch/chez-scmutils/package.nix +++ b/pkgs/by-name/ch/chez-scmutils/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "Port of the 'MIT Scmutils' library to Chez Scheme"; homepage = "https://github.com/fedeinthemix/chez-scmutils/"; - maintainers = [ maintainers.jitwit ]; - license = licenses.gpl3; + maintainers = [ lib.maintainers.jitwit ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/ch/chez-srfi/package.nix b/pkgs/by-name/ch/chez-srfi/package.nix index 5b1e72851ba6..1079950de668 100644 --- a/pkgs/by-name/ch/chez-srfi/package.nix +++ b/pkgs/by-name/ch/chez-srfi/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "This package provides a collection of SRFI libraries for Chez Scheme"; homepage = "https://github.com/fedeinthemix/chez-srfi/"; - maintainers = [ maintainers.jitwit ]; - license = licenses.x11; + maintainers = [ lib.maintainers.jitwit ]; + license = lib.licenses.x11; }; } diff --git a/pkgs/by-name/ch/chipmunk/package.nix b/pkgs/by-name/ch/chipmunk/package.nix index 9e27bce8dcda..30f004669f1a 100644 --- a/pkgs/by-name/ch/chipmunk/package.nix +++ b/pkgs/by-name/ch/chipmunk/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { cp demo/chipmunk_demos $out/bin ''; - meta = with lib; { + meta = { description = "Fast and lightweight 2D game physics library"; mainProgram = "chipmunk_demos"; homepage = "http://chipmunk2d.net/"; - license = licenses.mit; - platforms = platforms.unix; # supports Windows and MacOS as well, but those require more work + license = lib.licenses.mit; + platforms = lib.platforms.unix; # supports Windows and MacOS as well, but those require more work }; } diff --git a/pkgs/by-name/ch/chkcrontab/package.nix b/pkgs/by-name/ch/chkcrontab/package.nix index 7c6101f94d2b..9adc6be51994 100644 --- a/pkgs/by-name/ch/chkcrontab/package.nix +++ b/pkgs/by-name/ch/chkcrontab/package.nix @@ -16,10 +16,10 @@ buildPythonApplication rec { sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn"; }; - meta = with lib; { + meta = { description = "Tool to detect crontab errors"; mainProgram = "chkcrontab"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; homepage = "https://github.com/lyda/chkcrontab"; }; diff --git a/pkgs/by-name/ch/chmlib/package.nix b/pkgs/by-name/ch/chmlib/package.nix index 6af88b2a2c3a..28653a09f920 100644 --- a/pkgs/by-name/ch/chmlib/package.nix +++ b/pkgs/by-name/ch/chmlib/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { "--enable-devel" ]; - meta = with lib; { + meta = { homepage = "http://www.jedrea.com/chmlib"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; description = "Library for dealing with Microsoft ITSS/CHM format files"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ch/chntpw/package.nix b/pkgs/by-name/ch/chntpw/package.nix index 28f72fbd0285..94e8aa17624c 100644 --- a/pkgs/by-name/ch/chntpw/package.nix +++ b/pkgs/by-name/ch/chntpw/package.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { make install PREFIX=$out ''; - meta = with lib; { + meta = { homepage = "http://pogostick.net/~pnh/ntpasswd/"; description = "Utility to reset the password of any user that has a valid local account on a Windows system"; maintainers = with lib.maintainers; [ deepfire ]; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ch/cholmod-extra/package.nix b/pkgs/by-name/ch/cholmod-extra/package.nix index ba149490eba9..25594400d56a 100644 --- a/pkgs/by-name/ch/cholmod-extra/package.nix +++ b/pkgs/by-name/ch/cholmod-extra/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/jluttine/cholmod-extra"; description = "Set of additional routines for SuiteSparse CHOLMOD Module"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ jluttine ]; - platforms = with platforms; unix; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ jluttine ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/ch/chonburi-font/package.nix b/pkgs/by-name/ch/chonburi-font/package.nix index 8cf28164e96a..25a6c8d8e856 100644 --- a/pkgs/by-name/ch/chonburi-font/package.nix +++ b/pkgs/by-name/ch/chonburi-font/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://cadsondemak.github.io/chonburi/"; description = "Didonic Thai and Latin display typeface"; longDescription = '' @@ -38,8 +38,8 @@ stdenv.mkDerivation { the family to other weights including both narrow and extended version. It is also ready to be matched with other non-Latin script. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.toastal ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.toastal ]; }; } diff --git a/pkgs/by-name/ch/choose/package.nix b/pkgs/by-name/ch/choose/package.nix index 3e6597d8722f..31da68a6bc12 100644 --- a/pkgs/by-name/ch/choose/package.nix +++ b/pkgs/by-name/ch/choose/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-NVpkCs1QY2e+WiI9nk1uz/j3pOtsJpMwgAMspB6Bs1E="; - meta = with lib; { + meta = { description = "Human-friendly and fast alternative to cut and (sometimes) awk"; mainProgram = "choose"; homepage = "https://github.com/theryangeary/choose"; - license = licenses.gpl3; - maintainers = with maintainers; [ sohalt ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ sohalt ]; }; } diff --git a/pkgs/by-name/ch/chopchop/package.nix b/pkgs/by-name/ch/chopchop/package.nix index 5d75efb611d8..ccb60a82edf1 100644 --- a/pkgs/by-name/ch/chopchop/package.nix +++ b/pkgs/by-name/ch/chopchop/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-UxWARWOFp8AYKEdiJwRZNwFrphgMTJSZjnvktTNOsgU="; - meta = with lib; { + meta = { description = "CLI to search for sensitive services/files/folders"; homepage = "https://github.com/michelin/ChopChop"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ch/chow-centaur/package.nix b/pkgs/by-name/ch/chow-centaur/package.nix index 0d32a5b0e6fa..08aae7013add 100644 --- a/pkgs/by-name/ch/chow-centaur/package.nix +++ b/pkgs/by-name/ch/chow-centaur/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation (finalAttrs: { cp -r VST3/ChowCentaur.vst3 $out/lib/vst3 ''; - meta = with lib; { + meta = { description = "Digital emulation of the Klon Centaur guitar pedal using RNNs, Wave Digital Filters, and more"; homepage = "https://github.com/jatinchowdhury18/KlonCentaur"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ magnetophon ]; + maintainers = with lib.maintainers; [ magnetophon ]; }; }) diff --git a/pkgs/by-name/ch/chow-phaser/package.nix b/pkgs/by-name/ch/chow-phaser/package.nix index 56c59cdeba11..d71c4124ad14 100644 --- a/pkgs/by-name/ch/chow-phaser/package.nix +++ b/pkgs/by-name/ch/chow-phaser/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation (finalAttrs: { cp Standalone/ChowPhaserStereo $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/jatinchowdhury18/ChowPhaser"; description = "Phaser effect based loosely on the Schulte Compact Phasing 'A'"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; mainProgram = "ChowPhaserStereo"; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ch/chow-tape-model/package.nix b/pkgs/by-name/ch/chow-tape-model/package.nix index 02d631076bb6..e61a13ab1618 100644 --- a/pkgs/by-name/ch/chow-tape-model/package.nix +++ b/pkgs/by-name/ch/chow-tape-model/package.nix @@ -126,12 +126,12 @@ stdenv.mkDerivation (finalAttrs: { ] ); - meta = with lib; { + meta = { homepage = "https://github.com/jatinchowdhury18/AnalogTapeModel"; description = "Physical modelling signal processing for analog tape recording. LV2, VST3, CLAP, and standalone"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; # error: 'vvtanh' was not declared in this scope; did you mean 'tanh'? # error: no matching function for call to 'juce::dsp::SIMDRegister::SIMDRegister(xsimd::simd_batch_traits >::batch_bool_type)' broken = stdenv.hostPlatform.isAarch64; # since 2021-12-27 on hydra (update to 2.10): https://hydra.nixos.org/build/162558991 diff --git a/pkgs/by-name/ch/chroma/package.nix b/pkgs/by-name/ch/chroma/package.nix index d795feef29fe..e2a2039a542a 100644 --- a/pkgs/by-name/ch/chroma/package.nix +++ b/pkgs/by-name/ch/chroma/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { "main.date=${srcInfo.date}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/alecthomas/chroma"; description = "General purpose syntax highlighter in pure Go"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; mainProgram = "chroma"; }; } diff --git a/pkgs/by-name/ch/chrome-export/package.nix b/pkgs/by-name/ch/chrome-export/package.nix index ce8e8acf606c..92dc04c14bba 100644 --- a/pkgs/by-name/ch/chrome-export/package.nix +++ b/pkgs/by-name/ch/chrome-export/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { bash test/run_tests $out/bin ''; - meta = with lib; { + meta = { description = "Scripts to save Google Chrome's bookmarks and history as HTML bookmarks files"; homepage = "https://github.com/bdesham/chrome-export"; - license = [ licenses.isc ]; - maintainers = [ maintainers.bdesham ]; + license = [ lib.licenses.isc ]; + maintainers = [ lib.maintainers.bdesham ]; platforms = python3.meta.platforms; }; } diff --git a/pkgs/by-name/ch/chromium-bsu/package.nix b/pkgs/by-name/ch/chromium-bsu/package.nix index 84e57c61ab1d..2afd20242509 100644 --- a/pkgs/by-name/ch/chromium-bsu/package.nix +++ b/pkgs/by-name/ch/chromium-bsu/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { install -D misc/chromium-bsu.desktop $out/share/applications/chromium-bsu.desktop ''; - meta = with lib; { + meta = { homepage = "http://chromium-bsu.sourceforge.net/"; description = "Fast paced, arcade-style, top-scrolling space shooter"; mainProgram = "chromium-bsu"; - license = licenses.artistic1; + license = lib.licenses.artistic1; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ch/chrpath/package.nix b/pkgs/by-name/ch/chrpath/package.nix index f1834792006b..51007a25d2e9 100644 --- a/pkgs/by-name/ch/chrpath/package.nix +++ b/pkgs/by-name/ch/chrpath/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries"; mainProgram = "chrpath"; longDescription = '' @@ -27,8 +27,8 @@ stdenv.mkDerivation rec { linker should look for the libraries needed for a program. ''; homepage = "https://codeberg.org/pere/chrpath"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/ch/chrysalis/package.nix b/pkgs/by-name/ch/chrysalis/package.nix index 7d2e25026722..f482e0b54145 100644 --- a/pkgs/by-name/ch/chrysalis/package.nix +++ b/pkgs/by-name/ch/chrysalis/package.nix @@ -39,7 +39,7 @@ appimageTools.wrapType2 { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Graphical configurator for Kaleidoscope-powered keyboards"; homepage = "https://github.com/keyboardio/Chrysalis"; license = lib.licenses.gpl3Only; diff --git a/pkgs/by-name/ch/cht-sh/package.nix b/pkgs/by-name/ch/cht-sh/package.nix index 964af510887f..4f6a9927ecb2 100644 --- a/pkgs/by-name/ch/cht-sh/package.nix +++ b/pkgs/by-name/ch/cht-sh/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation { url = "https://github.com/chubin/cheat.sh.git"; }; - meta = with lib; { + meta = { description = "CLI client for cheat.sh, a community driven cheat sheet"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz evanjs ]; diff --git a/pkgs/by-name/ci/ciao/package.nix b/pkgs/by-name/ci/ciao/package.nix index bda9db0bab05..80f6ed061d60 100644 --- a/pkgs/by-name/ci/ciao/package.nix +++ b/pkgs/by-name/ci/ciao/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { ./ciao-boot.sh install ''; - meta = with lib; { + meta = { homepage = "https://ciao-lang.org/"; description = "General purpose, multi-paradigm programming language in the Prolog family"; - license = licenses.lgpl21; - maintainers = with maintainers; [ suhr ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ suhr ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/ciao.x86_64-darwin }; } diff --git a/pkgs/by-name/ci/cicero-tui/package.nix b/pkgs/by-name/ci/cicero-tui/package.nix index a315fa443702..a98b2312a315 100644 --- a/pkgs/by-name/ci/cicero-tui/package.nix +++ b/pkgs/by-name/ci/cicero-tui/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-D+CcUNVMgn8fiGcr+dYkQJoRHzpo3l5qTacCUKCydOQ="; - meta = with lib; { + meta = { description = "Unicode tool with a terminal user interface"; homepage = "https://github.com/eyeplum/cicero-tui"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; mainProgram = "cicero"; }; } diff --git a/pkgs/by-name/ci/cider/package.nix b/pkgs/by-name/ci/cider/package.nix index c4754a06da6b..3b31bce8d851 100644 --- a/pkgs/by-name/ci/cider/package.nix +++ b/pkgs/by-name/ci/cider/package.nix @@ -30,12 +30,12 @@ appimageTools.wrapType2 rec { cp -r ${contents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "New look into listening and enjoying Apple Music in style and performance"; homepage = "https://github.com/ciderapp/Cider"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "cider"; - maintainers = [ maintainers.cigrainger ]; + maintainers = [ lib.maintainers.cigrainger ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ci/cidr-merger/package.nix b/pkgs/by-name/ci/cidr-merger/package.nix index 5626be5d1d91..5182644c5bc7 100644 --- a/pkgs/by-name/ci/cidr-merger/package.nix +++ b/pkgs/by-name/ci/cidr-merger/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-cPri384AX/FdfNtzt3xj4bF+/izSa4sZuAohK0R/7H4="; - meta = with lib; { + meta = { description = "Simple command line tool to merge ip/ip cidr/ip range, supports IPv4/IPv6"; mainProgram = "cidr-merger"; homepage = "https://github.com/zhanhb/cidr-merger"; - license = licenses.mit; - maintainers = with maintainers; [ cyounkins ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cyounkins ]; }; } diff --git a/pkgs/by-name/ci/cie-middleware-linux/package.nix b/pkgs/by-name/ci/cie-middleware-linux/package.nix index 4d51469fe91d..6458e211f7d8 100644 --- a/pkgs/by-name/ci/cie-middleware-linux/package.nix +++ b/pkgs/by-name/ci/cie-middleware-linux/package.nix @@ -132,7 +132,7 @@ stdenv.mkDerivation { preGradleUpdate = "cd ../.."; - meta = with lib; { + meta = { homepage = "https://github.com/M0Rf30/cie-middleware-linux"; description = "Middleware for the Italian Electronic Identity Card (CIE)"; longDescription = '' @@ -143,8 +143,8 @@ stdenv.mkDerivation { distributed by the Italian government, is essentially lacking a build system and is in violation of the license of the PoDoFo library. ''; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/ci/ciel/package.nix b/pkgs/by-name/ci/ciel/package.nix index f0d957ed52e4..cfa7667cc50c 100644 --- a/pkgs/by-name/ci/ciel/package.nix +++ b/pkgs/by-name/ci/ciel/package.nix @@ -58,12 +58,12 @@ rustPlatform.buildRustPackage rec { --zsh completions/_ciel ''; - meta = with lib; { + meta = { description = "Tool for controlling AOSC OS packaging environments using multi-layer filesystems and containers"; homepage = "https://github.com/AOSC-Dev/ciel-rs"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ A1ca7raz yisuidenghua ]; diff --git a/pkgs/by-name/ci/cifs-utils/package.nix b/pkgs/by-name/ci/cifs-utils/package.nix index 9d7d307459bd..27fa81073e87 100644 --- a/pkgs/by-name/ci/cifs-utils/package.nix +++ b/pkgs/by-name/ci/cifs-utils/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { "ac_cv_func_realloc_0_nonnull=yes" ]; - meta = with lib; { + meta = { homepage = "https://wiki.samba.org/index.php/LinuxCIFS_utils"; description = "Tools for managing Linux CIFS client filesystems"; - platforms = platforms.linux; - license = licenses.lgpl3; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl3; }; } diff --git a/pkgs/by-name/ci/ciftilib/package.nix b/pkgs/by-name/ci/ciftilib/package.nix index a9c37a0f4f0b..a45f77f23cc5 100644 --- a/pkgs/by-name/ci/ciftilib/package.nix +++ b/pkgs/by-name/ci/ciftilib/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { --replace-fail "CMAKE_POLICY(SET CMP0045 OLD)" "" ''; - meta = with lib; { + meta = { homepage = "https://github.com/Washington-University/CiftiLib"; description = "Library for reading and writing CIFTI files"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/ci/cinelerra/package.nix b/pkgs/by-name/ci/cinelerra/package.nix index 0ac6c361003a..d890f199cc07 100644 --- a/pkgs/by-name/ci/cinelerra/package.nix +++ b/pkgs/by-name/ci/cinelerra/package.nix @@ -112,12 +112,12 @@ stdenv.mkDerivation { fontconfig ]; - meta = with lib; { + meta = { description = "Professional video editing and compositing environment (community version)"; homepage = "http://cinelerra-cv.wikidot.com/"; mainProgram = "cinelerracv"; - maintainers = with maintainers; [ marcweber ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ marcweber ]; + license = lib.licenses.gpl2Only; # https://github.com/cinelerra-cv-team/cinelerra-cv/issues/3 platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ci/cinnamon-control-center/package.nix b/pkgs/by-name/ci/cinnamon-control-center/package.nix index d3b3fd3a28a6..2fc866acf2be 100644 --- a/pkgs/by-name/ci/cinnamon-control-center/package.nix +++ b/pkgs/by-name/ci/cinnamon-control-center/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon-control-center"; description = "Collection of configuration plugins used in cinnamon-settings"; mainProgram = "cinnamon-control-center"; - license = licenses.gpl2; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cinnamon-desktop/package.nix b/pkgs/by-name/ci/cinnamon-desktop/package.nix index 82d33765f183..f1f6f7db95a5 100644 --- a/pkgs/by-name/ci/cinnamon-desktop/package.nix +++ b/pkgs/by-name/ci/cinnamon-desktop/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { sed "s|/usr/share|/run/current-system/sw/share|g" -i ./schemas/* # NOTE: unless this causes a circular dependency, we could link it to cinnamon/share/cinnamon ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon-desktop"; description = "Library and data for various Cinnamon modules"; @@ -80,10 +80,10 @@ stdenv.mkDerivation rec { ''; license = [ - licenses.gpl2 - licenses.lgpl2 + lib.licenses.gpl2 + lib.licenses.lgpl2 ]; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cinnamon-menus/package.nix b/pkgs/by-name/ci/cinnamon-menus/package.nix index 2a16b445dbbc..be63b0849b30 100644 --- a/pkgs/by-name/ci/cinnamon-menus/package.nix +++ b/pkgs/by-name/ci/cinnamon-menus/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation rec { gobject-introspection ]; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon-menus"; description = "Menu system for the Cinnamon project"; license = [ - licenses.gpl2 - licenses.lgpl2 + lib.licenses.gpl2 + lib.licenses.lgpl2 ]; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cinnamon-screensaver/package.nix b/pkgs/by-name/ci/cinnamon-screensaver/package.nix index 1c60e62db173..5a43b10166ed 100644 --- a/pkgs/by-name/ci/cinnamon-screensaver/package.nix +++ b/pkgs/by-name/ci/cinnamon-screensaver/package.nix @@ -105,14 +105,14 @@ stdenv.mkDerivation rec { mv $out/libexec/cinnamon-screensaver/{.libcscreensaver.so-wrapped,libcscreensaver.so} ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon-screensaver"; description = "Cinnamon screen locker and screensaver program"; license = [ - licenses.gpl2 - licenses.lgpl2 + lib.licenses.gpl2 + lib.licenses.lgpl2 ]; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cinnamon-session/package.nix b/pkgs/by-name/ci/cinnamon-session/package.nix index 35268a0d0033..afa837d9238b 100644 --- a/pkgs/by-name/ci/cinnamon-session/package.nix +++ b/pkgs/by-name/ci/cinnamon-session/package.nix @@ -95,11 +95,11 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon-session"; description = "Cinnamon session manager"; - license = licenses.gpl2; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix b/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix index ac136d982534..65f5a6ab1a22 100644 --- a/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix +++ b/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation rec { ln -s $out/libexec/csd-backlight-helper $out/bin/cinnamon-settings-daemon/csd-backlight-helper ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon-settings-daemon"; description = "Settings daemon for the Cinnamon desktop"; - license = licenses.gpl2; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cinnamon-translations/package.nix b/pkgs/by-name/ci/cinnamon-translations/package.nix index 3739ebd18421..ee51d5421d0f 100644 --- a/pkgs/by-name/ci/cinnamon-translations/package.nix +++ b/pkgs/by-name/ci/cinnamon-translations/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { mv usr $out # files get installed like so: msgfmt -o usr/share/locale/$lang/LC_MESSAGES/$dir.mo $file ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon-translations"; description = "Translations files for the Cinnamon desktop"; - license = licenses.gpl2; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cinnamon/package.nix b/pkgs/by-name/ci/cinnamon/package.nix index f41853691399..9ca4478ec474 100644 --- a/pkgs/by-name/ci/cinnamon/package.nix +++ b/pkgs/by-name/ci/cinnamon/package.nix @@ -227,11 +227,11 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon"; description = "Cinnamon desktop environment"; - license = [ licenses.gpl2 ]; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = [ lib.licenses.gpl2 ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ci/cipher/package.nix b/pkgs/by-name/ci/cipher/package.nix index f428d91a693a..13c80ea8dda8 100644 --- a/pkgs/by-name/ci/cipher/package.nix +++ b/pkgs/by-name/ci/cipher/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple application for encoding and decoding text, designed for elementary OS"; homepage = "https://github.com/arshubham/cipher"; - maintainers = with maintainers; [ xiorcale ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ xiorcale ]; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; mainProgram = "com.github.arshubham.cipher"; }; } diff --git a/pkgs/by-name/ci/circle-flags/package.nix b/pkgs/by-name/ci/circle-flags/package.nix index 5f7bd2ece303..97411b6e3a01 100644 --- a/pkgs/by-name/ci/circle-flags/package.nix +++ b/pkgs/by-name/ci/circle-flags/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/HatScripts/circle-flags"; description = "Collection of 400+ minimal circular SVG country and state flags"; - license = licenses.mit; - maintainers = with maintainers; [ bobby285271 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bobby285271 ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ci/circleci-cli/package.nix b/pkgs/by-name/ci/circleci-cli/package.nix index 656d5db6e91b..dc50037dbad2 100644 --- a/pkgs/by-name/ci/circleci-cli/package.nix +++ b/pkgs/by-name/ci/circleci-cli/package.nix @@ -38,15 +38,15 @@ buildGoModule rec { --zsh <(HOME=$TMPDIR $out/bin/circleci completion zsh --skip-update-check) ''; - meta = with lib; { + meta = { # Box blurb edited from the AUR package circleci-cli description = '' Command to enable you to reproduce the CircleCI environment locally and run jobs as if they were running on the hosted CirleCI application. ''; - maintainers = with maintainers; [ synthetica ]; + maintainers = with lib.maintainers; [ synthetica ]; mainProgram = "circleci"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://circleci.com/"; }; } diff --git a/pkgs/by-name/ci/circom/package.nix b/pkgs/by-name/ci/circom/package.nix index a613f5eab561..0f0a433dbbd1 100644 --- a/pkgs/by-name/ci/circom/package.nix +++ b/pkgs/by-name/ci/circom/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-dkgLp6BKuublS97iRXYzbT4ztbWBD5IDMz9rDY9XgcA="; doCheck = false; - meta = with lib; { + meta = { description = "zkSnark circuit compiler"; mainProgram = "circom"; homepage = "https://github.com/iden3/circom"; changelog = "https://github.com/iden3/circom/blob/${src.rev}/RELEASES.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/by-name/ci/circumflex/package.nix b/pkgs/by-name/ci/circumflex/package.nix index 204c267bb7d3..8a43c6b9e920 100644 --- a/pkgs/by-name/ci/circumflex/package.nix +++ b/pkgs/by-name/ci/circumflex/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { } ''; - meta = with lib; { + meta = { description = "Command line tool for browsing Hacker News in your terminal"; homepage = "https://github.com/bensadeh/circumflex"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ mktip ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ mktip ]; mainProgram = "clx"; }; } diff --git a/pkgs/by-name/ci/circup/package.nix b/pkgs/by-name/ci/circup/package.nix index c7399218c2c4..0d46e8045d44 100644 --- a/pkgs/by-name/ci/circup/package.nix +++ b/pkgs/by-name/ci/circup/package.nix @@ -45,12 +45,12 @@ python3.pkgs.buildPythonApplication rec { "test_install_auto_file_bad" ]; - meta = with lib; { + meta = { description = "CircuitPython library updater"; homepage = "https://github.com/adafruit/circup"; changelog = "https://github.com/adafruit/circup/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "circup"; }; } diff --git a/pkgs/by-name/ci/cirrus-cli/package.nix b/pkgs/by-name/ci/cirrus-cli/package.nix index 2598bc2848b5..7ffa8eabc14c 100644 --- a/pkgs/by-name/ci/cirrus-cli/package.nix +++ b/pkgs/by-name/ci/cirrus-cli/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { # tests fail on read-only filesystem doCheck = false; - meta = with lib; { + meta = { description = "CLI for executing Cirrus tasks locally and in any CI"; homepage = "https://github.com/cirruslabs/cirrus-cli"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ techknowlogick ]; mainProgram = "cirrus"; }; } diff --git a/pkgs/by-name/ci/cirrusgo/package.nix b/pkgs/by-name/ci/cirrusgo/package.nix index a5ec32866a7b..5d9ec1435211 100644 --- a/pkgs/by-name/ci/cirrusgo/package.nix +++ b/pkgs/by-name/ci/cirrusgo/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-KCf2KQ8u+nX/+zMGZ6unWb/Vz6zPNkKtMioFo1FlnVI="; - meta = with lib; { + meta = { description = "Tool to scan SAAS and PAAS applications"; mainProgram = "cirrusgo"; homepage = "https://github.com/Ph33rr/cirrusgo"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ci/citations/package.nix b/pkgs/by-name/ci/citations/package.nix index 85882d414c52..7956828512eb 100644 --- a/pkgs/by-name/ci/citations/package.nix +++ b/pkgs/by-name/ci/citations/package.nix @@ -85,13 +85,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Manage your bibliographies using the BibTeX format"; homepage = "https://apps.gnome.org/app/org.gnome.World.Citations"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ benediktbroich ]; - teams = [ teams.gnome-circle ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ benediktbroich ]; + teams = [ lib.teams.gnome-circle ]; + platforms = lib.platforms.unix; mainProgram = "citations"; }; }) diff --git a/pkgs/by-name/cj/cjs/package.nix b/pkgs/by-name/cj/cjs/package.nix index e7b9bddabe16..173d92bab441 100644 --- a/pkgs/by-name/cj/cjs/package.nix +++ b/pkgs/by-name/cj/cjs/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation { patchShebangs --build build/choose-tests-locale.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cjs"; description = "JavaScript bindings for Cinnamon"; @@ -78,14 +78,14 @@ stdenv.mkDerivation { This module contains JavaScript bindings based on gobject-introspection. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus mit mpl11 ]; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/cj/cjson/package.nix b/pkgs/by-name/cj/cjson/package.nix index c1fa9f4c55cd..3c650787f2c6 100644 --- a/pkgs/by-name/cj/cjson/package.nix +++ b/pkgs/by-name/cj/cjson/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 3.10)' ''; - meta = with lib; { + meta = { homepage = "https://github.com/DaveGamble/cJSON"; description = "Ultralightweight JSON parser in ANSI C"; - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ck/ckan/package.nix b/pkgs/by-name/ck/ckan/package.nix index b0b8dd4faecc..e651321a8f6f 100644 --- a/pkgs/by-name/ck/ckan/package.nix +++ b/pkgs/by-name/ck/ckan/package.nix @@ -78,16 +78,16 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Mod manager for Kerbal Space Program"; mainProgram = "ckan"; homepage = "https://github.com/KSP-CKAN/CKAN"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Baughn ymarkus nullcube ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ck/ckbcomp/package.nix b/pkgs/by-name/ck/ckbcomp/package.nix index d9dbcf03e936..4b3b57270f4c 100644 --- a/pkgs/by-name/ck/ckbcomp/package.nix +++ b/pkgs/by-name/ck/ckbcomp/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { install -Dm0444 -t $out/share/man/man1 man/ckbcomp.1 ''; - meta = with lib; { + meta = { description = "Compiles a XKB keyboard description to a keymap suitable for loadkeys"; homepage = "https://salsa.debian.org/installer-team/console-setup"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ dezgeg ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "ckbcomp"; }; } diff --git a/pkgs/by-name/ck/cksfv/package.nix b/pkgs/by-name/ck/cksfv/package.nix index 6d78486c8d6f..5cfb5738934e 100644 --- a/pkgs/by-name/ck/cksfv/package.nix +++ b/pkgs/by-name/ck/cksfv/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "0k06aq94cn5xp4knjw0p7gz06hzh622ql2xvnrlr3q8rcmdvwwx1"; }; - meta = with lib; { + meta = { homepage = "https://zakalwe.fi/~shd/foss/cksfv/"; description = "Tool for verifying files against a SFV checksum file"; maintainers = [ ]; - platforms = platforms.all; - license = licenses.gpl2Plus; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; mainProgram = "cksfv"; }; } diff --git a/pkgs/by-name/cl/cl-launch/package.nix b/pkgs/by-name/cl/cl-launch/package.nix index 9bb52885449c..3f08e828e7b5 100644 --- a/pkgs/by-name/cl/cl-launch/package.nix +++ b/pkgs/by-name/cl/cl-launch/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { sed -e 's/\t\t@/\t\t/g' -i Makefile ''; - meta = with lib; { + meta = { description = "Common Lisp launcher script"; - license = licenses.llgpl21; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.llgpl21; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cl/cl-wordle/package.nix b/pkgs/by-name/cl/cl-wordle/package.nix index f89762e453f7..aee52e5f81e8 100644 --- a/pkgs/by-name/cl/cl-wordle/package.nix +++ b/pkgs/by-name/cl/cl-wordle/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-kkR49UwwkpZhKvBadPTUn0D/4sRVlVJowQ1+BqtBVOs="; - meta = with lib; { + meta = { description = "Wordle TUI in Rust"; homepage = "https://github.com/conradludgate/wordle"; # repo has no license, but crates.io says it's MIT - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "wordle"; }; diff --git a/pkgs/by-name/cl/cl/package.nix b/pkgs/by-name/cl/cl/package.nix index 67058ed6bf85..aabbb6630cd8 100644 --- a/pkgs/by-name/cl/cl/package.nix +++ b/pkgs/by-name/cl/cl/package.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { cp -ruv c_src doc ebin include priv src $DIR ''; - meta = with lib; { + meta = { homepage = "https://github.com/tonyrog/cl"; description = "OpenCL binding for Erlang"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cl/clamav/package.nix b/pkgs/by-name/cl/clamav/package.nix index faf7535349d5..c7b1c9d4383b 100644 --- a/pkgs/by-name/cl/clamav/package.nix +++ b/pkgs/by-name/cl/clamav/package.nix @@ -77,14 +77,14 @@ stdenv.mkDerivation rec { python3.pkgs.pytest ]; - meta = with lib; { + meta = { homepage = "https://www.clamav.net"; description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ robberer qknight ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cl/clamtk/package.nix b/pkgs/by-name/cl/clamtk/package.nix index d9f7821bad0b..83045f62dec6 100644 --- a/pkgs/by-name/cl/clamtk/package.nix +++ b/pkgs/by-name/cl/clamtk/package.nix @@ -81,15 +81,15 @@ perlPackages.buildPerlPackage rec { ) ''; - meta = with lib; { + meta = { description = '' Easy to use, lightweight front-end for ClamAV (Clam Antivirus). ''; mainProgram = "clamtk"; - license = licenses.gpl1Plus; + license = lib.licenses.gpl1Plus; homepage = "https://github.com/dave-theunsub/clamtk"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; diff --git a/pkgs/by-name/cl/clap/package.nix b/pkgs/by-name/cl/clap/package.nix index e3ae65334548..5fb18e60ca15 100644 --- a/pkgs/by-name/cl/clap/package.nix +++ b/pkgs/by-name/cl/clap/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Clever Audio Plugin API interface headers"; homepage = "https://cleveraudio.org/"; pkgConfigModules = [ "clap" ]; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ris ]; }; }) diff --git a/pkgs/by-name/cl/clapboard/package.nix b/pkgs/by-name/cl/clapboard/package.nix index a808323b4a06..a8fe6534520a 100644 --- a/pkgs/by-name/cl/clapboard/package.nix +++ b/pkgs/by-name/cl/clapboard/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-w3VR6j1ZcMQsk8r9eDqMtRJrGS6+XRM8t/pf5GpTVFA="; - meta = with lib; { + meta = { description = "Wayland clipboard manager that will make you clap"; homepage = "https://github.com/bjesus/clapboard"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya bjesus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "clapboard"; }; } diff --git a/pkgs/by-name/cl/clarity-city/package.nix b/pkgs/by-name/cl/clarity-city/package.nix index b8d68fa7c15d..f6c8edd2fca4 100644 --- a/pkgs/by-name/cl/clarity-city/package.nix +++ b/pkgs/by-name/cl/clarity-city/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source sans-serif typeface"; homepage = "https://github.com/vmware/clarity-city"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ sagikazarmark ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ sagikazarmark ]; }; }) diff --git a/pkgs/by-name/cl/classicube/package.nix b/pkgs/by-name/cl/classicube/package.nix index dd5beefbafe6..fb788a2845f1 100644 --- a/pkgs/by-name/cl/classicube/package.nix +++ b/pkgs/by-name/cl/classicube/package.nix @@ -103,12 +103,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.classicube.net/"; description = "Lightweight, custom Minecraft Classic/ClassiCube client with optional additions written from scratch in C"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ _360ied ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ _360ied ]; mainProgram = "ClassiCube"; }; } diff --git a/pkgs/by-name/cl/clatd/package.nix b/pkgs/by-name/cl/clatd/package.nix index 4e2d2742096b..0cbb8525fbaf 100644 --- a/pkgs/by-name/cl/clatd/package.nix +++ b/pkgs/by-name/cl/clatd/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.clatd = nixosTests.clatd; - meta = with lib; { + meta = { description = "464XLAT CLAT implementation for Linux"; homepage = "https://github.com/toreanderson/clatd"; - license = licenses.mit; - maintainers = with maintainers; [ jmbaur ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jmbaur ]; mainProgram = "clatd"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/cl/claws-mail/package.nix b/pkgs/by-name/cl/claws-mail/package.nix index 35df49ae809c..c3ce6862c281 100644 --- a/pkgs/by-name/cl/claws-mail/package.nix +++ b/pkgs/by-name/cl/claws-mail/package.nix @@ -343,13 +343,13 @@ stdenv.mkDerivation rec { cp claws-mail.desktop $out/share/applications ''; - meta = with lib; { + meta = { description = "User-friendly, lightweight, and fast email client"; mainProgram = "claws-mail"; homepage = "https://www.claws-mail.org/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fpletz oxzi ajs124 diff --git a/pkgs/by-name/cl/claws/package.nix b/pkgs/by-name/cl/claws/package.nix index 873c6ef6d8d1..ac3de772fa61 100644 --- a/pkgs/by-name/cl/claws/package.nix +++ b/pkgs/by-name/cl/claws/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/thehowl/claws"; description = "Interactive command line client for testing websocket servers"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "claws"; }; diff --git a/pkgs/by-name/cl/clblast/package.nix b/pkgs/by-name/cl/clblast/package.nix index c1f9cd6e7336..42825af00cda 100644 --- a/pkgs/by-name/cl/clblast/package.nix +++ b/pkgs/by-name/cl/clblast/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = with lib; { + meta = { description = "Tuned OpenCL BLAS library"; homepage = "https://github.com/CNugteren/CLBlast"; - license = licenses.asl20; - maintainers = with maintainers; [ Tungsten842 ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Tungsten842 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cl/clboss/package.nix b/pkgs/by-name/cl/clboss/package.nix index 8273720e2ca0..1f12b714b060 100644 --- a/pkgs/by-name/cl/clboss/package.nix +++ b/pkgs/by-name/cl/clboss/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Automated C-Lightning Node Manager"; homepage = "https://github.com/ZmnSCPxj/clboss"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "clboss"; }; } diff --git a/pkgs/by-name/cl/cld2/package.nix b/pkgs/by-name/cl/cld2/package.nix index 5be7109400b9..6db527faa92c 100644 --- a/pkgs/by-name/cl/cld2/package.nix +++ b/pkgs/by-name/cl/cld2/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/CLD2Owners/cld2"; description = "Compact Language Detector 2"; longDescription = '' @@ -52,8 +52,8 @@ stdenv.mkDerivation { designed to do well on very short text, lists of proper names, part numbers, etc. ''; - license = licenses.asl20; - maintainers = with maintainers; [ chvp ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ chvp ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cl/cldr-annotations/package.nix b/pkgs/by-name/cl/cldr-annotations/package.nix index 60c125758561..cf4187786989 100644 --- a/pkgs/by-name/cl/cldr-annotations/package.nix +++ b/pkgs/by-name/cl/cldr-annotations/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Names and keywords for Unicode characters from the Common Locale Data Repository"; homepage = "https://cldr.unicode.org"; - license = licenses.unicode-30; - platforms = platforms.all; - maintainers = with maintainers; [ DeeUnderscore ]; + license = lib.licenses.unicode-30; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ DeeUnderscore ]; }; } diff --git a/pkgs/by-name/cl/clearlooks-phenix/package.nix b/pkgs/by-name/cl/clearlooks-phenix/package.nix index 966616e2a36f..f46008f892d6 100644 --- a/pkgs/by-name/cl/clearlooks-phenix/package.nix +++ b/pkgs/by-name/cl/clearlooks-phenix/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { preferLocalBuild = true; - meta = with lib; { + meta = { description = "GTK3 port of the Clearlooks theme"; longDescription = '' The Clearlooks-Phénix project aims at creating a GTK3 port of Clearlooks, @@ -30,8 +30,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/jpfleury/clearlooks-phenix"; downloadPage = "https://github.com/jpfleury/clearlooks-phenix/releases"; - license = licenses.gpl3; - maintainers = [ maintainers.prikhi ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.prikhi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cl/clearlyU/package.nix b/pkgs/by-name/cl/clearlyU/package.nix index 8bd54eac6cef..bba31404b07b 100644 --- a/pkgs/by-name/cl/clearlyU/package.nix +++ b/pkgs/by-name/cl/clearlyU/package.nix @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { mkfontdir "$fontDir" ''; - meta = with lib; { + meta = { description = "Unicode font"; - license = licenses.mit; - maintainers = [ maintainers.raskin ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.raskin ]; }; } diff --git a/pkgs/by-name/cl/clematis/package.nix b/pkgs/by-name/cl/clematis/package.nix index f5e3bcd82915..28632ce71a87 100644 --- a/pkgs/by-name/cl/clematis/package.nix +++ b/pkgs/by-name/cl/clematis/package.nix @@ -17,12 +17,12 @@ buildGoModule { vendorHash = "sha256-YKu+7LFUoQwCH//URIswiaqa0rmnWZJvuSn/68G3TUA="; - meta = with lib; { + meta = { description = "Discord rich presence for MPRIS music players"; homepage = "https://github.com/TorchedSammy/Clematis"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ misterio77 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ misterio77 ]; mainProgram = "clematis"; }; } diff --git a/pkgs/by-name/cl/clex/package.nix b/pkgs/by-name/cl/clex/package.nix index ba3a3251b0bb..45baf3c9ad4b 100644 --- a/pkgs/by-name/cl/clex/package.nix +++ b/pkgs/by-name/cl/clex/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "File manager with full-screen terminal interface"; longDescription = '' CLEX (pronounced KLEKS) displays directory contents including the file @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { add-on to your favorite shell. ''; homepage = "https://github.com/xitop/clex"; - license = licenses.gpl2Plus; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/cl/clfft/package.nix b/pkgs/by-name/cl/clfft/package.nix index 5c1ed6fba19c..9df79dc4638a 100644 --- a/pkgs/by-name/cl/clfft/package.nix +++ b/pkgs/by-name/cl/clfft/package.nix @@ -48,15 +48,15 @@ stdenv.mkDerivation rec { # https://github.com/clMathLibraries/clFFT/issues/237 CXXFLAGS = "-std=c++98"; - meta = with lib; { + meta = { description = "Library containing FFT functions written in OpenCL"; longDescription = '' clFFT is a software library containing FFT functions written in OpenCL. In addition to GPU devices, the library also supports running on CPU devices to facilitate debugging and heterogeneous programming. ''; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "http://clmathlibraries.github.io/clFFT/"; - platforms = platforms.unix; - maintainers = with maintainers; [ chessai ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ chessai ]; }; } diff --git a/pkgs/by-name/cl/clhep/package.nix b/pkgs/by-name/cl/clhep/package.nix index ffa1945aed5e..c93d000e2df1 100644 --- a/pkgs/by-name/cl/clhep/package.nix +++ b/pkgs/by-name/cl/clhep/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { cmake ]; - meta = with lib; { + meta = { description = "Set of HEP-specific foundation and utility classes such as random generators, physics vectors, geometry and linear algebra"; homepage = "https://cern.ch/clhep"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only lgpl3Only ]; - maintainers = with maintainers; [ veprbl ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cl/cli11/package.nix b/pkgs/by-name/cl/cli11/package.nix index b9a807ce0e7a..dbf64e341be7 100644 --- a/pkgs/by-name/cl/cli11/package.nix +++ b/pkgs/by-name/cl/cli11/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; strictDeps = true; - meta = with lib; { + meta = { description = "Command line parser for C++11"; homepage = "https://github.com/CLIUtils/CLI11"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/cl/cli53/package.nix b/pkgs/by-name/cl/cli53/package.nix index 14508c89ca6d..da0e3351b521 100644 --- a/pkgs/by-name/cl/cli53/package.nix +++ b/pkgs/by-name/cl/cli53/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { package = cli53; }; - meta = with lib; { + meta = { description = "CLI tool for the Amazon Route 53 DNS service"; homepage = "https://github.com/barnybug/cli53"; - license = licenses.mit; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ benley ]; mainProgram = "cli53"; }; } diff --git a/pkgs/by-name/cl/cliam/package.nix b/pkgs/by-name/cl/cliam/package.nix index 83e34e1f4764..cf050f6016a4 100644 --- a/pkgs/by-name/cl/cliam/package.nix +++ b/pkgs/by-name/cl/cliam/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { --zsh <($out/bin/cliam completion zsh) ''; - meta = with lib; { + meta = { description = "Cloud agnostic IAM permissions enumerator"; mainProgram = "cliam"; homepage = "https://github.com/securisec/cliam"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/cl/clib/package.nix b/pkgs/by-name/cl/clib/package.nix index 37c0841d75b4..666a5d7275e4 100644 --- a/pkgs/by-name/cl/clib/package.nix +++ b/pkgs/by-name/cl/clib/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { buildInputs = [ curl ]; - meta = with lib; { + meta = { description = "C micro-package manager"; homepage = "https://github.com/clibs/clib"; - license = licenses.mit; - maintainers = with maintainers; [ jb55 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jb55 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cl/click/package.nix b/pkgs/by-name/cl/click/package.nix index 9dd9464a2c56..df5c8d87707b 100644 --- a/pkgs/by-name/cl/click/package.nix +++ b/pkgs/by-name/cl/click/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]; - meta = with lib; { + meta = { description = "Command Line Interactive Controller for Kubernetes"; homepage = "https://github.com/databricks/click"; - license = [ licenses.asl20 ]; - maintainers = [ maintainers.mbode ]; + license = [ lib.licenses.asl20 ]; + maintainers = [ lib.maintainers.mbode ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/cl/clickclack/package.nix b/pkgs/by-name/cl/clickclack/package.nix index 2f2f3b18cd6a..368af05775a1 100644 --- a/pkgs/by-name/cl/clickclack/package.nix +++ b/pkgs/by-name/cl/clickclack/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Vibration/audio feedback tool to be used with virtual keyboards"; homepage = "https://git.sr.ht/~proycon/clickclack"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "clickclack"; }; } diff --git a/pkgs/by-name/cl/clickhouse-backup/package.nix b/pkgs/by-name/cl/clickhouse-backup/package.nix index 64bf7098ffe3..af759e5ea520 100644 --- a/pkgs/by-name/cl/clickhouse-backup/package.nix +++ b/pkgs/by-name/cl/clickhouse-backup/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { package = clickhouse-backup; }; - meta = with lib; { + meta = { description = "Tool for easy ClickHouse backup and restore using object storage for backup files"; mainProgram = "clickhouse-backup"; homepage = "https://github.com/Altinity/clickhouse-backup"; - license = licenses.mit; - maintainers = with maintainers; [ devusb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ devusb ]; }; } diff --git a/pkgs/by-name/cl/clickhouse/generic.nix b/pkgs/by-name/cl/clickhouse/generic.nix index 6d15727f68d0..9f99eb11325a 100644 --- a/pkgs/by-name/cl/clickhouse/generic.nix +++ b/pkgs/by-name/cl/clickhouse/generic.nix @@ -251,19 +251,21 @@ llvmStdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { homepage = "https://clickhouse.com"; description = "Column-oriented database management system"; - license = licenses.asl20; + license = lib.licenses.asl20; changelog = "https://github.com/ClickHouse/ClickHouse/blob/v${version}/CHANGELOG.md"; mainProgram = "clickhouse"; # not supposed to work on 32-bit https://github.com/ClickHouse/ClickHouse/pull/23959#issuecomment-835343685 - platforms = lib.filter (x: (lib.systems.elaborate x).is64bit) (platforms.linux ++ platforms.darwin); + platforms = lib.filter (x: (lib.systems.elaborate x).is64bit) ( + lib.platforms.linux ++ lib.platforms.darwin + ); broken = stdenv.buildPlatform != stdenv.hostPlatform; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thevar1able ]; }; diff --git a/pkgs/by-name/cl/clightning/package.nix b/pkgs/by-name/cl/clightning/package.nix index 4c7893ac66f0..430e4d5066fc 100644 --- a/pkgs/by-name/cl/clightning/package.nix +++ b/pkgs/by-name/cl/clightning/package.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation rec { stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64 ) "-Wno-error=gnu-folding-constant"; - meta = with lib; { + meta = { description = "Bitcoin Lightning Network implementation in C"; longDescription = '' c-lightning is a standard compliant implementation of the Lightning @@ -105,11 +105,11 @@ stdenv.mkDerivation rec { parties for any amount. ''; homepage = "https://github.com/ElementsProject/lightning"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jb55 prusnak ]; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/cl/clima/package.nix b/pkgs/by-name/cl/clima/package.nix index 4161641879d4..f6144bc345da 100644 --- a/pkgs/by-name/cl/clima/package.nix +++ b/pkgs/by-name/cl/clima/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-3BNDo5ksra1d8X6yQZYSlS2CSiZfkuTHkQtIC2ckbKE="; - meta = with lib; { + meta = { description = "Minimal viewer for Termimad"; homepage = "https://github.com/Canop/clima"; changelog = "https://github.com/Canop/clima/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "clima"; }; diff --git a/pkgs/by-name/cl/clinfo/package.nix b/pkgs/by-name/cl/clinfo/package.nix index 5eb7ef8dfc68..92dbaa9912ba 100644 --- a/pkgs/by-name/cl/clinfo/package.nix +++ b/pkgs/by-name/cl/clinfo/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Print all known information about all available OpenCL platforms and devices in the system"; homepage = "https://github.com/Oblomov/clinfo"; - license = licenses.cc0; - maintainers = with maintainers; [ + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ athas r-burns ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "clinfo"; }; } diff --git a/pkgs/by-name/cl/cling/package.nix b/pkgs/by-name/cl/cling/package.nix index 0bea1d522f6b..c22c4c87a2c2 100644 --- a/pkgs/by-name/cl/cling/package.nix +++ b/pkgs/by-name/cl/cling/package.nix @@ -110,16 +110,16 @@ let dontStrip = debug; - meta = with lib; { + meta = { description = "Interactive C++ Interpreter"; mainProgram = "cling"; homepage = "https://root.cern/cling/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 ncsa ]; - maintainers = with maintainers; [ thomasjm ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ thomasjm ]; + platforms = lib.platforms.unix; }; }; diff --git a/pkgs/by-name/cl/clini/package.nix b/pkgs/by-name/cl/clini/package.nix index 788781b43073..9400013eb9c4 100644 --- a/pkgs/by-name/cl/clini/package.nix +++ b/pkgs/by-name/cl/clini/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-N18/pCOdwcYA3Uu6+/HAdeqf2xXQcZoaWhOEPMncDKM="; - meta = with lib; { + meta = { description = "Simple tool to do basic modification of ini files"; homepage = "https://github.com/domgreen/clini"; - license = licenses.mit; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Flakebi ]; mainProgram = "clini"; }; } diff --git a/pkgs/by-name/cl/clipboard-jh/package.nix b/pkgs/by-name/cl/clipboard-jh/package.nix index a6e58c26e227..96443b89733b 100644 --- a/pkgs/by-name/cl/clipboard-jh/package.nix +++ b/pkgs/by-name/cl/clipboard-jh/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Cut, copy, and paste anything, anywhere, all from the terminal"; homepage = "https://github.com/Slackadays/clipboard"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dit7ya ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dit7ya ]; + platforms = lib.platforms.all; mainProgram = "cb"; }; } diff --git a/pkgs/by-name/cl/cliphist/package.nix b/pkgs/by-name/cl/cliphist/package.nix index 4aede5af1156..6b5900f48344 100644 --- a/pkgs/by-name/cl/cliphist/package.nix +++ b/pkgs/by-name/cl/cliphist/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { buildInputs = [ bash ]; - meta = with lib; { + meta = { description = "Wayland clipboard manager"; homepage = "https://github.com/sentriz/cliphist"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "cliphist"; }; } diff --git a/pkgs/by-name/cl/clipit/package.nix b/pkgs/by-name/cl/clipit/package.nix index b6c1f97d5e65..75c3a8f4048b 100644 --- a/pkgs/by-name/cl/clipit/package.nix +++ b/pkgs/by-name/cl/clipit/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { ]}" ]; - meta = with lib; { + meta = { description = "Lightweight GTK Clipboard Manager"; inherit (src.meta) homepage; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "clipit"; - maintainers = with maintainers; [ kamilchm ]; + maintainers = with lib.maintainers; [ kamilchm ]; }; } diff --git a/pkgs/by-name/cl/clipman/package.nix b/pkgs/by-name/cl/clipman/package.nix index 284c20fc5b82..2f0a1ff83a26 100644 --- a/pkgs/by-name/cl/clipman/package.nix +++ b/pkgs/by-name/cl/clipman/package.nix @@ -38,12 +38,12 @@ buildGoModule rec { installManPage docs/*.1 ''; - meta = with lib; { + meta = { homepage = "https://github.com/chmouel/clipman"; description = "Simple clipboard manager for Wayland"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ma27 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ma27 ]; + platforms = lib.platforms.linux; mainProgram = "clipman"; }; } diff --git a/pkgs/by-name/cl/clipmenu/package.nix b/pkgs/by-name/cl/clipmenu/package.nix index bf2c414a61df..19ed45d96027 100644 --- a/pkgs/by-name/cl/clipmenu/package.nix +++ b/pkgs/by-name/cl/clipmenu/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Clipboard management using dmenu"; inherit (src.meta) homepage; - maintainers = with maintainers; [ jb55 ]; - license = licenses.publicDomain; + maintainers = with lib.maintainers; [ jb55 ]; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/cl/clipnotify/package.nix b/pkgs/by-name/cl/clipnotify/package.nix index d8e6cf5b469c..992bb1398b78 100644 --- a/pkgs/by-name/cl/clipnotify/package.nix +++ b/pkgs/by-name/cl/clipnotify/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp clipnotify $out/bin ''; - meta = with lib; { + meta = { description = "Notify on new X clipboard events"; inherit (src.meta) homepage; - maintainers = with maintainers; [ jb55 ]; - license = licenses.publicDomain; + maintainers = with lib.maintainers; [ jb55 ]; + license = lib.licenses.publicDomain; mainProgram = "clipnotify"; }; } diff --git a/pkgs/by-name/cl/clipp/package.nix b/pkgs/by-name/cl/clipp/package.nix index f2965a422e72..9ace3f390b67 100644 --- a/pkgs/by-name/cl/clipp/package.nix +++ b/pkgs/by-name/cl/clipp/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { --subst-var version ''; - meta = with lib; { + meta = { description = "Easy to use, powerful and expressive command line argument handling for C++11/14/17"; homepage = "https://github.com/muellan/clipp"; - license = licenses.mit; - maintainers = with maintainers; [ xbreak ]; - platforms = with platforms; all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xbreak ]; + platforms = with lib.platforms; all; }; } diff --git a/pkgs/by-name/cl/clipper/package.nix b/pkgs/by-name/cl/clipper/package.nix index e0eeab13630d..cf660f30fc86 100644 --- a/pkgs/by-name/cl/clipper/package.nix +++ b/pkgs/by-name/cl/clipper/package.nix @@ -28,15 +28,15 @@ stdenv.mkDerivation rec { unzip ]; - meta = with lib; { + meta = { description = "Polygon and line clipping and offsetting library (C++, C#, Delphi)"; longDescription = '' The Clipper library performs line & polygon clipping - intersection, union, difference & exclusive-or, and line & polygon offsetting. The library is based on Vatti's clipping algorithm. ''; homepage = "https://sourceforge.net/projects/polyclipping"; - license = licenses.boost; - maintainers = with maintainers; [ mpickering ]; - platforms = with platforms; unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ mpickering ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/cl/clipqr/package.nix b/pkgs/by-name/cl/clipqr/package.nix index 22c6bd779f8d..27f403c97843 100644 --- a/pkgs/by-name/cl/clipqr/package.nix +++ b/pkgs/by-name/cl/clipqr/package.nix @@ -68,10 +68,10 @@ buildGoModule rec { }) ]; - meta = with lib; { + meta = { description = "Scan QR codes on screen and from camera, the result is in your clipboard"; - license = licenses.mit; - maintainers = with maintainers; [ MatthieuBarthel ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MatthieuBarthel ]; homepage = "https://gitlab.com/imatt-foss/clipqr"; broken = stdenv.hostPlatform.isDarwin; mainProgram = "clipqr"; diff --git a/pkgs/by-name/cl/clips/package.nix b/pkgs/by-name/cl/clips/package.nix index 705e9e18ebff..e2c00d41a93d 100644 --- a/pkgs/by-name/cl/clips/package.nix +++ b/pkgs/by-name/cl/clips/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool for Building Expert Systems"; mainProgram = "clips"; homepage = "http://www.clipsrules.net/"; @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { expert systems and other programs where a heuristic solution is easier to implement and maintain than an algorithmic solution. ''; - license = licenses.publicDomain; - maintainers = [ maintainers.league ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = [ lib.maintainers.league ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cl/clipster/package.nix b/pkgs/by-name/cl/clipster/package.nix index cb48cfb8069e..4c321e7b4bc9 100644 --- a/pkgs/by-name/cl/clipster/package.nix +++ b/pkgs/by-name/cl/clipster/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { cp clipster $out/bin/ ''; - meta = with lib; { + meta = { description = "Lightweight python clipboard manager"; longDescription = '' Clipster was designed to try to add a good selection of useful features, while avoiding bad design decisions or becoming excessively large. @@ -56,10 +56,10 @@ stdenv.mkDerivation rec { - Option to ignore clipboard updates form certain applications. (filter_classes) - Ability to delete items in clipboard history. ''; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; homepage = "https://github.com/mrichar1/clipster"; - platforms = platforms.linux; - maintainers = [ maintainers.magnetophon ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.magnetophon ]; mainProgram = "clipster"; }; } diff --git a/pkgs/by-name/cl/cliquer/package.nix b/pkgs/by-name/cl/cliquer/package.nix index 8984752c560d..6cb0e3bbc78a 100644 --- a/pkgs/by-name/cl/cliquer/package.nix +++ b/pkgs/by-name/cl/cliquer/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Routines for clique searching"; longDescription = '' Cliquer is a set of C routines for finding cliques in an arbitrary weighted graph. @@ -35,9 +35,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://users.aalto.fi/~pat/cliquer.html"; downloadPage = src.meta.homepage; # autocliquer - license = licenses.gpl2Plus; - teams = [ teams.sage ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; mainProgram = "cl"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cl/clmagma/package.nix b/pkgs/by-name/cl/clmagma/package.nix index c639c31db6f5..bfd23cb0bcb5 100644 --- a/pkgs/by-name/cl/clmagma/package.nix +++ b/pkgs/by-name/cl/clmagma/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { cp ${incfile} make.inc ''; - meta = with lib; { + meta = { description = "Matrix Algebra on GPU and Multicore Architectures, OpenCL port"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://icl.cs.utk.edu/magma/index.html"; - platforms = platforms.linux; - maintainers = with maintainers; [ volhovm ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ volhovm ]; }; } diff --git a/pkgs/by-name/cl/cln/package.nix b/pkgs/by-name/cl/cln/package.nix index 4cbe9688ce5f..19951b74ef0b 100644 --- a/pkgs/by-name/cl/cln/package.nix +++ b/pkgs/by-name/cl/cln/package.nix @@ -16,11 +16,11 @@ gccStdenv.mkDerivation rec { buildInputs = [ gmp ]; - meta = with lib; { + meta = { description = "C/C++ library for numbers, a part of GiNaC"; mainProgram = "pi"; homepage = "https://www.ginac.de/CLN/"; - license = licenses.gpl2; - platforms = platforms.unix; # Once had cygwin problems + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; # Once had cygwin problems }; } diff --git a/pkgs/by-name/cl/clolcat/package.nix b/pkgs/by-name/cl/clolcat/package.nix index 328fd8c27779..da60ef80ff9e 100644 --- a/pkgs/by-name/cl/clolcat/package.nix +++ b/pkgs/by-name/cl/clolcat/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out)/bin" ]; - meta = with lib; { + meta = { description = "Much faster lolcat"; homepage = "https://github.com/IchMageBaume/clolcat"; - platforms = platforms.all; - maintainers = [ maintainers.felipeqq2 ]; - license = licenses.wtfpl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.felipeqq2 ]; + license = lib.licenses.wtfpl; mainProgram = "clolcat"; }; } diff --git a/pkgs/by-name/cl/clonehero/package.nix b/pkgs/by-name/cl/clonehero/package.nix index 82f88a4acc22..c1362d517a44 100644 --- a/pkgs/by-name/cl/clonehero/package.nix +++ b/pkgs/by-name/cl/clonehero/package.nix @@ -117,11 +117,11 @@ stdenv.mkDerivation (finalAttrs: { "$out/libexec/clonehero/UnityPlayer.so" ''; - meta = with lib; { + meta = { description = "Clone of Guitar Hero and Rockband-style games"; homepage = "https://clonehero.net"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ kira-bruneau syboxez ]; diff --git a/pkgs/by-name/cl/closurecompiler/package.nix b/pkgs/by-name/cl/closurecompiler/package.nix index a9b2a115f6fa..1b3945f6b2ba 100644 --- a/pkgs/by-name/cl/closurecompiler/package.nix +++ b/pkgs/by-name/cl/closurecompiler/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { --add-flags "-jar $out/share/java/closure-compiler-v${version}.jar" ''; - meta = with lib; { + meta = { description = "Tool for making JavaScript download and run faster"; mainProgram = "closure-compiler"; homepage = "https://developers.google.com/closure/compiler/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cl/cloud-utils/package.nix b/pkgs/by-name/cl/cloud-utils/package.nix index c649cdc2396a..bf63afe7147b 100644 --- a/pkgs/by-name/cl/cloud-utils/package.nix +++ b/pkgs/by-name/cl/cloud-utils/package.nix @@ -79,10 +79,10 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Useful set of utilities for interacting with a cloud"; homepage = "https://github.com/canonical/cloud-utils"; - platforms = platforms.unix; - license = licenses.gpl3; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/cl/cloudbrute/package.nix b/pkgs/by-name/cl/cloudbrute/package.nix index b3695975e9c9..73598fd5f981 100644 --- a/pkgs/by-name/cl/cloudbrute/package.nix +++ b/pkgs/by-name/cl/cloudbrute/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = "sha256-SRk5kEUVmY3IJSB/XwchqWGnaXLQUoisx6KlVzMHdjg="; - meta = with lib; { + meta = { description = "Cloud enumeration tool"; mainProgram = "cloudbrute"; longDescription = '' @@ -26,7 +26,7 @@ buildGoModule rec { Alibaba, Vultr, Linode). ''; homepage = "https://github.com/0xsha/CloudBrute"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/cl/cloudcompare/package.nix b/pkgs/by-name/cl/cloudcompare/package.nix index bcefbc878f88..0b1db7e3a7d1 100644 --- a/pkgs/by-name/cl/cloudcompare/package.nix +++ b/pkgs/by-name/cl/cloudcompare/package.nix @@ -152,12 +152,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "3D point cloud and mesh processing software"; homepage = "https://cloudcompare.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ nh2 ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ nh2 ]; mainProgram = "CloudCompare"; - platforms = with platforms; linux; # only tested here; might work on others + platforms = with lib.platforms; linux; # only tested here; might work on others }; } diff --git a/pkgs/by-name/cl/cloudflare-ddns/package.nix b/pkgs/by-name/cl/cloudflare-ddns/package.nix index 01ad2288c1cf..5c400b70f462 100644 --- a/pkgs/by-name/cl/cloudflare-ddns/package.nix +++ b/pkgs/by-name/cl/cloudflare-ddns/package.nix @@ -20,7 +20,7 @@ buildGoModule (finalAttrs: { "cmd/ddns" ]; - meta = with lib; { + meta = { description = "Dynamic DNS (DDNS) client for Cloudflare"; longDescription = '' A feature-rich and robust Cloudflare DDNS updater with a small footprint. @@ -28,8 +28,8 @@ buildGoModule (finalAttrs: { ''; homepage = "https://github.com/favonia/cloudflare-ddns"; mainProgram = "ddns"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ shokerplz ]; - platforms = platforms.unix ++ platforms.darwin; + platforms = lib.platforms.unix ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/cl/cloudflare-dyndns/package.nix b/pkgs/by-name/cl/cloudflare-dyndns/package.nix index 9eaeea705cfc..c432f066dd03 100644 --- a/pkgs/by-name/cl/cloudflare-dyndns/package.nix +++ b/pkgs/by-name/cl/cloudflare-dyndns/package.nix @@ -35,11 +35,11 @@ python3.pkgs.buildPythonApplication rec { "test_get_ipv4" ]; - meta = with lib; { + meta = { description = "CloudFlare Dynamic DNS client"; homepage = "https://github.com/kissgyorgy/cloudflare-dyndns"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; mainProgram = "cloudflare-dyndns"; }; } diff --git a/pkgs/by-name/cl/cloudfoundry-cli/package.nix b/pkgs/by-name/cl/cloudfoundry-cli/package.nix index 2a0f1811f10a..033ca70ed993 100644 --- a/pkgs/by-name/cl/cloudfoundry-cli/package.nix +++ b/pkgs/by-name/cl/cloudfoundry-cli/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { installShellCompletion --bash $bashCompletionScript ''; - meta = with lib; { + meta = { description = "Official command line client for Cloud Foundry"; homepage = "https://github.com/cloudfoundry/cli"; - maintainers = with maintainers; [ ris ]; + maintainers = with lib.maintainers; [ ris ]; mainProgram = "cf"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/cl/cloudlog/package.nix b/pkgs/by-name/cl/cloudlog/package.nix index e65f863b9e48..43401869f0d9 100644 --- a/pkgs/by-name/cl/cloudlog/package.nix +++ b/pkgs/by-name/cl/cloudlog/package.nix @@ -35,11 +35,11 @@ stdenvNoCC.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Web based amateur radio logging application built using PHP & MySQL"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://www.magicbug.co.uk/cloudlog"; platforms = php.meta.platforms; - maintainers = with maintainers; [ melling ]; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/by-name/cl/cloudmonkey/package.nix b/pkgs/by-name/cl/cloudmonkey/package.nix index 170aa84853ac..7a1756f7d9f2 100644 --- a/pkgs/by-name/cl/cloudmonkey/package.nix +++ b/pkgs/by-name/cl/cloudmonkey/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "CLI for Apache CloudStack"; homepage = "https://github.com/apache/cloudstack-cloudmonkey"; - license = [ licenses.asl20 ]; - maintainers = [ maintainers.womfoo ]; + license = [ lib.licenses.asl20 ]; + maintainers = [ lib.maintainers.womfoo ]; mainProgram = "cloudstack-cloudmonkey"; }; diff --git a/pkgs/by-name/cl/clp/package.nix b/pkgs/by-name/cl/clp/package.nix index ce042141b937..a3ca971e5c27 100644 --- a/pkgs/by-name/cl/clp/package.nix +++ b/pkgs/by-name/cl/clp/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { - license = licenses.epl20; + meta = { + license = lib.licenses.epl20; homepage = "https://github.com/coin-or/Clp"; description = "Open-source linear programming solver written in C++"; mainProgram = "clp"; - platforms = platforms.darwin ++ platforms.linux; - maintainers = [ maintainers.vbgl ]; + platforms = lib.platforms.darwin ++ lib.platforms.linux; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/by-name/cl/clustal-omega/package.nix b/pkgs/by-name/cl/clustal-omega/package.nix index 1004082dcf7e..77450a1bcf5f 100644 --- a/pkgs/by-name/cl/clustal-omega/package.nix +++ b/pkgs/by-name/cl/clustal-omega/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "General purpose multiple sequence alignment program for protein and DNA/RNA"; homepage = "http://www.clustal.org/omega/"; - license = licenses.gpl2; - maintainers = [ maintainers.bzizou ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.bzizou ]; mainProgram = "clustalo"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cl/clzip/package.nix b/pkgs/by-name/cl/clzip/package.nix index 342c22d1c84d..99b1d2a35eaf 100644 --- a/pkgs/by-name/cl/clzip/package.nix +++ b/pkgs/by-name/cl/clzip/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-KH6FFSaP+NFiRIeODi4tczwD2S3SsrhJFdde9N5sJh8="; }; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/lzip/clzip.html"; description = "C language version of lzip"; mainProgram = "clzip"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/cm/cm256cc/package.nix b/pkgs/by-name/cm/cm256cc/package.nix index 1484cff696f6..86c2f7b3eebd 100644 --- a/pkgs/by-name/cm/cm256cc/package.nix +++ b/pkgs/by-name/cm/cm256cc/package.nix @@ -26,14 +26,14 @@ stdenv.mkDerivation rec { --replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ ''; - meta = with lib; { + meta = { description = "Fast GF(256) Cauchy MDS Block Erasure Codec in C++"; homepage = "https://github.com/f4exb/cm256cc"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ aciceri alkeryn ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/cm/cm_unicode/package.nix b/pkgs/by-name/cm/cm_unicode/package.nix index 12500e18882c..ce4488e3c6ce 100644 --- a/pkgs/by-name/cm/cm_unicode/package.nix +++ b/pkgs/by-name/cm/cm_unicode/package.nix @@ -22,14 +22,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://cm-unicode.sourceforge.io/"; description = "Computer Modern Unicode fonts"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin rycee ]; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cm/cmd-polkit/package.nix b/pkgs/by-name/cm/cmd-polkit/package.nix index 4ab3eb53d8ad..fe3e260920e5 100644 --- a/pkgs/by-name/cm/cmd-polkit/package.nix +++ b/pkgs/by-name/cm/cmd-polkit/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation (finalAttrs: { gtk3 ]; - meta = with lib; { + meta = { description = "Easily create polkit authentication agents by using commands"; homepage = "https://github.com/OmarCastro/cmd-polkit"; changelog = "https://github.com/OmarCastro/cmd-polkit/blob/${finalAttrs.src.rev}/CHANGELOG"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ daru-san ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ daru-san ]; mainProgram = "cmd-polkit-agent"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/cm/cmd-wrapped/package.nix b/pkgs/by-name/cm/cmd-wrapped/package.nix index 0fdb5024a81d..ac6eefaf8947 100644 --- a/pkgs/by-name/cm/cmd-wrapped/package.nix +++ b/pkgs/by-name/cm/cmd-wrapped/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Pv+LTHMLJh4LxKmvF6aJLZlDf97ZHI8gzn7vP+quNhc="; - meta = with lib; { + meta = { description = "Find out what the past year looks like in commandline"; homepage = "https://github.com/YiNNx/cmd-wrapped"; - license = licenses.mit; - maintainers = with maintainers; [ Cryolitia ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Cryolitia ]; mainProgram = "cmd-wrapped"; }; } diff --git a/pkgs/by-name/cm/cmdstan/package.nix b/pkgs/by-name/cm/cmdstan/package.nix index fb1e8e4e54ca..6d5f39f3f654 100644 --- a/pkgs/by-name/cm/cmdstan/package.nix +++ b/pkgs/by-name/cm/cmdstan/package.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Command-line interface to Stan"; longDescription = '' Stan is a probabilistic programming language implementing full Bayesian @@ -90,8 +90,8 @@ stdenv.mkDerivation rec { likelihood estimation with Optimization (L-BFGS). ''; homepage = "https://mc-stan.org/interfaces/cmdstan.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cm/cmigemo/package.nix b/pkgs/by-name/cm/cmigemo/package.nix index cd85f7d3d83e..778cd6f77dd3 100644 --- a/pkgs/by-name/cm/cmigemo/package.nix +++ b/pkgs/by-name/cm/cmigemo/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation { installTargets = [ (if stdenv.hostPlatform.isDarwin then "osx-install" else "gcc-install") ]; - meta = with lib; { + meta = { description = "Tool that supports Japanese incremental search with Romaji"; mainProgram = "cmigemo"; homepage = "https://www.kaoriya.net/software/cmigemo"; - license = licenses.mit; - maintainers = [ maintainers.cohei ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.cohei ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cm/cmocka/package.nix b/pkgs/by-name/cm/cmocka/package.nix index aea798d5f74a..e3a74a440395 100644 --- a/pkgs/by-name/cm/cmocka/package.nix +++ b/pkgs/by-name/cm/cmocka/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Lightweight library to simplify and generalize unit tests for C"; longDescription = '' There are a variety of C unit testing frameworks available however @@ -54,9 +54,9 @@ stdenv.mkDerivation rec { This is the successor of Google's Cmockery. ''; homepage = "https://cmocka.org/"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kragniz ]; }; diff --git a/pkgs/by-name/cm/cmospwd/package.nix b/pkgs/by-name/cm/cmospwd/package.nix index e9cdf0fc263f..428d3d0d124d 100644 --- a/pkgs/by-name/cm/cmospwd/package.nix +++ b/pkgs/by-name/cm/cmospwd/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Decrypt password stored in cmos used to access BIOS SETUP"; mainProgram = "cmospwd"; homepage = "https://www.cgsecurity.org/wiki/CmosPwd"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ t4ccer ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/cm/cmrt/package.nix b/pkgs/by-name/cm/cmrt/package.nix index 60d17e593c6b..6720317abb1c 100644 --- a/pkgs/by-name/cm/cmrt/package.nix +++ b/pkgs/by-name/cm/cmrt/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { libva ]; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "https://01.org/linuxmedia"; description = "Intel C for Media Runtime"; longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family"; - license = licenses.mit; - maintainers = with maintainers; [ tadfisher ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tadfisher ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cm/cmt/package.nix b/pkgs/by-name/cm/cmt/package.nix index 87caa2d32603..3066e0e4921e 100644 --- a/pkgs/by-name/cm/cmt/package.nix +++ b/pkgs/by-name/cm/cmt/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { mkdir -p $out/lib/ladspa ''; - meta = with lib; { + meta = { description = "Computer Music Toolkit"; homepage = "https://www.ladspa.org/cmt"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ sjfloat ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sjfloat ]; }; } diff --git a/pkgs/by-name/cm/cmtk/package.nix b/pkgs/by-name/cm/cmtk/package.nix index e7fc907704ce..2a9b116b0bd7 100644 --- a/pkgs/by-name/cm/cmtk/package.nix +++ b/pkgs/by-name/cm/cmtk/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "CMAKE_CXX_FLAGS" "-Dfinite=isfinite") ]; - meta = with lib; { + meta = { description = "Computational Morphometry Toolkit"; mainProgram = "cmtk"; longDescription = '' @@ -51,9 +51,9 @@ stdenv.mkDerivation (finalAttrs: { biomedical images, CMTK comprises a set of command line tools and a back-end general-purpose library for processing and I/O ''; - maintainers = with maintainers; [ tbenst ]; - platforms = platforms.all; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ tbenst ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; homepage = "https://www.nitrc.org/projects/cmtk/"; }; }) diff --git a/pkgs/by-name/cm/cmusfm/package.nix b/pkgs/by-name/cm/cmusfm/package.nix index fbc0b60f4398..9e22a7d2d06e 100644 --- a/pkgs/by-name/cm/cmusfm/package.nix +++ b/pkgs/by-name/cm/cmusfm/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { ] ++ lib.optional libnotifySupport libnotify; - meta = with lib; { + meta = { description = "Last.fm and Libre.fm standalone scrobbler for the cmus music player"; longDescription = '' Features: @@ -55,8 +55,8 @@ stdenv.mkDerivation rec { CharlesHD mudri ]; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "cmusfm"; }; } diff --git a/pkgs/by-name/cn/cnijfilter2/package.nix b/pkgs/by-name/cn/cnijfilter2/package.nix index ef28042fd6be..aca035cd916f 100644 --- a/pkgs/by-name/cn/cnijfilter2/package.nix +++ b/pkgs/by-name/cn/cnijfilter2/package.nix @@ -150,7 +150,7 @@ stdenv.mkDerivation { cp ppd/*.ppd $out/share/cups/model ''; - meta = with lib; { + meta = { description = "Canon InkJet printer drivers for many Pixma series printers"; longDescription = '' Canon InjKet printer drivers for series E200, E300, E3100, E3300, E4200, E450, E470, E480, @@ -164,7 +164,7 @@ stdenv.mkDerivation { TS9580, XK50, XK60, XK70, XK80. ''; homepage = "https://hk.canon/en/support/0101048401/1"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/cn/cnijfilter_4_00/package.nix b/pkgs/by-name/cn/cnijfilter_4_00/package.nix index 614e1fc126df..86f75fa8a5f7 100644 --- a/pkgs/by-name/cn/cnijfilter_4_00/package.nix +++ b/pkgs/by-name/cn/cnijfilter_4_00/package.nix @@ -181,15 +181,15 @@ stdenv.mkDerivation { */ dontPatchELF = true; - meta = with lib; { + meta = { description = "Canon InkJet printer drivers for the MG2400 MG2500 MG3500 MG5500 MG6400 MG6500 MG7100 and P200 series"; homepage = "https://www.canon-europe.com/support/consumer_products/products/fax__multifunctionals/inkjet/pixma_mg_series/pixma_mg5550.aspx?type=drivers&driverdetailid=tcm:13-1094072"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ chpatrick ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ chpatrick ]; }; } diff --git a/pkgs/by-name/cn/cnping/package.nix b/pkgs/by-name/cn/cnping/package.nix index c95384cd4afe..9efb14936c68 100644 --- a/pkgs/by-name/cn/cnping/package.nix +++ b/pkgs/by-name/cn/cnping/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation { cp cnping.1 $out/share/man/man1/cnping.1 ''; - meta = with lib; { + meta = { description = "Minimal Graphical IPV4 Ping Tool"; homepage = "https://github.com/cntools/cnping"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd3 ]; # dual licensed, MIT-x11 & BSD-3-Clause maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "cnping"; }; } diff --git a/pkgs/by-name/cn/cnspec/package.nix b/pkgs/by-name/cn/cnspec/package.nix index bf12ad1cc0d5..5c4040d02b6a 100644 --- a/pkgs/by-name/cn/cnspec/package.nix +++ b/pkgs/by-name/cn/cnspec/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { "-X=go.mondoo.com/cnspec.Version=${version}" ]; - meta = with lib; { + meta = { description = "Open source, cloud-native security and policy project"; homepage = "https://github.com/mondoohq/cnspec"; changelog = "https://github.com/mondoohq/cnspec/releases/tag/v${version}"; - license = licenses.bsl11; - maintainers = with maintainers; [ + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ fab mariuskimmina ]; diff --git a/pkgs/by-name/cn/cnstrokeorder/package.nix b/pkgs/by-name/cn/cnstrokeorder/package.nix index d6908d08ecf7..0ba277b8f9d8 100644 --- a/pkgs/by-name/cn/cnstrokeorder/package.nix +++ b/pkgs/by-name/cn/cnstrokeorder/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Chinese font that shows stroke order for HSK 1-4"; homepage = "http://rtega.be/chmn/index.php?subpage=68"; - license = [ licenses.arphicpl ]; - maintainers = with maintainers; [ johnazoidberg ]; - platforms = platforms.all; + license = [ lib.licenses.arphicpl ]; + maintainers = with lib.maintainers; [ johnazoidberg ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cn/cntb/package.nix b/pkgs/by-name/cn/cntb/package.nix index 9532011b9db7..8b830d3bd9eb 100644 --- a/pkgs/by-name/cn/cntb/package.nix +++ b/pkgs/by-name/cn/cntb/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "-X contabo.com/cli/cntb/cmd.date=1970-01-01T00:00:00Z" ]; - meta = with lib; { + meta = { description = "CLI tool for managing your products from Contabo like VPS and VDS"; mainProgram = "cntb"; homepage = "https://github.com/contabo/cntb"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ aciceri ]; }; } diff --git a/pkgs/by-name/cn/cntlm/package.nix b/pkgs/by-name/cn/cntlm/package.nix index da0446ac3ac0..ba0282852bc9 100644 --- a/pkgs/by-name/cn/cntlm/package.nix +++ b/pkgs/by-name/cn/cntlm/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { mkdir -p $out/man/; cp doc/cntlm.1 $out/man/; ''; - meta = with lib; { + meta = { description = "NTLM/NTLMv2 authenticating HTTP proxy"; homepage = "https://cntlm.sourceforge.net/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ - maintainers.qknight - maintainers.carlosdagos + lib.maintainers.qknight + lib.maintainers.carlosdagos ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "cntlm"; }; } diff --git a/pkgs/by-name/cn/cntr/package.nix b/pkgs/by-name/cn/cntr/package.nix index 3384741a2f94..a42527120587 100644 --- a/pkgs/by-name/cn/cntr/package.nix +++ b/pkgs/by-name/cn/cntr/package.nix @@ -20,12 +20,12 @@ rustPlatform.buildRustPackage rec { passthru.tests = nixosTests.cntr; - meta = with lib; { + meta = { description = "Container debugging tool based on FUSE"; homepage = "https://github.com/Mic92/cntr"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mic92 sigmasquadron ]; diff --git a/pkgs/by-name/co/coan/package.nix b/pkgs/by-name/co/coan/package.nix index 4c29315ea0c2..d5d507fa8d0b 100644 --- a/pkgs/by-name/co/coan/package.nix +++ b/pkgs/by-name/co/coan/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { mv -v $out/share/man/man1/coan.1.{1,gz} ''; - meta = with lib; { + meta = { description = "C preprocessor chainsaw"; mainProgram = "coan"; longDescription = '' @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { application of this sort. ''; homepage = "https://coan2.sourceforge.net/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; # The last successful Darwin Hydra build was in 2024 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/co/cockroachdb/package.nix b/pkgs/by-name/co/cockroachdb/package.nix index e362eb8c8d23..f906d89fd494 100644 --- a/pkgs/by-name/co/cockroachdb/package.nix +++ b/pkgs/by-name/co/cockroachdb/package.nix @@ -38,20 +38,20 @@ buildFHSEnv { cp -P $out/bin/cockroachdb $out/bin/cockroach ''; - meta = with lib; { + meta = { homepage = "https://www.cockroachlabs.com"; description = "Scalable, survivable, strongly-consistent SQL database"; - license = with licenses; [ + license = with lib.licenses; [ bsl11 mit cockroachdb-community-license ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "aarch64-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rushmorem thoughtpolice ]; diff --git a/pkgs/by-name/co/cocoapods/package.nix b/pkgs/by-name/co/cocoapods/package.nix index 15ccdd258167..0cc3dc1ea119 100644 --- a/pkgs/by-name/co/cocoapods/package.nix +++ b/pkgs/by-name/co/cocoapods/package.nix @@ -16,11 +16,11 @@ bundlerApp { # toString prevents the update script from being copied into the nix store passthru.updateScript = toString ./update; - meta = with lib; { + meta = { description = "Manages dependencies for your Xcode projects"; homepage = "https://github.com/CocoaPods/CocoaPods"; - license = licenses.mit; - platforms = platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.darwin; mainProgram = "pod"; }; } diff --git a/pkgs/by-name/co/cocogitto/package.nix b/pkgs/by-name/co/cocogitto/package.nix index e8fcb71c6e19..97a054e11ec4 100644 --- a/pkgs/by-name/co/cocogitto/package.nix +++ b/pkgs/by-name/co/cocogitto/package.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/cog generate-completions zsh) ''; - meta = with lib; { + meta = { description = "Set of cli tools for the conventional commit and semver specifications"; mainProgram = "cog"; homepage = "https://github.com/oknozor/cocogitto"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/co/cocom/package.nix b/pkgs/by-name/co/cocom/package.nix index bd3c86b6e222..b804266d7221 100644 --- a/pkgs/by-name/co/cocom/package.nix +++ b/pkgs/by-name/co/cocom/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { # Tests require network access doCheck = false; - meta = with lib; { + meta = { description = "NTP client"; homepage = "https://github.com/LamdaLamdaLamda/cocom"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "cocom"; }; } diff --git a/pkgs/by-name/co/cod/package.nix b/pkgs/by-name/co/cod/package.nix index edb4095f26a6..8da7d783c89b 100644 --- a/pkgs/by-name/co/cod/package.nix +++ b/pkgs/by-name/co/cod/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { substituteInPlace test/learn_test.go --replace TestLearnArgparseSubCommand SkipLearnArgparseSubCommand ''; - meta = with lib; { + meta = { description = "Tool for generating Bash/Fish/Zsh autocompletions based on `--help` output"; homepage = "https://github.com/dim-an/cod/"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; broken = stdenv.hostPlatform.isDarwin; mainProgram = "cod"; }; diff --git a/pkgs/by-name/co/code-maat/package.nix b/pkgs/by-name/co/code-maat/package.nix index 5713fb7ee084..a004816dddb7 100644 --- a/pkgs/by-name/co/code-maat/package.nix +++ b/pkgs/by-name/co/code-maat/package.nix @@ -36,12 +36,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line tool to mine and analyze data from version-control systems"; mainProgram = "code-maat"; homepage = "https://github.com/adamtornhill/code-maat"; - platforms = platforms.unix; - license = licenses.gpl3; - maintainers = with maintainers; [ sir4ur0n ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ sir4ur0n ]; }; }) diff --git a/pkgs/by-name/co/code-minimap/package.nix b/pkgs/by-name/co/code-minimap/package.nix index 61dbb9cefc49..ca8d4de9577d 100644 --- a/pkgs/by-name/co/code-minimap/package.nix +++ b/pkgs/by-name/co/code-minimap/package.nix @@ -21,14 +21,14 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv; - meta = with lib; { + meta = { description = "High performance code minimap render"; homepage = "https://github.com/wfxr/code-minimap"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ bsima ]; + maintainers = with lib.maintainers; [ bsima ]; mainProgram = "code-minimap"; }; } diff --git a/pkgs/by-name/co/code-nautilus/package.nix b/pkgs/by-name/co/code-nautilus/package.nix index 873a36f17f8a..0d446ab83c0b 100644 --- a/pkgs/by-name/co/code-nautilus/package.nix +++ b/pkgs/by-name/co/code-nautilus/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "VSCode extension for Nautilus: 'Open in Code'"; homepage = "https://github.com/harry-cpp/code-nautilus"; - license = licenses.unlicense; - platforms = platforms.linux; - maintainers = with maintainers; [ berrij ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ berrij ]; }; } diff --git a/pkgs/by-name/co/codeberg-cli/package.nix b/pkgs/by-name/co/codeberg-cli/package.nix index 08c4fcf321a0..7b1565fd93d5 100644 --- a/pkgs/by-name/co/codeberg-cli/package.nix +++ b/pkgs/by-name/co/codeberg-cli/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/berg completion zsh) ''; - meta = with lib; { + meta = { description = "CLI Tool for Codeberg similar to gh and glab"; homepage = "https://codeberg.org/Aviac/codeberg-cli"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ robwalt ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ robwalt ]; mainProgram = "berg"; }; } diff --git a/pkgs/by-name/co/codebraid/package.nix b/pkgs/by-name/co/codebraid/package.nix index dce3ab1ba8e6..87f9e08a0b3d 100644 --- a/pkgs/by-name/co/codebraid/package.nix +++ b/pkgs/by-name/co/codebraid/package.nix @@ -22,7 +22,7 @@ python3Packages.buildPythonApplication rec { checkPhase = '' $out/bin/codebraid --help > /dev/null ''; - meta = with lib; { + meta = { homepage = "https://github.com/gpoore/codebraid"; description = '' Live code in Pandoc Markdown. @@ -39,8 +39,8 @@ python3Packages.buildPythonApplication rec { R, Bash, and JavaScript. Code can also be executed using Jupyter kernels, with support for rich output like plots. ''; - license = licenses.bsd3; - maintainers = with maintainers; [ synthetica ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ synthetica ]; mainProgram = "codebraid"; }; } diff --git a/pkgs/by-name/co/codec2/package.nix b/pkgs/by-name/co/codec2/package.nix index d223c9cc83cd..084b0a96e334 100644 --- a/pkgs/by-name/co/codec2/package.nix +++ b/pkgs/by-name/co/codec2/package.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Speech codec designed for communications quality speech at low data rates"; homepage = "https://www.rowetel.com/codec2.html"; - license = licenses.lgpl21Only; - platforms = platforms.unix; - maintainers = with maintainers; [ markuskowa ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ markuskowa ]; pkgConfigModules = [ "codec2" ]; }; }) diff --git a/pkgs/by-name/co/codecrafters-cli/package.nix b/pkgs/by-name/co/codecrafters-cli/package.nix index 8c62003995aa..3c10121adfcb 100644 --- a/pkgs/by-name/co/codecrafters-cli/package.nix +++ b/pkgs/by-name/co/codecrafters-cli/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { nativeBuildInputs = [ git ]; - meta = with lib; { + meta = { description = "CodeCrafters CLI to run tests"; mainProgram = "codecrafters"; homepage = "https://github.com/codecrafters-io/cli"; - maintainers = with maintainers; [ builditluc ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ builditluc ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/co/codeowners/package.nix b/pkgs/by-name/co/codeowners/package.nix index 00ff848bc03a..2690b687d24b 100644 --- a/pkgs/by-name/co/codeowners/package.nix +++ b/pkgs/by-name/co/codeowners/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-CpGlw4xe+gg2IRov9Atd8Z7XbXs1zkIYxvBVpsY/gxg="; - meta = with lib; { + meta = { description = "CLI and Go library for Github's CODEOWNERS file"; mainProgram = "codeowners"; homepage = "https://github.com/hmarr/codeowners"; - license = licenses.mit; - maintainers = with maintainers; [ yorickvp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yorickvp ]; }; } diff --git a/pkgs/by-name/co/codeql/package.nix b/pkgs/by-name/co/codeql/package.nix index 0dc0bacc1a4f..f6849d326a87 100644 --- a/pkgs/by-name/co/codeql/package.nix +++ b/pkgs/by-name/co/codeql/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { ln -s $out/codeql/codeql $out/bin/ ''; - meta = with lib; { + meta = { description = "Semantic code analysis engine"; homepage = "https://codeql.github.com"; - maintainers = [ maintainers.dump_stack ]; + maintainers = [ lib.maintainers.dump_stack ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/co/codesearch/package.nix b/pkgs/by-name/co/codesearch/package.nix index fb93208c1020..fec1c02fd9db 100644 --- a/pkgs/by-name/co/codesearch/package.nix +++ b/pkgs/by-name/co/codesearch/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Fast, indexed regexp search over large file trees"; homepage = "https://github.com/google/codesearch"; - license = [ licenses.bsd3 ]; - maintainers = with maintainers; [ bennofs ]; + license = [ lib.licenses.bsd3 ]; + maintainers = with lib.maintainers; [ bennofs ]; }; } diff --git a/pkgs/by-name/co/codespell/package.nix b/pkgs/by-name/co/codespell/package.nix index 3d1b9da3f42f..5ab1df5cc929 100644 --- a/pkgs/by-name/co/codespell/package.nix +++ b/pkgs/by-name/co/codespell/package.nix @@ -40,15 +40,15 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "codespell_lib" ]; - meta = with lib; { + meta = { description = "Fix common misspellings in source code"; mainProgram = "codespell"; homepage = "https://github.com/codespell-project/codespell"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only cc-by-sa-30 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ johnazoidberg SuperSandro2000 ]; diff --git a/pkgs/by-name/co/codespelunker/package.nix b/pkgs/by-name/co/codespelunker/package.nix index a0c6ea798703..602f9eb6668d 100644 --- a/pkgs/by-name/co/codespelunker/package.nix +++ b/pkgs/by-name/co/codespelunker/package.nix @@ -19,14 +19,14 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Command code search tool"; homepage = "https://github.com/boyter/cs"; - license = with licenses; [ + license = with lib.licenses; [ mit unlicense ]; - maintainers = with maintainers; [ viraptor ]; + maintainers = with lib.maintainers; [ viraptor ]; mainProgram = "cs"; }; } diff --git a/pkgs/by-name/co/codevis/package.nix b/pkgs/by-name/co/codevis/package.nix index af0979e42d0d..32fac05a2bc8 100644 --- a/pkgs/by-name/co/codevis/package.nix +++ b/pkgs/by-name/co/codevis/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { RUSTONIG_SYSTEM_LIBONIG = true; }; - meta = with lib; { + meta = { description = "Tool to take all source code in a folder and render them to one image"; homepage = "https://github.com/sloganking/codevis"; changelog = "https://github.com/sloganking/codevis/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "codevis"; }; diff --git a/pkgs/by-name/co/codex-acp/package.nix b/pkgs/by-name/co/codex-acp/package.nix index 8e4a062decf1..928a7406e555 100644 --- a/pkgs/by-name/co/codex-acp/package.nix +++ b/pkgs/by-name/co/codex-acp/package.nix @@ -28,14 +28,14 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "An ACP-compatible coding agent powered by Codex"; homepage = "https://github.com/zed-industries/codex-acp"; changelog = "https://github.com/zed-industries/codex-acp/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ tlvince ]; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ fromSource ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tlvince ]; + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; mainProgram = "codex-acp"; }; } diff --git a/pkgs/by-name/co/cogl/package.nix b/pkgs/by-name/co/cogl/package.nix index 5b944683a0a6..242208008431 100644 --- a/pkgs/by-name/co/cogl/package.nix +++ b/pkgs/by-name/co/cogl/package.nix @@ -125,9 +125,9 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Small open source library for using 3D graphics hardware for rendering"; - maintainers = with maintainers; [ lovek323 ]; + maintainers = with lib.maintainers; [ lovek323 ]; longDescription = '' Cogl is a small open source library for using 3D graphics hardware for @@ -136,8 +136,8 @@ stdenv.mkDerivation rec { render without stepping on each other's toes. ''; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ mit bsd3 publicDomain diff --git a/pkgs/by-name/co/coin-utils/package.nix b/pkgs/by-name/co/coin-utils/package.nix index 45681a721357..97ce0ba699ed 100644 --- a/pkgs/by-name/co/coin-utils/package.nix +++ b/pkgs/by-name/co/coin-utils/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { - license = licenses.epl20; + meta = { + license = lib.licenses.epl20; homepage = "https://github.com/coin-or/CoinUtils"; description = "Collection of classes and helper functions that are generally useful to multiple COIN-OR projects"; - maintainers = with maintainers; [ tmarkus ]; + maintainers = with lib.maintainers; [ tmarkus ]; }; } diff --git a/pkgs/by-name/co/coin3d/package.nix b/pkgs/by-name/co/coin3d/package.nix index aa362b81e5e9..beec964eecb5 100644 --- a/pkgs/by-name/co/coin3d/package.nix +++ b/pkgs/by-name/co/coin3d/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { ] ++ lib.optional stdenv.hostPlatform.isLinux libX11; - meta = with lib; { + meta = { homepage = "https://github.com/coin3d/coin"; description = "High-level, retained-mode toolkit for effective 3D graphics development"; mainProgram = "coin-config"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/co/coinmp/package.nix b/pkgs/by-name/co/coinmp/package.nix index 632fd2da873b..46959b52690a 100644 --- a/pkgs/by-name/co/coinmp/package.nix +++ b/pkgs/by-name/co/coinmp/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation (finalAttrs: { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://projects.coin-or.org/CoinMP/"; description = "COIN-OR lightweight API for COIN-OR libraries CLP, CBC, and CGL"; - platforms = platforms.unix; - license = licenses.epl10; + platforms = lib.platforms.unix; + license = lib.licenses.epl10; }; }) diff --git a/pkgs/by-name/co/cointop/package.nix b/pkgs/by-name/co/cointop/package.nix index 9376f2a725c3..d25f0919653d 100644 --- a/pkgs/by-name/co/cointop/package.nix +++ b/pkgs/by-name/co/cointop/package.nix @@ -22,7 +22,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Fastest and most interactive terminal based UI application for tracking cryptocurrencies"; longDescription = '' cointop is a fast and lightweight interactive terminal based UI @@ -32,8 +32,8 @@ buildGoModule rec { The interface is inspired by htop and shortcut keys are inspired by vim. ''; homepage = "https://cointop.sh"; - maintainers = with maintainers; [ sarcasticadmin ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ sarcasticadmin ]; + license = lib.licenses.asl20; mainProgram = "cointop"; }; } diff --git a/pkgs/by-name/co/coldsnap/package.nix b/pkgs/by-name/co/coldsnap/package.nix index 67594107dd82..da1dfa5c5ebe 100644 --- a/pkgs/by-name/co/coldsnap/package.nix +++ b/pkgs/by-name/co/coldsnap/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { homepage = "https://github.com/awslabs/coldsnap"; description = "Command line interface for Amazon EBS snapshots"; changelog = "https://github.com/awslabs/coldsnap/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - teams = [ teams.determinatesystems ]; + license = lib.licenses.asl20; + teams = [ lib.teams.determinatesystems ]; mainProgram = "coldsnap"; }; } diff --git a/pkgs/by-name/co/colemak-dh/package.nix b/pkgs/by-name/co/colemak-dh/package.nix index f5aba006c33d..42b942d62a8d 100644 --- a/pkgs/by-name/co/colemak-dh/package.nix +++ b/pkgs/by-name/co/colemak-dh/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://colemakmods.github.io/mod-dh"; description = "Colemak mod for more comfortable typing"; - license = licenses.publicDomain; - platforms = platforms.linux; - maintainers = with maintainers; [ monaaraj ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ monaaraj ]; }; } diff --git a/pkgs/by-name/co/colima/package.nix b/pkgs/by-name/co/colima/package.nix index 4472f497c25d..8a9f01c4955e 100644 --- a/pkgs/by-name/co/colima/package.nix +++ b/pkgs/by-name/co/colima/package.nix @@ -80,11 +80,11 @@ buildGoModule rec { command = "HOME=$(mktemp -d) colima version"; }; - meta = with lib; { + meta = { description = "Container runtimes with minimal setup"; homepage = "https://github.com/abiosoft/colima"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aaschmid tricktron ]; diff --git a/pkgs/by-name/co/collision/package.nix b/pkgs/by-name/co/collision/package.nix index e82651985f0d..25e3cd365bf4 100644 --- a/pkgs/by-name/co/collision/package.nix +++ b/pkgs/by-name/co/collision/package.nix @@ -105,12 +105,12 @@ crystal.buildCrystalPackage rec { ''; }; - meta = with lib; { + meta = { description = "Check hashes for your files"; homepage = "https://github.com/GeopJr/Collision"; - license = licenses.bsd2; + license = lib.licenses.bsd2; mainProgram = "collision"; - maintainers = with maintainers; [ sund3RRR ]; - teams = [ teams.gnome-circle ]; + maintainers = with lib.maintainers; [ sund3RRR ]; + teams = [ lib.teams.gnome-circle ]; }; } diff --git a/pkgs/by-name/co/colloid-icon-theme/package.nix b/pkgs/by-name/co/colloid-icon-theme/package.nix index fed231ed4bbe..4e5d41e809fc 100644 --- a/pkgs/by-name/co/colloid-icon-theme/package.nix +++ b/pkgs/by-name/co/colloid-icon-theme/package.nix @@ -88,11 +88,11 @@ lib.checkListOfEnum "colloid-icon-theme: scheme variants" passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Colloid icon theme"; homepage = "https://github.com/vinceliuice/colloid-icon-theme"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/co/colm/package.nix b/pkgs/by-name/co/colm/package.nix index 19d8744aa1e2..6247c5dec0a6 100644 --- a/pkgs/by-name/co/colm/package.nix +++ b/pkgs/by-name/co/colm/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { --prefix PATH ":" ${gcc}/bin ''; - meta = with lib; { + meta = { description = "Programming language for the analysis and transformation of computer languages"; mainProgram = "colm"; homepage = "http://www.colm.net/open-source/colm"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/co/colmap/package.nix b/pkgs/by-name/co/colmap/package.nix index 24608e78d058..27ed6edf3f53 100644 --- a/pkgs/by-name/co/colmap/package.nix +++ b/pkgs/by-name/co/colmap/package.nix @@ -120,7 +120,7 @@ stdenv'.mkDerivation { passthru.depsAlsoForPycolmap = depsAlsoForPycolmap; - meta = with lib; { + meta = { description = "Structure-From-Motion and Multi-View Stereo pipeline"; longDescription = '' COLMAP is a general-purpose Structure-from-Motion (SfM) and Multi-View Stereo (MVS) pipeline @@ -128,9 +128,9 @@ stdenv'.mkDerivation { ''; mainProgram = "colmap"; homepage = "https://colmap.github.io/index.html"; - license = licenses.bsd3; - platforms = if cudaSupport then platforms.linux else platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = if cudaSupport then lib.platforms.linux else lib.platforms.unix; + maintainers = with lib.maintainers; [ lebastr usertam chpatrick diff --git a/pkgs/by-name/co/colmena/package.nix b/pkgs/by-name/co/colmena/package.nix index d805f69b1afd..7c941161d501 100644 --- a/pkgs/by-name/co/colmena/package.nix +++ b/pkgs/by-name/co/colmena/package.nix @@ -62,12 +62,12 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = colmena; }; }; - meta = with lib; { + meta = { description = "Simple, stateless NixOS deployment tool"; homepage = "https://colmena.cli.rs/${passthru.apiVersion}"; - license = licenses.mit; - maintainers = with maintainers; [ zhaofengli ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zhaofengli ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "colmena"; }; } diff --git a/pkgs/by-name/co/colord-gtk/package.nix b/pkgs/by-name/co/colord-gtk/package.nix index 89ad41085954..ce1ae366d4eb 100644 --- a/pkgs/by-name/co/colord-gtk/package.nix +++ b/pkgs/by-name/co/colord-gtk/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { "-Dgtk3=${lib.boolToString (!withGtk4)}" ]; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/software/colord/intro.html"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; mainProgram = "cd-convert"; }; } diff --git a/pkgs/by-name/co/colord/package.nix b/pkgs/by-name/co/colord/package.nix index 280a583f6066..fcaee7eb20b2 100644 --- a/pkgs/by-name/co/colord/package.nix +++ b/pkgs/by-name/co/colord/package.nix @@ -134,12 +134,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "System service to manage, install and generate color profiles to accurately color manage input and output devices"; homepage = "https://www.freedesktop.org/software/colord/"; - license = licenses.lgpl2Plus; - maintainers = [ maintainers.marcweber ]; - teams = [ teams.freedesktop ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + maintainers = [ lib.maintainers.marcweber ]; + teams = [ lib.teams.freedesktop ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/colordiff/package.nix b/pkgs/by-name/co/colordiff/package.nix index 11b906b06f3b..9a9e149ba90e 100644 --- a/pkgs/by-name/co/colordiff/package.nix +++ b/pkgs/by-name/co/colordiff/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { "DESTDIR=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Wrapper for 'diff' that produces the same output but with pretty 'syntax' highlighting"; homepage = "https://www.colordiff.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "colordiff"; }; } diff --git a/pkgs/by-name/co/colorless/package.nix b/pkgs/by-name/co/colorless/package.nix index 9e5c69360430..142c4c70569a 100644 --- a/pkgs/by-name/co/colorless/package.nix +++ b/pkgs/by-name/co/colorless/package.nix @@ -40,16 +40,16 @@ stdenvNoCC.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://kimmo.suominen.com/sw/colorless"; description = "Enable colorised command output and pipe it to less"; longDescription = '' colorless is a wrapper that enables colorised output of commands and pipes the output to less(1). ''; - license = licenses.bsd2; - maintainers = with maintainers; [ suominen ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ suominen ]; + platforms = lib.platforms.unix; mainProgram = "colorless"; }; } diff --git a/pkgs/by-name/co/colormake/package.nix b/pkgs/by-name/co/colormake/package.nix index 31dbe4b14863..2a352f0cad87 100644 --- a/pkgs/by-name/co/colormake/package.nix +++ b/pkgs/by-name/co/colormake/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation { cp -fa colormake.pl colormake colormake-short clmake clmake-short $out/bin ''; - meta = with lib; { + meta = { description = "Simple wrapper around make to colorize the output"; homepage = "https://bre.klaki.net/programs/colormake/"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/co/colorpanes/package.nix b/pkgs/by-name/co/colorpanes/package.nix index f2b8484b52f6..c7888967acdc 100644 --- a/pkgs/by-name/co/colorpanes/package.nix +++ b/pkgs/by-name/co/colorpanes/package.nix @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage rec { ln -s $out/bin/colp $out/bin/colorpanes ''; - meta = with lib; { + meta = { description = "Panes in the 8 bright terminal colors with shadows of the respective darker color"; homepage = "https://codeberg.org/annaaurora/colorpanes"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ annaaurora ]; }; } diff --git a/pkgs/by-name/co/colort/package.nix b/pkgs/by-name/co/colort/package.nix index 128e233ff6c1..325f06e7b407 100644 --- a/pkgs/by-name/co/colort/package.nix +++ b/pkgs/by-name/co/colort/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Program for 'tinting' color values"; homepage = "https://github.com/neeasade/colort"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.neeasade ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.neeasade ]; mainProgram = "colort"; }; } diff --git a/pkgs/by-name/co/colorz/package.nix b/pkgs/by-name/co/colorz/package.nix index 9956ba8a782f..1c9359ff8ac0 100644 --- a/pkgs/by-name/co/colorz/package.nix +++ b/pkgs/by-name/co/colorz/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec { $out/bin/colorz --help > /dev/null ''; - meta = with lib; { + meta = { description = "Color scheme generator"; homepage = "https://github.com/metakirby5/colorz"; - license = licenses.mit; - maintainers = with maintainers; [ skykanin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ skykanin ]; mainProgram = "colorz"; }; } diff --git a/pkgs/by-name/co/coloursum/package.nix b/pkgs/by-name/co/coloursum/package.nix index db28c7ba61af..d3ee37f1b62f 100644 --- a/pkgs/by-name/co/coloursum/package.nix +++ b/pkgs/by-name/co/coloursum/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-aZkWzJaEW6/fiCfb+RKNef0eJf/CJW8OU1N2OlHwuJM="; - meta = with lib; { + meta = { description = "Colourise your checksum output"; mainProgram = "coloursum"; homepage = "https://github.com/ticky/coloursum"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/co/colpack/package.nix b/pkgs/by-name/co/colpack/package.nix index 9aedffcd3368..5b617cbb52c7 100644 --- a/pkgs/by-name/co/colpack/package.nix +++ b/pkgs/by-name/co/colpack/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cp -r SampleDrivers/Matrix* $out/share/ColPack/examples ''; - meta = with lib; { + meta = { description = "Package comprising of implementations of algorithms for vertex coloring and derivative computation"; homepage = "https://cscapes.cs.purdue.edu/coloringpage/software.htm#functionalities"; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/co/colstr/package.nix b/pkgs/by-name/co/colstr/package.nix index 8e0185c10281..1d5b693b9f2b 100644 --- a/pkgs/by-name/co/colstr/package.nix +++ b/pkgs/by-name/co/colstr/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Deterministically output each input argument in a color assigned to it"; homepage = "https://git.sleeping.town/wonder/colstr"; - license = with licenses; [ cc0 ]; - maintainers = with maintainers; [ annaaurora ]; + license = with lib.licenses; [ cc0 ]; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "colstr"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/co/combinatorial_designs/package.nix b/pkgs/by-name/co/combinatorial_designs/package.nix index 29cb4e0d7df3..da6479f4dd65 100644 --- a/pkgs/by-name/co/combinatorial_designs/package.nix +++ b/pkgs/by-name/co/combinatorial_designs/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { mv * "$out/share/combinatorial_designs" ''; - meta = with lib; { + meta = { description = "Data for Combinatorial Designs"; longDescription = '' Current content: @@ -26,8 +26,8 @@ stdenv.mkDerivation rec { - The table of MOLS (10 000 integers) from the Handbook of Combinatorial Designs, 2ed. ''; - license = licenses.publicDomain; - platforms = platforms.all; - teams = [ teams.sage ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/co/comfortaa/package.nix b/pkgs/by-name/co/comfortaa/package.nix index 000ea4e6091d..8fe38851cac7 100644 --- a/pkgs/by-name/co/comfortaa/package.nix +++ b/pkgs/by-name/co/comfortaa/package.nix @@ -31,11 +31,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://aajohan.deviantart.com/art/Comfortaa-font-105395949"; description = "Clean and modern font suitable for headings and logos"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/co/comic-neue/package.nix b/pkgs/by-name/co/comic-neue/package.nix index 32cfe6cb13a8..659b5197c0cc 100644 --- a/pkgs/by-name/co/comic-neue/package.nix +++ b/pkgs/by-name/co/comic-neue/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { cp -v Fonts/WebFonts/*.woff2 $out/share/fonts/WOFF2 ''; - meta = with lib; { + meta = { homepage = "http://comicneue.com/"; description = "Casual type face: Make your lemonade stand look like a fortune 500 company"; longDescription = '' @@ -35,8 +35,8 @@ stdenv.mkDerivation rec { the latter angular terminals. Both variants come in Light, Regular, and Bold weights with Oblique variants. ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/co/comic-relief/package.nix b/pkgs/by-name/co/comic-relief/package.nix index 748fdd17a716..1d36c8a80d61 100644 --- a/pkgs/by-name/co/comic-relief/package.nix +++ b/pkgs/by-name/co/comic-relief/package.nix @@ -27,7 +27,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://fontlibrary.org/en/font/comic-relief"; description = "Font metric-compatible with Microsoft Comic Sans"; longDescription = '' @@ -37,9 +37,9 @@ stdenvNoCC.mkDerivation rec { part of the copy. It contains all glyphs and characters available in Comic Sans MS. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; # Reduce the priority of this package. The intent is that if you # also install the `corefonts` package, then you probably will not diff --git a/pkgs/by-name/co/comixcursors/package.nix b/pkgs/by-name/co/comixcursors/package.nix index d9a1f64e1190..ea73cc5e5615 100644 --- a/pkgs/by-name/co/comixcursors/package.nix +++ b/pkgs/by-name/co/comixcursors/package.nix @@ -131,8 +131,8 @@ stdenvNoCC.mkDerivation rec { ''; homepage = "https://gitlab.com/limitland/comixcursors"; changelog = "https://gitlab.com/limitland/comixcursors/-/blob/HEAD/NEWS"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.DerickEddington ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.DerickEddington ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/co/comma/package.nix b/pkgs/by-name/co/comma/package.nix index 0ea3e749541c..e6dfa9cbfb56 100644 --- a/pkgs/by-name/co/comma/package.nix +++ b/pkgs/by-name/co/comma/package.nix @@ -60,11 +60,11 @@ rustPlatform.buildRustPackage rec { version = testers.testVersion { package = comma; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/nix-community/comma"; description = "Runs programs without installing them"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "comma"; - maintainers = with maintainers; [ artturin ]; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/by-name/co/commit-formatter/package.nix b/pkgs/by-name/co/commit-formatter/package.nix index e410b72a3469..1b4d9934939a 100644 --- a/pkgs/by-name/co/commit-formatter/package.nix +++ b/pkgs/by-name/co/commit-formatter/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rqIBDzZghz+fj96im+SNwnLV9jCRjRmh3Wd48z07XH0="; - meta = with lib; { + meta = { description = "CLI tool to help you write git commit"; homepage = "https://github.com/Eliot00/commit-formatter"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ elliot ]; + maintainers = with lib.maintainers; [ elliot ]; mainProgram = "git-cf"; }; } diff --git a/pkgs/by-name/co/commitizen-go/package.nix b/pkgs/by-name/co/commitizen-go/package.nix index 103249165d5b..48f98b635113 100644 --- a/pkgs/by-name/co/commitizen-go/package.nix +++ b/pkgs/by-name/co/commitizen-go/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { "-X 'github.com/lintingzhen/commitizen-go/cmd.version=${version}'" ]; - meta = with lib; { + meta = { description = "Command line utility to standardize git commit messages, golang version"; homepage = "https://github.com/lintingzhen/commitizen-go"; - license = licenses.mit; - maintainers = with maintainers; [ seanrmurphy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seanrmurphy ]; mainProgram = "commitizen-go"; }; } diff --git a/pkgs/by-name/co/common-licenses/package.nix b/pkgs/by-name/co/common-licenses/package.nix index 05ea1e51c96e..f738d88cb129 100644 --- a/pkgs/by-name/co/common-licenses/package.nix +++ b/pkgs/by-name/co/common-licenses/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { cat debian/base-files.links | grep common-licenses | sed -e "s|usr|$out|g" -e "s|^|ln -s |g" | bash -x ''; - meta = with lib; { + meta = { description = "common-licenses extracted from debian base-files package"; homepage = "https://tracker.debian.org/pkg/base-files"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.mkg20001 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.mkg20001 ]; }; } diff --git a/pkgs/by-name/co/compdb/package.nix b/pkgs/by-name/co/compdb/package.nix index 03ef026bb094..dcb9847ce1d8 100644 --- a/pkgs/by-name/co/compdb/package.nix +++ b/pkgs/by-name/co/compdb/package.nix @@ -20,11 +20,11 @@ python3.pkgs.buildPythonApplication rec { setuptools ]; - meta = with lib; { + meta = { description = "Command line tool to manipulate compilation databases"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Sarcasm/compdb"; - maintainers = [ maintainers.detegr ]; + maintainers = [ lib.maintainers.detegr ]; mainProgram = "compdb"; }; } diff --git a/pkgs/by-name/co/compile-daemon/package.nix b/pkgs/by-name/co/compile-daemon/package.nix index d348a82e7f21..ded60a383bfe 100644 --- a/pkgs/by-name/co/compile-daemon/package.nix +++ b/pkgs/by-name/co/compile-daemon/package.nix @@ -30,10 +30,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Very simple compile daemon for Go"; homepage = "https://github.com/githubnemo/CompileDaemon"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "CompileDaemon"; }; diff --git a/pkgs/by-name/co/complete-alias/package.nix b/pkgs/by-name/co/complete-alias/package.nix index 0c3dd2867498..6d29ebdf58da 100644 --- a/pkgs/by-name/co/complete-alias/package.nix +++ b/pkgs/by-name/co/complete-alias/package.nix @@ -35,11 +35,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Automagical shell alias completion"; homepage = "https://github.com/cykerway/complete-alias"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ tuxinaut ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ tuxinaut ]; mainProgram = "complete_alias"; }; } diff --git a/pkgs/by-name/co/complgen/package.nix b/pkgs/by-name/co/complgen/package.nix index 8691ada41e4f..66a371ead111 100644 --- a/pkgs/by-name/co/complgen/package.nix +++ b/pkgs/by-name/co/complgen/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-JexvR/djdRGq3BsOWfEhFCbTe3OaP/jqQgiO+RkK1Tg="; - meta = with lib; { + meta = { description = "Generate {bash,fish,zsh} completions from a single EBNF-like grammar"; mainProgram = "complgen"; homepage = "https://github.com/adaszko/complgen"; changelog = "https://github.com/adaszko/complgen/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/co/compsize/package.nix b/pkgs/by-name/co/compsize/package.nix index 13534de903f1..10057405e27a 100644 --- a/pkgs/by-name/co/compsize/package.nix +++ b/pkgs/by-name/co/compsize/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { mkdir -p $out/share/man/man8 ''; - meta = with lib; { + meta = { description = "Find compression type/ratio on a file or set of files in the Btrfs filesystem"; mainProgram = "compsize"; homepage = "https://github.com/kilobyte/compsize"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/computecpp-unwrapped/package.nix b/pkgs/by-name/co/computecpp-unwrapped/package.nix index 0ce9d28d5c56..c439bedca109 100644 --- a/pkgs/by-name/co/computecpp-unwrapped/package.nix +++ b/pkgs/by-name/co/computecpp-unwrapped/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { isClang = true; }; - meta = with lib; { + meta = { description = "Accelerate Complex C++ Applications on Heterogeneous Compute Systems using Open Standards"; homepage = "https://www.codeplay.com/products/computesuite/computecpp"; - license = licenses.unfree; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; diff --git a/pkgs/by-name/co/conform/package.nix b/pkgs/by-name/co/conform/package.nix index 771368833456..7dc2fd9b0dc6 100644 --- a/pkgs/by-name/co/conform/package.nix +++ b/pkgs/by-name/co/conform/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { nativeCheckInputs = [ git ]; - meta = with lib; { + meta = { description = "Policy enforcement for your pipelines"; homepage = "https://github.com/siderolabs/conform"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ jmgilman jk ]; diff --git a/pkgs/by-name/co/confy/package.nix b/pkgs/by-name/co/confy/package.nix index 46a658e3db5d..b144a1a366d0 100644 --- a/pkgs/by-name/co/confy/package.nix +++ b/pkgs/by-name/co/confy/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation (finalAttrs: { )) ]; - meta = with lib; { + meta = { changelog = "https://git.sr.ht/~fabrixxm/confy/refs/${finalAttrs.version}"; description = "Conferences schedule viewer"; homepage = "https://confy.kirgroup.net/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "confy"; - maintainers = with maintainers; [ michaelgrahamevans ]; + maintainers = with lib.maintainers; [ michaelgrahamevans ]; }; }) diff --git a/pkgs/by-name/co/conjure/package.nix b/pkgs/by-name/co/conjure/package.nix index 5a8ea6082a41..4cf5f5cf93a9 100644 --- a/pkgs/by-name/co/conjure/package.nix +++ b/pkgs/by-name/co/conjure/package.nix @@ -56,7 +56,7 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Magically transform your images"; mainProgram = "conjure"; longDescription = '' @@ -67,7 +67,7 @@ python3Packages.buildPythonApplication rec { bindings from Wand. ''; homepage = "https://github.com/nate-xyz/conjure"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sund3RRR ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sund3RRR ]; }; } diff --git a/pkgs/by-name/co/conmon-rs/package.nix b/pkgs/by-name/co/conmon-rs/package.nix index 47cec8d7d2e5..cac1b26323b2 100644 --- a/pkgs/by-name/co/conmon-rs/package.nix +++ b/pkgs/by-name/co/conmon-rs/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-l+FcrLPE+EGb3IEWikUJ1Ak8lOSlYz9WvUffGHzU0tc="; - meta = with lib; { + meta = { description = "OCI container runtime monitor written in Rust"; homepage = "https://github.com/containers/conmon-rs"; - license = licenses.asl20; - teams = [ teams.podman ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + teams = [ lib.teams.podman ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/connman-gtk/package.nix b/pkgs/by-name/co/connman-gtk/package.nix index 21ed440396f6..8dc1da8f8ace 100644 --- a/pkgs/by-name/co/connman-gtk/package.nix +++ b/pkgs/by-name/co/connman-gtk/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { env.MESON_INSTALL_PREFIX = placeholder "out"; - meta = with lib; { + meta = { description = "GTK GUI for Connman"; mainProgram = "connman-gtk"; homepage = "https://github.com/jgke/connman-gtk"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/co/connman-notify/package.nix b/pkgs/by-name/co/connman-notify/package.nix index 90a27db9a2dd..993e877b3c4d 100644 --- a/pkgs/by-name/co/connman-notify/package.nix +++ b/pkgs/by-name/co/connman-notify/package.nix @@ -39,12 +39,12 @@ python3Packages.buildPythonApplication { install -D -t $out/share/doc README.rst ''; - meta = with lib; { + meta = { description = "Desktop notification integration for connman"; mainProgram = "connman-notify"; homepage = "https://gitlab.com/wavexx/connman-notify"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/co/conntrack-tools/package.nix b/pkgs/by-name/co/conntrack-tools/package.nix index e641c0fecdcd..b132d83059c3 100644 --- a/pkgs/by-name/co/conntrack-tools/package.nix +++ b/pkgs/by-name/co/conntrack-tools/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { (lib.enableFeature systemdSupport "systemd") ]; - meta = with lib; { + meta = { homepage = "https://conntrack-tools.netfilter.org/"; description = "Connection tracking userspace tools"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fpletz ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/co/conserve/package.nix b/pkgs/by-name/co/conserve/package.nix index f0374f975bcb..d5c04cf05af7 100644 --- a/pkgs/by-name/co/conserve/package.nix +++ b/pkgs/by-name/co/conserve/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { "--skip=chgrp_reported_as_changed" ]; - meta = with lib; { + meta = { description = "Robust portable backup tool in Rust"; homepage = "https://github.com/sourcefrog/conserve"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "conserve"; }; } diff --git a/pkgs/by-name/co/conserver/package.nix b/pkgs/by-name/co/conserver/package.nix index d522c939b74e..f9eb15eb04a4 100644 --- a/pkgs/by-name/co/conserver/package.nix +++ b/pkgs/by-name/co/conserver/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { --replace-fail "@INSTALL_PROGRAM@ -s" "@INSTALL_PROGRAM@" ''; - meta = with lib; { + meta = { homepage = "https://www.conserver.com/"; description = "Application that allows multiple users to watch a serial console at the same time"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ sarcasticadmin ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sarcasticadmin ]; }; } diff --git a/pkgs/by-name/co/console-bridge/package.nix b/pkgs/by-name/co/console-bridge/package.nix index 4bf24c06e19c..707ba47ca24d 100644 --- a/pkgs/by-name/co/console-bridge/package.nix +++ b/pkgs/by-name/co/console-bridge/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { validatePkgConfig ]; - meta = with lib; { + meta = { description = "ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages"; homepage = "https://github.com/ros/console_bridge"; - license = licenses.bsd3; - maintainers = with maintainers; [ lopsided98 ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lopsided98 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/co/construct/package.nix b/pkgs/by-name/co/construct/package.nix index fd37ca5deb7b..90b475994a17 100644 --- a/pkgs/by-name/co/construct/package.nix +++ b/pkgs/by-name/co/construct/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Abstraction over x86 NASM Assembly"; longDescription = "Construct adds features such as while loops, if statements, scoped macros and function-call syntax to NASM Assembly."; homepage = "https://github.com/Thomas-de-Bock/construct"; - maintainers = with maintainers; [ rucadi ]; - platforms = platforms.all; - license = licenses.mit; + maintainers = with lib.maintainers; [ rucadi ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; mainProgram = "construct"; }; }) diff --git a/pkgs/by-name/co/consul-alerts/package.nix b/pkgs/by-name/co/consul-alerts/package.nix index e1f51ad5641d..f129a9bd7f3a 100644 --- a/pkgs/by-name/co/consul-alerts/package.nix +++ b/pkgs/by-name/co/consul-alerts/package.nix @@ -23,13 +23,13 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { mainProgram = "consul-alerts"; description = "Highly available daemon for sending notifications and reminders based on Consul health checks"; homepage = "https://github.com/AcalephStorage/consul-alerts"; # As per README - platforms = platforms.linux ++ platforms.freebsd ++ platforms.darwin; - license = licenses.gpl2Only; - maintainers = with maintainers; [ nh2 ]; + platforms = lib.platforms.linux ++ lib.platforms.freebsd ++ lib.platforms.darwin; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ nh2 ]; }; } diff --git a/pkgs/by-name/co/consul-template/package.nix b/pkgs/by-name/co/consul-template/package.nix index 7f430db389d4..e3cd650eb9d5 100644 --- a/pkgs/by-name/co/consul-template/package.nix +++ b/pkgs/by-name/co/consul-template/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { inherit (nixosTests) consul-template; }; - meta = with lib; { + meta = { homepage = "https://github.com/hashicorp/consul-template/"; description = "Generic template rendering and notifications with Consul"; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.mpl20; - maintainers = with maintainers; [ + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ cpcloud ]; mainProgram = "consul-template"; diff --git a/pkgs/by-name/co/contacts/package.nix b/pkgs/by-name/co/contacts/package.nix index d99f0b3a8c05..3daca2f5bece 100644 --- a/pkgs/by-name/co/contacts/package.nix +++ b/pkgs/by-name/co/contacts/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { cp Products/Default/contacts $out/bin ''; - meta = with lib; { + meta = { description = "Access contacts from the Mac address book from command-line"; homepage = "http://www.gnufoo.org/contacts/contacts.html"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ jwiegley ]; - platforms = platforms.darwin; - hydraPlatforms = platforms.darwin; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jwiegley ]; + platforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/co/convco/package.nix b/pkgs/by-name/co/convco/package.nix index 11125e19f6fd..0eb992263cab 100644 --- a/pkgs/by-name/co/convco/package.nix +++ b/pkgs/by-name/co/convco/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { "--skip=git::tests::test_find_matching_prerelease_without_matching_release" ]; - meta = with lib; { + meta = { description = "Conventional commit cli"; mainProgram = "convco"; homepage = "https://github.com/convco/convco"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ hoverbear cafkafk ]; diff --git a/pkgs/by-name/co/convfont/package.nix b/pkgs/by-name/co/convfont/package.nix index d651090bc735..3db04468e74f 100644 --- a/pkgs/by-name/co/convfont/package.nix +++ b/pkgs/by-name/co/convfont/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { install -Dm755 convfont $out/bin/convfont ''; - meta = with lib; { + meta = { description = "Converts font for use with FontLibC"; homepage = "https://github.com/drdnar/convfont"; license = lib.licenses.unfree; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "convfont"; }; } diff --git a/pkgs/by-name/co/convimg/package.nix b/pkgs/by-name/co/convimg/package.nix index fdff4f803403..087345f5f5e0 100644 --- a/pkgs/by-name/co/convimg/package.nix +++ b/pkgs/by-name/co/convimg/package.nix @@ -31,16 +31,16 @@ stdenv.mkDerivation rec { install -Dm755 bin/convimg $out/bin/convimg ''; - meta = with lib; { + meta = { description = "Image palette quantization"; longDescription = '' This program is used to convert images to other formats, specifically for the TI84+CE and related calculators. ''; homepage = "https://github.com/mateoconlechuga/convimg"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "convimg"; }; } diff --git a/pkgs/by-name/co/convmv/package.nix b/pkgs/by-name/co/convmv/package.nix index 50036f87495f..ca2d7887d7a4 100644 --- a/pkgs/by-name/co/convmv/package.nix +++ b/pkgs/by-name/co/convmv/package.nix @@ -61,15 +61,15 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram "$bin/bin/convmv" --prefix PERL5LIB : "$PERL5LIB" ''; - meta = with lib; { + meta = { description = "Converts filenames from one encoding to another"; downloadPage = "https://www.j3e.de/linux/convmv/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Only ]; - maintainers = with maintainers; [ al3xtjames ]; + maintainers = with lib.maintainers; [ al3xtjames ]; mainProgram = "convmv"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/co/cooper-hewitt/package.nix b/pkgs/by-name/co/cooper-hewitt/package.nix index facfe771d09e..f016cfe4a8e5 100644 --- a/pkgs/by-name/co/cooper-hewitt/package.nix +++ b/pkgs/by-name/co/cooper-hewitt/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.cooperhewitt.org/open-source-at-cooper-hewitt/cooper-hewitt-the-typeface-by-chester-jenkins/"; description = "Contemporary sans serif, with characters composed of modified-geometric curves and arches"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/co/coordgenlibs/package.nix b/pkgs/by-name/co/coordgenlibs/package.nix index 6df3495102ea..eb421a3534bc 100644 --- a/pkgs/by-name/co/coordgenlibs/package.nix +++ b/pkgs/by-name/co/coordgenlibs/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { # Fix the build with Clang 20. env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=deprecated-literal-operator"; - meta = with lib; { + meta = { description = "Schrodinger-developed 2D Coordinate Generation"; homepage = "https://github.com/schrodinger/coordgenlibs"; changelog = "https://github.com/schrodinger/coordgenlibs/releases/tag/${finalAttrs.version}"; - maintainers = [ maintainers.rmcgibbo ]; - license = licenses.bsd3; + maintainers = [ lib.maintainers.rmcgibbo ]; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/co/copyright-update/package.nix b/pkgs/by-name/co/copyright-update/package.nix index d4af9d979653..0ea30acf6339 100644 --- a/pkgs/by-name/co/copyright-update/package.nix +++ b/pkgs/by-name/co/copyright-update/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { "prefix=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jaalto/project--copyright-update"; description = "Updates the copyright information in a set of files"; mainProgram = "copyright-update"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/co/coq-kernel/kernel.nix b/pkgs/by-name/co/coq-kernel/kernel.nix index d4ad6d14fe07..338409f28402 100644 --- a/pkgs/by-name/co/coq-kernel/kernel.nix +++ b/pkgs/by-name/co/coq-kernel/kernel.nix @@ -28,10 +28,10 @@ python3.pkgs.buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/EugeneLoy/coq_jupyter"; description = "Jupyter kernel for Coq"; - license = licenses.asl20; - maintainers = with maintainers; [ thomasjm ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thomasjm ]; }; } diff --git a/pkgs/by-name/co/coq2html/package.nix b/pkgs/by-name/co/coq2html/package.nix index 5768962265cd..2fe644068c64 100644 --- a/pkgs/by-name/co/coq2html/package.nix +++ b/pkgs/by-name/co/coq2html/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { cp coq2html $out/bin ''; - meta = with lib; { + meta = { description = "HTML documentation generator for Coq source files"; longDescription = '' coq2html is an HTML documentation generator for Coq source files. It is @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { "Proof" keyword. ''; homepage = "https://github.com/xavierleroy/coq2html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ jwiegley siraben ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "coq2html"; }; } diff --git a/pkgs/by-name/co/corefonts/package.nix b/pkgs/by-name/co/corefonts/package.nix index b58089d1ad33..73bfae46c007 100644 --- a/pkgs/by-name/co/corefonts/package.nix +++ b/pkgs/by-name/co/corefonts/package.nix @@ -137,11 +137,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { homepage = "https://corefonts.sourceforge.net/"; description = "Microsoft's TrueType core fonts for the Web"; - platforms = platforms.all; - license = licenses.unfreeRedistributable; + platforms = lib.platforms.all; + license = lib.licenses.unfreeRedistributable; # Set a non-zero priority to allow easy overriding of the # fontconfig configuration files. priority = 5; diff --git a/pkgs/by-name/co/corerad/package.nix b/pkgs/by-name/co/corerad/package.nix index 462cd493e830..f0e85a565eaf 100644 --- a/pkgs/by-name/co/corerad/package.nix +++ b/pkgs/by-name/co/corerad/package.nix @@ -34,15 +34,15 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/mdlayher/corerad"; description = "Extensible and observable IPv6 NDP RA daemon"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mdlayher jmbaur ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "corerad"; }; } diff --git a/pkgs/by-name/co/corosync/package.nix b/pkgs/by-name/co/corosync/package.nix index d640734c7b51..a885dd1e5a4f 100644 --- a/pkgs/by-name/co/corosync/package.nix +++ b/pkgs/by-name/co/corosync/package.nix @@ -102,12 +102,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) pacemaker; }; - meta = with lib; { + meta = { homepage = "https://corosync.org/"; description = "Group Communication System with features for implementing high availability within applications"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ montag451 ryantm ]; diff --git a/pkgs/by-name/co/corrosion/package.nix b/pkgs/by-name/co/corrosion/package.nix index 54e30851a464..cd1250ce1ad0 100644 --- a/pkgs/by-name/co/corrosion/package.nix +++ b/pkgs/by-name/co/corrosion/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Tool for integrating Rust into an existing CMake project"; homepage = "https://github.com/corrosion-rs/corrosion"; changelog = "https://github.com/corrosion-rs/corrosion/blob/${src.rev}/RELEASES.md"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/co/corrupter/package.nix b/pkgs/by-name/co/corrupter/package.nix index 161727916ff1..5161a6489b70 100644 --- a/pkgs/by-name/co/corrupter/package.nix +++ b/pkgs/by-name/co/corrupter/package.nix @@ -26,11 +26,11 @@ buildGoModule { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Simple image glitcher suitable for producing lockscreens"; homepage = "https://github.com/r00tman/corrupter"; - license = licenses.bsd2; - maintainers = [ maintainers.ivan770 ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.ivan770 ]; mainProgram = "corrupter"; }; } diff --git a/pkgs/by-name/co/corsix-th/package.nix b/pkgs/by-name/co/corsix-th/package.nix index caba7a48c1e6..5ee92f2a0952 100644 --- a/pkgs/by-name/co/corsix-th/package.nix +++ b/pkgs/by-name/co/corsix-th/package.nix @@ -77,15 +77,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Reimplementation of the 1997 Bullfrog business sim Theme Hospital"; mainProgram = "corsix-th"; homepage = "https://corsixth.com/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hughobrien matteopacini ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/co/corundum/package.nix b/pkgs/by-name/co/corundum/package.nix index 8864f859a583..6a7223f2e4a3 100644 --- a/pkgs/by-name/co/corundum/package.nix +++ b/pkgs/by-name/co/corundum/package.nix @@ -11,14 +11,14 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "corundum"; - meta = with lib; { + meta = { description = "Tool and libraries for maintaining Ruby gems"; homepage = "https://github.com/nyarly/corundum"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyarly nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/co/cosign/package.nix b/pkgs/by-name/co/cosign/package.nix index cf0ac99c6ec5..8862e9b4d233 100644 --- a/pkgs/by-name/co/cosign/package.nix +++ b/pkgs/by-name/co/cosign/package.nix @@ -78,13 +78,13 @@ buildGoModule (finalAttrs: { version = "v${finalAttrs.version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/sigstore/cosign"; changelog = "https://github.com/sigstore/cosign/releases/tag/v${finalAttrs.version}"; description = "Container Signing CLI with support for ephemeral keys and Sigstore signing"; mainProgram = "cosign"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lesuisse jk developer-guy diff --git a/pkgs/by-name/co/cosmic-screenshot/package.nix b/pkgs/by-name/co/cosmic-screenshot/package.nix index e8ab78b96982..fa567cda5e10 100644 --- a/pkgs/by-name/co/cosmic-screenshot/package.nix +++ b/pkgs/by-name/co/cosmic-screenshot/package.nix @@ -58,12 +58,12 @@ rustPlatform.buildRustPackage (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-screenshot"; description = "Screenshot tool for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - teams = [ teams.cosmic ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.cosmic ]; + platforms = lib.platforms.linux; mainProgram = "cosmic-screenshot"; }; }) diff --git a/pkgs/by-name/co/costa/package.nix b/pkgs/by-name/co/costa/package.nix index aa540e23c593..3413c4f77b85 100644 --- a/pkgs/by-name/co/costa/package.nix +++ b/pkgs/by-name/co/costa/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "-DSCALAPACK_ROOT=${scalapack}" ]; - meta = with lib; { + meta = { description = "Distributed Communication-Optimal Shuffle and Transpose Algorithm"; homepage = "https://github.com/eth-cscs/COSTA"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/co/cotp/package.nix b/pkgs/by-name/co/cotp/package.nix index a6afa6170e15..94691080ee93 100644 --- a/pkgs/by-name/co/cotp/package.nix +++ b/pkgs/by-name/co/cotp/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ libxcb ]; - meta = with lib; { + meta = { homepage = "https://github.com/replydev/cotp"; description = "Trustworthy, encrypted, command-line TOTP/HOTP authenticator app with import functionality"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ davsanchez ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ davsanchez ]; mainProgram = "cotp"; }; } diff --git a/pkgs/by-name/co/courier-prime/package.nix b/pkgs/by-name/co/courier-prime/package.nix index 7558ad3dadff..1ac064dc6128 100644 --- a/pkgs/by-name/co/courier-prime/package.nix +++ b/pkgs/by-name/co/courier-prime/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monospaced font designed specifically for screenplays"; homepage = "https://github.com/quoteunquoteapps/CourierPrime"; - license = licenses.ofl; - maintainers = [ maintainers.austinbutler ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.austinbutler ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/co/coursera-dl/package.nix b/pkgs/by-name/co/coursera-dl/package.nix index f2fdc53f85fa..b79b0b2069e5 100644 --- a/pkgs/by-name/co/coursera-dl/package.nix +++ b/pkgs/by-name/co/coursera-dl/package.nix @@ -63,13 +63,13 @@ python3.pkgs.buildPythonApplication rec { "test_quiz_exam_to_markup_converter" ]; - meta = with lib; { + meta = { description = "CLI for downloading Coursera.org videos and naming them"; mainProgram = "coursera-dl"; homepage = "https://github.com/coursera-dl/coursera-dl"; changelog = "https://github.com/coursera-dl/coursera-dl/blob/${src.rev}/CHANGELOG.md"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ alexfmpe ]; - platforms = platforms.darwin ++ platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ alexfmpe ]; + platforms = lib.platforms.darwin ++ lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/coursier/package.nix b/pkgs/by-name/co/coursier/package.nix index 056a92738475..37956eb27c4a 100644 --- a/pkgs/by-name/co/coursier/package.nix +++ b/pkgs/by-name/co/coursier/package.nix @@ -66,14 +66,14 @@ stdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { homepage = "https://get-coursier.io/"; description = "Scala library to fetch dependencies from Maven / Ivy repositories"; mainProgram = "cs"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ adelbertc ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/co/cowpatty/package.nix b/pkgs/by-name/co/cowpatty/package.nix index 735de69c250b..0e5924de2396 100644 --- a/pkgs/by-name/co/cowpatty/package.nix +++ b/pkgs/by-name/co/cowpatty/package.nix @@ -52,14 +52,14 @@ stdenv.mkDerivation rec { installManPage genpmk.1 ''; - meta = with lib; { + meta = { description = "Offline dictionary attack against WPA/WPA2 networks"; homepage = "https://github.com/joswr1ght/cowpatty"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nico202 fab ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/coze/package.nix b/pkgs/by-name/co/coze/package.nix index 2149283645f6..830b357c6554 100644 --- a/pkgs/by-name/co/coze/package.nix +++ b/pkgs/by-name/co/coze/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/coze_cli $out/bin/coze ''; - meta = with lib; { + meta = { description = "CLI client for Coze, a cryptographic JSON messaging specification"; mainProgram = "coze"; homepage = "https://github.com/Cyphrme/coze_cli"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ qbit ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ qbit ]; }; } diff --git a/pkgs/by-name/co/cozy-drive/package.nix b/pkgs/by-name/co/cozy-drive/package.nix index 78d40c796651..5a52e741b8f6 100644 --- a/pkgs/by-name/co/cozy-drive/package.nix +++ b/pkgs/by-name/co/cozy-drive/package.nix @@ -24,11 +24,11 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Cozy Drive is a synchronization tool for your files and folders with Cozy Cloud"; homepage = "https://cozy.io"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ simarra ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ simarra ]; platforms = [ "x86_64-linux" ]; mainProgram = "cozydrive"; }; diff --git a/pkgs/by-name/co/cozy/package.nix b/pkgs/by-name/co/cozy/package.nix index 63ca2d2b931d..c1220061f707 100644 --- a/pkgs/by-name/co/cozy/package.nix +++ b/pkgs/by-name/co/cozy/package.nix @@ -73,15 +73,15 @@ python3Packages.buildPythonApplication rec { ln -s $out/bin/com.github.geigi.cozy $out/bin/cozy ''; - meta = with lib; { + meta = { description = "Modern audio book player for Linux"; homepage = "https://cozy.geigi.de/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ makefu aleksana ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "com.github.geigi.cozy"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cp/cp210x-program/package.nix b/pkgs/by-name/cp/cp210x-program/package.nix index 2e41daf44f14..d36c8f188d53 100644 --- a/pkgs/by-name/cp/cp210x-program/package.nix +++ b/pkgs/by-name/cp/cp210x-program/package.nix @@ -29,10 +29,10 @@ python3.pkgs.buildPythonApplication rec { ln -s $out/bin/cp210x-program{.py,} ''; - meta = with lib; { + meta = { description = "EEPROM tool for Silabs CP210x USB-Serial adapter"; homepage = "https://github.com/VCTLabs/cp210x-program"; - license = licenses.lgpl21Only; # plus/only status unclear + license = lib.licenses.lgpl21Only; # plus/only status unclear maintainers = [ ]; mainProgram = "cp210x-program"; }; diff --git a/pkgs/by-name/cp/cp437/package.nix b/pkgs/by-name/cp/cp437/package.nix index e5cae69edd0e..4bc341e2db3f 100644 --- a/pkgs/by-name/cp/cp437/package.nix +++ b/pkgs/by-name/cp/cp437/package.nix @@ -19,14 +19,14 @@ stdenv.mkDerivation rec { install -Dm755 cp437 -t $out/bin ''; - meta = with lib; { + meta = { description = '' Emulates an old-style "code page 437" / "IBM-PC" character set terminal on a modern UTF-8 terminal emulator ''; homepage = "https://github.com/keaston/cp437"; - license = licenses.bsd3; - maintainers = with maintainers; [ jb55 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jb55 ]; mainProgram = "cp437"; }; } diff --git a/pkgs/by-name/cp/cpcfs/package.nix b/pkgs/by-name/cp/cpcfs/package.nix index b726e17a1f66..4e347430250a 100644 --- a/pkgs/by-name/cp/cpcfs/package.nix +++ b/pkgs/by-name/cp/cpcfs/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Manipulating CPC dsk images and files"; mainProgram = "cpcfs"; homepage = "https://github.com/derikz/cpcfs/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cp/cpio/package.nix b/pkgs/by-name/cp/cpio/package.nix index d2b2ed66fa1d..69efb5f2f2a2 100644 --- a/pkgs/by-name/cp/cpio/package.nix +++ b/pkgs/by-name/cp/cpio/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { initrd = nixosTests.systemd-initrd-simple; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/cpio/"; description = "Program to create or extract from cpio archives"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; priority = 6; # resolves collision with gnutar's "libexec/rmt" mainProgram = "cpio"; }; diff --git a/pkgs/by-name/cp/cpp-hocon/package.nix b/pkgs/by-name/cp/cpp-hocon/package.nix index dcaab234db10..ade71d01166d 100644 --- a/pkgs/by-name/cp/cpp-hocon/package.nix +++ b/pkgs/by-name/cp/cpp-hocon/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { leatherman ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "C++ port of the Typesafe Config library"; - license = licenses.asl20; - maintainers = [ maintainers.womfoo ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.womfoo ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cp/cpp-ipfs-http-client/package.nix b/pkgs/by-name/cp/cpp-ipfs-http-client/package.nix index 736481da41b9..af945b48a3ae 100644 --- a/pkgs/by-name/cp/cpp-ipfs-http-client/package.nix +++ b/pkgs/by-name/cp/cpp-ipfs-http-client/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation { "-Wno-error=deprecated-declarations" ]; - meta = with lib; { + meta = { description = "IPFS C++ API client library"; homepage = "https://github.com/vasild/cpp-ipfs-http-client"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/cp/cpp-netlib/package.nix b/pkgs/by-name/cp/cpp-netlib/package.nix index f7c126fcc1b9..665f240c54cd 100644 --- a/pkgs/by-name/cp/cpp-netlib/package.nix +++ b/pkgs/by-name/cp/cpp-netlib/package.nix @@ -53,10 +53,10 @@ stdenvForCppNetlib.mkDerivation rec { # Most tests make network GET requests to various websites doCheck = false; - meta = with lib; { + meta = { description = "Collection of open-source libraries for high level network programming"; homepage = "https://cpp-netlib.org"; - license = licenses.boost; - platforms = platforms.all; + license = lib.licenses.boost; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cp/cpp-redis/package.nix b/pkgs/by-name/cp/cpp-redis/package.nix index 88b099eb0f0e..255e379c09fb 100644 --- a/pkgs/by-name/cp/cpp-redis/package.nix +++ b/pkgs/by-name/cp/cpp-redis/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "C++11 Lightweight Redis client: async, thread-safe, no dependency, pipelining, multi-platform"; homepage = "https://github.com/cpp-redis/cpp_redis"; changelog = "https://github.com/cpp-redis/cpp_redis/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ poelzi ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ poelzi ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cp/cpp-utilities/package.nix b/pkgs/by-name/cp/cpp-utilities/package.nix index baa894136ad1..e9f4369690d6 100644 --- a/pkgs/by-name/cp/cpp-utilities/package.nix +++ b/pkgs/by-name/cp/cpp-utilities/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { # tests fail on Darwin doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { homepage = "https://github.com/Martchus/cpp-utilities"; description = "Common C++ classes and routines used by @Martchus' applications featuring argument parser, IO and conversion utilities"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/cp/cppclean/package.nix b/pkgs/by-name/cp/cppclean/package.nix index 561793b61463..984f1942b251 100644 --- a/pkgs/by-name/cp/cppclean/package.nix +++ b/pkgs/by-name/cp/cppclean/package.nix @@ -28,12 +28,12 @@ python3Packages.buildPythonApplication rec { ./test.bash ''; - meta = with lib; { + meta = { description = "Finds problems in C++ source that slow development of large code bases"; mainProgram = "cppclean"; homepage = "https://github.com/myint/cppclean"; - license = licenses.asl20; - maintainers = with maintainers; [ nthorne ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nthorne ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cp/cppcms/package.nix b/pkgs/by-name/cp/cppcms/package.nix index d9c59640ba5d..aba0b7ceaf30 100644 --- a/pkgs/by-name/cp/cppcms/package.nix +++ b/pkgs/by-name/cp/cppcms/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { "--no-warn-unused-cli" ]; - meta = with lib; { + meta = { homepage = "http://cppcms.com"; description = "High Performance C++ Web Framework"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/cp/cppcodec/package.nix b/pkgs/by-name/cp/cppcodec/package.nix index e8f9910398c5..5dba1db7c538 100644 --- a/pkgs/by-name/cp/cppcodec/package.nix +++ b/pkgs/by-name/cp/cppcodec/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Header-only C++11 library for encode/decode functions as in RFC 4648"; longDescription = '' Header-only C++11 library to encode/decode base64, base64url, base32, @@ -38,8 +38,8 @@ stdenv.mkDerivation (finalAttrs: { Crockford's base32. ''; homepage = "https://github.com/tplgy/cppcodec"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ panicgh raitobezarius ]; diff --git a/pkgs/by-name/cp/cppdb/package.nix b/pkgs/by-name/cp/cppdb/package.nix index f823aa8027e9..c3f1d70d236e 100644 --- a/pkgs/by-name/cp/cppdb/package.nix +++ b/pkgs/by-name/cp/cppdb/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "--no-warn-unused-cli" ]; env.NIX_CFLAGS_COMPILE = "-I${libmysqlclient}/include/mysql -L${libmysqlclient}/lib/mysql"; - meta = with lib; { + meta = { homepage = "http://cppcms.com/sql/cppdb/"; description = "C++ Connectivity library that supports MySQL, PostgreSQL, Sqlite3 databases and generic ODBC drivers"; - platforms = platforms.linux; - license = licenses.boost; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.boost; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/cp/cppe/package.nix b/pkgs/by-name/cp/cppe/package.nix index 7848b889b615..dfe9ace7a411 100644 --- a/pkgs/by-name/cp/cppe/package.nix +++ b/pkgs/by-name/cp/cppe/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = with lib; { + meta = { description = "C++ and Python library for Polarizable Embedding"; homepage = "https://github.com/maxscheurer/cppe"; - license = licenses.lgpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/cp/cppreference-doc/package.nix b/pkgs/by-name/cp/cppreference-doc/package.nix index abb5931e7323..57dd1837c12b 100644 --- a/pkgs/by-name/cp/cppreference-doc/package.nix +++ b/pkgs/by-name/cp/cppreference-doc/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { passthru = { inherit pname version; }; - meta = with lib; { + meta = { description = "C++ standard library reference"; homepage = "https://en.cppreference.com"; - license = licenses.cc-by-sa-30; - maintainers = with maintainers; [ panicgh ]; - platforms = platforms.all; + license = lib.licenses.cc-by-sa-30; + maintainers = with lib.maintainers; [ panicgh ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cp/cpptest/package.nix b/pkgs/by-name/cp/cpptest/package.nix index 77045357c1a2..8ee7b241aa3f 100644 --- a/pkgs/by-name/cp/cpptest/package.nix +++ b/pkgs/by-name/cp/cpptest/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "0lpy3f2fjx1srh02myanlp6zfi497whlldcrnij39ghfhm0arcnm"; }; - meta = with lib; { + meta = { homepage = "http://cpptest.sourceforge.net/"; description = "Simple C++ unit testing framework"; - maintainers = with maintainers; [ bosu ]; + maintainers = with lib.maintainers; [ bosu ]; license = lib.licenses.lgpl3; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cp/cpptoml/package.nix b/pkgs/by-name/cp/cpptoml/package.nix index 825a8b61b67f..6a60015842f4 100644 --- a/pkgs/by-name/cp/cpptoml/package.nix +++ b/pkgs/by-name/cp/cpptoml/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { 'cmake_minimum_required(VERSION 3.10)' ''; - meta = with lib; { + meta = { description = "C++ TOML configuration library"; homepage = "https://github.com/skystrife/cpptoml"; - license = licenses.mit; - maintainers = with maintainers; [ photex ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ photex ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cp/cppunit/package.nix b/pkgs/by-name/cp/cppunit/package.nix index c131e8f84be9..7fbde85c3910 100644 --- a/pkgs/by-name/cp/cppunit/package.nix +++ b/pkgs/by-name/cp/cppunit/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { # tested compilers. configureFlags = [ "--disable-werror" ]; - meta = with lib; { + meta = { homepage = "https://freedesktop.org/wiki/Software/cppunit/"; description = "C++ unit testing framework"; mainProgram = "DllPlugInTester"; - license = licenses.lgpl21; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/cp/cpputest/package.nix b/pkgs/by-name/cp/cpputest/package.nix index 3d272be32fea..9690ef1b5988 100644 --- a/pkgs/by-name/cp/cpputest/package.nix +++ b/pkgs/by-name/cp/cpputest/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "1xslavlb1974y5xvs8n1j9zkk05dlw8imy4saasrjlmibl895ii1"; }; - meta = with lib; { + meta = { homepage = "https://cpputest.github.io/"; description = "Unit testing and mocking framework for C/C++"; - platforms = platforms.all; - license = licenses.bsd3; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/cp/cppzmq/package.nix b/pkgs/by-name/cp/cppzmq/package.nix index 27783daa1418..f465fa3279b3 100644 --- a/pkgs/by-name/cp/cppzmq/package.nix +++ b/pkgs/by-name/cp/cppzmq/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { "-DCPPZMQ_BUILD_TESTS=OFF" ]; - meta = with lib; { + meta = { homepage = "https://github.com/zeromq/cppzmq"; - license = licenses.bsd2; + license = lib.licenses.bsd2; description = "C++ binding for 0MQ"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cp/cproto/package.nix b/pkgs/by-name/cp/cproto/package.nix index 37edecc2dd47..257bba7420d5 100644 --- a/pkgs/by-name/cp/cproto/package.nix +++ b/pkgs/by-name/cp/cproto/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { [ "$("$out/bin/cproto" -V 2>&1)" = '${version}' ] ''; - meta = with lib; { + meta = { description = "Tool to generate C function prototypes from C source code"; mainProgram = "cproto"; homepage = "https://invisible-island.net/cproto/"; - license = licenses.publicDomain; - platforms = platforms.all; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cp/cpu-energy-meter/package.nix b/pkgs/by-name/cp/cpu-energy-meter/package.nix index 859997a80aff..965155643821 100644 --- a/pkgs/by-name/cp/cpu-energy-meter/package.nix +++ b/pkgs/by-name/cp/cpu-energy-meter/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/etc/udev/rules.d $src/debian/additional_files/59-msr.rules ''; - meta = with lib; { + meta = { description = "Tool for measuring energy consumption of Intel CPUs"; homepage = "https://github.com/sosy-lab/cpu-energy-meter"; changelog = "https://github.com/sosy-lab/cpu-energy-meter/blob/main/CHANGELOG.md"; - maintainers = with maintainers; [ lorenzleutgeb ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ lorenzleutgeb ]; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; mainProgram = "cpu-energy-meter"; }; diff --git a/pkgs/by-name/cp/cpu_features/package.nix b/pkgs/by-name/cp/cpu_features/package.nix index 8c3883f02efe..1899ae0d4aca 100644 --- a/pkgs/by-name/cp/cpu_features/package.nix +++ b/pkgs/by-name/cp/cpu_features/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}" ]; - meta = with lib; { + meta = { description = "Cross platform C99 library to get cpu features at runtime"; homepage = "https://github.com/google/cpu_features"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ renesat ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ renesat ]; }; } diff --git a/pkgs/by-name/cp/cpufrequtils/package.nix b/pkgs/by-name/cp/cpufrequtils/package.nix index 3acd772bdd3c..c739aa6a0ca8 100644 --- a/pkgs/by-name/cp/cpufrequtils/package.nix +++ b/pkgs/by-name/cp/cpufrequtils/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { gettext ]; - meta = with lib; { + meta = { description = "Tools to display or change the CPU governor settings"; homepage = "http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; mainProgram = "cpufreq-set"; }; diff --git a/pkgs/by-name/cp/cpuid/package.nix b/pkgs/by-name/cp/cpuid/package.nix index 31a0db378678..40ad2537c170 100644 --- a/pkgs/by-name/cp/cpuid/package.nix +++ b/pkgs/by-name/cp/cpuid/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { description = "Linux tool to dump x86 CPUID information about the CPU"; longDescription = '' cpuid dumps detailed information about the CPU(s) gathered from the CPUID @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { Cyrix, UMC, NexGen, Rise, and SiS CPUs. ''; homepage = "http://etallen.com/cpuid.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ blitz ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ blitz ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/cp/cpulimit/package.nix b/pkgs/by-name/cp/cpulimit/package.nix index 3e143ac49887..14a9d4d28b05 100644 --- a/pkgs/by-name/cp/cpulimit/package.nix +++ b/pkgs/by-name/cp/cpulimit/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { cp src/cpulimit $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/opsengine/cpulimit"; description = "CPU usage limiter"; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "cpulimit"; - maintainers = [ maintainers.jsoo1 ]; + maintainers = [ lib.maintainers.jsoo1 ]; }; } diff --git a/pkgs/by-name/cp/cpuminer/package.nix b/pkgs/by-name/cp/cpuminer/package.nix index eb8be6375be6..c330418259d0 100644 --- a/pkgs/by-name/cp/cpuminer/package.nix +++ b/pkgs/by-name/cp/cpuminer/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { configureFlags = [ "CFLAGS=-O3" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pooler/cpuminer"; description = "CPU miner for Litecoin and Bitcoin"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "minerd"; }; } diff --git a/pkgs/by-name/cp/cpuset/package.nix b/pkgs/by-name/cp/cpuset/package.nix index 6dff3c9f53bd..d6ee7cfaba79 100644 --- a/pkgs/by-name/cp/cpuset/package.nix +++ b/pkgs/by-name/cp/cpuset/package.nix @@ -30,12 +30,12 @@ python3.pkgs.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python application that forms a wrapper around the standard Linux filesystem calls, to make using the cpusets facilities in the Linux kernel easier"; homepage = "https://github.com/SUSE/cpuset"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "cset"; - maintainers = with maintainers; [ wykurz ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ wykurz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cp/cpustat/package.nix b/pkgs/by-name/cp/cpustat/package.nix index 033cae39c740..7f67942f15ed 100644 --- a/pkgs/by-name/cp/cpustat/package.nix +++ b/pkgs/by-name/cp/cpustat/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "CPU usage monitoring tool"; homepage = "https://github.com/ColinIanKing/cpustat"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "cpustat"; }; diff --git a/pkgs/by-name/cr/crackle/package.nix b/pkgs/by-name/cr/crackle/package.nix index a6099418574e..f70edfb8996f 100644 --- a/pkgs/by-name/cr/crackle/package.nix +++ b/pkgs/by-name/cr/crackle/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { "INSTALL=${coreutils}/bin/install" ]; - meta = with lib; { + meta = { description = "Crack and decrypt BLE encryption"; homepage = "https://github.com/mikeryan/crackle"; - maintainers = with maintainers; [ moni ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ moni ]; + license = lib.licenses.bsd2; mainProgram = "crackle"; }; } diff --git a/pkgs/by-name/cr/crackql/package.nix b/pkgs/by-name/cr/crackql/package.nix index c2f3eecfb47e..b3474f3f65c8 100644 --- a/pkgs/by-name/cr/crackql/package.nix +++ b/pkgs/by-name/cr/crackql/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "GraphQL password brute-force and fuzzing utility"; mainProgram = "crackql"; homepage = "https://github.com/nicholasaleks/CrackQL"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/cr/craftos-pc/package.nix b/pkgs/by-name/cr/craftos-pc/package.nix index 764623f671fb..a9efef2055cf 100644 --- a/pkgs/by-name/cr/craftos-pc/package.nix +++ b/pkgs/by-name/cr/craftos-pc/package.nix @@ -117,15 +117,15 @@ stdenv.mkDerivation rec { eval-periphemu = callPackage ./test-eval-periphemu { }; }; - meta = with lib; { + meta = { description = "Implementation of the CraftOS-PC API written in C++ using SDL"; homepage = "https://www.craftos-pc.cc"; - license = with licenses; [ + license = with lib.licenses; [ mit free ]; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ siraben tomodachi94 viluon diff --git a/pkgs/by-name/cr/cramfsprogs/package.nix b/pkgs/by-name/cr/cramfsprogs/package.nix index 46f24eae1326..ea21522d9de8 100644 --- a/pkgs/by-name/cr/cramfsprogs/package.nix +++ b/pkgs/by-name/cr/cramfsprogs/package.nix @@ -26,14 +26,14 @@ stdenv.mkDerivation { buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Tools to create, check, and extract content of CramFs images"; homepage = "https://github.com/npitre/cramfs-tools"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pamplemousse blitz ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cr/cramfsswap/package.nix b/pkgs/by-name/cr/cramfsswap/package.nix index 922f7323dd3c..9d3b5b75c343 100644 --- a/pkgs/by-name/cr/cramfsswap/package.nix +++ b/pkgs/by-name/cr/cramfsswap/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { install --target $out/bin -D cramfsswap ''; - meta = with lib; { + meta = { description = "Swap endianess of a cram filesystem (cramfs)"; mainProgram = "cramfsswap"; homepage = "https://packages.debian.org/sid/utils/cramfsswap"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cr/crate2nix/package.nix b/pkgs/by-name/cr/crate2nix/package.nix index 08a997ff7bc2..3b5dc41b22c1 100644 --- a/pkgs/by-name/cr/crate2nix/package.nix +++ b/pkgs/by-name/cr/crate2nix/package.nix @@ -49,7 +49,7 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Nix build file generator for Rust crates"; mainProgram = "crate2nix"; longDescription = '' @@ -58,8 +58,8 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/nix-community/crate2nix"; changelog = "https://nix-community.github.io/crate2nix/90_reference/90_changelog"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kolloch cole-h kranzes diff --git a/pkgs/by-name/cr/crawl/package.nix b/pkgs/by-name/cr/crawl/package.nix index 09f7600b0244..1e5a9d4cdcba 100644 --- a/pkgs/by-name/cr/crawl/package.nix +++ b/pkgs/by-name/cr/crawl/package.nix @@ -114,7 +114,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Open-source, single-player, role-playing roguelike game"; homepage = "http://crawl.develz.org/"; longDescription = '' @@ -123,13 +123,13 @@ stdenv.mkDerivation rec { with dangerous and unfriendly monsters in a quest to rescue the mystifyingly fabulous Orb of Zot. ''; - platforms = platforms.linux ++ platforms.darwin; - license = with licenses; [ + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = with lib.licenses; [ gpl2Plus bsd2 bsd3 mit - licenses.zlib + lib.licenses.zlib cc0 ]; maintainers = [ ]; diff --git a/pkgs/by-name/cr/crawley/package.nix b/pkgs/by-name/cr/crawley/package.nix index dcf7530b5706..9bc30cc24703 100644 --- a/pkgs/by-name/cr/crawley/package.nix +++ b/pkgs/by-name/cr/crawley/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { --zsh <(echo "complete -o nospace -C $out/bin/crawley crawley") ''; - meta = with lib; { + meta = { description = "Unix-way web crawler"; homepage = "https://github.com/s0rg/crawley"; - license = licenses.mit; - maintainers = with maintainers; [ ltstf1re ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ltstf1re ]; mainProgram = "crawley"; }; } diff --git a/pkgs/by-name/cr/crc32c/package.nix b/pkgs/by-name/cr/crc32c/package.nix index 977f35dc9c68..7353f83de924 100644 --- a/pkgs/by-name/cr/crc32c/package.nix +++ b/pkgs/by-name/cr/crc32c/package.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/google/crc32c"; description = "CRC32C implementation with support for CPU-specific acceleration instructions"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ cpcloud ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/by-name/cr/crd2pulumi/package.nix b/pkgs/by-name/cr/crd2pulumi/package.nix index ef663572db1d..7638c2ac89e7 100644 --- a/pkgs/by-name/cr/crd2pulumi/package.nix +++ b/pkgs/by-name/cr/crd2pulumi/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Generate typed CustomResources from a Kubernetes CustomResourceDefinition"; mainProgram = "crd2pulumi"; homepage = "https://github.com/pulumi/crd2pulumi"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/cr/cre2/package.nix b/pkgs/by-name/cr/cre2/package.nix index fff9b4ddbf94..f479a75117ab 100644 --- a/pkgs/by-name/cr/cre2/package.nix +++ b/pkgs/by-name/cr/cre2/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { "--enable-maintainer-mode" ]; - meta = with lib; { + meta = { homepage = "http://marcomaggi.github.io/docs/cre2.html"; description = "C Wrapper for RE2"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cr/createrepo_c/package.nix b/pkgs/by-name/cr/createrepo_c/package.nix index 77374ef25273..0d7b0b14e283 100644 --- a/pkgs/by-name/cr/createrepo_c/package.nix +++ b/pkgs/by-name/cr/createrepo_c/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { libmodulemd ]; - meta = with lib; { + meta = { description = "C implementation of createrepo"; homepage = "https://rpm-software-management.github.io/createrepo_c/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/cr/credential-detector/package.nix b/pkgs/by-name/cr/credential-detector/package.nix index e55eb83f8526..53aebfb0eb1e 100644 --- a/pkgs/by-name/cr/credential-detector/package.nix +++ b/pkgs/by-name/cr/credential-detector/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tool to detect potentially hard-coded credentials"; mainProgram = "credential-detector"; homepage = "https://github.com/ynori7/credential-detector"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/cr/credhub-cli/package.nix b/pkgs/by-name/cr/credhub-cli/package.nix index 3c7a1e04bd18..e5e437b6069b 100644 --- a/pkgs/by-name/cr/credhub-cli/package.nix +++ b/pkgs/by-name/cr/credhub-cli/package.nix @@ -38,10 +38,10 @@ buildGoModule rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { description = "Provides a command line interface to interact with CredHub servers"; homepage = "https://github.com/cloudfoundry-incubator/credhub-cli"; - maintainers = with maintainers; [ ris ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ ris ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/cr/creds/package.nix b/pkgs/by-name/cr/creds/package.nix index 68fb8fd0da0f..6c0213f30635 100644 --- a/pkgs/by-name/cr/creds/package.nix +++ b/pkgs/by-name/cr/creds/package.nix @@ -38,12 +38,12 @@ python3.pkgs.buildPythonApplication rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Tool to search a collection of default credentials"; mainProgram = "creds"; homepage = "https://github.com/ihebski/DefaultCreds-cheat-sheet"; changelog = "https://github.com/ihebski/DefaultCreds-cheat-sheet/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/cr/credslayer/package.nix b/pkgs/by-name/cr/credslayer/package.nix index 1c03283d7737..e08e2309020a 100644 --- a/pkgs/by-name/cr/credslayer/package.nix +++ b/pkgs/by-name/cr/credslayer/package.nix @@ -50,12 +50,12 @@ python3.pkgs.buildPythonApplication rec { --prefix PATH : "${lib.makeBinPath [ wireshark-cli ]}" ''; - meta = with lib; { + meta = { description = "Extract credentials and other useful info from network captures"; mainProgram = "credslayer"; homepage = "https://github.com/ShellCode33/CredSLayer"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; # broken due to wireshark 4.4 bump # see: https://github.com/NixOS/nixpkgs/pull/344914 broken = true; diff --git a/pkgs/by-name/cr/creep/package.nix b/pkgs/by-name/cr/creep/package.nix index 844754b80eeb..f79b3e228f82 100644 --- a/pkgs/by-name/cr/creep/package.nix +++ b/pkgs/by-name/cr/creep/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { mkfontdir "$out/share/fonts/misc" ''; - meta = with lib; { + meta = { description = "Pretty sweet 4px wide pixel font"; homepage = "https://github.com/romeovs/creep"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/cr/crex/package.nix b/pkgs/by-name/cr/crex/package.nix index 3958fd61d1e1..bf982f754d9d 100644 --- a/pkgs/by-name/cr/crex/package.nix +++ b/pkgs/by-name/cr/crex/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Explore, test, and check regular expressions in the terminal"; homepage = "https://octobanana.com/software/crex"; - license = licenses.mit; - maintainers = with maintainers; [ dtzWill ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dtzWill ]; + platforms = lib.platforms.all; mainProgram = "crex"; }; } diff --git a/pkgs/by-name/cr/cri-tools/package.nix b/pkgs/by-name/cr/cri-tools/package.nix index dbc6adfd11b1..a01cae703f75 100644 --- a/pkgs/by-name/cr/cri-tools/package.nix +++ b/pkgs/by-name/cr/cri-tools/package.nix @@ -43,10 +43,10 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CLI and validation tools for Kubelet Container Runtime Interface (CRI)"; homepage = "https://github.com/kubernetes-sigs/cri-tools"; - license = licenses.asl20; - teams = [ teams.podman ]; + license = lib.licenses.asl20; + teams = [ lib.teams.podman ]; }; } diff --git a/pkgs/by-name/cr/crimson-pro/package.nix b/pkgs/by-name/cr/crimson-pro/package.nix index 346737be8f10..6a8ad9dbcb4b 100644 --- a/pkgs/by-name/cr/crimson-pro/package.nix +++ b/pkgs/by-name/cr/crimson-pro/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/Fonthausen/CrimsonPro"; description = "Professionally produced redesign of Crimson by Jacques Le Bailly"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ncfavier ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ncfavier ]; }; } diff --git a/pkgs/by-name/cr/crimson/package.nix b/pkgs/by-name/cr/crimson/package.nix index 4fc3b3e7af8d..3a9233f7d8fc 100644 --- a/pkgs/by-name/cr/crimson/package.nix +++ b/pkgs/by-name/cr/crimson/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/skosch/Crimson"; description = "Font family inspired by beautiful oldstyle typefaces"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/cr/critcmp/package.nix b/pkgs/by-name/cr/critcmp/package.nix index 30b33e709a4a..693ef4a20d6f 100644 --- a/pkgs/by-name/cr/critcmp/package.nix +++ b/pkgs/by-name/cr/critcmp/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-wpfv6mebFPvL+9UkggRRH3fPOeGslORzxtN0q/KKOsw="; - meta = with lib; { + meta = { description = "Command line tool for comparing benchmarks run by Criterion"; mainProgram = "critcmp"; homepage = "https://github.com/BurntSushi/critcmp"; - license = with licenses; [ + license = with lib.licenses; [ mit unlicense ]; diff --git a/pkgs/by-name/cr/criu/package.nix b/pkgs/by-name/cr/criu/package.nix index d10b56d71e51..da0fb8dcb68e 100644 --- a/pkgs/by-name/cr/criu/package.nix +++ b/pkgs/by-name/cr/criu/package.nix @@ -138,16 +138,16 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Userspace checkpoint/restore for Linux"; homepage = "https://criu.org"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "aarch64-linux" "armv7l-linux" "loongarch64-linux" ]; - maintainers = [ maintainers.thoughtpolice ]; + maintainers = [ lib.maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/cr/crlfsuite/package.nix b/pkgs/by-name/cr/crlfsuite/package.nix index a4a493bc9c82..e958ca75acd4 100644 --- a/pkgs/by-name/cr/crlfsuite/package.nix +++ b/pkgs/by-name/cr/crlfsuite/package.nix @@ -32,12 +32,12 @@ python3.pkgs.buildPythonApplication rec { "crlfsuite" ]; - meta = with lib; { + meta = { description = "CRLF injection (HTTP Response Splitting) scanner"; mainProgram = "crlfsuite"; homepage = "https://github.com/Nefcore/CRLFsuite"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ c0bw3b fab ]; diff --git a/pkgs/by-name/cr/crlfuzz/package.nix b/pkgs/by-name/cr/crlfuzz/package.nix index fcfde3dc0262..df8ae104d933 100644 --- a/pkgs/by-name/cr/crlfuzz/package.nix +++ b/pkgs/by-name/cr/crlfuzz/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "Tool to scan for CRLF vulnerability"; mainProgram = "crlfuzz"; homepage = "https://github.com/dwisiswant0/crlfuzz"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/cr/croc/package.nix b/pkgs/by-name/cr/croc/package.nix index 4630d7c0ee8e..d2a7bf6c432e 100644 --- a/pkgs/by-name/cr/croc/package.nix +++ b/pkgs/by-name/cr/croc/package.nix @@ -51,7 +51,7 @@ buildGoModule (finalAttrs: { ]; doInstallCheck = true; - meta = with lib; { + meta = { description = "Easily and securely send things from one computer to another"; longDescription = '' Croc is a command line tool written in Go that allows any two computers to @@ -67,8 +67,8 @@ buildGoModule (finalAttrs: { ''; homepage = "https://github.com/schollz/croc"; changelog = "https://github.com/schollz/croc/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ equirosa SuperSandro2000 ryan4yin diff --git a/pkgs/by-name/cr/crocoddyl/package.nix b/pkgs/by-name/cr/crocoddyl/package.nix index 87aa4b589409..5810ea69a711 100644 --- a/pkgs/by-name/cr/crocoddyl/package.nix +++ b/pkgs/by-name/cr/crocoddyl/package.nix @@ -69,14 +69,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Crocoddyl optimal control library"; homepage = "https://github.com/loco-3d/crocoddyl"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nim65s wegank ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/cr/cromfs/package.nix b/pkgs/by-name/cr/cromfs/package.nix index 99e9dff260cc..0465bf6e506d 100644 --- a/pkgs/by-name/cr/cromfs/package.nix +++ b/pkgs/by-name/cr/cromfs/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { makeFlags = [ "CXXFLAGS=-std=c++03" ]; - meta = with lib; { + meta = { description = "FUSE Compressed ROM filesystem with lzma"; homepage = "https://bisqwit.iki.fi/source/cromfs.html"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cr/croncpp/package.nix b/pkgs/by-name/cr/croncpp/package.nix index db6430949da0..5f41addad414 100644 --- a/pkgs/by-name/cr/croncpp/package.nix +++ b/pkgs/by-name/cr/croncpp/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "C++11/14/17 header-only cross-platform library for handling CRON expressions"; homepage = "https://github.com/mariusbancila/croncpp"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ typedrat ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ typedrat ]; }; }) diff --git a/pkgs/by-name/cr/crossfire-arch/package.nix b/pkgs/by-name/cr/crossfire-arch/package.nix index ca29d5ababd1..21bb48e7973d 100644 --- a/pkgs/by-name/cr/crossfire-arch/package.nix +++ b/pkgs/by-name/cr/crossfire-arch/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Archetype data for the Crossfire free MMORPG"; homepage = "http://crossfire.real-time.com/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; - maintainers = with maintainers; [ ToxicFrog ]; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/by-name/cr/crossfire-client/package.nix b/pkgs/by-name/cr/crossfire-client/package.nix index 58bc840c8c1e..00ed610a2c5d 100644 --- a/pkgs/by-name/cr/crossfire-client/package.nix +++ b/pkgs/by-name/cr/crossfire-client/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation { ]; hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "GTKv2 client for the Crossfire free MMORPG"; mainProgram = "crossfire-client-gtk2"; homepage = "http://crossfire.real-time.com/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/by-name/cr/crossfire-gridarta/package.nix b/pkgs/by-name/cr/crossfire-gridarta/package.nix index 0eae54417943..a231feee581d 100644 --- a/pkgs/by-name/cr/crossfire-gridarta/package.nix +++ b/pkgs/by-name/cr/crossfire-gridarta/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Map and archetype editor for the Crossfire free MMORPG"; homepage = "http://crossfire.real-time.com/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/by-name/cr/crossfire-jxclient/package.nix b/pkgs/by-name/cr/crossfire-jxclient/package.nix index b214fce6dcd1..5752c17955f5 100644 --- a/pkgs/by-name/cr/crossfire-jxclient/package.nix +++ b/pkgs/by-name/cr/crossfire-jxclient/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Java-based fullscreen client for the Crossfire free MMORPG"; homepage = "http://crossfire.real-time.com/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/by-name/cr/crossfire-maps/package.nix b/pkgs/by-name/cr/crossfire-maps/package.nix index 35575bbaa6b0..d48dea09daf4 100644 --- a/pkgs/by-name/cr/crossfire-maps/package.nix +++ b/pkgs/by-name/cr/crossfire-maps/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Map data for the Crossfire free MMORPG"; homepage = "http://crossfire.real-time.com/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; - maintainers = with maintainers; [ ToxicFrog ]; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/by-name/cr/crossfire-server/package.nix b/pkgs/by-name/cr/crossfire-server/package.nix index 58d8d510ff74..0c7d715fe20c 100644 --- a/pkgs/by-name/cr/crossfire-server/package.nix +++ b/pkgs/by-name/cr/crossfire-server/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation { ln -s ${maps} "$out/share/crossfire/maps" ''; - meta = with lib; { + meta = { description = "Server for the Crossfire free MMORPG"; homepage = "http://crossfire.real-time.com/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/by-name/cr/crossguid/package.nix b/pkgs/by-name/cr/crossguid/package.nix index a71c08fa1338..a6765057c8c3 100644 --- a/pkgs/by-name/cr/crossguid/package.nix +++ b/pkgs/by-name/cr/crossguid/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Lightweight cross platform C++ GUID/UUID library"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/graeme-hill/crossguid"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cr/crosvm/package.nix b/pkgs/by-name/cr/crosvm/package.nix index a677c7d3e775..dfedae5dfb02 100644 --- a/pkgs/by-name/cr/crosvm/package.nix +++ b/pkgs/by-name/cr/crosvm/package.nix @@ -76,12 +76,12 @@ rustPlatform.buildRustPackage { }; }; - meta = with lib; { + meta = { description = "Secure virtual machine monitor for KVM"; homepage = "https://crosvm.dev/"; mainProgram = "crosvm"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.bsd3; platforms = [ "aarch64-linux" "riscv64-linux" diff --git a/pkgs/by-name/cr/crowbar/package.nix b/pkgs/by-name/cr/crowbar/package.nix index a70ad5032a5f..6db6d5283ac4 100644 --- a/pkgs/by-name/cr/crowbar/package.nix +++ b/pkgs/by-name/cr/crowbar/package.nix @@ -37,11 +37,11 @@ python3Packages.buildPythonApplication { $out/bin/crowbar --help > /dev/null ''; - meta = with lib; { + meta = { homepage = "https://github.com/galkan/crowbar"; description = "Brute forcing tool that can be used during penetration tests"; mainProgram = "crowbar"; - license = licenses.mit; - maintainers = with maintainers; [ pamplemousse ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pamplemousse ]; }; } diff --git a/pkgs/by-name/cr/crowdin-cli/package.nix b/pkgs/by-name/cr/crowdin-cli/package.nix index df40f93f688a..949730407316 100644 --- a/pkgs/by-name/cr/crowdin-cli/package.nix +++ b/pkgs/by-name/cr/crowdin-cli/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { mainProgram = "crowdin"; homepage = "https://github.com/crowdin/crowdin-cli/"; description = "Command-line client for the Crowdin API"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - maintainers = with maintainers; [ DamienCassou ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DamienCassou ]; }; }) diff --git a/pkgs/by-name/cr/crudini/package.nix b/pkgs/by-name/cr/crudini/package.nix index d42b2ce0ec8e..3af0bdb17d7a 100644 --- a/pkgs/by-name/cr/crudini/package.nix +++ b/pkgs/by-name/cr/crudini/package.nix @@ -50,11 +50,11 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Utility for manipulating ini files"; homepage = "https://www.pixelbeat.org/programs/crudini/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "crudini"; }; } diff --git a/pkgs/by-name/cr/crumbs/package.nix b/pkgs/by-name/cr/crumbs/package.nix index cc0a7aab71e7..4e9cf9153999 100644 --- a/pkgs/by-name/cr/crumbs/package.nix +++ b/pkgs/by-name/cr/crumbs/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { cp crumbs-completion.fish $out/share/fish/vendor_completions.d/crumbs.fish ''; - meta = with lib; { + meta = { description = "Bookmarks for the command line"; homepage = "https://github.com/fasseg/crumbs"; - license = licenses.wtfpl; - platforms = platforms.all; - maintainers = with maintainers; [ thesola10 ]; + license = lib.licenses.wtfpl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thesola10 ]; mainProgram = "crumbs"; }; } diff --git a/pkgs/by-name/cr/crunch/package.nix b/pkgs/by-name/cr/crunch/package.nix index e09c652b988d..2902414205f8 100644 --- a/pkgs/by-name/cr/crunch/package.nix +++ b/pkgs/by-name/cr/crunch/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Wordlist generator"; mainProgram = "crunch"; homepage = "https://sourceforge.net/projects/crunch-wordlist/"; - platforms = platforms.unix; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ lnl7 ]; + platforms = lib.platforms.unix; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ lnl7 ]; }; } diff --git a/pkgs/by-name/cr/crypto-tracker/package.nix b/pkgs/by-name/cr/crypto-tracker/package.nix index 34c3c6340959..aa88c34ed9e3 100644 --- a/pkgs/by-name/cr/crypto-tracker/package.nix +++ b/pkgs/by-name/cr/crypto-tracker/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-ORdDrZ61u76mz2oZyxfdf7iuo9SnuQeDxESt9lORhgQ="; - meta = with lib; { + meta = { description = "Program to retrieve the latest price for several cryptocurrencies using the CoinMarketCap API"; homepage = "https://github.com/Nox04/crypto-tracker"; - license = licenses.mit; - maintainers = with maintainers; [ tiredofit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tiredofit ]; mainProgram = "crypto-tracker"; }; } diff --git a/pkgs/by-name/cr/cryptominisat/package.nix b/pkgs/by-name/cr/cryptominisat/package.nix index 9c99d0c0555f..16683bd8ac4f 100644 --- a/pkgs/by-name/cr/cryptominisat/package.nix +++ b/pkgs/by-name/cr/cryptominisat/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { substituteInPlace src/picosat/picosat.c --replace-fail '' '' ''; - meta = with lib; { + meta = { description = "Advanced SAT Solver"; mainProgram = "cryptominisat5"; homepage = "https://github.com/msoos/cryptominisat"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cr/cryptopp/package.nix b/pkgs/by-name/cr/cryptopp/package.nix index 866cd5170e82..a57949bea97c 100644 --- a/pkgs/by-name/cr/cryptopp/package.nix +++ b/pkgs/by-name/cr/cryptopp/package.nix @@ -52,18 +52,18 @@ stdenv.mkDerivation rec { installTargets = [ "install-lib" ]; installFlags = [ "LDCONF=true" ]; - meta = with lib; { + meta = { description = "Free C++ class library of cryptographic schemes"; homepage = "https://cryptopp.com/"; changelog = [ "https://raw.githubusercontent.com/weidai11/cryptopp/CRYPTOPP_${underscoredVersion}/History.txt" "https://github.com/weidai11/cryptopp/releases/tag/CRYPTOPP_${underscoredVersion}" ]; - license = with licenses; [ + license = with lib.licenses; [ boost publicDomain ]; - platforms = platforms.all; - maintainers = with maintainers; [ c0bw3b ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ c0bw3b ]; }; } diff --git a/pkgs/by-name/cr/crystal-dock/package.nix b/pkgs/by-name/cr/crystal-dock/package.nix index a43bc1fcf2bc..6769c6224133 100644 --- a/pkgs/by-name/cr/crystal-dock/package.nix +++ b/pkgs/by-name/cr/crystal-dock/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { cmakeDir = "../src"; - meta = with lib; { + meta = { description = "Dock (desktop panel) for Linux desktop"; mainProgram = "crystal-dock"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; homepage = "https://github.com/dangvd/crystal-dock"; - maintainers = with maintainers; [ rafameou ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ rafameou ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/cr/crystal2nix/package.nix b/pkgs/by-name/cr/crystal2nix/package.nix index a9377b9e6cf9..99db99cd5259 100644 --- a/pkgs/by-name/cr/crystal2nix/package.nix +++ b/pkgs/by-name/cr/crystal2nix/package.nix @@ -35,11 +35,11 @@ crystal.buildCrystalPackage rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Utility to convert Crystal's shard.lock files to a Nix file"; mainProgram = "crystal2nix"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manveru peterhoeg ]; diff --git a/pkgs/by-name/cs/csa/package.nix b/pkgs/by-name/cs/csa/package.nix index a839c9b9f5da..b60761520f6e 100644 --- a/pkgs/by-name/cs/csa/package.nix +++ b/pkgs/by-name/cs/csa/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { # so we remove one of them: postInstall = "rm $out/lib/ladspa/celllm_3890.*"; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/csa/"; description = "Group of LADSPA Audio plugins for FM broadcast and more"; longDescription = '' @@ -25,8 +25,8 @@ stdenv.mkDerivation rec { It contains the following plugins: Emphazised Limiter, Cellular Leveler, Simple right/left amplifier. Blind Peak Meter. ''; - license = licenses.gpl3; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cs/csdr/package.nix b/pkgs/by-name/cs/csdr/package.nix index 12c8453819b5..744119cf1663 100644 --- a/pkgs/by-name/cs/csdr/package.nix +++ b/pkgs/by-name/cs/csdr/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { versionCheckProgramArg = "version"; doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/jketterl/csdr"; description = "Simple DSP library and command-line tool for Software Defined Radio"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/cs/csharpier/package.nix b/pkgs/by-name/cs/csharpier/package.nix index 45ce102800a9..96ed8db3510f 100644 --- a/pkgs/by-name/cs/csharpier/package.nix +++ b/pkgs/by-name/cs/csharpier/package.nix @@ -7,12 +7,12 @@ buildDotnetGlobalTool { nugetHash = "sha256-JJS/jlUM2GRYKPzsIbAnRM8Jhr8/Mr6Nlmjtq9TMBuc="; - meta = with lib; { + meta = { description = "Opinionated code formatter for C#"; homepage = "https://csharpier.com/"; changelog = "https://github.com/belav/csharpier/blob/main/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ zoriya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zoriya ]; mainProgram = "csharpier"; }; } diff --git a/pkgs/by-name/cs/cshatag/package.nix b/pkgs/by-name/cs/cshatag/package.nix index befc1ee745f8..f1e412c261c7 100644 --- a/pkgs/by-name/cs/cshatag/package.nix +++ b/pkgs/by-name/cs/cshatag/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { install -D -m755 -t $out/share/man/man1/ cshatag.1 ''; - meta = with lib; { + meta = { description = "Tool to detect silent data corruption"; mainProgram = "cshatag"; homepage = "https://github.com/rfjakob/cshatag"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cs/csmith/package.nix b/pkgs/by-name/cs/csmith/package.nix index bdcda4e57885..261f5bf1bbf0 100644 --- a/pkgs/by-name/cs/csmith/package.nix +++ b/pkgs/by-name/cs/csmith/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Random generator of C programs"; homepage = "https://embed.cs.utah.edu/csmith"; # Officially, the license is this: https://github.com/csmith-project/csmith/blob/master/COPYING - license = licenses.bsd2; + license = lib.licenses.bsd2; longDescription = '' Csmith is a tool that can generate random C programs that statically and dynamically conform to the C99 standard. It is useful for stress-testing @@ -63,6 +63,6 @@ stdenv.mkDerivation rec { to find and report more than 400 previously unknown compiler bugs. ''; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cs/csound-manual/package.nix b/pkgs/by-name/cs/csound-manual/package.nix index 7cfdd0a1fdcc..52437fb368f9 100644 --- a/pkgs/by-name/cs/csound-manual/package.nix +++ b/pkgs/by-name/cs/csound-manual/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { cp -r ./html $out/share/doc/csound ''; - meta = with lib; { + meta = { description = "Csound Canonical Reference Manual"; homepage = "https://github.com/csound/manual"; - license = licenses.fdl12Plus; - maintainers = with maintainers; [ hlolli ]; + license = lib.licenses.fdl12Plus; + maintainers = with lib.maintainers; [ hlolli ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cs/css-checker/package.nix b/pkgs/by-name/cs/css-checker/package.nix index 09f464a593b4..c16f9694612b 100644 --- a/pkgs/by-name/cs/css-checker/package.nix +++ b/pkgs/by-name/cs/css-checker/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Command-line tool for identifying similar or duplicated CSS code"; homepage = "https://github.com/ruilisi/css-checker"; - license = licenses.mit; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "css-checker"; }; } diff --git a/pkgs/by-name/cs/csv2latex/package.nix b/pkgs/by-name/cs/csv2latex/package.nix index e95dca87fdbb..60b572f1e908 100644 --- a/pkgs/by-name/cs/csv2latex/package.nix +++ b/pkgs/by-name/cs/csv2latex/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { make PREFIX=$out install ''; - meta = with lib; { + meta = { description = "Command-line CSV to LaTeX file converter"; homepage = "http://brouits.free.fr/csv2latex/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "csv2latex"; }; } diff --git a/pkgs/by-name/cs/csv2odf/package.nix b/pkgs/by-name/cs/csv2odf/package.nix index 879871ebc47f..b5ad8bca6fb9 100644 --- a/pkgs/by-name/cs/csv2odf/package.nix +++ b/pkgs/by-name/cs/csv2odf/package.nix @@ -18,7 +18,7 @@ python3.pkgs.buildPythonApplication rec { setuptools ]; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/p/csv2odf/wiki/Main_Page/"; description = "Convert csv files to OpenDocument Format"; mainProgram = "csv2odf"; @@ -33,6 +33,6 @@ python3.pkgs.buildPythonApplication rec { The output format (fonts, number formatting, etc.) is controlled by a template file that you can design in your office application of choice. ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/cs/csv2parquet/package.nix b/pkgs/by-name/cs/csv2parquet/package.nix index 09a301c9921b..0d38b362d421 100644 --- a/pkgs/by-name/cs/csv2parquet/package.nix +++ b/pkgs/by-name/cs/csv2parquet/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-hZ4qdaR3dvcBBvZqfMQVk4hryhxfeAszv56WPNVhQiY="; - meta = with lib; { + meta = { description = "Convert CSV files to Apache Parquet"; homepage = "https://github.com/domoritz/csv2parquet"; - license = licenses.mit; - maintainers = with maintainers; [ john-shaffer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ john-shaffer ]; mainProgram = "csv2parquet"; }; } diff --git a/pkgs/by-name/cs/csv2svg/package.nix b/pkgs/by-name/cs/csv2svg/package.nix index b9ebd28e30d1..57bc999692ad 100644 --- a/pkgs/by-name/cs/csv2svg/package.nix +++ b/pkgs/by-name/cs/csv2svg/package.nix @@ -15,10 +15,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-RwpRxSD/oRAYD1udrHt3fy/SrrNUTVdGf+CdzQnJZ2U="; - meta = with lib; { + meta = { description = "Take a csv as input and outputs svg"; homepage = "https://github.com/Canop/csv2svg"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "csv2svg"; }; diff --git a/pkgs/by-name/cs/csvdiff/package.nix b/pkgs/by-name/cs/csvdiff/package.nix index 7653b8479c8a..437313f383f0 100644 --- a/pkgs/by-name/cs/csvdiff/package.nix +++ b/pkgs/by-name/cs/csvdiff/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg="; - meta = with lib; { + meta = { homepage = "https://aswinkarthik.github.io/csvdiff/"; description = "Fast diff tool for comparing csv files"; mainProgram = "csvdiff"; - license = licenses.mit; - maintainers = with maintainers; [ turion ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ turion ]; }; } diff --git a/pkgs/by-name/cs/csview/package.nix b/pkgs/by-name/cs/csview/package.nix index b6fb4eb83570..d0f07233d219 100644 --- a/pkgs/by-name/cs/csview/package.nix +++ b/pkgs/by-name/cs/csview/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CXIfE1EsNwm4vsybQSdfKewBYpzBh+uQu1jYAm8DDtI="; - meta = with lib; { + meta = { description = "High performance csv viewer with cjk/emoji support"; mainProgram = "csview"; homepage = "https://github.com/wfxr/csview"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/cs/csvlens/package.nix b/pkgs/by-name/cs/csvlens/package.nix index d67ea6a249f4..e86fcdd684dc 100644 --- a/pkgs/by-name/cs/csvlens/package.nix +++ b/pkgs/by-name/cs/csvlens/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ro+vlkuX2eZ6Sh8uW/0ZZJnl8YqW7Yij+6xneQMDpEQ="; - meta = with lib; { + meta = { description = "Command line csv viewer"; homepage = "https://github.com/YS-L/csvlens"; changelog = "https://github.com/YS-L/csvlens/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; mainProgram = "csvlens"; }; } diff --git a/pkgs/by-name/cs/csvquote/package.nix b/pkgs/by-name/cs/csvquote/package.nix index c2573b6e92a2..e5c7b28dec52 100644 --- a/pkgs/by-name/cs/csvquote/package.nix +++ b/pkgs/by-name/cs/csvquote/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { patsh $out/bin/csvheader -fs ${builtins.storeDir} --path "$HOST_PATH" ''; - meta = with lib; { + meta = { description = "Enables common unix utilities like cut, awk, wc, head to work correctly with csv data containing delimiters and newlines"; homepage = "https://github.com/dbro/csvquote"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cs/csvs-to-sqlite/package.nix b/pkgs/by-name/cs/csvs-to-sqlite/package.nix index 796b0a558f84..c997f7040a4a 100644 --- a/pkgs/by-name/cs/csvs-to-sqlite/package.nix +++ b/pkgs/by-name/cs/csvs-to-sqlite/package.nix @@ -57,11 +57,11 @@ python3.pkgs.buildPythonApplication rec { "test_if_cog_needs_to_be_run" ]; - meta = with lib; { + meta = { description = "Convert CSV files into a SQLite database"; homepage = "https://github.com/simonw/csvs-to-sqlite"; - license = licenses.asl20; - maintainers = [ maintainers.costrouc ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.costrouc ]; mainProgram = "csvs-to-sqlite"; }; } diff --git a/pkgs/by-name/ct/ctlptl/package.nix b/pkgs/by-name/ct/ctlptl/package.nix index eeec4f03e5ee..2ef6b0a131c4 100644 --- a/pkgs/by-name/ct/ctlptl/package.nix +++ b/pkgs/by-name/ct/ctlptl/package.nix @@ -36,10 +36,10 @@ buildGoModule rec { --zsh <($out/bin/ctlptl completion zsh) ''; - meta = with lib; { + meta = { description = "CLI for declaratively setting up local Kubernetes clusters"; homepage = "https://github.com/tilt-dev/ctlptl"; - license = licenses.asl20; - maintainers = with maintainers; [ svrana ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ svrana ]; }; } diff --git a/pkgs/by-name/ct/ctmg/package.nix b/pkgs/by-name/ct/ctmg/package.nix index 6faac6f8d3d4..90cdfe0df74f 100644 --- a/pkgs/by-name/ct/ctmg/package.nix +++ b/pkgs/by-name/ct/ctmg/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { installPhase = "install -D ctmg.sh $out/bin/ctmg"; - meta = with lib; { + meta = { description = "Encrypted container manager for Linux using cryptsetup"; homepage = "https://git.zx2c4.com/ctmg/about/"; - license = licenses.isc; - maintainers = with maintainers; [ mrVanDalo ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ mrVanDalo ]; + platforms = lib.platforms.linux; mainProgram = "ctmg"; }; } diff --git a/pkgs/by-name/ct/ctodo/package.nix b/pkgs/by-name/ct/ctodo/package.nix index de52369f8e70..f779042e6a09 100644 --- a/pkgs/by-name/ct/ctodo/package.nix +++ b/pkgs/by-name/ct/ctodo/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 3.5)' ''; - meta = with lib; { + meta = { homepage = "http://ctodo.apakoh.dk/"; description = "Simple ncurses-based task list manager"; - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.unix; mainProgram = "ctodo"; }; } diff --git a/pkgs/by-name/ct/ctop/package.nix b/pkgs/by-name/ct/ctop/package.nix index 35e9802562fc..9a742aa6576a 100644 --- a/pkgs/by-name/ct/ctop/package.nix +++ b/pkgs/by-name/ct/ctop/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X main.build=v${version}" ]; - meta = with lib; { + meta = { description = "Top-like interface for container metrics"; homepage = "https://ctop.sh/"; - license = licenses.mit; - maintainers = with maintainers; [ apeyroux ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ apeyroux ]; mainProgram = "ctop"; }; } diff --git a/pkgs/by-name/ct/ctpl/package.nix b/pkgs/by-name/ct/ctpl/package.nix index d83bd2c456ea..a7287ea2cc9a 100644 --- a/pkgs/by-name/ct/ctpl/package.nix +++ b/pkgs/by-name/ct/ctpl/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ glib ]; - meta = with lib; { + meta = { homepage = "http://ctpl.tuxfamily.org/"; description = "Template engine library written in C"; mainProgram = "ctpl"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/ct/ctpp2/package.nix b/pkgs/by-name/ct/ctpp2/package.nix index 8848ed9ea58b..45590ddef419 100644 --- a/pkgs/by-name/ct/ctpp2/package.nix +++ b/pkgs/by-name/ct/ctpp2/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails - meta = with lib; { + meta = { description = "High performance templating engine"; homepage = "https://ctpp.havoc.ru/"; - maintainers = [ maintainers.robbinch ]; - platforms = platforms.linux; - license = licenses.bsd2; + maintainers = [ lib.maintainers.robbinch ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/ct/ctpv/package.nix b/pkgs/by-name/ct/ctpv/package.nix index b0911c51be42..cad23ee246d6 100644 --- a/pkgs/by-name/ct/ctpv/package.nix +++ b/pkgs/by-name/ct/ctpv/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { # Until https://github.com/NikitaIvanovV/ctpv/pull/90 is merged patches = [ ./use-polite-flag.patch ]; - meta = with lib; { + meta = { description = "File previewer for a terminal"; homepage = "https://github.com/NikitaIvanovV/ctpv"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.wesleyjrz ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.wesleyjrz ]; }; } diff --git a/pkgs/by-name/ct/ctre/package.nix b/pkgs/by-name/ct/ctre/package.nix index 14ee2cef419f..50fe7527e55b 100644 --- a/pkgs/by-name/ct/ctre/package.nix +++ b/pkgs/by-name/ct/ctre/package.nix @@ -25,15 +25,15 @@ stdenv.mkDerivation rec { dontBuild = true; - meta = with lib; { + meta = { description = "Fast compile-time regular expressions library"; longDescription = '' Fast compile-time regular expressions with support for matching/searching/capturing during compile-time or runtime. ''; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://compile-time.re"; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ct/ctypes_sh/package.nix b/pkgs/by-name/ct/ctypes_sh/package.nix index 4d0c3e13bae7..6d2151a355cb 100644 --- a/pkgs/by-name/ct/ctypes_sh/package.nix +++ b/pkgs/by-name/ct/ctypes_sh/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; }; - meta = with lib; { + meta = { description = "Foreign function interface for bash"; mainProgram = "ctypes.sh"; homepage = "https://github.com/taviso/ctypes.sh"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cu/cubicsdr/package.nix b/pkgs/by-name/cu/cubicsdr/package.nix index 53f769ac092d..65c31cfacaa6 100644 --- a/pkgs/by-name/cu/cubicsdr/package.nix +++ b/pkgs/by-name/cu/cubicsdr/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { install_name_tool -change libliquid.dylib ${lib.getLib liquid-dsp}/lib/libliquid.dylib ''${out}/bin/CubicSDR ''; - meta = with lib; { + meta = { homepage = "https://cubicsdr.com"; description = "Software Defined Radio application"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lasandell ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lasandell ]; + platforms = lib.platforms.unix; mainProgram = "CubicSDR"; }; } diff --git a/pkgs/by-name/cu/cucumber/package.nix b/pkgs/by-name/cu/cucumber/package.nix index 00354c0eb35f..1e7c84e49c10 100644 --- a/pkgs/by-name/cu/cucumber/package.nix +++ b/pkgs/by-name/cu/cucumber/package.nix @@ -11,17 +11,17 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "cucumber"; - meta = with lib; { + meta = { description = "Tool for executable specifications"; homepage = "https://cucumber.io/"; changelog = "https://github.com/cucumber/cucumber-ruby/blob/main/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "cucumber"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ manveru nicknovitski anthonyroussel ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cu/cudd/package.nix b/pkgs/by-name/cu/cudd/package.nix index f7828a08c9c3..65dba5335af0 100644 --- a/pkgs/by-name/cu/cudd/package.nix +++ b/pkgs/by-name/cu/cudd/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://davidkebo.com/cudd"; description = "Binary Decision Diagram (BDD) library"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ chessai ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ chessai ]; }; } diff --git a/pkgs/by-name/cu/cuelsp/package.nix b/pkgs/by-name/cu/cuelsp/package.nix index 948478fc0806..0b5e8badb6fd 100644 --- a/pkgs/by-name/cu/cuelsp/package.nix +++ b/pkgs/by-name/cu/cuelsp/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "cmd/cuelsp" ]; - meta = with lib; { + meta = { description = "Language Server implementation for CUE, with built-in support for Dagger"; mainProgram = "cuelsp"; homepage = "https://github.com/dagger/cuelsp"; - license = licenses.asl20; - maintainers = with maintainers; [ sagikazarmark ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sagikazarmark ]; }; } diff --git a/pkgs/by-name/cu/cuetools/package.nix b/pkgs/by-name/cu/cuetools/package.nix index 2bd13b7a6b55..de0ba4563b21 100644 --- a/pkgs/by-name/cu/cuetools/package.nix +++ b/pkgs/by-name/cu/cuetools/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation rec { ln -s $out/bin/cuetag.sh $out/bin/cuetag ''; - meta = with lib; { + meta = { description = "Set of utilities for working with cue files and toc files"; homepage = "https://github.com/svend/cuetools"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ codyopel jcumming ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cu/culvert/package.nix b/pkgs/by-name/cu/culvert/package.nix index b0fc54b3afeb..4a3a2c833b20 100644 --- a/pkgs/by-name/cu/culvert/package.nix +++ b/pkgs/by-name/cu/culvert/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { "-Db_lto=false" ]; - meta = with lib; { + meta = { homepage = "https://github.com/amboar/culvert"; description = "Test and Debug Tool for BMC AHB Interfaces "; mainProgram = "culvert"; - license = licenses.asl20; - maintainers = [ maintainers.baloo ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.baloo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cu/cum/package.nix b/pkgs/by-name/cu/cum/package.nix index 5faaf6c079d1..7068135474a5 100644 --- a/pkgs/by-name/cu/cum/package.nix +++ b/pkgs/by-name/cu/cum/package.nix @@ -38,12 +38,12 @@ python3Packages.buildPythonApplication rec { rm -rf $out/tests $out/LICENSE ''; - meta = with lib; { + meta = { description = "Comic updater, mangafied"; mainProgram = "cum"; homepage = "https://github.com/Hamuko/cum"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cu/cuneiform/package.nix b/pkgs/by-name/cu/cuneiform/package.nix index 01ede4ac0d3b..f49cde23ebef 100644 --- a/pkgs/by-name/cu/cuneiform/package.nix +++ b/pkgs/by-name/cu/cuneiform/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { command = "cuneiform"; }; - meta = with lib; { + meta = { description = "Multi-language OCR system"; homepage = "https://launchpad.net/cuneiform-linux"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = [ maintainers.raskin ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.raskin ]; mainProgram = "cuneiform"; }; }) diff --git a/pkgs/by-name/cu/cups-brother-dcpt725dw/package.nix b/pkgs/by-name/cu/cups-brother-dcpt725dw/package.nix index b93e8e1fc32f..cbe7f0fc43ec 100644 --- a/pkgs/by-name/cu/cups-brother-dcpt725dw/package.nix +++ b/pkgs/by-name/cu/cups-brother-dcpt725dw/package.nix @@ -98,11 +98,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Brother DCP-T725DW printer driver"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ u2x1 ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ u2x1 ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix b/pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix index ffc6b6832d60..527078cbe32f 100644 --- a/pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix +++ b/pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix @@ -146,14 +146,14 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://www.brother.com/"; description = "Brother ${model} printer driver"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode fromSource ]; - license = with licenses; [ + license = with lib.licenses; [ unfree gpl2Plus ]; @@ -162,6 +162,6 @@ stdenv.mkDerivation rec { "i686-linux" ]; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=${model}_all&os=128"; - maintainers = with maintainers; [ luna_1024 ]; + maintainers = with lib.maintainers; [ luna_1024 ]; }; } diff --git a/pkgs/by-name/cu/cups-brother-hll2350dw/package.nix b/pkgs/by-name/cu/cups-brother-hll2350dw/package.nix index 8aecaf789d8a..5d72904082d8 100644 --- a/pkgs/by-name/cu/cups-brother-hll2350dw/package.nix +++ b/pkgs/by-name/cu/cups-brother-hll2350dw/package.nix @@ -94,13 +94,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother HL-L2350DW printer driver"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = map (arch: "${arch}-linux") arches; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=us_ot&lang=en&prod=hll2350dw_us_eu_as&os=128"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/by-name/cu/cups-brother-hll2375dw/package.nix b/pkgs/by-name/cu/cups-brother-hll2375dw/package.nix index 12ba4dd2982b..583afa121a17 100644 --- a/pkgs/by-name/cu/cups-brother-hll2375dw/package.nix +++ b/pkgs/by-name/cu/cups-brother-hll2375dw/package.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother HLL2375DW printer driver"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = map (arch: "${arch}-linux") arches; - maintainers = [ maintainers.gador ]; + maintainers = [ lib.maintainers.gador ]; }; } diff --git a/pkgs/by-name/cu/cups-brother-mfcl2750dw/package.nix b/pkgs/by-name/cu/cups-brother-mfcl2750dw/package.nix index 18fb22ed747b..834a3f93299f 100644 --- a/pkgs/by-name/cu/cups-brother-mfcl2750dw/package.nix +++ b/pkgs/by-name/cu/cups-brother-mfcl2750dw/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother MFC-L2750DW printer driver"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = map (arch: "${arch}-linux") arches; - maintainers = [ maintainers.lovesegfault ]; + maintainers = [ lib.maintainers.lovesegfault ]; }; } diff --git a/pkgs/by-name/cu/cups-kyocera-3500-4500/package.nix b/pkgs/by-name/cu/cups-kyocera-3500-4500/package.nix index 5b17d0b6b015..23ed60e0576b 100644 --- a/pkgs/by-name/cu/cups-kyocera-3500-4500/package.nix +++ b/pkgs/by-name/cu/cups-kyocera-3500-4500/package.nix @@ -102,12 +102,12 @@ stdenv.mkDerivation { install -Dm444 usr/share/doc/kyodialog/copyright $out/share/doc/cups-kyocera-3500-4500/copyright ''; - meta = with lib; { + meta = { description = "CUPS drivers for Kyocera ECOSYS MA3500cix, MA3500cifx, MA4000cix, MA4000cifx, PA3500cx, PA4000cx and PA4500cx, for Kyocera CS MA4500ci and PA4500ci, and for Kyocera TASKalfa MA3500ci, MA4500ci and PI4500ci printers"; homepage = "https://www.kyoceradocumentsolutions.com"; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.me-and ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.me-and ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/cu/cups-kyocera-ecosys-m2x35-40-p2x35-40dnw/package.nix b/pkgs/by-name/cu/cups-kyocera-ecosys-m2x35-40-p2x35-40dnw/package.nix index 4c5fb5839c11..5985d2efebdc 100644 --- a/pkgs/by-name/cu/cups-kyocera-ecosys-m2x35-40-p2x35-40dnw/package.nix +++ b/pkgs/by-name/cu/cups-kyocera-ecosys-m2x35-40-p2x35-40dnw/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp ${region}/${language}/*.PPD $out/share/cups/model/Kyocera/ ''; - meta = with lib; { + meta = { description = "PPD files for Kyocera ECOSYS M2040dn/M2135dn/M2540dn/M2540dw/M2635dn/M2635dw/M2640idw/M2735dw/P2040dn/M2040dw/P2235dn/P2235dw"; homepage = "https://www.kyoceradocumentsolutions.com"; - license = licenses.unfree; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cu/cups-kyocera/package.nix b/pkgs/by-name/cu/cups-kyocera/package.nix index c2da20adb21a..0714109a5718 100644 --- a/pkgs/by-name/cu/cups-kyocera/package.nix +++ b/pkgs/by-name/cu/cups-kyocera/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation { ppdFileCommands = [ "rastertokpsl" ]; - meta = with lib; { + meta = { description = "CUPS drivers for several Kyocera FS-{1020,1025,1040,1060,1120,1125} printers"; homepage = "https://www.kyoceradocumentsolutions.ru/index/service_support/download_center.false.driver.FS1040._.EN.html#"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cu/cups-kyodialog/package.nix b/pkgs/by-name/cu/cups-kyodialog/package.nix index ca655ee05eb6..56f360b1c6dd 100644 --- a/pkgs/by-name/cu/cups-kyodialog/package.nix +++ b/pkgs/by-name/cu/cups-kyodialog/package.nix @@ -112,12 +112,12 @@ stdenv.mkDerivation rec { --replace Icon=/usr/share/kyocera/appicon_H.png Icon=$out/share/${pname}/icons/appicon_H.png ''; - meta = with lib; { + meta = { description = "CUPS drivers for several Kyocera printers"; homepage = "https://www.kyoceradocumentsolutions.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.steveej ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.steveej ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/cu/cups-pk-helper/package.nix b/pkgs/by-name/cu/cups-pk-helper/package.nix index ede219235422..f3d4001ee708 100644 --- a/pkgs/by-name/cu/cups-pk-helper/package.nix +++ b/pkgs/by-name/cu/cups-pk-helper/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "PolicyKit helper to configure cups with fine-grained privileges"; homepage = "https://www.freedesktop.org/wiki/Software/cups-pk-helper/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/cu/cups-toshiba-estudio/package.nix b/pkgs/by-name/cu/cups-toshiba-estudio/package.nix index e73abb435ff2..b506f523e654 100644 --- a/pkgs/by-name/cu/cups-toshiba-estudio/package.nix +++ b/pkgs/by-name/cu/cups-toshiba-estudio/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { chmod 755 $out/share/cups/model/Toshiba/TOSHIBA_ColorMFP_CUPS.gz ''; - meta = with lib; { + meta = { description = "Printer only driver for the Toshiba e-STUDIO class of printers"; longDescription = '' This driver supports the following printers: TOSHIBA e-STUDIO2000AC, @@ -49,7 +49,7 @@ stdenv.mkDerivation { TOSHIBA e-STUDIO6570C and TOSHIBA e-STUDIO7506AC. ''; homepage = "https://business.toshiba.com/support/downloads/index.html"; - license = licenses.unfree; - maintainers = [ maintainers.jpotier ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.jpotier ]; }; } diff --git a/pkgs/by-name/cu/cups-zj-58/package.nix b/pkgs/by-name/cu/cups-zj-58/package.nix index 24ec666f92fd..6fa17f917d15 100644 --- a/pkgs/by-name/cu/cups-zj-58/package.nix +++ b/pkgs/by-name/cu/cups-zj-58/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation { install -D rastertozj $out/lib/cups/filter/rastertozj ''; - meta = with lib; { + meta = { description = "CUPS filter for thermal printer Zjiang ZJ-58"; homepage = "https://github.com/klirichek/zj-58"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ makefu deimelias ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/cu/cups/package.nix b/pkgs/by-name/cu/cups/package.nix index 9b1b56cca2b9..42639521e413 100644 --- a/pkgs/by-name/cu/cups/package.nix +++ b/pkgs/by-name/cu/cups/package.nix @@ -176,11 +176,11 @@ stdenv.mkDerivation rec { ; }; - meta = with lib; { + meta = { homepage = "https://openprinting.github.io/cups/"; description = "Standards-based printing system for UNIX"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cu/curie/package.nix b/pkgs/by-name/cu/curie/package.nix index bd78c16f1ad0..e14f6b0d051f 100644 --- a/pkgs/by-name/cu/curie/package.nix +++ b/pkgs/by-name/cu/curie/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Upscaled version of scientifica"; homepage = "https://github.com/oppiliappan/curie"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/cu/curl-impersonate/firefox/default.nix b/pkgs/by-name/cu/curl-impersonate/firefox/default.nix index c82f81e4a4df..afce85222f53 100644 --- a/pkgs/by-name/cu/curl-impersonate/firefox/default.nix +++ b/pkgs/by-name/cu/curl-impersonate/firefox/default.nix @@ -183,15 +183,15 @@ stdenv.mkDerivation rec { }).goModules; }; - meta = with lib; { + meta = { description = "Special build of curl that can impersonate Chrome & Firefox"; homepage = "https://github.com/lwthiker/curl-impersonate"; - license = with licenses; [ + license = with lib.licenses; [ curl mit ]; - maintainers = with maintainers; [ deliciouslytyped ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ deliciouslytyped ]; + platforms = lib.platforms.unix; mainProgram = "curl-impersonate-ff"; }; } diff --git a/pkgs/by-name/cu/curlftpfs/package.nix b/pkgs/by-name/cu/curlftpfs/package.nix index 794544a22aae..fcf9fc9e6f77 100644 --- a/pkgs/by-name/cu/curlftpfs/package.nix +++ b/pkgs/by-name/cu/curlftpfs/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails, doesn't work well too, btw - meta = with lib; { + meta = { description = "Filesystem for accessing FTP hosts based on FUSE and libcurl"; mainProgram = "curlftpfs"; homepage = "https://curlftpfs.sourceforge.net"; - license = licenses.gpl2Only; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cu/curlpp/package.nix b/pkgs/by-name/cu/curlpp/package.nix index 27dd36fc091b..64b6db7da128 100644 --- a/pkgs/by-name/cu/curlpp/package.nix +++ b/pkgs/by-name/cu/curlpp/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { buildInputs = [ curl ]; nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://www.curlpp.org/"; description = "C++ wrapper around libcURL"; mainProgram = "curlpp-config"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/cu/curseradio/package.nix b/pkgs/by-name/cu/curseradio/package.nix index 6449e00ed35b..e72c211c44c6 100644 --- a/pkgs/by-name/cu/curseradio/package.nix +++ b/pkgs/by-name/cu/curseradio/package.nix @@ -37,11 +37,11 @@ python3Packages.buildPythonApplication { # No tests doCheck = false; - meta = with lib; { + meta = { description = "Command line radio player"; mainProgram = "curseradio"; homepage = "https://github.com/chronitis/curseradio"; - license = licenses.mit; - maintainers = [ maintainers.eyjhb ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.eyjhb ]; }; } diff --git a/pkgs/by-name/cu/cursewords/package.nix b/pkgs/by-name/cu/cursewords/package.nix index dced1f5e345b..46eeeb504807 100644 --- a/pkgs/by-name/cu/cursewords/package.nix +++ b/pkgs/by-name/cu/cursewords/package.nix @@ -29,12 +29,12 @@ python3Packages.buildPythonApplication rec { python3Packages.blessed ]; - meta = with lib; { + meta = { homepage = "https://github.com/thisisparker/cursewords"; description = "Graphical command line program for solving crossword puzzles in the terminal"; mainProgram = "cursewords"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cu/curtail/package.nix b/pkgs/by-name/cu/curtail/package.nix index 8c00f21cb9df..ff56de647b5a 100644 --- a/pkgs/by-name/cu/curtail/package.nix +++ b/pkgs/by-name/cu/curtail/package.nix @@ -81,11 +81,11 @@ python3.pkgs.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple & useful image compressor"; mainProgram = "curtail"; homepage = "https://github.com/Huluti/Curtail"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; teams = [ lib.teams.gnome-circle ]; }; } diff --git a/pkgs/by-name/cu/curv/package.nix b/pkgs/by-name/cu/curv/package.nix index 2fd270b06787..afc56199ca7e 100644 --- a/pkgs/by-name/cu/curv/package.nix +++ b/pkgs/by-name/cu/curv/package.nix @@ -77,13 +77,13 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "2D and 3D geometric modelling programming language for creating art with maths"; homepage = "https://codeberg.org/doug-moen/curv"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ pbsds ]; + maintainers = with lib.maintainers; [ pbsds ]; mainProgram = "curv"; }; } diff --git a/pkgs/by-name/cu/cutee/package.nix b/pkgs/by-name/cu/cutee/package.nix index f14a6b637c70..20480c544bdc 100644 --- a/pkgs/by-name/cu/cutee/package.nix +++ b/pkgs/by-name/cu/cutee/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp cutee $out/bin ''; - meta = with lib; { + meta = { description = "C++ Unit Testing Easy Environment"; mainProgram = "cutee"; homepage = "https://www.codesink.org/cutee_unit_testing.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cv/cvc4/package.nix b/pkgs/by-name/cv/cvc4/package.nix index bbdca9be0ac8..5a891fc3ac82 100644 --- a/pkgs/by-name/cv/cvc4/package.nix +++ b/pkgs/by-name/cv/cvc4/package.nix @@ -84,13 +84,13 @@ stdenv.mkDerivation rec { cmakeBuildType = "Production"; - meta = with lib; { + meta = { description = "High-performance theorem prover and SMT solver"; mainProgram = "cvc4"; homepage = "http://cvc4.cs.stanford.edu/web/"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vbgl thoughtpolice ]; diff --git a/pkgs/by-name/cv/cvc5/package.nix b/pkgs/by-name/cv/cvc5/package.nix index d6450d7086c6..52983f935a73 100644 --- a/pkgs/by-name/cv/cvc5/package.nix +++ b/pkgs/by-name/cv/cvc5/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "High-performance theorem prover and SMT solver"; mainProgram = "cvc5"; homepage = "https://cvc5.github.io"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ shadaj ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ shadaj ]; }; } diff --git a/pkgs/by-name/cv/cvehound/package.nix b/pkgs/by-name/cv/cvehound/package.nix index 8a0a86da2244..3c9b37d2ea2d 100644 --- a/pkgs/by-name/cv/cvehound/package.nix +++ b/pkgs/by-name/cv/cvehound/package.nix @@ -45,15 +45,15 @@ python3.pkgs.buildPythonApplication rec { # Tries to clone the kernel sources doCheck = false; - meta = with lib; { + meta = { description = "Tool to check linux kernel source dump for known CVEs"; homepage = "https://github.com/evdenis/cvehound"; changelog = "https://github.com/evdenis/cvehound/blob/${src.rev}/ChangeLog"; # See https://github.com/evdenis/cvehound/issues/22 - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Plus ]; - maintainers = with maintainers; [ ambroisie ]; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/by-name/cv/cvs-fast-export/package.nix b/pkgs/by-name/cv/cvs-fast-export/package.nix index 86d78a751d3c..d4ce023e4329 100644 --- a/pkgs/by-name/cv/cvs-fast-export/package.nix +++ b/pkgs/by-name/cv/cvs-fast-export/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Export an RCS or CVS history as a fast-import stream"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dfoxfranke ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dfoxfranke ]; homepage = "http://www.catb.org/esr/cvs-fast-export/"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cv/cvs/package.nix b/pkgs/by-name/cv/cvs/package.nix index 6108d1fc3bc3..47c4c2f888c7 100644 --- a/pkgs/by-name/cv/cvs/package.nix +++ b/pkgs/by-name/cv/cvs/package.nix @@ -68,10 +68,10 @@ stdenv.mkDerivation { doCheck = false; # fails 1 of 1 tests - meta = with lib; { + meta = { homepage = "http://cvs.nongnu.org"; description = "Concurrent Versions System - a source control system"; - license = licenses.gpl2Plus; # library is GPLv2, main is GPLv1 - platforms = platforms.all; + license = lib.licenses.gpl2Plus; # library is GPLv2, main is GPLv1 + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cv/cvs2svn/package.nix b/pkgs/by-name/cv/cvs2svn/package.nix index f489d028d225..26a5abdd40cb 100644 --- a/pkgs/by-name/cv/cvs2svn/package.nix +++ b/pkgs/by-name/cv/cvs2svn/package.nix @@ -44,14 +44,14 @@ pypy2Packages.buildPythonApplication rec { done ''; - meta = with lib; { + meta = { description = "Tool to convert CVS repositories to Subversion repositories"; homepage = "https://github.com/mhagger/cvs2svn"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ makefu viraptor ]; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/cw/cw/package.nix b/pkgs/by-name/cw/cw/package.nix index 8e3da631217e..0eb3cb224597 100644 --- a/pkgs/by-name/cw/cw/package.nix +++ b/pkgs/by-name/cw/cw/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-8L4q0IAvmNk5GCAC5agNfWFtokIkddO1Dec4m6/sWfg="; - meta = with lib; { + meta = { description = "Best way to tail AWS CloudWatch Logs from your terminal"; homepage = "https://github.com/lucagrulla/cw"; - license = licenses.asl20; - maintainers = with maintainers; [ onthestairs ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ onthestairs ]; mainProgram = "cw"; }; } diff --git a/pkgs/by-name/cw/cwebbin/package.nix b/pkgs/by-name/cw/cwebbin/package.nix index c6ec2f0dbd72..f0b04d5e8921 100644 --- a/pkgs/by-name/cw/cwebbin/package.nix +++ b/pkgs/by-name/cw/cwebbin/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { mkdir -p $out/share/man/man1 $out/share/texmf/tex/generic $out/share/emacs $out/lib ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Literate Programming in C/C++"; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; maintainers = [ ]; - license = licenses.abstyles; + license = lib.licenses.abstyles; }; } diff --git a/pkgs/by-name/cw/cwiid/package.nix b/pkgs/by-name/cw/cwiid/package.nix index b8df8f1eb16b..eccda1e63962 100644 --- a/pkgs/by-name/cw/cwiid/package.nix +++ b/pkgs/by-name/cw/cwiid/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation { sed -i -e "s/0.6.00/0.6.0/" $out/lib/pkgconfig/cwiid.pc ''; - meta = with lib; { + meta = { description = "Linux Nintendo Wiimote interface"; homepage = "http://cwiid.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ bennofs ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ bennofs ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cw/cwm/package.nix b/pkgs/by-name/cw/cwm/package.nix index e68e8b2aef33..1128e945ca74 100644 --- a/pkgs/by-name/cw/cwm/package.nix +++ b/pkgs/by-name/cw/cwm/package.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation rec { prePatch = ''sed -i "s@/usr/local@$out@" Makefile''; - meta = with lib; { + meta = { description = "Lightweight and efficient window manager for X11"; homepage = "https://github.com/leahneukirchen/cwm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ _0x4A6F mkf ]; - license = licenses.isc; - platforms = platforms.linux; + license = lib.licenses.isc; + platforms = lib.platforms.linux; mainProgram = "cwm"; }; } diff --git a/pkgs/by-name/cx/cxx-prettyprint/package.nix b/pkgs/by-name/cx/cxx-prettyprint/package.nix index 2745dfe61a2f..93a0be5d0dcc 100644 --- a/pkgs/by-name/cx/cxx-prettyprint/package.nix +++ b/pkgs/by-name/cx/cxx-prettyprint/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { cp prettyprint.hpp "$out/include" ''; - meta = with lib; { + meta = { description = "Header only C++ library for pretty printing standard containers"; homepage = "https://github.com/louisdx/cxx-prettyprint"; license = lib.licenses.boost; - platforms = platforms.all; + platforms = lib.platforms.all; # This is a header-only library, no point in hydra building it: hydraPlatforms = [ ]; diff --git a/pkgs/by-name/cx/cxx-rs/package.nix b/pkgs/by-name/cx/cxx-rs/package.nix index e8ddb5c8b208..e6163dabf62a 100644 --- a/pkgs/by-name/cx/cxx-rs/package.nix +++ b/pkgs/by-name/cx/cxx-rs/package.nix @@ -53,11 +53,11 @@ rustPlatform.buildRustPackage (finalAttrs: { command = "cxxbridge --version"; }; - meta = with lib; { + meta = { description = "Safe FFI between Rust and C++"; mainProgram = "cxxbridge"; homepage = "https://github.com/dtolnay/cxx"; - license = licenses.mit; - maintainers = with maintainers; [ centromere ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ centromere ]; }; }) diff --git a/pkgs/by-name/cx/cxxopts/package.nix b/pkgs/by-name/cx/cxxopts/package.nix index 1458ecde75c2..53c4e693e272 100644 --- a/pkgs/by-name/cx/cxxopts/package.nix +++ b/pkgs/by-name/cx/cxxopts/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/jarro2783/cxxopts"; description = "Lightweight C++ GNU-style option parser library"; - license = licenses.mit; - maintainers = [ maintainers.spease ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.spease ]; pkgConfigModules = [ "cxxopts" ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/cy/cyan/package.nix b/pkgs/by-name/cy/cyan/package.nix index 7e3714a12476..414ca5077d4e 100644 --- a/pkgs/by-name/cy/cyan/package.nix +++ b/pkgs/by-name/cy/cyan/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Image viewer and converter, designed for prepress (print) work"; homepage = "https://github.com/rodlie/cyan"; mainProgram = "Cyan"; - license = licenses.cecill21; - platforms = platforms.linux; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.cecill21; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/cy/cyanrip/package.nix b/pkgs/by-name/cy/cyanrip/package.nix index 0547ed7d6bf6..f3191094d3eb 100644 --- a/pkgs/by-name/cy/cyanrip/package.nix +++ b/pkgs/by-name/cy/cyanrip/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation (finalAttrs: { curl ]; - meta = with lib; { + meta = { homepage = "https://github.com/cyanreg/cyanrip"; changelog = "https://github.com/cyanreg/cyanrip/releases/tag/${finalAttrs.src.rev}"; description = "Bule-ish CD ripper"; mainProgram = "cyanrip"; - license = licenses.lgpl21Plus; - platforms = platforms.all; - maintainers = [ maintainers.zane ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.zane ]; }; }) diff --git a/pkgs/by-name/cy/cyclonedds-cxx/package.nix b/pkgs/by-name/cy/cyclonedds-cxx/package.nix index 4e556d718c26..3dd19cdb4b32 100644 --- a/pkgs/by-name/cy/cyclonedds-cxx/package.nix +++ b/pkgs/by-name/cy/cyclonedds-cxx/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { buildInputs = [ cyclonedds ]; - meta = with lib; { + meta = { description = "C++ binding for Eclipse Cyclone DDS"; homepage = "https://cyclonedds.io/"; - license = with licenses; [ + license = with lib.licenses; [ epl20 asl20 ]; - maintainers = with maintainers; [ linbreux ]; + maintainers = with lib.maintainers; [ linbreux ]; }; } diff --git a/pkgs/by-name/cy/cyclonedds/package.nix b/pkgs/by-name/cy/cyclonedds/package.nix index dca6111c6cc5..7af6b7e22425 100644 --- a/pkgs/by-name/cy/cyclonedds/package.nix +++ b/pkgs/by-name/cy/cyclonedds/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Eclipse Cyclone DDS project"; homepage = "https://cyclonedds.io/"; - license = with licenses; [ epl20 ]; - maintainers = with maintainers; [ bachp ]; + license = with lib.licenses; [ epl20 ]; + maintainers = with lib.maintainers; [ bachp ]; }; } diff --git a/pkgs/by-name/cy/cyclonedx-gomod/package.nix b/pkgs/by-name/cy/cyclonedx-gomod/package.nix index 1da6f38137d7..5714b054c5c4 100644 --- a/pkgs/by-name/cy/cyclonedx-gomod/package.nix +++ b/pkgs/by-name/cy/cyclonedx-gomod/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { # Tests require network access and cyclonedx executable doCheck = false; - meta = with lib; { + meta = { description = "Tool to create CycloneDX Software Bill of Materials (SBOM) from Go modules"; homepage = "https://github.com/CycloneDX/cyclonedx-gomod"; changelog = "https://github.com/CycloneDX/cyclonedx-gomod/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "cyclonedx-gomod"; }; } diff --git a/pkgs/by-name/cy/cyme/package.nix b/pkgs/by-name/cy/cyme/package.nix index 94edf5185f91..94002e4821b5 100644 --- a/pkgs/by-name/cy/cyme/package.nix +++ b/pkgs/by-name/cy/cyme/package.nix @@ -56,13 +56,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/tuna-f1sh/cyme"; changelog = "https://github.com/tuna-f1sh/cyme/releases/tag/${src.rev}"; description = "Modern cross-platform lsusb"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ h7x4 ]; - platforms = platforms.linux ++ platforms.darwin ++ platforms.windows; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ h7x4 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.windows; mainProgram = "cyme"; }; } diff --git a/pkgs/by-name/cy/cypress/package.nix b/pkgs/by-name/cy/cypress/package.nix index 2e5b3f765932..5c1513c10155 100644 --- a/pkgs/by-name/cy/cypress/package.nix +++ b/pkgs/by-name/cy/cypress/package.nix @@ -115,14 +115,14 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Fast, easy and reliable testing for anything that runs in a browser"; homepage = "https://www.cypress.io"; mainProgram = "Cypress"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; platforms = lib.attrNames availableBinaries; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tweber mmahut Crafter diff --git a/pkgs/by-name/cy/cyrus-sasl-xoauth2/package.nix b/pkgs/by-name/cy/cyrus-sasl-xoauth2/package.nix index 922d38422877..291f6f84a639 100644 --- a/pkgs/by-name/cy/cyrus-sasl-xoauth2/package.nix +++ b/pkgs/by-name/cy/cyrus-sasl-xoauth2/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "--with-cyrus-sasl=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/moriyoshi/cyrus-sasl-xoauth2"; description = "XOAUTH2 mechanism plugin for cyrus-sasl"; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ wentasah ]; }; } diff --git a/pkgs/by-name/cy/cyrus_sasl/package.nix b/pkgs/by-name/cy/cyrus_sasl/package.nix index c6dc04e136f3..63dff1f5e4c5 100644 --- a/pkgs/by-name/cy/cyrus_sasl/package.nix +++ b/pkgs/by-name/cy/cyrus_sasl/package.nix @@ -90,10 +90,10 @@ stdenv.mkDerivation rec { inherit (nixosTests) parsedmarc postfix; }; - meta = with lib; { + meta = { homepage = "https://www.cyrusimap.org/sasl"; description = "Library for adding authentication support to connection-based protocols"; - platforms = platforms.unix; - license = licenses.bsdOriginal; + platforms = lib.platforms.unix; + license = lib.licenses.bsdOriginal; }; } diff --git a/pkgs/by-name/cz/czmq/package.nix b/pkgs/by-name/cz/czmq/package.nix index 8ae99d51d61c..083dcb7e5030 100644 --- a/pkgs/by-name/cz/czmq/package.nix +++ b/pkgs/by-name/cz/czmq/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { # Needs to be propagated for the .pc file to work propagatedBuildInputs = [ zeromq ]; - meta = with lib; { + meta = { homepage = "http://czmq.zeromq.org/"; description = "High-level C Binding for ZeroMQ"; mainProgram = "zmakecert"; - license = licenses.mpl20; - platforms = platforms.all; + license = lib.licenses.mpl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/d-/d-seams/package.nix b/pkgs/by-name/d-/d-seams/package.nix index 46d7cf14ef24..7b7215851389 100644 --- a/pkgs/by-name/d-/d-seams/package.nix +++ b/pkgs/by-name/d-/d-seams/package.nix @@ -56,7 +56,7 @@ clangStdenv.mkDerivation rec { blas ]; - meta = with lib; { + meta = { description = "Deferred Structural Elucidation Analysis for Molecular Simulations"; mainProgram = "yodaStruct"; longDescription = '' @@ -67,8 +67,8 @@ clangStdenv.mkDerivation rec { interface. ''; homepage = "https://dseams.info"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.HaoZeke ]; + maintainers = [ lib.maintainers.HaoZeke ]; }; } diff --git a/pkgs/by-name/d-/d-spy/package.nix b/pkgs/by-name/d-/d-spy/package.nix index 705bf5078e5d..c1b6f1130fff 100644 --- a/pkgs/by-name/d-/d-spy/package.nix +++ b/pkgs/by-name/d-/d-spy/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "D-Bus exploration tool"; mainProgram = "d-spy"; homepage = "https://gitlab.gnome.org/GNOME/d-spy"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/d2/d2coding/package.nix b/pkgs/by-name/d2/d2coding/package.nix index 02c5c61b6b38..ed1862de9250 100644 --- a/pkgs/by-name/d2/d2coding/package.nix +++ b/pkgs/by-name/d2/d2coding/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monospace font with support for Korean and latin characters"; longDescription = '' D2Coding is a monospace font developed by a Korean IT Company called Naver. @@ -32,8 +32,8 @@ stdenvNoCC.mkDerivation rec { creator, with symbols for Powerline. ''; homepage = "https://github.com/naver/d2codingfont"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/da/dab_lib/package.nix b/pkgs/by-name/da/dab_lib/package.nix index ae23999d78e4..b783bafe7cea 100644 --- a/pkgs/by-name/da/dab_lib/package.nix +++ b/pkgs/by-name/da/dab_lib/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation (finalAttrs: { zlib ]; - meta = with lib; { + meta = { description = "DAB/DAB+ decoding library"; homepage = "https://github.com/JvanKatwijk/dab-cmdline"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ aciceri alexwinter ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/da/dabet/package.nix b/pkgs/by-name/da/dabet/package.nix index 6d0f685b42e4..87cf7ea12a35 100644 --- a/pkgs/by-name/da/dabet/package.nix +++ b/pkgs/by-name/da/dabet/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-2ixdugxgc6lyLd06BeXxlrSqpVGJJ9SkFKwnAsol7V4="; - meta = with lib; { + meta = { description = "Print the duration between two times"; homepage = "https://codeberg.org/annaaurora/dabet"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "dabet"; }; } diff --git a/pkgs/by-name/da/dabtools/package.nix b/pkgs/by-name/da/dabtools/package.nix index ce554e4b7300..4582df681731 100644 --- a/pkgs/by-name/da/dabtools/package.nix +++ b/pkgs/by-name/da/dabtools/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { "cmake_minimum_required(VERSION 3.5)" ''; - meta = with lib; { + meta = { description = "Commandline tools for DAB and DAB+ digital radio broadcasts"; homepage = "https://github.com/Opendigitalradio/dabtools"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.markuskowa ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/da/dadadodo/package.nix b/pkgs/by-name/da/dadadodo/package.nix index e922158b90b1..4df4d815592e 100644 --- a/pkgs/by-name/da/dadadodo/package.nix +++ b/pkgs/by-name/da/dadadodo/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Markov chain-based text generator"; mainProgram = "dadadodo"; homepage = "http://www.jwz.org/dadadodo"; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/da/daemon/package.nix b/pkgs/by-name/da/daemon/package.nix index 2840541254dd..03af4a3cf836 100644 --- a/pkgs/by-name/da/daemon/package.nix +++ b/pkgs/by-name/da/daemon/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; - meta = with lib; { + meta = { description = "Turns other processes into daemons"; longDescription = '' Daemon turns other process into daemons. There are many tasks that need @@ -30,8 +30,8 @@ stdenv.mkDerivation rec { writing daemons in languages other than C, C++ or Perl (e.g. /bin/sh, Java). ''; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "daemon"; }; } diff --git a/pkgs/by-name/da/daemonize/package.nix b/pkgs/by-name/da/daemonize/package.nix index 6d8339f39000..7f6e2f82acdb 100644 --- a/pkgs/by-name/da/daemonize/package.nix +++ b/pkgs/by-name/da/daemonize/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { sha256 = "1e6LZXf/lK7sB2CbXwOg7LOi0Q8IBQNAa4d7rX0Ej3A="; }; - meta = with lib; { + meta = { description = "Runs a command as a Unix daemon"; homepage = "http://software.clapper.org/daemonize/"; - license = licenses.bsd3; - platforms = with platforms; linux ++ freebsd ++ darwin; + license = lib.licenses.bsd3; + platforms = with lib.platforms; linux ++ freebsd ++ darwin; mainProgram = "daemonize"; }; } diff --git a/pkgs/by-name/da/dafny/package.nix b/pkgs/by-name/da/dafny/package.nix index 1acf4a956aa8..a2a2719c161d 100644 --- a/pkgs/by-name/da/dafny/package.nix +++ b/pkgs/by-name/da/dafny/package.nix @@ -94,11 +94,11 @@ buildDotnetModule rec { passthru.tests = tests; - meta = with lib; { + meta = { description = "Programming language with built-in specification constructs"; homepage = "https://research.microsoft.com/dafny"; - maintainers = with maintainers; [ layus ]; - license = licenses.mit; - platforms = with platforms; (linux ++ darwin); + maintainers = with lib.maintainers; [ layus ]; + license = lib.licenses.mit; + platforms = with lib.platforms; (linux ++ darwin); }; } diff --git a/pkgs/by-name/da/dailies/package.nix b/pkgs/by-name/da/dailies/package.nix index 6893c8f0502b..a87a9774732f 100644 --- a/pkgs/by-name/da/dailies/package.nix +++ b/pkgs/by-name/da/dailies/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-R8r6YFo0Ih7esJl/OpcNNmmmB9pGxOXCc+3/ZivaWSw="; - meta = with lib; { + meta = { description = "Daily journaling in plain markdown"; homepage = "https://github.com/JachymPutta/dailies"; - license = licenses.mit; - maintainers = with maintainers; [ JachymPutta ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ JachymPutta ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/da/daktilo/package.nix b/pkgs/by-name/da/daktilo/package.nix index ffd0e8b135dc..e9b3e9773a61 100644 --- a/pkgs/by-name/da/daktilo/package.nix +++ b/pkgs/by-name/da/daktilo/package.nix @@ -52,15 +52,15 @@ rustPlatform.buildRustPackage rec { rm $out/bin/daktilo-{completions,mangen} ''; - meta = with lib; { + meta = { description = "Turn your keyboard into a typewriter"; homepage = "https://github.com/orhun/daktilo"; changelog = "https://github.com/orhun/daktilo/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ orhun ]; + maintainers = with lib.maintainers; [ orhun ]; mainProgram = "daktilo"; }; } diff --git a/pkgs/by-name/da/damon/package.nix b/pkgs/by-name/da/damon/package.nix index d7cd836d6d47..1b3eddea5e89 100644 --- a/pkgs/by-name/da/damon/package.nix +++ b/pkgs/by-name/da/damon/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-/ZZxw6qEUJQUz3J0TxUYJECCcX276r74g0N2tV77+8I="; - meta = with lib; { + meta = { homepage = "https://github.com/hashicorp/damon"; - license = licenses.mpl20; + license = lib.licenses.mpl20; description = "Terminal UI (TUI) for HashiCorp Nomad"; - teams = [ teams.iog ]; + teams = [ lib.teams.iog ]; mainProgram = "damon"; }; } diff --git a/pkgs/by-name/da/dancing-script/package.nix b/pkgs/by-name/da/dancing-script/package.nix index 118c07d44816..fe1610a1b11a 100644 --- a/pkgs/by-name/da/dancing-script/package.nix +++ b/pkgs/by-name/da/dancing-script/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Dancing Script"; longDescription = "A lively casual script where the letters bounce and change size slightly."; homepage = "https://github.com/impallari/DancingScript"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ wdavidw ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ wdavidw ]; }; } diff --git a/pkgs/by-name/da/dante/package.nix b/pkgs/by-name/da/dante/package.nix index ddb495471cef..249bf89629f5 100644 --- a/pkgs/by-name/da/dante/package.nix +++ b/pkgs/by-name/da/dante/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { substituteInPlace include/redefgen.sh --replace 'PATH=/bin:/usr/bin:/sbin:/usr/sbin' "" ''; - meta = with lib; { + meta = { description = "Circuit-level SOCKS client/server that can be used to provide convenient and secure network connectivity"; homepage = "https://www.inet.no/dante/"; - maintainers = [ maintainers.arobyn ]; - license = licenses.bsdOriginal; - platforms = platforms.linux ++ platforms.darwin; + maintainers = [ lib.maintainers.arobyn ]; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/da/dapper/package.nix b/pkgs/by-name/da/dapper/package.nix index f367aae65d9f..1b2af9fe4a3a 100644 --- a/pkgs/by-name/da/dapper/package.nix +++ b/pkgs/by-name/da/dapper/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { substituteInPlace main.go --replace 0.0.0 ${version} ''; - meta = with lib; { + meta = { description = "Docker build wrapper"; mainProgram = "dapper"; homepage = "https://github.com/rancher/dapper"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ kuznero ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kuznero ]; }; } diff --git a/pkgs/by-name/da/dapr-cli/package.nix b/pkgs/by-name/da/dapr-cli/package.nix index eebdecd96a4a..bd7604a02754 100644 --- a/pkgs/by-name/da/dapr-cli/package.nix +++ b/pkgs/by-name/da/dapr-cli/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { --zsh <($out/bin/dapr completion zsh) ''; - meta = with lib; { + meta = { description = "CLI for managing Dapr, the distributed application runtime"; homepage = "https://dapr.io"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ joshvanl lucperkins ]; diff --git a/pkgs/by-name/da/dar/package.nix b/pkgs/by-name/da/dar/package.nix index 9669c586f8c5..24a292907151 100644 --- a/pkgs/by-name/da/dar/package.nix +++ b/pkgs/by-name/da/dar/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { rm -r "$out"/share/dar ''; - meta = with lib; { + meta = { homepage = "http://dar.linux.free.fr"; description = "Disk ARchiver, allows backing up files into indexed archives"; - maintainers = with maintainers; [ izorkin ]; - license = licenses.gpl2Only; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ izorkin ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/da/darkhttpd/package.nix b/pkgs/by-name/da/darkhttpd/package.nix index 4184517423ac..c58139703e2e 100644 --- a/pkgs/by-name/da/darkhttpd/package.nix +++ b/pkgs/by-name/da/darkhttpd/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Small and secure static webserver"; mainProgram = "darkhttpd"; homepage = "https://unix4lyfe.org/darkhttpd/"; - license = licenses.bsd3; - maintainers = with maintainers; [ bobvanderlinden ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bobvanderlinden ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/da/darklua/package.nix b/pkgs/by-name/da/darklua/package.nix index 983390cee45f..7e687003bcc9 100644 --- a/pkgs/by-name/da/darklua/package.nix +++ b/pkgs/by-name/da/darklua/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { rm .cargo/config.toml ''; - meta = with lib; { + meta = { description = "Command line tool that transforms Lua code"; mainProgram = "darklua"; homepage = "https://darklua.com"; changelog = "https://github.com/seaofvoices/darklua/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ tomodachi94 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomodachi94 ]; }; } diff --git a/pkgs/by-name/da/darkman/package.nix b/pkgs/by-name/da/darkman/package.nix index 34c4748a3743..624ca2bcc7f8 100644 --- a/pkgs/by-name/da/darkman/package.nix +++ b/pkgs/by-name/da/darkman/package.nix @@ -49,12 +49,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Framework for dark-mode and light-mode transitions on Linux desktop"; homepage = "https://gitlab.com/WhyNotHugo/darkman"; - license = licenses.isc; - maintainers = [ maintainers.ajgrf ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.ajgrf ]; + platforms = lib.platforms.linux; mainProgram = "darkman"; }; } diff --git a/pkgs/by-name/da/darkplaces/package.nix b/pkgs/by-name/da/darkplaces/package.nix index 17c10f4a57a0..7776b8a984cd 100644 --- a/pkgs/by-name/da/darkplaces/package.nix +++ b/pkgs/by-name/da/darkplaces/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation { $out/bin/darkplaces ''; - meta = with lib; { + meta = { homepage = "https://www.icculus.org/twilight/darkplaces/"; description = "Quake 1 engine implementation by LadyHavoc"; longDescription = '' @@ -54,8 +54,8 @@ stdenv.mkDerivation { rendering features, and expanding upon the engine's native game code language QuakeC, as well as supporting additional map and model formats. ''; - maintainers = with maintainers; [ necrophcodr ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ necrophcodr ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/da/darling-dmg/package.nix b/pkgs/by-name/da/darling-dmg/package.nix index 0e6072e4e841..3a71869edd4b 100644 --- a/pkgs/by-name/da/darling-dmg/package.nix +++ b/pkgs/by-name/da/darling-dmg/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation { inherit (nixosTests) darling-dmg; }; - meta = with lib; { + meta = { homepage = "https://www.darlinghq.org/"; description = "FUSE module for .dmg files (containing an HFS+ filesystem)"; mainProgram = "darling-dmg"; - platforms = platforms.unix; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Luflosi ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/by-name/da/das_watchdog/package.nix b/pkgs/by-name/da/das_watchdog/package.nix index 4c22740eec93..14d2545a5adf 100644 --- a/pkgs/by-name/da/das_watchdog/package.nix +++ b/pkgs/by-name/da/das_watchdog/package.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation { cp test_rt $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/kmatheussen/das_watchdog"; description = "General watchdog for the linux operating system"; longDescription = '' It should run in the background at all times to ensure a realtime process won't hang the machine."; ''; - license = licenses.free; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.free; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/da/dash/package.nix b/pkgs/by-name/da/dash/package.nix index c922ed45d97f..030968dbc904 100644 --- a/pkgs/by-name/da/dash/package.nix +++ b/pkgs/by-name/da/dash/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "http://gondor.apana.org.au/~herbert/dash/"; description = "POSIX-compliant implementation of /bin/sh that aims to be as small as possible"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ bsd3 gpl2Plus ]; diff --git a/pkgs/by-name/da/dashing/package.nix b/pkgs/by-name/da/dashing/package.nix index 9bc4140c1265..bf272d22e395 100644 --- a/pkgs/by-name/da/dashing/package.nix +++ b/pkgs/by-name/da/dashing/package.nix @@ -29,10 +29,10 @@ buildGoModule rec { package = dashing; }; - meta = with lib; { + meta = { description = "Dash Generator Script for Any HTML"; homepage = "https://github.com/technosophos/dashing"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "dashing"; }; diff --git a/pkgs/by-name/da/dasm/package.nix b/pkgs/by-name/da/dasm/package.nix index 578d49a7639f..688465cad182 100644 --- a/pkgs/by-name/da/dasm/package.nix +++ b/pkgs/by-name/da/dasm/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { checkTarget = "test"; doCheck = true; - meta = with lib; { + meta = { description = "Assembler for 6502 and other 8-bit microprocessors"; homepage = "https://dasm-assembler.github.io"; - license = licenses.gpl2; - maintainers = [ maintainers.jwatt ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.jwatt ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/da/dataexplorer/package.nix b/pkgs/by-name/da/dataexplorer/package.nix index 82dee8da062b..f9c8890fc3f9 100644 --- a/pkgs/by-name/da/dataexplorer/package.nix +++ b/pkgs/by-name/da/dataexplorer/package.nix @@ -79,13 +79,13 @@ stdenv.mkDerivation (finalAttrs: { strip-nondeterminism --type jar $out/share/DataExplorer/{DataExplorer.jar,devices/*.jar} ''; - meta = with lib; { + meta = { description = "Graphical tool to analyze data, gathered from various hardware devices"; homepage = "https://www.nongnu.org/dataexplorer/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ panicgh ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ panicgh ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode # contains RXTXcomm (JNI library with *.so files) binaryBytecode # contains thirdparty jar files, e.g. javax.json, org.glassfish.json diff --git a/pkgs/by-name/da/datamash/package.nix b/pkgs/by-name/da/datamash/package.nix index 6a0acde45e2f..d716852e53b3 100644 --- a/pkgs/by-name/da/datamash/package.nix +++ b/pkgs/by-name/da/datamash/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-84Lr2gNlDdZ5Fh91j5wKbMkpMhNDjUp3qO2jJarLh9I="; }; - meta = with lib; { + meta = { description = "Command-line program which performs basic numeric,textual and statistical operations on input textual data files"; homepage = "https://www.gnu.org/software/datamash/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/da/datefmt/package.nix b/pkgs/by-name/da/datefmt/package.nix index 2e794bda6400..6c757a13da38 100644 --- a/pkgs/by-name/da/datefmt/package.nix +++ b/pkgs/by-name/da/datefmt/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { homepage = "https://jb55.com/datefmt"; description = "Tool that formats timestamps in text streams"; - platforms = platforms.all; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ jb55 ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jb55 ]; mainProgram = "datefmt"; }; }) diff --git a/pkgs/by-name/da/datefudge/package.nix b/pkgs/by-name/da/datefudge/package.nix index de6ba351b9c5..664621f99211 100644 --- a/pkgs/by-name/da/datefudge/package.nix +++ b/pkgs/by-name/da/datefudge/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/datefudge --prefix PATH : ${coreutils}/bin ''; - meta = with lib; { + meta = { description = "Fake the system date"; longDescription = '' datefudge is a small utility that pretends that the system time is @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { gettimeofday and clock_gettime system calls. ''; homepage = "https://packages.qa.debian.org/d/datefudge.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "datefudge"; }; } diff --git a/pkgs/by-name/da/dateutils/package.nix b/pkgs/by-name/da/dateutils/package.nix index 8cb31c4ef83a..e7f5bc416916 100644 --- a/pkgs/by-name/da/dateutils/package.nix +++ b/pkgs/by-name/da/dateutils/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Bunch of tools that revolve around fiddling with dates and times in the command line"; homepage = "http://www.fresse.org/dateutils/"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.paperdigits ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.paperdigits ]; }; } diff --git a/pkgs/by-name/da/davinci-resolve/package.nix b/pkgs/by-name/da/davinci-resolve/package.nix index 976d4ce7cdb9..bd49c0510a5f 100644 --- a/pkgs/by-name/da/davinci-resolve/package.nix +++ b/pkgs/by-name/da/davinci-resolve/package.nix @@ -298,16 +298,16 @@ buildFHSEnv { }); }; - meta = with lib; { + meta = { description = "Professional video editing, color, effects and audio post-processing"; homepage = "https://www.blackmagicdesign.com/products/davinciresolve"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ amarshall XBagon ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "davinci-resolve${lib.optionalString studioVariant "-studio"}"; }; } diff --git a/pkgs/by-name/da/davix/package.nix b/pkgs/by-name/da/davix/package.nix index 628c1d5b4cb6..db1ac97a07ac 100644 --- a/pkgs/by-name/da/davix/package.nix +++ b/pkgs/by-name/da/davix/package.nix @@ -74,19 +74,19 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Toolkit for Http-based file management"; longDescription = "Davix is a toolkit designed for file operations with Http based protocols (WebDav, Amazon S3, ...). Davix provides an API and a set of command line tools"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; homepage = "https://github.com/cern-fts/davix"; changelog = "https://github.com/cern-fts/davix/blob/R_${ lib.replaceStrings [ "." ] [ "_" ] version }/RELEASE-NOTES.md"; - maintainers = with maintainers; [ adev ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ adev ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/da/davmail/package.nix b/pkgs/by-name/da/davmail/package.nix index 7c922069c831..dde7d21c8e6e 100644 --- a/pkgs/by-name/da/davmail/package.nix +++ b/pkgs/by-name/da/davmail/package.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Java application which presents a Microsoft Exchange server as local CALDAV, IMAP and SMTP servers"; homepage = "https://davmail.sourceforge.net/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; mainProgram = "davmail"; }; }) diff --git a/pkgs/by-name/da/davtest/package.nix b/pkgs/by-name/da/davtest/package.nix index 99d2c18ec580..3f914bbe7e66 100644 --- a/pkgs/by-name/da/davtest/package.nix +++ b/pkgs/by-name/da/davtest/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tests WebDAV servers by uploading test files, and then optionally testing for command execution or other actions directly on the target"; homepage = "https://code.google.com/p/davtest/"; mainProgram = "davtest.pl"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/da/dawn/package.nix b/pkgs/by-name/da/dawn/package.nix index 172e40beec68..1fd7019af0fa 100644 --- a/pkgs/by-name/da/dawn/package.nix +++ b/pkgs/by-name/da/dawn/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ tk ]} ''; - meta = with lib; { + meta = { description = "Vectorized 3D PostScript processor with analytical hidden line/surface removal"; - license = licenses.unfree; + license = lib.licenses.unfree; homepage = "https://geant4.kek.jp/~tanaka/DAWN/About_DAWN.html"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/da/dawncut/package.nix b/pkgs/by-name/da/dawncut/package.nix index 58da095f8985..60c0032b2b2c 100644 --- a/pkgs/by-name/da/dawncut/package.nix +++ b/pkgs/by-name/da/dawncut/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to generate a 3D scene data clipped with an arbitrary plane"; - license = licenses.unfree; + license = lib.licenses.unfree; homepage = "https://geant4.kek.jp/~tanaka/DAWN/About_DAWNCUT.html"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/db/dbcsr/package.nix b/pkgs/by-name/db/dbcsr/package.nix index 9b1a38e8cc86..3d403fee69c9 100644 --- a/pkgs/by-name/db/dbcsr/package.nix +++ b/pkgs/by-name/db/dbcsr/package.nix @@ -76,10 +76,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Distributed Block Compressed Sparse Row matrix library"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "https://github.com/cp2k/dbcsr"; - maintainers = [ maintainers.sheepforce ]; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/db/dbd/package.nix b/pkgs/by-name/db/dbd/package.nix index e2b450265cec..2905318f17ac 100644 --- a/pkgs/by-name/db/dbd/package.nix +++ b/pkgs/by-name/db/dbd/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { ++ lib.optionals stdenv.hostPlatform.isDarwin [ "darwin" ] ++ lib.optionals (stdenv.hostPlatform.isUnix && !stdenv.hostPlatform.isDarwin) [ "unix" ]; - meta = with lib; { + meta = { description = "Netcat-clone, designed to be portable and offer strong encryption"; mainProgram = "dbd"; homepage = "https://github.com/gitdurandal/dbd"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/db/dblab/package.nix b/pkgs/by-name/db/dblab/package.nix index fecee5b4328b..82fb3af8768b 100644 --- a/pkgs/by-name/db/dblab/package.nix +++ b/pkgs/by-name/db/dblab/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { # some tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Database client every command line junkie deserves"; homepage = "https://github.com/danvergara/dblab"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/db/dbmonster/package.nix b/pkgs/by-name/db/dbmonster/package.nix index 369fe822f173..4dc4d4be1497 100644 --- a/pkgs/by-name/db/dbmonster/package.nix +++ b/pkgs/by-name/db/dbmonster/package.nix @@ -49,10 +49,10 @@ python3.pkgs.buildPythonApplication { # Only script available doCheck = false; - meta = with lib; { + meta = { description = "Tool to track WiFi devices by signal strength"; homepage = "https://github.com/90N45-d3v/dBmonster"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/db/dbqn/package.nix b/pkgs/by-name/db/dbqn/package.nix index 0787eaa8ac39..cb7e6927ab10 100644 --- a/pkgs/by-name/db/dbqn/package.nix +++ b/pkgs/by-name/db/dbqn/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/dzaima/BQN"; description = "BQN implementation in Java" + lib.optionalString buildNativeImage ", compiled as a native image"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann ]; inherit (jdk.meta) platforms; diff --git a/pkgs/by-name/db/dbus-test-runner/package.nix b/pkgs/by-name/db/dbus-test-runner/package.nix index 740b24c42f4c..6bd0eda5ab3f 100644 --- a/pkgs/by-name/db/dbus-test-runner/package.nix +++ b/pkgs/by-name/db/dbus-test-runner/package.nix @@ -76,13 +76,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Small little utility to run a couple of executables under a new DBus session for testing"; mainProgram = "dbus-test-runner"; homepage = "https://launchpad.net/dbus-test-runner"; - license = licenses.gpl3Only; - platforms = platforms.unix; - teams = [ teams.lomiri ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + teams = [ lib.teams.lomiri ]; pkgConfigModules = [ "dbustest-1" ]; diff --git a/pkgs/by-name/db/dbus_cplusplus/package.nix b/pkgs/by-name/db/dbus_cplusplus/package.nix index 449987a8db6a..49ccea6c2347 100644 --- a/pkgs/by-name/db/dbus_cplusplus/package.nix +++ b/pkgs/by-name/db/dbus_cplusplus/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { "--disable-examples" ]; - meta = with lib; { + meta = { homepage = "https://dbus-cplusplus.sourceforge.net"; description = "C++ API for D-BUS"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/db/dbus_java/package.nix b/pkgs/by-name/db/dbus_java/package.nix index 6f0ebbb4cae4..ef324f70c244 100644 --- a/pkgs/by-name/db/dbus_java/package.nix +++ b/pkgs/by-name/db/dbus_java/package.nix @@ -30,8 +30,8 @@ stdenv.mkDerivation rec { -e "s|install: install-bin install-man install-doc|install: install-bin|" Makefile ''; - meta = with lib; { - platforms = platforms.linux; - license = licenses.afl21; + meta = { + platforms = lib.platforms.linux; + license = lib.licenses.afl21; }; } diff --git a/pkgs/by-name/db/dbxml/package.nix b/pkgs/by-name/db/dbxml/package.nix index d2fb83e6d7a7..d450e01c7b80 100644 --- a/pkgs/by-name/db/dbxml/package.nix +++ b/pkgs/by-name/db/dbxml/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { cd dbxml ''; - meta = with lib; { + meta = { homepage = "https://www.oracle.com/database/berkeley-db/xml.html"; description = "Embeddable XML database based on Berkeley DB"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/dc/dc3dd/package.nix b/pkgs/by-name/dc/dc3dd/package.nix index 0a1f90f9e7a1..af4d3241a66c 100644 --- a/pkgs/by-name/dc/dc3dd/package.nix +++ b/pkgs/by-name/dc/dc3dd/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Patched version of dd that includes a number of features useful for computer forensics"; mainProgram = "dc3dd"; homepage = "https://sourceforge.net/projects/dc3dd/"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; # Refer to https://sourceforge.net/p/dc3dd/code/HEAD/tree/COPYING + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; # Refer to https://sourceforge.net/p/dc3dd/code/HEAD/tree/COPYING }; }) diff --git a/pkgs/by-name/dc/dcadec/package.nix b/pkgs/by-name/dc/dcadec/package.nix index 4d7dfe578f20..dce87add0e69 100644 --- a/pkgs/by-name/dc/dcadec/package.nix +++ b/pkgs/by-name/dc/dcadec/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails with "ERROR: Run 'git submodule update --init test/samples' first." - meta = with lib; { + meta = { description = "DTS Coherent Acoustics decoder with support for HD extensions"; mainProgram = "dcadec"; homepage = "https://github.com/foo86/dcadec"; - license = licenses.lgpl21; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/dc/dcap/package.nix b/pkgs/by-name/dc/dcap/package.nix index 1a1014d8e88b..b0c9a0e8c00a 100644 --- a/pkgs/by-name/dc/dcap/package.nix +++ b/pkgs/by-name/dc/dcap/package.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "dCache access protocol client library"; homepage = "https://github.com/dCache/dcap"; changelog = "https://github.com/dCache/dcap/blob/master/ChangeLog"; - license = licenses.lgpl2Only; - platforms = platforms.all; + license = lib.licenses.lgpl2Only; + platforms = lib.platforms.all; mainProgram = "dccp"; - maintainers = with maintainers; [ ShamrockLee ]; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; } diff --git a/pkgs/by-name/dc/dcgm/package.nix b/pkgs/by-name/dc/dcgm/package.nix index 0c43d7b3bbe1..7fd5dde85ccf 100644 --- a/pkgs/by-name/dc/dcgm/package.nix +++ b/pkgs/by-name/dc/dcgm/package.nix @@ -166,12 +166,12 @@ stdenv.mkDerivation { __structuredAttrs = true; - meta = with lib; { + meta = { description = "Data Center GPU Manager (DCGM) is a daemon that allows users to monitor NVIDIA data-center GPUs"; homepage = "https://developer.nvidia.com/dcgm"; - license = licenses.asl20; - teams = [ teams.deshaw ]; + license = lib.licenses.asl20; + teams = [ lib.teams.deshaw ]; mainProgram = "dcgmi"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/dc/dclxvi/package.nix b/pkgs/by-name/dc/dclxvi/package.nix index e35fca24ffea..27591fddb6d2 100644 --- a/pkgs/by-name/dc/dclxvi/package.nix +++ b/pkgs/by-name/dc/dclxvi/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation { find . -name \*.so -exec cp {} $out/lib \; ''; - meta = with lib; { + meta = { homepage = "https://github.com/agl/dclxvi"; description = "Naehrig, Niederhagen and Schwabe's pairings code, massaged into a shared library"; - platforms = platforms.x86_64; - license = licenses.publicDomain; + platforms = lib.platforms.x86_64; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/dc/dconf/package.nix b/pkgs/by-name/dc/dconf/package.nix index 70ef73c20761..73dd2a3fee42 100644 --- a/pkgs/by-name/dc/dconf/package.nix +++ b/pkgs/by-name/dc/dconf/package.nix @@ -90,15 +90,15 @@ stdenv.mkDerivation (finalAttrs: { tests = { inherit (nixosTests) dconf; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/dconf"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; badPlatforms = [ # Mandatory libdconfsettings shared library. lib.systems.inspect.platformPatterns.isStatic ]; - teams = [ teams.gnome ]; + teams = [ lib.teams.gnome ]; mainProgram = "dconf"; }; }) diff --git a/pkgs/by-name/dc/dcs/package.nix b/pkgs/by-name/dc/dcs/package.nix index 29595e6b7d65..f6b7f67114c6 100644 --- a/pkgs/by-name/dc/dcs/package.nix +++ b/pkgs/by-name/dc/dcs/package.nix @@ -37,10 +37,10 @@ buildGoModule { cp -r static $out/share/dcs ''; - meta = with lib; { + meta = { description = "Debian Code Search"; homepage = "https://github.com/Debian/dcs"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; broken = stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/dcs.x86_64-darwin }; diff --git a/pkgs/by-name/dc/dcw-gmt/package.nix b/pkgs/by-name/dc/dcw-gmt/package.nix index c0b17fd92bf0..f04e9aee2843 100644 --- a/pkgs/by-name/dc/dcw-gmt/package.nix +++ b/pkgs/by-name/dc/dcw-gmt/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: { cp -rv ./* $out/share/dcw-gmt ''; - meta = with lib; { + meta = { homepage = "https://github.com/GenericMappingTools/dcw-gmt"; description = "Vector basemap of the world, for use with GMT"; longDescription = '' @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { - It contains more state boundaries (the largest 8 countries, Great Britain and Norway are now represented). - The data have been reformatted to save space and are distributed as a single deflated netCDF-4 file. ''; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = with lib.maintainers; [ tviti ]; teams = [ lib.teams.geospatial ]; }; diff --git a/pkgs/by-name/dd/dd_rescue/package.nix b/pkgs/by-name/dd/dd_rescue/package.nix index 89cd111b46fc..8e95bc5fad37 100644 --- a/pkgs/by-name/dd/dd_rescue/package.nix +++ b/pkgs/by-name/dd/dd_rescue/package.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation rec { cp "$out/share/dd_rescue"/dd_rhelp*/dd_rhelp "$out/bin" ''; - meta = with lib; { + meta = { description = "Tool to copy data from a damaged block device"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "http://www.garloff.de/kurt/linux/ddrescue/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "dd_rescue"; }; } diff --git a/pkgs/by-name/dd/ddate/package.nix b/pkgs/by-name/dd/ddate/package.nix index 082059291c93..9130752cbba8 100644 --- a/pkgs/by-name/dd/ddate/package.nix +++ b/pkgs/by-name/dd/ddate/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/bo0ts/ddate"; description = "Discordian version of the date program"; - license = licenses.publicDomain; - maintainers = with maintainers; [ kovirobi ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ kovirobi ]; + platforms = lib.platforms.all; mainProgram = "ddate"; }; } diff --git a/pkgs/by-name/dd/ddclient/package.nix b/pkgs/by-name/dd/ddclient/package.nix index ff13221d3202..bb2dfa810ab7 100644 --- a/pkgs/by-name/dd/ddclient/package.nix +++ b/pkgs/by-name/dd/ddclient/package.nix @@ -52,12 +52,12 @@ perlPackages.buildPerlPackage rec { # TODO: run upstream tests doCheck = false; - meta = with lib; { + meta = { description = "Client for updating dynamic DNS service entries"; homepage = "https://ddclient.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "ddclient"; }; } diff --git a/pkgs/by-name/dd/ddev/package.nix b/pkgs/by-name/dd/ddev/package.nix index 3e20e9b33b5e..739e3f1eb0d4 100644 --- a/pkgs/by-name/dd/ddev/package.nix +++ b/pkgs/by-name/dd/ddev/package.nix @@ -53,12 +53,12 @@ buildGoModule rec { versionCheckProgramArg = "--version"; versionCheckKeepEnvironment = [ "HOME" ]; - meta = with lib; { + meta = { description = "Docker-based local PHP+Node.js web development environments"; homepage = "https://ddev.com/"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "ddev"; - maintainers = with maintainers; [ remyvv ]; + maintainers = with lib.maintainers; [ remyvv ]; }; } diff --git a/pkgs/by-name/dd/ddgr/package.nix b/pkgs/by-name/dd/ddgr/package.nix index 01a331802e5d..032764f1049a 100644 --- a/pkgs/by-name/dd/ddgr/package.nix +++ b/pkgs/by-name/dd/ddgr/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { installShellCompletion --zsh auto-completion/zsh/_ddgr ''; - meta = with lib; { + meta = { homepage = "https://github.com/jarun/ddgr"; description = "Search DuckDuckGo from the terminal"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ceedubs markus1189 ]; diff --git a/pkgs/by-name/dd/ddh/package.nix b/pkgs/by-name/dd/ddh/package.nix index d54f84c40c83..22986f37d40b 100644 --- a/pkgs/by-name/dd/ddh/package.nix +++ b/pkgs/by-name/dd/ddh/package.nix @@ -16,16 +16,16 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rl9+3JSFkqZwaIWCuZBDhDF0QBr+aB2I7kB1o9LWCEw="; - meta = with lib; { + meta = { description = "Fast duplicate file finder"; longDescription = '' DDH traverses input directories and their subdirectories. It also hashes files as needed and reports findings. ''; homepage = "https://github.com/darakian/ddh"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ h7x4 ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ h7x4 ]; + platforms = lib.platforms.all; mainProgram = "ddh"; }; } diff --git a/pkgs/by-name/dd/ddns-go/package.nix b/pkgs/by-name/dd/ddns-go/package.nix index 3f0f8d27f93d..8ebbd62fbbdc 100644 --- a/pkgs/by-name/dd/ddns-go/package.nix +++ b/pkgs/by-name/dd/ddns-go/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { # network required doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/jeessy2/ddns-go"; description = "Simple and easy to use DDNS"; - license = licenses.mit; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oluceps ]; mainProgram = "ddns-go"; }; } diff --git a/pkgs/by-name/dd/ddns-updater/package.nix b/pkgs/by-name/dd/ddns-updater/package.nix index 1d3364428a5b..4bb963d9bf0f 100644 --- a/pkgs/by-name/dd/ddns-updater/package.nix +++ b/pkgs/by-name/dd/ddns-updater/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Container to update DNS records periodically with WebUI for many DNS providers"; homepage = "https://github.com/qdm12/ddns-updater"; - license = licenses.mit; - maintainers = with maintainers; [ delliott ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ delliott ]; mainProgram = "ddns-updater"; }; } diff --git a/pkgs/by-name/dd/ddrescue/package.nix b/pkgs/by-name/dd/ddrescue/package.nix index b0f40fe7abff..0988990cb4e6 100644 --- a/pkgs/by-name/dd/ddrescue/package.nix +++ b/pkgs/by-name/dd/ddrescue/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { doCheck = true; # not cross; configureFlags = [ "CXX=${stdenv.cc.targetPrefix}c++" ]; - meta = with lib; { + meta = { description = "GNU ddrescue, a data recovery tool"; longDescription = '' @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { homepage = "https://www.gnu.org/software/ddrescue/ddrescue.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fpletz ]; }; diff --git a/pkgs/by-name/dd/ddrescueview/package.nix b/pkgs/by-name/dd/ddrescueview/package.nix index 68a033e75fe3..50828787fa1c 100644 --- a/pkgs/by-name/dd/ddrescueview/package.nix +++ b/pkgs/by-name/dd/ddrescueview/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { cp -ar applications icons man $out/share ''; - meta = with lib; { + meta = { description = "Tool to graphically examine ddrescue mapfiles"; homepage = "https://sourceforge.net/projects/ddrescueview/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "ddrescueview"; }; diff --git a/pkgs/by-name/dd/ddrutility/package.nix b/pkgs/by-name/dd/ddrutility/package.nix index 29851155fad9..3ecc0d71dc5e 100644 --- a/pkgs/by-name/dd/ddrutility/package.nix +++ b/pkgs/by-name/dd/ddrutility/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Set of utilities for hard drive data rescue"; homepage = "https://sourceforge.net/projects/ddrutility/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/dd/dduper/package.nix b/pkgs/by-name/dd/dduper/package.nix index d8221833d934..7311aa772735 100644 --- a/pkgs/by-name/dd/dduper/package.nix +++ b/pkgs/by-name/dd/dduper/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { install -m755 ./dduper $out/bin ''; - meta = with lib; { + meta = { description = "Fast block-level out-of-band BTRFS deduplication tool"; mainProgram = "dduper"; homepage = "https://github.com/Lakshmipathi/dduper"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ thesola10 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ thesola10 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/de/deadnix/package.nix b/pkgs/by-name/de/deadnix/package.nix index d98aba30c621..7956fa35e1d5 100644 --- a/pkgs/by-name/de/deadnix/package.nix +++ b/pkgs/by-name/de/deadnix/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-IgGuWIsDsiMqscO4B876iTCdrR+nI9bpTQOyxjCtjMk="; - meta = with lib; { + meta = { description = "Find and remove unused code in .nix source files"; homepage = "https://github.com/astro/deadnix"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "deadnix"; - maintainers = with maintainers; [ astro ]; + maintainers = with lib.maintainers; [ astro ]; }; } diff --git a/pkgs/by-name/de/deadpixi-sam-unstable/package.nix b/pkgs/by-name/de/deadpixi-sam-unstable/package.nix index 5c7bdef394f1..d50412deb49d 100644 --- a/pkgs/by-name/de/deadpixi-sam-unstable/package.nix +++ b/pkgs/by-name/de/deadpixi-sam-unstable/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { mv sam.svg $out/share/icons/hicolor/scalable/apps ''; - meta = with lib; { + meta = { homepage = "https://github.com/deadpixi/sam"; description = "Updated version of the sam text editor"; - license = licenses.lpl-102; - maintainers = with maintainers; [ ramkromberg ]; - platforms = platforms.unix; + license = lib.licenses.lpl-102; + maintainers = with lib.maintainers; [ ramkromberg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/de/debian-goodies/package.nix b/pkgs/by-name/de/debian-goodies/package.nix index bf42aa211eb1..2d63b7df09df 100644 --- a/pkgs/by-name/de/debian-goodies/package.nix +++ b/pkgs/by-name/de/debian-goodies/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Small toolbox-style utilities for Debian systems"; homepage = "https://salsa.debian.org/debian/debian-goodies"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/de/debugedit/package.nix b/pkgs/by-name/de/debugedit/package.nix index a0b5e9b49988..3cb33da64d0a 100644 --- a/pkgs/by-name/de/debugedit/package.nix +++ b/pkgs/by-name/de/debugedit/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Provides programs and scripts for creating debuginfo and source file distributions, collect build-ids and rewrite source paths in DWARF data for debugging, tracing and profiling"; homepage = "https://sourceware.org/debugedit/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ deliciouslytyped ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ deliciouslytyped ]; }; } diff --git a/pkgs/by-name/de/dec-decode/package.nix b/pkgs/by-name/de/dec-decode/package.nix index ce34b451f134..4687438f9579 100644 --- a/pkgs/by-name/de/dec-decode/package.nix +++ b/pkgs/by-name/de/dec-decode/package.nix @@ -17,12 +17,12 @@ buildGoModule { vendorHash = "sha256-zGWRzw1KUmifIsTudlgoKCR3+K0FLehHRSB3lNX+OWY="; - meta = with lib; { + meta = { description = "Nintendo Wii iso.dec decoder"; mainProgram = "dec-decode"; homepage = "https://github.com/sammiq/dec-decode"; - license = licenses.unlicense; - maintainers = with maintainers; [ hughobrien ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ hughobrien ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/de/decent-sampler/package.nix b/pkgs/by-name/de/decent-sampler/package.nix index e454d2bc247e..50ff5eaff006 100644 --- a/pkgs/by-name/de/decent-sampler/package.nix +++ b/pkgs/by-name/de/decent-sampler/package.nix @@ -82,7 +82,7 @@ buildFHSEnv { cp -r ${decent-sampler}/share $out/share ''; - meta = with lib; { + meta = { description = "Audio sample player"; longDescription = '' Decent Sampler is an audio sample player. @@ -93,10 +93,10 @@ buildFHSEnv { homepage = "https://www.decentsamples.com/product/decent-sampler-plugin/"; # It claims to be free but we currently cannot find any license # that it is released under. - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ adam248 chewblacka kaptcha0 diff --git a/pkgs/by-name/de/decker/package.nix b/pkgs/by-name/de/decker/package.nix index f79359bad575..c9426eb061a9 100644 --- a/pkgs/by-name/de/decker/package.nix +++ b/pkgs/by-name/de/decker/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://beyondloom.com/decker"; description = "Multimedia platform for creating and sharing interactive documents"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "decker"; - platforms = platforms.all; - maintainers = with maintainers; [ foo-dogsquared ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/by-name/de/decode-spam-headers/package.nix b/pkgs/by-name/de/decode-spam-headers/package.nix index cb9bf70a67da..4f10552d25f7 100644 --- a/pkgs/by-name/de/decode-spam-headers/package.nix +++ b/pkgs/by-name/de/decode-spam-headers/package.nix @@ -42,7 +42,7 @@ python3Packages.buildPythonApplication rec { python3Packages.colorama ]; - meta = with lib; { + meta = { homepage = "https://github.com/mgeeky/decode-spam-headers/"; description = "Script that helps you understand why your E-Mail ended up in Spam"; mainProgram = "decode-spam-headers"; @@ -61,7 +61,7 @@ python3Packages.buildPythonApplication rec { Resulting output will contain useful information on why this e-mail might have been blocked. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/de/decoder/package.nix b/pkgs/by-name/de/decoder/package.nix index efeeadb5ef1a..b6e553758f42 100644 --- a/pkgs/by-name/de/decoder/package.nix +++ b/pkgs/by-name/de/decoder/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/PeterPawn/decoder"; description = ''"secrets" decoding for FRITZ!OS devices''; mainProgram = "decoder"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/by-name/de/dedup/package.nix b/pkgs/by-name/de/dedup/package.nix index 2b90f9b62a5a..bbdeb9431016 100644 --- a/pkgs/by-name/de/dedup/package.nix +++ b/pkgs/by-name/de/dedup/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation rec { ]; checkTarget = "test"; - meta = with lib; { + meta = { description = "Data deduplication program"; homepage = "https://git.2f30.org/dedup/file/README.html"; - license = with licenses; [ + license = with lib.licenses; [ bsd0 isc ]; - maintainers = with maintainers; [ dtzWill ]; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/by-name/de/dee/package.nix b/pkgs/by-name/de/dee/package.nix index ffd642bd847b..69ec8aa6c712 100644 --- a/pkgs/by-name/de/dee/package.nix +++ b/pkgs/by-name/de/dee/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Library that uses DBus to provide objects allowing you to create Model-View-Controller type programs across DBus"; mainProgram = "dee-tool"; homepage = "https://launchpad.net/dee"; - license = licenses.lgpl3; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/de/deepgit/package.nix b/pkgs/by-name/de/deepgit/package.nix index 71845d9ee0ab..8329f22511ad 100644 --- a/pkgs/by-name/de/deepgit/package.nix +++ b/pkgs/by-name/de/deepgit/package.nix @@ -85,13 +85,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to investigate the history of source code"; homepage = "https://www.syntevo.com/deepgit"; changelog = "https://www.syntevo.com/deepgit/changelog.txt"; - license = licenses.unfree; - maintainers = with maintainers; [ urandom ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ urandom ]; + platforms = lib.platforms.linux; mainProgram = "deepgit"; }; } diff --git a/pkgs/by-name/de/deer/package.nix b/pkgs/by-name/de/deer/package.nix index d7db1050cba1..db0adc93a325 100644 --- a/pkgs/by-name/de/deer/package.nix +++ b/pkgs/by-name/de/deer/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { cp deer $out/share/zsh/site-functions/ ''; - meta = with lib; { + meta = { description = "Ranger-like file navigation for zsh"; homepage = "https://github.com/Vifon/deer"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/de/defaultbrowser/package.nix b/pkgs/by-name/de/defaultbrowser/package.nix index ef284ea0af4d..259416b9e8b3 100644 --- a/pkgs/by-name/de/defaultbrowser/package.nix +++ b/pkgs/by-name/de/defaultbrowser/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { mainProgram = "defaultbrowser"; description = "Command line tool for getting and setting a default browser (HTTP handler) in Mac OS X"; homepage = "https://github.com/kerma/defaultbrowser"; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/de/deheader/package.nix b/pkgs/by-name/de/deheader/package.nix index 716de25f2b59..3b71e375ca60 100644 --- a/pkgs/by-name/de/deheader/package.nix +++ b/pkgs/by-name/de/deheader/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to find and optionally remove unneeded includes in C or C++ source files"; mainProgram = "deheader"; longDescription = '' @@ -69,9 +69,9 @@ stdenv.mkDerivation rec { ''; homepage = "http://catb.org/~esr/deheader"; changelog = "https://gitlab.com/esr/deheader/-/blob/master/NEWS.adoc"; - license = licenses.bsd2; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ kaction ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/de/dehydrated/package.nix b/pkgs/by-name/de/dehydrated/package.nix index 521404cd8098..2d6fb07050b6 100644 --- a/pkgs/by-name/de/dehydrated/package.nix +++ b/pkgs/by-name/de/dehydrated/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Letsencrypt/acme client implemented as a shell-script"; mainProgram = "dehydrated"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.pstn ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.pstn ]; }; } diff --git a/pkgs/by-name/de/dejagnu/package.nix b/pkgs/by-name/de/dejagnu/package.nix index 02c25fe2817d..42c88b531527 100644 --- a/pkgs/by-name/de/dejagnu/package.nix +++ b/pkgs/by-name/de/dejagnu/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { ln -s ${expect}/bin/expect $out/bin/expect ''; - meta = with lib; { + meta = { description = "Framework for testing other programs"; longDescription = '' @@ -68,9 +68,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.gnu.org/software/dejagnu/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/de/dejsonlz4/package.nix b/pkgs/by-name/de/dejsonlz4/package.nix index b59e0fdffd3f..04118e6a2733 100644 --- a/pkgs/by-name/de/dejsonlz4/package.nix +++ b/pkgs/by-name/de/dejsonlz4/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { cp dejsonlz4 $out/bin/ ''; - meta = with lib; { + meta = { description = "Decompress Mozilla Firefox bookmarks backup files"; homepage = "https://github.com/avih/dejsonlz4"; - license = licenses.bsd2; - maintainers = with maintainers; [ mt-caret ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mt-caret ]; + platforms = lib.platforms.all; mainProgram = "dejsonlz4"; }; } diff --git a/pkgs/by-name/de/delayarchitect/package.nix b/pkgs/by-name/de/delayarchitect/package.nix index d7acd558c76d..53a3f3713085 100644 --- a/pkgs/by-name/de/delayarchitect/package.nix +++ b/pkgs/by-name/de/delayarchitect/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation { cp -r VST3/Delay\ Architect.vst3 $out/lib/vst3 ''; - meta = with lib; { + meta = { homepage = "https://github.com/jpcima/DelayArchitect"; description = "Visual, musical editor for delay effects"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.all; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/de/delfin/package.nix b/pkgs/by-name/de/delfin/package.nix index 3f391e79bcca..9575d4f96bcf 100644 --- a/pkgs/by-name/de/delfin/package.nix +++ b/pkgs/by-name/de/delfin/package.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Stream movies and TV shows from Jellyfin"; homepage = "https://www.delfin.avery.cafe/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ colinsane avery ]; mainProgram = "delfin"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/de/delly/package.nix b/pkgs/by-name/de/delly/package.nix index a41b0249397b..7e9777ad1777 100644 --- a/pkgs/by-name/de/delly/package.nix +++ b/pkgs/by-name/de/delly/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Structural variant caller for mapped DNA sequenced data"; mainProgram = "delly"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; longDescription = '' Delly is an integrated structural variant (SV) prediction method that can discover, genotype and visualize deletions, tandem duplications, diff --git a/pkgs/by-name/de/delve/package.nix b/pkgs/by-name/de/delve/package.nix index e9f3e2b52920..fdce80643438 100644 --- a/pkgs/by-name/de/delve/package.nix +++ b/pkgs/by-name/de/delve/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { ln $out/bin/dlv $out/bin/dlv-dap ''; - meta = with lib; { + meta = { description = "Debugger for the Go programming language"; homepage = "https://github.com/go-delve/delve"; - maintainers = with maintainers; [ vdemeester ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ vdemeester ]; + license = lib.licenses.mit; mainProgram = "dlv"; }; } diff --git a/pkgs/by-name/de/demoit/package.nix b/pkgs/by-name/de/demoit/package.nix index e463b431a993..c5d763404d1c 100644 --- a/pkgs/by-name/de/demoit/package.nix +++ b/pkgs/by-name/de/demoit/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Live coding demos without Context Switching"; homepage = "https://github.com/dgageot/demoit"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "demoit"; }; diff --git a/pkgs/by-name/de/deno/package.nix b/pkgs/by-name/de/deno/package.nix index 0831c455f627..58884dd9b516 100644 --- a/pkgs/by-name/de/deno/package.nix +++ b/pkgs/by-name/de/deno/package.nix @@ -229,7 +229,7 @@ rustPlatform.buildRustPackage (finalAttrs: { inherit librusty_v8; }; - meta = with lib; { + meta = { homepage = "https://deno.land/"; changelog = "https://github.com/denoland/deno/releases/tag/v${finalAttrs.version}"; description = "Secure runtime for JavaScript and TypeScript"; @@ -242,9 +242,9 @@ rustPlatform.buildRustPackage (finalAttrs: { Among other things, Deno is a great replacement for utility scripts that may have been historically written with bash or python. ''; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "deno"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jk ofalvai ]; diff --git a/pkgs/by-name/de/deqp-runner/package.nix b/pkgs/by-name/de/deqp-runner/package.nix index d099847a8d7d..4d2f85c2fe0e 100644 --- a/pkgs/by-name/de/deqp-runner/package.nix +++ b/pkgs/by-name/de/deqp-runner/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rVYRbaj+9nFVyo9Zjdmd5t7CoFfxtntXIW2bWp2L7DE="; - meta = with lib; { + meta = { description = "VK-GL-CTS/dEQP wrapper program to parallelize it across CPUs and report results against a baseline"; homepage = "https://gitlab.freedesktop.org/anholt/deqp-runner"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/de/der-ascii/package.nix b/pkgs/by-name/de/der-ascii/package.nix index 85b8e13fbb90..a0625aac03ce 100644 --- a/pkgs/by-name/de/der-ascii/package.nix +++ b/pkgs/by-name/de/der-ascii/package.nix @@ -21,14 +21,14 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = '' Small human-editable language to emit DER or BER encodings of ASN.1 structures and malformed variants of them ''; homepage = "https://github.com/google/der-ascii"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ alexshpilkin cpu hawkw diff --git a/pkgs/by-name/de/deskew/package.nix b/pkgs/by-name/de/deskew/package.nix index e5c699d11b1d..51ffc7ad3d01 100644 --- a/pkgs/by-name/de/deskew/package.nix +++ b/pkgs/by-name/de/deskew/package.nix @@ -40,15 +40,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line tool for deskewing scanned text documents"; homepage = "https://galfar.vevb.net/deskew"; - license = with licenses; [ + license = with lib.licenses; [ mit mpl11 ]; - maintainers = with maintainers; [ ryantm ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ ryantm ]; + platforms = lib.platforms.all; mainProgram = "deskew"; }; diff --git a/pkgs/by-name/de/desktop-file-utils/package.nix b/pkgs/by-name/de/desktop-file-utils/package.nix index 0d7c8aae6c4f..3119ac5e2251 100644 --- a/pkgs/by-name/de/desktop-file-utils/package.nix +++ b/pkgs/by-name/de/desktop-file-utils/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/wiki/Software/desktop-file-utils"; description = "Command line utilities for working with .desktop files"; - platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.freebsd; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/de/desmume/package.nix b/pkgs/by-name/de/desmume/package.nix index 458ae43f507b..94064d3b704c 100644 --- a/pkgs/by-name/de/desmume/package.nix +++ b/pkgs/by-name/de/desmume/package.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: { "-Dwifi=true" ]; - meta = with lib; { + meta = { homepage = "https://www.github.com/TASVideos/desmume/"; description = "Open-source Nintendo DS emulator"; longDescription = '' @@ -96,8 +96,8 @@ stdenv.mkDerivation (finalAttrs: { demo nds roms. DeSmuME is also able to emulate nearly all of the commercial nds rom titles which other DS Emulators aren't. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/de/detekt/package.nix b/pkgs/by-name/de/detekt/package.nix index 3bf6d741fd0d..f0d91980bc73 100644 --- a/pkgs/by-name/de/detekt/package.nix +++ b/pkgs/by-name/de/detekt/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Static code analysis for Kotlin"; mainProgram = "detekt"; homepage = "https://detekt.dev/"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = jre_headless.meta.platforms; - maintainers = with maintainers; [ mdr ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ mdr ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/de/deterministic-uname/package.nix b/pkgs/by-name/de/deterministic-uname/package.nix index 0966ccc30a48..2297a6341507 100644 --- a/pkgs/by-name/de/deterministic-uname/package.nix +++ b/pkgs/by-name/de/deterministic-uname/package.nix @@ -44,7 +44,7 @@ replaceVarsWith { modDirVersion = if modDirVersion != "" then modDirVersion else "unknown"; }; - meta = with lib; { + meta = { description = "Print certain system information (hardcoded with lib/system values)"; mainProgram = "uname"; longDescription = '' @@ -56,8 +56,8 @@ replaceVarsWith { not intercept these calls, builds made on different kernels will produce different results. ''; - license = [ licenses.mit ]; - maintainers = with maintainers; [ artturin ]; - platforms = platforms.all; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ artturin ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/de/dethrace/package.nix b/pkgs/by-name/de/dethrace/package.nix index 6c402cc03261..5ff9c61cfd34 100644 --- a/pkgs/by-name/de/dethrace/package.nix +++ b/pkgs/by-name/de/dethrace/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { install -Dm755 dethrace $out/bin/dethrace ''; - meta = with lib; { + meta = { homepage = "https://twitter.com/dethrace_labs"; description = "Reverse engineering the 1997 game Carmageddon"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ astro ]; mainProgram = "dethrace"; }; } diff --git a/pkgs/by-name/de/devd/package.nix b/pkgs/by-name/de/devd/package.nix index 7b42ddc73f08..61a2419cad80 100644 --- a/pkgs/by-name/de/devd/package.nix +++ b/pkgs/by-name/de/devd/package.nix @@ -33,11 +33,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Local webserver for developers"; mainProgram = "devd"; homepage = "https://github.com/cortesi/devd"; - license = licenses.mit; - maintainers = with maintainers; [ brianhicks ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ brianhicks ]; }; } diff --git a/pkgs/by-name/de/devede/package.nix b/pkgs/by-name/de/devede/package.nix index f3cd5ecb2520..1565251c10ed 100644 --- a/pkgs/by-name/de/devede/package.nix +++ b/pkgs/by-name/de/devede/package.nix @@ -70,13 +70,13 @@ buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "DVD Creator for Linux"; homepage = "https://www.rastersoft.com/programas/devede.html"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ - maintainers.bdimcheff - maintainers.baksa + lib.maintainers.bdimcheff + lib.maintainers.baksa ]; }; } diff --git a/pkgs/by-name/de/devilspie2/package.nix b/pkgs/by-name/de/devilspie2/package.nix index a9d002d49331..6e730ff79211 100644 --- a/pkgs/by-name/de/devilspie2/package.nix +++ b/pkgs/by-name/de/devilspie2/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { cp devilspie2.1 $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Window matching utility"; longDescription = '' Devilspie2 is a window matching utility, allowing the user to @@ -46,9 +46,9 @@ stdenv.mkDerivation rec { on a specific workspace. ''; homepage = "https://www.nongnu.org/devilspie2/"; - license = licenses.gpl3; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.linux; mainProgram = "devilspie2"; }; } diff --git a/pkgs/by-name/de/devmem2/package.nix b/pkgs/by-name/de/devmem2/package.nix index a31b197e9891..bc8a155b1cbb 100644 --- a/pkgs/by-name/de/devmem2/package.nix +++ b/pkgs/by-name/de/devmem2/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { install -D devmem2 "$out/bin/devmem2" ''; - meta = with lib; { + meta = { description = "Simple program to read/write from/to any location in memory"; mainProgram = "devmem2"; homepage = "http://lartmaker.nl/lartware/port/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/by-name/de/devour/package.nix b/pkgs/by-name/de/devour/package.nix index 2885bb2ed9e9..5d1f87cd385a 100644 --- a/pkgs/by-name/de/devour/package.nix +++ b/pkgs/by-name/de/devour/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { buildInputs = [ libX11 ]; - meta = with lib; { + meta = { description = "Hides your current window when launching an external program"; longDescription = "Devour hides your current window before launching an external program and unhides it after quitting"; homepage = "https://github.com/salman-abedin/devour"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ mazurel ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mazurel ]; + platforms = lib.platforms.unix; mainProgram = "devour"; }; } diff --git a/pkgs/by-name/de/devtodo/package.nix b/pkgs/by-name/de/devtodo/package.nix index 552f6807d998..377e58cc4a8d 100644 --- a/pkgs/by-name/de/devtodo/package.nix +++ b/pkgs/by-name/de/devtodo/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://swapoff.org/devtodo1.html"; description = "Hierarchical command-line task manager"; - license = licenses.gpl2; - maintainers = [ maintainers.woffs ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.woffs ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/de/dex-oidc/package.nix b/pkgs/by-name/de/dex-oidc/package.nix index 980b42651939..6946f75b9c3b 100644 --- a/pkgs/by-name/de/dex-oidc/package.nix +++ b/pkgs/by-name/de/dex-oidc/package.nix @@ -44,11 +44,11 @@ buildGoModule (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "OpenID Connect and OAuth2 identity provider with pluggable connectors"; homepage = "https://github.com/dexidp/dex"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benley techknowlogick ]; diff --git a/pkgs/by-name/de/dex/package.nix b/pkgs/by-name/de/dex/package.nix index a353f1525284..81ad7dd5389d 100644 --- a/pkgs/by-name/de/dex/package.nix +++ b/pkgs/by-name/de/dex/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { "VERSION=$(version)" ]; - meta = with lib; { + meta = { description = "Program to generate and execute DesktopEntry files of the Application type"; homepage = "https://github.com/jceb/dex"; - platforms = platforms.linux; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nickcao ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "dex"; }; } diff --git a/pkgs/by-name/de/dex2jar/package.nix b/pkgs/by-name/de/dex2jar/package.nix index 5b1bc31b915d..b157135508a1 100644 --- a/pkgs/by-name/de/dex2jar/package.nix +++ b/pkgs/by-name/de/dex2jar/package.nix @@ -38,12 +38,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/pxb1988/dex2jar"; description = "Tools to work with android .dex and java .class files"; - maintainers = with maintainers; [ makefu ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ makefu ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/df/dfasma/package.nix b/pkgs/by-name/df/dfasma/package.nix index 96ad53f3bb7b..e3a3606ce09b 100644 --- a/pkgs/by-name/df/dfasma/package.nix +++ b/pkgs/by-name/df/dfasma/package.nix @@ -16,8 +16,8 @@ let repo = "REAPER"; owner = "gillesdegottex"; }; - meta = with lib; { - license = licenses.asl20; + meta = { + license = lib.licenses.asl20; }; }; @@ -28,8 +28,8 @@ let repo = "libqaudioextra"; owner = "gillesdegottex"; }; - meta = with lib; { - license = licenses.gpl3Plus; + meta = { + license = lib.licenses.gpl3Plus; }; }; diff --git a/pkgs/by-name/df/dfmt/package.nix b/pkgs/by-name/df/dfmt/package.nix index 70b5e4d241cb..2f353c9a462e 100644 --- a/pkgs/by-name/df/dfmt/package.nix +++ b/pkgs/by-name/df/dfmt/package.nix @@ -21,11 +21,11 @@ buildPythonApplication rec { sha256 = "7af6360ca8d556f1cfe82b97f03b8d1ea5a9d6de1fa3018290c844b6566d9d6e"; }; - meta = with lib; { + meta = { description = "Format paragraphs, comments and doc strings"; mainProgram = "dfmt"; homepage = "https://github.com/dmerejkowsky/dfmt"; - license = licenses.bsd3; - maintainers = with maintainers; [ cole-h ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cole-h ]; }; } diff --git a/pkgs/by-name/df/dfrs/package.nix b/pkgs/by-name/df/dfrs/package.nix index 872d4374d781..7e571ff6304a 100644 --- a/pkgs/by-name/df/dfrs/package.nix +++ b/pkgs/by-name/df/dfrs/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-U6z0YMHRmjGobLYdyBaMWJam9mDrHUQEOv5MjOpNfHU="; - meta = with lib; { + meta = { description = "Display file system space usage using graphs and colors"; homepage = "https://github.com/anthraxx/dfrs"; - license = licenses.mit; - maintainers = with maintainers; [ wamserma ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wamserma ]; mainProgram = "dfrs"; }; } diff --git a/pkgs/by-name/df/dftd4/package.nix b/pkgs/by-name/df/dftd4/package.nix index b05d1214d5a4..05662c6e4235 100644 --- a/pkgs/by-name/df/dftd4/package.nix +++ b/pkgs/by-name/df/dftd4/package.nix @@ -86,15 +86,15 @@ stdenv.mkDerivation rec { export OMP_NUM_THREADS=2 ''; - meta = with lib; { + meta = { description = "Generally Applicable Atomic-Charge Dependent London Dispersion Correction"; mainProgram = "dftd4"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus gpl3Plus ]; homepage = "https://github.com/grimme-lab/dftd4"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/df/dfu-programmer/package.nix b/pkgs/by-name/df/dfu-programmer/package.nix index 215999a05135..dba65f84e364 100644 --- a/pkgs/by-name/df/dfu-programmer/package.nix +++ b/pkgs/by-name/df/dfu-programmer/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-libusb_1_0" ]; - meta = with lib; { - license = licenses.gpl2; + meta = { + license = lib.licenses.gpl2; description = "Device Firmware Update based USB programmer for Atmel chips with a USB bootloader"; mainProgram = "dfu-programmer"; homepage = "http://dfu-programmer.sourceforge.net/"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/df/dfu-util/package.nix b/pkgs/by-name/df/dfu-util/package.nix index 0b77ea470893..0dc0e87cfc87 100644 --- a/pkgs/by-name/df/dfu-util/package.nix +++ b/pkgs/by-name/df/dfu-util/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { sha256 = "sha256-tLU7ohqC7349TEffKVKt9fpJT0mbawtXxYxdBK6P8Z4="; }; - meta = with lib; { + meta = { description = "Device firmware update (DFU) USB programmer"; longDescription = '' dfu-util is a program that implements the host (PC) side of the USB @@ -30,8 +30,8 @@ stdenv.mkDerivation rec { upload firmware from it. ''; homepage = "https://dfu-util.sourceforge.net"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.fpletz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.fpletz ]; }; } diff --git a/pkgs/by-name/dg/dgen-sdl/package.nix b/pkgs/by-name/dg/dgen-sdl/package.nix index bb23f0687aa5..35374d45f09a 100644 --- a/pkgs/by-name/dg/dgen-sdl/package.nix +++ b/pkgs/by-name/dg/dgen-sdl/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-reserved-user-defined-literal"; - meta = with lib; { + meta = { homepage = "https://dgen.sourceforge.net/"; description = "Sega Genesis/Mega Drive emulator"; longDescription = '' @@ -67,9 +67,9 @@ stdenv.mkDerivation rec { - hqx and scale2x upscaling filters - VGM dumping ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } # TODO: implement configure options diff --git a/pkgs/by-name/dh/dhcpcd/package.nix b/pkgs/by-name/dh/dhcpcd/package.nix index 9e29bb0dda0d..4a9cd199ae05 100644 --- a/pkgs/by-name/dh/dhcpcd/package.nix +++ b/pkgs/by-name/dh/dhcpcd/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation rec { ; }; - meta = with lib; { + meta = { description = "Client for the Dynamic Host Configuration Protocol (DHCP)"; homepage = "https://roy.marples.name/projects/dhcpcd"; - platforms = platforms.linux ++ platforms.freebsd ++ platforms.openbsd; - license = licenses.bsd2; + platforms = lib.platforms.linux ++ lib.platforms.freebsd ++ lib.platforms.openbsd; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "dhcpcd"; }; diff --git a/pkgs/by-name/dh/dhcpig/package.nix b/pkgs/by-name/dh/dhcpig/package.nix index ac05557b1c5a..c034f7f362f5 100644 --- a/pkgs/by-name/dh/dhcpig/package.nix +++ b/pkgs/by-name/dh/dhcpig/package.nix @@ -28,11 +28,11 @@ python3.pkgs.buildPythonApplication rec { install -Dm755 pig.py $out/bin/dhcpig ''; - meta = with lib; { + meta = { description = "Tool to perform advanced DHCP exhaustion attack"; homepage = "https://github.com/kamorin/DHCPig"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ tochiaha ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ tochiaha ]; mainProgram = "dhcpig"; }; } diff --git a/pkgs/by-name/dh/dhcping/package.nix b/pkgs/by-name/dh/dhcping/package.nix index a25246feea03..4a625dda5ace 100644 --- a/pkgs/by-name/dh/dhcping/package.nix +++ b/pkgs/by-name/dh/dhcping/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Send DHCP request to find out if a DHCP server is running"; longDescription = '' dhcping sends either a DHCPREQUEST or DHCPINFORM packet to the server @@ -30,8 +30,8 @@ stdenv.mkDerivation rec { port. ''; homepage = "http://www.mavetju.org/unix/general.php"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; mainProgram = "dhcping"; }; } diff --git a/pkgs/by-name/dh/dhewm3/package.nix b/pkgs/by-name/dh/dhewm3/package.nix index 8fccc5b7a317..063bd11942cf 100644 --- a/pkgs/by-name/dh/dhewm3/package.nix +++ b/pkgs/by-name/dh/dhewm3/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dhewm/dhewm3"; description = "Doom 3 port to SDL"; mainProgram = "dhewm3"; license = lib.licenses.gpl3; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/dh/dht/package.nix b/pkgs/by-name/dh/dht/package.nix index 821131430596..e1b41cdbde69 100644 --- a/pkgs/by-name/dh/dht/package.nix +++ b/pkgs/by-name/dh/dht/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "BitTorrent DHT library"; homepage = "https://github.com/transmission/dht"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/di/package.nix b/pkgs/by-name/di/di/package.nix index c0fb2a1ad100..bded009283a0 100644 --- a/pkgs/by-name/di/di/package.nix +++ b/pkgs/by-name/di/di/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Disk information utility; displays everything 'df' does and more"; homepage = "https://diskinfo-di.sourceforge.io/"; - license = licenses.zlib; - maintainers = with maintainers; [ manveru ]; - platforms = platforms.all; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ manveru ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/di/dia/package.nix b/pkgs/by-name/di/dia/package.nix index 296096a060c3..0f56413de916 100644 --- a/pkgs/by-name/di/dia/package.nix +++ b/pkgs/by-name/di/dia/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation { gtk-mac-integration-gtk3 ]; - meta = with lib; { + meta = { description = "Gnome Diagram drawing software"; mainProgram = "dia"; homepage = "https://wiki.gnome.org/Apps/Dia"; - maintainers = with maintainers; [ raskin ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ raskin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/dico/package.nix b/pkgs/by-name/di/dico/package.nix index 36c466c8d84b..5248fce1b6d7 100644 --- a/pkgs/by-name/di/dico/package.nix +++ b/pkgs/by-name/di/dico/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { # ERROR: All 188 tests were run, 90 failed unexpectedly. doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Flexible dictionary server and client implementing RFC 2229"; homepage = "https://www.gnu.org/software/dico/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; longDescription = '' GNU Dico is a flexible modular implementation of DICT server diff --git a/pkgs/by-name/di/dict-cc-py/package.nix b/pkgs/by-name/di/dict-cc-py/package.nix index 9c573b035e7a..f0789532464c 100644 --- a/pkgs/by-name/di/dict-cc-py/package.nix +++ b/pkgs/by-name/di/dict-cc-py/package.nix @@ -28,11 +28,11 @@ python3.pkgs.buildPythonPackage { pythonImportsCheck = [ "dictcc" ]; - meta = with lib; { + meta = { description = "Unofficial command line client for dict.cc"; mainProgram = "dict.cc.py"; homepage = "https://github.com/rbaron/dict.cc.py"; - license = with licenses; [ cc0 ]; + license = with lib.licenses; [ cc0 ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/di/dictu/package.nix b/pkgs/by-name/di/dictu/package.nix index 7d2743cb193e..dc49f45147b0 100644 --- a/pkgs/by-name/di/dictu/package.nix +++ b/pkgs/by-name/di/dictu/package.nix @@ -84,13 +84,13 @@ stdenv.mkDerivation rec { install -Dm755 dictu $out/bin/dictu ''; - meta = with lib; { + meta = { description = "High-level dynamically typed, multi-paradigm, interpreted programming language"; mainProgram = "dictu"; homepage = "https://dictu-lang.com"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/dictu.x86_64-darwin }; } diff --git a/pkgs/by-name/di/didu/package.nix b/pkgs/by-name/di/didu/package.nix index 1254ac3debec..6a63d9095dc8 100644 --- a/pkgs/by-name/di/didu/package.nix +++ b/pkgs/by-name/di/didu/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-NDri4VuTI/ZsY3ZvpWmu/2I5GpmldQaoUSzyjGlq9lE="; - meta = with lib; { + meta = { description = "Duration conversion between units"; homepage = "https://codeberg.org/annaaurora/didu"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "didu"; }; } diff --git a/pkgs/by-name/di/didyoumean/package.nix b/pkgs/by-name/di/didyoumean/package.nix index ca03fc398116..973c5f8b13e1 100644 --- a/pkgs/by-name/di/didyoumean/package.nix +++ b/pkgs/by-name/di/didyoumean/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec { # Clipboard doesn't exist in test environment doCheck = false; - meta = with lib; { + meta = { description = "CLI spelling corrector for when you're unsure"; homepage = "https://github.com/hisbaan/didyoumean"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ evanjs wegank ]; diff --git a/pkgs/by-name/di/dieharder/package.nix b/pkgs/by-name/di/dieharder/package.nix index 2beb0a4d640e..e99f3c4286a8 100644 --- a/pkgs/by-name/di/dieharder/package.nix +++ b/pkgs/by-name/di/dieharder/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { description = "Random Number Generator test suite"; mainProgram = "dieharder"; homepage = "https://webhome.phy.duke.edu/~rgb/General/dieharder.php"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ zhaofengli ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ zhaofengli ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/di/diesel-cli-ext/package.nix b/pkgs/by-name/di/diesel-cli-ext/package.nix index 4094681b5682..e3fa4585096d 100644 --- a/pkgs/by-name/di/diesel-cli-ext/package.nix +++ b/pkgs/by-name/di/diesel-cli-ext/package.nix @@ -16,14 +16,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-AvoyJPh59fZPDcOtIZ4UFUgW83szBC3HOOlkxA3VFgE="; - meta = with lib; { + meta = { description = "Provides different tools for projects using the diesel_cli"; homepage = "https://crates.io/crates/diesel_cli_ext"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; mainProgram = "diesel_ext"; - maintainers = with maintainers; [ siph ]; + maintainers = with lib.maintainers; [ siph ]; }; } diff --git a/pkgs/by-name/di/diff-so-fancy/package.nix b/pkgs/by-name/di/diff-so-fancy/package.nix index 1313da02402d..9a5c31ab441a 100644 --- a/pkgs/by-name/di/diff-so-fancy/package.nix +++ b/pkgs/by-name/di/diff-so-fancy/package.nix @@ -52,16 +52,16 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/so-fancy/diff-so-fancy"; description = "Good-looking diffs filter for git"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; longDescription = '' diff-so-fancy builds on the good-lookin' output of git contrib's diff-highlight to upgrade your diffs' appearances. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fpletz ma27 ]; diff --git a/pkgs/by-name/di/diffedit3/package.nix b/pkgs/by-name/di/diffedit3/package.nix index c7678e5ae251..4230b63a4977 100644 --- a/pkgs/by-name/di/diffedit3/package.nix +++ b/pkgs/by-name/di/diffedit3/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/ilyagr/diffedit3"; description = "3-pane diff editor"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; mainProgram = "diffedit3"; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/di/diffoci/package.nix b/pkgs/by-name/di/diffoci/package.nix index 38427f28784e..3c3fc6cd7485 100644 --- a/pkgs/by-name/di/diffoci/package.nix +++ b/pkgs/by-name/di/diffoci/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { --zsh <(${diffoci}/bin/diffoci completion zsh) ''; - meta = with lib; { + meta = { description = "Diff for Docker and OCI container images"; homepage = "https://github.com/reproducible-containers/diffoci/"; - license = licenses.asl20; - maintainers = with maintainers; [ jk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk ]; mainProgram = "diffoci"; }; } diff --git a/pkgs/by-name/di/diffr/package.nix b/pkgs/by-name/di/diffr/package.nix index 26da6a6617ab..e13f5cd44f7a 100644 --- a/pkgs/by-name/di/diffr/package.nix +++ b/pkgs/by-name/di/diffr/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { export DIFFR_TESTS_BINARY_PATH=$releaseDir/diffr ''; - meta = with lib; { + meta = { description = "Yet another diff highlighting tool"; mainProgram = "diffr"; homepage = "https://github.com/mookid/diffr"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/di/diffsitter/package.nix b/pkgs/by-name/di/diffsitter/package.nix index 1b571c5b7d17..5397cd711ed1 100644 --- a/pkgs/by-name/di/diffsitter/package.nix +++ b/pkgs/by-name/di/diffsitter/package.nix @@ -79,10 +79,10 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://github.com/afnanenayet/diffsitter"; description = "Tree-sitter based AST difftool to get meaningful semantic diffs"; - license = licenses.mit; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bbigras ]; }; } diff --git a/pkgs/by-name/di/diffstat/package.nix b/pkgs/by-name/di/diffstat/package.nix index acecb08db22d..3744d3da2a2e 100644 --- a/pkgs/by-name/di/diffstat/package.nix +++ b/pkgs/by-name/di/diffstat/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { url = "https://invisible-island.net/archives/diffstat/"; }; - meta = with lib; { + meta = { description = "Read output of diff and display a histogram of the changes"; mainProgram = "diffstat"; longDescription = '' @@ -33,8 +33,8 @@ stdenv.mkDerivation rec { reviewing large, complex patch files. ''; homepage = "https://invisible-island.net/diffstat/"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/di/diffuse/package.nix b/pkgs/by-name/di/diffuse/package.nix index c0f613a7a5c5..446ba4e94dee 100644 --- a/pkgs/by-name/di/diffuse/package.nix +++ b/pkgs/by-name/di/diffuse/package.nix @@ -70,12 +70,12 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/MightyCreak/diffuse"; description = "Graphical tool for merging and comparing text files"; mainProgram = "diffuse"; - license = licenses.gpl2; - maintainers = with maintainers; [ k3a ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ k3a ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/digestpp/package.nix b/pkgs/by-name/di/digestpp/package.nix index a817c542f1b6..4aefe96f0fe1 100644 --- a/pkgs/by-name/di/digestpp/package.nix +++ b/pkgs/by-name/di/digestpp/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "C++11 header-only message digest library"; homepage = "https://github.com/kerukuro/digestpp"; - license = licenses.unlicense; - maintainers = with maintainers; [ ambroisie ]; - platforms = platforms.all; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ ambroisie ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/di/digital/package.nix b/pkgs/by-name/di/digital/package.nix index a72c54362be7..2695ff73e70c 100644 --- a/pkgs/by-name/di/digital/package.nix +++ b/pkgs/by-name/di/digital/package.nix @@ -82,12 +82,12 @@ maven.buildMavenPackage rec { desktopItems = [ desktopItem ]; - meta = with lib; { + meta = { homepage = "https://github.com/hneemann/Digital"; description = pkgDescription; mainProgram = "digital"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ Dettorer ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ Dettorer ]; }; } diff --git a/pkgs/by-name/di/digitemp/package.nix b/pkgs/by-name/di/digitemp/package.nix index f42c44fbcf5a..4c96b8128413 100644 --- a/pkgs/by-name/di/digitemp/package.nix +++ b/pkgs/by-name/di/digitemp/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Temperature logging and reporting using Maxim's iButtons and 1-Wire protocol"; longDescription = '' DigiTemp is a command line application used for reading 1-wire sensors like @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { repeatedly read the sensors and output to stdout and/or to a logfile. ''; homepage = "https://www.digitemp.com"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/dijo/package.nix b/pkgs/by-name/di/dijo/package.nix index aeae2d2bd52c..e888403f7277 100644 --- a/pkgs/by-name/di/dijo/package.nix +++ b/pkgs/by-name/di/dijo/package.nix @@ -18,10 +18,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Pny/RBtr65jKu2DdyIrluZWeZIgGb8Ev7mxvTMWPlyI="; - meta = with lib; { + meta = { description = "Scriptable, curses-based, digital habit tracker"; homepage = "https://github.com/oppiliappan/dijo"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "dijo"; }; diff --git a/pkgs/by-name/di/dina-font/package.nix b/pkgs/by-name/di/dina-font/package.nix index 410dd1a0fef5..4b6c1c613144 100644 --- a/pkgs/by-name/di/dina-font/package.nix +++ b/pkgs/by-name/di/dina-font/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monospace bitmap font aimed at programmers"; longDescription = '' Dina is a monospace bitmap font, primarily aimed at programmers. It is @@ -84,8 +84,8 @@ stdenv.mkDerivation { clear enough to remain readable even at high resolutions. ''; homepage = "https://www.dcmembers.com/jibsen/download/61/"; - license = licenses.free; - maintainers = with maintainers; [ + license = lib.licenses.free; + maintainers = with lib.maintainers; [ prikhi ncfavier ]; diff --git a/pkgs/by-name/di/diopser/package.nix b/pkgs/by-name/di/diopser/package.nix index 4ff1fe3a1cdc..2c7bb8a5bfa1 100644 --- a/pkgs/by-name/di/diopser/package.nix +++ b/pkgs/by-name/di/diopser/package.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation { "-DCMAKE_RANLIB=${stdenv.cc.cc}/bin/gcc-ranlib" ]; - meta = with lib; { + meta = { description = "Totally original phase rotation plugin"; homepage = "https://github.com/robbert-vdh/diopser"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/di/dipc/package.nix b/pkgs/by-name/di/dipc/package.nix index 82ff25b96b7b..585f46badbca 100644 --- a/pkgs/by-name/di/dipc/package.nix +++ b/pkgs/by-name/di/dipc/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-1vjVuAawuquPqem1as6xIv/ZJCzjgC4k0uyPSlrvpeg="; - meta = with lib; { + meta = { description = "Convert your favorite images and wallpapers with your favorite color palettes/themes"; homepage = "https://github.com/doprz/dipc"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ ByteSudoer ]; + maintainers = with lib.maintainers; [ ByteSudoer ]; mainProgram = "dipc"; }; } diff --git a/pkgs/by-name/di/directfb/package.nix b/pkgs/by-name/di/directfb/package.nix index 00c91ce04745..79b009cd05ea 100644 --- a/pkgs/by-name/di/directfb/package.nix +++ b/pkgs/by-name/di/directfb/package.nix @@ -127,7 +127,7 @@ stdenv.mkDerivation rec { # upstream fixes them. enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Graphics and input library designed with embedded systems in mind"; longDescription = '' DirectFB is a thin library that provides hardware graphics acceleration, @@ -140,8 +140,8 @@ stdenv.mkDerivation rec { Linux. ''; homepage = "https://github.com/deniskropp/DirectFB"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/di/directx-headers/package.nix b/pkgs/by-name/di/directx-headers/package.nix index 319a9de8a50c..8190a6c58d8b 100644 --- a/pkgs/by-name/di/directx-headers/package.nix +++ b/pkgs/by-name/di/directx-headers/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { # tests require WSL2 mesonFlags = [ "-Dbuild-test=false" ]; - meta = with lib; { + meta = { description = "Official D3D12 headers from Microsoft"; homepage = "https://github.com/microsoft/DirectX-Headers"; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/di/direnv/package.nix b/pkgs/by-name/di/direnv/package.nix index 35cb71b6477a..255b2b1f3d77 100644 --- a/pkgs/by-name/di/direnv/package.nix +++ b/pkgs/by-name/di/direnv/package.nix @@ -48,7 +48,7 @@ buildGoModule rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Shell extension that manages your environment"; longDescription = '' Once hooked into your shell direnv is looking for an .envrc file in your @@ -62,8 +62,8 @@ buildGoModule rec { environment variables. ''; homepage = "https://direnv.net"; - license = licenses.mit; - maintainers = [ maintainers.zimbatm ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.zimbatm ]; mainProgram = "direnv"; }; } diff --git a/pkgs/by-name/di/direvent/package.nix b/pkgs/by-name/di/direvent/package.nix index 0b776f44124b..e257ea0c0140 100644 --- a/pkgs/by-name/di/direvent/package.nix +++ b/pkgs/by-name/di/direvent/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-HbvGGSqrZ+NFclFIYD1XDGooKDgMlkIVdir5FSTXlbo="; }; - meta = with lib; { + meta = { description = "Directory event monitoring daemon"; mainProgram = "direvent"; homepage = "https://www.gnu.org.ua/software/direvent/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ puffnfresh ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ puffnfresh ]; }; } diff --git a/pkgs/by-name/di/dirstalk/package.nix b/pkgs/by-name/di/dirstalk/package.nix index 33d8f38e488b..53214f787626 100644 --- a/pkgs/by-name/di/dirstalk/package.nix +++ b/pkgs/by-name/di/dirstalk/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { # Tests want to write to the root directory doCheck = false; - meta = with lib; { + meta = { description = "Tool to brute force paths on web servers"; mainProgram = "dirstalk"; homepage = "https://github.com/stefanoj3/dirstalk"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/di/dirvish/package.nix b/pkgs/by-name/di/dirvish/package.nix index ee82f246a7f6..712950bfe804 100644 --- a/pkgs/by-name/di/dirvish/package.nix +++ b/pkgs/by-name/di/dirvish/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Fast, disk based, rotating network backup system"; homepage = "http://dirvish.org/"; license = lib.licenses.osl2; - platforms = platforms.linux; - maintainers = [ maintainers.winpat ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.winpat ]; }; } diff --git a/pkgs/by-name/di/disarchive/package.nix b/pkgs/by-name/di/disarchive/package.nix index a009cd411cc6..9ee6272b4375 100644 --- a/pkgs/by-name/di/disarchive/package.nix +++ b/pkgs/by-name/di/disarchive/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { --prefix GUILE_LOAD_COMPILED_PATH : "$out/${guile.siteCcacheDir}:$GUILE_LOAD_COMPILED_PATH" ''; - meta = with lib; { + meta = { description = "Disassemble software into data and metadata"; homepage = "https://ngyro.com/software/disarchive.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "disarchive"; - maintainers = with maintainers; [ foo-dogsquared ]; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/di/discord-gamesdk/package.nix b/pkgs/by-name/di/discord-gamesdk/package.nix index c82b6c4fde10..8f9fff09dd6e 100644 --- a/pkgs/by-name/di/discord-gamesdk/package.nix +++ b/pkgs/by-name/di/discord-gamesdk/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://discord.com/developers/docs/game-sdk/sdk-starter-guide"; description = "Library to allow other programs to interact with the Discord desktop application"; - license = licenses.unfree; - maintainers = with maintainers; [ tomodachi94 ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ tomodachi94 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/di/discord-rpc/package.nix b/pkgs/by-name/di/discord-rpc/package.nix index 97fe94cb559e..293f4ad07a04 100644 --- a/pkgs/by-name/di/discord-rpc/package.nix +++ b/pkgs/by-name/di/discord-rpc/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { "cmake_minimum_required (VERSION 3.10.0)" ''; - meta = with lib; { + meta = { description = "Official library to interface with the Discord client"; homepage = "https://github.com/discordapp/discord-rpc"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/di/discord-sh/package.nix b/pkgs/by-name/di/discord-sh/package.nix index cff70077b52f..263bb33eb0d2 100644 --- a/pkgs/by-name/di/discord-sh/package.nix +++ b/pkgs/by-name/di/discord-sh/package.nix @@ -58,12 +58,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Write-only command-line Discord webhook integration written in 100% Bash script"; mainProgram = "discord.sh"; homepage = "https://github.com/ChaoticWeg/discord.sh"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/by-name/di/discount/package.nix b/pkgs/by-name/di/discount/package.nix index 3d36edbcc2d7..383000c1401a 100644 --- a/pkgs/by-name/di/discount/package.nix +++ b/pkgs/by-name/di/discount/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Implementation of Markdown markup language in C"; homepage = "http://www.pell.portland.or.us/~orc/Code/discount/"; - license = licenses.bsd3; - maintainers = with maintainers; [ shell ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ shell ]; mainProgram = "markdown"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/discourse-mail-receiver/package.nix b/pkgs/by-name/di/discourse-mail-receiver/package.nix index 40fa65bdb5b4..32b1265f8bbc 100644 --- a/pkgs/by-name/di/discourse-mail-receiver/package.nix +++ b/pkgs/by-name/di/discourse-mail-receiver/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/discourse-smtp-fast-rejection --set RUBYLIB $out/lib ''; - meta = with lib; { + meta = { homepage = "https://www.discourse.org/"; - platforms = platforms.linux; - maintainers = with maintainers; [ talyz ]; - license = licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.mit; description = "Helper program which receives incoming mail for Discourse"; }; diff --git a/pkgs/by-name/di/disfetch/package.nix b/pkgs/by-name/di/disfetch/package.nix index a1ebd5275efe..744e780dc18f 100644 --- a/pkgs/by-name/di/disfetch/package.nix +++ b/pkgs/by-name/di/disfetch/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Yet another *nix distro fetching program, but less complex"; homepage = "https://github.com/q60/disfetch"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ vel ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ vel ]; mainProgram = "disfetch"; }; } diff --git a/pkgs/by-name/di/disk-inventory-x/package.nix b/pkgs/by-name/di/disk-inventory-x/package.nix index bb64c955b80a..86d35df055f6 100644 --- a/pkgs/by-name/di/disk-inventory-x/package.nix +++ b/pkgs/by-name/di/disk-inventory-x/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Disk usage utility for Mac OS X"; homepage = "https://www.derlien.com"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ emilytrau ]; + maintainers = with lib.maintainers; [ emilytrau ]; platforms = [ "x86_64-darwin" ]; }; }) diff --git a/pkgs/by-name/di/diskrsync/package.nix b/pkgs/by-name/di/diskrsync/package.nix index e26668239a27..d4edd789948f 100644 --- a/pkgs/by-name/di/diskrsync/package.nix +++ b/pkgs/by-name/di/diskrsync/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { wrapProgram "$out/bin/diskrsync" --argv0 diskrsync --prefix PATH : ${openssh}/bin ''; - meta = with lib; { + meta = { description = "Rsync for block devices and disk images"; mainProgram = "diskrsync"; homepage = "https://github.com/dop251/diskrsync"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/di/diskscan/package.nix b/pkgs/by-name/di/diskscan/package.nix index ba2129763486..e8bfcd8ce581 100644 --- a/pkgs/by-name/di/diskscan/package.nix +++ b/pkgs/by-name/di/diskscan/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/baruch/diskscan"; description = "Scan HDD/SSD for failed and near failed sectors"; - platforms = with platforms; linux; - maintainers = with maintainers; [ peterhoeg ]; - license = licenses.gpl3; + platforms = with lib.platforms; linux; + maintainers = with lib.maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3; mainProgram = "diskscan"; }; } diff --git a/pkgs/by-name/di/diskus/package.nix b/pkgs/by-name/di/diskus/package.nix index a140c4ef84a4..573fcefb6582 100644 --- a/pkgs/by-name/di/diskus/package.nix +++ b/pkgs/by-name/di/diskus/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-PngglR3BNktjnb8hdd3A6iKu/Q0OCCj9aTxyWBuy6a0="; - meta = with lib; { + meta = { description = "Minimal, fast alternative to 'du -sh'"; homepage = "https://github.com/sharkdp/diskus"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = [ maintainers.fuerbringer ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.fuerbringer ]; + platforms = lib.platforms.unix; longDescription = '' diskus is a very simple program that computes the total size of the current directory. It is a parallelized version of du -sh. diff --git a/pkgs/by-name/di/dismap/package.nix b/pkgs/by-name/di/dismap/package.nix index 67b25323a7f6..82c72583be88 100644 --- a/pkgs/by-name/di/dismap/package.nix +++ b/pkgs/by-name/di/dismap/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-GnchyE2TswvjYlehhMYesZruTTwyTorfR+17K0RXXFY="; - meta = with lib; { + meta = { description = "Asset discovery and identification tools"; mainProgram = "dismap"; homepage = "https://github.com/zhzyker/dismap"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/di/dismember/package.nix b/pkgs/by-name/di/dismember/package.nix index 624f11de03a4..4df83bc8a5f4 100644 --- a/pkgs/by-name/di/dismember/package.nix +++ b/pkgs/by-name/di/dismember/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-xxZQz94sr7aSNhmvFWdRtVnS0yk2KQIkAHjwZeJPBwY="; - meta = with lib; { + meta = { description = "Tool to scan memory for secrets"; homepage = "https://github.com/liamg/dismember"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dismember"; }; } diff --git a/pkgs/by-name/di/displaycal/package.nix b/pkgs/by-name/di/displaycal/package.nix index 0676ddd1142c..5b114b0bff14 100644 --- a/pkgs/by-name/di/displaycal/package.nix +++ b/pkgs/by-name/di/displaycal/package.nix @@ -67,11 +67,11 @@ python3.pkgs.buildPythonApplication rec { ) ''; - meta = with lib; { + meta = { description = "Display calibration and characterization powered by Argyll CMS (Migrated to Python 3)"; homepage = "https://github.com/eoyilmaz/displaycal-py3"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ toastal ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ toastal ]; }; } diff --git a/pkgs/by-name/di/diswall/package.nix b/pkgs/by-name/di/diswall/package.nix index 8607ff372877..a91da83c8546 100644 --- a/pkgs/by-name/di/diswall/package.nix +++ b/pkgs/by-name/di/diswall/package.nix @@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Distributed firewall"; longDescription = '' Diswall (distributed firewall) - a client of distributed firewall @@ -31,8 +31,8 @@ rustPlatform.buildRustPackage rec { intruder to get any system information. ''; homepage = "https://www.diswall.stream"; - license = with licenses; [ gpl3 ]; - maintainers = with maintainers; [ izorkin ]; + license = with lib.licenses; [ gpl3 ]; + maintainers = with lib.maintainers; [ izorkin ]; mainProgram = "diswall"; }; } diff --git a/pkgs/by-name/di/dit/package.nix b/pkgs/by-name/di/dit/package.nix index 3bc2a2baf068..55e1ed27f8c3 100644 --- a/pkgs/by-name/di/dit/package.nix +++ b/pkgs/by-name/di/dit/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { substituteInPlace Prototypes.h --replace 'tail' "$(type -P tail)" ''; - meta = with lib; { + meta = { description = "Console text editor for Unix that you already know how to use"; homepage = "https://hisham.hm/dit/"; - license = licenses.gpl2; - platforms = with platforms; linux; - maintainers = with maintainers; [ davidak ]; + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux; + maintainers = with lib.maintainers; [ davidak ]; mainProgram = "dit"; }; } diff --git a/pkgs/by-name/di/ditaa/package.nix b/pkgs/by-name/di/ditaa/package.nix index 862dfcfef056..2ecd720729e6 100644 --- a/pkgs/by-name/di/ditaa/package.nix +++ b/pkgs/by-name/di/ditaa/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/ditaa" ''; - meta = with lib; { + meta = { description = "Convert ascii art diagrams into proper bitmap graphics"; homepage = "https://github.com/stathissideris/ditaa"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl3; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "ditaa"; }; } diff --git a/pkgs/by-name/dj/djbdns/package.nix b/pkgs/by-name/dj/djbdns/package.nix index 196da74cc64d..672ea0928e5f 100644 --- a/pkgs/by-name/dj/djbdns/package.nix +++ b/pkgs/by-name/dj/djbdns/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation { tinydns = nixosTests.tinydns; }; - meta = with lib; { + meta = { description = "Collection of Domain Name System tools"; longDescription = "Includes software for all the fundamental DNS operations: DNS cache: finding addresses of Internet hosts; DNS server: publishing addresses of Internet hosts; and DNS client: talking to a DNS cache."; homepage = "https://cr.yp.to/djbdns.html"; - license = licenses.publicDomain; - maintainers = with maintainers; [ jerith666 ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ jerith666 ]; }; } diff --git a/pkgs/by-name/dj/djot-js/package.nix b/pkgs/by-name/dj/djot-js/package.nix index dc61a54ed6c8..900e723e4951 100644 --- a/pkgs/by-name/dj/djot-js/package.nix +++ b/pkgs/by-name/dj/djot-js/package.nix @@ -36,11 +36,11 @@ buildNpmPackage rec { installManPage doc/djot.1 ''; - meta = with lib; { + meta = { description = "JavaScript implementation of djot"; homepage = "https://github.com/jgm/djot.js"; changelog = "https://github.com/jgm/djot.js/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ rpqt ]; mainProgram = "djot"; }; diff --git a/pkgs/by-name/dj/djview/package.nix b/pkgs/by-name/dj/djview/package.nix index a6f5b5ce521e..1945c82c063b 100644 --- a/pkgs/by-name/dj/djview/package.nix +++ b/pkgs/by-name/dj/djview/package.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation rec { popd ''; - meta = with lib; { + meta = { description = "Portable DjVu viewer (Qt5)"; mainProgram = "djview"; homepage = "https://djvu.sourceforge.net/djview4.html"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ Anton-Latukha bryango ]; diff --git a/pkgs/by-name/dj/djvulibre/package.nix b/pkgs/by-name/dj/djvulibre/package.nix index ecf5185939dc..a04f3ff4ad1a 100644 --- a/pkgs/by-name/dj/djvulibre/package.nix +++ b/pkgs/by-name/dj/djvulibre/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Big set of CLI tools to make/modify/optimize/show/export DJVU files"; homepage = "https://djvu.sourceforge.net"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ Anton-Latukha ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Anton-Latukha ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/dk/dkh/package.nix b/pkgs/by-name/dk/dkh/package.nix index 4d3a4bdc2c56..f0afd79c69e5 100644 --- a/pkgs/by-name/dk/dkh/package.nix +++ b/pkgs/by-name/dk/dkh/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { "format" ]; - meta = with lib; { + meta = { description = "Arbitrary-order scalar-relativistic Douglas-Kroll-Hess module"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; homepage = "https://github.com/psi4/dkh"; - platforms = platforms.unix; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/dk/dkimproxy/package.nix b/pkgs/by-name/dk/dkimproxy/package.nix index fd7f69a72304..938c943b1c44 100644 --- a/pkgs/by-name/dk/dkimproxy/package.nix +++ b/pkgs/by-name/dk/dkimproxy/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { NetServer ]; - meta = with lib; { + meta = { description = "SMTP-proxy that signs and/or verifies emails"; homepage = "https://dkimproxy.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/dl/dl-poly-classic-mpi/package.nix b/pkgs/by-name/dl/dl-poly-classic-mpi/package.nix index 412c6d57b568..3ec63f344cd5 100644 --- a/pkgs/by-name/dl/dl-poly-classic-mpi/package.nix +++ b/pkgs/by-name/dl/dl-poly-classic-mpi/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { cp -v ../execute/DLPOLY.X $out/bin ''; - meta = with lib; { + meta = { homepage = "https://www.ccp5.ac.uk/DL_POLY_C"; description = "DL_POLY Classic is a general purpose molecular dynamics simulation package"; mainProgram = "DLPOLY.X"; - license = licenses.bsdOriginal; - platforms = platforms.unix; - maintainers = [ maintainers.costrouc ]; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/by-name/dl/dlib/package.nix b/pkgs/by-name/dl/dlib/package.nix index e868c36c9be6..98732ca34049 100644 --- a/pkgs/by-name/dl/dlib/package.nix +++ b/pkgs/by-name/dl/dlib/package.nix @@ -89,11 +89,11 @@ ; }; - meta = with lib; { + meta = { description = "General purpose cross-platform C++ machine learning library"; homepage = "http://www.dlib.net"; - license = licenses.boost; - maintainers = with maintainers; [ christopherpoole ]; - platforms = platforms.unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ christopherpoole ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/dm/dmalloc/package.nix b/pkgs/by-name/dm/dmalloc/package.nix index d7ef4faa06d2..c65d4d888f03 100644 --- a/pkgs/by-name/dm/dmalloc/package.nix +++ b/pkgs/by-name/dm/dmalloc/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { package = dmalloc; }; - meta = with lib; { + meta = { description = "Debug Malloc memory allocation debugging C library"; longDescription = '' The debug memory allocation or "dmalloc" library has been designed as a @@ -38,9 +38,9 @@ stdenv.mkDerivation rec { reporting, and general logging of statistics. ''; homepage = "https://dmalloc.com"; - license = licenses.isc; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.all; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.all; mainProgram = "dmalloc"; }; } diff --git a/pkgs/by-name/dm/dmd/binary.nix b/pkgs/by-name/dm/dmd/binary.nix index a248aa38e245..395468f59ac5 100644 --- a/pkgs/by-name/dm/dmd/binary.nix +++ b/pkgs/by-name/dm/dmd/binary.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation { # __D2rt6config16rt_envvarsOptionFNbNiAyaMDFNbNiQkZQnZQq in libphobos2.a(config_99a_6c3.o) dontStrip = hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Digital Mars D Compiler Package"; # As of 2.075 all sources and binaries use the boost license - license = licenses.boost; - maintainers = [ maintainers.lionello ]; + license = lib.licenses.boost; + maintainers = [ lib.maintainers.lionello ]; homepage = "https://dlang.org/"; platforms = [ "x86_64-darwin" diff --git a/pkgs/by-name/dm/dmd/generic.nix b/pkgs/by-name/dm/dmd/generic.nix index a837dedac7c6..af6449f6f01e 100644 --- a/pkgs/by-name/dm/dmd/generic.nix +++ b/pkgs/by-name/dm/dmd/generic.nix @@ -226,15 +226,15 @@ stdenv.mkDerivation (finalAttrs: { inherit dmdBootstrap; }; - meta = with lib; { + meta = { description = "Official reference compiler for the D language"; homepage = "https://dlang.org/"; changelog = "https://dlang.org/changelog/${finalAttrs.version}.html"; # Everything is now Boost licensed, even the backend. # https://github.com/dlang/dmd/pull/6680 - license = licenses.boost; + license = lib.licenses.boost; mainProgram = "dmd"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lionello dukc jtbx diff --git a/pkgs/by-name/dm/dmidecode/package.nix b/pkgs/by-name/dm/dmidecode/package.nix index 40bbcbeb0ab0..5f0d77d2a058 100644 --- a/pkgs/by-name/dm/dmidecode/package.nix +++ b/pkgs/by-name/dm/dmidecode/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/dmidecode/"; description = "Tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/dm/dmrconfig/package.nix b/pkgs/by-name/dm/dmrconfig/package.nix index 6cd3f95b3c7b..cade048f73a6 100644 --- a/pkgs/by-name/dm/dmrconfig/package.nix +++ b/pkgs/by-name/dm/dmrconfig/package.nix @@ -49,15 +49,15 @@ stdenv.mkDerivation rec { install 99-dmr.rules $out/lib/udev/rules.d/99-dmr.rules ''; - meta = with lib; { + meta = { description = "Configuration utility for DMR radios"; longDescription = '' DMRconfig is a utility for programming digital radios via USB programming cable. ''; homepage = "https://github.com/sergev/dmrconfig"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "dmrconfig"; }; } diff --git a/pkgs/by-name/dm/dmtcp/package.nix b/pkgs/by-name/dm/dmtcp/package.nix index 35e08d4971de..3ef7253cb9da 100644 --- a/pkgs/by-name/dm/dmtcp/package.nix +++ b/pkgs/by-name/dm/dmtcp/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation { not modify the user's program or the operating system. ''; homepage = "http://dmtcp.sourceforge.net/"; - license = licenses.lgpl3Plus; # most files seem this or LGPL-2.1+ - platforms = intersectLists platforms.linux platforms.x86; # broken on ARM and Darwin + license = lib.licenses.lgpl3Plus; # most files seem this or LGPL-2.1+ + platforms = intersectLists lib.platforms.linux lib.platforms.x86; # broken on ARM and Darwin }; } diff --git a/pkgs/by-name/dn/dnadd/package.nix b/pkgs/by-name/dn/dnadd/package.nix index 566f034174c9..544f79326e3e 100644 --- a/pkgs/by-name/dn/dnadd/package.nix +++ b/pkgs/by-name/dn/dnadd/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { strictDeps = true; makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/joelancaster/dnadd"; description = "Adds packages declaratively on the command line"; mainProgram = "dnadd"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ joelancaster ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ joelancaster ]; }; } diff --git a/pkgs/by-name/dn/dnd-tools/package.nix b/pkgs/by-name/dn/dnd-tools/package.nix index 4184ce1fde94..0e07a29f7b81 100644 --- a/pkgs/by-name/dn/dnd-tools/package.nix +++ b/pkgs/by-name/dn/dnd-tools/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication { setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/savagezen/dnd-tools"; description = "Set of interactive command line tools for Dungeons and Dragons 5th Edition"; mainProgram = "dnd-tools"; - license = licenses.agpl3Only; - maintainers = [ maintainers.urlordjames ]; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.urlordjames ]; }; } diff --git a/pkgs/by-name/dn/dnf5/package.nix b/pkgs/by-name/dn/dnf5/package.nix index 77e4458d1073..d96b43ee8438 100644 --- a/pkgs/by-name/dn/dnf5/package.nix +++ b/pkgs/by-name/dn/dnf5/package.nix @@ -121,16 +121,16 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Next-generation RPM package management system"; homepage = "https://github.com/rpm-software-management/dnf5"; changelog = "https://github.com/rpm-software-management/dnf5/releases/tag/${finalAttrs.version}"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ malt3 katexochen ]; mainProgram = "dnf5"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/dn/dnglab/package.nix b/pkgs/by-name/dn/dnglab/package.nix index 24b6f1811cca..7e031c7375b9 100644 --- a/pkgs/by-name/dn/dnglab/package.nix +++ b/pkgs/by-name/dn/dnglab/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { rm $out/bin/benchmark $out/bin/identify ''; - meta = with lib; { + meta = { description = "Camera RAW to DNG file format converter"; homepage = "https://github.com/dnglab/dnglab"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "dnglab"; }; } diff --git a/pkgs/by-name/dn/dns-root-data/package.nix b/pkgs/by-name/dn/dns-root-data/package.nix index 8d2a25648754..88499b9fba9d 100644 --- a/pkgs/by-name/dn/dns-root-data/package.nix +++ b/pkgs/by-name/dn/dns-root-data/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation { cp ${./root.ds} $out/root.ds ''; - meta = with lib; { + meta = { homepage = "https://www.iana.org/domains/root/files"; description = "DNS root data including root hints and DNSSEC root trust anchor + key"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fpletz vcunat ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/dn/dns2tcp/package.nix b/pkgs/by-name/dn/dns2tcp/package.nix index c798f34ac106..1a86af2cb016 100644 --- a/pkgs/by-name/dn/dns2tcp/package.nix +++ b/pkgs/by-name/dn/dns2tcp/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Tool for relaying TCP connections over DNS"; homepage = "https://github.com/alex-sector/dns2tcp"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "dns2tcpc"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/dn/dnscrypt-proxy/package.nix b/pkgs/by-name/dn/dnscrypt-proxy/package.nix index 41fd65ab7361..94d277733ebd 100644 --- a/pkgs/by-name/dn/dnscrypt-proxy/package.nix +++ b/pkgs/by-name/dn/dnscrypt-proxy/package.nix @@ -35,16 +35,16 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) dnscrypt-proxy; }; - meta = with lib; { + meta = { description = "Tool that provides secure DNS resolution"; - license = licenses.isc; + license = lib.licenses.isc; homepage = "https://dnscrypt.info/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ atemu waynr ]; mainProgram = "dnscrypt-proxy"; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/dn/dnsdist/package.nix b/pkgs/by-name/dn/dnsdist/package.nix index e7d06342160a..6eb249204cbf 100644 --- a/pkgs/by-name/dn/dnsdist/package.nix +++ b/pkgs/by-name/dn/dnsdist/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) dnsdist; }; - meta = with lib; { + meta = { description = "DNS Loadbalancer"; mainProgram = "dnsdist"; homepage = "https://dnsdist.org"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/by-name/dn/dnsenum/package.nix b/pkgs/by-name/dn/dnsenum/package.nix index 74ad415f9358..fcd24512add5 100644 --- a/pkgs/by-name/dn/dnsenum/package.nix +++ b/pkgs/by-name/dn/dnsenum/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { install -vD dns.txt -t $out/share ''; - meta = with lib; { + meta = { homepage = "https://github.com/fwaeytens/dnsenum"; description = "Tool to enumerate DNS information"; mainProgram = "dnsenum"; - maintainers = with maintainers; [ c0bw3b ]; - license = licenses.gpl2Plus; - platforms = platforms.all; + maintainers = with lib.maintainers; [ c0bw3b ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/dn/dnsmasq/package.nix b/pkgs/by-name/dn/dnsmasq/package.nix index ebd5c952ec6d..b27c574d7036 100644 --- a/pkgs/by-name/dn/dnsmasq/package.nix +++ b/pkgs/by-name/dn/dnsmasq/package.nix @@ -109,13 +109,13 @@ stdenv.mkDerivation rec { pihole-ftl-dnsmasq = nixosTests.pihole-ftl.dnsmasq; }; - meta = with lib; { + meta = { description = "Integrated DNS, DHCP and TFTP server for small networks"; homepage = "https://www.thekelleys.org.uk/dnsmasq/doc.html"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "dnsmasq"; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ fpletz ]; }; diff --git a/pkgs/by-name/dn/dnsmon-go/package.nix b/pkgs/by-name/dn/dnsmon-go/package.nix index 8962257975cc..9fa7ae6bd15d 100644 --- a/pkgs/by-name/dn/dnsmon-go/package.nix +++ b/pkgs/by-name/dn/dnsmon-go/package.nix @@ -22,11 +22,11 @@ buildGoModule { libpcap ]; - meta = with lib; { + meta = { description = "Tool to collect DNS traffic"; homepage = "https://github.com/jonpulsifer/dnsmon-go"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dnsmon-go"; }; } diff --git a/pkgs/by-name/dn/dnsname-cni/package.nix b/pkgs/by-name/dn/dnsname-cni/package.nix index c147822b43b5..d3acd3878726 100644 --- a/pkgs/by-name/dn/dnsname-cni/package.nix +++ b/pkgs/by-name/dn/dnsname-cni/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { doCheck = false; # NOTE: requires root privileges - meta = with lib; { + meta = { description = "DNS name resolution for containers"; mainProgram = "dnsname"; homepage = "https://github.com/containers/dnsname"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ mikroskeem ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mikroskeem ]; }; } diff --git a/pkgs/by-name/dn/dnspeep/package.nix b/pkgs/by-name/dn/dnspeep/package.nix index 96c2fbde29f9..3c19c1ecf4f1 100644 --- a/pkgs/by-name/dn/dnspeep/package.nix +++ b/pkgs/by-name/dn/dnspeep/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { LIBPCAP_LIBDIR = lib.makeLibraryPath [ libpcap ]; LIBPCAP_VER = libpcap.version; - meta = with lib; { + meta = { description = "Spy on the DNS queries your computer is making"; mainProgram = "dnspeep"; homepage = "https://github.com/jvns/dnspeep"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/dn/dnss/package.nix b/pkgs/by-name/dn/dnss/package.nix index d9ae1a34334a..155c816f31c7 100644 --- a/pkgs/by-name/dn/dnss/package.nix +++ b/pkgs/by-name/dn/dnss/package.nix @@ -16,11 +16,11 @@ buildGoModule { vendorHash = "sha256-d9aGSBRblkvH5Ixw3jpbgC8lMW/qEYNJfLTVeUlos7A="; - meta = with lib; { + meta = { description = "Daemon for using DNS over HTTPS"; homepage = "https://blitiri.com.ar/git/r/dnss/"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "dnss"; - maintainers = with maintainers; [ raspher ]; + maintainers = with lib.maintainers; [ raspher ]; }; } diff --git a/pkgs/by-name/dn/dnstake/package.nix b/pkgs/by-name/dn/dnstake/package.nix index 36fc76f36928..b432ae926d25 100644 --- a/pkgs/by-name/dn/dnstake/package.nix +++ b/pkgs/by-name/dn/dnstake/package.nix @@ -18,12 +18,12 @@ buildGoModule rec { vendorHash = "sha256-l3IKvcO10C+PVDX962tFWny7eMNC48ATIVqiHjpVH/Y="; - meta = with lib; { + meta = { description = "Tool to check missing hosted DNS zones"; homepage = "https://github.com/pwnesia/dnstake"; changelog = "https://github.com/pwnesia/dnstake/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dnstake"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/dn/dnstracer/package.nix b/pkgs/by-name/dn/dnstracer/package.nix index dcff3ee47780..e065ca1dfed8 100644 --- a/pkgs/by-name/dn/dnstracer/package.nix +++ b/pkgs/by-name/dn/dnstracer/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-lresolv"; - meta = with lib; { + meta = { description = "Determines where a given Domain Name Server (DNS) gets its information from, and follows the chain of DNS servers back to the servers which know the data"; homepage = "http://www.mavetju.org/unix/general.php"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "dnstracer"; }; } diff --git a/pkgs/by-name/do/do-agent/package.nix b/pkgs/by-name/do/do-agent/package.nix index 4b0c620d3453..9dcb2c3568ed 100644 --- a/pkgs/by-name/do/do-agent/package.nix +++ b/pkgs/by-name/do/do-agent/package.nix @@ -27,7 +27,7 @@ buildGoModule rec { install -Dm444 -t $out/lib/systemd/system $src/packaging/etc/systemd/system/do-agent.service ''; - meta = with lib; { + meta = { description = "DigitalOcean droplet system metrics agent"; mainProgram = "do-agent"; longDescription = '' @@ -36,8 +36,8 @@ buildGoModule rec { them to DigitalOcean to provide resource usage graphs and alerting. ''; homepage = "https://github.com/digitalocean/do-agent"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/do/doas-sudo-shim/package.nix b/pkgs/by-name/do/doas-sudo-shim/package.nix index 22536ae6d0b0..bc7a005210d4 100644 --- a/pkgs/by-name/do/doas-sudo-shim/package.nix +++ b/pkgs/by-name/do/doas-sudo-shim/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Shim for the sudo command that utilizes doas"; homepage = "https://github.com/jirutka/doas-sudo-shim"; - license = licenses.isc; + license = lib.licenses.isc; mainProgram = "sudo"; - maintainers = with maintainers; [ dsuetin ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ dsuetin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/do/doas/package.nix b/pkgs/by-name/do/doas/package.nix index 26306f990c5f..3996e686cde7 100644 --- a/pkgs/by-name/do/doas/package.nix +++ b/pkgs/by-name/do/doas/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) doas; }; - meta = with lib; { + meta = { description = "Executes the given command as another user"; mainProgram = "doas"; homepage = "https://github.com/Duncaen/OpenDoas"; - license = licenses.isc; - platforms = platforms.linux; - maintainers = with maintainers; [ cole-h ]; + license = lib.licenses.isc; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cole-h ]; }; } diff --git a/pkgs/by-name/do/doc2go/package.nix b/pkgs/by-name/do/doc2go/package.nix index eb364397b679..77281c9843df 100644 --- a/pkgs/by-name/do/doc2go/package.nix +++ b/pkgs/by-name/do/doc2go/package.nix @@ -36,7 +36,7 @@ buildGoModule rec { unset subPackages ''; - meta = with lib; { + meta = { homepage = "https://github.com/abhinav/doc2go"; changelog = "https://github.com/abhinav/doc2go/blob/${src.rev}/CHANGELOG.md"; description = "Your Go project's documentation, to-go"; @@ -46,12 +46,12 @@ buildGoModule rec { from your Go code. It is a self-hosted static alternative to https://pkg.go.dev/ and https://godocs.io/. ''; - license = with licenses; [ + license = with lib.licenses; [ # general project license asl20 # internal/godoc/synopsis*.go adapted from golang source bsd3 ]; - maintainers = with maintainers; [ jk ]; + maintainers = with lib.maintainers; [ jk ]; }; } diff --git a/pkgs/by-name/do/docbook2mdoc/package.nix b/pkgs/by-name/do/docbook2mdoc/package.nix index 920618a93e7d..e74d29571852 100644 --- a/pkgs/by-name/do/docbook2mdoc/package.nix +++ b/pkgs/by-name/do/docbook2mdoc/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "http://mdocml.bsd.lv/"; description = "Converter from DocBook V4.x and v5.x XML into mdoc"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ ramkromberg ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ramkromberg ]; mainProgram = "docbook2mdoc"; }; } diff --git a/pkgs/by-name/do/docbook2odf/package.nix b/pkgs/by-name/do/docbook2odf/package.nix index be8a1fe11b6b..2750ced778c3 100644 --- a/pkgs/by-name/do/docbook2odf/package.nix +++ b/pkgs/by-name/do/docbook2odf/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { --prefix PERL5PATH : "${perlPackages.makePerlPath [ perlPackages.ImageMagick ]}" ''; - meta = with lib; { + meta = { description = "Convert DocBook to OpenDocument Format (ODF)"; longDescription = '' Docbook2odf is a toolkit that automatically converts DocBook to OASIS @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { documents are XML based. ''; homepage = "http://open.comsultia.com/docbook2odf/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "docbook2odf"; }; } diff --git a/pkgs/by-name/do/docbook2x/package.nix b/pkgs/by-name/do/docbook2x/package.nix index b786b97cdb58..b1d33c450736 100644 --- a/pkgs/by-name/do/docbook2x/package.nix +++ b/pkgs/by-name/do/docbook2x/package.nix @@ -89,14 +89,14 @@ stdenv.mkDerivation rec { "${gnused}/bin" ''; - meta = with lib; { + meta = { longDescription = '' docbook2X is a software package that converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format. ''; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://docbook2x.sourceforge.net/"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/do/docfd/package.nix b/pkgs/by-name/do/docfd/package.nix index 53e47abc764f..ed37a05fdd39 100644 --- a/pkgs/by-name/do/docfd/package.nix +++ b/pkgs/by-name/do/docfd/package.nix @@ -69,7 +69,7 @@ ocamlPackages.buildDunePackage rec { passthru.tests.version = testers.testVersion { package = docfd; }; - meta = with lib; { + meta = { description = "TUI multiline fuzzy document finder"; longDescription = '' Think interactive grep for text and other document files. @@ -78,9 +78,9 @@ ocamlPackages.buildDunePackage rec { integration with common text editors and other file viewers. ''; homepage = "https://github.com/darrenldl/docfd"; - license = licenses.mit; - maintainers = with maintainers; [ chewblacka ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chewblacka ]; + platforms = lib.platforms.all; mainProgram = "docfd"; }; } diff --git a/pkgs/by-name/do/dockbarx/package.nix b/pkgs/by-name/do/dockbarx/package.nix index 66e87de70cf5..d3a4cdaaafab 100644 --- a/pkgs/by-name/do/dockbarx/package.nix +++ b/pkgs/by-name/do/dockbarx/package.nix @@ -61,11 +61,11 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "https://github.com/xuzhen/dockbarx"; description = "Lightweight taskbar/panel replacement which works as a stand-alone dock"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/do/docker-credential-helpers/package.nix b/pkgs/by-name/do/docker-credential-helpers/package.nix index e692bf9eb4ff..ccbd8eb99099 100644 --- a/pkgs/by-name/do/docker-credential-helpers/package.nix +++ b/pkgs/by-name/do/docker-credential-helpers/package.nix @@ -62,11 +62,11 @@ buildGoModule rec { }; meta = - with lib; + { description = "Suite of programs to use native stores to keep Docker credentials safe"; homepage = "https://github.com/docker/docker-credential-helpers"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; } // lib.optionalAttrs stdenv.hostPlatform.isDarwin { diff --git a/pkgs/by-name/do/docker-ls/package.nix b/pkgs/by-name/do/docker-ls/package.nix index bde78aad278f..934e648b1bb7 100644 --- a/pkgs/by-name/do/docker-ls/package.nix +++ b/pkgs/by-name/do/docker-ls/package.nix @@ -18,7 +18,7 @@ buildGoModule rec { vendorHash = "sha256-UulcjQOLEIP++eoYQTEIbCJW51jyE312dMxB8+AKcdU="; - meta = with lib; { + meta = { description = "Tools for browsing and manipulating docker registries"; longDescription = '' Docker-ls is a set of CLI tools for browsing and manipulating docker registries. @@ -29,6 +29,6 @@ buildGoModule rec { homepage = "https://github.com/mayflower/docker-ls"; maintainers = [ ]; platforms = docker.meta.platforms; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/do/dockfmt/package.nix b/pkgs/by-name/do/dockfmt/package.nix index 8319eef0cde9..e97206fdc864 100644 --- a/pkgs/by-name/do/dockfmt/package.nix +++ b/pkgs/by-name/do/dockfmt/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X github.com/jessfraz/dockfmt/version.VERSION=${version}" ]; - meta = with lib; { + meta = { description = "Dockerfile format"; mainProgram = "dockfmt"; homepage = "https://github.com/jessfraz/dockfmt"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/by-name/do/dockstarter/package.nix b/pkgs/by-name/do/dockstarter/package.nix index a18783559cc3..cc6a45a82430 100644 --- a/pkgs/by-name/do/dockstarter/package.nix +++ b/pkgs/by-name/do/dockstarter/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { description = "Make it quick and easy to get up and running with Docker"; homepage = "https://dockstarter.com"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "ds"; }; } diff --git a/pkgs/by-name/do/dockutil/package.nix b/pkgs/by-name/do/dockutil/package.nix index 598f504eb993..9d770bc4bbac 100644 --- a/pkgs/by-name/do/dockutil/package.nix +++ b/pkgs/by-name/do/dockutil/package.nix @@ -21,13 +21,13 @@ let pname = "dockutil"; version = "3.1.3"; - meta = with lib; { + meta = { description = "Tool for managing dock items"; homepage = "https://github.com/kcrawford/dockutil"; - license = licenses.asl20; - maintainers = with maintainers; [ tboerger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tboerger ]; mainProgram = "dockutil"; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; }; buildFromSource = swiftPackages.stdenv.mkDerivation (finalAttrs: { diff --git a/pkgs/by-name/do/docopt_cpp/package.nix b/pkgs/by-name/do/docopt_cpp/package.nix index a46d051f6750..3a3d21b92b2e 100644 --- a/pkgs/by-name/do/docopt_cpp/package.nix +++ b/pkgs/by-name/do/docopt_cpp/package.nix @@ -50,14 +50,14 @@ stdenv.mkDerivation rec { checkPhase = "python ./run_tests"; - meta = with lib; { + meta = { description = "C++11 port of docopt"; homepage = "https://github.com/docopt/docopt.cpp"; - license = with licenses; [ + license = with lib.licenses; [ mit boost ]; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/do/doctest/package.nix b/pkgs/by-name/do/doctest/package.nix index d9d8769f102b..6eae43308fbf 100644 --- a/pkgs/by-name/do/doctest/package.nix +++ b/pkgs/by-name/do/doctest/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { "-Wno-error=missing-noreturn" ]; - meta = with lib; { + meta = { homepage = "https://github.com/doctest/doctest"; description = "Fastest feature-rich C++11/14/17/20 single-header testing framework"; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/do/docui/package.nix b/pkgs/by-name/do/docui/package.nix index 5c8c5302f5c3..a08d824349db 100644 --- a/pkgs/by-name/do/docui/package.nix +++ b/pkgs/by-name/do/docui/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-5xQ5MmGpyzVh4gXZAhCY16iVw8zbCMzMA5IOsPdn7b0="; - meta = with lib; { + meta = { description = "TUI Client for Docker"; homepage = "https://github.com/skanehira/docui"; - license = licenses.mit; - maintainers = with maintainers; [ aethelz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aethelz ]; broken = stdenv.hostPlatform.isDarwin; mainProgram = "docui"; }; diff --git a/pkgs/by-name/do/documenso/package.nix b/pkgs/by-name/do/documenso/package.nix index f00781bc2c94..48bdbc537603 100644 --- a/pkgs/by-name/do/documenso/package.nix +++ b/pkgs/by-name/do/documenso/package.nix @@ -115,12 +115,12 @@ buildNpmPackage { rm -Rf $out/lib/node_modules/@documenso/root/node_modules/@documenso/auth ''; - meta = with lib; { + meta = { description = "Open Source DocuSign Alternative"; homepage = "https://github.com/documenso/documenso"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.unix; mainProgram = pname; }; } diff --git a/pkgs/by-name/do/documize-community/package.nix b/pkgs/by-name/do/documize-community/package.nix index 842428c79914..4afefeb5787b 100644 --- a/pkgs/by-name/do/documize-community/package.nix +++ b/pkgs/by-name/do/documize-community/package.nix @@ -40,9 +40,9 @@ buildGoModule rec { mv $out/bin/edition $out/bin/documize ''; - meta = with lib; { + meta = { description = "Open source Confluence alternative for internal & external docs built with Golang + EmberJS"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; mainProgram = "documize"; homepage = "https://www.documize.com/"; diff --git a/pkgs/by-name/do/dog/package.nix b/pkgs/by-name/do/dog/package.nix index 7ee84f5ffb05..5520ffb86ebb 100644 --- a/pkgs/by-name/do/dog/package.nix +++ b/pkgs/by-name/do/dog/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://lwn.net/Articles/421072/"; description = "'cat' replacement"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qknight ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qknight ]; + platforms = lib.platforms.all; mainProgram = "dog"; }; } diff --git a/pkgs/by-name/do/dogdns/package.nix b/pkgs/by-name/do/dogdns/package.nix index 0b56d02ad79e..dae372c049a7 100644 --- a/pkgs/by-name/do/dogdns/package.nix +++ b/pkgs/by-name/do/dogdns/package.nix @@ -60,10 +60,10 @@ rustPlatform.buildRustPackage { installManPage ./target/man/*.1 ''; - meta = with lib; { + meta = { description = "Command-line DNS client"; homepage = "https://dns.lookup.dog"; - license = licenses.eupl12; + license = lib.licenses.eupl12; maintainers = [ ]; mainProgram = "dog"; }; diff --git a/pkgs/by-name/do/doggo/package.nix b/pkgs/by-name/do/doggo/package.nix index 7fb48b920081..8049d7da93b1 100644 --- a/pkgs/by-name/do/doggo/package.nix +++ b/pkgs/by-name/do/doggo/package.nix @@ -36,7 +36,7 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/mr-karan/doggo"; description = "Command-line DNS Client for Humans. Written in Golang"; mainProgram = "doggo"; @@ -44,8 +44,8 @@ buildGoModule rec { doggo is a modern command-line DNS client (like dig) written in Golang. It outputs information in a neat concise manner and supports protocols like DoH, DoT, DoQ, and DNSCrypt as well ''; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ georgesalkhouri ma27 ]; diff --git a/pkgs/by-name/do/doh-proxy-rust/package.nix b/pkgs/by-name/do/doh-proxy-rust/package.nix index 67843e810ec1..141017438fd6 100644 --- a/pkgs/by-name/do/doh-proxy-rust/package.nix +++ b/pkgs/by-name/do/doh-proxy-rust/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { passthru.tests = { inherit (nixosTests) doh-proxy-rust; }; - meta = with lib; { + meta = { homepage = "https://github.com/jedisct1/doh-server"; description = "Fast, mature, secure DoH server proxy written in Rust"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ stephank ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ stephank ]; mainProgram = "doh-proxy"; }; } diff --git a/pkgs/by-name/do/dokuwiki/package.nix b/pkgs/by-name/do/dokuwiki/package.nix index 125451b3c4f6..980073366c38 100644 --- a/pkgs/by-name/do/dokuwiki/package.nix +++ b/pkgs/by-name/do/dokuwiki/package.nix @@ -97,12 +97,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Simple to use and highly versatile Open Source wiki software that doesn't require a database"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "https://www.dokuwiki.org"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ _1000101 e1mo ]; diff --git a/pkgs/by-name/do/dolbybcsoftwaredecode/package.nix b/pkgs/by-name/do/dolbybcsoftwaredecode/package.nix index 1484bc9376a5..60dc3e92c424 100644 --- a/pkgs/by-name/do/dolbybcsoftwaredecode/package.nix +++ b/pkgs/by-name/do/dolbybcsoftwaredecode/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { cp DolbyBi64 $out/bin/ ''; - meta = with lib; { + meta = { description = "Dolby B & C software decoder"; homepage = "https://sourceforge.net/projects/dolbybcsoftwaredecode/"; - maintainers = with maintainers; [ lorenz ]; + maintainers = with lib.maintainers; [ lorenz ]; # Project is has source code available, but has no explicit license. # I asked upstream to assign a license, so maybe this can be free diff --git a/pkgs/by-name/do/domination/package.nix b/pkgs/by-name/do/domination/package.nix index 713a003bbd9f..b750748887e5 100644 --- a/pkgs/by-name/do/domination/package.nix +++ b/pkgs/by-name/do/domination/package.nix @@ -100,7 +100,7 @@ stdenv.mkDerivation { passthru.updateScript = ./update.tcl; - meta = with lib; { + meta = { homepage = "https://domination.sourceforge.net/"; downloadPage = "https://domination.sourceforge.net/download.shtml"; description = "Game that is a bit like the board game Risk or RisiKo"; @@ -110,13 +110,13 @@ stdenv.mkDerivation { It includes a map editor, a simple map format, multiplayer network play, single player, hotseat, 5 user interfaces and many more features. ''; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "domination"; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/do/done/package.nix b/pkgs/by-name/do/done/package.nix index 1b7f0fb26c23..12607d4e80b0 100644 --- a/pkgs/by-name/do/done/package.nix +++ b/pkgs/by-name/do/done/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { GETTEXT_DIR = gettext; }; - meta = with lib; { + meta = { description = "Ultimate task management solution for seamless organization and efficiency"; homepage = "https://done.edfloreshz.dev/"; changelog = "https://github.com/done-devs/done/blob/${src.rev}/CHANGES.md"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "done"; maintainers = [ ]; }; diff --git a/pkgs/by-name/do/donkey/package.nix b/pkgs/by-name/do/donkey/package.nix index 5d039a42fcf0..2eb9ec27e6b5 100644 --- a/pkgs/by-name/do/donkey/package.nix +++ b/pkgs/by-name/do/donkey/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Alternative for S/KEY's 'key' command"; longDescription = '' Donkey is an alternative for S/KEY's "key" command. The new feature that @@ -47,8 +47,8 @@ stdenv.mkDerivation (finalAttrs: { The name "Donkey" is an acronym of "Don't Key". ''; homepage = "https://devel.ringlet.net/security/donkey"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ raboof ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ raboof ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/do/donpapi/package.nix b/pkgs/by-name/do/donpapi/package.nix index 0d3e0b29ef2c..26e754ccc021 100644 --- a/pkgs/by-name/do/donpapi/package.nix +++ b/pkgs/by-name/do/donpapi/package.nix @@ -39,12 +39,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "donpapi" ]; - meta = with lib; { + meta = { description = "Tool for dumping DPAPI credentials remotely"; homepage = "https://github.com/login-securite/DonPAPI"; changelog = "https://github.com/login-securite/DonPAPI/releases/tag/V${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "donpapi"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/do/dooit-extras/package.nix b/pkgs/by-name/do/dooit-extras/package.nix index f9a77d08bb44..0f9b58651d56 100644 --- a/pkgs/by-name/do/dooit-extras/package.nix +++ b/pkgs/by-name/do/dooit-extras/package.nix @@ -26,12 +26,12 @@ python3.pkgs.buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Extra Utilities for Dooit"; homepage = "https://github.com/dooit-org/dooit-extras"; changelog = "https://github.com/dooit-org/dooit-extras/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kraanzu ]; }; diff --git a/pkgs/by-name/do/dool/package.nix b/pkgs/by-name/do/dool/package.nix index b2638fff650f..d919466308b6 100644 --- a/pkgs/by-name/do/dool/package.nix +++ b/pkgs/by-name/do/dool/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { "'$out/share/dool/'" ''; - meta = with lib; { + meta = { description = "Python3 compatible clone of dstat"; homepage = "https://github.com/scottchiefbaker/dool"; changelog = "https://github.com/scottchiefbaker/dool/blob/${src.rev}/ChangeLog"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "dool"; }; } diff --git a/pkgs/by-name/do/doom-bcc/package.nix b/pkgs/by-name/do/doom-bcc/package.nix index 99e03b0ab19c..192ed2889445 100644 --- a/pkgs/by-name/do/doom-bcc/package.nix +++ b/pkgs/by-name/do/doom-bcc/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { cp -av lib $out/lib/bcc ''; - meta = with lib; { + meta = { description = "Compiler for Doom/Hexen scripts (ACS, BCS)"; mainProgram = "bcc"; homepage = "https://github.com/wormt/bcc"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/do/doona/package.nix b/pkgs/by-name/do/doona/package.nix index dbef6104b245..198db2e01871 100644 --- a/pkgs/by-name/do/doona/package.nix +++ b/pkgs/by-name/do/doona/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { chmod +x $out/bin/doona ''; - meta = with lib; { + meta = { homepage = "https://github.com/wireghoul/doona"; description = "Fork of the Bruteforce Exploit Detector Tool (BED)"; mainProgram = "doona"; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { A fork of the Bruteforce Exploit Detector Tool (BED). BED is a program which is designed to check daemons for potential buffer overflows, format string bugs etc. ''; - license = licenses.gpl2Only; - maintainers = with maintainers; [ pamplemousse ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pamplemousse ]; }; } diff --git a/pkgs/by-name/do/door-knocker/package.nix b/pkgs/by-name/do/door-knocker/package.nix index 9e02c2ebed2e..658560673848 100644 --- a/pkgs/by-name/do/door-knocker/package.nix +++ b/pkgs/by-name/do/door-knocker/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { libadwaita ]; - meta = with lib; { + meta = { description = "Tool to check the availability of portals"; homepage = "https://codeberg.org/tytan652/door-knocker"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ symphorien ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ symphorien ]; + platforms = lib.platforms.linux; mainProgram = "door-knocker"; }; }) diff --git a/pkgs/by-name/do/dopewars/package.nix b/pkgs/by-name/do/dopewars/package.nix index 3618dbc19fa0..ab3f7603b86c 100644 --- a/pkgs/by-name/do/dopewars/package.nix +++ b/pkgs/by-name/do/dopewars/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { --add-flags '-f ${scoreDirectory}/dopewars.sco' ''; - meta = with lib; { + meta = { description = "Game simulating the life of a drug dealer in New York"; homepage = "https://dopewars.sourceforge.io"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ geri1701 ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ geri1701 ]; mainProgram = "dopewars"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/do/doppler/package.nix b/pkgs/by-name/do/doppler/package.nix index ee448409994e..b5240b78209e 100644 --- a/pkgs/by-name/do/doppler/package.nix +++ b/pkgs/by-name/do/doppler/package.nix @@ -45,11 +45,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Official CLI for interacting with your Doppler Enclave secrets and configuration"; mainProgram = "doppler"; homepage = "https://doppler.com"; - license = licenses.asl20; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/do/dorkscout/package.nix b/pkgs/by-name/do/dorkscout/package.nix index a29172a19d41..7555740e597b 100644 --- a/pkgs/by-name/do/dorkscout/package.nix +++ b/pkgs/by-name/do/dorkscout/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-8Nrg90p/5hQBpuyh2NBE4KKxT4BM9jhWIZ6hXBpMdhc="; - meta = with lib; { + meta = { description = "Tool to automate the work with Google dorks"; mainProgram = "dorkscout"; homepage = "https://github.com/R4yGM/dorkscout"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/do/dosbox/package.nix b/pkgs/by-name/do/dosbox/package.nix index 50805b14229a..5d71601a58e0 100644 --- a/pkgs/by-name/do/dosbox/package.nix +++ b/pkgs/by-name/do/dosbox/package.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.dosbox.com/"; changelog = "https://www.dosbox.com/wiki/Releases"; description = "DOS emulator"; @@ -97,9 +97,9 @@ stdenv.mkDerivation rec { unmodified. In order to utilize all of DOSBox's features you need to first understand some basic concepts about the MS-DOS environment. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "dosbox"; }; } diff --git a/pkgs/by-name/do/dosis/package.nix b/pkgs/by-name/do/dosis/package.nix index 7c5da5416392..da8a0e4a2076 100644 --- a/pkgs/by-name/do/dosis/package.nix +++ b/pkgs/by-name/do/dosis/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Very simple, rounded, sans serif family"; longDescription = '' Dosis is a very simple, rounded, sans serif family. @@ -38,8 +38,8 @@ stdenvNoCC.mkDerivation rec { Semibold, Bold & ExtraBold ''; homepage = "http://www.impallari.com/dosis"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/do/dot-language-server/package.nix b/pkgs/by-name/do/dot-language-server/package.nix index cb94613eb588..720374bdf962 100644 --- a/pkgs/by-name/do/dot-language-server/package.nix +++ b/pkgs/by-name/do/dot-language-server/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { npmBuildScript = "compile"; - meta = with lib; { + meta = { description = "Language server for the DOT language"; mainProgram = "dot-language-server"; homepage = "https://github.com/nikeee/dot-language-server"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/do/dotacat/package.nix b/pkgs/by-name/do/dotacat/package.nix index c1d9fe6a6ce8..cf7ed7d1f13d 100644 --- a/pkgs/by-name/do/dotacat/package.nix +++ b/pkgs/by-name/do/dotacat/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-Q8jhbSfVY/8SsB8OZpOsSYZ5sRI3FjzIev3LYYpyXeM="; - meta = with lib; { + meta = { description = "Like lolcat, but fast"; homepage = "https://gitlab.scd31.com/stephen/dotacat"; - license = licenses.mit; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ traxys ]; mainProgram = "dotacat"; }; } diff --git a/pkgs/by-name/do/dotconf/package.nix b/pkgs/by-name/do/dotconf/package.nix index 02d999ce46d5..d7fe95d84444 100644 --- a/pkgs/by-name/do/dotconf/package.nix +++ b/pkgs/by-name/do/dotconf/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Configuration parser library"; - maintainers = with maintainers; [ pSub ]; + maintainers = with lib.maintainers; [ pSub ]; homepage = "https://github.com/williamh/dotconf"; - license = licenses.lgpl21Plus; - platforms = with platforms; unix; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/do/dotenv-linter/package.nix b/pkgs/by-name/do/dotenv-linter/package.nix index 49a261a6fcee..c3cf40faed37 100644 --- a/pkgs/by-name/do/dotenv-linter/package.nix +++ b/pkgs/by-name/do/dotenv-linter/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-11u3a4W3vrGJQXjSMcDAS5D9mqG+XJ0L5FYmqqH/McM="; - meta = with lib; { + meta = { description = "Lightning-fast linter for .env files. Written in Rust"; mainProgram = "dotenv-linter"; homepage = "https://dotenv-linter.github.io"; - license = licenses.mit; - maintainers = with maintainers; [ humancalico ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ humancalico ]; }; } diff --git a/pkgs/by-name/do/dotfiles/package.nix b/pkgs/by-name/do/dotfiles/package.nix index 2ff9168c131c..b4b8db4aa205 100644 --- a/pkgs/by-name/do/dotfiles/package.nix +++ b/pkgs/by-name/do/dotfiles/package.nix @@ -23,10 +23,10 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = with python3Packages; [ pytest ]; - meta = with lib; { + meta = { description = "Easily manage your dotfiles"; mainProgram = "dotfiles"; homepage = "https://github.com/jbernard/dotfiles"; - license = licenses.isc; + license = lib.licenses.isc; }; } diff --git a/pkgs/by-name/do/dotherside/package.nix b/pkgs/by-name/do/dotherside/package.nix index f4457f0ed127..45d3ea221f5e 100644 --- a/pkgs/by-name/do/dotherside/package.nix +++ b/pkgs/by-name/do/dotherside/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation (finalAttrs: { libsForQt5.wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "C language library for creating bindings for the Qt QML language"; homepage = "https://filcuc.github.io/dotherside"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ toastal ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ toastal ]; }; }) diff --git a/pkgs/by-name/do/dotnet-outdated/package.nix b/pkgs/by-name/do/dotnet-outdated/package.nix index 83ae0d4b0037..71e44f8984ca 100644 --- a/pkgs/by-name/do/dotnet-outdated/package.nix +++ b/pkgs/by-name/do/dotnet-outdated/package.nix @@ -30,17 +30,17 @@ buildDotnetModule rec { "net8.0" ]; - meta = with lib; { + meta = { description = ".NET Core global tool to display and update outdated NuGet packages in a project"; homepage = "https://github.com/dotnet-outdated/dotnet-outdated"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource # deps binaryBytecode binaryNativeCode ]; - license = licenses.mit; - maintainers = with maintainers; [ emilioziniades ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilioziniades ]; mainProgram = "dotnet-outdated"; }; } diff --git a/pkgs/by-name/do/dotslash/package.nix b/pkgs/by-name/do/dotslash/package.nix index 4065952a56fd..f2f48c3d7168 100644 --- a/pkgs/by-name/do/dotslash/package.nix +++ b/pkgs/by-name/do/dotslash/package.nix @@ -26,7 +26,7 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { homepage = "https://dotslash-cli.com"; description = "Simplified multi-platform executable deployment"; longDescription = '' @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage rec { your developers seamlessly get the tools they need, ensuring consistent builds across platforms. ''; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; mainProgram = "dotslash"; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/do/dotter/package.nix b/pkgs/by-name/do/dotter/package.nix index caf02fcebf88..29c85a7d354e 100644 --- a/pkgs/by-name/do/dotter/package.nix +++ b/pkgs/by-name/do/dotter/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Dotfile manager and templater written in Rust"; homepage = "https://github.com/SuperCuber/dotter"; - license = licenses.unlicense; - maintainers = with maintainers; [ linsui ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ linsui ]; mainProgram = "dotter"; }; } diff --git a/pkgs/by-name/do/double-conversion/package.nix b/pkgs/by-name/do/double-conversion/package.nix index 30e445519ee1..7b31908b1d37 100644 --- a/pkgs/by-name/do/double-conversion/package.nix +++ b/pkgs/by-name/do/double-conversion/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { pkgConfigModules = [ "double-conversion" ]; description = "Binary-decimal and decimal-binary routines for IEEE doubles"; homepage = "https://github.com/google/double-conversion"; - license = licenses.bsd3; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix ++ lib.platforms.windows; maintainers = with lib.maintainers; [ fzakaria ]; }; }) diff --git a/pkgs/by-name/do/double-entry-generator/package.nix b/pkgs/by-name/do/double-entry-generator/package.nix index 6f469f1be697..4fb346f08ae0 100644 --- a/pkgs/by-name/do/double-entry-generator/package.nix +++ b/pkgs/by-name/do/double-entry-generator/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Rule-based double-entry bookkeeping importer (from Alipay/WeChat/Huobi etc. to Beancount/Ledger)"; homepage = "https://github.com/deb-sig/double-entry-generator"; - license = licenses.asl20; - maintainers = with maintainers; [ rennsax ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rennsax ]; mainProgram = "double-entry-generator"; }; } diff --git a/pkgs/by-name/do/doulos-sil/package.nix b/pkgs/by-name/do/doulos-sil/package.nix index 1cf052c0cd75..aecbb551519e 100644 --- a/pkgs/by-name/do/doulos-sil/package.nix +++ b/pkgs/by-name/do/doulos-sil/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/doulos"; description = "Font that provides complete support for the International Phonetic Alphabet"; longDescription = '' @@ -30,8 +30,8 @@ stdenvNoCC.mkDerivation rec { The goal for this product was to provide a single Unicode-based font family that would contain a comprehensive inventory of glyphs needed for almost any Roman- or Cyrillic-based writing system, whether used for phonetic or orthographic needs. In addition, there is provision for other characters and symbols useful to linguists. This font makes use of state-of-the-art font technologies to support complex typographic issues, such as the need to position arbitrary combinations of base glyphs and diacritics optimally. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.f--t ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.f--t ]; }; } diff --git a/pkgs/by-name/do/dovecot-fts-flatcurve/package.nix b/pkgs/by-name/do/dovecot-fts-flatcurve/package.nix index a142a6e73c8f..ab5a20d74ee8 100644 --- a/pkgs/by-name/do/dovecot-fts-flatcurve/package.nix +++ b/pkgs/by-name/do/dovecot-fts-flatcurve/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "--with-moduledir=${placeholder "out"}/lib/dovecot/modules" ]; - meta = with lib; { + meta = { homepage = "https://slusarz.github.io/dovecot-fts-flatcurve/"; description = "Dovecot FTS Flatcurve plugin (Xapian)"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ euxane ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ euxane ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/do/dovecot/package.nix b/pkgs/by-name/do/dovecot/package.nix index b505121fd110..92757140467b 100644 --- a/pkgs/by-name/do/dovecot/package.nix +++ b/pkgs/by-name/do/dovecot/package.nix @@ -180,10 +180,10 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { homepage = "https://dovecot.org/"; description = "Open source IMAP and POP3 email server written with security primarily in mind"; - license = with licenses; [ + license = with lib.licenses; [ mit publicDomain lgpl21Only @@ -191,11 +191,11 @@ stdenv.mkDerivation rec { bsdOriginal ]; mainProgram = "dovecot"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fpletz ]; teams = [ lib.teams.helsinki-systems ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; passthru.tests = { opensmtpd-interaction = nixosTests.opensmtpd; diff --git a/pkgs/by-name/do/dovecot_pigeonhole/package.nix b/pkgs/by-name/do/dovecot_pigeonhole/package.nix index 58d390469f91..d28c342e8614 100644 --- a/pkgs/by-name/do/dovecot_pigeonhole/package.nix +++ b/pkgs/by-name/do/dovecot_pigeonhole/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://pigeonhole.dovecot.org/"; description = "Sieve plugin for the Dovecot IMAP server"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; - teams = [ teams.helsinki-systems ]; - platforms = platforms.unix; + teams = [ lib.teams.helsinki-systems ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/dp/dpdk/package.nix b/pkgs/by-name/dp/dpdk/package.nix index 990dc77f9935..3c3a66aa8ff5 100644 --- a/pkgs/by-name/dp/dpdk/package.nix +++ b/pkgs/by-name/dp/dpdk/package.nix @@ -103,16 +103,16 @@ stdenv.mkDerivation rec { ] ++ lib.optional (withExamples != [ ]) "examples"; - meta = with lib; { + meta = { description = "Set of libraries and drivers for fast packet processing"; homepage = "http://dpdk.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 gpl2Only bsd2 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mic92 zhaofengli ]; diff --git a/pkgs/by-name/dp/dpic/package.nix b/pkgs/by-name/dp/dpic/package.nix index 55a089b22602..546cc1328549 100644 --- a/pkgs/by-name/dp/dpic/package.nix +++ b/pkgs/by-name/dp/dpic/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { # The prefix passed to configure is not used. makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Implementation of the pic little language for creating drawings"; homepage = "https://ece.uwaterloo.ca/~aplevich/dpic/"; - license = licenses.bsd2; - maintainers = with maintainers; [ aespinosa ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ aespinosa ]; + platforms = lib.platforms.all; mainProgram = "dpic"; }; } diff --git a/pkgs/by-name/dp/dpkg/package.nix b/pkgs/by-name/dp/dpkg/package.nix index e076bae05cdc..40c5a5ed0fe1 100644 --- a/pkgs/by-name/dp/dpkg/package.nix +++ b/pkgs/by-name/dp/dpkg/package.nix @@ -129,12 +129,12 @@ stdenv.mkDerivation (finalAttrs: { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Debian package manager"; homepage = "https://wiki.debian.org/Teams/Dpkg"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ siriobalmelli ]; mainProgram = "dpkg"; }; }) diff --git a/pkgs/by-name/dp/dps8m/package.nix b/pkgs/by-name/dp/dps8m/package.nix index d61be37d2a7b..ad830e58edb6 100644 --- a/pkgs/by-name/dp/dps8m/package.nix +++ b/pkgs/by-name/dp/dps8m/package.nix @@ -37,16 +37,16 @@ stdenv.mkDerivation rec { libuv ]; - meta = with lib; { + meta = { description = "GE / Honeywell / Bull DPS-8/M mainframe simulator"; homepage = "https://gitlab.com/dps8m/dps8m"; changelog = "https://gitlab.com/dps8m/dps8m/-/wikis/DPS8M-${src.rev}-Release-Notes"; - license = licenses.icu; - maintainers = with maintainers; [ + license = lib.licenses.icu; + maintainers = with lib.maintainers; [ matthewcroughan sarcasticadmin ]; mainProgram = "dps8m"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/dp/dpt-rp1-py/package.nix b/pkgs/by-name/dp/dpt-rp1-py/package.nix index 6b99e21b93c7..21b9e677c70e 100644 --- a/pkgs/by-name/dp/dpt-rp1-py/package.nix +++ b/pkgs/by-name/dp/dpt-rp1-py/package.nix @@ -35,11 +35,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "dptrp1" ]; - meta = with lib; { + meta = { homepage = "https://github.com/janten/dpt-rp1-py"; description = "Python script to manage Sony DPT-RP1 without Digital Paper App"; - license = licenses.mit; - maintainers = with maintainers; [ mt-caret ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mt-caret ]; mainProgram = "dptrp1"; }; } diff --git a/pkgs/by-name/dr/dr14_tmeter/package.nix b/pkgs/by-name/dr/dr14_tmeter/package.nix index 5ad65034eff0..797550823ebd 100644 --- a/pkgs/by-name/dr/dr14_tmeter/package.nix +++ b/pkgs/by-name/dr/dr14_tmeter/package.nix @@ -31,10 +31,10 @@ python3Packages.buildPythonApplication rec { # There are no tests doCheck = false; - meta = with lib; { + meta = { description = "Compute the DR14 of a given audio file according to the procedure described by the Pleasurize Music Foundation"; mainProgram = "dr14_tmeter"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "http://dr14tmeter.sourceforge.net/"; maintainers = [ ]; }; diff --git a/pkgs/by-name/dr/dra-cla/package.nix b/pkgs/by-name/dr/dra-cla/package.nix index 13b35e629c0e..b8848870ccf9 100644 --- a/pkgs/by-name/dr/dra-cla/package.nix +++ b/pkgs/by-name/dr/dra-cla/package.nix @@ -49,12 +49,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/CoolnsX/dra-cla"; description = "Cli tool to browse and play korean drama, chinese drama"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ idlip ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ idlip ]; + platforms = lib.platforms.unix; mainProgram = "dra-cla"; }; } diff --git a/pkgs/by-name/dr/dracula-icon-theme/package.nix b/pkgs/by-name/dr/dracula-icon-theme/package.nix index 92441b185ed4..4e7175e313b2 100644 --- a/pkgs/by-name/dr/dracula-icon-theme/package.nix +++ b/pkgs/by-name/dr/dracula-icon-theme/package.nix @@ -34,11 +34,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Dracula Icon theme"; homepage = "https://github.com/m4thewz/dracula-icons"; - platforms = platforms.linux; - license = licenses.gpl3Only; - maintainers = with maintainers; [ therealr5 ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ therealr5 ]; }; } diff --git a/pkgs/by-name/dr/dracula-qt5-theme/package.nix b/pkgs/by-name/dr/dracula-qt5-theme/package.nix index edf1c8140a4b..f520d1b4e2c0 100644 --- a/pkgs/by-name/dr/dracula-qt5-theme/package.nix +++ b/pkgs/by-name/dr/dracula-qt5-theme/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Dark theme for qt5"; homepage = "https://github.com/dracula/qt5"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ vonfry ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ vonfry ]; }; } diff --git a/pkgs/by-name/dr/dracula-theme/package.nix b/pkgs/by-name/dr/dracula-theme/package.nix index a2e4bbc048fc..b53a81a29072 100644 --- a/pkgs/by-name/dr/dracula-theme/package.nix +++ b/pkgs/by-name/dr/dracula-theme/package.nix @@ -48,11 +48,11 @@ stdenvNoCC.mkDerivation { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Dracula variant of the Ant theme"; homepage = "https://github.com/dracula/gtk"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ alexarice ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ alexarice ]; }; } diff --git a/pkgs/by-name/dr/dracut/package.nix b/pkgs/by-name/dr/dracut/package.nix index 071a70095adf..db1a06e68121 100644 --- a/pkgs/by-name/dr/dracut/package.nix +++ b/pkgs/by-name/dr/dracut/package.nix @@ -109,11 +109,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/dracutdevs/dracut/wiki"; description = "Event driven initramfs infrastructure"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/dr/dragonfly-reverb/package.nix b/pkgs/by-name/dr/dragonfly-reverb/package.nix index c4715ff54f51..f1d9c6bb9f10 100644 --- a/pkgs/by-name/dr/dragonfly-reverb/package.nix +++ b/pkgs/by-name/dr/dragonfly-reverb/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/michaelwillis/dragonfly-reverb"; description = "Hall-style reverb based on freeverb3 algorithms"; - maintainers = [ maintainers.magnetophon ]; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/dr/dragonflydb/package.nix b/pkgs/by-name/dr/dragonflydb/package.nix index 79cfba633713..79eca3f54019 100644 --- a/pkgs/by-name/dr/dragonflydb/package.nix +++ b/pkgs/by-name/dr/dragonflydb/package.nix @@ -250,12 +250,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Modern replacement for Redis and Memcached"; homepage = "https://dragonflydb.io/"; - license = licenses.bsl11; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsl11; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ typedrat yureien ]; diff --git a/pkgs/by-name/dr/drat-trim/package.nix b/pkgs/by-name/dr/drat-trim/package.nix index e51aebd6ea9f..0ee440567b69 100644 --- a/pkgs/by-name/dr/drat-trim/package.nix +++ b/pkgs/by-name/dr/drat-trim/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Proof checker for unSAT proofs"; longDescription = '' DRAT-trim is a satisfiability proof checking and trimming @@ -56,8 +56,8 @@ stdenv.mkDerivation { up the checking process. ''; homepage = "https://www.cs.utexas.edu/~marijn/drat-trim/"; - license = licenses.mit; - maintainers = with maintainers; [ kini ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kini ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/dr/drill/package.nix b/pkgs/by-name/dr/drill/package.nix index 1d34b5cdee28..19116d75e51a 100644 --- a/pkgs/by-name/dr/drill/package.nix +++ b/pkgs/by-name/dr/drill/package.nix @@ -31,10 +31,10 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "HTTP load testing application inspired by Ansible syntax"; homepage = "https://github.com/fcsonline/drill"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "drill"; }; } diff --git a/pkgs/by-name/dr/drive/package.nix b/pkgs/by-name/dr/drive/package.nix index 7eb4412744ee..ac2ad547cc70 100644 --- a/pkgs/by-name/dr/drive/package.nix +++ b/pkgs/by-name/dr/drive/package.nix @@ -33,10 +33,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/odeke-em/drive"; description = "Google Drive client for the commandline"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "drive"; }; diff --git a/pkgs/by-name/dr/drm_info/package.nix b/pkgs/by-name/dr/drm_info/package.nix index cda2be2acec3..f2eaf49c6eb8 100644 --- a/pkgs/by-name/dr/drm_info/package.nix +++ b/pkgs/by-name/dr/drm_info/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Small utility to dump info about DRM devices"; mainProgram = "drm_info"; homepage = "https://gitlab.freedesktop.org/emersion/drm_info"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ kiskae ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/dr/drogon/package.nix b/pkgs/by-name/dr/drogon/package.nix index 0a8cfce537ee..46bc224617e7 100644 --- a/pkgs/by-name/dr/drogon/package.nix +++ b/pkgs/by-name/dr/drogon/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation (finalAttrs: { # in the buildPhase) doInstallCheck = stdenv.buildPlatform == stdenv.hostPlatform; - meta = with lib; { + meta = { homepage = "https://github.com/drogonframework/drogon"; description = "C++14/17 based HTTP web application framework"; - license = licenses.mit; - maintainers = with maintainers; [ urlordjames ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urlordjames ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/dr/droidcam/package.nix b/pkgs/by-name/dr/droidcam/package.nix index 90c8d51b8ea9..c6dfa57d1bdf 100644 --- a/pkgs/by-name/dr/droidcam/package.nix +++ b/pkgs/by-name/dr/droidcam/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux client for DroidCam app"; homepage = "https://github.com/aramg/droidcam"; - license = licenses.gpl2Only; - maintainers = [ maintainers.suhr ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.suhr ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/dr/droidmote/package.nix b/pkgs/by-name/dr/droidmote/package.nix index e954b9ebbf00..8d325319d24f 100644 --- a/pkgs/by-name/dr/droidmote/package.nix +++ b/pkgs/by-name/dr/droidmote/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Control your computer from your couch"; homepage = "https://www.videomap.it/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ atila ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ atila ]; platforms = lib.attrNames srcs; }; } diff --git a/pkgs/by-name/dr/drone-cli/package.nix b/pkgs/by-name/dr/drone-cli/package.nix index 36b42718c186..808ce7c85d77 100644 --- a/pkgs/by-name/dr/drone-cli/package.nix +++ b/pkgs/by-name/dr/drone-cli/package.nix @@ -26,10 +26,10 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { mainProgram = "drone"; - maintainers = with maintainers; [ techknowlogick ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ techknowlogick ]; + license = lib.licenses.asl20; description = "Command line client for the Drone continuous integration server"; }; } diff --git a/pkgs/by-name/dr/drone-runner-docker/package.nix b/pkgs/by-name/dr/drone-runner-docker/package.nix index 4090cf3f0ac1..4536607a2f88 100644 --- a/pkgs/by-name/dr/drone-runner-docker/package.nix +++ b/pkgs/by-name/dr/drone-runner-docker/package.nix @@ -17,9 +17,9 @@ buildGoModule rec { vendorHash = "sha256-KcNp3VdJ201oxzF0bLXY4xWHqHNz54ZrVSI96cfhU+k="; - meta = with lib; { + meta = { maintainers = [ ]; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; homepage = "https://github.com/drone-runners/drone-runner-docker"; description = "Drone pipeline runner that executes builds inside Docker containers"; mainProgram = "drone-runner-docker"; diff --git a/pkgs/by-name/dr/drone-runner-exec/package.nix b/pkgs/by-name/dr/drone-runner-exec/package.nix index 2a0f73c8914d..0786230cc586 100644 --- a/pkgs/by-name/dr/drone-runner-exec/package.nix +++ b/pkgs/by-name/dr/drone-runner-exec/package.nix @@ -17,12 +17,12 @@ buildGoModule { vendorHash = "sha256-ypYuQKxRhRQGX1HtaWt6F6BD9vBpD8AJwx/4esLrJsw="; - meta = with lib; { + meta = { description = "Drone pipeline runner that executes builds directly on the host machine"; homepage = "https://github.com/drone-runners/drone-runner-exec"; # https://polyformproject.org/licenses/small-business/1.0.0/ - license = licenses.unfree; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mic92 ]; mainProgram = "drone-runner-exec"; }; } diff --git a/pkgs/by-name/dr/drone-runner-ssh/package.nix b/pkgs/by-name/dr/drone-runner-ssh/package.nix index 14474709f69a..f043415017f3 100644 --- a/pkgs/by-name/dr/drone-runner-ssh/package.nix +++ b/pkgs/by-name/dr/drone-runner-ssh/package.nix @@ -17,10 +17,10 @@ buildGoModule { vendorHash = "sha256-Vj6ZmNwegKBVJPh6MsjtLMmX9WR76msuR2DPM8Qyhe0="; - meta = with lib; { + meta = { description = "Experimental Drone runner that executes a pipeline on a remote machine"; homepage = "https://github.com/drone-runners/drone-runner-ssh"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; mainProgram = "drone-runner-ssh"; }; } diff --git a/pkgs/by-name/dr/drone-scp/package.nix b/pkgs/by-name/dr/drone-scp/package.nix index 7e8b3b83205c..243f70f04a13 100644 --- a/pkgs/by-name/dr/drone-scp/package.nix +++ b/pkgs/by-name/dr/drone-scp/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { # Needs a specific user... doCheck = false; - meta = with lib; { + meta = { description = "Copy files and artifacts via SSH using a binary, docker or Drone CI"; homepage = "https://github.com/appleboy/drone-scp"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; mainProgram = "drone-scp"; }; } diff --git a/pkgs/by-name/dr/dropwatch/package.nix b/pkgs/by-name/dr/dropwatch/package.nix index 78266fd3d9a3..aac939d4f3b0 100644 --- a/pkgs/by-name/dr/dropwatch/package.nix +++ b/pkgs/by-name/dr/dropwatch/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Linux kernel dropped packet monitor"; homepage = "https://github.com/nhorman/dropwatch"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ c0bw3b ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ c0bw3b ]; }; } diff --git a/pkgs/by-name/dr/drumgizmo/package.nix b/pkgs/by-name/dr/drumgizmo/package.nix index 20e0b7ccf9b5..b37e56fa9757 100644 --- a/pkgs/by-name/dr/drumgizmo/package.nix +++ b/pkgs/by-name/dr/drumgizmo/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { zita-resampler ]; - meta = with lib; { + meta = { description = "LV2 sample based drum plugin"; homepage = "https://www.drumgizmo.org"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.nico202 ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.nico202 ]; }; } diff --git a/pkgs/by-name/ds/dsniff/package.nix b/pkgs/by-name/ds/dsniff/package.nix index 3a5f373b14d6..5ad808699f30 100644 --- a/pkgs/by-name/ds/dsniff/package.nix +++ b/pkgs/by-name/ds/dsniff/package.nix @@ -118,15 +118,15 @@ stdenv.mkDerivation rec { "--with-openssl=${ssl}" ]; - meta = with lib; { + meta = { description = "Collection of tools for network auditing and penetration testing"; longDescription = '' dsniff, filesnarf, mailsnarf, msgsnarf, urlsnarf, and webspy passively monitor a network for interesting data (passwords, e-mail, files, etc.). arpspoof, dnsspoof, and macof facilitate the interception of network traffic normally unavailable to an attacker (e.g, due to layer-2 switching). sshmitm and webmitm implement active monkey-in-the-middle attacks against redirected SSH and HTTPS sessions by exploiting weak bindings in ad-hoc PKI. ''; homepage = "https://www.monkey.org/~dugsong/dsniff/"; - license = licenses.bsd3; - maintainers = [ maintainers.symphorien ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.symphorien ]; # bsd and solaris should work as well - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ds/dspam/package.nix b/pkgs/by-name/ds/dspam/package.nix index e4fedd60710e..7da49d8d45de 100644 --- a/pkgs/by-name/ds/dspam/package.nix +++ b/pkgs/by-name/ds/dspam/package.nix @@ -144,11 +144,11 @@ stdenv.mkDerivation rec { $out/bin/dspam_maintenance ''; - meta = with lib; { + meta = { homepage = "https://dspam.sourceforge.net/"; description = "Community Driven Antispam Filter"; - license = licenses.agpl3Plus; - platforms = platforms.linux; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ds/dsq/package.nix b/pkgs/by-name/ds/dsq/package.nix index b32ca150c12f..f25680bbb8a7 100644 --- a/pkgs/by-name/ds/dsq/package.nix +++ b/pkgs/by-name/ds/dsq/package.nix @@ -57,11 +57,11 @@ buildGoModule rec { tests.version = testers.testVersion { package = dsq; }; }; - meta = with lib; { + meta = { mainProgram = "dsq"; description = "Commandline tool for running SQL queries against JSON, CSV, Excel, Parquet, and more"; homepage = "https://github.com/multiprocessio/dsq"; - license = licenses.asl20; - maintainers = with maintainers; [ liff ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ liff ]; }; } diff --git a/pkgs/by-name/ds/dssi/package.nix b/pkgs/by-name/ds/dssi/package.nix index 0e56190f1ac1..43eb9c06ce32 100644 --- a/pkgs/by-name/ds/dssi/package.nix +++ b/pkgs/by-name/ds/dssi/package.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { libICE ]; - meta = with lib; { + meta = { description = "Plugin SDK for virtual instruments"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.lgpl21; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; downloadPage = "https://sourceforge.net/projects/dssi/files/dssi/"; }; } diff --git a/pkgs/by-name/ds/dstask/package.nix b/pkgs/by-name/ds/dstask/package.nix index a24af94d4308..0d137096898b 100644 --- a/pkgs/by-name/ds/dstask/package.nix +++ b/pkgs/by-name/ds/dstask/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { "-X github.com/naggie/dstask.GIT_COMMIT=v${version}" ]; - meta = with lib; { + meta = { description = "Command line todo list with super-reliable git sync"; homepage = src.meta.homepage; - license = licenses.mit; - maintainers = with maintainers; [ stianlagstad ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ stianlagstad ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ds/dstep/package.nix b/pkgs/by-name/ds/dstep/package.nix index 14a3c3b7cd58..185180b717f6 100644 --- a/pkgs/by-name/ds/dstep/package.nix +++ b/pkgs/by-name/ds/dstep/package.nix @@ -35,11 +35,11 @@ buildDubPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool for converting C and Objective-C headers to D modules"; homepage = "https://github.com/jacob-carlborg/dstep"; - license = licenses.boost; + license = lib.licenses.boost; mainProgram = "dstep"; - maintainers = with maintainers; [ imrying ]; + maintainers = with lib.maintainers; [ imrying ]; }; } diff --git a/pkgs/by-name/ds/dstp/package.nix b/pkgs/by-name/ds/dstp/package.nix index a31e10927e73..abcc6624df41 100644 --- a/pkgs/by-name/ds/dstp/package.nix +++ b/pkgs/by-name/ds/dstp/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # Tests require network connection, but is not allowed by nix doCheck = false; - meta = with lib; { + meta = { description = "Run common networking tests against your site"; mainProgram = "dstp"; homepage = "https://github.com/ycd/dstp"; - license = licenses.mit; - maintainers = with maintainers; [ jlesquembre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jlesquembre ]; }; } diff --git a/pkgs/by-name/ds/dsvpn/package.nix b/pkgs/by-name/ds/dsvpn/package.nix index 23f640d149a0..6d9b619bd535 100644 --- a/pkgs/by-name/ds/dsvpn/package.nix +++ b/pkgs/by-name/ds/dsvpn/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Dead Simple VPN"; homepage = "https://github.com/jedisct1/dsvpn"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "dsvpn"; }; } diff --git a/pkgs/by-name/dt/dtc/package.nix b/pkgs/by-name/dt/dtc/package.nix index 04db038594ac..cacf69249b47 100644 --- a/pkgs/by-name/dt/dtc/package.nix +++ b/pkgs/by-name/dt/dtc/package.nix @@ -99,12 +99,12 @@ stdenv.mkDerivation (finalAttrs: { # hostPlatform binaries during the configurePhase. (with stdenv; buildPlatform.canExecute hostPlatform); - meta = with lib; { + meta = { description = "Device Tree Compiler"; homepage = "https://git.kernel.org/pub/scm/utils/dtc/dtc.git"; - license = licenses.gpl2Plus; # dtc itself is GPLv2, libfdt is dual GPL/BSD - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; # dtc itself is GPLv2, libfdt is dual GPL/BSD + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.unix; mainProgram = "dtc"; }; }) diff --git a/pkgs/by-name/dt/dtcmp/package.nix b/pkgs/by-name/dt/dtcmp/package.nix index abf24f17ec90..14f0c1a8b149 100644 --- a/pkgs/by-name/dt/dtcmp/package.nix +++ b/pkgs/by-name/dt/dtcmp/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ mpi ]; - meta = with lib; { + meta = { description = "MPI datatype comparison library"; homepage = "https://github.com/LLNL/dtcmp"; - platforms = platforms.linux; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/dt/dterm/package.nix b/pkgs/by-name/dt/dterm/package.nix index f69892f41dd3..5766e9d78589 100644 --- a/pkgs/by-name/dt/dterm/package.nix +++ b/pkgs/by-name/dt/dterm/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { installFlags = [ "BIN=$(out)/bin/" ]; - meta = with lib; { + meta = { homepage = "http://www.knossos.net.nz/resources/free-software/dterm/"; description = "Simple terminal program"; longDescription = '' @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { are forwarded to the serial line, and data forwarded from the serial line appears on the terminal. ''; - license = licenses.gpl2Only; - maintainers = with maintainers; [ auchter ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ auchter ]; + platforms = lib.platforms.unix; mainProgram = "dterm"; }; } diff --git a/pkgs/by-name/dt/dtool/package.nix b/pkgs/by-name/dt/dtool/package.nix index 68a11c810ae7..52e292f30761 100644 --- a/pkgs/by-name/dt/dtool/package.nix +++ b/pkgs/by-name/dt/dtool/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { checkType = "debug"; - meta = with lib; { + meta = { description = "Command-line tool collection to assist development written in RUST"; homepage = "https://github.com/guoxbin/dtool"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ linuxissuper ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ linuxissuper ]; mainProgram = "dtool"; }; } diff --git a/pkgs/by-name/dt/dtools/package.nix b/pkgs/by-name/dt/dtools/package.nix index 2e72b447755b..308487463127 100644 --- a/pkgs/by-name/dt/dtools/package.nix +++ b/pkgs/by-name/dt/dtools/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; checkTarget = "test_rdmd"; - meta = with lib; { + meta = { description = "Ancillary tools for the D programming language"; homepage = "https://github.com/dlang/tools"; - license = licenses.boost; - maintainers = with maintainers; [ jtbx ]; - platforms = platforms.unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ jtbx ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/du/dualsensectl/package.nix b/pkgs/by-name/du/dualsensectl/package.nix index 66ec9e66deff..f865e85ab7b0 100644 --- a/pkgs/by-name/du/dualsensectl/package.nix +++ b/pkgs/by-name/du/dualsensectl/package.nix @@ -48,13 +48,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/nowrep/dualsensectl/releases/tag/v${finalAttrs.version}"; description = "Linux tool for controlling PS5 DualSense controller"; homepage = "https://github.com/nowrep/dualsensectl"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "dualsensectl"; - maintainers = with maintainers; [ azuwis ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ azuwis ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/du/dub/package.nix b/pkgs/by-name/du/dub/package.nix index 951885a52bcb..457af1c63539 100644 --- a/pkgs/by-name/du/dub/package.nix +++ b/pkgs/by-name/du/dub/package.nix @@ -153,12 +153,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Package and build manager for D programs and libraries"; homepage = "https://code.dlang.org/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "dub"; - maintainers = with maintainers; [ jtbx ]; + maintainers = with lib.maintainers; [ jtbx ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/du/dublin-traceroute/package.nix b/pkgs/by-name/du/dublin-traceroute/package.nix index 769ecd6fade0..1d2159daca60 100644 --- a/pkgs/by-name/du/dublin-traceroute/package.nix +++ b/pkgs/by-name/du/dublin-traceroute/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "NAT-aware multipath traceroute tool"; homepage = "https://dublin-traceroute.net/"; - license = licenses.bsd2; - maintainers = with maintainers; [ baloo ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ baloo ]; + platforms = lib.platforms.unix; mainProgram = "dublin-traceroute"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/du/duc/package.nix b/pkgs/by-name/du/duc/package.nix index be1dead197cc..4c195ed8aa8b 100644 --- a/pkgs/by-name/du/duc/package.nix +++ b/pkgs/by-name/du/duc/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { "--disable-cairo" ]; - meta = with lib; { + meta = { homepage = "http://duc.zevv.nl/"; description = "Collection of tools for inspecting and visualizing disk usage"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "duc"; }; diff --git a/pkgs/by-name/du/duckling-proxy/package.nix b/pkgs/by-name/du/duckling-proxy/package.nix index 8c8d9518b9db..857cacf04999 100644 --- a/pkgs/by-name/du/duckling-proxy/package.nix +++ b/pkgs/by-name/du/duckling-proxy/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-zmOtwx2+mBHDua9Z+G+MnxWaBzoqBPymwEcl+4oKs3M="; - meta = with lib; { + meta = { description = "Gemini proxy to access the Small Web"; homepage = "https://github.com/LukeEmmet/duckling-proxy"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; mainProgram = "duckling-proxy"; }; } diff --git a/pkgs/by-name/du/duckscript/package.nix b/pkgs/by-name/du/duckscript/package.nix index 307d155d004d..ddd44b75d796 100644 --- a/pkgs/by-name/du/duckscript/package.nix +++ b/pkgs/by-name/du/duckscript/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ft6EUajAj+Zw3cEhdajwwHAaMaUf+/vtTuUYni8E+o0="; - meta = with lib; { + meta = { description = "Simple, extendable and embeddable scripting language"; homepage = "https://github.com/sagiegurari/duckscript"; - license = licenses.asl20; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mkg20001 ]; mainProgram = "duck"; }; } diff --git a/pkgs/by-name/du/duff/package.nix b/pkgs/by-name/du/duff/package.nix index 3fca46a96bbd..a93ea8d84cf6 100644 --- a/pkgs/by-name/du/duff/package.nix +++ b/pkgs/by-name/du/duff/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Quickly find duplicate files"; mainProgram = "duff"; longDescription = '' @@ -44,7 +44,7 @@ stdenv.mkDerivation { a given set of files. ''; homepage = "https://github.com/elmindreda/duff"; - license = licenses.zlib; - platforms = platforms.all; + license = lib.licenses.zlib; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/du/dufs/package.nix b/pkgs/by-name/du/dufs/package.nix index 7069b8cb8925..b82b5291ecb2 100644 --- a/pkgs/by-name/du/dufs/package.nix +++ b/pkgs/by-name/du/dufs/package.nix @@ -35,16 +35,16 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/dufs --completions zsh) ''; - meta = with lib; { + meta = { description = "File server that supports static serving, uploading, searching, accessing control, webdav"; mainProgram = "dufs"; homepage = "https://github.com/sigoden/dufs"; changelog = "https://github.com/sigoden/dufs/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ holymonson ]; }; diff --git a/pkgs/by-name/du/duktape/package.nix b/pkgs/by-name/du/duktape/package.nix index ed51312da482..21649033a5e2 100644 --- a/pkgs/by-name/du/duktape/package.nix +++ b/pkgs/by-name/du/duktape/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Embeddable Javascript engine, with a focus on portability and compact footprint"; homepage = "https://duktape.org/"; downloadPage = "https://duktape.org/download.html"; - license = licenses.mit; - maintainers = [ maintainers.fgaz ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.fgaz ]; mainProgram = "duk"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/du/dumb-init/package.nix b/pkgs/by-name/du/dumb-init/package.nix index 50ab44df870a..d5790a83281e 100644 --- a/pkgs/by-name/du/dumb-init/package.nix +++ b/pkgs/by-name/du/dumb-init/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Minimal init system for Linux containers"; homepage = "https://github.com/Yelp/dumb-init"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "dumb-init"; }; } diff --git a/pkgs/by-name/du/dummyhttp/package.nix b/pkgs/by-name/du/dummyhttp/package.nix index cc982fe6e768..d6ab99e6b786 100644 --- a/pkgs/by-name/du/dummyhttp/package.nix +++ b/pkgs/by-name/du/dummyhttp/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-566hk79oXApJm5p+gEgikV08n19hH1Tk36DvgPuQKLI="; - meta = with lib; { + meta = { description = "Super simple HTTP server that replies a fixed body with a fixed response code"; homepage = "https://github.com/svenstaro/dummyhttp"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; mainProgram = "dummyhttp"; }; diff --git a/pkgs/by-name/du/dump/package.nix b/pkgs/by-name/du/dump/package.nix index abeb29ad371f..873f9cd51873 100644 --- a/pkgs/by-name/du/dump/package.nix +++ b/pkgs/by-name/du/dump/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { readline ]; - meta = with lib; { + meta = { homepage = "https://dump.sourceforge.io/"; description = "Linux Ext2 filesystem dump/restore utilities"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/du/dumpasn1/package.nix b/pkgs/by-name/du/dumpasn1/package.nix index 960a5aa5ae54..f9a878f711b5 100644 --- a/pkgs/by-name/du/dumpasn1/package.nix +++ b/pkgs/by-name/du/dumpasn1/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { ./configpath.patch ]; - meta = with lib; { + meta = { description = "Display and debug ASN.1 data"; homepage = "https://github.com/katexochen/dumpasn1"; - license = licenses.bsd2; + license = lib.licenses.bsd2; mainProgram = "dumpasn1"; - maintainers = with maintainers; [ katexochen ]; - platforms = platforms.linux ++ platforms.darwin; + maintainers = with lib.maintainers; [ katexochen ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/du/dumpnar/package.nix b/pkgs/by-name/du/dumpnar/package.nix index 87ef1b3086d9..a2206f68096f 100644 --- a/pkgs/by-name/du/dumpnar/package.nix +++ b/pkgs/by-name/du/dumpnar/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation { cp dumpnar $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/stephank/dumpnar"; description = "Minimal tool to produce a Nix NAR archive"; - license = licenses.lgpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.stephank ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.stephank ]; mainProgram = "dumpnar"; }; } diff --git a/pkgs/by-name/du/dumptorrent/package.nix b/pkgs/by-name/du/dumptorrent/package.nix index 244e79109a3f..d30888501282 100644 --- a/pkgs/by-name/du/dumptorrent/package.nix +++ b/pkgs/by-name/du/dumptorrent/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { cp ./dumptorrent $out/bin ''; - meta = with lib; { + meta = { description = "Dump .torrent file information"; homepage = "https://sourceforge.net/projects/dumptorrent/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.zohl ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.zohl ]; + platforms = lib.platforms.all; mainProgram = "dumptorrent"; }; } diff --git a/pkgs/by-name/du/dupd/package.nix b/pkgs/by-name/du/dupd/package.nix index 71cd9e53c194..2abbce1fddb7 100644 --- a/pkgs/by-name/du/dupd/package.nix +++ b/pkgs/by-name/du/dupd/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "CLI utility to find duplicate files"; homepage = "http://www.virkki.com/dupd"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "dupd"; }; } diff --git a/pkgs/by-name/du/dupe-krill/package.nix b/pkgs/by-name/du/dupe-krill/package.nix index ce44e817d740..ea526ae58b1f 100644 --- a/pkgs/by-name/du/dupe-krill/package.nix +++ b/pkgs/by-name/du/dupe-krill/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-iNkuhohlqjbcn/R6tCkI5rvSbyZw4Ynac27Lb8tycp8="; - meta = with lib; { + meta = { description = "Fast file deduplicator"; homepage = "https://github.com/kornelski/dupe-krill"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ urbas ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ urbas ]; mainProgram = "dupe-krill"; }; } diff --git a/pkgs/by-name/du/duperemove/package.nix b/pkgs/by-name/du/duperemove/package.nix index aac966beef44..571599913ff8 100644 --- a/pkgs/by-name/du/duperemove/package.nix +++ b/pkgs/by-name/du/duperemove/package.nix @@ -52,14 +52,14 @@ stdenv.mkDerivation rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Simple tool for finding duplicated extents and submitting them for deduplication"; homepage = "https://github.com/markfasheh/duperemove"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ thoughtpolice ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "duperemove"; }; } diff --git a/pkgs/by-name/du/duplicacy/package.nix b/pkgs/by-name/du/duplicacy/package.nix index 1901128fa41f..93999252591d 100644 --- a/pkgs/by-name/du/duplicacy/package.nix +++ b/pkgs/by-name/du/duplicacy/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://duplicacy.com"; description = "New generation cloud backup tool"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; license = lib.licenses.unfree; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ffinkdevs devusb ]; diff --git a/pkgs/by-name/du/duplicity/package.nix b/pkgs/by-name/du/duplicity/package.nix index 2370e7b79704..98c1cd5e7209 100644 --- a/pkgs/by-name/du/duplicity/package.nix +++ b/pkgs/by-name/du/duplicity/package.nix @@ -160,13 +160,13 @@ let }; }; - meta = with lib; { + meta = { changelog = "https://gitlab.com/duplicity/duplicity/-/blob/${src.rev}/CHANGELOG.md"; description = "Encrypted bandwidth-efficient backup using the rsync algorithm"; homepage = "https://duplicity.gitlab.io/duplicity-web/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "duplicity"; - maintainers = with maintainers; [ corngood ]; + maintainers = with lib.maintainers; [ corngood ]; }; }; diff --git a/pkgs/by-name/du/dura/package.nix b/pkgs/by-name/du/dura/package.nix index 47da64ee5eb3..97db69311b89 100644 --- a/pkgs/by-name/du/dura/package.nix +++ b/pkgs/by-name/du/dura/package.nix @@ -35,7 +35,7 @@ rustPlatform.buildRustPackage rec { pkg-config ]; - meta = with lib; { + meta = { description = "Background process that saves uncommitted changes on git"; mainProgram = "dura"; longDescription = '' @@ -46,7 +46,7 @@ rustPlatform.buildRustPackage rec { checkout a "dura" branch and recover. ''; homepage = "https://github.com/tkellogg/dura"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/du/duti/package.nix b/pkgs/by-name/du/duti/package.nix index 769adfbfcbd7..4eea5edd3322 100644 --- a/pkgs/by-name/du/duti/package.nix +++ b/pkgs/by-name/du/duti/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Command-line tool to select default applications for document types and URL schemes on Mac OS X"; longDescription = '' duti is a command-line utility capable of setting default applications for @@ -31,11 +31,11 @@ stdenv.mkDerivation { user can change which application acts as the default handler for a given UTI. ''; mainProgram = "duti"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ n-hass ]; - platforms = platforms.darwin; - license = licenses.publicDomain; + platforms = lib.platforms.darwin; + license = lib.licenses.publicDomain; homepage = "https://github.com/moretension/duti/"; }; } diff --git a/pkgs/by-name/du/dutree/package.nix b/pkgs/by-name/du/dutree/package.nix index 925d3d01808f..7136befe961a 100644 --- a/pkgs/by-name/du/dutree/package.nix +++ b/pkgs/by-name/du/dutree/package.nix @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-P3h7C6hXKhYBaf0CKlsB+4tnfj/1Aw1iFSlvMNGbSYI="; - meta = with lib; { + meta = { description = "Tool to analyze file system usage written in Rust"; homepage = "https://github.com/nachoparker/dutree"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "dutree"; }; diff --git a/pkgs/by-name/dv/dvd-vr/package.nix b/pkgs/by-name/dv/dvd-vr/package.nix index cea6368174dc..02eeb5ab567a 100644 --- a/pkgs/by-name/dv/dvd-vr/package.nix +++ b/pkgs/by-name/dv/dvd-vr/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation (finalAttrs: { "CFLAGS=-Wno-error=incompatible-pointer-types" ]; - meta = with lib; { + meta = { homepage = "https://www.pixelbeat.org/programs/dvd-vr/"; downloadPage = "https://www.pixelbeat.org/programs/dvd-vr/"; description = "Utility to identify and optionally copy recordings from a DVD-VR format disc"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "dvd-vr"; }; }) diff --git a/pkgs/by-name/dv/dvdauthor/package.nix b/pkgs/by-name/dv/dvdauthor/package.nix index 099670aa2eec..53ce43ecf80c 100644 --- a/pkgs/by-name/dv/dvdauthor/package.nix +++ b/pkgs/by-name/dv/dvdauthor/package.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Tools for generating DVD files to be played on standalone DVD players"; homepage = "https://dvdauthor.sourceforge.net/"; # or https://github.com/ldo/dvdauthor - license = licenses.gpl2; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/dv/dvdplusrwtools/package.nix b/pkgs/by-name/dv/dvdplusrwtools/package.nix index f99641a856db..3f67c4eb97f3 100644 --- a/pkgs/by-name/dv/dvdplusrwtools/package.nix +++ b/pkgs/by-name/dv/dvdplusrwtools/package.nix @@ -90,11 +90,11 @@ stdenv.mkDerivation rec { ] ); - meta = with lib; { + meta = { homepage = "http://fy.chalmers.se/~appro/linux/DVD+RW/tools"; description = "Tools for mastering Blu-ray and DVD+-RW/+-R media"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ gpl2Only publicDomain ]; diff --git a/pkgs/by-name/dv/dvdstyler/package.nix b/pkgs/by-name/dv/dvdstyler/package.nix index 1c4b7170db59..b81f27483f04 100644 --- a/pkgs/by-name/dv/dvdstyler/package.nix +++ b/pkgs/by-name/dv/dvdstyler/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { homepage = "https://www.dvdstyler.org/"; description = "DVD authoring software"; longDescription = '' @@ -126,9 +126,9 @@ stdenv.mkDerivation rec { - copy any menu object or whole menu - customize navigation using DVD scripting ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; mainProgram = "dvdstyler"; }; } diff --git a/pkgs/by-name/dv/dvgrab/package.nix b/pkgs/by-name/dv/dvgrab/package.nix index 01e2a3ac1d1a..f4965d34ac41 100644 --- a/pkgs/by-name/dv/dvgrab/package.nix +++ b/pkgs/by-name/dv/dvgrab/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { description = "Receive and store audio & video over IEEE1394"; longDescription = '' @@ -51,8 +51,8 @@ stdenv.mkDerivation { homepage = "https://github.com/ddennedy/dvgrab"; # Formerly http://www.kinodv.org/ - license = licenses.gpl2Plus; - platforms = platforms.gnu ++ platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.gnu ++ lib.platforms.linux; mainProgram = "dvgrab"; }; } diff --git a/pkgs/by-name/dw/dwarf2json/package.nix b/pkgs/by-name/dw/dwarf2json/package.nix index 7b910440c0ce..d0a1980478f6 100644 --- a/pkgs/by-name/dw/dwarf2json/package.nix +++ b/pkgs/by-name/dw/dwarf2json/package.nix @@ -22,11 +22,11 @@ buildGoModule (finalAttrs: { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { homepage = "https://github.com/volatilityfoundation/dwarf2json"; description = "Convert ELF/DWARF symbol and type information into vol3's intermediate JSON"; - license = licenses.vol-sl; - maintainers = with maintainers; [ + license = lib.licenses.vol-sl; + maintainers = with lib.maintainers; [ arkivm asauzeau ]; diff --git a/pkgs/by-name/dw/dwdiff/package.nix b/pkgs/by-name/dw/dwdiff/package.nix index 9db502a2b367..882c2016d3ed 100644 --- a/pkgs/by-name/dw/dwdiff/package.nix +++ b/pkgs/by-name/dw/dwdiff/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { icu ]; - meta = with lib; { + meta = { description = "Front-end for the diff program that operates at the word level instead of the line level"; homepage = "https://os.ghalkes.nl/dwdiff.html"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/dw/dwmbar/package.nix b/pkgs/by-name/dw/dwmbar/package.nix index e649e508731f..ef592752ace7 100644 --- a/pkgs/by-name/dw/dwmbar/package.nix +++ b/pkgs/by-name/dw/dwmbar/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { install -Dm755 -t $out/bin/ dwmbar ''; - meta = with lib; { + meta = { homepage = "https://github.com/thytom/dwmbar"; description = "Modular Status Bar for dwm"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ baitinq ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ baitinq ]; + platforms = lib.platforms.linux; mainProgram = "dwmbar"; }; } diff --git a/pkgs/by-name/dw/dwmblocks/package.nix b/pkgs/by-name/dw/dwmblocks/package.nix index d861dfb009f6..8524914d0611 100644 --- a/pkgs/by-name/dw/dwmblocks/package.nix +++ b/pkgs/by-name/dw/dwmblocks/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Modular status bar for dwm written in c"; homepage = "https://github.com/torrinfail/dwmblocks"; - license = licenses.isc; - maintainers = with maintainers; [ sophrosyne ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sophrosyne ]; + platforms = lib.platforms.linux; mainProgram = "dwmblocks"; }; } diff --git a/pkgs/by-name/dw/dwz/package.nix b/pkgs/by-name/dw/dwz/package.nix index 361f614770b0..e537deec63c8 100644 --- a/pkgs/by-name/dw/dwz/package.nix +++ b/pkgs/by-name/dw/dwz/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://sourceware.org/dwz/"; description = "DWARF optimization and duplicate removal tool"; mainProgram = "dwz"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ jbcrail ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ jbcrail ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/dx/dxx-rebirth/assets.nix b/pkgs/by-name/dx/dxx-rebirth/assets.nix index fb37b540068e..7bcae8aa148e 100644 --- a/pkgs/by-name/dx/dxx-rebirth/assets.nix +++ b/pkgs/by-name/dx/dxx-rebirth/assets.nix @@ -48,11 +48,11 @@ let runHook postInstall ''; - meta = with lib; { + meta = { description = "Descent ${toString ver} assets from GOG"; homepage = "https://www.dxx-rebirth.com/"; - license = licenses.unfree; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ peterhoeg ]; hydraPlatforms = [ ]; }; }; diff --git a/pkgs/by-name/dx/dxx-rebirth/full.nix b/pkgs/by-name/dx/dxx-rebirth/full.nix index 1bffa245449b..98c07f09e92b 100644 --- a/pkgs/by-name/dx/dxx-rebirth/full.nix +++ b/pkgs/by-name/dx/dxx-rebirth/full.nix @@ -22,15 +22,15 @@ let --add-flags "-hogdir ${assets}/share/games/descent${toString ver}" ''; - meta = with lib; { + meta = { description = "Descent ${toString ver} using the DXX-Rebirth project engine and game assets from GOG"; homepage = "https://www.dxx-rebirth.com/"; - license = with licenses; [ + license = with lib.licenses; [ free unfree ]; - maintainers = with maintainers; [ peterhoeg ]; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = with lib.platforms; linux; hydraPlatforms = [ ]; }; }; diff --git a/pkgs/by-name/dy/dyff/package.nix b/pkgs/by-name/dy/dyff/package.nix index 66d2524271f6..1d73f922e07b 100644 --- a/pkgs/by-name/dy/dyff/package.nix +++ b/pkgs/by-name/dy/dyff/package.nix @@ -46,7 +46,7 @@ buildGoModule rec { --zsh <($out/bin/dyff completion zsh) ''; - meta = with lib; { + meta = { description = "Diff tool for YAML files, and sometimes JSON"; mainProgram = "dyff"; longDescription = '' @@ -58,8 +58,8 @@ buildGoModule rec { using either the Spruce or go-patch path syntax. ''; homepage = "https://github.com/homeport/dyff"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ edlimerkaj jceb ]; diff --git a/pkgs/by-name/dy/dynamic-colors/package.nix b/pkgs/by-name/dy/dynamic-colors/package.nix index b59e413cf87a..17df2cc22ee4 100644 --- a/pkgs/by-name/dy/dynamic-colors/package.nix +++ b/pkgs/by-name/dy/dynamic-colors/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { --replace /usr/share/dynamic-colors $out/share/dynamic-colors ''; - meta = with lib; { + meta = { description = "Change terminal colors on the fly"; homepage = "https://github.com/peterhoeg/dynamic-colors"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "dynamic-colors"; }; } diff --git a/pkgs/by-name/dy/dynamic-wallpaper/package.nix b/pkgs/by-name/dy/dynamic-wallpaper/package.nix index 8a95c70eede9..a2ed7a03b4d2 100644 --- a/pkgs/by-name/dy/dynamic-wallpaper/package.nix +++ b/pkgs/by-name/dy/dynamic-wallpaper/package.nix @@ -55,12 +55,12 @@ python3.pkgs.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Dynamic wallpaper maker for Gnome"; homepage = "https://github.com/dusansimic/dynamic-wallpaper"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "me.dusansimic.DynamicWallpaper"; - maintainers = with maintainers; [ zendo ]; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/dy/dynamodb-local/package.nix b/pkgs/by-name/dy/dynamodb-local/package.nix index 88bd0e960818..e35b0e0db157 100644 --- a/pkgs/by-name/dy/dynamodb-local/package.nix +++ b/pkgs/by-name/dy/dynamodb-local/package.nix @@ -80,15 +80,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "DynamoDB Local is a small client-side database and server that mimics the DynamoDB service"; homepage = "https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "dynamodb-local"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ martinjlowm ]; - platforms = platforms.all; + platforms = lib.platforms.all; sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode diff --git a/pkgs/by-name/dy/dyncall/package.nix b/pkgs/by-name/dy/dyncall/package.nix index 604438b4d3da..1a054088d248 100644 --- a/pkgs/by-name/dy/dyncall/package.nix +++ b/pkgs/by-name/dy/dyncall/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { install -D -t $out/share/man/man3 ./*/*.3 ''; - meta = with lib; { + meta = { description = "Highly dynamic multi-platform foreign function call interface library"; homepage = "https://www.dyncall.org"; - license = licenses.isc; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/by-name/dy/dynein/package.nix b/pkgs/by-name/dy/dynein/package.nix index 114690581a32..23f9347d6c6e 100644 --- a/pkgs/by-name/dy/dynein/package.nix +++ b/pkgs/by-name/dy/dynein/package.nix @@ -42,12 +42,12 @@ rustPlatform.buildRustPackage rec { # will naturally fail for nix build. The CLI tests do not need DynamoDB. cargoTestFlags = [ "cli_tests" ]; - meta = with lib; { + meta = { description = "DynamoDB CLI written in Rust"; mainProgram = "dy"; homepage = "https://github.com/awslabs/dynein"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/e1/e16/package.nix b/pkgs/by-name/e1/e16/package.nix index fde076194437..12320c6b52e8 100644 --- a/pkgs/by-name/e1/e16/package.nix +++ b/pkgs/by-name/e1/e16/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://www.enlightenment.org/e16"; description = "Enlightenment DR16 window manager"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ea/ea/package.nix b/pkgs/by-name/ea/ea/package.nix index 8dc3b5bf6394..fdc82e33dae2 100644 --- a/pkgs/by-name/ea/ea/package.nix +++ b/pkgs/by-name/ea/ea/package.nix @@ -40,10 +40,10 @@ rustPlatform.buildRustPackage rec { installManPage docs/ea.1 ''; - meta = with lib; { + meta = { description = "Makes file paths from CLI output actionable"; homepage = "https://github.com/dduan/ea"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ deejayem ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ deejayem ]; }; } diff --git a/pkgs/by-name/ea/each/package.nix b/pkgs/by-name/ea/each/package.nix index 1c08b1157f2f..d34d9db04aba 100644 --- a/pkgs/by-name/ea/each/package.nix +++ b/pkgs/by-name/ea/each/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-TfAT36/JeBjBxymnX1gIyCEPZcxTW4fPVIOhHF3z9wA="; - meta = with lib; { + meta = { description = "Command-line tool for processing CSV, JSON and other structured data"; mainProgram = "each"; homepage = "https://github.com/arraypad/each"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ thiagokokada ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/by-name/ea/eaglemode/package.nix b/pkgs/by-name/ea/eaglemode/package.nix index 9f240d0d3295..47de71c1090b 100644 --- a/pkgs/by-name/ea/eaglemode/package.nix +++ b/pkgs/by-name/ea/eaglemode/package.nix @@ -135,14 +135,14 @@ stdenv.mkDerivation rec { extraRegex = "(?!.*(x86_64|setup64|livecd)).*"; }; - meta = with lib; { + meta = { homepage = "https://eaglemode.sourceforge.net"; description = "Zoomable User Interface"; changelog = "https://eaglemode.sourceforge.net/ChangeLog.html"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ chuangzhu ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ea/eartag/package.nix b/pkgs/by-name/ea/eartag/package.nix index 4431f6407942..5b6b1e6f705d 100644 --- a/pkgs/by-name/ea/eartag/package.nix +++ b/pkgs/by-name/ea/eartag/package.nix @@ -82,16 +82,16 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/eartag"; description = "Simple music tag editor"; changelog = "https://gitlab.gnome.org/World/eartag/-/releases/${version}"; # This seems to be using ICU license but we're flagging it to MIT license # since ICU license is a modified version of MIT and to prevent it from # being incorrectly identified as unfree software. - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "eartag"; - maintainers = with maintainers; [ foo-dogsquared ]; - teams = [ teams.gnome-circle ]; + maintainers = with lib.maintainers; [ foo-dogsquared ]; + teams = [ lib.teams.gnome-circle ]; }; } diff --git a/pkgs/by-name/ea/easeprobe/package.nix b/pkgs/by-name/ea/easeprobe/package.nix index f8a3ca529cb5..fc8b3194f9c9 100644 --- a/pkgs/by-name/ea/easeprobe/package.nix +++ b/pkgs/by-name/ea/easeprobe/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { "-X github.com/megaease/easeprobe/pkg/version.REPO=megaease/easeprobe" ]; - meta = with lib; { + meta = { description = "Simple, standalone, and lightweight tool that can do health/status checking, written in Go"; homepage = "https://github.com/megaease/easeprobe"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "easeprobe"; }; } diff --git a/pkgs/by-name/ea/easyeda2kicad/package.nix b/pkgs/by-name/ea/easyeda2kicad/package.nix index 01aa63f5fc89..26a3858f77fe 100644 --- a/pkgs/by-name/ea/easyeda2kicad/package.nix +++ b/pkgs/by-name/ea/easyeda2kicad/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonPackage rec { requests ]; - meta = with lib; { + meta = { description = "Convert any LCSC components (including EasyEDA) to KiCad library"; homepage = "https://github.com/uPesy/easyeda2kicad.py"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ ChocolateLoverRaj ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ ChocolateLoverRaj ]; mainProgram = "easyeda2kicad"; }; } diff --git a/pkgs/by-name/ea/easyjson/package.nix b/pkgs/by-name/ea/easyjson/package.nix index bd8f834af14c..1d8ba2b100f3 100644 --- a/pkgs/by-name/ea/easyjson/package.nix +++ b/pkgs/by-name/ea/easyjson/package.nix @@ -18,10 +18,10 @@ buildGoModule rec { subPackages = [ "easyjson" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mailru/easyjson"; description = "Fast JSON serializer for Go"; mainProgram = "easyjson"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ea/easypdkprog/package.nix b/pkgs/by-name/ea/easypdkprog/package.nix index a0a40700041c..ebd7713b6681 100644 --- a/pkgs/by-name/ea/easypdkprog/package.nix +++ b/pkgs/by-name/ea/easypdkprog/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { install -Dm644 -t $out/etc/udev/rules.d Linux_udevrules/70-stm32vcp.rules ''; - meta = with lib; { + meta = { description = "Read, write and execute programs on PADAUK microcontroller"; mainProgram = "easypdkprog"; homepage = "https://github.com/free-pdk/easy-pdk-programmer-software"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ david-sawatzke ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ david-sawatzke ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ea/easyrpg-player/package.nix b/pkgs/by-name/ea/easyrpg-player/package.nix index 1105324c7f32..7174c5be81c5 100644 --- a/pkgs/by-name/ea/easyrpg-player/package.nix +++ b/pkgs/by-name/ea/easyrpg-player/package.nix @@ -120,12 +120,12 @@ stdenv.mkDerivation rec { enableParallelChecking = true; doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; - meta = with lib; { + meta = { description = "RPG Maker 2000/2003 and EasyRPG games interpreter"; homepage = "https://easyrpg.org/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = lib.optionalString stdenv.hostPlatform.isDarwin "EasyRPG Player"; }; } diff --git a/pkgs/by-name/ea/easyrsa/package.nix b/pkgs/by-name/ea/easyrsa/package.nix index 54cf6d87c256..87b31e3b12ef 100644 --- a/pkgs/by-name/ea/easyrsa/package.nix +++ b/pkgs/by-name/ea/easyrsa/package.nix @@ -59,14 +59,14 @@ stdenv.mkDerivation rec { openssl x509 -in pki/ca.crt -noout -subject | tee /dev/stderr | grep -zq "$EASYRSA_REQ_CN" ''; - meta = with lib; { + meta = { description = "Simple shell based CA utility"; homepage = "https://openvpn.net/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ - maintainers.offline - maintainers.numinit + lib.maintainers.offline + lib.maintainers.numinit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ea/easysnap/package.nix b/pkgs/by-name/ea/easysnap/package.nix index 027330843168..4a5b6cbd64dd 100644 --- a/pkgs/by-name/ea/easysnap/package.nix +++ b/pkgs/by-name/ea/easysnap/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/sjau/easysnap"; description = "Customizable ZFS Snapshotting tool with zfs send/recv pulling"; - license = licenses.gpl3; - maintainers = with maintainers; [ sjau ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ sjau ]; }; } diff --git a/pkgs/by-name/ea/easytag/package.nix b/pkgs/by-name/ea/easytag/package.nix index 9978861a6873..1f3fb23e165d 100644 --- a/pkgs/by-name/ea/easytag/package.nix +++ b/pkgs/by-name/ea/easytag/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "View and edit tags for various audio files"; mainProgram = "easytag"; homepage = "https://gitlab.gnome.org/GNOME/easytag"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ matteopacini ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ matteopacini ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/eb/eb-garamond/package.nix b/pkgs/by-name/eb/eb-garamond/package.nix index e2417fd380b7..7376c05b7121 100644 --- a/pkgs/by-name/eb/eb-garamond/package.nix +++ b/pkgs/by-name/eb/eb-garamond/package.nix @@ -42,15 +42,15 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.georgduffner.at/ebgaramond/"; description = "Digitization of the Garamond shown on the Egenolff-Berner specimen"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bengsparks relrod rycee ]; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/eb/ebook2cw/package.nix b/pkgs/by-name/eb/ebook2cw/package.nix index 730b10af6f3b..467c44806b6f 100644 --- a/pkgs/by-name/eb/ebook2cw/package.nix +++ b/pkgs/by-name/eb/ebook2cw/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Convert ebooks to Morse MP3s/OGGs"; homepage = "https://fkurz.net/ham/ebook2cw.html"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = with maintainers; [ earldouglas ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ earldouglas ]; mainProgram = "ebook2cw"; }; } diff --git a/pkgs/by-name/eb/ebook_tools/package.nix b/pkgs/by-name/eb/ebook_tools/package.nix index 63941366f0ca..367a22630b0b 100644 --- a/pkgs/by-name/eb/ebook_tools/package.nix +++ b/pkgs/by-name/eb/ebook_tools/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { libzip ]; - meta = with lib; { + meta = { homepage = "http://ebook-tools.sourceforge.net"; description = "Tools and library for dealing with various ebook file formats"; maintainers = [ ]; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/eb/ebpf-usb/package.nix b/pkgs/by-name/eb/ebpf-usb/package.nix index b7c3f18e17c3..0530ea3e87a3 100644 --- a/pkgs/by-name/eb/ebpf-usb/package.nix +++ b/pkgs/by-name/eb/ebpf-usb/package.nix @@ -42,11 +42,11 @@ python3Packages.buildPythonApplication { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Python script for USB monitoring using eBPF"; homepage = "https://github.com/francisrstokes/ebpf-usb"; license = lib.licenses.unfree; - maintainers = with maintainers; [ mevatron ]; + maintainers = with lib.maintainers; [ mevatron ]; mainProgram = "ebpf-usb"; }; } diff --git a/pkgs/by-name/eb/ebtables/package.nix b/pkgs/by-name/eb/ebtables/package.nix index 56afed5ce29c..cf5c319b9e11 100644 --- a/pkgs/by-name/eb/ebtables/package.nix +++ b/pkgs/by-name/eb/ebtables/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { ln -s $out/sbin/ebtables-legacy-save $out/sbin/ebtables-save ''; - meta = with lib; { + meta = { description = "Filtering tool for Linux-based bridging firewalls"; homepage = "http://ebtables.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/eb/ebumeter/package.nix b/pkgs/by-name/eb/ebumeter/package.nix index 5dc093462e81..fbc91d360afb 100644 --- a/pkgs/by-name/eb/ebumeter/package.nix +++ b/pkgs/by-name/eb/ebumeter/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Level metering according to the EBU R-128 recommendation"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/eb/ebusd/package.nix b/pkgs/by-name/eb/ebusd/package.nix index cc2a2e9d7f02..c06cdd3280ca 100644 --- a/pkgs/by-name/eb/ebusd/package.nix +++ b/pkgs/by-name/eb/ebusd/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { rmdir $out/usr ''; - meta = with lib; { + meta = { description = "ebusd"; homepage = "https://github.com/john30/ebusd"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nathan-gs ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nathan-gs ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ec/ec2-metadata-mock/package.nix b/pkgs/by-name/ec/ec2-metadata-mock/package.nix index d8a00b226135..5e683843c6f5 100644 --- a/pkgs/by-name/ec/ec2-metadata-mock/package.nix +++ b/pkgs/by-name/ec/ec2-metadata-mock/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/{cmd,ec2-metadata-mock} ''; - meta = with lib; { + meta = { description = "Amazon EC2 Metadata Mock"; mainProgram = "ec2-metadata-mock"; homepage = "https://github.com/aws/amazon-ec2-metadata-mock"; - license = licenses.asl20; - maintainers = with maintainers; [ ymatsiuk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ymatsiuk ]; }; } diff --git a/pkgs/by-name/ec/ecc/package.nix b/pkgs/by-name/ec/ecc/package.nix index 4e5674197821..eee363c6d73e 100644 --- a/pkgs/by-name/ec/ecc/package.nix +++ b/pkgs/by-name/ec/ecc/package.nix @@ -123,12 +123,12 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { homepage = "https://eunomia.dev"; description = "EBPF compile toolchain for eunomia-bpf"; mainProgram = "ecc-rs"; - maintainers = with maintainers; [ oluceps ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = with lib.maintainers; [ oluceps ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ec/ecdsatool/package.nix b/pkgs/by-name/ec/ecdsatool/package.nix index e06e549358ca..4110f5f4a4d3 100644 --- a/pkgs/by-name/ec/ecdsatool/package.nix +++ b/pkgs/by-name/ec/ecdsatool/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { ]; buildInputs = with pkgs; [ libuecc ]; - meta = with lib; { + meta = { description = "Create and manipulate ECC NISTP256 keypairs"; mainProgram = "ecdsatool"; homepage = "https://github.com/kaniini/ecdsatool/"; - license = with licenses; [ free ]; - platforms = platforms.unix; + license = with lib.licenses; [ free ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ec/ecdsautils/package.nix b/pkgs/by-name/ec/ecdsautils/package.nix index 3c90fcd5c8ba..e3d6138ada15 100644 --- a/pkgs/by-name/ec/ecdsautils/package.nix +++ b/pkgs/by-name/ec/ecdsautils/package.nix @@ -37,14 +37,14 @@ stdenv.mkDerivation { ]; buildInputs = [ libuecc ]; - meta = with lib; { + meta = { description = "Tiny collection of programs used for ECDSA (keygen, sign, verify)"; homepage = "https://github.com/freifunk-gluon/ecdsautils/"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd2 ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ec/eclair/package.nix b/pkgs/by-name/ec/eclair/package.nix index df47d3a05d44..e4188ae850b2 100644 --- a/pkgs/by-name/ec/eclair/package.nix +++ b/pkgs/by-name/ec/eclair/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Scala implementation of the Lightning Network"; homepage = "https://github.com/ACINQ/eclair"; - license = licenses.asl20; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ec/eclib/package.nix b/pkgs/by-name/ec/eclib/package.nix index 906a5a2e44ac..4a58e66eaf1b 100644 --- a/pkgs/by-name/ec/eclib/package.nix +++ b/pkgs/by-name/ec/eclib/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { autoreconfHook ]; doCheck = true; - meta = with lib; { + meta = { description = "Elliptic curve tools"; homepage = "https://github.com/JohnCremona/eclib"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ec/eclint/package.nix b/pkgs/by-name/ec/eclint/package.nix index 9a07e8c9b15f..106b4a4bf387 100644 --- a/pkgs/by-name/ec/eclint/package.nix +++ b/pkgs/by-name/ec/eclint/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { ldflags = [ "-X main.version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/greut/eclint"; description = "EditorConfig linter written in Go"; mainProgram = "eclint"; - license = licenses.mit; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/ec/eclipse-mat/package.nix b/pkgs/by-name/ec/eclipse-mat/package.nix index dc142a000445..0da8dc8710c5 100644 --- a/pkgs/by-name/ec/eclipse-mat/package.nix +++ b/pkgs/by-name/ec/eclipse-mat/package.nix @@ -114,7 +114,7 @@ stdenv.mkDerivation rec { dontBuild = true; dontConfigure = true; - meta = with lib; { + meta = { description = "Fast and feature-rich Java heap analyzer"; mainProgram = "eclipse-mat"; longDescription = '' @@ -126,9 +126,9 @@ stdenv.mkDerivation rec { run a report to automatically extract leak suspects. ''; homepage = "https://www.eclipse.org/mat"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.epl20; - maintainers = [ maintainers.ktor ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.epl20; + maintainers = [ lib.maintainers.ktor ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ec/ecopcr/package.nix b/pkgs/by-name/ec/ecopcr/package.nix index c337244350fa..27f8b07f0e59 100644 --- a/pkgs/by-name/ec/ecopcr/package.nix +++ b/pkgs/by-name/ec/ecopcr/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { chmod a+x $out/bin/ecoPCRFormat ''; - meta = with lib; { + meta = { description = "Electronic PCR software tool"; longDescription = '' ecoPCR is an electronic PCR software developed by the LECA. It @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { developed using the ecoPrimers software. ''; homepage = "https://git.metabarcoding.org/obitools/ecopcr/wikis/home"; - license = licenses.cecill20; + license = lib.licenses.cecill20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ec/ecpdap/package.nix b/pkgs/by-name/ec/ecpdap/package.nix index c4d4b835ef6e..573006575de2 100644 --- a/pkgs/by-name/ec/ecpdap/package.nix +++ b/pkgs/by-name/ec/ecpdap/package.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { cp drivers/*.rules $out/etc/udev/rules.d ''; - meta = with lib; { + meta = { description = "Tool to program ECP5 FPGAs"; mainProgram = "ecpdap"; longDescription = '' @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec { using CMSIS-DAP probes in JTAG mode. ''; homepage = "https://github.com/adamgreig/ecpdap"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ec/ecryptfs/package.nix b/pkgs/by-name/ec/ecryptfs/package.nix index ca7ad28850a1..e2ca444fcead 100644 --- a/pkgs/by-name/ec/ecryptfs/package.nix +++ b/pkgs/by-name/ec/ecryptfs/package.nix @@ -98,10 +98,10 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) ecryptfs; }; - meta = with lib; { + meta = { description = "Enterprise-class stacked cryptographic filesystem"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ec/ecwolf/package.nix b/pkgs/by-name/ec/ecwolf/package.nix index a889cf770b27..25c6cb40a177 100644 --- a/pkgs/by-name/ec/ecwolf/package.nix +++ b/pkgs/by-name/ec/ecwolf/package.nix @@ -92,14 +92,14 @@ stdenv.mkDerivation (finalAttrs: { (lib.getExe nix-update) ]; - meta = with lib; { + meta = { description = "Enhanched SDL-based port of Wolfenstein 3D for various platforms"; mainProgram = "ecwolf"; homepage = "https://maniacsvault.net/ecwolf/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ jayman2000 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ed/edac-utils/package.nix b/pkgs/by-name/ed/edac-utils/package.nix index 233871149f09..3fd289e46c58 100644 --- a/pkgs/by-name/ed/edac-utils/package.nix +++ b/pkgs/by-name/ed/edac-utils/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation { rm -r "$out"/etc/init.d ''; - meta = with lib; { + meta = { homepage = "https://github.com/grondo/edac-utils"; description = "Handles the reporting of hardware-related memory errors"; mainProgram = "edac-util"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ed/eddy/package.nix b/pkgs/by-name/ed/eddy/package.nix index 12ce7e3cd560..c7b77bf5d69c 100644 --- a/pkgs/by-name/ed/eddy/package.nix +++ b/pkgs/by-name/ed/eddy/package.nix @@ -38,12 +38,12 @@ python3Packages.buildPythonApplication rec { wrapQtApp "$out/bin/eddy" --prefix JAVA_HOME : ${jre} ''; - meta = with lib; { + meta = { homepage = "http://www.obdasystems.com/eddy"; description = "Graphical editor for the specification and visualization of Graphol ontologies"; mainProgram = "eddy"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ koslambrou ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ koslambrou ]; }; } diff --git a/pkgs/by-name/ed/edgetpu-compiler/package.nix b/pkgs/by-name/ed/edgetpu-compiler/package.nix index 589ed88bda48..be24bad0b833 100644 --- a/pkgs/by-name/ed/edgetpu-compiler/package.nix +++ b/pkgs/by-name/ed/edgetpu-compiler/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line tool that compiles a TensorFlow Lite model into an Edge TPU compatible file"; mainProgram = "edgetpu_compiler"; homepage = "https://coral.ai/docs/edgetpu/compiler"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.asl20; - maintainers = with maintainers; [ cpcloud ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ed/edir/package.nix b/pkgs/by-name/ed/edir/package.nix index 4f10833b06f7..5eba7fa83312 100644 --- a/pkgs/by-name/ed/edir/package.nix +++ b/pkgs/by-name/ed/edir/package.nix @@ -22,12 +22,12 @@ python3Packages.buildPythonApplication rec { platformdirs ]; - meta = with lib; { + meta = { description = "Program to rename and remove files and directories using your editor"; homepage = "https://github.com/bulletmark/edir"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ guyonvarch ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ guyonvarch ]; + platforms = lib.platforms.all; mainProgram = "edir"; }; } diff --git a/pkgs/by-name/ed/editline/package.nix b/pkgs/by-name/ed/editline/package.nix index 5942578b4896..716652c16190 100644 --- a/pkgs/by-name/ed/editline/package.nix +++ b/pkgs/by-name/ed/editline/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://troglobit.com/projects/editline/"; description = "Readline() replacement for UNIX without termcap (ncurses)"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ oxalica ]; - platforms = platforms.all; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ oxalica ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ed/editorconfig-core-c/package.nix b/pkgs/by-name/ed/editorconfig-core-c/package.nix index 4dbcd1299448..bbad13fdb5de 100644 --- a/pkgs/by-name/ed/editorconfig-core-c/package.nix +++ b/pkgs/by-name/ed/editorconfig-core-c/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { # parallel: https://github.com/doxygen/doxygen/issues/6293 enableParallelBuilding = false; - meta = with lib; { + meta = { homepage = "https://editorconfig.org/"; description = "EditorConfig core library written in C"; longDescription = '' @@ -49,12 +49,12 @@ stdenv.mkDerivation (finalAttrs: { editors, see the EditorConfig website. ''; downloadPage = "https://github.com/editorconfig/editorconfig-core-c"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 ]; - maintainers = with maintainers; [ dochang ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ dochang ]; + platforms = lib.platforms.unix; mainProgram = "editorconfig"; }; }) diff --git a/pkgs/by-name/ed/edl/package.nix b/pkgs/by-name/ed/edl/package.nix index bb54dd954c9e..125d72eed9d2 100644 --- a/pkgs/by-name/ed/edl/package.nix +++ b/pkgs/by-name/ed/edl/package.nix @@ -49,12 +49,12 @@ python3Packages.buildPythonPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/bkerler/edl"; description = "Qualcomm EDL tool (Sahara / Firehose / Diag)"; # See https://github.com/NixOS/nixpkgs/issues/348931 - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ lorenz xddxdd ]; diff --git a/pkgs/by-name/ed/edlin/package.nix b/pkgs/by-name/ed/edlin/package.nix index 3bdcce837733..f5400869a1bc 100644 --- a/pkgs/by-name/ed/edlin/package.nix +++ b/pkgs/by-name/ed/edlin/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { cp AUTHORS ChangeLog README TODO edlin.htm $out/share/doc/edlin-${finalAttrs.version}/ ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/freedos-edlin/"; description = "FreeDOS line editor"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; mainProgram = "edlin"; }; }) diff --git a/pkgs/by-name/ed/edname/package.nix b/pkgs/by-name/ed/edname/package.nix index f1f3c46f6137..92727ed16838 100644 --- a/pkgs/by-name/ed/edname/package.nix +++ b/pkgs/by-name/ed/edname/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation { }" ''; - meta = with lib; { + meta = { description = "Mass renamer using $EDITOR"; - license = licenses.mit; - maintainers = [ maintainers.tudbut ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.tudbut ]; homepage = "https://git.tudbut.de/TudbuT/edname"; mainProgram = "edname"; }; diff --git a/pkgs/by-name/ed/edwin/package.nix b/pkgs/by-name/ed/edwin/package.nix index fc2a84215fa9..506e8d5cd389 100644 --- a/pkgs/by-name/ed/edwin/package.nix +++ b/pkgs/by-name/ed/edwin/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Text font for musical scores"; homepage = "https://github.com/MuseScoreFonts/Edwin"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/ed/edwood/package.nix b/pkgs/by-name/ed/edwood/package.nix index 04fc2084ffb1..f742ab2742e2 100644 --- a/pkgs/by-name/ed/edwood/package.nix +++ b/pkgs/by-name/ed/edwood/package.nix @@ -39,14 +39,14 @@ buildGoModule rec { doCheck = false; # Tests has lots of hardcoded mess. - meta = with lib; { + meta = { description = "Go version of Plan9 Acme Editor"; homepage = "https://github.com/rjkroege/edwood"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd3 ]; - maintainers = with maintainers; [ kranzes ]; + maintainers = with lib.maintainers; [ kranzes ]; mainProgram = "edwood"; }; } diff --git a/pkgs/by-name/ef/eff/package.nix b/pkgs/by-name/ef/eff/package.nix index 95e041383fdf..88e4fa3e418a 100644 --- a/pkgs/by-name/ef/eff/package.nix +++ b/pkgs/by-name/ef/eff/package.nix @@ -25,7 +25,7 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://www.eff-lang.org"; description = "Functional programming language based on algebraic effects and their handlers"; mainProgram = "eff"; @@ -35,7 +35,7 @@ buildDunePackage rec { handlers, you can simply implement transactions, redirections, backtracking, multi-threading, and much more... ''; - license = licenses.bsd2; - maintainers = [ maintainers.jirkamarsik ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.jirkamarsik ]; }; } diff --git a/pkgs/by-name/ef/effitask/package.nix b/pkgs/by-name/ef/effitask/package.nix index 780bea8cf498..2c7e2517e564 100644 --- a/pkgs/by-name/ef/effitask/package.nix +++ b/pkgs/by-name/ef/effitask/package.nix @@ -35,7 +35,7 @@ rustPlatform.buildRustPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Graphical task manager, based on the todo.txt format"; longDescription = '' To use it as todo.sh add-on, create a symlink like this: @@ -46,8 +46,8 @@ rustPlatform.buildRustPackage rec { like described in the projects readme. ''; homepage = "https://github.com/sanpii/effitask"; - maintainers = with maintainers; [ davidak ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ davidak ]; + license = with lib.licenses; [ mit ]; mainProgram = "effitask"; }; } diff --git a/pkgs/by-name/ef/efitools/package.nix b/pkgs/by-name/ef/efitools/package.nix index 5248199c6873..2264bc37113c 100644 --- a/pkgs/by-name/ef/efitools/package.nix +++ b/pkgs/by-name/ef/efitools/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { patchShebangs . ''; - meta = with lib; { + meta = { description = "Tools for manipulating UEFI secure boot platforms"; homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/efitools.git"; - license = licenses.gpl2Only; - maintainers = [ maintainers.grahamc ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.grahamc ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ef/efivar/package.nix b/pkgs/by-name/ef/efivar/package.nix index db2384faf3d8..85ed7dc3265d 100644 --- a/pkgs/by-name/ef/efivar/package.nix +++ b/pkgs/by-name/ef/efivar/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { "PCDIR=$(dev)/lib/pkgconfig" ]; - meta = with lib; { + meta = { description = "Tools and library to manipulate EFI variables"; homepage = "https://github.com/rhboot/efivar"; - platforms = platforms.linux; - license = licenses.lgpl21Only; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Only; # See https://github.com/NixOS/nixpkgs/issues/388309 broken = stdenv.hostPlatform.is32bit; }; diff --git a/pkgs/by-name/ef/efm-langserver/package.nix b/pkgs/by-name/ef/efm-langserver/package.nix index d87544198d27..f60f9b40dcb6 100644 --- a/pkgs/by-name/ef/efm-langserver/package.nix +++ b/pkgs/by-name/ef/efm-langserver/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-FOAKxKqhrUpfXkoasSd7v3kKAqV11p5ieZaMPni5Hx4="; subPackages = [ "." ]; - meta = with lib; { + meta = { description = "General purpose Language Server"; mainProgram = "efm-langserver"; - maintainers = with maintainers; [ Philipp-M ]; + maintainers = with lib.maintainers; [ Philipp-M ]; homepage = "https://github.com/mattn/efm-langserver"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ef/efont-unicode/package.nix b/pkgs/by-name/ef/efont-unicode/package.nix index 5f62f9eb627f..b01dfb81f8c6 100644 --- a/pkgs/by-name/ef/efont-unicode/package.nix +++ b/pkgs/by-name/ef/efont-unicode/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { "bdf" ]; - meta = with lib; { + meta = { description = "/efont/ Unicode bitmap font"; homepage = "http://openlab.ring.gr.jp/efont/unicode/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = [ maintainers.ncfavier ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.ncfavier ]; }; } diff --git a/pkgs/by-name/eg/eggdbus/package.nix b/pkgs/by-name/eg/eggdbus/package.nix index 69797db314cd..c64bdca6f133 100644 --- a/pkgs/by-name/eg/eggdbus/package.nix +++ b/pkgs/by-name/eg/eggdbus/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { dbus-glib ]; - meta = with lib; { + meta = { homepage = "https://hal.freedesktop.org/releases/"; description = "D-Bus bindings for GObject"; - platforms = platforms.linux; - license = licenses.lgpl2; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/eg/eggdrop/package.nix b/pkgs/by-name/eg/eggdrop/package.nix index da007bc129f7..29aa8b1c62a8 100644 --- a/pkgs/by-name/eg/eggdrop/package.nix +++ b/pkgs/by-name/eg/eggdrop/package.nix @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { "--with-tclinc=${tcl}/include/tcl.h" ]; - meta = with lib; { - license = licenses.gpl2Plus; - platforms = platforms.unix; + meta = { + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; homepage = "https://www.eggheads.org"; description = "Internet Relay Chat (IRC) bot"; }; diff --git a/pkgs/by-name/eg/egglog/package.nix b/pkgs/by-name/eg/egglog/package.nix index f2d549b443d4..ed25f80220c8 100644 --- a/pkgs/by-name/eg/egglog/package.nix +++ b/pkgs/by-name/eg/egglog/package.nix @@ -19,12 +19,12 @@ rustPlatform.buildRustPackage rec { useNextest = true; - meta = with lib; { + meta = { description = "Fixpoint reasoning system that unifies Datalog and equality saturation"; mainProgram = "egglog"; homepage = "https://github.com/egraphs-good/egglog"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ XBagon ]; }; diff --git a/pkgs/by-name/eg/eggnog-mapper/package.nix b/pkgs/by-name/eg/eggnog-mapper/package.nix index b557e76b13be..3c7f5d0557d8 100644 --- a/pkgs/by-name/eg/eggnog-mapper/package.nix +++ b/pkgs/by-name/eg/eggnog-mapper/package.nix @@ -47,11 +47,11 @@ python3Packages.buildPythonApplication rec { # the user can download only those that interest them. doCheck = false; - meta = with lib; { + meta = { description = "Fast genome-wide functional annotation through orthology assignment"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://github.com/eggnogdb/eggnog-mapper/wiki"; - maintainers = with maintainers; [ luispedro ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ luispedro ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/eg/egl-wayland/package.nix b/pkgs/by-name/eg/egl-wayland/package.nix index 27d10fac4f8c..391710e934e4 100644 --- a/pkgs/by-name/eg/egl-wayland/package.nix +++ b/pkgs/by-name/eg/egl-wayland/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { eglexternalplatform ]; - meta = with lib; { + meta = { description = "EGLStream-based Wayland external platform"; homepage = "https://github.com/NVIDIA/egl-wayland/"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ hedning ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hedning ]; }; } diff --git a/pkgs/by-name/eg/eglexternalplatform/package.nix b/pkgs/by-name/eg/eglexternalplatform/package.nix index d07a0c48a017..2ec8c102ec2f 100644 --- a/pkgs/by-name/eg/eglexternalplatform/package.nix +++ b/pkgs/by-name/eg/eglexternalplatform/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { ninja ]; - meta = with lib; { + meta = { description = "EGL External Platform interface"; homepage = "https://github.com/NVIDIA/eglexternalplatform"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ hedning ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hedning ]; }; } diff --git a/pkgs/by-name/eg/egypt/package.nix b/pkgs/by-name/eg/egypt/package.nix index 71edbdb891f5..6c2a1d3fabd5 100644 --- a/pkgs/by-name/eg/egypt/package.nix +++ b/pkgs/by-name/eg/egypt/package.nix @@ -19,7 +19,7 @@ perlPackages.buildPerlPackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Tool for making call graphs of C programmes"; mainProgram = "egypt"; longDescription = '' @@ -31,10 +31,10 @@ perlPackages.buildPerlPackage rec { together. ''; homepage = "http://www.gson.org/egypt/"; - license = with licenses; [ + license = with lib.licenses; [ artistic1 gpl1Plus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ei/eiciel/package.nix b/pkgs/by-name/ei/eiciel/package.nix index 480eec91c288..229ef3e9470d 100644 --- a/pkgs/by-name/ei/eiciel/package.nix +++ b/pkgs/by-name/ei/eiciel/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { "-Dnautilus-extension-dir=${placeholder "nautilusExtension"}/lib/nautilus/extensions-4" ]; - meta = with lib; { + meta = { description = "Graphical editor for ACLs and extended attributes"; homepage = "https://rofi.roger-ferrer.org/eiciel/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "eiciel"; }; } diff --git a/pkgs/by-name/ei/eigen2/package.nix b/pkgs/by-name/ei/eigen2/package.nix index 3a00c45c4331..fa28930070f8 100644 --- a/pkgs/by-name/ei/eigen2/package.nix +++ b/pkgs/by-name/ei/eigen2/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { # https://github.com/NixOS/nixpkgs/issues/445447 patches = [ ./cmake-4-build.patch ]; - meta = with lib; { + meta = { homepage = "https://eigen.tuxfamily.org"; description = "C++ template library for linear algebra: vectors, matrices, and related algorithms"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ei/eigen_3_4_0/package.nix b/pkgs/by-name/ei/eigen_3_4_0/package.nix index fd3812c126d8..edf197fbea54 100644 --- a/pkgs/by-name/ei/eigen_3_4_0/package.nix +++ b/pkgs/by-name/ei/eigen_3_4_0/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://eigen.tuxfamily.org"; description = "C++ template library for linear algebra: vectors, matrices, and related algorithms"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ raskin pbsds ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ei/eigenlayer/package.nix b/pkgs/by-name/ei/eigenlayer/package.nix index f42ee2ff6c58..c17b0d883410 100644 --- a/pkgs/by-name/ei/eigenlayer/package.nix +++ b/pkgs/by-name/ei/eigenlayer/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://www.eigenlayer.xyz/"; changelog = "https://github.com/Layr-Labs/eigenlayer-cli/releases/tag/${src.rev}"; description = "Utility that manages core operator functionalities like local keys, operator registration and updates"; mainProgram = "eigenlayer"; - license = licenses.bsl11; - maintainers = with maintainers; [ selfuryon ]; + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ selfuryon ]; }; } diff --git a/pkgs/by-name/ei/eigenmath/package.nix b/pkgs/by-name/ei/eigenmath/package.nix index b4516f825709..50e839c4fd6e 100644 --- a/pkgs/by-name/ei/eigenmath/package.nix +++ b/pkgs/by-name/ei/eigenmath/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "Computer algebra system written in C"; mainProgram = "eigenmath"; homepage = "https://georgeweigt.github.io"; - license = licenses.bsd2; - maintainers = with maintainers; [ nickcao ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nickcao ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ei/eiwd/package.nix b/pkgs/by-name/ei/eiwd/package.nix index 5cb995f09772..3ad6e7578775 100644 --- a/pkgs/by-name/ei/eiwd/package.nix +++ b/pkgs/by-name/ei/eiwd/package.nix @@ -81,10 +81,10 @@ stdenv.mkDerivation (finalAttrs: { cp -a test/* $test/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/illiliti/eiwd/"; description = "Fork of iwd (wifi daemon) which does not require dbus"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ej/ejson/package.nix b/pkgs/by-name/ej/ejson/package.nix index 90553d5aec95..9c5179dee2e1 100644 --- a/pkgs/by-name/ej/ejson/package.nix +++ b/pkgs/by-name/ej/ejson/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Small library to manage encrypted secrets using asymmetric encryption"; mainProgram = "ejson"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Shopify/ejson"; - maintainers = [ maintainers.manveru ]; + maintainers = [ lib.maintainers.manveru ]; }; } diff --git a/pkgs/by-name/ej/ejson2env/package.nix b/pkgs/by-name/ej/ejson2env/package.nix index 940bfd4d7fff..a4a27f9cf20a 100644 --- a/pkgs/by-name/ej/ejson2env/package.nix +++ b/pkgs/by-name/ej/ejson2env/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Decrypt EJSON secrets and export them as environment variables"; homepage = "https://github.com/Shopify/ejson2env"; - maintainers = with maintainers; [ viraptor ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ viraptor ]; + license = lib.licenses.mit; mainProgram = "ejson2env"; }; } diff --git a/pkgs/by-name/ej/ejsonkms/package.nix b/pkgs/by-name/ej/ejsonkms/package.nix index 9226f72ae75e..15acdd383a80 100644 --- a/pkgs/by-name/ej/ejsonkms/package.nix +++ b/pkgs/by-name/ej/ejsonkms/package.nix @@ -34,10 +34,10 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Integrates EJSON with AWS KMS"; homepage = "https://github.com/envato/ejsonkms"; - license = licenses.mit; - maintainers = with maintainers; [ viraptor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ viraptor ]; }; } diff --git a/pkgs/by-name/ek/ekam/package.nix b/pkgs/by-name/ek/ekam/package.nix index 1de11de315c7..95cfb71c66eb 100644 --- a/pkgs/by-name/ek/ekam/package.nix +++ b/pkgs/by-name/ek/ekam/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation { rm $out/bin/ekam-bootstrap ''; - meta = with lib; { + meta = { description = ''Build system ("make" in reverse)''; longDescription = '' Ekam ("make" spelled backwards) is a build system which automatically @@ -72,8 +72,8 @@ stdenv.mkDerivation { source code. No separate "makefile" is needed. ''; homepage = "https://github.com/capnproto/ekam"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = [ maintainers.garrison ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.garrison ]; }; } diff --git a/pkgs/by-name/el/elastic/package.nix b/pkgs/by-name/el/elastic/package.nix index 7ef33ffac2cc..d2457424acfe 100644 --- a/pkgs/by-name/el/elastic/package.nix +++ b/pkgs/by-name/el/elastic/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Design spring animations"; homepage = "https://gitlab.gnome.org/World/elastic/"; mainProgram = "app.drey.Elastic"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ _0xMRTT ]; - teams = [ teams.gnome-circle ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ _0xMRTT ]; + teams = [ lib.teams.gnome-circle ]; }; } diff --git a/pkgs/by-name/el/elasticmq-server-bin/package.nix b/pkgs/by-name/el/elasticmq-server-bin/package.nix index 4086398b20e8..cffe151abb0e 100644 --- a/pkgs/by-name/el/elasticmq-server-bin/package.nix +++ b/pkgs/by-name/el/elasticmq-server-bin/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation (finalAttrs: { elasticmq-server = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Message queueing system with Java, Scala and Amazon SQS-compatible interfaces"; homepage = "https://github.com/softwaremill/elasticmq"; changelog = "https://github.com/softwaremill/elasticmq/releases/tag/v${finalAttrs.version}"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "elasticmq-server"; }; }) diff --git a/pkgs/by-name/el/elastix/package.nix b/pkgs/by-name/el/elastix/package.nix index eb758bc1541a..6874a93a18f9 100644 --- a/pkgs/by-name/el/elastix/package.nix +++ b/pkgs/by-name/el/elastix/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation (finalAttrs: { doCheck = !stdenv.hostPlatform.isDarwin; # usual dynamic linker issues - meta = with lib; { + meta = { homepage = "https://elastix.dev"; description = "Image registration toolkit based on ITK"; changelog = "https://github.com/SuperElastix/elastix/releases/tag/${finalAttrs.version}"; - maintainers = with maintainers; [ bcdarwin ]; + maintainers = with lib.maintainers; [ bcdarwin ]; mainProgram = "elastix"; - platforms = platforms.x86_64; # libitkpng linker issues with ITK 5.1 - license = licenses.asl20; + platforms = lib.platforms.x86_64; # libitkpng linker issues with ITK 5.1 + license = lib.licenses.asl20; }; }) diff --git a/pkgs/by-name/el/electricsheep/package.nix b/pkgs/by-name/el/electricsheep/package.nix index 21d674957375..7fb02d70d2bf 100644 --- a/pkgs/by-name/el/electricsheep/package.nix +++ b/pkgs/by-name/el/electricsheep/package.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation { sed -i "s|/usr|$out|" Makefile ''; - meta = with lib; { + meta = { description = "Electric Sheep, a distributed screen saver for evolving artificial organisms"; homepage = "https://electricsheep.org/"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/el/electron-fiddle/package.nix b/pkgs/by-name/el/electron-fiddle/package.nix index 1670b582f877..85d7c0689272 100644 --- a/pkgs/by-name/el/electron-fiddle/package.nix +++ b/pkgs/by-name/el/electron-fiddle/package.nix @@ -165,12 +165,12 @@ buildFHSEnv { # https://github.com/electron/electron/issues/13972 ]; - meta = with lib; { + meta = { description = "Easiest way to get started with Electron"; homepage = "https://www.electronjs.org/fiddle"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "electron-fiddle"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ andersk tomasajt ]; diff --git a/pkgs/by-name/el/electrs/package.nix b/pkgs/by-name/el/electrs/package.nix index 70a0dc81c99a..020fa7cf23ed 100644 --- a/pkgs/by-name/el/electrs/package.nix +++ b/pkgs/by-name/el/electrs/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Efficient re-implementation of Electrum Server in Rust"; homepage = "https://github.com/romanz/electrs"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; mainProgram = "electrs"; }; }) diff --git a/pkgs/by-name/el/elektroid/package.nix b/pkgs/by-name/el/elektroid/package.nix index 0441e2a3f500..a433315f4bc3 100644 --- a/pkgs/by-name/el/elektroid/package.nix +++ b/pkgs/by-name/el/elektroid/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "Sample and MIDI device manager"; homepage = "https://github.com/dagargo/elektroid"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ camelpunch ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ camelpunch ]; }; } diff --git a/pkgs/by-name/el/element-call/package.nix b/pkgs/by-name/el/element-call/package.nix index 3f1562e4cdd4..4fb9c399e0b7 100644 --- a/pkgs/by-name/el/element-call/package.nix +++ b/pkgs/by-name/el/element-call/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/element-hq/element-call/releases/tag/${finalAttrs.src.tag}"; homepage = "https://github.com/element-hq/element-call"; description = "Group calls powered by Matrix"; - license = licenses.asl20; - maintainers = with maintainers; [ kilimnik ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kilimnik ]; }; }) diff --git a/pkgs/by-name/el/element-desktop/package.nix b/pkgs/by-name/el/element-desktop/package.nix index 371e6612f14a..87ab330417bd 100644 --- a/pkgs/by-name/el/element-desktop/package.nix +++ b/pkgs/by-name/el/element-desktop/package.nix @@ -171,12 +171,12 @@ stdenv.mkDerivation ( inherit keytar; }; - meta = with lib; { + meta = { description = "Feature-rich client for Matrix.org"; homepage = "https://element.io/"; changelog = "https://github.com/element-hq/element-desktop/blob/v${finalAttrs.version}/CHANGELOG.md"; - license = licenses.asl20; - teams = [ teams.matrix ]; + license = lib.licenses.asl20; + teams = [ lib.teams.matrix ]; platforms = electron.meta.platforms ++ lib.platforms.darwin; mainProgram = "element-desktop"; }; diff --git a/pkgs/by-name/el/element/package.nix b/pkgs/by-name/el/element/package.nix index 39fc6579cd9f..f13e1c10c142 100644 --- a/pkgs/by-name/el/element/package.nix +++ b/pkgs/by-name/el/element/package.nix @@ -18,12 +18,12 @@ buildGoModule rec { vendorHash = "sha256-A4g2rQTaYrA4/0rqldUv7iuibzNINEvx9StUnaN2/Yg="; - meta = with lib; { + meta = { description = "Periodic table on the command line"; mainProgram = "element"; homepage = "https://github.com/gennaro-tedesco/element"; - license = licenses.asl20; - maintainers = [ maintainers.j0hax ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.j0hax ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/el/elementary-xfce-icon-theme/package.nix b/pkgs/by-name/el/elementary-xfce-icon-theme/package.nix index 0232f3e1c6bb..9388005ba874 100644 --- a/pkgs/by-name/el/elementary-xfce-icon-theme/package.nix +++ b/pkgs/by-name/el/elementary-xfce-icon-theme/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { make icon-caches ''; - meta = with lib; { + meta = { description = "Elementary icons for Xfce and other GTK desktops like GNOME"; homepage = "https://github.com/shimmerproject/elementary-xfce"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; # darwin cannot deal with file names differing only in case - platforms = platforms.linux; - teams = [ teams.xfce ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/by-name/el/elf2nucleus/package.nix b/pkgs/by-name/el/elf2nucleus/package.nix index 9ec60658ada8..3d3e26176c39 100644 --- a/pkgs/by-name/el/elf2nucleus/package.nix +++ b/pkgs/by-name/el/elf2nucleus/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/elf2nucleus --completions zsh) ''; - meta = with lib; { + meta = { description = "Integrate micronucleus into the cargo buildsystem, flash an AVR firmware from an elf file"; mainProgram = "elf2nucleus"; homepage = "https://github.com/kpcyrd/elf2nucleus"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.marble ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.marble ]; }; } diff --git a/pkgs/by-name/el/elf2uf2-rs/package.nix b/pkgs/by-name/el/elf2uf2-rs/package.nix index 0752b7ec5640..dbdf6d3c2360 100644 --- a/pkgs/by-name/el/elf2uf2-rs/package.nix +++ b/pkgs/by-name/el/elf2uf2-rs/package.nix @@ -24,13 +24,13 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isLinux udev; - meta = with lib; { + meta = { description = "Convert ELF files to UF2 for USB Flashing Bootloaders"; mainProgram = "elf2uf2-rs"; homepage = "https://github.com/JoNil/elf2uf2-rs"; - license = with licenses; [ bsd0 ]; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = with lib.licenses; [ bsd0 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ polygon moni ]; diff --git a/pkgs/by-name/el/elfcat/package.nix b/pkgs/by-name/el/elfcat/package.nix index 6133034346bf..c515b69e48d8 100644 --- a/pkgs/by-name/el/elfcat/package.nix +++ b/pkgs/by-name/el/elfcat/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-oVl+40QunvKZIbhsOgqNTsvWduCXP/QJ0amT8ECSsMU="; - meta = with lib; { + meta = { description = "ELF visualizer, generates HTML files from ELF binaries"; homepage = "https://github.com/ruslashev/elfcat"; - license = licenses.zlib; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ moni ]; mainProgram = "elfcat"; }; } diff --git a/pkgs/by-name/el/elfio/package.nix b/pkgs/by-name/el/elfio/package.nix index 886632cf0eb6..f84730de258a 100644 --- a/pkgs/by-name/el/elfio/package.nix +++ b/pkgs/by-name/el/elfio/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Header-only C++ library for reading and generating files in the ELF binary format"; homepage = "https://github.com/serge1/ELFIO"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/by-name/el/elfkickers/package.nix b/pkgs/by-name/el/elfkickers/package.nix index 60e87d4b1f48..e7ff8f1652b2 100644 --- a/pkgs/by-name/el/elfkickers/package.nix +++ b/pkgs/by-name/el/elfkickers/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.muppetlabs.com/~breadbox/software/elfkickers.html"; description = "Collection of programs that access and manipulate ELF files"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/el/elfutils/package.nix b/pkgs/by-name/el/elfutils/package.nix index db1c0b053bd0..4098753735ae 100644 --- a/pkgs/by-name/el/elfutils/package.nix +++ b/pkgs/by-name/el/elfutils/package.nix @@ -139,19 +139,19 @@ stdenv.mkDerivation rec { rev-prefix = "elfutils-"; }; - meta = with lib; { + meta = { homepage = "https://sourceware.org/elfutils/"; description = "Set of utilities to handle ELF objects"; - platforms = platforms.linux; + platforms = lib.platforms.linux; # https://lists.fedorahosted.org/pipermail/elfutils-devel/2014-November/004223.html badPlatforms = [ lib.systems.inspect.platformPatterns.isStatic ]; # licenses are GPL2 or LGPL3+ for libraries, GPL3+ for bins, # but since this package isn't split that way, all three are listed. - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl3Plus gpl3Plus ]; - maintainers = with maintainers; [ r-burns ]; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/el/elfx86exts/package.nix b/pkgs/by-name/el/elfx86exts/package.nix index c1f0dfd276ba..657b6a2ff6b8 100644 --- a/pkgs/by-name/el/elfx86exts/package.nix +++ b/pkgs/by-name/el/elfx86exts/package.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-7FVcLvbZQK5M90ofoBpK2V/1+vWlBI/Z2x3ydbCwVbM="; - meta = with lib; { + meta = { description = "Decode x86 binaries and print out which instruction set extensions they use"; longDescription = '' Disassemble a binary containing x86 instructions and print out which extensions it uses. @@ -25,8 +25,8 @@ rustPlatform.buildRustPackage (finalAttrs: { perhaps PE-format ones as well. (It used to be more limited.) ''; homepage = "https://github.com/pkgw/elfx86exts"; - maintainers = with maintainers; [ rmcgibbo ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ rmcgibbo ]; + license = with lib.licenses; [ mit ]; mainProgram = "elfx86exts"; }; }) diff --git a/pkgs/by-name/el/elinks/package.nix b/pkgs/by-name/el/elinks/package.nix index a25d95e76172..540f183f444b 100644 --- a/pkgs/by-name/el/elinks/package.nix +++ b/pkgs/by-name/el/elinks/package.nix @@ -86,13 +86,13 @@ stdenv.mkDerivation rec { ++ lib.optional enablePython "--with-python" ++ lib.optional enablePerl "--with-perl"; - meta = with lib; { + meta = { description = "Full-featured text-mode web browser"; mainProgram = "elinks"; homepage = "https://github.com/rkd77/elinks"; - license = licenses.gpl2; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ iblech ]; }; diff --git a/pkgs/by-name/el/elkhound/package.nix b/pkgs/by-name/el/elkhound/package.nix index dc170614dccf..a771e2497104 100644 --- a/pkgs/by-name/el/elkhound/package.nix +++ b/pkgs/by-name/el/elkhound/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Parser generator which emits GLR parsers, either in OCaml or C++"; homepage = "https://scottmcpeak.com/elkhound/"; - license = licenses.bsd3; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "elkhound"; }; } diff --git a/pkgs/by-name/el/elliptic_curves/package.nix b/pkgs/by-name/el/elliptic_curves/package.nix index f11cfadaf38f..810f8ec3f84f 100644 --- a/pkgs/by-name/el/elliptic_curves/package.nix +++ b/pkgs/by-name/el/elliptic_curves/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { ${python3.interpreter} ${spkg-install} ''; - meta = with lib; { + meta = { description = "Databases of elliptic curves"; longDescription = '' Includes two databases: @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { http://sage.math.washington.edu/cremona/INDEX.html * William Stein's database of interesting curves ''; - license = licenses.gpl2; - platforms = platforms.all; - teams = [ teams.sage ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/el/elmerfem/package.nix b/pkgs/by-name/el/elmerfem/package.nix index 20731100f670..c26c30e89687 100644 --- a/pkgs/by-name/el/elmerfem/package.nix +++ b/pkgs/by-name/el/elmerfem/package.nix @@ -73,15 +73,15 @@ stdenv.mkDerivation { (lib.cmakeFeature "QWT_INCLUDE_DIR" "${qt6Packages.qwt}/lib/qwt.framework/Headers") ]; - meta = with lib; { + meta = { homepage = "https://elmerfem.org"; description = "Finite element software for multiphysical problems"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ wulfsta broke ]; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/el/elogind/package.nix b/pkgs/by-name/el/elogind/package.nix index 0492c338af66..0b0400c56d43 100644 --- a/pkgs/by-name/el/elogind/package.nix +++ b/pkgs/by-name/el/elogind/package.nix @@ -152,11 +152,11 @@ stdenv.mkDerivation rec { (lib.mesonEnable "xenctrl" false) ]; - meta = with lib; { + meta = { homepage = "https://github.com/elogind/elogind"; description = "systemd project's 'logind', extracted to a standalone package"; - platforms = platforms.linux; # probably more - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ nh2 ]; + platforms = lib.platforms.linux; # probably more + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ nh2 ]; }; } diff --git a/pkgs/by-name/el/elpa/package.nix b/pkgs/by-name/el/elpa/package.nix index 0da9414c9a2d..2247ce9dc58b 100644 --- a/pkgs/by-name/el/elpa/package.nix +++ b/pkgs/by-name/el/elpa/package.nix @@ -123,11 +123,11 @@ stdenv.mkDerivation rec { export TEST_FLAGS="1500 50 16" ''; - meta = with lib; { + meta = { description = "Eigenvalue Solvers for Petaflop-Applications"; homepage = "https://elpa.mpcdf.mpg.de/"; - license = licenses.lgpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.markuskowa ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/el/eltclsh/package.nix b/pkgs/by-name/el/eltclsh/package.nix index f876425f1286..b4308bf60159 100644 --- a/pkgs/by-name/el/eltclsh/package.nix +++ b/pkgs/by-name/el/eltclsh/package.nix @@ -39,11 +39,11 @@ tcl.mkTclDerivation rec { "--with-libtool=${libtool}" ]; - meta = with lib; { + meta = { description = "Interactive shell for the TCL programming language based on editline"; homepage = "https://homepages.laas.fr/mallet/soft/shell/eltclsh"; - license = licenses.bsd3; - maintainers = with maintainers; [ iwanb ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ iwanb ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/el/eludris/package.nix b/pkgs/by-name/el/eludris/package.nix index b2037d5ad9ef..2e0fa1791360 100644 --- a/pkgs/by-name/el/eludris/package.nix +++ b/pkgs/by-name/el/eludris/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Simple CLI to help you with setting up and managing your Eludris instance"; mainProgram = "eludris"; homepage = "https://github.com/eludris/eludris/tree/main/cli"; - license = licenses.mit; - maintainers = with maintainers; [ ooliver1 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ooliver1 ]; }; } diff --git a/pkgs/by-name/em/em/package.nix b/pkgs/by-name/em/em/package.nix index a7ddd59bd375..749e5bc3b43c 100644 --- a/pkgs/by-name/em/em/package.nix +++ b/pkgs/by-name/em/em/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { hash = "sha256-ijMBkl7U1f9MTXgli9kUFB8ttMG6TMQnxfDMP9AblTQ="; }; - meta = with lib; { + meta = { homepage = "http://pgas.freeshell.org/C/em/"; description = "Editor for Mortals"; longDescription = '' @@ -23,9 +23,9 @@ stdenv.mkDerivation rec { interaction and increase its usefulness to users at fast vdu terminals (such as the ITT's at QMC). ''; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "em"; }; } diff --git a/pkgs/by-name/em/em100/package.nix b/pkgs/by-name/em/em100/package.nix index 866ff412a037..f1946be5e606 100644 --- a/pkgs/by-name/em/em100/package.nix +++ b/pkgs/by-name/em/em100/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.coreboot.org"; description = "Open source tool for the EM100 SPI flash emulator"; - license = licenses.gpl2; - maintainers = with maintainers; [ felixsinger ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ felixsinger ]; + platforms = lib.platforms.linux; mainProgram = "em100"; }; } diff --git a/pkgs/by-name/em/emacs-all-the-icons-fonts/package.nix b/pkgs/by-name/em/emacs-all-the-icons-fonts/package.nix index b5a443e9f090..e23e19422d8b 100644 --- a/pkgs/by-name/em/emacs-all-the-icons-fonts/package.nix +++ b/pkgs/by-name/em/emacs-all-the-icons-fonts/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Icon fonts for emacs all-the-icons"; longDescription = '' The emacs package all-the-icons provides icons to improve @@ -35,8 +35,8 @@ stdenvNoCC.mkDerivation rec { SIL OFL license, and Apache license v2.0. See the GitHub page for further information. */ - license = licenses.free; - platforms = platforms.all; - maintainers = with maintainers; [ rlupton20 ]; + license = lib.licenses.free; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ rlupton20 ]; }; } diff --git a/pkgs/by-name/em/emacs-lsp-booster/package.nix b/pkgs/by-name/em/emacs-lsp-booster/package.nix index bac3f51c3fa2..ac17f887edf2 100644 --- a/pkgs/by-name/em/emacs-lsp-booster/package.nix +++ b/pkgs/by-name/em/emacs-lsp-booster/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { nativeCheckInputs = [ emacs ]; # tests/bytecode_test - meta = with lib; { + meta = { description = "Emacs LSP performance booster"; homepage = "https://github.com/blahgeek/emacs-lsp-booster"; - license = licenses.mit; - maintainers = with maintainers; [ icy-thought ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ icy-thought ]; mainProgram = "emacs-lsp-booster"; }; } diff --git a/pkgs/by-name/em/emacsclient-commands/package.nix b/pkgs/by-name/em/emacsclient-commands/package.nix index 22349622b655..a15bf6f91b87 100644 --- a/pkgs/by-name/em/emacsclient-commands/package.nix +++ b/pkgs/by-name/em/emacsclient-commands/package.nix @@ -26,10 +26,10 @@ buildGoModule { runHook postBuild ''; - meta = with lib; { + meta = { description = "Collection of small shell utilities that connect to a local Emacs server"; homepage = "https://github.com/szermatt/emacsclient-commands"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ binarycat ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ binarycat ]; }; } diff --git a/pkgs/by-name/em/ember-cli/package.nix b/pkgs/by-name/em/ember-cli/package.nix index 7dbe7d0d16fe..f769519fe61a 100644 --- a/pkgs/by-name/em/ember-cli/package.nix +++ b/pkgs/by-name/em/ember-cli/package.nix @@ -32,12 +32,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { nodejs ]; - meta = with lib; { + meta = { homepage = "https://github.com/ember-cli/ember-cli"; description = "Ember.js command line utility"; - license = licenses.mit; - maintainers = with maintainers; [ jfvillablanca ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jfvillablanca ]; + platforms = lib.platforms.all; mainProgram = "ember"; }; }) diff --git a/pkgs/by-name/em/emem/package.nix b/pkgs/by-name/em/emem/package.nix index 4fa8d670c4c5..f628f209a29d 100644 --- a/pkgs/by-name/em/emem/package.nix +++ b/pkgs/by-name/em/emem/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { chmod +x $out/bin/${pname} ''; - meta = with lib; { + meta = { homepage = "https://github.com/ebzzry/emem"; description = "Trivial Markdown to HTML converter"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; mainProgram = "emem"; }; } diff --git a/pkgs/by-name/em/emoji-picker/package.nix b/pkgs/by-name/em/emoji-picker/package.nix index 76a5c8edda73..99281162dc14 100644 --- a/pkgs/by-name/em/emoji-picker/package.nix +++ b/pkgs/by-name/em/emoji-picker/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-Xeh5JKIBiyOXRGVx9udoUNs+Wv49BMyFvmnAbDfG3rA="; - meta = with lib; { + meta = { description = "CLI Emoji Picker"; homepage = "https://github.com/bcongdon/ep"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "ep"; }; } diff --git a/pkgs/by-name/em/emojify/package.nix b/pkgs/by-name/em/emojify/package.nix index b36dc61ba09d..186074da829a 100644 --- a/pkgs/by-name/em/emojify/package.nix +++ b/pkgs/by-name/em/emojify/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Emoji on the command line"; homepage = "https://github.com/mrowa44/emojify"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "emojify"; }; } diff --git a/pkgs/by-name/em/emojipick/package.nix b/pkgs/by-name/em/emojipick/package.nix index c6f551213225..aaf8c7f17200 100644 --- a/pkgs/by-name/em/emojipick/package.nix +++ b/pkgs/by-name/em/emojipick/package.nix @@ -63,11 +63,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Get a selection of emojis with dmenu or rofi"; homepage = "https://github.com/thingsiplay/emojipick"; - license = licenses.mit; - maintainers = with maintainers; [ alexnortung ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alexnortung ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/em/emote/package.nix b/pkgs/by-name/em/emote/package.nix index 1854bc1b1bcc..bfaccce60b6c 100644 --- a/pkgs/by-name/em/emote/package.nix +++ b/pkgs/by-name/em/emote/package.nix @@ -70,16 +70,16 @@ python3Packages.buildPythonApplication rec { ) ''; - meta = with lib; { + meta = { description = "Modern emoji picker for Linux"; mainProgram = "emote"; homepage = "https://github.com/tom-james-watson/emote"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ emilytrau SuperSandro2000 aleksana ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/em/emptty/package.nix b/pkgs/by-name/em/emptty/package.nix index a8b0af3646c0..496918ef9341 100644 --- a/pkgs/by-name/em/emptty/package.nix +++ b/pkgs/by-name/em/emptty/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { vendorHash = "sha256-PLyemAUcCz9H7+nAxftki3G7rQoEeyPzY3YUEj2RFn4="; - meta = with lib; { + meta = { description = "Dead simple CLI Display Manager on TTY"; homepage = "https://github.com/tvrzna/emptty"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; # many undefined functions broken = stdenv.hostPlatform.isDarwin; mainProgram = "emptty"; diff --git a/pkgs/by-name/em/empty-epsilon/package.nix b/pkgs/by-name/em/empty-epsilon/package.nix index 2eb7d5ad2697..ab4902cf1d3d 100644 --- a/pkgs/by-name/em/empty-epsilon/package.nix +++ b/pkgs/by-name/em/empty-epsilon/package.nix @@ -51,12 +51,12 @@ let (lib.cmakeFeature "CMAKE_CXX_FLAGS" "-DGLM_ENABLE_EXPERIMENTAL") ]; - meta = with lib; { + meta = { description = "C++ game engine coded on top of SFML used for EmptyEpsilon"; homepage = "https://github.com/daid/SeriousProton"; - license = licenses.mit; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.linux; }; }; @@ -99,15 +99,15 @@ stdenv.mkDerivation { "-G Ninja" ]; - meta = with lib; { + meta = { description = "Open source bridge simulator based on Artemis"; mainProgram = "EmptyEpsilon"; homepage = "https://daid.github.io/EmptyEpsilon/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fpletz ma27 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/em/empty/package.nix b/pkgs/by-name/em/empty/package.nix index 193d1b7d9773..c6dff73c9e8a 100644 --- a/pkgs/by-name/em/empty/package.nix +++ b/pkgs/by-name/em/empty/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { rm empty ''; - meta = with lib; { + meta = { homepage = "https://empty.sourceforge.net"; description = "Simple tool to automate interactive terminal applications"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; longDescription = '' The empty utility provides an interface to execute and/or interact with processes under pseudo-terminal sessions (PTYs). This tool is definitely @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { - has small and simple source code - can easily be ported to almost all UNIX-like systems ''; - maintainers = [ maintainers.djwf ]; + maintainers = [ lib.maintainers.djwf ]; mainProgram = "empty"; }; } diff --git a/pkgs/by-name/em/emu2/package.nix b/pkgs/by-name/em/emu2/package.nix index aaa65ce47ea9..fe1b2ab461aa 100644 --- a/pkgs/by-name/em/emu2/package.nix +++ b/pkgs/by-name/em/emu2/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dmsc/emu2/"; description = "Simple text-mode x86 + DOS emulator"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "emu2"; }; } diff --git a/pkgs/by-name/em/emuflight-configurator/package.nix b/pkgs/by-name/em/emuflight-configurator/package.nix index 619c42d4ac3d..39278b284b08 100644 --- a/pkgs/by-name/em/emuflight-configurator/package.nix +++ b/pkgs/by-name/em/emuflight-configurator/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Emuflight flight control system configuration tool"; mainProgram = "emuflight-configurator"; longDescription = '' @@ -61,8 +61,8 @@ stdenv.mkDerivation rec { The application allows you to configure the Emuflight software running on any supported Emuflight target. ''; homepage = "https://github.com/emuflight/EmuConfigurator"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl3Only; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/em/emulsion-palette/package.nix b/pkgs/by-name/em/emulsion-palette/package.nix index a55fde901ff6..0aad543a0d8f 100644 --- a/pkgs/by-name/em/emulsion-palette/package.nix +++ b/pkgs/by-name/em/emulsion-palette/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { ln -s $out/bin/io.github.lainsce.Emulsion $out/bin/emulsion-palette ''; - meta = with lib; { + meta = { description = "Store your color palettes in an easy way"; homepage = "https://github.com/lainsce/emulsion"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/by-name/em/emulsion/package.nix b/pkgs/by-name/em/emulsion/package.nix index 9764503ed53b..37501db0af43 100644 --- a/pkgs/by-name/em/emulsion/package.nix +++ b/pkgs/by-name/em/emulsion/package.nix @@ -58,12 +58,12 @@ rustPlatform.buildRustPackage rec { patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $out/bin/emulsion ''; - meta = with lib; { + meta = { description = "Fast and minimalistic image viewer"; homepage = "https://arturkovacs.github.io/emulsion-website/"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; mainProgram = "emulsion"; }; } diff --git a/pkgs/by-name/en/enblend-enfuse/package.nix b/pkgs/by-name/en/enblend-enfuse/package.nix index a7d013ea5c74..4991a48059cc 100644 --- a/pkgs/by-name/en/enblend-enfuse/package.nix +++ b/pkgs/by-name/en/enblend-enfuse/package.nix @@ -56,10 +56,10 @@ stdenv.mkDerivation { patchShebangs src/embrace ''; - meta = with lib; { + meta = { homepage = "https://enblend.sourceforge.net/"; description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline"; - license = licenses.gpl2Plus; - platforms = with platforms; linux; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/en/enca/package.nix b/pkgs/by-name/en/enca/package.nix index 9d213277bf92..76d54f385261 100644 --- a/pkgs/by-name/en/enca/package.nix +++ b/pkgs/by-name/en/enca/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { libiconv ]; - meta = with lib; { + meta = { description = "Detects the encoding of text files and reencodes them"; longDescription = '' @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { Unicode variants, independently on language. ''; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/en/encfs/package.nix b/pkgs/by-name/en/encfs/package.nix index abd5279b69d6..58ee6ee82f9b 100644 --- a/pkgs/by-name/en/encfs/package.nix +++ b/pkgs/by-name/en/encfs/package.nix @@ -59,14 +59,14 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.10" ]; - meta = with lib; { + meta = { description = "Encrypted filesystem in user-space via FUSE"; homepage = "https://vgough.github.io/encfs"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # The last successful Darwin Hydra build was in 2024 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/en/encode-sans/package.nix b/pkgs/by-name/en/encode-sans/package.nix index 5010ba6e8760..ef4e54045612 100644 --- a/pkgs/by-name/en/encode-sans/package.nix +++ b/pkgs/by-name/en/encode-sans/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Versatile sans serif font family"; longDescription = '' The Encode Sans family is a versatile workhorse. Featuring a huge range of @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation rec { Designed by Pablo Impallari and Andres Torresi. ''; homepage = "https://github.com/impallari/Encode-Sans"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/en/encpipe/package.nix b/pkgs/by-name/en/encpipe/package.nix index de81afa34b26..e6b9f0ffd35f 100644 --- a/pkgs/by-name/en/encpipe/package.nix +++ b/pkgs/by-name/en/encpipe/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Encryption tool"; homepage = "https://github.com/jedisct1/encpipe"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; mainProgram = "encpipe"; }; diff --git a/pkgs/by-name/en/endeavour/package.nix b/pkgs/by-name/en/endeavour/package.nix index 5de5fa50c8ba..c551a2fdf603 100644 --- a/pkgs/by-name/en/endeavour/package.nix +++ b/pkgs/by-name/en/endeavour/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Personal task manager for GNOME"; mainProgram = "endeavour"; homepage = "https://gitlab.gnome.org/World/Endeavour"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/en/endless-sky/package.nix b/pkgs/by-name/en/endless-sky/package.nix index ea0ad87f3fef..17ad129bba8b 100644 --- a/pkgs/by-name/en/endless-sky/package.nix +++ b/pkgs/by-name/en/endless-sky/package.nix @@ -63,20 +63,20 @@ stdenv.mkDerivation rec { minizip ]; - meta = with lib; { + meta = { description = "Sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control"; mainProgram = "endless-sky"; homepage = "https://endless-sky.github.io/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-sa-30 cc-by-sa-40 publicDomain ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ _360ied lilacious ]; - platforms = platforms.linux; # Maybe other non-darwin Unix + platforms = lib.platforms.linux; # Maybe other non-darwin Unix }; } diff --git a/pkgs/by-name/en/enigma/package.nix b/pkgs/by-name/en/enigma/package.nix index d63a2dd35081..6020e4f75a6c 100644 --- a/pkgs/by-name/en/enigma/package.nix +++ b/pkgs/by-name/en/enigma/package.nix @@ -67,16 +67,16 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/enigma --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" ''; - meta = with lib; { + meta = { description = "Puzzle game inspired by Oxyd on the Atari ST and Rock'n'Roll on the Amiga"; mainProgram = "enigma"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 free ]; # source + bundles libs + art - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ iblech ]; + maintainers = with lib.maintainers; [ iblech ]; homepage = "https://www.nongnu.org/enigma/"; }; }) diff --git a/pkgs/by-name/en/enjarify/package.nix b/pkgs/by-name/en/enjarify/package.nix index 743daf548346..10de71381857 100644 --- a/pkgs/by-name/en/enjarify/package.nix +++ b/pkgs/by-name/en/enjarify/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { chmod +x $out/bin/enjarify ''; - meta = with lib; { + meta = { description = "Tool for translating Dalvik bytecode to equivalent Java bytecode"; homepage = "https://github.com/google/enjarify/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "enjarify"; }; diff --git a/pkgs/by-name/en/enkei/package.nix b/pkgs/by-name/en/enkei/package.nix index 8c9eb4fd85f0..3d12a25ad135 100644 --- a/pkgs/by-name/en/enkei/package.nix +++ b/pkgs/by-name/en/enkei/package.nix @@ -34,7 +34,7 @@ rustPlatform.buildRustPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Wallpaper daemon and control tool for Wayland"; longDescription = '' Created to allow displaying dynamic wallpapers based on the specification format used for example in the `Gnome` desktop environment. @@ -42,8 +42,8 @@ rustPlatform.buildRustPackage rec { For a fast handling `enkei` uses `OpenGL` to render images and blending them for transitions. ''; homepage = "https://github.com/jwuensche/enkei"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ppenguin ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ppenguin ]; }; } diff --git a/pkgs/by-name/en/enpass/package.nix b/pkgs/by-name/en/enpass/package.nix index c3e6e021c3de..fec608d27e23 100644 --- a/pkgs/by-name/en/enpass/package.nix +++ b/pkgs/by-name/en/enpass/package.nix @@ -84,16 +84,16 @@ let url = "${baseUrl}/${data.path}"; }; - meta = with lib; { + meta = { description = "Well known password manager"; homepage = "https://www.enpass.io/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ewok dritter ]; diff --git a/pkgs/by-name/en/ensemble-chorus/package.nix b/pkgs/by-name/en/ensemble-chorus/package.nix index ba5f43d8b69a..87feeb3f144e 100644 --- a/pkgs/by-name/en/ensemble-chorus/package.nix +++ b/pkgs/by-name/en/ensemble-chorus/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation { 'cmake_minimum_required(VERSION 4.0)' ''; - meta = with lib; { + meta = { homepage = "https://github.com/jpcima/ensemble-chorus"; description = "Digital model of electronic string ensemble chorus"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.boost; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.boost; }; } diff --git a/pkgs/by-name/en/ent/package.nix b/pkgs/by-name/en/ent/package.nix index 9cf35294a41f..c7d0595825b6 100644 --- a/pkgs/by-name/en/ent/package.nix +++ b/pkgs/by-name/en/ent/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { cp ent $out/bin/ ''; - meta = with lib; { + meta = { description = "Pseudorandom Number Sequence Test Program"; homepage = "https://www.fourmilab.ch/random/"; - platforms = platforms.all; - license = licenses.publicDomain; + platforms = lib.platforms.all; + license = lib.licenses.publicDomain; mainProgram = "ent"; }; } diff --git a/pkgs/by-name/en/enter-tex/package.nix b/pkgs/by-name/en/enter-tex/package.nix index ba5874c66536..8dfc84088f7c 100644 --- a/pkgs/by-name/en/enter-tex/package.nix +++ b/pkgs/by-name/en/enter-tex/package.nix @@ -72,15 +72,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/gedit/enter-tex"; description = "LaTeX editor for the GNOME desktop"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ manveru bobby285271 ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "enter-tex"; }; }) diff --git a/pkgs/by-name/en/entt/package.nix b/pkgs/by-name/en/entt/package.nix index c871e15d0469..b9a3232344e3 100644 --- a/pkgs/by-name/en/entt/package.nix +++ b/pkgs/by-name/en/entt/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/skypjack/entt"; description = "Header-only, tiny and easy to use library for game programming and much more written in modern C++"; - maintainers = with maintainers; [ twey ]; - platforms = platforms.all; - license = licenses.mit; + maintainers = with lib.maintainers; [ twey ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/en/entwine/package.nix b/pkgs/by-name/en/entwine/package.nix index 660b39cef5e0..0c277b830e24 100644 --- a/pkgs/by-name/en/entwine/package.nix +++ b/pkgs/by-name/en/entwine/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Point cloud organization for massive datasets"; homepage = "https://entwine.io/"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ matthewcroughan ]; - teams = [ teams.geospatial ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ matthewcroughan ]; + teams = [ lib.teams.geospatial ]; + platforms = lib.platforms.linux; mainProgram = "entwine"; }; } diff --git a/pkgs/by-name/en/enum4linux/package.nix b/pkgs/by-name/en/enum4linux/package.nix index 524bb58d436f..b70bb94e5f07 100644 --- a/pkgs/by-name/en/enum4linux/package.nix +++ b/pkgs/by-name/en/enum4linux/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Tool for enumerating information from Windows and Samba systems"; mainProgram = "enum4linux"; homepage = "https://labs.portcullis.co.uk/tools/enum4linux/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fishi0x01 ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fishi0x01 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/en/enumer/package.nix b/pkgs/by-name/en/enumer/package.nix index 2128e9cb8325..a6171014852b 100644 --- a/pkgs/by-name/en/enumer/package.nix +++ b/pkgs/by-name/en/enumer/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-w9T9PWMJjBJP2MmhGC7e78zbszgCwtVrfO5AQlu/ugQ="; - meta = with lib; { + meta = { description = "Go tool to auto generate methods for enums"; homepage = "https://github.com/dmarkham/enumer"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "enumer"; }; } diff --git a/pkgs/by-name/en/envchain/package.nix b/pkgs/by-name/en/envchain/package.nix index 56826304056d..9e4b486420b2 100644 --- a/pkgs/by-name/en/envchain/package.nix +++ b/pkgs/by-name/en/envchain/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Set environment variables with macOS keychain or D-Bus secret service"; homepage = "https://github.com/sorah/envchain"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "envchain"; }; diff --git a/pkgs/by-name/en/envconsul/package.nix b/pkgs/by-name/en/envconsul/package.nix index 8e4991c5ec5b..7aba7c013e7c 100644 --- a/pkgs/by-name/en/envconsul/package.nix +++ b/pkgs/by-name/en/envconsul/package.nix @@ -30,10 +30,10 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/hashicorp/envconsul/"; description = "Read and set environmental variables for processes from Consul"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "envconsul"; }; } diff --git a/pkgs/by-name/en/envsubst/package.nix b/pkgs/by-name/en/envsubst/package.nix index d439da5e3437..a634762feaf0 100644 --- a/pkgs/by-name/en/envsubst/package.nix +++ b/pkgs/by-name/en/envsubst/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { install -Dm444 -t $out/share/doc/envsubst LICENSE *.md ''; - meta = with lib; { + meta = { description = "Environment variables substitution for Go"; homepage = "https://github.com/a8m/envsubst"; - license = licenses.mit; - maintainers = with maintainers; [ nicknovitski ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski ]; mainProgram = "envsubst"; }; } diff --git a/pkgs/by-name/en/envypn-font/package.nix b/pkgs/by-name/en/envypn-font/package.nix index d0b6867f39c1..9c5bda82eeb1 100644 --- a/pkgs/by-name/en/envypn-font/package.nix +++ b/pkgs/by-name/en/envypn-font/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = '' Readable bitmap font inspired by Envy Code R ''; homepage = "http://ywstd.fr/p/pj/#envypn"; - license = licenses.miros; - platforms = platforms.all; - maintainers = with maintainers; [ erdnaxe ]; + license = lib.licenses.miros; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ erdnaxe ]; }; } diff --git a/pkgs/by-name/eo/eos-installer/package.nix b/pkgs/by-name/eo/eos-installer/package.nix index caf17d677203..2190424793c4 100644 --- a/pkgs/by-name/eo/eos-installer/package.nix +++ b/pkgs/by-name/eo/eos-installer/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/endlessm/eos-installer"; description = "Installer UI which writes images to disk"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qyliss ]; mainProgram = "gnome-image-installer"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ep/epeg/package.nix b/pkgs/by-name/ep/epeg/package.nix index 0fb3be941948..49fe09db21e9 100644 --- a/pkgs/by-name/ep/epeg/package.nix +++ b/pkgs/by-name/ep/epeg/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/mattes/epeg"; description = "Insanely fast JPEG/ JPG thumbnail scaling"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; license = lib.licenses.mit-enna; - maintainers = with maintainers; [ nh2 ]; + maintainers = with lib.maintainers; [ nh2 ]; mainProgram = "epeg"; }; } diff --git a/pkgs/by-name/ep/epgstation/package.nix b/pkgs/by-name/ep/epgstation/package.nix index e16be2ca0e10..907203c56ff7 100644 --- a/pkgs/by-name/ep/epgstation/package.nix +++ b/pkgs/by-name/ep/epgstation/package.nix @@ -126,11 +126,11 @@ buildNpmPackage rec { popd ''; - meta = with lib; { + meta = { description = "DVR software compatible with Mirakurun"; homepage = "https://github.com/l3tnun/EPGStation"; - license = licenses.mit; - maintainers = with maintainers; [ midchildan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ midchildan ]; mainProgram = "epgstation"; }; } diff --git a/pkgs/by-name/ep/ephemeralpg/package.nix b/pkgs/by-name/ep/ephemeralpg/package.nix index 8b46e96cc273..f49bc4923ccb 100644 --- a/pkgs/by-name/ep/ephemeralpg/package.nix +++ b/pkgs/by-name/ep/ephemeralpg/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ] } ''; - meta = with lib; { + meta = { description = "Run tests on an isolated, temporary PostgreSQL database"; - license = licenses.isc; + license = lib.licenses.isc; homepage = "https://eradman.com/ephemeralpg/"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ medv ]; }; diff --git a/pkgs/by-name/ep/epilys-bb/package.nix b/pkgs/by-name/ep/epilys-bb/package.nix index 99a092cfc82f..bb87c4c7cb7f 100644 --- a/pkgs/by-name/ep/epilys-bb/package.nix +++ b/pkgs/by-name/ep/epilys-bb/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-xUNvVG5jdAXsro2P8je3LFxqMycJEB4j7w3abf6jilw="; - meta = with lib; { + meta = { description = "Clean, simple, and fast process viewer"; homepage = "https://nessuent.xyz/bb.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ cafkafk ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ cafkafk ]; + platforms = lib.platforms.linux; mainProgram = "bb"; }; } diff --git a/pkgs/by-name/ep/epiphany/package.nix b/pkgs/by-name/ep/epiphany/package.nix index 3d1b0cc7380e..75feb5f66ed5 100644 --- a/pkgs/by-name/ep/epiphany/package.nix +++ b/pkgs/by-name/ep/epiphany/package.nix @@ -105,15 +105,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Epiphany/"; description = "WebKit based web browser for GNOME"; mainProgram = "epiphany"; teams = [ - teams.gnome - teams.pantheon + lib.teams.gnome + lib.teams.pantheon ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ep/eplot/package.nix b/pkgs/by-name/ep/eplot/package.nix index a3b9221398b2..0aec6e80dd06 100644 --- a/pkgs/by-name/ep/eplot/package.nix +++ b/pkgs/by-name/ep/eplot/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Create plots quickly with gnuplot"; longDescription = '' eplot ("easy gnuplot") is a ruby script which allows to pipe data easily @@ -51,9 +51,9 @@ stdenv.mkDerivation { column"). ''; homepage = "https://perso.liris.cnrs.fr/christian.wolf/software/eplot/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bjornfor shamilton ]; diff --git a/pkgs/by-name/ep/epm/package.nix b/pkgs/by-name/ep/epm/package.nix index 0d3e05c6c781..860622b297c6 100644 --- a/pkgs/by-name/ep/epm/package.nix +++ b/pkgs/by-name/ep/epm/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { buildInputs = [ rpm ]; - meta = with lib; { + meta = { description = "ESP Package Manager generates distribution archives for a variety of platforms"; homepage = "https://jimjag.github.io/epm/"; - license = licenses.asl20; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ep/epoll-shim/package.nix b/pkgs/by-name/ep/epoll-shim/package.nix index a618150a8f70..aa993d2ec8a6 100644 --- a/pkgs/by-name/ep/epoll-shim/package.nix +++ b/pkgs/by-name/ep/epoll-shim/package.nix @@ -33,11 +33,12 @@ stdenv.mkDerivation (finalAttrs: { # https://github.com/jiixyj/epoll-shim/pull/34 doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Small epoll implementation using kqueue"; homepage = "https://github.com/jiixyj/epoll-shim"; - license = licenses.mit; - platforms = platforms.darwin ++ platforms.freebsd ++ platforms.netbsd ++ platforms.openbsd; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.mit; + platforms = + lib.platforms.darwin ++ lib.platforms.freebsd ++ lib.platforms.netbsd ++ lib.platforms.openbsd; + maintainers = with lib.maintainers; [ wegank ]; }; }) diff --git a/pkgs/by-name/ep/epr/package.nix b/pkgs/by-name/ep/epr/package.nix index 1a457a0b3710..0939f510cb24 100644 --- a/pkgs/by-name/ep/epr/package.nix +++ b/pkgs/by-name/ep/epr/package.nix @@ -20,11 +20,11 @@ python3Packages.buildPythonApplication rec { setuptools ]; - meta = with lib; { + meta = { description = "CLI Epub Reader"; mainProgram = "epr"; homepage = "https://github.com/wustho/epr"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ep/epson-201106w/package.nix b/pkgs/by-name/ep/epson-201106w/package.nix index 9b50ae13ab27..a1d4f1f34f85 100644 --- a/pkgs/by-name/ep/epson-201106w/package.nix +++ b/pkgs/by-name/ep/epson-201106w/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation { cp -a README $out/doc/README.driver ''; - meta = with lib; { + meta = { homepage = "https://www.openprinting.org/driver/epson-201106w"; description = "Epson printer driver (BX535WD, BX630FW, BX635FWD, ME940FW, NX530, NX635, NX635, SX535WD, WorkForce 545, WorkForce 645"; longDescription = '' @@ -86,11 +86,11 @@ stdenv.mkDerivation { drivers = [ pkgs.epson-201106w ]; }; ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 epson ]; - platforms = platforms.linux; - maintainers = [ maintainers.nphilou ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.nphilou ]; }; } diff --git a/pkgs/by-name/ep/epson-201401w/package.nix b/pkgs/by-name/ep/epson-201401w/package.nix index 1c4dbb21c205..e6ee08f80dd3 100644 --- a/pkgs/by-name/ep/epson-201401w/package.nix +++ b/pkgs/by-name/ep/epson-201401w/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation { cp -a README $out/doc/README.driver ''; - meta = with lib; { + meta = { homepage = "https://www.openprinting.org/driver/epson-201401w"; description = "Epson printer driver (L456, L455, L366, L365, L362, L360, L312, L310, L222, L220, L132, L130)"; longDescription = '' @@ -75,11 +75,11 @@ stdenv.mkDerivation { drivers = [ pkgs.epson-201401w ]; }; ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 epson ]; - platforms = platforms.linux; - maintainers = [ maintainers.lunarequest ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.lunarequest ]; }; } diff --git a/pkgs/by-name/ep/epson-alc1100/package.nix b/pkgs/by-name/ep/epson-alc1100/package.nix index 3008665ce683..07fd3d5423bf 100644 --- a/pkgs/by-name/ep/epson-alc1100/package.nix +++ b/pkgs/by-name/ep/epson-alc1100/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation { --suffix PATH : "\$PATH:${psutils}/bin:${ghostscript}/bin:${bash}/bin:/var/lib/cups/path/bin" ''; - meta = with lib; { + meta = { homepage = "http://download.ebz.epson.net/dsc/search/01/search/"; description = "Epson AcuLaser C1100 Driver"; longDescription = '' @@ -90,13 +90,13 @@ stdenv.mkDerivation { }; ''; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = with licenses; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with lib.licenses; [ mit eapl ]; - maintainers = [ maintainers.eperuffo ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.eperuffo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ep/epson-escpr/package.nix b/pkgs/by-name/ep/epson-escpr/package.nix index 34d20becb314..a4b0696ee40a 100644 --- a/pkgs/by-name/ep/epson-escpr/package.nix +++ b/pkgs/by-name/ep/epson-escpr/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation { ]; buildInputs = [ cups ]; - meta = with lib; { + meta = { homepage = "http://download.ebz.epson.net/dsc/search/01/search/"; description = "ESC/P-R Driver (generic driver)"; longDescription = '' @@ -72,8 +72,8 @@ stdenv.mkDerivation { enable = true; nssmdns4 = true; };''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ep/epson_201207w/package.nix b/pkgs/by-name/ep/epson_201207w/package.nix index 9c721fd29080..ac44162ff397 100644 --- a/pkgs/by-name/ep/epson_201207w/package.nix +++ b/pkgs/by-name/ep/epson_201207w/package.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation { cp -a README $out/doc/README.driver ''; - meta = with lib; { + meta = { homepage = "https://www.openprinting.org/driver/epson-201207w"; description = "Epson printer driver (L110, L210, L300, L350, L355, L550, L555)"; longDescription = '' @@ -86,11 +86,11 @@ stdenv.mkDerivation { drivers = [ pkgs.epson_201207w ]; }; ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus epson ]; - maintainers = [ maintainers.romildo ]; + maintainers = [ lib.maintainers.romildo ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ep/epstool/package.nix b/pkgs/by-name/ep/epstool/package.nix index 56b38c0e37e0..7c37dcc99c1b 100644 --- a/pkgs/by-name/ep/epstool/package.nix +++ b/pkgs/by-name/ep/epstool/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { make EPSTOOL_ROOT=$out install ''; - meta = with lib; { + meta = { description = "Utility to create or extract preview images in EPS files, fix bounding boxes and convert to bitmaps"; homepage = "http://pages.cs.wisc.edu/~ghost/gsview/epstool.htm"; - license = licenses.gpl2Only; - maintainers = [ maintainers.asppsa ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.asppsa ]; + platforms = lib.platforms.all; mainProgram = "epstool"; }; } diff --git a/pkgs/by-name/ep/epub-thumbnailer/package.nix b/pkgs/by-name/ep/epub-thumbnailer/package.nix index 353f8a775bb5..5796b8321289 100644 --- a/pkgs/by-name/ep/epub-thumbnailer/package.nix +++ b/pkgs/by-name/ep/epub-thumbnailer/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Script to extract the cover of an epub book and create a thumbnail for it"; homepage = "https://github.com/marianosimone/epub-thumbnailer"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ GaetanLepage ]; mainProgram = "epub-thumbnailer"; }; } diff --git a/pkgs/by-name/ep/epubcheck/package.nix b/pkgs/by-name/ep/epubcheck/package.nix index 85f90664ddbc..8dfa45563ab5 100644 --- a/pkgs/by-name/ep/epubcheck/package.nix +++ b/pkgs/by-name/ep/epubcheck/package.nix @@ -36,18 +36,18 @@ stdenv.mkDerivation rec { --add-flags "-classpath $classpath com.adobe.epubcheck.tool.Checker" ''; - meta = with lib; { + meta = { homepage = "https://github.com/w3c/epubcheck"; description = "Validation tool for EPUB"; mainProgram = "epubcheck"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = with licenses; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = with lib.licenses; [ asl20 bsd3 mpl10 w3c ]; - platforms = platforms.all; - maintainers = with maintainers; [ eadwu ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/by-name/er/erdtree/package.nix b/pkgs/by-name/er/erdtree/package.nix index 0f26a43f0e0b..60ee81d9bc70 100644 --- a/pkgs/by-name/er/erdtree/package.nix +++ b/pkgs/by-name/er/erdtree/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-qmSkMoTAwZz7Bn+r67tmh0SLvkM1EFAkySjLFzFFBv4="; - meta = with lib; { + meta = { description = "File-tree visualizer and disk usage analyzer"; homepage = "https://github.com/solidiquis/erdtree"; changelog = "https://github.com/solidiquis/erdtree/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zendo ]; mainProgram = "erd"; diff --git a/pkgs/by-name/er/erg/package.nix b/pkgs/by-name/er/erg/package.nix index e479c13d79a0..ba7907ee124a 100644 --- a/pkgs/by-name/er/erg/package.nix +++ b/pkgs/by-name/er/erg/package.nix @@ -56,12 +56,12 @@ rustPlatform.buildRustPackage rec { --set-default ERG_PATH $out/share/erg ''; - meta = with lib; { + meta = { description = "Statically typed language that can deeply improve the Python ecosystem"; mainProgram = "erg"; homepage = "https://github.com/erg-lang/erg"; changelog = "https://github.com/erg-lang/erg/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/er/ergo/package.nix b/pkgs/by-name/er/ergo/package.nix index f59c9c721cb8..195716867d7f 100644 --- a/pkgs/by-name/er/ergo/package.nix +++ b/pkgs/by-name/er/ergo/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) ergo; }; - meta = with lib; { + meta = { description = "Open protocol that implements modern scientific ideas in the blockchain area"; homepage = "https://ergoplatform.org/en/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.cc0; - platforms = platforms.all; - maintainers = with maintainers; [ mmahut ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.cc0; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mmahut ]; mainProgram = "ergo"; }; } diff --git a/pkgs/by-name/er/ergoscf/package.nix b/pkgs/by-name/er/ergoscf/package.nix index 897edc536454..b3d9d02ad18f 100644 --- a/pkgs/by-name/er/ergoscf/package.nix +++ b/pkgs/by-name/er/ergoscf/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Quantum chemistry program for large-scale self-consistent field calculations"; mainProgram = "ergo"; homepage = "http://www.ergoscf.org"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/er/ericw-tools/package.nix b/pkgs/by-name/er/ericw-tools/package.nix index 011c4cb47b2a..2da3d6647bc2 100644 --- a/pkgs/by-name/er/ericw-tools/package.nix +++ b/pkgs/by-name/er/ericw-tools/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required (VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://ericwa.github.io/ericw-tools/"; description = "Map compile tools for Quake and Hexen 2"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ astro ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ astro ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/er/erigon/package.nix b/pkgs/by-name/er/erigon/package.nix index 290b2ee39807..262f5d1753cc 100644 --- a/pkgs/by-name/er/erigon/package.nix +++ b/pkgs/by-name/er/erigon/package.nix @@ -59,14 +59,14 @@ buildGoModule { ]; }; - meta = with lib; { + meta = { homepage = "https://github.com/ledgerwatch/erigon/"; description = "Ethereum node implementation focused on scalability and modularity"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus gpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ happysalada ]; }; diff --git a/pkgs/by-name/er/errcheck/package.nix b/pkgs/by-name/er/errcheck/package.nix index fd0a880cce74..818308796019 100644 --- a/pkgs/by-name/er/errcheck/package.nix +++ b/pkgs/by-name/er/errcheck/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Checks for unchecked errors in go programs"; mainProgram = "errcheck"; homepage = "https://github.com/kisielk/errcheck"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/er/ersatztv/package.nix b/pkgs/by-name/er/ersatztv/package.nix index ceb96934a0ff..bca793326ff3 100644 --- a/pkgs/by-name/er/ersatztv/package.nix +++ b/pkgs/by-name/er/ersatztv/package.nix @@ -48,11 +48,11 @@ buildDotnetModule rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Stream custom live channels using your own media"; homepage = "https://ersatztv.org/"; - license = licenses.zlib; - maintainers = with maintainers; [ allout58 ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ allout58 ]; mainProgram = "ErsatzTV"; platforms = dotnet-runtime.meta.platforms; }; diff --git a/pkgs/by-name/es/es/package.nix b/pkgs/by-name/es/es/package.nix index 78bfa8981cf5..b747d8e792bb 100644 --- a/pkgs/by-name/es/es/package.nix +++ b/pkgs/by-name/es/es/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-readline" ]; - meta = with lib; { + meta = { description = "Extensible shell with higher order functions"; mainProgram = "es"; longDescription = '' @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { and the Tcl embeddable programming language. ''; homepage = "http://wryun.github.io/es-shell/"; - license = licenses.publicDomain; - maintainers = with maintainers; [ + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ sjmackenzie ttuegel ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; passthru = { diff --git a/pkgs/by-name/es/esbuild-config/package.nix b/pkgs/by-name/es/esbuild-config/package.nix index 57d376f13b75..c27480fc31f1 100644 --- a/pkgs/by-name/es/esbuild-config/package.nix +++ b/pkgs/by-name/es/esbuild-config/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-OQ7zlcWVu3sS/u0B+Ew6VUS4zxntKU2LF63ZcPRUKW0="; - meta = with lib; { + meta = { description = "Config files for esbuild"; homepage = "https://github.com/bpierre/esbuild-config"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "esbuild-config"; }; diff --git a/pkgs/by-name/es/eschalot/package.nix b/pkgs/by-name/es/eschalot/package.nix index 8af1be7cdd09..b0d84faea926 100644 --- a/pkgs/by-name/es/eschalot/package.nix +++ b/pkgs/by-name/es/eschalot/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { install -D -t $out/bin eschalot worgen ''; - meta = with lib; { + meta = { description = "Tor hidden service name generator"; homepage = src.meta.homepage; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/es/escrotum/package.nix b/pkgs/by-name/es/escrotum/package.nix index 7294bad7cb5e..e55b88fffc56 100644 --- a/pkgs/by-name/es/escrotum/package.nix +++ b/pkgs/by-name/es/escrotum/package.nix @@ -62,12 +62,12 @@ python3Packages.buildPythonApplication { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { homepage = "https://github.com/Roger/escrotum"; description = "Linux screen capture using pygtk, inspired by scrot"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "escrotum"; }; } diff --git a/pkgs/by-name/es/esh/package.nix b/pkgs/by-name/es/esh/package.nix index 1dbd3ea54e27..2b681fcc005d 100644 --- a/pkgs/by-name/es/esh/package.nix +++ b/pkgs/by-name/es/esh/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { execer can bin/esh ''; - meta = with lib; { + meta = { description = "Simple templating engine based on shell"; mainProgram = "esh"; homepage = "https://github.com/jirutka/esh"; - license = licenses.mit; - maintainers = with maintainers; [ mnacamura ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mnacamura ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/es/eslint_d/package.nix b/pkgs/by-name/es/eslint_d/package.nix index 58d8f25d491a..d4d71a153dd6 100644 --- a/pkgs/by-name/es/eslint_d/package.nix +++ b/pkgs/by-name/es/eslint_d/package.nix @@ -26,11 +26,11 @@ buildNpmPackage rec { version = src.rev; }; - meta = with lib; { + meta = { description = "Makes eslint the fastest linter on the planet"; homepage = "https://github.com/mantoni/eslint_d.js"; - license = licenses.mit; - maintainers = [ maintainers.ehllie ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ehllie ]; mainProgram = "eslint_d"; }; } diff --git a/pkgs/by-name/es/espanso/package.nix b/pkgs/by-name/es/espanso/package.nix index 8bc53454b0da..5757ed9d1980 100644 --- a/pkgs/by-name/es/espanso/package.nix +++ b/pkgs/by-name/es/espanso/package.nix @@ -152,16 +152,16 @@ rustPlatform.buildRustPackage (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Cross-platform Text Expander written in Rust"; mainProgram = "espanso"; homepage = "https://espanso.org"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kimat n8henrie ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; longDescription = '' Espanso detects when you type a keyword and replaces it while you're typing. ''; diff --git a/pkgs/by-name/es/espeakup/package.nix b/pkgs/by-name/es/espeakup/package.nix index cf440d4b6d80..7701a3475ee1 100644 --- a/pkgs/by-name/es/espeakup/package.nix +++ b/pkgs/by-name/es/espeakup/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system"; - meta = with lib; { + meta = { homepage = "https://github.com/linux-speakup/espeakup"; description = "Lightweight connector for espeak-ng and speakup"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ethindp ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ethindp ]; + platforms = with lib.platforms; linux; mainProgram = "espeakup"; }; } diff --git a/pkgs/by-name/es/esphome/dashboard.nix b/pkgs/by-name/es/esphome/dashboard.nix index 56fe472dba8d..4ab7fdb6c3da 100644 --- a/pkgs/by-name/es/esphome/dashboard.nix +++ b/pkgs/by-name/es/esphome/dashboard.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { "esphome_dashboard" ]; - meta = with lib; { + meta = { description = "ESPHome dashboard"; homepage = "https://esphome.io/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ hexa ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/es/espresso/package.nix b/pkgs/by-name/es/espresso/package.nix index 9e44a32cf0de..1acbff192c8d 100644 --- a/pkgs/by-name/es/espresso/package.nix +++ b/pkgs/by-name/es/espresso/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Multi-valued PLA minimization"; # from manual longDescription = '' @@ -37,13 +37,13 @@ stdenv.mkDerivation rec { heuristic Boolean minimization. ''; homepage = "https://github.com/chipsalliance/espresso"; - maintainers = with maintainers; [ pineapplehunter ]; + maintainers = with lib.maintainers; [ pineapplehunter ]; mainProgram = "espresso"; platforms = lib.platforms.all; # The license is not provided in the GitHub repo, # so until there's an update on the license, it is marked as unfree. # See: https://github.com/chipsalliance/espresso/issues/4 - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/es/esptool-ck/package.nix b/pkgs/by-name/es/esptool-ck/package.nix index 4f7ce1504e0d..f47ca4ed54fa 100644 --- a/pkgs/by-name/es/esptool-ck/package.nix +++ b/pkgs/by-name/es/esptool-ck/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp esptool $out/bin ''; - meta = with lib; { + meta = { description = "ESP8266/ESP32 build helper tool"; homepage = "https://github.com/igrr/esptool-ck"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; mainProgram = "esptool"; }; } diff --git a/pkgs/by-name/es/essentia-extractor/package.nix b/pkgs/by-name/es/essentia-extractor/package.nix index e99bbb20a3eb..9c079565d391 100644 --- a/pkgs/by-name/es/essentia-extractor/package.nix +++ b/pkgs/by-name/es/essentia-extractor/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { cp streaming_extractor_music $out/bin ''; - meta = with lib; { + meta = { homepage = "https://acousticbrainz.org/download"; description = "AcousticBrainz audio feature extractor"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ lovesegfault ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/es/esshader/package.nix b/pkgs/by-name/es/esshader/package.nix index 7ce2d7c907eb..731a0889482f 100644 --- a/pkgs/by-name/es/esshader/package.nix +++ b/pkgs/by-name/es/esshader/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { cp -a esshader $out/bin/ ''; - meta = with lib; { + meta = { description = "Offline ShaderToy-compatible GLSL shader viewer using OpenGL ES 2.0"; homepage = "https://github.com/cmcsun/esshader"; - license = licenses.mit; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ astro ]; platforms = lib.platforms.unix; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/et/et/package.nix b/pkgs/by-name/et/et/package.nix index cc73253dd6ea..90e40833417f 100644 --- a/pkgs/by-name/et/et/package.nix +++ b/pkgs/by-name/et/et/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { cp et-status.sh $out/bin/et-status ''; - meta = with lib; { + meta = { description = "Minimal libnotify-based (egg) timer"; homepage = "https://github.com/oxzi/et"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/et/etBook/package.nix b/pkgs/by-name/et/etBook/package.nix index b16359a7e01c..b76b8ae1b210 100644 --- a/pkgs/by-name/et/etBook/package.nix +++ b/pkgs/by-name/et/etBook/package.nix @@ -24,10 +24,10 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Typeface used in Edward Tufte’s books"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ jethro ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jethro ]; }; } diff --git a/pkgs/by-name/et/etcd_3_5/package.nix b/pkgs/by-name/et/etcd_3_5/package.nix index 54c6468dbf94..f3332859236f 100644 --- a/pkgs/by-name/et/etcd_3_5/package.nix +++ b/pkgs/by-name/et/etcd_3_5/package.nix @@ -25,14 +25,14 @@ let CGO_ENABLED = 0; }; - meta = with lib; { + meta = { description = "Distributed reliable key-value store for the most critical data of a distributed system"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://etcd.io/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dtomvan ]; - platforms = platforms.darwin ++ platforms.linux; + platforms = lib.platforms.darwin ++ lib.platforms.linux; }; etcdserver = buildGo124Module { diff --git a/pkgs/by-name/et/ethash/package.nix b/pkgs/by-name/et/ethash/package.nix index d3338399f103..4d9040f0d6e5 100644 --- a/pkgs/by-name/et/ethash/package.nix +++ b/pkgs/by-name/et/ethash/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { #"-DCMAKE_PREFIX_PATH=${gtest.dev}/lib/cmake" ]; - meta = with lib; { + meta = { description = "PoW algorithm for Ethereum 1.0 based on Dagger-Hashimoto"; homepage = "https://github.com/ethereum/ethash"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/et/etherape/package.nix b/pkgs/by-name/et/etherape/package.nix index ee77b6f1e1fb..3cfad5e9cde7 100644 --- a/pkgs/by-name/et/etherape/package.nix +++ b/pkgs/by-name/et/etherape/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { popt ]; - meta = with lib; { + meta = { homepage = "https://etherape.sourceforge.net/"; license = lib.licenses.gpl2Plus; - platforms = with platforms; linux; - maintainers = with maintainers; [ symphorien ]; + platforms = with lib.platforms; linux; + maintainers = with lib.maintainers; [ symphorien ]; }; } diff --git a/pkgs/by-name/et/ethercat/package.nix b/pkgs/by-name/et/ethercat/package.nix index 25def5e47b8f..6fd844ff4e22 100644 --- a/pkgs/by-name/et/ethercat/package.nix +++ b/pkgs/by-name/et/ethercat/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "IgH EtherCAT Master for Linux"; homepage = "https://etherlab.org/ethercat"; changelog = "https://gitlab.com/etherlab.org/ethercat/-/blob/${finalAttrs.version}/NEWS"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ stv0g ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ stv0g ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/et/ethq/package.nix b/pkgs/by-name/et/ethq/package.nix index b7eb49c86bb2..140ec4f03ae9 100644 --- a/pkgs/by-name/et/ethq/package.nix +++ b/pkgs/by-name/et/ethq/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Ethernet NIC Queue stats viewer"; mainProgram = "ethq"; homepage = "https://github.com/isc-projects/ethq"; - license = licenses.mpl20; - platforms = platforms.linux; + license = lib.licenses.mpl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/et/ethtool/package.nix b/pkgs/by-name/et/ethtool/package.nix index a648cc454034..4e2a94d6f303 100644 --- a/pkgs/by-name/et/ethtool/package.nix +++ b/pkgs/by-name/et/ethtool/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Utility for controlling network drivers and hardware"; homepage = "https://www.kernel.org/pub/software/network/ethtool/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "ethtool"; }; } diff --git a/pkgs/by-name/et/ets/package.nix b/pkgs/by-name/et/ets/package.nix index 66ed5045dd61..12ab967fd1e0 100644 --- a/pkgs/by-name/et/ets/package.nix +++ b/pkgs/by-name/et/ets/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Command output timestamper"; homepage = "https://github.com/gdubicki/ets/"; - license = licenses.mit; - maintainers = with maintainers; [ cameronfyfe ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cameronfyfe ]; mainProgram = "ets"; }; } diff --git a/pkgs/by-name/et/ettercap/package.nix b/pkgs/by-name/et/ettercap/package.nix index 518673ddc945..ffdc9ba85cde 100644 --- a/pkgs/by-name/et/ettercap/package.nix +++ b/pkgs/by-name/et/ettercap/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { # TODO: Remove after the next release (0.8.4 should work without this): env.NIX_CFLAGS_COMPILE = toString [ "-I${harfbuzz.dev}/include/harfbuzz" ]; - meta = with lib; { + meta = { description = "Comprehensive suite for man in the middle attacks"; longDescription = '' Ettercap is a comprehensive suite for man in the middle attacks. It @@ -84,8 +84,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.ettercap-project.org/"; changelog = "https://github.com/Ettercap/ettercap/releases/tag/${version}"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/eu/eunomia/package.nix b/pkgs/by-name/eu/eunomia/package.nix index d285c5d4adba..3d4bb14a26f1 100644 --- a/pkgs/by-name/eu/eunomia/package.nix +++ b/pkgs/by-name/eu/eunomia/package.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/eunomia/"; description = "Futuristic decorative font"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.ofl; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/eu/eureka-editor/package.nix b/pkgs/by-name/eu/eureka-editor/package.nix index 8ac7d27ee672..e27027ae21f2 100644 --- a/pkgs/by-name/eu/eureka-editor/package.nix +++ b/pkgs/by-name/eu/eureka-editor/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { cp misc/eureka.6 $out/man/man6 ''; - meta = with lib; { + meta = { homepage = "https://eureka-editor.sourceforge.net"; description = "Map editor for the classic DOOM games, and a few related games such as Heretic and Hexen"; mainProgram = "eureka"; - license = licenses.gpl2Plus; - platforms = platforms.all; - badPlatforms = platforms.darwin; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + badPlatforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ev/eva/package.nix b/pkgs/by-name/ev/eva/package.nix index 0c5901dbe859..9581b05f91f9 100644 --- a/pkgs/by-name/ev/eva/package.nix +++ b/pkgs/by-name/ev/eva/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-7vhhm2qAaSwBjbYfDER9bnC3OOOun4brn7Ft4mO6jfI="; - meta = with lib; { + meta = { description = "Calculator REPL, similar to bc"; homepage = "https://github.com/oppiliappan/eva"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ma27 ]; mainProgram = "eva"; diff --git a/pkgs/by-name/ev/evans/package.nix b/pkgs/by-name/ev/evans/package.nix index a8636834d0a7..af8cfad3f738 100644 --- a/pkgs/by-name/ev/evans/package.nix +++ b/pkgs/by-name/ev/evans/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { vendorHash = "sha256-oyFPycyQoYnN261kmGhkN9NMPMA6XChf4jXlYezKiCo="; - meta = with lib; { + meta = { description = "More expressive universal gRPC client"; mainProgram = "evans"; homepage = "https://evans.syfm.me/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ diogox ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ diogox ]; }; } diff --git a/pkgs/by-name/ev/evdev-proto/package.nix b/pkgs/by-name/ev/evdev-proto/package.nix index 6696d12912e6..ed4e1acf7f50 100644 --- a/pkgs/by-name/ev/evdev-proto/package.nix +++ b/pkgs/by-name/ev/evdev-proto/package.nix @@ -62,10 +62,10 @@ stdenv.mkDerivation { mv $prefix $out ''; - meta = with lib; { + meta = { description = "Input event device header files for FreeBSD"; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.freebsd; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.freebsd; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/ev/evdevremapkeys/package.nix b/pkgs/by-name/ev/evdevremapkeys/package.nix index 42bad51d9351..fa1b76f620aa 100644 --- a/pkgs/by-name/ev/evdevremapkeys/package.nix +++ b/pkgs/by-name/ev/evdevremapkeys/package.nix @@ -33,12 +33,12 @@ python3Packages.buildPythonPackage { pythonImportsCheck = [ "evdevremapkeys" ]; - meta = with lib; { + meta = { homepage = "https://github.com/philipl/evdevremapkeys"; description = "Daemon to remap events on linux input devices"; mainProgram = "evdevremapkeys"; - license = licenses.mit; - maintainers = [ maintainers.q3k ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.q3k ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ev/evemu/package.nix b/pkgs/by-name/ev/evemu/package.nix index 81340b377ec4..f4c97955388d 100644 --- a/pkgs/by-name/ev/evemu/package.nix +++ b/pkgs/by-name/ev/evemu/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Records and replays device descriptions and events to emulate input devices through the kernel's input system"; homepage = "https://www.freedesktop.org/wiki/Evemu/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only gpl3Only ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ev/eventlog/package.nix b/pkgs/by-name/ev/eventlog/package.nix index 5fda1f8c431e..aef430c567e3 100644 --- a/pkgs/by-name/ev/eventlog/package.nix +++ b/pkgs/by-name/ev/eventlog/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Syslog event logger library"; longDescription = '' The EventLog library aims to be a replacement of the simple syslog() API @@ -29,7 +29,7 @@ stdenv.mkDerivation { combination of description and tag/value pairs. ''; homepage = "https://www.balabit.com/support/community/products/"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ev/eventstat/package.nix b/pkgs/by-name/ev/eventstat/package.nix index 2f663accf12f..f7c9c1ce88ec 100644 --- a/pkgs/by-name/ev/eventstat/package.nix +++ b/pkgs/by-name/ev/eventstat/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Simple monitoring of system events"; mainProgram = "eventstat"; homepage = "https://github.com/ColinIanKing/eventstat"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ev/eventstore/package.nix b/pkgs/by-name/ev/eventstore/package.nix index ce903d439c8f..fd730c0fd77c 100644 --- a/pkgs/by-name/ev/eventstore/package.nix +++ b/pkgs/by-name/ev/eventstore/package.nix @@ -72,11 +72,11 @@ buildDotnetModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://geteventstore.com/"; description = "Event sourcing database with processing logic in JavaScript"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ puffnfresh mdarocha ]; diff --git a/pkgs/by-name/ev/everest-mons/package.nix b/pkgs/by-name/ev/everest-mons/package.nix index 30ce4ac2dacd..bd8a189ced06 100644 --- a/pkgs/by-name/ev/everest-mons/package.nix +++ b/pkgs/by-name/ev/everest-mons/package.nix @@ -38,10 +38,10 @@ python3Packages.buildPythonApplication rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { homepage = "https://mons.coloursofnoise.ca/"; description = "Commandline Everest installer and mod manager for Celeste"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ ulysseszhan ]; mainProgram = "mons"; }; diff --git a/pkgs/by-name/ev/everspace/package.nix b/pkgs/by-name/ev/everspace/package.nix index f3657f1189c7..aa6edff81292 100644 --- a/pkgs/by-name/ev/everspace/package.nix +++ b/pkgs/by-name/ev/everspace/package.nix @@ -119,11 +119,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Action-focused single-player space shooter with roguelike elements"; homepage = "https://classic.everspace-game.com/"; - license = licenses.unfree; - maintainers = with maintainers; [ jtrees ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jtrees ]; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; diff --git a/pkgs/by-name/ev/evhz/package.nix b/pkgs/by-name/ev/evhz/package.nix index c13147c3caad..127ec3de9d57 100644 --- a/pkgs/by-name/ev/evhz/package.nix +++ b/pkgs/by-name/ev/evhz/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { mv evhz $out/bin ''; - meta = with lib; { + meta = { description = "Show mouse refresh rate under linux + evdev"; homepage = "https://git.sr.ht/~iank/evhz"; - license = licenses.gpl3; - maintainers = with maintainers; [ Tungsten842 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ Tungsten842 ]; + platforms = lib.platforms.linux; mainProgram = "evhz"; }; } diff --git a/pkgs/by-name/ev/evillimiter/package.nix b/pkgs/by-name/ev/evillimiter/package.nix index 5909e8f74468..6d1a432b14ce 100644 --- a/pkgs/by-name/ev/evillimiter/package.nix +++ b/pkgs/by-name/ev/evillimiter/package.nix @@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Tool that monitors, analyzes and limits the bandwidth"; longDescription = '' A tool to monitor, analyze and limit the bandwidth (upload/download) of @@ -44,8 +44,8 @@ python3Packages.buildPythonApplication rec { bandwidth of hosts on the network. ''; homepage = "https://github.com/bitbrute/evillimiter"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "evillimiter"; }; } diff --git a/pkgs/by-name/ev/evilpixie/package.nix b/pkgs/by-name/ev/evilpixie/package.nix index caed9af31c21..a4d0760d701e 100644 --- a/pkgs/by-name/ev/evilpixie/package.nix +++ b/pkgs/by-name/ev/evilpixie/package.nix @@ -38,14 +38,14 @@ stdenv.mkDerivation (finalAttrs: { impy ]; - meta = with lib; { + meta = { description = "Pixel-oriented paint program, modelled on Deluxe Paint"; mainProgram = "evilpixie"; homepage = "https://github.com/bcampbell/evilpixie"; # http://evilpixie.scumways.com/ is gone downloadPage = "https://github.com/bcampbell/evilpixie/releases"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; # Undefined symbols for architecture x86_64: # "_bundle_path", referenced from: App::SetupPaths() in src_app.cpp.o broken = diff --git a/pkgs/by-name/ev/evince/package.nix b/pkgs/by-name/ev/evince/package.nix index 3d1554d752a5..595537e2b7c2 100644 --- a/pkgs/by-name/ev/evince/package.nix +++ b/pkgs/by-name/ev/evince/package.nix @@ -141,7 +141,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Evince/"; description = "GNOME's document viewer"; @@ -152,12 +152,12 @@ stdenv.mkDerivation (finalAttrs: { on the GNOME Desktop with a single simple application. ''; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "evince"; teams = [ - teams.gnome - teams.pantheon + lib.teams.gnome + lib.teams.pantheon ]; }; }) diff --git a/pkgs/by-name/ev/evmdis/package.nix b/pkgs/by-name/ev/evmdis/package.nix index cd4243f2877d..5d028fc29d8f 100644 --- a/pkgs/by-name/ev/evmdis/package.nix +++ b/pkgs/by-name/ev/evmdis/package.nix @@ -23,11 +23,11 @@ buildGoModule { ldflags = [ "-s" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Arachnid/evmdis"; description = "Ethereum EVM disassembler"; mainProgram = "evmdis"; - license = [ licenses.asl20 ]; - maintainers = with maintainers; [ asymmetric ]; + license = [ lib.licenses.asl20 ]; + maintainers = with lib.maintainers; [ asymmetric ]; }; } diff --git a/pkgs/by-name/ev/evolution-ews/package.nix b/pkgs/by-name/ev/evolution-ews/package.nix index a93eec2c8be1..4d04a7c15b2e 100644 --- a/pkgs/by-name/ev/evolution-ews/package.nix +++ b/pkgs/by-name/ev/evolution-ews/package.nix @@ -88,11 +88,11 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "Evolution connector for Microsoft Exchange Server protocols"; homepage = "https://gitlab.gnome.org/GNOME/evolution-ews"; - license = licenses.lgpl21Plus; # https://gitlab.gnome.org/GNOME/evolution-ews/issues/111 - maintainers = [ maintainers.dasj19 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; # https://gitlab.gnome.org/GNOME/evolution-ews/issues/111 + maintainers = [ lib.maintainers.dasj19 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ev/evscript/package.nix b/pkgs/by-name/ev/evscript/package.nix index e5801005edd4..675cad69b85e 100644 --- a/pkgs/by-name/ev/evscript/package.nix +++ b/pkgs/by-name/ev/evscript/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-L0qwHWxMf/Nd0B2FWLIpKLgrs2LRyTOwuG/7keMI2zE="; - meta = with lib; { + meta = { homepage = "https://codeberg.org/valpackett/evscript"; description = "Tiny sandboxed Dyon scripting environment for evdev input devices"; mainProgram = "evscript"; - license = licenses.unlicense; - maintainers = with maintainers; [ milesbreslin ]; - platforms = platforms.linux; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ milesbreslin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ev/evsieve/package.nix b/pkgs/by-name/ev/evsieve/package.nix index ad1df7f50e1d..7a2bb56fc1ff 100644 --- a/pkgs/by-name/ev/evsieve/package.nix +++ b/pkgs/by-name/ev/evsieve/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { doCheck = false; # unit tests create uinput devices - meta = with lib; { + meta = { description = "Utility for mapping events from Linux event devices"; mainProgram = "evsieve"; homepage = "https://github.com/KarsMulder/evsieve"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ tsowell ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ tsowell ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ev/evtest/package.nix b/pkgs/by-name/ev/evtest/package.nix index b69c5a0d423b..7d6e4bf89f6a 100644 --- a/pkgs/by-name/ev/evtest/package.nix +++ b/pkgs/by-name/ev/evtest/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-M7AGcHklErfRIOu64+OU397OFuqkAn4dqZxx7sDfklc="; }; - meta = with lib; { + meta = { description = "Simple tool for input event debugging"; license = lib.licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "evtest"; }; } diff --git a/pkgs/by-name/ew/eweb/package.nix b/pkgs/by-name/ew/eweb/package.nix index e765b4a3cf28..f108d82d4b00 100644 --- a/pkgs/by-name/ew/eweb/package.nix +++ b/pkgs/by-name/ew/eweb/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { cp etangle.w etangle.html $out/share/doc/${pname}-${version} ''; - meta = with lib; { + meta = { homepage = "https://eweb.sourceforge.net/"; description = "Asciidoc-based literate programming tool, written in Python"; mainProgram = "etangle.py"; - platforms = platforms.linux; - license = licenses.gpl3Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ex/exabgp/package.nix b/pkgs/by-name/ex/exabgp/package.nix index 2bd1a8c59fff..bf01869f9ce7 100644 --- a/pkgs/by-name/ex/exabgp/package.nix +++ b/pkgs/by-name/ex/exabgp/package.nix @@ -36,13 +36,13 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "BGP swiss army knife of networking"; homepage = "https://github.com/Exa-Networks/exabgp"; changelog = "https://github.com/Exa-Networks/exabgp/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "exabgp"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hexa raitobezarius ]; diff --git a/pkgs/by-name/ex/exactaudiocopy/package.nix b/pkgs/by-name/ex/exactaudiocopy/package.nix index f4740b86bf12..52dcb505b482 100644 --- a/pkgs/by-name/ex/exactaudiocopy/package.nix +++ b/pkgs/by-name/ex/exactaudiocopy/package.nix @@ -84,12 +84,12 @@ symlinkJoin { desktopItem ]; - meta = with lib; { + meta = { description = "Precise CD audio grabber for creating perfect quality rips using CD and DVD drives"; homepage = "https://www.exactaudiocopy.de/"; changelog = "https://www.exactaudiocopy.de/en/index.php/resources/whats-new/whats-new/"; - license = licenses.unfree; - maintainers = [ maintainers.brendanreis ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.brendanreis ]; platforms = wine.meta.platforms; }; } diff --git a/pkgs/by-name/ex/exaile/package.nix b/pkgs/by-name/ex/exaile/package.nix index e8b14a428189..9f9cb6f66f60 100644 --- a/pkgs/by-name/ex/exaile/package.nix +++ b/pkgs/by-name/ex/exaile/package.nix @@ -112,12 +112,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://www.exaile.org/"; description = "Music player with a simple interface and powerful music management capabilities"; mainProgram = "exaile"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ ryneeverett ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ryneeverett ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ex/example-robot-data/package.nix b/pkgs/by-name/ex/example-robot-data/package.nix index 321503b0cafe..6fe5354cea0d 100644 --- a/pkgs/by-name/ex/example-robot-data/package.nix +++ b/pkgs/by-name/ex/example-robot-data/package.nix @@ -40,14 +40,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Set of robot URDFs for benchmarking and developed examples"; homepage = "https://github.com/Gepetto/example-robot-data"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nim65s wegank ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ex/exe2hex/package.nix b/pkgs/by-name/ex/exe2hex/package.nix index 828bdc08b647..ff0212156db7 100644 --- a/pkgs/by-name/ex/exe2hex/package.nix +++ b/pkgs/by-name/ex/exe2hex/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication { install -Dm 555 exe2hex.py $out/bin/exe2hex ''; - meta = with lib; { + meta = { description = "Inline file transfer using in-built Windows tools"; homepage = "https://github.com/g0tmi1k/exe2hex"; mainProgram = "exe2hex"; - license = licenses.mit; - maintainers = with maintainers; [ d3vil0p3r ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ d3vil0p3r ]; }; } diff --git a/pkgs/by-name/ex/exempi/package.nix b/pkgs/by-name/ex/exempi/package.nix index 748a4bdbbce1..a25d7e816a81 100644 --- a/pkgs/by-name/ex/exempi/package.nix +++ b/pkgs/by-name/ex/exempi/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Implementation of XMP (Adobe's Extensible Metadata Platform)"; mainProgram = "exempi"; homepage = "https://libopenraw.freedesktop.org/exempi/"; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/ex/exercism/package.nix b/pkgs/by-name/ex/exercism/package.nix index 88b8ce24ddfa..e3f8407f8a82 100644 --- a/pkgs/by-name/ex/exercism/package.nix +++ b/pkgs/by-name/ex/exercism/package.nix @@ -34,13 +34,13 @@ buildGoModule rec { --zsh shell/exercism_completion.zsh ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Go based command line tool for exercism.io"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ - maintainers.rbasso - maintainers.nobbz + lib.maintainers.rbasso + lib.maintainers.nobbz ]; mainProgram = "exercism"; }; diff --git a/pkgs/by-name/ex/exfat/package.nix b/pkgs/by-name/ex/exfat/package.nix index 3d7d66648a40..33ae9f27de82 100644 --- a/pkgs/by-name/ex/exfat/package.nix +++ b/pkgs/by-name/ex/exfat/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ fuse ]; - meta = with lib; { + meta = { description = "Free exFAT file system implementation"; inherit (src.meta) homepage; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dywedir ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dywedir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ex/exfatprogs/package.nix b/pkgs/by-name/ex/exfatprogs/package.nix index b58605e751de..97a2e38c4ea3 100644 --- a/pkgs/by-name/ex/exfatprogs/package.nix +++ b/pkgs/by-name/ex/exfatprogs/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { file ]; - meta = with lib; { + meta = { description = "exFAT filesystem userspace utilities"; homepage = "https://github.com/exfatprogs/exfatprogs"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ yuannan ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ yuannan ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ex/exhaustive/package.nix b/pkgs/by-name/ex/exhaustive/package.nix index d322c54b1f8e..f489c9f9c655 100644 --- a/pkgs/by-name/ex/exhaustive/package.nix +++ b/pkgs/by-name/ex/exhaustive/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Check exhaustiveness of switch statements of enum-like constants in Go code"; mainProgram = "exhaustive"; homepage = "https://github.com/nishanths/exhaustive"; - license = licenses.bsd2; - maintainers = with maintainers; [ meain ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ meain ]; }; } diff --git a/pkgs/by-name/ex/exif/package.nix b/pkgs/by-name/ex/exif/package.nix index 0d095b76ce9c..46bedb6cd676 100644 --- a/pkgs/by-name/ex/exif/package.nix +++ b/pkgs/by-name/ex/exif/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { libintl ]; - meta = with lib; { + meta = { homepage = "https://libexif.github.io"; description = "Utility to read and manipulate EXIF data in digital photographs"; - platforms = platforms.unix; - license = licenses.lgpl21Plus; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Plus; mainProgram = "exif"; }; } diff --git a/pkgs/by-name/ex/exifprobe/package.nix b/pkgs/by-name/ex/exifprobe/package.nix index ed4e2737f102..b1d5b1cf412c 100644 --- a/pkgs/by-name/ex/exifprobe/package.nix +++ b/pkgs/by-name/ex/exifprobe/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { rm -r $out/usr ''; - meta = with lib; { + meta = { description = "Tool for reading EXIF data from image files produced by digital cameras"; homepage = "https://github.com/hfiguiere/exifprobe"; - license = licenses.bsd2; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ex/exiv2/package.nix b/pkgs/by-name/ex/exiv2/package.nix index 28dbc735de95..83aaab70b309 100644 --- a/pkgs/by-name/ex/exiv2/package.nix +++ b/pkgs/by-name/ex/exiv2/package.nix @@ -107,12 +107,12 @@ stdenv.mkDerivation rec { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { homepage = "https://exiv2.org"; description = "Library and command-line utility to manage image metadata"; mainProgram = "exiv2"; - platforms = platforms.all; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ wegank ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/ex/exodus/package.nix b/pkgs/by-name/ex/exodus/package.nix index 5992f3274f65..cf299cea789b 100644 --- a/pkgs/by-name/ex/exodus/package.nix +++ b/pkgs/by-name/ex/exodus/package.nix @@ -96,13 +96,13 @@ stdenv.mkDerivation (finalAttrs: { $out/Exodus ''; - meta = with lib; { + meta = { homepage = "https://www.exodus.io/"; description = "Top-rated cryptocurrency wallet with Trezor integration and built-in Exchange"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mmahut rople380 Crafter diff --git a/pkgs/by-name/ex/exonerate/package.nix b/pkgs/by-name/ex/exonerate/package.nix index a0bff5fa0e6e..ca531eedd11b 100644 --- a/pkgs/by-name/ex/exonerate/package.nix +++ b/pkgs/by-name/ex/exonerate/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Generic tool for sequence alignment"; homepage = "https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate"; - license = licenses.gpl3; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ex/expat/package.nix b/pkgs/by-name/ex/expat/package.nix index d650a64b19fc..39dca62d6c1e 100644 --- a/pkgs/by-name/ex/expat/package.nix +++ b/pkgs/by-name/ex/expat/package.nix @@ -72,13 +72,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/libexpat/libexpat/blob/${tag}/expat/Changes"; homepage = "https://libexpat.github.io/"; description = "Stream-oriented XML parser library written in C"; mainProgram = "xmlwf"; - platforms = platforms.all; - license = licenses.mit; # expat version + platforms = lib.platforms.all; + license = lib.licenses.mit; # expat version pkgConfigModules = [ "expat" ]; }; }) diff --git a/pkgs/by-name/ex/expected-lite/package.nix b/pkgs/by-name/ex/expected-lite/package.nix index 2726a31d358a..5f5ebe2cad5d 100644 --- a/pkgs/by-name/ex/expected-lite/package.nix +++ b/pkgs/by-name/ex/expected-lite/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = '' Expected objects in C++11 and later in a single-file header-only library ''; homepage = "https://github.com/martinmoene/expected-lite"; changelog = "https://github.com/martinmoene/expected-lite/blob/${src.rev}/CHANGES.txt"; - license = licenses.boost; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/ex/expenses/package.nix b/pkgs/by-name/ex/expenses/package.nix index 7ba110adf3a3..b9ba6ef7bbf4 100644 --- a/pkgs/by-name/ex/expenses/package.nix +++ b/pkgs/by-name/ex/expenses/package.nix @@ -40,10 +40,10 @@ buildGoModule rec { --fish <($out/bin/expenses completion fish) ''; - meta = with lib; { + meta = { description = "Interactive command line expense logger"; - license = licenses.mit; - maintainers = [ maintainers.manojkarthick ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.manojkarthick ]; mainProgram = "expenses"; }; } diff --git a/pkgs/by-name/ex/explain/package.nix b/pkgs/by-name/ex/explain/package.nix index 80cc946b2e68..7a9971887f98 100644 --- a/pkgs/by-name/ex/explain/package.nix +++ b/pkgs/by-name/ex/explain/package.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { description = "Library and utility to explain system call errors"; mainProgram = "explain"; homepage = "https://libexplain.sourceforge.net"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ McSinyx ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ McSinyx ]; + platforms = lib.platforms.unix; # never built on aarch64-linux since first introduction in nixpkgs broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/ex/exportarr/package.nix b/pkgs/by-name/ex/exportarr/package.nix index 4f3d68934524..44e78f4e3092 100644 --- a/pkgs/by-name/ex/exportarr/package.nix +++ b/pkgs/by-name/ex/exportarr/package.nix @@ -34,12 +34,12 @@ buildGoModule rec { unset subPackages ''; - meta = with lib; { + meta = { description = "AIO Prometheus Exporter for Sonarr, Radarr or Lidarr"; mainProgram = "exportarr"; homepage = "https://github.com/onedr0p/exportarr"; changelog = "https://github.com/onedr0p/exportarr/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/ex/expr/package.nix b/pkgs/by-name/ex/expr/package.nix index 9d3e2ad6987b..fb40213ba741 100644 --- a/pkgs/by-name/ex/expr/package.nix +++ b/pkgs/by-name/ex/expr/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { mv $out/bin/{repl,expr} ''; - meta = with lib; { + meta = { description = "Expression language and expression evaluation for Go"; homepage = "https://github.com/expr-lang/expr"; changelog = "https://github.com/expr-lang/expr/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "expr"; }; diff --git a/pkgs/by-name/ex/expressvpn/package.nix b/pkgs/by-name/ex/expressvpn/package.nix index 641edd36cb72..8940016b50ee 100644 --- a/pkgs/by-name/ex/expressvpn/package.nix +++ b/pkgs/by-name/ex/expressvpn/package.nix @@ -105,11 +105,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "CLI client for ExpressVPN"; homepage = "https://www.expressvpn.com"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ yureien ]; + maintainers = with lib.maintainers; [ yureien ]; }; } diff --git a/pkgs/by-name/ex/exprtk/package.nix b/pkgs/by-name/ex/exprtk/package.nix index 814caaed2566..c3a4467ed0dc 100644 --- a/pkgs/by-name/ex/exprtk/package.nix +++ b/pkgs/by-name/ex/exprtk/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "C++ Mathematical Expression Toolkit Library"; homepage = "https://www.partow.net/programming/exprtk/index.html"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ex/exrtools/package.nix b/pkgs/by-name/ex/exrtools/package.nix index c86cccd3074c..7f6784e11939 100644 --- a/pkgs/by-name/ex/exrtools/package.nix +++ b/pkgs/by-name/ex/exrtools/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { libjpeg ]; - meta = with lib; { + meta = { description = "Collection of utilities for manipulating OpenEXR images"; homepage = "http://scanline.ca/exrtools"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/ex/ext3grep/package.nix b/pkgs/by-name/ex/ext3grep/package.nix index 5c5b9b0b5dc4..b7f3ad9f62dd 100644 --- a/pkgs/by-name/ex/ext3grep/package.nix +++ b/pkgs/by-name/ex/ext3grep/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Tool to investigate an ext3 file system for deleted content and possibly recover it"; mainProgram = "ext3grep"; homepage = "https://code.google.com/archive/p/ext3grep/"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/ex/ext4fuse/package.nix b/pkgs/by-name/ex/ext4fuse/package.nix index 4ab5612fe8f5..113201fb7f2e 100644 --- a/pkgs/by-name/ex/ext4fuse/package.nix +++ b/pkgs/by-name/ex/ext4fuse/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "EXT4 implementation for FUSE"; mainProgram = "ext4fuse"; homepage = "https://github.com/gerard/ext4fuse"; - maintainers = with maintainers; [ felixalbrigtsen ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ felixalbrigtsen ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/ex/ext4magic/package.nix b/pkgs/by-name/ex/ext4magic/package.nix index 16942d313983..926ee4b1dbaa 100644 --- a/pkgs/by-name/ex/ext4magic/package.nix +++ b/pkgs/by-name/ex/ext4magic/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { ]; installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Recover / undelete files from ext3 or ext4 partitions"; longDescription = '' ext4magic can recover/undelete files from ext3 or ext4 partitions @@ -53,9 +53,9 @@ stdenv.mkDerivation rec { It's much more effective and works much better than extundelete. ''; homepage = "https://ext4magic.sourceforge.net/ext4magic_en.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.rkoe ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rkoe ]; mainProgram = "ext4magic"; }; } diff --git a/pkgs/by-name/ex/external-editor-revived/package.nix b/pkgs/by-name/ex/external-editor-revived/package.nix index 0bffe733b87f..1c0f81a98681 100644 --- a/pkgs/by-name/ex/external-editor-revived/package.nix +++ b/pkgs/by-name/ex/external-editor-revived/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { --replace-fail "@OUT@" "$out" ''; - meta = with lib; { + meta = { description = "Native messaging host for the Thunderbird addon allowing to edit mails in external programs"; homepage = "https://github.com/Frederick888/external-editor-revived"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ mofrim ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ mofrim ]; mainProgram = "external-editor-revived"; }; } diff --git a/pkgs/by-name/ex/extest/package.nix b/pkgs/by-name/ex/extest/package.nix index 03424c075283..f3a58532d58c 100644 --- a/pkgs/by-name/ex/extest/package.nix +++ b/pkgs/by-name/ex/extest/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-82jG4tHqc5FQFGp4NANk2oJjiHc0+ekVdbdWlqjzaj8="; - meta = with lib; { + meta = { description = "X11 XTEST reimplementation primarily for Steam Controller on Wayland"; homepage = "https://github.com/Supreeeme/extest"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = [ maintainers.puffnfresh ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.puffnfresh ]; }; } diff --git a/pkgs/by-name/ex/extism-cli/package.nix b/pkgs/by-name/ex/extism-cli/package.nix index 5ac71d2c9bd2..7b86cb932605 100644 --- a/pkgs/by-name/ex/extism-cli/package.nix +++ b/pkgs/by-name/ex/extism-cli/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { --zsh <($out/bin/extism completion zsh) ''; - meta = with lib; { + meta = { description = "Extism CLI is used to manage Extism installations"; homepage = "https://github.com/extism/cli"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "extism"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ex/extrace/package.nix b/pkgs/by-name/ex/extrace/package.nix index 6d2491acfa85..c8330db655f1 100644 --- a/pkgs/by-name/ex/extrace/package.nix +++ b/pkgs/by-name/ex/extrace/package.nix @@ -22,14 +22,14 @@ stdenv.mkDerivation rec { install -m644 LICENSE "$out/share/licenses/extrace/LICENSE" ''; - meta = with lib; { + meta = { homepage = "https://github.com/leahneukirchen/extrace"; description = "Trace exec() calls system-wide"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus bsd2 ]; - platforms = platforms.linux; - maintainers = [ maintainers.leahneukirchen ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.leahneukirchen ]; }; } diff --git a/pkgs/by-name/ex/extract_url/package.nix b/pkgs/by-name/ex/extract_url/package.nix index a5437970bf83..74dce6213902 100644 --- a/pkgs/by-name/ex/extract_url/package.nix +++ b/pkgs/by-name/ex/extract_url/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { --set PERL5LIB "${perlPackages.makeFullPerlPath perlDeps}" ''; - meta = with lib; { + meta = { homepage = "https://www.memoryhole.net/~kyle/extract_url/"; description = "Extracts URLs from MIME messages or plain text"; mainProgram = "extract_url"; - license = licenses.bsd2; - maintainers = [ maintainers.qyliss ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.qyliss ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ex/extractpdfmark/package.nix b/pkgs/by-name/ex/extractpdfmark/package.nix index 2d9a6b97cbf8..df1f911c4310 100644 --- a/pkgs/by-name/ex/extractpdfmark/package.nix +++ b/pkgs/by-name/ex/extractpdfmark/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { texlive.combined.scheme-minimal ]; - meta = with lib; { + meta = { homepage = "https://github.com/trueroad/extractpdfmark"; description = "Extract page mode and named destinations as PDFmark from PDF"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.samueltardieu ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.samueltardieu ]; + platforms = lib.platforms.all; mainProgram = "extractpdfmark"; }; } diff --git a/pkgs/by-name/ex/extrude/package.nix b/pkgs/by-name/ex/extrude/package.nix index 9ae410ec7ff4..ffc6de3b42fa 100644 --- a/pkgs/by-name/ex/extrude/package.nix +++ b/pkgs/by-name/ex/extrude/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-8qjIYPkWtYTvl7wAnefpZAjbNSQLQFqRnGGccYZ8ZmU="; - meta = with lib; { + meta = { description = "Tool to analyse binaries for missing security features"; mainProgram = "extrude"; homepage = "https://github.com/liamg/extrude"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ex/extundelete/package.nix b/pkgs/by-name/ex/extundelete/package.nix index a51282564837..2e695a58d6ce 100644 --- a/pkgs/by-name/ex/extundelete/package.nix +++ b/pkgs/by-name/ex/extundelete/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { --replace "inode.i_dir_acl" "inode.i_size_high" ''; - meta = with lib; { + meta = { description = "Utility that can recover deleted files from an ext3 or ext4 partition"; homepage = "https://extundelete.sourceforge.net/"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "extundelete"; }; diff --git a/pkgs/by-name/ex/exult/package.nix b/pkgs/by-name/ex/exult/package.nix index edccebafd030..cb3dcdf93688 100644 --- a/pkgs/by-name/ex/exult/package.nix +++ b/pkgs/by-name/ex/exult/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { makeFlags = [ "NIX_DESTDIR=$(out)" ]; # see postPatch configureFlags = lib.optional (!enableTools) "--disable-tools"; - meta = with lib; { + meta = { description = "Recreation of Ultima VII for modern operating systems"; longDescription = '' Ultima VII, an RPG from the early 1990's, still has a huge following. But, @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { possible. ''; homepage = "http://exult.info"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "exult"; }; diff --git a/pkgs/by-name/ey/eyewitness/package.nix b/pkgs/by-name/ey/eyewitness/package.nix index 1daaa89dc0c6..a62b9e9219f0 100644 --- a/pkgs/by-name/ey/eyewitness/package.nix +++ b/pkgs/by-name/ey/eyewitness/package.nix @@ -64,13 +64,13 @@ python3Packages.buildPythonApplication rec { runHook postFixup ''; - meta = with lib; { + meta = { description = "Take screenshots of websites, and identify admin interfaces"; homepage = "https://github.com/redsiege/EyeWitness"; changelog = "https://github.com/redsiege/EyeWitness/blob/${src.rev}/CHANGELOG"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ tochiaha ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ tochiaha ]; mainProgram = "eye-witness"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ez/ezno/package.nix b/pkgs/by-name/ez/ezno/package.nix index d23cc5524be8..0d0460bfb327 100644 --- a/pkgs/by-name/ez/ezno/package.nix +++ b/pkgs/by-name/ez/ezno/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { "ezno" ]; - meta = with lib; { + meta = { description = "JavaScript compiler and TypeScript checker with a focus on static analysis and runtime performance"; mainProgram = "ezno"; homepage = "https://github.com/kaleidawave/ezno"; changelog = "https://github.com/kaleidawave/ezno/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ez/ezra-sil/package.nix b/pkgs/by-name/ez/ezra-sil/package.nix index 83409b242775..035067cf0236 100644 --- a/pkgs/by-name/ez/ezra-sil/package.nix +++ b/pkgs/by-name/ez/ezra-sil/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/ezra"; description = "Typeface fashioned after the square letter forms of the typography of the Biblia Hebraica Stuttgartensia (BHS)"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.kmein ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.kmein ]; }; } diff --git a/pkgs/by-name/f1/f1_8/package.nix b/pkgs/by-name/f1/f1_8/package.nix index c82e08c7ec0d..0ebe006eda6b 100644 --- a/pkgs/by-name/f1/f1_8/package.nix +++ b/pkgs/by-name/f1/f1_8/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/f1_8/"; description = "Weighted decorative font"; - platforms = platforms.all; - maintainers = with maintainers; [ minijackson ]; - license = licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/f1/f1viewer/package.nix b/pkgs/by-name/f1/f1viewer/package.nix index baa1949673a5..1c53f74b84d4 100644 --- a/pkgs/by-name/f1/f1viewer/package.nix +++ b/pkgs/by-name/f1/f1viewer/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-UNeH3zxgssXxFpJws6nAL8EgXt0DRyAQfmlJWz/qyDg="; - meta = with lib; { + meta = { description = "TUI to view Formula 1 footage using VLC or another media player"; homepage = "https://github.com/SoMuchForSubtlety/f1viewer"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ michzappa ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ michzappa ]; mainProgram = "f1viewer"; }; } diff --git a/pkgs/by-name/f2/f2c/package.nix b/pkgs/by-name/f2/f2c/package.nix index acc430409f1f..197c11a94c9b 100644 --- a/pkgs/by-name/f2/f2c/package.nix +++ b/pkgs/by-name/f2/f2c/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Convert Fortran 77 source code to C"; homepage = "https://www.netlib.org/f2c/"; - license = licenses.mit; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/f3/f3/package.nix b/pkgs/by-name/f3/f3/package.nix index 736ead2fb5dc..1089b6325ec4 100644 --- a/pkgs/by-name/f3/f3/package.nix +++ b/pkgs/by-name/f3/f3/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/doc/f3 LICENSE README.rst ''; - meta = with lib; { + meta = { description = "Fight Flash Fraud"; homepage = "https://fight-flash-fraud.readthedocs.io/en/stable/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ makefu ]; }; diff --git a/pkgs/by-name/f5/f5_6/package.nix b/pkgs/by-name/f5/f5_6/package.nix index ec7447e6df74..73927de5ed9f 100644 --- a/pkgs/by-name/f5/f5_6/package.nix +++ b/pkgs/by-name/f5/f5_6/package.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/f5_6/"; description = "Weighted decorative font"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.ofl; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/fa/fa_1/package.nix b/pkgs/by-name/fa/fa_1/package.nix index 165abcfdba7a..7d9d296dca24 100644 --- a/pkgs/by-name/fa/fa_1/package.nix +++ b/pkgs/by-name/fa/fa_1/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/fa_1/"; description = "Weighted decorative font"; - platforms = platforms.all; - maintainers = with maintainers; [ minijackson ]; - license = licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/fa/faac/package.nix b/pkgs/by-name/fa/faac/package.nix index eeb34ebaedea..d05bea62dd8a 100644 --- a/pkgs/by-name/fa/faac/package.nix +++ b/pkgs/by-name/fa/faac/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Open source MPEG-4 and MPEG-2 AAC encoder"; homepage = "https://github.com/knik0/faac"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ codyopel ]; - platforms = platforms.all; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ codyopel ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/fa/faad2/package.nix b/pkgs/by-name/fa/faad2/package.nix index d4fa16c7f68c..f36c56084a11 100644 --- a/pkgs/by-name/fa/faad2/package.nix +++ b/pkgs/by-name/fa/faad2/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { ocaml-faad = ocamlPackages.faad; }; - meta = with lib; { + meta = { description = "Open source MPEG-4 and MPEG-2 AAC decoder"; homepage = "https://sourceforge.net/projects/faac/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ codyopel ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ codyopel ]; mainProgram = "faad"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fa/faas-cli/package.nix b/pkgs/by-name/fa/faas-cli/package.nix index e6ad4718a6ea..165e30fe6481 100644 --- a/pkgs/by-name/fa/faas-cli/package.nix +++ b/pkgs/by-name/fa/faas-cli/package.nix @@ -66,12 +66,12 @@ buildGoModule rec { package = faas-cli; }; - meta = with lib; { + meta = { description = "Official CLI for OpenFaaS"; mainProgram = "faas-cli"; homepage = "https://github.com/openfaas/faas-cli"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ welteki techknowlogick ]; diff --git a/pkgs/by-name/fa/faba-icon-theme/package.nix b/pkgs/by-name/fa/faba-icon-theme/package.nix index e110514e72f9..5029b4ed65c1 100644 --- a/pkgs/by-name/fa/faba-icon-theme/package.nix +++ b/pkgs/by-name/fa/faba-icon-theme/package.nix @@ -41,14 +41,14 @@ stdenvNoCC.mkDerivation rec { patchShebangs meson/post_install.py ''; - meta = with lib; { + meta = { description = "Sexy and modern icon theme with Tango influences"; homepage = "https://snwh.org/moka"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 gpl3 ]; - platforms = platforms.all; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/fa/faba-mono-icons/package.nix b/pkgs/by-name/fa/faba-mono-icons/package.nix index 85a6ecd99737..b8f6cfb216f4 100644 --- a/pkgs/by-name/fa/faba-mono-icons/package.nix +++ b/pkgs/by-name/fa/faba-mono-icons/package.nix @@ -41,12 +41,12 @@ stdenvNoCC.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Full set of Faba monochrome panel icons"; homepage = "https://snwh.org/moka"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # moka-icon-theme dependency is restricted to linux - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/fa/fabric-installer/package.nix b/pkgs/by-name/fa/fabric-installer/package.nix index 3cde3068c373..d933068b7313 100644 --- a/pkgs/by-name/fa/fabric-installer/package.nix +++ b/pkgs/by-name/fa/fabric-installer/package.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { --add-flags "-jar $out/lib/fabric/fabric-installer.jar" ''; - meta = with lib; { + meta = { homepage = "https://fabricmc.net/"; description = "Lightweight, experimental modding toolchain for Minecraft"; mainProgram = "fabric-installer"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fa/fabs/package.nix b/pkgs/by-name/fa/fabs/package.nix index 69bcd4c13797..dd314063a0ca 100644 --- a/pkgs/by-name/fa/fabs/package.nix +++ b/pkgs/by-name/fa/fabs/package.nix @@ -55,7 +55,7 @@ python3.pkgs.buildPythonApplication rec { sqlite ]; - meta = with lib; { + meta = { outputsToInstall = [ "out" "man" @@ -63,8 +63,8 @@ python3.pkgs.buildPythonApplication rec { mainProgram = "fabsys"; description = "Flexible AFS Backup System for the OpenAFS distributed file system"; homepage = "https://github.com/openafs-contrib/fabs"; - license = with licenses; [ isc ]; - maintainers = with maintainers; [ spacefrogg ]; + license = with lib.licenses; [ isc ]; + maintainers = with lib.maintainers; [ spacefrogg ]; broken = lib.versionAtLeast python3.pkgs.sqlalchemy.version "2.0"; badPlatforms = [ "x86_64-darwin" diff --git a/pkgs/by-name/fa/fac-build/package.nix b/pkgs/by-name/fa/fac-build/package.nix index 0e8321184aea..f39344751754 100644 --- a/pkgs/by-name/fa/fac-build/package.nix +++ b/pkgs/by-name/fa/fac-build/package.nix @@ -34,7 +34,7 @@ rustPlatform.buildRustPackage rec { 'std::process::Command::new("${git}/bin/git")' ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = '' A build system that uses ptrace to handle dependencies automatically @@ -49,9 +49,9 @@ rustPlatform.buildRustPackage rec { easy to use! ''; homepage = "https://physics.oregonstate.edu/~roundyd/fac"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ dpercy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dpercy ]; mainProgram = "fac"; }; } diff --git a/pkgs/by-name/fa/facedetect/package.nix b/pkgs/by-name/fa/facedetect/package.nix index ecb532bb710f..a5b9ea228d08 100644 --- a/pkgs/by-name/fa/facedetect/package.nix +++ b/pkgs/by-name/fa/facedetect/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { homepage = "https://www.thregr.org/~wavexx/software/facedetect/"; description = "Simple face detector for batch processing"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; mainProgram = "facedetect"; }; } diff --git a/pkgs/by-name/fa/facetimehd-firmware/package.nix b/pkgs/by-name/fa/facetimehd-firmware/package.nix index 386195a35121..879ae54040da 100644 --- a/pkgs/by-name/fa/facetimehd-firmware/package.nix +++ b/pkgs/by-name/fa/facetimehd-firmware/package.nix @@ -63,11 +63,11 @@ stdenvNoCC.mkDerivation { gunzip -c ${firmwareOut}.gz > $out/lib/firmware/facetimehd/${firmwareOut} ''; - meta = with lib; { + meta = { description = "facetimehd firmware"; homepage = "https://support.apple.com/kb/DL1877"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ womfoo grahamc ]; diff --git a/pkgs/by-name/fa/factplusplus/package.nix b/pkgs/by-name/fa/factplusplus/package.nix index b37bdf00d55a..2b2536708ac0 100644 --- a/pkgs/by-name/fa/factplusplus/package.nix +++ b/pkgs/by-name/fa/factplusplus/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tableaux-based reasoner for expressive Description Logics (DL)"; homepage = "http://owl.cs.manchester.ac.uk/tools/fact/"; - maintainers = [ maintainers.mgttlinger ]; - license = licenses.gpl2Plus; - platforms = with platforms; linux ++ darwin ++ windows; + maintainers = [ lib.maintainers.mgttlinger ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux ++ darwin ++ windows; broken = !stdenv.hostPlatform.isLinux; mainProgram = "FaCT++"; }; diff --git a/pkgs/by-name/fa/fail2ban/package.nix b/pkgs/by-name/fa/fail2ban/package.nix index 13165ea62bd5..fccf308e444f 100644 --- a/pkgs/by-name/fa/fail2ban/package.nix +++ b/pkgs/by-name/fa/fail2ban/package.nix @@ -97,10 +97,10 @@ python3.pkgs.buildPythonApplication rec { passthru.tests = { inherit (nixosTests) fail2ban; }; - meta = with lib; { + meta = { homepage = "https://www.fail2ban.org/"; description = "Program that scans log files for repeated failing login attempts and bans IP addresses"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lovek323 ]; }; } diff --git a/pkgs/by-name/fa/faircamp/package.nix b/pkgs/by-name/fa/faircamp/package.nix index 5715f244096d..16788fb7e169 100644 --- a/pkgs/by-name/fa/faircamp/package.nix +++ b/pkgs/by-name/fa/faircamp/package.nix @@ -50,7 +50,7 @@ rustPlatform.buildRustPackage rec { version = testers.testVersion { package = faircamp; }; }; - meta = with lib; { + meta = { description = "Self-hostable, statically generated bandcamp alternative"; mainProgram = "faircamp"; longDescription = '' @@ -66,8 +66,8 @@ rustPlatform.buildRustPackage rec { means you prefer to do that manually. ''; homepage = "https://simonrepp.com/faircamp/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fa/fairymax/package.nix b/pkgs/by-name/fa/fairymax/package.nix index 572d5505c20d..18ad0a8cbf94 100644 --- a/pkgs/by-name/fa/fairymax/package.nix +++ b/pkgs/by-name/fa/fairymax/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { cp fmax.ini "$out/share/fairymax" ''; - meta = with lib; { + meta = { homepage = "http://home.hccnet.nl/h.g.muller/dwnldpage.html"; description = "Small chess engine supporting fairy pieces"; mainProgram = "fairymax"; @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { fmax.ini, so that arbitrary fairy pieces can be implemented. This version (4.8J) supports up to 15 piece types, and board sizes up to 12x8. ''; - license = licenses.free; - maintainers = [ maintainers.raskin ]; - platforms = platforms.all; + license = lib.licenses.free; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fa/fairywren/package.nix b/pkgs/by-name/fa/fairywren/package.nix index 088f11370457..540f108bb24c 100644 --- a/pkgs/by-name/fa/fairywren/package.nix +++ b/pkgs/by-name/fa/fairywren/package.nix @@ -38,11 +38,11 @@ lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants dontFixup = true; - meta = with lib; { + meta = { description = "FairyWren Icon Set"; homepage = "https://gitlab.com/aiyahm/FairyWren-Icons"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.all; - license = with licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.all; + license = with lib.licenses; [ gpl3Plus ]; }; } diff --git a/pkgs/by-name/fa/fakechroot/package.nix b/pkgs/by-name/fa/fakechroot/package.nix index d73c6355dd61..d54ecf93b881 100644 --- a/pkgs/by-name/fa/fakechroot/package.nix +++ b/pkgs/by-name/fa/fakechroot/package.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation rec { patchShebangs --host $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/dex4er/fakechroot"; description = "Give a fake chroot environment through LD_PRELOAD"; - license = licenses.lgpl21; - maintainers = with maintainers; [ offline ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fa/fakeroute/package.nix b/pkgs/by-name/fa/fakeroute/package.nix index 491d36773388..e31acae0b43d 100644 --- a/pkgs/by-name/fa/fakeroute/package.nix +++ b/pkgs/by-name/fa/fakeroute/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { passthru.tests.fakeroute = nixosTests.fakeroute; - meta = with lib; { + meta = { description = '' Make your machine appears to be anywhere on the internet in a traceroute ''; homepage = "https://maxwell.eurofusion.eu/git/rnhmjoj/fakeroute"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; mainProgram = "fakeroute"; }; } diff --git a/pkgs/by-name/fa/falcon/package.nix b/pkgs/by-name/fa/falcon/package.nix index ac78505923ac..156aff2f6507 100644 --- a/pkgs/by-name/fa/falcon/package.nix +++ b/pkgs/by-name/fa/falcon/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { sqlite ]; - meta = with lib; { + meta = { description = "Programming language with macros and syntax at once"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; broken = stdenv.cc.isClang; }; } diff --git a/pkgs/by-name/fa/fan2go/package.nix b/pkgs/by-name/fa/fan2go/package.nix index aff0ff0a7167..2ccdf5664a64 100644 --- a/pkgs/by-name/fa/fan2go/package.nix +++ b/pkgs/by-name/fa/fan2go/package.nix @@ -65,12 +65,12 @@ buildGoModule rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Simple daemon providing dynamic fan speed control based on temperature sensors"; mainProgram = "fan2go"; homepage = "https://github.com/markusressel/fan2go"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ mtoohey ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ mtoohey ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fa/fanbox-dl/package.nix b/pkgs/by-name/fa/fanbox-dl/package.nix index 7b2c20df9a15..009a621022a5 100644 --- a/pkgs/by-name/fa/fanbox-dl/package.nix +++ b/pkgs/by-name/fa/fanbox-dl/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # pings websites during testing doCheck = false; - meta = with lib; { + meta = { description = "Pixiv FANBOX Downloader"; mainProgram = "fanbox-dl"; homepage = "https://github.com/hareku/fanbox-dl"; - license = licenses.mit; - maintainers = [ maintainers.moni ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.moni ]; }; } diff --git a/pkgs/by-name/fa/fanctl/package.nix b/pkgs/by-name/fa/fanctl/package.nix index 377e7911c123..60536b831ffb 100644 --- a/pkgs/by-name/fa/fanctl/package.nix +++ b/pkgs/by-name/fa/fanctl/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CfONnF5gUnfPVmLSNzsk6xYEv70CnJfI3Gi9vCkrAcE="; - meta = with lib; { + meta = { description = "Replacement for fancontrol with more fine-grained control interface in its config file"; mainProgram = "fanctl"; homepage = "https://gitlab.com/mcoffin/fanctl"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ icewind1991 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ icewind1991 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fa/fancy-motd/package.nix b/pkgs/by-name/fa/fancy-motd/package.nix index 96950f6485d5..9345d2e59ad2 100644 --- a/pkgs/by-name/fa/fancy-motd/package.nix +++ b/pkgs/by-name/fa/fancy-motd/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fancy, colorful MOTD written in bash. Server status at a glance"; homepage = "https://github.com/bcyran/fancy-motd"; - license = licenses.mit; - maintainers = with maintainers; [ rhoriguchi ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rhoriguchi ]; + platforms = lib.platforms.linux; mainProgram = "motd"; }; } diff --git a/pkgs/by-name/fa/fanficfare/package.nix b/pkgs/by-name/fa/fanficfare/package.nix index 6f9c182dd0cd..cbc910efa1bb 100644 --- a/pkgs/by-name/fa/fanficfare/package.nix +++ b/pkgs/by-name/fa/fanficfare/package.nix @@ -32,12 +32,12 @@ python3Packages.buildPythonApplication rec { doCheck = false; # no tests exist - meta = with lib; { + meta = { description = "Tool for making eBooks from fanfiction web sites"; mainProgram = "fanficfare"; homepage = "https://github.com/JimmXinu/FanFicFare"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ dwarfmaster ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dwarfmaster ]; }; } diff --git a/pkgs/by-name/fa/fantasque-sans-mono/package.nix b/pkgs/by-name/fa/fantasque-sans-mono/package.nix index bcde2ee4085b..c14e694f0d3a 100644 --- a/pkgs/by-name/fa/fantasque-sans-mono/package.nix +++ b/pkgs/by-name/fa/fantasque-sans-mono/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/belluzj/fantasque-sans"; description = "Font family with a great monospaced variant for programmers"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/fa/fantomas/package.nix b/pkgs/by-name/fa/fantomas/package.nix index f9c254cf6440..6bb2fccf315b 100644 --- a/pkgs/by-name/fa/fantomas/package.nix +++ b/pkgs/by-name/fa/fantomas/package.nix @@ -6,12 +6,12 @@ buildDotnetGlobalTool { nugetHash = "sha256-0XlfV7SxXPDnk/CjkUesJSaH0cxlNHJ+Jj86zNUhkNA="; - meta = with lib; { + meta = { description = "F# source code formatter"; homepage = "https://github.com/fsprojects/fantomas"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ mikaelfangel ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ mikaelfangel ]; mainProgram = "fantomas"; }; } diff --git a/pkgs/by-name/fa/faq/package.nix b/pkgs/by-name/fa/faq/package.nix index f67bb0b6c897..b57d33fd0d9e 100644 --- a/pkgs/by-name/fa/faq/package.nix +++ b/pkgs/by-name/fa/faq/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "Intended to be a more flexible jq, supporting additional formats"; mainProgram = "faq"; homepage = "https://github.com/jzelinskie/faq"; - license = licenses.asl20; - maintainers = with maintainers; [ quentin-m ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ quentin-m ]; }; } diff --git a/pkgs/by-name/fa/far2l/package.nix b/pkgs/by-name/fa/far2l/package.nix index ffb13b202ca0..051b0fb7e266 100644 --- a/pkgs/by-name/fa/far2l/package.nix +++ b/pkgs/by-name/fa/far2l/package.nix @@ -134,11 +134,11 @@ stdenv.mkDerivation rec { --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} ''; - meta = with lib; { + meta = { description = "Linux port of FAR Manager v2, a program for managing files and archives in Windows operating systems"; homepage = "https://github.com/elfmz/far2l"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ hypersw ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ hypersw ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fa/faraday/package.nix b/pkgs/by-name/fa/faraday/package.nix index dd7ad765badb..9eec93e75b14 100644 --- a/pkgs/by-name/fa/faraday/package.nix +++ b/pkgs/by-name/fa/faraday/package.nix @@ -33,10 +33,10 @@ buildGoModule rec { package = faraday; }; - meta = with lib; { + meta = { description = "LND Channel Management Tools"; homepage = "https://github.com/lightninglabs/faraday"; - license = licenses.mit; - maintainers = with maintainers; [ proofofkeags ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ proofofkeags ]; }; } diff --git a/pkgs/by-name/fa/farbfeld/package.nix b/pkgs/by-name/fa/farbfeld/package.nix index d99e3554fe40..dc829432f5a9 100644 --- a/pkgs/by-name/fa/farbfeld/package.nix +++ b/pkgs/by-name/fa/farbfeld/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/2ff" --prefix PATH : "${file}/bin" ''; - meta = with lib; { + meta = { description = "Suckless image format with conversion tools"; homepage = "https://tools.suckless.org/farbfeld/"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/fa/farge/package.nix b/pkgs/by-name/fa/farge/package.nix index fbef65d5b0e5..fa503cae4886 100644 --- a/pkgs/by-name/fa/farge/package.nix +++ b/pkgs/by-name/fa/farge/package.nix @@ -54,12 +54,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "View the color value of a specific pixel on your screen"; homepage = "https://github.com/sdushantha/farge"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jtbx justinlime ]; diff --git a/pkgs/by-name/fa/fasd/package.nix b/pkgs/by-name/fa/fasd/package.nix index e0c8fd806292..e11cf4f11ea3 100644 --- a/pkgs/by-name/fa/fasd/package.nix +++ b/pkgs/by-name/fa/fasd/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation { PREFIX=$out make install ''; - meta = with lib; { + meta = { homepage = "https://github.com/clvv/fasd"; description = "Quick command-line access to files and directories for POSIX shells"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' Fasd is a command-line productivity booster. @@ -32,7 +32,7 @@ stdenv.mkDerivation { command line. ''; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "fasd"; }; diff --git a/pkgs/by-name/fa/fasmg/package.nix b/pkgs/by-name/fa/fasmg/package.nix index 517ca9c47029..6f582704f94a 100644 --- a/pkgs/by-name/fa/fasmg/package.nix +++ b/pkgs/by-name/fa/fasmg/package.nix @@ -89,8 +89,8 @@ stdenv.mkDerivation rec { description = "x86(-64) macro assembler to binary, MZ, PE, COFF, and ELF"; mainProgram = "fasmg"; homepage = "https://flatassembler.net"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = with platforms; intersectLists (linux ++ darwin) x86; + platforms = with lib.platforms; intersectLists (linux ++ darwin) x86; }; } diff --git a/pkgs/by-name/fa/fast-cpp-csv-parser/package.nix b/pkgs/by-name/fa/fast-cpp-csv-parser/package.nix index 7959c39ed95e..58f6b992516c 100644 --- a/pkgs/by-name/fa/fast-cpp-csv-parser/package.nix +++ b/pkgs/by-name/fa/fast-cpp-csv-parser/package.nix @@ -21,9 +21,9 @@ stdenv.mkDerivation { substituteAll ${./fast-cpp-csv-parser.pc.in} $out/lib/pkgconfig/fast-cpp-csv-parser.pc ''; - meta = with lib; { + meta = { description = "Small, easy-to-use and fast header-only library for reading comma separated value (CSV) files"; homepage = "https://github.com/ben-strasser/fast-cpp-csv-parser"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/fa/fast-downward/package.nix b/pkgs/by-name/fa/fast-downward/package.nix index 102057098896..a3a7d1a48248 100644 --- a/pkgs/by-name/fa/fast-downward/package.nix +++ b/pkgs/by-name/fa/fast-downward/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { --replace 'args.build = "release"' "args.build = \"$out/libexec/fast-downward\"" ''; - meta = with lib; { + meta = { description = "Domain-independent planning system"; mainProgram = "fast-downward"; homepage = "https://www.fast-downward.org/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fa/fast-ssh/package.nix b/pkgs/by-name/fa/fast-ssh/package.nix index c2865f2dc8df..41502afa236b 100644 --- a/pkgs/by-name/fa/fast-ssh/package.nix +++ b/pkgs/by-name/fa/fast-ssh/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-qkvonLuS18BBPdBUUnIAbmA+9ZJZFmTRaewrnK9PHFE="; - meta = with lib; { + meta = { description = "TUI tool to use the SSH config for connections"; homepage = "https://github.com/julien-r44/fast-ssh"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "fast-ssh"; }; } diff --git a/pkgs/by-name/fa/fastJson/package.nix b/pkgs/by-name/fa/fastJson/package.nix index 0544ab10093a..c7adbcec9ecc 100644 --- a/pkgs/by-name/fa/fastJson/package.nix +++ b/pkgs/by-name/fa/fastJson/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Fast json library for C"; homepage = "https://github.com/rsyslog/libfastjson"; - license = licenses.mit; - platforms = with platforms; unix; + license = lib.licenses.mit; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/fa/fastcap/package.nix b/pkgs/by-name/fa/fastcap/package.nix index cd4f48595c96..cb2d82d3a355 100644 --- a/pkgs/by-name/fa/fastcap/package.nix +++ b/pkgs/by-name/fa/fastcap/package.nix @@ -85,7 +85,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Multipole-accelerated capacitance extraction program"; longDescription = '' Fastcap is a three dimensional capacitance extraction program that @@ -93,9 +93,9 @@ stdenv.mkDerivation rec { shapes, sizes and orientations. ''; homepage = "https://www.rle.mit.edu/cpg/research_codes.htm"; - license = licenses.mit; - maintainers = with maintainers; [ fbeffa ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fbeffa ]; + platforms = lib.platforms.linux; mainProgram = "fastcap"; }; } diff --git a/pkgs/by-name/fa/fastcdr/package.nix b/pkgs/by-name/fa/fastcdr/package.nix index fca49e3b30a8..056e31e61b81 100644 --- a/pkgs/by-name/fa/fastcdr/package.nix +++ b/pkgs/by-name/fa/fastcdr/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: { checkInputs = [ gtest ]; - meta = with lib; { + meta = { homepage = "https://github.com/eProsima/Fast-CDR"; description = "Serialization library for OMG's Common Data Representation (CDR)"; longDescription = '' @@ -52,8 +52,8 @@ stdenv.mkDerivation (finalAttrs: { standard CDR serialization mechanism, while the other is a faster implementation that modifies the standard. ''; - license = licenses.asl20; - maintainers = with maintainers; [ panicgh ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ panicgh ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/fa/fastd/package.nix b/pkgs/by-name/fa/fastd/package.nix index 5766360847a5..6043c8a06a49 100644 --- a/pkgs/by-name/fa/fastd/package.nix +++ b/pkgs/by-name/fa/fastd/package.nix @@ -50,15 +50,15 @@ stdenv.mkDerivation rec { "-Dmac_ghash_pclmulqdq=disabled" ]; - meta = with lib; { + meta = { description = "Fast and Secure Tunneling Daemon"; homepage = "https://projects.universe-factory.net/projects/fastd/wiki"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fpletz herbetom ]; diff --git a/pkgs/by-name/fa/fastddsgen/package.nix b/pkgs/by-name/fa/fastddsgen/package.nix index 175daf70105f..e4fc4915ddc6 100644 --- a/pkgs/by-name/fa/fastddsgen/package.nix +++ b/pkgs/by-name/fa/fastddsgen/package.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Fast-DDS IDL code generator tool"; mainProgram = "fastddsgen"; homepage = "https://github.com/eProsima/Fast-DDS-Gen"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' eProsima Fast DDS-Gen is a Java application that generates eProsima Fast DDS C++ or Python source code using the data types @@ -100,7 +100,7 @@ stdenv.mkDerivation (finalAttrs: { order to define the data type of a topic, which will later be used to publish or subscribe. ''; - maintainers = with maintainers; [ wentasah ]; + maintainers = with lib.maintainers; [ wentasah ]; platforms = openjdk.meta.platforms; }; }) diff --git a/pkgs/by-name/fa/fastgron/package.nix b/pkgs/by-name/fa/fastgron/package.nix index 59a994953d0f..ae90883d3fd9 100644 --- a/pkgs/by-name/fa/fastgron/package.nix +++ b/pkgs/by-name/fa/fastgron/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { changelog = "https://github.com/adamritter/fastgron/releases/tag/${finalAttrs.src.rev}"; description = "High-performance JSON to GRON (greppable, flattened JSON) converter"; mainProgram = "fastgron"; homepage = "https://github.com/adamritter/fastgron"; - license = licenses.mit; - maintainers = with maintainers; [ zowoq ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zowoq ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/fa/fastlane/package.nix b/pkgs/by-name/fa/fastlane/package.nix index e646f53b47d8..d40a682f1fd6 100644 --- a/pkgs/by-name/fa/fastlane/package.nix +++ b/pkgs/by-name/fa/fastlane/package.nix @@ -18,12 +18,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "fastlane"; - meta = with lib; { + meta = { description = "Tool to automate building and releasing iOS and Android apps"; longDescription = "fastlane is a tool for iOS and Android developers to automate tedious tasks like generating screenshots, dealing with provisioning profiles, and releasing your application."; homepage = "https://fastlane.tools/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski shahrukh330 ]; diff --git a/pkgs/by-name/fa/fastly/package.nix b/pkgs/by-name/fa/fastly/package.nix index 55ef09e4aa26..d0054cd44d67 100644 --- a/pkgs/by-name/fa/fastly/package.nix +++ b/pkgs/by-name/fa/fastly/package.nix @@ -76,12 +76,12 @@ buildGoModule rec { --zsh <($out/bin/fastly --completion-script-zsh) ''; - meta = with lib; { + meta = { description = "Command line tool for interacting with the Fastly API"; homepage = "https://github.com/fastly/cli"; changelog = "https://github.com/fastly/cli/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ereslibre ]; mainProgram = "fastly"; diff --git a/pkgs/by-name/fa/fastmod/package.nix b/pkgs/by-name/fa/fastmod/package.nix index e88a2c119c80..a422ed0e6a43 100644 --- a/pkgs/by-name/fa/fastmod/package.nix +++ b/pkgs/by-name/fa/fastmod/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { libiconv ]; - meta = with lib; { + meta = { description = "Utility that makes sweeping changes to large, shared code bases"; mainProgram = "fastmod"; homepage = "https://github.com/facebookincubator/fastmod"; - license = licenses.asl20; - maintainers = with maintainers; [ jduan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jduan ]; }; } diff --git a/pkgs/by-name/fa/fastnlo-toolkit/package.nix b/pkgs/by-name/fa/fastnlo-toolkit/package.nix index 2a2cef7de1ab..b6d60316e43c 100644 --- a/pkgs/by-name/fa/fastnlo-toolkit/package.nix +++ b/pkgs/by-name/fa/fastnlo-toolkit/package.nix @@ -88,7 +88,7 @@ stdenv.mkDerivation rec { # Use a workaround from https://github.com/swig/swig/issues/1538 env.CXXFLAGS = "-D_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES"; - meta = with lib; { + meta = { homepage = "http://fastnlo.hepforge.org"; description = "Fast pQCD calculations for hadron-induced processes"; longDescription = '' @@ -102,9 +102,9 @@ stdenv.mkDerivation rec { in PDF fits or in systematic studies. Very time consuming complete recalculations are thus avoided. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ veprbl ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ veprbl ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/fa/fastp/package.nix b/pkgs/by-name/fa/fastp/package.nix index bae687c656d3..9231ad91abbf 100644 --- a/pkgs/by-name/fa/fastp/package.nix +++ b/pkgs/by-name/fa/fastp/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { install -D fastp $out/bin/fastp ''; - meta = with lib; { + meta = { description = "Ultra-fast all-in-one FASTQ preprocessor"; mainProgram = "fastp"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/OpenGene/fastp"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/fa/fastpbkdf2/package.nix b/pkgs/by-name/fa/fastpbkdf2/package.nix index 7ce1605a5f1b..c369db642b39 100644 --- a/pkgs/by-name/fa/fastpbkdf2/package.nix +++ b/pkgs/by-name/fa/fastpbkdf2/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { cp fastpbkdf2.h $out/include/fastpbkdf2 ''; - meta = with lib; { + meta = { description = "Fast PBKDF2-HMAC-{SHA1,SHA256,SHA512} implementation in C"; homepage = "https://github.com/ctz/fastpbkdf2"; - license = licenses.cc0; - maintainers = with maintainers; [ ledif ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ ledif ]; }; } diff --git a/pkgs/by-name/fa/fasttext/package.nix b/pkgs/by-name/fa/fasttext/package.nix index 6b6665438beb..814f3df710be 100644 --- a/pkgs/by-name/fa/fasttext/package.nix +++ b/pkgs/by-name/fa/fasttext/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Library for text classification and representation learning"; mainProgram = "fasttext"; homepage = "https://fasttext.cc/"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fa/fatcat/package.nix b/pkgs/by-name/fa/fatcat/package.nix index fe46fc24b740..4f4be94920db 100644 --- a/pkgs/by-name/fa/fatcat/package.nix +++ b/pkgs/by-name/fa/fatcat/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "FAT filesystems explore, extract, repair, and forensic tool"; mainProgram = "fatcat"; homepage = "https://github.com/Gregwar/fatcat"; - license = licenses.mit; - maintainers = with maintainers; [ cynerd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/by-name/fa/fatrace/package.nix b/pkgs/by-name/fa/fatrace/package.nix index 2b03c02f0f12..9d98abc7e53c 100644 --- a/pkgs/by-name/fa/fatrace/package.nix +++ b/pkgs/by-name/fa/fatrace/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Report system-wide file access events"; homepage = "https://github.com/martinpitt/fatrace"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' fatrace reports file access events from all running processes. Its main purpose is to find processes which keep waking up the disk @@ -40,6 +40,6 @@ stdenv.mkDerivation rec { Requires a Linux kernel with the FANOTIFY configuration option enabled. Enabling X86_MSR is also recommended for power-usage-report on x86. ''; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fa/fatresize/package.nix b/pkgs/by-name/fa/fatresize/package.nix index e6ac6c06236e..ae48d5456776 100644 --- a/pkgs/by-name/fa/fatresize/package.nix +++ b/pkgs/by-name/fa/fatresize/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { util-linux ]; - meta = with lib; { + meta = { description = "FAT16/FAT32 non-destructive resizer"; homepage = "https://github.com/ya-mouse/fatresize"; - platforms = platforms.linux; - license = licenses.gpl3; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; mainProgram = "fatresize"; }; } diff --git a/pkgs/by-name/fa/fatsort/package.nix b/pkgs/by-name/fa/fatsort/package.nix index 4ddefc9a9ebc..c57fb8e3bddd 100644 --- a/pkgs/by-name/fa/fatsort/package.nix +++ b/pkgs/by-name/fa/fatsort/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://fatsort.sourceforge.net/"; description = "Sorts FAT partition table, for devices that don't do sorting of files"; - maintainers = [ maintainers.kovirobi ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = [ lib.maintainers.kovirobi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "fatsort"; }; } diff --git a/pkgs/by-name/fa/faust2/package.nix b/pkgs/by-name/fa/faust2/package.nix index 179b8b2507a9..281a0ae67712 100644 --- a/pkgs/by-name/fa/faust2/package.nix +++ b/pkgs/by-name/fa/faust2/package.nix @@ -33,12 +33,12 @@ let fetchSubmodules = true; }; - meta = with lib; { + meta = { homepage = "https://faust.grame.fr/"; downloadPage = "https://github.com/grame-cncm/faust/"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ magnetophon pmahoney ]; diff --git a/pkgs/by-name/fa/faustPhysicalModeling/package.nix b/pkgs/by-name/fa/faustPhysicalModeling/package.nix index cd88e6668e45..553bf428d792 100644 --- a/pkgs/by-name/fa/faustPhysicalModeling/package.nix +++ b/pkgs/by-name/fa/faustPhysicalModeling/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Physical models included with faust compiled as jack standalone and lv2 instruments"; homepage = "https://github.com/grame-cncm/faust/tree/master-dev/examples/physicalModeling"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ magnetophon ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ magnetophon ]; # compiles stuff for the build platform, difficult to do properly broken = stdenv.hostPlatform != stdenv.buildPlatform; }; diff --git a/pkgs/by-name/fa/faustlive/package.nix b/pkgs/by-name/fa/faustlive/package.nix index d7fa14c241a1..5b54b5e55a29 100644 --- a/pkgs/by-name/fa/faustlive/package.nix +++ b/pkgs/by-name/fa/faustlive/package.nix @@ -85,7 +85,7 @@ stdenv.mkDerivation rec { postPatch = "cd Build"; - meta = with lib; { + meta = { description = "Standalone just-in-time Faust compiler"; mainProgram = "FaustLive"; longDescription = '' @@ -94,7 +94,7 @@ stdenv.mkDerivation rec { efficiency of a compiled language. It's ideal for fast prototyping. ''; homepage = "https://faust.grame.fr/"; - license = licenses.gpl3; - maintainers = with maintainers; [ magnetophon ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ magnetophon ]; }; } diff --git a/pkgs/by-name/fb/fbcat/package.nix b/pkgs/by-name/fb/fbcat/package.nix index 60eaa92533bf..5f3d106327ac 100644 --- a/pkgs/by-name/fb/fbcat/package.nix +++ b/pkgs/by-name/fb/fbcat/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "http://jwilk.net/software/fbcat"; description = "Framebuffer screenshot tool"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fb/fbida/package.nix b/pkgs/by-name/fb/fbida/package.nix index a523b81fa052..1464389e1115 100644 --- a/pkgs/by-name/fb/fbida/package.nix +++ b/pkgs/by-name/fb/fbida/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { sed -e 's@$(HAVE_LINUX_FB_H)@yes@' -i GNUmakefile ''; - meta = with lib; { + meta = { description = "Image viewing and manipulation programs including fbi, fbgs, ida, exiftran and thumbnail.cgi"; homepage = "https://www.kraxel.org/blog/linux/fbida/"; - license = licenses.gpl2; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fb/fbmark/package.nix b/pkgs/by-name/fb/fbmark/package.nix index b6215b96ddf3..618123a50e40 100644 --- a/pkgs/by-name/fb/fbmark/package.nix +++ b/pkgs/by-name/fb/fbmark/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Linux Framebuffer Benchmark"; homepage = "https://github.com/caramelli/fbmark"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ davidak ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ davidak ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fb/fbmenugen/package.nix b/pkgs/by-name/fb/fbmenugen/package.nix index f2152a5115f4..5e56e114376f 100644 --- a/pkgs/by-name/fb/fbmenugen/package.nix +++ b/pkgs/by-name/fb/fbmenugen/package.nix @@ -70,12 +70,12 @@ perlPackages.buildPerlPackage rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/trizen/fbmenugen"; description = "Simple menu generator for the Fluxbox Window Manager"; mainProgram = "fbmenugen"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/fb/fbpanel/package.nix b/pkgs/by-name/fb/fbpanel/package.nix index 2572ff5a00c1..edbc4d6b3d29 100644 --- a/pkgs/by-name/fb/fbpanel/package.nix +++ b/pkgs/by-name/fb/fbpanel/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation { "-I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0" ]; - meta = with lib; { + meta = { description = "Stand-alone panel"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; mainProgram = "fbpanel"; }; diff --git a/pkgs/by-name/fb/fbset/package.nix b/pkgs/by-name/fb/fbset/package.nix index 5a0ed96c8950..34b43971a194 100644 --- a/pkgs/by-name/fb/fbset/package.nix +++ b/pkgs/by-name/fb/fbset/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "Framebuffer device maintenance program"; # NOTE: the website of the original author disappeared, the only remaining # repository is maintained by the debian maintainer of the package at # https://github.com/sudipm-mukherjee/fbset homepage = "http://users.telenet.be/geertu/Linux/fbdev/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "fbset"; - maintainers = with maintainers; [ baloo ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ baloo ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fb/fbterm/package.nix b/pkgs/by-name/fb/fbterm/package.nix index 0e4a706ba1dd..7ab8da427b62 100644 --- a/pkgs/by-name/fb/fbterm/package.nix +++ b/pkgs/by-name/fb/fbterm/package.nix @@ -95,15 +95,15 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Framebuffer terminal emulator"; mainProgram = "fbterm"; homepage = "https://salsa.debian.org/debian/fbterm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovesegfault raskin ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fc/fcgiwrap/package.nix b/pkgs/by-name/fc/fcgiwrap/package.nix index a40a60ca4723..d29a5f8363b6 100644 --- a/pkgs/by-name/fc/fcgiwrap/package.nix +++ b/pkgs/by-name/fc/fcgiwrap/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { substituteInPlace configure.ac --replace libsystemd-daemon libsystemd ''; - meta = with lib; { + meta = { homepage = "https://github.com/gnosek/fcgiwrap"; description = "Simple server for running CGI applications over FastCGI"; maintainers = [ ]; - platforms = with platforms; linux; - license = licenses.mit; + platforms = with lib.platforms; linux; + license = lib.licenses.mit; mainProgram = "fcgiwrap"; }; } diff --git a/pkgs/by-name/fc/fcitx5-fluent/package.nix b/pkgs/by-name/fc/fcitx5-fluent/package.nix index 5296b230f232..8072c8b25615 100644 --- a/pkgs/by-name/fc/fcitx5-fluent/package.nix +++ b/pkgs/by-name/fc/fcitx5-fluent/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fluent-design theme with blur effect and shadow"; homepage = "https://github.com/Reverier-Xu/Fluent-fcitx5"; - license = licenses.mpl20; - platforms = platforms.all; + license = lib.licenses.mpl20; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fc/fcitx5-material-color/package.nix b/pkgs/by-name/fc/fcitx5-material-color/package.nix index 7b0273f56ad3..118e25012ae9 100644 --- a/pkgs/by-name/fc/fcitx5-material-color/package.nix +++ b/pkgs/by-name/fc/fcitx5-material-color/package.nix @@ -32,14 +32,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fcitx5 themes based on Material color"; homepage = "https://github.com/hosxy/Fcitx5-Material-Color"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Cryolitia h7x4 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/fc/fcitx5-mozc/package.nix b/pkgs/by-name/fc/fcitx5-mozc/package.nix index 12e755592dd9..66ddd8aae2cc 100644 --- a/pkgs/by-name/fc/fcitx5-mozc/package.nix +++ b/pkgs/by-name/fc/fcitx5-mozc/package.nix @@ -134,10 +134,10 @@ buildBazelPackage { inherit (nixosTests) fcitx5; }; - meta = with lib; { + meta = { description = "Mozc - a Japanese Input Method Editor designed for multi-platform"; homepage = "https://github.com/fcitx/mozc"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # abseil-cpp bsd3 # mozc, breakpad, gtest, gyp, japanese-usage-dictionary, protobuf mit # wil @@ -145,11 +145,11 @@ buildBazelPackage { publicDomain # src/data/test/stress_test, Okinawa dictionary unicode-30 # src/data/unicode, breakpad ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ berberman govanify musjj ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fc/fcitx5-nord/package.nix b/pkgs/by-name/fc/fcitx5-nord/package.nix index 80797e90ebfb..8241a9fdfc61 100644 --- a/pkgs/by-name/fc/fcitx5-nord/package.nix +++ b/pkgs/by-name/fc/fcitx5-nord/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fcitx5 theme based on Nord color"; homepage = "https://github.com/tonyfettes/fcitx5-nord"; - license = licenses.mit; - maintainers = with maintainers; [ Cryolitia ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Cryolitia ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fc/fcitx5-tokyonight/package.nix b/pkgs/by-name/fc/fcitx5-tokyonight/package.nix index 6771c664fdbe..ad36f5b5146b 100644 --- a/pkgs/by-name/fc/fcitx5-tokyonight/package.nix +++ b/pkgs/by-name/fc/fcitx5-tokyonight/package.nix @@ -34,11 +34,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Fcitx5 theme based on Tokyo Night color"; homepage = "https://github.com/ch3n9w/fcitx5-Tokyonight"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Guanran928 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Guanran928 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fc/fcl/package.nix b/pkgs/by-name/fc/fcl/package.nix index 194056f635eb..895240b00900 100644 --- a/pkgs/by-name/fc/fcl/package.nix +++ b/pkgs/by-name/fc/fcl/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Flexible Collision Library"; longDescription = '' FCL is a library for performing three types of proximity queries on a pair of geometric models composed of triangles. ''; homepage = "https://github.com/flexible-collision-library/fcl"; - license = licenses.bsd3; - maintainers = with maintainers; [ lopsided98 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lopsided98 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fc/fclones/package.nix b/pkgs/by-name/fc/fclones/package.nix index 0aa927c647c1..bead4c5d5288 100644 --- a/pkgs/by-name/fc/fclones/package.nix +++ b/pkgs/by-name/fc/fclones/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { --zsh <(fclones complete zsh) ''; - meta = with lib; { + meta = { description = "Efficient Duplicate File Finder and Remover"; homepage = "https://github.com/pkolaczk/fclones"; changelog = "https://github.com/pkolaczk/fclones/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cyounkins ]; mainProgram = "fclones"; diff --git a/pkgs/by-name/fc/fcppt/package.nix b/pkgs/by-name/fc/fcppt/package.nix index ac0fd7582900..bc83eafb1f7a 100644 --- a/pkgs/by-name/fc/fcppt/package.nix +++ b/pkgs/by-name/fc/fcppt/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { "-DENABLE_TEST=true" ]; - meta = with lib; { + meta = { description = "Freundlich's C++ toolkit"; longDescription = '' Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on @@ -40,8 +40,8 @@ stdenv.mkDerivation rec { C++11). ''; homepage = "https://fcppt.org"; - license = licenses.boost; - maintainers = with maintainers; [ pmiddend ]; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ pmiddend ]; platforms = [ "x86_64-linux" "x86_64-windows" diff --git a/pkgs/by-name/fc/fcrackzip/package.nix b/pkgs/by-name/fc/fcrackzip/package.nix index 18d9b0d31c3f..71bebe597331 100644 --- a/pkgs/by-name/fc/fcrackzip/package.nix +++ b/pkgs/by-name/fc/fcrackzip/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { # Do not clash with unizp/zipinfo postInstall = "mv $out/bin/zipinfo $out/bin/fcrackzip-zipinfo"; - meta = with lib; { + meta = { description = "Zip password cracker, similar to fzc, zipcrack and others"; homepage = "http://oldhome.schmorp.de/marc/fcrackzip.html"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ nico202 ]; - platforms = with platforms; unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ nico202 ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/fc/fcron/package.nix b/pkgs/by-name/fc/fcron/package.nix index c0c8aa8df2a4..de41bbf9fa81 100644 --- a/pkgs/by-name/fc/fcron/package.nix +++ b/pkgs/by-name/fc/fcron/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { find -type f | xargs sed -i -e 's@^\(\s\)*chown@\1:@' -e 's@^\(\s\)*chgrp@\1:@' ''; - meta = with lib; { + meta = { description = "Command scheduler with extended capabilities over cron and anacron"; homepage = "http://fcron.free.fr"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fd/fdk-aac-encoder/package.nix b/pkgs/by-name/fd/fdk-aac-encoder/package.nix index 706f3e37c06d..6dd05ddb4182 100644 --- a/pkgs/by-name/fd/fdk-aac-encoder/package.nix +++ b/pkgs/by-name/fd/fdk-aac-encoder/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Command line encoder frontend for libfdk-aac encoder"; mainProgram = "fdkaac"; longDescription = '' @@ -35,8 +35,8 @@ stdenv.mkDerivation rec { and encodes it into either M4A / AAC file. ''; homepage = "https://github.com/nu774/fdkaac"; - license = licenses.zlib; - platforms = platforms.all; - maintainers = [ maintainers.lunik1 ]; + license = lib.licenses.zlib; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.lunik1 ]; }; } diff --git a/pkgs/by-name/fd/fdk_aac/package.nix b/pkgs/by-name/fd/fdk_aac/package.nix index e3e310363aed..46f0f198a998 100644 --- a/pkgs/by-name/fd/fdk_aac/package.nix +++ b/pkgs/by-name/fd/fdk_aac/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { configureFlags = lib.optional exampleSupport "--enable-example"; - meta = with lib; { + meta = { description = "High-quality implementation of the AAC codec from Android"; homepage = "https://sourceforge.net/projects/opencore-amr/"; - license = licenses.fraunhofer-fdk; - maintainers = with maintainers; [ codyopel ]; - platforms = platforms.all; + license = lib.licenses.fraunhofer-fdk; + maintainers = with lib.maintainers; [ codyopel ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fd/fdm/package.nix b/pkgs/by-name/fd/fdm/package.nix index 80aa96a507ca..aa3c45893e85 100644 --- a/pkgs/by-name/fd/fdm/package.nix +++ b/pkgs/by-name/fd/fdm/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { cp -R examples $out/share/doc/fdm ''; - meta = with lib; { + meta = { description = "Mail fetching and delivery tool - should do the job of getmail and procmail"; - maintainers = with maintainers; [ raskin ]; - platforms = with platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ raskin ]; + platforms = with lib.platforms; linux ++ darwin; homepage = "https://github.com/nicm/fdm"; downloadPage = "https://github.com/nicm/fdm/releases"; - license = licenses.isc; + license = lib.licenses.isc; }; } diff --git a/pkgs/by-name/fd/fdupes/package.nix b/pkgs/by-name/fd/fdupes/package.nix index cb11612c4dab..eb2d34ad3de1 100644 --- a/pkgs/by-name/fd/fdupes/package.nix +++ b/pkgs/by-name/fd/fdupes/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { sqlite ]; - meta = with lib; { + meta = { description = "Identifies duplicate files residing within specified directories"; longDescription = '' fdupes searches the given path for duplicate files. @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { followed by a byte-by-byte comparison. ''; homepage = "https://github.com/adrianlopezroche/fdupes"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "fdupes"; }; } diff --git a/pkgs/by-name/fe/feather/package.nix b/pkgs/by-name/fe/feather/package.nix index fb3fb09de5c9..b26212554a7f 100644 --- a/pkgs/by-name/fe/feather/package.nix +++ b/pkgs/by-name/fe/feather/package.nix @@ -78,13 +78,13 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Free Monero desktop wallet"; homepage = "https://featherwallet.org/"; changelog = "https://featherwallet.org/changelog/#${finalAttrs.version}%20changelog"; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; mainProgram = "feather"; - maintainers = with maintainers; [ surfaceflinger ]; + maintainers = with lib.maintainers; [ surfaceflinger ]; }; }) diff --git a/pkgs/by-name/fe/fedifetcher/package.nix b/pkgs/by-name/fe/fedifetcher/package.nix index 29247fb8dc72..1e35f0b6fe2e 100644 --- a/pkgs/by-name/fe/fedifetcher/package.nix +++ b/pkgs/by-name/fe/fedifetcher/package.nix @@ -40,7 +40,7 @@ python3.pkgs.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Tool for Mastodon that automatically fetches missing replies and posts from other fediverse instances"; longDescription = '' FediFetcher is a tool for Mastodon that automatically fetches missing @@ -49,8 +49,8 @@ python3.pkgs.buildPythonApplication rec { ''; homepage = "https://blog.thms.uk/fedifetcher"; changelog = "https://github.com/nanos/FediFetcher/releases/tag/${src.tag}"; - license = licenses.mit; - teams = [ teams.c3d2 ]; + license = lib.licenses.mit; + teams = [ lib.teams.c3d2 ]; mainProgram = "fedifetcher"; }; } diff --git a/pkgs/by-name/fe/fedigroups/package.nix b/pkgs/by-name/fe/fedigroups/package.nix index eb2c9d00b77e..c67f6c4769cc 100644 --- a/pkgs/by-name/fe/fedigroups/package.nix +++ b/pkgs/by-name/fe/fedigroups/package.nix @@ -32,13 +32,13 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { homepage = "https://git.ondrovo.com/MightyPork/group-actor#fedi-groups"; downloadPage = "https://git.ondrovo.com/MightyPork/group-actor/releases"; description = "Approximation of groups usable with Fediverse software that implements the Mastodon client API"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = "fedigroups"; }; } diff --git a/pkgs/by-name/fe/feed2imap-go/package.nix b/pkgs/by-name/fe/feed2imap-go/package.nix index c8df95e713ac..8e4f866ba679 100644 --- a/pkgs/by-name/fe/feed2imap-go/package.nix +++ b/pkgs/by-name/fe/feed2imap-go/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { rm -f $out/bin/print-cache ''; - meta = with lib; { + meta = { description = "Uploads rss feeds as e-mails onto an IMAP server"; mainProgram = "feed2imap-go"; homepage = "https://github.com/Necoro/feed2imap-go"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ nomeata Necoro ]; diff --git a/pkgs/by-name/fe/feedbackd-device-themes/package.nix b/pkgs/by-name/fe/feedbackd-device-themes/package.nix index 8d0567524023..7728d80e5f31 100644 --- a/pkgs/by-name/fe/feedbackd-device-themes/package.nix +++ b/pkgs/by-name/fe/feedbackd-device-themes/package.nix @@ -43,14 +43,14 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = with lib; { + meta = { description = "Device specific feedback themes for Feedbackd"; homepage = "https://gitlab.freedesktop.org/agx/feedbackd-device-themes"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pacman99 Luflosi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fe/feedbackd/package.nix b/pkgs/by-name/fe/feedbackd/package.nix index 0ddd195c745d..4c69db645be7 100644 --- a/pkgs/by-name/fe/feedbackd/package.nix +++ b/pkgs/by-name/fe/feedbackd/package.nix @@ -108,20 +108,20 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = with lib; { + meta = { description = "Theme based Haptic, Visual and Audio Feedback"; homepage = "https://gitlab.freedesktop.org/agx/feedbackd/"; - license = with licenses; [ + license = with lib.licenses; [ # feedbackd gpl3Plus # libfeedback library lgpl21Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ pacman99 Luflosi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fe/feedgnuplot/package.nix b/pkgs/by-name/fe/feedgnuplot/package.nix index 9b1f5e7380e3..46add61d8dbc 100644 --- a/pkgs/by-name/fe/feedgnuplot/package.nix +++ b/pkgs/by-name/fe/feedgnuplot/package.nix @@ -70,15 +70,15 @@ perlPackages.buildPerlPackage rec { installShellCompletion --zsh completions/zsh/_feedgnuplot ''; - meta = with lib; { + meta = { description = "General purpose pipe-oriented plotting tool"; homepage = "https://github.com/dkogan/feedgnuplot/"; - license = with licenses; [ + license = with lib.licenses; [ artistic1 gpl1Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ mnacamura ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mnacamura ]; mainProgram = "feedgnuplot"; }; } diff --git a/pkgs/by-name/fe/feh/package.nix b/pkgs/by-name/fe/feh/package.nix index 2777de880602..5bfb7676320c 100644 --- a/pkgs/by-name/fe/feh/package.nix +++ b/pkgs/by-name/fe/feh/package.nix @@ -65,16 +65,16 @@ stdenv.mkDerivation (finalAttrs: { nativeCheckInputs = lib.singleton (perl.withPackages (p: [ p.TestCommand ])); doCheck = true; - meta = with lib; { + meta = { description = "Light-weight image viewer"; homepage = "https://feh.finalrewind.org/"; # released under a variant of the MIT license # https://spdx.org/licenses/MIT-feh.html - license = licenses.mit-feh; - maintainers = with maintainers; [ + license = lib.licenses.mit-feh; + maintainers = with lib.maintainers; [ gepbird ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "feh"; }; }) diff --git a/pkgs/by-name/fe/ferium/package.nix b/pkgs/by-name/fe/ferium/package.nix index 7a4ff2a110bc..86d356bd17d2 100644 --- a/pkgs/by-name/fe/ferium/package.nix +++ b/pkgs/by-name/fe/ferium/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Fast and multi-source CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and GitHub Releases"; mainProgram = "ferium"; homepage = "https://github.com/gorilla-devs/ferium"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ leo60228 soupglasses ]; diff --git a/pkgs/by-name/fe/feroxbuster/package.nix b/pkgs/by-name/fe/feroxbuster/package.nix index 0066b5c86ada..9aff91764dcb 100644 --- a/pkgs/by-name/fe/feroxbuster/package.nix +++ b/pkgs/by-name/fe/feroxbuster/package.nix @@ -40,13 +40,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Recursive content discovery tool"; homepage = "https://github.com/epi052/feroxbuster"; changelog = "https://github.com/epi052/feroxbuster/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.unix; mainProgram = "feroxbuster"; }; } diff --git a/pkgs/by-name/fe/ferrum/package.nix b/pkgs/by-name/fe/ferrum/package.nix index 181baccf1e5a..d253c8536b72 100644 --- a/pkgs/by-name/fe/ferrum/package.nix +++ b/pkgs/by-name/fe/ferrum/package.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/ferrum/"; description = "Decorative font"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/fe/fet-sh/package.nix b/pkgs/by-name/fe/fet-sh/package.nix index d0fd407cf57e..b25c819b79f2 100644 --- a/pkgs/by-name/fe/fet-sh/package.nix +++ b/pkgs/by-name/fe/fet-sh/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation rec { install -m755 -D fet.sh $out/bin/fet.sh ''; - meta = with lib; { + meta = { description = "Fetch written in posix shell without any external commands"; homepage = "https://github.com/6gk/fet.sh"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ elkowar ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ elkowar ]; mainProgram = "fet.sh"; }; } diff --git a/pkgs/by-name/fe/fetch-scm/package.nix b/pkgs/by-name/fe/fetch-scm/package.nix index 9ea2f12fa208..e9644a5e3e7f 100644 --- a/pkgs/by-name/fe/fetch-scm/package.nix +++ b/pkgs/by-name/fe/fetch-scm/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "System information fetcher written in GNU Guile Scheme"; homepage = "https://github.com/KikyTokamuro/fetch.scm"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ vel ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ vel ]; mainProgram = "fetch-scm"; }; } diff --git a/pkgs/by-name/fe/fetchmail/package.nix b/pkgs/by-name/fe/fetchmail/package.nix index 2aeb49e18bab..a560a4611b07 100644 --- a/pkgs/by-name/fe/fetchmail/package.nix +++ b/pkgs/by-name/fe/fetchmail/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ssl=${openssl.dev}" ]; - meta = with lib; { + meta = { homepage = "https://www.fetchmail.info/"; description = "Full-featured remote-mail retrieval and forwarding utility"; longDescription = '' @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and IPSEC. ''; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "fetchmail"; }; } diff --git a/pkgs/by-name/fe/fetchmail_7/package.nix b/pkgs/by-name/fe/fetchmail_7/package.nix index 5326aa73d380..1122eb0f2596 100644 --- a/pkgs/by-name/fe/fetchmail_7/package.nix +++ b/pkgs/by-name/fe/fetchmail_7/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { cp -a contrib/. $out/share/fetchmail-contrib ''; - meta = with lib; { + meta = { homepage = "https://www.fetchmail.info/"; description = "Full-featured remote-mail retrieval and forwarding utility"; longDescription = '' @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and IPSEC. ''; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/fe/fetchutils/package.nix b/pkgs/by-name/fe/fetchutils/package.nix index 87c879c50579..6cb10e601254 100644 --- a/pkgs/by-name/fe/fetchutils/package.nix +++ b/pkgs/by-name/fe/fetchutils/package.nix @@ -31,11 +31,11 @@ stdenvNoCC.mkDerivation { patchShebangs --host src/* ''; - meta = with lib; { + meta = { description = "Collection of small shell utilities to fetch system information"; homepage = "https://github.com/lptstr/fetchutils"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/ff/ff2mpv-go/package.nix b/pkgs/by-name/ff/ff2mpv-go/package.nix index 195d4f3db9c4..7d558917bf46 100644 --- a/pkgs/by-name/ff/ff2mpv-go/package.nix +++ b/pkgs/by-name/ff/ff2mpv-go/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { wrapProgram $out/bin/ff2mpv-go --suffix PATH ":" ${lib.makeBinPath [ mpv ]} ''; - meta = with lib; { + meta = { description = "Native messaging host for ff2mpv written in Go"; homepage = "https://git.clsr.net/util/ff2mpv-go/"; - license = licenses.publicDomain; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ ambroisie ]; mainProgram = "ff2mpv-go"; }; } diff --git a/pkgs/by-name/ff/ff2mpv-rust/package.nix b/pkgs/by-name/ff/ff2mpv-rust/package.nix index faaebab4a95d..069128207bc3 100644 --- a/pkgs/by-name/ff/ff2mpv-rust/package.nix +++ b/pkgs/by-name/ff/ff2mpv-rust/package.nix @@ -52,11 +52,11 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Native messaging host for ff2mpv written in Rust"; homepage = "https://github.com/ryze312/ff2mpv-rust"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ryze ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ryze ]; mainProgram = "ff2mpv-rust"; }; } diff --git a/pkgs/by-name/ff/fff/package.nix b/pkgs/by-name/ff/fff/package.nix index c55e9555fbe2..0e7a73972803 100644 --- a/pkgs/by-name/ff/fff/package.nix +++ b/pkgs/by-name/ff/fff/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/fff" --prefix PATH : $pathAdd ''; - meta = with lib; { + meta = { description = "Fucking Fast File-Manager"; mainProgram = "fff"; homepage = "https://github.com/dylanaraps/fff"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ff/fflas-ffpack/package.nix b/pkgs/by-name/ff/fflas-ffpack/package.nix index 98a5b5b9e58d..44a6371b9c0e 100644 --- a/pkgs/by-name/ff/fflas-ffpack/package.nix +++ b/pkgs/by-name/ff/fflas-ffpack/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { ]; doCheck = true; - meta = with lib; { + meta = { description = "Finite Field Linear Algebra Subroutines"; mainProgram = "fflas-ffpack-config"; - license = licenses.lgpl21Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; homepage = "https://linbox-team.github.io/fflas-ffpack/"; }; } diff --git a/pkgs/by-name/ff/fflogs/package.nix b/pkgs/by-name/ff/fflogs/package.nix index 380c77477784..028dee55152b 100644 --- a/pkgs/by-name/ff/fflogs/package.nix +++ b/pkgs/by-name/ff/fflogs/package.nix @@ -25,14 +25,14 @@ appimageTools.wrapType2 { sed -i 's@^Exec=AppRun --no-sandbox@Exec=fflogs@g' $out/share/applications/fflogs.desktop ''; - meta = with lib; { + meta = { description = "Application for uploading Final Fantasy XIV combat logs to fflogs.com"; homepage = "https://www.fflogs.com/client/download"; downloadPage = "https://github.com/RPGLogs/Uploaders-fflogs/releases/latest"; - license = licenses.unfree; # no license listed + license = lib.licenses.unfree; # no license listed mainProgram = "fflogs"; - platforms = platforms.linux; - maintainers = with maintainers; [ keysmashes ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ keysmashes ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ff/ffmpegthumbnailer/package.nix b/pkgs/by-name/ff/ffmpegthumbnailer/package.nix index 3dea2e20478d..6eb495ca9029 100644 --- a/pkgs/by-name/ff/ffmpegthumbnailer/package.nix +++ b/pkgs/by-name/ff/ffmpegthumbnailer/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail '=ffmpegthumbnailer' "=$out/bin/ffmpegthumbnailer" ''; - meta = with lib; { + meta = { description = "Lightweight video thumbnailer"; longDescription = "FFmpegthumbnailer is a lightweight video thumbnailer that can be used by file managers to create thumbnails @@ -64,8 +64,8 @@ stdenv.mkDerivation (finalAttrs: { The only dependencies are ffmpeg and libpng/libjpeg. "; homepage = "https://github.com/dirkvdb/ffmpegthumbnailer"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "ffmpegthumbnailer"; }; }) diff --git a/pkgs/by-name/ff/ffms/package.nix b/pkgs/by-name/ff/ffms/package.nix index 61db0ad742ed..cde639177d03 100644 --- a/pkgs/by-name/ff/ffms/package.nix +++ b/pkgs/by-name/ff/ffms/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { ln -s $out/lib/libffms2${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/vapoursynth/libffms2${stdenv.hostPlatform.extensions.sharedLibrary} ''; - meta = with lib; { + meta = { homepage = "https://github.com/FFMS/ffms2"; description = "FFmpeg based source library for easy frame accurate access"; mainProgram = "ffmsindex"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ff/fftw/package.nix b/pkgs/by-name/ff/fftw/package.nix index c0d2ddcfde9d..1e08014e8fce 100644 --- a/pkgs/by-name/ff/fftw/package.nix +++ b/pkgs/by-name/ff/fftw/package.nix @@ -92,10 +92,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Fastest Fourier Transform in the West library"; homepage = "https://www.fftw.org/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; pkgConfigModules = [ { @@ -106,8 +106,8 @@ stdenv.mkDerivation (finalAttrs: { } .${precision} ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # quad-precision requires libquadmath from gfortran, but libquadmath is not supported on aarch64 - badPlatforms = lib.optionals (precision == "quad-precision") platforms.aarch64; + badPlatforms = lib.optionals (precision == "quad-precision") lib.platforms.aarch64; }; }) diff --git a/pkgs/by-name/fg/fgallery/package.nix b/pkgs/by-name/fg/fgallery/package.nix index 3d60062a4c21..845cbec717b7 100644 --- a/pkgs/by-name/fg/fgallery/package.nix +++ b/pkgs/by-name/fg/fgallery/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Static photo gallery generator"; homepage = "https://www.thregr.org/~wavexx/software/fgallery/"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "fgallery"; }; } diff --git a/pkgs/by-name/fg/fgqcanvas/package.nix b/pkgs/by-name/fg/fgqcanvas/package.nix index 1fd2e74ff5a6..b59336b4afaf 100644 --- a/pkgs/by-name/fg/fgqcanvas/package.nix +++ b/pkgs/by-name/fg/fgqcanvas/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/p/flightgear/flightgear/ci/next/tree/utils/fgqcanvas/README.md"; description = "Qt-based remote canvas application for FlightGear"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "fgqcanvas"; }; diff --git a/pkgs/by-name/fh/fh/package.nix b/pkgs/by-name/fh/fh/package.nix index 0d8a399053e8..08febb55be53 100644 --- a/pkgs/by-name/fh/fh/package.nix +++ b/pkgs/by-name/fh/fh/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Official FlakeHub CLI"; homepage = "https://github.com/DeterminateSystems/fh"; changelog = "https://github.com/DeterminateSystems/fh/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "fh"; }; diff --git a/pkgs/by-name/fh/fheroes2/package.nix b/pkgs/by-name/fh/fheroes2/package.nix index 3b1e95ac72ce..f2fa31c4422b 100644 --- a/pkgs/by-name/fh/fheroes2/package.nix +++ b/pkgs/by-name/fh/fheroes2/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/ihhub/fheroes2"; description = "Free implementation of Heroes of Might and Magic II game engine"; mainProgram = "fheroes2"; @@ -86,8 +86,8 @@ stdenv.mkDerivation rec { Please refer to README of the project for instructions. On linux, the data can be placed in ~/.local/share/fheroes2 folder. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fi/fig2dev/package.nix b/pkgs/by-name/fi/fig2dev/package.nix index 8ba60bd67ff9..e4ab9b3067ce 100644 --- a/pkgs/by-name/fi/fig2dev/package.nix +++ b/pkgs/by-name/fi/fig2dev/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { --set PATH ${lib.makeBinPath [ gnused ]} ''; - meta = with lib; { + meta = { description = "Tool to convert Xfig files to other formats"; homepage = "https://mcj.sourceforge.net/"; - license = licenses.xfig; - platforms = platforms.unix; - maintainers = with maintainers; [ lesuisse ]; + license = lib.licenses.xfig; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lesuisse ]; }; } diff --git a/pkgs/by-name/fi/figurine/package.nix b/pkgs/by-name/fi/figurine/package.nix index 88bb4ff21b8f..95138a3a40b1 100644 --- a/pkgs/by-name/fi/figurine/package.nix +++ b/pkgs/by-name/fi/figurine/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X main.currentSha=${src.rev}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/arsham/figurine"; description = "Print your name in style"; mainProgram = "figurine"; - license = licenses.asl20; - maintainers = with maintainers; [ ironicbadger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ironicbadger ]; }; } diff --git a/pkgs/by-name/fi/fiji/package.nix b/pkgs/by-name/fi/fiji/package.nix index bd8ed519fa52..271acf3b8a64 100644 --- a/pkgs/by-name/fi/fiji/package.nix +++ b/pkgs/by-name/fi/fiji/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://imagej.net/software/fiji/"; description = "Batteries-included distribution of ImageJ2, bundling a lot of plugins which facilitate scientific image analysis"; mainProgram = "fiji"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; @@ -96,6 +96,6 @@ stdenv.mkDerivation rec { bsd2 publicDomain ]; - maintainers = with maintainers; [ davisrichard437 ]; + maintainers = with lib.maintainers; [ davisrichard437 ]; }; } diff --git a/pkgs/by-name/fi/file-rename/package.nix b/pkgs/by-name/fi/file-rename/package.nix index 8e37bb454ba1..f173eabb067f 100644 --- a/pkgs/by-name/fi/file-rename/package.nix +++ b/pkgs/by-name/fi/file-rename/package.nix @@ -28,10 +28,10 @@ perlPackages.buildPerlPackage { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Perl extension for renaming multiple files"; - license = licenses.artistic1; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.artistic1; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "rename"; }; } diff --git a/pkgs/by-name/fi/file-roller/package.nix b/pkgs/by-name/fi/file-roller/package.nix index d55680d17cf9..74e87da34e23 100644 --- a/pkgs/by-name/fi/file-roller/package.nix +++ b/pkgs/by-name/fi/file-roller/package.nix @@ -64,15 +64,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/file-roller"; changelog = "https://gitlab.gnome.org/GNOME/file-roller/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Archive manager for the GNOME desktop environment"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; teams = [ - teams.gnome - teams.pantheon + lib.teams.gnome + lib.teams.pantheon ]; mainProgram = "file-roller"; }; diff --git a/pkgs/by-name/fi/filebench/package.nix b/pkgs/by-name/fi/filebench/package.nix index a288ca5734d3..8d2aab3e39d8 100644 --- a/pkgs/by-name/fi/filebench/package.nix +++ b/pkgs/by-name/fi/filebench/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { flex ]; - meta = with lib; { + meta = { description = "File system and storage benchmark that can generate both micro and macro workloads"; homepage = "https://sourceforge.net/projects/filebench/"; - license = licenses.cddl; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.cddl; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; mainProgram = "filebench"; }; } diff --git a/pkgs/by-name/fi/filebot/package.nix b/pkgs/by-name/fi/filebot/package.nix index 6d7effe3b05b..c3b464be5852 100644 --- a/pkgs/by-name/fi/filebot/package.nix +++ b/pkgs/by-name/fi/filebot/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Ultimate TV and Movie Renamer"; longDescription = '' FileBot is the ultimate tool for organizing and renaming your Movies, TV @@ -100,16 +100,16 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://filebot.net"; changelog = "https://www.filebot.net/forums/viewforum.php?f=7"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ gleber felschr ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "filebot"; }; }) diff --git a/pkgs/by-name/fi/filebrowser/package.nix b/pkgs/by-name/fi/filebrowser/package.nix index d49639074912..215cb2d4fa85 100644 --- a/pkgs/by-name/fi/filebrowser/package.nix +++ b/pkgs/by-name/fi/filebrowser/package.nix @@ -73,11 +73,11 @@ buildGoModule { }; }; - meta = with lib; { + meta = { description = "Web application for managing files and directories"; homepage = "https://filebrowser.org"; - license = licenses.asl20; - maintainers = with maintainers; [ oakenshield ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ oakenshield ]; mainProgram = "filebrowser"; }; } diff --git a/pkgs/by-name/fi/filegive/package.nix b/pkgs/by-name/fi/filegive/package.nix index 5ea5558b9213..490f661b733f 100644 --- a/pkgs/by-name/fi/filegive/package.nix +++ b/pkgs/by-name/fi/filegive/package.nix @@ -21,10 +21,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://viric.name/cgi-bin/filegive"; description = "Easy p2p file sending program"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; maintainers = [ ]; mainProgram = "filegive"; }; diff --git a/pkgs/by-name/fi/fileinfo/package.nix b/pkgs/by-name/fi/fileinfo/package.nix index 0ff880624bde..8b72e01ec1cb 100644 --- a/pkgs/by-name/fi/fileinfo/package.nix +++ b/pkgs/by-name/fi/fileinfo/package.nix @@ -19,11 +19,11 @@ python3Packages.buildPythonApplication { dependencies = with python3Packages; [ requests ]; - meta = with lib; { + meta = { homepage = "https://github.com/sdushantha/fileinfo"; description = "File extension metadata lookup tool"; - license = licenses.mit; - maintainers = with maintainers; [ h7x4 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ h7x4 ]; mainProgram = "fileinfo"; }; } diff --git a/pkgs/by-name/fi/files-cli/package.nix b/pkgs/by-name/fi/files-cli/package.nix index 8b33239cdf1f..072f1b71f27d 100644 --- a/pkgs/by-name/fi/files-cli/package.nix +++ b/pkgs/by-name/fi/files-cli/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Files.com Command Line App for Windows, Linux, and macOS"; homepage = "https://developers.files.com"; - license = licenses.mit; - maintainers = with maintainers; [ kashw2 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kashw2 ]; mainProgram = "files-cli"; }; diff --git a/pkgs/by-name/fi/fileshare/package.nix b/pkgs/by-name/fi/fileshare/package.nix index dc8401f8139a..69b057bff9c5 100644 --- a/pkgs/by-name/fi/fileshare/package.nix +++ b/pkgs/by-name/fi/fileshare/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation rec { cp bin/release/fileshare $out/bin ''; - meta = with lib; { + meta = { description = "Small HTTP Server for quickly sharing files over the network"; longDescription = "Fileshare is a simple tool for sharing the contents of a directory via a webserver and optionally allowing uploads."; homepage = "https://git.tkolb.de/Public/fileshare"; - license = licenses.mit; - maintainers = [ maintainers.esclear ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.esclear ]; + platforms = lib.platforms.linux; mainProgram = "fileshare"; }; } diff --git a/pkgs/by-name/fi/filezilla/package.nix b/pkgs/by-name/fi/filezilla/package.nix index 951112e82be5..9e59421e0976 100644 --- a/pkgs/by-name/fi/filezilla/package.nix +++ b/pkgs/by-name/fi/filezilla/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://filezilla-project.org/"; description = "Graphical FTP, FTPS and SFTP client"; longDescription = '' @@ -68,8 +68,8 @@ stdenv.mkDerivation { under many platforms, binaries for Windows, Linux and macOS are provided. ''; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/fi/filter-audio/package.nix b/pkgs/by-name/fi/filter-audio/package.nix index ae1d63a1e1de..41e488501d0d 100644 --- a/pkgs/by-name/fi/filter-audio/package.nix +++ b/pkgs/by-name/fi/filter-audio/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Lightweight audio filtering library made from webrtc code"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fi/filtron/package.nix b/pkgs/by-name/fi/filtron/package.nix index f4083022478a..afa4f29e5904 100644 --- a/pkgs/by-name/fi/filtron/package.nix +++ b/pkgs/by-name/fi/filtron/package.nix @@ -36,12 +36,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Reverse HTTP proxy to filter requests by different rules"; homepage = "https://github.com/asciimoo/filtron"; - license = licenses.agpl3Only; - maintainers = [ maintainers.dasj19 ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.dasj19 ]; + platforms = lib.platforms.linux; mainProgram = "filtron"; }; } diff --git a/pkgs/by-name/fi/fim/package.nix b/pkgs/by-name/fi/fim/package.nix index 30fc009929bd..94c703d803fb 100644 --- a/pkgs/by-name/fi/fim/package.nix +++ b/pkgs/by-name/fi/fim/package.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { env.LIBPNG_CONFIG = lib.getExe' (lib.getDev libpng) "libpng-config"; env.NIX_CFLAGS_COMPILE = lib.optionalString x11Support "-lSDL"; - meta = with lib; { + meta = { description = "Lightweight, highly customizable and scriptable image viewer"; longDescription = '' FIM (Fbi IMproved) is a lightweight, console based image viewer that aims @@ -95,8 +95,8 @@ stdenv.mkDerivation rec { with software like the VIM text editor or the Mutt mail user agent. ''; homepage = "https://www.nongnu.org/fbi-improved/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fi/finalfrontier/package.nix b/pkgs/by-name/fi/finalfrontier/package.nix index cd092e77cc99..986d9a9b114c 100644 --- a/pkgs/by-name/fi/finalfrontier/package.nix +++ b/pkgs/by-name/fi/finalfrontier/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage { installShellCompletion finalfrontier.{bash,fish,zsh} ''; - meta = with lib; { + meta = { description = "Utility for training word and subword embeddings"; mainProgram = "finalfrontier"; homepage = "https://github.com/finalfusion/finalfrontier/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; # The last successful Darwin Hydra build was in 2024 broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/fi/finalfusion-utils/package.nix b/pkgs/by-name/fi/finalfusion-utils/package.nix index 4b42738997f0..061e4ab3784f 100644 --- a/pkgs/by-name/fi/finalfusion-utils/package.nix +++ b/pkgs/by-name/fi/finalfusion-utils/package.nix @@ -42,10 +42,10 @@ rustPlatform.buildRustPackage rec { installShellCompletion finalfusion.{bash,fish,zsh} ''; - meta = with lib; { + meta = { description = "Utility for converting, quantizing, and querying word embeddings"; homepage = "https://github.com/finalfusion/finalfusion-utils/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "finalfusion"; }; diff --git a/pkgs/by-name/fi/find-billy/package.nix b/pkgs/by-name/fi/find-billy/package.nix index 1215ae3958fe..ff3c0822a32e 100644 --- a/pkgs/by-name/fi/find-billy/package.nix +++ b/pkgs/by-name/fi/find-billy/package.nix @@ -69,14 +69,14 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "2 dimensional Pixel Art Jump & Run"; homepage = "https://codeberg.org/annaaurora/Find-Billy"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = [ maintainers.annaaurora ]; + maintainers = [ lib.maintainers.annaaurora ]; }; } diff --git a/pkgs/by-name/fi/find-cursor/package.nix b/pkgs/by-name/fi/find-cursor/package.nix index 5e385d8fd94b..a8012d07cc64 100644 --- a/pkgs/by-name/fi/find-cursor/package.nix +++ b/pkgs/by-name/fi/find-cursor/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { preInstall = "mkdir -p $out/share/man/man1"; installFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Simple XLib program to highlight the cursor position"; homepage = "https://github.com/arp242/find-cursor"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.yanganto ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.yanganto ]; mainProgram = "find-cursor"; }; } diff --git a/pkgs/by-name/fi/findbugs/package.nix b/pkgs/by-name/fi/findbugs/package.nix index ebe78c3360d6..6cc869fe85c4 100644 --- a/pkgs/by-name/fi/findbugs/package.nix +++ b/pkgs/by-name/fi/findbugs/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { description = "Static analysis tool to find bugs in Java programs automatically"; homepage = "https://findbugs.sourceforge.net/"; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl3; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl3; }; } diff --git a/pkgs/by-name/fi/findex/package.nix b/pkgs/by-name/fi/findex/package.nix index 8f5256683169..bf4537fe51c0 100644 --- a/pkgs/by-name/fi/findex/package.nix +++ b/pkgs/by-name/fi/findex/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage rec { install -Dm644 css/style.css $out/share/findex/style.css ''; - meta = with lib; { + meta = { description = "Highly customizable application finder written in Rust and uses Gtk3"; homepage = "https://github.com/mdgaziur/findex"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fi/findnewest/package.nix b/pkgs/by-name/fi/findnewest/package.nix index bffe16b4c7c8..2cdd81f72a4f 100644 --- a/pkgs/by-name/fi/findnewest/package.nix +++ b/pkgs/by-name/fi/findnewest/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/0-wiz-0/findnewest"; description = "Recursively find newest file in a hierarchy and print its timestamp"; mainProgram = "fn"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/fi/fio/package.nix b/pkgs/by-name/fi/fio/package.nix index edea623ffaf9..02ac086b8c21 100644 --- a/pkgs/by-name/fi/fio/package.nix +++ b/pkgs/by-name/fi/fio/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { wrapPythonProgramsIn "$out/bin" "$out $pythonPath" ''; - meta = with lib; { + meta = { description = "Flexible IO Tester - an IO benchmark tool"; homepage = "https://git.kernel.dk/cgit/fio/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fi/fioctl/package.nix b/pkgs/by-name/fi/fioctl/package.nix index f5198558a813..0aca33c7b256 100644 --- a/pkgs/by-name/fi/fioctl/package.nix +++ b/pkgs/by-name/fi/fioctl/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Simple CLI to manage your Foundries Factory"; homepage = "https://github.com/foundriesio/fioctl"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nixinator matthewcroughan ]; diff --git a/pkgs/by-name/fi/fira-code-symbols/package.nix b/pkgs/by-name/fi/fira-code-symbols/package.nix index 09c9fc812590..a2d0c568ef32 100644 --- a/pkgs/by-name/fi/fira-code-symbols/package.nix +++ b/pkgs/by-name/fi/fira-code-symbols/package.nix @@ -21,14 +21,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "FiraCode unicode ligature glyphs in private use area"; longDescription = '' FiraCode uses ligatures, which some editors don’t support. This addition adds them as glyphs to the private unicode use area. See https://github.com/tonsky/FiraCode/issues/211. ''; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; homepage = "https://github.com/tonsky/FiraCode/issues/211#issuecomment-239058632"; }; diff --git a/pkgs/by-name/fi/fira-code/package.nix b/pkgs/by-name/fi/fira-code/package.nix index 66ca9f0050a2..f1f42f07d3ff 100644 --- a/pkgs/by-name/fi/fira-code/package.nix +++ b/pkgs/by-name/fi/fira-code/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/tonsky/FiraCode"; description = "Monospace font with programming ligatures"; longDescription = '' @@ -34,8 +34,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { a set of ligatures for common programming multi-character combinations. ''; - license = licenses.ofl; - maintainers = [ maintainers.rycee ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.rycee ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/fi/fira-go/package.nix b/pkgs/by-name/fi/fira-go/package.nix index 1f5d3edd706d..e0830c0e3861 100644 --- a/pkgs/by-name/fi/fira-go/package.nix +++ b/pkgs/by-name/fi/fira-go/package.nix @@ -23,14 +23,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://bboxtype.com/typefaces/FiraGO"; description = '' Font with the same glyph set as Fira Sans 4.3 and additionally supports Arabic, Devenagari, Georgian, Hebrew and Thai ''; - license = licenses.ofl; - maintainers = [ maintainers.loicreynier ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.loicreynier ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fi/fira-math/package.nix b/pkgs/by-name/fi/fira-math/package.nix index b9eb000366f4..7e74d3fd0ca7 100644 --- a/pkgs/by-name/fi/fira-math/package.nix +++ b/pkgs/by-name/fi/fira-math/package.nix @@ -47,11 +47,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Math font with Unicode math support based on FiraSans and FiraGO"; homepage = "https://github.com/firamath/firamath"; - license = licenses.ofl; - maintainers = [ maintainers.loicreynier ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.loicreynier ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fi/fira-mono/package.nix b/pkgs/by-name/fi/fira-mono/package.nix index 40f2f1584344..f7af266fe7b6 100644 --- a/pkgs/by-name/fi/fira-mono/package.nix +++ b/pkgs/by-name/fi/fira-mono/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://bboxtype.com/fira/"; description = "Monospace font for Firefox OS"; longDescription = '' @@ -32,8 +32,8 @@ stdenvNoCC.mkDerivation rec { Type Design for Mozilla Firefox OS. Available in Regular, Medium, and Bold. ''; - license = licenses.ofl; - maintainers = [ maintainers.rycee ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.rycee ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fi/fira-sans/package.nix b/pkgs/by-name/fi/fira-sans/package.nix index 00618336cf26..97e0ee797df4 100644 --- a/pkgs/by-name/fi/fira-sans/package.nix +++ b/pkgs/by-name/fi/fira-sans/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://bboxtype.com/fira/"; description = "Sans-serif font for Firefox OS"; longDescription = '' @@ -36,7 +36,7 @@ stdenvNoCC.mkDerivation rec { Medium, Semi Bold, Bold, Extra Bold, Heavy weights with corresponding italic versions. ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fi/firectl/package.nix b/pkgs/by-name/fi/firectl/package.nix index c7d603f6a393..bc2509f33cf1 100644 --- a/pkgs/by-name/fi/firectl/package.nix +++ b/pkgs/by-name/fi/firectl/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Command-line tool to run Firecracker microVMs"; homepage = "https://github.com/firecracker-microvm/firectl"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ xrelkd ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ xrelkd ]; mainProgram = "firectl"; }; } diff --git a/pkgs/by-name/fi/firefly-desktop/package.nix b/pkgs/by-name/fi/firefly-desktop/package.nix index 11a86b93cc06..5f86178afd36 100644 --- a/pkgs/by-name/fi/firefly-desktop/package.nix +++ b/pkgs/by-name/fi/firefly-desktop/package.nix @@ -28,10 +28,10 @@ appimageTools.wrapType2 { cp ${appimageContents}/desktop.png $out/share/pixmaps/firefly-desktop.png ''; - meta = with lib; { + meta = { description = "IOTA's New Wallet"; homepage = "https://firefly.iota.org"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "firefly-desktop"; diff --git a/pkgs/by-name/fi/firestarter/package.nix b/pkgs/by-name/fi/firestarter/package.nix index 079936cdac73..96574b71af6e 100644 --- a/pkgs/by-name/fi/firestarter/package.nix +++ b/pkgs/by-name/fi/firestarter/package.nix @@ -122,16 +122,16 @@ stdenv.mkDerivation rec { addDriverRunpath $out/bin/FIRESTARTER_CUDA ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "https://tu-dresden.de/zih/forschung/projekte/firestarter"; description = "Processor Stress Test Utility"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ astro marenz ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "FIRESTARTER"; }; } diff --git a/pkgs/by-name/fi/firewalk/package.nix b/pkgs/by-name/fi/firewalk/package.nix index 4f1c365d6088..a88e4182d81d 100644 --- a/pkgs/by-name/fi/firewalk/package.nix +++ b/pkgs/by-name/fi/firewalk/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { libdnet ]; - meta = with lib; { + meta = { description = "Gateway ACL scanner"; mainProgram = "firewalk"; homepage = "http://packetfactory.openwall.net/projects/firewalk/"; - license = licenses.bsd2; - maintainers = with maintainers; [ tochiaha ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ tochiaha ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fi/firmware-updater/package.nix b/pkgs/by-name/fi/firmware-updater/package.nix index 5a7950a6e935..d06cc5937b18 100644 --- a/pkgs/by-name/fi/firmware-updater/package.nix +++ b/pkgs/by-name/fi/firmware-updater/package.nix @@ -23,12 +23,12 @@ flutter335.buildFlutterApplication rec { hash = "sha256-nQn5mlgNj157h++67+mhez/F1ALz4yY+bxiGsi0/xX8="; }; - meta = with lib; { + meta = { description = "Firmware Updater for Linux"; mainProgram = "firmware-updater"; homepage = "https://github.com/canonical/firmware-updater"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mkg20001 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mkg20001 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fi/firrtl/package.nix b/pkgs/by-name/fi/firrtl/package.nix index a3718753af65..7448ffec865b 100644 --- a/pkgs/by-name/fi/firrtl/package.nix +++ b/pkgs/by-name/fi/firrtl/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { grep -qFe "module test" -e "endmodule" test.v ''; - meta = with lib; { + meta = { description = "Flexible Intermediate Representation for RTL"; mainProgram = "firrtl"; longDescription = '' @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { designed as a platform for writing circuit-level transformations. ''; homepage = "https://www.chisel-lang.org/firrtl/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fi/fish-fillets-ng/package.nix b/pkgs/by-name/fi/fish-fillets-ng/package.nix index 7c40b658cbfd..91526bdb4d5b 100644 --- a/pkgs/by-name/fi/fish-fillets-ng/package.nix +++ b/pkgs/by-name/fi/fish-fillets-ng/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { install -Dm644 ${./icon.xpm} $out/share/pixmaps/fish-fillets-ng.xpm ''; - meta = with lib; { + meta = { description = "Puzzle game"; mainProgram = "fillets"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://fillets.sourceforge.net/"; }; } diff --git a/pkgs/by-name/fi/fish-irssi/package.nix b/pkgs/by-name/fi/fish-irssi/package.nix index d22321d75aaa..6dcfb1bfc05a 100644 --- a/pkgs/by-name/fi/fish-irssi/package.nix +++ b/pkgs/by-name/fi/fish-irssi/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation { cmakeFlags = [ "-DIRSSI_INCLUDE_PATH:PATH=${irssi}/include" ]; - meta = with lib; { + meta = { homepage = "https://github.com/falsovsky/FiSH-irssi"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fi/fishnet/package.nix b/pkgs/by-name/fi/fishnet/package.nix index b14ef5d13137..cd1c69a56df6 100644 --- a/pkgs/by-name/fi/fishnet/package.nix +++ b/pkgs/by-name/fi/fishnet/package.nix @@ -79,11 +79,11 @@ rustPlatform.buildRustPackage (finalAttrs: { }); }; - meta = with lib; { + meta = { description = "Distributed Stockfish analysis for lichess.org"; homepage = "https://github.com/lichess-org/fishnet"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ tu-maurice thibaultd ]; diff --git a/pkgs/by-name/fi/fission/package.nix b/pkgs/by-name/fi/fission/package.nix index e9e046e9cb47..4234467d1d75 100644 --- a/pkgs/by-name/fi/fission/package.nix +++ b/pkgs/by-name/fi/fission/package.nix @@ -29,10 +29,10 @@ buildGoModule rec { ln -s $out/bin/fission-cli $out/bin/fission ''; - meta = with lib; { + meta = { description = "Cli used by end user to interact Fission"; homepage = "https://fission.io"; - license = licenses.asl20; - maintainers = with maintainers; [ neverbehave ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ neverbehave ]; }; } diff --git a/pkgs/by-name/fi/fits-cloudctl/package.nix b/pkgs/by-name/fi/fits-cloudctl/package.nix index 95a0461cdcc8..9bbb9cae602d 100644 --- a/pkgs/by-name/fi/fits-cloudctl/package.nix +++ b/pkgs/by-name/fi/fits-cloudctl/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { "-X github.com/metal-stack/v.BuildDate=${gittime}" ]; - meta = with lib; { + meta = { description = "Command-line client for FI-TS Finance Cloud Native services"; homepage = "https://github.com/fi-ts/cloudctl"; - license = licenses.mit; - maintainers = with maintainers; [ j0xaf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0xaf ]; mainProgram = "cloudctl"; }; } diff --git a/pkgs/by-name/fi/fitsverify/package.nix b/pkgs/by-name/fi/fitsverify/package.nix index c0cd705be1fc..6b9e8b419f26 100644 --- a/pkgs/by-name/fi/fitsverify/package.nix +++ b/pkgs/by-name/fi/fitsverify/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { install -D fitsverify $out/bin/fitsverify ''; - meta = with lib; { + meta = { description = "FITS File Format-Verification Tool"; mainProgram = "fitsverify"; longDescription = '' @@ -39,8 +39,8 @@ stdenv.mkDerivation (finalAttrs: { requirements defined in Version 3.0 of the FITS Standard document. ''; homepage = "https://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/"; - license = licenses.mit; - platforms = with platforms; linux; - maintainers = with maintainers; [ panicgh ]; + license = lib.licenses.mit; + platforms = with lib.platforms; linux; + maintainers = with lib.maintainers; [ panicgh ]; }; }) diff --git a/pkgs/by-name/fi/five-or-more/package.nix b/pkgs/by-name/fi/five-or-more/package.nix index f241567c592a..2aa337c4330f 100644 --- a/pkgs/by-name/fi/five-or-more/package.nix +++ b/pkgs/by-name/fi/five-or-more/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/five-or-more"; description = "Remove colored balls from the board by forming lines"; mainProgram = "five-or-more"; - teams = [ teams.gnome ]; - license = licenses.gpl2; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/fl/flac2all/package.nix b/pkgs/by-name/fl/flac2all/package.nix index 50ed431311e5..d611a7264fd3 100644 --- a/pkgs/by-name/fl/flac2all/package.nix +++ b/pkgs/by-name/fl/flac2all/package.nix @@ -54,12 +54,12 @@ python3Packages.buildPythonApplication rec { "flac2all_pkg.mp3" ]; - meta = with lib; { + meta = { description = "Multi process, clustered, FLAC to multi codec audio converter with tagging support"; mainProgram = "flac2all"; homepage = "https://github.com/ZivaVatra/flac2all"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # TODO: This has only been tested on Linux, but may work on Mac too. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fl/flaca/package.nix b/pkgs/by-name/fl/flaca/package.nix index 2c0470caae24..6db3eb49b0e9 100644 --- a/pkgs/by-name/fl/flaca/package.nix +++ b/pkgs/by-name/fl/flaca/package.nix @@ -29,14 +29,14 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-LVY1+Nvcy7WoJ7Bsf1rgrdTzLMRqpquDXD8X3X8jX20="; - meta = with lib; { + meta = { description = "CLI tool to losslessly compress JPEG and PNG images"; longDescription = "A CLI tool for x86-64 Linux machines that simplifies the task of maximally, losslessly compressing JPEG and PNG images for use in production web environments"; homepage = "https://github.com/Blobfolio/flaca"; changelog = "https://github.com/Blobfolio/flaca/releases/tag/v${finalAttrs.version}"; - maintainers = with maintainers; [ zzzsy ]; - platforms = platforms.linux; - license = licenses.wtfpl; + maintainers = with lib.maintainers; [ zzzsy ]; + platforms = lib.platforms.linux; + license = lib.licenses.wtfpl; mainProgram = "flaca"; }; }) diff --git a/pkgs/by-name/fl/flake-checker/package.nix b/pkgs/by-name/fl/flake-checker/package.nix index 6d1d12177c3d..f44ad711e0a2 100644 --- a/pkgs/by-name/fl/flake-checker/package.nix +++ b/pkgs/by-name/fl/flake-checker/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-5pK0l84L4cEhw5d8n8j6JWEXEbsmWHmHJxB5ZMrnAU0="; - meta = with lib; { + meta = { description = "Health checks for your Nix flakes"; homepage = "https://github.com/${src.owner}/${src.repo}"; changelog = "https://github.com/${src.owner}/${src.repo}/releases/tag/${src.rev}"; - license = licenses.asl20; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lucperkins ]; mainProgram = "flake-checker"; }; } diff --git a/pkgs/by-name/fl/flam3/package.nix b/pkgs/by-name/fl/flam3/package.nix index 7de83084aa12..059b549787ae 100644 --- a/pkgs/by-name/fl/flam3/package.nix +++ b/pkgs/by-name/fl/flam3/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { homepage = "https://flam3.com/"; description = "Cosmic recursive fractal flames"; longDescription = '' @@ -36,8 +36,8 @@ stdenv.mkDerivation { used to create art and special effects. The shape and color of each image is specified by a long string of numbers - a genetic code of sorts. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fl/flamegraph/package.nix b/pkgs/by-name/fl/flamegraph/package.nix index 520f6c286657..deb7536d31fb 100644 --- a/pkgs/by-name/fl/flamegraph/package.nix +++ b/pkgs/by-name/fl/flamegraph/package.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation { runHook postCheck ''; - meta = with lib; { - license = with licenses; [ + meta = { + license = with lib.licenses; [ asl20 cddl gpl2Plus @@ -53,6 +53,6 @@ stdenv.mkDerivation { homepage = "https://www.brendangregg.com/flamegraphs.html"; description = "Visualization for profiled code"; mainProgram = "flamegraph.pl"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fl/flamp/package.nix b/pkgs/by-name/fl/flamp/package.nix index 27e6797ea2be..79f5e2999ea5 100644 --- a/pkgs/by-name/fl/flamp/package.nix +++ b/pkgs/by-name/fl/flamp/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Digital modem program"; homepage = "https://sourceforge.net/projects/fldigi/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ stteague ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ stteague ]; + platforms = lib.platforms.unix; broken = stdenv.system == "x86_64-darwin"; mainProgram = "flamp"; }; diff --git a/pkgs/by-name/fl/flare/package.nix b/pkgs/by-name/fl/flare/package.nix index 917c09389fd5..97ecef417fa0 100644 --- a/pkgs/by-name/fl/flare/package.nix +++ b/pkgs/by-name/fl/flare/package.nix @@ -19,18 +19,18 @@ buildEnv { makeWrapper $out/games/flare $out/bin/flare --chdir "$out/share/games/flare" ''; - meta = with lib; { + meta = { description = "Fantasy action RPG using the FLARE engine"; mainProgram = "flare"; homepage = "https://flarerpg.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aanderse McSinyx ]; license = [ - licenses.gpl3 - licenses.cc-by-sa-30 + lib.licenses.gpl3 + lib.licenses.cc-by-sa-30 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fl/flarectl/package.nix b/pkgs/by-name/fl/flarectl/package.nix index 4e862083c4ef..435614a28036 100644 --- a/pkgs/by-name/fl/flarectl/package.nix +++ b/pkgs/by-name/fl/flarectl/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "CLI application for interacting with a Cloudflare account"; homepage = "https://github.com/cloudflare/cloudflare-go"; changelog = "https://github.com/cloudflare/cloudflare-go/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ jmbaur ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jmbaur ]; mainProgram = "flarectl"; }; } diff --git a/pkgs/by-name/fl/flaresolverr/package.nix b/pkgs/by-name/fl/flaresolverr/package.nix index 3b580e41b82e..58451a6f13aa 100644 --- a/pkgs/by-name/fl/flaresolverr/package.nix +++ b/pkgs/by-name/fl/flaresolverr/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation (finalAttrs: { tests.smoke-test = nixosTests.flaresolverr; }; - meta = with lib; { + meta = { description = "Proxy server to bypass Cloudflare protection"; homepage = "https://github.com/FlareSolverr/FlareSolverr"; changelog = "https://github.com/FlareSolverr/FlareSolverr/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "flaresolverr"; maintainers = [ ]; inherit (undetected-chromedriver.meta) platforms; diff --git a/pkgs/by-name/fl/flarum/package.nix b/pkgs/by-name/fl/flarum/package.nix index bca506f0ccc0..5cf89b56063d 100644 --- a/pkgs/by-name/fl/flarum/package.nix +++ b/pkgs/by-name/fl/flarum/package.nix @@ -19,12 +19,12 @@ php.buildComposerProject2 (finalAttrs: { composerStrictValidation = false; vendorHash = "sha256-peQMR7+Jx+oXo0HdXOHzTYB9Fn0AkELm43fiV4ssLnI="; - meta = with lib; { + meta = { changelog = "https://github.com/flarum/framework/blob/main/CHANGELOG.md"; description = "Delightfully simple discussion platform for your website"; homepage = "https://github.com/flarum/flarum"; license = lib.licenses.mit; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fsagbuya jasonodoom ]; diff --git a/pkgs/by-name/fl/flashbench/package.nix b/pkgs/by-name/fl/flashbench/package.nix index c04a2a2ff1e8..167119db4273 100644 --- a/pkgs/by-name/fl/flashbench/package.nix +++ b/pkgs/by-name/fl/flashbench/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Testing tool for flash based memory devices"; homepage = "https://github.com/bradfa/flashbench"; - platforms = platforms.linux; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/fl/flashfocus/package.nix b/pkgs/by-name/fl/flashfocus/package.nix index fbc50c1eec05..c70e81dc229e 100644 --- a/pkgs/by-name/fl/flashfocus/package.nix +++ b/pkgs/by-name/fl/flashfocus/package.nix @@ -58,11 +58,11 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/fennerm/flashfocus"; description = "Simple focus animations for tiling window managers"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/by-name/fl/flashgbx/package.nix b/pkgs/by-name/fl/flashgbx/package.nix index 7b556f1519ae..d357910f0d37 100644 --- a/pkgs/by-name/fl/flashgbx/package.nix +++ b/pkgs/by-name/fl/flashgbx/package.nix @@ -56,11 +56,11 @@ python3Packages.buildPythonApplication rec { qt6.qtwayland ]; - meta = with lib; { + meta = { description = "GUI for reading and writing GB and GBA cartridges with the GBxCart RW"; homepage = "https://github.com/lesserkuma/FlashGBX"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "flashgbx"; - maintainers = with maintainers; [ grahamnorris ]; + maintainers = with lib.maintainers; [ grahamnorris ]; }; } diff --git a/pkgs/by-name/fl/flashprint/package.nix b/pkgs/by-name/fl/flashprint/package.nix index 36b52fc81653..f0f381d12552 100644 --- a/pkgs/by-name/fl/flashprint/package.nix +++ b/pkgs/by-name/fl/flashprint/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Slicer for the FlashForge 3D printers"; homepage = "https://www.flashforge.com/"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "flashprint"; - maintainers = [ maintainers.ianliu ]; + maintainers = [ lib.maintainers.ianliu ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/fl/flashprog/package.nix b/pkgs/by-name/fl/flashprog/package.nix index 0f553884e3e2..6498de27fa32 100644 --- a/pkgs/by-name/fl/flashprog/package.nix +++ b/pkgs/by-name/fl/flashprog/package.nix @@ -64,16 +64,16 @@ stdenv.mkDerivation (finalAttrs: { allowedVersions = "^[0-9\\.]+$"; }; - meta = with lib; { + meta = { homepage = "https://flashprog.org"; description = "Utility for reading, writing, erasing and verifying flash ROM chips"; changelog = "https://flashprog.org/wiki/Flashprog/v${finalAttrs.version}"; - license = with licenses; [ gpl2 ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ felixsinger funkeleinhorn ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "flashprog"; }; }) diff --git a/pkgs/by-name/fl/flashrom/package.nix b/pkgs/by-name/fl/flashrom/package.nix index 69c794381a9a..936c536ac226 100644 --- a/pkgs/by-name/fl/flashrom/package.nix +++ b/pkgs/by-name/fl/flashrom/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation (finalAttrs: { stdenv.cc.isClang && !stdenv.hostPlatform.isDarwin ) "-Wno-gnu-folding-constant"; - meta = with lib; { + meta = { homepage = "https://www.flashrom.org"; description = "Utility for reading, writing, erasing and verifying flash ROM chips"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.all; mainProgram = "flashrom"; }; }) diff --git a/pkgs/by-name/fl/flasm/package.nix b/pkgs/by-name/fl/flasm/package.nix index 5f51279ebb67..ee4f6fee61bb 100644 --- a/pkgs/by-name/fl/flasm/package.nix +++ b/pkgs/by-name/fl/flasm/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { install -Dm755 flasm -t $out/bin ''; - meta = with lib; { + meta = { description = "Assembler and disassembler for Flash (SWF) bytecode"; mainProgram = "flasm"; homepage = "https://flasm.sourceforge.net/"; - license = licenses.bsd2; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fl/flat-remix-gnome/package.nix b/pkgs/by-name/fl/flat-remix-gnome/package.nix index 0c2ed9709236..435deb5f38c5 100644 --- a/pkgs/by-name/fl/flat-remix-gnome/package.nix +++ b/pkgs/by-name/fl/flat-remix-gnome/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { rm $out/share/gnome-shell/gnome-shell-theme.gresource.old ''; - meta = with lib; { + meta = { description = "GNOME Shell theme inspired by material design"; homepage = "https://drasite.com/flat-remix-gnome"; - license = licenses.cc-by-sa-40; - platforms = platforms.linux; - maintainers = [ maintainers.vanilla ]; + license = lib.licenses.cc-by-sa-40; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.vanilla ]; }; } diff --git a/pkgs/by-name/fl/flat-remix-gtk/package.nix b/pkgs/by-name/fl/flat-remix-gtk/package.nix index 5d112edd2051..78d10be7b506 100644 --- a/pkgs/by-name/fl/flat-remix-gtk/package.nix +++ b/pkgs/by-name/fl/flat-remix-gtk/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { gtk-engine-murrine ]; - meta = with lib; { + meta = { description = "GTK application theme inspired by material design"; homepage = "https://drasite.com/flat-remix-gtk"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = [ maintainers.mkg20001 ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.mkg20001 ]; }; } diff --git a/pkgs/by-name/fl/flatcc/package.nix b/pkgs/by-name/fl/flatcc/package.nix index b0878e74b08a..16e6095f3a45 100644 --- a/pkgs/by-name/fl/flatcc/package.nix +++ b/pkgs/by-name/fl/flatcc/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { "-DFLATCC_INSTALL=on" ]; - meta = with lib; { + meta = { description = "FlatBuffers Compiler and Library in C for C"; mainProgram = "flatcc"; homepage = "https://github.com/dvidelabs/flatcc"; - license = [ licenses.asl20 ]; - maintainers = with maintainers; [ onny ]; + license = [ lib.licenses.asl20 ]; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/fl/flatito/package.nix b/pkgs/by-name/fl/flatito/package.nix index 6232248492ea..5fb13df43f59 100644 --- a/pkgs/by-name/fl/flatito/package.nix +++ b/pkgs/by-name/fl/flatito/package.nix @@ -33,12 +33,12 @@ buildRubyGem rec { passthru.updateScript = bundlerUpdateScript "${pname}"; - meta = with lib; { + meta = { description = "Grep for keys in YAML and JSON files"; homepage = "https://github.com/ceritium/flatito"; - license = licenses.mit; - maintainers = with maintainers; [ rucadi ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rucadi ]; + platforms = lib.platforms.unix; mainProgram = "flatito"; }; } diff --git a/pkgs/by-name/fl/flatter/package.nix b/pkgs/by-name/fl/flatter/package.nix index b192ba77b5a3..6347bf1ed519 100644 --- a/pkgs/by-name/fl/flatter/package.nix +++ b/pkgs/by-name/fl/flatter/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Fast lattice reduction of integer lattice bases"; homepage = "https://github.com/keeganryan/flatter"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; mainProgram = "flatter"; - platforms = platforms.all; - maintainers = with maintainers; [ josephsurin ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ josephsurin ]; }; } diff --git a/pkgs/by-name/fl/flawfinder/package.nix b/pkgs/by-name/fl/flawfinder/package.nix index bdb99f4e6ffb..fa3b8c4a870c 100644 --- a/pkgs/by-name/fl/flawfinder/package.nix +++ b/pkgs/by-name/fl/flawfinder/package.nix @@ -23,12 +23,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "flawfinder" ]; - meta = with lib; { + meta = { description = "Tool to examines C/C++ source code for security flaws"; mainProgram = "flawfinder"; homepage = "https://dwheeler.com/flawfinder/"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; - platforms = platforms.all; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fl/flexcpp/package.nix b/pkgs/by-name/fl/flexcpp/package.nix index fe1938d6cd0d..56ce0c5aa113 100644 --- a/pkgs/by-name/fl/flexcpp/package.nix +++ b/pkgs/by-name/fl/flexcpp/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ./build install x ''; - meta = with lib; { + meta = { description = "C++ tool for generating lexical scanners"; mainProgram = "flexc++"; longDescription = '' @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { option. ''; homepage = "https://fbb-git.github.io/flexcpp/"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fl/flexibee/package.nix b/pkgs/by-name/fl/flexibee/package.nix index a593132020aa..5c57691911d2 100644 --- a/pkgs/by-name/fl/flexibee/package.nix +++ b/pkgs/by-name/fl/flexibee/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Client for an accouting economic system"; homepage = "https://www.flexibee.eu/"; - license = licenses.unfree; - maintainers = [ maintainers.mmahut ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.mmahut ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/fl/flightgear/openscenegraph-flightgear.nix b/pkgs/by-name/fl/flightgear/openscenegraph-flightgear.nix index a78f6b887359..a46775a3ac8e 100644 --- a/pkgs/by-name/fl/flightgear/openscenegraph-flightgear.nix +++ b/pkgs/by-name/fl/flightgear/openscenegraph-flightgear.nix @@ -80,14 +80,14 @@ stdenv.mkDerivation { cmakeFlags = [ "-DBUILD_OSG_APPLICATIONS=OFF" ]; - meta = with lib; { + meta = { description = "3D graphics toolkit"; homepage = "http://www.openscenegraph.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aanderse raskin ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; license = "OpenSceneGraph Public License - free LGPL-based license"; }; } diff --git a/pkgs/by-name/fl/flink/package.nix b/pkgs/by-name/fl/flink/package.nix index 7bf0bfbb1569..006f23c9811b 100644 --- a/pkgs/by-name/fl/flink/package.nix +++ b/pkgs/by-name/fl/flink/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { description = "Distributed stream processing framework"; mainProgram = "flink"; homepage = "https://flink.apache.org"; downloadPage = "https://flink.apache.org/downloads.html"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mbode autophagy ]; diff --git a/pkgs/by-name/fl/flintlock/package.nix b/pkgs/by-name/fl/flintlock/package.nix index dccfa5f33a5d..5464056eb361 100644 --- a/pkgs/by-name/fl/flintlock/package.nix +++ b/pkgs/by-name/fl/flintlock/package.nix @@ -54,14 +54,14 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "Create and manage the lifecycle of MicroVMs backed by containerd"; homepage = "https://github.com/weaveworks-liquidmetal/flintlock"; - license = licenses.mpl20; + license = lib.licenses.mpl20; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ techknowlogick ]; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/by-name/fl/flip/package.nix b/pkgs/by-name/fl/flip/package.nix index 32bb4464cc4b..415363fd146b 100644 --- a/pkgs/by-name/fl/flip/package.nix +++ b/pkgs/by-name/fl/flip/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Tool for visualizing and communicating the errors in rendered images"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ zmitchell ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ zmitchell ]; mainProgram = "flip"; }; } diff --git a/pkgs/by-name/fl/flitter/package.nix b/pkgs/by-name/fl/flitter/package.nix index 853e5a4832e0..4b9ddc259b59 100644 --- a/pkgs/by-name/fl/flitter/package.nix +++ b/pkgs/by-name/fl/flitter/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { xorg.libX11 ]; - meta = with lib; { + meta = { description = "Livesplit-inspired speedrunning split timer for Linux/macOS terminal"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; homepage = "https://github.com/alexozer/flitter"; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "flitter"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/fl/flix/package.nix b/pkgs/by-name/fl/flix/package.nix index cdd99e4474dd..09e3f92005f4 100644 --- a/pkgs/by-name/fl/flix/package.nix +++ b/pkgs/by-name/fl/flix/package.nix @@ -30,13 +30,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Flix Programming Language"; mainProgram = "flix"; homepage = "https://github.com/flix/flix"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ athas ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ athas ]; inherit (jre.meta) platforms; }; } diff --git a/pkgs/by-name/fl/flock/package.nix b/pkgs/by-name/fl/flock/package.nix index de759c8121dc..da29b2c60f74 100644 --- a/pkgs/by-name/fl/flock/package.nix +++ b/pkgs/by-name/fl/flock/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Cross-platform version of flock(1)"; homepage = "https://github.com/discoteq/flock"; maintainers = [ ]; mainProgram = "flock"; - platforms = platforms.all; - license = licenses.isc; + platforms = lib.platforms.all; + license = lib.licenses.isc; }; } diff --git a/pkgs/by-name/fl/flockit/package.nix b/pkgs/by-name/fl/flockit/package.nix index 9990cb899b32..01a317211743 100644 --- a/pkgs/by-name/fl/flockit/package.nix +++ b/pkgs/by-name/fl/flockit/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { chmod +x $out/bin/flockit ''; - meta = with lib; { + meta = { description = "LD_PRELOAD shim to add file locking to programs that don't do it (I'm looking at you, rsync!)"; mainProgram = "flockit"; longDescription = '' @@ -50,8 +50,8 @@ stdenv.mkDerivation { https://www.swiftstack.com/blog/2012/08/15/old-school-monkeypatching/ ''; homepage = "https://github.com/smerritt/flockit"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = [ maintainers.basvandijk ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.basvandijk ]; }; } diff --git a/pkgs/by-name/fl/flood-for-transmission/package.nix b/pkgs/by-name/fl/flood-for-transmission/package.nix index 2f096ffd4895..29afbc3c1070 100644 --- a/pkgs/by-name/fl/flood-for-transmission/package.nix +++ b/pkgs/by-name/fl/flood-for-transmission/package.nix @@ -28,12 +28,12 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Flood clone for Transmission"; homepage = "https://github.com/johman10/flood-for-transmission"; downloadPage = "https://github.com/johman10/flood-for-transmission/releases"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ al3xtjames ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ al3xtjames ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fl/flood/package.nix b/pkgs/by-name/fl/flood/package.nix index 39f7f2c3a108..143d4ec1d548 100644 --- a/pkgs/by-name/fl/flood/package.nix +++ b/pkgs/by-name/fl/flood/package.nix @@ -34,11 +34,11 @@ buildNpmPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Modern web UI for various torrent clients with a Node.js backend and React frontend"; homepage = "https://flood.js.org"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ thiagokokada winter ners diff --git a/pkgs/by-name/fl/flootty/package.nix b/pkgs/by-name/fl/flootty/package.nix index ac43300e145d..dfc672651504 100644 --- a/pkgs/by-name/fl/flootty/package.nix +++ b/pkgs/by-name/fl/flootty/package.nix @@ -18,11 +18,11 @@ python3Packages.buildPythonApplication rec { setuptools ]; - meta = with lib; { + meta = { description = "Collaborative terminal. In practice, it's similar to a shared screen or tmux session"; mainProgram = "flootty"; homepage = "https://floobits.com/help/flootty"; - license = licenses.asl20; - maintainers = with maintainers; [ sellout ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sellout ]; }; } diff --git a/pkgs/by-name/fl/flopoco/package.nix b/pkgs/by-name/fl/flopoco/package.nix index 6d32636b1098..1455ce84dc2d 100644 --- a/pkgs/by-name/fl/flopoco/package.nix +++ b/pkgs/by-name/fl/flopoco/package.nix @@ -88,11 +88,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "FloPoCo arithmetic core generator"; homepage = "https://flopoco.org/"; - license = licenses.unfree; - platforms = platforms.unix; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.unfree; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/fl/flottbot/package.nix b/pkgs/by-name/fl/flottbot/package.nix index 05017df6bab7..1497927eacc2 100644 --- a/pkgs/by-name/fl/flottbot/package.nix +++ b/pkgs/by-name/fl/flottbot/package.nix @@ -32,13 +32,13 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Chatbot framework written in Go"; homepage = "https://github.com/target/flottbot"; - license = licenses.asl20; - maintainers = with maintainers; [ bryanhonof ]; - sourceProvenance = [ sourceTypes.fromSource ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bryanhonof ]; + sourceProvenance = [ lib.sourceTypes.fromSource ]; mainProgram = "flottbot"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fl/flowblade/package.nix b/pkgs/by-name/fl/flowblade/package.nix index 76971b36db47..f82b4ed72110 100644 --- a/pkgs/by-name/fl/flowblade/package.nix +++ b/pkgs/by-name/fl/flowblade/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Multitrack Non-Linear Video Editor"; homepage = "https://jliljebl.github.io/flowblade/"; - license = with licenses; [ gpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ polygon ]; + license = with lib.licenses; [ gpl3Plus ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ polygon ]; mainProgram = "flowblade"; }; } diff --git a/pkgs/by-name/fl/flowgger/package.nix b/pkgs/by-name/fl/flowgger/package.nix index b5b2be0adc5a..7b77f21e45e3 100644 --- a/pkgs/by-name/fl/flowgger/package.nix +++ b/pkgs/by-name/fl/flowgger/package.nix @@ -31,10 +31,10 @@ rustPlatform.buildRustPackage rec { "--skip=flowgger::encoder::ltsv_encoder::test_ltsv_full_encode_no_sd" ]; - meta = with lib; { + meta = { homepage = "https://github.com/awslabs/flowgger"; description = "Fast, simple and lightweight data collector written in Rust"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "flowgger"; }; diff --git a/pkgs/by-name/fl/flowtime/package.nix b/pkgs/by-name/fl/flowtime/package.nix index c33c3a21c9b8..c44b72dd8a82 100644 --- a/pkgs/by-name/fl/flowtime/package.nix +++ b/pkgs/by-name/fl/flowtime/package.nix @@ -48,15 +48,15 @@ stdenv.mkDerivation rec { gst-plugins-base ]); - meta = with lib; { + meta = { description = "Get what motivates you done, without losing concentration"; mainProgram = "flowtime"; homepage = "https://github.com/Diego-Ivan/Flowtime"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared pokon548 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fl/flpsed/package.nix b/pkgs/by-name/fl/flpsed/package.nix index cfa8f3d05124..4171a77d0901 100644 --- a/pkgs/by-name/fl/flpsed/package.nix +++ b/pkgs/by-name/fl/flpsed/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { "FLTKCONFIG=${lib.getExe' (lib.getDev fltk13) "fltk-config"}" ]; - meta = with lib; { + meta = { description = "WYSIWYG PostScript annotator"; homepage = "https://flpsed.org/flpsed.html"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "flpsed"; }; diff --git a/pkgs/by-name/fl/fluent-icon-theme/package.nix b/pkgs/by-name/fl/fluent-icon-theme/package.nix index bd02e441ff11..c89fb416183c 100644 --- a/pkgs/by-name/fl/fluent-icon-theme/package.nix +++ b/pkgs/by-name/fl/fluent-icon-theme/package.nix @@ -70,11 +70,11 @@ lib.checkListOfEnum "${pname}: available color variants" runHook postInstall ''; - meta = with lib; { + meta = { description = "Fluent icon theme for linux desktops"; homepage = "https://github.com/vinceliuice/Fluent-icon-theme"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ icy-thought ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ icy-thought ]; }; } diff --git a/pkgs/by-name/fl/fluent-reader/package.nix b/pkgs/by-name/fl/fluent-reader/package.nix index 4fc85cc3c1af..5db8ad84b852 100644 --- a/pkgs/by-name/fl/fluent-reader/package.nix +++ b/pkgs/by-name/fl/fluent-reader/package.nix @@ -28,12 +28,12 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Modern desktop RSS reader built with Electron, React, and Fluent UI"; mainProgram = "fluent-reader"; homepage = "https://hyliu.me/fluent-reader"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ zendo ]; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/fl/fluidd/package.nix b/pkgs/by-name/fl/fluidd/package.nix index 81dc4ed013f0..853ced2f816d 100644 --- a/pkgs/by-name/fl/fluidd/package.nix +++ b/pkgs/by-name/fl/fluidd/package.nix @@ -32,10 +32,10 @@ buildNpmPackage rec { passthru.tests = { inherit (nixosTests) fluidd; }; - meta = with lib; { + meta = { description = "Klipper web interface"; homepage = "https://docs.fluidd.xyz"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/by-name/fl/flux/package.nix b/pkgs/by-name/fl/flux/package.nix index db3d3a9a8ae0..208c451bd3b2 100644 --- a/pkgs/by-name/fl/flux/package.nix +++ b/pkgs/by-name/fl/flux/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { description = "Interface description language used by DirectFB"; mainProgram = "fluxcomp"; homepage = "https://github.com/deniskropp/flux"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/fl/fluxbox/package.nix b/pkgs/by-name/fl/fluxbox/package.nix index a65978083289..433f61cbb483 100644 --- a/pkgs/by-name/fl/fluxbox/package.nix +++ b/pkgs/by-name/fl/fluxbox/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { --subst-var-by PREFIX "$out" ''; - meta = with lib; { + meta = { description = "Full-featured, light-resource X window manager"; longDescription = '' Fluxbox is a X window manager based on Blackbox 0.61.1 window @@ -66,9 +66,9 @@ stdenv.mkDerivation rec { under MIT license. ''; homepage = "https://fluxbox.org/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } # Many thanks Jack Ryan from Nix-dev mailing list! diff --git a/pkgs/by-name/fl/fluxboxlauncher/package.nix b/pkgs/by-name/fl/fluxboxlauncher/package.nix index 0b9afde3cb00..1adb818d2057 100644 --- a/pkgs/by-name/fl/fluxboxlauncher/package.nix +++ b/pkgs/by-name/fl/fluxboxlauncher/package.nix @@ -59,12 +59,12 @@ python3.pkgs.buildPythonApplication { install -Dm444 fluxboxlauncher.svg -t $out/share/icons/hicolor/scalable/apps ''; - meta = with lib; { + meta = { description = "Gui editor (gtk) to configure applications launching on a fluxbox session"; mainProgram = "fluxboxlauncher"; homepage = "https://github.com/mothsART/fluxboxlauncher"; - maintainers = with maintainers; [ mothsart ]; - license = licenses.bsdOriginal; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ mothsart ]; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fl/fly/package.nix b/pkgs/by-name/fl/fly/package.nix index e6ec8328edfd..94ed692e874a 100644 --- a/pkgs/by-name/fl/fly/package.nix +++ b/pkgs/by-name/fl/fly/package.nix @@ -38,12 +38,12 @@ buildGoModule rec { --zsh <($out/bin/fly completion --shell zsh) ''; - meta = with lib; { + meta = { description = "Command line interface to Concourse CI"; mainProgram = "fly"; homepage = "https://concourse-ci.org"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ivanbrennan SuperSandro2000 ]; diff --git a/pkgs/by-name/fl/flye/package.nix b/pkgs/by-name/fl/flye/package.nix index 3bc42e8bbb9d..f861dab4ffee 100644 --- a/pkgs/by-name/fl/flye/package.nix +++ b/pkgs/by-name/fl/flye/package.nix @@ -54,11 +54,11 @@ python3Packages.buildPythonApplication rec { python3Packages.pytestCheckHook ]; - meta = with lib; { + meta = { description = "De novo assembler for single molecule sequencing reads using repeat graphs"; homepage = "https://github.com/fenderglass/Flye"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "flye"; - maintainers = with maintainers; [ assistant ]; + maintainers = with lib.maintainers; [ assistant ]; }; } diff --git a/pkgs/by-name/fl/flyway/package.nix b/pkgs/by-name/fl/flyway/package.nix index 09551a6b88fa..9f8da8fe2360 100644 --- a/pkgs/by-name/fl/flyway/package.nix +++ b/pkgs/by-name/fl/flyway/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = { version = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { description = "Evolve your Database Schema easily and reliably across all your instances"; longDescription = '' The Flyway command-line tool is a standalone Flyway distribution. @@ -45,9 +45,9 @@ stdenv.mkDerivation (finalAttrs: { downloadPage = "https://github.com/flyway/flyway"; homepage = "https://flywaydb.org/"; changelog = "https://documentation.red-gate.com/fd/release-notes-for-flyway-engine-179732572.html"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.cmcdragonkai ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.cmcdragonkai ]; }; }) diff --git a/pkgs/by-name/fl/flywheel-cli/package.nix b/pkgs/by-name/fl/flywheel-cli/package.nix index 604d962528eb..a047dd7e089a 100644 --- a/pkgs/by-name/fl/flywheel-cli/package.nix +++ b/pkgs/by-name/fl/flywheel-cli/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Library and command line interface for interacting with a Flywheel site"; mainProgram = "fw"; homepage = "https://gitlab.com/flywheel-io/public/python-cli"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; - maintainers = with maintainers; [ rbreslow ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rbreslow ]; platforms = [ "x86_64-darwin" "x86_64-linux" diff --git a/pkgs/by-name/fm/fm-tune/package.nix b/pkgs/by-name/fm/fm-tune/package.nix index 8240b2d652f1..dae3f2d66fcc 100644 --- a/pkgs/by-name/fm/fm-tune/package.nix +++ b/pkgs/by-name/fm/fm-tune/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { soapysdr ]; - meta = with lib; { + meta = { description = "Find initial calibration offset for SDR devices"; longDescription = '' fm_tune finds the initial offset for calibrating an SDR device. This is @@ -34,9 +34,9 @@ stdenv.mkDerivation rec { cannot correct for very large errors. ''; homepage = "https://github.com/viraptor/fm_tune"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ viraptor ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ viraptor ]; mainProgram = "fm_tune"; }; } diff --git a/pkgs/by-name/fm/fm/package.nix b/pkgs/by-name/fm/fm/package.nix index 25e68ac0a0ee..d5a19fd2cb35 100644 --- a/pkgs/by-name/fm/fm/package.nix +++ b/pkgs/by-name/fm/fm/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage { poppler ]; - meta = with lib; { + meta = { description = "Small, general purpose file manager built with GTK4"; homepage = "https://github.com/euclio/fm"; - license = licenses.mit; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aleksana ]; mainProgram = "fm"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fm/fmodex/package.nix b/pkgs/by-name/fm/fmodex/package.nix index 030f20e084e4..36d0e24d9250 100644 --- a/pkgs/by-name/fm/fmodex/package.nix +++ b/pkgs/by-name/fm/fmodex/package.nix @@ -54,15 +54,15 @@ stdenv.mkDerivation rec { cp -r api/inc $out/include ''; - meta = with lib; { + meta = { description = "Programming library and toolkit for the creation and playback of interactive audio"; homepage = "http://www.fmod.org/"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; - maintainers = [ maintainers.lassulus ]; + maintainers = [ lib.maintainers.lassulus ]; }; } diff --git a/pkgs/by-name/fn/fn-cli/package.nix b/pkgs/by-name/fn/fn-cli/package.nix index bb21fd9d1c15..02929324ad13 100644 --- a/pkgs/by-name/fn/fn-cli/package.nix +++ b/pkgs/by-name/fn/fn-cli/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { mv $out/bin/cli $out/bin/fn ''; - meta = with lib; { + meta = { description = "Command-line tool for the fn project"; mainProgram = "fn"; homepage = "https://fnproject.io"; - license = licenses.asl20; - maintainers = [ maintainers.c4605 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.c4605 ]; }; } diff --git a/pkgs/by-name/fn/fnc/package.nix b/pkgs/by-name/fn/fnc/package.nix index 515f8a193311..2e6b2abcde37 100644 --- a/pkgs/by-name/fn/fnc/package.nix +++ b/pkgs/by-name/fn/fnc/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Interactive ncurses browser for Fossil repositories"; longDescription = '' An interactive ncurses browser for Fossil repositories. @@ -43,9 +43,9 @@ stdenv.mkDerivation (finalAttrs: { fnc uses libfossil to create a fossil ui experience in the terminal. ''; homepage = "https://fnc.bsdbox.org"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ abbe ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbe ]; mainProgram = "fnc"; }; }) diff --git a/pkgs/by-name/fn/fnotifystat/package.nix b/pkgs/by-name/fn/fnotifystat/package.nix index 3e5926ea1c51..42cb3fa73b35 100644 --- a/pkgs/by-name/fn/fnotifystat/package.nix +++ b/pkgs/by-name/fn/fnotifystat/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "File activity monitoring tool"; mainProgram = "fnotifystat"; homepage = "https://github.com/ColinIanKing/fnotifystat"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ womfoo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ womfoo ]; }; } diff --git a/pkgs/by-name/fo/focus-stack/package.nix b/pkgs/by-name/fo/focus-stack/package.nix index 683a42192274..2194318790c0 100644 --- a/pkgs/by-name/fo/focus-stack/package.nix +++ b/pkgs/by-name/fo/focus-stack/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Fast and easy focus stacking"; homepage = "https://github.com/PetteriAimonen/focus-stack"; - license = licenses.mit; - maintainers = with maintainers; [ paperdigits ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ paperdigits ]; mainProgram = "focus-stack"; }; } diff --git a/pkgs/by-name/fo/focus/package.nix b/pkgs/by-name/fo/focus/package.nix index d783030d5365..ef46548cdbb6 100644 --- a/pkgs/by-name/fo/focus/package.nix +++ b/pkgs/by-name/fo/focus/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=\${out}" ]; - meta = with lib; { + meta = { description = "Focus window, workspace or monitor by direction or cycle through them"; longDescription = '' A collection of utilities that change the focus of windows, workspaces or monitors. ''; homepage = "https://github.com/phillbush/focus"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fo/folder-color-switcher/package.nix b/pkgs/by-name/fo/folder-color-switcher/package.nix index 616a02ae13a4..61e0e72f0bd3 100644 --- a/pkgs/by-name/fo/folder-color-switcher/package.nix +++ b/pkgs/by-name/fo/folder-color-switcher/package.nix @@ -46,11 +46,11 @@ stdenvNoCC.mkDerivation { # TypeError: Couldn't find foreign struct converter for 'cairo.Surface' passthru.nemoPythonExtensionDeps = [ python3.pkgs.pycairo ]; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/folder-color-switcher"; description = "Change folder colors for Nemo and Caja"; - license = licenses.gpl3Only; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/fo/folks/package.nix b/pkgs/by-name/fo/folks/package.nix index 3ccadbae1430..92b656c51b47 100644 --- a/pkgs/by-name/fo/folks/package.nix +++ b/pkgs/by-name/fo/folks/package.nix @@ -110,11 +110,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library that aggregates people from multiple sources to create metacontacts"; homepage = "https://gitlab.gnome.org/GNOME/folks"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/fo/foma/package.nix b/pkgs/by-name/fo/foma/package.nix index 12b0823e703b..ee4ebe8b40ed 100644 --- a/pkgs/by-name/fo/foma/package.nix +++ b/pkgs/by-name/fo/foma/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = with lib; { + meta = { description = "Multi-purpose finite-state toolkit designed for applications ranging from natural language processing to research in automata theory"; homepage = "https://github.com/mhulden/foma"; - license = licenses.asl20; - maintainers = [ maintainers.tckmn ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.tckmn ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fo/fomp/package.nix b/pkgs/by-name/fo/fomp/package.nix index 4b69e283f860..e0b8a88d6515 100644 --- a/pkgs/by-name/fo/fomp/package.nix +++ b/pkgs/by-name/fo/fomp/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://drobilla.net/software/fomp.html"; description = "LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fo/fondo/package.nix b/pkgs/by-name/fo/fondo/package.nix index f95083b02356..3a917d067515 100644 --- a/pkgs/by-name/fo/fondo/package.nix +++ b/pkgs/by-name/fo/fondo/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/calo001/fondo"; description = "Find the most beautiful wallpapers for your desktop"; - license = licenses.agpl3Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "com.github.calo001.fondo"; }; } diff --git a/pkgs/by-name/fo/font-config-info/package.nix b/pkgs/by-name/fo/font-config-info/package.nix index db25a630cbaa..e8719442beab 100644 --- a/pkgs/by-name/fo/font-config-info/package.nix +++ b/pkgs/by-name/fo/font-config-info/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Prints a Linux system's font configuration"; homepage = "https://github.com/derat/font-config-info"; - license = with licenses; [ bsd3 ]; - platforms = platforms.unix; - maintainers = with maintainers; [ romildo ]; + license = with lib.licenses; [ bsd3 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "font-config-info"; }; } diff --git a/pkgs/by-name/fo/font-manager/package.nix b/pkgs/by-name/fo/font-manager/package.nix index 3a9dd2606da8..67b1d25e985b 100644 --- a/pkgs/by-name/fo/font-manager/package.nix +++ b/pkgs/by-name/fo/font-manager/package.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://fontmanager.github.io/"; changelog = "https://github.com/FontManager/font-manager/raw/refs/tags/${finalAttrs.version}/CHANGELOG"; description = "Simple font management for GTK desktop environments"; @@ -100,8 +100,8 @@ stdenv.mkDerivation (finalAttrs: { Font Manager is NOT a professional-grade font management solution. ''; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; }) diff --git a/pkgs/by-name/fo/fontfinder/package.nix b/pkgs/by-name/fo/fontfinder/package.nix index e71104b33a18..e510bb3232d8 100644 --- a/pkgs/by-name/fo/fontfinder/package.nix +++ b/pkgs/by-name/fo/fontfinder/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "GTK application for browsing and installing fonts from Google's font archive"; homepage = "https://github.com/mmstick/fontfinder"; changelog = "https://github.com/mmstick/fontfinder/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "fontfinder-gtk"; }; diff --git a/pkgs/by-name/fo/fontfor/package.nix b/pkgs/by-name/fo/fontfor/package.nix index 7a6c948d294f..f2efb58fa3f8 100644 --- a/pkgs/by-name/fo/fontfor/package.nix +++ b/pkgs/by-name/fo/fontfor/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Find fonts which can show a specified character and preview them in browser"; homepage = "https://github.com/7sDream/fontfor"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; mainProgram = "fontfor"; }; } diff --git a/pkgs/by-name/fo/fontmatrix/package.nix b/pkgs/by-name/fo/fontmatrix/package.nix index 9a846d75ca93..1bbfc55e6f96 100644 --- a/pkgs/by-name/fo/fontmatrix/package.nix +++ b/pkgs/by-name/fo/fontmatrix/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { libsForQt5.wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Free/libre font explorer for Linux, Windows and Mac"; homepage = "https://github.com/fontmatrix/fontmatrix"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fo/fontpreview/package.nix b/pkgs/by-name/fo/fontpreview/package.nix index 5ec5203c870c..1e1f271d02bb 100644 --- a/pkgs/by-name/fo/fontpreview/package.nix +++ b/pkgs/by-name/fo/fontpreview/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/sdushantha/fontpreview"; description = "Highly customizable and minimal font previewer written in bash"; longDescription = '' @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { all of the variables in this tool can be changed using the commandline flags or you can configure them using environment variables. ''; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.erictapen ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.erictapen ]; mainProgram = "fontpreview"; }; } diff --git a/pkgs/by-name/fo/foo2zjs/package.nix b/pkgs/by-name/fo/foo2zjs/package.nix index 009b2b061cf3..0deb8f939bd4 100644 --- a/pkgs/by-name/fo/foo2zjs/package.nix +++ b/pkgs/by-name/fo/foo2zjs/package.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation rec { cp -v getweb arm2hpdl "$out/bin" ''; - meta = with lib; { + meta = { description = "ZjStream printer drivers"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/fo/foonathan-memory/package.nix b/pkgs/by-name/fo/foonathan-memory/package.nix index 703ff9e464ec..288ba9b4f3f3 100644 --- a/pkgs/by-name/fo/foonathan-memory/package.nix +++ b/pkgs/by-name/fo/foonathan-memory/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { rmdir $out/lib/foonathan_memory ''; - meta = with lib; { + meta = { homepage = "https://memory.foonathan.net/"; changelog = "https://github.com/foonathan/memory/releases/tag/${finalAttrs.src.rev}"; description = "STL compatible C++ memory allocator library"; @@ -64,8 +64,8 @@ stdenv.mkDerivation (finalAttrs: { trying to change the STL, it works with the current implementation. ''; - license = licenses.zlib; - maintainers = with maintainers; [ panicgh ]; - platforms = with platforms; unix ++ windows; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ panicgh ]; + platforms = with lib.platforms; unix ++ windows; }; }) diff --git a/pkgs/by-name/fo/footswitch/package.nix b/pkgs/by-name/fo/footswitch/package.nix index 7e0597dd34c8..cb8dadb40690 100644 --- a/pkgs/by-name/fo/footswitch/package.nix +++ b/pkgs/by-name/fo/footswitch/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { doInstallCheck = true; - meta = with lib; { + meta = { description = "Command line utlities for programming PCsensor and Scythe foot switches"; homepage = "https://github.com/rgerganov/footswitch"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ baloo ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ baloo ]; }; } diff --git a/pkgs/by-name/fo/fopnu/package.nix b/pkgs/by-name/fo/fopnu/package.nix index a56aee0e5100..442b613e3fca 100644 --- a/pkgs/by-name/fo/fopnu/package.nix +++ b/pkgs/by-name/fo/fopnu/package.nix @@ -42,11 +42,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "P2P file sharing system"; homepage = "https://fopnu.com"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "fopnu"; maintainers = [ ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/fo/foreman/package.nix b/pkgs/by-name/fo/foreman/package.nix index 06cb2a3d4e96..9c61a2d048fc 100644 --- a/pkgs/by-name/fo/foreman/package.nix +++ b/pkgs/by-name/fo/foreman/package.nix @@ -9,11 +9,11 @@ bundlerEnv { pname = "foreman"; gemdir = ./.; - meta = with lib; { + meta = { description = "Process manager for applications with multiple components"; homepage = "https://github.com/ddollar/foreman"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; platforms = ruby.meta.platforms; mainProgram = "foreman"; }; diff --git a/pkgs/by-name/fo/foremost/package.nix b/pkgs/by-name/fo/foremost/package.nix index c63afde7ced9..999534a8f866 100644 --- a/pkgs/by-name/fo/foremost/package.nix +++ b/pkgs/by-name/fo/foremost/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { mkdir -p $out/{bin,share/man/man8} ''; - meta = with lib; { + meta = { description = "Recover files based on their contents"; longDescription = '' Foremost is a console program to recover files based on their headers, @@ -42,9 +42,9 @@ stdenv.mkDerivation rec { reliable and faster recovery. ''; homepage = "https://foremost.sourceforge.net/"; - license = licenses.publicDomain; - maintainers = [ maintainers.jiegec ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.publicDomain; + maintainers = [ lib.maintainers.jiegec ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "foremost"; }; } diff --git a/pkgs/by-name/fo/forge-mtg/package.nix b/pkgs/by-name/fo/forge-mtg/package.nix index d5914f7e9c77..21d78fc19f0a 100644 --- a/pkgs/by-name/fo/forge-mtg/package.nix +++ b/pkgs/by-name/fo/forge-mtg/package.nix @@ -134,11 +134,11 @@ maven.buildMavenPackage { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Magic: the Gathering card game with rules enforcement"; homepage = "https://card-forge.github.io/forge"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dyegoaurelio eigengrau ]; diff --git a/pkgs/by-name/fo/forgejo-runner/package.nix b/pkgs/by-name/fo/forgejo-runner/package.nix index 5f3a114d3bc8..c446d6245027 100644 --- a/pkgs/by-name/fo/forgejo-runner/package.nix +++ b/pkgs/by-name/fo/forgejo-runner/package.nix @@ -95,12 +95,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Runner for Forgejo based on act"; homepage = "https://code.forgejo.org/forgejo/runner"; changelog = "https://code.forgejo.org/forgejo/runner/releases/tag/${src.rev}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ adamcstephens emilylange christoph-heiss diff --git a/pkgs/by-name/fo/forkstat/package.nix b/pkgs/by-name/fo/forkstat/package.nix index 9c5d947ea9af..0d4bb0acd162 100644 --- a/pkgs/by-name/fo/forkstat/package.nix +++ b/pkgs/by-name/fo/forkstat/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Process fork/exec/exit monitoring tool"; mainProgram = "forkstat"; homepage = "https://github.com/ColinIanKing/forkstat"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ womfoo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ womfoo ]; }; } diff --git a/pkgs/by-name/fo/forktty/package.nix b/pkgs/by-name/fo/forktty/package.nix index 0e6d763dd963..3c8b221df990 100644 --- a/pkgs/by-name/fo/forktty/package.nix +++ b/pkgs/by-name/fo/forktty/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { "manprefix=$(out)/share/" ]; - meta = with lib; { + meta = { description = "Tool to detach from controlling TTY and attach to another"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fo/form/package.nix b/pkgs/by-name/fo/form/package.nix index 36d09be0dc50..6e7e3fafe983 100644 --- a/pkgs/by-name/fo/form/package.nix +++ b/pkgs/by-name/fo/form/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: { zlib ]; - meta = with lib; { + meta = { description = "Symbolic manipulation of very big expressions"; homepage = "https://www.nikhef.nl/~form/"; - license = licenses.gpl3; - maintainers = [ maintainers.veprbl ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.veprbl ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/fo/formatter/package.nix b/pkgs/by-name/fo/formatter/package.nix index 76d3a8af1052..25497b404728 100644 --- a/pkgs/by-name/fo/formatter/package.nix +++ b/pkgs/by-name/fo/formatter/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple formatter designed for elementary OS"; homepage = "https://github.com/Djaler/Formatter"; - maintainers = with maintainers; [ xiorcale ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ xiorcale ]; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2Plus; mainProgram = "com.github.djaler.formatter"; }; } diff --git a/pkgs/by-name/fo/formula/package.nix b/pkgs/by-name/fo/formula/package.nix index 7913d9ec8a7e..72dd2aa03f92 100644 --- a/pkgs/by-name/fo/formula/package.nix +++ b/pkgs/by-name/fo/formula/package.nix @@ -36,12 +36,12 @@ buildDotnetModule (finalAttrs: { passthru.updateScript = unstableGitUpdater { url = finalAttrs.meta.homepage; }; - meta = with lib; { + meta = { description = "Formal Specifications for Verification and Synthesis"; homepage = "https://github.com/VUISIS/formula-dotnet"; - license = licenses.mspl; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mspl; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; mainProgram = "formula"; }; }) diff --git a/pkgs/by-name/fo/fortune/package.nix b/pkgs/by-name/fo/fortune/package.nix index ab889f64e5b3..faf4fb964527 100644 --- a/pkgs/by-name/fo/fortune/package.nix +++ b/pkgs/by-name/fo/fortune/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { rm $out/share/games/fortunes/men-women* ''; - meta = with lib; { + meta = { mainProgram = "fortune"; description = "Program that displays a pseudorandom message from a database of quotations"; - license = licenses.bsdOriginal; - platforms = platforms.unix; - maintainers = with maintainers; [ vonfry ]; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vonfry ]; }; } diff --git a/pkgs/by-name/fo/foxotron/package.nix b/pkgs/by-name/fo/foxotron/package.nix index 1236aef59a3f..43f2d003ef8d 100644 --- a/pkgs/by-name/fo/foxotron/package.nix +++ b/pkgs/by-name/fo/foxotron/package.nix @@ -101,16 +101,16 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "General purpose model viewer"; longDescription = '' ASSIMP based general purpose model viewer ("turntable") created for the Revision 2021 3D Graphics Competition. ''; homepage = "https://github.com/Gargaj/Foxotron"; - license = licenses.unlicense; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; mainProgram = "Foxotron"; }; } diff --git a/pkgs/by-name/fo/foxtrotgps/package.nix b/pkgs/by-name/fo/foxtrotgps/package.nix index 62419c9bc2d7..67cc8111f2d1 100644 --- a/pkgs/by-name/fo/foxtrotgps/package.nix +++ b/pkgs/by-name/fo/foxtrotgps/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation { intltoolize --automake --copy --force ''; - meta = with lib; { + meta = { description = "GPS/GIS application optimized for small screens"; longDescription = '' An easy to use, free & open-source GPS/GIS application that works well on @@ -93,8 +93,8 @@ stdenv.mkDerivation { innovation. ''; homepage = "https://www.foxtrotgps.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ wucke13 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ wucke13 ]; }; } diff --git a/pkgs/by-name/fp/fpart/package.nix b/pkgs/by-name/fp/fpart/package.nix index ab74de18d983..514245493c08 100644 --- a/pkgs/by-name/fp/fpart/package.nix +++ b/pkgs/by-name/fp/fpart/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { -i "$out/bin/fpsync" ''; - meta = with lib; { + meta = { description = "Split file trees into bags (called \"partitions\")"; longDescription = '' Fpart is a tool that helps you sort file trees and pack them into bags @@ -46,8 +46,8 @@ stdenv.mkDerivation rec { Used this way, fpart can be seen as a powerful data migration tool. ''; homepage = "http://contribs.martymac.org/"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/fp/fpattern/package.nix b/pkgs/by-name/fp/fpattern/package.nix index 9ece75ba435c..da3d51708413 100644 --- a/pkgs/by-name/fp/fpattern/package.nix +++ b/pkgs/by-name/fp/fpattern/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/Loadmaster/fpattern"; description = "Filename pattern matching library functions for DOS, Windows, and Unix"; - license = licenses.mit; - maintainers = with maintainers; [ hughobrien ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hughobrien ]; + platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/by-name/fp/fped/package.nix b/pkgs/by-name/fp/fped/package.nix index af8b7b69438d..0cfb5c180913 100644 --- a/pkgs/by-name/fp/fped/package.nix +++ b/pkgs/by-name/fp/fped/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation { gtk2 ]; - meta = with lib; { + meta = { description = "Editor that allows the interactive creation of footprints electronic components"; mainProgram = "fped"; homepage = "http://projects.qi-hardware.com/index.php/p/fped/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fp/fpm2/package.nix b/pkgs/by-name/fp/fpm2/package.nix index d5dabc47ab71..28c0f6cffbb7 100644 --- a/pkgs/by-name/fp/fpm2/package.nix +++ b/pkgs/by-name/fp/fpm2/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { nettle ]; - meta = with lib; { + meta = { description = "GTK2 port from Figaro's Password Manager originally developed by John Conneely, with some new enhancements"; mainProgram = "fpm2"; homepage = "https://als.regnet.cz/fpm2/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ hce ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hce ]; }; } diff --git a/pkgs/by-name/fp/fprettify/package.nix b/pkgs/by-name/fp/fprettify/package.nix index f5b647e3df0a..6e62d432bddb 100644 --- a/pkgs/by-name/fp/fprettify/package.nix +++ b/pkgs/by-name/fp/fprettify/package.nix @@ -28,11 +28,11 @@ python3Packages.buildPythonApplication rec { configargparse ]; - meta = with lib; { + meta = { description = "Auto-formatter for modern Fortran code that imposes strict whitespace formatting, written in Python"; mainProgram = "fprettify"; homepage = "https://pypi.org/project/fprettify/"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fabiangd ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fabiangd ]; }; } diff --git a/pkgs/by-name/fq/fq/package.nix b/pkgs/by-name/fq/fq/package.nix index 4b87c0ecaa00..c6b5fa91eb95 100644 --- a/pkgs/by-name/fq/fq/package.nix +++ b/pkgs/by-name/fq/fq/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { passthru.tests = testers.testVersion { package = fq; }; - meta = with lib; { + meta = { description = "jq for binary formats"; mainProgram = "fq"; homepage = "https://github.com/wader/fq"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/by-name/fr/fragments/package.nix b/pkgs/by-name/fr/fragments/package.nix index 793b92a7ece8..5645d48f89cc 100644 --- a/pkgs/by-name/fr/fragments/package.nix +++ b/pkgs/by-name/fr/fragments/package.nix @@ -71,15 +71,15 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/Fragments"; description = "Easy to use BitTorrent client for the GNOME desktop environment"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ emilytrau ]; teams = [ lib.teams.gnome-circle ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "fragments"; }; } diff --git a/pkgs/by-name/fr/frangipanni/package.nix b/pkgs/by-name/fr/frangipanni/package.nix index 1a0711f1bf6c..1eae362d9577 100644 --- a/pkgs/by-name/fr/frangipanni/package.nix +++ b/pkgs/by-name/fr/frangipanni/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8="; - meta = with lib; { + meta = { description = "Convert lines of text into a tree structure"; mainProgram = "frangipanni"; homepage = "https://github.com/birchb1024/frangipanni"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/by-name/fr/fraunces/package.nix b/pkgs/by-name/fr/fraunces/package.nix index b7a7fb225f30..c54fb24d04d8 100644 --- a/pkgs/by-name/fr/fraunces/package.nix +++ b/pkgs/by-name/fr/fraunces/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Display, “Old Style” soft-serif typeface inspired by early 20th century typefaces"; homepage = "https://github.com/undercasetype/Fraunces"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fr/freac/package.nix b/pkgs/by-name/fr/freac/package.nix index 7e65b0f43e88..ebbf7cbd2a29 100644 --- a/pkgs/by-name/fr/freac/package.nix +++ b/pkgs/by-name/fr/freac/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Audio converter and CD ripper with support for various popular formats and encoders"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.freac.org/"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fr/frece/package.nix b/pkgs/by-name/fr/frece/package.nix index fd3b8b899e2b..16c28aee0e0e 100644 --- a/pkgs/by-name/fr/frece/package.nix +++ b/pkgs/by-name/fr/frece/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-4d1bgkwzC0jFD21Yb8mbnLXTqXTRsJPsMPidSRY4GVw="; - meta = with lib; { + meta = { description = "Maintain a database sorted by frecency (frequency + recency)"; mainProgram = "frece"; homepage = "https://github.com/YodaEmbedding/frece"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fr/freebayes/package.nix b/pkgs/by-name/fr/freebayes/package.nix index cdbde42007e9..eaba4b381c39 100644 --- a/pkgs/by-name/fr/freebayes/package.nix +++ b/pkgs/by-name/fr/freebayes/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { install -vD bin/freebayes bin/bamleftalign scripts/* -t $out/bin ''; - meta = with lib; { + meta = { description = "Bayesian haplotype-based polymorphism discovery and genotyping"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/ekg/freebayes"; - maintainers = with maintainers; [ jdagilliland ]; + maintainers = with lib.maintainers; [ jdagilliland ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/fr/freebind/package.nix b/pkgs/by-name/fr/freebind/package.nix index 9a52b8180c7a..a4c25223cacb 100644 --- a/pkgs/by-name/fr/freebind/package.nix +++ b/pkgs/by-name/fr/freebind/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { mkdir -p $out/bin $out/lib ''; - meta = with lib; { + meta = { description = "IPv4 and IPv6 address rate limiting evasion tool"; homepage = "https://github.com/blechschmidt/freebind"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fr/freedroid/package.nix b/pkgs/by-name/fr/freedroid/package.nix index cb32804c2fc5..14b1da25bcba 100644 --- a/pkgs/by-name/fr/freedroid/package.nix +++ b/pkgs/by-name/fr/freedroid/package.nix @@ -66,13 +66,13 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Clone of the classic game 'Paradroid' on Commodore 64"; mainProgram = "freedroid"; homepage = "https://github.com/ReinhardPrix/FreedroidClassic"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ iblech ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ iblech ]; + platforms = lib.platforms.unix; # Builds but fails to render to the screen at runtime. broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/fr/freedroidrpg/package.nix b/pkgs/by-name/fr/freedroidrpg/package.nix index 4388944a309b..ea58c1d57c72 100644 --- a/pkgs/by-name/fr/freedroidrpg/package.nix +++ b/pkgs/by-name/fr/freedroidrpg/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Isometric 3D RPG similar to game Diablo"; mainProgram = "freedroidRPG"; @@ -100,10 +100,10 @@ stdenv.mkDerivation { homepage = "https://www.freedroid.org/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; - hydraPlatforms = platforms.linux; # sdl-config times out on darwin + platforms = lib.platforms.unix; + hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin }; } diff --git a/pkgs/by-name/fr/freefilesync/package.nix b/pkgs/by-name/fr/freefilesync/package.nix index e374524bc8e5..7daeacb412f7 100644 --- a/pkgs/by-name/fr/freefilesync/package.nix +++ b/pkgs/by-name/fr/freefilesync/package.nix @@ -141,16 +141,16 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Open Source File Synchronization & Backup Software"; homepage = "https://freefilesync.org"; license = [ - licenses.gpl3Only - licenses.openssl - licenses.curl - licenses.bsd3 + lib.licenses.gpl3Only + lib.licenses.openssl + lib.licenses.curl + lib.licenses.bsd3 ]; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fr/freeglut/package.nix b/pkgs/by-name/fr/freeglut/package.nix index 4397b47e08d5..507d28a4dd0c 100644 --- a/pkgs/by-name/fr/freeglut/package.nix +++ b/pkgs/by-name/fr/freeglut/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Create and manage windows containing OpenGL contexts"; longDescription = '' FreeGLUT is an open source alternative to the OpenGL Utility Toolkit @@ -73,9 +73,9 @@ stdenv.mkDerivation (finalAttrs: { differences. ''; homepage = "https://freeglut.sourceforge.net/"; - license = licenses.mit; + license = lib.licenses.mit; pkgConfigModules = [ "glut" ]; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; }) diff --git a/pkgs/by-name/fr/freeorion/package.nix b/pkgs/by-name/fr/freeorion/package.nix index 8e33e5d72d69..c7f068f1023e 100644 --- a/pkgs/by-name/fr/freeorion/package.nix +++ b/pkgs/by-name/fr/freeorion/package.nix @@ -81,14 +81,14 @@ stdenv.mkDerivation (finalAttrs: { --prefix LD_LIBRARY_PATH : $out/lib/freeorion ''; - meta = with lib; { + meta = { description = "Free, open source, turn-based space empire and galactic conquest (4X) computer game"; homepage = "https://www.freeorion.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only cc-by-sa-30 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/fr/freepats/package.nix b/pkgs/by-name/fr/freepats/package.nix index fd39872ea1c5..1245690c816a 100644 --- a/pkgs/by-name/fr/freepats/package.nix +++ b/pkgs/by-name/fr/freepats/package.nix @@ -15,15 +15,15 @@ stdenv.mkDerivation rec { installPhase = ''mkdir "$out"; cp -r . "$out"''; - meta = with lib; { + meta = { description = "Instrument patches, for MIDI synthesizers"; longDescription = '' Freepats is a project to create a free and open set of instrument patches, in any format, that can be used with softsynths. ''; homepage = "https://freepats.zenvoid.org/"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/fr/freeradius/package.nix b/pkgs/by-name/fr/freeradius/package.nix index a4cc5ac151ab..9fe61f9473d4 100644 --- a/pkgs/by-name/fr/freeradius/package.nix +++ b/pkgs/by-name/fr/freeradius/package.nix @@ -101,12 +101,12 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { homepage = "https://freeradius.org/"; description = "Modular, high performance free RADIUS suite"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } ## TODO: include windbind optionally (via samba?) diff --git a/pkgs/by-name/fr/freetalk/package.nix b/pkgs/by-name/fr/freetalk/package.nix index eb1d8d851ae8..e6b177f404d7 100644 --- a/pkgs/by-name/fr/freetalk/package.nix +++ b/pkgs/by-name/fr/freetalk/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { env.NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-largp"; - meta = with lib; { + meta = { description = "Console XMPP client"; mainProgram = "freetalk"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; downloadPage = "https://www.gnu.org/software/freetalk/"; }; } diff --git a/pkgs/by-name/fr/freetype/package.nix b/pkgs/by-name/fr/freetype/package.nix index 2ffbca5c44f6..13beff64c85a 100644 --- a/pkgs/by-name/fr/freetype/package.nix +++ b/pkgs/by-name/fr/freetype/package.nix @@ -125,7 +125,7 @@ stdenv.mkDerivation (finalAttrs: { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Font rendering engine"; mainProgram = "freetype-config"; longDescription = '' @@ -139,9 +139,9 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://gitlab.freedesktop.org/freetype/freetype/-/raw/VER-${ builtins.replaceStrings [ "." ] [ "-" ] finalAttrs.version }/docs/CHANGES"; - license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause) - platforms = platforms.all; + license = lib.licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause) + platforms = lib.platforms.all; pkgConfigModules = [ "freetype2" ]; - maintainers = with maintainers; [ ttuegel ]; + maintainers = with lib.maintainers; [ ttuegel ]; }; }) diff --git a/pkgs/by-name/fr/freexl/package.nix b/pkgs/by-name/fr/freexl/package.nix index b3137b6613f4..7c8e7fc80d3c 100644 --- a/pkgs/by-name/fr/freexl/package.nix +++ b/pkgs/by-name/fr/freexl/package.nix @@ -31,16 +31,16 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Library to extract valid data from within an Excel (.xls) spreadsheet"; homepage = "https://www.gaia-gis.it/fossil/freexl"; # They allow any of these - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus mpl11 ]; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/fr/freeze/package.nix b/pkgs/by-name/fr/freeze/package.nix index 38846028c086..f46f9f53b5af 100644 --- a/pkgs/by-name/fr/freeze/package.nix +++ b/pkgs/by-name/fr/freeze/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { mv $out/bin/Freeze $out/bin/freeze ''; - meta = with lib; { + meta = { description = "Payload toolkit for bypassing EDRs"; mainProgram = "freeze"; homepage = "https://github.com/optiv/Freeze"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/fr/frei/package.nix b/pkgs/by-name/fr/frei/package.nix index bbbde6301315..e39f58928724 100644 --- a/pkgs/by-name/fr/frei/package.nix +++ b/pkgs/by-name/fr/frei/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Modern replacement for free"; homepage = "https://github.com/alexcoder04/frei"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ infinidoge ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ infinidoge ]; mainProgram = "frei"; }; } diff --git a/pkgs/by-name/fr/frei0r/package.nix b/pkgs/by-name/fr/frei0r/package.nix index 1f1a1e862ef2..aea5800971fc 100644 --- a/pkgs/by-name/fr/frei0r/package.nix +++ b/pkgs/by-name/fr/frei0r/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://frei0r.dyne.org"; description = "Minimalist, cross-platform, shared video plugins"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fr/french-numbers/package.nix b/pkgs/by-name/fr/french-numbers/package.nix index ed3b9c01d1e2..93d8f596a1f3 100644 --- a/pkgs/by-name/fr/french-numbers/package.nix +++ b/pkgs/by-name/fr/french-numbers/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoBuildFlags = [ "--features=cli" ]; - meta = with lib; { + meta = { description = "Represent numbers in French language"; homepage = "https://github.com/evenfurther/french-numbers"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; mainProgram = "french-numbers"; - maintainers = with maintainers; [ samueltardieu ]; + maintainers = with lib.maintainers; [ samueltardieu ]; }; } diff --git a/pkgs/by-name/fr/frescobaldi/package.nix b/pkgs/by-name/fr/frescobaldi/package.nix index ae9d3be7ef76..53548207c462 100644 --- a/pkgs/by-name/fr/frescobaldi/package.nix +++ b/pkgs/by-name/fr/frescobaldi/package.nix @@ -45,7 +45,7 @@ python3Packages.buildPythonApplication rec { "\${qtWrapperArgs[@]}" ]; - meta = with lib; { + meta = { homepage = "https://frescobaldi.org/"; description = "LilyPond sheet music text editor"; longDescription = '' @@ -60,9 +60,9 @@ python3Packages.buildPythonApplication rec { MusicXML import, Modern user iterface with configurable colors, fonts and keyboard shortcuts ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ sepi ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sepi ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/frescobaldi.x86_64-darwin mainProgram = "frescobaldi"; }; diff --git a/pkgs/by-name/fr/freshfetch/package.nix b/pkgs/by-name/fr/freshfetch/package.nix index 52ebca152e2e..dd6b7510d7b9 100644 --- a/pkgs/by-name/fr/freshfetch/package.nix +++ b/pkgs/by-name/fr/freshfetch/package.nix @@ -20,10 +20,10 @@ rustPlatform.buildRustPackage rec { # freshfetch depends on rust nightly features RUSTC_BOOTSTRAP = 1; - meta = with lib; { + meta = { description = "Fresh take on neofetch"; homepage = "https://github.com/k4rakara/freshfetch"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "freshfetch"; }; diff --git a/pkgs/by-name/fr/fribidi/package.nix b/pkgs/by-name/fr/fribidi/package.nix index 0d506b3ad8b8..f8fd5f3171c9 100644 --- a/pkgs/by-name/fr/fribidi/package.nix +++ b/pkgs/by-name/fr/fribidi/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/fribidi/fribidi"; description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)"; mainProgram = "fribidi"; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; pkgConfigModules = [ "fribidi" ]; }; }) diff --git a/pkgs/by-name/fr/frigate/package.nix b/pkgs/by-name/fr/frigate/package.nix index 56dc274ae585..ca2b54be98b4 100644 --- a/pkgs/by-name/fr/frigate/package.nix +++ b/pkgs/by-name/fr/frigate/package.nix @@ -238,7 +238,7 @@ python3Packages.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/blakeblackshear/frigate/releases/tag/${src.tag}"; description = "NVR with realtime local object detection for IP cameras"; longDescription = '' @@ -247,7 +247,7 @@ python3Packages.buildPythonApplication rec { object detection locally for IP cameras. ''; homepage = "https://github.com/blakeblackshear/frigate"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/fr/frink/package.nix b/pkgs/by-name/fr/frink/package.nix index 43ddf36ab9bf..93449ad5e10a 100644 --- a/pkgs/by-name/fr/frink/package.nix +++ b/pkgs/by-name/fr/frink/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Practical calculating tool and programming language"; homepage = "https://frinklang.org/"; - license = licenses.unfree; - sourceProvenance = [ sourceTypes.binaryBytecode ]; - maintainers = [ maintainers.stefanfehrenbach ]; + license = lib.licenses.unfree; + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; + maintainers = [ lib.maintainers.stefanfehrenbach ]; }; passthru.tests = { diff --git a/pkgs/by-name/fr/friture/package.nix b/pkgs/by-name/fr/friture/package.nix index c3900ab28336..920096a1968f 100644 --- a/pkgs/by-name/fr/friture/package.nix +++ b/pkgs/by-name/fr/friture/package.nix @@ -63,13 +63,13 @@ python3Packages.buildPythonApplication rec { cp $src/resources/images-src/window-icon.svg $out/share/icons/hicolor/scalable/apps/friture.svg ''; - meta = with lib; { + meta = { description = "Real-time audio analyzer"; mainProgram = "friture"; homepage = "https://friture.org/"; - license = licenses.gpl3; - platforms = platforms.linux; # fails on Darwin - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; # fails on Darwin + maintainers = with lib.maintainers; [ laikq pentane ]; diff --git a/pkgs/by-name/fr/frog/package.nix b/pkgs/by-name/fr/frog/package.nix index 367a1b0689cf..fd1563e1ebc7 100644 --- a/pkgs/by-name/fr/frog/package.nix +++ b/pkgs/by-name/fr/frog/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { tests.simple = callPackage ./test.nix { frog = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { description = "Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch"; homepage = "https://languagemachines.github.io/frog"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; longDescription = '' Frog is an integration of memory-based natural language processing (NLP) modules developed for Dutch. All NLP modules are based on Timbl, the Tilburg memory-based learning software package. Most modules were created in the 1990s at the ILK Research Group (Tilburg University, the Netherlands) and the CLiPS Research Centre (University of Antwerp, Belgium). Over the years they have been integrated into a single text processing tool, which is currently maintained and developed by the Language Machines Research Group and the Centre for Language and Speech Technology at Radboud University Nijmegen. A dependency parser, a base phrase chunker, and a named-entity recognizer module were added more recently. Where possible, Frog makes use of multi-processor support to run subtasks in parallel. diff --git a/pkgs/by-name/fr/frogatto/data.nix b/pkgs/by-name/fr/frogatto/data.nix index 15751c71302a..c1b43013d178 100644 --- a/pkgs/by-name/fr/frogatto/data.nix +++ b/pkgs/by-name/fr/frogatto/data.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation { cp -ar . $out/share/frogatto/modules/frogatto4 ''; - meta = with lib; { + meta = { homepage = "https://github.com/frogatto/frogatto"; description = "Data files to the frogatto game"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-30 unfree ]; - maintainers = with maintainers; [ astro ]; + maintainers = with lib.maintainers; [ astro ]; }; } diff --git a/pkgs/by-name/fr/frogatto/engine.nix b/pkgs/by-name/fr/frogatto/engine.nix index ded9db8efb34..ba6ab8eef203 100644 --- a/pkgs/by-name/fr/frogatto/engine.nix +++ b/pkgs/by-name/fr/frogatto/engine.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation { cp -a anura $out/bin/frogatto ''; - meta = with lib; { + meta = { homepage = "https://github.com/anura-engine/anura"; description = "Game engine used by Frogatto"; - license = licenses.zlib; - platforms = platforms.linux; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.zlib; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ astro ]; }; } diff --git a/pkgs/by-name/fr/frogatto/package.nix b/pkgs/by-name/fr/frogatto/package.nix index ca17b4547957..206c0d519209 100644 --- a/pkgs/by-name/fr/frogatto/package.nix +++ b/pkgs/by-name/fr/frogatto/package.nix @@ -47,14 +47,14 @@ buildEnv { --chdir "$out/share/frogatto" ''; - meta = with lib; { + meta = { homepage = "https://frogatto.com"; description = description; - license = with licenses; [ + license = with lib.licenses; [ cc-by-30 unfree ]; - platforms = platforms.linux; - maintainers = with maintainers; [ astro ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ astro ]; }; } diff --git a/pkgs/by-name/fr/frogdata/package.nix b/pkgs/by-name/fr/frogdata/package.nix index 7cb6486c2956..63de926abdb3 100644 --- a/pkgs/by-name/fr/frogdata/package.nix +++ b/pkgs/by-name/fr/frogdata/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Data for Frog, a Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch"; homepage = "https://languagemachines.github.io/frog"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; }; }) diff --git a/pkgs/by-name/fr/frogmouth/package.nix b/pkgs/by-name/fr/frogmouth/package.nix index a963a34b1691..ae830b71aa5e 100644 --- a/pkgs/by-name/fr/frogmouth/package.nix +++ b/pkgs/by-name/fr/frogmouth/package.nix @@ -34,12 +34,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "frogmouth" ]; - meta = with lib; { + meta = { description = "Markdown browser for your terminal"; mainProgram = "frogmouth"; homepage = "https://github.com/Textualize/frogmouth"; changelog = "https://github.com/Textualize/frogmouth/blob/${src.rev}/ChangeLog.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fr/frr/clippy-helper.nix b/pkgs/by-name/fr/frr/clippy-helper.nix index 11165b512068..a4b85a8457bc 100644 --- a/pkgs/by-name/fr/frr/clippy-helper.nix +++ b/pkgs/by-name/fr/frr/clippy-helper.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://frrouting.org/"; description = "FRR routing daemon suite: CLI helper tool clippy"; longDescription = '' @@ -55,11 +55,11 @@ stdenv.mkDerivation { to support cross-compiling, because it needs to be compiled with the build system toolchain and not the target host one. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ thillux ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ thillux ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fr/frr/package.nix b/pkgs/by-name/fr/frr/package.nix index 8094336da5bb..b5d5a9ddf6ad 100644 --- a/pkgs/by-name/fr/frr/package.nix +++ b/pkgs/by-name/fr/frr/package.nix @@ -216,7 +216,7 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://frrouting.org/"; description = "FRR BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite"; longDescription = '' @@ -241,16 +241,18 @@ stdenv.mkDerivation (finalAttrs: { infrastructure, web 2.0 businesses, hyperscale services, and Fortune 500 private clouds. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ woffs thillux ]; # adapt to platforms stated in http://docs.frrouting.org/en/latest/overview.html#supported-platforms - platforms = (platforms.linux ++ platforms.freebsd ++ platforms.netbsd ++ platforms.openbsd); + platforms = ( + lib.platforms.linux ++ lib.platforms.freebsd ++ lib.platforms.netbsd ++ lib.platforms.openbsd + ); }; passthru.tests = { inherit (nixosTests) frr; }; diff --git a/pkgs/by-name/fr/frugal/package.nix b/pkgs/by-name/fr/frugal/package.nix index 0d1107fe3f98..82e0a8140756 100644 --- a/pkgs/by-name/fr/frugal/package.nix +++ b/pkgs/by-name/fr/frugal/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { vendorHash = "sha256-DCSS2kH2yco8cfbQBw3IZHcEE4BP5ir7ikxsIsFDqg0="; - meta = with lib; { + meta = { description = "Thrift improved"; mainProgram = "frugal"; homepage = "https://github.com/Workiva/frugal"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ diogox ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ diogox ]; }; } diff --git a/pkgs/by-name/fr/frugally-deep/package.nix b/pkgs/by-name/fr/frugally-deep/package.nix index 461cabc0194f..c7861f0995a9 100644 --- a/pkgs/by-name/fr/frugally-deep/package.nix +++ b/pkgs/by-name/fr/frugally-deep/package.nix @@ -65,10 +65,10 @@ stdenv.mkDerivation (finalAttrs: { }; passthru.updateScript = gitUpdater; - meta = with lib; { + meta = { description = "Header-only library for using Keras (TensorFlow) models in C++"; homepage = "https://github.com/Dobiasd/frugally-deep"; - license = with licenses; [ mit ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fs/fsarchiver/package.nix b/pkgs/by-name/fs/fsarchiver/package.nix index 90068d7cfcbf..f8020ca8206a 100644 --- a/pkgs/by-name/fs/fsarchiver/package.nix +++ b/pkgs/by-name/fs/fsarchiver/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation { libgpg-error ]; - meta = with lib; { + meta = { description = "File system archiver for linux"; longDescription = '' FSArchiver is a system tool that allows you to save the contents of a @@ -62,9 +62,9 @@ stdenv.mkDerivation { corrupt, you just loose the current file, not the whole archive. ''; homepage = "https://www.fsarchiver.org/"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "fsarchiver"; }; } diff --git a/pkgs/by-name/fs/fsatrace/package.nix b/pkgs/by-name/fs/fsatrace/package.nix index 94e91a173325..a8394fcf23a8 100644 --- a/pkgs/by-name/fs/fsatrace/package.nix +++ b/pkgs/by-name/fs/fsatrace/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { ln -s $out/$installDir/fsatrace $out/bin/fsatrace ''; - meta = with lib; { + meta = { homepage = "https://github.com/jacereda/fsatrace"; description = "Filesystem access tracer"; mainProgram = "fsatrace"; - license = licenses.isc; - platforms = platforms.linux; + license = lib.licenses.isc; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fs/fscan/package.nix b/pkgs/by-name/fs/fscan/package.nix index 8de79fdc78b5..a0aff8862333 100644 --- a/pkgs/by-name/fs/fscan/package.nix +++ b/pkgs/by-name/fs/fscan/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-+m87ReIUOqaTwuh/t0ow4dODG9/G21Gzw6+p/N9QOzU="; - meta = with lib; { + meta = { description = "Intranet comprehensive scanning tool"; homepage = "https://github.com/shadow1ng/fscan"; - license = licenses.mit; - maintainers = with maintainers; [ Misaka13514 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Misaka13514 ]; mainProgram = "fscan"; }; } diff --git a/pkgs/by-name/fs/fsearch/package.nix b/pkgs/by-name/fs/fsearch/package.nix index 6d32a282d7c1..3075f2a02623 100644 --- a/pkgs/by-name/fs/fsearch/package.nix +++ b/pkgs/by-name/fs/fsearch/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { --replace "Exec=fsearch" "Exec=$out/bin/fsearch" ''; - meta = with lib; { + meta = { description = "Fast file search utility for Unix-like systems based on GTK+3"; homepage = "https://github.com/cboxdoerfer/fsearch.git"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ artturin ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ artturin ]; + platforms = lib.platforms.unix; mainProgram = "fsearch"; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/fsearch.x86_64-darwin }; diff --git a/pkgs/by-name/fs/fselect/package.nix b/pkgs/by-name/fs/fselect/package.nix index f1af67e2aaa8..fb512c231251 100644 --- a/pkgs/by-name/fs/fselect/package.nix +++ b/pkgs/by-name/fs/fselect/package.nix @@ -27,14 +27,14 @@ rustPlatform.buildRustPackage rec { installManPage docs/fselect.1 ''; - meta = with lib; { + meta = { description = "Find files with SQL-like queries"; homepage = "https://github.com/jhspetersson/fselect"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "fselect"; diff --git a/pkgs/by-name/fs/fsmark/package.nix b/pkgs/by-name/fs/fsmark/package.nix index 9d442aba7b0a..1b2b6bb8f63f 100644 --- a/pkgs/by-name/fs/fsmark/package.nix +++ b/pkgs/by-name/fs/fsmark/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp fs_mark $out/bin/ ''; - meta = with lib; { + meta = { description = "Synchronous write workload file system benchmark"; homepage = "https://sourceforge.net/projects/fsmark/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; mainProgram = "fs_mark"; }; } diff --git a/pkgs/by-name/fs/fspy/package.nix b/pkgs/by-name/fs/fspy/package.nix index 211c991408e1..309527d5d549 100644 --- a/pkgs/by-name/fs/fspy/package.nix +++ b/pkgs/by-name/fs/fspy/package.nix @@ -16,13 +16,13 @@ in appimageTools.wrapType2 { inherit pname version src; - meta = with lib; { + meta = { description = "Cross platform app for quick and easy still image camera matching"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://fspy.io/"; knownVulnerabilities = [ "Vendors Electron 2.0 (end-of-life)" ]; - maintainers = with maintainers; [ polygon ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ polygon ]; + platforms = lib.platforms.linux; mainProgram = "fspy"; }; } diff --git a/pkgs/by-name/fs/fsql/package.nix b/pkgs/by-name/fs/fsql/package.nix index 56b9215027f6..db32a8a43384 100644 --- a/pkgs/by-name/fs/fsql/package.nix +++ b/pkgs/by-name/fs/fsql/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Search through your filesystem with SQL-esque queries"; homepage = "https://github.com/kshvmdn/fsql"; - license = licenses.mit; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "fsql"; }; } diff --git a/pkgs/by-name/fs/fsrx/package.nix b/pkgs/by-name/fs/fsrx/package.nix index fe4496a7acab..7a74080edc83 100644 --- a/pkgs/by-name/fs/fsrx/package.nix +++ b/pkgs/by-name/fs/fsrx/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Flow state reader in the terminal"; homepage = "https://github.com/thatvegandev/fsrx"; - license = licenses.mit; - maintainers = with maintainers; [ MoritzBoehme ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MoritzBoehme ]; mainProgram = "fsrx"; }; } diff --git a/pkgs/by-name/fs/fst/package.nix b/pkgs/by-name/fs/fst/package.nix index b70ca22aa820..a1619a89cb82 100644 --- a/pkgs/by-name/fs/fst/package.nix +++ b/pkgs/by-name/fs/fst/package.nix @@ -30,14 +30,14 @@ rustPlatform.buildRustPackage rec { $out/bin/fst --help > /dev/null ''; - meta = with lib; { + meta = { description = "Represent large sets and maps compactly with finite state transducers"; mainProgram = "fst"; homepage = "https://github.com/BurntSushi/fst"; - license = with licenses; [ + license = with lib.licenses; [ unlicense # or mit ]; - maintainers = with maintainers; [ rmcgibbo ]; + maintainers = with lib.maintainers; [ rmcgibbo ]; }; } diff --git a/pkgs/by-name/fs/fstl/package.nix b/pkgs/by-name/fs/fstl/package.nix index b658864ce2c3..4b6677f3de51 100644 --- a/pkgs/by-name/fs/fstl/package.nix +++ b/pkgs/by-name/fs/fstl/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { hash = "sha256-puDYXANiyTluSlmnT+gnNPA5eCcw0Ny6md6Ock6pqLc="; }; - meta = with lib; { + meta = { description = "Fastest STL file viewer"; mainProgram = "fstl"; homepage = "https://github.com/fstl-app/fstl"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ tweber ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ tweber ]; }; } diff --git a/pkgs/by-name/fs/fstrcmp/package.nix b/pkgs/by-name/fs/fstrcmp/package.nix index 59d9cf3dfe64..289b218dab6c 100644 --- a/pkgs/by-name/fs/fstrcmp/package.nix +++ b/pkgs/by-name/fs/fstrcmp/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Make fuzzy comparisons of strings and byte arrays"; mainProgram = "fstrcmp"; longDescription = '' @@ -46,8 +46,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://fstrcmp.sourceforge.net/"; downloadPage = "https://sourceforge.net/projects/fstrcmp/"; - license = licenses.gpl3; - maintainers = [ maintainers.sephalon ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.sephalon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fs/fstrm/package.nix b/pkgs/by-name/fs/fstrm/package.nix index 899ee38533a0..6831dde02c7e 100644 --- a/pkgs/by-name/fs/fstrm/package.nix +++ b/pkgs/by-name/fs/fstrm/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Frame Streams implementation in C"; homepage = "https://github.com/farsightsec/fstrm"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fs/fsv/package.nix b/pkgs/by-name/fs/fsv/package.nix index a9c34d2d1bc6..007d63be275d 100644 --- a/pkgs/by-name/fs/fsv/package.nix +++ b/pkgs/by-name/fs/fsv/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "File system visualizer in cyberspace"; longDescription = '' fsv (pronounced eff-ess-vee) is a file system visualizer in cyberspace. @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { by the host computer's memory and graphics hardware. ''; homepage = "https://github.com/jabl/fsv"; - license = licenses.lgpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rnhmjoj ]; mainProgram = "fsv"; }; } diff --git a/pkgs/by-name/fs/fsverity-utils/package.nix b/pkgs/by-name/fs/fsverity-utils/package.nix index babacd82e2c0..10f11daa9091 100644 --- a/pkgs/by-name/fs/fsverity-utils/package.nix +++ b/pkgs/by-name/fs/fsverity-utils/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { mv $out/lib $lib/lib ''; - meta = with lib; { + meta = { homepage = "https://www.kernel.org/doc/html/latest/filesystems/fsverity.html#userspace-utility"; changelog = "https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git/tree/NEWS.md"; description = "Set of userspace utilities for fs-verity"; mainProgram = "fsverity"; - license = licenses.mit; - maintainers = with maintainers; [ jk ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jk ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fs/fswatch/package.nix b/pkgs/by-name/fs/fswatch/package.nix index 05d132e44ab6..0db8cc50e0a9 100644 --- a/pkgs/by-name/fs/fswatch/package.nix +++ b/pkgs/by-name/fs/fswatch/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Cross-platform file change monitor with multiple backends"; mainProgram = "fswatch"; homepage = "https://github.com/emcrisostomo/fswatch"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/ft/ft2-clone/package.nix b/pkgs/by-name/ft/ft2-clone/package.nix index 902195fcc3a5..c7ed8b4ba43d 100644 --- a/pkgs/by-name/ft/ft2-clone/package.nix +++ b/pkgs/by-name/ft/ft2-clone/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation rec { ft2-clone-starts = nixosTests.ft2-clone; }; - meta = with lib; { + meta = { description = "Highly accurate clone of the classic Fasttracker II software for MS-DOS"; homepage = "https://16-bits.org/ft2.php"; - license = licenses.bsd3; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fgaz ]; # From HOW-TO-COMPILE.txt: # > This code is NOT big-endian compatible - platforms = platforms.littleEndian; + platforms = lib.platforms.littleEndian; mainProgram = "ft2-clone"; }; } diff --git a/pkgs/by-name/ft/ftgl/package.nix b/pkgs/by-name/ft/ftgl/package.nix index 40227f823c7c..6a7fef29f5af 100644 --- a/pkgs/by-name/ft/ftgl/package.nix +++ b/pkgs/by-name/ft/ftgl/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { install -Dm644 src/FTSize.h src/FTFace.h -t $out/include/FTGL ''; - meta = with lib; { + meta = { homepage = "https://github.com/frankheckenbach/ftgl"; description = "Font rendering library for OpenGL applications"; longDescription = '' @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { pixmaps, texture maps, outlines, polygon mesh, and extruded polygon rendering modes. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ft/ftop/package.nix b/pkgs/by-name/ft/ftop/package.nix index f507e3cfb61b..173526229396 100644 --- a/pkgs/by-name/ft/ftop/package.nix +++ b/pkgs/by-name/ft/ftop/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { substituteInPlace configure --replace "curses" "ncurses" ''; - meta = with lib; { + meta = { description = "Show progress of open files and file systems"; mainProgram = "ftop"; homepage = "https://code.google.com/archive/p/ftop/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' ftop is to files what top is to processes. The progress of all open files and file systems can be monitored. If run as a regular user, the set of @@ -38,6 +38,6 @@ stdenv.mkDerivation rec { generally all that is of interest to the user). As with top, the items are displayed in order from most to least active. ''; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fu/fuchsia-cursor/package.nix b/pkgs/by-name/fu/fuchsia-cursor/package.nix index 2d567fd33410..fc433af8f0f1 100644 --- a/pkgs/by-name/fu/fuchsia-cursor/package.nix +++ b/pkgs/by-name/fu/fuchsia-cursor/package.nix @@ -69,11 +69,11 @@ lib.checkListOfEnum "${pname}: theme variants" [ "Fuchsia" "Fuchsia-Pop" "Fuchsi runHook postInstall ''; - meta = with lib; { + meta = { description = "First OpenSource port of FuchsiaOS's cursors for Linux and Windows"; homepage = "https://github.com/ful1e5/fuchsia-cursor"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.all; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/fu/funambol/package.nix b/pkgs/by-name/fu/funambol/package.nix index ae746d0be3ba..cd2c0d75d060 100644 --- a/pkgs/by-name/fu/funambol/package.nix +++ b/pkgs/by-name/fu/funambol/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { unzip ]; - meta = with lib; { + meta = { description = "SyncML client sdk by Funambol project"; homepage = "https://www.funambol.com"; - license = licenses.agpl3Only; - platforms = platforms.unix; + license = lib.licenses.agpl3Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fu/function-runner/package.nix b/pkgs/by-name/fu/function-runner/package.nix index 6bc5b50a385b..368f2161ba5c 100644 --- a/pkgs/by-name/fu/function-runner/package.nix +++ b/pkgs/by-name/fu/function-runner/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-fRLBKHsb+y2uyqWejRBmJm+t5CAkL9ScQl6iVCksahU="; - meta = with lib; { + meta = { description = "CLI tool which allows you to run Wasm Functions intended for the Shopify Functions infrastructure"; mainProgram = "function-runner"; homepage = "https://github.com/Shopify/function-runner"; - license = licenses.asl20; - maintainers = with maintainers; [ nintron ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nintron ]; }; } diff --git a/pkgs/by-name/fu/functionalplus/package.nix b/pkgs/by-name/fu/functionalplus/package.nix index e86e15666de8..a6be05246ca6 100644 --- a/pkgs/by-name/fu/functionalplus/package.nix +++ b/pkgs/by-name/fu/functionalplus/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Functional Programming Library for C++"; homepage = "https://github.com/Dobiasd/FunctionalPlus"; - license = licenses.boost; - platforms = platforms.all; + license = lib.licenses.boost; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fu/functiontrace-server/package.nix b/pkgs/by-name/fu/functiontrace-server/package.nix index 62dd1d7deeb2..0584ab933271 100644 --- a/pkgs/by-name/fu/functiontrace-server/package.nix +++ b/pkgs/by-name/fu/functiontrace-server/package.nix @@ -18,10 +18,10 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Server for FunctionTrace, a graphical Python profiler"; homepage = "https://functiontrace.com"; - license = with licenses; [ prosperity30 ]; - maintainers = with maintainers; [ tehmatt ]; + license = with lib.licenses; [ prosperity30 ]; + maintainers = with lib.maintainers; [ tehmatt ]; }; } diff --git a/pkgs/by-name/fu/fundoc/package.nix b/pkgs/by-name/fu/fundoc/package.nix index 2cc010735e61..fae6b0c6a711 100644 --- a/pkgs/by-name/fu/fundoc/package.nix +++ b/pkgs/by-name/fu/fundoc/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-17PzGHSwruHPRKjyiHWBMqHANR5ulb+/J5UoVsOrbyc="; - meta = with lib; { + meta = { description = "Language agnostic documentation generator"; mainProgram = "fundoc"; homepage = "https://github.com/daynin/fundoc"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fu/funnelweb/package.nix b/pkgs/by-name/fu/funnelweb/package.nix index 457d89f5a5df..9ee05416aef4 100644 --- a/pkgs/by-name/fu/funnelweb/package.nix +++ b/pkgs/by-name/fu/funnelweb/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation { install fw $out/bin/fw ''; - meta = with lib; { + meta = { version = "3.20"; description = "Simple, reliable literate-programming macro preprocessor"; mainProgram = "fw"; homepage = "http://www.ross.net/funnelweb/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fu/funzzy/package.nix b/pkgs/by-name/fu/funzzy/package.nix index 4ad552932f31..e6f10245db30 100644 --- a/pkgs/by-name/fu/funzzy/package.nix +++ b/pkgs/by-name/fu/funzzy/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-n9UHyr7W4hrN0+2dsYAYqkP/uzBv74p5XHU0g2MReJY="; - meta = with lib; { + meta = { description = "Lightweight watcher"; homepage = "https://github.com/cristianoliveira/funzzy"; changelog = "https://github.com/cristianoliveira/funzzy/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fu/furtherance/package.nix b/pkgs/by-name/fu/furtherance/package.nix index eb23c4dc3bb2..b6ba69081280 100644 --- a/pkgs/by-name/fu/furtherance/package.nix +++ b/pkgs/by-name/fu/furtherance/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { sqlite ]; - meta = with lib; { + meta = { description = "Track your time without being tracked"; mainProgram = "furtherance"; homepage = "https://github.com/lakoliu/Furtherance"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ CaptainJawZ ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ CaptainJawZ ]; }; }) diff --git a/pkgs/by-name/fu/fuse-7z-ng/package.nix b/pkgs/by-name/fu/fuse-7z-ng/package.nix index 712207735b14..d9fe4b907284 100644 --- a/pkgs/by-name/fu/fuse-7z-ng/package.nix +++ b/pkgs/by-name/fu/fuse-7z-ng/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { cp TODO README NEWS COPYING ChangeLog AUTHORS $out/share/doc/fuse-7z-ng/ ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "FUSE-based filesystem that uses the p7zip library"; longDescription = '' @@ -57,8 +57,8 @@ stdenv.mkDerivation rec { This project is a fork of fuse-7z ( https://gitorious.org/fuse-7z/fuse-7z ). ''; - platforms = platforms.linux; - license = licenses.gpl3Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; mainProgram = "fuse-7z-ng"; }; } diff --git a/pkgs/by-name/fu/fuse-emulator/package.nix b/pkgs/by-name/fu/fuse-emulator/package.nix index dbba4d6f75b8..efc8cba371d6 100644 --- a/pkgs/by-name/fu/fuse-emulator/package.nix +++ b/pkgs/by-name/fu/fuse-emulator/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://fuse-emulator.sourceforge.net/"; description = "ZX Spectrum emulator"; mainProgram = "fuse"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fu/fuse-ext2/package.nix b/pkgs/by-name/fu/fuse-ext2/package.nix index 49ae5aa6e2f1..405b50286ac3 100644 --- a/pkgs/by-name/fu/fuse-ext2/package.nix +++ b/pkgs/by-name/fu/fuse-ext2/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=incompatible-function-pointer-types"; - meta = with lib; { + meta = { description = "FUSE module to mount ext2, ext3 and ext4 with read write support"; homepage = "https://github.com/alperakcan/fuse-ext2"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; mainProgram = "fuse-ext2"; }; }) diff --git a/pkgs/by-name/fu/fuse-overlayfs/package.nix b/pkgs/by-name/fu/fuse-overlayfs/package.nix index 1906c7633f99..f7c05239e374 100644 --- a/pkgs/by-name/fu/fuse-overlayfs/package.nix +++ b/pkgs/by-name/fu/fuse-overlayfs/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) podman; }; - meta = with lib; { + meta = { description = "FUSE implementation for overlayfs"; longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers."; - license = licenses.gpl3; - maintainers = with maintainers; [ ma9e ]; - teams = [ teams.podman ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ma9e ]; + teams = [ lib.teams.podman ]; + platforms = lib.platforms.linux; inherit (src.meta) homepage; mainProgram = "fuse-overlayfs"; }; diff --git a/pkgs/by-name/fu/fusee-interfacee-tk/package.nix b/pkgs/by-name/fu/fusee-interfacee-tk/package.nix index 17410c4e256c..7c9383715a9f 100644 --- a/pkgs/by-name/fu/fusee-interfacee-tk/package.nix +++ b/pkgs/by-name/fu/fusee-interfacee-tk/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation rec { cp intermezzo.bin $out/bin/intermezzo.bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/nh-server/fusee-interfacee-tk"; description = "Tool to send .bin files to a Nintendo Switch in RCM mode"; mainProgram = "fusee-interfacee-tk"; longDescription = "A mod of falquinhos Fusée Launcher for use with Nintendo Homebrew Switch Guide. It also adds the ability to mount SD while in RCM. Must be run as sudo."; - maintainers = with maintainers; [ kristian-brucaj ]; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ kristian-brucaj ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/fu/fuseiso/package.nix b/pkgs/by-name/fu/fuseiso/package.nix index 413a58e6fcdf..3d44633beaef 100644 --- a/pkgs/by-name/fu/fuseiso/package.nix +++ b/pkgs/by-name/fu/fuseiso/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/doc/${pname} NEWS README ''; - meta = with lib; { + meta = { description = "FUSE module to mount ISO filesystem images"; homepage = "https://sourceforge.net/projects/fuseiso"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "fuseiso"; }; } diff --git a/pkgs/by-name/fu/fusesoc/package.nix b/pkgs/by-name/fu/fusesoc/package.nix index edbffdc3f641..92a990b899d9 100644 --- a/pkgs/by-name/fu/fusesoc/package.nix +++ b/pkgs/by-name/fu/fusesoc/package.nix @@ -39,11 +39,11 @@ python3Packages.buildPythonPackage rec { }" ]; - meta = with lib; { + meta = { homepage = "https://github.com/olofk/fusesoc"; description = "Package manager and build tools for HDL code"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd3; mainProgram = "fusesoc"; }; } diff --git a/pkgs/by-name/fu/fusionInventory/package.nix b/pkgs/by-name/fu/fusionInventory/package.nix index f2bc200723bf..96a454ec3953 100644 --- a/pkgs/by-name/fu/fusionInventory/package.nix +++ b/pkgs/by-name/fu/fusionInventory/package.nix @@ -96,10 +96,10 @@ perlPackages.buildPerlPackage rec { outputs = [ "out" ]; - meta = with lib; { + meta = { homepage = "https://www.fusioninventory.org"; description = "FusionInventory unified Agent for UNIX, Linux, Windows and MacOSX"; license = lib.licenses.gpl2Only; - maintainers = [ maintainers.phile314 ]; + maintainers = [ lib.maintainers.phile314 ]; }; } diff --git a/pkgs/by-name/fu/fusuma/package.nix b/pkgs/by-name/fu/fusuma/package.nix index c6fa7961e736..99af50ed92be 100644 --- a/pkgs/by-name/fu/fusuma/package.nix +++ b/pkgs/by-name/fu/fusuma/package.nix @@ -26,13 +26,13 @@ bundlerApp rec { passthru.updateScript = bundlerUpdateScript pname; - meta = with lib; { + meta = { description = "Multitouch gestures with libinput driver on X11, Linux"; homepage = "https://github.com/iberianpig/fusuma"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fu/fuzzel/package.nix b/pkgs/by-name/fu/fuzzel/package.nix index d21a326e4951..c627c93f5fa9 100644 --- a/pkgs/by-name/fu/fuzzel/package.nix +++ b/pkgs/by-name/fu/fuzzel/package.nix @@ -69,19 +69,19 @@ stdenv.mkDerivation (finalAttrs: { (lib.mesonOption "svg-backend" (if svgSupport then svgBackend else "none")) ]; - meta = with lib; { + meta = { changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${finalAttrs.version}"; description = "Wayland-native application launcher, similar to rofi’s drun mode"; homepage = "https://codeberg.org/dnkl/fuzzel"; - license = with licenses; [ + license = with lib.licenses; [ mit zlib ]; mainProgram = "fuzzel"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fionera rodrgz ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/by-name/fu/fuzzylite/package.nix b/pkgs/by-name/fu/fuzzylite/package.nix index ac8d5ab4b268..7e8393369001 100644 --- a/pkgs/by-name/fu/fuzzylite/package.nix +++ b/pkgs/by-name/fu/fuzzylite/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { # use unstable as latest release does not yet support cmake-4 passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Fuzzy logic control library in C++"; mainProgram = "fuzzylite"; homepage = "https://fuzzylite.com"; changelog = "https://github.com/fuzzylite/fuzzylite/${src.rev}/release/CHANGELOG"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fv/fverb/package.nix b/pkgs/by-name/fv/fverb/package.nix index 101c171b07d9..63495ca19594 100644 --- a/pkgs/by-name/fv/fverb/package.nix +++ b/pkgs/by-name/fv/fverb/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation { patchShebangs ./dpf/utils/generate-ttl.sh ''; - meta = with lib; { + meta = { description = "Stereo variant of the reverberator by Jon Dattorro, for lv2"; homepage = "https://github.com/jpcima/fverb"; - license = licenses.bsd2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; # clang++: error: unsupported option '-mfpu=' for target 'arm64-apple-darwin' # clang++: error: unsupported option '-mfloat-abi=' for target 'arm64-apple-darwin' broken = stdenv.isDarwin && stdenv.isAarch64; diff --git a/pkgs/by-name/fv/fvwm2/package.nix b/pkgs/by-name/fv/fvwm2/package.nix index 515e156b02da..62413aaa4952 100644 --- a/pkgs/by-name/fv/fvwm2/package.nix +++ b/pkgs/by-name/fv/fvwm2/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://fvwm.org"; changelog = "https://github.com/fvwmorg/fvwm/releases/tag/${src.rev}"; description = "Multiple large virtual desktop window manager"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ edanaher ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ edanaher ]; }; } diff --git a/pkgs/by-name/fw/fw-ectool/package.nix b/pkgs/by-name/fw/fw-ectool/package.nix index fd5bc5e87814..7857fe8bc571 100644 --- a/pkgs/by-name/fw/fw-ectool/package.nix +++ b/pkgs/by-name/fw/fw-ectool/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "EC-Tool adjusted for usage with framework embedded controller"; homepage = "https://gitlab.howett.net/DHowett/ectool"; - license = licenses.bsd3; - maintainers = [ maintainers.mkg20001 ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.mkg20001 ]; + platforms = lib.platforms.linux; mainProgram = "ectool"; }; } diff --git a/pkgs/by-name/fw/fw/package.nix b/pkgs/by-name/fw/fw/package.nix index 4dfbb0f25089..4c93ff301e35 100644 --- a/pkgs/by-name/fw/fw/package.nix +++ b/pkgs/by-name/fw/fw/package.nix @@ -35,10 +35,10 @@ rustPlatform.buildRustPackage rec { OPENSSL_NO_VENDOR = true; }; - meta = with lib; { + meta = { description = "Workspace productivity booster"; homepage = "https://github.com/brocode/fw"; - license = licenses.wtfpl; + license = lib.licenses.wtfpl; maintainers = [ ]; mainProgram = "fw"; }; diff --git a/pkgs/by-name/fw/fwanalyzer/package.nix b/pkgs/by-name/fw/fwanalyzer/package.nix index cb15acaf6b3f..1fc6f07a226e 100644 --- a/pkgs/by-name/fw/fwanalyzer/package.nix +++ b/pkgs/by-name/fw/fwanalyzer/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { # The tests requires an additional setup (unpacking images, etc.) doCheck = false; - meta = with lib; { + meta = { description = "Tool to analyze filesystem images"; homepage = "https://github.com/cruise-automation/fwanalyzer"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "fwanalyzer"; }; } diff --git a/pkgs/by-name/fw/fwknop/package.nix b/pkgs/by-name/fw/fwknop/package.nix index 4ea869701803..0631d7ef0c5b 100644 --- a/pkgs/by-name/fw/fwknop/package.nix +++ b/pkgs/by-name/fw/fwknop/package.nix @@ -64,15 +64,15 @@ stdenv.mkDerivation rec { "wknopddir = $out/etc/fwknop" ''; - meta = with lib; { + meta = { description = "Single Packet Authorization (and Port Knocking) server/client"; longDescription = '' fwknop stands for the "FireWall KNock OPerator", and implements an authorization scheme called Single Packet Authorization (SPA). ''; homepage = "https://www.cipherdyne.org/fwknop/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fw/fwup/package.nix b/pkgs/by-name/fw/fwup/package.nix index 4a4c1419647b..b4826588d27e 100644 --- a/pkgs/by-name/fw/fwup/package.nix +++ b/pkgs/by-name/fw/fwup/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Configurable embedded Linux firmware update creator and runner"; homepage = "https://github.com/fhunleth/fwup"; - license = licenses.asl20; - maintainers = [ maintainers.georgewhewell ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.georgewhewell ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fw/fwupd-efi/package.nix b/pkgs/by-name/fw/fwupd-efi/package.nix index 1f30eec83957..a828b1ed60eb 100644 --- a/pkgs/by-name/fw/fwupd-efi/package.nix +++ b/pkgs/by-name/fw/fwupd-efi/package.nix @@ -51,10 +51,10 @@ stdenv.mkDerivation (finalAttrs: { "-Dgenpeimg=disabled" ]; - meta = with lib; { + meta = { homepage = "https://fwupd.org/"; maintainers = [ ]; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fx/fxlinuxprint/package.nix b/pkgs/by-name/fx/fxlinuxprint/package.nix index 705a4beeba23..be2b75c669fa 100644 --- a/pkgs/by-name/fx/fxlinuxprint/package.nix +++ b/pkgs/by-name/fx/fxlinuxprint/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { mv usr/share/ppd/FujiXerox/* $out/share/cups/model ''; - meta = with lib; { + meta = { description = "Fuji Xerox Linux Printer Driver"; longDescription = '' DocuPrint P365/368 d @@ -57,9 +57,9 @@ stdenv.mkDerivation rec { DocuPrint 3205 d/3208 d/3505 d/3508 d/4405 d/4408 d ''; homepage = "https://onlinesupport.fujixerox.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fx/fxlinuxprintutil/package.nix b/pkgs/by-name/fx/fxlinuxprintutil/package.nix index f95b39c153e5..6db57516e01d 100644 --- a/pkgs/by-name/fx/fxlinuxprintutil/package.nix +++ b/pkgs/by-name/fx/fxlinuxprintutil/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Optional configuration tool for fxlinuxprint"; homepage = "https://onlinesupport.fujixerox.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fx/fxload/package.nix b/pkgs/by-name/fx/fxload/package.nix index 7065a161e835..9ca27c3624ef 100644 --- a/pkgs/by-name/fx/fxload/package.nix +++ b/pkgs/by-name/fx/fxload/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { passthru.libusb = libusb1.override { withExamples = true; }; - meta = with lib; { + meta = { homepage = "https://github.com/libusb/libusb"; description = "Tool to upload firmware to into an21, fx, fx2, fx2lp and fx3 ez-usb devices"; mainProgram = "fxload"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ logger ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ logger ]; }; } diff --git a/pkgs/by-name/fy/fyne/package.nix b/pkgs/by-name/fy/fyne/package.nix index 5f41b959473e..b014cc4fb22b 100644 --- a/pkgs/by-name/fy/fyne/package.nix +++ b/pkgs/by-name/fy/fyne/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://fyne.io"; description = "Cross platform GUI toolkit in Go"; - license = licenses.bsd3; - maintainers = with maintainers; [ greg ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ greg ]; mainProgram = "fyne"; }; } diff --git a/pkgs/by-name/fy/fypp/package.nix b/pkgs/by-name/fy/fypp/package.nix index c4716e15bdb5..d8c1fbe92ac3 100644 --- a/pkgs/by-name/fy/fypp/package.nix +++ b/pkgs/by-name/fy/fypp/package.nix @@ -18,11 +18,11 @@ python3.pkgs.buildPythonApplication rec { nativeBuildInputs = [ python3.pkgs.setuptools ]; - meta = with lib; { + meta = { description = "Python powered Fortran preprocessor"; mainProgram = "fypp"; homepage = "https://github.com/aradi/fypp"; - license = licenses.gpl3Only; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/fz/fzf-git-sh/package.nix b/pkgs/by-name/fz/fzf-git-sh/package.nix index 3395c14ed862..d2ebcca7cc5f 100644 --- a/pkgs/by-name/fz/fzf-git-sh/package.nix +++ b/pkgs/by-name/fz/fzf-git-sh/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/junegunn/fzf-git.sh"; description = "Bash, zsh and fish key bindings for Git objects, powered by fzf"; - license = licenses.mit; - maintainers = with maintainers; [ deejayem ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ deejayem ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fz/fzf-obc/package.nix b/pkgs/by-name/fz/fzf-obc/package.nix index eaecae3adce8..573e11cac8a2 100644 --- a/pkgs/by-name/fz/fzf-obc/package.nix +++ b/pkgs/by-name/fz/fzf-obc/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { install -m644 plugins/gradle/* $out/share/fzf-obc/plugins/gradle ''; - meta = with lib; { + meta = { homepage = "https://fzf-obc.readthedocs.io"; description = "Completion script adding fzf over all know bash completion functions"; - license = licenses.unfree; - maintainers = with maintainers; [ loicreynier ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ loicreynier ]; }; } diff --git a/pkgs/by-name/fz/fzf-zsh/package.nix b/pkgs/by-name/fz/fzf-zsh/package.nix index 1db98476f0eb..0982dfe30f85 100644 --- a/pkgs/by-name/fz/fzf-zsh/package.nix +++ b/pkgs/by-name/fz/fzf-zsh/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { install -Dm0644 fzf-zsh.plugin.zsh $out/share/zsh/plugins/fzf-zsh/fzf-zsh.plugin.zsh ''; - meta = with lib; { + meta = { homepage = "https://github.com/wyntau/fzf-zsh"; description = "Wrap fzf to use in oh-my-zsh"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fz/fzy/package.nix b/pkgs/by-name/fz/fzy/package.nix index 78cdea800f9f..c1046a49df6b 100644 --- a/pkgs/by-name/fz/fzy/package.nix +++ b/pkgs/by-name/fz/fzy/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Better fuzzy finder"; homepage = "https://github.com/jhawthorn/fzy"; - license = licenses.mit; - maintainers = with maintainers; [ dywedir ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dywedir ]; + platforms = lib.platforms.all; mainProgram = "fzy"; }; } diff --git a/pkgs/by-name/g-/g-wrap/package.nix b/pkgs/by-name/g-/g-wrap/package.nix index 9c173dde0960..f31445c28561 100644 --- a/pkgs/by-name/g-/g-wrap/package.nix +++ b/pkgs/by-name/g-/g-wrap/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Wrapper generator for Guile"; mainProgram = "g-wrap-config"; longDescription = '' @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { wrappers for C functions. ''; homepage = "https://www.nongnu.org/g-wrap/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/g2/g203-led/package.nix b/pkgs/by-name/g2/g203-led/package.nix index dfa991685854..8f4b74b8bf6a 100644 --- a/pkgs/by-name/g2/g203-led/package.nix +++ b/pkgs/by-name/g2/g203-led/package.nix @@ -32,17 +32,17 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Logitech G203 Prodigy / G203 LightSync Mouse LED control for Linux"; longDescription = '' Allows you to control the LED lighting of your G203 Prodigy or G203 LightSync Mouse programmatically. Inspired by and based on g810-led. ''; - license = licenses.mit; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ r-burns ]; homepage = "https://github.com/smasty/g203-led"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "g203-led"; }; } diff --git a/pkgs/by-name/g3/g3kb-switch/package.nix b/pkgs/by-name/g3/g3kb-switch/package.nix index d6851ceb9004..73ad6649e8a5 100644 --- a/pkgs/by-name/g3/g3kb-switch/package.nix +++ b/pkgs/by-name/g3/g3kb-switch/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation rec { glib ]; - meta = with lib; { + meta = { homepage = "https://github.com/lyokha/g3kb-switch"; changelog = "https://github.com/lyokha/g3kb-switch/releases/tag/${src.rev}"; description = "CLI keyboard layout switcher for GNOME Shell"; mainProgram = "g3kb-switch"; - license = licenses.bsd2; - maintainers = with maintainers; [ Freed-Wu ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ Freed-Wu ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/g8/g810-led/package.nix b/pkgs/by-name/g8/g810-led/package.nix index 07232b3e6f46..c626e7ad3eb5 100644 --- a/pkgs/by-name/g8/g810-led/package.nix +++ b/pkgs/by-name/g8/g810-led/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux LED controller for some Logitech G Keyboards"; homepage = "https://github.com/MatMoul/g810-led"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/g9/g933-utils/package.nix b/pkgs/by-name/g9/g933-utils/package.nix index abeb32068336..56105577a3cf 100644 --- a/pkgs/by-name/g9/g933-utils/package.nix +++ b/pkgs/by-name/g9/g933-utils/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage { nativeBuildInputs = [ pkg-config ]; buildInputs = [ udev ]; - meta = with lib; { + meta = { description = "Application to configure Logitech wireless G933/G533 headsets"; homepage = "https://github.com/ashkitten/g933-utils"; - license = licenses.mit; - maintainers = with maintainers; [ seqizz ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seqizz ]; + platforms = lib.platforms.linux; mainProgram = "g933-utils"; }; } diff --git a/pkgs/by-name/ga/gabutdm/package.nix b/pkgs/by-name/ga/gabutdm/package.nix index b3fe4998a023..d841db14aef9 100644 --- a/pkgs/by-name/ga/gabutdm/package.nix +++ b/pkgs/by-name/ga/gabutdm/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Simple and fast download manager"; homepage = "https://github.com/gabutakut/gabutdm"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; mainProgram = "com.github.gabutakut.gabutdm"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ga/galah/package.nix b/pkgs/by-name/ga/galah/package.nix index 92b6aa0b80c8..edcb18ba1e4d 100644 --- a/pkgs/by-name/ga/galah/package.nix +++ b/pkgs/by-name/ga/galah/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "LLM-powered web honeypot using the OpenAI API"; homepage = "https://github.com/0x4D31/galah"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "galah"; }; } diff --git a/pkgs/by-name/ga/galatia-sil/package.nix b/pkgs/by-name/ga/galatia-sil/package.nix index f686c6023b1a..b153619ce262 100644 --- a/pkgs/by-name/ga/galatia-sil/package.nix +++ b/pkgs/by-name/ga/galatia-sil/package.nix @@ -22,14 +22,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/galatia"; description = "Font designed to support Biblical Polytonic Greek"; longDescription = '' Galatia SIL, designed to support Biblical Polytonic Greek, is a Unicode 3.1 font released under the SIL Open Font License. The font supports precomposed characters rather than decomposed characters. Thus, you must use a keyboard that outputs NFC encoding (precomposed). ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.kmein ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.kmein ]; }; } diff --git a/pkgs/by-name/ga/galen/package.nix b/pkgs/by-name/ga/galen/package.nix index 4f604e82418f..da7484e915a2 100644 --- a/pkgs/by-name/ga/galen/package.nix +++ b/pkgs/by-name/ga/galen/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { cp galen.jar $out/bin ''; - meta = with lib; { + meta = { homepage = "https://galenframework.com"; description = "Automated layout testing for websites"; mainProgram = "galen"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ga/galerio/package.nix b/pkgs/by-name/ga/galerio/package.nix index 82daaf168aec..2513f582f6b0 100644 --- a/pkgs/by-name/ga/galerio/package.nix +++ b/pkgs/by-name/ga/galerio/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jXUAjK/fqBaXaehcbFZU02w9/MTHluqKjtWGoAJa7ks="; - meta = with lib; { + meta = { description = "Simple generator for self-contained HTML flexbox galleries"; homepage = "https://github.com/dbrgn/galerio"; - maintainers = with maintainers; [ dbrgn ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ dbrgn ]; + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/ga/galleta/package.nix b/pkgs/by-name/ga/galleta/package.nix index 88d584b5d101..08986fc1cec4 100644 --- a/pkgs/by-name/ga/galleta/package.nix +++ b/pkgs/by-name/ga/galleta/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Examine the contents of the IE's cookie files for forensic purposes"; mainProgram = "galleta"; homepage = "https://sourceforge.net/projects/odessa/files/Galleta"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/ga/gama/package.nix b/pkgs/by-name/ga/gama/package.nix index 8c98729e5065..3e9c7df5a84d 100644 --- a/pkgs/by-name/ga/gama/package.nix +++ b/pkgs/by-name/ga/gama/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { ]; doCheck = true; - meta = with lib; { + meta = { description = "Tools for adjustment of geodetic networks"; homepage = "https://www.gnu.org/software/gama/"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ga/gambit-chess/package.nix b/pkgs/by-name/ga/gambit-chess/package.nix index 87e0d5d8278c..cfaae98aea87 100644 --- a/pkgs/by-name/ga/gambit-chess/package.nix +++ b/pkgs/by-name/ga/gambit-chess/package.nix @@ -46,12 +46,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Play chess in your terminal"; mainProgram = "gambit"; homepage = "https://github.com/maaslalani/gambit"; changelog = "https://github.com/maaslalani/gambit/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ga/gamehub/package.nix b/pkgs/by-name/ga/gamehub/package.nix index af8f214cbc0c..0cdae05284f4 100644 --- a/pkgs/by-name/ga/gamehub/package.nix +++ b/pkgs/by-name/ga/gamehub/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { # webkitgtk_4_0 ]; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; homepage = "https://tkashkin.github.io/projects/gamehub"; @@ -63,8 +63,8 @@ stdenv.mkDerivation rec { your games from different platforms into one program to make it easier for you to manage your games. ''; - maintainers = with maintainers; [ pasqui23 ]; - license = with licenses; [ gpl3Only ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ pasqui23 ]; + license = with lib.licenses; [ gpl3Only ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ga/gamepad-tool/package.nix b/pkgs/by-name/ga/gamepad-tool/package.nix index c436f9e79a4c..1f092fdc5b7b 100644 --- a/pkgs/by-name/ga/gamepad-tool/package.nix +++ b/pkgs/by-name/ga/gamepad-tool/package.nix @@ -42,12 +42,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple GUI tool to create/modify gamepad mappings for games that use SDL2 Game Controller API"; homepage = "https://generalarcade.com/gamepadtool/"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ gador ]; + maintainers = with lib.maintainers; [ gador ]; mainProgram = "gamepad-tool"; }; }) diff --git a/pkgs/by-name/ga/gamja/package.nix b/pkgs/by-name/ga/gamja/package.nix index e4eae19f469b..891fa8a9a613 100644 --- a/pkgs/by-name/ga/gamja/package.nix +++ b/pkgs/by-name/ga/gamja/package.nix @@ -31,11 +31,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple IRC web client"; homepage = "https://codeberg.org/emersion/gamja"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ motiejus apfelkuchen6 ]; diff --git a/pkgs/by-name/ga/gammu/package.nix b/pkgs/by-name/ga/gammu/package.nix index 5f820b0c2469..6806cf3a58a3 100644 --- a/pkgs/by-name/ga/gammu/package.nix +++ b/pkgs/by-name/ga/gammu/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { ] ++ lib.optionals postgresSupport [ libpq ]; - meta = with lib; { + meta = { homepage = "https://wammu.eu/gammu/"; description = "Command line utility and library to control mobile phones"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ga/gandom-fonts/package.nix b/pkgs/by-name/ga/gandom-fonts/package.nix index 13c9fe1b40ab..713426f130e7 100644 --- a/pkgs/by-name/ga/gandom-fonts/package.nix +++ b/pkgs/by-name/ga/gandom-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/gandom-font"; description = "Persian (Farsi) Font - فونت (قلم) فارسی گندم"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ga/ganttproject-bin/package.nix b/pkgs/by-name/ga/ganttproject-bin/package.nix index b0de72844856..c3a566812da0 100644 --- a/pkgs/by-name/ga/ganttproject-bin/package.nix +++ b/pkgs/by-name/ga/ganttproject-bin/package.nix @@ -56,14 +56,14 @@ stdenv.mkDerivation rec { cp -rv "${desktopItem}/share/applications" "$out/share" ''; - meta = with lib; { + meta = { description = "Project scheduling and management"; homepage = "https://www.ganttproject.biz/"; downloadPage = "https://www.ganttproject.biz/download"; # GanttProject itself is GPL3+. All bundled libraries are declared # ‘GPL3-compatible’. See ${downloadPage} for detailed information. - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "ganttproject"; }; } diff --git a/pkgs/by-name/ga/gap/package.nix b/pkgs/by-name/ga/gap/package.nix index 4de64b7a4c7f..df79d66c0feb 100644 --- a/pkgs/by-name/ga/gap/package.nix +++ b/pkgs/by-name/ga/gap/package.nix @@ -147,18 +147,18 @@ stdenv.mkDerivation rec { rm -rf pkg ''; - meta = with lib; { + meta = { description = "Computational discrete algebra system"; # We are also grateful to ChrisJefferson for previous work on the package, # and to ChrisJefferson and fingolfin for help with GAP-related questions # from the upstream point of view. - teams = [ teams.sage ]; - platforms = platforms.all; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.all; # keeping all packages increases the package size considerably, which is # why a local build is preferable in that situation. The timeframe is # reasonable and that way the binary cache doesn't get overloaded. hydraPlatforms = lib.optionals (!keepAllPackages) meta.platforms; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://www.gap-system.org"; }; } diff --git a/pkgs/by-name/ga/gapless/package.nix b/pkgs/by-name/ga/gapless/package.nix index 5f12d97da954..8c223f5f92cd 100644 --- a/pkgs/by-name/ga/gapless/package.nix +++ b/pkgs/by-name/ga/gapless/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Beautiful, fast, fluent, light weight music player written in GTK4"; mainProgram = "g4music"; homepage = "https://gitlab.gnome.org/neithern/g4music"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ga/garamond-libre/package.nix b/pkgs/by-name/ga/garamond-libre/package.nix index 8093b0466d26..8f365e65b53b 100644 --- a/pkgs/by-name/ga/garamond-libre/package.nix +++ b/pkgs/by-name/ga/garamond-libre/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/dbenjaminmiller/garamond-libre"; description = "Garamond Libre font family"; maintainers = [ ]; - license = licenses.x11; - platforms = platforms.all; + license = lib.licenses.x11; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ga/gargoyle/package.nix b/pkgs/by-name/ga/gargoyle/package.nix index 986b901fce51..facbb232f59c 100644 --- a/pkgs/by-name/ga/gargoyle/package.nix +++ b/pkgs/by-name/ga/gargoyle/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation rec { (lib.cmakeBool "WITH_MAGNETIC" (!stdenv.hostPlatform.isDarwin)) ]; - meta = with lib; { + meta = { homepage = "http://ccxvii.net/gargoyle/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "Interactive fiction interpreter GUI"; mainProgram = "gargoyle"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ga/gash-utils/package.nix b/pkgs/by-name/ga/gash-utils/package.nix index 0719eb8aa682..9b26efd3a34d 100644 --- a/pkgs/by-name/ga/gash-utils/package.nix +++ b/pkgs/by-name/ga/gash-utils/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "Core POSIX utilities written in Guile Scheme"; homepage = "https://savannah.nongnu.org/projects/gash/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ga/gash/package.nix b/pkgs/by-name/ga/gash/package.nix index bd2eb12289f3..e8b7baf99ec0 100644 --- a/pkgs/by-name/ga/gash/package.nix +++ b/pkgs/by-name/ga/gash/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { guile ]; - meta = with lib; { + meta = { description = "POSIX-compatible shell written in Guile Scheme"; mainProgram = "gash"; homepage = "https://savannah.nongnu.org/projects/gash/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ga/gat/package.nix b/pkgs/by-name/ga/gat/package.nix index b4a27a6e997c..2e9f95dc1541 100644 --- a/pkgs/by-name/ga/gat/package.nix +++ b/pkgs/by-name/ga/gat/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X github.com/koki-develop/gat/cmd.version=v${version}" ]; - meta = with lib; { + meta = { description = "Cat alternative written in Go"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/koki-develop/gat"; - maintainers = with maintainers; [ themaxmur ]; + maintainers = with lib.maintainers; [ themaxmur ]; mainProgram = "gat"; }; } diff --git a/pkgs/by-name/ga/gatekeeper/package.nix b/pkgs/by-name/ga/gatekeeper/package.nix index 7446bc48196f..c6f041d2e2c5 100644 --- a/pkgs/by-name/ga/gatekeeper/package.nix +++ b/pkgs/by-name/ga/gatekeeper/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { --zsh <($out/bin/gator completion zsh) ''; - meta = with lib; { + meta = { description = "Policy Controller for Kubernetes"; mainProgram = "gator"; homepage = "https://github.com/open-policy-agent/gatekeeper"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/ga/gatk/package.nix b/pkgs/by-name/ga/gatk/package.nix index 74a99dd6250c..b343f9fb6711 100644 --- a/pkgs/by-name/ga/gatk/package.nix +++ b/pkgs/by-name/ga/gatk/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/gatk --prefix PATH : ${lib.makeBinPath [ jre ]} ''; - meta = with lib; { + meta = { homepage = "https://gatk.broadinstitute.org/hc/en-us"; description = "Wide variety of tools with a primary focus on variant discovery and genotyping"; - license = licenses.asl20; + license = lib.licenses.asl20; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ apraga ]; + maintainers = with lib.maintainers; [ apraga ]; longDescription = '' The GATK is the industry standard for identifying SNPs and indels in germline DNA and RNAseq data. Its scope is now expanding to include somatic short variant diff --git a/pkgs/by-name/ga/gatling/package.nix b/pkgs/by-name/ga/gatling/package.nix index 72edeea83727..6bcb3eb735a5 100644 --- a/pkgs/by-name/ga/gatling/package.nix +++ b/pkgs/by-name/ga/gatling/package.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { make gatling ''; - meta = with lib; { + meta = { description = "High performance web server"; homepage = "http://www.fefe.de/gatling/"; license = lib.licenses.gpl2Only; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ga/gatus/package.nix b/pkgs/by-name/ga/gatus/package.nix index 43efdfa76d7b..b605edb3ab7b 100644 --- a/pkgs/by-name/ga/gatus/package.nix +++ b/pkgs/by-name/ga/gatus/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { inherit (nixosTests) gatus; }; - meta = with lib; { + meta = { description = "Automated developer-oriented status page"; homepage = "https://gatus.io"; - license = licenses.asl20; - maintainers = with maintainers; [ undefined-moe ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ undefined-moe ]; mainProgram = "gatus"; }; } diff --git a/pkgs/by-name/ga/gau/package.nix b/pkgs/by-name/ga/gau/package.nix index 575ba3833664..e278acf2bcc3 100644 --- a/pkgs/by-name/ga/gau/package.nix +++ b/pkgs/by-name/ga/gau/package.nix @@ -22,15 +22,15 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Tool to fetch known URLs"; longDescription = '' getallurls (gau) fetches known URLs from various sources for any given domain. ''; homepage = "https://github.com/lc/gau"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "gau"; }; } diff --git a/pkgs/by-name/ga/gauge-unwrapped/package.nix b/pkgs/by-name/ga/gauge-unwrapped/package.nix index f9eae3df486d..f5257e018339 100644 --- a/pkgs/by-name/ga/gauge-unwrapped/package.nix +++ b/pkgs/by-name/ga/gauge-unwrapped/package.nix @@ -28,12 +28,12 @@ buildGoModule rec { "man" ]; - meta = with lib; { + meta = { description = "Light weight cross-platform test automation"; mainProgram = "gauge"; homepage = "https://gauge.org"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vdemeester marie ]; diff --git a/pkgs/by-name/ga/gavrasm/package.nix b/pkgs/by-name/ga/gavrasm/package.nix index 1894273f7a93..29510fb80be6 100644 --- a/pkgs/by-name/ga/gavrasm/package.nix +++ b/pkgs/by-name/ga/gavrasm/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.avr-asm-tutorial.net/gavrasm/"; description = "AVR Assembler for ATMEL AVR-Processors"; - license = licenses.unfree; - maintainers = with maintainers; [ mafo ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mafo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ga/gaw/package.nix b/pkgs/by-name/ga/gaw/package.nix index 91a0c4d43b4b..a4bab64143d5 100644 --- a/pkgs/by-name/ga/gaw/package.nix +++ b/pkgs/by-name/ga/gaw/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk3 ]; - meta = with lib; { + meta = { description = "Gtk Analog Wave viewer"; mainProgram = "gaw"; longDescription = '' @@ -88,8 +88,8 @@ stdenv.mkDerivation rec { direct tcp/ip connection or directly from the sound card. ''; homepage = "https://www.rvq.fr/linux/gaw.php"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fbeffa ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fbeffa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ga/gay/package.nix b/pkgs/by-name/ga/gay/package.nix index b66c1067d1a2..02d5a5e17b98 100644 --- a/pkgs/by-name/ga/gay/package.nix +++ b/pkgs/by-name/ga/gay/package.nix @@ -15,11 +15,11 @@ python3Packages.buildPythonApplication rec { build-system = [ python3Packages.setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/ms-jpq/gay"; description = "Colour your text / terminal to be more gay"; - license = licenses.mit; - maintainers = with maintainers; [ CodeLongAndProsper90 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ CodeLongAndProsper90 ]; mainProgram = "gay"; }; } diff --git a/pkgs/by-name/gb/gb-backup/package.nix b/pkgs/by-name/gb/gb-backup/package.nix index 60cf4f402937..d543c8e68fec 100644 --- a/pkgs/by-name/gb/gb-backup/package.nix +++ b/pkgs/by-name/gb/gb-backup/package.nix @@ -27,10 +27,10 @@ buildGoModule { wrapProgram $out/bin/gb --prefix PATH : ${lib.makeBinPath [ lepton ]} ''; - meta = with lib; { + meta = { description = "Gamer Backup, a super opinionated cloud backup system"; homepage = "https://github.com/leijurv/gb"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ babbaj ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ babbaj ]; }; } diff --git a/pkgs/by-name/gb/gbar/package.nix b/pkgs/by-name/gb/gbar/package.nix index 24bfa8fbed0f..675e47763045 100644 --- a/pkgs/by-name/gb/gbar/package.nix +++ b/pkgs/by-name/gb/gbar/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { libdbusmenu-gtk3 ]; - meta = with lib; { + meta = { description = "Blazingly fast status bar written with GTK"; homepage = "https://github.com/scorpion-26/gBar"; - license = licenses.mit; - maintainers = with maintainers; [ ocfox ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ocfox ]; mainProgram = "gBar"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gb/gbenchmark/package.nix b/pkgs/by-name/gb/gbenchmark/package.nix index f029c4e0603a..495a3d5f6081 100644 --- a/pkgs/by-name/gb/gbenchmark/package.nix +++ b/pkgs/by-name/gb/gbenchmark/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { inherit prometheus-cpp; }; - meta = with lib; { + meta = { description = "Microbenchmark support library"; homepage = "https://github.com/google/benchmark"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.freebsd; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gb/gbforth/package.nix b/pkgs/by-name/gb/gbforth/package.nix index 4ad496b1cbc2..31a2f92e6152 100644 --- a/pkgs/by-name/gb/gbforth/package.nix +++ b/pkgs/by-name/gb/gbforth/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://gbforth.org/"; description = "Forth-based Game Boy development kit"; mainProgram = "gbforth"; @@ -58,8 +58,8 @@ stdenv.mkDerivation { It features a Forth-based assembler, a cross-compiler with support for lazy code generation and a library of useful words. ''; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/gc/gcab/package.nix b/pkgs/by-name/gc/gcab/package.nix index 4075bba3616b..ef0fd4e45a4e 100644 --- a/pkgs/by-name/gc/gcab/package.nix +++ b/pkgs/by-name/gc/gcab/package.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GObject library to create cabinet files"; mainProgram = "gcab"; homepage = "https://gitlab.gnome.org/GNOME/gcab"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gc/gcc-arm-embedded-13/package.nix b/pkgs/by-name/gc/gcc-arm-embedded-13/package.nix index 7cca0d7ed5d5..7ca004b43a97 100644 --- a/pkgs/by-name/gc/gcc-arm-embedded-13/package.nix +++ b/pkgs/by-name/gc/gcc-arm-embedded-13/package.nix @@ -86,10 +86,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors"; homepage = "https://developer.arm.com/open-source/gnu-toolchain/gnu-rm"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 gpl2 gpl3 @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { lgpl3 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ prusnak prtzl ]; @@ -107,6 +107,6 @@ stdenv.mkDerivation rec { "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/gc/gcc-arm-embedded-14/package.nix b/pkgs/by-name/gc/gcc-arm-embedded-14/package.nix index 2174e828a598..b7b1b6650635 100644 --- a/pkgs/by-name/gc/gcc-arm-embedded-14/package.nix +++ b/pkgs/by-name/gc/gcc-arm-embedded-14/package.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors"; homepage = "https://developer.arm.com/open-source/gnu-toolchain/gnu-rm"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 gpl2 gpl3 @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { lgpl3 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ prusnak prtzl ]; @@ -81,6 +81,6 @@ stdenv.mkDerivation rec { "aarch64-linux" "aarch64-darwin" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/gc/gcfflasher/package.nix b/pkgs/by-name/gc/gcfflasher/package.nix index f236a6624048..a8f8bd090570 100644 --- a/pkgs/by-name/gc/gcfflasher/package.nix +++ b/pkgs/by-name/gc/gcfflasher/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CFFlasher is the tool to program the firmware of dresden elektronik's Zigbee products"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/dresden-elektronik/gcfflasher"; - maintainers = with maintainers; [ fleaz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fleaz ]; + platforms = lib.platforms.all; mainProgram = "GCFFlasher"; }; } diff --git a/pkgs/by-name/gc/gci/package.nix b/pkgs/by-name/gc/gci/package.nix index 85df3c8ce586..5c4745120c6f 100644 --- a/pkgs/by-name/gc/gci/package.nix +++ b/pkgs/by-name/gc/gci/package.nix @@ -16,10 +16,10 @@ buildGo124Module rec { vendorHash = "sha256-NWVhuJAWwZ9EPLq/PY8nqqRXXPgahGdFNVqBTDvCnMw="; - meta = with lib; { + meta = { description = "Controls golang package import order and makes it always deterministic"; homepage = "https://github.com/daixiang0/gci"; - license = licenses.bsd3; - maintainers = with maintainers; [ krostar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ krostar ]; }; } diff --git a/pkgs/by-name/gc/gcolor3/package.nix b/pkgs/by-name/gc/gcolor3/package.nix index 848fc9784b51..65a3f2ad0eee 100644 --- a/pkgs/by-name/gc/gcolor3/package.nix +++ b/pkgs/by-name/gc/gcolor3/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { substituteInPlace src/gcolor3-color-selection.c --replace "libportal/portal-gtk3.h" "libportal-gtk3/portal-gtk3.h" ''; - meta = with lib; { + meta = { description = "Simple color chooser written in GTK3"; mainProgram = "gcolor3"; homepage = "https://gitlab.gnome.org/World/gcolor3"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gc/gcov2lcov/package.nix b/pkgs/by-name/gc/gcov2lcov/package.nix index 63c98769567b..93f68f53334a 100644 --- a/pkgs/by-name/gc/gcov2lcov/package.nix +++ b/pkgs/by-name/gc/gcov2lcov/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { # Some checks depend on looking up vcs root checkPhase = false; - meta = with lib; { + meta = { description = "Convert go coverage files to lcov format"; mainProgram = "gcov2lcov"; homepage = "https://github.com/jandelgado/gcov2lcov"; changelog = "https://github.com/jandelgado/gcov2lcov/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ meain ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ meain ]; }; } diff --git a/pkgs/by-name/gc/gcstar/package.nix b/pkgs/by-name/gc/gcstar/package.nix index b9638506c33c..df1288c7842f 100644 --- a/pkgs/by-name/gc/gcstar/package.nix +++ b/pkgs/by-name/gc/gcstar/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/gcstar --prefix PERL5LIB : $PERL5LIB ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/Kerenoc/GCstar"; description = "Manage your collections of movies, games, books, music and more"; mainProgram = "gcstar"; @@ -69,8 +69,8 @@ stdenv.mkDerivation rec { Detailed information on each item can be automatically retrieved from the internet and you can store additional data, such as the location or who you've lent it to. You may also search and filter your collections by many criteria. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dasj19 ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dasj19 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gd/gd/package.nix b/pkgs/by-name/gd/gd/package.nix index 7bc498ef1fdd..e313a94d3db0 100644 --- a/pkgs/by-name/gd/gd/package.nix +++ b/pkgs/by-name/gd/gd/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails 2 tests - meta = with lib; { + meta = { homepage = "https://libgd.github.io/"; description = "Dynamic image creation library"; - license = licenses.free; # some custom license - platforms = platforms.unix; + license = lib.licenses.free; # some custom license + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gd/gdal/package.nix b/pkgs/by-name/gd/gdal/package.nix index 0ae4be009a2d..97c48a74913c 100644 --- a/pkgs/by-name/gd/gdal/package.nix +++ b/pkgs/by-name/gd/gdal/package.nix @@ -319,16 +319,16 @@ stdenv.mkDerivation (finalAttrs: { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://github.com/OSGeo/gdal/blob/${finalAttrs.src.tag}/NEWS.md"; description = "Translator library for raster geospatial data formats"; homepage = "https://www.gdal.org/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marcweber dotlambda ]; - teams = [ teams.geospatial ]; - platforms = platforms.unix; + teams = [ lib.teams.geospatial ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gd/gdl/package.nix b/pkgs/by-name/gd/gdl/package.nix index 7303307baa49..7bb67952aaff 100644 --- a/pkgs/by-name/gd/gdl/package.nix +++ b/pkgs/by-name/gd/gdl/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Gnome docking library"; homepage = "https://developer.gnome.org/gdl/"; - teams = [ teams.gnome ]; - license = licenses.gpl2; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gd/gdlv/package.nix b/pkgs/by-name/gd/gdlv/package.nix index 2aeace32b8fe..47b52c5f5f6c 100644 --- a/pkgs/by-name/gd/gdlv/package.nix +++ b/pkgs/by-name/gd/gdlv/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; subPackages = "."; - meta = with lib; { + meta = { description = "GUI frontend for Delve"; mainProgram = "gdlv"; homepage = "https://github.com/aarzilli/gdlv"; - maintainers = with maintainers; [ mmlb ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ mmlb ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/gd/gdm/package.nix b/pkgs/by-name/gd/gdm/package.nix index 37d95214492d..d81cb58d5295 100644 --- a/pkgs/by-name/gd/gdm/package.nix +++ b/pkgs/by-name/gd/gdm/package.nix @@ -202,12 +202,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Program that manages graphical display servers and handles graphical user logins"; homepage = "https://gitlab.gnome.org/GNOME/gdm"; changelog = "https://gitlab.gnome.org/GNOME/gdm/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gd/gdmap/package.nix b/pkgs/by-name/gd/gdmap/package.nix index 8ee3c5342a04..37e26d4f4ada 100644 --- a/pkgs/by-name/gd/gdmap/package.nix +++ b/pkgs/by-name/gd/gdmap/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { gettext ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/sjohannes/gdmap"; description = "Tool to visualize disk space (GTK 3 port of Original)"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "gdmap"; }; } diff --git a/pkgs/by-name/gd/gdrive/package.nix b/pkgs/by-name/gd/gdrive/package.nix index 79da48c59a9c..79e0396f2068 100644 --- a/pkgs/by-name/gd/gdrive/package.nix +++ b/pkgs/by-name/gd/gdrive/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/prasmussen/gdrive"; description = "Command line utility for interacting with Google Drive"; - license = licenses.mit; - maintainers = [ maintainers.rzetterberg ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.rzetterberg ]; mainProgram = "gdrive"; }; } diff --git a/pkgs/by-name/gd/gdrive3/package.nix b/pkgs/by-name/gd/gdrive3/package.nix index d6f71b8ef83c..a07c8c2761db 100644 --- a/pkgs/by-name/gd/gdrive3/package.nix +++ b/pkgs/by-name/gd/gdrive3/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ZIswHJBV1uwrnSm5BmQgb8tVD1XQMTQXQ5DWvBj1WDk="; - meta = with lib; { + meta = { description = "Google Drive CLI Client"; homepage = "https://github.com/glotlabs/gdrive"; changelog = "https://github.com/glotlabs/gdrive/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "gdrive"; }; diff --git a/pkgs/by-name/gd/gdtoolkit_4/package.nix b/pkgs/by-name/gd/gdtoolkit_4/package.nix index 575ac5e55647..23eabade70f8 100644 --- a/pkgs/by-name/gd/gdtoolkit_4/package.nix +++ b/pkgs/by-name/gd/gdtoolkit_4/package.nix @@ -74,10 +74,10 @@ python.pkgs.buildPythonApplication rec { "gdtoolkit.parser" ]; - meta = with lib; { + meta = { description = "Independent set of tools for working with Godot's GDScript - parser, linter and formatter"; homepage = "https://github.com/Scony/godot-gdscript-toolkit"; - license = licenses.mit; - maintainers = with maintainers; [ squarepear ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ squarepear ]; }; } diff --git a/pkgs/by-name/ge/geant4/datasets.nix b/pkgs/by-name/ge/geant4/datasets.nix index 43f01a71b6ae..304c070a206c 100644 --- a/pkgs/by-name/ge/geant4/datasets.nix +++ b/pkgs/by-name/ge/geant4/datasets.nix @@ -35,11 +35,11 @@ let inherit envvar; setupHook = ./datasets-hook.sh; - meta = with lib; { + meta = { description = "Data files for the Geant4 toolkit"; homepage = "https://geant4.web.cern.ch/support/download"; - license = licenses.g4sl; - platforms = platforms.all; + license = lib.licenses.g4sl; + platforms = lib.platforms.all; }; }; in diff --git a/pkgs/by-name/ge/geant4/package.nix b/pkgs/by-name/ge/geant4/package.nix index 2e11d73ee03f..b8d7305f831c 100644 --- a/pkgs/by-name/ge/geant4/package.nix +++ b/pkgs/by-name/ge/geant4/package.nix @@ -137,7 +137,7 @@ stdenv.mkDerivation rec { source $out/nix-support/setup-hook ''; - meta = with lib; { + meta = { description = "Toolkit for the simulation of the passage of particles through matter"; longDescription = '' Geant4 is a toolkit for the simulation of the passage of particles through matter. @@ -145,11 +145,11 @@ stdenv.mkDerivation rec { The two main reference papers for Geant4 are published in Nuclear Instruments and Methods in Physics Research A 506 (2003) 250-303, and IEEE Transactions on Nuclear Science 53 No. 1 (2006) 270-278. ''; homepage = "https://www.geant4.org"; - license = licenses.g4sl; - maintainers = with maintainers; [ + license = lib.licenses.g4sl; + maintainers = with lib.maintainers; [ omnipotententity veprbl ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ge/gebaar-libinput/package.nix b/pkgs/by-name/ge/gebaar-libinput/package.nix index d41e6f1f0e88..524eead3ffec 100644 --- a/pkgs/by-name/ge/gebaar-libinput/package.nix +++ b/pkgs/by-name/ge/gebaar-libinput/package.nix @@ -38,13 +38,13 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Gebaar, A Super Simple WM Independent Touchpad Gesture Daemon for libinput"; mainProgram = "gebaard"; homepage = "https://github.com/Coffee2CodeNL/gebaar-libinput"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lovesegfault ]; }; diff --git a/pkgs/by-name/ge/geckodriver/package.nix b/pkgs/by-name/ge/geckodriver/package.nix index 3a45ef4bf2d9..e1556ca5a492 100644 --- a/pkgs/by-name/ge/geckodriver/package.nix +++ b/pkgs/by-name/ge/geckodriver/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { libiconv ]; - meta = with lib; { + meta = { description = "Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers"; homepage = "https://github.com/mozilla/geckodriver"; - license = licenses.mpl20; - maintainers = with maintainers; [ jraygauthier ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ jraygauthier ]; mainProgram = "geckodriver"; }; } diff --git a/pkgs/by-name/ge/gedit/package.nix b/pkgs/by-name/ge/gedit/package.nix index 829a33b64d09..e2839fb6aaa6 100644 --- a/pkgs/by-name/ge/gedit/package.nix +++ b/pkgs/by-name/ge/gedit/package.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { ignoredVersions = "(alpha|beta|rc).*"; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/gedit/gedit"; description = "Former GNOME text editor"; - maintainers = with maintainers; [ bobby285271 ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bobby285271 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "gedit"; }; } diff --git a/pkgs/by-name/ge/geek-life/package.nix b/pkgs/by-name/ge/geek-life/package.nix index b84c87fe18e0..69c8803f9261 100644 --- a/pkgs/by-name/ge/geek-life/package.nix +++ b/pkgs/by-name/ge/geek-life/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/app $out/bin/geek-life ''; - meta = with lib; { + meta = { homepage = "https://github.com/ajaxray/geek-life"; description = "Todo List / Task Manager for Geeks in command line"; - maintainers = with maintainers; [ noisersup ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ noisersup ]; + license = lib.licenses.mit; mainProgram = "geek-life"; }; } diff --git a/pkgs/by-name/ge/geeqie/package.nix b/pkgs/by-name/ge/geeqie/package.nix index 71d8bc8cc6f8..7cd1cff35bda 100644 --- a/pkgs/by-name/ge/geeqie/package.nix +++ b/pkgs/by-name/ge/geeqie/package.nix @@ -162,7 +162,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Lightweight GTK based image viewer"; mainProgram = "geeqie"; @@ -176,14 +176,14 @@ stdenv.mkDerivation rec { initially based on GQview. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.geeqie.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ pSub markus1189 ]; - platforms = platforms.gnu ++ platforms.linux; + platforms = lib.platforms.gnu ++ lib.platforms.linux; }; } diff --git a/pkgs/by-name/ge/gef/package.nix b/pkgs/by-name/ge/gef/package.nix index 8100e46bc53c..5f6a9c139fa2 100644 --- a/pkgs/by-name/ge/gef/package.nix +++ b/pkgs/by-name/ge/gef/package.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation rec { make test ''; - meta = with lib; { + meta = { description = "Modern experience for GDB with advanced debugging features for exploit developers & reverse engineers"; mainProgram = "gef"; homepage = "https://github.com/hugsy/gef"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ freax13 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ freax13 ]; }; } diff --git a/pkgs/by-name/ge/gelasio/package.nix b/pkgs/by-name/ge/gelasio/package.nix index bc3a91058b61..8d45450e2897 100644 --- a/pkgs/by-name/ge/gelasio/package.nix +++ b/pkgs/by-name/ge/gelasio/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Font which is metric-compatible with Microsoft's Georgia"; longDescription = '' Gelasio is an original typeface which is metrics compatible with Microsoft's @@ -34,8 +34,8 @@ stdenvNoCC.mkDerivation { Medium, medium Italic, SemiBold and SemiBold Italic have now been added as well. ''; homepage = "https://github.com/SorkinType/Gelasio"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ colemickens ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ colemickens ]; }; } diff --git a/pkgs/by-name/ge/gem/package.nix b/pkgs/by-name/ge/gem/package.nix index cb705728bf76..db8427984d0d 100644 --- a/pkgs/by-name/ge/gem/package.nix +++ b/pkgs/by-name/ge/gem/package.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation { libX11 ]; - meta = with lib; { + meta = { description = "Graphics Environment for Multimedia"; homepage = "http://puredata.info/downloads/gem"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raboof carlthome ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ge/gemget/package.nix b/pkgs/by-name/ge/gemget/package.nix index e5d465709cb2..b7b9ac811b6a 100644 --- a/pkgs/by-name/ge/gemget/package.nix +++ b/pkgs/by-name/ge/gemget/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-l8UwkFCCNUB5zyhlyu8YC++MhmcR6midnElCgdj50OU="; - meta = with lib; { + meta = { description = "Command line downloader for the Gemini protocol"; homepage = "https://github.com/makeworld-the-better-one/gemget"; - license = licenses.mit; - maintainers = with maintainers; [ amfl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ amfl ]; mainProgram = "gemget"; }; } diff --git a/pkgs/by-name/ge/gemrb/package.nix b/pkgs/by-name/ge/gemrb/package.nix index c5f8fb1516bf..9bfd3180426d 100644 --- a/pkgs/by-name/ge/gemrb/package.nix +++ b/pkgs/by-name/ge/gemrb/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation (finalAttrs: { # a bunch of tests fail in our sandbox doCheck = false; - meta = with lib; { + meta = { description = "Reimplementation of the Infinity Engine, used by games such as Baldur's Gate"; longDescription = '' GemRB (Game engine made with pre-Rendered Background) is a portable @@ -101,8 +101,8 @@ stdenv.mkDerivation (finalAttrs: { ruleset (Baldur's Gate and Icewind Dale series, Planescape: Torment). ''; homepage = "https://gemrb.org/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "gemrb"; }; }) diff --git a/pkgs/by-name/ge/gen-license/package.nix b/pkgs/by-name/ge/gen-license/package.nix index 3f1d6f437933..89a7392e2035 100644 --- a/pkgs/by-name/ge/gen-license/package.nix +++ b/pkgs/by-name/ge/gen-license/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-xXzUobB8RMyJOC4lKayE+6SKC7NW1dNWGUUH3i1TaW0="; - meta = with lib; { + meta = { description = "Create licenses for your projects right from your terminal"; mainProgram = "gen-license"; homepage = "https://github.com/nexxeln/license-generator"; - license = licenses.mit; - maintainers = [ maintainers.ryanccn ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ryanccn ]; }; } diff --git a/pkgs/by-name/ge/gen-oath-safe/package.nix b/pkgs/by-name/ge/gen-oath-safe/package.nix index 170f154959bd..170ba1500d37 100644 --- a/pkgs/by-name/ge/gen-oath-safe/package.nix +++ b/pkgs/by-name/ge/gen-oath-safe/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/gen-oath-safe \ --prefix PATH : ${path} ''; - meta = with lib; { + meta = { homepage = "https://github.com/mcepl/gen-oath-safe"; description = "Script for generating HOTP/TOTP keys (and QR code)"; - platforms = platforms.unix; - license = licenses.mit; - maintainers = [ maintainers.makefu ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.makefu ]; mainProgram = "gen-oath-safe"; }; diff --git a/pkgs/by-name/ge/gen6dns/package.nix b/pkgs/by-name/ge/gen6dns/package.nix index fc77acc5650b..0de728463b23 100644 --- a/pkgs/by-name/ge/gen6dns/package.nix +++ b/pkgs/by-name/ge/gen6dns/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { makeFlags = [ "INSTALL_DIR=$(out)/bin" ]; - meta = with lib; { + meta = { description = "Tool to generate static DNS records (AAAA and PTR) for hosts using Stateless Address Autoconfig (SLAAC)"; homepage = "https://www.hznet.de/tools.html#gen6dns"; - license = licenses.bsd3; - maintainers = with maintainers; [ majiir ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ majiir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ge/genann/package.nix b/pkgs/by-name/ge/genann/package.nix index ccccceee85ff..e785918de0b5 100644 --- a/pkgs/by-name/ge/genann/package.nix +++ b/pkgs/by-name/ge/genann/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { cp ./genann.{h,c} $out/include ''; - meta = with lib; { + meta = { homepage = "https://github.com/codeplea/genann"; description = "Simple neural network library in ANSI C"; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ge/gencfsm/package.nix b/pkgs/by-name/ge/gencfsm/package.nix index 45342fcbe823..780684a117ff 100644 --- a/pkgs/by-name/ge/gencfsm/package.nix +++ b/pkgs/by-name/ge/gencfsm/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.libertyzero.com/GEncfsM/"; downloadPage = "https://launchpad.net/gencfsm/"; description = "EncFS manager and mounter with GNOME3 integration"; mainProgram = "gnome-encfs-manager"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.spacefrogg ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.spacefrogg ]; }; } diff --git a/pkgs/by-name/ge/genext2fs/package.nix b/pkgs/by-name/ge/genext2fs/package.nix index 0a3fcaaa023b..9f4b7ad0d75f 100644 --- a/pkgs/by-name/ge/genext2fs/package.nix +++ b/pkgs/by-name/ge/genext2fs/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { ./test.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/bestouff/genext2fs"; description = "Tool to generate ext2 filesystem images without requiring root privileges"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "genext2fs"; }; } diff --git a/pkgs/by-name/ge/genimage/package.nix b/pkgs/by-name/ge/genimage/package.nix index 6adf17d90a90..f64494b37459 100644 --- a/pkgs/by-name/ge/genimage/package.nix +++ b/pkgs/by-name/ge/genimage/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation rec { cp -v README.rst "$docdir" ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://git.pengutronix.de/cgit/genimage"; description = "Generate filesystem images from directory trees"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "genimage"; }; } diff --git a/pkgs/by-name/ge/genpass/package.nix b/pkgs/by-name/ge/genpass/package.nix index 9c44ad320d4e..150a0de2905f 100644 --- a/pkgs/by-name/ge/genpass/package.nix +++ b/pkgs/by-name/ge/genpass/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { zlib ]; - meta = with lib; { + meta = { description = "Simple yet robust commandline random password generator"; mainProgram = "genpass"; homepage = "https://sr.ht/~cyplo/genpass/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ cyplo ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ cyplo ]; }; } diff --git a/pkgs/by-name/ge/genromfs/package.nix b/pkgs/by-name/ge/genromfs/package.nix index ea6b0abcca9b..5fd6704cb98d 100644 --- a/pkgs/by-name/ge/genromfs/package.nix +++ b/pkgs/by-name/ge/genromfs/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { "CC:=$(CC)" ]; - meta = with lib; { + meta = { homepage = "https://romfs.sourceforge.net/"; description = "Tool for creating romfs file system images"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ nickcao ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ nickcao ]; + platforms = lib.platforms.all; mainProgram = "genromfs"; }; } diff --git a/pkgs/by-name/ge/gensio/package.nix b/pkgs/by-name/ge/gensio/package.nix index 78d8247434ff..4051afc77f00 100644 --- a/pkgs/by-name/ge/gensio/package.nix +++ b/pkgs/by-name/ge/gensio/package.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ openssl ]; - meta = with lib; { + meta = { description = "General Stream I/O"; homepage = "https://sourceforge.net/projects/ser2net/"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ emantor sarcasticadmin ]; mainProgram = "gensiot"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ge/gentium-book-basic/package.nix b/pkgs/by-name/ge/gentium-book-basic/package.nix index c16887b53f31..efd11b2bf868 100644 --- a/pkgs/by-name/ge/gentium-book-basic/package.nix +++ b/pkgs/by-name/ge/gentium-book-basic/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/gentium/"; description = "High-quality typeface family for Latin, Cyrillic, and Greek"; maintainers = [ ]; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ge/genymotion/package.nix b/pkgs/by-name/ge/genymotion/package.nix index 9c852df18436..6be7b711824a 100644 --- a/pkgs/by-name/ge/genymotion/package.nix +++ b/pkgs/by-name/ge/genymotion/package.nix @@ -113,7 +113,7 @@ stdenv.mkDerivation rec { rm $out/libexec/genymotion/libxkbcommon* ''; - meta = with lib; { + meta = { description = "Fast and easy Android emulation"; longDescription = '' Genymotion is a relatively fast Android emulator which comes with @@ -121,9 +121,9 @@ stdenv.mkDerivation rec { suitable for application testing. ''; homepage = "https://www.genymotion.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.puffnfresh ]; + maintainers = [ lib.maintainers.puffnfresh ]; }; } diff --git a/pkgs/by-name/ge/geoclue2/package.nix b/pkgs/by-name/ge/geoclue2/package.nix index f3f0d0f49d42..989b40c5ce9f 100644 --- a/pkgs/by-name/ge/geoclue2/package.nix +++ b/pkgs/by-name/ge/geoclue2/package.nix @@ -112,16 +112,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin && withDemoAgent; description = "Geolocation framework and some data providers"; homepage = "https://gitlab.freedesktop.org/geoclue/geoclue/wikis/home"; changelog = "https://gitlab.freedesktop.org/geoclue/geoclue/-/blob/${finalAttrs.version}/NEWS"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin mimame ]; - platforms = with platforms; linux ++ darwin; - license = licenses.lgpl2Plus; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.lgpl2Plus; }; }) diff --git a/pkgs/by-name/ge/geogebra/package.nix b/pkgs/by-name/ge/geogebra/package.nix index af4dec8c0c3d..128b1973a50b 100644 --- a/pkgs/by-name/ge/geogebra/package.nix +++ b/pkgs/by-name/ge/geogebra/package.nix @@ -37,7 +37,7 @@ let ]; }; - meta = with lib; { + meta = { description = "Dynamic mathematics software with graphics, algebra and spreadsheets"; longDescription = '' Dynamic mathematics software for all levels of education that brings @@ -45,20 +45,20 @@ let calculus in one easy-to-use package. ''; homepage = "https://www.geogebra.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sikmir soupglasses ]; - license = with licenses; [ + license = with lib.licenses; [ gpl3 cc-by-nc-sa-30 geogebra ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode # some jars include native binaries ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; hydraPlatforms = [ ]; }; diff --git a/pkgs/by-name/ge/geogebra6/package.nix b/pkgs/by-name/ge/geogebra6/package.nix index 3f9b349401b1..be112c9dc76d 100644 --- a/pkgs/by-name/ge/geogebra6/package.nix +++ b/pkgs/by-name/ge/geogebra6/package.nix @@ -14,7 +14,7 @@ let srcIcon = geogebra.srcIcon; desktopItem = geogebra.desktopItem; - meta = with lib; { + meta = { description = "Dynamic mathematics software with graphics, algebra and spreadsheets"; longDescription = '' Dynamic mathematics software for all levels of education that brings @@ -22,16 +22,16 @@ let calculus in one easy-to-use package. ''; homepage = "https://www.geogebra.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ voidless sikmir ]; - license = licenses.geogebra; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.geogebra; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode # some jars include native binaries ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; hydraPlatforms = [ ]; }; diff --git a/pkgs/by-name/ge/geogram/package.nix b/pkgs/by-name/ge/geogram/package.nix index eca1fd30a50e..2415e49c51c6 100644 --- a/pkgs/by-name/ge/geogram/package.nix +++ b/pkgs/by-name/ge/geogram/package.nix @@ -133,7 +133,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Programming Library with Geometric Algorithms"; longDescription = '' Geogram contains the main results in Geometry Processing from the former ALICE Inria project, @@ -141,7 +141,7 @@ stdenv.mkDerivation rec { Symposium on Geometry Processing and Eurographics. ''; homepage = "https://github.com/BrunoLevy/geogram"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" @@ -149,6 +149,6 @@ stdenv.mkDerivation rec { "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with maintainers; [ tmarkus ]; + maintainers = with lib.maintainers; [ tmarkus ]; }; } diff --git a/pkgs/by-name/ge/geoipupdate/package.nix b/pkgs/by-name/ge/geoipupdate/package.nix index 2d9c1f5e5baa..79411ae7efc6 100644 --- a/pkgs/by-name/ge/geoipupdate/package.nix +++ b/pkgs/by-name/ge/geoipupdate/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Automatic GeoIP database updater"; homepage = "https://github.com/maxmind/geoipupdate"; - license = with licenses; [ asl20 ]; - teams = [ teams.helsinki-systems ]; + license = with lib.licenses; [ asl20 ]; + teams = [ lib.teams.helsinki-systems ]; mainProgram = "geoipupdate"; }; } diff --git a/pkgs/by-name/ge/geomyidae/package.nix b/pkgs/by-name/ge/geomyidae/package.nix index a64bfc0e8291..4c9a9179101b 100644 --- a/pkgs/by-name/ge/geomyidae/package.nix +++ b/pkgs/by-name/ge/geomyidae/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Gopher daemon for Linux/BSD"; mainProgram = "geomyidae"; homepage = "gopher://bitreich.org/1/scm/geomyidae"; - license = licenses.mit; - maintainers = [ maintainers.athas ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.athas ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ge/geonkick/package.nix b/pkgs/by-name/ge/geonkick/package.nix index 9f4799706b51..26596a91d407 100644 --- a/pkgs/by-name/ge/geonkick/package.nix +++ b/pkgs/by-name/ge/geonkick/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/iurie-sw/geonkick"; description = "Free software percussion synthesizer"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.magnetophon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.magnetophon ]; mainProgram = "geonkick"; }; } diff --git a/pkgs/by-name/ge/geos/package.nix b/pkgs/by-name/ge/geos/package.nix index 597fad1ec724..1526c189e481 100644 --- a/pkgs/by-name/ge/geos/package.nix +++ b/pkgs/by-name/ge/geos/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { geos = callPackage ./tests.nix { geos = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { description = "C/C++ library for computational geometry with a focus on algorithms used in geographic information systems (GIS) software"; homepage = "https://libgeos.org"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; mainProgram = "geosop"; - teams = [ teams.geospatial ]; + teams = [ lib.teams.geospatial ]; pkgConfigModules = [ "geos" ]; changelog = "https://github.com/libgeos/geos/releases/tag/${finalAttrs.finalPackage.version}"; }; diff --git a/pkgs/by-name/ge/gephi/package.nix b/pkgs/by-name/ge/gephi/package.nix index 731177a07cac..ef3cc8bae367 100644 --- a/pkgs/by-name/ge/gephi/package.nix +++ b/pkgs/by-name/ge/gephi/package.nix @@ -37,15 +37,15 @@ maven.buildMavenPackage rec { printf "\n\njdkhome=${jdk11}\n" >> $out/etc/gephi.conf ''; - meta = with lib; { + meta = { description = "Platform for visualizing and manipulating large graphs"; mainProgram = "gephi"; homepage = "https://gephi.org"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = licenses.gpl3; - maintainers = [ maintainers.taeer ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.taeer ]; }; } diff --git a/pkgs/by-name/ge/gerbolyze/package.nix b/pkgs/by-name/ge/gerbolyze/package.nix index 9dfbca7f369c..4c0a6793ed48 100644 --- a/pkgs/by-name/ge/gerbolyze/package.nix +++ b/pkgs/by-name/ge/gerbolyze/package.nix @@ -29,13 +29,13 @@ let installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "SVG-flatten SVG downconverter"; homepage = "https://github.com/jaseg/gerbolyze"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ wulfsta ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ wulfsta ]; mainProgram = "svg-flatten"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }; in @@ -93,12 +93,12 @@ python3Packages.buildPythonApplication rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Directly render SVG overlays into Gerber and Excellon files"; homepage = "https://github.com/jaseg/gerbolyze"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ wulfsta ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ wulfsta ]; mainProgram = "gerbolyze"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ge/gerrit-queue/package.nix b/pkgs/by-name/ge/gerrit-queue/package.nix index f0558a1b55a5..310331574ba3 100644 --- a/pkgs/by-name/ge/gerrit-queue/package.nix +++ b/pkgs/by-name/ge/gerrit-queue/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { }; vendorHash = "sha256-+Ig4D46NphzpWKXO23Haea9EqVtpda8v9zLPJkbe3bQ="; - meta = with lib; { + meta = { description = "Merge bot for Gerrit"; homepage = "https://github.com/flokli/gerrit-queue"; - license = licenses.asl20; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ flokli ]; mainProgram = "gerrit-queue"; }; } diff --git a/pkgs/by-name/ge/gerrit/package.nix b/pkgs/by-name/ge/gerrit/package.nix index 3665f860d65b..d4ef524a7d9b 100644 --- a/pkgs/by-name/ge/gerrit/package.nix +++ b/pkgs/by-name/ge/gerrit/package.nix @@ -46,16 +46,16 @@ stdenvNoCC.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://www.gerritcodereview.com/index.md"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Web based code review and repository management for the git version control system"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ flokli zimbatm felixsinger ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ge/get-google-fonts/package.nix b/pkgs/by-name/ge/get-google-fonts/package.nix index ec4bb400ec92..67ce78428a31 100644 --- a/pkgs/by-name/ge/get-google-fonts/package.nix +++ b/pkgs/by-name/ge/get-google-fonts/package.nix @@ -29,11 +29,11 @@ buildNpmPackage { dontBuild = true; - meta = with lib; { + meta = { description = "Downloads and adapts Google fonts to working offline"; mainProgram = "get-google-fonts"; homepage = "https://github.com/MrMaxie/get-google-fonts"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/ge/get_iplayer/package.nix b/pkgs/by-name/ge/get_iplayer/package.nix index 811f18801919..444bf7dee82a 100644 --- a/pkgs/by-name/ge/get_iplayer/package.nix +++ b/pkgs/by-name/ge/get_iplayer/package.nix @@ -64,13 +64,13 @@ perlPackages.buildPerlPackage rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Downloads TV and radio programmes from BBC iPlayer and BBC Sounds"; mainProgram = "get_iplayer"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/get-iplayer/get_iplayer"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ rika chewblacka ]; diff --git a/pkgs/by-name/ge/getdata/package.nix b/pkgs/by-name/ge/getdata/package.nix index aef0692613c2..7d4d47d19d0c 100644 --- a/pkgs/by-name/ge/getdata/package.nix +++ b/pkgs/by-name/ge/getdata/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ libtool ]; - meta = with lib; { + meta = { description = "Reference implementation of the Dirfile Standards"; - license = licenses.lgpl21Plus; - platforms = platforms.all; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.vbgl ]; homepage = "https://getdata.sourceforge.net/"; }; } diff --git a/pkgs/by-name/ge/geteltorito/package.nix b/pkgs/by-name/ge/geteltorito/package.nix index d0f2520d3604..a0fe8a036ea3 100644 --- a/pkgs/by-name/ge/geteltorito/package.nix +++ b/pkgs/by-name/ge/geteltorito/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { install -vD geteltorito $out/bin/geteltorito ''; - meta = with lib; { + meta = { description = "Extract the initial/default boot image from a CD image if existent"; homepage = "https://userpages.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/"; - maintainers = [ maintainers.Profpatsch ]; - license = licenses.gpl2Only; + maintainers = [ lib.maintainers.Profpatsch ]; + license = lib.licenses.gpl2Only; mainProgram = "geteltorito"; }; diff --git a/pkgs/by-name/ge/geticons/package.nix b/pkgs/by-name/ge/geticons/package.nix index 323f8c3c5660..e39087fde411 100644 --- a/pkgs/by-name/ge/geticons/package.nix +++ b/pkgs/by-name/ge/geticons/package.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-V3e3boIzn76irAfn9fF9MycPRAWorUUSD/CUZhgKv0E="; passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "CLI utility to get icons for apps on your system or other generic icons by name"; mainProgram = "geticons"; homepage = "https://git.sr.ht/~zethra/geticons"; - license = with licenses; [ gpl3Plus ]; + license = with lib.licenses; [ gpl3Plus ]; }; } diff --git a/pkgs/by-name/ge/getmail6/package.nix b/pkgs/by-name/ge/getmail6/package.nix index 24f404823cbb..21ae55110db2 100644 --- a/pkgs/by-name/ge/getmail6/package.nix +++ b/pkgs/by-name/ge/getmail6/package.nix @@ -32,12 +32,12 @@ python3.pkgs.buildPythonApplication rec { sed -e 's,/usr/bin/getmail,$(dirname $0)/getmail,' -i getmails ''; - meta = with lib; { + meta = { description = "Program for retrieving mail"; homepage = "https://getmail6.org"; changelog = "https://github.com/getmail6/getmail6/blob/${src.tag}/docs/CHANGELOG"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ abbe dotlambda ]; diff --git a/pkgs/by-name/ge/getoptions/package.nix b/pkgs/by-name/ge/getoptions/package.nix index d70a457a4af8..71e507320569 100644 --- a/pkgs/by-name/ge/getoptions/package.nix +++ b/pkgs/by-name/ge/getoptions/package.nix @@ -46,11 +46,11 @@ stdenvNoCC.mkDerivation rec { checkTarget = "test_in_various_shells"; - meta = with lib; { + meta = { description = "Elegant option/argument parser for shell scripts (full support for bash and all POSIX shells)"; homepage = "https://github.com/ko1nksm/getoptions"; - license = licenses.cc0; - platforms = platforms.all; - maintainers = with maintainers; [ matrss ]; + license = lib.licenses.cc0; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ matrss ]; }; } diff --git a/pkgs/by-name/ge/getxbook/package.nix b/pkgs/by-name/ge/getxbook/package.nix index 11dbf45848f1..7ae0b6f19579 100644 --- a/pkgs/by-name/ge/getxbook/package.nix +++ b/pkgs/by-name/ge/getxbook/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Collection of tools to download books from Google Books"; homepage = "https://njw.me.uk/getxbook/"; - license = licenses.isc; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.all; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ge/gex/package.nix b/pkgs/by-name/ge/gex/package.nix index e3a49469b719..ad822106807e 100644 --- a/pkgs/by-name/ge/gex/package.nix +++ b/pkgs/by-name/ge/gex/package.nix @@ -40,15 +40,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-4ejtMCuJOwT5bJQZaPQ1OjrB5O70we77yEXk9RmhywE="; - meta = with lib; { + meta = { description = "Git Explorer: cross-platform git workflow improvement tool inspired by Magit"; homepage = "https://codeberg.org/Piturnah/gex"; changelog = "https://codeberg.org/Piturnah/gex/releases/tag/${src.tag}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ azd325 bot-wxt1221 evanrichter diff --git a/pkgs/by-name/ge/gexiv2/package.nix b/pkgs/by-name/ge/gexiv2/package.nix index ce21a32f7c62..5f31b40815e4 100644 --- a/pkgs/by-name/ge/gexiv2/package.nix +++ b/pkgs/by-name/ge/gexiv2/package.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gexiv2"; description = "GObject wrapper around the Exiv2 photo metadata library"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gf/gf/package.nix b/pkgs/by-name/gf/gf/package.nix index 27b664048b49..c342c5c9498a 100644 --- a/pkgs/by-name/gf/gf/package.nix +++ b/pkgs/by-name/gf/gf/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation { passthru.updateScript = nix-update-script { extraArgs = lib.singleton "--version=branch"; }; - meta = with lib; { + meta = { description = "GDB Frontend"; homepage = "https://github.com/nakst/gf"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "gf2"; - maintainers = with maintainers; [ _0xd61 ]; + maintainers = with lib.maintainers; [ _0xd61 ]; }; } diff --git a/pkgs/by-name/gf/gf2x/package.nix b/pkgs/by-name/gf/gf2x/package.nix index 4f1f15408601..5bf4f8d9f62c 100644 --- a/pkgs/by-name/gf/gf2x/package.nix +++ b/pkgs/by-name/gf/gf2x/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { "--disable-hardware-specific-code" ]; - meta = with lib; { + meta = { description = "Routines for fast arithmetic in GF(2)[x]"; homepage = "https://gitlab.inria.fr/gf2x/gf2x/"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gf/gfal2/package.nix b/pkgs/by-name/gf/gfal2/package.nix index 7c8e2fbd55bb..9d18aa943cea 100644 --- a/pkgs/by-name/gf/gfal2/package.nix +++ b/pkgs/by-name/gf/gfal2/package.nix @@ -161,7 +161,7 @@ stdenv.mkDerivation (finalAttrs: { gtest ]; - meta = with lib; { + meta = { description = "Multi-protocol data management library by CERN"; longDescription = '' GFAL (Grid File Access Library ) @@ -171,9 +171,9 @@ stdenv.mkDerivation (finalAttrs: { behind a simple common POSIX API. ''; homepage = "https://github.com/cern-fts/gfal2"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ ShamrockLee ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ShamrockLee ]; mainProgram = "gfal2"; }; }) diff --git a/pkgs/by-name/gf/gflags/package.nix b/pkgs/by-name/gf/gflags/package.nix index 059bec830b76..4783c2a7ec10 100644 --- a/pkgs/by-name/gf/gflags/package.nix +++ b/pkgs/by-name/gf/gflags/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "C++ library that implements commandline flags processing"; mainProgram = "gflags_completions.sh"; longDescription = '' @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { It was owned by Google. google-gflags project has been renamed to gflags and maintained by new community. ''; homepage = "https://gflags.github.io/gflags/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gf/gfs2-utils/package.nix b/pkgs/by-name/gf/gfs2-utils/package.nix index 92359f15f0b6..e9c8a239d068 100644 --- a/pkgs/by-name/gf/gfs2-utils/package.nix +++ b/pkgs/by-name/gf/gfs2-utils/package.nix @@ -50,14 +50,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://pagure.io/gfs2-utils"; description = "Tools for creating, checking and working with gfs2 filesystems"; - maintainers = with maintainers; [ qyliss ]; + maintainers = with lib.maintainers; [ qyliss ]; license = [ - licenses.gpl2Plus - licenses.lgpl2Plus + lib.licenses.gpl2Plus + lib.licenses.lgpl2Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gf/gfshare/package.nix b/pkgs/by-name/gf/gfshare/package.nix index 98f402081649..c3f902ced0f3 100644 --- a/pkgs/by-name/gf/gfshare/package.nix +++ b/pkgs/by-name/gf/gfshare/package.nix @@ -25,15 +25,15 @@ stdenv.mkDerivation rec { "out" ]; - meta = with lib; { + meta = { # Not the most descriptive homepage but it's what Debian and Ubuntu use # https://packages.debian.org/sid/libgfshare2 # https://launchpad.net/ubuntu/impish/+source/libgfshare/+copyright homepage = "https://git.gitano.org.uk/libgfshare.git/"; description = "Shamir's secret-sharing method in the Galois Field GF(2**8)"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.rraval ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rraval ]; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gfshare.x86_64-darwin }; } diff --git a/pkgs/by-name/gf/gfxstream/package.nix b/pkgs/by-name/gf/gfxstream/package.nix index 8f8fbddbde2a..af693f9d97ea 100644 --- a/pkgs/by-name/gf/gfxstream/package.nix +++ b/pkgs/by-name/gf/gfxstream/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation (finalAttrs: { mesonFlagsArray=(-Dcpp_link_args="-Wl,--push-state -Wl,--no-as-needed -lvulkan -Wl,--pop-state") ''; - meta = with lib; { + meta = { homepage = "https://android.googlesource.com/platform/hardware/google/gfxstream"; description = "Graphics Streaming Kit"; - license = licenses.free; # https://android.googlesource.com/platform/hardware/google/gfxstream/+/refs/heads/main/LICENSE - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.free; # https://android.googlesource.com/platform/hardware/google/gfxstream/+/refs/heads/main/LICENSE + maintainers = with lib.maintainers; [ qyliss ]; platforms = aemu.meta.platforms; }; }) diff --git a/pkgs/by-name/gg/ggz_base_libs/package.nix b/pkgs/by-name/gg/ggz_base_libs/package.nix index ce7dc4372a23..e7518b769cf0 100644 --- a/pkgs/by-name/gg/ggz_base_libs/package.nix +++ b/pkgs/by-name/gg/ggz_base_libs/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { "--with-tls" ]; - meta = with lib; { + meta = { description = "GGZ Gaming zone libraries"; mainProgram = "ggz-config"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.gpl2; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; downloadPage = "http://www.ggzgamingzone.org/releases/"; }; } diff --git a/pkgs/by-name/gh/gh-cal/package.nix b/pkgs/by-name/gh/gh-cal/package.nix index 5c945690b1fc..cc536d75408a 100644 --- a/pkgs/by-name/gh/gh-cal/package.nix +++ b/pkgs/by-name/gh/gh-cal/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "GitHub contributions calender terminal viewer"; homepage = "https://github.com/mrshmllow/gh-cal"; - license = licenses.mit; - maintainers = with maintainers; [ loicreynier ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ loicreynier ]; mainProgram = "gh-cal"; }; } diff --git a/pkgs/by-name/gh/gh-gei/package.nix b/pkgs/by-name/gh/gh-gei/package.nix index ae0b0ddf10cc..48159e3e4ac4 100644 --- a/pkgs/by-name/gh/gh-gei/package.nix +++ b/pkgs/by-name/gh/gh-gei/package.nix @@ -20,11 +20,11 @@ buildDotnetModule rec { projectFile = "src/gei/gei.csproj"; nugetDeps = ./deps.json; # File generated with `nix-build -A gh-gei.passthru.fetch-deps`. - meta = with lib; { + meta = { homepage = "https://github.com/github/gh-gei"; description = "Migration CLI for GitHub to GitHub migrations"; - license = licenses.mit; - maintainers = with maintainers; [ lafrenierejm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lafrenierejm ]; mainProgram = "gei"; }; } diff --git a/pkgs/by-name/gh/gh-notify/package.nix b/pkgs/by-name/gh/gh-notify/package.nix index e53dcc0952eb..a5cbfd3cbede 100644 --- a/pkgs/by-name/gh/gh-notify/package.nix +++ b/pkgs/by-name/gh/gh-notify/package.nix @@ -47,12 +47,12 @@ stdenvNoCC.mkDerivation { wrapProgram "$out/bin/gh-notify" --prefix PATH : "${binPath}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/meiji163/gh-notify"; description = "GitHub CLI extension to display GitHub notifications"; - maintainers = with maintainers; [ loicreynier ]; - license = licenses.unlicense; + maintainers = with lib.maintainers; [ loicreynier ]; + license = lib.licenses.unlicense; mainProgram = "gh-notify"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gh/gh-poi/package.nix b/pkgs/by-name/gh/gh-poi/package.nix index 66484945f01d..42efe076a305 100644 --- a/pkgs/by-name/gh/gh-poi/package.nix +++ b/pkgs/by-name/gh/gh-poi/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { # See: https://github.com/seachicken/gh-poi/blob/v0.14.1/.github/workflows/contract-test.yml#L28-L29 doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/seachicken/gh-poi/releases/tag/${src.rev}"; description = "GitHub CLI extension to safely clean up your local branches"; homepage = "https://github.com/seachicken/gh-poi"; - license = licenses.mit; - maintainers = with maintainers; [ aspulse ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aspulse ]; mainProgram = "gh-poi"; }; } diff --git a/pkgs/by-name/gh/gh-s/package.nix b/pkgs/by-name/gh/gh-s/package.nix index 859fd5c09782..fdc60f26e7db 100644 --- a/pkgs/by-name/gh/gh-s/package.nix +++ b/pkgs/by-name/gh/gh-s/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Search github repositories interactively"; homepage = "https://github.com/gennaro-tedesco/gh-s"; - license = licenses.asl20; - maintainers = with maintainers; [ daru-san ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ daru-san ]; mainProgram = "gh-s"; }; } diff --git a/pkgs/by-name/gh/gh-screensaver/package.nix b/pkgs/by-name/gh/gh-screensaver/package.nix index 2481b2688281..aa3642f0244a 100644 --- a/pkgs/by-name/gh/gh-screensaver/package.nix +++ b/pkgs/by-name/gh/gh-screensaver/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "gh extension with animated terminal screensavers"; homepage = "https://github.com/vilmibm/gh-screensaver"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; mainProgram = "gh-screensaver"; }; } diff --git a/pkgs/by-name/gh/gh2md/package.nix b/pkgs/by-name/gh/gh2md/package.nix index eb378f4c4feb..f1b5f0d1cf3b 100644 --- a/pkgs/by-name/gh/gh2md/package.nix +++ b/pkgs/by-name/gh/gh2md/package.nix @@ -29,11 +29,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "gh2md" ]; - meta = with lib; { + meta = { description = "Export Github repository issues to markdown files"; mainProgram = "gh2md"; homepage = "https://github.com/mattduck/gh2md"; - license = licenses.mit; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/by-name/gh/ghbackup/package.nix b/pkgs/by-name/gh/ghbackup/package.nix index 2ff8d158e5a9..2058e3449545 100644 --- a/pkgs/by-name/gh/ghbackup/package.nix +++ b/pkgs/by-name/gh/ghbackup/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { doCheck = false; # tests want to actually download from github - meta = with lib; { + meta = { description = "Backup your GitHub repositories with a simple command-line application written in Go"; homepage = "https://github.com/qvl/ghbackup"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "ghbackup"; - maintainers = with maintainers; [ lenny ]; + maintainers = with lib.maintainers; [ lenny ]; }; } diff --git a/pkgs/by-name/gh/ghciwatch/package.nix b/pkgs/by-name/gh/ghciwatch/package.nix index 052843ed941e..7881bb5aff9f 100644 --- a/pkgs/by-name/gh/ghciwatch/package.nix +++ b/pkgs/by-name/gh/ghciwatch/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { GHC_VERSIONS = ""; checkFlags = "--test \"unit\""; - meta = with lib; { + meta = { description = "Ghci-based file watching recompiler for Haskell development"; homepage = "https://github.com/MercuryTechnologies/ghciwatch"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mangoiv _9999years ]; diff --git a/pkgs/by-name/gh/ghdorker/package.nix b/pkgs/by-name/gh/ghdorker/package.nix index 4d0a079da2af..31f1fef8eba3 100644 --- a/pkgs/by-name/gh/ghdorker/package.nix +++ b/pkgs/by-name/gh/ghdorker/package.nix @@ -32,11 +32,11 @@ python3.pkgs.buildPythonApplication rec { "GHDorker" ]; - meta = with lib; { + meta = { description = "Extensible GitHub dorking tool"; mainProgram = "ghdorker"; homepage = "https://github.com/dtaivpp/ghdorker"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/gh/ghex/package.nix b/pkgs/by-name/gh/ghex/package.nix index 61cc33efbcf8..2dcfbe771e77 100644 --- a/pkgs/by-name/gh/ghex/package.nix +++ b/pkgs/by-name/gh/ghex/package.nix @@ -74,13 +74,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/ghex"; changelog = "https://gitlab.gnome.org/GNOME/ghex/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Hex editor for GNOME desktop environment"; mainProgram = "ghex"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gh/ghfetch/package.nix b/pkgs/by-name/gh/ghfetch/package.nix index 86784b083ea6..6d3c7b834dcc 100644 --- a/pkgs/by-name/gh/ghfetch/package.nix +++ b/pkgs/by-name/gh/ghfetch/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-CPh9j5PJOSNvqgq/S9w+Kx3c5yIMHjc1AaqLwz9efeY="; - meta = with lib; { + meta = { description = "CLI tool to fetch GitHub user information and show like neofetch"; homepage = "https://github.com/orangekame3/ghfetch"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "ghfetch"; - maintainers = with maintainers; [ aleksana ]; + maintainers = with lib.maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/gh/ghorg/package.nix b/pkgs/by-name/gh/ghorg/package.nix index ac7a035de0d5..d50d72b99c47 100644 --- a/pkgs/by-name/gh/ghorg/package.nix +++ b/pkgs/by-name/gh/ghorg/package.nix @@ -36,7 +36,7 @@ buildGoModule rec { --zsh <($out/bin/ghorg completion zsh) ''; - meta = with lib; { + meta = { description = "Quickly clone an entire org/users repositories into one directory"; longDescription = '' ghorg allows you to quickly clone all of an orgs, or users repos into a @@ -48,7 +48,7 @@ buildGoModule rec { - Performing Audits ''; homepage = "https://github.com/gabrie30/ghorg"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "ghorg"; }; } diff --git a/pkgs/by-name/gh/ghost/package.nix b/pkgs/by-name/gh/ghost/package.nix index 10cda94d8eb1..f83492a871eb 100644 --- a/pkgs/by-name/gh/ghost/package.nix +++ b/pkgs/by-name/gh/ghost/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "ghost" ]; - meta = with lib; { + meta = { description = "Android post-exploitation framework"; mainProgram = "ghost"; homepage = "https://github.com/EntySec/ghost"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/gh/ghosttohugo/package.nix b/pkgs/by-name/gh/ghosttohugo/package.nix index 58cde575b477..ce1f9992c57c 100644 --- a/pkgs/by-name/gh/ghosttohugo/package.nix +++ b/pkgs/by-name/gh/ghosttohugo/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-/7MsVLVek2nQwf8rVJQywBKiIOCGe72L45CkAElXrMo="; - meta = with lib; { + meta = { description = "Convert Ghost export to Hugo posts"; homepage = "https://github.com/jbarone/ghostToHugo"; - license = licenses.mit; - maintainers = with maintainers; [ clerie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ clerie ]; mainProgram = "ghostToHugo"; }; } diff --git a/pkgs/by-name/gh/ghr/package.nix b/pkgs/by-name/gh/ghr/package.nix index 389df793a491..7029cca3046f 100644 --- a/pkgs/by-name/gh/ghr/package.nix +++ b/pkgs/by-name/gh/ghr/package.nix @@ -28,10 +28,10 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/tcnksm/ghr"; description = "Upload multiple artifacts to GitHub Release in parallel"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "ghr"; }; diff --git a/pkgs/by-name/gh/ghz/package.nix b/pkgs/by-name/gh/ghz/package.nix index 993911fa52ff..551a99203f6b 100644 --- a/pkgs/by-name/gh/ghz/package.nix +++ b/pkgs/by-name/gh/ghz/package.nix @@ -40,9 +40,9 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Simple gRPC benchmarking and load testing tool"; homepage = "https://ghz.sh"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/gi/gImageReader/package.nix b/pkgs/by-name/gi/gImageReader/package.nix index 60a6533f7935..18a4d612e395 100644 --- a/pkgs/by-name/gi/gImageReader/package.nix +++ b/pkgs/by-name/gi/gImageReader/package.nix @@ -98,13 +98,13 @@ stdenv.mkDerivation rec { ] ++ lib.optionals withQt6 [ "-DINTERFACE_TYPE=qt6 -DQT_VER=6" ]; - meta = with lib; { + meta = { description = "Simple Gtk/Qt front-end to tesseract-ocr"; mainProgram = if withQt6 then "gImageReader-qt6" else "gImageReader"; homepage = "https://github.com/manisandro/gImageReader"; changelog = "https://github.com/manisandro/gImageReader/blob/${version}/NEWS"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ teto ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ teto ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gi/gi-crystal/package.nix b/pkgs/by-name/gi/gi-crystal/package.nix index d2ca991e35a7..6d9959778cbb 100644 --- a/pkgs/by-name/gi/gi-crystal/package.nix +++ b/pkgs/by-name/gi/gi-crystal/package.nix @@ -39,10 +39,10 @@ crystal.buildCrystalPackage rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "GI Crystal is a binding generator used to generate Crystal bindings for GObject based libraries using GObject Introspection"; homepage = "https://github.com/hugopl/gi-crystal"; mainProgram = "gi-crystal"; - maintainers = with maintainers; [ sund3RRR ]; + maintainers = with lib.maintainers; [ sund3RRR ]; }; } diff --git a/pkgs/by-name/gi/gi-docgen/package.nix b/pkgs/by-name/gi/gi-docgen/package.nix index 9e04c3425914..874d7515cc0c 100644 --- a/pkgs/by-name/gi/gi-docgen/package.nix +++ b/pkgs/by-name/gi/gi-docgen/package.nix @@ -51,11 +51,11 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Documentation generator for GObject-based libraries"; mainProgram = "gi-docgen"; homepage = "https://gitlab.gnome.org/GNOME/gi-docgen"; - license = licenses.asl20; # OR GPL-3.0-or-later - teams = [ teams.gnome ]; + license = lib.licenses.asl20; # OR GPL-3.0-or-later + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gi/giac/package.nix b/pkgs/by-name/gi/giac/package.nix index b6683c2d8622..2f839d7ed2c7 100644 --- a/pkgs/by-name/gi/giac/package.nix +++ b/pkgs/by-name/gi/giac/package.nix @@ -223,8 +223,8 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Free computer algebra system (CAS)"; homepage = "https://www-fourier.ujf-grenoble.fr/~parisse/giac.html"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ (optionals (!enableGUI) platforms.darwin); - maintainers = [ maintainers.symphorien ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ (optionals (!enableGUI) lib.platforms.darwin); + maintainers = [ lib.maintainers.symphorien ]; }; } diff --git a/pkgs/by-name/gi/giara/package.nix b/pkgs/by-name/gi/giara/package.nix index b62952bbb134..3dabca8470a6 100644 --- a/pkgs/by-name/gi/giara/package.nix +++ b/pkgs/by-name/gi/giara/package.nix @@ -67,12 +67,12 @@ python3.pkgs.buildPythonApplication rec { --replace "item { custom: profile; }" 'item { custom: "profile"; }' ''; - meta = with lib; { + meta = { description = "Reddit app, built with Python, GTK and Handy; Created with mobile Linux in mind"; - maintainers = with maintainers; [ dasj19 ]; + maintainers = with lib.maintainers; [ dasj19 ]; homepage = "https://gitlab.gnome.org/World/giara"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "giara"; }; } diff --git a/pkgs/by-name/gi/gif-for-cli/package.nix b/pkgs/by-name/gi/gif-for-cli/package.nix index 5bdb18fa733d..30811fbf8b21 100644 --- a/pkgs/by-name/gi/gif-for-cli/package.nix +++ b/pkgs/by-name/gi/gif-for-cli/package.nix @@ -46,12 +46,12 @@ python3Packages.buildPythonApplication { x256 ]; - meta = with lib; { + meta = { description = "Render gifs as ASCII art in your cli"; longDescription = "Takes in a GIF, short video, or a query to the Tenor GIF API and converts it to animated ASCII art."; homepage = "https://github.com/google/gif-for-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Scriptkiddi ]; mainProgram = "gif-for-cli"; }; } diff --git a/pkgs/by-name/gi/gif2apng/package.nix b/pkgs/by-name/gi/gif2apng/package.nix index 5b720ee42399..9076885b2e13 100644 --- a/pkgs/by-name/gi/gif2apng/package.nix +++ b/pkgs/by-name/gi/gif2apng/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://gif2apng.sourceforge.net/"; description = "Simple program that converts animations from GIF to APNG format"; - license = licenses.zlib; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gi/gifgen/package.nix b/pkgs/by-name/gi/gifgen/package.nix index ce312da2e304..3478b276fe37 100644 --- a/pkgs/by-name/gi/gifgen/package.nix +++ b/pkgs/by-name/gi/gifgen/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple high quality GIF encoding"; homepage = "https://github.com/lukechilds/gifgen"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "gifgen"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gi/gifticlib/package.nix b/pkgs/by-name/gi/gifticlib/package.nix index fbb20ed9af79..88025a4cc92e 100644 --- a/pkgs/by-name/gi/gifticlib/package.nix +++ b/pkgs/by-name/gi/gifticlib/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { "NEEDS_DATA" ]; - meta = with lib; { + meta = { homepage = "https://www.nitrc.org/projects/gifti"; description = "Medical imaging geometry format C API"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = licenses.publicDomain; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/gi/gimme-aws-creds/package.nix b/pkgs/by-name/gi/gimme-aws-creds/package.nix index 7a85da0fa4a5..74ae1b6443f5 100644 --- a/pkgs/by-name/gi/gimme-aws-creds/package.nix +++ b/pkgs/by-name/gi/gimme-aws-creds/package.nix @@ -73,12 +73,12 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/Nike-Inc/gimme-aws-creds"; changelog = "https://github.com/Nike-Inc/gimme-aws-creds/releases"; description = "CLI that utilizes Okta IdP via SAML to acquire temporary AWS credentials"; mainProgram = "gimme-aws-creds"; - license = licenses.asl20; - maintainers = with maintainers; [ jbgosselin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jbgosselin ]; }; } diff --git a/pkgs/by-name/gi/gimoji/package.nix b/pkgs/by-name/gi/gimoji/package.nix index fe8ebdb82990..db0a5c9a77db 100644 --- a/pkgs/by-name/gi/gimoji/package.nix +++ b/pkgs/by-name/gi/gimoji/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-vAhHCNsViYyNSKeSGUL2oIp8bp5UCm8HReyDuoFvfqs="; - meta = with lib; { + meta = { description = "Easily add emojis to your git commit messages"; homepage = "https://github.com/zeenix/gimoji"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "gimoji"; - maintainers = with maintainers; [ a-kenji ]; + maintainers = with lib.maintainers; [ a-kenji ]; }; } diff --git a/pkgs/by-name/gi/ginac/package.nix b/pkgs/by-name/gi/ginac/package.nix index 21c5e9129eb1..114793f75f25 100644 --- a/pkgs/by-name/gi/ginac/package.nix +++ b/pkgs/by-name/gi/ginac/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-rpath" ]; - meta = with lib; { + meta = { description = "GiNaC C++ library for symbolic manipulations"; homepage = "https://www.ginac.de/"; - maintainers = with maintainers; [ lovek323 ]; - license = licenses.gpl2; - platforms = platforms.all; + maintainers = with lib.maintainers; [ lovek323 ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gi/ginkgo/package.nix b/pkgs/by-name/gi/ginkgo/package.nix index 4bd67d4473aa..623e88a58967 100644 --- a/pkgs/by-name/gi/ginkgo/package.nix +++ b/pkgs/by-name/gi/ginkgo/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { command = "ginkgo version"; }; - meta = with lib; { + meta = { homepage = "https://onsi.github.io/ginkgo/"; changelog = "https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md"; description = "Modern Testing Framework for Go"; @@ -48,8 +48,8 @@ buildGoModule rec { active use across a wide variety of testing contexts: unit tests, integration tests, acceptance test, performance tests, etc. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ saschagrunert jk ]; diff --git a/pkgs/by-name/gi/gio-sharp/package.nix b/pkgs/by-name/gi/gio-sharp/package.nix index 67047b2e4fed..9cf8cf95013d 100644 --- a/pkgs/by-name/gi/gio-sharp/package.nix +++ b/pkgs/by-name/gi/gio-sharp/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { ./autogen-2.22.sh ''; - meta = with lib; { + meta = { description = "GIO API bindings"; homepage = "https://github.com/mono/gio-sharp"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gi/giph/package.nix b/pkgs/by-name/gi/giph/package.nix index c015ad02553c..f1fba37b2cb2 100644 --- a/pkgs/by-name/gi/giph/package.nix +++ b/pkgs/by-name/gi/giph/package.nix @@ -42,12 +42,12 @@ stdenvNoCC.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/phisch/giph"; description = "Simple gif recorder"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "giph"; }; } diff --git a/pkgs/by-name/gi/gir-rs/package.nix b/pkgs/by-name/gi/gir-rs/package.nix index fd8ed62e6755..aee506772c33 100644 --- a/pkgs/by-name/gi/gir-rs/package.nix +++ b/pkgs/by-name/gi/gir-rs/package.nix @@ -26,10 +26,10 @@ rustPlatform.buildRustPackage { echo "pub const VERSION: &str = \"$version\";" > src/gir_version.rs ''; - meta = with lib; { + meta = { description = "Tool to generate rust bindings and user API for glib-based libraries"; homepage = "https://github.com/gtk-rs/gir/"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; mainProgram = "gir"; }; } diff --git a/pkgs/by-name/gi/girouette/package.nix b/pkgs/by-name/gi/girouette/package.nix index 870470b53c3f..b816b35a1360 100644 --- a/pkgs/by-name/gi/girouette/package.nix +++ b/pkgs/by-name/gi/girouette/package.nix @@ -29,15 +29,15 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Show the weather in the terminal, in style"; homepage = "https://github.com/gourlaysama/girouette"; changelog = "https://github.com/gourlaysama/girouette/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ linuxissuper cafkafk ]; diff --git a/pkgs/by-name/gi/gist/package.nix b/pkgs/by-name/gi/gist/package.nix index 153582afc71e..ba66e5c95e41 100644 --- a/pkgs/by-name/gi/gist/package.nix +++ b/pkgs/by-name/gi/gist/package.nix @@ -11,11 +11,11 @@ buildRubyGem rec { version = "6.0.0"; source.sha256 = "0qnd1jqd7b04871v4l73grcmi7c0pivm8nsfrqvwivm4n4b3c2hd"; - meta = with lib; { + meta = { description = "Upload code to https://gist.github.com (or github enterprise)"; homepage = "http://defunkt.io/gist/"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; platforms = ruby.meta.platforms; }; } diff --git a/pkgs/by-name/gi/git-absorb/package.nix b/pkgs/by-name/gi/git-absorb/package.nix index 2356b3b9d765..45946deb11e1 100644 --- a/pkgs/by-name/gi/git-absorb/package.nix +++ b/pkgs/by-name/gi/git-absorb/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/git-absorb --gen-completions zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/tummychow/git-absorb"; description = "git commit --fixup, but automatic"; - license = [ licenses.bsd3 ]; - maintainers = with maintainers; [ + license = [ lib.licenses.bsd3 ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "git-absorb"; diff --git a/pkgs/by-name/gi/git-agecrypt/package.nix b/pkgs/by-name/gi/git-agecrypt/package.nix index e905da8367b5..d0cc66b65549 100644 --- a/pkgs/by-name/gi/git-agecrypt/package.nix +++ b/pkgs/by-name/gi/git-agecrypt/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage { zlib ]; - meta = with lib; { + meta = { description = "Alternative to git-crypt using age instead of GPG"; homepage = "https://github.com/vlaci/git-agecrypt"; - license = licenses.mpl20; - maintainers = with maintainers; [ kuznetsss ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ kuznetsss ]; mainProgram = "git-agecrypt"; }; } diff --git a/pkgs/by-name/gi/git-aggregator/package.nix b/pkgs/by-name/gi/git-aggregator/package.nix index 3e6f7c93e37d..a9c2f66c3a6c 100644 --- a/pkgs/by-name/gi/git-aggregator/package.nix +++ b/pkgs/by-name/gi/git-aggregator/package.nix @@ -41,11 +41,11 @@ python3Packages.buildPythonApplication rec { git config --global pull.rebase false ''; - meta = with lib; { + meta = { description = "Manage the aggregation of git branches from different remotes to build a consolidated one"; homepage = "https://github.com/acsone/git-aggregator"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ bbjubjub ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ bbjubjub ]; mainProgram = "gitaggregate"; }; } diff --git a/pkgs/by-name/gi/git-annex-remote-googledrive/package.nix b/pkgs/by-name/gi/git-annex-remote-googledrive/package.nix index 0911145b906b..6469d39423b6 100644 --- a/pkgs/by-name/gi/git-annex-remote-googledrive/package.nix +++ b/pkgs/by-name/gi/git-annex-remote-googledrive/package.nix @@ -33,11 +33,11 @@ python3Packages.buildPythonApplication rec { "git_annex_remote_googledrive" ]; - meta = with lib; { + meta = { description = "Git-annex special remote for Google Drive"; homepage = "https://github.com/Lykos153/git-annex-remote-googledrive"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ gravndal ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ gravndal ]; mainProgram = "git-annex-remote-googledrive"; }; } diff --git a/pkgs/by-name/gi/git-annex-remote-rclone/package.nix b/pkgs/by-name/gi/git-annex-remote-rclone/package.nix index 903c0286020b..fb9c6fcebb7d 100644 --- a/pkgs/by-name/gi/git-annex-remote-rclone/package.nix +++ b/pkgs/by-name/gi/git-annex-remote-rclone/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation rec { --prefix PATH ":" "${lib.makeBinPath [ rclone ]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/DanielDent/git-annex-remote-rclone"; description = "Use rclone supported cloud storage providers with git-annex"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = [ maintainers.montag451 ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.montag451 ]; mainProgram = "git-annex-remote-rclone"; }; } diff --git a/pkgs/by-name/gi/git-appraise/package.nix b/pkgs/by-name/gi/git-appraise/package.nix index 5ff8b3e78932..e67cfb39ad6f 100644 --- a/pkgs/by-name/gi/git-appraise/package.nix +++ b/pkgs/by-name/gi/git-appraise/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Distributed code review system for Git repos"; homepage = "https://github.com/google/git-appraise"; - license = licenses.asl20; - maintainers = with maintainers; [ vdemeester ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vdemeester ]; mainProgram = "git-appraise"; }; } diff --git a/pkgs/by-name/gi/git-backdate/package.nix b/pkgs/by-name/gi/git-backdate/package.nix index d81aa5145e2e..a3b4e5c20877 100644 --- a/pkgs/by-name/gi/git-backdate/package.nix +++ b/pkgs/by-name/gi/git-backdate/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Backdate a commit or range of commit to a date or range of dates"; homepage = "https://github.com/rixx/git-backdate"; - license = licenses.wtfpl; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "git-backdate"; }; } diff --git a/pkgs/by-name/gi/git-bars/package.nix b/pkgs/by-name/gi/git-bars/package.nix index ef6cfd929009..d32977f4bb21 100644 --- a/pkgs/by-name/gi/git-bars/package.nix +++ b/pkgs/by-name/gi/git-bars/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication { python3Packages.setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/knadh/git-bars"; description = "Utility for visualising git commit activity as bars on the terminal"; - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; mainProgram = "git-bars"; }; } diff --git a/pkgs/by-name/gi/git-branchless/package.nix b/pkgs/by-name/gi/git-branchless/package.nix index 6e7946dd45f3..e10029c6a2d7 100644 --- a/pkgs/by-name/gi/git-branchless/package.nix +++ b/pkgs/by-name/gi/git-branchless/package.nix @@ -67,12 +67,12 @@ rustPlatform.buildRustPackage rec { "--skip=test_switch_auto_switch_interactive" ]; - meta = with lib; { + meta = { description = "Suite of tools to help you visualize, navigate, manipulate, and repair your commit history"; homepage = "https://github.com/arxanas/git-branchless"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "git-branchless"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nh2 hmenke bryango diff --git a/pkgs/by-name/gi/git-bug-migration/package.nix b/pkgs/by-name/gi/git-bug-migration/package.nix index 4adcc8293f88..f20d15d8f81a 100644 --- a/pkgs/by-name/gi/git-bug-migration/package.nix +++ b/pkgs/by-name/gi/git-bug-migration/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { git config --global user.email 'nobody@localhost' ''; - meta = with lib; { + meta = { description = "Tool for upgrading repositories using git-bug to new versions"; homepage = "https://github.com/MichaelMure/git-bug-migration"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ DeeUnderscore sudoforge ]; diff --git a/pkgs/by-name/gi/git-bug/package.nix b/pkgs/by-name/gi/git-bug/package.nix index 084287222fba..3a7ac839d093 100644 --- a/pkgs/by-name/gi/git-bug/package.nix +++ b/pkgs/by-name/gi/git-bug/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { installManPage doc/man/* ''; - meta = with lib; { + meta = { description = "Distributed bug tracker embedded in Git"; homepage = "https://github.com/git-bug/git-bug"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ royneary DeeUnderscore sudoforge diff --git a/pkgs/by-name/gi/git-cache/package.nix b/pkgs/by-name/gi/git-cache/package.nix index 8cf12ec7ca2b..9ab8bc51cbc2 100644 --- a/pkgs/by-name/gi/git-cache/package.nix +++ b/pkgs/by-name/gi/git-cache/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { install -Dm555 git-cache $out/bin/git-cache ''; - meta = with lib; { + meta = { homepage = "https://github.com/Seb35/git-cache"; - license = licenses.wtfpl; + license = lib.licenses.wtfpl; description = "Program to add and manage a system-wide or user-wide cache for remote git repositories"; mainProgram = "git-cache"; - platforms = platforms.unix; - maintainers = with maintainers; [ maxhearnden ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ maxhearnden ]; }; } diff --git a/pkgs/by-name/gi/git-chain/package.nix b/pkgs/by-name/gi/git-chain/package.nix index 21b15a2469d7..1162c5794346 100644 --- a/pkgs/by-name/gi/git-chain/package.nix +++ b/pkgs/by-name/gi/git-chain/package.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Tool for rebasing a chain of local git branches"; homepage = "https://github.com/dashed/git-chain"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "git-chain"; - maintainers = with maintainers; [ bcyran ]; + maintainers = with lib.maintainers; [ bcyran ]; }; } diff --git a/pkgs/by-name/gi/git-chglog/package.nix b/pkgs/by-name/gi/git-chglog/package.nix index 26b05361c7fc..6cb21cb25425 100644 --- a/pkgs/by-name/gi/git-chglog/package.nix +++ b/pkgs/by-name/gi/git-chglog/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "cmd/git-chglog" ]; - meta = with lib; { + meta = { description = "CHANGELOG generator implemented in Go (Golang)"; homepage = "https://github.com/git-chglog/git-chglog"; - license = licenses.mit; - maintainers = with maintainers; [ ldenefle ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ldenefle ]; mainProgram = "git-chglog"; }; } diff --git a/pkgs/by-name/gi/git-codereview/package.nix b/pkgs/by-name/gi/git-codereview/package.nix index d434f6fda708..29465cb8643a 100644 --- a/pkgs/by-name/gi/git-codereview/package.nix +++ b/pkgs/by-name/gi/git-codereview/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { nativeCheckInputs = [ git ]; - meta = with lib; { + meta = { description = "Manage the code review process for Git changes using a Gerrit server"; homepage = "https://golang.org/x/review/git-codereview"; - license = licenses.bsd3; - maintainers = [ maintainers.edef ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.edef ]; mainProgram = "git-codereview"; }; } diff --git a/pkgs/by-name/gi/git-crecord/package.nix b/pkgs/by-name/gi/git-crecord/package.nix index 230ebe72c5f0..aa4dfb60cc07 100644 --- a/pkgs/by-name/gi/git-crecord/package.nix +++ b/pkgs/by-name/gi/git-crecord/package.nix @@ -23,11 +23,11 @@ python3.pkgs.buildPythonApplication rec { # has no tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/andrewshadura/git-crecord"; description = "Git subcommand to interactively select changes to commit or stage"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ onny ]; mainProgram = "git-crecord"; }; } diff --git a/pkgs/by-name/gi/git-credential-keepassxc/package.nix b/pkgs/by-name/gi/git-credential-keepassxc/package.nix index 3e20e2215b2f..31e932b8facf 100644 --- a/pkgs/by-name/gi/git-credential-keepassxc/package.nix +++ b/pkgs/by-name/gi/git-credential-keepassxc/package.nix @@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec { ++ lib.optional withStrictCaller "strict-caller" ++ lib.optional withAll "all"; - meta = with lib; { + meta = { description = "Helper that allows Git (and shell scripts) to use KeePassXC as credential store"; longDescription = '' git-credential-keepassxc is a Git credential helper that allows Git @@ -37,8 +37,8 @@ rustPlatform.buildRustPackage rec { originally designed for browser extensions. ''; homepage = "https://github.com/Frederick888/git-credential-keepassxc"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "git-credential-keepassxc"; }; } diff --git a/pkgs/by-name/gi/git-crypt/package.nix b/pkgs/by-name/gi/git-crypt/package.nix index 282b079017b1..796852942a32 100644 --- a/pkgs/by-name/gi/git-crypt/package.nix +++ b/pkgs/by-name/gi/git-crypt/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://www.agwa.name/projects/git-crypt"; description = "Transparent file encryption in git"; longDescription = '' @@ -71,9 +71,9 @@ stdenv.mkDerivation rec { entire repository. ''; downloadPage = "https://github.com/AGWA/git-crypt/releases"; - license = licenses.gpl3; - maintainers = with maintainers; [ dochang ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ dochang ]; + platforms = lib.platforms.unix; mainProgram = "git-crypt"; }; diff --git a/pkgs/by-name/gi/git-delete-merged-branches/package.nix b/pkgs/by-name/gi/git-delete-merged-branches/package.nix index 59146cdaf86c..f65bd2808903 100644 --- a/pkgs/by-name/gi/git-delete-merged-branches/package.nix +++ b/pkgs/by-name/gi/git-delete-merged-branches/package.nix @@ -26,10 +26,10 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = [ git ] ++ (with python3Packages; [ parameterized ]); - meta = with lib; { + meta = { description = "Command-line tool to delete merged Git branches"; homepage = "https://github.com/hartwork/git-delete-merged-branches/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/gi/git-dive/package.nix b/pkgs/by-name/gi/git-dive/package.nix index 9ceb21c69260..4056b15cb50e 100644 --- a/pkgs/by-name/gi/git-dive/package.nix +++ b/pkgs/by-name/gi/git-dive/package.nix @@ -55,11 +55,11 @@ rustPlatform.buildRustPackage rec { RUSTONIG_SYSTEM_LIBONIG = true; }; - meta = with lib; { + meta = { description = "Dive into a file's history to find root cause"; homepage = "https://github.com/gitext-rs/git-dive"; changelog = "https://github.com/gitext-rs/git-dive/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/gi/git-extras/package.nix b/pkgs/by-name/gi/git-extras/package.nix index 46e55e487356..49ef593fd3fa 100644 --- a/pkgs/by-name/gi/git-extras/package.nix +++ b/pkgs/by-name/gi/git-extras/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { install -D etc/git-extras-completion.zsh $out/share/zsh/site-functions/_git_extras ''; - meta = with lib; { + meta = { homepage = "https://github.com/tj/git-extras"; description = "GIT utilities -- repo summary, repl, changelog population, author commit percentages and more"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/gi/git-fame/package.nix b/pkgs/by-name/gi/git-fame/package.nix index 2caa22981c83..8ddbacf76b8f 100644 --- a/pkgs/by-name/gi/git-fame/package.nix +++ b/pkgs/by-name/gi/git-fame/package.nix @@ -14,15 +14,15 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "git-fame"; - meta = with lib; { + meta = { description = "Command-line tool that helps you summarize and pretty-print collaborators based on contributions"; homepage = "http://oleander.io/git-fame-rb"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski matthiasbeyer ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "git-fame"; }; } diff --git a/pkgs/by-name/gi/git-fire/package.nix b/pkgs/by-name/gi/git-fire/package.nix index 5916ed953d7e..2966f9ca8d2d 100644 --- a/pkgs/by-name/gi/git-fire/package.nix +++ b/pkgs/by-name/gi/git-fire/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { install -D -m755 $src/git-fire $out/bin/git-fire ''; - meta = with lib; { + meta = { description = '' Push ALL changes in a git repository ''; @@ -27,9 +27,9 @@ stdenv.mkDerivation { In the event of an emergency (fire, etc.), automatically commit all changes/files in a repository, pushing to all known remotes all commits and stashes. ''; homepage = "https://github.com/qw3rtman/git-fire"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ swflint ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ swflint ]; mainProgram = "git-fire"; }; } diff --git a/pkgs/by-name/gi/git-ftp/package.nix b/pkgs/by-name/gi/git-ftp/package.nix index 85e56bb310ba..51ea6ff55fc1 100644 --- a/pkgs/by-name/gi/git-ftp/package.nix +++ b/pkgs/by-name/gi/git-ftp/package.nix @@ -93,12 +93,12 @@ resholve.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Git powered FTP client written as shell script"; homepage = "https://git-ftp.github.io/"; - license = licenses.gpl3; - maintainers = with maintainers; [ tweber ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ tweber ]; + platforms = lib.platforms.unix; mainProgram = "git-ftp"; }; } diff --git a/pkgs/by-name/gi/git-get/package.nix b/pkgs/by-name/gi/git-get/package.nix index 4d100f572c4c..c28eeb0c62cf 100644 --- a/pkgs/by-name/gi/git-get/package.nix +++ b/pkgs/by-name/gi/git-get/package.nix @@ -51,11 +51,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Better way to clone, organize and manage multiple git repositories"; homepage = "https://github.com/grdl/git-get"; - license = licenses.mit; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sumnerevans ]; mainProgram = "git-get"; }; } diff --git a/pkgs/by-name/gi/git-graph/package.nix b/pkgs/by-name/gi/git-graph/package.nix index ecce78b67c6f..9b5b281fd59b 100644 --- a/pkgs/by-name/gi/git-graph/package.nix +++ b/pkgs/by-name/gi/git-graph/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-tN70YyhVkLD5OiYNm64vbY5NtKAG2sFp4Ry6vFpXvtE="; - meta = with lib; { + meta = { description = "Command line tool to show clear git graphs arranged for your branching model"; homepage = "https://github.com/mlange-42/git-graph"; - license = licenses.mit; + license = lib.licenses.mit; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ cafkafk matthiasbeyer ]; diff --git a/pkgs/by-name/gi/git-hound/package.nix b/pkgs/by-name/gi/git-hound/package.nix index e67bc0ba9d76..2ce16af040da 100644 --- a/pkgs/by-name/gi/git-hound/package.nix +++ b/pkgs/by-name/gi/git-hound/package.nix @@ -29,7 +29,7 @@ buildGoModule rec { vendorHash = "sha256-8teIa083oMXm0SjzMP+mGOVAel1Hbsp3TSMhdvqVbQs="; - meta = with lib; { + meta = { description = "Reconnaissance tool for GitHub code search"; longDescription = '' GitHound pinpoints exposed API keys and other sensitive information @@ -37,8 +37,8 @@ buildGoModule rec { and a unique result scoring system. ''; homepage = "https://github.com/tillson/git-hound"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "git-hound"; }; } diff --git a/pkgs/by-name/gi/git-hub/package.nix b/pkgs/by-name/gi/git-hub/package.nix index 33f3ea47d452..70c711a2f829 100644 --- a/pkgs/by-name/gi/git-hub/package.nix +++ b/pkgs/by-name/gi/git-hub/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { rm -r $out/share/{doc,vim} ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Git command line interface to GitHub"; longDescription = '' @@ -46,8 +46,8 @@ stdenv.mkDerivation rec { tasks (like creating and listing pull request or issues) to be accessed directly through the Git command line. ''; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; mainProgram = "git-hub"; }; } diff --git a/pkgs/by-name/gi/git-ignore/package.nix b/pkgs/by-name/gi/git-ignore/package.nix index 6a696219c143..862296ded92f 100644 --- a/pkgs/by-name/gi/git-ignore/package.nix +++ b/pkgs/by-name/gi/git-ignore/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion $assets/git-ignore.{bash,fish} --zsh $assets/_git-ignore ''; - meta = with lib; { + meta = { description = "Quickly and easily fetch .gitignore templates from gitignore.io"; homepage = "https://github.com/sondr3/git-ignore"; changelog = "https://github.com/sondr3/git-ignore/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "git-ignore"; }; diff --git a/pkgs/by-name/gi/git-latexdiff/package.nix b/pkgs/by-name/gi/git-latexdiff/package.nix index c7de4b414380..96dcb2471108 100644 --- a/pkgs/by-name/gi/git-latexdiff/package.nix +++ b/pkgs/by-name/gi/git-latexdiff/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { chmod +x $prefix/bin/git-latexdiff ''; - meta = with lib; { + meta = { description = "View diff on LaTeX source files on the generated PDF files"; homepage = "https://gitlab.com/git-latexdiff/git-latexdiff"; maintainers = [ ]; - license = licenses.bsd3; # https://gitlab.com/git-latexdiff/git-latexdiff/issues/9 - platforms = platforms.unix; + license = lib.licenses.bsd3; # https://gitlab.com/git-latexdiff/git-latexdiff/issues/9 + platforms = lib.platforms.unix; mainProgram = "git-latexdiff"; }; } diff --git a/pkgs/by-name/gi/git-octopus/package.nix b/pkgs/by-name/gi/git-octopus/package.nix index 3fae553d19e6..e82c870c1f18 100644 --- a/pkgs/by-name/gi/git-octopus/package.nix +++ b/pkgs/by-name/gi/git-octopus/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { sha256 = "14p61xk7jankp6gc26xciag9fnvm7r9vcbhclcy23f4ghf4q4sj1"; }; - meta = with lib; { + meta = { homepage = "https://github.com/lesfurets/git-octopus"; description = "Continuous merge workflow"; - license = licenses.lgpl3; - platforms = platforms.unix; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/by-name/gi/git-open/package.nix b/pkgs/by-name/gi/git-open/package.nix index 61dbfbd172d4..64eada668519 100644 --- a/pkgs/by-name/gi/git-open/package.nix +++ b/pkgs/by-name/gi/git-open/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/paulirish/git-open"; description = "Open the GitHub page or website for a repository in your browser"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "git-open"; }; } diff --git a/pkgs/by-name/gi/git-privacy/package.nix b/pkgs/by-name/gi/git-privacy/package.nix index 0a02f7c1ba96..49fe0e6382dc 100644 --- a/pkgs/by-name/gi/git-privacy/package.nix +++ b/pkgs/by-name/gi/git-privacy/package.nix @@ -43,11 +43,11 @@ python3.pkgs.buildPythonApplication rec { "gitprivacy" ]; - meta = with lib; { + meta = { description = "Tool to redact Git author and committer dates"; homepage = "https://github.com/EMPRI-DEVOPS/git-privacy"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "git-privacy"; }; } diff --git a/pkgs/by-name/gi/git-ps-rs/package.nix b/pkgs/by-name/gi/git-ps-rs/package.nix index ab44cfd03c6c..c8da42dad383 100644 --- a/pkgs/by-name/gi/git-ps-rs/package.nix +++ b/pkgs/by-name/gi/git-ps-rs/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { dbus ]; - meta = with lib; { + meta = { description = "Tool for working with a stack of patches"; mainProgram = "gps"; homepage = "https://git-ps.sh/"; - license = licenses.mit; - maintainers = with maintainers; [ alizter ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alizter ]; }; } diff --git a/pkgs/by-name/gi/git-pw/package.nix b/pkgs/by-name/gi/git-pw/package.nix index 083bea01547c..abc62fcbc06a 100644 --- a/pkgs/by-name/gi/git-pw/package.nix +++ b/pkgs/by-name/gi/git-pw/package.nix @@ -47,10 +47,10 @@ python3.pkgs.buildPythonApplication rec { buildInputs = (old.buildInputs or [ ]) ++ [ git ]; }); - meta = with lib; { + meta = { description = "Tool for integrating Git with Patchwork, the web-based patch tracking system"; homepage = "https://github.com/getpatchwork/git-pw"; - license = licenses.mit; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/by-name/gi/git-quick-stats/package.nix b/pkgs/by-name/gi/git-quick-stats/package.nix index b3d3b7231f44..29b7aed3e80c 100644 --- a/pkgs/by-name/gi/git-quick-stats/package.nix +++ b/pkgs/by-name/gi/git-quick-stats/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/git-quick-stats --suffix PATH : ${path} ''; - meta = with lib; { + meta = { homepage = "https://github.com/arzzen/git-quick-stats"; description = "Simple and efficient way to access various statistics in git repository"; - platforms = platforms.all; - maintainers = [ maintainers.kmein ]; - license = licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.kmein ]; + license = lib.licenses.mit; mainProgram = "git-quick-stats"; }; } diff --git a/pkgs/by-name/gi/git-quickfix/package.nix b/pkgs/by-name/gi/git-quickfix/package.nix index f8d99537e5f4..4808c045605c 100644 --- a/pkgs/by-name/gi/git-quickfix/package.nix +++ b/pkgs/by-name/gi/git-quickfix/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-2VhbvhGeQHAbQLW0iBAgl0ICAX/X+PnwcGdodJG2Hsw="; - meta = with lib; { + meta = { description = "Commit changes in your git repository to a new branch without leaving the current branch"; homepage = "https://github.com/siedentop/git-quickfix"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ cafkafk matthiasbeyer ]; diff --git a/pkgs/by-name/gi/git-radar/package.nix b/pkgs/by-name/gi/git-radar/package.nix index 6b53ea4e067b..ddda63be55ac 100644 --- a/pkgs/by-name/gi/git-radar/package.nix +++ b/pkgs/by-name/gi/git-radar/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { ''} ''; - meta = with lib; { + meta = { homepage = "https://github.com/michaeldfallen/git-radar"; - license = licenses.mit; + license = lib.licenses.mit; description = "Tool you can add to your prompt to provide at-a-glance information on your git repo"; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ kamilchm ]; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ kamilchm ]; mainProgram = "git-radar"; }; } diff --git a/pkgs/by-name/gi/git-relevant-history/package.nix b/pkgs/by-name/gi/git-relevant-history/package.nix index cdce229299f2..fdf6d189b3bc 100644 --- a/pkgs/by-name/gi/git-relevant-history/package.nix +++ b/pkgs/by-name/gi/git-relevant-history/package.nix @@ -25,12 +25,12 @@ python3.pkgs.buildPythonApplication { passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Extract only relevant history from git repo"; homepage = "https://github.com/rainlabs-eu/git-relevant-history"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = [ maintainers.bendlas ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bendlas ]; mainProgram = "git-relevant-history"; }; } diff --git a/pkgs/by-name/gi/git-remote-gcrypt/package.nix b/pkgs/by-name/gi/git-remote-gcrypt/package.nix index fc1b830ada71..c7401bf7c92e 100644 --- a/pkgs/by-name/gi/git-remote-gcrypt/package.nix +++ b/pkgs/by-name/gi/git-remote-gcrypt/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { homepage = "https://spwhitton.name/tech/code/git-remote-gcrypt"; description = "Git remote helper for GPG-encrypted remotes"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ellis montag451 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "git-remote-gcrypt"; }; } diff --git a/pkgs/by-name/gi/git-reparent/package.nix b/pkgs/by-name/gi/git-reparent/package.nix index b527e91a7cff..9d3b84620906 100644 --- a/pkgs/by-name/gi/git-reparent/package.nix +++ b/pkgs/by-name/gi/git-reparent/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Git command to recommit HEAD with a new set of parents"; maintainers = [ ]; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; mainProgram = "git-reparent"; }; } diff --git a/pkgs/by-name/gi/git-repo/package.nix b/pkgs/by-name/gi/git-repo/package.nix index 84a6f5bc4c25..938e2676cb27 100644 --- a/pkgs/by-name/gi/git-repo/package.nix +++ b/pkgs/by-name/gi/git-repo/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Android's repo management tool"; longDescription = '' Repo is a Python script based on Git that helps manage many Git @@ -69,9 +69,9 @@ stdenv.mkDerivation rec { to make it easier to work with Git. ''; homepage = "https://android.googlesource.com/tools/repo"; - license = licenses.asl20; - maintainers = with maintainers; [ otavio ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ otavio ]; + platforms = lib.platforms.unix; mainProgram = "repo"; }; } diff --git a/pkgs/by-name/gi/git-secrets/package.nix b/pkgs/by-name/gi/git-secrets/package.nix index 314bdecb74d7..811d6788c7d7 100644 --- a/pkgs/by-name/gi/git-secrets/package.nix +++ b/pkgs/by-name/gi/git-secrets/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Prevents you from committing secrets and credentials into git repositories"; homepage = "https://github.com/awslabs/git-secrets"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; mainProgram = "git-secrets"; }; } diff --git a/pkgs/by-name/gi/git-series/package.nix b/pkgs/by-name/gi/git-series/package.nix index 6ad9cfed752a..2b729d1162a7 100644 --- a/pkgs/by-name/gi/git-series/package.nix +++ b/pkgs/by-name/gi/git-series/package.nix @@ -48,7 +48,7 @@ rustPlatform.buildRustPackage { installManPage ./git-series.1 ''; - meta = with lib; { + meta = { description = "Tool to help with formatting git patches for review on mailing lists"; longDescription = '' git series tracks changes to a patch series over time. git @@ -56,8 +56,8 @@ rustPlatform.buildRustPackage { formats the series for email, and prepares pull requests. ''; homepage = "https://github.com/git-series/git-series"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ edef vmandela aleksana diff --git a/pkgs/by-name/gi/git-sizer/package.nix b/pkgs/by-name/gi/git-sizer/package.nix index f31bd25162ca..a92ac462029b 100644 --- a/pkgs/by-name/gi/git-sizer/package.nix +++ b/pkgs/by-name/gi/git-sizer/package.nix @@ -31,10 +31,10 @@ buildGoModule rec { package = git-sizer; }; - meta = with lib; { + meta = { description = "Compute various size metrics for a Git repository"; homepage = "https://github.com/github/git-sizer"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "git-sizer"; }; diff --git a/pkgs/by-name/gi/git-subrepo/package.nix b/pkgs/by-name/gi/git-subrepo/package.nix index 1d3a84f12436..ad5510fbd2fd 100644 --- a/pkgs/by-name/gi/git-subrepo/package.nix +++ b/pkgs/by-name/gi/git-subrepo/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { --prefix PATH : "${git}/bin" ''; - meta = with lib; { + meta = { homepage = "https://github.com/ingydotnet/git-subrepo"; description = "Git submodule alternative"; mainProgram = "git-subrepo"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ ryantrinkle ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ryantrinkle ]; }; } diff --git a/pkgs/by-name/gi/git-subtrac/package.nix b/pkgs/by-name/gi/git-subtrac/package.nix index 015a601807ff..d62078aff35d 100644 --- a/pkgs/by-name/gi/git-subtrac/package.nix +++ b/pkgs/by-name/gi/git-subtrac/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Keep the content for your git submodules all in one place: the parent repo"; homepage = "https://github.com/apenwarr/git-subtrac"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "git-subtrac"; }; diff --git a/pkgs/by-name/gi/git-team/package.nix b/pkgs/by-name/gi/git-team/package.nix index 6fb27115e1a4..be0bf7bd7a8a 100644 --- a/pkgs/by-name/gi/git-team/package.nix +++ b/pkgs/by-name/gi/git-team/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { --zsh <($out/bin/git-team completion zsh) ''; - meta = with lib; { + meta = { description = "Command line interface for managing and enhancing git commit messages with co-authors"; homepage = "https://github.com/hekmekk/git-team"; - license = licenses.mit; - maintainers = with maintainers; [ lockejan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lockejan ]; mainProgram = "git-team"; }; } diff --git a/pkgs/by-name/gi/git-test/package.nix b/pkgs/by-name/gi/git-test/package.nix index 388be610c084..09d9dc40866a 100644 --- a/pkgs/by-name/gi/git-test/package.nix +++ b/pkgs/by-name/gi/git-test/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { --prefix PATH : "${lib.makeBinPath [ git ]}" ''; - meta = with lib; { + meta = { description = "Test your commits"; homepage = "https://github.com/spotify/git-test"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "git-test"; }; } diff --git a/pkgs/by-name/gi/git-trim/package.nix b/pkgs/by-name/gi/git-trim/package.nix index 1f301e9a3327..88d4fddc4cb9 100644 --- a/pkgs/by-name/gi/git-trim/package.nix +++ b/pkgs/by-name/gi/git-trim/package.nix @@ -47,11 +47,11 @@ rustPlatform.buildRustPackage rec { # fails with sandbox doCheck = false; - meta = with lib; { + meta = { description = "Automatically trims your branches whose tracking remote refs are merged or gone"; homepage = "https://github.com/foriequal0/git-trim"; - license = licenses.mit; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cafkafk ]; mainProgram = "git-trim"; }; } diff --git a/pkgs/by-name/gi/git-vanity-hash/package.nix b/pkgs/by-name/gi/git-vanity-hash/package.nix index 3dcdebcc45be..6179ecc4a2cc 100644 --- a/pkgs/by-name/gi/git-vanity-hash/package.nix +++ b/pkgs/by-name/gi/git-vanity-hash/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage { cp README.md $out/share/doc/git-vanity-hash ''; - meta = with lib; { + meta = { homepage = "https://github.com/prasmussen/git-vanity-hash"; description = "Tool for creating commit hashes with a specific prefix"; - license = [ licenses.mit ]; - maintainers = [ maintainers.kaction ]; + license = [ lib.licenses.mit ]; + maintainers = [ lib.maintainers.kaction ]; mainProgram = "git-vanity-hash"; }; } diff --git a/pkgs/by-name/gi/git-when-merged/package.nix b/pkgs/by-name/gi/git-when-merged/package.nix index d4df916a75c6..f3dec2b4adfc 100644 --- a/pkgs/by-name/gi/git-when-merged/package.nix +++ b/pkgs/by-name/gi/git-when-merged/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { install -D --target-directory $out/bin/ bin/git-when-merged ''; - meta = with lib; { + meta = { description = "Helps you figure out when and why a commit was merged into a branch"; longDescription = '' If you use standard Git workflows, then you create a feature @@ -37,9 +37,9 @@ stdenv.mkDerivation rec { merged into the current branch?" ''; homepage = "https://github.com/mhagger/git-when-merged"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = python3.meta.platforms; - maintainers = with maintainers; [ DamienCassou ]; + maintainers = with lib.maintainers; [ DamienCassou ]; mainProgram = "git-when-merged"; }; } diff --git a/pkgs/by-name/gi/git2-cpp/package.nix b/pkgs/by-name/gi/git2-cpp/package.nix index 18d50cc242a8..9e2bb1eb600c 100644 --- a/pkgs/by-name/gi/git2-cpp/package.nix +++ b/pkgs/by-name/gi/git2-cpp/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/ken-matsui/git2-cpp"; description = "libgit2 bindings for C++"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) # TODO [ ken-matsui ]: tests diff --git a/pkgs/by-name/gi/gita/package.nix b/pkgs/by-name/gi/gita/package.nix index 58e01af67a53..e62487aff2b0 100644 --- a/pkgs/by-name/gi/gita/package.nix +++ b/pkgs/by-name/gi/gita/package.nix @@ -32,11 +32,11 @@ python3Packages.buildPythonApplication rec { installShellCompletion --zsh --name gita ${src}/.gita-completion.zsh ''; - meta = with lib; { + meta = { description = "Command-line tool to manage multiple git repos"; homepage = "https://github.com/nosarthur/gita"; - license = licenses.mit; - maintainers = with maintainers; [ seqizz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seqizz ]; mainProgram = "gita"; }; } diff --git a/pkgs/by-name/gi/gitaly/package.nix b/pkgs/by-name/gi/gitaly/package.nix index 80583db27c1a..13f94550cb55 100644 --- a/pkgs/by-name/gi/gitaly/package.nix +++ b/pkgs/by-name/gi/gitaly/package.nix @@ -95,12 +95,12 @@ buildGoModule ( inherit git; }; - meta = with lib; { + meta = { homepage = "https://gitlab.com/gitlab-org/gitaly"; description = "Git RPC service for handling all the git calls made by GitLab"; - platforms = platforms.linux ++ [ "x86_64-darwin" ]; - teams = [ teams.gitlab ]; - license = licenses.mit; + platforms = lib.platforms.linux ++ [ "x86_64-darwin" ]; + teams = [ lib.teams.gitlab ]; + license = lib.licenses.mit; }; } // commonOpts diff --git a/pkgs/by-name/gi/gitbatch/package.nix b/pkgs/by-name/gi/gitbatch/package.nix index f00fc4d95be1..0eded7a03aff 100644 --- a/pkgs/by-name/gi/gitbatch/package.nix +++ b/pkgs/by-name/gi/gitbatch/package.nix @@ -36,12 +36,12 @@ buildGoModule rec { "-skip=Test(Run|Start|(Fetch|Pull)With(Go|)Git)" ]; - meta = with lib; { + meta = { description = "Running git UI commands"; homepage = "https://github.com/isacikgoz/gitbatch"; - license = licenses.mit; - maintainers = with maintainers; [ teto ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ teto ]; + platforms = with lib.platforms; linux; mainProgram = "gitbatch"; }; } diff --git a/pkgs/by-name/gi/gitea/package.nix b/pkgs/by-name/gi/gitea/package.nix index dc1a47d3f348..e1252cad2683 100644 --- a/pkgs/by-name/gi/gitea/package.nix +++ b/pkgs/by-name/gi/gitea/package.nix @@ -117,11 +117,11 @@ buildGoModule rec { tests = nixosTests.gitea; }; - meta = with lib; { + meta = { description = "Git with a cup of tea"; homepage = "https://about.gitea.com"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ techknowlogick SuperSandro2000 ]; diff --git a/pkgs/by-name/gi/gitflow/package.nix b/pkgs/by-name/gi/gitflow/package.nix index d25041e1bf6d..0ef611cbf86a 100644 --- a/pkgs/by-name/gi/gitflow/package.nix +++ b/pkgs/by-name/gi/gitflow/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { --prefix PATH : ${coreutils}/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/petervanderdoes/gitflow"; description = "Extend git with the Gitflow branching model"; mainProgram = "git-flow"; @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { particularly suited to be utilised to follow Vincent Driessen's branching model. ''; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ offline ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ offline ]; }; } diff --git a/pkgs/by-name/gi/githooks/package.nix b/pkgs/by-name/gi/githooks/package.nix index 262c17e334f6..0c120e80125e 100644 --- a/pkgs/by-name/gi/githooks/package.nix +++ b/pkgs/by-name/gi/githooks/package.nix @@ -76,11 +76,11 @@ buildGoModule rec { inherit version; }; - meta = with lib; { + meta = { description = "Git hooks manager with per-repo and shared Git hooks including version control"; homepage = "https://github.com/gabyx/Githooks"; - license = licenses.mpl20; - maintainers = with maintainers; [ gabyx ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ gabyx ]; mainProgram = "githooks-cli"; }; } diff --git a/pkgs/by-name/gi/github-backup/package.nix b/pkgs/by-name/gi/github-backup/package.nix index dc94caea8a90..bcde380f4357 100644 --- a/pkgs/by-name/gi/github-backup/package.nix +++ b/pkgs/by-name/gi/github-backup/package.nix @@ -42,12 +42,12 @@ python3Packages.buildPythonApplication rec { versionCheckKeepEnvironment = [ "SSL_CERT_FILE" ]; - meta = with lib; { + meta = { description = "Backup a github user or organization"; homepage = "https://github.com/josegonzalez/python-github-backup"; changelog = "https://github.com/josegonzalez/python-github-backup/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "github-backup"; }; } diff --git a/pkgs/by-name/gi/github-commenter/package.nix b/pkgs/by-name/gi/github-commenter/package.nix index ea2798703d05..28f8dd4887bd 100644 --- a/pkgs/by-name/gi/github-commenter/package.nix +++ b/pkgs/by-name/gi/github-commenter/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-DS2cTYQasIKmyqHS3kTpNMA4fuLxSv4n7ZQjeRWE0gI="; - meta = with lib; { + meta = { description = "Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues"; mainProgram = "github-commenter"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/cloudposse/github-commenter"; - maintainers = [ maintainers.mmahut ]; + maintainers = [ lib.maintainers.mmahut ]; }; } diff --git a/pkgs/by-name/gi/gitjacker/package.nix b/pkgs/by-name/gi/gitjacker/package.nix index a438550c4a5c..b9ed5bdeefca 100644 --- a/pkgs/by-name/gi/gitjacker/package.nix +++ b/pkgs/by-name/gi/gitjacker/package.nix @@ -29,7 +29,7 @@ buildGoModule rec { export PATH=$TMPDIR/usr/bin:$PATH ''; - meta = with lib; { + meta = { description = "Leak git repositories from misconfigured websites"; mainProgram = "gitjacker"; longDescription = '' @@ -39,7 +39,7 @@ buildGoModule rec { even where directory listings are disabled. ''; homepage = "https://github.com/liamg/gitjacker"; - license = with licenses; [ unlicense ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ unlicense ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/gi/gitlab-ci-local/package.nix b/pkgs/by-name/gi/gitlab-ci-local/package.nix index 015aa80cb78f..a3671b672f28 100644 --- a/pkgs/by-name/gi/gitlab-ci-local/package.nix +++ b/pkgs/by-name/gi/gitlab-ci-local/package.nix @@ -60,7 +60,7 @@ buildNpmPackage rec { }; }; - meta = with lib; { + meta = { description = "Run gitlab pipelines locally as shell executor or docker executor"; mainProgram = "gitlab-ci-local"; longDescription = '' @@ -69,8 +69,8 @@ buildNpmPackage rec { Get rid of all those dev specific shell scripts and make files. ''; homepage = "https://github.com/firecow/gitlab-ci-local"; - license = licenses.mit; - maintainers = with maintainers; [ pineapplehunter ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pineapplehunter ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gi/gitlab-ci-ls/package.nix b/pkgs/by-name/gi/gitlab-ci-ls/package.nix index fa479241b0eb..f14117206749 100644 --- a/pkgs/by-name/gi/gitlab-ci-ls/package.nix +++ b/pkgs/by-name/gi/gitlab-ci-ls/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { homepage = "https://github.com/alesbrelih/gitlab-ci-ls"; description = "GitLab CI Language Server (gitlab-ci-ls)"; - license = licenses.mit; - maintainers = with maintainers; [ ma27 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ma27 ]; + platforms = lib.platforms.unix; mainProgram = "gitlab-ci-ls"; }; } diff --git a/pkgs/by-name/gi/gitlab-container-registry/package.nix b/pkgs/by-name/gi/gitlab-container-registry/package.nix index 283ef56176b8..14e815e5a632 100644 --- a/pkgs/by-name/gi/gitlab-container-registry/package.nix +++ b/pkgs/by-name/gi/gitlab-container-registry/package.nix @@ -34,14 +34,14 @@ buildGo124Module rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "GitLab Docker toolset to pack, ship, store, and deliver content"; - license = licenses.asl20; - teams = with teams; [ + license = lib.licenses.asl20; + teams = with lib.teams; [ gitlab cyberus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "registry"; }; } diff --git a/pkgs/by-name/gi/gitlab-elasticsearch-indexer/package.nix b/pkgs/by-name/gi/gitlab-elasticsearch-indexer/package.nix index bc20c36d4ad3..da15d43018aa 100644 --- a/pkgs/by-name/gi/gitlab-elasticsearch-indexer/package.nix +++ b/pkgs/by-name/gi/gitlab-elasticsearch-indexer/package.nix @@ -50,11 +50,11 @@ buildGoModule rec { inherit codeParserBindings; }; - meta = with lib; { + meta = { description = "Indexes Git repositories into Elasticsearch for GitLab"; mainProgram = "gitlab-elasticsearch-indexer"; - license = licenses.mit; - maintainers = with maintainers; [ yayayayaka ]; - teams = [ teams.cyberus ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yayayayaka ]; + teams = [ lib.teams.cyberus ]; }; } diff --git a/pkgs/by-name/gi/gitlab-shell/package.nix b/pkgs/by-name/gi/gitlab-shell/package.nix index 4fb8a47b40e2..1f66858b7722 100644 --- a/pkgs/by-name/gi/gitlab-shell/package.nix +++ b/pkgs/by-name/gi/gitlab-shell/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { ''; doCheck = false; - meta = with lib; { + meta = { description = "SSH access and repository management app for GitLab"; homepage = "http://www.gitlab.com/"; - platforms = platforms.linux; - teams = [ teams.gitlab ]; - license = licenses.mit; + platforms = lib.platforms.linux; + teams = [ lib.teams.gitlab ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/gi/gitlab-triage/package.nix b/pkgs/by-name/gi/gitlab-triage/package.nix index 8fdb4c1d773d..995cb334dda8 100644 --- a/pkgs/by-name/gi/gitlab-triage/package.nix +++ b/pkgs/by-name/gi/gitlab-triage/package.nix @@ -11,10 +11,10 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "gitlab-triage"; - meta = with lib; { + meta = { description = "GitLab's issues and merge requests triage, automated"; homepage = "https://gitlab.com/gitlab-org/ruby/gems/gitlab-triage"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "gitlab-triage"; }; diff --git a/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix b/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix index ee4d54e72917..5456fcd64391 100644 --- a/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix +++ b/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix @@ -28,10 +28,10 @@ buildGoModule rec { doCheck = false; prodyVendor = true; - meta = with lib; { + meta = { homepage = "http://www.gitlab.com/"; - platforms = platforms.linux; - teams = [ teams.gitlab ]; - license = licenses.mit; + platforms = lib.platforms.linux; + teams = [ lib.teams.gitlab ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/gi/gitlab/package.nix b/pkgs/by-name/gi/gitlab/package.nix index ae6a6a836cb8..fbe81ee724fe 100644 --- a/pkgs/by-name/gi/gitlab/package.nix +++ b/pkgs/by-name/gi/gitlab/package.nix @@ -321,21 +321,21 @@ stdenv.mkDerivation { }; meta = - with lib; + { homepage = "http://www.gitlab.com/"; - platforms = platforms.linux; - teams = [ teams.gitlab ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.gitlab ]; } // ( if gitlabEnterprise then { - license = licenses.unfreeRedistributable; # https://gitlab.com/gitlab-org/gitlab-ee/raw/master/LICENSE + license = lib.licenses.unfreeRedistributable; # https://gitlab.com/gitlab-org/gitlab-ee/raw/master/LICENSE description = "GitLab Enterprise Edition"; } else { - license = licenses.mit; + license = lib.licenses.mit; description = "GitLab Community Edition"; longDescription = "GitLab Community Edition (CE) is an open source end-to-end software development platform with built-in version control, issue tracking, code review, CI/CD, and more. Self-host GitLab CE on your own servers, in a container, or on a cloud provider."; } diff --git a/pkgs/by-name/gi/gitless/package.nix b/pkgs/by-name/gi/gitless/package.nix index deb6505c025a..d2e14def9779 100644 --- a/pkgs/by-name/gi/gitless/package.nix +++ b/pkgs/by-name/gi/gitless/package.nix @@ -33,12 +33,12 @@ python3.pkgs.buildPythonApplication rec { "gitless" ]; - meta = with lib; { + meta = { description = "Version control system built on top of Git"; homepage = "https://gitless.com/"; - license = licenses.mit; - maintainers = with maintainers; [ cransom ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cransom ]; + platforms = lib.platforms.all; mainProgram = "gl"; }; } diff --git a/pkgs/by-name/gi/gitmux/package.nix b/pkgs/by-name/gi/gitmux/package.nix index 8c8eb0f9aae0..b79ee7938115 100644 --- a/pkgs/by-name/gi/gitmux/package.nix +++ b/pkgs/by-name/gi/gitmux/package.nix @@ -36,11 +36,11 @@ buildGoModule (finalAttrs: { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Git in your tmux status bar"; homepage = "https://github.com/arl/gitmux"; - license = licenses.mit; - maintainers = with maintainers; [ nialov ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nialov ]; mainProgram = "gitmux"; }; }) diff --git a/pkgs/by-name/gi/gitnr/package.nix b/pkgs/by-name/gi/gitnr/package.nix index e88e472bc8f2..a58c7fde246c 100644 --- a/pkgs/by-name/gi/gitnr/package.nix +++ b/pkgs/by-name/gi/gitnr/package.nix @@ -37,12 +37,12 @@ rustPlatform.buildRustPackage rec { # requires internet access doCheck = false; - meta = with lib; { + meta = { description = "Create `.gitignore` files using one or more templates from TopTal, GitHub or your own collection"; homepage = "https://github.com/reemus-dev/gitnr"; changelog = "https://github.com/reemus-dev/gitnr/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "gitnr"; diff --git a/pkgs/by-name/gi/gitnuro/package.nix b/pkgs/by-name/gi/gitnuro/package.nix index f07b58723a7a..24be877f4e39 100644 --- a/pkgs/by-name/gi/gitnuro/package.nix +++ b/pkgs/by-name/gi/gitnuro/package.nix @@ -63,16 +63,16 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "FOSS Git multiplatform client based on Compose and JGit"; homepage = "https://gitnuro.com/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" "aarch64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ zendo ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ zendo ]; mainProgram = "gitnuro"; }; } diff --git a/pkgs/by-name/gi/gitolite/package.nix b/pkgs/by-name/gi/gitolite/package.nix index 2b22cb494190..3c4789cd8f0a 100644 --- a/pkgs/by-name/gi/gitolite/package.nix +++ b/pkgs/by-name/gi/gitolite/package.nix @@ -63,15 +63,15 @@ stdenv.mkDerivation (finalAttrs: { gitolite = nixosTests.gitolite; }; - meta = with lib; { + meta = { description = "Finely-grained git repository hosting"; homepage = "https://gitolite.com/gitolite/index.html"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; maintainers = [ - maintainers.thoughtpolice - maintainers.lassulus - maintainers.tomberek + lib.maintainers.thoughtpolice + lib.maintainers.lassulus + lib.maintainers.tomberek ]; }; }) diff --git a/pkgs/by-name/gi/gitrs/package.nix b/pkgs/by-name/gi/gitrs/package.nix index 5a3fbbfd6dc9..3b8445a04a94 100644 --- a/pkgs/by-name/gi/gitrs/package.nix +++ b/pkgs/by-name/gi/gitrs/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { libz ]; - meta = with lib; { + meta = { description = "Simple, opinionated, tool, written in Rust, for declaratively managing Git repos on your machine"; homepage = "https://github.com/mccurdyc/gitrs"; - license = licenses.mit; - maintainers = with maintainers; [ mccurdyc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mccurdyc ]; mainProgram = "gitrs"; }; } diff --git a/pkgs/by-name/gi/gitstats/package.nix b/pkgs/by-name/gi/gitstats/package.nix index 499338076df8..b82ae925a494 100644 --- a/pkgs/by-name/gi/gitstats/package.nix +++ b/pkgs/by-name/gi/gitstats/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { installManPage doc/gitstats.1 ''; - meta = with lib; { + meta = { homepage = "https://gitstats.sourceforge.net/"; description = "Git history statistics generator"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "gitstats"; }; } diff --git a/pkgs/by-name/gi/gitstatus/package.nix b/pkgs/by-name/gi/gitstatus/package.nix index a116407ca52a..461af2cd7063 100644 --- a/pkgs/by-name/gi/gitstatus/package.nix +++ b/pkgs/by-name/gi/gitstatus/package.nix @@ -115,7 +115,7 @@ stdenv.mkDerivation rec { wait $! ''; - meta = with lib; { + meta = { description = "10x faster implementation of `git status` command"; longDescription = '' To enable the included gitstatus prompt, add the appropriate line to your NixOS configuration: @@ -125,12 +125,12 @@ stdenv.mkDerivation rec { See the project homepage for details on customization. ''; homepage = "https://github.com/romkatv/gitstatus"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mmlb SuperSandro2000 ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "gitstatusd"; }; } diff --git a/pkgs/by-name/gi/gitty/package.nix b/pkgs/by-name/gi/gitty/package.nix index f077396684d6..8c022e05606d 100644 --- a/pkgs/by-name/gi/gitty/package.nix +++ b/pkgs/by-name/gi/gitty/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X=main.Version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/muesli/gitty/"; description = "Contextual information about your git projects, right on the command-line"; - license = licenses.mit; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ izorkin ]; mainProgram = "gitty"; }; } diff --git a/pkgs/by-name/gi/gittyup/package.nix b/pkgs/by-name/gi/gittyup/package.nix index 0f125293276b..e9e94815cae7 100644 --- a/pkgs/by-name/gi/gittyup/package.nix +++ b/pkgs/by-name/gi/gittyup/package.nix @@ -73,15 +73,15 @@ stdenv.mkDerivation rec { rm -rf $out/{include,lib} ''; - meta = with lib; { + meta = { description = "Graphical Git client designed to help you understand and manage your source code history"; homepage = "https://murmele.github.io/Gittyup"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fliegendewurst phijor ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/gi/gitu/package.nix b/pkgs/by-name/gi/gitu/package.nix index 08dab6595f6b..f5cfdcc4d646 100644 --- a/pkgs/by-name/gi/gitu/package.nix +++ b/pkgs/by-name/gi/gitu/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { git ]; - meta = with lib; { + meta = { description = "TUI Git client inspired by Magit"; homepage = "https://github.com/altsem/gitu"; changelog = "https://github.com/altsem/gitu/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ evanrichter ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evanrichter ]; mainProgram = "gitu"; }; } diff --git a/pkgs/by-name/gj/gjo/package.nix b/pkgs/by-name/gj/gjo/package.nix index cdb84410bf18..5e88b0a2b872 100644 --- a/pkgs/by-name/gj/gjo/package.nix +++ b/pkgs/by-name/gj/gjo/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Small utility to create JSON objects"; mainProgram = "gjo"; homepage = "https://github.com/skanehira/gjo"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/by-name/gj/gjs/package.nix b/pkgs/by-name/gj/gjs/package.nix index 0f17692a1d58..4bbf18f7732c 100644 --- a/pkgs/by-name/gj/gjs/package.nix +++ b/pkgs/by-name/gj/gjs/package.nix @@ -169,12 +169,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "JavaScript bindings for GNOME"; homepage = "https://gitlab.gnome.org/GNOME/gjs/blob/master/doc/Home.md"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; mainProgram = "gjs"; - teams = [ teams.gnome ]; + teams = [ lib.teams.gnome ]; inherit (gobject-introspection.meta) platforms badPlatforms; }; }) diff --git a/pkgs/by-name/gl/gl117/package.nix b/pkgs/by-name/gl/gl117/package.nix index ca1990d21b2e..5b490db6525d 100644 --- a/pkgs/by-name/gl/gl117/package.nix +++ b/pkgs/by-name/gl/gl117/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { libtool ]; - meta = with lib; { + meta = { description = "Air combat simulator"; mainProgram = "gl-117"; homepage = "https://sourceforge.net/projects/gl-117"; - maintainers = with maintainers; [ raskin ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gl/gl2ps/package.nix b/pkgs/by-name/gl/gl2ps/package.nix index b52c78494a62..90a7e4bb49e8 100644 --- a/pkgs/by-name/gl/gl2ps/package.nix +++ b/pkgs/by-name/gl/gl2ps/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { libglut ]; - meta = with lib; { + meta = { homepage = "http://geuz.org/gl2ps"; description = "OpenGL to PostScript printing library"; - platforms = platforms.all; - license = licenses.lgpl2; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ raskin twhitehead ]; diff --git a/pkgs/by-name/gl/gl3w/package.nix b/pkgs/by-name/gl/gl3w/package.nix index d1137a0c780e..c34093cd8ca1 100644 --- a/pkgs/by-name/gl/gl3w/package.nix +++ b/pkgs/by-name/gl/gl3w/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Simple OpenGL core profile loading"; homepage = "https://github.com/skaslev/gl3w"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/glabels-qt/package.nix b/pkgs/by-name/gl/glabels-qt/package.nix index 9ba7740f096d..1bc6e4fe0074 100644 --- a/pkgs/by-name/gl/glabels-qt/package.nix +++ b/pkgs/by-name/gl/glabels-qt/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { libsForQt5.qttools ]; - meta = with lib; { + meta = { description = "GLabels Label Designer (Qt/C++)"; homepage = "https://github.com/jimevins/glabels-qt"; - license = licenses.gpl3Only; - maintainers = [ maintainers.matthewcroughan ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.matthewcroughan ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gl/glade/package.nix b/pkgs/by-name/gl/glade/package.nix index 7e8b2d3b3a40..69ee9d8f3b28 100644 --- a/pkgs/by-name/gl/glade/package.nix +++ b/pkgs/by-name/gl/glade/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/glade"; description = "User interface designer for GTK applications"; - teams = [ teams.gnome ]; - license = licenses.lgpl2; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/gladtex/package.nix b/pkgs/by-name/gl/gladtex/package.nix index 528a428978a2..e609200a6ad0 100644 --- a/pkgs/by-name/gl/gladtex/package.nix +++ b/pkgs/by-name/gl/gladtex/package.nix @@ -20,12 +20,12 @@ python3Packages.buildPythonPackage { setuptools ]; - meta = with lib; { + meta = { description = "Embed LaTeX formulas into HTML documents as SVG images"; mainProgram = "gladtex"; homepage = "https://humenda.github.io/GladTeX"; - license = licenses.lgpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pentane ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pentane ]; }; } diff --git a/pkgs/by-name/gl/glasgow/package.nix b/pkgs/by-name/gl/glasgow/package.nix index b453c54e792a..56133af24a68 100644 --- a/pkgs/by-name/gl/glasgow/package.nix +++ b/pkgs/by-name/gl/glasgow/package.nix @@ -108,11 +108,11 @@ python3.pkgs.buildPythonApplication rec { "${nextpnr}/bin/nextpnr-ice40" ]; - meta = with lib; { + meta = { description = "Software for Glasgow, a digital interface multitool"; homepage = "https://github.com/GlasgowEmbedded/Glasgow"; - license = licenses.bsd0; - maintainers = with maintainers; [ + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ flokli thoughtpolice ]; diff --git a/pkgs/by-name/gl/glasstty-ttf/package.nix b/pkgs/by-name/gl/glasstty-ttf/package.nix index a0d6ddeddb20..be84069f6939 100644 --- a/pkgs/by-name/gl/glasstty-ttf/package.nix +++ b/pkgs/by-name/gl/glasstty-ttf/package.nix @@ -9,11 +9,11 @@ runCommand "glasstty-ttf" url = "https://github.com/svofski/glasstty/raw/2c47ac1a0065f8b12d9732257993833d8227e3e5/Glass_TTY_VT220.ttf"; sha256 = "sha256-2NYJaSWNr1Seuqdd7nLjA7tAMs/SAvl3uAe3uDoLLO4="; }; - meta = with lib; { - maintainers = [ maintainers.pkharvey ]; + meta = { + maintainers = [ lib.maintainers.pkharvey ]; homepage = "https://github.com/svofski/glasstty"; - license = licenses.unlicense; - platforms = platforms.all; + license = lib.licenses.unlicense; + platforms = lib.platforms.all; description = "TrueType VT220 font"; }; } diff --git a/pkgs/by-name/gl/glauth/package.nix b/pkgs/by-name/gl/glauth/package.nix index 5f07e0f79d90..b6b72cde5ddf 100644 --- a/pkgs/by-name/gl/glauth/package.nix +++ b/pkgs/by-name/gl/glauth/package.nix @@ -42,12 +42,12 @@ buildGoModule (finalAttrs: { doInstallCheck = true; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "Lightweight LDAP server for development, home use, or CI"; homepage = "https://github.com/glauth/glauth"; changelog = "https://github.com/glauth/glauth/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bjornfor christoph-heiss xddxdd diff --git a/pkgs/by-name/gl/glava/package.nix b/pkgs/by-name/gl/glava/package.nix index 11d739d8d4ae..5f30b2ac82ff 100644 --- a/pkgs/by-name/gl/glava/package.nix +++ b/pkgs/by-name/gl/glava/package.nix @@ -91,15 +91,15 @@ stdenv.mkDerivation rec { chmod +x $out/bin/glava ''; - meta = with lib; { + meta = { description = '' OpenGL audio spectrum visualizer ''; mainProgram = "glava"; homepage = "https://github.com/wacossusca34/glava"; - platforms = platforms.linux; - license = licenses.gpl3; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ eadwu ]; }; diff --git a/pkgs/by-name/gl/glbinding/package.nix b/pkgs/by-name/gl/glbinding/package.nix index b965149ae64d..8987d558b75e 100644 --- a/pkgs/by-name/gl/glbinding/package.nix +++ b/pkgs/by-name/gl/glbinding/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ libGLU ]; - meta = with lib; { + meta = { homepage = "https://github.com/cginternals/glbinding/"; description = "C++ binding for the OpenGL API, generated using the gl.xml specification"; - license = licenses.mit; - maintainers = [ maintainers.mt-caret ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mt-caret ]; }; } diff --git a/pkgs/by-name/gl/glee/package.nix b/pkgs/by-name/gl/glee/package.nix index 47da794093ac..05da6adf308b 100644 --- a/pkgs/by-name/gl/glee/package.nix +++ b/pkgs/by-name/gl/glee/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { sed -i 's/readme/Readme/' cmake_install.cmake ''; - meta = with lib; { + meta = { description = "GL Easy Extension Library"; homepage = "https://sourceforge.net/p/glee/glee/"; - maintainers = with maintainers; [ crertel ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ crertel ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/gl/glib-networking/package.nix b/pkgs/by-name/gl/glib-networking/package.nix index d699dadd2e2a..3fcdfb77f2bc 100644 --- a/pkgs/by-name/gl/glib-networking/package.nix +++ b/pkgs/by-name/gl/glib-networking/package.nix @@ -90,12 +90,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Network-related giomodules for glib"; homepage = "https://gitlab.gnome.org/GNOME/glib-networking"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; badPlatforms = [ # GIO shared modules are mandatory. lib.systems.inspect.platformPatterns.isStatic diff --git a/pkgs/by-name/gl/glib-testing/package.nix b/pkgs/by-name/gl/glib-testing/package.nix index 63fa21fe38b5..d96ed43ed399 100644 --- a/pkgs/by-name/gl/glib-testing/package.nix +++ b/pkgs/by-name/gl/glib-testing/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Test library providing test harnesses and mock classes complementing the classes provided by GLib"; homepage = "https://gitlab.gnome.org/pwithnall/libglib-testing"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/glib/package.nix b/pkgs/by-name/gl/glib/package.nix index b217b4a0dbf4..314b6b26192e 100644 --- a/pkgs/by-name/gl/glib/package.nix +++ b/pkgs/by-name/gl/glib/package.nix @@ -362,21 +362,21 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "C library of programming buildings blocks"; homepage = "https://gitlab.gnome.org/GNOME/glib"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ lovek323 raskin ]; - teams = [ teams.gnome ]; + teams = [ lib.teams.gnome ]; pkgConfigModules = [ "gio-2.0" "gobject-2.0" "gthread-2.0" ]; - platforms = platforms.unix ++ platforms.windows; + platforms = lib.platforms.unix ++ lib.platforms.windows; longDescription = '' GLib provides the core application building blocks for libraries diff --git a/pkgs/by-name/gl/glicol-cli/package.nix b/pkgs/by-name/gl/glicol-cli/package.nix index fea22fd02b22..b3f5b4ddb02d 100644 --- a/pkgs/by-name/gl/glicol-cli/package.nix +++ b/pkgs/by-name/gl/glicol-cli/package.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage rec { alsa-lib ]; - meta = with lib; { + meta = { description = "Cross-platform music live coding in terminal"; homepage = "https://github.com/glicol/glicol-cli"; changelog = "https://github.com/glicol/glicol-cli/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "glicol-cli"; # The last successful Darwin Hydra build was in 2023 diff --git a/pkgs/by-name/gl/glide-media-player/package.nix b/pkgs/by-name/gl/glide-media-player/package.nix index 6049b993a788..59773d9f34b2 100644 --- a/pkgs/by-name/gl/glide-media-player/package.nix +++ b/pkgs/by-name/gl/glide-media-player/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Linux/macOS media player based on GStreamer and GTK"; homepage = "https://philn.github.io/glide"; - license = licenses.mit; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aleksana ]; mainProgram = "glide"; # Required gdk4-{wayland,x11} and gstreamer-gl not available on darwin - platforms = subtractLists platforms.darwin platforms.unix; + platforms = subtractLists lib.platforms.darwin lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/glider/package.nix b/pkgs/by-name/gl/glider/package.nix index 86d33e603021..648ad880799f 100644 --- a/pkgs/by-name/gl/glider/package.nix +++ b/pkgs/by-name/gl/glider/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { install -Dm444 -t "$out/lib/systemd/system/" systemd/glider@.service ''; - meta = with lib; { + meta = { homepage = "https://github.com/nadoo/glider"; description = "Forward proxy with multiple protocols support"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "glider"; - maintainers = with maintainers; [ oluceps ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ oluceps ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gl/gllvm/package.nix b/pkgs/by-name/gl/gllvm/package.nix index 6b983cd21ef3..648b4c4183ed 100644 --- a/pkgs/by-name/gl/gllvm/package.nix +++ b/pkgs/by-name/gl/gllvm/package.nix @@ -27,10 +27,10 @@ buildGoModule { ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ getconf ]; - meta = with lib; { + meta = { homepage = "https://github.com/SRI-CSL/gllvm"; description = "Whole Program LLVM: wllvm ported to go"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gl/glm/generic.nix b/pkgs/by-name/gl/glm/generic.nix index f7d024ab81cb..376706d0028b 100644 --- a/pkgs/by-name/gl/glm/generic.nix +++ b/pkgs/by-name/gl/glm/generic.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { cp -v ../doc/manual.pdf $doc/share/doc/glm ''; - meta = with lib; { + meta = { description = "OpenGL Mathematics library for C++"; longDescription = '' OpenGL Mathematics (GLM) is a header only C++ mathematics library for @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { specification and released under the MIT license. ''; homepage = "https://github.com/g-truc/glm"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; # https://github.com/g-truc/glm/issues/897 indicates that packing isn't implemented properly on non-LE. # Patch from https://github.com/g-truc/glm/pull/1001 currently relies on Linux-only header. broken = !stdenv.hostPlatform.isLittleEndian && !stdenv.hostPlatform.isLinux; - maintainers = with maintainers; [ smancill ]; + maintainers = with lib.maintainers; [ smancill ]; }; } diff --git a/pkgs/by-name/gl/glmark2/package.nix b/pkgs/by-name/gl/glmark2/package.nix index 9dffc8e1e928..b20f467468e7 100644 --- a/pkgs/by-name/gl/glmark2/package.nix +++ b/pkgs/by-name/gl/glmark2/package.nix @@ -59,15 +59,15 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "OpenGL (ES) 2.0 benchmark"; homepage = "https://github.com/glmark2/glmark2"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' glmark2 is a benchmark for OpenGL (ES) 2.0. It uses only the subset of the OpenGL 2.0 API that is compatible with OpenGL ES 2.0. ''; - platforms = platforms.linux; - maintainers = [ maintainers.wmertens ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.wmertens ]; }; } diff --git a/pkgs/by-name/gl/global-platform-pro/package.nix b/pkgs/by-name/gl/global-platform-pro/package.nix index f44bb13b4ca0..1bc0cc605163 100644 --- a/pkgs/by-name/gl/global-platform-pro/package.nix +++ b/pkgs/by-name/gl/global-platform-pro/package.nix @@ -69,7 +69,7 @@ maven.buildMavenPackage rec { --prefix LD_LIBRARY_PATH : "${lib.getLib pcsclite}/lib" ''; - meta = with lib; { + meta = { description = "Command-line utility for managing applets and keys on Java Cards"; longDescription = '' This command-line utility can be used to manage applets and keys @@ -79,11 +79,11 @@ maven.buildMavenPackage rec { If you run NixOS, it can be enabled with `services.pcscd.enable = true;`. ''; homepage = "https://github.com/martinpaljak/GlobalPlatformPro"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = with licenses; [ lgpl3 ]; + license = with lib.licenses; [ lgpl3 ]; mainProgram = "gp"; }; } diff --git a/pkgs/by-name/gl/global/package.nix b/pkgs/by-name/gl/global/package.nix index ebbcc2ac7cdf..ea8bd7e7c73f 100644 --- a/pkgs/by-name/gl/global/package.nix +++ b/pkgs/by-name/gl/global/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { --prefix PYTHONPATH : "$(toPythonPath ${pygments})" ''; - meta = with lib; { + meta = { description = "Source code tag system"; longDescription = '' GNU GLOBAL is a source code tagging system that works the same way @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { operating system like GNU and BSD. ''; homepage = "https://www.gnu.org/software/global/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pSub peterhoeg ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; changelog = "https://cvs.savannah.gnu.org/viewvc/global/global/NEWS?view=markup&pathrev=VERSION-${ lib.replaceStrings [ "." ] [ "_" ] version }"; diff --git a/pkgs/by-name/gl/globalarrays/package.nix b/pkgs/by-name/gl/globalarrays/package.nix index f34c7e388689..161675e59669 100644 --- a/pkgs/by-name/gl/globalarrays/package.nix +++ b/pkgs/by-name/gl/globalarrays/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Global Arrays Programming Models"; homepage = "http://hpc.pnl.gov/globalarrays/"; - maintainers = [ maintainers.markuskowa ]; - license = licenses.bsd3; - platforms = platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gl/globalping-cli/package.nix b/pkgs/by-name/gl/globalping-cli/package.nix index b4ae966e8c29..6c7aef3bec82 100644 --- a/pkgs/by-name/gl/globalping-cli/package.nix +++ b/pkgs/by-name/gl/globalping-cli/package.nix @@ -61,11 +61,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Simple CLI tool to run networking commands remotely from hundreds of globally distributed servers"; homepage = "https://www.jsdelivr.com/globalping/cli"; - license = licenses.mpl20; - maintainers = with maintainers; [ xyenon ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ xyenon ]; mainProgram = "globalping"; }; } diff --git a/pkgs/by-name/gl/globe-cli/package.nix b/pkgs/by-name/gl/globe-cli/package.nix index 09d7262a5603..5851c4917bff 100644 --- a/pkgs/by-name/gl/globe-cli/package.nix +++ b/pkgs/by-name/gl/globe-cli/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pcmxtkj3+sS0TytQjrfQLc6qm2JUxtp82VNyvybl9vU="; - meta = with lib; { + meta = { description = "Display an interactive ASCII globe in your terminal"; homepage = "https://github.com/adamsky/globe"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ devhell ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ devhell ]; mainProgram = "globe"; }; } diff --git a/pkgs/by-name/gl/globulation2/package.nix b/pkgs/by-name/gl/globulation2/package.nix index f603987a9b06..7c16d0838cb6 100644 --- a/pkgs/by-name/gl/globulation2/package.nix +++ b/pkgs/by-name/gl/globulation2/package.nix @@ -100,12 +100,12 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lboost_system"; - meta = with lib; { + meta = { description = "RTS without micromanagement"; mainProgram = "glob2"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; }; passthru.updateInfo.downloadPage = "http://globulation2.org/wiki/Download_and_Install"; diff --git a/pkgs/by-name/gl/glog/package.nix b/pkgs/by-name/gl/glog/package.nix index 8fef82e373e5..cfe37529d3b3 100644 --- a/pkgs/by-name/gl/glog/package.nix +++ b/pkgs/by-name/gl/glog/package.nix @@ -91,12 +91,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/google/glog"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "Library for application-level logging"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nh2 r-burns ]; diff --git a/pkgs/by-name/gl/gloox/package.nix b/pkgs/by-name/gl/gloox/package.nix index b4d490c2176a..8eb315e6c5c4 100644 --- a/pkgs/by-name/gl/gloox/package.nix +++ b/pkgs/by-name/gl/gloox/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { ++ lib.optional sslSupport openssl ++ lib.optional idnSupport libidn; - meta = with lib; { + meta = { description = "Portable high-level Jabber/XMPP library for C++"; mainProgram = "gloox-config"; homepage = "http://camaya.net/gloox"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # The last successful Darwin Hydra build was in 2023 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/gl/glowing-bear/package.nix b/pkgs/by-name/gl/glowing-bear/package.nix index f1a352c8e773..2f2f4b1e98d6 100644 --- a/pkgs/by-name/gl/glowing-bear/package.nix +++ b/pkgs/by-name/gl/glowing-bear/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { cp -R 3rdparty assets css directives js $out ''; - meta = with lib; { + meta = { description = "Web client for Weechat"; homepage = "https://github.com/glowing-bear/glowing-bear"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/glpaper/package.nix b/pkgs/by-name/gl/glpaper/package.nix index 05603746053c..ae19243afdb8 100644 --- a/pkgs/by-name/gl/glpaper/package.nix +++ b/pkgs/by-name/gl/glpaper/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation { libGL ]; - meta = with lib; { + meta = { description = "Wallpaper program for wlroots based Wayland compositors such as sway that allows you to render glsl shaders as your wallpaper"; mainProgram = "glpaper"; homepage = "https://hg.sr.ht/~scoopta/glpaper"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ccellado ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ccellado ]; }; } diff --git a/pkgs/by-name/gl/glpk/package.nix b/pkgs/by-name/gl/glpk/package.nix index ab7cae435b80..463addadca62 100644 --- a/pkgs/by-name/gl/glpk/package.nix +++ b/pkgs/by-name/gl/glpk/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "GNU Linear Programming Kit"; longDescription = '' @@ -73,10 +73,10 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.gnu.org/software/glpk/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; - teams = [ teams.sage ]; + teams = [ lib.teams.sage ]; mainProgram = "glpsol"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gl/glpng/package.nix b/pkgs/by-name/gl/glpng/package.nix index 6ba58d88b843..39ef641c4d0d 100644 --- a/pkgs/by-name/gl/glpng/package.nix +++ b/pkgs/by-name/gl/glpng/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://repo.or.cz/glpng.git/blob_plain/HEAD:/glpng.htm"; description = "PNG loader library for OpenGL"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/glslang/package.nix b/pkgs/by-name/gl/glslang/package.nix index 51a7e8699a67..283aa59dd2e4 100644 --- a/pkgs/by-name/gl/glslang/package.nix +++ b/pkgs/by-name/gl/glslang/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { ln -s $bin/bin/glslang $bin/bin/glslangValidator ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Khronos reference front-end for GLSL and ESSL"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.ralith ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ralith ]; }; } diff --git a/pkgs/by-name/gl/glslviewer/package.nix b/pkgs/by-name/gl/glslviewer/package.nix index 69e934c20603..ed3a269789fa 100644 --- a/pkgs/by-name/gl/glslviewer/package.nix +++ b/pkgs/by-name/gl/glslviewer/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { ]; cmakeFlags = [ "-DCMAKE_POLICY_VERSION_MINIMUM=3.20" ]; - meta = with lib; { + meta = { description = "Live GLSL coding renderer"; homepage = "https://patriciogonzalezvivo.com/2015/glslViewer/"; - license = licenses.bsd3; - maintainers = [ maintainers.hodapp ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.hodapp ]; + platforms = lib.platforms.unix; mainProgram = "glslViewer"; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/gl/glucose/package.nix b/pkgs/by-name/gl/glucose/package.nix index 379fb82f6ae9..c764d02da4b1 100644 --- a/pkgs/by-name/gl/glucose/package.nix +++ b/pkgs/by-name/gl/glucose/package.nix @@ -39,14 +39,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Modern, parallel SAT solver (${ if enableUnfree then "parallel" else "sequential" } version)"; mainProgram = "glucose"; homepage = "https://www.labri.fr/perso/lsimon/research/glucose/"; - license = if enableUnfree then licenses.unfreeRedistributable else licenses.mit; - platforms = platforms.unix; + license = if enableUnfree then lib.licenses.unfreeRedistributable else lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gl/gluesql/package.nix b/pkgs/by-name/gl/gluesql/package.nix index f0f5b6e53669..f37eaad0a778 100644 --- a/pkgs/by-name/gl/gluesql/package.nix +++ b/pkgs/by-name/gl/gluesql/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Rust library for SQL databases"; homepage = "https://github.com/gluesql/gluesql"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gl/glui/package.nix b/pkgs/by-name/gl/glui/package.nix index a703550a7ded..4002e3479fbe 100644 --- a/pkgs/by-name/gl/glui/package.nix +++ b/pkgs/by-name/gl/glui/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { cp LICENSE.txt "$out/share/glui/doc" ''; - meta = with lib; { + meta = { description = "User interface library using OpenGL"; - license = licenses.zlib; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; + license = lib.licenses.zlib; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gl/glusterfs/package.nix b/pkgs/by-name/gl/glusterfs/package.nix index 1b89ddca3f04..4a615f3927e4 100644 --- a/pkgs/by-name/gl/glusterfs/package.nix +++ b/pkgs/by-name/gl/glusterfs/package.nix @@ -259,11 +259,11 @@ stdenv.mkDerivation rec { glusterfs = nixosTests.glusterfs; }; - meta = with lib; { + meta = { description = "Distributed storage system"; homepage = "https://www.gluster.org"; - license = licenses.lgpl3Plus; # dual licese: choice of lgpl3Plus or gpl2 - maintainers = [ maintainers.raskin ]; - platforms = with platforms; linux ++ freebsd; + license = lib.licenses.lgpl3Plus; # dual licese: choice of lgpl3Plus or gpl2 + maintainers = [ lib.maintainers.raskin ]; + platforms = with lib.platforms; linux ++ freebsd; }; } diff --git a/pkgs/by-name/gl/glycin-loaders/package.nix b/pkgs/by-name/gl/glycin-loaders/package.nix index 00a6c7258dba..ea0eb152f4d4 100644 --- a/pkgs/by-name/gl/glycin-loaders/package.nix +++ b/pkgs/by-name/gl/glycin-loaders/package.nix @@ -108,14 +108,14 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Glycin loaders for several formats"; homepage = "https://gitlab.gnome.org/GNOME/glycin"; - teams = [ teams.gnome ]; - license = with licenses; [ + teams = [ lib.teams.gnome ]; + license = with lib.licenses; [ mpl20 # or lgpl21Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gl/glyr/package.nix b/pkgs/by-name/gl/glyr/package.nix index a4745c7d1be5..985f54bcc692 100644 --- a/pkgs/by-name/gl/glyr/package.nix +++ b/pkgs/by-name/gl/glyr/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { curl ]; - meta = with lib; { + meta = { description = "Music related metadata searchengine"; homepage = "https://github.com/sahib/glyr"; - license = licenses.lgpl3; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.sternenseemann ]; mainProgram = "glyrc"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gm/gmailctl/package.nix b/pkgs/by-name/gm/gmailctl/package.nix index d31ccb008fcb..b642ca14dabd 100644 --- a/pkgs/by-name/gm/gmailctl/package.nix +++ b/pkgs/by-name/gm/gmailctl/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Declarative configuration for Gmail filters"; homepage = "https://github.com/mbrt/gmailctl"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar SuperSandro2000 ]; diff --git a/pkgs/by-name/gm/gmetronome/package.nix b/pkgs/by-name/gm/gmetronome/package.nix index ed9a6bc98205..749d4834bda7 100644 --- a/pkgs/by-name/gm/gmetronome/package.nix +++ b/pkgs/by-name/gm/gmetronome/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { libpulseaudio ]; - meta = with lib; { + meta = { description = "Free software metronome and tempo measurement tool"; homepage = "https://gitlab.gnome.org/dqpb/gmetronome"; changelog = "https://gitlab.gnome.org/dqpb/gmetronome/-/blob/${src.rev}/NEWS"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ aleksana ]; mainProgram = "gmetronome"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/gm/gmid/package.nix b/pkgs/by-name/gm/gmid/package.nix index 28b52a9eae45..6bc88339d170 100644 --- a/pkgs/by-name/gm/gmid/package.nix +++ b/pkgs/by-name/gm/gmid/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Simple and secure Gemini server"; homepage = "https://gmid.omarpolo.com/"; changelog = "https://gmid.omarpolo.com/changelog.html"; - license = licenses.isc; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gm/gmm/package.nix b/pkgs/by-name/gm/gmm/package.nix index 3118fdfc76e4..eb3360252c9a 100644 --- a/pkgs/by-name/gm/gmm/package.nix +++ b/pkgs/by-name/gm/gmm/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-FesZQwEbkmZaqzsC7PPO3hz4nqFakAb4HyuizWYqoCs="; }; - meta = with lib; { + meta = { description = "Generic C++ template library for sparse, dense and skyline matrices"; homepage = "http://getfem.org/gmm.html"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gm/gmnitohtml/package.nix b/pkgs/by-name/gm/gmnitohtml/package.nix index 70efb122a33c..0a127f299cf1 100644 --- a/pkgs/by-name/gm/gmnitohtml/package.nix +++ b/pkgs/by-name/gm/gmnitohtml/package.nix @@ -44,7 +44,7 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~adnano/gmnitohtml"; changelog = "https://git.sr.ht/~adnano/gmnitohtml/log"; description = "Gemini text to HTML converter"; @@ -52,8 +52,8 @@ buildGoModule rec { he gmnitohtml utility reads Gemini text from the standard input and writes HTML to the standard output. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jk sikmir ]; diff --git a/pkgs/by-name/gm/gmqcc/package.nix b/pkgs/by-name/gm/gmqcc/package.nix index 084e04450678..3aba2af8d3c4 100644 --- a/pkgs/by-name/gm/gmqcc/package.nix +++ b/pkgs/by-name/gm/gmqcc/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://graphitemaster.github.io/gmqcc/"; description = "Modern QuakeC compiler"; mainProgram = "gmqcc"; @@ -39,6 +39,6 @@ stdenv.mkDerivation { ''; license = lib.licenses.mit; maintainers = with lib.maintainers; [ necrophcodr ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnaural/package.nix b/pkgs/by-name/gn/gnaural/package.nix index 918f0d770d25..0decf212d0fb 100644 --- a/pkgs/by-name/gn/gnaural/package.nix +++ b/pkgs/by-name/gn/gnaural/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { rm -rf $out/share/gnome ''; - meta = with lib; { + meta = { description = "Programmable auditory binaural-beat synthesizer"; homepage = "https://gnaural.sourceforge.net/"; - license = with licenses; [ gpl2Only ]; + license = with lib.licenses; [ gpl2Only ]; mainProgram = "gnaural"; }; } diff --git a/pkgs/by-name/gn/gnet/package.nix b/pkgs/by-name/gn/gnet/package.nix index ab68ef5f2ef3..24ec6440aa1e 100644 --- a/pkgs/by-name/gn/gnet/package.nix +++ b/pkgs/by-name/gn/gnet/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = with lib; { + meta = { description = "Network library, written in C, object-oriented, and built upon GLib"; homepage = "https://developer.gnome.org/gnet/"; - license = licenses.lgpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/gn/gnirehtet/package.nix b/pkgs/by-name/gn/gnirehtet/package.nix index 7ec66906f42a..b441df9af785 100644 --- a/pkgs/by-name/gn/gnirehtet/package.nix +++ b/pkgs/by-name/gn/gnirehtet/package.nix @@ -48,7 +48,7 @@ rustPlatform.buildRustPackage rec { --set ADB ${androidenv.androidPkgs.platform-tools}/bin/adb ''; - meta = with lib; { + meta = { description = "Reverse tethering over adb for Android"; mainProgram = "gnirehtet"; longDescription = '' @@ -57,12 +57,12 @@ rustPlatform.buildRustPackage rec { This relies on adb, make sure you have the required permissions/udev rules. ''; homepage = "https://github.com/Genymobile/gnirehtet"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # gnirehtet.apk ]; - license = licenses.asl20; - maintainers = with maintainers; [ symphorien ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ symphorien ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnmic/package.nix b/pkgs/by-name/gn/gnmic/package.nix index 391c753e8e4e..a11b22ddf86a 100644 --- a/pkgs/by-name/gn/gnmic/package.nix +++ b/pkgs/by-name/gn/gnmic/package.nix @@ -44,12 +44,12 @@ buildGoModule rec { --zsh <(${emulator} $out/bin/gnmic completion zsh) ''; - meta = with lib; { + meta = { description = "gNMI CLI client and collector"; homepage = "https://gnmic.openconfig.net/"; changelog = "https://github.com/openconfig/gnmic/releases/tag/${src.rev}"; - license = licenses.asl20; - maintainers = with maintainers; [ vincentbernat ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vincentbernat ]; mainProgram = "gnmic"; }; } diff --git a/pkgs/by-name/gn/gnome-2048/package.nix b/pkgs/by-name/gn/gnome-2048/package.nix index b1fdc633125d..95c714747d45 100644 --- a/pkgs/by-name/gn/gnome-2048/package.nix +++ b/pkgs/by-name/gn/gnome-2048/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-2048"; changelog = "https://gitlab.gnome.org/GNOME/gnome-2048/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Obtain the 2048 tile"; mainProgram = "gnome-2048"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-applets/package.nix b/pkgs/by-name/gn/gnome-applets/package.nix index 5d8b8178a4b4..671e7c710efa 100644 --- a/pkgs/by-name/gn/gnome-applets/package.nix +++ b/pkgs/by-name/gn/gnome-applets/package.nix @@ -72,13 +72,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Applets for use with the GNOME panel"; mainProgram = "cpufreq-selector"; homepage = "https://gitlab.gnome.org/GNOME/gnome-applets"; changelog = "https://gitlab.gnome.org/GNOME/gnome-applets/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-autoar/package.nix b/pkgs/by-name/gn/gnome-autoar/package.nix index 467b32307c63..0f1e22be31c1 100644 --- a/pkgs/by-name/gn/gnome-autoar/package.nix +++ b/pkgs/by-name/gn/gnome-autoar/package.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { - platforms = platforms.linux; - teams = [ teams.gnome ]; - license = licenses.lgpl21Plus; + meta = { + platforms = lib.platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl21Plus; description = "Library to integrate compressed files management with GNOME"; }; } diff --git a/pkgs/by-name/gn/gnome-bluetooth/package.nix b/pkgs/by-name/gn/gnome-bluetooth/package.nix index 14f5865c7dab..bf1fc774fe50 100644 --- a/pkgs/by-name/gn/gnome-bluetooth/package.nix +++ b/pkgs/by-name/gn/gnome-bluetooth/package.nix @@ -78,13 +78,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-bluetooth"; changelog = "https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Application that lets you manage Bluetooth in the GNOME desktop"; mainProgram = "bluetooth-sendto"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-bluetooth_1_0/package.nix b/pkgs/by-name/gn/gnome-bluetooth_1_0/package.nix index f6ceac6ae176..94eee2951a81 100644 --- a/pkgs/by-name/gn/gnome-bluetooth_1_0/package.nix +++ b/pkgs/by-name/gn/gnome-bluetooth_1_0/package.nix @@ -100,12 +100,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://help.gnome.org/users/gnome-bluetooth/stable/index.html.en"; description = "Application that let you manage Bluetooth in the GNOME destkop"; mainProgram = "bluetooth-sendto"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-boxes/package.nix b/pkgs/by-name/gn/gnome-boxes/package.nix index 9607fe28b216..a6f4d2469daa 100644 --- a/pkgs/by-name/gn/gnome-boxes/package.nix +++ b/pkgs/by-name/gn/gnome-boxes/package.nix @@ -131,12 +131,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-boxes"; }; }; - meta = with lib; { + meta = { description = "Simple GNOME 3 application to access remote or virtual systems"; mainProgram = "gnome-boxes"; homepage = "https://apps.gnome.org/Boxes/"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gn/gnome-browser-connector/package.nix b/pkgs/by-name/gn/gnome-browser-connector/package.nix index e166952c78ac..08f526a7e70c 100644 --- a/pkgs/by-name/gn/gnome-browser-connector/package.nix +++ b/pkgs/by-name/gn/gnome-browser-connector/package.nix @@ -56,14 +56,14 @@ buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Native host connector for the GNOME Shell browser extension"; homepage = "https://gitlab.gnome.org/GNOME/gnome-browser-connector"; longDescription = '' To use the integration, install the [browser extension](https://gitlab.gnome.org/GNOME/gnome-browser-extension), and then set `services.gnome.gnome-browser-connector.enable` to `true`. ''; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-builder/package.nix b/pkgs/by-name/gn/gnome-builder/package.nix index cba93a657428..ac949d15e660 100644 --- a/pkgs/by-name/gn/gnome-builder/package.nix +++ b/pkgs/by-name/gn/gnome-builder/package.nix @@ -163,7 +163,7 @@ stdenv.mkDerivation (finalAttrs: { packageName = "gnome-builder"; }; - meta = with lib; { + meta = { description = "IDE for writing GNOME-based software"; longDescription = '' Global search, auto-completion, source code map, documentation @@ -176,9 +176,9 @@ stdenv.mkDerivation (finalAttrs: { appropriate dependencies loaded. ''; homepage = "https://apps.gnome.org/Builder/"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; mainProgram = "gnome-builder"; }; }) diff --git a/pkgs/by-name/gn/gnome-calculator/package.nix b/pkgs/by-name/gn/gnome-calculator/package.nix index d7679eb92019..c9ce36adfabf 100644 --- a/pkgs/by-name/gn/gnome-calculator/package.nix +++ b/pkgs/by-name/gn/gnome-calculator/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Calculator/"; description = "Application that solves mathematical equations and is suitable as a default application in a Desktop environment"; mainProgram = "gnome-calculator"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-calendar/package.nix b/pkgs/by-name/gn/gnome-calendar/package.nix index 37bc7f32d6a8..2c4a5257766e 100644 --- a/pkgs/by-name/gn/gnome-calendar/package.nix +++ b/pkgs/by-name/gn/gnome-calendar/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Calendar/"; description = "Simple and beautiful calendar application for GNOME"; mainProgram = "gnome-calendar"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-characters/package.nix b/pkgs/by-name/gn/gnome-characters/package.nix index a1145af29341..b537f0cdf421 100644 --- a/pkgs/by-name/gn/gnome-characters/package.nix +++ b/pkgs/by-name/gn/gnome-characters/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-characters"; }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Characters/"; description = "Simple utility application to find and insert unusual characters"; mainProgram = "gnome-characters"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-chess/package.nix b/pkgs/by-name/gn/gnome-chess/package.nix index f1001c6026aa..52df36c8f2da 100644 --- a/pkgs/by-name/gn/gnome-chess/package.nix +++ b/pkgs/by-name/gn/gnome-chess/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-chess"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-chess"; description = "Play the classic two-player boardgame of chess"; mainProgram = "gnome-chess"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-color-manager/package.nix b/pkgs/by-name/gn/gnome-color-manager/package.nix index 27bba37f42af..e16788cb684c 100644 --- a/pkgs/by-name/gn/gnome-color-manager/package.nix +++ b/pkgs/by-name/gn/gnome-color-manager/package.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Set of graphical utilities for color management to be used in the GNOME desktop"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-common/package.nix b/pkgs/by-name/gn/gnome-common/package.nix index 592b7e8754a8..c5aa6f3f92d9 100644 --- a/pkgs/by-name/gn/gnome-common/package.nix +++ b/pkgs/by-name/gn/gnome-common/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { automake ]; # autogen.sh which is using gnome-common tends to require which - meta = with lib; { - teams = [ teams.gnome ]; + meta = { + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gn/gnome-connections/package.nix b/pkgs/by-name/gn/gnome-connections/package.nix index 4694bc8cab2e..5f9586ae53a5 100644 --- a/pkgs/by-name/gn/gnome-connections/package.nix +++ b/pkgs/by-name/gn/gnome-connections/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-connections"; changelog = "https://gitlab.gnome.org/GNOME/gnome-connections/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Remote desktop client for the GNOME desktop environment"; mainProgram = "gnome-connections"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-console/package.nix b/pkgs/by-name/gn/gnome-console/package.nix index dca8e48b97ec..f350b51970b9 100644 --- a/pkgs/by-name/gn/gnome-console/package.nix +++ b/pkgs/by-name/gn/gnome-console/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.kgx; - meta = with lib; { + meta = { description = "Simple user-friendly terminal emulator for the GNOME desktop"; homepage = "https://gitlab.gnome.org/GNOME/console"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ zhaofengli ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ zhaofengli ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; mainProgram = "kgx"; }; } diff --git a/pkgs/by-name/gn/gnome-contacts/package.nix b/pkgs/by-name/gn/gnome-contacts/package.nix index 57f1fcf4655b..ac37f6d7919d 100644 --- a/pkgs/by-name/gn/gnome-contacts/package.nix +++ b/pkgs/by-name/gn/gnome-contacts/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-contacts"; }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Contacts/"; description = "GNOME’s integrated address book"; mainProgram = "gnome-contacts"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-control-center/package.nix b/pkgs/by-name/gn/gnome-control-center/package.nix index 2c1419517a7b..4c71dd94d222 100644 --- a/pkgs/by-name/gn/gnome-control-center/package.nix +++ b/pkgs/by-name/gn/gnome-control-center/package.nix @@ -210,11 +210,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Utilities to configure the GNOME desktop"; mainProgram = "gnome-control-center"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-desktop-testing/package.nix b/pkgs/by-name/gn/gnome-desktop-testing/package.nix index 4f707c18c7f5..f42d354ec71f 100644 --- a/pkgs/by-name/gn/gnome-desktop-testing/package.nix +++ b/pkgs/by-name/gn/gnome-desktop-testing/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "GNOME test runner for installed tests"; homepage = "https://gitlab.gnome.org/GNOME/gnome-desktop-testing"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.jtojnar ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.jtojnar ]; }; } diff --git a/pkgs/by-name/gn/gnome-desktop/package.nix b/pkgs/by-name/gn/gnome-desktop/package.nix index 722d0e70886f..c8467b86fc34 100644 --- a/pkgs/by-name/gn/gnome-desktop/package.nix +++ b/pkgs/by-name/gn/gnome-desktop/package.nix @@ -102,14 +102,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library with common API for various GNOME modules"; homepage = "https://gitlab.gnome.org/GNOME/gnome-desktop"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.gnome ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gn/gnome-disk-utility/package.nix b/pkgs/by-name/gn/gnome-disk-utility/package.nix index 5d0e571627ae..a220f10b7e52 100644 --- a/pkgs/by-name/gn/gnome-disk-utility/package.nix +++ b/pkgs/by-name/gn/gnome-disk-utility/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/DiskUtility/"; description = "Udisks graphical front-end"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "gnome-disks"; }; } diff --git a/pkgs/by-name/gn/gnome-doc-utils/package.nix b/pkgs/by-name/gn/gnome-doc-utils/package.nix index 8b30095d119e..66f944784b55 100644 --- a/pkgs/by-name/gn/gnome-doc-utils/package.nix +++ b/pkgs/by-name/gn/gnome-doc-utils/package.nix @@ -55,13 +55,13 @@ python3Packages.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Collection of documentation utilities for the GNOME project"; homepage = "https://gitlab.gnome.org/GNOME/gnome-doc-utils"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gn/gnome-epub-thumbnailer/package.nix b/pkgs/by-name/gn/gnome-epub-thumbnailer/package.nix index d20eb6e9183a..befa5e4f0a1c 100644 --- a/pkgs/by-name/gn/gnome-epub-thumbnailer/package.nix +++ b/pkgs/by-name/gn/gnome-epub-thumbnailer/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Thumbnailer for EPub and MOBI books"; homepage = "https://gitlab.gnome.org/GNOME/gnome-epub-thumbnailer"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-firmware/package.nix b/pkgs/by-name/gn/gnome-firmware/package.nix index 5684b2c931fa..0f305e85e0b9 100644 --- a/pkgs/by-name/gn/gnome-firmware/package.nix +++ b/pkgs/by-name/gn/gnome-firmware/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { ignoredVersions = "(alpha|beta|rc).*"; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/gnome-firmware"; description = "Tool for installing firmware on devices"; mainProgram = "gnome-firmware"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-flashback/package.nix b/pkgs/by-name/gn/gnome-flashback/package.nix index d8b98b99b117..d97affeab9ac 100644 --- a/pkgs/by-name/gn/gnome-flashback/package.nix +++ b/pkgs/by-name/gn/gnome-flashback/package.nix @@ -207,13 +207,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "GNOME 2.x-like session for GNOME 3"; mainProgram = "gnome-flashback"; homepage = "https://gitlab.gnome.org/GNOME/gnome-flashback"; changelog = "https://gitlab.gnome.org/GNOME/gnome-flashback/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-font-viewer/package.nix b/pkgs/by-name/gn/gnome-font-viewer/package.nix index 95c425477b6e..330102f59425 100644 --- a/pkgs/by-name/gn/gnome-font-viewer/package.nix +++ b/pkgs/by-name/gn/gnome-font-viewer/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Program that can preview fonts and create thumbnails for fonts"; homepage = "https://gitlab.gnome.org/GNOME/gnome-font-viewer"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-frog/package.nix b/pkgs/by-name/gn/gnome-frog/package.nix index 281bd0c750b3..c2d02c603f2e 100644 --- a/pkgs/by-name/gn/gnome-frog/package.nix +++ b/pkgs/by-name/gn/gnome-frog/package.nix @@ -88,12 +88,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "https://getfrog.app/"; description = "Intuitive text extraction tool (OCR) for GNOME desktop"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "frog"; - maintainers = with maintainers; [ foo-dogsquared ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ foo-dogsquared ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-graphs/package.nix b/pkgs/by-name/gn/gnome-graphs/package.nix index e74501271037..1fe09fa0f475 100644 --- a/pkgs/by-name/gn/gnome-graphs/package.nix +++ b/pkgs/by-name/gn/gnome-graphs/package.nix @@ -70,12 +70,12 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple, yet powerful tool that allows you to plot and manipulate your data with ease"; homepage = "https://apps.gnome.org/Graphs"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "graphs"; teams = [ lib.teams.gnome-circle ]; - platforms = platforms.linux; # locale.bindtextdomain only available on linux + platforms = lib.platforms.linux; # locale.bindtextdomain only available on linux }; } diff --git a/pkgs/by-name/gn/gnome-icon-theme/package.nix b/pkgs/by-name/gn/gnome-icon-theme/package.nix index f245d806342c..eb5e15c25f7d 100644 --- a/pkgs/by-name/gn/gnome-icon-theme/package.nix +++ b/pkgs/by-name/gn/gnome-icon-theme/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { allowedReferences = [ ]; - meta = with lib; { + meta = { description = "Collection of icons for the GNOME 2 desktop"; homepage = "https://download.gnome.org/sources/gnome-icon-theme/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gnome-icon-theme.x86_64-darwin }; } diff --git a/pkgs/by-name/gn/gnome-inform7/package.nix b/pkgs/by-name/gn/gnome-inform7/package.nix index 5346e9443f71..7641a6deb55a 100644 --- a/pkgs/by-name/gn/gnome-inform7/package.nix +++ b/pkgs/by-name/gn/gnome-inform7/package.nix @@ -136,7 +136,7 @@ stdenv.mkDerivation { patchShebangs build-aux/* src/generate-resource-xml.{py,sh} ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Inform 7 for the Gnome platform"; @@ -144,9 +144,9 @@ stdenv.mkDerivation { This version of Inform 7 for the Gnome platform was created by Philip Chimento, based on a design by Graham Nelson and Andrew Hunter. ''; homepage = "https://github.com/ptomato/gnome-inform7"; - license = licenses.gpl3Only; - maintainers = [ maintainers.fitzgibbon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.fitzgibbon ]; + platforms = lib.platforms.linux; mainProgram = "gnome-inform7"; }; } diff --git a/pkgs/by-name/gn/gnome-initial-setup/package.nix b/pkgs/by-name/gn/gnome-initial-setup/package.nix index 7ac614841bc4..35979bc9c015 100644 --- a/pkgs/by-name/gn/gnome-initial-setup/package.nix +++ b/pkgs/by-name/gn/gnome-initial-setup/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "gnome-initial-setup"; }; }; - meta = with lib; { + meta = { description = "Simple, easy, and safe way to prepare a new system"; homepage = "https://gitlab.gnome.org/GNOME/gnome-initial-setup"; changelog = "https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gn/gnome-keysign/package.nix b/pkgs/by-name/gn/gnome-keysign/package.nix index 871de9db73c0..7319570b8d31 100644 --- a/pkgs/by-name/gn/gnome-keysign/package.nix +++ b/pkgs/by-name/gn/gnome-keysign/package.nix @@ -64,11 +64,11 @@ python3.pkgs.buildPythonApplication rec { # bunch of linting doCheck = false; - meta = with lib; { + meta = { description = "GTK/GNOME application to use GnuPG for signing other peoples’ keys"; homepage = "https://gitlab.gnome.org/GNOME/gnome-keysign"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-logs/package.nix b/pkgs/by-name/gn/gnome-logs/package.nix index bd83e74d52a4..e0b4c7d7a1a0 100644 --- a/pkgs/by-name/gn/gnome-logs/package.nix +++ b/pkgs/by-name/gn/gnome-logs/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-logs"; }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Logs/"; description = "Log viewer for the systemd journal"; mainProgram = "gnome-logs"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-mahjongg/package.nix b/pkgs/by-name/gn/gnome-mahjongg/package.nix index 87afee2674f3..52024f316929 100644 --- a/pkgs/by-name/gn/gnome-mahjongg/package.nix +++ b/pkgs/by-name/gn/gnome-mahjongg/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-mahjongg"; changelog = "https://gitlab.gnome.org/GNOME/gnome-mahjongg/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Disassemble a pile of tiles by removing matching pairs"; mainProgram = "gnome-mahjongg"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gn/gnome-maps/package.nix b/pkgs/by-name/gn/gnome-maps/package.nix index 709d32a47fef..f4545d544b9e 100644 --- a/pkgs/by-name/gn/gnome-maps/package.nix +++ b/pkgs/by-name/gn/gnome-maps/package.nix @@ -114,12 +114,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "gnome-maps"; }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Maps/"; description = "Map application for GNOME 3"; mainProgram = "gnome-maps"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gn/gnome-menus/package.nix b/pkgs/by-name/gn/gnome-menus/package.nix index 3efd6f8a698b..059e75acb54f 100644 --- a/pkgs/by-name/gn/gnome-menus/package.nix +++ b/pkgs/by-name/gn/gnome-menus/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-menus"; description = "Library that implements freedesktops's Desktop Menu Specification in GNOME"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl2 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-mines/package.nix b/pkgs/by-name/gn/gnome-mines/package.nix index d33b2108f958..09a1a6925067 100644 --- a/pkgs/by-name/gn/gnome-mines/package.nix +++ b/pkgs/by-name/gn/gnome-mines/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-mines"; description = "Clear hidden mines from a minefield"; mainProgram = "gnome-mines"; - teams = [ teams.gnome ]; - license = licenses.gpl3; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gn/gnome-monitor-config/package.nix b/pkgs/by-name/gn/gnome-monitor-config/package.nix index 589f3dcdddca..bd11b49f4d7a 100644 --- a/pkgs/by-name/gn/gnome-monitor-config/package.nix +++ b/pkgs/by-name/gn/gnome-monitor-config/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation { "executable('gnome-monitor-config', src, install : true" ''; - meta = with lib; { + meta = { description = "Program to help manage GNOME monitor configuration"; homepage = "https://github.com/jadahl/gnome-monitor-config"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ aveltras ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ aveltras ]; + platforms = lib.platforms.linux; mainProgram = "gnome-monitor-config"; }; } diff --git a/pkgs/by-name/gn/gnome-multi-writer/package.nix b/pkgs/by-name/gn/gnome-multi-writer/package.nix index 29af5fd380f3..e5022f8202cb 100644 --- a/pkgs/by-name/gn/gnome-multi-writer/package.nix +++ b/pkgs/by-name/gn/gnome-multi-writer/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Tool for writing an ISO file to multiple USB devices at once"; mainProgram = "gnome-multi-writer"; homepage = "https://gitlab.gnome.org/GNOME/gnome-multi-writer"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-music/package.nix b/pkgs/by-name/gn/gnome-music/package.nix index 5869783e519c..dbe454480e8b 100644 --- a/pkgs/by-name/gn/gnome-music/package.nix +++ b/pkgs/by-name/gn/gnome-music/package.nix @@ -100,12 +100,12 @@ python3.pkgs.buildPythonApplication rec { updateScript = gnome.updateScript { packageName = "gnome-music"; }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Music/"; description = "Music player and management application for the GNOME desktop environment"; mainProgram = "gnome-music"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-nettool/package.nix b/pkgs/by-name/gn/gnome-nettool/package.nix index b2ea4d2bc9cf..eee7e8331833 100644 --- a/pkgs/by-name/gn/gnome-nettool/package.nix +++ b/pkgs/by-name/gn/gnome-nettool/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-nettool"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-nettool"; description = "Collection of networking tools"; mainProgram = "gnome-nettool"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-network-displays/package.nix b/pkgs/by-name/gn/gnome-network-displays/package.nix index 8faee75cea46..43a85c04858a 100644 --- a/pkgs/by-name/gn/gnome-network-displays/package.nix +++ b/pkgs/by-name/gn/gnome-network-displays/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs ./build-aux/meson/postinstall.py ''; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-network-displays"; description = "Miracast implementation for GNOME"; - maintainers = with maintainers; [ doronbehar ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "gnome-network-displays"; }; }) diff --git a/pkgs/by-name/gn/gnome-nibbles/package.nix b/pkgs/by-name/gn/gnome-nibbles/package.nix index def763a92046..c46d0ea2178a 100644 --- a/pkgs/by-name/gn/gnome-nibbles/package.nix +++ b/pkgs/by-name/gn/gnome-nibbles/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "gnome-nibbles"; }; }; - meta = with lib; { + meta = { description = "Guide a worm around a maze"; mainProgram = "gnome-nibbles"; homepage = "https://gitlab.gnome.org/GNOME/gnome-nibbles"; changelog = "https://gitlab.gnome.org/GNOME/gnome-nibbles/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-notes/package.nix b/pkgs/by-name/gn/gnome-notes/package.nix index 2b9bb48cfce2..07d06ca0bec9 100644 --- a/pkgs/by-name/gn/gnome-notes/package.nix +++ b/pkgs/by-name/gn/gnome-notes/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Note editor designed to remain simple to use"; mainProgram = "bijiben"; homepage = "https://gitlab.gnome.org/GNOME/gnome-notes"; - license = licenses.gpl3; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-obfuscate/package.nix b/pkgs/by-name/gn/gnome-obfuscate/package.nix index bd6fc1ec670d..f96de2c5e098 100644 --- a/pkgs/by-name/gn/gnome-obfuscate/package.nix +++ b/pkgs/by-name/gn/gnome-obfuscate/package.nix @@ -69,13 +69,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Censor private information"; homepage = "https://gitlab.gnome.org/World/obfuscate"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; mainProgram = "obfuscate"; - maintainers = with maintainers; [ fgaz ]; - teams = [ teams.gnome-circle ]; + maintainers = with lib.maintainers; [ fgaz ]; + teams = [ lib.teams.gnome-circle ]; }; }) diff --git a/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix b/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix index 63428397976d..86fc99abe358 100644 --- a/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix +++ b/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = with lib; { + meta = { description = "Online accounts configuration utility"; homepage = "https://github.com/xapp-project/gnome-online-accounts-gtk"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; }) diff --git a/pkgs/by-name/gn/gnome-online-accounts/package.nix b/pkgs/by-name/gn/gnome-online-accounts/package.nix index 6fa172f23b80..7ee95a70f2b8 100644 --- a/pkgs/by-name/gn/gnome-online-accounts/package.nix +++ b/pkgs/by-name/gn/gnome-online-accounts/package.nix @@ -102,11 +102,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-online-accounts"; description = "Single sign-on framework for GNOME"; - platforms = platforms.unix; - license = licenses.lgpl2Plus; - teams = [ teams.gnome ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl2Plus; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gn/gnome-packagekit/package.nix b/pkgs/by-name/gn/gnome-packagekit/package.nix index 3ef7ac41da7d..b8e921d5b1f0 100644 --- a/pkgs/by-name/gn/gnome-packagekit/package.nix +++ b/pkgs/by-name/gn/gnome-packagekit/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/software/PackageKit/"; - platforms = platforms.linux; - teams = [ teams.gnome ]; - license = licenses.gpl2; + platforms = lib.platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; description = "Tools for installing software on the GNOME desktop using PackageKit"; }; } diff --git a/pkgs/by-name/gn/gnome-panel/package.nix b/pkgs/by-name/gn/gnome-panel/package.nix index 2eb9c202360f..ccc37319eee2 100644 --- a/pkgs/by-name/gn/gnome-panel/package.nix +++ b/pkgs/by-name/gn/gnome-panel/package.nix @@ -91,13 +91,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Component of Gnome Flashback that provides panels and default applets for the desktop"; mainProgram = "gnome-panel"; homepage = "https://gitlab.gnome.org/GNOME/gnome-panel"; changelog = "https://gitlab.gnome.org/GNOME/gnome-panel/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-photos/package.nix b/pkgs/by-name/gn/gnome-photos/package.nix index 071cd906ffd9..154d55732564 100644 --- a/pkgs/by-name/gn/gnome-photos/package.nix +++ b/pkgs/by-name/gn/gnome-photos/package.nix @@ -117,12 +117,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Access, organize and share your photos"; mainProgram = "gnome-photos"; homepage = "https://gitlab.gnome.org/GNOME/gnome-photos"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-pomodoro-watcher/package.nix b/pkgs/by-name/gn/gnome-pomodoro-watcher/package.nix index 4698b44acefd..2190c361761f 100644 --- a/pkgs/by-name/gn/gnome-pomodoro-watcher/package.nix +++ b/pkgs/by-name/gn/gnome-pomodoro-watcher/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-eqkdiNww0CBZ0ZfoirZSvpL7i/4b1XjN3NZFPOGkPko="; - meta = with lib; { + meta = { description = "Helper tool to watch GNOME Pomodoro timer"; homepage = "https://github.com/sei40kr/gnome-pomodoro-watcher"; - license = licenses.mit; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sei40kr ]; mainProgram = "gnome-pomodoro-watcher"; }; } diff --git a/pkgs/by-name/gn/gnome-pomodoro/package.nix b/pkgs/by-name/gn/gnome-pomodoro/package.nix index 7a3c4e200ff4..958ef3e745c9 100644 --- a/pkgs/by-name/gn/gnome-pomodoro/package.nix +++ b/pkgs/by-name/gn/gnome-pomodoro/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { sqlite ]; - meta = with lib; { + meta = { homepage = "https://gnomepomodoro.org/"; description = "Time management utility for GNOME based on the pomodoro technique"; mainProgram = "gnome-pomodoro"; @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { This GNOME utility helps to manage time according to Pomodoro Technique. It intends to improve productivity and focus by taking short breaks. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aleksana herschenglime ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-power-manager/package.nix b/pkgs/by-name/gn/gnome-power-manager/package.nix index 6a2fafad49c2..c94a373499a3 100644 --- a/pkgs/by-name/gn/gnome-power-manager/package.nix +++ b/pkgs/by-name/gn/gnome-power-manager/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-power-manager"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-power-manager"; description = "View battery and power statistics provided by UPower"; mainProgram = "gnome-power-statistics"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-randr/package.nix b/pkgs/by-name/gn/gnome-randr/package.nix index 4a846ff7eaa1..a95395868ebc 100644 --- a/pkgs/by-name/gn/gnome-randr/package.nix +++ b/pkgs/by-name/gn/gnome-randr/package.nix @@ -25,12 +25,12 @@ rustPlatform.buildRustPackage { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Xrandr-like CLI for configuring displays on GNOME/Wayland, on distros that don't support `wlr-randr`"; homepage = "https://github.com/maxwellainatchi/gnome-randr-rust"; - license = licenses.mit; - maintainers = [ maintainers.roberth ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.roberth ]; + platforms = lib.platforms.linux; mainProgram = "gnome-randr"; }; } diff --git a/pkgs/by-name/gn/gnome-robots/package.nix b/pkgs/by-name/gn/gnome-robots/package.nix index f6552990ece8..6afb449c1f7c 100644 --- a/pkgs/by-name/gn/gnome-robots/package.nix +++ b/pkgs/by-name/gn/gnome-robots/package.nix @@ -98,13 +98,13 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-robots"; changelog = "https://gitlab.gnome.org/GNOME/gnome-robots/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Avoid the robots and make them crash into each other"; mainProgram = "gnome-robots"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gn/gnome-screenshot/package.nix b/pkgs/by-name/gn/gnome-screenshot/package.nix index cd414c82e248..313ec978f150 100644 --- a/pkgs/by-name/gn/gnome-screenshot/package.nix +++ b/pkgs/by-name/gn/gnome-screenshot/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-screenshot"; description = "Utility used in the GNOME desktop environment for taking screenshots"; mainProgram = "gnome-screenshot"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-session/ctl.nix b/pkgs/by-name/gn/gnome-session/ctl.nix index 47282b471728..6dab6532395e 100644 --- a/pkgs/by-name/gn/gnome-session/ctl.nix +++ b/pkgs/by-name/gn/gnome-session/ctl.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { systemd ]; - meta = with lib; { + meta = { description = "gnome-session-ctl extracted from gnome-session for nixpkgs"; homepage = "https://github.com/nix-community/gnome-session-ctl"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-session/package.nix b/pkgs/by-name/gn/gnome-session/package.nix index e8c8e052f199..0d43c58ba7eb 100644 --- a/pkgs/by-name/gn/gnome-session/package.nix +++ b/pkgs/by-name/gn/gnome-session/package.nix @@ -123,12 +123,12 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "GNOME session manager"; homepage = "https://gitlab.gnome.org/GNOME/gnome-session"; changelog = "https://gitlab.gnome.org/GNOME/gnome-session/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-settings-daemon/package.nix b/pkgs/by-name/gn/gnome-settings-daemon/package.nix index dc464bb6fb39..068932312b0c 100644 --- a/pkgs/by-name/gn/gnome-settings-daemon/package.nix +++ b/pkgs/by-name/gn/gnome-settings-daemon/package.nix @@ -129,9 +129,9 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + meta = { + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-settings-daemon46/package.nix b/pkgs/by-name/gn/gnome-settings-daemon46/package.nix index 2c70f9e4d62f..550c7c6d1023 100644 --- a/pkgs/by-name/gn/gnome-settings-daemon46/package.nix +++ b/pkgs/by-name/gn/gnome-settings-daemon46/package.nix @@ -109,11 +109,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "GNOME Settings Daemon"; homepage = "https://gitlab.gnome.org/GNOME/gnome-settings-daemon/"; - license = licenses.gpl2Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-shell-extensions/package.nix b/pkgs/by-name/gn/gnome-shell-extensions/package.nix index 0bc2e8667c20..5116646b7102 100644 --- a/pkgs/by-name/gn/gnome-shell-extensions/package.nix +++ b/pkgs/by-name/gn/gnome-shell-extensions/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "gnome-shell-extensions"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-shell-extensions"; changelog = "https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Modify and extend GNOME Shell functionality and behavior"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-shell/package.nix b/pkgs/by-name/gn/gnome-shell/package.nix index 023ba135a747..6feb12c5cf55 100644 --- a/pkgs/by-name/gn/gnome-shell/package.nix +++ b/pkgs/by-name/gn/gnome-shell/package.nix @@ -253,13 +253,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Core user interface for the GNOME 3 desktop"; homepage = "https://gitlab.gnome.org/GNOME/gnome-shell"; changelog = "https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-software/package.nix b/pkgs/by-name/gn/gnome-software/package.nix index 580f3bff34ec..f2a0bb317026 100644 --- a/pkgs/by-name/gn/gnome-software/package.nix +++ b/pkgs/by-name/gn/gnome-software/package.nix @@ -114,12 +114,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "gnome-software"; }; }; - meta = with lib; { + meta = { description = "Software store that lets you install and update applications and system extensions"; mainProgram = "gnome-software"; homepage = "https://apps.gnome.org/Software/"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-system-monitor/package.nix b/pkgs/by-name/gn/gnome-system-monitor/package.nix index 6a5ea9560478..e088992f463b 100644 --- a/pkgs/by-name/gn/gnome-system-monitor/package.nix +++ b/pkgs/by-name/gn/gnome-system-monitor/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/SystemMonitor/"; description = "System Monitor shows you what programs are running and how much processor time, memory, and disk space are being used"; mainProgram = "gnome-system-monitor"; - teams = [ teams.gnome ]; - license = licenses.gpl2; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-taquin/package.nix b/pkgs/by-name/gn/gnome-taquin/package.nix index 5bd88b138581..3e4d5e1441eb 100644 --- a/pkgs/by-name/gn/gnome-taquin/package.nix +++ b/pkgs/by-name/gn/gnome-taquin/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-taquin"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-taquin"; description = "Move tiles so that they reach their places"; mainProgram = "gnome-taquin"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-tecla/package.nix b/pkgs/by-name/gn/gnome-tecla/package.nix index ebc0df1577c6..24f5b55a610b 100644 --- a/pkgs/by-name/gn/gnome-tecla/package.nix +++ b/pkgs/by-name/gn/gnome-tecla/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Keyboard layout viewer"; homepage = "https://gitlab.gnome.org/GNOME/tecla"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; mainProgram = "tecla"; }; }) diff --git a/pkgs/by-name/gn/gnome-terminal/package.nix b/pkgs/by-name/gn/gnome-terminal/package.nix index 3569ddfa5543..2cda51c45aa3 100644 --- a/pkgs/by-name/gn/gnome-terminal/package.nix +++ b/pkgs/by-name/gn/gnome-terminal/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "GNOME Terminal Emulator"; mainProgram = "gnome-terminal"; homepage = "https://gitlab.gnome.org/GNOME/gnome-terminal"; - platforms = platforms.linux; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gn/gnome-tetravex/package.nix b/pkgs/by-name/gn/gnome-tetravex/package.nix index 9a88b11305a5..541f1dfaf3a5 100644 --- a/pkgs/by-name/gn/gnome-tetravex/package.nix +++ b/pkgs/by-name/gn/gnome-tetravex/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-tetravex"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-tetravex"; description = "Complete the puzzle by matching numbered tiles"; mainProgram = "gnome-tetravex"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-text-editor/package.nix b/pkgs/by-name/gn/gnome-text-editor/package.nix index 4953f1aca8f3..cadf6b5f04b1 100644 --- a/pkgs/by-name/gn/gnome-text-editor/package.nix +++ b/pkgs/by-name/gn/gnome-text-editor/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-text-editor"; changelog = "https://gitlab.gnome.org/GNOME/gnome-text-editor/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Text Editor for GNOME"; mainProgram = "gnome-text-editor"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gn/gnome-themes-extra/package.nix b/pkgs/by-name/gn/gnome-themes-extra/package.nix index 83e8fd201c0e..6215ac0d98a8 100644 --- a/pkgs/by-name/gn/gnome-themes-extra/package.nix +++ b/pkgs/by-name/gn/gnome-themes-extra/package.nix @@ -54,8 +54,8 @@ stdenv.mkDerivation rec { gtk-update-icon-cache "$out"/share/icons/HighContrast ''; - meta = with lib; { - platforms = platforms.unix; - teams = [ teams.gnome ]; + meta = { + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gn/gnome-tour/package.nix b/pkgs/by-name/gn/gnome-tour/package.nix index a6a415130fd1..2b31cd8e8375 100644 --- a/pkgs/by-name/gn/gnome-tour/package.nix +++ b/pkgs/by-name/gn/gnome-tour/package.nix @@ -63,13 +63,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-tour"; changelog = "https://gitlab.gnome.org/GNOME/gnome-tour/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "GNOME Greeter & Tour"; mainProgram = "gnome-tour"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-tweaks/package.nix b/pkgs/by-name/gn/gnome-tweaks/package.nix index c01b3e3e4ffb..e23bdded212b 100644 --- a/pkgs/by-name/gn/gnome-tweaks/package.nix +++ b/pkgs/by-name/gn/gnome-tweaks/package.nix @@ -88,12 +88,12 @@ python3Packages.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-tweaks"; description = "Tool to customize advanced GNOME 3 options"; mainProgram = "gnome-tweaks"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-usage/package.nix b/pkgs/by-name/gn/gnome-usage/package.nix index 9bcbb5d885c0..07a183e7c8d3 100644 --- a/pkgs/by-name/gn/gnome-usage/package.nix +++ b/pkgs/by-name/gn/gnome-usage/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Nice way to view information about use of system resources, like memory and disk space"; mainProgram = "gnome-usage"; homepage = "https://gitlab.gnome.org/GNOME/gnome-usage"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gn/gnome-user-docs/package.nix b/pkgs/by-name/gn/gnome-user-docs/package.nix index 1f37e38bdbc1..3ee2849e5d6a 100644 --- a/pkgs/by-name/gn/gnome-user-docs/package.nix +++ b/pkgs/by-name/gn/gnome-user-docs/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "User and system administration help for the GNOME desktop"; homepage = "https://help.gnome.org/users/gnome-help/"; - license = licenses.cc-by-30; - teams = [ teams.gnome ]; - platforms = platforms.all; + license = lib.licenses.cc-by-30; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gn/gnome-user-share/package.nix b/pkgs/by-name/gn/gnome-user-share/package.nix index 54023e345f23..1cc81d060b58 100644 --- a/pkgs/by-name/gn/gnome-user-share/package.nix +++ b/pkgs/by-name/gn/gnome-user-share/package.nix @@ -119,12 +119,12 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-user-share"; changelog = "https://gitlab.gnome.org/GNOME/gnome-user-share/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Service that exports the contents of the Public folder in your home directory on the local network"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-video-effects/package.nix b/pkgs/by-name/gn/gnome-video-effects/package.nix index 7953e77866b2..ded125a5e072 100644 --- a/pkgs/by-name/gn/gnome-video-effects/package.nix +++ b/pkgs/by-name/gn/gnome-video-effects/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Collection of GStreamer effects to be used in different GNOME Modules"; homepage = "https://gitlab.gnome.org/GNOME/gnome-video-effects"; - platforms = platforms.unix; - teams = [ teams.gnome ]; - license = licenses.gpl2; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/gn/gnome-weather/package.nix b/pkgs/by-name/gn/gnome-weather/package.nix index 4b4ec42b2d25..ba30db8e9b91 100644 --- a/pkgs/by-name/gn/gnome-weather/package.nix +++ b/pkgs/by-name/gn/gnome-weather/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Weather/"; description = "Access current weather conditions and forecasts"; mainProgram = "gnome-weather"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gn/gnomecast/package.nix b/pkgs/by-name/gn/gnomecast/package.nix index 9e3dfc81f715..0cd942d37a7d 100644 --- a/pkgs/by-name/gn/gnomecast/package.nix +++ b/pkgs/by-name/gn/gnomecast/package.nix @@ -46,10 +46,10 @@ buildPythonApplication { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Native Linux GUI for Chromecasting local files"; homepage = "https://github.com/keredson/gnomecast"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; broken = stdenv.hostPlatform.isDarwin; mainProgram = "gnomecast"; }; diff --git a/pkgs/by-name/gn/gnonograms/package.nix b/pkgs/by-name/gn/gnonograms/package.nix index 02ee9be1acd4..581a9fb6f679 100644 --- a/pkgs/by-name/gn/gnonograms/package.nix +++ b/pkgs/by-name/gn/gnonograms/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { libhandy ]; - meta = with lib; { + meta = { description = "Nonograms puzzle game"; mainProgram = "com.github.jeremypw.gnonograms"; longDescription = '' @@ -60,9 +60,9 @@ stdenv.mkDerivation (finalAttrs: { * Draw puzzles * Generate random puzzles of chosen difficulty ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; homepage = "https://github.com/jeremypw/gnonograms"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/gn/gnote/package.nix b/pkgs/by-name/gn/gnote/package.nix index 66c9e7046f10..37d0508c7e88 100644 --- a/pkgs/by-name/gn/gnote/package.nix +++ b/pkgs/by-name/gn/gnote/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnote"; description = "Note taking application"; mainProgram = "gnote"; - maintainers = with maintainers; [ jfvillablanca ]; - license = licenses.gpl3Only; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ jfvillablanca ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnss-sdr/package.nix b/pkgs/by-name/gn/gnss-sdr/package.nix index eb8de09e83a6..7935a1f217dc 100644 --- a/pkgs/by-name/gn/gnss-sdr/package.nix +++ b/pkgs/by-name/gn/gnss-sdr/package.nix @@ -114,10 +114,10 @@ gnuradio.pkgs.mkDerivation rec { (lib.cmakeFeature "LAPACK_LIBRARIES" "-llapack") ]; - meta = with lib; { + meta = { description = "Open source Global Navigation Satellite Systems software-defined receiver"; homepage = "https://gnss-sdr.org/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnss-share/package.nix b/pkgs/by-name/gn/gnss-share/package.nix index 6a6e974df68d..84958d8325e5 100644 --- a/pkgs/by-name/gn/gnss-share/package.nix +++ b/pkgs/by-name/gn/gnss-share/package.nix @@ -13,7 +13,7 @@ buildGoModule rec { hash = "sha256-4X1oiQWn2oZPw/14hNyZ0a6FEwoykotBisY6lk6lj2k="; }; vendorHash = "sha256-dmE6hfKUqEr7BMNi/HMUOk4jDB0dPXEMkWQyWj6XpY4="; - meta = with lib; { + meta = { description = "Share GNSS data between multiple clients"; longDescription = '' gnss-share is an app that facilitates sharing GNSS location data with multiple @@ -24,8 +24,8 @@ buildGoModule rec { with geoclue* or other clients that support fetching NMEA location data over sockets. ''; - license = licenses.gpl3; - maintainers = with maintainers; [ balsoft ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ balsoft ]; mainProgram = "gnss-share"; }; } diff --git a/pkgs/by-name/gn/gnu-cim/package.nix b/pkgs/by-name/gn/gnu-cim/package.nix index b2c339d45a39..cdf0583d5bf6 100644 --- a/pkgs/by-name/gn/gnu-cim/package.nix +++ b/pkgs/by-name/gn/gnu-cim/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "GNU compiler for the programming language Simula"; longDescription = '' GNU Cim is a compiler for the programming language Simula. @@ -49,9 +49,9 @@ stdenv.mkDerivation rec { discrete event modelling. ''; homepage = "https://www.gnu.org/software/cim/"; - license = licenses.gpl2; - platforms = platforms.all; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; badPlatforms = [ "aarch64-darwin" ]; - maintainers = with maintainers; [ pbsds ]; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/by-name/gn/gnu-config/package.nix b/pkgs/by-name/gn/gnu-config/package.nix index 0c4d6c16a870..cbabe904f349 100644 --- a/pkgs/by-name/gn/gnu-config/package.nix +++ b/pkgs/by-name/gn/gnu-config/package.nix @@ -53,20 +53,20 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Attempt to guess a canonical system name"; homepage = "https://savannah.gnu.org/projects/config"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # In addition to GPLv3: # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dezgeg emilytrau ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gn/gnu-pw-mgr/package.nix b/pkgs/by-name/gn/gnu-pw-mgr/package.nix index 3b49797654b1..2b64823a0cd1 100644 --- a/pkgs/by-name/gn/gnu-pw-mgr/package.nix +++ b/pkgs/by-name/gn/gnu-pw-mgr/package.nix @@ -15,14 +15,14 @@ stdenv.mkDerivation rec { buildInputs = [ gnulib ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/gnu-pw-mgr/"; description = "Password manager designed to make it easy to reconstruct difficult passwords"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; platforms = lib.platforms.linux; - maintainers = with maintainers; [ qoelet ]; + maintainers = with lib.maintainers; [ qoelet ]; }; } diff --git a/pkgs/by-name/gn/gnu-shepherd/package.nix b/pkgs/by-name/gn/gnu-shepherd/package.nix index 6cb16071f43d..ca6792a2c796 100644 --- a/pkgs/by-name/gn/gnu-shepherd/package.nix +++ b/pkgs/by-name/gn/gnu-shepherd/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/shepherd/"; description = "Service manager that looks after the herd of system services"; - license = with licenses; [ gpl3Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ kloenk ]; + license = with lib.licenses; [ gpl3Plus ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ kloenk ]; }; } diff --git a/pkgs/by-name/gn/gnuapl/package.nix b/pkgs/by-name/gn/gnuapl/package.nix index de762f653ffa..bd37e1397418 100644 --- a/pkgs/by-name/gn/gnuapl/package.nix +++ b/pkgs/by-name/gn/gnuapl/package.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { find $out/share/doc/support-files -name 'Makefile*' -delete ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Free interpreter for the APL programming language"; homepage = "https://www.gnu.org/software/apl/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.kovirobi ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.kovirobi ]; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "apl"; longDescription = '' diff --git a/pkgs/by-name/gn/gnubg/package.nix b/pkgs/by-name/gn/gnubg/package.nix index d682af7778e4..0452f83c0f7d 100644 --- a/pkgs/by-name/gn/gnubg/package.nix +++ b/pkgs/by-name/gn/gnubg/package.nix @@ -55,10 +55,10 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "World class backgammon application"; homepage = "https://www.gnu.org/software/gnubg/"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnuchess/package.nix b/pkgs/by-name/gn/gnuchess/package.nix index dcdb488e9424..a300854e78f4 100644 --- a/pkgs/by-name/gn/gnuchess/package.nix +++ b/pkgs/by-name/gn/gnuchess/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/gnuchessu --set PATH "$out/bin" ''; - meta = with lib; { + meta = { description = "GNU Chess engine"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/gn/gnuclad/package.nix b/pkgs/by-name/gn/gnuclad/package.nix index 306f54685bb4..5c8105731562 100644 --- a/pkgs/by-name/gn/gnuclad/package.nix +++ b/pkgs/by-name/gn/gnuclad/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { homepage = "https://launchpad.net/gnuclad"; description = "Generating cladogram trees for the GNU/Linux distro timeline project"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mog ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mog ]; + platforms = lib.platforms.unix; mainProgram = "gnuclad"; }; } diff --git a/pkgs/by-name/gn/gnucobol/package.nix b/pkgs/by-name/gn/gnucobol/package.nix index 4cd3bfbf57be..4a8f7bcd7983 100644 --- a/pkgs/by-name/gn/gnucobol/package.nix +++ b/pkgs/by-name/gn/gnucobol/package.nix @@ -136,18 +136,18 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Free/libre COBOL compiler"; homepage = "https://gnu.org/software/gnucobol/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only lgpl3Only ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovesegfault techknowlogick kiike ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/gn/gnujump/package.nix b/pkgs/by-name/gn/gnujump/package.nix index 1997e6d04db2..eb079fbc81ec 100644 --- a/pkgs/by-name/gn/gnujump/package.nix +++ b/pkgs/by-name/gn/gnujump/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { install -Dm644 ${./gnujump.xpm} $out/share/pixmaps/gnujump.xpm ''; - meta = with lib; { + meta = { homepage = "https://jump.gnu.sinusoid.es/index.php?title=Main_Page"; description = "Clone of the simple yet addictive game Xjump"; mainProgram = "gnujump"; @@ -58,8 +58,8 @@ stdenv.mkDerivation (finalAttrs: { Try to survive longer get upper than anyone. It might seem too simple but once you've tried you'll realize how addictive this is. ''; - license = licenses.gpl3; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnulib/package.nix b/pkgs/by-name/gn/gnulib/package.nix index 37f75abb5e36..c8d47e6666fc 100644 --- a/pkgs/by-name/gn/gnulib/package.nix +++ b/pkgs/by-name/gn/gnulib/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { # do not change headers to not update all vendored build files dontFixup = true; - meta = with lib; { + meta = { description = "Central location for code to be shared among GNU packages"; homepage = "https://www.gnu.org/software/gnulib/"; changelog = "https://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob;f=ChangeLog"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "gnulib-tool"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnumake42/package.nix b/pkgs/by-name/gn/gnumake42/package.nix index 2d7b0394a004..05499df0fa9c 100644 --- a/pkgs/by-name/gn/gnumake42/package.nix +++ b/pkgs/by-name/gn/gnumake42/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { "info" ]; - meta = with lib; { + meta = { description = "Tool to control the generation of non-source files from sources"; longDescription = '' Make is a tool which controls the generation of executables and @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.gnu.org/software/make/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "make"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gn/gnupth/package.nix b/pkgs/by-name/gn/gnupth/package.nix index 6c76ea2dd7d2..97ef0550aa60 100644 --- a/pkgs/by-name/gn/gnupth/package.nix +++ b/pkgs/by-name/gn/gnupth/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { # pth_uctx.c:31:10: fatal error: pth_p.h: No such file enableParallelBuilding = false; - meta = with lib; { + meta = { description = "GNU Portable Threads library"; mainProgram = "pth-config"; homepage = "https://www.gnu.org/software/pth"; - license = licenses.lgpl21Plus; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gn/gnushogi/package.nix b/pkgs/by-name/gn/gnushogi/package.nix index 56d063b50bce..7ffbc294f187 100644 --- a/pkgs/by-name/gn/gnushogi/package.nix +++ b/pkgs/by-name/gn/gnushogi/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "GNU implementation of Shogi, also known as Japanese Chess"; mainProgram = "gnushogi"; homepage = "https://www.gnu.org/software/gnushogi/"; - license = licenses.gpl3; - maintainers = [ maintainers.ciil ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.ciil ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnustep-libobjc/package.nix b/pkgs/by-name/gn/gnustep-libobjc/package.nix index 7322a5346640..782f65a4e1b3 100644 --- a/pkgs/by-name/gn/gnustep-libobjc/package.nix +++ b/pkgs/by-name/gn/gnustep-libobjc/package.nix @@ -24,15 +24,15 @@ clangStdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = with lib; { + meta = { broken = clangStdenv.hostPlatform.isDarwin; description = "Objective-C runtime for use with GNUstep"; homepage = "https://gnustep.github.io/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ ashalkhakov dblsaiko ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/go/go-2fa/package.nix b/pkgs/by-name/go/go-2fa/package.nix index 55d777523dd2..3b3c004e8bed 100644 --- a/pkgs/by-name/go/go-2fa/package.nix +++ b/pkgs/by-name/go/go-2fa/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://rsc.io/2fa"; description = "Two-factor authentication on the command line"; mainProgram = "2fa"; - license = licenses.bsd3; - maintainers = with maintainers; [ rvolosatovs ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ rvolosatovs ]; }; } diff --git a/pkgs/by-name/go/go-audit/package.nix b/pkgs/by-name/go/go-audit/package.nix index 7a0975a77d74..470473054182 100644 --- a/pkgs/by-name/go/go-audit/package.nix +++ b/pkgs/by-name/go/go-audit/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { # Tests need network access doCheck = false; - meta = with lib; { + meta = { description = "Alternative to the auditd daemon"; homepage = "https://github.com/slackhq/go-audit"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; mainProgram = "go-audit"; }; } diff --git a/pkgs/by-name/go/go-autoconfig/package.nix b/pkgs/by-name/go/go-autoconfig/package.nix index 5a56f8cbe994..7bc04faedf45 100644 --- a/pkgs/by-name/go/go-autoconfig/package.nix +++ b/pkgs/by-name/go/go-autoconfig/package.nix @@ -21,11 +21,11 @@ buildGoModule { cp -r templates $out/ ''; - meta = with lib; { + meta = { description = "IMAP/SMTP autodiscover feature for Thunderbird, Apple Mail and Microsoft Outlook"; homepage = "https://github.com/L11R/go-autoconfig"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; mainProgram = "go-autoconfig"; }; } diff --git a/pkgs/by-name/go/go-bare/package.nix b/pkgs/by-name/go/go-bare/package.nix index 67a1f64ec33a..dbb46e75ca50 100644 --- a/pkgs/by-name/go/go-bare/package.nix +++ b/pkgs/by-name/go/go-bare/package.nix @@ -19,11 +19,11 @@ buildGoModule { subPackages = [ "cmd/gen" ]; - meta = with lib; { + meta = { description = "Implementation of the BARE message format for Go"; mainProgram = "gen"; homepage = "https://git.sr.ht/~sircmpwn/go-bare"; - license = licenses.asl20; - maintainers = with maintainers; [ poptart ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ poptart ]; }; } diff --git a/pkgs/by-name/go/go-bindata-assetfs/package.nix b/pkgs/by-name/go/go-bindata-assetfs/package.nix index 7e2dd52da1a3..31f199cab1ff 100644 --- a/pkgs/by-name/go/go-bindata-assetfs/package.nix +++ b/pkgs/by-name/go/go-bindata-assetfs/package.nix @@ -22,10 +22,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Serve embedded files from jteeuwen/go-bindata"; mainProgram = "go-bindata-assetfs"; - license = licenses.bsd2; - maintainers = with maintainers; [ avnik ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ avnik ]; }; } diff --git a/pkgs/by-name/go/go-callvis/package.nix b/pkgs/by-name/go/go-callvis/package.nix index 4a06f4d363a8..eb0405d29bdd 100644 --- a/pkgs/by-name/go/go-callvis/package.nix +++ b/pkgs/by-name/go/go-callvis/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { # cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security] hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Visualize call graph of a Go program using Graphviz"; mainProgram = "go-callvis"; homepage = "https://github.com/ofabry/go-callvis"; - license = licenses.mit; - maintainers = with maintainers; [ meain ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ meain ]; }; } diff --git a/pkgs/by-name/go/go-check/package.nix b/pkgs/by-name/go/go-check/package.nix index 4e32ea4d7109..83c439954c95 100644 --- a/pkgs/by-name/go/go-check/package.nix +++ b/pkgs/by-name/go/go-check/package.nix @@ -18,10 +18,10 @@ buildGoModule rec { vendorHash = "sha256-DyysiVYFpncmyCzlHIOEtWlCMpm90AC3gdItI9WinSo="; - meta = with lib; { + meta = { description = "Set of utilities for checking Go sources"; homepage = "https://gitlab.com/opennota/check"; - license = licenses.gpl3; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/go/go-containerregistry/package.nix b/pkgs/by-name/go/go-containerregistry/package.nix index 537634913e74..e35d22f26fd9 100644 --- a/pkgs/by-name/go/go-containerregistry/package.nix +++ b/pkgs/by-name/go/go-containerregistry/package.nix @@ -65,12 +65,12 @@ buildGoModule rec { # NOTE: no tests doCheck = false; - meta = with lib; { + meta = { description = "Tools for interacting with remote images and registries including crane and gcrane"; homepage = "https://github.com/google/go-containerregistry"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "crane"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ yurrriq ryan4yin ]; diff --git a/pkgs/by-name/go/go-cover-treemap/package.nix b/pkgs/by-name/go/go-cover-treemap/package.nix index de358e4c8428..92d5b62b238f 100644 --- a/pkgs/by-name/go/go-cover-treemap/package.nix +++ b/pkgs/by-name/go/go-cover-treemap/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Go code coverage to SVG treemap"; homepage = "https://github.com/nikolaydubina/go-cover-treemap"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "go-cover-treemap"; }; } diff --git a/pkgs/by-name/go/go-cqhttp/package.nix b/pkgs/by-name/go/go-cqhttp/package.nix index 26581a209149..91920c35cfdd 100644 --- a/pkgs/by-name/go/go-cqhttp/package.nix +++ b/pkgs/by-name/go/go-cqhttp/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-YNARh25xrcPGvhhXzYmg3CsWwzvXq44uWt0S1PjRVdM="; - meta = with lib; { + meta = { description = "Golang implementation of OneBot based on Mirai and MiraiGo"; homepage = "https://github.com/Mrs4s/go-cqhttp"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ Anillc ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ Anillc ]; }; } diff --git a/pkgs/by-name/go/go-dnscollector/package.nix b/pkgs/by-name/go/go-dnscollector/package.nix index 2aa1c845ba2a..ac46e99a04e4 100644 --- a/pkgs/by-name/go/go-dnscollector/package.nix +++ b/pkgs/by-name/go/go-dnscollector/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Ingesting, pipelining, and enhancing your DNS logs with usage indicators, security analysis, and additional metadata"; homepage = "https://github.com/dmachard/go-dnscollector"; changelog = "https://github.com/dmachard/DNS-collector/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ shift ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ shift ]; }; } diff --git a/pkgs/by-name/go/go-ethereum/package.nix b/pkgs/by-name/go/go-ethereum/package.nix index 9c6c53173b12..b6d6743b9b90 100644 --- a/pkgs/by-name/go/go-ethereum/package.nix +++ b/pkgs/by-name/go/go-ethereum/package.nix @@ -58,14 +58,14 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) geth; }; - meta = with lib; { + meta = { homepage = "https://geth.ethereum.org/"; description = "Official golang implementation of the Ethereum protocol"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only gpl3Only ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ asymmetric RaghavSood ]; diff --git a/pkgs/by-name/go/go-font/package.nix b/pkgs/by-name/go/go-font/package.nix index 852f2680b63f..b9a6c8970ad3 100644 --- a/pkgs/by-name/go/go-font/package.nix +++ b/pkgs/by-name/go/go-font/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://blog.golang.org/go-fonts"; description = "Go font family"; changelog = "https://go.googlesource.com/image/+log/refs/heads/master/font/gofont"; - license = licenses.bsd3; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sternenseemann ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/go/go-graft/package.nix b/pkgs/by-name/go/go-graft/package.nix index 5f7d2d339cb2..997719d44b05 100644 --- a/pkgs/by-name/go/go-graft/package.nix +++ b/pkgs/by-name/go/go-graft/package.nix @@ -35,16 +35,16 @@ buildGoModule rec { --zsh completion/zsh/_gg ''; - meta = with lib; { + meta = { description = "Command-line tool for one-click proxy in your research and development without installing v2ray or anything else"; changelog = "https://github.com/mzz2017/gg/releases/tag/${src.rev}"; homepage = "https://github.com/mzz2017/gg"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ xyenon oluceps ]; mainProgram = "gg"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/go/go-ios/package.nix b/pkgs/by-name/go/go-ios/package.nix index 65e818f74680..f8267d9cf69e 100644 --- a/pkgs/by-name/go/go-ios/package.nix +++ b/pkgs/by-name/go/go-ios/package.nix @@ -62,11 +62,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Operating system independent implementation of iOS device features"; homepage = "https://github.com/danielpaulus/go-ios"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; mainProgram = "ios"; }; } diff --git a/pkgs/by-name/go/go-jet/package.nix b/pkgs/by-name/go/go-jet/package.nix index f934e7b8e2ca..4eb87a75a35a 100644 --- a/pkgs/by-name/go/go-jet/package.nix +++ b/pkgs/by-name/go/go-jet/package.nix @@ -47,11 +47,11 @@ buildGoModule rec { rm -rf tests/{sqlite,postgres,mysql} ''; - meta = with lib; { + meta = { homepage = "https://github.com/go-jet/jet"; description = "Type safe SQL builder with code generation and automatic query result data mapping"; - maintainers = with maintainers; [ mrityunjaygr8 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ mrityunjaygr8 ]; + license = lib.licenses.asl20; mainProgram = "jet"; }; } diff --git a/pkgs/by-name/go/go-jira/package.nix b/pkgs/by-name/go/go-jira/package.nix index 35ad78247600..6e24de1019c3 100644 --- a/pkgs/by-name/go/go-jira/package.nix +++ b/pkgs/by-name/go/go-jira/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Simple command line client for Atlassian's Jira service written in Go"; homepage = "https://github.com/go-jira/jira"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ carlosdagos timstott ]; diff --git a/pkgs/by-name/go/go-judge/package.nix b/pkgs/by-name/go/go-judge/package.nix index 629022243b02..0c8e0c8e359a 100644 --- a/pkgs/by-name/go/go-judge/package.nix +++ b/pkgs/by-name/go/go-judge/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { env.CGO_ENABLED = 0; - meta = with lib; { + meta = { description = "High performance sandbox service based on container technologies"; homepage = "https://docs.goj.ac"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "go-judge"; - maintainers = with maintainers; [ criyle ]; + maintainers = with lib.maintainers; [ criyle ]; }; } diff --git a/pkgs/by-name/go/go-junit-report/package.nix b/pkgs/by-name/go/go-junit-report/package.nix index a6eabc0b573f..74a23b31068d 100644 --- a/pkgs/by-name/go/go-junit-report/package.nix +++ b/pkgs/by-name/go/go-junit-report/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Convert go test output to junit xml"; mainProgram = "go-junit-report"; homepage = "https://github.com/jstemmer/go-junit-report"; - license = licenses.mit; - maintainers = with maintainers; [ cryptix ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cryptix ]; }; } diff --git a/pkgs/by-name/go/go-libp2p-daemon/package.nix b/pkgs/by-name/go/go-libp2p-daemon/package.nix index 0f9c7e06dc5a..b82b82f3a8ac 100644 --- a/pkgs/by-name/go/go-libp2p-daemon/package.nix +++ b/pkgs/by-name/go/go-libp2p-daemon/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Libp2p-backed daemon wrapping the functionalities of go-libp2p for use in other languages"; homepage = "https://github.com/libp2p/go-libp2p-daemon"; - license = licenses.mit; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/by-name/go/go-licence-detector/package.nix b/pkgs/by-name/go/go-licence-detector/package.nix index 620ed50c4bac..ec6ca680da32 100644 --- a/pkgs/by-name/go/go-licence-detector/package.nix +++ b/pkgs/by-name/go/go-licence-detector/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-wJ6jB8MxyYOlOpABRv5GmULofWuPQR8yClj63qsr/tg="; - meta = with lib; { + meta = { description = "Detect licences in Go projects and generate documentation"; homepage = "https://github.com/elastic/go-licence-detector"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/go/go-license-detector/package.nix b/pkgs/by-name/go/go-license-detector/package.nix index 2b02eb6861ae..f7ea8420096c 100644 --- a/pkgs/by-name/go/go-license-detector/package.nix +++ b/pkgs/by-name/go/go-license-detector/package.nix @@ -20,10 +20,10 @@ buildGoModule rec { nativeCheckInputs = [ git ]; - meta = with lib; { + meta = { description = "Reliable project licenses detector"; homepage = "https://github.com/go-enry/go-license-detector"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "license-detector"; }; diff --git a/pkgs/by-name/go/go-md2man/package.nix b/pkgs/by-name/go/go-md2man/package.nix index 1cdce31b86b0..6b057bff0c6e 100644 --- a/pkgs/by-name/go/go-md2man/package.nix +++ b/pkgs/by-name/go/go-md2man/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { sha256 = "sha256-DKqGvdidl6J4lPhIk3okhU4k6MvtSr+hJ9huU/JTai0="; }; - meta = with lib; { + meta = { description = "Go tool to convert markdown to man pages"; mainProgram = "go-md2man"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/cpuguy83/go-md2man"; - maintainers = with maintainers; [ offline ]; + maintainers = with lib.maintainers; [ offline ]; }; } diff --git a/pkgs/by-name/go/go-migrate/package.nix b/pkgs/by-name/go/go-migrate/package.nix index a193255af630..7fa956e62c02 100644 --- a/pkgs/by-name/go/go-migrate/package.nix +++ b/pkgs/by-name/go/go-migrate/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { "yugabytedb" ]; - meta = with lib; { + meta = { homepage = "https://github.com/golang-migrate/migrate"; description = "Database migrations. CLI and Golang library"; - maintainers = with maintainers; [ offline ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ offline ]; + license = lib.licenses.mit; mainProgram = "migrate"; }; } diff --git a/pkgs/by-name/go/go-minimock/package.nix b/pkgs/by-name/go/go-minimock/package.nix index cb74d144bc95..f1816b84e0a1 100644 --- a/pkgs/by-name/go/go-minimock/package.nix +++ b/pkgs/by-name/go/go-minimock/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "." ]; - meta = with lib; { + meta = { homepage = "https://github.com/gojuno/minimock"; description = "Golang mock generator from interfaces"; - license = licenses.mit; - maintainers = with maintainers; [ svrana ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ svrana ]; mainProgram = "minimock"; }; } diff --git a/pkgs/by-name/go/go-mod-graph-chart/package.nix b/pkgs/by-name/go/go-mod-graph-chart/package.nix index abffaf61f7c3..ba33e210fca2 100644 --- a/pkgs/by-name/go/go-mod-graph-chart/package.nix +++ b/pkgs/by-name/go/go-mod-graph-chart/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # check requires opening webpage doCheck = false; - meta = with lib; { + meta = { description = "Tool build chart by go mod graph output with zero dependencies"; homepage = "https://github.com/PaulXu-cn/go-mod-graph-chart"; mainProgram = "gmchart"; - license = licenses.mit; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/go/go-motion/package.nix b/pkgs/by-name/go/go-motion/package.nix index 9a950ac86407..9dea2f7ac917 100644 --- a/pkgs/by-name/go/go-motion/package.nix +++ b/pkgs/by-name/go/go-motion/package.nix @@ -22,7 +22,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Navigation and insight in Go"; mainProgram = "motion"; longDescription = '' @@ -35,8 +35,8 @@ buildGoModule rec { with any editor. It's currently work in progress and open to change. ''; homepage = "https://github.com/fatih/motion"; - license = licenses.bsd3; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kalbasit ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/go/go-mtpfs/package.nix b/pkgs/by-name/go/go-mtpfs/package.nix index f6e6e667cc59..2ab74add7318 100644 --- a/pkgs/by-name/go/go-mtpfs/package.nix +++ b/pkgs/by-name/go/go-mtpfs/package.nix @@ -34,10 +34,10 @@ buildGoModule rec { "-run=Test(Encode|Decode|Variant)" ]; - meta = with lib; { + meta = { description = "Simple FUSE filesystem for mounting Android devices as a MTP device"; homepage = "https://github.com/hanwen/go-mtpfs"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin; mainProgram = "go-mtpfs"; diff --git a/pkgs/by-name/go/go-neb/package.nix b/pkgs/by-name/go/go-neb/package.nix index c6ad42add091..fb95f4629cd4 100644 --- a/pkgs/by-name/go/go-neb/package.nix +++ b/pkgs/by-name/go/go-neb/package.nix @@ -27,13 +27,13 @@ buildGoModule { passthru.tests.go-neb = nixosTests.go-neb; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Extensible matrix bot written in Go"; mainProgram = "go-neb"; homepage = "https://github.com/matrix-org/go-neb"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa maralorn ]; diff --git a/pkgs/by-name/go/go-org/package.nix b/pkgs/by-name/go/go-org/package.nix index 27c515b08344..7609d349513d 100644 --- a/pkgs/by-name/go/go-org/package.nix +++ b/pkgs/by-name/go/go-org/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { $out/bin/go-org > /dev/null ''; - meta = with lib; { + meta = { description = "Org-mode parser and static site generator in go"; homepage = "https://niklasfasching.github.io/go-org"; - license = licenses.mit; - maintainers = with maintainers; [ bhankas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bhankas ]; mainProgram = "go-org"; }; } diff --git a/pkgs/by-name/go/go-outline/package.nix b/pkgs/by-name/go/go-outline/package.nix index 042d8f92418e..436497a1a6aa 100644 --- a/pkgs/by-name/go/go-outline/package.nix +++ b/pkgs/by-name/go/go-outline/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-jYYtSXdJd2eUc80UfwRRMPcX6tFiXE3LbxV3NAdKVKE="; - meta = with lib; { + meta = { description = "Utility to extract JSON representation of declarations from a Go source file"; mainProgram = "go-outline"; homepage = "https://github.com/ramya-rao-a/go-outline"; - maintainers = with maintainers; [ vdemeester ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ vdemeester ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/go/go-passbolt-cli/package.nix b/pkgs/by-name/go/go-passbolt-cli/package.nix index d2c4341d90cb..6ec961336a9b 100644 --- a/pkgs/by-name/go/go-passbolt-cli/package.nix +++ b/pkgs/by-name/go/go-passbolt-cli/package.nix @@ -47,12 +47,12 @@ buildGoModule rec { cd $tmpDir && mkdir man && $out/bin/passbolt gendoc --type man && installManPage man/* ''; - meta = with lib; { + meta = { description = "CLI tool to interact with Passbolt, an open source password manager for teams"; homepage = "https://github.com/passbolt/go-passbolt-cli"; - license = licenses.mit; - maintainers = with maintainers; [ pbek ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbek ]; mainProgram = "passbolt"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/go/go-protobuf/package.nix b/pkgs/by-name/go/go-protobuf/package.nix index c1ce21dc2e56..32b6699405a3 100644 --- a/pkgs/by-name/go/go-protobuf/package.nix +++ b/pkgs/by-name/go/go-protobuf/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-jGAWUgW0DA7EwmlzVxnBmtbf2dp+P4Qwcb8mTAEhUi4="; - meta = with lib; { + meta = { homepage = "https://github.com/golang/protobuf"; description = "Go bindings for protocol buffer"; - maintainers = with maintainers; [ lewo ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ lewo ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/go/go-rice/package.nix b/pkgs/by-name/go/go-rice/package.nix index aef456d67a73..231521347ff2 100644 --- a/pkgs/by-name/go/go-rice/package.nix +++ b/pkgs/by-name/go/go-rice/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "rice" ]; - meta = with lib; { + meta = { description = "Go package that makes working with resources such as html, js, css, images, templates very easy"; homepage = "https://github.com/GeertJohan/go.rice"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "rice"; }; diff --git a/pkgs/by-name/go/go-sct/package.nix b/pkgs/by-name/go/go-sct/package.nix index 2ebda20800a5..e1a2f47a52fb 100644 --- a/pkgs/by-name/go/go-sct/package.nix +++ b/pkgs/by-name/go/go-sct/package.nix @@ -35,12 +35,12 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift"; homepage = "https://github.com/d4l3k/go-sct"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "sct"; }; } diff --git a/pkgs/by-name/go/go-shadowsocks2/package.nix b/pkgs/by-name/go/go-shadowsocks2/package.nix index d3398e2d7c7c..f81d0b4a1eda 100644 --- a/pkgs/by-name/go/go-shadowsocks2/package.nix +++ b/pkgs/by-name/go/go-shadowsocks2/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-RrHksWET5kicbdQ5HRDWhNxx4rTi2zaVeaPoLdg4uQw="; - meta = with lib; { + meta = { description = "Fresh implementation of Shadowsocks in Go"; homepage = "https://github.com/shadowsocks/go-shadowsocks2/"; - license = licenses.asl20; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ oxzi ]; mainProgram = "go-shadowsocks2"; }; } diff --git a/pkgs/by-name/go/go-swag/package.nix b/pkgs/by-name/go/go-swag/package.nix index efabe7428ee8..2ccc3b233859 100644 --- a/pkgs/by-name/go/go-swag/package.nix +++ b/pkgs/by-name/go/go-swag/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "cmd/swag" ]; - meta = with lib; { + meta = { description = "Automatically generate RESTful API documentation with Swagger 2.0 for Go"; homepage = "https://github.com/swaggo/swag"; - license = licenses.mit; - maintainers = with maintainers; [ stephenwithph ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ stephenwithph ]; mainProgram = "swag"; }; } diff --git a/pkgs/by-name/go/go-task/package.nix b/pkgs/by-name/go/go-task/package.nix index d02c3588692e..9dd8e5e53e64 100644 --- a/pkgs/by-name/go/go-task/package.nix +++ b/pkgs/by-name/go/go-task/package.nix @@ -52,11 +52,11 @@ buildGoModule (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://taskfile.dev/"; description = "Task runner / simpler Make alternative written in Go"; changelog = "https://github.com/go-task/task/blob/v${finalAttrs.version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ parasrah ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ parasrah ]; }; }) diff --git a/pkgs/by-name/go/go-tools/package.nix b/pkgs/by-name/go/go-tools/package.nix index 0f6dd8648fbd..e68fc8de1f80 100644 --- a/pkgs/by-name/go/go-tools/package.nix +++ b/pkgs/by-name/go/go-tools/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { excludedPackages = [ "website" ]; - meta = with lib; { + meta = { description = "Collection of tools and libraries for working with Go code, including linters and static analysis"; homepage = "https://staticcheck.io"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvolosatovs kalbasit smasher164 diff --git a/pkgs/by-name/go/goa/package.nix b/pkgs/by-name/go/goa/package.nix index 43431c6beea4..d3db636c31f2 100644 --- a/pkgs/by-name/go/goa/package.nix +++ b/pkgs/by-name/go/goa/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { subPackages = [ "cmd/goa" ]; - meta = with lib; { + meta = { description = "Design-based APIs and microservices in Go"; mainProgram = "goa"; homepage = "https://goa.design"; - license = licenses.mit; - maintainers = with maintainers; [ rushmorem ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rushmorem ]; }; } diff --git a/pkgs/by-name/go/goawk/package.nix b/pkgs/by-name/go/goawk/package.nix index 8f29104150bb..3e33ee995bca 100644 --- a/pkgs/by-name/go/goawk/package.nix +++ b/pkgs/by-name/go/goawk/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { doCheck = (stdenv.system != "aarch64-darwin"); - meta = with lib; { + meta = { description = "POSIX-compliant AWK interpreter written in Go"; homepage = "https://benhoyt.com/writings/goawk/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "goawk"; - maintainers = with maintainers; [ abbe ]; + maintainers = with lib.maintainers; [ abbe ]; }; } diff --git a/pkgs/by-name/go/gobby/package.nix b/pkgs/by-name/go/gobby/package.nix index 18f48b758d68..a9327bceb535 100644 --- a/pkgs/by-name/go/gobby/package.nix +++ b/pkgs/by-name/go/gobby/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = with lib; { + meta = { homepage = "http://gobby.0x539.de/"; description = "GTK-based collaborative editor supporting multiple documents in one session and a multi-user chat"; mainProgram = "gobby-0.5"; license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/go/gobgp/package.nix b/pkgs/by-name/go/gobgp/package.nix index df1eb6e62842..88796c53bebb 100644 --- a/pkgs/by-name/go/gobgp/package.nix +++ b/pkgs/by-name/go/gobgp/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { subPackages = [ "cmd/gobgp" ]; - meta = with lib; { + meta = { description = "CLI tool for GoBGP"; homepage = "https://osrg.github.io/gobgp/"; - license = licenses.asl20; - maintainers = with maintainers; [ higebu ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ higebu ]; mainProgram = "gobgp"; }; } diff --git a/pkgs/by-name/go/gobi_loader/package.nix b/pkgs/by-name/go/gobi_loader/package.nix index 42a4a9502bb2..2c4b9813cd72 100644 --- a/pkgs/by-name/go/gobi_loader/package.nix +++ b/pkgs/by-name/go/gobi_loader/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Firmware loader for Qualcomm Gobi USB chipsets"; homepage = "https://www.codon.org.uk/~mjg59/gobi_loader/"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/go/gocd-agent/package.nix b/pkgs/by-name/go/gocd-agent/package.nix index c54dca292c62..de7d03605187 100644 --- a/pkgs/by-name/go/gocd-agent/package.nix +++ b/pkgs/by-name/go/gocd-agent/package.nix @@ -18,16 +18,16 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) gocd-agent; }; - meta = with lib; { + meta = { description = "Continuous delivery server specializing in advanced workflow modeling and visualization"; homepage = "http://www.go.cd"; - license = licenses.asl20; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ grahamc swarren83 ]; diff --git a/pkgs/by-name/go/gocd-server/package.nix b/pkgs/by-name/go/gocd-server/package.nix index 3197d6e05fb0..0b13466c0f70 100644 --- a/pkgs/by-name/go/gocd-server/package.nix +++ b/pkgs/by-name/go/gocd-server/package.nix @@ -16,16 +16,16 @@ stdenv.mkDerivation rec { sha256 = "sha256-//d6izGm1odE25H/PI5pn51FfUL4/6GbLwKUKAqZ3Kw="; }; - meta = with lib; { + meta = { description = "Continuous delivery server specializing in advanced workflow modeling and visualization"; homepage = "http://www.go.cd"; - license = licenses.asl20; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ grahamc swarren83 ]; diff --git a/pkgs/by-name/go/gocode-gomod/package.nix b/pkgs/by-name/go/gocode-gomod/package.nix index 9aec956c578e..960ab55edb00 100644 --- a/pkgs/by-name/go/gocode-gomod/package.nix +++ b/pkgs/by-name/go/gocode-gomod/package.nix @@ -28,7 +28,7 @@ buildGoModule rec { doCheck = false; # fails on go 1.17 - meta = with lib; { + meta = { description = "Autocompletion daemon for the Go programming language"; mainProgram = "gocode-gomod"; longDescription = '' @@ -44,8 +44,8 @@ buildGoModule rec { noticeable. ''; homepage = "https://github.com/stamblerre/gocode"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit rvolosatovs ]; diff --git a/pkgs/by-name/go/goconst/package.nix b/pkgs/by-name/go/goconst/package.nix index 10bc1b97bfd3..982d5efa41c5 100644 --- a/pkgs/by-name/go/goconst/package.nix +++ b/pkgs/by-name/go/goconst/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Find in Go repeated strings that could be replaced by a constant"; mainProgram = "goconst"; homepage = "https://github.com/jgautheron/goconst"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/go/gocryptfs/package.nix b/pkgs/by-name/go/gocryptfs/package.nix index cc3047df55b7..729535f87305 100644 --- a/pkgs/by-name/go/gocryptfs/package.nix +++ b/pkgs/by-name/go/gocryptfs/package.nix @@ -63,15 +63,15 @@ buildGoModule rec { ln -s $out/bin/gocryptfs $out/bin/mount.fuse.gocryptfs ''; - meta = with lib; { + meta = { description = "Encrypted overlay filesystem written in Go"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://nuetzlich.net/gocryptfs/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ flokli offline prusnak ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/go/gocyclo/package.nix b/pkgs/by-name/go/gocyclo/package.nix index cd5447ef9c8e..23f8f21ce99e 100644 --- a/pkgs/by-name/go/gocyclo/package.nix +++ b/pkgs/by-name/go/gocyclo/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Calculate cyclomatic complexities of functions in Go source code"; mainProgram = "gocyclo"; homepage = "https://github.com/fzipp/gocyclo"; - license = licenses.bsd3; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/go/goda/package.nix b/pkgs/by-name/go/goda/package.nix index 9cb792b72fd1..284d0238ba52 100644 --- a/pkgs/by-name/go/goda/package.nix +++ b/pkgs/by-name/go/goda/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/loov/goda"; description = "Go Dependency Analysis toolkit"; - maintainers = with maintainers; [ michaeladler ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ michaeladler ]; + license = lib.licenses.mit; mainProgram = "goda"; }; } diff --git a/pkgs/by-name/go/godu/package.nix b/pkgs/by-name/go/godu/package.nix index 40e123d422ed..00d1ad15e89e 100644 --- a/pkgs/by-name/go/godu/package.nix +++ b/pkgs/by-name/go/godu/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Utility helping to discover large files/folders"; homepage = "https://github.com/viktomas/godu"; - license = licenses.mit; - maintainers = with maintainers; [ rople380 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rople380 ]; mainProgram = "godu"; }; } diff --git a/pkgs/by-name/go/gof5/package.nix b/pkgs/by-name/go/gof5/package.nix index ae0da31368bd..c1c87285801c 100644 --- a/pkgs/by-name/go/gof5/package.nix +++ b/pkgs/by-name/go/gof5/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { # See: https://github.com/kayrus/gof5/blob/674485bdf5a0eb2ab57879a32a2cb4bab8d5d44c/pkg/client/http.go#L172-L174 doCheck = false; - meta = with lib; { + meta = { description = "Open Source F5 BIG-IP VPN client"; homepage = "https://github.com/kayrus/gof5"; - license = licenses.asl20; - maintainers = with maintainers; [ leixb ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ leixb ]; mainProgram = "gof5"; }; } diff --git a/pkgs/by-name/go/gofish/package.nix b/pkgs/by-name/go/gofish/package.nix index ac9ccbdf5ebf..e2c84c9f6747 100644 --- a/pkgs/by-name/go/gofish/package.nix +++ b/pkgs/by-name/go/gofish/package.nix @@ -14,11 +14,11 @@ stdenv.mkDerivation rec { sha256 = "0br5nvlna86k4ya4q13gz0i7nlmk225lqmpfiqlkldxkr473kf0s"; }; - meta = with lib; { + meta = { description = "Lightweight Gopher server"; homepage = "https://gofish.sourceforge.net/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/go/goflow/package.nix b/pkgs/by-name/go/goflow/package.nix index 2e6e5a05c810..6febb43fed7e 100644 --- a/pkgs/by-name/go/goflow/package.nix +++ b/pkgs/by-name/go/goflow/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-8Vz6zNxFAFjg6VGYaoYbFEp+fJXu3jrC7HJFxdQRkjw="; - meta = with lib; { + meta = { description = "NetFlow/IPFIX/sFlow collector in Go"; homepage = "https://github.com/cloudflare/goflow"; - license = licenses.bsd3; - maintainers = with maintainers; [ heph2 ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ heph2 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/go/gofu/package.nix b/pkgs/by-name/go/gofu/package.nix index 09e4723dfeac..1b95bd33f4c0 100644 --- a/pkgs/by-name/go/gofu/package.nix +++ b/pkgs/by-name/go/gofu/package.nix @@ -24,10 +24,10 @@ buildGoModule { ln -s $out/bin/gofu $out/bin/prettyprompt ''; - meta = with lib; { + meta = { description = "Multibinary containing several utilities"; homepage = "https://github.com/majewsky/gofu"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/go/gogdl/package.nix b/pkgs/by-name/go/gogdl/package.nix index d553563a35c4..1f019c2bb022 100644 --- a/pkgs/by-name/go/gogdl/package.nix +++ b/pkgs/by-name/go/gogdl/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "gogdl" ]; - meta = with lib; { + meta = { description = "GOG Downloading module for Heroic Games Launcher"; mainProgram = "gogdl"; homepage = "https://github.com/Heroic-Games-Launcher/heroic-gogdl"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; maintainers = [ ]; }; diff --git a/pkgs/by-name/go/gogetdoc/package.nix b/pkgs/by-name/go/gogetdoc/package.nix index 592b92f145ad..9b45540a4fab 100644 --- a/pkgs/by-name/go/gogetdoc/package.nix +++ b/pkgs/by-name/go/gogetdoc/package.nix @@ -21,12 +21,12 @@ buildGoModule rec { sha256 = "1v74zd0x2xh10603p8raazssacv3y0x0lr9apkpsdk0bfp5jj0lr"; }; - meta = with lib; { + meta = { description = "Gets documentation for items in Go source code"; mainProgram = "gogetdoc"; homepage = "https://github.com/zmb3/gogetdoc"; - license = licenses.bsd3; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kalbasit ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/go/gohai/package.nix b/pkgs/by-name/go/gohai/package.nix index 9974ae0daf72..c8b2e18af574 100644 --- a/pkgs/by-name/go/gohai/package.nix +++ b/pkgs/by-name/go/gohai/package.nix @@ -24,11 +24,11 @@ buildGoModule { doCheck = false; - meta = with lib; { + meta = { description = "System information collector"; homepage = "https://github.com/DataDog/gohai"; - license = licenses.mit; - maintainers = with maintainers; [ tazjin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tazjin ]; longDescription = '' Gohai is a tool which collects an inventory of system information. It is used by the Datadog agent to provide detailed diff --git a/pkgs/by-name/go/gohufont/package.nix b/pkgs/by-name/go/gohufont/package.nix index 6aedda0d0be8..8f16374282d8 100644 --- a/pkgs/by-name/go/gohufont/package.nix +++ b/pkgs/by-name/go/gohufont/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation { mkfontdir "$fontDir" ''; - meta = with lib; { + meta = { description = '' A monospace bitmap font well suited for programming and terminal use ''; homepage = "https://font.gohu.org/"; - license = licenses.wtfpl; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/go/goimapnotify/package.nix b/pkgs/by-name/go/goimapnotify/package.nix index 82cedbe6345e..a33dcc2ef887 100644 --- a/pkgs/by-name/go/goimapnotify/package.nix +++ b/pkgs/by-name/go/goimapnotify/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "Execute scripts on IMAP mailbox changes (new/deleted/updated messages) using IDLE"; homepage = "https://gitlab.com/shackra/goimapnotify"; changelog = "https://gitlab.com/shackra/goimapnotify/-/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wohanley rafaelrc ]; diff --git a/pkgs/by-name/go/goimports-reviser/package.nix b/pkgs/by-name/go/goimports-reviser/package.nix index 4796f3ab7d44..1390a7d7fe2b 100644 --- a/pkgs/by-name/go/goimports-reviser/package.nix +++ b/pkgs/by-name/go/goimports-reviser/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { unset CGO_ENABLED ''; - meta = with lib; { + meta = { description = "Right imports sorting & code formatting tool (goimports alternative)"; mainProgram = "goimports-reviser"; homepage = "https://github.com/incu6us/goimports-reviser"; - license = licenses.mit; - maintainers = with maintainers; [ jk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jk ]; }; } diff --git a/pkgs/by-name/go/gojsontoyaml/package.nix b/pkgs/by-name/go/gojsontoyaml/package.nix index 306e1a2392b8..ffa8fb05e18b 100644 --- a/pkgs/by-name/go/gojsontoyaml/package.nix +++ b/pkgs/by-name/go/gojsontoyaml/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Simply tool to convert json to yaml written in Go"; mainProgram = "gojsontoyaml"; homepage = "https://github.com/brancz/gojsontoyaml"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/gokart/package.nix b/pkgs/by-name/go/gokart/package.nix index 8329362779f6..b96a2d18c6b9 100644 --- a/pkgs/by-name/go/gokart/package.nix +++ b/pkgs/by-name/go/gokart/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # Would need files to scan which are not shipped by the project doCheck = false; - meta = with lib; { + meta = { description = "Static analysis tool for securing Go code"; mainProgram = "gokart"; homepage = "https://github.com/praetorian-inc/gokart"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/go/gokey/package.nix b/pkgs/by-name/go/gokey/package.nix index ee5e6c2be92e..01f47a5bce83 100644 --- a/pkgs/by-name/go/gokey/package.nix +++ b/pkgs/by-name/go/gokey/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { vendorHash = "sha256-Btac9Oi8efqRy+OH49Na3Y6RGehHEmGfvDo2/7EWPL4="; - meta = with lib; { + meta = { homepage = "https://github.com/cloudflare/gokey"; description = "Vault-less password store"; - license = licenses.bsd3; - maintainers = [ maintainers.confus ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.confus ]; mainProgram = "gokey"; }; } diff --git a/pkgs/by-name/go/gokrazy/package.nix b/pkgs/by-name/go/gokrazy/package.nix index 4e280acb2653..5bf5b248c8b3 100644 --- a/pkgs/by-name/go/gokrazy/package.nix +++ b/pkgs/by-name/go/gokrazy/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "cmd/gok" ]; - meta = with lib; { + meta = { description = "Turn your Go program(s) into an appliance running on the Raspberry Pi 3, Pi 4, Pi Zero 2 W, or amd64 PCs"; homepage = "https://github.com/gokrazy/gokrazy"; - license = licenses.bsd3; - maintainers = with maintainers; [ shayne ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ shayne ]; mainProgram = "gok"; }; } diff --git a/pkgs/by-name/go/gol/package.nix b/pkgs/by-name/go/gol/package.nix index bd838f576e0d..b8d1225f438e 100644 --- a/pkgs/by-name/go/gol/package.nix +++ b/pkgs/by-name/go/gol/package.nix @@ -35,7 +35,7 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command-line utility for creating and managing Geographic Object Libraries"; longDescription = '' Use the GOL command-line utility to: @@ -43,8 +43,8 @@ maven.buildMavenPackage rec { - perform GOQL queries and export the results in a variety of formats. ''; homepage = "https://docs.geodesk.com/gol"; - license = licenses.agpl3Only; - maintainers = [ maintainers.starsep ]; - platforms = platforms.all; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.starsep ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/go/golines/package.nix b/pkgs/by-name/go/golines/package.nix index 4ccb3c97d892..0c7a02bc81cc 100644 --- a/pkgs/by-name/go/golines/package.nix +++ b/pkgs/by-name/go/golines/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-94IXh9iBAE0jJXovaElY8oFdXE6hxYg0Ww0ZEHLnEwc="; - meta = with lib; { + meta = { description = "Golang formatter that fixes long lines"; homepage = "https://github.com/segmentio/golines"; - license = licenses.mit; - maintainers = with maintainers; [ meain ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ meain ]; mainProgram = "golines"; }; } diff --git a/pkgs/by-name/go/golink/package.nix b/pkgs/by-name/go/golink/package.nix index 0eef3fea4199..2ae8a78b0334 100644 --- a/pkgs/by-name/go/golink/package.nix +++ b/pkgs/by-name/go/golink/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Private shortlink service for tailnets"; homepage = "https://github.com/tailscale/golink"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "golink"; }; } diff --git a/pkgs/by-name/go/golint/package.nix b/pkgs/by-name/go/golint/package.nix index 172769eeba77..13f8e10b1468 100644 --- a/pkgs/by-name/go/golint/package.nix +++ b/pkgs/by-name/go/golint/package.nix @@ -26,12 +26,12 @@ buildGoModule { # /build/lint-6edffad/vendor/github.com/pkg/errors doCheck = false; - meta = with lib; { + meta = { homepage = "https://golang.org"; description = "Linter for Go source code"; mainProgram = "golint"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jhillyerd tomberek ]; diff --git a/pkgs/by-name/go/gollum/package.nix b/pkgs/by-name/go/gollum/package.nix index 47c5e2a01e5d..a574ba1ae073 100644 --- a/pkgs/by-name/go/gollum/package.nix +++ b/pkgs/by-name/go/gollum/package.nix @@ -19,18 +19,18 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "gollum"; passthru.tests.gollum = nixosTests.gollum; - meta = with lib; { + meta = { description = "Simple, Git-powered wiki with a sweet API and local frontend"; homepage = "https://github.com/gollum/gollum"; changelog = "https://github.com/gollum/gollum/blob/HEAD/HISTORY.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen jgillich nicknovitski bbenno ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "gollum"; }; } diff --git a/pkgs/by-name/go/gom/package.nix b/pkgs/by-name/go/gom/package.nix index d54564dcadc2..70699b6b92dc 100644 --- a/pkgs/by-name/go/gom/package.nix +++ b/pkgs/by-name/go/gom/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GObject to SQLite object mapper"; homepage = "https://gitlab.gnome.org/GNOME/gom"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/go/gomacro/package.nix b/pkgs/by-name/go/gomacro/package.nix index b14880adb2a0..fb3cbeb8999c 100644 --- a/pkgs/by-name/go/gomacro/package.nix +++ b/pkgs/by-name/go/gomacro/package.nix @@ -19,11 +19,11 @@ buildGoModule { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Interactive Go interpreter and debugger with generics and macros"; mainProgram = "gomacro"; homepage = "https://github.com/cosmos72/gomacro"; - license = licenses.mpl20; - maintainers = with maintainers; [ shofius ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ shofius ]; }; } diff --git a/pkgs/by-name/go/gomapenum/package.nix b/pkgs/by-name/go/gomapenum/package.nix index 5153e358cf37..9b0c978bc04b 100644 --- a/pkgs/by-name/go/gomapenum/package.nix +++ b/pkgs/by-name/go/gomapenum/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/src $out/bin/$pname ''; - meta = with lib; { + meta = { description = "Tools for user enumeration and password bruteforce"; mainProgram = "gomapenum"; homepage = "https://github.com/nodauf/GoMapEnum"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/go/gomarkdoc/package.nix b/pkgs/by-name/go/gomarkdoc/package.nix index f4c7bb49a5fd..78e158802958 100644 --- a/pkgs/by-name/go/gomarkdoc/package.nix +++ b/pkgs/by-name/go/gomarkdoc/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Generate markdown documentation for Go (golang) code"; homepage = "https://github.com/princjef/gomarkdoc"; - license = licenses.mit; - maintainers = with maintainers; [ brpaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ brpaz ]; mainProgram = "gomarkdoc"; }; } diff --git a/pkgs/by-name/go/gomatrix/package.nix b/pkgs/by-name/go/gomatrix/package.nix index 387b0ed1063a..d56cbcda898a 100644 --- a/pkgs/by-name/go/gomatrix/package.nix +++ b/pkgs/by-name/go/gomatrix/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = ''Displays "The Matrix" in a terminal''; - license = licenses.bsd2; - maintainers = with maintainers; [ skykanin ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ skykanin ]; homepage = "https://github.com/GeertJohan/gomatrix"; mainProgram = "gomatrix"; }; diff --git a/pkgs/by-name/go/gomp/package.nix b/pkgs/by-name/go/gomp/package.nix index 88e296b4f9f6..0afd2169f742 100644 --- a/pkgs/by-name/go/gomp/package.nix +++ b/pkgs/by-name/go/gomp/package.nix @@ -20,12 +20,12 @@ python3Packages.buildPythonApplication rec { doCheck = false; # tests require interactive terminal - meta = with lib; { + meta = { description = "Tool for comparing Git branches"; homepage = "https://github.com/MarkForged/GOMP"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.unix; mainProgram = "gomp"; }; } diff --git a/pkgs/by-name/go/gomuks/package.nix b/pkgs/by-name/go/gomuks/package.nix index 148b995cbc79..b938f1e0ec56 100644 --- a/pkgs/by-name/go/gomuks/package.nix +++ b/pkgs/by-name/go/gomuks/package.nix @@ -58,11 +58,11 @@ buildGoModule rec { --set-default GOMUKS_SOUND_CRITICAL "${sound-theme-freedesktop}/share/sounds/freedesktop/stereo/complete.oga" ''; - meta = with lib; { + meta = { homepage = "https://maunium.net/go/gomuks/"; description = "Terminal based Matrix client written in Go"; mainProgram = "gomuks"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ chvp ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ chvp ]; }; } diff --git a/pkgs/by-name/go/goocanvasmm2/package.nix b/pkgs/by-name/go/goocanvasmm2/package.nix index ae2c4688b8c0..61ea379b1b46 100644 --- a/pkgs/by-name/go/goocanvasmm2/package.nix +++ b/pkgs/by-name/go/goocanvasmm2/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ bindings for GooCanvas"; homepage = "https://gitlab.gnome.org/Archive/goocanvasmm"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/go/goodhosts/package.nix b/pkgs/by-name/go/goodhosts/package.nix index dfb80b8a902a..ef9daeab99e5 100644 --- a/pkgs/by-name/go/goodhosts/package.nix +++ b/pkgs/by-name/go/goodhosts/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { vendorHash = "sha256-t/pdJWz6rLnBbH8iq9Nqy+E+DD2770UCEcowwStPdqM="; - meta = with lib; { + meta = { description = "CLI tool for managing hostfiles"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/goodhosts/cli/tree/main"; - maintainers = with maintainers; [ schinmai-akamai ]; + maintainers = with lib.maintainers; [ schinmai-akamai ]; mainProgram = "goodhosts"; }; } diff --git a/pkgs/by-name/go/goodvibes/package.nix b/pkgs/by-name/go/goodvibes/package.nix index cc7e123d8bec..b30f0205b847 100644 --- a/pkgs/by-name/go/goodvibes/package.nix +++ b/pkgs/by-name/go/goodvibes/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { patchShebangs scripts ''; - meta = with lib; { + meta = { description = "Lightweight internet radio player"; homepage = "https://gitlab.com/goodvibes/goodvibes"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/go/google-amber/package.nix b/pkgs/by-name/go/google-amber/package.nix index 8faf013a61b7..8cedbc82006b 100644 --- a/pkgs/by-name/go/google-amber/package.nix +++ b/pkgs/by-name/go/google-amber/package.nix @@ -150,10 +150,10 @@ stdenv.mkDerivation (finalAttrs: { touch $out ''; - meta = with lib; { + meta = { description = "Multi-API shader test framework"; homepage = "https://github.com/google/amber"; - license = licenses.asl20; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Flakebi ]; }; }) diff --git a/pkgs/by-name/go/google-app-engine-go-sdk/package.nix b/pkgs/by-name/go/google-app-engine-go-sdk/package.nix index ab1a486c2744..a1fe19852d99 100644 --- a/pkgs/by-name/go/google-app-engine-go-sdk/package.nix +++ b/pkgs/by-name/go/google-app-engine-go-sdk/package.nix @@ -38,19 +38,19 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Google App Engine SDK for Go"; version = version; homepage = "https://cloud.google.com/appengine/docs/go/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode # includes golang toolchain binaries ]; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" "x86_64-darwin" ]; - maintainers = with maintainers; [ lufia ]; + maintainers = with lib.maintainers; [ lufia ]; }; } diff --git a/pkgs/by-name/go/google-authenticator/package.nix b/pkgs/by-name/go/google-authenticator/package.nix index 3eacb27aabee..8075dcccb8b6 100644 --- a/pkgs/by-name/go/google-authenticator/package.nix +++ b/pkgs/by-name/go/google-authenticator/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { cp google-authenticator $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/google/google-authenticator-libpam"; description = "Two-step verification, with pam module"; mainProgram = "google-authenticator"; - license = licenses.asl20; - maintainers = with maintainers; [ aneeshusa ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aneeshusa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/go/google-cloud-bigtable-tool/package.nix b/pkgs/by-name/go/google-cloud-bigtable-tool/package.nix index 889a98208f66..680a59f4aae8 100644 --- a/pkgs/by-name/go/google-cloud-bigtable-tool/package.nix +++ b/pkgs/by-name/go/google-cloud-bigtable-tool/package.nix @@ -21,7 +21,7 @@ buildGoModule rec { "-short" ]; - meta = with lib; { + meta = { description = "Google Cloud Bigtable Tool"; longDescription = '' `cbt` is the Google Cloud Bigtable Tool. A CLI utility to interact with Google Cloud Bigtable. @@ -31,8 +31,8 @@ buildGoModule rec { For information about Bigtable in general, see the [overview of Bigtable](https://cloud.google.com/bigtable/docs/overview). ''; homepage = "https://github.com/googleapis/cloud-bigtable-cbt-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ totoroot ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ totoroot ]; mainProgram = "cbt"; }; } diff --git a/pkgs/by-name/go/google-cloud-cpp/package.nix b/pkgs/by-name/go/google-cloud-cpp/package.nix index 4446c8105dc2..67f83f00d44c 100644 --- a/pkgs/by-name/go/google-cloud-cpp/package.nix +++ b/pkgs/by-name/go/google-cloud-cpp/package.nix @@ -135,11 +135,11 @@ stdenv.mkDerivation rec { requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { - license = with licenses; [ asl20 ]; + meta = { + license = with lib.licenses; [ asl20 ]; homepage = "https://github.com/googleapis/google-cloud-cpp"; description = "C++ Idiomatic Clients for Google Cloud Platform services"; platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with maintainers; [ cpcloud ]; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/by-name/go/google-cloud-sdk/package.nix b/pkgs/by-name/go/google-cloud-sdk/package.nix index e7014c1a0037..e9fae78d0826 100644 --- a/pkgs/by-name/go/google-cloud-sdk/package.nix +++ b/pkgs/by-name/go/google-cloud-sdk/package.nix @@ -173,18 +173,18 @@ stdenv.mkDerivation rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Tools for the google cloud platform"; longDescription = "The Google Cloud SDK for GCE hosts. Used by `google-cloud-sdk` only on GCE guests."; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode # anthoscli and possibly more ]; # This package contains vendored dependencies. All have free licenses. - license = licenses.free; + license = lib.licenses.free; homepage = "https://cloud.google.com/sdk/"; changelog = "https://cloud.google.com/sdk/docs/release-notes"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ iammrinal0 marcusramberg pradyuman diff --git a/pkgs/by-name/go/google-cloud-sql-proxy/package.nix b/pkgs/by-name/go/google-cloud-sql-proxy/package.nix index 5b4c3daf73c2..681da631904d 100644 --- a/pkgs/by-name/go/google-cloud-sql-proxy/package.nix +++ b/pkgs/by-name/go/google-cloud-sql-proxy/package.nix @@ -26,7 +26,7 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Utility for ensuring secure connections to Google Cloud SQL instances"; longDescription = '' The Cloud SQL Auth Proxy is a utility for ensuring secure connections to your Cloud SQL instances. @@ -37,8 +37,8 @@ buildGoModule rec { page for details on how the Cloud SQL Proxy works. ''; homepage = "https://github.com/GoogleCloudPlatform/cloud-sql-proxy"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nicknovitski totoroot ]; diff --git a/pkgs/by-name/go/google-cursor/package.nix b/pkgs/by-name/go/google-cursor/package.nix index ab341044e221..6b9c8b733304 100644 --- a/pkgs/by-name/go/google-cursor/package.nix +++ b/pkgs/by-name/go/google-cursor/package.nix @@ -43,11 +43,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { cp -r GoogleDot-* $out/share/icons ''; - meta = with lib; { + meta = { description = "Opensource cursor theme inspired by Google"; homepage = "https://github.com/ful1e5/Google_Cursor"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ quadradical ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ quadradical ]; }; }) diff --git a/pkgs/by-name/go/google-fonts/package.nix b/pkgs/by-name/go/google-fonts/package.nix index e4af1e844e0e..7d84384f2b7c 100644 --- a/pkgs/by-name/go/google-fonts/package.nix +++ b/pkgs/by-name/go/google-fonts/package.nix @@ -68,17 +68,17 @@ stdenvNoCC.mkDerivation { '' ); - meta = with lib; { + meta = { homepage = "https://fonts.google.com"; description = "Font files available from Google Fonts"; - license = with licenses; [ + license = with lib.licenses; [ asl20 ofl ufl ]; - platforms = platforms.all; + platforms = lib.platforms.all; hydraPlatforms = [ ]; - maintainers = with maintainers; [ manveru ]; - sourceProvenance = [ sourceTypes.binaryBytecode ]; + maintainers = with lib.maintainers; [ manveru ]; + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; }; } diff --git a/pkgs/by-name/go/google-guest-configs/package.nix b/pkgs/by-name/go/google-guest-configs/package.nix index c8d39f859a14..0783cdcd4881 100644 --- a/pkgs/by-name/go/google-guest-configs/package.nix +++ b/pkgs/by-name/go/google-guest-configs/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/GoogleCloudPlatform/guest-configs"; description = "Linux Guest Environment for Google Compute Engine"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/google-guest-oslogin/package.nix b/pkgs/by-name/go/google-guest-oslogin/package.nix index f555ee4be088..1f3d2d697c1f 100644 --- a/pkgs/by-name/go/google-guest-oslogin/package.nix +++ b/pkgs/by-name/go/google-guest-oslogin/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) google-oslogin; }; - meta = with lib; { + meta = { homepage = "https://github.com/GoogleCloudPlatform/compute-image-packages"; description = "OS Login Guest Environment for Google Compute Engine"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/google-java-format/package.nix b/pkgs/by-name/go/google-java-format/package.nix index 2d56ace21659..23b17f692ed2 100644 --- a/pkgs/by-name/go/google-java-format/package.nix +++ b/pkgs/by-name/go/google-java-format/package.nix @@ -38,16 +38,16 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Java source formatter by Google"; longDescription = '' A program that reformats Java source code to comply with Google Java Style. ''; homepage = "https://github.com/google/google-java-format"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = [ maintainers.emptyflask ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.emptyflask ]; + platforms = lib.platforms.all; mainProgram = "google-java-format"; }; } diff --git a/pkgs/by-name/go/goose/package.nix b/pkgs/by-name/go/goose/package.nix index 0410e217b7b9..70596058de39 100644 --- a/pkgs/by-name/go/goose/package.nix +++ b/pkgs/by-name/go/goose/package.nix @@ -43,10 +43,10 @@ buildGoModule rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Database migration tool which supports SQL migrations and Go functions"; homepage = "https://pressly.github.io/goose/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; mainProgram = "goose"; }; diff --git a/pkgs/by-name/go/gopacked/package.nix b/pkgs/by-name/go/gopacked/package.nix index 9c482c172bc6..83fb518dcc41 100644 --- a/pkgs/by-name/go/gopacked/package.nix +++ b/pkgs/by-name/go/gopacked/package.nix @@ -19,9 +19,9 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Simple text-based Minecraft modpack manager"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; homepage = src.meta.homepage; maintainers = [ ]; }; diff --git a/pkgs/by-name/go/gopatch/package.nix b/pkgs/by-name/go/gopatch/package.nix index 2f3573ee5a64..6bc6a0feb289 100644 --- a/pkgs/by-name/go/gopatch/package.nix +++ b/pkgs/by-name/go/gopatch/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Refactoring and code transformation tool for Go"; mainProgram = "gopatch"; homepage = "https://github.com/uber-go/gopatch"; changelog = "https://github.com/uber-go/gopatch/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/goperf/package.nix b/pkgs/by-name/go/goperf/package.nix index d9bc0afb7f64..1f5759e5914f 100644 --- a/pkgs/by-name/go/goperf/package.nix +++ b/pkgs/by-name/go/goperf/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { ${lib.getExe sd} --string-mode "$oldhash" "$newhash" "$fname" ''; - meta = with lib; { + meta = { description = "Tools and packages for analyzing Go benchmark results"; homepage = "https://cs.opensource.google/go/x/perf"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/by-name/go/gopher/package.nix b/pkgs/by-name/go/gopher/package.nix index 19a05a661c92..78fafa6214e5 100644 --- a/pkgs/by-name/go/gopher/package.nix +++ b/pkgs/by-name/go/gopher/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { preConfigure = "export LIBS=-lncurses"; - meta = with lib; { + meta = { homepage = "http://gopher.quux.org:70/devel/gopher"; description = "Ncurses gopher client"; - platforms = platforms.linux; # clang doesn't like local regex.h - license = licenses.gpl2; - maintainers = with maintainers; [ sternenseemann ]; + platforms = lib.platforms.linux; # clang doesn't like local regex.h + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/by-name/go/gophernotes/package.nix b/pkgs/by-name/go/gophernotes/package.nix index f4829ba509a3..5341031fdc70 100644 --- a/pkgs/by-name/go/gophernotes/package.nix +++ b/pkgs/by-name/go/gophernotes/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-iIBqx52fD12R+7MSjQNihMYYtZ9vPAdJndOG4YJVhy4="; - meta = with lib; { + meta = { description = "Go kernel for Jupyter notebooks"; homepage = "https://github.com/gopherdata/gophernotes"; - license = licenses.mit; - maintainers = [ maintainers.costrouc ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.costrouc ]; mainProgram = "gophernotes"; }; } diff --git a/pkgs/by-name/go/gophish/package.nix b/pkgs/by-name/go/gophish/package.nix index 04c4e53425cf..f2d618dce6c1 100644 --- a/pkgs/by-name/go/gophish/package.nix +++ b/pkgs/by-name/go/gophish/package.nix @@ -17,15 +17,15 @@ buildGoModule rec { vendorHash = "sha256-2seQCVALU35l+aAsfag0W19FWlSTlEsSmxTmKKi3A+0="; - meta = with lib; { + meta = { description = "Open-Source Phishing Toolkit"; longDescription = '' Open-source phishing toolkit designed for businesses and penetration testers. Provides the ability to quickly and easily setup and execute phishing engagements and security awareness training. ''; homepage = "https://github.com/gophish/gophish"; - license = licenses.mit; - maintainers = with maintainers; [ mib ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mib ]; mainProgram = "gophish"; }; } diff --git a/pkgs/by-name/go/gopro/package.nix b/pkgs/by-name/go/gopro/package.nix index 296a25f045ff..66cc4c51e0a2 100644 --- a/pkgs/by-name/go/gopro/package.nix +++ b/pkgs/by-name/go/gopro/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line interface for processing media filmed on GoPro HERO 3, 4, 5, 6, and 7 cameras"; homepage = "https://github.com/KonradIT/gopro-linux"; - platforms = platforms.unix; - license = licenses.gpl3; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "gopro"; }; diff --git a/pkgs/by-name/go/gops/package.nix b/pkgs/by-name/go/gops/package.nix index 2a38e8e13525..6c6187b7640c 100644 --- a/pkgs/by-name/go/gops/package.nix +++ b/pkgs/by-name/go/gops/package.nix @@ -32,11 +32,11 @@ buildGoModule (finalAttrs: { --zsh <($out/bin/gops completion zsh) ''; - meta = with lib; { + meta = { description = "Tool to list and diagnose Go processes currently running on your system"; mainProgram = "gops"; homepage = "https://github.com/google/gops"; - license = licenses.bsd3; - maintainers = with maintainers; [ pborzenkov ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pborzenkov ]; }; }) diff --git a/pkgs/by-name/go/gopsuinfo/package.nix b/pkgs/by-name/go/gopsuinfo/package.nix index 37b1d4123c22..6e8ed38b8e00 100644 --- a/pkgs/by-name/go/gopsuinfo/package.nix +++ b/pkgs/by-name/go/gopsuinfo/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { # Install icons postInstall = ''make install DESTDIR=$out''; - meta = with lib; { + meta = { description = "Gopsutil-based command to display system usage info"; homepage = "https://github.com/nwg-piotr/gopsuinfo"; - license = licenses.bsd2; - maintainers = with maintainers; [ otini ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ otini ]; + platforms = lib.platforms.linux; mainProgram = "gopsuinfo"; }; } diff --git a/pkgs/by-name/go/gore/package.nix b/pkgs/by-name/go/gore/package.nix index aae50cf1ec2e..6393a3b3c63c 100644 --- a/pkgs/by-name/go/gore/package.nix +++ b/pkgs/by-name/go/gore/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Yet another Go REPL that works nicely"; mainProgram = "gore"; homepage = "https://github.com/motemen/gore"; - license = licenses.mit; - maintainers = with maintainers; [ offline ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ offline ]; }; } diff --git a/pkgs/by-name/go/goredo/package.nix b/pkgs/by-name/go/goredo/package.nix index 7504320d4e3b..43018407f001 100644 --- a/pkgs/by-name/go/goredo/package.nix +++ b/pkgs/by-name/go/goredo/package.nix @@ -59,11 +59,11 @@ buildGoModule rec { "info" ]; - meta = with lib; { + meta = { outputsToInstall = [ "out" ]; description = "Makefile replacement that sucks less"; homepage = "https://www.goredo.cypherpunks.ru"; - license = licenses.gpl3; - maintainers = [ maintainers.spacefrogg ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.spacefrogg ]; }; } diff --git a/pkgs/by-name/go/goreleaser/package.nix b/pkgs/by-name/go/goreleaser/package.nix index bb0ab5ce168b..744f99c255b5 100644 --- a/pkgs/by-name/go/goreleaser/package.nix +++ b/pkgs/by-name/go/goreleaser/package.nix @@ -56,15 +56,15 @@ buildGo125Module rec { inherit version; }; - meta = with lib; { + meta = { description = "Deliver Go binaries as fast and easily as possible"; homepage = "https://goreleaser.com"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sarcasticadmin techknowlogick caarlos0 ]; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "goreleaser"; }; } diff --git a/pkgs/by-name/go/gorm-gentool/package.nix b/pkgs/by-name/go/gorm-gentool/package.nix index 684196730602..4a0e315c77c6 100644 --- a/pkgs/by-name/go/gorm-gentool/package.nix +++ b/pkgs/by-name/go/gorm-gentool/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { proxyVendor = true; vendorHash = "sha256-8xUJcsZuZ1KpFDM1AMTRggl7A7C/YaXYDzRKNFKE+ww="; - meta = with lib; { + meta = { homepage = "https://github.com/go-gorm/gen"; description = "Gen: Friendly & Safer GORM powered by Code Generation"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "gentool"; - maintainers = with maintainers; [ tembleking ]; + maintainers = with lib.maintainers; [ tembleking ]; }; } diff --git a/pkgs/by-name/go/gosec/package.nix b/pkgs/by-name/go/gosec/package.nix index 1eca059f0381..3dbf68d58c8f 100644 --- a/pkgs/by-name/go/gosec/package.nix +++ b/pkgs/by-name/go/gosec/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { "-X main.BuildDate=unknown" ]; - meta = with lib; { + meta = { homepage = "https://github.com/securego/gosec"; description = "Golang security checker"; mainProgram = "gosec"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit nilp0inter ]; diff --git a/pkgs/by-name/go/gosh/package.nix b/pkgs/by-name/go/gosh/package.nix index 70638a2f2562..fe30e145947e 100644 --- a/pkgs/by-name/go/gosh/package.nix +++ b/pkgs/by-name/go/gosh/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Reverse/bind shell generator"; homepage = "https://github.com/redcode-labs/GoSH"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; - teams = [ teams.redcodelabs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; + teams = [ lib.teams.redcodelabs ]; mainProgram = "GoSH"; }; } diff --git a/pkgs/by-name/go/gosimports/package.nix b/pkgs/by-name/go/gosimports/package.nix index 72826ccc9da8..2857ad65b9a6 100644 --- a/pkgs/by-name/go/gosimports/package.nix +++ b/pkgs/by-name/go/gosimports/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rinchsan/gosimports"; description = "Simpler goimports"; - license = licenses.bsd3; - maintainers = with maintainers; [ maolonglong ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ maolonglong ]; mainProgram = "gosimports"; }; } diff --git a/pkgs/by-name/go/gosmore/package.nix b/pkgs/by-name/go/gosmore/package.nix index 991d22051ba7..0073450267cd 100644 --- a/pkgs/by-name/go/gosmore/package.nix +++ b/pkgs/by-name/go/gosmore/package.nix @@ -41,14 +41,14 @@ stdenv.mkDerivation rec { "--binary" ]; # patch has dos style eol - meta = with lib; { + meta = { description = "Open Street Map viewer"; mainProgram = "gosmore"; homepage = "https://sourceforge.net/projects/gosmore/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.bsd2; + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/go/gospider/package.nix b/pkgs/by-name/go/gospider/package.nix index 6d11da882709..603b7e91be67 100644 --- a/pkgs/by-name/go/gospider/package.nix +++ b/pkgs/by-name/go/gospider/package.nix @@ -20,7 +20,7 @@ buildGoModule rec { # tests require internet access and API keys doCheck = false; - meta = with lib; { + meta = { description = "Fast web spider written in Go"; mainProgram = "gospider"; longDescription = '' @@ -29,7 +29,7 @@ buildGoModule rec { various sources and can detect subdomains from the response source. ''; homepage = "https://github.com/jaeles-project/gospider"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/go/gossa/package.nix b/pkgs/by-name/go/gossa/package.nix index 4bd1fe57970f..6cec8db0cf1f 100644 --- a/pkgs/by-name/go/gossa/package.nix +++ b/pkgs/by-name/go/gossa/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { # Tests require a socket connection to be created. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/pldubouilh/gossa"; description = "Fast and simple multimedia fileserver"; - license = licenses.mit; - maintainers = with maintainers; [ dsymbol ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dsymbol ]; mainProgram = "gossa"; }; } diff --git a/pkgs/by-name/go/gostatic/package.nix b/pkgs/by-name/go/gostatic/package.nix index 6499cc5aa2cd..16678ee1a3db 100644 --- a/pkgs/by-name/go/gostatic/package.nix +++ b/pkgs/by-name/go/gostatic/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-9YCt9crLuYjd+TUXJyx/EAYIMWM5TD+ZyzLeu0RMxVc="; - meta = with lib; { + meta = { description = "Fast static site generator"; homepage = "https://github.com/piranha/gostatic"; - license = licenses.isc; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "gostatic"; }; } diff --git a/pkgs/by-name/go/gosu/package.nix b/pkgs/by-name/go/gosu/package.nix index 711833a86f50..9b69053012d1 100644 --- a/pkgs/by-name/go/gosu/package.nix +++ b/pkgs/by-name/go/gosu/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { package = gosu; }; - meta = with lib; { + meta = { description = "Tool that avoids TTY and signal-forwarding behavior of sudo and su"; mainProgram = "gosu"; homepage = "https://github.com/tianon/gosu"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/go/gotags/package.nix b/pkgs/by-name/go/gotags/package.nix index 3e2c282e1ce1..3bd5b356adcf 100644 --- a/pkgs/by-name/go/gotags/package.nix +++ b/pkgs/by-name/go/gotags/package.nix @@ -31,11 +31,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "ctags-compatible tag generator for Go"; mainProgram = "gotags"; homepage = "https://github.com/jstemmer/gotags"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/go/gotest/package.nix b/pkgs/by-name/go/gotest/package.nix index 0a9257e55589..4b9d4ba49fbf 100644 --- a/pkgs/by-name/go/gotest/package.nix +++ b/pkgs/by-name/go/gotest/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "go test with colors"; mainProgram = "gotest"; homepage = "https://github.com/rakyll/gotest"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/gotests/package.nix b/pkgs/by-name/go/gotests/package.nix index 3e46ef0c4cd9..ba5b7eb53a6c 100644 --- a/pkgs/by-name/go/gotests/package.nix +++ b/pkgs/by-name/go/gotests/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # tests are broken in nix environment doCheck = false; - meta = with lib; { + meta = { description = "Generate Go tests from your source code"; mainProgram = "gotests"; homepage = "https://github.com/cweill/gotests"; - maintainers = with maintainers; [ vdemeester ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ vdemeester ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/go/gotify-cli/package.nix b/pkgs/by-name/go/gotify-cli/package.nix index 9dc87997cc37..b5f83975214b 100644 --- a/pkgs/by-name/go/gotify-cli/package.nix +++ b/pkgs/by-name/go/gotify-cli/package.nix @@ -27,8 +27,8 @@ buildGoModule rec { "-X main.BuildDate=1970-01-01" ]; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://github.com/gotify/cli"; description = "Command line interface for pushing messages to gotify/server"; maintainers = [ ]; diff --git a/pkgs/by-name/go/gotify-desktop/package.nix b/pkgs/by-name/go/gotify-desktop/package.nix index 2a0dc2080150..d727456b3064 100644 --- a/pkgs/by-name/go/gotify-desktop/package.nix +++ b/pkgs/by-name/go/gotify-desktop/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Small Gotify daemon to send messages as desktop notifications"; homepage = "https://github.com/desbma/gotify-desktop"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ genofire ]; broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/go/gotraceui/package.nix b/pkgs/by-name/go/gotraceui/package.nix index 144346b62a06..8f12dbd7d1b0 100644 --- a/pkgs/by-name/go/gotraceui/package.nix +++ b/pkgs/by-name/go/gotraceui/package.nix @@ -55,12 +55,12 @@ buildGoModule rec { cp -r share $out/ ''; - meta = with lib; { + meta = { description = "Efficient frontend for Go execution traces"; mainProgram = "gotraceui"; homepage = "https://github.com/dominikh/gotraceui"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ dominikh ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dominikh ]; }; } diff --git a/pkgs/by-name/go/gotrue-supabase/package.nix b/pkgs/by-name/go/gotrue-supabase/package.nix index a009f5d863f2..f0b9daa11a58 100644 --- a/pkgs/by-name/go/gotrue-supabase/package.nix +++ b/pkgs/by-name/go/gotrue-supabase/package.nix @@ -34,12 +34,12 @@ buildGoModule rec { inherit version; }; - meta = with lib; { + meta = { homepage = "https://github.com/supabase/auth"; description = "JWT based API for managing users and issuing JWT tokens"; mainProgram = "auth"; changelog = "https://github.com/supabase/auth/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/go/gotrue/package.nix b/pkgs/by-name/go/gotrue/package.nix index e660bc3e4330..0bb38a9203ab 100644 --- a/pkgs/by-name/go/gotrue/package.nix +++ b/pkgs/by-name/go/gotrue/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { # integration tests require network access doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/netlify/gotrue"; description = "SWT based API for managing users and issuing SWT tokens"; mainProgram = "gotrue"; changelog = "https://github.com/netlify/gotrue/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/go/gotty/package.nix b/pkgs/by-name/go/gotty/package.nix index be48033f92ef..0355cee43424 100644 --- a/pkgs/by-name/go/gotty/package.nix +++ b/pkgs/by-name/go/gotty/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { # https://github.com/sorenisanerd/gotty/issues/13 doCheck = false; - meta = with lib; { + meta = { description = "Share your terminal as a web application"; mainProgram = "gotty"; homepage = "https://github.com/sorenisanerd/gotty"; - maintainers = with maintainers; [ prusnak ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/go/gotypist/package.nix b/pkgs/by-name/go/gotypist/package.nix index 5806a6cded23..257e48925a82 100644 --- a/pkgs/by-name/go/gotypist/package.nix +++ b/pkgs/by-name/go/gotypist/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Touch-typing tutor"; mainProgram = "gotypist"; longDescription = '' @@ -25,7 +25,7 @@ buildGoModule rec { going in fast, slow, and medium cycles. ''; homepage = "https://github.com/pb-/gotypist"; - license = licenses.mit; - maintainers = with maintainers; [ pb- ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pb- ]; }; } diff --git a/pkgs/by-name/go/gource/package.nix b/pkgs/by-name/go/gource/package.nix index 3d14cafc0414..24197883d5b2 100644 --- a/pkgs/by-name/go/gource/package.nix +++ b/pkgs/by-name/go/gource/package.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://gource.io/"; description = "Software version control visualization tool"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' Software projects are displayed by Gource as an animated tree with the root directory of the project at its centre. Directories @@ -72,8 +72,8 @@ stdenv.mkDerivation rec { Mercurial and Bazaar and SVN. Gource can also parse logs produced by several third party tools for CVS repositories. ''; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "gource"; }; } diff --git a/pkgs/by-name/go/gowitness/package.nix b/pkgs/by-name/go/gowitness/package.nix index 015b44358a0f..1ef973a0ab4b 100644 --- a/pkgs/by-name/go/gowitness/package.nix +++ b/pkgs/by-name/go/gowitness/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "version"; - meta = with lib; { + meta = { description = "Web screenshot utility"; homepage = "https://github.com/sensepost/gowitness"; changelog = "https://github.com/sensepost/gowitness/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "gowitness"; }; } diff --git a/pkgs/by-name/go/gox/package.nix b/pkgs/by-name/go/gox/package.nix index 8ff5fda50bf1..b85d98f07ab8 100644 --- a/pkgs/by-name/go/gox/package.nix +++ b/pkgs/by-name/go/gox/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { wrapProgram $out/bin/gox --prefix PATH : ${lib.makeBinPath [ go ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/mitchellh/gox"; description = "Dead simple, no frills Go cross compile tool"; mainProgram = "gox"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/goxel/package.nix b/pkgs/by-name/go/goxel/package.nix index 2c9847ab8cb0..7396258b1c2d 100644 --- a/pkgs/by-name/go/goxel/package.nix +++ b/pkgs/by-name/go/goxel/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { buildFlags = [ "release" ]; - meta = with lib; { + meta = { description = "Open Source 3D voxel editor"; mainProgram = "goxel"; homepage = "https://guillaumechereau.github.io/goxel/"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tilpner fgaz ]; diff --git a/pkgs/by-name/go/goxlr-utility/package.nix b/pkgs/by-name/go/goxlr-utility/package.nix index 22232d0648bb..badaaea64e4a 100644 --- a/pkgs/by-name/go/goxlr-utility/package.nix +++ b/pkgs/by-name/go/goxlr-utility/package.nix @@ -61,10 +61,10 @@ rustPlatform.buildRustPackage rec { installShellCompletion --zsh $completions_dir/_goxlr-daemon ''; - meta = with lib; { + meta = { description = "Unofficial GoXLR App replacement for Linux, Windows and MacOS"; homepage = "https://github.com/GoXLR-on-Linux/goxlr-utility"; - license = licenses.mit; - maintainers = with maintainers; [ errnoh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ errnoh ]; }; } diff --git a/pkgs/by-name/gp/gpart/package.nix b/pkgs/by-name/gp/gpart/package.nix index 7fa84d64e956..c44e19fedbfb 100644 --- a/pkgs/by-name/gp/gpart/package.nix +++ b/pkgs/by-name/gp/gpart/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Guess PC-type hard disk partitions"; longDescription = '' @@ -32,8 +32,8 @@ stdenv.mkDerivation rec { damaged, incorrect or deleted. The guessed table can be written to a file or device. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "gpart"; }; } diff --git a/pkgs/by-name/gp/gpick/package.nix b/pkgs/by-name/gp/gpick/package.nix index 8a895b34e9c2..4e026df59d28 100644 --- a/pkgs/by-name/gp/gpick/package.nix +++ b/pkgs/by-name/gp/gpick/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { lua ]; - meta = with lib; { + meta = { description = "Advanced color picker written in C++ using GTK+ toolkit"; homepage = "https://www.gpick.org/"; - license = licenses.bsd3; - maintainers = [ maintainers.vanilla ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vanilla ]; + platforms = lib.platforms.linux; mainProgram = "gpick"; }; } diff --git a/pkgs/by-name/gp/gpio-utils/package.nix b/pkgs/by-name/gp/gpio-utils/package.nix index c391a5b72655..76bd3404c4dd 100644 --- a/pkgs/by-name/gp/gpio-utils/package.nix +++ b/pkgs/by-name/gp/gpio-utils/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation { "bindir=/bin" ]; - meta = with lib; { + meta = { description = "Linux tools to inspect the gpiochip interface"; - maintainers = with maintainers; [ kwohlfahrt ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ kwohlfahrt ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/gp/gpodder/package.nix b/pkgs/by-name/gp/gpodder/package.nix index e091331ac9c9..bf4ed943a8d4 100644 --- a/pkgs/by-name/gp/gpodder/package.nix +++ b/pkgs/by-name/gp/gpodder/package.nix @@ -88,15 +88,15 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Podcatcher written in python"; longDescription = '' gPodder downloads and manages free audio and video content (podcasts) for you. Listen directly on your computer or on your mobile devices. ''; homepage = "http://gpodder.org/"; - license = licenses.gpl3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/by-name/gp/gpp/package.nix b/pkgs/by-name/gp/gpp/package.nix index dea4eecdc444..4a5fc83f28cc 100644 --- a/pkgs/by-name/gp/gpp/package.nix +++ b/pkgs/by-name/gp/gpp/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { installCheckPhase = "$out/bin/gpp --help"; doInstallCheck = true; - meta = with lib; { + meta = { description = "General-purpose preprocessor with customizable syntax"; mainProgram = "gpp"; homepage = "https://logological.org/gpp"; - license = licenses.lgpl3; - maintainers = with maintainers; [ nmattia ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ nmattia ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/gp/gpsbabel/package.nix b/pkgs/by-name/gp/gpsbabel/package.nix index 9943ed44cafc..2e951060c0ae 100644 --- a/pkgs/by-name/gp/gpsbabel/package.nix +++ b/pkgs/by-name/gp/gpsbabel/package.nix @@ -145,7 +145,7 @@ stdenv.mkDerivation rec { '' ); - meta = with lib; { + meta = { description = "Convert, upload and download data from GPS and Map programs"; longDescription = '' GPSBabel converts waypoints, tracks, and routes between popular @@ -166,9 +166,9 @@ stdenv.mkDerivation rec { waypoints, tracks, and routes. ''; homepage = "https://www.gpsbabel.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "gpsbabel"; }; } diff --git a/pkgs/by-name/gp/gpsprune/package.nix b/pkgs/by-name/gp/gpsprune/package.nix index 802f9ad4aaf4..8bb7875ebc29 100644 --- a/pkgs/by-name/gp/gpsprune/package.nix +++ b/pkgs/by-name/gp/gpsprune/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Application for viewing, editing and converting GPS coordinate data"; homepage = "https://activityworkshop.net/software/gpsprune/"; changelog = "https://activityworkshop.net/software/gpsprune/whats_new.html"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ rycee ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ rycee ]; + platforms = lib.platforms.all; mainProgram = "gpsprune"; }; } diff --git a/pkgs/by-name/gp/gpt2tc/package.nix b/pkgs/by-name/gp/gpt2tc/package.nix index d53f47e896a2..5dcba32b08d2 100644 --- a/pkgs/by-name/gp/gpt2tc/package.nix +++ b/pkgs/by-name/gp/gpt2tc/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Text completion and compression using GPT-2"; homepage = "https://bellard.org/libnc/gpt2tc.html"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ anna328p ]; + maintainers = with lib.maintainers; [ anna328p ]; }; } diff --git a/pkgs/by-name/gp/gptcommit/package.nix b/pkgs/by-name/gp/gptcommit/package.nix index ccc07a50fe17..3ecea36e2a37 100644 --- a/pkgs/by-name/gp/gptcommit/package.nix +++ b/pkgs/by-name/gp/gptcommit/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Git prepare-commit-msg hook for authoring commit messages with GPT-3"; mainProgram = "gptcommit"; homepage = "https://github.com/zurawiki/gptcommit"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ happysalada ]; - platforms = with platforms; all; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = with lib.platforms; all; }; } diff --git a/pkgs/by-name/gp/gptfdisk/package.nix b/pkgs/by-name/gp/gptfdisk/package.nix index 4fdecc41a843..0e365709585f 100644 --- a/pkgs/by-name/gp/gptfdisk/package.nix +++ b/pkgs/by-name/gp/gptfdisk/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { installer-simpleLabels = nixosTests.installer.simpleLabels; }; - meta = with lib; { + meta = { description = "Set of text-mode partitioning tools for Globally Unique Identifier (GUID) Partition Table (GPT) disks"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.rodsbooks.com/gdisk/"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gp/gptman/package.nix b/pkgs/by-name/gp/gptman/package.nix index ce9324a86bfd..b486755d6099 100644 --- a/pkgs/by-name/gp/gptman/package.nix +++ b/pkgs/by-name/gp/gptman/package.nix @@ -29,14 +29,14 @@ rustPlatform.buildRustPackage rec { package = gptman; }; - meta = with lib; { + meta = { description = "GPT manager that allows you to copy partitions from one disk to another and more"; homepage = "https://github.com/rust-disk-partition-management/gptman"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ akshgpt7 ]; + maintainers = with lib.maintainers; [ akshgpt7 ]; mainProgram = "gptman"; }; } diff --git a/pkgs/by-name/gp/gpu-switch/package.nix b/pkgs/by-name/gp/gpu-switch/package.nix index fc2b8b0eb322..535af7107dda 100644 --- a/pkgs/by-name/gp/gpu-switch/package.nix +++ b/pkgs/by-name/gp/gpu-switch/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation { mkdir -p $out/bin cp gpu-switch $out/bin/ ''; - meta = with lib; { + meta = { description = "Application that allows to switch between the graphic cards of dual-GPU MacBook Pro models"; mainProgram = "gpu-switch"; homepage = "https://github.com/0xbb/gpu-switch"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.msiedlarek ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.msiedlarek ]; }; } diff --git a/pkgs/by-name/gp/gpustat/package.nix b/pkgs/by-name/gp/gpustat/package.nix index ba82ab03330a..75d1c5edd71f 100644 --- a/pkgs/by-name/gp/gpustat/package.nix +++ b/pkgs/by-name/gp/gpustat/package.nix @@ -61,12 +61,12 @@ rustPlatform.buildRustPackage rec { --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}:/run/opengl-driver/lib" ''; - meta = with lib; { + meta = { description = "Simple utility for viewing GPU utilization"; homepage = "https://github.com/arduano/gpustat"; - license = licenses.asl20; - maintainers = with maintainers; [ arduano ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arduano ]; mainProgram = "gpustat"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gp/gputils/package.nix b/pkgs/by-name/gp/gputils/package.nix index 1fad47734201..b6886a13ad21 100644 --- a/pkgs/by-name/gp/gputils/package.nix +++ b/pkgs/by-name/gp/gputils/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-j7iCCzHXwffHdhQcyzxPBvQK+RXaY3QSjXUtHu463fI="; }; - meta = with lib; { + meta = { homepage = "https://gputils.sourceforge.io"; description = "Collection of tools for the Microchip (TM) PIC microcontrollers. It includes gpasm, gplink, and gplib"; - license = licenses.gpl2; - maintainers = with maintainers; [ yorickvp ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ yorickvp ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gp/gpuvis/package.nix b/pkgs/by-name/gp/gpuvis/package.nix index f8c14cca6961..8de03907efd1 100644 --- a/pkgs/by-name/gp/gpuvis/package.nix +++ b/pkgs/by-name/gp/gpuvis/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "-include cstdint" ]; - meta = with lib; { + meta = { description = "GPU Trace Visualizer"; mainProgram = "gpuvis"; homepage = "https://github.com/mikesart/gpuvis"; - license = licenses.mit; - maintainers = with maintainers; [ emantor ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emantor ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gp/gpx-viewer/package.nix b/pkgs/by-name/gp/gpx-viewer/package.nix index 12a2d49c10ba..4323b4e91ab5 100644 --- a/pkgs/by-name/gp/gpx-viewer/package.nix +++ b/pkgs/by-name/gp/gpx-viewer/package.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://blog.sarine.nl/tag/gpxviewer/"; description = "Simple tool to visualize tracks and waypoints stored in a gpx file"; mainProgram = "gpx-viewer"; changelog = "https://github.com/DaveDavenport/gpx-viewer/blob/${src.rev}/NEWS"; - platforms = with platforms; linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; + platforms = with lib.platforms; linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/gp/gpxlab/package.nix b/pkgs/by-name/gp/gpxlab/package.nix index 07d09dd0edad..9bb2bf0c2fe8 100644 --- a/pkgs/by-name/gp/gpxlab/package.nix +++ b/pkgs/by-name/gp/gpxlab/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { ln -s $out/Applications/GPXLab.app/Contents/MacOS/GPXLab $out/bin/gpxlab ''; - meta = with lib; { + meta = { homepage = "https://github.com/BourgeoisLab/GPXLab"; description = "Program to show and manipulate GPS tracks"; mainProgram = "gpxlab"; @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { GPXLab is an application to display and manage GPS tracks previously recorded with a GPS tracker. ''; - license = licenses.gpl3Only; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gp/gpython/package.nix b/pkgs/by-name/gp/gpython/package.nix index 1358e3f9f2d1..97401e8b8122 100644 --- a/pkgs/by-name/gp/gpython/package.nix +++ b/pkgs/by-name/gp/gpython/package.nix @@ -38,12 +38,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Python interpreter written in Go"; mainProgram = "gpython"; homepage = "https://github.com/go-python/gpython"; changelog = "https://github.com/go-python/gpython/releases/tag/${src.rev}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gq/gql/package.nix b/pkgs/by-name/gq/gql/package.nix index 008f0a8e7954..4b8440aa2902 100644 --- a/pkgs/by-name/gq/gql/package.nix +++ b/pkgs/by-name/gq/gql/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { zlib ]; - meta = with lib; { + meta = { description = "SQL like query language to perform queries on .git files"; homepage = "https://github.com/AmrDeveloper/GQL"; changelog = "https://github.com/AmrDeveloper/GQL/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "gitql"; }; diff --git a/pkgs/by-name/gr/gradescope-submit/package.nix b/pkgs/by-name/gr/gradescope-submit/package.nix index b17350bedc48..598bf6f2bcee 100644 --- a/pkgs/by-name/gr/gradescope-submit/package.nix +++ b/pkgs/by-name/gr/gradescope-submit/package.nix @@ -26,10 +26,10 @@ ocamlPackages.buildDunePackage rec { lwt_ssl ]; - meta = with lib; { + meta = { description = "Small script to submit to Gradescope via GitHub"; homepage = "https://github.com/nmittu/gradescope-submit"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "submit"; }; diff --git a/pkgs/by-name/gr/grafana-alloy/package.nix b/pkgs/by-name/gr/grafana-alloy/package.nix index e928bd3b5977..2064257e78b3 100644 --- a/pkgs/by-name/gr/grafana-alloy/package.nix +++ b/pkgs/by-name/gr/grafana-alloy/package.nix @@ -142,13 +142,13 @@ buildGoModule (finalAttrs: { offlineCache = finalAttrs.yarnOfflineCache; }; - meta = with lib; { + meta = { description = "Open source OpenTelemetry Collector distribution with built-in Prometheus pipelines and support for metrics, logs, traces, and profiles"; mainProgram = "alloy"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://grafana.com/oss/alloy"; changelog = "https://github.com/grafana/alloy/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ azahi flokli hbjydev diff --git a/pkgs/by-name/gr/grafana-image-renderer/package.nix b/pkgs/by-name/gr/grafana-image-renderer/package.nix index b58622c7adc6..eff4607b5091 100644 --- a/pkgs/by-name/gr/grafana-image-renderer/package.nix +++ b/pkgs/by-name/gr/grafana-image-renderer/package.nix @@ -19,11 +19,11 @@ buildGoModule (finalAttrs: { subPackages = [ "." ]; - meta = with lib; { + meta = { homepage = "https://github.com/grafana/grafana-image-renderer"; description = "Grafana backend plugin that handles rendering of panels & dashboards to PNGs using headless browser (Chromium/Chrome)"; mainProgram = "grafana-image-renderer"; - license = licenses.asl20; - maintainers = with maintainers; [ ma27 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ma27 ]; }; }) diff --git a/pkgs/by-name/gr/grafana-kiosk/package.nix b/pkgs/by-name/gr/grafana-kiosk/package.nix index eed252e94588..13d515129c45 100644 --- a/pkgs/by-name/gr/grafana-kiosk/package.nix +++ b/pkgs/by-name/gr/grafana-kiosk/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { wrapProgram $out/bin/grafana-kiosk --prefix PATH : ${lib.makeBinPath [ chromium ]} ''; - meta = with lib; { + meta = { description = "Kiosk Utility for Grafana"; homepage = "https://github.com/grafana/grafana-kiosk"; changelog = "https://github.com/grafana/grafana-kiosk/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ marcusramberg ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ marcusramberg ]; mainProgram = "grafana-kiosk"; }; } diff --git a/pkgs/by-name/gr/grafterm/package.nix b/pkgs/by-name/gr/grafterm/package.nix index 0504474e28dd..43cc2d814b43 100644 --- a/pkgs/by-name/gr/grafterm/package.nix +++ b/pkgs/by-name/gr/grafterm/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Command-line tool for rendering metrics dashboards inspired by Grafana"; homepage = "https://github.com/slok/grafterm"; - license = licenses.asl20; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "grafterm"; }; } diff --git a/pkgs/by-name/gr/gramps/package.nix b/pkgs/by-name/gr/gramps/package.nix index 7640fea4447f..590c54b9e41f 100644 --- a/pkgs/by-name/gr/gramps/package.nix +++ b/pkgs/by-name/gr/gramps/package.nix @@ -104,11 +104,11 @@ python3Packages.buildPythonApplication rec { # https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-hooks-gobject-introspection strictDeps = false; - meta = with lib; { + meta = { description = "Genealogy software"; mainProgram = "gramps"; homepage = "https://gramps-project.org"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jk pinpox tomasajt @@ -121,6 +121,6 @@ python3Packages.buildPythonApplication rec { people, places and events. All of your research is kept organized, searchable and as precise as you need it to be. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/gr/graph-cli/package.nix b/pkgs/by-name/gr/graph-cli/package.nix index 53ef6d90fed4..9e2586796872 100644 --- a/pkgs/by-name/gr/graph-cli/package.nix +++ b/pkgs/by-name/gr/graph-cli/package.nix @@ -38,11 +38,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "graph_cli" ]; - meta = with lib; { + meta = { description = "CLI to create graphs from CSV files"; homepage = "https://github.com/mcastorina/graph-cli/"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ leungbk ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ leungbk ]; mainProgram = "graph"; }; } diff --git a/pkgs/by-name/gr/graph-easy/package.nix b/pkgs/by-name/gr/graph-easy/package.nix index b9545c8ecd2f..13c796fe5084 100644 --- a/pkgs/by-name/gr/graph-easy/package.nix +++ b/pkgs/by-name/gr/graph-easy/package.nix @@ -12,11 +12,11 @@ perlPackages.buildPerlPackage { sha256 = "d4a2c10aebef663b598ea37f3aa3e3b752acf1fbbb961232c3dbe1155008d1fa"; }; - meta = with lib; { + meta = { description = "Render/convert graphs in/from various formats"; - license = licenses.gpl1Only; - platforms = platforms.unix; - maintainers = [ maintainers.jensbin ]; + license = lib.licenses.gpl1Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.jensbin ]; mainProgram = "graph-easy"; }; } diff --git a/pkgs/by-name/gr/graphene-hardened-malloc/package.nix b/pkgs/by-name/gr/graphene-hardened-malloc/package.nix index 9bbd3b0c67ef..bffb4d7959a1 100644 --- a/pkgs/by-name/gr/graphene-hardened-malloc/package.nix +++ b/pkgs/by-name/gr/graphene-hardened-malloc/package.nix @@ -94,7 +94,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/GrapheneOS/hardened_malloc"; description = "Hardened allocator designed for modern systems"; mainProgram = "preload-hardened-malloc"; @@ -103,8 +103,8 @@ stdenv.mkDerivation (finalAttrs: { along with various extensions. It provides substantial hardening against heap corruption vulnerabilities yet aims to provide decent overall performance. ''; - license = licenses.mit; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ris ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/gr/graphene/package.nix b/pkgs/by-name/gr/graphene/package.nix index 9502ae099818..07630f16235f 100644 --- a/pkgs/by-name/gr/graphene/package.nix +++ b/pkgs/by-name/gr/graphene/package.nix @@ -146,12 +146,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Thin layer of graphic data types"; homepage = "https://github.com/ebassi/graphene"; - license = licenses.mit; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.mit; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; pkgConfigModules = [ "graphene-1.0" "graphene-gobject-1.0" diff --git a/pkgs/by-name/gr/graphite-cursors/package.nix b/pkgs/by-name/gr/graphite-cursors/package.nix index 306a35d767c4..0b8f4c78671d 100644 --- a/pkgs/by-name/gr/graphite-cursors/package.nix +++ b/pkgs/by-name/gr/graphite-cursors/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { mv dist-light-nord $out/share/icons/graphite-light-nord ''; - meta = with lib; { + meta = { description = "Graphite cursor theme"; homepage = "https://github.com/vinceliuice/Graphite-cursors"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ oluceps ]; }; } diff --git a/pkgs/by-name/gr/graphite-gtk-theme/package.nix b/pkgs/by-name/gr/graphite-gtk-theme/package.nix index 7c87ce9a3d71..a8fa671fa15f 100644 --- a/pkgs/by-name/gr/graphite-gtk-theme/package.nix +++ b/pkgs/by-name/gr/graphite-gtk-theme/package.nix @@ -118,11 +118,11 @@ lib.checkListOfEnum "${pname}: theme variants" passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Flat Gtk+ theme based on Elegant Design"; homepage = "https://github.com/vinceliuice/Graphite-gtk-theme"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/gr/graphql-client/package.nix b/pkgs/by-name/gr/graphql-client/package.nix index 8adf9c39e05b..a67e97b3fb78 100644 --- a/pkgs/by-name/gr/graphql-client/package.nix +++ b/pkgs/by-name/gr/graphql-client/package.nix @@ -25,14 +25,14 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "GraphQL tool for Rust projects"; mainProgram = "graphql-client"; homepage = "https://github.com/graphql-rust/graphql-client"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ bbigras ]; + maintainers = with lib.maintainers; [ bbigras ]; }; } diff --git a/pkgs/by-name/gr/graphqlmaker/package.nix b/pkgs/by-name/gr/graphqlmaker/package.nix index a692a4b5432f..1275e8f689b1 100644 --- a/pkgs/by-name/gr/graphqlmaker/package.nix +++ b/pkgs/by-name/gr/graphqlmaker/package.nix @@ -22,12 +22,12 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Tool to find graphql queries in Javascript files"; homepage = "https://github.com/xssdoctor/graphqlMaker"; # https://github.com/xssdoctor/graphqlMaker/issues/1 - license = licenses.unfree; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "graphqlMaker"; }; } diff --git a/pkgs/by-name/gr/graphqlmap/package.nix b/pkgs/by-name/gr/graphqlmap/package.nix index 1d2b5a9a6a2c..d8f7ab526423 100644 --- a/pkgs/by-name/gr/graphqlmap/package.nix +++ b/pkgs/by-name/gr/graphqlmap/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication { "graphqlmap" ]; - meta = with lib; { + meta = { description = "Tool to interact with a GraphQL endpoint"; mainProgram = "graphqlmap"; homepage = "https://github.com/swisskyrepo/GraphQLmap"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/gr/graphs/package.nix b/pkgs/by-name/gr/graphs/package.nix index c160d4fe1d12..4920545140a5 100644 --- a/pkgs/by-name/gr/graphs/package.nix +++ b/pkgs/by-name/gr/graphs/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { cp * "$out/share/graphs/" ''; - meta = with lib; { + meta = { description = "Database of graphs"; - license = licenses.gpl2; - platforms = platforms.all; - teams = [ teams.sage ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/gr/graphw00f/package.nix b/pkgs/by-name/gr/graphw00f/package.nix index 35560b8b7149..51cc7b97f859 100644 --- a/pkgs/by-name/gr/graphw00f/package.nix +++ b/pkgs/by-name/gr/graphw00f/package.nix @@ -28,11 +28,11 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "GraphQL Server Engine Fingerprinting utility"; homepage = "https://github.com/dolevf/graphw00f"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "graphw00f"; }; } diff --git a/pkgs/by-name/gr/graphwar/package.nix b/pkgs/by-name/gr/graphwar/package.nix index 97481a1dab3c..d76d75097412 100644 --- a/pkgs/by-name/gr/graphwar/package.nix +++ b/pkgs/by-name/gr/graphwar/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://www.graphwar.com/"; description = "Artillery game in which you must hit your enemies using mathematical functions"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = jdk.meta.platforms; - maintainers = with maintainers; [ yrd ]; + maintainers = with lib.maintainers; [ yrd ]; }; } diff --git a/pkgs/by-name/gr/graplang/package.nix b/pkgs/by-name/gr/graplang/package.nix index af6dc1a030ad..39c5f9288b43 100644 --- a/pkgs/by-name/gr/graplang/package.nix +++ b/pkgs/by-name/gr/graplang/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { bison ]; - meta = with lib; { + meta = { description = "Language for typesetting graphs"; longDescription = '' Grap is an Expressive language for describing graphs and incorporating @@ -35,8 +35,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.lunabase.org/~faber/Vault/software/grap/"; changelog = "https://github.com/snorerot13/grap/blob/master/CHANGES"; - license = licenses.bsd2; - maintainers = with maintainers; [ afh ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ afh ]; mainProgram = "grap"; }; }) diff --git a/pkgs/by-name/gr/grass-sass/package.nix b/pkgs/by-name/gr/grass-sass/package.nix index e115a0b5c5ce..61487926bab5 100644 --- a/pkgs/by-name/gr/grass-sass/package.nix +++ b/pkgs/by-name/gr/grass-sass/package.nix @@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec { changelog = "https://github.com/connorskees/grass/blob/master/CHANGELOG.md#${ replaceStrings [ "." ] [ "" ] version }"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "grass"; }; diff --git a/pkgs/by-name/gr/grass/package.nix b/pkgs/by-name/gr/grass/package.nix index d6f0ee5e71d4..97b23458ce7a 100644 --- a/pkgs/by-name/gr/grass/package.nix +++ b/pkgs/by-name/gr/grass/package.nix @@ -158,13 +158,13 @@ stdenv.mkDerivation (finalAttrs: { grass = callPackage ./tests.nix { grass = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization"; homepage = "https://grass.osgeo.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ mpickering ]; - teams = [ teams.geospatial ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ mpickering ]; + teams = [ lib.teams.geospatial ]; + platforms = lib.platforms.all; mainProgram = "grass"; }; }) diff --git a/pkgs/by-name/gr/grav/package.nix b/pkgs/by-name/gr/grav/package.nix index 97bba7bfb987..424bcb08b947 100644 --- a/pkgs/by-name/gr/grav/package.nix +++ b/pkgs/by-name/gr/grav/package.nix @@ -34,10 +34,10 @@ stdenvNoCC.mkDerivation { grav = nixosTests.grav; }; - meta = with lib; { + meta = { description = "Fast, simple, and flexible, file-based web platform"; homepage = "https://getgrav.com"; - maintainers = with maintainers; [ rycee ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ rycee ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/gr/grb/package.nix b/pkgs/by-name/gr/grb/package.nix index a1ddff2d2233..83865fea8a90 100644 --- a/pkgs/by-name/gr/grb/package.nix +++ b/pkgs/by-name/gr/grb/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Cli-accessible Greek Bible with the Septuagint, SBL and Apocrypha"; homepage = "https://github.com/LukeSmithxyz/grb"; - license = licenses.publicDomain; - maintainers = [ maintainers.cafkafk ]; + license = lib.licenses.publicDomain; + maintainers = [ lib.maintainers.cafkafk ]; mainProgram = "grb"; }; } diff --git a/pkgs/by-name/gr/greenfoot/package.nix b/pkgs/by-name/gr/greenfoot/package.nix index 5ce999a958d1..20b14a2d29c6 100644 --- a/pkgs/by-name/gr/greenfoot/package.nix +++ b/pkgs/by-name/gr/greenfoot/package.nix @@ -57,16 +57,16 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple integrated development environment for Java"; homepage = "https://www.greenfoot.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = with licenses; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = with lib.licenses; [ gpl2Plus classpathException20 ]; mainProgram = "greenfoot"; - maintainers = [ maintainers.chvp ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.chvp ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gr/greenx/package.nix b/pkgs/by-name/gr/greenx/package.nix index 9123d6727590..5bb8e0665cf2 100644 --- a/pkgs/by-name/gr/greenx/package.nix +++ b/pkgs/by-name/gr/greenx/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { export OMP_NUM_THREADS=2 ''; - meta = with lib; { + meta = { description = "Library for Green’s function based electronic structure theory calculations"; - license = [ licenses.asl20 ]; + license = [ lib.licenses.asl20 ]; homepage = "https://github.com/nomad-coe/greenX"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/gr/gremlin-console/package.nix b/pkgs/by-name/gr/gremlin-console/package.nix index 763ffae47f7a..3d0bbba23971 100644 --- a/pkgs/by-name/gr/gremlin-console/package.nix +++ b/pkgs/by-name/gr/gremlin-console/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://tinkerpop.apache.org/"; description = "Console of the Apache TinkerPop graph computing framework"; - license = licenses.asl20; - maintainers = [ maintainers.lewo ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.lewo ]; + platforms = lib.platforms.all; mainProgram = "gremlin-console"; }; } diff --git a/pkgs/by-name/gr/gremlin-server/package.nix b/pkgs/by-name/gr/gremlin-server/package.nix index 559470f5dd9c..9c310fbe97f7 100644 --- a/pkgs/by-name/gr/gremlin-server/package.nix +++ b/pkgs/by-name/gr/gremlin-server/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://tinkerpop.apache.org/"; description = "Server of the Apache TinkerPop graph computing framework"; - license = licenses.asl20; - maintainers = [ maintainers.jrpotter ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.jrpotter ]; + platforms = lib.platforms.all; mainProgram = "gremlin-server"; }; } diff --git a/pkgs/by-name/gr/grenedalf/package.nix b/pkgs/by-name/gr/grenedalf/package.nix index 50a6381240df..914df31011c4 100644 --- a/pkgs/by-name/gr/grenedalf/package.nix +++ b/pkgs/by-name/gr/grenedalf/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/lczech/grenedalf"; description = "Collection of commands for working with population genetic data"; longDescription = '' @@ -78,8 +78,8 @@ stdenv.mkDerivation (finalAttrs: { compared to those, grenedalf is significantly more scalable, more user friendly, and offers more settings and input file formats. ''; - platforms = platforms.all; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ bzizou ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bzizou ]; }; }) diff --git a/pkgs/by-name/gr/grepcidr/package.nix b/pkgs/by-name/gr/grepcidr/package.nix index d878ee48e5fd..e91802f2ef0b 100644 --- a/pkgs/by-name/gr/grepcidr/package.nix +++ b/pkgs/by-name/gr/grepcidr/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Filter IPv4 and IPv6 addresses matching CIDR patterns"; homepage = "https://www.pc-tools.net/unix/grepcidr/"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; mainProgram = "grepcidr"; }; } diff --git a/pkgs/by-name/gr/grepm/package.nix b/pkgs/by-name/gr/grepm/package.nix index 6c6ed863cce6..13dc609c4a79 100644 --- a/pkgs/by-name/gr/grepm/package.nix +++ b/pkgs/by-name/gr/grepm/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { $out/bin/grepm ''; - meta = with lib; { + meta = { description = "Wrapper for grepmail utilizing mutt"; homepage = "https://www.barsnick.net/sw/grepm.html"; - license = licenses.free; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.free; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; mainProgram = "grepm"; }; } diff --git a/pkgs/by-name/gr/greybird/package.nix b/pkgs/by-name/gr/greybird/package.nix index 49cb7ea1ea55..48cfff2fcedc 100644 --- a/pkgs/by-name/gr/greybird/package.nix +++ b/pkgs/by-name/gr/greybird/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Grey and blue theme from the Shimmer Project for GTK-based environments"; homepage = "https://github.com/shimmerproject/Greybird"; - license = [ licenses.gpl2Plus ]; # or alternatively: cc-by-nc-sa-30 or later - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = [ lib.licenses.gpl2Plus ]; # or alternatively: cc-by-nc-sa-30 or later + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/gr/gridlock/package.nix b/pkgs/by-name/gr/gridlock/package.nix index 11800e875185..e3a9bc1937a1 100644 --- a/pkgs/by-name/gr/gridlock/package.nix +++ b/pkgs/by-name/gr/gridlock/package.nix @@ -36,10 +36,10 @@ rustPlatform.buildRustPackage { moveToOutput bin/nyarr $nyarr ''; - meta = with lib; { + meta = { description = "Nix compatible lockfile manager, without Nix"; homepage = "https://github.com/lf-/gridlock"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gr/gridtracker/package.nix b/pkgs/by-name/gr/gridtracker/package.nix index 16788295631c..bff758f929ba 100644 --- a/pkgs/by-name/gr/gridtracker/package.nix +++ b/pkgs/by-name/gr/gridtracker/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Amateur radio companion to WSJT-X or JTDX"; mainProgram = "gridtracker"; longDescription = '' @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { logging frameworks including Logbook of the World. ''; homepage = "https://gridtracker.org"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/by-name/gr/grig/package.nix b/pkgs/by-name/gr/grig/package.nix index 9b54d5c63f86..3b9c9ce9b563 100644 --- a/pkgs/by-name/gr/grig/package.nix +++ b/pkgs/by-name/gr/grig/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { gtk2 ]; - meta = with lib; { + meta = { description = "Simple Ham Radio control (CAT) program based on Hamlib"; mainProgram = "grig"; longDescription = '' @@ -44,9 +44,9 @@ stdenv.mkDerivation rec { same interface regardless of which radio they use. ''; homepage = "https://groundstation.sourceforge.net/grig/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ melling mafo ]; diff --git a/pkgs/by-name/gr/grilo-plugins/package.nix b/pkgs/by-name/gr/grilo-plugins/package.nix index 750662baef97..bedb38e2e479 100644 --- a/pkgs/by-name/gr/grilo-plugins/package.nix +++ b/pkgs/by-name/gr/grilo-plugins/package.nix @@ -109,11 +109,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/grilo-plugins"; description = "Collection of plugins for the Grilo framework"; - teams = [ teams.gnome ]; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gr/grilo/package.nix b/pkgs/by-name/gr/grilo/package.nix index fc85bed3a689..4f8d2eefb3f1 100644 --- a/pkgs/by-name/gr/grilo/package.nix +++ b/pkgs/by-name/gr/grilo/package.nix @@ -77,11 +77,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/grilo"; description = "Framework that provides access to various sources of multimedia content, using a pluggable system"; - teams = [ teams.gnome ]; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gr/grimblast/package.nix b/pkgs/by-name/gr/grimblast/package.nix index 3fb44f733ad1..d683b2b91d76 100644 --- a/pkgs/by-name/gr/grimblast/package.nix +++ b/pkgs/by-name/gr/grimblast/package.nix @@ -62,10 +62,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Helper for screenshots within Hyprland, based on grimshot"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; teams = [ lib.teams.hyprland ]; mainProgram = "grimblast"; }; diff --git a/pkgs/by-name/gr/grip-search/package.nix b/pkgs/by-name/gr/grip-search/package.nix index c90d80c73485..e3878bb534f5 100644 --- a/pkgs/by-name/gr/grip-search/package.nix +++ b/pkgs/by-name/gr/grip-search/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required (VERSION 3.1)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Fast, indexed regexp search over large file trees"; homepage = "https://github.com/sc0ty/grip"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gr/grisbi/package.nix b/pkgs/by-name/gr/grisbi/package.nix index b58bdc620c46..b18c398fb4d4 100644 --- a/pkgs/by-name/gr/grisbi/package.nix +++ b/pkgs/by-name/gr/grisbi/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Personnal accounting application"; mainProgram = "grisbi"; longDescription = '' @@ -52,8 +52,8 @@ stdenv.mkDerivation (finalAttrs: { associations. ''; homepage = "https://grisbi.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ layus ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ layus ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gr/grit/package.nix b/pkgs/by-name/gr/grit/package.nix index cdf1aca545f1..b1cd68cd68d3 100644 --- a/pkgs/by-name/gr/grit/package.nix +++ b/pkgs/by-name/gr/grit/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-iMMkjJ5dnlr0oSCifBQPWkInQBCp1bh23s+BcKzDNCg="; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Multitree-based personal task manager"; homepage = "https://github.com/climech/grit"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "grit"; }; diff --git a/pkgs/by-name/gr/grive2/package.nix b/pkgs/by-name/gr/grive2/package.nix index 49bc32435d9b..7cdf8925d8a0 100644 --- a/pkgs/by-name/gr/grive2/package.nix +++ b/pkgs/by-name/gr/grive2/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { libiberty ]; - meta = with lib; { + meta = { description = "Console Google Drive client"; homepage = "https://github.com/vitalif/grive2"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "grive"; }; } diff --git a/pkgs/by-name/gr/grizzly/package.nix b/pkgs/by-name/gr/grizzly/package.nix index d84ffbf73d0a..2ad81bb7fe35 100644 --- a/pkgs/by-name/gr/grizzly/package.nix +++ b/pkgs/by-name/gr/grizzly/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { subPackages = [ "cmd/grr" ]; - meta = with lib; { + meta = { description = "Utility for managing Jsonnet dashboards against the Grafana API"; homepage = "https://grafana.github.io/grizzly/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ nrhtr ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "grr"; }; } diff --git a/pkgs/by-name/gr/grml-zsh-config/package.nix b/pkgs/by-name/gr/grml-zsh-config/package.nix index 007f8d564c82..a81d37783362 100644 --- a/pkgs/by-name/gr/grml-zsh-config/package.nix +++ b/pkgs/by-name/gr/grml-zsh-config/package.nix @@ -36,15 +36,15 @@ stdenv.mkDerivation rec { ln -s grmlzshrc.5.gz $out/share/man/man5/grml-zsh-config.5.gz ''; - meta = with lib; { + meta = { description = "grml's zsh setup"; homepage = "https://grml.org/zsh/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus gpl2Only ]; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ msteen rvolosatovs ]; diff --git a/pkgs/by-name/gr/grmon/package.nix b/pkgs/by-name/gr/grmon/package.nix index 48f9741970cf..0d4c6d481767 100644 --- a/pkgs/by-name/gr/grmon/package.nix +++ b/pkgs/by-name/gr/grmon/package.nix @@ -24,15 +24,15 @@ buildGoModule (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Command line monitoring for goroutines"; longDescription = '' To use it, instrument your Go code following the [usage description of the project](https://github.com/bcicen/grmon?tab=readme-ov-file#usage). ''; homepage = "https://github.com/bcicen/grmon"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "grmon"; - maintainers = with maintainers; [ katexochen ]; + maintainers = with lib.maintainers; [ katexochen ]; }; }) diff --git a/pkgs/by-name/gr/grobi/package.nix b/pkgs/by-name/gr/grobi/package.nix index 5841700709ad..747f70b6a396 100644 --- a/pkgs/by-name/gr/grobi/package.nix +++ b/pkgs/by-name/gr/grobi/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/fd0/grobi"; description = "Automatically configure monitors/outputs for Xorg via RANDR"; - license = with licenses; [ bsd2 ]; - platforms = platforms.linux; + license = with lib.licenses; [ bsd2 ]; + platforms = lib.platforms.linux; mainProgram = "grobi"; }; } diff --git a/pkgs/by-name/gr/grocy/package.nix b/pkgs/by-name/gr/grocy/package.nix index 94fc34a56679..0de3c56b4dc8 100644 --- a/pkgs/by-name/gr/grocy/package.nix +++ b/pkgs/by-name/gr/grocy/package.nix @@ -60,9 +60,9 @@ php.buildComposerProject2 (finalAttrs: { passthru.tests = { inherit (nixosTests) grocy; }; - meta = with lib; { - license = licenses.mit; - maintainers = with maintainers; [ diogotcorreia ]; + meta = { + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ diogotcorreia ]; description = "ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home"; homepage = "https://grocy.info/"; }; diff --git a/pkgs/by-name/gr/groff/package.nix b/pkgs/by-name/gr/groff/package.nix index 3077330609d0..4780697cfe5d 100644 --- a/pkgs/by-name/gr/groff/package.nix +++ b/pkgs/by-name/gr/groff/package.nix @@ -154,12 +154,12 @@ stdenv.mkDerivation rec { find $perl/ -type f -print0 | xargs --null sed -i 's|${buildPackages.perl}|${perl}|' ''; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/groff/"; description = "GNU Troff, a typesetting package that reads plain text and produces formatted output"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; longDescription = '' groff is the GNU implementation of troff, a document formatting diff --git a/pkgs/by-name/gr/gron/package.nix b/pkgs/by-name/gr/gron/package.nix index 06b975af0867..c888fb55378f 100644 --- a/pkgs/by-name/gr/gron/package.nix +++ b/pkgs/by-name/gr/gron/package.nix @@ -23,7 +23,7 @@ buildGoModule rec { "-X main.gronVersion=${version}" ]; - meta = with lib; { + meta = { description = "Make JSON greppable"; mainProgram = "gron"; longDescription = '' @@ -33,8 +33,8 @@ buildGoModule rec { documentation. ''; homepage = "https://github.com/tomnomnom/gron"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz SuperSandro2000 ]; diff --git a/pkgs/by-name/gr/groove/package.nix b/pkgs/by-name/gr/groove/package.nix index 73e5acbdea79..1be32c87d572 100644 --- a/pkgs/by-name/gr/groove/package.nix +++ b/pkgs/by-name/gr/groove/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { icotool -x -i 2 -o $out/share/icons/hicolor/16x16/apps/groove.png groove-green-g.ico ''; - meta = with lib; { + meta = { description = "GRaphs for Object-Oriented VErification"; homepage = "https://groove.cs.utwente.nl/"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.all; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gr/groovy/package.nix b/pkgs/by-name/gr/groovy/package.nix index d61f411f2fb9..62d88f3af0f9 100644 --- a/pkgs/by-name/gr/groovy/package.nix +++ b/pkgs/by-name/gr/groovy/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Agile dynamic language for the Java Platform"; homepage = "http://groovy-lang.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/gr/grpc-client-cli/package.nix b/pkgs/by-name/gr/grpc-client-cli/package.nix index 120ae5a9fd52..d4306d6e4c9b 100644 --- a/pkgs/by-name/gr/grpc-client-cli/package.nix +++ b/pkgs/by-name/gr/grpc-client-cli/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-K0XnoFbAFdiVm3pDpiw9wuTSIo3NrU7wH1nFJEge9/c="; - meta = with lib; { + meta = { description = "Generic gRPC command line client"; mainProgram = "grpc-client-cli"; - maintainers = with maintainers; [ Philipp-M ]; + maintainers = with lib.maintainers; [ Philipp-M ]; homepage = "https://github.com/vadimi/grpc-client-cli"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/gr/grpc-gateway/package.nix b/pkgs/by-name/gr/grpc-gateway/package.nix index b3bcce67aa8a..319d539eae78 100644 --- a/pkgs/by-name/gr/grpc-gateway/package.nix +++ b/pkgs/by-name/gr/grpc-gateway/package.nix @@ -38,7 +38,7 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "GRPC to JSON proxy generator plugin for Google Protocol Buffers"; longDescription = '' This is a plugin for the Google Protocol Buffers compiler (protoc). It reads @@ -47,7 +47,7 @@ buildGoModule rec { the google.api.http annotations in the protobuf service definitions. ''; homepage = "https://github.com/grpc-ecosystem/grpc-gateway"; - license = licenses.bsd3; - maintainers = with maintainers; [ happyalu ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ happyalu ]; }; } diff --git a/pkgs/by-name/gr/grpc-health-probe/package.nix b/pkgs/by-name/gr/grpc-health-probe/package.nix index fe1d47090716..ea2037cadcde 100644 --- a/pkgs/by-name/gr/grpc-health-probe/package.nix +++ b/pkgs/by-name/gr/grpc-health-probe/package.nix @@ -32,12 +32,12 @@ buildGoModule (finalAttrs: { ]; doInstallCheck = true; - meta = with lib; { + meta = { description = "command-line tool to perform health-checks for gRPC applications"; homepage = "https://github.com/grpc-ecosystem/grpc-health-probe"; changelog = "https://github.com/grpc-ecosystem/grpc-health-probe/releases/tag/v${finalAttrs.version}"; - license = licenses.asl20; - maintainers = with maintainers; [ jpds ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jpds ]; mainProgram = "grpc-health-probe"; }; }) diff --git a/pkgs/by-name/gr/grpc-tools/package.nix b/pkgs/by-name/gr/grpc-tools/package.nix index ba5ff88c3d51..6d0a1d2294f2 100644 --- a/pkgs/by-name/gr/grpc-tools/package.nix +++ b/pkgs/by-name/gr/grpc-tools/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { rev-prefix = "grpc-tools@"; }; - meta = with lib; { + meta = { description = "Distribution of protoc and the gRPC Node protoc plugin for ease of installation with npm"; longDescription = '' This package distributes the Protocol Buffers compiler protoc along with @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { gRPC libraries. ''; homepage = "https://github.com/grpc/grpc-node/tree/master/packages/grpc-tools"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = [ maintainers.nzhang-zh ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.nzhang-zh ]; }; } diff --git a/pkgs/by-name/gr/grpc_cli/package.nix b/pkgs/by-name/gr/grpc_cli/package.nix index 816017a24a9a..638ce231df31 100644 --- a/pkgs/by-name/gr/grpc_cli/package.nix +++ b/pkgs/by-name/gr/grpc_cli/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line tool for interacting with grpc services"; homepage = "https://github.com/grpc/grpc"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; mainProgram = "grpc_cli"; }; } diff --git a/pkgs/by-name/gr/grpcui/package.nix b/pkgs/by-name/gr/grpcui/package.nix index 1b4be00e5f19..788db08be950 100644 --- a/pkgs/by-name/gr/grpcui/package.nix +++ b/pkgs/by-name/gr/grpcui/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "Interactive web UI for gRPC, along the lines of postman"; homepage = "https://github.com/fullstorydev/grpcui"; - license = licenses.mit; - maintainers = with maintainers; [ pradyuman ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pradyuman ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "grpcui"; }; } diff --git a/pkgs/by-name/gr/grpcurl/package.nix b/pkgs/by-name/gr/grpcurl/package.nix index 7fc0556564bb..d60c0c56a8f1 100644 --- a/pkgs/by-name/gr/grpcurl/package.nix +++ b/pkgs/by-name/gr/grpcurl/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers"; homepage = "https://github.com/fullstorydev/grpcurl"; - license = licenses.mit; - maintainers = with maintainers; [ knl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ knl ]; mainProgram = "grpcurl"; }; } diff --git a/pkgs/by-name/gr/grsync/package.nix b/pkgs/by-name/gr/grsync/package.nix index edc7d9751ecb..3b2b625b198d 100644 --- a/pkgs/by-name/gr/grsync/package.nix +++ b/pkgs/by-name/gr/grsync/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { rsync ]; - meta = with lib; { + meta = { description = "Synchronize folders, files and make backups"; homepage = "http://www.opbyte.it/grsync/"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "grsync"; - maintainers = [ maintainers.kuznero ]; + maintainers = [ lib.maintainers.kuznero ]; }; } diff --git a/pkgs/by-name/gr/gruvbox-dark-gtk/package.nix b/pkgs/by-name/gr/gruvbox-dark-gtk/package.nix index 13fbef973cdb..570330b23671 100644 --- a/pkgs/by-name/gr/gruvbox-dark-gtk/package.nix +++ b/pkgs/by-name/gr/gruvbox-dark-gtk/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { cp -r * $out/share/themes/gruvbox-dark ''; - meta = with lib; { + meta = { description = "Gruvbox theme for GTK based desktop environments"; homepage = "https://github.com/jmattheis/gruvbox-dark-gtk"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.nomisiv ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.nomisiv ]; }; } diff --git a/pkgs/by-name/gs/gscan2pdf/package.nix b/pkgs/by-name/gs/gscan2pdf/package.nix index 3091f396e1b0..012440348119 100644 --- a/pkgs/by-name/gs/gscan2pdf/package.nix +++ b/pkgs/by-name/gs/gscan2pdf/package.nix @@ -128,11 +128,11 @@ perlPackages.buildPerlPackage rec { make test ''; - meta = with lib; { + meta = { description = "GUI to produce PDFs or DjVus from scanned documents"; homepage = "https://gscan2pdf.sourceforge.net/"; - license = licenses.gpl3; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ euxane ]; mainProgram = "gscan2pdf"; }; } diff --git a/pkgs/by-name/gs/gsctl/package.nix b/pkgs/by-name/gs/gsctl/package.nix index e687abea7eff..905682d3b2c0 100644 --- a/pkgs/by-name/gs/gsctl/package.nix +++ b/pkgs/by-name/gs/gsctl/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Giant Swarm command line interface"; homepage = "https://github.com/giantswarm/gsctl"; - license = licenses.asl20; - maintainers = with maintainers; [ joesalisbury ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ joesalisbury ]; mainProgram = "gsctl"; }; } diff --git a/pkgs/by-name/gs/gsettings-desktop-schemas/package.nix b/pkgs/by-name/gs/gsettings-desktop-schemas/package.nix index c4ee1db9fae9..e2aafc1f379d 100644 --- a/pkgs/by-name/gs/gsettings-desktop-schemas/package.nix +++ b/pkgs/by-name/gs/gsettings-desktop-schemas/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas"; description = "Collection of GSettings schemas for settings shared by various components of a desktop"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gs/gshhg-gmt/package.nix b/pkgs/by-name/gs/gshhg-gmt/package.nix index 16abd9bdbae5..21aadcb403c2 100644 --- a/pkgs/by-name/gs/gshhg-gmt/package.nix +++ b/pkgs/by-name/gs/gshhg-gmt/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation (finalAttrs: { cp -rv ./* $out/share/gshhg-gmt ''; - meta = with lib; { + meta = { homepage = "https://www.soest.hawaii.edu/pwessel/gshhg/"; description = "High-resolution shoreline data set, for use with GMT"; longDescription = '' @@ -28,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: { rivers, and political boundaries. This data is for use by GMT, the Generic Mapping Tools. ''; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = with lib.maintainers; [ tviti ]; teams = [ lib.teams.geospatial ]; }; diff --git a/pkgs/by-name/gs/gshogi/package.nix b/pkgs/by-name/gs/gshogi/package.nix index 39ba5269110a..92031d214597 100644 --- a/pkgs/by-name/gs/gshogi/package.nix +++ b/pkgs/by-name/gs/gshogi/package.nix @@ -45,12 +45,12 @@ python3.pkgs.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "http://johncheetham.com/projects/gshogi/"; description = "Graphical implementation of the Shogi board game, also known as Japanese Chess"; mainProgram = "gshogi"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.ciil ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.ciil ]; }; } diff --git a/pkgs/by-name/gs/gsm/package.nix b/pkgs/by-name/gs/gsm/package.nix index 3cefc80a637a..e3f0a58cc86d 100644 --- a/pkgs/by-name/gs/gsm/package.nix +++ b/pkgs/by-name/gs/gsm/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { parallelBuild = false; - meta = with lib; { + meta = { description = "Lossy speech compression codec"; homepage = "https://www.quut.com/gsm/"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ codyopel raskin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gs/gsmlib/package.nix b/pkgs/by-name/gs/gsmlib/package.nix index e106bd64c28c..764325b96e99 100644 --- a/pkgs/by-name/gs/gsmlib/package.nix +++ b/pkgs/by-name/gs/gsmlib/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { "-std=c++14" ]; - meta = with lib; { + meta = { description = "Library to access GSM mobile phones through GSM modems"; homepage = "https://github.com/x-logLT/gsmlib"; - license = licenses.lgpl2; - platforms = platforms.linux; - maintainers = [ maintainers.misuzu ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.misuzu ]; }; } diff --git a/pkgs/by-name/gs/gsoap/package.nix b/pkgs/by-name/gs/gsoap/package.nix index ece6659ddc4b..ff0d0374923a 100644 --- a/pkgs/by-name/gs/gsoap/package.nix +++ b/pkgs/by-name/gs/gsoap/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { ''} ''; - meta = with lib; { + meta = { description = "C/C++ toolkit for SOAP web services and XML-based applications"; homepage = "https://www.genivia.com/products.html"; # gsoap is dual/triple licensed (see homepage for details): @@ -65,8 +65,8 @@ stdenv.mkDerivation rec { # 2. GPLv2 covers all of the software # 3. Proprietary commercial software development license (removes GPL # restrictions) - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/by-name/gs/gsocket/package.nix b/pkgs/by-name/gs/gsocket/package.nix index 02f50b5c024c..1b82e6095053 100644 --- a/pkgs/by-name/gs/gsocket/package.nix +++ b/pkgs/by-name/gs/gsocket/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; dontDisableStatic = true; - meta = with lib; { + meta = { description = "Connect like there is no firewall, securely"; homepage = "https://www.gsocket.io"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.msm ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.msm ]; }; } diff --git a/pkgs/by-name/gs/gsound/package.nix b/pkgs/by-name/gs/gsound/package.nix index 9809fa86a6b8..2fa300500236 100644 --- a/pkgs/by-name/gs/gsound/package.nix +++ b/pkgs/by-name/gs/gsound/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gsound"; description = "Small library for playing system sounds"; mainProgram = "gsound-play"; - teams = [ teams.gnome ]; - license = licenses.gpl2; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gs/gspeech/package.nix b/pkgs/by-name/gs/gspeech/package.nix index f587fdadc4b5..93dd6b69a7d5 100644 --- a/pkgs/by-name/gs/gspeech/package.nix +++ b/pkgs/by-name/gs/gspeech/package.nix @@ -79,11 +79,11 @@ python3.pkgs.buildPythonApplication rec { strictDeps = false; - meta = with lib; { + meta = { description = "Minimal GUI for the Text To Speech 'Svox Pico'. Read clipboard or selected text in different languages and manage it : pause, stop, replay"; homepage = "https://github.com/mothsART/gSpeech"; - maintainers = with maintainers; [ mothsart ]; - license = licenses.gpl3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ mothsart ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gs/gspell/package.nix b/pkgs/by-name/gs/gspell/package.nix index 94990edd6239..636f1f8eee3a 100644 --- a/pkgs/by-name/gs/gspell/package.nix +++ b/pkgs/by-name/gs/gspell/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Spell-checking library for GTK applications"; mainProgram = "gspell-app1"; homepage = "https://gitlab.gnome.org/GNOME/gspell"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gs/gss/package.nix b/pkgs/by-name/gs/gss/package.nix index cbe7445f7e2b..cb1f7dd16ad6 100644 --- a/pkgs/by-name/gs/gss/package.nix +++ b/pkgs/by-name/gs/gss/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { sed -i 's,\(-lshishi\),-L${shishi}/lib \1,' $out/lib/libgss.la ''; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/gss/"; description = "Generic Security Service"; mainProgram = "gss"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gt/gtdialog/package.nix b/pkgs/by-name/gt/gtdialog/package.nix index ef32b2bde612..4ccf48e8f648 100644 --- a/pkgs/by-name/gt/gtdialog/package.nix +++ b/pkgs/by-name/gt/gtdialog/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Cross-platform helper for creating interactive dialogs"; mainProgram = "gtdialog"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "http://foicica.com/gtdialog"; downloadPage = "http://foicica.com/gtdialog/download"; }; diff --git a/pkgs/by-name/gt/gtest/package.nix b/pkgs/by-name/gt/gtest/package.nix index f279587ffe9d..c31700e6e8a2 100644 --- a/pkgs/by-name/gt/gtest/package.nix +++ b/pkgs/by-name/gt/gtest/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { "-DCMAKE_CXX_STANDARD=${cxx_standard}" ]; - meta = with lib; { + meta = { description = "Google's framework for writing C++ tests"; homepage = "https://github.com/google/googletest"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ ivan-tkatchev ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ivan-tkatchev ]; }; } diff --git a/pkgs/by-name/gt/gtg/package.nix b/pkgs/by-name/gt/gtg/package.nix index 8abd74e7e25f..3a3a6cf8ec7f 100644 --- a/pkgs/by-name/gt/gtg/package.nix +++ b/pkgs/by-name/gt/gtg/package.nix @@ -79,7 +79,7 @@ python3Packages.buildPythonApplication rec { checkPhase = "xvfb-run pytest ../tests/"; - meta = with lib; { + meta = { description = "Personal tasks and TODO-list items organizer"; mainProgram = "gtg"; longDescription = '' @@ -88,8 +88,8 @@ python3Packages.buildPythonApplication rec { ''; homepage = "https://github.com/getting-things-gnome/gtg"; downloadPage = "https://github.com/getting-things-gnome/gtg/releases"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ oyren ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ oyren ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gt/gthree/package.nix b/pkgs/by-name/gt/gthree/package.nix index f4fb6033ddd4..a7188aab27d9 100644 --- a/pkgs/by-name/gt/gthree/package.nix +++ b/pkgs/by-name/gt/gthree/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { "-Dexamples=false" ]; - meta = with lib; { + meta = { description = "GObject/GTK port of three.js"; homepage = "https://github.com/alexlarsson/gthree"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gthree.x86_64-darwin }; } diff --git a/pkgs/by-name/gt/gthumb/package.nix b/pkgs/by-name/gt/gthumb/package.nix index 5ff5312110d2..e4542e23efd5 100644 --- a/pkgs/by-name/gt/gthumb/package.nix +++ b/pkgs/by-name/gt/gthumb/package.nix @@ -99,13 +99,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gthumb"; description = "Image browser and viewer for GNOME"; mainProgram = "gthumb"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ bobby285271 mimame ]; diff --git a/pkgs/by-name/gt/gti/package.nix b/pkgs/by-name/gt/gti/package.nix index 87c279701d20..e5633ed0a873 100644 --- a/pkgs/by-name/gt/gti/package.nix +++ b/pkgs/by-name/gt/gti/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { --zsh completions/gti.zsh ''; - meta = with lib; { + meta = { homepage = "https://r-wos.org/hacks/gti"; - license = licenses.mit; + license = lib.licenses.mit; description = "Humorous typo-based git runner; drives a car over the terminal"; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "gti"; }; } diff --git a/pkgs/by-name/gt/gtimelog/package.nix b/pkgs/by-name/gt/gtimelog/package.nix index 7b6d00f9b5ee..e2646484e761 100644 --- a/pkgs/by-name/gt/gtimelog/package.nix +++ b/pkgs/by-name/gt/gtimelog/package.nix @@ -63,7 +63,7 @@ python3Packages.buildPythonApplication rec { install -Dm644 src/gtimelog/gtimelog-large.png $out/share/icons/hicolor/256x256/apps/gtimelog.png ''; - meta = with lib; { + meta = { description = "Time tracking app"; mainProgram = "gtimelog"; longDescription = '' @@ -75,7 +75,7 @@ python3Packages.buildPythonApplication rec { - programs.dconf.enable = true; ''; homepage = "https://gtimelog.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/gt/gtk-doc/package.nix b/pkgs/by-name/gt/gtk-doc/package.nix index 50f5cdacbfc6..518480223472 100644 --- a/pkgs/by-name/gt/gtk-doc/package.nix +++ b/pkgs/by-name/gt/gtk-doc/package.nix @@ -91,11 +91,11 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Tools to extract documentation embedded in GTK and GNOME source code"; homepage = "https://gitlab.gnome.org/GNOME/gtk-doc"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pSub ]; - teams = [ teams.gnome ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub ]; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gt/gtk-frdp/package.nix b/pkgs/by-name/gt/gtk-frdp/package.nix index 1a4c228b398d..42c2c20f9762 100644 --- a/pkgs/by-name/gt/gtk-frdp/package.nix +++ b/pkgs/by-name/gt/gtk-frdp/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gtk-frdp"; description = "RDP viewer widget for GTK"; - teams = [ teams.gnome ]; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gt/gtk-layer-shell/package.nix b/pkgs/by-name/gt/gtk-layer-shell/package.nix index 9cbdfadfd35f..c7615234a203 100644 --- a/pkgs/by-name/gt/gtk-layer-shell/package.nix +++ b/pkgs/by-name/gt/gtk-layer-shell/package.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation (finalAttrs: { "-Dexamples=true" ]; - meta = with lib; { + meta = { description = "Library to create panels and other desktop components for Wayland using the Layer Shell protocol"; mainProgram = "gtk-layer-demo"; homepage = "https://github.com/wmww/gtk-layer-shell"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ eonpatapon donovanglover ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gt/gtk-mac-bundler/package.nix b/pkgs/by-name/gt/gtk-mac-bundler/package.nix index 2e264f0b8487..18595e6aad61 100644 --- a/pkgs/by-name/gt/gtk-mac-bundler/package.nix +++ b/pkgs/by-name/gt/gtk-mac-bundler/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { cp -r bundler $out/share ''; - meta = with lib; { + meta = { description = "Helper script that creates application bundles form GTK executables for macOS"; maintainers = [ ]; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; homepage = "https://gitlab.gnome.org/GNOME/gtk-mac-bundler"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/gt/gtk-mac-integration/package.nix b/pkgs/by-name/gt/gtk-mac-integration/package.nix index ce785d9abe4b..19976e462e15 100644 --- a/pkgs/by-name/gt/gtk-mac-integration/package.nix +++ b/pkgs/by-name/gt/gtk-mac-integration/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { gtkdocize ''; - meta = with lib; { + meta = { description = "Provides integration for GTK applications into the Mac desktop"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; homepage = "https://gitlab.gnome.org/GNOME/gtk-mac-integration"; maintainers = [ ]; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/gt/gtk-server/package.nix b/pkgs/by-name/gt/gtk-server/package.nix index ad42d001970f..2726dda47c04 100644 --- a/pkgs/by-name/gt/gtk-server/package.nix +++ b/pkgs/by-name/gt/gtk-server/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { configureOptions = [ "--with-gtk3" ]; - meta = with lib; { + meta = { homepage = "http://www.gtk-server.org/"; description = "Gtk-server for interpreted GUI programming"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gt/gtk-sharp-beans/package.nix b/pkgs/by-name/gt/gtk-sharp-beans/package.nix index c01f39ef028c..ea90d636bc02 100644 --- a/pkgs/by-name/gt/gtk-sharp-beans/package.nix +++ b/pkgs/by-name/gt/gtk-sharp-beans/package.nix @@ -35,9 +35,9 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { description = "Binds some API from GTK that isn't in GTK# 2.12.x"; - platforms = platforms.linux; - license = licenses.lgpl21; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/gt/gtk-vnc/package.nix b/pkgs/by-name/gt/gtk-vnc/package.nix index ee7d68fb48cb..aa18f6f35bad 100644 --- a/pkgs/by-name/gt/gtk-vnc/package.nix +++ b/pkgs/by-name/gt/gtk-vnc/package.nix @@ -83,15 +83,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "GTK VNC widget"; homepage = "https://gitlab.gnome.org/GNOME/gtk-vnc"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ raskin offline ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "gvnccapture"; }; }) diff --git a/pkgs/by-name/gt/gtk4-layer-shell/package.nix b/pkgs/by-name/gt/gtk4-layer-shell/package.nix index d1fab364a287..09801fc8717d 100644 --- a/pkgs/by-name/gt/gtk4-layer-shell/package.nix +++ b/pkgs/by-name/gt/gtk4-layer-shell/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation (finalAttrs: { "-Dexamples=true" ]; - meta = with lib; { + meta = { description = "Library to create panels and other desktop components for Wayland using the Layer Shell protocol and GTK4"; mainProgram = "gtk4-layer-demo"; - license = licenses.mit; - maintainers = with maintainers; [ donovanglover ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ donovanglover ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gt/gtkclipblock/package.nix b/pkgs/by-name/gt/gtkclipblock/package.nix index c6cce92c1fa3..528b623f0857 100644 --- a/pkgs/by-name/gt/gtkclipblock/package.nix +++ b/pkgs/by-name/gt/gtkclipblock/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation { dontUseCmakeConfigure = true; - meta = with lib; { + meta = { description = "LD_PRELOAD hack to prevent GTK programs from interacting with the primary clipboard"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ uartman ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ uartman ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/gt/gtkgnutella/package.nix b/pkgs/by-name/gt/gtkgnutella/package.nix index eaaf9a136916..eb22ca254827 100644 --- a/pkgs/by-name/gt/gtkgnutella/package.nix +++ b/pkgs/by-name/gt/gtkgnutella/package.nix @@ -59,14 +59,14 @@ stdenv.mkDerivation (finalAttrs: { install -Dm0444 src/gtk-gnutella.man $out/share/man/man1/gtk-gnutella.1 ''; - meta = with lib; { + meta = { description = "GTK Gnutella client, optimized for speed and scalability"; mainProgram = "gtk-gnutella"; homepage = "https://gtk-gnutella.sourceforge.net/"; # Code: https://github.com/gtk-gnutella/gtk-gnutella changelog = "https://raw.githubusercontent.com/gtk-gnutella/gtk-gnutella/v${finalAttrs.version}/ChangeLog"; - maintainers = [ maintainers.doronbehar ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = [ lib.maintainers.doronbehar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; # The last successful Darwin Hydra build was in 2023 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/gt/gtkhash/package.nix b/pkgs/by-name/gt/gtkhash/package.nix index e28674b5cd70..86f50df8c159 100644 --- a/pkgs/by-name/gt/gtkhash/package.nix +++ b/pkgs/by-name/gt/gtkhash/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { ]; strictDeps = true; - meta = with lib; { + meta = { description = "Cross-platform desktop utility for computing message digests or checksums"; homepage = "https://gtkhash.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ByteSudoer ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ByteSudoer ]; mainProgram = "gtkhash"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gt/gtkhtml/package.nix b/pkgs/by-name/gt/gtkhtml/package.nix index ffba374d13c8..c7cf2b3dfc9d 100644 --- a/pkgs/by-name/gt/gtkhtml/package.nix +++ b/pkgs/by-name/gt/gtkhtml/package.nix @@ -57,8 +57,8 @@ stdenv.mkDerivation rec { isocodes ]; - meta = with lib; { - platforms = platforms.linux; + meta = { + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gt/gtkradiant/package.nix b/pkgs/by-name/gt/gtkradiant/package.nix index 9a7c543b1167..d54d037eaf76 100644 --- a/pkgs/by-name/gt/gtkradiant/package.nix +++ b/pkgs/by-name/gt/gtkradiant/package.nix @@ -272,15 +272,15 @@ stdenv.mkDerivation rec { ln -s ../../lib/gtkradiant/bitmaps/icon.png $out/share/pixmaps/gtkradiant.png ''; - meta = with lib; { + meta = { description = "Level editor for idTech games"; homepage = "https://icculus.org/gtkradiant/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only bsdOriginal lgpl21Only ]; - maintainers = with maintainers; [ astro ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ astro ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gt/gtkspellmm/package.nix b/pkgs/by-name/gt/gtkspellmm/package.nix index 80b65a5d7065..d15f94647c28 100644 --- a/pkgs/by-name/gt/gtkspellmm/package.nix +++ b/pkgs/by-name/gt/gtkspellmm/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { gtkmm3 ]; - meta = with lib; { + meta = { description = "C++ binding for the gtkspell library"; homepage = "https://gtkspell.sourceforge.net/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gt/gtkterm/package.nix b/pkgs/by-name/gt/gtkterm/package.nix index 0b11db2e5566..ed837b3aaff6 100644 --- a/pkgs/by-name/gt/gtkterm/package.nix +++ b/pkgs/by-name/gt/gtkterm/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { pcre2 ]; - meta = with lib; { + meta = { description = "Simple, graphical serial port terminal emulator"; homepage = "https://github.com/wvdakker/gtkterm"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' GTKTerm is a simple, graphical serial port terminal emulator for Linux and possibly other POSIX-compliant operating systems. It @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { serial interface, such as embedded computers, microcontrollers, modems, GPS receivers, CNC machines and more. ''; - maintainers = with maintainers; [ wentasah ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ wentasah ]; + platforms = lib.platforms.linux; mainProgram = "gtkterm"; }; } diff --git a/pkgs/by-name/gt/gtranslator/package.nix b/pkgs/by-name/gt/gtranslator/package.nix index c53f441603bb..03fa1fc479ec 100644 --- a/pkgs/by-name/gt/gtranslator/package.nix +++ b/pkgs/by-name/gt/gtranslator/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GNOME translation making program"; mainProgram = "gtranslator"; homepage = "https://gitlab.gnome.org/GNOME/gtranslator"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ bobby285271 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bobby285271 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gt/gtree/package.nix b/pkgs/by-name/gt/gtree/package.nix index 320ea98f3a8c..482317815d0e 100644 --- a/pkgs/by-name/gt/gtree/package.nix +++ b/pkgs/by-name/gt/gtree/package.nix @@ -36,12 +36,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Generate directory trees and directories using Markdown or programmatically"; mainProgram = "gtree"; homepage = "https://github.com/ddddddO/gtree"; changelog = "https://github.com/ddddddO/gtree/releases/tag/${src.rev}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/by-name/gu/guake/package.nix b/pkgs/by-name/gu/guake/package.nix index 4cfdd6e23aeb..f9bb36a523dd 100644 --- a/pkgs/by-name/gu/guake/package.nix +++ b/pkgs/by-name/gu/guake/package.nix @@ -94,14 +94,14 @@ python311Packages.buildPythonApplication rec { passthru.tests.test = nixosTests.terminal-emulators.guake; - meta = with lib; { + meta = { description = "Drop-down terminal for GNOME"; homepage = "http://guake-project.org"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ - maintainers.msteen - maintainers.heywoodlh + lib.maintainers.msteen + lib.maintainers.heywoodlh ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gu/gubbi-font/package.nix b/pkgs/by-name/gu/gubbi-font/package.nix index c70e58cb75e0..0347d5ac5456 100644 --- a/pkgs/by-name/gu/gubbi-font/package.nix +++ b/pkgs/by-name/gu/gubbi-font/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { installPhase = "install -Dm444 -t $out/share/fonts/truetype/ Gubbi.ttf"; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Kannada font"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gu/gucharmap/package.nix b/pkgs/by-name/gu/gucharmap/package.nix index e84aea3306d3..6e24d14d17ad 100644 --- a/pkgs/by-name/gu/gucharmap/package.nix +++ b/pkgs/by-name/gu/gucharmap/package.nix @@ -111,12 +111,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "GNOME Character Map, based on the Unicode Character Database"; mainProgram = "gucharmap"; homepage = "https://gitlab.gnome.org/GNOME/gucharmap"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gu/guff/package.nix b/pkgs/by-name/gu/guff/package.nix index 17be43aba7bd..401bb15a481b 100644 --- a/pkgs/by-name/gu/guff/package.nix +++ b/pkgs/by-name/gu/guff/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Plot device"; homepage = "https://github.com/silentbicycle/guff"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "guff"; }; } diff --git a/pkgs/by-name/gu/guile-aspell/package.nix b/pkgs/by-name/gu/guile-aspell/package.nix index 2f97b3c0376b..16aff34f7d37 100644 --- a/pkgs/by-name/gu/guile-aspell/package.nix +++ b/pkgs/by-name/gu/guile-aspell/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation (finalAttrs: { aspell ]; - meta = with lib; { + meta = { description = "Guile bindings for the aspell library"; homepage = "https://github.com/spk121/guile-aspell"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; platforms = guile.meta.platforms; }; diff --git a/pkgs/by-name/gu/guile-avahi/package.nix b/pkgs/by-name/gu/guile-avahi/package.nix index 0a305451958e..2eec96809db5 100644 --- a/pkgs/by-name/gu/guile-avahi/package.nix +++ b/pkgs/by-name/gu/guile-avahi/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { makeFlags = [ "GUILE_AUTO_COMPILE=0" ]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-unused-function"; - meta = with lib; { + meta = { description = "Bindings to Avahi for GNU Guile"; homepage = "https://www.nongnu.org/guile-avahi/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-cairo/package.nix b/pkgs/by-name/gu/guile-cairo/package.nix index 427c6f990611..9346d351c647 100644 --- a/pkgs/by-name/gu/guile-cairo/package.nix +++ b/pkgs/by-name/gu/guile-cairo/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { doCheck = false; # Cannot find unit-test module from guile-lib nativeCheckInputs = [ guile-lib ]; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/guile-cairo/"; description = "Cairo bindings for GNU Guile"; longDescription = '' @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { maintained graphics library with all of the benefits of Scheme: memory management, exceptions, macros, and a dynamic programming environment. ''; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; platforms = guile.meta.platforms; }; diff --git a/pkgs/by-name/gu/guile-chickadee/package.nix b/pkgs/by-name/gu/guile-chickadee/package.nix index f7a59f14b798..7ea587c08bed 100644 --- a/pkgs/by-name/gu/guile-chickadee/package.nix +++ b/pkgs/by-name/gu/guile-chickadee/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Game development toolkit for Guile Scheme with SDL2 and OpenGL"; homepage = "https://dthompson.us/projects/chickadee.html"; - license = licenses.asl20; - maintainers = with maintainers; [ chito ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ chito ]; mainProgram = "chickadee"; platforms = guile.meta.platforms; broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/gu/guile-commonmark/package.nix b/pkgs/by-name/gu/guile-commonmark/package.nix index a63214323490..dc55584004e8 100644 --- a/pkgs/by-name/gu/guile-commonmark/package.nix +++ b/pkgs/by-name/gu/guile-commonmark/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation { "GUILE_AUTO_COMPILE=0" ]; - meta = with lib; { + meta = { homepage = "https://github.com/OrangeShark/guile-commonmark"; description = "Implementation of CommonMark for Guile"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; platforms = guile.meta.platforms; }; diff --git a/pkgs/by-name/gu/guile-config/package.nix b/pkgs/by-name/gu/guile-config/package.nix index 1513f1612957..b2ddd60adf11 100644 --- a/pkgs/by-name/gu/guile-config/package.nix +++ b/pkgs/by-name/gu/guile-config/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Configuration management library for GNU Guile"; homepage = "https://gitlab.com/a-sassmannshausen/guile-config"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sikmir ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-fibers/package.nix b/pkgs/by-name/gu/guile-fibers/package.nix index 2ce6fb26509b..d25821b11467 100644 --- a/pkgs/by-name/gu/guile-fibers/package.nix +++ b/pkgs/by-name/gu/guile-fibers/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { "GUILE_AUTO_COMPILE=0" ]; - meta = with lib; { + meta = { homepage = "https://github.com/wingo/fibers"; description = "Concurrent ML-like concurrency for Guile"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; platforms = guile.meta.platforms; }; diff --git a/pkgs/by-name/gu/guile-gcrypt/package.nix b/pkgs/by-name/gu/guile-gcrypt/package.nix index 004cf99f613e..e716c456c034 100644 --- a/pkgs/by-name/gu/guile-gcrypt/package.nix +++ b/pkgs/by-name/gu/guile-gcrypt/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { # In procedure bytevector-u8-ref: Argument 2 out of range dontStrip = stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Bindings to Libgcrypt for GNU Guile"; homepage = "https://notabug.org/cwebber/guile-gcrypt"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ethancedwards8 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ethancedwards8 ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-gnutls/package.nix b/pkgs/by-name/gu/guile-gnutls/package.nix index 8371a934cea9..e148619eea46 100644 --- a/pkgs/by-name/gu/guile-gnutls/package.nix +++ b/pkgs/by-name/gu/guile-gnutls/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { "--with-guile-extension-dir=${placeholder "out"}/lib/guile/${guile.effectiveVersion}/extensions" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/gnutls/guile/"; description = "Guile bindings for GnuTLS library"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-goblins/package.nix b/pkgs/by-name/gu/guile-goblins/package.nix index ffabf52f371f..d3dbab8e9611 100644 --- a/pkgs/by-name/gu/guile-goblins/package.nix +++ b/pkgs/by-name/gu/guile-goblins/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { # tests hang on darwin, and fail randomly on aarch64-linux on ofborg doCheck = !stdenv.hostPlatform.isDarwin && !stdenv.hostPlatform.isAarch64; - meta = with lib; { + meta = { description = "Spritely Goblins for Guile"; homepage = "https://spritely.institute/goblins/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; platforms = guile.meta.platforms; }; diff --git a/pkgs/by-name/gu/guile-hall/package.nix b/pkgs/by-name/gu/guile-hall/package.nix index ba71e6e82e13..5d656466fdae 100644 --- a/pkgs/by-name/gu/guile-hall/package.nix +++ b/pkgs/by-name/gu/guile-hall/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Project manager and build tool for GNU guile"; mainProgram = "hall"; homepage = "https://gitlab.com/a-sassmannshausen/guile-hall"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sikmir ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-json/package.nix b/pkgs/by-name/gu/guile-json/package.nix index 2955c87522b6..513f2af37f90 100644 --- a/pkgs/by-name/gu/guile-json/package.nix +++ b/pkgs/by-name/gu/guile-json/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { doCheck = true; makeFlags = [ "GUILE_AUTO_COMPILE=0" ]; - meta = with lib; { + meta = { description = "JSON Bindings for GNU Guile"; homepage = "https://savannah.nongnu.org/projects/guile-json"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ethancedwards8 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ethancedwards8 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gu/guile-lib/package.nix b/pkgs/by-name/gu/guile-lib/package.nix index 90ecc8d5cab0..ccee2c8ff924 100644 --- a/pkgs/by-name/gu/guile-lib/package.nix +++ b/pkgs/by-name/gu/guile-lib/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { "$(dirname $(echo ${lib.getLib stdenv.cc.cc}/lib*/libgcc_s.so))''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" ''; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/guile-lib/"; description = "Collection of useful Guile Scheme modules"; longDescription = '' @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { modules into a coherent library. Think "a down-scaled, limited-scope CPAN for Guile". ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; diff --git a/pkgs/by-name/gu/guile-lzlib/package.nix b/pkgs/by-name/gu/guile-lzlib/package.nix index af6eec44f9ec..d619818a1468 100644 --- a/pkgs/by-name/gu/guile-lzlib/package.nix +++ b/pkgs/by-name/gu/guile-lzlib/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { # tests fail on darwin doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "GNU Guile library providing bindings to lzlib"; homepage = "https://notabug.org/guile-lzlib/guile-lzlib"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-lzma/package.nix b/pkgs/by-name/gu/guile-lzma/package.nix index 2149ed422759..43281d2f632e 100644 --- a/pkgs/by-name/gu/guile-lzma/package.nix +++ b/pkgs/by-name/gu/guile-lzma/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { # In procedure bytevector-u8-ref: Argument 2 out of range dontStrip = stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { homepage = "https://ngyro.com/software/guile-lzma.html"; description = "Guile wrapper for lzma library"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-opengl/package.nix b/pkgs/by-name/gu/guile-opengl/package.nix index 96be47683df7..9331335b26b7 100644 --- a/pkgs/by-name/gu/guile-opengl/package.nix +++ b/pkgs/by-name/gu/guile-opengl/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { guile ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile-opengl/"; description = "Guile bindings for the OpenGL graphics API"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gu/guile-quickcheck/package.nix b/pkgs/by-name/gu/guile-quickcheck/package.nix index 2c77b99ca18d..ba6498339cc6 100644 --- a/pkgs/by-name/gu/guile-quickcheck/package.nix +++ b/pkgs/by-name/gu/guile-quickcheck/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { homepage = "https://ngyro.com/software/guile-quickcheck.html"; description = "Guile library providing tools for randomized, property-based testing"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-reader/package.nix b/pkgs/by-name/gu/guile-reader/package.nix index 919a03dbf967..556fc33aec4e 100644 --- a/pkgs/by-name/gu/guile-reader/package.nix +++ b/pkgs/by-name/gu/guile-reader/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-guilemoduledir=$(out)/${guile.siteDir}" ]; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/guile-reader/"; description = "Simple framework for building readers for GNU Guile"; longDescription = '' @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { Scheme readers. For example, it is used to implement Skribilo's R5RS-derived document syntax. ''; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; platforms = guile.meta.platforms; }; diff --git a/pkgs/by-name/gu/guile-sdl2/package.nix b/pkgs/by-name/gu/guile-sdl2/package.nix index 5e30eea7d9c0..350872063c8c 100644 --- a/pkgs/by-name/gu/guile-sdl2/package.nix +++ b/pkgs/by-name/gu/guile-sdl2/package.nix @@ -43,13 +43,13 @@ stdenv.mkDerivation rec { "GUILE_AUTO_COMPILE=0" ]; - meta = with lib; { + meta = { homepage = "https://dthompson.us/projects/guile-sdl2.html"; description = "Bindings to SDL2 for GNU Guile"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ seppeljordan ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gu/guile-semver/package.nix b/pkgs/by-name/gu/guile-semver/package.nix index 5f6f977695e2..3d0a9be15700 100644 --- a/pkgs/by-name/gu/guile-semver/package.nix +++ b/pkgs/by-name/gu/guile-semver/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "GNU Guile library implementing Semantic Versioning 2.0.0"; homepage = "https://ngyro.com/software/guile-semver.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-sjson/package.nix b/pkgs/by-name/gu/guile-sjson/package.nix index b9378052133d..1f7ddaa7eab2 100644 --- a/pkgs/by-name/gu/guile-sjson/package.nix +++ b/pkgs/by-name/gu/guile-sjson/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation (finalAttrs: { guile ]; - meta = with lib; { + meta = { description = "S-expression based json reader/writer for Guile"; homepage = "https://gitlab.com/dustyweb/guile-sjson"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; platforms = guile.meta.platforms; }; }) diff --git a/pkgs/by-name/gu/guile-ssh/package.nix b/pkgs/by-name/gu/guile-ssh/package.nix index ce35d6a6229b..e41dfa429c8b 100644 --- a/pkgs/by-name/gu/guile-ssh/package.nix +++ b/pkgs/by-name/gu/guile-ssh/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation (finalAttrs: { rmdir $out/bin ''; - meta = with lib; { + meta = { description = "Bindings to Libssh for GNU Guile"; homepage = "https://github.com/artyom-poptsov/guile-ssh"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ethancedwards8 foo-dogsquared ]; diff --git a/pkgs/by-name/gu/guile-xcb/package.nix b/pkgs/by-name/gu/guile-xcb/package.nix index 3d375144d90c..567c3e07a0ed 100644 --- a/pkgs/by-name/gu/guile-xcb/package.nix +++ b/pkgs/by-name/gu/guile-xcb/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation { "GUILE_AUTO_COMPILE=0" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mwitmer/guile-xcb"; description = "XCB bindings for Guile"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; platforms = guile.meta.platforms; }; diff --git a/pkgs/by-name/gu/guile-zlib/package.nix b/pkgs/by-name/gu/guile-zlib/package.nix index 26a9c01d914e..d8830d963e56 100644 --- a/pkgs/by-name/gu/guile-zlib/package.nix +++ b/pkgs/by-name/gu/guile-zlib/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "GNU Guile library providing bindings to zlib"; homepage = "https://notabug.org/guile-zlib/guile-zlib"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-zstd/package.nix b/pkgs/by-name/gu/guile-zstd/package.nix index 4b3509283763..8478f8924ac7 100644 --- a/pkgs/by-name/gu/guile-zstd/package.nix +++ b/pkgs/by-name/gu/guile-zstd/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "GNU Guile library providing bindings to zstd"; homepage = "https://notabug.org/guile-zstd/guile-zstd"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guilt/package.nix b/pkgs/by-name/gu/guilt/package.nix index c8f1389da050..5b8924510bb6 100644 --- a/pkgs/by-name/gu/guilt/package.nix +++ b/pkgs/by-name/gu/guilt/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/guilt --prefix PATH : ${lib.makeBinPath buildInputs} ''; - meta = with lib; { + meta = { description = "Manage patches like quilt, on top of a git repository"; longDescription = '' Andrew Morton originally developed a set of scripts for @@ -88,8 +88,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/jeffpc/guilt"; maintainers = with lib.maintainers; [ javimerino ]; - license = [ licenses.gpl2 ]; - platforms = platforms.all; + license = [ lib.licenses.gpl2 ]; + platforms = lib.platforms.all; mainProgram = "guilt"; }; } diff --git a/pkgs/by-name/gu/gumbo/package.nix b/pkgs/by-name/gu/gumbo/package.nix index ef1dbf8a7f47..73d771b9b823 100644 --- a/pkgs/by-name/gu/gumbo/package.nix +++ b/pkgs/by-name/gu/gumbo/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "C99 HTML parsing algorithm"; homepage = "https://codeberg.org/gumbo-parser/gumbo-parser"; - maintainers = [ maintainers.nico202 ]; - platforms = with platforms; linux ++ darwin; - license = licenses.asl20; + maintainers = [ lib.maintainers.nico202 ]; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/gu/gummy/package.nix b/pkgs/by-name/gu/gummy/package.nix index e6d5695e8f6f..362cda104db9 100644 --- a/pkgs/by-name/gu/gummy/package.nix +++ b/pkgs/by-name/gu/gummy/package.nix @@ -75,14 +75,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://codeberg.org/fusco/gummy"; description = "Brightness and temperature manager for X11"; longDescription = '' CLI screen manager for X11 that allows automatic and manual brightness/temperature adjustments, via backlight (currently only for embedded displays) and gamma. Multiple monitors are supported. ''; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/gu/gungnir/package.nix b/pkgs/by-name/gu/gungnir/package.nix index dee944503a40..c010e15fbdb3 100644 --- a/pkgs/by-name/gu/gungnir/package.nix +++ b/pkgs/by-name/gu/gungnir/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Command-line tool that continuously monitors certificate transparency (CT) logs for newly issued SSL/TLS certificates"; homepage = "https://github.com/g0ldencybersec/gungnir"; - license = licenses.mit; - maintainers = with maintainers; [ cherrykitten ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cherrykitten ]; mainProgram = "gungnir"; }; } diff --git a/pkgs/by-name/gu/gupnp-av/package.nix b/pkgs/by-name/gu/gupnp-av/package.nix index aa5378c5e067..67f872eef703 100644 --- a/pkgs/by-name/gu/gupnp-av/package.nix +++ b/pkgs/by-name/gu/gupnp-av/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "http://gupnp.org/"; description = "Collection of helpers for building AV (audio/video) applications using GUPnP"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gu/gupnp-dlna/package.nix b/pkgs/by-name/gu/gupnp-dlna/package.nix index 848303ff58ed..eb197f941491 100644 --- a/pkgs/by-name/gu/gupnp-dlna/package.nix +++ b/pkgs/by-name/gu/gupnp-dlna/package.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gupnp-dlna"; description = "Library to ease DLNA-related bits for applications using GUPnP"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gu/gupnp-tools/package.nix b/pkgs/by-name/gu/gupnp-tools/package.nix index 24e29a70b0fb..42eb58373a66 100644 --- a/pkgs/by-name/gu/gupnp-tools/package.nix +++ b/pkgs/by-name/gu/gupnp-tools/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Set of utilities and demos to work with UPnP"; homepage = "https://gitlab.gnome.org/GNOME/gupnp-tools"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gu/gurk-rs/package.nix b/pkgs/by-name/gu/gurk-rs/package.nix index 6a9852570abf..d5a3849796ce 100644 --- a/pkgs/by-name/gu/gurk-rs/package.nix +++ b/pkgs/by-name/gu/gurk-rs/package.nix @@ -59,11 +59,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Signal Messenger client for terminal"; mainProgram = "gurk"; homepage = "https://github.com/boxdot/gurk-rs"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ devhell ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ devhell ]; }; } diff --git a/pkgs/by-name/gu/gusb/package.nix b/pkgs/by-name/gu/gusb/package.nix index 8ec444615ab9..9449c69ca5aa 100644 --- a/pkgs/by-name/gu/gusb/package.nix +++ b/pkgs/by-name/gu/gusb/package.nix @@ -95,12 +95,12 @@ stdenv.mkDerivation rec { moveToOutput "share/doc" "$devdoc" ''; - meta = with lib; { + meta = { description = "GLib libusb wrapper"; mainProgram = "gusbcmd"; homepage = "https://github.com/hughsie/libgusb"; - license = licenses.lgpl21; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gu/gut/package.nix b/pkgs/by-name/gu/gut/package.nix index 4d854f5d43d4..884ad35d8e4d 100644 --- a/pkgs/by-name/gu/gut/package.nix +++ b/pkgs/by-name/gu/gut/package.nix @@ -29,10 +29,10 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Alternative git CLI"; homepage = "https://gut-cli.dev"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "gut"; }; diff --git a/pkgs/by-name/gu/gutenprint/package.nix b/pkgs/by-name/gu/gutenprint/package.nix index 385e8491546c..da41904663f0 100644 --- a/pkgs/by-name/gu/gutenprint/package.nix +++ b/pkgs/by-name/gu/gutenprint/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { # Testing is very, very long. # doCheck = true; - meta = with lib; { + meta = { description = "Ghostscript and cups printer drivers"; homepage = "https://sourceforge.net/projects/gimp-print/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; isGutenprint = true; }; } diff --git a/pkgs/by-name/gv/gvfs/package.nix b/pkgs/by-name/gv/gvfs/package.nix index 2e8ee141c156..3e13d55a4682 100644 --- a/pkgs/by-name/gv/gvfs/package.nix +++ b/pkgs/by-name/gv/gvfs/package.nix @@ -162,8 +162,8 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Virtual Filesystem support library" + optionalString gnomeSupport " (full GNOME support)"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gv/gvisor/package.nix b/pkgs/by-name/gv/gvisor/package.nix index 33c183c9b52c..cb05875193d3 100644 --- a/pkgs/by-name/gv/gvisor/package.nix +++ b/pkgs/by-name/gv/gvisor/package.nix @@ -62,11 +62,11 @@ buildGoModule { passthru.tests = { inherit (nixosTests) gvisor; }; - meta = with lib; { + meta = { description = "Application Kernel for Containers"; homepage = "https://github.com/google/gvisor"; - license = licenses.asl20; - maintainers = with maintainers; [ gpl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gpl ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/gv/gvpe/package.nix b/pkgs/by-name/gv/gvpe/package.nix index d67e119fefac..9eefaaa0d851 100644 --- a/pkgs/by-name/gv/gvpe/package.nix +++ b/pkgs/by-name/gv/gvpe/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { sed -e 's@/sbin/ifconfig@${net-tools}/sbin/ifconfig@g' -i src/device-*.C ''; - meta = with lib; { + meta = { description = "Protected multinode virtual network"; homepage = "http://software.schmorp.de/pkg/gvpe.html"; - maintainers = [ maintainers.raskin ]; - platforms = with platforms; linux ++ freebsd; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.raskin ]; + platforms = with lib.platforms; linux ++ freebsd; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/gv/gvproxy/package.nix b/pkgs/by-name/gv/gvproxy/package.nix index 96ec2c682430..51d58955ca71 100644 --- a/pkgs/by-name/gv/gvproxy/package.nix +++ b/pkgs/by-name/gv/gvproxy/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/containers/gvisor-tap-vsock/releases/tag/${src.rev}"; description = "Network stack based on gVisor"; homepage = "https://github.com/containers/gvisor-tap-vsock"; - license = licenses.asl20; - teams = [ teams.podman ]; + license = lib.licenses.asl20; + teams = [ lib.teams.podman ]; }; } diff --git a/pkgs/by-name/gx/gx-go/package.nix b/pkgs/by-name/gx/gx-go/package.nix index 082c71b9938c..a068aff0a96e 100644 --- a/pkgs/by-name/gx/gx-go/package.nix +++ b/pkgs/by-name/gx/gx-go/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Tool for importing go packages into gx"; mainProgram = "gx-go"; homepage = "https://github.com/whyrusleeping/gx-go"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/gx/gx/package.nix b/pkgs/by-name/gx/gx/package.nix index 66182a09ff09..853092acd84c 100644 --- a/pkgs/by-name/gx/gx/package.nix +++ b/pkgs/by-name/gx/gx/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Packaging tool built around IPFS"; homepage = "https://github.com/whyrusleeping/gx"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; mainProgram = "gx"; }; } diff --git a/pkgs/by-name/gx/gxemul/package.nix b/pkgs/by-name/gx/gxemul/package.nix index 71afb6764a4a..b556cde19920 100644 --- a/pkgs/by-name/gx/gxemul/package.nix +++ b/pkgs/by-name/gx/gxemul/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { export PREFIX=${placeholder "out"} ''; - meta = with lib; { + meta = { homepage = "https://gavare.se/gxemul/"; description = "Gavare's experimental emulator"; longDescription = '' @@ -41,9 +41,9 @@ stdenv.mkDerivation rec { controllers. The emulation is working well enough to allow several unmodified "guest" operating systems to run. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "gxemul"; }; } diff --git a/pkgs/by-name/gx/gxkb/package.nix b/pkgs/by-name/gx/gxkb/package.nix index ecee614012a5..2d87df489384 100644 --- a/pkgs/by-name/gx/gxkb/package.nix +++ b/pkgs/by-name/gx/gxkb/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { ${git}/bin/git apply ${p1} ''; - meta = with lib; { + meta = { description = "X11 keyboard indicator and switcher"; homepage = "https://zen-tools.github.io/gxkb/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.omgbebebe ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.omgbebebe ]; + platforms = lib.platforms.linux; mainProgram = "gxkb"; }; } diff --git a/pkgs/by-name/gx/gxml/package.nix b/pkgs/by-name/gx/gxml/package.nix index a36a8dcda9e7..427d1491873f 100644 --- a/pkgs/by-name/gx/gxml/package.nix +++ b/pkgs/by-name/gx/gxml/package.nix @@ -59,13 +59,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Provides a GObject API for manipulating XML and a Serializable framework from GObject to XML"; homepage = "https://gitlab.gnome.org/GNOME/gxml"; changelog = "https://gitlab.gnome.org/GNOME/gxml/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ jmarmstrong1207 ]; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jmarmstrong1207 ]; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/gx/gxplugins-lv2/package.nix b/pkgs/by-name/gx/gxplugins-lv2/package.nix index 058ab19ada06..47a51da77ec6 100644 --- a/pkgs/by-name/gx/gxplugins-lv2/package.nix +++ b/pkgs/by-name/gx/gxplugins-lv2/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { homepage = "https://github.com/brummer10/GxPlugins.lv2"; description = "Set of extra lv2 plugins from the guitarix project"; - maintainers = [ maintainers.magnetophon ]; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gy/gyb/package.nix b/pkgs/by-name/gy/gyb/package.nix index e214204f5ce6..6f8791875b84 100644 --- a/pkgs/by-name/gy/gyb/package.nix +++ b/pkgs/by-name/gy/gyb/package.nix @@ -42,14 +42,14 @@ python3.pkgs.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = '' Got Your Back (GYB) is a command line tool for backing up your Gmail messages to your computer using Gmail's API over HTTPS. ''; homepage = "https://github.com/GAM-team/got-your-back"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "gyb"; - maintainers = with maintainers; [ austinbutler ]; + maintainers = with lib.maintainers; [ austinbutler ]; }; } diff --git a/pkgs/by-name/gz/gzrt/package.nix b/pkgs/by-name/gz/gzrt/package.nix index 6800a5aa9445..9876b9ac7737 100644 --- a/pkgs/by-name/gz/gzrt/package.nix +++ b/pkgs/by-name/gz/gzrt/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { cp gzrecover $out/bin ''; - meta = with lib; { + meta = { homepage = "https://www.urbanophile.com/arenn/hacking/gzrt/"; description = "Gzip Recovery Toolkit"; maintainers = [ ]; mainProgram = "gzrecover"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/h/h/package.nix b/pkgs/by-name/h/h/package.nix index f31e59358489..d9d822d3334e 100644 --- a/pkgs/by-name/h/h/package.nix +++ b/pkgs/by-name/h/h/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { cp up $out/bin/up ''; - meta = with lib; { + meta = { description = "Faster shell navigation of projects"; homepage = "https://github.com/zimbatm/h"; - license = licenses.mit; - maintainers = [ maintainers.zimbatm ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.zimbatm ]; }; } diff --git a/pkgs/by-name/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index 9335383fb799..bc2c7bcce43c 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -78,15 +78,15 @@ stdenv.mkDerivation (finalAttrs: { tests = { inherit (nixosTests) h2o; }; }; - meta = with lib; { + meta = { description = "Optimized HTTP/1.x, HTTP/2, HTTP/3 server"; homepage = "https://h2o.examp1e.net"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ toastal thoughtpolice ]; mainProgram = "h2o"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ha/habitat/package.nix b/pkgs/by-name/ha/habitat/package.nix index 882ec4cbe1df..fa0cce0a36a5 100644 --- a/pkgs/by-name/ha/habitat/package.nix +++ b/pkgs/by-name/ha/habitat/package.nix @@ -48,12 +48,12 @@ rustPlatform.buildRustPackage rec { SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt"; }; - meta = with lib; { + meta = { description = "Application automation framework"; homepage = "https://www.habitat.sh"; changelog = "https://github.com/habitat-sh/habitat/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rushmorem qjoly ]; diff --git a/pkgs/by-name/ha/hack-font/package.nix b/pkgs/by-name/ha/hack-font/package.nix index 1fbe9ef59498..07bbb88f947e 100644 --- a/pkgs/by-name/ha/hack-font/package.nix +++ b/pkgs/by-name/ha/hack-font/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Typeface designed for source code"; longDescription = '' Hack is hand groomed and optically balanced to be a workhorse face for @@ -40,8 +40,8 @@ stdenvNoCC.mkDerivation rec { and may be modified to derive new typeface branches. The full text of the license is available in LICENSE.md" (From the GitHub page) */ - license = licenses.free; - maintainers = with maintainers; [ dywedir ]; - platforms = platforms.all; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ dywedir ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ha/hackedbox/package.nix b/pkgs/by-name/ha/hackedbox/package.nix index d8ba1545d09d..6c2b87cf48f4 100644 --- a/pkgs/by-name/ha/hackedbox/package.nix +++ b/pkgs/by-name/ha/hackedbox/package.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation (finalAttrs: { "--x-libraries=${libX11.out}/lib" ]; - meta = with lib; { + meta = { description = "Bastard hacked offspring of Blackbox"; homepage = "https://github.com/museoa/hackedbox/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; inherit (libX11.meta) platforms; }; diff --git a/pkgs/by-name/ha/hackertyper/package.nix b/pkgs/by-name/ha/hackertyper/package.nix index f482c3a6815a..abcae45d8de7 100644 --- a/pkgs/by-name/ha/hackertyper/package.nix +++ b/pkgs/by-name/ha/hackertyper/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { $out/bin/hackertyper -v ''; - meta = with lib; { + meta = { description = "C rewrite of hackertyper.net"; homepage = "https://github.com/Hurricane996/Hackertyper"; - license = licenses.gpl3; - maintainers = [ maintainers.marius851000 ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.marius851000 ]; mainProgram = "hackertyper"; }; } diff --git a/pkgs/by-name/ha/hackrf/package.nix b/pkgs/by-name/ha/hackrf/package.nix index 4661be18215e..fedb36f3a808 100644 --- a/pkgs/by-name/ha/hackrf/package.nix +++ b/pkgs/by-name/ha/hackrf/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { --replace "find_library (FFTW_LIBRARIES NAMES fftw3)" "find_library (FFTW_LIBRARIES NAMES fftw3f)" ''; - meta = with lib; { + meta = { description = "Open source SDR platform"; homepage = "https://greatscottgadgets.com/hackrf/"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = with maintainers; [ sjmackenzie ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ sjmackenzie ]; }; } diff --git a/pkgs/by-name/ha/hactool/package.nix b/pkgs/by-name/ha/hactool/package.nix index 8bc55829d8a5..b0ccdfb0bf37 100644 --- a/pkgs/by-name/ha/hactool/package.nix +++ b/pkgs/by-name/ha/hactool/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { install -D hactool${stdenv.hostPlatform.extensions.executable} $out/bin/hactool${stdenv.hostPlatform.extensions.executable} ''; - meta = with lib; { + meta = { homepage = "https://github.com/SciresM/hactool"; description = "Tool to manipulate common file formats for the Nintendo Switch"; longDescription = "A tool to view information about, decrypt, and extract common file formats for the Nintendo Switch, especially Nintendo Content Archives"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "hactool"; }; } diff --git a/pkgs/by-name/ha/hakrawler/package.nix b/pkgs/by-name/ha/hakrawler/package.nix index 61ba00d2c06b..ed69f896b34e 100644 --- a/pkgs/by-name/ha/hakrawler/package.nix +++ b/pkgs/by-name/ha/hakrawler/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM="; - meta = with lib; { + meta = { description = "Web crawler for the discovery of endpoints and assets"; mainProgram = "hakrawler"; homepage = "https://github.com/hakluke/hakrawler"; @@ -25,7 +25,7 @@ buildGoModule rec { Simple, fast web crawler designed for easy, quick discovery of endpoints and assets within a web application. ''; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ha/hakuneko/package.nix b/pkgs/by-name/ha/hakuneko/package.nix index 70a33c50a27b..14af708e1c83 100644 --- a/pkgs/by-name/ha/hakuneko/package.nix +++ b/pkgs/by-name/ha/hakuneko/package.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { "''${gappsWrapperArgs[@]}" ''; - meta = with lib; { + meta = { description = "Manga & Anime Downloader"; homepage = "https://sourceforge.net/projects/hakuneko/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unlicense; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ nloomans ]; platforms = [ diff --git a/pkgs/by-name/ha/hal-hardware-analyzer/package.nix b/pkgs/by-name/ha/hal-hardware-analyzer/package.nix index 3e9f177e52db..3b68619aac27 100644 --- a/pkgs/by-name/ha/hal-hardware-analyzer/package.nix +++ b/pkgs/by-name/ha/hal-hardware-analyzer/package.nix @@ -98,14 +98,14 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/emsec/hal/blob/${src.tag}/CHANGELOG.md"; description = "Comprehensive reverse engineering and manipulation framework for gate-level netlists"; mainProgram = "hal"; homepage = "https://github.com/emsec/hal"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ris shamilton ]; diff --git a/pkgs/by-name/ha/half/package.nix b/pkgs/by-name/ha/half/package.nix index c5ab04a67972..06651364202e 100644 --- a/pkgs/by-name/ha/half/package.nix +++ b/pkgs/by-name/ha/half/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { cp $src/{ChangeLog,LICENSE,README}.txt $out/share/doc/ ''; - meta = with lib; { + meta = { description = "C++ library for half precision floating point arithmetics"; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ha/halftone/package.nix b/pkgs/by-name/ha/halftone/package.nix index b7130ea50bd9..df73270cedc2 100644 --- a/pkgs/by-name/ha/halftone/package.nix +++ b/pkgs/by-name/ha/halftone/package.nix @@ -53,12 +53,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "https://github.com/tfuxu/halftone"; description = "Simple app for giving images that pixel-art style"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "halftone"; - maintainers = with maintainers; [ foo-dogsquared ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ foo-dogsquared ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ha/halibut/package.nix b/pkgs/by-name/ha/halibut/package.nix index 564348024143..5e0062258135 100644 --- a/pkgs/by-name/ha/halibut/package.nix +++ b/pkgs/by-name/ha/halibut/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { perl ]; - meta = with lib; { + meta = { description = "Documentation production system for software manuals"; homepage = "https://www.chiark.greenend.org.uk/~sgtatham/halibut/"; - license = licenses.mit; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; mainProgram = "halibut"; }; } diff --git a/pkgs/by-name/ha/ham/package.nix b/pkgs/by-name/ha/ham/package.nix index 3bc77e26475a..014ed638399a 100644 --- a/pkgs/by-name/ha/ham/package.nix +++ b/pkgs/by-name/ha/ham/package.nix @@ -45,12 +45,12 @@ perlPackages.buildPerlPackage { --prefix PATH : ${openssh}/bin ''; - meta = with lib; { + meta = { description = "Tool to manage big projects consisting of multiple loosely-coupled git repositories"; homepage = "https://github.com/kernkonzept/ham"; - license = licenses.bsd2; - maintainers = with maintainers; [ aw ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ aw ]; mainProgram = "ham"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ha/hammer/package.nix b/pkgs/by-name/ha/hammer/package.nix index 20f8f0580ef5..48516bb4ea0f 100644 --- a/pkgs/by-name/ha/hammer/package.nix +++ b/pkgs/by-name/ha/hammer/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ glib ]; - meta = with lib; { + meta = { description = "Bit-oriented parser combinator library"; longDescription = '' Hammer is a parsing library. Like many modern parsing libraries, it @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { executables. ''; homepage = "https://gitlab.special-circumstanc.es/hammer/hammer"; - license = licenses.gpl2; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/ha/hamster/package.nix b/pkgs/by-name/ha/hamster/package.nix index c2695c344412..5556b28beb61 100644 --- a/pkgs/by-name/ha/hamster/package.nix +++ b/pkgs/by-name/ha/hamster/package.nix @@ -65,12 +65,12 @@ python3Packages.buildPythonApplication rec { wrapPythonProgramsIn $out/libexec "$out $pythonPath" ''; - meta = with lib; { + meta = { description = "Time tracking application"; mainProgram = "hamster"; homepage = "http://projecthamster.org/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.fabianhauser ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.fabianhauser ]; }; } diff --git a/pkgs/by-name/ha/hamtransfer/package.nix b/pkgs/by-name/ha/hamtransfer/package.nix index 0158c5abd252..27c7c8f53381 100644 --- a/pkgs/by-name/ha/hamtransfer/package.nix +++ b/pkgs/by-name/ha/hamtransfer/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage { mv $out/bin/uploader $out/bin/hamtransfer-uploader ''; - meta = with lib; { + meta = { description = "Tool for transferring files over amateur radio using modern techniques"; homepage = "https://github.com/ThomasHabets/hamtransfer"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ matthewcroughan sarcasticadmin pkharvey diff --git a/pkgs/by-name/ha/hanazono/package.nix b/pkgs/by-name/ha/hanazono/package.nix index a3e5cc7a1b5a..f571f23fb778 100644 --- a/pkgs/by-name/ha/hanazono/package.nix +++ b/pkgs/by-name/ha/hanazono/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Japanese Mincho-typeface TrueType font"; homepage = "https://fonts.jp/hanazono/"; longDescription = '' @@ -40,10 +40,10 @@ stdenvNoCC.mkDerivation rec { # or without modification, either commercially and noncommercially. # THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY. license = [ - licenses.ofl - licenses.free + lib.licenses.ofl + lib.licenses.free ]; - maintainers = with maintainers; [ mathnerd314 ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mathnerd314 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ha/handlr-regex/package.nix b/pkgs/by-name/ha/handlr-regex/package.nix index c1c6b46eff11..8b461e1e248c 100644 --- a/pkgs/by-name/ha/handlr-regex/package.nix +++ b/pkgs/by-name/ha/handlr-regex/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Fork of handlr with support for regex"; homepage = "https://github.com/Anomalocaridid/handlr-regex"; - license = licenses.mit; - maintainers = with maintainers; [ anomalocaris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anomalocaris ]; mainProgram = "handlr"; }; } diff --git a/pkgs/by-name/ha/handlr/package.nix b/pkgs/by-name/ha/handlr/package.nix index a076ded45a19..fc90a8276a86 100644 --- a/pkgs/by-name/ha/handlr/package.nix +++ b/pkgs/by-name/ha/handlr/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage { --fish completions/handlr.fish ''; - meta = with lib; { + meta = { description = "Alternative to xdg-open to manage default applications with ease"; homepage = "https://github.com/chmln/handlr"; - license = licenses.mit; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ artturin ]; mainProgram = "handlr"; }; } diff --git a/pkgs/by-name/ha/hannom/package.nix b/pkgs/by-name/ha/hannom/package.nix index 3495969e6abc..50fb79d59ed5 100644 --- a/pkgs/by-name/ha/hannom/package.nix +++ b/pkgs/by-name/ha/hannom/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "UNICODE Han Nom Font Set"; longDescription = '' The true type fonts HAN NOM A and HAN NOM B have been developed by Chan @@ -35,8 +35,8 @@ stdenvNoCC.mkDerivation rec { available with high and low resolutions. ''; homepage = "https://vietunicode.sourceforge.net/fonts/fonts_hannom.html"; - license = licenses.unfree; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ha/hans/package.nix b/pkgs/by-name/ha/hans/package.nix index fb73c3e09533..f53260712a0b 100644 --- a/pkgs/by-name/ha/hans/package.nix +++ b/pkgs/by-name/ha/hans/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { install -D -m0755 hans $out/bin/hans ''; - meta = with lib; { + meta = { description = "Tunnel IPv4 over ICMP"; longDescription = '' Hans makes it possible to tunnel IPv4 through ICMP echo packets, so you @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { allowed. ''; homepage = "https://code.gerade.org/hans/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "hans"; }; } diff --git a/pkgs/by-name/ha/harfbuzz/package.nix b/pkgs/by-name/ha/harfbuzz/package.nix index 82fb59100c38..d172d5922dd9 100644 --- a/pkgs/by-name/ha/harfbuzz/package.nix +++ b/pkgs/by-name/ha/harfbuzz/package.nix @@ -126,13 +126,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "OpenType text shaping engine"; homepage = "https://harfbuzz.github.io/"; changelog = "https://github.com/harfbuzz/harfbuzz/raw/${finalAttrs.version}/NEWS"; - maintainers = [ maintainers.cobalt ]; - license = licenses.mit; - platforms = platforms.unix ++ platforms.windows; + maintainers = [ lib.maintainers.cobalt ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix ++ lib.platforms.windows; pkgConfigModules = [ "harfbuzz" "harfbuzz-gobject" diff --git a/pkgs/by-name/ha/harminv/package.nix b/pkgs/by-name/ha/harminv/package.nix index bf266a20af75..ccb1b06b39c1 100644 --- a/pkgs/by-name/ha/harminv/package.nix +++ b/pkgs/by-name/ha/harminv/package.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation rec { "--enable-maintainer-mode" ]; - meta = with lib; { + meta = { description = "Harmonic inversion algorithm of Mandelshtam: decompose signal into sum of decaying sinusoids"; homepage = "https://github.com/NanoComp/harminv"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ sheepforce markuskowa ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ha/has/package.nix b/pkgs/by-name/ha/has/package.nix index 90790569923c..03d6bc886fdb 100644 --- a/pkgs/by-name/ha/has/package.nix +++ b/pkgs/by-name/ha/has/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/kdabir/has"; description = "Checks presence of various command line tools and their versions on the path"; - license = licenses.mit; - maintainers = with maintainers; [ Freed-Wu ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Freed-Wu ]; + platforms = lib.platforms.unix; mainProgram = "has"; }; }) diff --git a/pkgs/by-name/ha/hash-identifier/package.nix b/pkgs/by-name/ha/hash-identifier/package.nix index 48106b2eecf7..801a07864443 100644 --- a/pkgs/by-name/ha/hash-identifier/package.nix +++ b/pkgs/by-name/ha/hash-identifier/package.nix @@ -21,12 +21,12 @@ python3Packages.buildPythonApplication rec { install -Dm0775 hash-id.py $out/bin/hash-identifier ''; - meta = with lib; { + meta = { description = "Identify the different types of hashes used to encrypt data and especially passwords"; homepage = "https://github.com/blackploit/hash-identifier"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ ethancedwards8 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ethancedwards8 ]; mainProgram = "hash-identifier"; }; } diff --git a/pkgs/by-name/ha/hash-slinger/package.nix b/pkgs/by-name/ha/hash-slinger/package.nix index 2e62224e14bd..2e3f6c89130b 100644 --- a/pkgs/by-name/ha/hash-slinger/package.nix +++ b/pkgs/by-name/ha/hash-slinger/package.nix @@ -56,9 +56,9 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Various tools to generate special DNS records"; homepage = "https://github.com/letoams/hash-slinger"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ha/hash_extender/package.nix b/pkgs/by-name/ha/hash_extender/package.nix index 0c24640efe0a..059f8d56d596 100644 --- a/pkgs/by-name/ha/hash_extender/package.nix +++ b/pkgs/by-name/ha/hash_extender/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { cp hash_extender $out/bin ''; - meta = with lib; { + meta = { description = "Tool to automate hash length extension attacks"; mainProgram = "hash_extender"; homepage = "https://github.com/iagox86/hash_extender"; - license = licenses.bsd3; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/ha/hashcash/package.nix b/pkgs/by-name/ha/hashcash/package.nix index db70ed37b1dc..3b457166f480 100644 --- a/pkgs/by-name/ha/hashcash/package.nix +++ b/pkgs/by-name/ha/hashcash/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { "DOC_INSTALL_PATH=${placeholder "out"}/share/doc/hashcash-$(version)" ]; - meta = with lib; { + meta = { description = "Proof-of-work algorithm used as spam and denial-of-service counter measure"; homepage = "http://hashcash.org"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ kisonecat ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ kisonecat ]; }; } diff --git a/pkgs/by-name/ha/hashcat-utils/package.nix b/pkgs/by-name/ha/hashcat-utils/package.nix index 631cc1fa5092..609dba87e06b 100644 --- a/pkgs/by-name/ha/hashcat-utils/package.nix +++ b/pkgs/by-name/ha/hashcat-utils/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Small utilities that are useful in advanced password cracking"; homepage = "https://github.com/hashcat/hashcat-utils"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ha/hashcat/package.nix b/pkgs/by-name/ha/hashcat/package.nix index ca69ab1e1a1d..36ecdcfe92e2 100644 --- a/pkgs/by-name/ha/hashcat/package.nix +++ b/pkgs/by-name/ha/hashcat/package.nix @@ -116,13 +116,13 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Fast password cracker"; mainProgram = "hashcat"; homepage = "https://hashcat.net/hashcat/"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ felixalbrigtsen zimbatm ]; diff --git a/pkgs/by-name/ha/hashdeep/package.nix b/pkgs/by-name/ha/hashdeep/package.nix index 0b6fe047cecd..f0a225e9bfe1 100644 --- a/pkgs/by-name/ha/hashdeep/package.nix +++ b/pkgs/by-name/ha/hashdeep/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Set of cross-platform tools to compute hashes"; homepage = "https://github.com/jessek/hashdeep"; - license = licenses.gpl2Only; - maintainers = [ maintainers.karantan ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.karantan ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ha/hashi-ui/package.nix b/pkgs/by-name/ha/hashi-ui/package.nix index 104b2ca0e6f3..783d357d984d 100644 --- a/pkgs/by-name/ha/hashi-ui/package.nix +++ b/pkgs/by-name/ha/hashi-ui/package.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { install -m755 -D $src $out/bin/hashi-ui ''; - meta = with lib; { + meta = { homepage = "https://github.com/jippi/hashi-ui"; description = "Modern user interface for hashicorp Consul & Nomad"; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ numkem ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ numkem ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; mainProgram = "hashi-ui"; }; } diff --git a/pkgs/by-name/ha/hashi-up/package.nix b/pkgs/by-name/ha/hashi-up/package.nix index 2abf848649d2..e2fd0cd5dd98 100644 --- a/pkgs/by-name/ha/hashi-up/package.nix +++ b/pkgs/by-name/ha/hashi-up/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-dircE3WlDPsPnF+0wT5RG/c4hC8qPs8NaSGM5wpvVlM="; - meta = with lib; { + meta = { description = "Lightweight utility to install HashiCorp Consul, Nomad, or Vault on any remote Linux host"; mainProgram = "hashi-up"; homepage = "https://github.com/jsiebens/hashi-up"; - license = licenses.mit; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/ha/hashid/package.nix b/pkgs/by-name/ha/hashid/package.nix index 7aa8ff7e69f6..a7408e79f6e9 100644 --- a/pkgs/by-name/ha/hashid/package.nix +++ b/pkgs/by-name/ha/hashid/package.nix @@ -20,11 +20,11 @@ python3Packages.buildPythonApplication { setuptools ]; - meta = with lib; { + meta = { description = "Software to identify the different types of hashes"; homepage = "https://github.com/psypanda/hashID"; mainProgram = "hashid"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ d3vil0p3r ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; }; } diff --git a/pkgs/by-name/ha/hashit/package.nix b/pkgs/by-name/ha/hashit/package.nix index 335f14834414..f66815471aa3 100644 --- a/pkgs/by-name/ha/hashit/package.nix +++ b/pkgs/by-name/ha/hashit/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple app for checking usual checksums - Designed for elementary OS"; homepage = "https://github.com/artemanufrij/hashit"; - license = licenses.gpl2Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "com.github.artemanufrij.hashit"; }; } diff --git a/pkgs/by-name/ha/hashlink/package.nix b/pkgs/by-name/ha/hashlink/package.nix index a7821df0c014..25bc2b734586 100644 --- a/pkgs/by-name/ha/hashlink/package.nix +++ b/pkgs/by-name/ha/hashlink/package.nix @@ -66,16 +66,16 @@ stdenv.mkDerivation rec { cp -r ../other/haxelib/* "${haxelibPath}" ''; - meta = with lib; { + meta = { description = "Virtual machine for Haxe"; mainProgram = "hl"; homepage = "https://hashlink.haxe.org/"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" "x86_64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ iblech locallycompact logo diff --git a/pkgs/by-name/ha/hasklig/package.nix b/pkgs/by-name/ha/hasklig/package.nix index 3b83b91576b3..8bdb1a962a12 100644 --- a/pkgs/by-name/ha/hasklig/package.nix +++ b/pkgs/by-name/ha/hasklig/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/i-tu/Hasklig"; description = "Font with ligatures for Haskell code based off Source Code Pro"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ davidrusu ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ davidrusu ]; }; } diff --git a/pkgs/by-name/ha/hasmail/package.nix b/pkgs/by-name/ha/hasmail/package.nix index 37527ea842f4..e562a4a24ad6 100644 --- a/pkgs/by-name/ha/hasmail/package.nix +++ b/pkgs/by-name/ha/hasmail/package.nix @@ -33,11 +33,11 @@ buildGoModule { gtk2 ]; - meta = with lib; { + meta = { description = "Simple tray icon for detecting new email on IMAP servers"; mainProgram = "hasmail"; homepage = "https://github.com/jonhoo/hasmail"; - license = licenses.unlicense; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/by-name/ha/haste-server/package.nix b/pkgs/by-name/ha/haste-server/package.nix index 0a1e3f617d60..940509399783 100644 --- a/pkgs/by-name/ha/haste-server/package.nix +++ b/pkgs/by-name/ha/haste-server/package.nix @@ -31,11 +31,11 @@ buildNpmPackage { }; }; - meta = with lib; { + meta = { description = "Open source pastebin written in Node.js"; homepage = "https://github.com/toptal/haste-server"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "haste-server"; - maintainers = with maintainers; [ mkg20001 ]; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/ha/haxor-news/package.nix b/pkgs/by-name/ha/haxor-news/package.nix index 11ba11ebd899..f4e7b439b52f 100644 --- a/pkgs/by-name/ha/haxor-news/package.nix +++ b/pkgs/by-name/ha/haxor-news/package.nix @@ -41,11 +41,11 @@ python3Packages.buildPythonApplication { "-v" ]; - meta = with lib; { + meta = { homepage = "https://github.com/donnemartin/haxor-news"; description = "Browse Hacker News like a haxor"; - license = licenses.asl20; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/hb/hb-honeypot/package.nix b/pkgs/by-name/hb/hb-honeypot/package.nix index 45ec85a3e8cf..eedda1aa1baa 100644 --- a/pkgs/by-name/hb/hb-honeypot/package.nix +++ b/pkgs/by-name/hb/hb-honeypot/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Script that listens on TCP port 443 and responds with completely bogus SSL heartbeat responses"; mainProgram = "hb-honeypot"; homepage = "https://github.com/D3vil0p3r/hb-honeypot"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/hb/hblock/package.nix b/pkgs/by-name/hb/hblock/package.nix index 44cb953f09c2..8180482005e9 100644 --- a/pkgs/by-name/hb/hblock/package.nix +++ b/pkgs/by-name/hb/hblock/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Improve your security and privacy by blocking ads, tracking and malware domains"; mainProgram = "hblock"; homepage = "https://github.com/hectorm/hblock"; - license = licenses.mit; - maintainers = with maintainers; [ alanpearce ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alanpearce ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/hc/hcl2json/package.nix b/pkgs/by-name/hc/hcl2json/package.nix index e2eff0890edb..bd550a3bbd54 100644 --- a/pkgs/by-name/hc/hcl2json/package.nix +++ b/pkgs/by-name/hc/hcl2json/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Convert hcl2 to json"; homepage = "https://github.com/tmccombs/hcl2json"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "hcl2json"; }; diff --git a/pkgs/by-name/hc/hcledit/package.nix b/pkgs/by-name/hc/hcledit/package.nix index 999ab9f12c29..3e46ee0346ad 100644 --- a/pkgs/by-name/hc/hcledit/package.nix +++ b/pkgs/by-name/hc/hcledit/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-d1cxzGVBOwNAoOxGanRJas4jocxj6B6k5C1hxZi7/Ak="; - meta = with lib; { + meta = { description = "Command line editor for HCL"; mainProgram = "hcledit"; homepage = "https://github.com/minamijoyo/hcledit"; - license = licenses.mit; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/hc/hcxtools/package.nix b/pkgs/by-name/hc/hcxtools/package.nix index 7c9bdc8d483f..3f1ff1a14b02 100644 --- a/pkgs/by-name/hc/hcxtools/package.nix +++ b/pkgs/by-name/hc/hcxtools/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Tools for capturing wlan traffic and conversion to hashcat and John the Ripper formats"; homepage = "https://github.com/ZerBea/hcxtools"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ dywedir ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dywedir ]; }; } diff --git a/pkgs/by-name/hd/hd-idle/package.nix b/pkgs/by-name/hd/hd-idle/package.nix index 15a449efc195..6c1b514017d6 100644 --- a/pkgs/by-name/hd/hd-idle/package.nix +++ b/pkgs/by-name/hd/hd-idle/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { installManPage debian/hd-idle.8 ''; - meta = with lib; { + meta = { description = "Spins down external disks after a period of idle time"; mainProgram = "hd-idle"; homepage = "https://github.com/adelolmo/hd-idle"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/hd/hdaps-gl/package.nix b/pkgs/by-name/hd/hdaps-gl/package.nix index 0152919e9b17..20d091a7dff0 100644 --- a/pkgs/by-name/hd/hdaps-gl/package.nix +++ b/pkgs/by-name/hd/hdaps-gl/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { libGLU ]; - meta = with lib; { + meta = { description = "GL-based laptop model that rotates in real-time via hdaps"; homepage = "https://github.com/linux-thinkpad/hdaps-gl"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.symphorien ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.symphorien ]; mainProgram = "hdaps-gl"; }; } diff --git a/pkgs/by-name/hd/hdapsd/package.nix b/pkgs/by-name/hd/hdapsd/package.nix index 36f95a56bed3..cb4f82bd6d34 100644 --- a/pkgs/by-name/hd/hdapsd/package.nix +++ b/pkgs/by-name/hd/hdapsd/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { postInstall = builtins.readFile ./postInstall.sh; - meta = with lib; { + meta = { description = "Hard Drive Active Protection System Daemon"; mainProgram = "hdapsd"; homepage = "http://hdaps.sf.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/hd/hddtemp/package.nix b/pkgs/by-name/hd/hddtemp/package.nix index ab315202405e..f2917aa97f8d 100644 --- a/pkgs/by-name/hd/hddtemp/package.nix +++ b/pkgs/by-name/hd/hddtemp/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Tool for displaying hard disk temperature"; homepage = "https://savannah.nongnu.org/projects/hddtemp/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; mainProgram = "hddtemp"; }; } diff --git a/pkgs/by-name/hd/hdf4/package.nix b/pkgs/by-name/hd/hdf4/package.nix index f8d18e9ccc04..603bd5dd7122 100644 --- a/pkgs/by-name/hd/hdf4/package.nix +++ b/pkgs/by-name/hd/hdf4/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation (finalAttrs: { ; }; - meta = with lib; { + meta = { description = "Data model, library, and file format for storing and managing data"; homepage = "https://support.hdfgroup.org/products/hdf4/"; maintainers = [ ]; - platforms = platforms.unix; - license = licenses.bsdOriginal; + platforms = lib.platforms.unix; + license = lib.licenses.bsdOriginal; }; }) diff --git a/pkgs/by-name/hd/hdf5-blosc/package.nix b/pkgs/by-name/hd/hdf5-blosc/package.nix index c792bff5464e..24f3b7acc10d 100644 --- a/pkgs/by-name/hd/hdf5-blosc/package.nix +++ b/pkgs/by-name/hd/hdf5-blosc/package.nix @@ -57,9 +57,9 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Filter for HDF5 that uses the Blosc compressor"; homepage = "https://github.com/Blosc/hdf5-blosc"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/hd/hdhomerun-config-gui/package.nix b/pkgs/by-name/hd/hdhomerun-config-gui/package.nix index b68d0861c518..455c759225ae 100644 --- a/pkgs/by-name/hd/hdhomerun-config-gui/package.nix +++ b/pkgs/by-name/hd/hdhomerun-config-gui/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "GUI for configuring Silicondust HDHomeRun TV tuners"; homepage = "https://www.silicondust.com/support/linux"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.louisdk1 ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.louisdk1 ]; mainProgram = "hdhomerun_config_gui"; }; } diff --git a/pkgs/by-name/hd/hdl-dump/package.nix b/pkgs/by-name/hd/hdl-dump/package.nix index a62312ddb34c..d2bcb1944e0f 100644 --- a/pkgs/by-name/hd/hdl-dump/package.nix +++ b/pkgs/by-name/hd/hdl-dump/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { install -Dm755 hdl_dump -t $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/ps2homebrew/hdl-dump"; description = "PlayStation 2 HDLoader image dump/install utility"; - platforms = platforms.linux; - license = licenses.gpl2Only; - maintainers = with maintainers; [ makefu ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ makefu ]; mainProgram = "hdl_dump"; }; } diff --git a/pkgs/by-name/hd/hdparm/package.nix b/pkgs/by-name/hd/hdparm/package.nix index 0ca1d37c4888..7345bc609a17 100644 --- a/pkgs/by-name/hd/hdparm/package.nix +++ b/pkgs/by-name/hd/hdparm/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation (finalAttrs: { "manprefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Tool to get/set ATA/SATA drive parameters under Linux"; homepage = "https://sourceforge.net/projects/hdparm/"; - platforms = platforms.linux; - license = licenses.bsd2; + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; mainProgram = "hdparm"; maintainers = [ ]; }; diff --git a/pkgs/by-name/hd/hdrmerge/package.nix b/pkgs/by-name/hd/hdrmerge/package.nix index 9e2bd1865945..0d7e173363e2 100644 --- a/pkgs/by-name/hd/hdrmerge/package.nix +++ b/pkgs/by-name/hd/hdrmerge/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { install -Dm444 ../data/images/icon.png $out/share/icons/hicolor/128x128/apps/hdrmerge.png ''; - meta = with lib; { + meta = { homepage = "https://github.com/jcelaya/hdrmerge"; description = "Combines two or more raw images into an HDR"; mainProgram = "hdrmerge"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.paperdigits ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.paperdigits ]; }; } diff --git a/pkgs/by-name/hd/hdt/package.nix b/pkgs/by-name/hd/hdt/package.nix index 179054dcab06..07dfd80c2ed9 100644 --- a/pkgs/by-name/hd/hdt/package.nix +++ b/pkgs/by-name/hd/hdt/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.rdfhdt.org/"; description = "Header Dictionary Triples (HDT) is a compression format for RDF data that can also be queried for Triple Patterns"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = [ maintainers.koslambrou ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.koslambrou ]; }; } diff --git a/pkgs/by-name/he/headache/package.nix b/pkgs/by-name/he/headache/package.nix index 1d2a734e6048..ac7f82991225 100644 --- a/pkgs/by-name/he/headache/package.nix +++ b/pkgs/by-name/he/headache/package.nix @@ -30,11 +30,11 @@ buildDunePackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/frama-c/headache"; description = "Lightweight tool for managing headers in source code files"; mainProgram = "headache"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ niols ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ niols ]; }; } diff --git a/pkgs/by-name/he/headlines/package.nix b/pkgs/by-name/he/headlines/package.nix index 96951f9ae6ac..46fb7bc3f323 100644 --- a/pkgs/by-name/he/headlines/package.nix +++ b/pkgs/by-name/he/headlines/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "GTK4 / Libadwaita Reddit client written in C++"; homepage = "https://gitlab.com/caveman250/Headlines"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ chuangzhu ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ chuangzhu ]; mainProgram = "headlines"; }; } diff --git a/pkgs/by-name/he/headphones/package.nix b/pkgs/by-name/he/headphones/package.nix index 0c257dfbddcd..9f8a4205073a 100644 --- a/pkgs/by-name/he/headphones/package.nix +++ b/pkgs/by-name/he/headphones/package.nix @@ -35,9 +35,9 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Automatic music downloader for SABnzbd"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/rembo10/headphones"; maintainers = with lib.maintainers; [ rembo10 ]; mainProgram = "headphones"; diff --git a/pkgs/by-name/he/headscale/package.nix b/pkgs/by-name/he/headscale/package.nix index cdb39fb69975..c5bcc66f009b 100644 --- a/pkgs/by-name/he/headscale/package.nix +++ b/pkgs/by-name/he/headscale/package.nix @@ -52,7 +52,7 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) headscale; }; - meta = with lib; { + meta = { homepage = "https://github.com/juanfont/headscale"; description = "Open source, self-hosted implementation of the Tailscale control server"; longDescription = '' @@ -71,9 +71,9 @@ buildGoModule rec { Headscale implements this coordination server. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "headscale"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kradalby misterio77 ]; diff --git a/pkgs/by-name/he/headset-charge-indicator/package.nix b/pkgs/by-name/he/headset-charge-indicator/package.nix index 9c63c644d319..2b9b59dd9cbc 100644 --- a/pkgs/by-name/he/headset-charge-indicator/package.nix +++ b/pkgs/by-name/he/headset-charge-indicator/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { cp ${pname}.desktop $out/etc/xdg/autostart/${pname}.desktop ''; - meta = with lib; { + meta = { homepage = "https://github.com/centic9/headset-charge-indicator"; description = "App-indicator for GNOME desktops for controlling some features of various wireless headsets"; longDescription = "A simple app-indicator for GNOME desktops to display the battery charge of some wireless headsets which also allows to control some functions like LEDs, sidetone and others."; - platforms = platforms.linux; - maintainers = with maintainers; [ zebreus ]; - license = licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zebreus ]; + license = lib.licenses.bsd2; mainProgram = "headset-charge-indicator.py"; }; } diff --git a/pkgs/by-name/he/headset/package.nix b/pkgs/by-name/he/headset/package.nix index d0288b78f1ba..53b0710e3f27 100644 --- a/pkgs/by-name/he/headset/package.nix +++ b/pkgs/by-name/he/headset/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple music player for YouTube and Reddit"; homepage = "https://headsetapp.co/"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ muscaln ]; + maintainers = with lib.maintainers; [ muscaln ]; mainProgram = "headset"; }; } diff --git a/pkgs/by-name/he/headsetcontrol/package.nix b/pkgs/by-name/he/headsetcontrol/package.nix index 954edcd0d48c..e02604015fbc 100644 --- a/pkgs/by-name/he/headsetcontrol/package.nix +++ b/pkgs/by-name/he/headsetcontrol/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Sidetone and Battery status for Logitech G930, G533, G633, G933 SteelSeries Arctis 7/PRO 2019 and Corsair VOID (Pro)"; longDescription = '' A tool to control certain aspects of USB-connected headsets on Linux. Currently, @@ -37,9 +37,9 @@ stdenv.mkDerivation rec { LEDs, and setting the inactive time. ''; homepage = "https://github.com/Sapd/HeadsetControl"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "headsetcontrol"; - maintainers = with maintainers; [ leixb ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ leixb ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/he/health-check/package.nix b/pkgs/by-name/he/health-check/package.nix index ba63ef885e24..4916f95d241a 100644 --- a/pkgs/by-name/he/health-check/package.nix +++ b/pkgs/by-name/he/health-check/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Process monitoring tool"; mainProgram = "health-check"; homepage = "https://github.com/ColinIanKing/health-check"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/by-name/he/health/package.nix b/pkgs/by-name/he/health/package.nix index 8781062dd6b9..71eb20dd4d58 100644 --- a/pkgs/by-name/he/health/package.nix +++ b/pkgs/by-name/he/health/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Health tracking app for the GNOME desktop"; homepage = "https://apps.gnome.org/app/dev.Cogitri.Health"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "dev.Cogitri.Health"; teams = [ lib.teams.gnome-circle ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/he/healthchecks/package.nix b/pkgs/by-name/he/healthchecks/package.nix index d3199e611c40..16a382e398b7 100644 --- a/pkgs/by-name/he/healthchecks/package.nix +++ b/pkgs/by-name/he/healthchecks/package.nix @@ -93,10 +93,10 @@ py.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/healthchecks/healthchecks"; description = "Cron monitoring tool written in Python & Django"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/he/heaptrack/package.nix b/pkgs/by-name/he/heaptrack/package.nix index 64e99139b54f..f19cbeeaf608 100644 --- a/pkgs/by-name/he/heaptrack/package.nix +++ b/pkgs/by-name/he/heaptrack/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation { $out/bin/heaptrack_gui ''; - meta = with lib; { + meta = { description = "Heap memory profiler for Linux"; homepage = "https://github.com/KDE/heaptrack"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; mainProgram = "heaptrack_gui"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/he/heatseeker/package.nix b/pkgs/by-name/he/heatseeker/package.nix index 0f71dba70c7d..60676f490093 100644 --- a/pkgs/by-name/he/heatseeker/package.nix +++ b/pkgs/by-name/he/heatseeker/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { # which we can also make use of TRAVIS = "true"; - meta = with lib; { + meta = { description = "General-purpose fuzzy selector"; homepage = "https://github.com/rschmitt/heatseeker"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "hs"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/he/heatshrink/package.nix b/pkgs/by-name/he/heatshrink/package.nix index ec5a15b23a79..6c5d8e6a088f 100644 --- a/pkgs/by-name/he/heatshrink/package.nix +++ b/pkgs/by-name/he/heatshrink/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Data compression/decompression library for embedded/real-time systems"; homepage = "https://github.com/atomicobject/heatshrink"; - license = licenses.isc; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = "heatshrink"; }; }) diff --git a/pkgs/by-name/he/hecate/package.nix b/pkgs/by-name/he/hecate/package.nix index cfc5f56102b9..e4fefee86de9 100644 --- a/pkgs/by-name/he/hecate/package.nix +++ b/pkgs/by-name/he/hecate/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Terminal hex editor"; longDescription = "The Hex Editor From Hell!"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ramkromberg ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ramkromberg ]; mainProgram = "hecate"; }; } diff --git a/pkgs/by-name/he/heh/package.nix b/pkgs/by-name/he/heh/package.nix index 269797d7cfcd..65808d53dae3 100644 --- a/pkgs/by-name/he/heh/package.nix +++ b/pkgs/by-name/he/heh/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Sk/eL5Pza9L8GLBxqL9SqMT7KDWZenMjV+sGYaWUnzo="; - meta = with lib; { + meta = { description = "Cross-platform terminal UI used for modifying file data in hex or ASCII"; homepage = "https://github.com/ndd7xv/heh"; changelog = "https://github.com/ndd7xv/heh/releases/tag/${src.rev}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ piturnah ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ piturnah ]; mainProgram = "heh"; }; } diff --git a/pkgs/by-name/he/heisenbridge/package.nix b/pkgs/by-name/he/heisenbridge/package.nix index 5b23a814b16d..5ee122987810 100644 --- a/pkgs/by-name/he/heisenbridge/package.nix +++ b/pkgs/by-name/he/heisenbridge/package.nix @@ -42,11 +42,11 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Bouncer-style Matrix-IRC bridge"; homepage = "https://github.com/hifi/heisenbridge"; - license = licenses.mit; - maintainers = [ maintainers.sumnerevans ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sumnerevans ]; mainProgram = "heisenbridge"; }; } diff --git a/pkgs/by-name/he/hekatomb/package.nix b/pkgs/by-name/he/hekatomb/package.nix index 0647e9a26cba..64700ed42640 100644 --- a/pkgs/by-name/he/hekatomb/package.nix +++ b/pkgs/by-name/he/hekatomb/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication { "hekatomb" ]; - meta = with lib; { + meta = { description = "Tool to connect to LDAP directory to retrieve informations"; homepage = "https://github.com/ProcessusT/HEKATOMB"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "hekatomb"; }; } diff --git a/pkgs/by-name/he/helio-workstation/package.nix b/pkgs/by-name/he/helio-workstation/package.nix index 5a9dd02687e2..07108a2c222b 100644 --- a/pkgs/by-name/he/helio-workstation/package.nix +++ b/pkgs/by-name/he/helio-workstation/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { --replace "/usr/bin/helio" "$out/bin/helio" ''; - meta = with lib; { + meta = { description = "One music sequencer for all major platforms, both desktop and mobile"; mainProgram = "helio"; homepage = "https://helio.fm/"; - license = licenses.gpl3Only; - maintainers = [ maintainers.suhr ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.suhr ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/he/helix-gpt/package.nix b/pkgs/by-name/he/helix-gpt/package.nix index 311e674d59a0..f6c3f3eeb8da 100644 --- a/pkgs/by-name/he/helix-gpt/package.nix +++ b/pkgs/by-name/he/helix-gpt/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/leona/helix-gpt"; changelog = "https://github.com/leona/helix-gpt/releases/tag/${src.rev}"; description = "Code completion LSP for Helix with support for Copilot + OpenAI"; mainProgram = "helix-gpt"; - maintainers = with maintainers; [ happysalada ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ happysalada ]; + license = with lib.licenses; [ mit ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/he/hello-wayland/package.nix b/pkgs/by-name/he/hello-wayland/package.nix index d128ffd4bae8..da0e883992b3 100644 --- a/pkgs/by-name/he/hello-wayland/package.nix +++ b/pkgs/by-name/he/hello-wayland/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Hello world Wayland client"; homepage = "https://github.com/emersion/hello-wayland"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.mit; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "hello-wayland"; }; } diff --git a/pkgs/by-name/he/helm-docs/package.nix b/pkgs/by-name/he/helm-docs/package.nix index bcc89207c394..26def478c628 100644 --- a/pkgs/by-name/he/helm-docs/package.nix +++ b/pkgs/by-name/he/helm-docs/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/norwoodj/helm-docs"; description = "Tool for automatically generating markdown documentation for Helm charts"; mainProgram = "helm-docs"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ sagikazarmark ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ sagikazarmark ]; }; } diff --git a/pkgs/by-name/he/helmsman/package.nix b/pkgs/by-name/he/helmsman/package.nix index 74dc6b3897f7..16c02badc7d3 100644 --- a/pkgs/by-name/he/helmsman/package.nix +++ b/pkgs/by-name/he/helmsman/package.nix @@ -21,12 +21,12 @@ buildGoModule (finalAttrs: { doCheck = false; - meta = with lib; { + meta = { description = "Helm Charts (k8s applications) as Code tool"; mainProgram = "helmsman"; homepage = "https://github.com/Praqma/helmsman"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lynty sarcasticadmin ]; diff --git a/pkgs/by-name/he/help2man/package.nix b/pkgs/by-name/he/help2man/package.nix index 6d44830a98ac..222f74529b94 100644 --- a/pkgs/by-name/he/help2man/package.nix +++ b/pkgs/by-name/he/help2man/package.nix @@ -56,15 +56,15 @@ stdenv.mkDerivation rec { chmod +x $out/bin/help2man ''; - meta = with lib; { + meta = { description = "Generate man pages from `--help' output"; mainProgram = "help2man"; longDescription = '' help2man produces simple manual pages from the ‘--help’ and ‘--version’ output of other commands. ''; homepage = "https://www.gnu.org/software/help2man/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/he/helvetica-neue-lt-std/package.nix b/pkgs/by-name/he/helvetica-neue-lt-std/package.nix index 1b4d9eb4c993..cffa36164925 100644 --- a/pkgs/by-name/he/helvetica-neue-lt-std/package.nix +++ b/pkgs/by-name/he/helvetica-neue-lt-std/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://web.archive.org/web/20190926040940/http://www.ephifonts.com/free-helvetica-font-helvetica-neue-lt-std.html"; description = "Helvetica Neue LT Std font"; longDescription = '' @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation { font. The numbers are well spaced and defined with high accuracy. The punctuation marks are heavily detailed as well. ''; - license = licenses.unfree; - platforms = platforms.all; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.unfree; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/he/helvum/package.nix b/pkgs/by-name/he/helvum/package.nix index 39717339ce4b..0815bab941e1 100644 --- a/pkgs/by-name/he/helvum/package.nix +++ b/pkgs/by-name/he/helvum/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { pipewire ]; - meta = with lib; { + meta = { description = "GTK patchbay for pipewire"; homepage = "https://gitlab.freedesktop.org/pipewire/helvum"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fufexan ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fufexan ]; + platforms = lib.platforms.linux; mainProgram = "helvum"; }; } diff --git a/pkgs/by-name/he/hentai-at-home/package.nix b/pkgs/by-name/he/hentai-at-home/package.nix index 8563227ed7c9..9d819530488c 100644 --- a/pkgs/by-name/he/hentai-at-home/package.nix +++ b/pkgs/by-name/he/hentai-at-home/package.nix @@ -56,11 +56,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://ehwiki.org/wiki/Hentai@Home"; description = "Open-source P2P gallery distribution system which reduces the load on the E-Hentai Galleries"; - license = licenses.gpl3; - maintainers = with maintainers; [ terrorjack ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ terrorjack ]; mainProgram = "HentaiAtHome"; platforms = jdk_headless.meta.platforms; }; diff --git a/pkgs/by-name/he/hepmc2/package.nix b/pkgs/by-name/he/hepmc2/package.nix index fcf852d8f3f5..b83cdfc5a91c 100644 --- a/pkgs/by-name/he/hepmc2/package.nix +++ b/pkgs/by-name/he/hepmc2/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { description = "HepMC package is an object oriented event record written in C++ for High Energy Physics Monte Carlo Generators"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; homepage = "http://hepmc.web.cern.ch/hepmc/"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/he/heptagon/package.nix b/pkgs/by-name/he/heptagon/package.nix index be1b69a3a263..84c4ad990600 100644 --- a/pkgs/by-name/he/heptagon/package.nix +++ b/pkgs/by-name/he/heptagon/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { --prefix CAML_LD_LIBRARY_PATH : "${lablgtk}/lib/ocaml/${ocaml.version}/site-lib/lablgtk2" ''; - meta = with lib; { + meta = { description = "Compiler for the Heptagon/BZR synchronous programming language"; homepage = "https://gitlab.inria.fr/synchrone/heptagon"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wegank ]; mainProgram = "heptc"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/he/herbe/package.nix b/pkgs/by-name/he/herbe/package.nix index 2916cf79a09e..0849a544791d 100644 --- a/pkgs/by-name/he/herbe/package.nix +++ b/pkgs/by-name/he/herbe/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Daemon-less notifications without D-Bus"; homepage = "https://github.com/dudik/herbe"; - license = licenses.mit; + license = lib.licenses.mit; # NOTE: Could also work on 'unix'. - platforms = platforms.linux; - maintainers = with maintainers; [ wishfort36 ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wishfort36 ]; mainProgram = "herbe"; }; } diff --git a/pkgs/by-name/he/herbstluftwm/package.nix b/pkgs/by-name/he/herbstluftwm/package.nix index 7a29147156ca..44c6d9e08e14 100644 --- a/pkgs/by-name/he/herbstluftwm/package.nix +++ b/pkgs/by-name/he/herbstluftwm/package.nix @@ -127,11 +127,11 @@ stdenv.mkDerivation rec { tests.herbstluftwm = nixosTests.herbstluftwm; }; - meta = with lib; { + meta = { description = "Manual tiling window manager for X"; homepage = "https://herbstluftwm.org/"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ thibautmarty ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thibautmarty ]; }; } diff --git a/pkgs/by-name/he/hercules/package.nix b/pkgs/by-name/he/hercules/package.nix index 58be1d753826..9cbfe138b56d 100644 --- a/pkgs/by-name/he/hercules/package.nix +++ b/pkgs/by-name/he/hercules/package.nix @@ -45,10 +45,10 @@ let enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Hercules ${depName} library"; license = lib.licenses.free; # Mixture of Public Domain, ICU (MIT compatible) and others - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ anna328p vifino ]; @@ -143,7 +143,7 @@ stdenv.mkDerivation rec { "--enable-regina-rexx" ]; - meta = with lib; { + meta = { homepage = "https://sdl-hercules-390.github.io/html/"; description = "IBM mainframe emulator"; longDescription = '' @@ -152,8 +152,8 @@ stdenv.mkDerivation rec { z/Architecture. Hercules runs under Linux, Windows, Solaris, FreeBSD, and Mac OS X. ''; - license = licenses.qpl; - maintainers = with maintainers; [ + license = lib.licenses.qpl; + maintainers = with lib.maintainers; [ anna328p vifino ]; diff --git a/pkgs/by-name/he/hermit/package.nix b/pkgs/by-name/he/hermit/package.nix index 35003dbe0ef7..f1e5631be75e 100644 --- a/pkgs/by-name/he/hermit/package.nix +++ b/pkgs/by-name/he/hermit/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monospace font designed to be clear, pragmatic and very readable"; homepage = "https://pcaro.es/p/hermit"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/he/hermitcli/package.nix b/pkgs/by-name/he/hermitcli/package.nix index fbe73c99450a..20124ae210ca 100644 --- a/pkgs/by-name/he/hermitcli/package.nix +++ b/pkgs/by-name/he/hermitcli/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-X main.channel=stable" ]; - meta = with lib; { + meta = { homepage = "https://cashapp.github.io/hermit"; description = "Manages isolated, self-bootstrapping sets of tools in software projects"; - license = licenses.asl20; - maintainers = with maintainers; [ cbrewster ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cbrewster ]; + platforms = lib.platforms.unix; mainProgram = "hermit"; }; } diff --git a/pkgs/by-name/he/heroic-unwrapped/legendary.nix b/pkgs/by-name/he/heroic-unwrapped/legendary.nix index 8d272d5d306c..9873941e60c4 100644 --- a/pkgs/by-name/he/heroic-unwrapped/legendary.nix +++ b/pkgs/by-name/he/heroic-unwrapped/legendary.nix @@ -30,13 +30,13 @@ python3Packages.buildPythonApplication { pythonImportsCheck = [ "legendary" ]; - meta = with lib; { + meta = { description = "Free and open-source Epic Games Launcher alternative"; longDescription = '' This is the Heroic Games Launcher's fork of legendary. ''; homepage = "https://github.com/Heroic-Games-Launcher/legendary"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "legendary"; }; diff --git a/pkgs/by-name/he/herwig/package.nix b/pkgs/by-name/he/herwig/package.nix index 9473750925cd..09ee0577ac38 100644 --- a/pkgs/by-name/he/herwig/package.nix +++ b/pkgs/by-name/he/herwig/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Multi-purpose particle physics event generator"; homepage = "https://herwig.hepforge.org/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ veprbl ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ veprbl ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isAarch64; # doesn't compile: ignoring return value of 'FILE* freopen... }; } diff --git a/pkgs/by-name/he/hexapdf/package.nix b/pkgs/by-name/he/hexapdf/package.nix index 01fb51b09854..849d4bbd46b4 100644 --- a/pkgs/by-name/he/hexapdf/package.nix +++ b/pkgs/by-name/he/hexapdf/package.nix @@ -14,13 +14,13 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "hexapdf"; - meta = with lib; { + meta = { description = "Versatile PDF creation and manipulation library"; homepage = "https://hexapdf.gettalong.org/"; changelog = "https://github.com/gettalong/hexapdf/blob/master/CHANGELOG.md"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ bbenno ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ bbenno ]; + platforms = lib.platforms.unix; mainProgram = "hexapdf"; }; } diff --git a/pkgs/by-name/he/hexcurse/package.nix b/pkgs/by-name/he/hexcurse/package.nix index f5f7350792e2..d296ff01f50b 100644 --- a/pkgs/by-name/he/hexcurse/package.nix +++ b/pkgs/by-name/he/hexcurse/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "ncurses-based console hexeditor written in C"; homepage = "https://github.com/LonnyGomes/hexcurse"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "hexcurse"; }; diff --git a/pkgs/by-name/he/hexd/package.nix b/pkgs/by-name/he/hexd/package.nix index 5893d1cf9ed0..577e00a57239 100644 --- a/pkgs/by-name/he/hexd/package.nix +++ b/pkgs/by-name/he/hexd/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Colourful, human-friendly hexdump tool"; homepage = "https://github.com/FireyFly/hexd"; - maintainers = [ maintainers.FireyFly ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = [ lib.maintainers.FireyFly ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "hexd"; }; } diff --git a/pkgs/by-name/he/hexdino/package.nix b/pkgs/by-name/he/hexdino/package.nix index 5b87f563b56e..8d059421609a 100644 --- a/pkgs/by-name/he/hexdino/package.nix +++ b/pkgs/by-name/he/hexdino/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-NfVtNoTDGx3MGOe+bUOCgjSs8ZTfxMSCTp09sXOfUPs="; - meta = with lib; { + meta = { description = "Hex editor with vim like keybindings written in Rust"; homepage = "https://github.com/Luz/hexdino"; - license = licenses.mit; - maintainers = [ maintainers.luz ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.luz ]; mainProgram = "hexdino"; }; } diff --git a/pkgs/by-name/he/hexfiend/package.nix b/pkgs/by-name/he/hexfiend/package.nix index 2de0a4aa3dbd..c3baca911c16 100644 --- a/pkgs/by-name/he/hexfiend/package.nix +++ b/pkgs/by-name/he/hexfiend/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Open-source macOS hex editor"; homepage = "http://hexfiend.com/"; changelog = "https://hexfiend.github.io/HexFiend/ReleaseNotes.html"; - license = licenses.bsd2; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ eliandoran ]; - platforms = platforms.darwin; + license = lib.licenses.bsd2; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ eliandoran ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/he/hexio/package.nix b/pkgs/by-name/he/hexio/package.nix index ecc690779c12..6c7b296e508f 100644 --- a/pkgs/by-name/he/hexio/package.nix +++ b/pkgs/by-name/he/hexio/package.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Low-level I/O helpers for hexadecimal, tty/serial devices and so on"; homepage = "https://github.com/vanrein/hexio"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/he/hey/package.nix b/pkgs/by-name/he/hey/package.nix index 64b12a0576e2..f53a6d28a051 100644 --- a/pkgs/by-name/he/hey/package.nix +++ b/pkgs/by-name/he/hey/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "HTTP load generator, ApacheBench (ab) replacement"; homepage = "https://github.com/rakyll/hey"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "hey"; }; } diff --git a/pkgs/by-name/hf/hfst-ospell/package.nix b/pkgs/by-name/hf/hfst-ospell/package.nix index 0248ff05ba2b..9c8de5928c4c 100644 --- a/pkgs/by-name/hf/hfst-ospell/package.nix +++ b/pkgs/by-name/hf/hfst-ospell/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { "--without-tinyxml2" ]; - meta = with lib; { + meta = { homepage = "https://github.com/hfst/hfst-ospell/"; description = "HFST spell checker library and command line tool"; - license = licenses.asl20; - maintainers = with maintainers; [ lurkki ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lurkki ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/hf/hfst/package.nix b/pkgs/by-name/hf/hfst/package.nix index 14fc07ed8aae..a724439862f2 100644 --- a/pkgs/by-name/hf/hfst/package.nix +++ b/pkgs/by-name/hf/hfst/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { "--with-foma-upstream=true" ]; - meta = with lib; { + meta = { description = "FST language processing library"; homepage = "https://github.com/hfst/hfst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ lurkki ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lurkki ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/hh/hhpc/package.nix b/pkgs/by-name/hh/hhpc/package.nix index 048490fbe9c2..af81dc16b893 100644 --- a/pkgs/by-name/hh/hhpc/package.nix +++ b/pkgs/by-name/hh/hhpc/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { cp hhpc $out/bin/ ''; - meta = with lib; { + meta = { description = "Hides the mouse pointer in X11"; - maintainers = with maintainers; [ nico202 ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ nico202 ]; + platforms = lib.platforms.unix; license = lib.licenses.bsd3; mainProgram = "hhpc"; }; diff --git a/pkgs/by-name/hi/hicolor-icon-theme/package.nix b/pkgs/by-name/hi/hicolor-icon-theme/package.nix index 0d528243a865..5d1ce8baff39 100644 --- a/pkgs/by-name/hi/hicolor-icon-theme/package.nix +++ b/pkgs/by-name/hi/hicolor-icon-theme/package.nix @@ -30,13 +30,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Default fallback theme used by implementations of the icon theme specification"; homepage = "https://www.freedesktop.org/wiki/Software/icon-theme/"; changelog = "https://gitlab.freedesktop.org/xdg/default-icon-theme/-/blob/${finalAttrs.src.rev}/NEWS"; - platforms = platforms.unix; - license = licenses.gpl2Only; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Only; pkgConfigModules = [ "default-icon-theme" ]; - maintainers = with maintainers; [ jopejoe1 ]; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/hi/hid-listen/package.nix b/pkgs/by-name/hi/hid-listen/package.nix index b6dd65004943..ec1ed6626b84 100644 --- a/pkgs/by-name/hi/hid-listen/package.nix +++ b/pkgs/by-name/hi/hid-listen/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { mv ./hid_listen $out/bin/hid_listen ''; - meta = with lib; { + meta = { description = "Tool thats prints debugging information from usb HID devices"; homepage = "https://www.pjrc.com/teensy/hid_listen.html"; - license = licenses.gpl3; - maintainers = with maintainers; [ tomsmeets ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ tomsmeets ]; + platforms = lib.platforms.linux; mainProgram = "hid_listen"; }; } diff --git a/pkgs/by-name/hi/hid-tools/package.nix b/pkgs/by-name/hi/hid-tools/package.nix index 53fd6b5a9534..6b9250cd21a8 100644 --- a/pkgs/by-name/hi/hid-tools/package.nix +++ b/pkgs/by-name/hi/hid-tools/package.nix @@ -45,10 +45,10 @@ python3.pkgs.buildPythonPackage rec { --replace-fail "pypandoc_binary" "pypandoc" ''; - meta = with lib; { + meta = { description = "Python scripts to manipulate HID data"; homepage = "https://gitlab.freedesktop.org/libevdev/hid-tools"; - license = licenses.mit; - teams = [ teams.freedesktop ]; + license = lib.licenses.mit; + teams = [ lib.teams.freedesktop ]; }; } diff --git a/pkgs/by-name/hi/hidapi/package.nix b/pkgs/by-name/hi/hidapi/package.nix index b4465a854b89..ae773ba85eac 100644 --- a/pkgs/by-name/hi/hidapi/package.nix +++ b/pkgs/by-name/hi/hidapi/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Library for communicating with USB and Bluetooth HID devices"; homepage = "https://github.com/libusb/hidapi"; - maintainers = with maintainers; [ prusnak ]; + maintainers = with lib.maintainers; [ prusnak ]; # You can choose between GPLv3, BSD or HIDAPI license (even more liberal) - license = with licenses; [ + license = with lib.licenses; [ bsd3 # or gpl3Only ]; @@ -51,6 +51,6 @@ stdenv.mkDerivation (finalAttrs: { "hidapi-hidraw" "hidapi-libusb" ]; - platforms = platforms.unix ++ platforms.windows; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; }) diff --git a/pkgs/by-name/hi/hidrd/package.nix b/pkgs/by-name/hi/hidrd/package.nix index 2eb5821afec6..2e5c80780a04 100644 --- a/pkgs/by-name/hi/hidrd/package.nix +++ b/pkgs/by-name/hi/hidrd/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "HID report descriptor I/O library and conversion tool"; homepage = "https://github.com/DIGImend/hidrd"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ euxane ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ euxane ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/hidrd.x86_64-darwin mainProgram = "hidrd-convert"; }; diff --git a/pkgs/by-name/hi/hidviz/package.nix b/pkgs/by-name/hi/hidviz/package.nix index 1b35c0466334..648f4f2e3915 100644 --- a/pkgs/by-name/hi/hidviz/package.nix +++ b/pkgs/by-name/hi/hidviz/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { asio_1_32_0 ]; - meta = with lib; { + meta = { homepage = "https://github.com/hidviz/hidviz"; description = "GUI application for in-depth analysis of USB HID class devices"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/hi/hiera-eyaml/package.nix b/pkgs/by-name/hi/hiera-eyaml/package.nix index da727b962dd8..de799bb8bead 100644 --- a/pkgs/by-name/hi/hiera-eyaml/package.nix +++ b/pkgs/by-name/hi/hiera-eyaml/package.nix @@ -12,15 +12,15 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "hiera-eyaml"; - meta = with lib; { + meta = { description = "Per-value asymmetric encryption of sensitive data for Hiera"; homepage = "https://github.com/voxpupuli/hiera-eyaml"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ benley nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "eyaml"; }; } diff --git a/pkgs/by-name/hi/hifiscan/package.nix b/pkgs/by-name/hi/hifiscan/package.nix index fde68ab74971..41b7637f5cf0 100644 --- a/pkgs/by-name/hi/hifiscan/package.nix +++ b/pkgs/by-name/hi/hifiscan/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication { inherit pname version hash; }; - meta = with lib; { + meta = { homepage = "https://github.com/erdewit/HiFiScan"; description = "Optimize the audio quality of your loudspeakers"; - license = licenses.bsd2; - maintainers = with maintainers; [ cab404 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ cab404 ]; mainProgram = "hifiscan"; }; } diff --git a/pkgs/by-name/hi/highfive/package.nix b/pkgs/by-name/hi/highfive/package.nix index 45c02e608cd4..fd9b2b60af4b 100644 --- a/pkgs/by-name/hi/highfive/package.nix +++ b/pkgs/by-name/hi/highfive/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { ] ++ (lib.optionals mpiSupport [ "-DHIGHFIVE_PARALLEL_HDF5=ON" ]); - meta = with lib; { + meta = { description = "Header-only C++ HDF5 interface"; - license = licenses.boost; + license = lib.licenses.boost; homepage = "https://bluebrain.github.io/HighFive/"; - platforms = platforms.unix; - maintainers = with maintainers; [ robertodr ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ robertodr ]; }; } diff --git a/pkgs/by-name/hi/highlight-assertions/package.nix b/pkgs/by-name/hi/highlight-assertions/package.nix index 3c9e5ac064c0..50d48e31db33 100644 --- a/pkgs/by-name/hi/highlight-assertions/package.nix +++ b/pkgs/by-name/hi/highlight-assertions/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { # requires nightly features RUSTC_BOOTSTRAP = 1; - meta = with lib; { + meta = { description = "Tool for unit testing tree sitter highlights for nvim-treesitter"; mainProgram = "highlight-assertions"; homepage = "https://github.com/thehamsta/highlight-assertions"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/hi/highlight-pointer/package.nix b/pkgs/by-name/hi/highlight-pointer/package.nix index 820a2dafa15f..5facf4b096eb 100644 --- a/pkgs/by-name/hi/highlight-pointer/package.nix +++ b/pkgs/by-name/hi/highlight-pointer/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Highlight mouse pointer/cursor using a dot"; homepage = "https://github.com/swillner/highlight-pointer"; changelog = "https://github.com/swillner/highlight-pointer/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ DCsunset ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ DCsunset ]; mainProgram = "highlight-pointer"; }; }) diff --git a/pkgs/by-name/hi/highs/package.nix b/pkgs/by-name/hi/highs/package.nix index de05d314776b..754e2e8466a7 100644 --- a/pkgs/by-name/hi/highs/package.nix +++ b/pkgs/by-name/hi/highs/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/ERGO-Code/HiGHS"; description = "Linear optimization software"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "highs"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ galabovaa silky ]; diff --git a/pkgs/by-name/hi/hikounomizu/package.nix b/pkgs/by-name/hi/hikounomizu/package.nix index bbf8bfa29ce7..e6a7804e4ae6 100644 --- a/pkgs/by-name/hi/hikounomizu/package.nix +++ b/pkgs/by-name/hi/hikounomizu/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: { make data HNM_PARALLEL=$NIX_BUILD_CORES ''; - meta = with lib; { + meta = { description = "Free platform-based fighting game"; longDescription = '' Hikou no mizu (ハイクの水) is a free platform-based fighting game, @@ -75,11 +75,11 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://hikounomizu.org/"; downloadPage = "https://hikounomizu.org/download.html"; - maintainers = with maintainers; [ fgaz ]; + maintainers = with lib.maintainers; [ fgaz ]; license = [ - licenses.gpl3Plus - licenses.lal13 + lib.licenses.gpl3Plus + lib.licenses.lal13 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/hi/hime/package.nix b/pkgs/by-name/hi/hime/package.nix index c6e35809dbcd..82573a063ef3 100644 --- a/pkgs/by-name/hi/hime/package.nix +++ b/pkgs/by-name/hi/hime/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { patchelf --set-rpath $out/lib/hime:$hime_rpath $out/bin/hime ''; - meta = with lib; { + meta = { homepage = "http://hime-ime.github.io/"; downloadPage = "https://github.com/hime-ime/hime/downloads"; description = "Useful input method engine for Asia region"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ yanganto ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ yanganto ]; }; } diff --git a/pkgs/by-name/hi/himitsu/package.nix b/pkgs/by-name/hi/himitsu/package.nix index ac9dd0c25dc0..eeb8ecbb529f 100644 --- a/pkgs/by-name/hi/himitsu/package.nix +++ b/pkgs/by-name/hi/himitsu/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://himitsustore.org/"; description = "Secret storage manager"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ auchter ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ auchter ]; inherit (hareHook.meta) platforms badPlatforms; }; }) diff --git a/pkgs/by-name/hi/hiredis/package.nix b/pkgs/by-name/hi/hiredis/package.nix index b4b2304da600..6ef8b0c2f16e 100644 --- a/pkgs/by-name/hi/hiredis/package.nix +++ b/pkgs/by-name/hi/hiredis/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { PREFIX = "\${out}"; USE_SSL = 1; - meta = with lib; { + meta = { homepage = "https://github.com/redis/hiredis"; description = "Minimalistic C client for Redis >= 1.2"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/hi/hisat2/package.nix b/pkgs/by-name/hi/hisat2/package.nix index 3feeb435579d..c8d98a4ea45c 100644 --- a/pkgs/by-name/hi/hisat2/package.nix +++ b/pkgs/by-name/hi/hisat2/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { $out/bin ''; - meta = with lib; { + meta = { description = "Graph based aligner"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://daehwankimlab.github.io/hisat2/"; - maintainers = with maintainers; [ jbedo ]; + maintainers = with lib.maintainers; [ jbedo ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/hi/hishtory/package.nix b/pkgs/by-name/hi/hishtory/package.nix index 77ce3ef96267..9824c77fadc3 100644 --- a/pkgs/by-name/hi/hishtory/package.nix +++ b/pkgs/by-name/hi/hishtory/package.nix @@ -30,10 +30,10 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "Your shell history: synced, queryable, and in context"; homepage = "https://github.com/ddworken/hishtory"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "hishtory"; }; diff --git a/pkgs/by-name/hi/hitch/package.nix b/pkgs/by-name/hi/hitch/package.nix index 6b6faeab53c7..e89fd0514bfd 100644 --- a/pkgs/by-name/hi/hitch/package.nix +++ b/pkgs/by-name/hi/hitch/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { passthru.tests.hitch = nixosTests.hitch; - meta = with lib; { + meta = { description = "Libev-based high performance SSL/TLS proxy by Varnish Software"; homepage = "https://hitch-tls.org/"; - license = licenses.bsd2; - maintainers = [ maintainers.jflanglois ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.jflanglois ]; + platforms = lib.platforms.linux; mainProgram = "hitch"; }; } diff --git a/pkgs/by-name/hi/hitori/package.nix b/pkgs/by-name/hi/hitori/package.nix index ed34f9709938..a98fc8333845 100644 --- a/pkgs/by-name/hi/hitori/package.nix +++ b/pkgs/by-name/hi/hitori/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "hitori"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/hitori"; changelog = "https://gitlab.gnome.org/GNOME/hitori/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "GTK application to generate and let you play games of Hitori"; mainProgram = "hitori"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/hi/hivelytracker/package.nix b/pkgs/by-name/hi/hivelytracker/package.nix index a6b687b20880..0615bf019dda 100644 --- a/pkgs/by-name/hi/hivelytracker/package.nix +++ b/pkgs/by-name/hi/hivelytracker/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { install -Dm755 hvl2wav/hvl2wav $out/bin/hvl2wav ''; - meta = with lib; { + meta = { homepage = "http://www.hivelytracker.co.uk/"; downloadPage = "http://www.hivelytracker.co.uk/downl.php"; description = "Chip music tracker based upon the AHX format"; @@ -63,10 +63,10 @@ stdenv.mkDerivation (finalAttrs: { format, but it also improves on AHX in several ways and therefore has its own instrument and module formats. ''; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; mainProgram = "hivelytracker"; - maintainers = with maintainers; [ fgaz ]; + maintainers = with lib.maintainers; [ fgaz ]; broken = stdenv.hostPlatform.isDarwin; # TODO: try to use xcbuild }; }) diff --git a/pkgs/by-name/hi/hivemind/package.nix b/pkgs/by-name/hi/hivemind/package.nix index 0e01aa8aa42b..83851e90ab1a 100644 --- a/pkgs/by-name/hi/hivemind/package.nix +++ b/pkgs/by-name/hi/hivemind/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { vendorHash = "sha256-KweFhT8Zueg45Q/vw3kNET35hB+0WbUPfz0FYaAiIA8="; - meta = with lib; { + meta = { homepage = "https://github.com/DarthSim/"; description = "Process manager for Procfile-based applications"; - license = with licenses; [ mit ]; - maintainers = [ maintainers.sveitser ]; + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.sveitser ]; mainProgram = "hivemind"; }; } diff --git a/pkgs/by-name/hi/hivex/package.nix b/pkgs/by-name/hi/hivex/package.nix index 0441ed81d4ae..ddf793d80ae9 100644 --- a/pkgs/by-name/hi/hivex/package.nix +++ b/pkgs/by-name/hi/hivex/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { --prefix "PATH" : "$out/bin" ''; - meta = with lib; { + meta = { description = "Windows registry hive extraction library"; - license = licenses.lgpl2Only; + license = lib.licenses.lgpl2Only; homepage = "https://github.com/libguestfs/hivex"; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix b/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix index 70ee0c052552..dd5188e9a410 100644 --- a/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix +++ b/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix @@ -43,12 +43,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Complex account balance assertions for hledger journals"; homepage = "https://hledger.org/"; changelog = "https://github.com/simonmichael/hledger/blob/master/CHANGES.md"; - license = licenses.gpl3; - maintainers = [ maintainers.DamienCassou ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.DamienCassou ]; platforms = lib.platforms.all; # GHC can cross-compile mainProgram = "hledger-check-fancyassertions"; }; diff --git a/pkgs/by-name/hn/hnswlib/package.nix b/pkgs/by-name/hn/hnswlib/package.nix index 3938c07ba1a6..915a1ba23b7a 100644 --- a/pkgs/by-name/hn/hnswlib/package.nix +++ b/pkgs/by-name/hn/hnswlib/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = with lib; { + meta = { description = "Header-only C++/python library for fast approximate nearest neighbors"; homepage = "https://github.com/nmslib/hnswlib"; changelog = "https://github.com/nmslib/hnswlib/releases/tag/v${finalAttrs.version}"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ho/hoard/package.nix b/pkgs/by-name/ho/hoard/package.nix index 693378367f2b..1bf127c2ea71 100644 --- a/pkgs/by-name/ho/hoard/package.nix +++ b/pkgs/by-name/ho/hoard/package.nix @@ -25,12 +25,12 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "CLI command organizer written in rust"; homepage = "https://github.com/hyde46/hoard"; changelog = "https://github.com/Hyde46/hoard/blob/${src.rev}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ builditluc ]; mainProgram = "hoard"; diff --git a/pkgs/by-name/ho/hof/package.nix b/pkgs/by-name/ho/hof/package.nix index f7866ddc15e8..88c331f8fcf7 100644 --- a/pkgs/by-name/ho/hof/package.nix +++ b/pkgs/by-name/ho/hof/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { --zsh <($out/bin/hof completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/hofstadter-io/hof"; description = "Framework that joins data models, schemas, code generation, and a task engine. Language and technology agnostic"; - license = licenses.asl20; - maintainers = with maintainers; [ jfvillablanca ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jfvillablanca ]; mainProgram = "hof"; # Broken on darwin for Go toolchain > 1.22, with error: # 'panic: open /etc/protocols: operation not permitted' diff --git a/pkgs/by-name/ho/hol/package.nix b/pkgs/by-name/ho/hol/package.nix index aa3b75810fec..89c4d875c904 100644 --- a/pkgs/by-name/ho/hol/package.nix +++ b/pkgs/by-name/ho/hol/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation { # ln -s $out/src/hol4.${version}/bin $out/bin ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Interactive theorem prover based on Higher-Order Logic"; longDescription = '' @@ -92,8 +92,8 @@ stdenv.mkDerivation { checking. ''; homepage = "http://hol.sourceforge.net/"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ mudri ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mudri ]; }; } diff --git a/pkgs/by-name/ho/holehe/package.nix b/pkgs/by-name/ho/holehe/package.nix index 9b343f67ccb2..83328044c422 100644 --- a/pkgs/by-name/ho/holehe/package.nix +++ b/pkgs/by-name/ho/holehe/package.nix @@ -42,11 +42,11 @@ python3.pkgs.buildPythonApplication { "holehe" ]; - meta = with lib; { + meta = { description = "CLI to check if the mail is used on different sites"; mainProgram = "holehe"; homepage = "https://github.com/megadose/holehe"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ho/holo-build/package.nix b/pkgs/by-name/ho/holo-build/package.nix index 81ed3e7a23bf..2ce73ceea22b 100644 --- a/pkgs/by-name/ho/holo-build/package.nix +++ b/pkgs/by-name/ho/holo-build/package.nix @@ -64,10 +64,10 @@ buildGoModule rec { cp src/holo-build.sh $out/bin/holo-build ''; - meta = with lib; { + meta = { description = "Cross-distribution system package compiler"; homepage = "https://holocm.org/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "holo-build"; }; diff --git a/pkgs/by-name/ho/holochain-launcher/package.nix b/pkgs/by-name/ho/holochain-launcher/package.nix index a4c713a278f8..b9d9e2135935 100644 --- a/pkgs/by-name/ho/holochain-launcher/package.nix +++ b/pkgs/by-name/ho/holochain-launcher/package.nix @@ -51,14 +51,14 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Cross-platform executable that launches a local Holochain conductor, and installs and opens apps"; homepage = "https://github.com/holochain/launcher"; - maintainers = [ maintainers.steveej ]; - license = licenses.cal10; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.steveej ]; + license = lib.licenses.cal10; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ho/hologram/package.nix b/pkgs/by-name/ho/hologram/package.nix index 705e6d87af6c..d3a1ddb2d726 100644 --- a/pkgs/by-name/ho/hologram/package.nix +++ b/pkgs/by-name/ho/hologram/package.nix @@ -28,10 +28,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/AdRoll/hologram/"; description = "Easy, painless AWS credentials on developer laptops"; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/ho/holos/package.nix b/pkgs/by-name/ho/holos/package.nix index c739b148b116..7ef31cc59e0c 100644 --- a/pkgs/by-name/ho/holos/package.nix +++ b/pkgs/by-name/ho/holos/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { version = "${version}"; }; - meta = with lib; { + meta = { description = "Holos CLI tool"; homepage = "https://github.com/holos-run/holos"; - license = licenses.asl20; - maintainers = with maintainers; [ cameronraysmith ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cameronraysmith ]; mainProgram = "holos"; }; } diff --git a/pkgs/by-name/ho/homebank/package.nix b/pkgs/by-name/ho/homebank/package.nix index 73c0f52c4ed7..55b449854b1c 100644 --- a/pkgs/by-name/ho/homebank/package.nix +++ b/pkgs/by-name/ho/homebank/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { adwaita-icon-theme ]; - meta = with lib; { + meta = { description = "Free, easy, personal accounting for everyone"; mainProgram = "homebank"; homepage = "https://www.gethomebank.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub frlan ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ho/homer/package.nix b/pkgs/by-name/ho/homer/package.nix index 148bfc3650d9..636942e8ff8c 100644 --- a/pkgs/by-name/ho/homer/package.nix +++ b/pkgs/by-name/ho/homer/package.nix @@ -67,15 +67,15 @@ stdenvNoCC.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Very simple static homepage for your server"; homepage = "https://github.com/bastienwirtz/homer"; changelog = "https://github.com/bastienwirtz/homer/releases"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ stunkymonkey christoph-heiss ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ho/honeymarker/package.nix b/pkgs/by-name/ho/honeymarker/package.nix index 08965854c025..f959a9280c2b 100644 --- a/pkgs/by-name/ho/honeymarker/package.nix +++ b/pkgs/by-name/ho/honeymarker/package.nix @@ -15,10 +15,10 @@ buildGoModule rec { hash = "sha256-28NCAtx3MHlwm44IUlI0DzUaycH9cPN8ZdEhhQtdciU="; }; - meta = with lib; { + meta = { description = "Simple CRUD interface for dealing with per-dataset markers on honeycomb.io"; homepage = "https://honeycomb.io/"; - license = licenses.asl20; - maintainers = [ maintainers.iand675 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.iand675 ]; }; } diff --git a/pkgs/by-name/ho/honeytail/package.nix b/pkgs/by-name/ho/honeytail/package.nix index c6fb2289617f..01ce99dd00e4 100644 --- a/pkgs/by-name/ho/honeytail/package.nix +++ b/pkgs/by-name/ho/honeytail/package.nix @@ -15,10 +15,10 @@ buildGoModule rec { hash = "sha256-S0hIgNNzF1eNe+XJs+PT7EUIl5oJCXu+B/zQago4sf8="; }; - meta = with lib; { + meta = { description = "Agent for ingesting log file data into honeycomb.io and making it available for exploration"; homepage = "https://honeycomb.io/"; - license = licenses.asl20; - maintainers = [ maintainers.iand675 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.iand675 ]; }; } diff --git a/pkgs/by-name/ho/honeytrap/package.nix b/pkgs/by-name/ho/honeytrap/package.nix index 9ead6dbeb418..4dadf03f03af 100644 --- a/pkgs/by-name/ho/honeytrap/package.nix +++ b/pkgs/by-name/ho/honeytrap/package.nix @@ -21,11 +21,11 @@ buildGoModule { # dockerize.sh, which we don't care about. subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Advanced Honeypot framework"; mainProgram = "honeytrap"; homepage = "https://github.com/honeytrap/honeytrap"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; # Broken on darwin for Go toolchain > 1.22, with error: # 'link: golang.org/x/net/internal/socket: invalid reference to syscall.recvmsg' diff --git a/pkgs/by-name/ho/honeyvent/package.nix b/pkgs/by-name/ho/honeyvent/package.nix index 565b91987fea..36746eeb93a9 100644 --- a/pkgs/by-name/ho/honeyvent/package.nix +++ b/pkgs/by-name/ho/honeyvent/package.nix @@ -15,10 +15,10 @@ buildGoModule rec { hash = "sha256-L8hM4JJDDfVv/0O8H3lcI0SRVjDMYC82HG/4WU6Vim8="; }; - meta = with lib; { + meta = { description = "CLI for sending individual events to honeycomb.io"; homepage = "https://honeycomb.io/"; - license = licenses.asl20; - maintainers = [ maintainers.iand675 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.iand675 ]; }; } diff --git a/pkgs/by-name/ho/hoppet/package.nix b/pkgs/by-name/ho/hoppet/package.nix index 90a501d04e22..5c75be5ff109 100644 --- a/pkgs/by-name/ho/hoppet/package.nix +++ b/pkgs/by-name/ho/hoppet/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { patchShebangs . ''; - meta = with lib; { + meta = { description = "Higher Order Perturbative Parton Evolution Toolkit"; mainProgram = "hoppet-config"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://hoppet.hepforge.org"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/ho/horst/package.nix b/pkgs/by-name/ho/horst/package.nix index cb9d6492ad61..a47e3ea828e5 100644 --- a/pkgs/by-name/ho/horst/package.nix +++ b/pkgs/by-name/ho/horst/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { installFlags = [ "DESTDIR=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Small and lightweight IEEE802.11 wireless LAN analyzer with a text interface"; homepage = "https://github.com/br101/horst"; - maintainers = [ maintainers.fpletz ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.fpletz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "horst"; }; } diff --git a/pkgs/by-name/ho/host-spawn/package.nix b/pkgs/by-name/ho/host-spawn/package.nix index 46aec437d7f0..a9d5dd90aee3 100644 --- a/pkgs/by-name/ho/host-spawn/package.nix +++ b/pkgs/by-name/ho/host-spawn/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-Agc3hl+VDTNW7cnh/0g4G8BgzNAX11hKASYQKieBN4M="; - meta = with lib; { + meta = { homepage = "https://github.com/1player/host-spawn"; description = "Run commands on your host machine from inside your flatpak sandbox, toolbox or distrobox containers"; - license = licenses.mit0; - platforms = platforms.linux; - maintainers = with maintainers; [ garrison ]; + license = lib.licenses.mit0; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ garrison ]; mainProgram = "host-spawn"; }; } diff --git a/pkgs/by-name/ho/hostapd-mana/package.nix b/pkgs/by-name/ho/hostapd-mana/package.nix index 8da50a57c6b6..ac982d831265 100644 --- a/pkgs/by-name/ho/hostapd-mana/package.nix +++ b/pkgs/by-name/ho/hostapd-mana/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/sensepost/hostapd-mana"; description = "Featureful rogue wifi access point tool"; - license = licenses.bsd3; - maintainers = with maintainers; [ bbjubjub ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bbjubjub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ho/hostapd/package.nix b/pkgs/by-name/ho/hostapd/package.nix index 044b8522bf7d..d1794f8726e8 100644 --- a/pkgs/by-name/ho/hostapd/package.nix +++ b/pkgs/by-name/ho/hostapd/package.nix @@ -124,11 +124,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) wpa_supplicant; }; - meta = with lib; { + meta = { homepage = "https://w1.fi/hostapd/"; description = "User space daemon for access point and authentication servers"; - license = licenses.bsd3; - maintainers = with maintainers; [ oddlama ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ oddlama ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ho/hostctl/package.nix b/pkgs/by-name/ho/hostctl/package.nix index f49889497403..b7d952f95714 100644 --- a/pkgs/by-name/ho/hostctl/package.nix +++ b/pkgs/by-name/ho/hostctl/package.nix @@ -35,14 +35,14 @@ buildGoModule rec { --zsh <($out/bin/hostctl completion zsh) ''; - meta = with lib; { + meta = { description = "CLI tool to manage the /etc/hosts file"; longDescription = '' This tool gives you more control over the use of your hosts file. You can have multiple profiles and switch them on/off as you need. ''; homepage = "https://guumaster.github.io/hostctl/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "hostctl"; }; diff --git a/pkgs/by-name/ho/hostess/package.nix b/pkgs/by-name/ho/hostess/package.nix index 3ea712b7a08f..20d66ab1622e 100644 --- a/pkgs/by-name/ho/hostess/package.nix +++ b/pkgs/by-name/ho/hostess/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Idempotent command-line utility for managing your /etc/hosts* file"; mainProgram = "hostess"; - license = licenses.mit; - maintainers = with maintainers; [ edlimerkaj ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ edlimerkaj ]; }; } diff --git a/pkgs/by-name/ho/hostname-debian/package.nix b/pkgs/by-name/ho/hostname-debian/package.nix index 631a7c7a98e7..f2a804d91683 100644 --- a/pkgs/by-name/ho/hostname-debian/package.nix +++ b/pkgs/by-name/ho/hostname-debian/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { changelog = "https://salsa.debian.org/meskes/hostname/-/blob/${src.tag}/debian/changelog"; description = "Utility to set/show the host name or domain name"; longDescription = '' @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { DNS name, and to display or set its hostname or NIS domain name. ''; homepage = "https://tracker.debian.org/pkg/hostname"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "hostname"; - maintainers = with maintainers; [ posch ]; - platforms = platforms.gnu; + maintainers = with lib.maintainers; [ posch ]; + platforms = lib.platforms.gnu; }; } diff --git a/pkgs/by-name/ho/hostsblock/package.nix b/pkgs/by-name/ho/hostsblock/package.nix index 491447311b39..c9afebf7aa46 100644 --- a/pkgs/by-name/ho/hostsblock/package.nix +++ b/pkgs/by-name/ho/hostsblock/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation { install -Dm644 systemd/hostsblock.timer $out/share/dbus-1/system-services ''; - meta = with lib; { + meta = { description = "Ad- and malware-blocking script for Linux"; homepage = "http://gaenserich.github.io/hostsblock/"; - license = licenses.gpl3; - maintainers = [ maintainers.nicknovitski ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.nicknovitski ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ho/hotpatch/package.nix b/pkgs/by-name/ho/hotpatch/package.nix index 79a195b575bf..c413a0410137 100644 --- a/pkgs/by-name/ho/hotpatch/package.nix +++ b/pkgs/by-name/ho/hotpatch/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 4.0)' ''; - meta = with lib; { + meta = { description = "Hot patching executables on Linux using .so file injection"; mainProgram = "hotpatcher"; homepage = src.meta.homepage; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; platforms = [ "i686-linux" diff --git a/pkgs/by-name/ho/hotspot/package.nix b/pkgs/by-name/ho/hotspot/package.nix index 3c96d445611e..f433feb0fc42 100644 --- a/pkgs/by-name/ho/hotspot/package.nix +++ b/pkgs/by-name/ho/hotspot/package.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { $out/libexec/hotspot-perfparser ''; - meta = with lib; { + meta = { description = "GUI for Linux perf"; mainProgram = "hotspot"; longDescription = '' @@ -97,12 +97,12 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/KDAB/hotspot"; changelog = "https://github.com/KDAB/hotspot/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nh2 tmarkus ]; diff --git a/pkgs/by-name/ho/hound/package.nix b/pkgs/by-name/ho/hound/package.nix index 2c3b99633932..8f93d1b37d51 100644 --- a/pkgs/by-name/ho/hound/package.nix +++ b/pkgs/by-name/ho/hound/package.nix @@ -53,11 +53,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) hound; }; - meta = with lib; { + meta = { description = "Lightning fast code searching made easy"; homepage = "https://github.com/hound-search/hound"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ grahamc SuperSandro2000 ]; diff --git a/pkgs/by-name/ho/howard-hinnant-date/package.nix b/pkgs/by-name/ho/howard-hinnant-date/package.nix index 757131dc83c2..da53f7150228 100644 --- a/pkgs/by-name/ho/howard-hinnant-date/package.nix +++ b/pkgs/by-name/ho/howard-hinnant-date/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { mv $out/CMake $dev/lib/cmake ''; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; description = "Date and time library based on the C++11/14/17 header"; homepage = "https://github.com/HowardHinnant/date"; - platforms = with platforms; unix ++ windows; - maintainers = with maintainers; [ r-burns ]; + platforms = with lib.platforms; unix ++ windows; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/ho/howl/package.nix b/pkgs/by-name/ho/howl/package.nix index 0746b12eda17..ae757c7dd0fb 100644 --- a/pkgs/by-name/ho/howl/package.nix +++ b/pkgs/by-name/ho/howl/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" ''; - meta = with lib; { + meta = { homepage = "https://howl.io/"; description = "General purpose, fast and lightweight editor with a keyboard-centric minimalistic user interface"; - license = licenses.mit; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ euxane ]; mainProgram = "howl"; # LuaJIT and Howl builds fail for x86_64-darwin and aarch64-linux respectively diff --git a/pkgs/by-name/hp/hpcg/package.nix b/pkgs/by-name/hp/hpcg/package.nix index 7a02f5adad8f..b1fb7dcc1f8c 100644 --- a/pkgs/by-name/hp/hpcg/package.nix +++ b/pkgs/by-name/hp/hpcg/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "HPC conjugate gradient benchmark"; homepage = "https://www.hpcg-benchmark.org"; - platforms = platforms.linux; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; mainProgram = "xhpcg"; }; } diff --git a/pkgs/by-name/hp/hpe-ltfs/package.nix b/pkgs/by-name/hp/hpe-ltfs/package.nix index b17c45e8c56f..db8b2705403e 100644 --- a/pkgs/by-name/hp/hpe-ltfs/package.nix +++ b/pkgs/by-name/hp/hpe-ltfs/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { libuuid ]; - meta = with lib; { + meta = { description = "HPE's implementation of the open-source tape filesystem standard ltfs"; homepage = "https://support.hpe.com/hpesc/public/km/product/1009214665/Product"; - license = licenses.lgpl21; - maintainers = [ maintainers.redvers ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.redvers ]; + platforms = lib.platforms.linux; downloadPage = "https://github.com/nix-community/hpe-ltfs"; }; } diff --git a/pkgs/by-name/hp/hping/package.nix b/pkgs/by-name/hp/hping/package.nix index 23edf38d2a76..15b564dd3a53 100644 --- a/pkgs/by-name/hp/hping/package.nix +++ b/pkgs/by-name/hp/hping/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation { ln -s hping3.8.gz $out/share/man/man8/hping2.8.gz ''; - meta = with lib; { + meta = { description = "Command-line oriented TCP/IP packet assembler/analyzer"; homepage = "https://github.com/antirez/hping"; - license = licenses.gpl2Only; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/hp/hpl/package.nix b/pkgs/by-name/hp/hpl/package.nix index 694f8aec1b8c..1b314e176043 100644 --- a/pkgs/by-name/hp/hpl/package.nix +++ b/pkgs/by-name/hp/hpl/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { mpi ]; - meta = with lib; { + meta = { description = "Portable Implementation of the Linpack Benchmark for Distributed-Memory Computers"; homepage = "http://www.netlib.org/benchmark/hpl/"; - platforms = platforms.unix; - license = licenses.bsdOriginal; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsdOriginal; + maintainers = [ lib.maintainers.markuskowa ]; mainProgram = "xhpl"; }; } diff --git a/pkgs/by-name/hq/hqplayerd/package.nix b/pkgs/by-name/hq/hqplayerd/package.nix index 17db1a3c8ac1..54f8c7d13a2e 100644 --- a/pkgs/by-name/hq/hqplayerd/package.nix +++ b/pkgs/by-name/hq/hqplayerd/package.nix @@ -110,12 +110,12 @@ stdenv.mkDerivation rec { rygel = rygel-hqplayerd; }; - meta = with lib; { + meta = { homepage = "https://www.signalyst.com/custom.html"; description = "High-end upsampling multichannel software embedded HD-audio player"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ lovesegfault ]; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/by-name/hq/hqplayerd/rygel.nix b/pkgs/by-name/hq/hqplayerd/rygel.nix index 1eaac1362ee4..14d7c082a830 100644 --- a/pkgs/by-name/hq/hqplayerd/rygel.nix +++ b/pkgs/by-name/hq/hqplayerd/rygel.nix @@ -104,11 +104,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Home media solution (UPnP AV MediaServer) that allows you to easily share audio, video and pictures to other devices"; homepage = "https://gitlab.gnome.org/GNOME/rygel"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/hr/hr/package.nix b/pkgs/by-name/hr/hr/package.nix index 3a995fc06115..93602154d370 100644 --- a/pkgs/by-name/hr/hr/package.nix +++ b/pkgs/by-name/hr/hr/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { mkdir -p $out/{bin,share} ''; - meta = with lib; { + meta = { homepage = "https://github.com/LuRsT/hr"; description = "Horizontal bar for your terminal"; - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.unix; mainProgram = "hr"; }; } diff --git a/pkgs/by-name/hs/hsetroot/package.nix b/pkgs/by-name/hs/hsetroot/package.nix index 48a281f3bc90..fce226c0a2f5 100644 --- a/pkgs/by-name/hs/hsetroot/package.nix +++ b/pkgs/by-name/hs/hsetroot/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { mkdir -p "$out/bin" ''; - meta = with lib; { + meta = { description = "Allows you to compose wallpapers ('root pixmaps') for X"; homepage = "https://github.com/himdel/hsetroot"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/hs/hsqldb/package.nix b/pkgs/by-name/hs/hsqldb/package.nix index 02fec4a73ee5..9d3ac1ab55dd 100644 --- a/pkgs/by-name/hs/hsqldb/package.nix +++ b/pkgs/by-name/hs/hsqldb/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://hsqldb.org"; description = "Relational, embedable database management system written in Java and a set of related tools"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.unix; - license = licenses.bsd3; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/hs/hss/package.nix b/pkgs/by-name/hs/hss/package.nix index dc2b1cc2abac..e3f1104af783 100644 --- a/pkgs/by-name/hs/hss/package.nix +++ b/pkgs/by-name/hs/hss/package.nix @@ -27,14 +27,14 @@ buildRubyGem rec { "'${openssh}/bin/ssh'" ''; - meta = with lib; { + meta = { description = '' A SSH helper that uses regex and fancy expansion to dynamically manage SSH shortcuts. ''; homepage = "https://github.com/akerl/hss"; - license = licenses.mit; - maintainers = with maintainers; [ nixy ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nixy ]; + platforms = lib.platforms.unix; mainProgram = "hss"; }; } diff --git a/pkgs/by-name/ht/ht/package.nix b/pkgs/by-name/ht/ht/package.nix index 657110cc2f18..a2fd162ef84e 100644 --- a/pkgs/by-name/ht/ht/package.nix +++ b/pkgs/by-name/ht/ht/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = toString [ "-Wno-narrowing" ]; - meta = with lib; { + meta = { description = "File editor/viewer/analyzer for executables"; homepage = "https://hte.sourceforge.net"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "ht"; }; diff --git a/pkgs/by-name/ht/htb-toolkit/package.nix b/pkgs/by-name/ht/htb-toolkit/package.nix index 77c32d43bd71..f778fc1a2074 100644 --- a/pkgs/by-name/ht/htb-toolkit/package.nix +++ b/pkgs/by-name/ht/htb-toolkit/package.nix @@ -57,12 +57,12 @@ rustPlatform.buildRustPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Play Hack The Box directly on your system"; mainProgram = "htb-toolkit"; homepage = "https://github.com/D3vil0p3r/htb-toolkit"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/ht/htcondor/package.nix b/pkgs/by-name/ht/htcondor/package.nix index 8ecebe5f9118..d6cdf59c0509 100644 --- a/pkgs/by-name/ht/htcondor/package.nix +++ b/pkgs/by-name/ht/htcondor/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { "-DWITH_PYTHON_BINDINGS=false" ]; - meta = with lib; { + meta = { homepage = "https://htcondor.org/"; description = "Software system that creates a High-Throughput Computing (HTC) environment"; - platforms = platforms.linux; - license = licenses.asl20; - maintainers = with maintainers; [ evey ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ evey ]; # On Aarch64: ld: cannot find -lpthread: No such file or directory # On x86_64: ld: cannot find -ldl: No such file or directory broken = true; diff --git a/pkgs/by-name/ht/htgettoken/package.nix b/pkgs/by-name/ht/htgettoken/package.nix index f484915fcfc2..684dc0994ee8 100644 --- a/pkgs/by-name/ht/htgettoken/package.nix +++ b/pkgs/by-name/ht/htgettoken/package.nix @@ -33,10 +33,10 @@ python3.pkgs.buildPythonApplication rec { }" ''; - meta = with lib; { + meta = { description = "Gets OIDC authentication tokens for High Throughput Computing via a Hashicorp vault server "; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/fermitools/htgettoken"; - maintainers = with maintainers; [ veprbl ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/ht/html-tidy/package.nix b/pkgs/by-name/ht/html-tidy/package.nix index 7c158685a512..519e4f76d320 100644 --- a/pkgs/by-name/ht/html-tidy/package.nix +++ b/pkgs/by-name/ht/html-tidy/package.nix @@ -45,15 +45,15 @@ stdenv.mkDerivation rec { # ATM bin/tidy is statically linked, as upstream provides no other option yet. # https://github.com/htacg/tidy-html5/issues/326#issuecomment-160322107 - meta = with lib; { + meta = { description = "HTML validator and `tidier'"; longDescription = '' HTML Tidy is a command-line tool and C library that can be used to validate and fix HTML data. ''; - license = licenses.libpng; # very close to it - the 3 clauses are identical + license = lib.licenses.libpng; # very close to it - the 3 clauses are identical homepage = "http://html-tidy.org"; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "tidy"; }; } diff --git a/pkgs/by-name/ht/html-xml-utils/package.nix b/pkgs/by-name/ht/html-xml-utils/package.nix index 418fd8d741c5..f2486ec224a1 100644 --- a/pkgs/by-name/ht/html-xml-utils/package.nix +++ b/pkgs/by-name/ht/html-xml-utils/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { libiconv ]; - meta = with lib; { + meta = { description = "Utilities for manipulating HTML and XML files"; homepage = "https://www.w3.org/Tools/HTML-XML-utils/"; - license = licenses.w3c; - platforms = platforms.all; + license = lib.licenses.w3c; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ht/htmlcxx/package.nix b/pkgs/by-name/ht/htmlcxx/package.nix index ab349979d3f1..d254c2e08020 100644 --- a/pkgs/by-name/ht/htmlcxx/package.nix +++ b/pkgs/by-name/ht/htmlcxx/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { ./c++17.patch ]; - meta = with lib; { + meta = { homepage = "https://htmlcxx.sourceforge.net/"; description = "Simple non-validating css1 and html parser for C++"; mainProgram = "htmlcxx"; - license = licenses.lgpl2; - platforms = platforms.all; + license = lib.licenses.lgpl2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ht/htmlq/package.nix b/pkgs/by-name/ht/htmlq/package.nix index 00a2cd913865..424becb9b409 100644 --- a/pkgs/by-name/ht/htmlq/package.nix +++ b/pkgs/by-name/ht/htmlq/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Like jq, but for HTML"; homepage = "https://github.com/mgdm/htmlq"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben nerdypepper ]; diff --git a/pkgs/by-name/ht/htmltest/package.nix b/pkgs/by-name/ht/htmltest/package.nix index de24f604bdd7..d12496c03590 100644 --- a/pkgs/by-name/ht/htmltest/package.nix +++ b/pkgs/by-name/ht/htmltest/package.nix @@ -26,7 +26,7 @@ buildGoModule rec { # tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Tool to test generated HTML output"; mainProgram = "htmltest"; longDescription = '' @@ -34,7 +34,7 @@ buildGoModule rec { links, images, scripts references work, your alt tags are filled in, etc. ''; homepage = "https://github.com/wjdp/htmltest"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ht/htmlunit-driver/package.nix b/pkgs/by-name/ht/htmlunit-driver/package.nix index 6c24a21316ce..6ad9d9b3ef3b 100644 --- a/pkgs/by-name/ht/htmlunit-driver/package.nix +++ b/pkgs/by-name/ht/htmlunit-driver/package.nix @@ -17,15 +17,15 @@ stdenv.mkDerivation rec { installPhase = "install -D $src $out/share/lib/${pname}-${version}/${pname}-${version}.jar"; - meta = with lib; { + meta = { homepage = "https://github.com/SeleniumHQ/htmlunit-driver"; description = "WebDriver server for running Selenium tests on the HtmlUnit headless browser"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ coconnor offline ]; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/ht/htmx-lsp/package.nix b/pkgs/by-name/ht/htmx-lsp/package.nix index f567f7d783d7..5bfede11ee56 100644 --- a/pkgs/by-name/ht/htmx-lsp/package.nix +++ b/pkgs/by-name/ht/htmx-lsp/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Language server implementation for htmx"; homepage = "https://github.com/ThePrimeagen/htmx-lsp"; - license = licenses.mit; - maintainers = with maintainers; [ vinnymeller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vinnymeller ]; mainProgram = "htmx-lsp"; }; } diff --git a/pkgs/by-name/ht/htop-vim/package.nix b/pkgs/by-name/ht/htop-vim/package.nix index dc0c7b87c5ee..551573ef16d1 100644 --- a/pkgs/by-name/ht/htop-vim/package.nix +++ b/pkgs/by-name/ht/htop-vim/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { ${optionalPatch systemdSupport "${systemdLibs}/lib/libsystemd.so"} ''; - meta = with lib; { + meta = { description = "Interactive process viewer, with vim-style keybindings"; homepage = "https://aur.archlinux.org/packages/htop-vim"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = with maintainers; [ thiagokokada ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thiagokokada ]; mainProgram = "htop"; }; } diff --git a/pkgs/by-name/ht/htpdate/package.nix b/pkgs/by-name/ht/htpdate/package.nix index 80708baeb868..240b377102f6 100644 --- a/pkgs/by-name/ht/htpdate/package.nix +++ b/pkgs/by-name/ht/htpdate/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Utility to fetch time and set the system clock over HTTP"; homepage = "https://github.com/twekkel/htpdate"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ julienmalka ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ julienmalka ]; mainProgram = "htpdate"; }; } diff --git a/pkgs/by-name/ht/htslib/package.nix b/pkgs/by-name/ht/htslib/package.nix index a750883ac0ec..5ca0213da0bf 100644 --- a/pkgs/by-name/ht/htslib/package.nix +++ b/pkgs/by-name/ht/htslib/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "C library for reading/writing high-throughput sequencing data"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "http://www.htslib.org/"; - platforms = platforms.unix; - maintainers = [ maintainers.mimame ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.mimame ]; }; } diff --git a/pkgs/by-name/ht/http-getter/package.nix b/pkgs/by-name/ht/http-getter/package.nix index 28e95f29aa76..95a462873387 100644 --- a/pkgs/by-name/ht/http-getter/package.nix +++ b/pkgs/by-name/ht/http-getter/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { ]; buildInputs = [ curl ]; - meta = with lib; { + meta = { homepage = "https://github.com/tohojo/http-getter"; description = "Simple getter for HTTP URLs using cURL"; mainProgram = "http-getter"; - platforms = platforms.unix; - license = licenses.gpl3; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/ht/http-parser/package.nix b/pkgs/by-name/ht/http-parser/package.nix index b3af51f6064b..b81c4e84ea5b 100644 --- a/pkgs/by-name/ht/http-parser/package.nix +++ b/pkgs/by-name/ht/http-parser/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { ln -sf libhttp_parser.${version}.dll.a $out/lib/libhttp_parser.dll.a ''; - meta = with lib; { + meta = { description = "HTTP message parser written in C"; homepage = "https://github.com/nodejs/http-parser"; maintainers = [ ]; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ht/http2tcp/package.nix b/pkgs/by-name/ht/http2tcp/package.nix index 39a55907f5f5..1f5ebb957902 100644 --- a/pkgs/by-name/ht/http2tcp/package.nix +++ b/pkgs/by-name/ht/http2tcp/package.nix @@ -28,8 +28,8 @@ stdenv.mkDerivation rec { cp Protocol $out/share/${pname}/ ''; - meta = with lib; { - maintainers = with maintainers; [ clkamp ]; + meta = { + maintainers = with lib.maintainers; [ clkamp ]; description = "Tool for tunneling TCP connections via HTTP GET requests"; longDescription = '' The http2tcp tools allow to tunnel tcp connections (presumably @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { network outages, rapidly changing IP address, etc). ''; homepage = "https://www.linta.de/~aehlig/http2tcp/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ht/http3-ytproxy/package.nix b/pkgs/by-name/ht/http3-ytproxy/package.nix index 20179d96ef05..fe2f01c0f65c 100644 --- a/pkgs/by-name/ht/http3-ytproxy/package.nix +++ b/pkgs/by-name/ht/http3-ytproxy/package.nix @@ -30,11 +30,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "YouTube traffic proxy for video playback and images"; homepage = "https://github.com/TeamPiped/http3-ytproxy"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ _999eagle ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ _999eagle ]; mainProgram = "http3-ytproxy"; }; } diff --git a/pkgs/by-name/ht/httpdump/package.nix b/pkgs/by-name/ht/httpdump/package.nix index b6e5254cef64..352e4d14425c 100644 --- a/pkgs/by-name/ht/httpdump/package.nix +++ b/pkgs/by-name/ht/httpdump/package.nix @@ -25,11 +25,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Parse and display HTTP traffic from network device or pcap file"; mainProgram = "httpdump"; homepage = "https://github.com/hsiafan/httpdump"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ht/httperf/package.nix b/pkgs/by-name/ht/httperf/package.nix index 8747acc1169b..8d754eb68d50 100644 --- a/pkgs/by-name/ht/httperf/package.nix +++ b/pkgs/by-name/ht/httperf/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { mv -v src/httperf $out/bin ''; - meta = with lib; { + meta = { description = "HTTP load generator"; homepage = "https://github.com/httperf/httperf"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; mainProgram = "httperf"; }; diff --git a/pkgs/by-name/ht/httplab/package.nix b/pkgs/by-name/ht/httplab/package.nix index 3b7034fc9c9a..3324af10b4d5 100644 --- a/pkgs/by-name/ht/httplab/package.nix +++ b/pkgs/by-name/ht/httplab/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/qustavo/httplab"; description = "Interactive WebServer"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "httplab"; }; } diff --git a/pkgs/by-name/ht/httpref/package.nix b/pkgs/by-name/ht/httpref/package.nix index dd749206242b..8c471f1a72d3 100644 --- a/pkgs/by-name/ht/httpref/package.nix +++ b/pkgs/by-name/ht/httpref/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Command line, offline, access to HTTP status code, common header, and port references"; mainProgram = "httpref"; homepage = "https://github.com/dnnrly/httpref"; changelog = "https://github.com/dnnrly/httpref/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ht/httprobe/package.nix b/pkgs/by-name/ht/httprobe/package.nix index 8ffeee37e30a..dc3831c292b2 100644 --- a/pkgs/by-name/ht/httprobe/package.nix +++ b/pkgs/by-name/ht/httprobe/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Take a list of domains and probe for working HTTP and HTTPS servers"; homepage = "https://github.com/tomnomnom/httprobe"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "httprobe"; }; diff --git a/pkgs/by-name/ht/https-dns-proxy/package.nix b/pkgs/by-name/ht/https-dns-proxy/package.nix index 31a4462f349e..1c3b045bacdf 100644 --- a/pkgs/by-name/ht/https-dns-proxy/package.nix +++ b/pkgs/by-name/ht/https-dns-proxy/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { # for when that happens despite there being none as of right now doCheck = true; - meta = with lib; { + meta = { description = "DNS to DNS over HTTPS (DoH) proxy"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; mainProgram = "https_dns_proxy"; }; } diff --git a/pkgs/by-name/ht/httptunnel/package.nix b/pkgs/by-name/ht/httptunnel/package.nix index 6400f5b199e1..5f1e6a55f8b1 100644 --- a/pkgs/by-name/ht/httptunnel/package.nix +++ b/pkgs/by-name/ht/httptunnel/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { autoreconfHook ]; - meta = with lib; { + meta = { description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests"; homepage = "http://www.gnu.org/software/httptunnel/httptunnel.html"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ koral ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ koral ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ht/httpunit/package.nix b/pkgs/by-name/ht/httpunit/package.nix index ffc175b21059..075c94bc0ba9 100644 --- a/pkgs/by-name/ht/httpunit/package.nix +++ b/pkgs/by-name/ht/httpunit/package.nix @@ -17,9 +17,9 @@ stdenv.mkDerivation rec { cp ./* $out ''; - meta = with lib; { + meta = { homepage = "https://httpunit.sourceforge.net"; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ht/httpy-cli/package.nix b/pkgs/by-name/ht/httpy-cli/package.nix index 80cb10863219..c3c8d99af47d 100644 --- a/pkgs/by-name/ht/httpy-cli/package.nix +++ b/pkgs/by-name/ht/httpy-cli/package.nix @@ -44,11 +44,11 @@ python3Packages.buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Modern, user-friendly, programmable command-line HTTP client for the API"; homepage = "https://github.com/knid/httpy"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "httpy"; - maintainers = with maintainers; [ eymeric ]; + maintainers = with lib.maintainers; [ eymeric ]; }; } diff --git a/pkgs/by-name/ht/httrack/package.nix b/pkgs/by-name/ht/httrack/package.nix index 9187f6ce5157..cd0b843be34a 100644 --- a/pkgs/by-name/ht/httrack/package.nix +++ b/pkgs/by-name/ht/httrack/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Easy-to-use offline browser / website mirroring utility"; homepage = "http://www.httrack.com"; - license = licenses.gpl3; - platforms = with platforms; unix; + license = lib.licenses.gpl3; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/hu/hub/package.nix b/pkgs/by-name/hu/hub/package.nix index f56a610e5635..3b5ea5ac2213 100644 --- a/pkgs/by-name/hu/hub/package.nix +++ b/pkgs/by-name/hu/hub/package.nix @@ -73,10 +73,10 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) hub; }; - meta = with lib; { + meta = { description = "Command-line wrapper for git that makes you better at GitHub"; homepage = "https://hub.github.com/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/hu/hubicfuse/package.nix b/pkgs/by-name/hu/hubicfuse/package.nix index 1cf774bc0b9b..662f49f490fb 100644 --- a/pkgs/by-name/hu/hubicfuse/package.nix +++ b/pkgs/by-name/hu/hubicfuse/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { ln -sf $out/bin/hubicfuse $out/sbin/mount.hubicfuse ''; - meta = with lib; { + meta = { homepage = "https://github.com/TurboGit/hubicfuse"; description = "FUSE-based filesystem to access hubic cloud storage"; - platforms = platforms.unix; - license = licenses.mit; - maintainers = [ maintainers.jpierre03 ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jpierre03 ]; }; } diff --git a/pkgs/by-name/hu/hubstaff/package.nix b/pkgs/by-name/hu/hubstaff/package.nix index 26d8bfc32fd0..862da6611fa1 100644 --- a/pkgs/by-name/hu/hubstaff/package.nix +++ b/pkgs/by-name/hu/hubstaff/package.nix @@ -123,13 +123,13 @@ stdenv.mkDerivation { ${common-updater-scripts}/bin/update-source-version hubstaff "$version" "sha256:$sha256" "$installation_script_url" ''; - meta = with lib; { + meta = { description = "Time tracking software"; homepage = "https://hubstaff.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ michalrus ]; }; diff --git a/pkgs/by-name/hu/hugs/package.nix b/pkgs/by-name/hu/hugs/package.nix index d256e99d76a1..af99f2617fc6 100644 --- a/pkgs/by-name/hu/hugs/package.nix +++ b/pkgs/by-name/hu/hugs/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { "--enable-pthreads" # build Hugs using POSIX threads C library ]; - meta = with lib; { + meta = { mainProgram = "hugs"; homepage = "https://www.haskell.org/hugs"; description = "Haskell interpreter"; - maintainers = with maintainers; [ joachifm ]; - license = licenses.bsd3; - platforms = platforms.all; + maintainers = with lib.maintainers; [ joachifm ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/hu/humanity-icon-theme/package.nix b/pkgs/by-name/hu/humanity-icon-theme/package.nix index c2273e120b5f..c47d3af0b13c 100644 --- a/pkgs/by-name/hu/humanity-icon-theme/package.nix +++ b/pkgs/by-name/hu/humanity-icon-theme/package.nix @@ -44,11 +44,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Humanity icons from Ubuntu"; homepage = "https://launchpad.net/humanity/"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/hu/humility/package.nix b/pkgs/by-name/hu/humility/package.nix index 4a33c1058933..93a032cc52a4 100644 --- a/pkgs/by-name/hu/humility/package.nix +++ b/pkgs/by-name/hu/humility/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage { # Prevent building and installing xtask, as it's a developer utility not intended for the end user cargoBuildFlags = [ "-p humility-cli" ]; - meta = with lib; { + meta = { description = "Debugger for Hubris"; mainProgram = "humility"; homepage = "https://github.com/oxidecomputer/humility"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ therishidesai ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ therishidesai ]; }; } diff --git a/pkgs/by-name/hu/humioctl/package.nix b/pkgs/by-name/hu/humioctl/package.nix index 115c0fb424ee..b4b9bd8c5d3b 100644 --- a/pkgs/by-name/hu/humioctl/package.nix +++ b/pkgs/by-name/hu/humioctl/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { --zsh <($out/bin/humioctl completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/humio/cli"; description = "CLI for managing and sending data to Humio"; - license = licenses.asl20; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lucperkins ]; mainProgram = "humioctl"; }; } diff --git a/pkgs/by-name/hu/huniq/package.nix b/pkgs/by-name/hu/huniq/package.nix index 98443496e4b4..7894b3bc06c4 100644 --- a/pkgs/by-name/hu/huniq/package.nix +++ b/pkgs/by-name/hu/huniq/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pE2LmoUUrIiKECte97AO2i5Ef22/qZwby/EDxTUr0x4="; - meta = with lib; { + meta = { description = "Command line utility to remove duplicates from the given input"; mainProgram = "huniq"; homepage = "https://github.com/koraa/huniq"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/hu/hunspell/dictionaries.nix b/pkgs/by-name/hu/hunspell/dictionaries.nix index a621a93e3daa..04e04afaff24 100644 --- a/pkgs/by-name/hu/hunspell/dictionaries.nix +++ b/pkgs/by-name/hu/hunspell/dictionaries.nix @@ -64,16 +64,16 @@ let rev = "v${version}"; sha256 = "sha256-oGnxOGHzDogzUMZESydIxRTbq9Dmd03flwHx16AK1yk="; }; - meta = with lib; { + meta = { description = "Hunspell dictionary for ${shortDescription} from rla"; homepage = "https://github.com/sbosio/rla-es"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 lgpl3 mpl11 ]; - maintainers = with maintainers; [ renzo ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ renzo ]; + platforms = lib.platforms.all; }; nativeBuildInputs = [ bash @@ -116,15 +116,15 @@ let url = "https://extensions.libreoffice.org/extensions/swedish-spelling-dictionary-den-stora-svenska-ordlistan/${version}/@@download/file/${_name}.oxt"; sha256 = "b982881cc75f5c4af1199535bd4735ee476bdc48edf63e3f05fb4f715654a7bc"; }; - meta = with lib; { + meta = { longDescription = '' Svensk ordlista baserad på DSSO (den stora svenska ordlistan) och Göran Anderssons (goran@init.se) arbete med denna. Ordlistan hämtas från LibreOffice då dsso.se inte längre verkar vara med oss. ''; description = "Hunspell dictionary for ${shortDescription} from LibreOffice"; - license = licenses.lgpl3; - platforms = platforms.all; + license = lib.licenses.lgpl3; + platforms = lib.platforms.all; }; nativeBuildInputs = [ unzip ]; sourceRoot = "."; @@ -163,13 +163,13 @@ let url = "http://www.dicollecte.org/download/fr/hunspell-french-dictionaries-v${version}.zip"; sha256 = "0ca7084jm7zb1ikwzh1frvpb97jn27i7a5d48288h2qlfp068ik0"; }; - meta = with lib; { + meta = { inherit longDescription; description = "Hunspell dictionary for ${shortDescription} from Dicollecte"; homepage = "https://www.dicollecte.org/home.php?prj=fr"; - license = licenses.mpl20; - maintainers = with maintainers; [ renzo ]; - platforms = platforms.all; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ renzo ]; + platforms = lib.platforms.all; }; nativeBuildInputs = [ unzip ]; sourceRoot = "."; @@ -198,12 +198,12 @@ let pname = "hunspell-dict-${shortName}-wordlist"; srcReadmeFile = "README_" + srcFileName + ".txt"; readmeFile = "README_" + dictFileName + ".txt"; - meta = with lib; { + meta = { description = "Hunspell dictionary for ${shortDescription} from Wordlist"; homepage = "http://wordlist.aspell.net/"; - license = licenses.bsd3; - maintainers = with maintainers; [ renzo ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ renzo ]; + platforms = lib.platforms.all; }; nativeBuildInputs = [ unzip ]; sourceRoot = "."; @@ -229,12 +229,12 @@ let version = "2.4"; pname = "hunspell-dict-${shortName}-linguistico"; readmeFile = dictFileName + "_README.txt"; - meta = with lib; { + meta = { description = "Hunspell dictionary for ${shortDescription}"; homepage = "https://sourceforge.net/projects/linguistico/"; - license = licenses.gpl3; - maintainers = with maintainers; [ renzo ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ renzo ]; + platforms = lib.platforms.all; }; nativeBuildInputs = [ unzip ]; sourceRoot = "."; @@ -275,13 +275,13 @@ let ln -sv "$out/share/hunspell/${dictFileName}.aff" "$out/share/myspell/dicts/" ''; - meta = with lib; { + meta = { homepage = "https://xuxen.eus/"; description = shortDescription; longDescription = longDescription; - license = licenses.gpl2; - maintainers = with maintainers; [ zalakain ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ zalakain ]; + platforms = lib.platforms.all; }; }; @@ -321,15 +321,15 @@ let ln -sv "$out/share/hunspell/${dictFileName}.aff" "$out/share/myspell/dicts/" ''; - meta = with lib; { + meta = { homepage = "https://www.j3e.de/ispell/igerman98/index_en.html"; description = shortDescription; - license = with licenses; [ + license = with lib.licenses; [ gpl2 gpl3 ]; - maintainers = with maintainers; [ timor ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ timor ]; + platforms = lib.platforms.all; }; }; @@ -355,12 +355,12 @@ let buildPhase = '' cp -a ${sourceRoot}/* . ''; - meta = with lib; { + meta = { homepage = "https://wiki.documentfoundation.org/Development/Dictionaries"; description = "Hunspell dictionary for ${shortDescription} from LibreOffice"; license = license; - maintainers = with maintainers; [ vlaci ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ vlaci ]; + platforms = lib.platforms.all; }; }; @@ -812,12 +812,12 @@ rec { unzip $src ${dictFileName}/{${dictFileName}.dic,${dictFileName}.aff,${readmeFile}} ''; - meta = with lib; { + meta = { description = "Hunspell dictionary for Ukrainian (Ukraine) from LibreOffice"; homepage = "https://extensions.libreoffice.org/extensions/ukrainian-spelling-dictionary-and-thesaurus/"; - license = licenses.mpl20; - maintainers = with maintainers; [ dywedir ]; - platforms = platforms.all; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ dywedir ]; + platforms = lib.platforms.all; }; }; @@ -908,7 +908,7 @@ rec { unzip $src ${dictFileName}.dic ${dictFileName}.aff ${readmeFile} -d ${dictFileName} ''; - meta = with lib; { + meta = { description = "Hunspell dictionary for Danish (Denmark) from Stavekontrolden"; homepage = "https://github.com/jeppebundsgaard/stavekontrolden"; license = with lib.licenses; [ @@ -916,7 +916,7 @@ rec { lgpl21Only mpl11 ]; - maintainers = with maintainers; [ louisdk1 ]; + maintainers = with lib.maintainers; [ louisdk1 ]; }; }; @@ -942,14 +942,14 @@ rec { dictFileName = "nl_NL"; readmeFile = "README.md"; - meta = with lib; { + meta = { description = "Hunspell dictionary for Dutch (Netherlands) from OpenTaal"; homepage = "https://www.opentaal.org/"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 # or cc-by-30 ]; - maintainers = with maintainers; [ artturin ]; + maintainers = with lib.maintainers; [ artturin ]; }; }; @@ -978,12 +978,12 @@ rec { rev = "419eb32115b936da9c949e35b35c29b8187f6c93"; sha256 = "sha256-aXjof5dcEoCmep3PtvVkBhcgcd2NtqUpUEu37wsi1Uk="; }; - meta = with lib; { + meta = { description = "Hunspell dictionary for Central Thai (Thailand)"; homepage = "https://github.com/SyafiqHadzir/Hunspell-TH"; - license = with licenses; [ gpl3 ]; - maintainers = with maintainers; [ toastal ]; # looking for a native speaker - platforms = platforms.all; + license = with lib.licenses; [ gpl3 ]; + maintainers = with lib.maintainers; [ toastal ]; # looking for a native speaker + platforms = lib.platforms.all; }; }; @@ -1054,7 +1054,7 @@ rec { dontBuild = true; - meta = with lib; { + meta = { description = "Hunspell dictionary for Toki Pona"; homepage = "https://github.com/somasis/hunspell-tok"; license = with lib.licenses; [ @@ -1063,8 +1063,8 @@ rec { cc-by-sa-30 cc-by-sa-40 ]; - maintainers = with maintainers; [ somasis ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ somasis ]; + platforms = lib.platforms.all; }; }; @@ -1134,12 +1134,12 @@ rec { sed -i 's/^\(## *File Version[^,]*\),.*/\1/' fa-IR.aff runHook postBuild ''; - meta = with lib; { + meta = { description = "Hunspell dictionary for Persian (Iran)"; homepage = "https://github.com/b00f/lilak"; - license = licenses.asl20; - maintainers = with maintainers; [ nix-julia ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nix-julia ]; + platforms = lib.platforms.all; }; }; @@ -1188,12 +1188,12 @@ rec { dictFileName = "tr_TR"; readmeFile = "README.md"; - meta = with lib; { + meta = { description = "Hunspell dictionary for Turkish (Turkey) from tdd-ai"; homepage = "https://github.com/tdd-ai/hunspell-tr/"; - license = licenses.mpl20; - maintainers = with maintainers; [ samemrecebi ]; - platforms = platforms.all; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ samemrecebi ]; + platforms = lib.platforms.all; }; }; diff --git a/pkgs/by-name/hu/hunt/package.nix b/pkgs/by-name/hu/hunt/package.nix index bce8c2354224..5e8c20fa9d92 100644 --- a/pkgs/by-name/hu/hunt/package.nix +++ b/pkgs/by-name/hu/hunt/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rf/aBxuiv6c0cUJcFTCYoQPIEwCfhQQZqVSk0BxSzfQ="; - meta = with lib; { + meta = { description = "Simplified Find command made with Rust"; homepage = "https://github.com/LyonSyonII/hunt-rs"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "hunt"; }; } diff --git a/pkgs/by-name/hv/hvm/package.nix b/pkgs/by-name/hv/hvm/package.nix index 7727bab93a04..26fb1c69eeef 100644 --- a/pkgs/by-name/hv/hvm/package.nix +++ b/pkgs/by-name/hv/hvm/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-nLcT+o6xrxPmQqK7FQpCqTlxOOUA1FzqRGQIypcq4fo="; - meta = with lib; { + meta = { description = "Massively parallel, optimal functional runtime in Rust"; mainProgram = "hvm"; homepage = "https://github.com/higherorderco/hvm"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/hw/hwatch/package.nix b/pkgs/by-name/hw/hwatch/package.nix index 3b34d14841cc..0ebcf8ec5414 100644 --- a/pkgs/by-name/hw/hwatch/package.nix +++ b/pkgs/by-name/hw/hwatch/package.nix @@ -33,15 +33,15 @@ rustPlatform.buildRustPackage rec { package = hwatch; }; - meta = with lib; { + meta = { homepage = "https://github.com/blacknon/hwatch"; description = "Modern alternative to the watch command"; longDescription = '' A modern alternative to the watch command, records the differences in execution results and can check this differences at after. ''; - license = licenses.mit; - maintainers = with maintainers; [ hamburger1984 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hamburger1984 ]; mainProgram = "hwatch"; }; } diff --git a/pkgs/by-name/hw/hwinfo/package.nix b/pkgs/by-name/hw/hwinfo/package.nix index cbce9883b497..63187fc33e33 100644 --- a/pkgs/by-name/hw/hwinfo/package.nix +++ b/pkgs/by-name/hw/hwinfo/package.nix @@ -129,12 +129,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Hardware detection tool from openSUSE"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "https://github.com/openSUSE/hwinfo"; - maintainers = with maintainers; [ bobvanderlinden ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ bobvanderlinden ]; + platforms = lib.platforms.linux; mainProgram = "hwinfo"; pkgConfigModules = [ "hwinfo" ]; }; diff --git a/pkgs/by-name/hy/hybridreverb2/package.nix b/pkgs/by-name/hy/hybridreverb2/package.nix index 29ccc0bdac8b..17588b42ccbe 100644 --- a/pkgs/by-name/hy/hybridreverb2/package.nix +++ b/pkgs/by-name/hy/hybridreverb2/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { cp -r ${impulseDB}/* $out/share/HybridReverb2/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/jpcima/HybridReverb2"; description = "Reverb effect using hybrid impulse convolution"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "HybridReverb2"; }; } diff --git a/pkgs/by-name/hy/hydra/package.nix b/pkgs/by-name/hy/hydra/package.nix index 4dab94d9e0b5..cb9513095d83 100644 --- a/pkgs/by-name/hy/hydra/package.nix +++ b/pkgs/by-name/hy/hydra/package.nix @@ -258,12 +258,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "Nix-based continuous build system"; homepage = "https://nixos.org/hydra"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ mindavi ]; - teams = [ teams.helsinki-systems ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mindavi ]; + teams = [ lib.teams.helsinki-systems ]; }; }) diff --git a/pkgs/by-name/hy/hydroxide/package.nix b/pkgs/by-name/hy/hydroxide/package.nix index 8719e19d5cbb..d50975f1831f 100644 --- a/pkgs/by-name/hy/hydroxide/package.nix +++ b/pkgs/by-name/hy/hydroxide/package.nix @@ -21,10 +21,10 @@ buildGoModule rec { subPackages = [ "cmd/hydroxide" ]; - meta = with lib; { + meta = { description = "Third-party, open-source ProtonMail bridge"; homepage = "https://github.com/emersion/hydroxide"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "hydroxide"; }; } diff --git a/pkgs/by-name/hy/hyena/package.nix b/pkgs/by-name/hy/hyena/package.nix index e165255847e0..c3c19366fe8f 100644 --- a/pkgs/by-name/hy/hyena/package.nix +++ b/pkgs/by-name/hy/hyena/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { inherit monoDLLFixer; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/Archive/hyena"; description = "C# library which contains a hodge-podge of random stuff"; longDescription = '' @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { a smart job/task scheduler, a user-query/search parser, and much more. It's particularly useful for Gtk# applications, though only the Hyena.Gui assembly requires Gtk#. ''; - platforms = platforms.all; - maintainers = with maintainers; [ obadz ]; - license = licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ obadz ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/hy/hyp/package.nix b/pkgs/by-name/hy/hyp/package.nix index 35ed214941a8..269e359ecebd 100644 --- a/pkgs/by-name/hy/hyp/package.nix +++ b/pkgs/by-name/hy/hyp/package.nix @@ -18,15 +18,15 @@ python3Packages.buildPythonPackage rec { setuptools ]; - meta = with lib; { + meta = { description = "Hyperminimal https server"; mainProgram = "hyp"; homepage = "https://github.com/rnhmjoj/hyp"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit ]; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/hy/hyp2mat/package.nix b/pkgs/by-name/hy/hyp2mat/package.nix index 5e92f8b4eee6..4ab50545da8c 100644 --- a/pkgs/by-name/hy/hyp2mat/package.nix +++ b/pkgs/by-name/hy/hyp2mat/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Import Hyperlynx Boardsim files to openEMS, an open source 3D full-wave electromagnetic field solver"; mainProgram = "hyp2mat"; homepage = "https://github.com/koendv/hyp2mat"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ matthuszagh ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ matthuszagh ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/hy/hyper/package.nix b/pkgs/by-name/hy/hyper/package.nix index 057be9951efc..18e5a4999363 100644 --- a/pkgs/by-name/hy/hyper/package.nix +++ b/pkgs/by-name/hy/hyper/package.nix @@ -107,15 +107,15 @@ stdenv.mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.hyper; dontPatchELF = true; - meta = with lib; { + meta = { description = "Terminal built on web technologies"; homepage = "https://hyper.is/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ puffnfresh fabiangd ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; mainProgram = "hyper"; broken = true; # Error: 'node-pty' failed to load diff --git a/pkgs/by-name/hy/hyperhdr/package.nix b/pkgs/by-name/hy/hyperhdr/package.nix index 43a979167901..0e8670cd6617 100644 --- a/pkgs/by-name/hy/hyperhdr/package.nix +++ b/pkgs/by-name/hy/hyperhdr/package.nix @@ -85,16 +85,16 @@ stdenv.mkDerivation rec { xz ]; - meta = with lib; { + meta = { description = "Highly optimized open source ambient lighting implementation based on modern digital video and audio stream analysis for Windows, macOS and Linux (x86 and Raspberry Pi / ARM"; homepage = "https://github.com/awawa-dev/HyperHDR"; changelog = "https://github.com/awawa-dev/HyperHDR/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa eymeric ]; mainProgram = "hyperhdr"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/hy/hyperlink/package.nix b/pkgs/by-name/hy/hyperlink/package.nix index 131e304bc7d8..992ae6ee36c3 100644 --- a/pkgs/by-name/hy/hyperlink/package.nix +++ b/pkgs/by-name/hy/hyperlink/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-2/i+YllfS1ZC+nzmjBMJLjcq6Q+upFX2Wc+jmBO4zp0="; - meta = with lib; { + meta = { description = "Very fast link checker for CI"; homepage = "https://github.com/untitaker/hyperlink"; - license = licenses.mit; - maintainers = with maintainers; [ samueltardieu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samueltardieu ]; mainProgram = "hyperlink"; }; } diff --git a/pkgs/by-name/hy/hyperscrypt-font/package.nix b/pkgs/by-name/hy/hyperscrypt-font/package.nix index 9f6e8a76a333..69bf3da823f3 100644 --- a/pkgs/by-name/hy/hyperscrypt-font/package.nix +++ b/pkgs/by-name/hy/hyperscrypt-font/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://velvetyne.fr/fonts/hyper-scrypt/"; description = "Modern stencil typeface inspired by stained glass technique"; longDescription = '' @@ -40,7 +40,7 @@ stdenvNoCC.mkDerivation rec { allowing some neat alignements between shapes in multi lines layouts. ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/hy/hyprdim/package.nix b/pkgs/by-name/hy/hyprdim/package.nix index fba6144a7b3e..bae202150ce9 100644 --- a/pkgs/by-name/hy/hyprdim/package.nix +++ b/pkgs/by-name/hy/hyprdim/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Automatically dim windows in Hyprland when switching between them"; homepage = "https://github.com/donovanglover/hyprdim"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "hyprdim"; }; } diff --git a/pkgs/by-name/hy/hyprkeys/package.nix b/pkgs/by-name/hy/hyprkeys/package.nix index d0cb0b634a02..41e65571f923 100644 --- a/pkgs/by-name/hy/hyprkeys/package.nix +++ b/pkgs/by-name/hy/hyprkeys/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { --zsh <($out/bin/hyprkeys completion zsh) ''; - meta = with lib; { + meta = { description = "Simple, scriptable keybind retrieval utility for Hyprland"; homepage = "https://github.com/hyprland-community/Hyprkeys"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ NotAShelf donovanglover ]; diff --git a/pkgs/by-name/hy/hyprland-activewindow/package.nix b/pkgs/by-name/hy/hyprland-activewindow/package.nix index 4011c17a1120..af8e3399c913 100644 --- a/pkgs/by-name/hy/hyprland-activewindow/package.nix +++ b/pkgs/by-name/hy/hyprland-activewindow/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-mvmjXzHyCegZhZYVod7Hb7Ot0Vwen78fujMCRvWv/uA="; - meta = with lib; { + meta = { description = "Multi-monitor-aware Hyprland workspace widget helper"; homepage = "https://github.com/FieldofClay/hyprland-activewindow"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kiike donovanglover ]; diff --git a/pkgs/by-name/hy/hyprland-autoname-workspaces/package.nix b/pkgs/by-name/hy/hyprland-autoname-workspaces/package.nix index 22a08790e516..abf8980c5a24 100644 --- a/pkgs/by-name/hy/hyprland-autoname-workspaces/package.nix +++ b/pkgs/by-name/hy/hyprland-autoname-workspaces/package.nix @@ -19,12 +19,12 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Automatically rename workspaces with icons of started applications"; homepage = "https://github.com/hyprland-community/hyprland-autoname-workspaces"; - license = licenses.isc; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "hyprland-autoname-workspaces"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/hy/hyprland-monitor-attached/package.nix b/pkgs/by-name/hy/hyprland-monitor-attached/package.nix index f32568da657d..f80730a8084f 100644 --- a/pkgs/by-name/hy/hyprland-monitor-attached/package.nix +++ b/pkgs/by-name/hy/hyprland-monitor-attached/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pBg5R7k3xEE1EoSdLO4jmibTnGE+ndZnkWeMO+UXN6Q="; - meta = with lib; { + meta = { description = "Automatically run a script when a monitor connects (or disconnects) in Hyprland"; homepage = "https://github.com/coffebar/hyprland-monitor-attached"; - license = licenses.mit; - maintainers = with maintainers; [ bddvlpr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bddvlpr ]; mainProgram = "hyprland-monitor-attached"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/hy/hyprland-per-window-layout/package.nix b/pkgs/by-name/hy/hyprland-per-window-layout/package.nix index 65fa7e80c8a4..04278d472d03 100644 --- a/pkgs/by-name/hy/hyprland-per-window-layout/package.nix +++ b/pkgs/by-name/hy/hyprland-per-window-layout/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-67ewLuhAVaZbUuAwWDZE51dS4T3EkWfYxS40IbvupiM="; - meta = with lib; { + meta = { description = "Per window keyboard layout (language) for Hyprland wayland compositor"; homepage = "https://github.com/coffebar/hyprland-per-window-layout"; - license = licenses.mit; - maintainers = [ maintainers.azazak123 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.azazak123 ]; + platforms = lib.platforms.linux; mainProgram = "hyprland-per-window-layout"; }; } diff --git a/pkgs/by-name/hy/hyprland-workspaces/package.nix b/pkgs/by-name/hy/hyprland-workspaces/package.nix index 8b247c57defc..6e57d3b00979 100644 --- a/pkgs/by-name/hy/hyprland-workspaces/package.nix +++ b/pkgs/by-name/hy/hyprland-workspaces/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-UoL1b+T4z2hAl7GOga68qwAyCtm+Xo+AbyORmwvsqkw="; - meta = with lib; { + meta = { description = "Multi-monitor aware Hyprland workspace widget"; homepage = "https://github.com/FieldofClay/hyprland-workspaces"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kiike donovanglover ]; diff --git a/pkgs/by-name/hy/hyprnome/package.nix b/pkgs/by-name/hy/hyprnome/package.nix index 75005593ddbc..9806ebf73714 100644 --- a/pkgs/by-name/hy/hyprnome/package.nix +++ b/pkgs/by-name/hy/hyprnome/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "GNOME-like workspace switching in Hyprland"; homepage = "https://github.com/donovanglover/hyprnome"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "hyprnome"; }; } diff --git a/pkgs/by-name/hy/hyprpaper/package.nix b/pkgs/by-name/hy/hyprpaper/package.nix index 185a7affe73b..e3df156e7058 100644 --- a/pkgs/by-name/hy/hyprpaper/package.nix +++ b/pkgs/by-name/hy/hyprpaper/package.nix @@ -84,10 +84,10 @@ stdenv.mkDerivation (finalAttrs: { hyprgraphics ]; - meta = with lib; { + meta = { inherit (finalAttrs.src.meta) homepage; description = "Blazing fast wayland wallpaper utility"; - license = licenses.bsd3; + license = lib.licenses.bsd3; teams = [ lib.teams.hyprland ]; inherit (wayland.meta) platforms; broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/hy/hyprshot/package.nix b/pkgs/by-name/hy/hyprshot/package.nix index 351177b88505..67f4bc885b77 100644 --- a/pkgs/by-name/hy/hyprshot/package.nix +++ b/pkgs/by-name/hy/hyprshot/package.nix @@ -48,11 +48,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/Gustash/hyprshot"; description = "Utility to easily take screenshots in Hyprland using your mouse"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Cryolitia ryan4yin ]; diff --git a/pkgs/by-name/hy/hysteria/package.nix b/pkgs/by-name/hy/hysteria/package.nix index bc4a23dd1e7b..df03c2da236a 100644 --- a/pkgs/by-name/hy/hysteria/package.nix +++ b/pkgs/by-name/hy/hysteria/package.nix @@ -38,12 +38,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Feature-packed proxy & relay utility optimized for lossy, unstable connections"; homepage = "https://github.com/apernet/hysteria"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ oluceps ]; mainProgram = "hysteria"; }; } diff --git a/pkgs/by-name/hy/hyx/package.nix b/pkgs/by-name/hy/hyx/package.nix index 9c2161c149df..91e798e815c7 100644 --- a/pkgs/by-name/hy/hyx/package.nix +++ b/pkgs/by-name/hy/hyx/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { install -vD hyx $out/bin/hyx ''; - meta = with lib; { + meta = { description = "Minimalistic but powerful Linux console hex editor"; mainProgram = "hyx"; homepage = "https://yx7.cc/code/"; - license = licenses.mit; - maintainers = with maintainers; [ fpletz ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/i-/i-dot-ming/package.nix b/pkgs/by-name/i-/i-dot-ming/package.nix index 0fd556b1bc65..3f3a486b4d87 100644 --- a/pkgs/by-name/i-/i-dot-ming/package.nix +++ b/pkgs/by-name/i-/i-dot-ming/package.nix @@ -44,11 +44,11 @@ stdenvNoCC.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Open source Pan-CJK serif typeface"; homepage = "https://github.com/ichitenfont/I.Ming"; - license = licenses.ipa; - platforms = platforms.all; - maintainers = [ maintainers.linsui ]; + license = lib.licenses.ipa; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.linsui ]; }; } diff --git a/pkgs/by-name/i2/i2c-tools/package.nix b/pkgs/by-name/i2/i2c-tools/package.nix index b6e7e8be46ee..96db4848fffc 100644 --- a/pkgs/by-name/i2/i2c-tools/package.nix +++ b/pkgs/by-name/i2/i2c-tools/package.nix @@ -36,15 +36,15 @@ stdenv.mkDerivation rec { rm -rf $out/include/linux/i2c-dev.h # conflics with kernel headers ''; - meta = with lib; { + meta = { description = "Set of I2C tools for Linux"; homepage = "https://i2c.wiki.kernel.org/index.php/I2C_Tools"; # library is LGPL 2.1 or later; "most tools" GPL 2 or later - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus gpl2Plus ]; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/i2/i2p/package.nix b/pkgs/by-name/i2/i2p/package.nix index b1754048a25e..1855271314c2 100644 --- a/pkgs/by-name/i2/i2p/package.nix +++ b/pkgs/by-name/i2/i2p/package.nix @@ -96,15 +96,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Applications and router for I2P, anonymity over the Internet"; homepage = "https://geti2p.net"; changelog = "https://github.com/i2p/i2p.i2p/releases/tag/i2p-${finalAttrs.version}"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; - license = with licenses; [ + license = with lib.licenses; [ asl20 boost bsd2 @@ -124,7 +124,7 @@ stdenv.mkDerivation (finalAttrs: { "i686-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ linsui ]; + maintainers = with lib.maintainers; [ linsui ]; mainProgram = "i2prouter-plain"; }; }) diff --git a/pkgs/by-name/i2/i2pd/package.nix b/pkgs/by-name/i2/i2pd/package.nix index a04b37442a18..a508e1922995 100644 --- a/pkgs/by-name/i2/i2pd/package.nix +++ b/pkgs/by-name/i2/i2pd/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { installManPage 'debian/i2pd.1' ''; - meta = with lib; { + meta = { homepage = "https://i2pd.website"; description = "Minimal I2P router written in C++"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; mainProgram = "i2pd"; }; } diff --git a/pkgs/by-name/i3/i3bar-river/package.nix b/pkgs/by-name/i3/i3bar-river/package.nix index 0b72c8226594..49fe32e54aa9 100644 --- a/pkgs/by-name/i3/i3bar-river/package.nix +++ b/pkgs/by-name/i3/i3bar-river/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ pango ]; - meta = with lib; { + meta = { description = "Port of i3bar for river"; homepage = "https://github.com/MaxVerevkin/i3bar-river"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nicegamer7 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nicegamer7 ]; mainProgram = "i3bar-river"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/i3/i3lock-pixeled/package.nix b/pkgs/by-name/i3/i3lock-pixeled/package.nix index c28a1f8a4290..3a4010486eab 100644 --- a/pkgs/by-name/i3/i3lock-pixeled/package.nix +++ b/pkgs/by-name/i3/i3lock-pixeled/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { --replace playerctl "${playerctl}/bin/playerctl" ''; - meta = with lib; { + meta = { description = "Simple i3lock helper which pixels a screenshot by scaling it down and up to get a pixeled version of the screen when the lock is active"; mainProgram = "i3lock-pixeled"; homepage = "https://gitlab.com/Ma27/i3lock-pixeled"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ ma27 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ma27 ]; }; } diff --git a/pkgs/by-name/i3/i3status-rust/package.nix b/pkgs/by-name/i3/i3status-rust/package.nix index 345fd4c22b9e..1fab4ed1e8fa 100644 --- a/pkgs/by-name/i3/i3status-rust/package.nix +++ b/pkgs/by-name/i3/i3status-rust/package.nix @@ -86,14 +86,14 @@ rustPlatform.buildRustPackage rec { # Currently no tests are implemented, so we avoid building the package twice doCheck = false; - meta = with lib; { + meta = { description = "Very resource-friendly and feature-rich replacement for i3status"; homepage = "https://github.com/greshake/i3status-rust"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "i3status-rs"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ backuitist ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ia/ia-writer-duospace/package.nix b/pkgs/by-name/ia/ia-writer-duospace/package.nix index 8cceaa95c5fb..aea39c017bd5 100644 --- a/pkgs/by-name/ia/ia-writer-duospace/package.nix +++ b/pkgs/by-name/ia/ia-writer-duospace/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "iA Writer Duospace Typeface"; homepage = "https://ia.net/topics/in-search-of-the-perfect-writing-font"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ia/ia-writer-quattro/package.nix b/pkgs/by-name/ia/ia-writer-quattro/package.nix index 62f6a2854d73..2034f0743074 100644 --- a/pkgs/by-name/ia/ia-writer-quattro/package.nix +++ b/pkgs/by-name/ia/ia-writer-quattro/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "iA Writer Quattro Typeface"; homepage = "https://github.com/iaolo/iA-Fonts"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.x0ba ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.x0ba ]; }; } diff --git a/pkgs/by-name/ia/iagno/package.nix b/pkgs/by-name/ia/iagno/package.nix index aa543d5109be..8f04ca2748f8 100644 --- a/pkgs/by-name/ia/iagno/package.nix +++ b/pkgs/by-name/ia/iagno/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "iagno"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/iagno"; description = "Computer version of the game Reversi, more popularly called Othello"; mainProgram = "iagno"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ia/iamy/package.nix b/pkgs/by-name/ia/iamy/package.nix index 5d8e7afa92f2..cc67a1d28bfd 100644 --- a/pkgs/by-name/ia/iamy/package.nix +++ b/pkgs/by-name/ia/iamy/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Cli tool for importing and exporting AWS IAM configuration to YAML files"; homepage = "https://github.com/99designs/iamy"; - license = licenses.mit; - maintainers = with maintainers; [ suvash ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ suvash ]; mainProgram = "iamy"; }; } diff --git a/pkgs/by-name/ia/iana-etc/package.nix b/pkgs/by-name/ia/iana-etc/package.nix index 2576cfd9792f..10fadcb2da6e 100644 --- a/pkgs/by-name/ia/iana-etc/package.nix +++ b/pkgs/by-name/ia/iana-etc/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation rec { export NIX_ETC_SERVICES=@out@/etc/services ''; - meta = with lib; { + meta = { homepage = "https://github.com/Mic92/iana-etc"; description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)"; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ia/ianny/package.nix b/pkgs/by-name/ia/ianny/package.nix index 2a84aca50529..c98dc3b49cd4 100644 --- a/pkgs/by-name/ia/ianny/package.nix +++ b/pkgs/by-name/ia/ianny/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { cp io.github.zefr0x.ianny.desktop $out/etc/xdg/autostart/ ''; - meta = with lib; { + meta = { description = "Desktop utility that helps preventing repetitive strain injuries by keeping track of usage patterns and periodically informing the user to take breaks"; homepage = "https://github.com/zefr0x/ianny"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "ianny"; - maintainers = with maintainers; [ max-amb ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ max-amb ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ia/iat/package.nix b/pkgs/by-name/ia/iat/package.nix index e91b7fd917de..1443a257b941 100644 --- a/pkgs/by-name/ia/iat/package.nix +++ b/pkgs/by-name/ia/iat/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation (finalAttr: { hash = "sha256-sl1X/eKKArLYfNSf0UeLA5rb2DY1GHmmVP6hTCd2SyE="; }; - meta = with lib; { + meta = { description = "Tool for detecting the structure of many types of CD/DVD images"; homepage = "https://www.berlios.de/software/iso9660-analyzer-tool/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ hughobrien ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ hughobrien ]; + platforms = lib.platforms.linux; mainProgram = "iat"; }; }) diff --git a/pkgs/by-name/ia/iay/package.nix b/pkgs/by-name/ia/iay/package.nix index 8871896521b9..137251cffc02 100644 --- a/pkgs/by-name/ia/iay/package.nix +++ b/pkgs/by-name/ia/iay/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { "AppKit" ]; - meta = with lib; { + meta = { description = "Minimalistic, blazing-fast, and extendable prompt for bash and zsh"; homepage = "https://github.com/aaqaishtyaq/iay"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aaqaishtyaq ]; mainProgram = "iay"; diff --git a/pkgs/by-name/ib/ibus-theme-tools/package.nix b/pkgs/by-name/ib/ibus-theme-tools/package.nix index 10ad9ee61834..514cbfd5ea0b 100644 --- a/pkgs/by-name/ib/ibus-theme-tools/package.nix +++ b/pkgs/by-name/ib/ibus-theme-tools/package.nix @@ -33,10 +33,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "ibus_theme_tools" ]; - meta = with lib; { + meta = { description = "Generate the IBus GTK or GNOME Shell theme from existing themes"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hollowman6 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hollowman6 ]; homepage = "https://github.com/openSUSE/IBus-Theme-Tools"; mainProgram = "ibus-theme-tools"; }; diff --git a/pkgs/by-name/ic/ic-keysmith/package.nix b/pkgs/by-name/ic/ic-keysmith/package.nix index 560e36b32e09..f92f77d66f57 100644 --- a/pkgs/by-name/ic/ic-keysmith/package.nix +++ b/pkgs/by-name/ic/ic-keysmith/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-rIH10TRWOgmJM8bnKXYTsmmAtlrMMxHc8rnaCmMJGdw="; - meta = with lib; { + meta = { description = "Hierarchical Deterministic Key Derivation for the Internet Computer"; homepage = "https://github.com/dfinity/keysmith"; - license = licenses.mit; - maintainers = with maintainers; [ imalison ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ imalison ]; mainProgram = "keysmith"; }; } diff --git a/pkgs/by-name/ic/icebreaker/package.nix b/pkgs/by-name/ic/icebreaker/package.nix index 6c4c08816b6d..2db2493c0b15 100644 --- a/pkgs/by-name/ic/icebreaker/package.nix +++ b/pkgs/by-name/ic/icebreaker/package.nix @@ -37,10 +37,10 @@ buildGoModule { --set-default GIN_MODE release ''; - meta = with lib; { + meta = { description = "Web app that allows students to ask real-time, anonymous questions during class"; homepage = "https://github.com/jonhoo/icebreaker"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "icebreaker"; }; diff --git a/pkgs/by-name/ic/icecream/package.nix b/pkgs/by-name/ic/icecream/package.nix index 719d8ddd1a7f..bebc3e5d53cc 100644 --- a/pkgs/by-name/ic/icecream/package.nix +++ b/pkgs/by-name/ic/icecream/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { docbook_xml_dtd_45 ]; - meta = with lib; { + meta = { description = "Distributed compiler with a central scheduler to share build load"; inherit (src.meta) homepage; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ emantor ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ emantor ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/ic/iceshelf/package.nix b/pkgs/by-name/ic/iceshelf/package.nix index de245fcf4b84..a8f53ea46d8d 100644 --- a/pkgs/by-name/ic/iceshelf/package.nix +++ b/pkgs/by-name/ic/iceshelf/package.nix @@ -32,10 +32,10 @@ python3.pkgs.buildPythonApplication { cp -rv modules $out/${python3.sitePackages} ''; - meta = with lib; { + meta = { description = "Simple tool to allow storage of signed, encrypted, incremental backups using Amazon's Glacier storage"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; homepage = "https://github.com/mrworf/iceshelf"; - maintainers = with maintainers; [ mmahut ]; + maintainers = with lib.maintainers; [ mmahut ]; }; } diff --git a/pkgs/by-name/ic/icesl/package.nix b/pkgs/by-name/ic/icesl/package.nix index cf0494f76f6e..636cebd144fb 100644 --- a/pkgs/by-name/ic/icesl/package.nix +++ b/pkgs/by-name/ic/icesl/package.nix @@ -73,15 +73,15 @@ stdenv.mkDerivation rec { makeWrapper $out/oldbin/IceSL-slicer $out/bin/icesl --prefix PATH : ${dialog}/bin ''; - meta = with lib; { + meta = { description = "GPU-accelerated procedural modeler and slicer for 3D printing"; homepage = "https://icesl.loria.fr/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.inria-icesl; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.inria-icesl; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ mgttlinger ]; + maintainers = with lib.maintainers; [ mgttlinger ]; }; } diff --git a/pkgs/by-name/ic/icloudpd/package.nix b/pkgs/by-name/ic/icloudpd/package.nix index 82bc892b5d46..f48514d7fa96 100644 --- a/pkgs/by-name/ic/icloudpd/package.nix +++ b/pkgs/by-name/ic/icloudpd/package.nix @@ -79,12 +79,12 @@ python3Packages.buildPythonApplication rec { --replace-fail "0.0.1" "${version}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/icloud-photos-downloader/icloud_photos_downloader"; description = "iCloud Photos Downloader"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "icloudpd"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ anpin ]; }; diff --git a/pkgs/by-name/ic/icmake/package.nix b/pkgs/by-name/ic/icmake/package.nix index 1da38266e691..af47abfd7364 100644 --- a/pkgs/by-name/ic/icmake/package.nix +++ b/pkgs/by-name/ic/icmake/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { --prefix PATH : ${ncurses}/bin ''; - meta = with lib; { + meta = { description = "Program maintenance (make) utility using a C-like grammar"; homepage = "https://fbb-git.gitlab.io/icmake/"; - license = licenses.gpl3; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ic/icomoon-feather/package.nix b/pkgs/by-name/ic/icomoon-feather/package.nix index fd16c313bf50..a55250805bda 100644 --- a/pkgs/by-name/ic/icomoon-feather/package.nix +++ b/pkgs/by-name/ic/icomoon-feather/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/adi1090x/polybar-themes/tree/master/fonts/panels"; description = "Icomoon feather font"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ luftmensch-luftmensch ]; - platforms = platforms.all; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ic/icon-lang/package.nix b/pkgs/by-name/ic/icon-lang/package.nix index 7753f9f97db7..d3a351d2afcc 100644 --- a/pkgs/by-name/ic/icon-lang/package.nix +++ b/pkgs/by-name/ic/icon-lang/package.nix @@ -48,11 +48,13 @@ stdenv.mkDerivation { mv $out/doc $out/share/doc/icon ''; - meta = with lib; { + meta = { description = "Very high level general-purpose programming language"; - maintainers = with maintainers; [ yurrriq ]; - platforms = with platforms; linux ++ darwin ++ freebsd ++ netbsd ++ openbsd ++ cygwin ++ illumos; - license = licenses.publicDomain; + maintainers = with lib.maintainers; [ yurrriq ]; + platforms = + with lib.platforms; + linux ++ darwin ++ freebsd ++ netbsd ++ openbsd ++ cygwin ++ illumos; + license = lib.licenses.publicDomain; homepage = "https://www.cs.arizona.edu/icon/"; }; } diff --git a/pkgs/by-name/ic/icon-library/package.nix b/pkgs/by-name/ic/icon-library/package.nix index bee499147760..a468ca12b0ef 100644 --- a/pkgs/by-name/ic/icon-library/package.nix +++ b/pkgs/by-name/ic/icon-library/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { libadwaita ]; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/design/icon-library"; description = "Symbolic icons for your apps"; mainProgram = "icon-library"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ic/icon-slicer/package.nix b/pkgs/by-name/ic/icon-slicer/package.nix index 476bc2de17db..5a12f452494a 100644 --- a/pkgs/by-name/ic/icon-slicer/package.nix +++ b/pkgs/by-name/ic/icon-slicer/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ gdk-pixbuf ]; - meta = with lib; { + meta = { description = "Utility for generating icon themes and libXcursor cursor themes"; homepage = "https://www.freedesktop.org/wiki/Software/icon-slicer/"; - license = licenses.mit; - maintainers = with maintainers; [ zaninime ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zaninime ]; + platforms = lib.platforms.linux; mainProgram = "icon-slicer"; }; } diff --git a/pkgs/by-name/ic/iconConvTools/package.nix b/pkgs/by-name/ic/iconConvTools/package.nix index 45be4644245d..820008e10be4 100644 --- a/pkgs/by-name/ic/iconConvTools/package.nix +++ b/pkgs/by-name/ic/iconConvTools/package.nix @@ -28,9 +28,9 @@ stdenv.mkDerivation { dontPatchELF = true; dontStrip = true; - meta = with lib; { + meta = { description = "Tools for icon conversion specific to nix package manager"; - maintainers = with maintainers; [ jraygauthier ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jraygauthier ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ic/iconnamingutils/package.nix b/pkgs/by-name/ic/iconnamingutils/package.nix index c85b060b4cc6..9c1894216dc6 100644 --- a/pkgs/by-name/ic/iconnamingutils/package.nix +++ b/pkgs/by-name/ic/iconnamingutils/package.nix @@ -20,9 +20,9 @@ stdenv.mkDerivation rec { (perl.withPackages (p: [ p.XMLSimple ])) ]; - meta = with lib; { + meta = { homepage = "https://tango.freedesktop.org/Standard_Icon_Naming_Specification"; - platforms = with platforms; linux ++ darwin; - license = licenses.gpl2; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/ic/iconpack-jade/package.nix b/pkgs/by-name/ic/iconpack-jade/package.nix index ee7090ab5fd1..7d666f6b1bfc 100644 --- a/pkgs/by-name/ic/iconpack-jade/package.nix +++ b/pkgs/by-name/ic/iconpack-jade/package.nix @@ -36,11 +36,11 @@ stdenvNoCC.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Icon pack based upon Faenza and Mint-X"; homepage = "https://github.com/madmaxms/iconpack-jade"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ic/iconpack-obsidian/package.nix b/pkgs/by-name/ic/iconpack-obsidian/package.nix index bf82309f6a84..10f67db203f6 100644 --- a/pkgs/by-name/ic/iconpack-obsidian/package.nix +++ b/pkgs/by-name/ic/iconpack-obsidian/package.nix @@ -55,12 +55,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Gnome icon pack based upon Faenza"; homepage = "https://github.com/madmaxms/iconpack-obsidian"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; # darwin cannot deal with file names differing only in case - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ic/icr/package.nix b/pkgs/by-name/ic/icr/package.nix index 22468e862816..05da4a2b55b9 100644 --- a/pkgs/by-name/ic/icr/package.nix +++ b/pkgs/by-name/ic/icr/package.nix @@ -52,11 +52,11 @@ crystal.buildCrystalPackage rec { } ''; - meta = with lib; { + meta = { description = "Interactive console for the Crystal programming language"; mainProgram = "icr"; homepage = "https://github.com/crystal-community/icr"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/by-name/ic/ictree/package.nix b/pkgs/by-name/ic/ictree/package.nix index 24f24cbae4e7..b0a64f7bedbe 100644 --- a/pkgs/by-name/ic/ictree/package.nix +++ b/pkgs/by-name/ic/ictree/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Like tree but interactive"; homepage = "https://github.com/NikitaIvanovV/ictree"; - platforms = platforms.unix; - maintainers = with maintainers; [ foo-dogsquared ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ foo-dogsquared ]; mainProgram = "ictree"; }; } diff --git a/pkgs/by-name/id/id3lib/package.nix b/pkgs/by-name/id/id3lib/package.nix index 00a22e8c048e..1827b5c86b9c 100644 --- a/pkgs/by-name/id/id3lib/package.nix +++ b/pkgs/by-name/id/id3lib/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { doCheck = false; # fails to compile - meta = with lib; { + meta = { description = "Library for reading, writing, and manipulating ID3v1 and ID3v2 tags"; homepage = "https://id3lib.sourceforge.net"; - platforms = platforms.unix; - license = licenses.lgpl2; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/id/id3v2/package.nix b/pkgs/by-name/id/id3v2/package.nix index 29b02629b6e4..eb3a0b3f4a3d 100644 --- a/pkgs/by-name/id/id3v2/package.nix +++ b/pkgs/by-name/id/id3v2/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { mkdir -p $out/{bin,share/man/man1} ''; - meta = with lib; { + meta = { description = "Command line editor for id3v2 tags"; homepage = "https://id3v2.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; mainProgram = "id3v2"; }; } diff --git a/pkgs/by-name/id/ida-free/package.nix b/pkgs/by-name/id/ida-free/package.nix index 1641cf4228ba..ab78ed059636 100644 --- a/pkgs/by-name/id/ida-free/package.nix +++ b/pkgs/by-name/id/ida-free/package.nix @@ -118,14 +118,14 @@ stdenv.mkDerivation (finalAttrs: rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Freeware version of the world's smartest and most feature-full disassembler"; homepage = "https://hex-rays.com/ida-free/"; changelog = "https://hex-rays.com/products/ida/news/"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "ida"; - maintainers = with maintainers; [ msanft ]; + maintainers = with lib.maintainers; [ msanft ]; platforms = [ "x86_64-linux" ]; # Right now, the installation script only supports Linux. - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/id/idb-companion/package.nix b/pkgs/by-name/id/idb-companion/package.nix index 38b0944dc7ff..ee8f46f4d5a5 100644 --- a/pkgs/by-name/id/idb-companion/package.nix +++ b/pkgs/by-name/id/idb-companion/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Powerful command line tool for automating iOS simulators and devices"; homepage = "https://github.com/facebook/idb"; - license = licenses.mit; - platforms = platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.darwin; mainProgram = "idb_companion"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ siddarthkay ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ siddarthkay ]; }; }) diff --git a/pkgs/by-name/id/ideogram/package.nix b/pkgs/by-name/id/ideogram/package.nix index 2d9c947f5f77..ac7d171cfc40 100644 --- a/pkgs/by-name/id/ideogram/package.nix +++ b/pkgs/by-name/id/ideogram/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Insert emoji anywhere, even in non-native apps - designed for elementary OS"; homepage = "https://github.com/cassidyjames/ideogram"; - license = licenses.gpl2Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "com.github.cassidyjames.ideogram"; }; diff --git a/pkgs/by-name/id/ideviceinstaller/package.nix b/pkgs/by-name/id/ideviceinstaller/package.nix index 839d803c3a41..74f584492426 100644 --- a/pkgs/by-name/id/ideviceinstaller/package.nix +++ b/pkgs/by-name/id/ideviceinstaller/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { export RELEASE_VERSION=${version} ''; - meta = with lib; { + meta = { homepage = "https://github.com/libimobiledevice/ideviceinstaller"; description = "List/modify installed apps of iOS devices"; longDescription = '' @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { of an iOS device allowing to install, upgrade, uninstall, archive, restore and enumerate installed or archived apps. ''; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "ideviceinstaller"; }; diff --git a/pkgs/by-name/id/idevicerestore/package.nix b/pkgs/by-name/id/idevicerestore/package.nix index 0326144ebabc..05930b51d44d 100644 --- a/pkgs/by-name/id/idevicerestore/package.nix +++ b/pkgs/by-name/id/idevicerestore/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { export RELEASE_VERSION=${version} ''; - meta = with lib; { + meta = { homepage = "https://github.com/libimobiledevice/idevicerestore"; description = "Restore/upgrade firmware of iOS devices"; longDescription = '' @@ -59,9 +59,9 @@ stdenv.mkDerivation rec { This will download and restore a device to the latest firmware available. ''; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ nh2 ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nh2 ]; mainProgram = "idevicerestore"; }; } diff --git a/pkgs/by-name/id/idsk/package.nix b/pkgs/by-name/id/idsk/package.nix index 22e69135e55e..1847ecdca64b 100644 --- a/pkgs/by-name/id/idsk/package.nix +++ b/pkgs/by-name/id/idsk/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Manipulating CPC dsk images and files"; homepage = "https://github.com/cpcsdk/idsk"; changelog = "https://github.com/cpcsdk/idsk/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "iDSK"; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/id/idutils/package.nix b/pkgs/by-name/id/idutils/package.nix index fd6e2b8fdc84..40658cd3e064 100644 --- a/pkgs/by-name/id/idutils/package.nix +++ b/pkgs/by-name/id/idutils/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { patches = [ ./nix-mapping.patch ]; - meta = with lib; { + meta = { description = "Text searching utility"; longDescription = '' @@ -75,9 +75,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.gnu.org/software/idutils/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; - maintainers = with maintainers; [ gfrascadorio ]; + maintainers = with lib.maintainers; [ gfrascadorio ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/if/ifdnfc/package.nix b/pkgs/by-name/if/ifdnfc/package.nix index a06e65f67f19..7498b322dd22 100644 --- a/pkgs/by-name/if/ifdnfc/package.nix +++ b/pkgs/by-name/if/ifdnfc/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { "usbdropdir=$(out)/pcsc/drivers" ]; - meta = with lib; { + meta = { description = "PC/SC IFD Handler based on libnfc"; mainProgram = "ifdnfc-activate"; longDescription = '' @@ -51,8 +51,8 @@ stdenv.mkDerivation { the SCM SCL3711. ''; homepage = "https://github.com/nfc-tools/ifdnfc"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/by-name/if/iferr/package.nix b/pkgs/by-name/if/iferr/package.nix index 13395db61c8d..7261d85ab120 100644 --- a/pkgs/by-name/if/iferr/package.nix +++ b/pkgs/by-name/if/iferr/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = ''Generate "if err != nil {" block''; homepage = "https://github.com/koron/iferr"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; mainProgram = "iferr"; }; } diff --git a/pkgs/by-name/if/ifm/package.nix b/pkgs/by-name/if/ifm/package.nix index fb84f7f50a10..571c630f4519 100644 --- a/pkgs/by-name/if/ifm/package.nix +++ b/pkgs/by-name/if/ifm/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { enableParallelBuilding = false; # ifm-scan.l:16:10: fatal error: ifm-parse.h: No such file or directory - meta = with lib; { + meta = { homepage = "https://bitbucket.org/zondo/ifm"; description = "Interactive fiction mapper"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/if/ifmetric/package.nix b/pkgs/by-name/if/ifmetric/package.nix index f6039f1f603e..1c1c5f3224fb 100644 --- a/pkgs/by-name/if/ifmetric/package.nix +++ b/pkgs/by-name/if/ifmetric/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Tool for setting IP interface metrics"; longDescription = '' ifmetric is a Linux tool for setting the metrics of all IPv4 routes @@ -34,9 +34,9 @@ stdenv.mkDerivation rec { correlate with higher priorities. ''; homepage = "http://0pointer.de/lennart/projects/ifmetric"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.anna328p ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.anna328p ]; + platforms = lib.platforms.linux; mainProgram = "ifmetric"; }; } diff --git a/pkgs/by-name/if/ifrextractor-rs/package.nix b/pkgs/by-name/if/ifrextractor-rs/package.nix index cf0772806659..027bf3f8fc8f 100644 --- a/pkgs/by-name/if/ifrextractor-rs/package.nix +++ b/pkgs/by-name/if/ifrextractor-rs/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { ln -s ${./Cargo.lock} Cargo.lock ''; - meta = with lib; { + meta = { description = "Rust utility to extract UEFI IFR data into human-readable text"; mainProgram = "ifrextractor"; homepage = "https://github.com/LongSoft/IFRExtractor-RS"; - license = licenses.bsd2; - maintainers = with maintainers; [ jiegec ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jiegec ]; }; } diff --git a/pkgs/by-name/if/ifstat-legacy/package.nix b/pkgs/by-name/if/ifstat-legacy/package.nix index 6c7642ed2b14..c94dee2e7f5a 100644 --- a/pkgs/by-name/if/ifstat-legacy/package.nix +++ b/pkgs/by-name/if/ifstat-legacy/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { mv $out/share/man/man1/ifstat.1 $out/share/man/man1/ifstat-legacy.1 ''; - meta = with lib; { + meta = { description = "Report network interfaces bandwith just like vmstat/iostat do for other system counters - legacy version"; homepage = "http://gael.roualland.free.fr/ifstat/"; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "ifstat-legacy"; }; } diff --git a/pkgs/by-name/if/iftop/package.nix b/pkgs/by-name/if/iftop/package.nix index 2ba0eeef875f..73198fd2fe5b 100644 --- a/pkgs/by-name/if/iftop/package.nix +++ b/pkgs/by-name/if/iftop/package.nix @@ -33,16 +33,16 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) iftop; }; - meta = with lib; { + meta = { description = "Display bandwidth usage on a network interface"; longDescription = '' iftop does for network usage what top(1) does for CPU usage. It listens to network traffic on a named interface and displays a table of current bandwidth usage by pairs of hosts. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "http://ex-parrot.com/pdw/iftop/"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "iftop"; }; diff --git a/pkgs/by-name/if/ifuse/package.nix b/pkgs/by-name/if/ifuse/package.nix index a3cea81b84d6..677f72cfa172 100644 --- a/pkgs/by-name/if/ifuse/package.nix +++ b/pkgs/by-name/if/ifuse/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { libimobiledevice ]; - meta = with lib; { + meta = { homepage = "https://github.com/libimobiledevice/ifuse"; description = "Fuse filesystem implementation to access the contents of iOS devices"; longDescription = '' @@ -40,8 +40,8 @@ stdenv.mkDerivation { app, an app's documents folder or even the root filesystem on jailbroken devices. ''; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "ifuse"; }; diff --git a/pkgs/by-name/if/ifwifi/package.nix b/pkgs/by-name/if/ifwifi/package.nix index 545ce67703cb..d2f92988a926 100644 --- a/pkgs/by-name/if/ifwifi/package.nix +++ b/pkgs/by-name/if/ifwifi/package.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Simple wrapper over nmcli using wifiscanner made in rust"; mainProgram = "ifwifi"; longDescription = '' @@ -50,10 +50,10 @@ rustPlatform.buildRustPackage rec { project that gave me almost everything I wanted to create this tool. ''; homepage = "https://github.com/araujobsd/ifwifi"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; # networkmanager doesn't work on darwin # even though the `wifiscanner` crate would work - platforms = with platforms; linux; # ++ darwin; + platforms = with lib.platforms; linux; # ++ darwin; }; } diff --git a/pkgs/by-name/ig/igir/package.nix b/pkgs/by-name/ig/igir/package.nix index 79900e342480..872348d984aa 100644 --- a/pkgs/by-name/ig/igir/package.nix +++ b/pkgs/by-name/ig/igir/package.nix @@ -50,13 +50,13 @@ buildNpmPackage rec { # Irrelevant to our use autoPatchelfIgnoreMissingDeps = [ "libc.musl-x86_64.so.1" ]; - meta = with lib; { + meta = { description = "Video game ROM collection manager to help filter, sort, patch, archive, and report on collections on any OS"; mainProgram = "igir"; homepage = "https://igir.io"; changelog = "https://github.com/emmercm/igir/releases/tag/${src.rev}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mjm ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mjm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ig/igraph/package.nix b/pkgs/by-name/ig/igraph/package.nix index 0d9c5f99c6ba..752d70417e19 100644 --- a/pkgs/by-name/ig/igraph/package.nix +++ b/pkgs/by-name/ig/igraph/package.nix @@ -104,13 +104,13 @@ stdenv.mkDerivation (finalAttrs: { python = python3.pkgs.igraph; }; - meta = with lib; { + meta = { description = "C library for complex network analysis and graph theory"; homepage = "https://igraph.org/"; changelog = "https://github.com/igraph/igraph/blob/${finalAttrs.src.tag}/CHANGELOG.md"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ MostAwesomeDude dotlambda ]; diff --git a/pkgs/by-name/ig/igraph_0/package.nix b/pkgs/by-name/ig/igraph_0/package.nix index 8ad73481f351..8a54b75e24b0 100644 --- a/pkgs/by-name/ig/igraph_0/package.nix +++ b/pkgs/by-name/ig/igraph_0/package.nix @@ -101,12 +101,12 @@ stdenv.mkDerivation (finalAttrs: { install_name_tool -change libblas.dylib ${blas}/lib/libblas.dylib $out/lib/libigraph.dylib ''; - meta = with lib; { + meta = { description = "C library for complex network analysis and graph theory"; homepage = "https://igraph.org/"; changelog = "https://github.com/igraph/igraph/blob/${finalAttrs.src.tag}/CHANGELOG.md"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; inherit (hal-hardware-analyzer.meta) maintainers; }; }) diff --git a/pkgs/by-name/ig/igv/package.nix b/pkgs/by-name/ig/igv/package.nix index 6806f71193ef..3fe5510fa7af 100644 --- a/pkgs/by-name/ig/igv/package.nix +++ b/pkgs/by-name/ig/igv/package.nix @@ -38,14 +38,14 @@ stdenv.mkDerivation rec { package = igv; }; - meta = with lib; { + meta = { homepage = "https://www.broadinstitute.org/igv/"; description = "Visualization tool for interactive exploration of genomic datasets"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ - maintainers.mimame - maintainers.rollf + lib.maintainers.mimame + lib.maintainers.rollf ]; }; } diff --git a/pkgs/by-name/ih/ihp-new/package.nix b/pkgs/by-name/ih/ihp-new/package.nix index 1d2914f4af7d..25c6864897f9 100644 --- a/pkgs/by-name/ih/ihp-new/package.nix +++ b/pkgs/by-name/ih/ihp-new/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { --suffix PATH ":" "${lib.makeBinPath [ git ]}"; ''; - meta = with lib; { + meta = { description = "Project generator for the IHP (Integrated Haskell Platform) web framework"; mainProgram = "ihp-new"; homepage = "https://ihp.digitallyinduced.com"; - license = licenses.mit; - maintainers = [ maintainers.mpscholten ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mpscholten ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ii/iio-sensor-proxy/package.nix b/pkgs/by-name/ii/iio-sensor-proxy/package.nix index 723b8f065d1f..c763a7427ab3 100644 --- a/pkgs/by-name/ii/iio-sensor-proxy/package.nix +++ b/pkgs/by-name/ii/iio-sensor-proxy/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Proxy for sending IIO sensor data to D-Bus"; mainProgram = "monitor-sensor"; homepage = "https://gitlab.freedesktop.org/hadess/iio-sensor-proxy"; - license = licenses.gpl3; - maintainers = with maintainers; [ _999eagle ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ _999eagle ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ij/ijq/package.nix b/pkgs/by-name/ij/ijq/package.nix index b81853deea95..e5219eae7cc2 100644 --- a/pkgs/by-name/ij/ijq/package.nix +++ b/pkgs/by-name/ij/ijq/package.nix @@ -47,12 +47,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Interactive wrapper for jq"; mainProgram = "ijq"; homepage = "https://codeberg.org/gpanders/ijq"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ justinas mattpolzin SuperSandro2000 diff --git a/pkgs/by-name/ij/ijs/package.nix b/pkgs/by-name/ij/ijs/package.nix index 0ee5ee45cd82..9cdd6324c3d4 100644 --- a/pkgs/by-name/ij/ijs/package.nix +++ b/pkgs/by-name/ij/ijs/package.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation { configureFlags = [ "--enable-shared" ]; - meta = with lib; { + meta = { homepage = "https://www.openprinting.org/download/ijs/"; description = "Raster printer driver architecture"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ik/ike-scan/package.nix b/pkgs/by-name/ik/ike-scan/package.nix index f7386651d84f..e7f2402b1c71 100644 --- a/pkgs/by-name/ik/ike-scan/package.nix +++ b/pkgs/by-name/ik/ike-scan/package.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation { configureFlags = [ "--with-openssl=${openssl.dev}" ]; - meta = with lib; { + meta = { description = "Tool to discover, fingerprint and test IPsec VPN servers"; longDescription = '' ike-scan is a command-line tool that uses the IKE protocol to discover, fingerprint and test IPsec VPN servers. ''; homepage = "https://github.com/royhills/ike-scan"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ik/ikill/package.nix b/pkgs/by-name/ik/ikill/package.nix index b6b4ad0a4432..9a263edf88ee 100644 --- a/pkgs/by-name/ik/ikill/package.nix +++ b/pkgs/by-name/ik/ikill/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Xbl9cQKWxtwNQqWW41mQrVAsvMLUkTb0irDLD/XstMI="; - meta = with lib; { + meta = { description = "Interactively kill running processes"; homepage = "https://github.com/pjmp/ikill"; - maintainers = with maintainers; [ zendo ]; - license = [ licenses.mit ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ zendo ]; + license = [ lib.licenses.mit ]; + platforms = lib.platforms.linux; mainProgram = "ikill"; }; } diff --git a/pkgs/by-name/ik/iksemel/package.nix b/pkgs/by-name/ik/iksemel/package.nix index 2da0131aa340..fe124d3f729d 100644 --- a/pkgs/by-name/ik/iksemel/package.nix +++ b/pkgs/by-name/ik/iksemel/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ gnutls ]; - meta = with lib; { + meta = { description = "XML parser for jabber"; homepage = "https://github.com/timothytylee/iksemel-1.4"; - license = licenses.gpl2; - maintainers = with maintainers; [ disassembler ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ disassembler ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/il/ili2c/package.nix b/pkgs/by-name/il/ili2c/package.nix index f117f8a2a453..9af57e9e73b0 100644 --- a/pkgs/by-name/il/ili2c/package.nix +++ b/pkgs/by-name/il/ili2c/package.nix @@ -52,20 +52,20 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "INTERLIS Compiler"; longDescription = '' Checks the syntactical correctness of an INTERLIS data model. ''; homepage = "https://www.interlis.ch/downloads/ili2c"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ das-g ]; - teams = [ teams.geospatial ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ das-g ]; + teams = [ lib.teams.geospatial ]; + platforms = lib.platforms.unix; mainProgram = "ili2c"; }; }) diff --git a/pkgs/by-name/il/ilmbase/package.nix b/pkgs/by-name/il/ilmbase/package.nix index 5c3c76833967..465bd610b3a8 100644 --- a/pkgs/by-name/il/ilmbase/package.nix +++ b/pkgs/by-name/il/ilmbase/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { cd IlmBase ''; - meta = with lib; { + meta = { description = "Library for 2D/3D vectors and matrices and other mathematical objects, functions and data types for computer graphics"; homepage = "https://www.openexr.com/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; insecure = true; }; } diff --git a/pkgs/by-name/im/image-roll/package.nix b/pkgs/by-name/im/image-roll/package.nix index e5b3772d51b6..f5ad90b6ece8 100644 --- a/pkgs/by-name/im/image-roll/package.nix +++ b/pkgs/by-name/im/image-roll/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec { install -Dm444 src/resources/com.github.weclaw1.ImageRoll.metainfo.xml -t $out/share/metainfo/ ''; - meta = with lib; { + meta = { description = "Simple and fast GTK image viewer with basic image manipulation tools"; mainProgram = "image-roll"; homepage = "https://github.com/weclaw1/image-roll"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/im/imagej/package.nix b/pkgs/by-name/im/imagej/package.nix index 5a49b4d540fa..893664d9fb1a 100644 --- a/pkgs/by-name/im/imagej/package.nix +++ b/pkgs/by-name/im/imagej/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { install -Dm644 ${icon} $out/share/icons/hicolor/128x128/apps/imagej.png ''; - meta = with lib; { + meta = { homepage = "https://imagej.nih.gov/ij/"; description = "Image processing and analysis in Java"; longDescription = '' @@ -83,10 +83,10 @@ stdenv.mkDerivation rec { inspired by NIH Image for the Macintosh. It runs on any computer with a Java 1.4 or later virtual machine. ''; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.publicDomain; - platforms = platforms.unix; - maintainers = with maintainers; [ yuriaisaka ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ yuriaisaka ]; mainProgram = "imagej"; }; } diff --git a/pkgs/by-name/im/imagelol/package.nix b/pkgs/by-name/im/imagelol/package.nix index 1e0c8bed3483..a7f2e57bfdef 100644 --- a/pkgs/by-name/im/imagelol/package.nix +++ b/pkgs/by-name/im/imagelol/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/MCredstoner2004/ImageLOL"; description = "Simple program to store a file into a PNG image"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "ImageLOL"; }; } diff --git a/pkgs/by-name/im/imagination/package.nix b/pkgs/by-name/im/imagination/package.nix index ecf5c4c68595..625c7090ae39 100644 --- a/pkgs/by-name/im/imagination/package.nix +++ b/pkgs/by-name/im/imagination/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Lightweight and simple DVD slide show maker"; homepage = "https://imagination.sourceforge.net"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ austinbutler ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ austinbutler ]; + platforms = lib.platforms.linux; mainProgram = "imagination"; }; } diff --git a/pkgs/by-name/im/imapsync/package.nix b/pkgs/by-name/im/imapsync/package.nix index 9a756aadbf5f..580650d4856f 100644 --- a/pkgs/by-name/im/imapsync/package.nix +++ b/pkgs/by-name/im/imapsync/package.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation (finalAttrs: { perl ]; - meta = with lib; { + meta = { description = "Mail folder synchronizer between IMAP servers"; mainProgram = "imapsync"; homepage = "https://imapsync.lamiral.info/"; - license = licenses.nlpl; - maintainers = with maintainers; [ + license = lib.licenses.nlpl; + maintainers = with lib.maintainers; [ pSub motiejus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/im/imath/package.nix b/pkgs/by-name/im/imath/package.nix index 710938feddcc..f77102bc5890 100644 --- a/pkgs/by-name/im/imath/package.nix +++ b/pkgs/by-name/im/imath/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics"; homepage = "https://github.com/AcademySoftwareFoundation/Imath"; - license = licenses.bsd3; - maintainers = with maintainers; [ paperdigits ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ paperdigits ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/im/img-cat/package.nix b/pkgs/by-name/im/img-cat/package.nix index 597a194217db..d1993f27fb33 100644 --- a/pkgs/by-name/im/img-cat/package.nix +++ b/pkgs/by-name/im/img-cat/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-4kF+LwVNBY770wHLLcVlAqPoy4SNhbp2TxdNWRiJL6Q="; - meta = with lib; { + meta = { description = "Tool to output images as RGB ANSI graphics on the terminal"; homepage = "https://github.com/trashhalo/imgcat"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "imgcat"; }; diff --git a/pkgs/by-name/im/img/package.nix b/pkgs/by-name/im/img/package.nix index 665b0047e5e8..edf2c7a70121 100644 --- a/pkgs/by-name/im/img/package.nix +++ b/pkgs/by-name/im/img/package.nix @@ -47,10 +47,10 @@ buildGoModule rec { # Tests fail as: internal/binutils/install.go:57:15: undefined: Asset doCheck = false; - meta = with lib; { + meta = { description = "Standalone, daemon-less, unprivileged Dockerfile and OCI compatible container image builder"; mainProgram = "img"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/genuinetools/img"; maintainers = [ ]; }; diff --git a/pkgs/by-name/im/imgcat/package.nix b/pkgs/by-name/im/imgcat/package.nix index 9df497894901..232f461ca4d9 100644 --- a/pkgs/by-name/im/imgcat/package.nix +++ b/pkgs/by-name/im/imgcat/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error"; - meta = with lib; { + meta = { description = "It's like cat, but for images"; homepage = "https://github.com/eddieantonio/imgcat"; - license = licenses.isc; - maintainers = with maintainers; [ jwiegley ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ jwiegley ]; + platforms = lib.platforms.unix; mainProgram = "imgcat"; }; } diff --git a/pkgs/by-name/im/imgcrypt/package.nix b/pkgs/by-name/im/imgcrypt/package.nix index a67c253f96f6..f0d03ed31932 100644 --- a/pkgs/by-name/im/imgcrypt/package.nix +++ b/pkgs/by-name/im/imgcrypt/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { mv $out/bin/ctr $out/bin/ctr-enc ''; - meta = with lib; { + meta = { description = "Image encryption library and command line tool"; homepage = "https://github.com/containerd/imgcrypt"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ mikroskeem ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mikroskeem ]; }; } diff --git a/pkgs/by-name/im/imgp/package.nix b/pkgs/by-name/im/imgp/package.nix index 19dd6a232615..c8266cf235ae 100644 --- a/pkgs/by-name/im/imgp/package.nix +++ b/pkgs/by-name/im/imgp/package.nix @@ -36,12 +36,12 @@ python3Packages.buildPythonApplication rec { $out/bin/imgp --help ''; - meta = with lib; { + meta = { description = "High-performance CLI batch image resizer & rotator"; mainProgram = "imgp"; homepage = "https://github.com/jarun/imgp"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/im/imgpatchtools/package.nix b/pkgs/by-name/im/imgpatchtools/package.nix index ddb57ba74c8f..610682bdf256 100644 --- a/pkgs/by-name/im/imgpatchtools/package.nix +++ b/pkgs/by-name/im/imgpatchtools/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { installPhase = "install -Dt $out/bin bin/*"; - meta = with lib; { + meta = { description = "Tools to manipulate Android OTA archives"; longDescription = '' This package is useful for Android development. In particular, it can be @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { for OTA manipulation. ''; homepage = "https://github.com/erfanoabdi/imgpatchtools"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/im/imgproxy/package.nix b/pkgs/by-name/im/imgproxy/package.nix index 8d7daeb667b2..96f4a6f5f514 100644 --- a/pkgs/by-name/im/imgproxy/package.nix +++ b/pkgs/by-name/im/imgproxy/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { export CGO_LDFLAGS_ALLOW='-(s|w)' ''; - meta = with lib; { + meta = { description = "Fast and secure on-the-fly image processing server written in Go"; mainProgram = "imgproxy"; homepage = "https://imgproxy.net"; changelog = "https://github.com/imgproxy/imgproxy/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ paluh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ paluh ]; }; } diff --git a/pkgs/by-name/im/imgui/demo/default.nix b/pkgs/by-name/im/imgui/demo/default.nix index a250155758aa..262eaab43b6e 100644 --- a/pkgs/by-name/im/imgui/demo/default.nix +++ b/pkgs/by-name/im/imgui/demo/default.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; buildInputs = [ (imgui.override { IMGUI_BUILD_GLFW_BINDING = true; }) ]; - meta = with lib; { + meta = { description = "Standalone ImPlot Demos"; homepage = "https://github.com/ocornut/imgui/tree/master/examples/example_glfw_opengl3"; - license = licenses.mit; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SomeoneSerge ]; mainProgram = "demo"; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/im/imgur-screenshot/package.nix b/pkgs/by-name/im/imgur-screenshot/package.nix index ed3a452666a8..8049ce75e8a9 100644 --- a/pkgs/by-name/im/imgur-screenshot/package.nix +++ b/pkgs/by-name/im/imgur-screenshot/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/imgur-screenshot --prefix PATH ':' ${deps} ''; - meta = with lib; { + meta = { description = "Tool for easy screencapping and uploading to imgur"; homepage = "https://github.com/jomo/imgur-screenshot/"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "imgur-screenshot"; }; diff --git a/pkgs/by-name/im/imgurbash2/package.nix b/pkgs/by-name/im/imgurbash2/package.nix index 64e09892387a..f890f8e93152 100644 --- a/pkgs/by-name/im/imgurbash2/package.nix +++ b/pkgs/by-name/im/imgurbash2/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { chmod +x $out/bin/imgurbash2 ''; - meta = with lib; { + meta = { description = "Shell script that uploads images to imgur"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; homepage = "https://github.com/ram-on/imgurbash2"; mainProgram = "imgurbash2"; diff --git a/pkgs/by-name/im/imlib2/package.nix b/pkgs/by-name/im/imlib2/package.nix index 15289326506a..2614dc6c9151 100644 --- a/pkgs/by-name/im/imlib2/package.nix +++ b/pkgs/by-name/im/imlib2/package.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Image manipulation library"; longDescription = '' @@ -120,9 +120,9 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://docs.enlightenment.org/api/imlib2/html"; changelog = "https://git.enlightenment.org/old/legacy-imlib2/raw/tag/v${finalAttrs.version}/ChangeLog"; - license = licenses.imlib2; + license = lib.licenses.imlib2; pkgConfigModules = [ "imlib2" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/im/immersed/package.nix b/pkgs/by-name/im/immersed/package.nix index 28a5a97f5546..37d568193633 100644 --- a/pkgs/by-name/im/immersed/package.nix +++ b/pkgs/by-name/im/immersed/package.nix @@ -27,13 +27,13 @@ let src = sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); - meta = with lib; { + meta = { description = "VR coworking platform"; homepage = "https://immersed.com"; - license = licenses.unfree; - maintainers = with maintainers; [ pandapip1 ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ pandapip1 ]; platforms = builtins.attrNames sources; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; in diff --git a/pkgs/by-name/im/immudb/package.nix b/pkgs/by-name/im/immudb/package.nix index cd63013a75cd..f0d93d9fb77c 100644 --- a/pkgs/by-name/im/immudb/package.nix +++ b/pkgs/by-name/im/immudb/package.nix @@ -63,10 +63,10 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "Immutable database based on zero trust, SQL and Key-Value, tamperproof, data change history"; homepage = "https://github.com/codenotary/immudb"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/im/impl/package.nix b/pkgs/by-name/im/impl/package.nix index 3f08de58dd9a..d090fa9d1997 100644 --- a/pkgs/by-name/im/impl/package.nix +++ b/pkgs/by-name/im/impl/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-vTqDoM/LK5SHkayLKYig+tCrXLelOoILmQGCxlTWHog="; - meta = with lib; { + meta = { description = "Generate method stubs for implementing an interface"; mainProgram = "impl"; homepage = "https://github.com/josharian/impl"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/im/impy/package.nix b/pkgs/by-name/im/impy/package.nix index 8efe8f259ceb..80a493f246d5 100644 --- a/pkgs/by-name/im/impy/package.nix +++ b/pkgs/by-name/im/impy/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { libjpeg ]; - meta = with lib; { + meta = { description = "Simple library for loading/saving images and animations, written in C"; homepage = "https://github.com/bcampbell/impy"; - license = licenses.gpl3; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/im/imtui/package.nix b/pkgs/by-name/im/imtui/package.nix index f6dcca799d1a..3236fe0a0cbf 100644 --- a/pkgs/by-name/im/imtui/package.nix +++ b/pkgs/by-name/im/imtui/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { "-DIMTUI_INSTALL_IMGUI_HEADERS:BOOL=OFF" ]; - meta = with lib; { + meta = { description = "Immediate mode text-based user interface library"; longDescription = '' ImTui is an immediate mode text-based user interface library. Supports 256 @@ -61,8 +61,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://imtui.ggerganov.com"; changelog = "https://github.com/ggerganov/imtui/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/im/imwheel/package.nix b/pkgs/by-name/im/imwheel/package.nix index 3a3dfb013572..55fffc8aa8eb 100644 --- a/pkgs/by-name/im/imwheel/package.nix +++ b/pkgs/by-name/im/imwheel/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { "ETCDIR=${placeholder "out"}/etc" ]; - meta = with lib; { + meta = { homepage = "https://imwheel.sourceforge.net/"; description = "Mouse wheel configuration tool for XFree86/Xorg"; - maintainers = with maintainers; [ jhillyerd ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ jhillyerd ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; mainProgram = "imwheel"; }; } diff --git a/pkgs/by-name/in/inadyn/package.nix b/pkgs/by-name/in/inadyn/package.nix index 5604347c85a4..a7417eb873dc 100644 --- a/pkgs/by-name/in/inadyn/package.nix +++ b/pkgs/by-name/in/inadyn/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://troglobit.com/projects/inadyn/"; description = "Free dynamic DNS client"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "inadyn"; }; } diff --git a/pkgs/by-name/in/inav-blackbox-tools/package.nix b/pkgs/by-name/in/inav-blackbox-tools/package.nix index d314a0f72c63..78baf551a5cd 100644 --- a/pkgs/by-name/in/inav-blackbox-tools/package.nix +++ b/pkgs/by-name/in/inav-blackbox-tools/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tools for working with blackbox flight logs"; homepage = "https://github.com/inavflight/blackbox-tools"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/inav-blackbox-tools.x86_64-darwin }; } diff --git a/pkgs/by-name/in/inav-configurator/package.nix b/pkgs/by-name/in/inav-configurator/package.nix index f561c345ff45..60bd05dfb3b9 100644 --- a/pkgs/by-name/in/inav-configurator/package.nix +++ b/pkgs/by-name/in/inav-configurator/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "INav flight control system configuration tool"; mainProgram = "inav-configurator"; longDescription = '' @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { quadcopters, hexacopters, octocopters and fixed-wing aircraft. ''; homepage = "https://github.com/iNavFlight/inav/wiki"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ tilcreator wucke13 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/in/inchi/package.nix b/pkgs/by-name/in/inchi/package.nix index d5a271a81c8f..68d06ba890c2 100644 --- a/pkgs/by-name/in/inchi/package.nix +++ b/pkgs/by-name/in/inchi/package.nix @@ -72,10 +72,10 @@ stdenv.mkDerivation rec { install -m 644 INCHI-1-DOC/*.pdf $doc/share ''; - meta = with lib; { + meta = { homepage = "https://www.inchi-trust.org/"; description = "IUPAC International Chemical Identifier library"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ rmcgibbo ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ rmcgibbo ]; }; } diff --git a/pkgs/by-name/in/inconsolata-lgc/package.nix b/pkgs/by-name/in/inconsolata-lgc/package.nix index a32b0247cefd..0cb86795a25d 100644 --- a/pkgs/by-name/in/inconsolata-lgc/package.nix +++ b/pkgs/by-name/in/inconsolata-lgc/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { install -m444 -Dt $out/share/doc/${pname}-${version} LICENSE README ''; - meta = with lib; { + meta = { description = "Fork of Inconsolata font, with proper support of Cyrillic and Greek"; longDescription = '' Inconsolata is one of the most suitable font for programmers created by Raph @@ -50,9 +50,9 @@ stdenv.mkDerivation rec { ''; # See `License.txt' for details. - license = licenses.ofl; + license = lib.licenses.ofl; homepage = "https://github.com/MihailJP/Inconsolata-LGC"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ avnik rht ]; diff --git a/pkgs/by-name/in/inconsolata/package.nix b/pkgs/by-name/in/inconsolata/package.nix index 02968d0ce9b8..99dfbbfe37b7 100644 --- a/pkgs/by-name/in/inconsolata/package.nix +++ b/pkgs/by-name/in/inconsolata/package.nix @@ -19,15 +19,15 @@ stdenv.mkDerivation { install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/static/*.ttf $src/ofl/inconsolata/*.ttf ''; - meta = with lib; { + meta = { homepage = "https://www.levien.com/type/myfonts/inconsolata.html"; description = "Monospace font for both screen and print"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ appsforartists mikoim raskin ]; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/in/incron/package.nix b/pkgs/by-name/in/incron/package.nix index 9c1a1a5f4c60..954612529c24 100644 --- a/pkgs/by-name/in/incron/package.nix +++ b/pkgs/by-name/in/incron/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) incron; }; - meta = with lib; { + meta = { description = "Cron-like daemon which handles filesystem events"; homepage = "https://github.com/ar-/incron"; - license = licenses.gpl2Only; - maintainers = [ maintainers.aanderse ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.aanderse ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/in/indicator-sound-switcher/package.nix b/pkgs/by-name/in/indicator-sound-switcher/package.nix index cd5cce7f9f36..f65effc1de7c 100644 --- a/pkgs/by-name/in/indicator-sound-switcher/package.nix +++ b/pkgs/by-name/in/indicator-sound-switcher/package.nix @@ -55,12 +55,12 @@ python3Packages.buildPythonApplication rec { keybinder3 ]; - meta = with lib; { + meta = { description = "Sound input/output selector indicator for Linux"; mainProgram = "indicator-sound-switcher"; homepage = "https://yktoo.com/en/software/sound-switcher-indicator/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ alexnortung ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ alexnortung ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/in/inetutils/package.nix b/pkgs/by-name/in/inetutils/package.nix index 5a302d72e49b..ef53a01702c9 100644 --- a/pkgs/by-name/in/inetutils/package.nix +++ b/pkgs/by-name/in/inetutils/package.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { description = "Collection of common network programs"; longDescription = '' @@ -98,10 +98,10 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.gnu.org/software/inetutils/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; /** The `logger` binary from `util-linux` is preferred over `inetutils`. diff --git a/pkgs/by-name/in/infamousPlugins/package.nix b/pkgs/by-name/in/infamousPlugins/package.nix index 96d78ddcaccc..e9cdb6edf73b 100644 --- a/pkgs/by-name/in/infamousPlugins/package.nix +++ b/pkgs/by-name/in/infamousPlugins/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://ssj71.github.io/infamousPlugins"; description = "Collection of open-source LV2 plugins"; longDescription = '' @@ -69,9 +69,9 @@ stdenv.mkDerivation rec { * ewham - a whammy style pitchshifter * lushlife - a simulated double tracking plugin capable of everything from a thin beatle effect to thick lush choruses to weird outlandish effects ''; - license = licenses.gpl2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "infamous-rule"; }; } diff --git a/pkgs/by-name/in/infnoise/package.nix b/pkgs/by-name/in/infnoise/package.nix index b67b86b6649a..f5c6f3855403 100644 --- a/pkgs/by-name/in/infnoise/package.nix +++ b/pkgs/by-name/in/infnoise/package.nix @@ -58,18 +58,18 @@ stdenv.mkDerivation (finalAttrs: { tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/leetronics/infnoise"; description = "Driver for the Infinite Noise TRNG"; longDescription = '' The Infinite Noise TRNG is a USB key hardware true random number generator. It can either provide rng for userland applications, or provide rng for the OS entropy. ''; - license = licenses.cc0; - maintainers = with maintainers; [ + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ StijnDW zhaofengli ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/in/inform7/package.nix b/pkgs/by-name/in/inform7/package.nix index 2ba67a1f6ed3..e31b831faec1 100644 --- a/pkgs/by-name/in/inform7/package.nix +++ b/pkgs/by-name/in/inform7/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation { --replace "/usr/bin/perl" "${perl}/bin/perl" ''; - meta = with lib; { + meta = { description = "Design system for interactive fiction"; mainProgram = "i7"; homepage = "http://inform7.com/"; - license = licenses.artistic2; - maintainers = with maintainers; [ mbbx6spp ]; - platforms = platforms.unix; + license = lib.licenses.artistic2; + maintainers = with lib.maintainers; [ mbbx6spp ]; + platforms = lib.platforms.unix; # never built on aarch64-darwin since first introduction in nixpkgs broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) diff --git a/pkgs/by-name/in/infra-arcana/package.nix b/pkgs/by-name/in/infra-arcana/package.nix index dddb888932d3..2709433f56cf 100644 --- a/pkgs/by-name/in/infra-arcana/package.nix +++ b/pkgs/by-name/in/infra-arcana/package.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://sites.google.com/site/infraarcana"; description = "Lovecraftian single-player roguelike game"; mainProgram = "infra-arcana"; @@ -75,8 +75,8 @@ stdenv.mkDerivation rec { Shining Trapezohedron - a window to all secrets of the universe. Your ultimate goal is to unearth this artifact. ''; - platforms = platforms.linux; - maintainers = [ maintainers.kenran ]; - license = licenses.agpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.kenran ]; + license = lib.licenses.agpl3Plus; }; } diff --git a/pkgs/by-name/in/inframap/package.nix b/pkgs/by-name/in/inframap/package.nix index c1ef9fb76f4b..5f29f6d0be40 100644 --- a/pkgs/by-name/in/inframap/package.nix +++ b/pkgs/by-name/in/inframap/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { vendorHash = "sha256-cEKrxuuksMEEVJEZ9/ZU2/MMxWZKlO05DkNX4n3ug/0="; - meta = with lib; { + meta = { description = "Read your tfstate or HCL to generate a graph specific for each provider, showing only the resources that are most important/relevant"; homepage = "https://github.com/cycloidio/inframap"; changelog = "https://github.com/cycloidio/inframap/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/in/ingress2gateway/package.nix b/pkgs/by-name/in/ingress2gateway/package.nix index ef86837b4b5e..0a4eba3b2200 100644 --- a/pkgs/by-name/in/ingress2gateway/package.nix +++ b/pkgs/by-name/in/ingress2gateway/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Convert Ingress resources to Gateway API resources"; homepage = "https://github.com/kubernetes-sigs/ingress2gateway"; - license = licenses.asl20; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "ingress2gateway"; }; } diff --git a/pkgs/by-name/in/inherd-quake/package.nix b/pkgs/by-name/in/inherd-quake/package.nix index 6a85c3631858..3cedcf2cc779 100644 --- a/pkgs/by-name/in/inherd-quake/package.nix +++ b/pkgs/by-name/in/inherd-quake/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Knowledge management meta-framework for geeks"; homepage = "https://github.com/phodal/quake"; - license = licenses.mit; - maintainers = [ maintainers.elliot ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.elliot ]; mainProgram = "quake"; }; } diff --git a/pkgs/by-name/in/inhibridge/package.nix b/pkgs/by-name/in/inhibridge/package.nix index 31e4e4b932f9..22c1a372c585 100644 --- a/pkgs/by-name/in/inhibridge/package.nix +++ b/pkgs/by-name/in/inhibridge/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-bW0+oZJO4JFgDuLl5f7iVorSyN/ro+BRSTX0j15Oqb4="; - meta = with lib; { + meta = { homepage = "https://codeberg.org/Scrumplex/inhibridge"; description = "Simple daemon that bridges freedesktop.org ScreenSaver inhibitions to systemd-inhibit"; - platforms = platforms.linux; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ Scrumplex ]; + platforms = lib.platforms.linux; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ Scrumplex ]; mainProgram = "inhibridge"; }; } diff --git a/pkgs/by-name/in/ink/package.nix b/pkgs/by-name/in/ink/package.nix index 958d3296ad73..dd63340c1dec 100644 --- a/pkgs/by-name/in/ink/package.nix +++ b/pkgs/by-name/in/ink/package.nix @@ -23,15 +23,15 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { description = "Command line tool for checking the ink level of your locally connected printer"; longDescription = '' Ink is a command line tool for checking the ink level of your locally connected printer on a system which runs Linux or FreeBSD. Canon BJNP network printers are supported too. ''; homepage = "https://ink.sourceforge.net/"; - license = licenses.gpl2Only; - platforms = platforms.linux ++ platforms.freebsd; - maintainers = with maintainers; [ samb96 ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux ++ lib.platforms.freebsd; + maintainers = with lib.maintainers; [ samb96 ]; mainProgram = "ink"; }; } diff --git a/pkgs/by-name/in/inkcut/package.nix b/pkgs/by-name/in/inkcut/package.nix index e4613461d4fa..27b8813fc798 100644 --- a/pkgs/by-name/in/inkcut/package.nix +++ b/pkgs/by-name/in/inkcut/package.nix @@ -71,11 +71,11 @@ python3.pkgs.buildPythonApplication rec { sed -i "s|cmd = \['inkcut'\]|cmd = \['$out/bin/inkcut'\]|" $out/share/inkscape/extensions/inkcut_open.py ''; - meta = with lib; { + meta = { homepage = "https://www.codelv.com/projects/inkcut/"; description = "Control 2D plotters, cutters, engravers, and CNC machines"; mainProgram = "inkcut"; - license = licenses.gpl3; - maintainers = with maintainers; [ raboof ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ raboof ]; }; } diff --git a/pkgs/by-name/in/inklecate/package.nix b/pkgs/by-name/in/inklecate/package.nix index 3c635a6060c1..00a10e71d0ae 100644 --- a/pkgs/by-name/in/inklecate/package.nix +++ b/pkgs/by-name/in/inklecate/package.nix @@ -27,7 +27,7 @@ buildDotnetModule rec { dotnet-sdk = dotnetCorePackages.sdk_8_0; - meta = with lib; { + meta = { description = "Compiler for ink, inkle's scripting language"; mainProgram = "inklecate"; longDescription = '' @@ -36,9 +36,9 @@ buildDotnetModule rec { ''; homepage = "https://www.inklestudios.com/ink/"; downloadPage = "https://github.com/inkle/ink/"; - license = licenses.mit; - platforms = platforms.unix; - badPlatforms = platforms.aarch64; - maintainers = with maintainers; [ shreerammodi ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.aarch64; + maintainers = with lib.maintainers; [ shreerammodi ]; }; } diff --git a/pkgs/by-name/in/inlyne/package.nix b/pkgs/by-name/in/inlyne/package.nix index 8fe780ce72f1..632b8deb8370 100644 --- a/pkgs/by-name/in/inlyne/package.nix +++ b/pkgs/by-name/in/inlyne/package.nix @@ -71,11 +71,11 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { description = "GPU powered browserless markdown viewer"; homepage = "https://github.com/Inlyne-Project/inlyne"; changelog = "https://github.com/Inlyne-Project/inlyne/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "inlyne"; }; diff --git a/pkgs/by-name/in/innoextract/package.nix b/pkgs/by-name/in/innoextract/package.nix index 158571b48e6f..7e8db93d1ad0 100644 --- a/pkgs/by-name/in/innoextract/package.nix +++ b/pkgs/by-name/in/innoextract/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { # use unstable as latest release does not yet support cmake-4 passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Tool to unpack installers created by Inno Setup"; homepage = "https://constexpr.org/innoextract/"; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "innoextract"; }; } diff --git a/pkgs/by-name/in/inotify-info/package.nix b/pkgs/by-name/in/inotify-info/package.nix index 99f7884185f5..23808caf7354 100644 --- a/pkgs/by-name/in/inotify-info/package.nix +++ b/pkgs/by-name/in/inotify-info/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$$out" ]; - meta = with lib; { + meta = { description = "Easily track down the number of inotify watches, instances, and which files are being watched"; homepage = "https://github.com/mikesart/inotify-info"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "inotify-info"; - maintainers = with maintainers; [ motiejus ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ motiejus ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/in/inotify-tools/package.nix b/pkgs/by-name/in/inotify-tools/package.nix index 4746fdf6b615..6df57cf4265c 100644 --- a/pkgs/by-name/in/inotify-tools/package.nix +++ b/pkgs/by-name/in/inotify-tools/package.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/inotify-tools/inotify-tools/wiki"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ marcweber pSub shamilton ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/in/input-fonts/package.nix b/pkgs/by-name/in/input-fonts/package.nix index 93d329782967..302fafdbc08a 100644 --- a/pkgs/by-name/in/input-fonts/package.nix +++ b/pkgs/by-name/in/input-fonts/package.nix @@ -88,7 +88,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fonts for Code, from Font Bureau"; longDescription = '' Input is a font family designed for computer programming, data, @@ -104,11 +104,11 @@ stdenv.mkDerivation rec { characters — but without the limitations of a fixed width. ''; homepage = "https://input.djr.com/"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jtojnar romildo ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/in/inputplug/package.nix b/pkgs/by-name/in/inputplug/package.nix index 62aa4743024e..e73d44672eb7 100644 --- a/pkgs/by-name/in/inputplug/package.nix +++ b/pkgs/by-name/in/inputplug/package.nix @@ -30,14 +30,14 @@ rustPlatform.buildRustPackage rec { installManPage inputplug.1 ''; - meta = with lib; { + meta = { description = "Monitor XInput events and run arbitrary scripts on hierarchy change events"; homepage = "https://github.com/andrewshadura/inputplug"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; # `daemon(3)` is deprecated on macOS and `pidfile-rs` needs updating broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ jecaro ]; + maintainers = with lib.maintainers; [ jecaro ]; mainProgram = "inputplug"; }; } diff --git a/pkgs/by-name/in/inriafonts/package.nix b/pkgs/by-name/in/inriafonts/package.nix index 64d0d98c6d4d..66cc4e5a7927 100644 --- a/pkgs/by-name/in/inriafonts/package.nix +++ b/pkgs/by-name/in/inriafonts/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://black-foundry.com/work/inria"; description = "Inria Sans and Inria Serif"; longDescription = '' @@ -37,7 +37,7 @@ stdenvNoCC.mkDerivation rec { Sans-serif part and a more rational axis and drawing for the serif. Both members comes in 3 weights with matching italics. ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/in/inshellisense/package.nix b/pkgs/by-name/in/inshellisense/package.nix index b03751c40d40..c535edbbd344 100644 --- a/pkgs/by-name/in/inshellisense/package.nix +++ b/pkgs/by-name/in/inshellisense/package.nix @@ -29,10 +29,10 @@ buildNpmPackage rec { makeCacheWritable = stdenv.hostPlatform.isDarwin; nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin cacert; - meta = with lib; { + meta = { description = "IDE style command line auto complete"; homepage = "https://github.com/microsoft/inshellisense"; - license = licenses.mit; - maintainers = [ maintainers.malo ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.malo ]; }; } diff --git a/pkgs/by-name/in/inspectrum/package.nix b/pkgs/by-name/in/inspectrum/package.nix index 0920670493dd..c84fea8d95a1 100644 --- a/pkgs/by-name/in/inspectrum/package.nix +++ b/pkgs/by-name/in/inspectrum/package.nix @@ -42,12 +42,12 @@ gnuradioMinimal.pkgs.mkDerivation rec { gnuradioMinimal.unwrapped.python.pkgs.thrift ]; - meta = with lib; { + meta = { description = "Tool for analysing captured signals from sdr receivers"; mainProgram = "inspectrum"; homepage = "https://github.com/miek/inspectrum"; - maintainers = with maintainers; [ mog ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mog ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/in/insulator2/package.nix b/pkgs/by-name/in/insulator2/package.nix index 99b218789fad..c385e52c9569 100644 --- a/pkgs/by-name/in/insulator2/package.nix +++ b/pkgs/by-name/in/insulator2/package.nix @@ -86,13 +86,13 @@ stdenv.mkDerivation rec { env.OPENSSL_NO_VENDOR = 1; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Client UI to inspect Kafka topics, consume, produce and much more"; homepage = "https://github.com/andrewinci/insulator2"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ tc-kaluza ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ tc-kaluza ]; mainProgram = "insulator-2"; }; } diff --git a/pkgs/by-name/in/integresql/package.nix b/pkgs/by-name/in/integresql/package.nix index 89da6be134a8..bc0cee8fd37b 100644 --- a/pkgs/by-name/in/integresql/package.nix +++ b/pkgs/by-name/in/integresql/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Manages isolated PostgreSQL databases for your integration tests"; homepage = "https://github.com/allaboutapps/integresql"; changelog = "https://github.com/allaboutapps/integresql/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "integresql"; }; diff --git a/pkgs/by-name/in/intel-cmt-cat/package.nix b/pkgs/by-name/in/intel-cmt-cat/package.nix index 57132ef7633a..1c013a0e2e05 100644 --- a/pkgs/by-name/in/intel-cmt-cat/package.nix +++ b/pkgs/by-name/in/intel-cmt-cat/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { "NOLDCONFIG=y" ]; - meta = with lib; { + meta = { description = "User space software for Intel(R) Resource Director Technology"; homepage = "https://github.com/intel/intel-cmt-cat"; - license = licenses.bsd3; - maintainers = with maintainers; [ arkivm ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ arkivm ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/in/intel-gmmlib/package.nix b/pkgs/by-name/in/intel-gmmlib/package.nix index 5b15a495256c..4d5b551ed957 100644 --- a/pkgs/by-name/in/intel-gmmlib/package.nix +++ b/pkgs/by-name/in/intel-gmmlib/package.nix @@ -25,9 +25,9 @@ stdenv.mkDerivation rec { inherit intel-compute-runtime intel-media-driver; }; - meta = with lib; { + meta = { homepage = "https://github.com/intel/gmmlib"; - license = licenses.mit; + license = lib.licenses.mit; description = "Intel Graphics Memory Management Library"; longDescription = '' The Intel(R) Graphics Memory Management Library provides device specific @@ -38,6 +38,6 @@ stdenv.mkDerivation rec { "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/in/intel-graphics-compiler/package.nix b/pkgs/by-name/in/intel-graphics-compiler/package.nix index 1a11fa946c47..e19335d5081f 100644 --- a/pkgs/by-name/in/intel-graphics-compiler/package.nix +++ b/pkgs/by-name/in/intel-graphics-compiler/package.nix @@ -135,12 +135,12 @@ stdenv.mkDerivation rec { inherit intel-compute-runtime; }; - meta = with lib; { + meta = { description = "LLVM-based compiler for OpenCL targeting Intel Gen graphics hardware"; homepage = "https://github.com/intel/intel-graphics-compiler"; changelog = "https://github.com/intel/intel-graphics-compiler/releases/tag/${version}"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/in/intel-media-sdk/package.nix b/pkgs/by-name/in/intel-media-sdk/package.nix index 3401d07089e6..dd04951d2fac 100644 --- a/pkgs/by-name/in/intel-media-sdk/package.nix +++ b/pkgs/by-name/in/intel-media-sdk/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Intel Media SDK"; mainProgram = "mfx-tracer-config"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ midchildan pjungkamp ]; diff --git a/pkgs/by-name/in/intel-vaapi-driver/package.nix b/pkgs/by-name/in/intel-vaapi-driver/package.nix index b63f84cae016..748a36fb5ddc 100644 --- a/pkgs/by-name/in/intel-vaapi-driver/package.nix +++ b/pkgs/by-name/in/intel-vaapi-driver/package.nix @@ -69,9 +69,9 @@ stdenv.mkDerivation { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { homepage = "https://01.org/linuxmedia"; - license = licenses.mit; + license = lib.licenses.mit; description = "VA-API user mode driver for Intel GEN Graphics family"; longDescription = '' This VA-API video driver backend provides a bridge to the GEN GPUs through @@ -87,6 +87,6 @@ stdenv.mkDerivation { "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/in/intelli-shell/package.nix b/pkgs/by-name/in/intelli-shell/package.nix index d47e9b2844c1..b9a20ca07c03 100644 --- a/pkgs/by-name/in/intelli-shell/package.nix +++ b/pkgs/by-name/in/intelli-shell/package.nix @@ -42,11 +42,11 @@ rustPlatform.buildRustPackage rec { OPENSSL_NO_VENDOR = true; }; - meta = with lib; { + meta = { description = "Like IntelliSense, but for shells"; homepage = "https://github.com/lasantosr/intelli-shell"; - license = licenses.asl20; - maintainers = with maintainers; [ lasantosr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lasantosr ]; mainProgram = "intelli-shell"; }; } diff --git a/pkgs/by-name/in/inter/package.nix b/pkgs/by-name/in/inter/package.nix index 7af136f8c1bc..afe7ecea9380 100644 --- a/pkgs/by-name/in/inter/package.nix +++ b/pkgs/by-name/in/inter/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://rsms.me/inter/"; description = "Typeface specially designed for user interfaces"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ demize ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ demize ]; }; } diff --git a/pkgs/by-name/in/intercal/package.nix b/pkgs/by-name/in/intercal/package.nix index 719d93822924..6a2541198fba 100644 --- a/pkgs/by-name/in/intercal/package.nix +++ b/pkgs/by-name/in/intercal/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/ick --suffix PATH ':' ${stdenv.cc}/bin ''; - meta = with lib; { + meta = { description = "Original esoteric programming language"; longDescription = '' INTERCAL, an abbreviation for "Compiler Language With No @@ -53,9 +53,9 @@ stdenv.mkDerivation rec { from its use of an assignment statement. ''; homepage = "http://www.catb.org/~esr/intercal/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } # TODO: investigate if LD_LIBRARY_PATH needs to be set diff --git a/pkgs/by-name/in/interlock/package.nix b/pkgs/by-name/in/interlock/package.nix index be844503163c..7e23bb23378c 100644 --- a/pkgs/by-name/in/interlock/package.nix +++ b/pkgs/by-name/in/interlock/package.nix @@ -48,11 +48,11 @@ buildGoModule rec { # Tests are broken due to an error during key generation. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/usbarmory/interlock"; description = "File encryption tool and an HSM frontend"; mainProgram = "interlock"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/in/intltool/package.nix b/pkgs/by-name/in/intltool/package.nix index c138375e071d..1df3b073fffd 100644 --- a/pkgs/by-name/in/intltool/package.nix +++ b/pkgs/by-name/in/intltool/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { substituteInPlace $f --replace "${buildPackages.perl}" "${perlPackages.perl}" done ''; - meta = with lib; { + meta = { description = "Translation helper tool"; homepage = "https://launchpad.net/intltool/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/in/intune-portal/package.nix b/pkgs/by-name/in/intune-portal/package.nix index c3bce48295b4..bccc6d76396f 100644 --- a/pkgs/by-name/in/intune-portal/package.nix +++ b/pkgs/by-name/in/intune-portal/package.nix @@ -111,10 +111,10 @@ stdenv.mkDerivation rec { tests = { inherit (nixosTests) intune; }; }; - meta = with lib; { + meta = { description = "Microsoft Intune Portal allows you to securely access corporate apps, data, and resources"; homepage = "https://www.microsoft.com/"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; maintainers = with lib.maintainers; [ rhysmdnz ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; diff --git a/pkgs/by-name/in/invidtui/package.nix b/pkgs/by-name/in/invidtui/package.nix index 5feb30bc693d..457a800894e6 100644 --- a/pkgs/by-name/in/invidtui/package.nix +++ b/pkgs/by-name/in/invidtui/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { --replace "\"yt-dlp\"" "\"${lib.getBin yt-dlp}/bin/yt-dlp\"" ''; - meta = with lib; { + meta = { homepage = "https://darkhz.github.io/invidtui/"; description = "Invidious TUI client"; - license = licenses.mit; - maintainers = with maintainers; [ rettetdemdativ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rettetdemdativ ]; mainProgram = "invidtui"; }; } diff --git a/pkgs/by-name/in/invoice/package.nix b/pkgs/by-name/in/invoice/package.nix index fa1851636dc1..8f28d59410a4 100644 --- a/pkgs/by-name/in/invoice/package.nix +++ b/pkgs/by-name/in/invoice/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Command line invoice generator"; homepage = "https://github.com/maaslalani/invoice"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "invoice"; }; } diff --git a/pkgs/by-name/in/invoice2data/package.nix b/pkgs/by-name/in/invoice2data/package.nix index cd86694a7fa1..0268b8bd96b7 100644 --- a/pkgs/by-name/in/invoice2data/package.nix +++ b/pkgs/by-name/in/invoice2data/package.nix @@ -62,11 +62,11 @@ python3.pkgs.buildPythonApplication rec { "invoice2data" ]; - meta = with lib; { + meta = { description = "Data extractor for PDF invoices"; mainProgram = "invoice2data"; homepage = "https://github.com/invoice-x/invoice2data"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/by-name/io/ioc-scan/package.nix b/pkgs/by-name/io/ioc-scan/package.nix index 6639a95c34b2..df298b7e2768 100644 --- a/pkgs/by-name/io/ioc-scan/package.nix +++ b/pkgs/by-name/io/ioc-scan/package.nix @@ -28,11 +28,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "ioc_scan" ]; - meta = with lib; { + meta = { description = "Tool to search a filesystem for indicators of compromise (IoC)"; homepage = "https://github.com/cisagov/ioc-scanner"; changelog = "https://github.com/cisagov/ioc-scanner/releases/tag/${src.tag}"; - license = with licenses; [ cc0 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ cc0 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/io/iodash/package.nix b/pkgs/by-name/io/iodash/package.nix index 4855a1712b48..ba18acdb079c 100644 --- a/pkgs/by-name/io/iodash/package.nix +++ b/pkgs/by-name/io/iodash/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { homepage = "https://github.com/YukiWorkshop/IODash"; description = "Lightweight C++ I/O library for POSIX operation systems"; - license = licenses.mit; - maintainers = with maintainers; [ jappie ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jappie ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/io/iomelt/package.nix b/pkgs/by-name/io/iomelt/package.nix index c5abb0922e78..219b92e1a975 100644 --- a/pkgs/by-name/io/iomelt/package.nix +++ b/pkgs/by-name/io/iomelt/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { --replace /usr $out ''; - meta = with lib; { + meta = { description = "Simple yet effective way to benchmark disk IO in Linux systems"; homepage = "https://github.com/camposr/iomelt"; - maintainers = with maintainers; [ raspher ]; - license = licenses.artistic2; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ raspher ]; + license = lib.licenses.artistic2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/io/ion/package.nix b/pkgs/by-name/io/ion/package.nix index 92b1e2548c11..6d441aa3fe99 100644 --- a/pkgs/by-name/io/ion/package.nix +++ b/pkgs/by-name/io/ion/package.nix @@ -27,15 +27,15 @@ rustPlatform.buildRustPackage { shellPath = "/bin/ion"; }; - meta = with lib; { + meta = { description = "Modern system shell with simple (and powerful) syntax"; homepage = "https://gitlab.redox-os.org/redox-os/ion"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dywedir arthsmn ]; mainProgram = "ion"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/io/ioping/package.nix b/pkgs/by-name/io/ioping/package.nix index dedfc94dce91..be78c69a3236 100644 --- a/pkgs/by-name/io/ioping/package.nix +++ b/pkgs/by-name/io/ioping/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Disk I/O latency measuring tool"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/koct9i/ioping"; mainProgram = "ioping"; }; diff --git a/pkgs/by-name/io/ioport/package.nix b/pkgs/by-name/io/ioport/package.nix index 25f0f42108c1..54a25c7ca233 100644 --- a/pkgs/by-name/io/ioport/package.nix +++ b/pkgs/by-name/io/ioport/package.nix @@ -16,14 +16,14 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; - meta = with lib; { + meta = { description = "Direct access to I/O ports from the command line"; homepage = "https://people.redhat.com/rjones/ioport/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ maintainers.cleverca22 ]; + maintainers = [ lib.maintainers.cleverca22 ]; }; } diff --git a/pkgs/by-name/io/iortcw/sp.nix b/pkgs/by-name/io/iortcw/sp.nix index b614d3b37f0f..17e2c47783fa 100644 --- a/pkgs/by-name/io/iortcw/sp.nix +++ b/pkgs/by-name/io/iortcw/sp.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Single player version of game engine for Return to Castle Wolfenstein"; homepage = src.meta.homepage; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ rjpcasalino ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rjpcasalino ]; }; } diff --git a/pkgs/by-name/io/ios-webkit-debug-proxy/package.nix b/pkgs/by-name/io/ios-webkit-debug-proxy/package.nix index 43999e4c9532..6cd96d0d9d74 100644 --- a/pkgs/by-name/io/ios-webkit-debug-proxy/package.nix +++ b/pkgs/by-name/io/ios-webkit-debug-proxy/package.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation (finalAttrs: { tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { description = "DevTools proxy (Chrome Remote Debugging Protocol) for iOS devices (Safari Remote Web Inspector)"; longDescription = '' The ios_webkit_debug_proxy (aka iwdp) proxies requests from usbmuxd @@ -72,8 +72,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://github.com/google/ios-webkit-debug-proxy"; changelog = "https://github.com/google/ios-webkit-debug-proxy/releases/tag/${finalAttrs.src.rev}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "ios_webkit_debug_proxy"; - maintainers = with maintainers; [ abustany ]; + maintainers = with lib.maintainers; [ abustany ]; }; }) diff --git a/pkgs/by-name/io/iosevka/package.nix b/pkgs/by-name/io/iosevka/package.nix index 3d4c2aa9b684..2ce274806b4a 100644 --- a/pkgs/by-name/io/iosevka/package.nix +++ b/pkgs/by-name/io/iosevka/package.nix @@ -137,7 +137,7 @@ buildNpmPackage rec { enableParallelBuilding = true; requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { homepage = "https://typeof.net/Iosevka/"; downloadPage = "https://github.com/be5invis/Iosevka/releases"; description = "Versatile typeface for code, from code"; @@ -146,9 +146,9 @@ buildNpmPackage rec { quasi‑proportional typeface family, designed for writing code, using in terminals, and preparing technical documents. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ttuegel lunik1 ]; diff --git a/pkgs/by-name/io/iotop-c/package.nix b/pkgs/by-name/io/iotop-c/package.nix index a661dbf4f47f..c1aa0d81d3f1 100644 --- a/pkgs/by-name/io/iotop-c/package.nix +++ b/pkgs/by-name/io/iotop-c/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { mv $out/share/man/man8/{iotop,iotop-c}.8 ''; - meta = with lib; { + meta = { description = "Iotop identifies processes that use high amount of input/output requests on your machine"; homepage = "https://github.com/Tomas-M/iotop"; - maintainers = [ maintainers.arezvov ]; + maintainers = [ lib.maintainers.arezvov ]; mainProgram = "iotop-c"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/io/iotop/package.nix b/pkgs/by-name/io/iotop/package.nix index e7bc757e1131..4b6ff34a2c94 100644 --- a/pkgs/by-name/io/iotop/package.nix +++ b/pkgs/by-name/io/iotop/package.nix @@ -28,12 +28,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "iotop" ]; - meta = with lib; { + meta = { description = "Tool to find out the processes doing the most IO"; homepage = "http://guichaz.free.fr/iotop"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "iotop"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/io/ioztat/package.nix b/pkgs/by-name/io/ioztat/package.nix index 7d1b1dd4a623..e4e7f1e17dca 100644 --- a/pkgs/by-name/io/ioztat/package.nix +++ b/pkgs/by-name/io/ioztat/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { inherit version; inherit (src.meta) homepage; description = "Storage load analysis tool for OpenZFS"; @@ -52,9 +52,9 @@ stdenv.mkDerivation rec { systems -- particularly those with many VMs or containers operating essentially independent workloads. ''; - license = licenses.bsd2; - platforms = with platforms; linux ++ freebsd; - maintainers = with maintainers; [ numinit ]; + license = lib.licenses.bsd2; + platforms = with lib.platforms; linux ++ freebsd; + maintainers = with lib.maintainers; [ numinit ]; mainProgram = "ioztat"; }; } diff --git a/pkgs/by-name/ip/ip2location-c/package.nix b/pkgs/by-name/ip/ip2location-c/package.nix index ec8ce55bfecc..74da564e02d1 100644 --- a/pkgs/by-name/ip/ip2location-c/package.nix +++ b/pkgs/by-name/ip/ip2location-c/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { # databases are available, downloading them for just 1 test seems excessive): doCheck = false; - meta = with lib; { + meta = { description = "Library to look up locations of host names and IP addresses"; mainProgram = "ip2location"; longDescription = '' @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { any IP address or host name in the IP2Location databases. ''; homepage = "https://www.ip2location.com/developers/c"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ip/ip2location/package.nix b/pkgs/by-name/ip/ip2location/package.nix index ba59cc9bc3d6..c1dc6cce66fc 100644 --- a/pkgs/by-name/ip/ip2location/package.nix +++ b/pkgs/by-name/ip/ip2location/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Look up locations of host names and IP addresses"; longDescription = '' A command-line tool to find the country, region, city,coordinates, @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { any IP address or host name in the IP2Location databases. ''; homepage = "https://www.ip2location.com/free/applications"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ip2location"; }; } diff --git a/pkgs/by-name/ip/ipad_charge/package.nix b/pkgs/by-name/ip/ipad_charge/package.nix index 4cd28169fbcd..9d0ef9e7bff6 100644 --- a/pkgs/by-name/ip/ipad_charge/package.nix +++ b/pkgs/by-name/ip/ipad_charge/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { mkdir -p $out/{bin,lib/udev/rules.d} ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Apple device USB charging utility for Linux"; longDescription = '' @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { device connected to USB port. For a list of supported devices, see https://github.com/mkorenkov/ipad_charge#supported-devices. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "ipad_charge"; }; } diff --git a/pkgs/by-name/ip/ipatool/package.nix b/pkgs/by-name/ip/ipatool/package.nix index 3504ec2936d5..0dcc0b481480 100644 --- a/pkgs/by-name/ip/ipatool/package.nix +++ b/pkgs/by-name/ip/ipatool/package.nix @@ -42,12 +42,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Command-line tool that allows searching and downloading app packages (known as ipa files) from the iOS App Store"; homepage = "https://github.com/majd/ipatool"; changelog = "https://github.com/majd/ipatool/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ gaelreyrol ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "ipatool"; }; } diff --git a/pkgs/by-name/ip/ipbt/package.nix b/pkgs/by-name/ip/ipbt/package.nix index 70629038d08f..75fa7c859f8d 100644 --- a/pkgs/by-name/ip/ipbt/package.nix +++ b/pkgs/by-name/ip/ipbt/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ perl ]; buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "High-tech ttyrec player for Unix"; homepage = "https://www.chiark.greenend.org.uk/~sgtatham/ipbt/"; - license = licenses.mit; - maintainers = [ maintainers.tckmn ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.tckmn ]; + platforms = lib.platforms.unix; mainProgram = "ipbt"; }; } diff --git a/pkgs/by-name/ip/ipcalc/package.nix b/pkgs/by-name/ip/ipcalc/package.nix index 2e08354371da..4a95a487b609 100644 --- a/pkgs/by-name/ip/ipcalc/package.nix +++ b/pkgs/by-name/ip/ipcalc/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Simple IP network calculator"; homepage = "https://gitlab.com/ipcalc/ipcalc"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "ipcalc"; }; } diff --git a/pkgs/by-name/ip/iperf3d/package.nix b/pkgs/by-name/ip/iperf3d/package.nix index d33ec9cefbf2..8e850775621b 100644 --- a/pkgs/by-name/ip/iperf3d/package.nix +++ b/pkgs/by-name/ip/iperf3d/package.nix @@ -25,12 +25,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eijsPyoe3/+yR5kRmzk0dH62gTAFFURTVT8wN6Iy0HI="; - meta = with lib; { + meta = { description = "Iperf3 client and server wrapper for dynamic server ports"; mainProgram = "iperf3d"; homepage = "https://github.com/wobcom/iperf3d"; - license = licenses.mit; - maintainers = with maintainers; [ netali ]; - teams = [ teams.wdz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ netali ]; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/by-name/ip/ipfetch/package.nix b/pkgs/by-name/ip/ipfetch/package.nix index bc7f93e89a36..ef29afb79634 100644 --- a/pkgs/by-name/ip/ipfetch/package.nix +++ b/pkgs/by-name/ip/ipfetch/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { description = "Neofetch but for ip addresses"; mainProgram = "ipfetch"; homepage = "https://github.com/trakBan/ipfetch"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ annaaurora ]; }; } diff --git a/pkgs/by-name/ip/ipfs-cluster/package.nix b/pkgs/by-name/ip/ipfs-cluster/package.nix index c4c0f6b7407e..a54793eecf80 100644 --- a/pkgs/by-name/ip/ipfs-cluster/package.nix +++ b/pkgs/by-name/ip/ipfs-cluster/package.nix @@ -31,11 +31,11 @@ buildGo124Module (finalAttrs: { __darwinAllowLocalNetworking = true; # required for tests - meta = with lib; { + meta = { description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons"; homepage = "https://ipfscluster.io"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi jglukasik ]; diff --git a/pkgs/by-name/ip/ipfs-upload-client/package.nix b/pkgs/by-name/ip/ipfs-upload-client/package.nix index cde82f861487..c04c92ee9f47 100644 --- a/pkgs/by-name/ip/ipfs-upload-client/package.nix +++ b/pkgs/by-name/ip/ipfs-upload-client/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-YzIUoN/B4TBlAfmvORrR9Gy+lMzwlaePm8yBoMsPaYU="; - meta = with lib; { + meta = { description = "Minimal CLI tool to upload files and directories to IPFS via Infura's IPFS or another API endpoint"; homepage = "https://github.com/INFURA/ipfs-upload-client"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "ipfs-upload-client"; }; } diff --git a/pkgs/by-name/ip/ipget/package.nix b/pkgs/by-name/ip/ipget/package.nix index 408c5e4c5a97..42a403667df3 100644 --- a/pkgs/by-name/ip/ipget/package.nix +++ b/pkgs/by-name/ip/ipget/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Retrieve files over IPFS and save them locally"; homepage = "https://ipfs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; mainProgram = "ipget"; }; } diff --git a/pkgs/by-name/ip/ipgrep/package.nix b/pkgs/by-name/ip/ipgrep/package.nix index a97745f7b242..1a2d2697b51a 100644 --- a/pkgs/by-name/ip/ipgrep/package.nix +++ b/pkgs/by-name/ip/ipgrep/package.nix @@ -32,14 +32,14 @@ python3Packages.buildPythonApplication rec { requests ]; - meta = with lib; { + meta = { description = "Extract, defang, resolve names and IPs from text"; mainProgram = "ipgrep.py"; longDescription = '' ipgrep extracts possibly obfuscated host names and IP addresses from text, resolves host names, and prints them, sorted by ASN. ''; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ip/iplan/package.nix b/pkgs/by-name/ip/iplan/package.nix index 5bf74bbe83f1..c1f329599e30 100644 --- a/pkgs/by-name/ip/iplan/package.nix +++ b/pkgs/by-name/ip/iplan/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { libadwaita ]; - meta = with lib; { + meta = { description = "Your plan for improving personal life and workflow"; homepage = "https://github.com/iman-salmani/iplan"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "iplan"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ip/ipmicfg/package.nix b/pkgs/by-name/ip/ipmicfg/package.nix index cc8540c27163..ddc0d7c5723d 100644 --- a/pkgs/by-name/ip/ipmicfg/package.nix +++ b/pkgs/by-name/ip/ipmicfg/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { dontPatchShebangs = true; # There are no scripts and it complains about null bytes. - meta = with lib; { + meta = { description = "Supermicro IPMI configuration tool"; homepage = "http://www.supermicro.com/products/nfo/ipmi.cfm"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ sorki ]; + maintainers = with lib.maintainers; [ sorki ]; }; } diff --git a/pkgs/by-name/ip/ipmiutil/package.nix b/pkgs/by-name/ip/ipmiutil/package.nix index eb375f64f890..2fab40a124f7 100644 --- a/pkgs/by-name/ip/ipmiutil/package.nix +++ b/pkgs/by-name/ip/ipmiutil/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-fno-stack-protector"; - meta = with lib; { + meta = { description = "Easy-to-use IPMI server management utility"; homepage = "https://ipmiutil.sourceforge.net/"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; downloadPage = "https://sourceforge.net/projects/ipmiutil/files/ipmiutil/"; }; } diff --git a/pkgs/by-name/ip/ipmiview/package.nix b/pkgs/by-name/ip/ipmiview/package.nix index 82c1de7528b8..ec6543c27094 100644 --- a/pkgs/by-name/ip/ipmiview/package.nix +++ b/pkgs/by-name/ip/ipmiview/package.nix @@ -95,13 +95,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { - sourceProvenance = with sourceTypes; [ + meta = { + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ vlaci ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ vlaci ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/ip/iproute2/package.nix b/pkgs/by-name/ip/iproute2/package.nix index e1403cf6d4bf..1911045de8ad 100644 --- a/pkgs/by-name/ip/iproute2/package.nix +++ b/pkgs/by-name/ip/iproute2/package.nix @@ -104,12 +104,12 @@ stdenv.mkDerivation rec { # needed for nixos-anywhere passthru.tests.static = pkgsStatic.iproute2; - meta = with lib; { + meta = { homepage = "https://wiki.linuxfoundation.org/networking/iproute2"; description = "Collection of utilities for controlling TCP/IP networking and traffic control in Linux"; - platforms = platforms.linux; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fpletz ]; }; diff --git a/pkgs/by-name/ip/iprover/package.nix b/pkgs/by-name/ip/iprover/package.nix index 992cffafc94e..7546522b33a7 100644 --- a/pkgs/by-name/ip/iprover/package.nix +++ b/pkgs/by-name/ip/iprover/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Automated first-order logic theorem prover"; homepage = "http://www.cs.man.ac.uk/~korovink/iprover/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.gpl3; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/ip/ipset/package.nix b/pkgs/by-name/ip/ipset/package.nix index b9dc3f112aaa..8beb2d14e279 100644 --- a/pkgs/by-name/ip/ipset/package.nix +++ b/pkgs/by-name/ip/ipset/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation (finalAttrs: { configureFlags = [ "--with-kmod=no" ]; - meta = with lib; { + meta = { homepage = "https://ipset.netfilter.org/"; description = "Administration tool for IP sets"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "ipset"; }; }) diff --git a/pkgs/by-name/ip/iptraf-ng/package.nix b/pkgs/by-name/ip/iptraf-ng/package.nix index 6a60973477b2..f884306eaa4a 100644 --- a/pkgs/by-name/ip/iptraf-ng/package.nix +++ b/pkgs/by-name/ip/iptraf-ng/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Console-based network monitoring utility (fork of iptraf)"; longDescription = '' IPTraf-ng is a console-based network monitoring utility. IPTraf-ng @@ -47,9 +47,9 @@ stdenv.mkDerivation rec { network cards. ''; homepage = "https://github.com/iptraf-ng/iptraf-ng"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ devhell ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ devhell ]; mainProgram = "iptraf-ng"; }; } diff --git a/pkgs/by-name/ip/iptstate/package.nix b/pkgs/by-name/ip/iptstate/package.nix index 32352002aa8f..bc1ea283d6ed 100644 --- a/pkgs/by-name/ip/iptstate/package.nix +++ b/pkgs/by-name/ip/iptstate/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { description = "Conntrack top like tool"; mainProgram = "iptstate"; homepage = "https://github.com/jaymzh/iptstate"; - platforms = platforms.linux; - maintainers = with maintainers; [ trevorj ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ trevorj ]; downloadPage = "https://github.com/jaymzh/iptstate/releases"; - license = licenses.zlib; + license = lib.licenses.zlib; }; installPhase = '' diff --git a/pkgs/by-name/ip/ipu6-camera-bins/package.nix b/pkgs/by-name/ip/ipu6-camera-bins/package.nix index ca5dc2d11119..050de3108018 100644 --- a/pkgs/by-name/ip/ipu6-camera-bins/package.nix +++ b/pkgs/by-name/ip/ipu6-camera-bins/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "IPU firmware and proprietary image processing libraries"; homepage = "https://github.com/intel/ipu6-camera-bins"; - license = licenses.issl; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.issl; + sourceProvenance = with lib.sourceTypes; [ binaryFirmware ]; maintainers = [ ]; diff --git a/pkgs/by-name/ip/ipv6calc/package.nix b/pkgs/by-name/ip/ipv6calc/package.nix index 4404ac4e46e1..f6bd78b50bd6 100644 --- a/pkgs/by-name/ip/ipv6calc/package.nix +++ b/pkgs/by-name/ip/ipv6calc/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Calculate/manipulate (not only) IPv6 addresses"; longDescription = '' ipv6calc is a small utility to manipulate (not only) IPv6 addresses and @@ -69,8 +69,8 @@ stdenv.mkDerivation rec { Now only one utiltity is needed to do a lot. ''; homepage = "http://www.deepspace6.net/projects/ipv6calc.html"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ip/ipvsadm/package.nix b/pkgs/by-name/ip/ipvsadm/package.nix index e73ecb554a23..8c0138ecabad 100644 --- a/pkgs/by-name/ip/ipvsadm/package.nix +++ b/pkgs/by-name/ip/ipvsadm/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { sed -i -e "s|^PATH=.*|PATH=$out/bin:${gnugrep}/bin|" $out/sbin/ipvsadm-{restore,save} ''; - meta = with lib; { + meta = { description = "Linux Virtual Server support programs"; homepage = "http://www.linuxvirtualserver.org/software/ipvs.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/iq/iqtree/package.nix b/pkgs/by-name/iq/iqtree/package.nix index 97ab0313722e..1ab38a4cd85c 100644 --- a/pkgs/by-name/iq/iqtree/package.nix +++ b/pkgs/by-name/iq/iqtree/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { llvmPackages.openmp ]; - meta = with lib; { + meta = { homepage = "http://www.iqtree.org/"; description = "Efficient and versatile phylogenomic software by maximum likelihood"; mainProgram = "iqtree2"; - license = licenses.lgpl2; - maintainers = with maintainers; [ bzizou ]; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ bzizou ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/iq/iqueue/package.nix b/pkgs/by-name/iq/iqueue/package.nix index a1b34d1d1960..f76ea8a06e94 100644 --- a/pkgs/by-name/iq/iqueue/package.nix +++ b/pkgs/by-name/iq/iqueue/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { "-Wno-error=misleading-indentation" ]; - meta = with lib; { + meta = { homepage = "https://github.com/twosigma/iqueue"; description = "Indexed queue"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ir/ir-standard-fonts/package.nix b/pkgs/by-name/ir/ir-standard-fonts/package.nix index 7bb101e09bf8..3d826789ca1a 100644 --- a/pkgs/by-name/ir/ir-standard-fonts/package.nix +++ b/pkgs/by-name/ir/ir-standard-fonts/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/morealaz/ir-standard-fonts"; description = "Iran Supreme Council of Information and Communication Technology (SCICT) standard Persian fonts series"; # License information is unavailable. - license = licenses.unfree; - platforms = platforms.all; + license = lib.licenses.unfree; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ir/irccloud/package.nix b/pkgs/by-name/ir/irccloud/package.nix index 0d0fc8598b29..46b52eabb89d 100644 --- a/pkgs/by-name/ir/irccloud/package.nix +++ b/pkgs/by-name/ir/irccloud/package.nix @@ -31,12 +31,12 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Desktop client for IRCCloud"; mainProgram = "irccloud"; homepage = "https://www.irccloud.com"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ lightbulbjim ]; + maintainers = with lib.maintainers; [ lightbulbjim ]; }; } diff --git a/pkgs/by-name/ir/irker/package.nix b/pkgs/by-name/ir/irker/package.nix index 3db135fe21ad..1d6ef18531b6 100644 --- a/pkgs/by-name/ir/irker/package.nix +++ b/pkgs/by-name/ir/irker/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { "DESTDIR=$$out" ]; - meta = with lib; { + meta = { description = "IRC client that runs as a daemon accepting notification requests"; homepage = "https://gitlab.com/esr/irker"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "irkerd"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ir/ironbar/package.nix b/pkgs/by-name/ir/ironbar/package.nix index f514156cb732..2db15bec9319 100644 --- a/pkgs/by-name/ir/ironbar/package.nix +++ b/pkgs/by-name/ir/ironbar/package.nix @@ -99,12 +99,12 @@ rustPlatform.buildRustPackage rec { ) ''; - meta = with lib; { + meta = { homepage = "https://github.com/JakeStanger/ironbar"; description = "Customizable gtk-layer-shell wlroots/sway bar written in Rust"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ yavko donovanglover jakestanger diff --git a/pkgs/by-name/ir/irpf/package.nix b/pkgs/by-name/ir/irpf/package.nix index 041971b426f0..c77ddafde210 100644 --- a/pkgs/by-name/ir/irpf/package.nix +++ b/pkgs/by-name/ir/irpf/package.nix @@ -78,7 +78,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Brazillian government application for reporting income tax"; longDescription = '' Brazillian government application for reporting income tax. @@ -86,10 +86,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { IRFP - Imposto de Renda Pessoa Física - Receita Federal do Brasil. ''; homepage = "https://www.gov.br/receitafederal/pt-br"; - license = licenses.unfree; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ atila ]; mainProgram = "irpf"; diff --git a/pkgs/by-name/ir/irssi/package.nix b/pkgs/by-name/ir/irssi/package.nix index 4c4a1ccb04df..4d0843641f1e 100644 --- a/pkgs/by-name/ir/irssi/package.nix +++ b/pkgs/by-name/ir/irssi/package.nix @@ -47,15 +47,15 @@ stdenv.mkDerivation rec { "-Dwith-perl=yes" ]; - meta = with lib; { + meta = { description = "Terminal based IRC client"; mainProgram = "irssi"; homepage = "https://irssi.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fab lovek323 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ir/irust/package.nix b/pkgs/by-name/ir/irust/package.nix index 187e3422b983..37c6cd99ed93 100644 --- a/pkgs/by-name/ir/irust/package.nix +++ b/pkgs/by-name/ir/irust/package.nix @@ -46,11 +46,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Cross Platform Rust Repl"; homepage = "https://github.com/sigmaSd/IRust"; - license = licenses.mit; - maintainers = with maintainers; [ lelgenio ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lelgenio ]; mainProgram = "irust"; }; } diff --git a/pkgs/by-name/is/isabelle/components/isabelle-linter.nix b/pkgs/by-name/is/isabelle/components/isabelle-linter.nix index 6063638edd6e..512a3d224776 100644 --- a/pkgs/by-name/is/isabelle/components/isabelle-linter.nix +++ b/pkgs/by-name/is/isabelle/components/isabelle-linter.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { cp -r * $dir/ ''; - meta = with lib; { + meta = { description = "Linter component for Isabelle"; homepage = "https://github.com/isabelle-prover/isabelle-linter"; - maintainers = with maintainers; [ jvanbruegge ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ jvanbruegge ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/is/isabelle/package.nix b/pkgs/by-name/is/isabelle/package.nix index 15e3c2a5c81a..f61abb5378b2 100644 --- a/pkgs/by-name/is/isabelle/package.nix +++ b/pkgs/by-name/is/isabelle/package.nix @@ -228,7 +228,7 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Generic proof assistant"; longDescription = '' @@ -237,16 +237,16 @@ stdenv.mkDerivation (finalAttrs: { formulas in a logical calculus. ''; homepage = "https://isabelle.in.tum.de/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode # source bundles binary dependencies ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ - maintainers.jwiegley - maintainers.jvanbruegge + lib.maintainers.jwiegley + lib.maintainers.jvanbruegge ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; passthru.withComponents = diff --git a/pkgs/by-name/is/iscc/package.nix b/pkgs/by-name/is/iscc/package.nix index d64e2e159e58..c51d965e228f 100644 --- a/pkgs/by-name/is/iscc/package.nix +++ b/pkgs/by-name/is/iscc/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { # They worked in wine but not on real windows. dontStrip = 1; - meta = with lib; { + meta = { description = "Compiler for Inno Setup, a tool for creating Windows installers"; homepage = "https://jrsoftware.org/isinfo.php"; changelog = "https://jrsoftware.org/files/is6-whatsnew.htm"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; maintainers = [ ]; platforms = wineWow64Packages.stable.meta.platforms; }; diff --git a/pkgs/by-name/is/iso-flags/package.nix b/pkgs/by-name/is/iso-flags/package.nix index 298074c3310b..d66e64f1ca16 100644 --- a/pkgs/by-name/is/iso-flags/package.nix +++ b/pkgs/by-name/is/iso-flags/package.nix @@ -42,11 +42,11 @@ stdenvNoCC.mkDerivation { mv build $out/share/iso-flags ''; - meta = with lib; { + meta = { homepage = "https://github.com/joielechong/iso-country-flags-svg-collection"; description = "248 country flag SVG & PNG icons with different icon styles"; - license = [ licenses.publicDomain ]; - platforms = platforms.linux; # the output assets should work anywhere, but unsure about the tools to build them... - maintainers = [ maintainers.mkg20001 ]; + license = [ lib.licenses.publicDomain ]; + platforms = lib.platforms.linux; # the output assets should work anywhere, but unsure about the tools to build them... + maintainers = [ lib.maintainers.mkg20001 ]; }; } diff --git a/pkgs/by-name/is/isocodes/package.nix b/pkgs/by-name/is/isocodes/package.nix index a8af805b92de..c3c0e79ef08c 100644 --- a/pkgs/by-name/is/isocodes/package.nix +++ b/pkgs/by-name/is/isocodes/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://salsa.debian.org/iso-codes-team/iso-codes"; description = "Various ISO codes packaged as XML files"; - license = licenses.lgpl21; - platforms = platforms.all; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; pkgConfigModules = [ "iso-codes" ]; }; }) diff --git a/pkgs/by-name/is/isolyzer/package.nix b/pkgs/by-name/is/isolyzer/package.nix index e9f956c09e3b..2df426bb6211 100644 --- a/pkgs/by-name/is/isolyzer/package.nix +++ b/pkgs/by-name/is/isolyzer/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "isolyzer" ]; - meta = with lib; { + meta = { homepage = "https://github.com/KBNLresearch/isolyzer"; description = "Verify size of ISO 9660 image against Volume Descriptor fields"; - license = licenses.asl20; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mkg20001 ]; mainProgram = "isolyzer"; }; } diff --git a/pkgs/by-name/is/isomd5sum/package.nix b/pkgs/by-name/is/isomd5sum/package.nix index 78d6a34b7c81..75e9c3bb98f5 100644 --- a/pkgs/by-name/is/isomd5sum/package.nix +++ b/pkgs/by-name/is/isomd5sum/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { "install-devel" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rhinstaller/isomd5sum"; description = "Utilities for working with md5sum implanted in ISO images"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ knl ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ knl ]; }; } diff --git a/pkgs/by-name/is/ispell/package.nix b/pkgs/by-name/is/ispell/package.nix index 7826fc929297..e7b97ffe11c0 100644 --- a/pkgs/by-name/is/ispell/package.nix +++ b/pkgs/by-name/is/ispell/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { description = "Interactive spell-checking program for Unix"; homepage = "https://www.cs.hmc.edu/~geoff/ispell.html"; - license = licenses.free; - platforms = platforms.unix; + license = lib.licenses.free; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/is/istioctl/package.nix b/pkgs/by-name/is/istioctl/package.nix index d8809050d70d..e368da5ef3d8 100644 --- a/pkgs/by-name/is/istioctl/package.nix +++ b/pkgs/by-name/is/istioctl/package.nix @@ -49,12 +49,12 @@ buildGoModule rec { installShellCompletion --zsh _istioctl ''; - meta = with lib; { + meta = { description = "Istio configuration command line utility for service operators to debug and diagnose their Istio mesh"; mainProgram = "istioctl"; homepage = "https://istio.io/latest/docs/reference/commands/istioctl"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ryan4yin ]; diff --git a/pkgs/by-name/it/itamae/package.nix b/pkgs/by-name/it/itamae/package.nix index fbcb6e3c05f9..58cdb7069659 100644 --- a/pkgs/by-name/it/itamae/package.nix +++ b/pkgs/by-name/it/itamae/package.nix @@ -11,12 +11,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "itamae"; - meta = with lib; { + meta = { description = "Simple and lightweight configuration management tool inspired by Chef"; homepage = "https://itamae.kitchen/"; - license = with licenses; mit; - maintainers = with maintainers; [ refi64 ]; - platforms = platforms.unix; + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ refi64 ]; + platforms = lib.platforms.unix; mainProgram = "itamae"; }; } diff --git a/pkgs/by-name/it/itchiodl/package.nix b/pkgs/by-name/it/itchiodl/package.nix index a5e1e3e1f055..6500bb80f91a 100644 --- a/pkgs/by-name/it/itchiodl/package.nix +++ b/pkgs/by-name/it/itchiodl/package.nix @@ -27,10 +27,10 @@ python3Packages.buildPythonApplication rec { requests ]; - meta = with lib; { + meta = { homepage = "https://github.com/Emersont1/itchio"; description = "itch.io download tool"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/it/itd/package.nix b/pkgs/by-name/it/itd/package.nix index 21679e5f9f8b..72a487997a9c 100644 --- a/pkgs/by-name/it/itd/package.nix +++ b/pkgs/by-name/it/itd/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { install -Dm644 itd.toml $out/etc/itd.toml ''; - meta = with lib; { + meta = { description = "Daemon to interact with the PineTime running InfiniTime"; homepage = "https://gitea.elara.ws/Elara6331/itd"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mindavi raphaelr ]; diff --git a/pkgs/by-name/it/ite-backlight/package.nix b/pkgs/by-name/it/ite-backlight/package.nix index 6e4a73d35521..ce67e36b49d3 100644 --- a/pkgs/by-name/it/ite-backlight/package.nix +++ b/pkgs/by-name/it/ite-backlight/package.nix @@ -42,15 +42,15 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Commands to control ite-backlight devices"; longDescription = '' This project aims to provide a set of simple utilities for controlling ITE 8291 keyboard backlight controllers. ''; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; homepage = "https://github.com/hexagonal-sun/ite-backlight"; - platforms = platforms.linux; - maintainers = with maintainers; [ hexagonal-sun ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hexagonal-sun ]; }; } diff --git a/pkgs/by-name/it/iterm2/package.nix b/pkgs/by-name/it/iterm2/package.nix index d653f1201911..033d30d73aa7 100644 --- a/pkgs/by-name/it/iterm2/package.nix +++ b/pkgs/by-name/it/iterm2/package.nix @@ -42,12 +42,12 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Replacement for Terminal and the successor to iTerm"; homepage = "https://www.iterm2.com/"; hydraPlatforms = [ ]; # The build is little more than copying the binary - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ tricktron emaiax ]; @@ -55,6 +55,6 @@ stdenvNoCC.mkDerivation rec { "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/it/itm-tools/package.nix b/pkgs/by-name/it/itm-tools/package.nix index 24ed641c15cf..645113908cb7 100644 --- a/pkgs/by-name/it/itm-tools/package.nix +++ b/pkgs/by-name/it/itm-tools/package.nix @@ -31,14 +31,14 @@ rustPlatform.buildRustPackage { doCheck = false; - meta = with lib; { + meta = { description = "Tools for analyzing ITM traces"; homepage = "https://github.com/japaric/itm-tools"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hh sb0 ]; diff --git a/pkgs/by-name/it/itsx/package.nix b/pkgs/by-name/it/itsx/package.nix index 0fdc25c2c77b..a110cd7ec7ab 100644 --- a/pkgs/by-name/it/itsx/package.nix +++ b/pkgs/by-name/it/itsx/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { cp -r ITSx_db $out/share ''; - meta = with lib; { + meta = { description = "Improved software detection and extraction of ITS1 and ITS2 from ribosomal ITS sequences of fungi and other eukaryotes for use in environmental sequencing"; mainProgram = "ITSx"; homepage = "https://microbiology.se/software/itsx/"; - license = licenses.gpl3; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/iu/iucode-tool/package.nix b/pkgs/by-name/iu/iucode-tool/package.nix index fc92bb67e6c4..79c3db0daade 100644 --- a/pkgs/by-name/iu/iucode-tool/package.nix +++ b/pkgs/by-name/iu/iucode-tool/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Intel® 64 and IA-32 processor microcode tool"; mainProgram = "iucode_tool"; homepage = "https://gitlab.com/iucode-tool/iucode-tool"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/iv/ivan/package.nix b/pkgs/by-name/iv/ivan/package.nix index 51c045bb67aa..8564d3c3b2de 100644 --- a/pkgs/by-name/iv/ivan/package.nix +++ b/pkgs/by-name/iv/ivan/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { cp ${ivanDesktop}/share/applications/* $out/share/applications ''; - meta = with lib; { + meta = { description = "Graphical roguelike game"; longDescription = '' Iter Vehemens ad Necem (IVAN) is a graphical roguelike game, which currently @@ -89,8 +89,8 @@ stdenv.mkDerivation rec { This is a fan continuation of IVAN by members of Attnam.com ''; homepage = "https://attnam.com/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "ivan"; }; diff --git a/pkgs/by-name/iv/iverilog/package.nix b/pkgs/by-name/iv/iverilog/package.nix index d1f71228f207..4c677342860d 100644 --- a/pkgs/by-name/iv/iverilog/package.nix +++ b/pkgs/by-name/iv/iverilog/package.nix @@ -85,14 +85,14 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Icarus Verilog compiler"; homepage = "https://steveicarus.github.io/iverilog"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ thoughtpolice ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/iv/ivsc-firmware/package.nix b/pkgs/by-name/iv/ivsc-firmware/package.nix index 4815333f6a3f..ca7d59e69ea1 100644 --- a/pkgs/by-name/iv/ivsc-firmware/package.nix +++ b/pkgs/by-name/iv/ivsc-firmware/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Firmware binaries for the Intel Vision Sensing Controller"; homepage = "https://github.com/intel/ivsc-firmware"; - license = licenses.issl; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.issl; + sourceProvenance = with lib.sourceTypes; [ binaryFirmware ]; maintainers = [ ]; diff --git a/pkgs/by-name/iv/ivy/package.nix b/pkgs/by-name/iv/ivy/package.nix index 5ff81c824a5b..fa6007cec1e3 100644 --- a/pkgs/by-name/iv/ivy/package.nix +++ b/pkgs/by-name/iv/ivy/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/robpike/ivy"; description = "APL-like calculator"; mainProgram = "ivy"; - license = licenses.bsd3; - maintainers = with maintainers; [ smasher164 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ smasher164 ]; }; } diff --git a/pkgs/by-name/iw/iwona/package.nix b/pkgs/by-name/iw/iwona/package.nix index c6bb9fec58d7..c990dd9d6b2c 100644 --- a/pkgs/by-name/iw/iwona/package.nix +++ b/pkgs/by-name/iw/iwona/package.nix @@ -18,14 +18,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Two-element sans-serif typeface, created by Małgorzata Budyta"; homepage = "https://jmn.pl/en/kurier/"; # "[...] GUST Font License (GFL), which is a free license, legally # equivalent to the LaTeX Project Public # License (LPPL), version 1.3c or # later." - GUST website license = src.meta.license; - maintainers = with maintainers; [ siddharthist ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ siddharthist ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/iw/iwqr/package.nix b/pkgs/by-name/iw/iwqr/package.nix index d7f26304fdcc..319ba2fe3399 100644 --- a/pkgs/by-name/iw/iwqr/package.nix +++ b/pkgs/by-name/iw/iwqr/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Tool for generating qr codes for iwd networks"; homepage = "https://git.kroner.dev/kreny/iwqr"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ h7x4 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ h7x4 ]; mainProgram = "iwqr"; }; } diff --git a/pkgs/by-name/j/j/package.nix b/pkgs/by-name/j/j/package.nix index b4354a1626ce..de4349e12de3 100644 --- a/pkgs/by-name/j/j/package.nix +++ b/pkgs/by-name/j/j/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://jsoftware.com/"; changelog = "https://code.jsoftware.com/wiki/System/ReleaseNotes"; description = "J programming language, an ASCII-based APL successor"; @@ -86,13 +86,13 @@ stdenv.mkDerivation rec { of data. It is a powerful tool for developing algorithms and exploring problems that are not already well understood. ''; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ raskin synthetica ]; broken = stdenv.hostPlatform.isDarwin; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "jconsole"; }; } diff --git a/pkgs/by-name/j4/j4-dmenu-desktop/package.nix b/pkgs/by-name/j4/j4-dmenu-desktop/package.nix index 43c9e434ff26..cfd18db3f3fc 100644 --- a/pkgs/by-name/j4/j4-dmenu-desktop/package.nix +++ b/pkgs/by-name/j4/j4-dmenu-desktop/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation (finalAttrs: { "-Dgenerate-shell-completions=disabled" ]; - meta = with lib; { + meta = { changelog = "https://github.com/enkore/j4-dmenu-desktop/blob/${finalAttrs.src.rev}/CHANGELOG"; description = "Wrapper for dmenu that recognizes .desktop files"; homepage = "https://github.com/enkore/j4-dmenu-desktop"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "j4-dmenu-desktop"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ja/jaaa/package.nix b/pkgs/by-name/ja/jaaa/package.nix index 8bf7477ed0a9..26ce0a88e031 100644 --- a/pkgs/by-name/ja/jaaa/package.nix +++ b/pkgs/by-name/ja/jaaa/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { cd ./source/ ''; - meta = with lib; { + meta = { homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html"; description = "JACK and ALSA Audio Analyser"; - license = licenses.gpl2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "jaaa"; }; } diff --git a/pkgs/by-name/ja/jack-example-tools/package.nix b/pkgs/by-name/ja/jack-example-tools/package.nix index dc7faf4849fa..19fddc33c8ef 100644 --- a/pkgs/by-name/ja/jack-example-tools/package.nix +++ b/pkgs/by-name/ja/jack-example-tools/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation (final: { # no tests defined, but prepare for some in the future. doCheck = true; - meta = with lib; { + meta = { description = "Official examples and tools from the JACK project"; homepage = "https://jackaudio.org"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ja/jack-passthrough/package.nix b/pkgs/by-name/ja/jack-passthrough/package.nix index 67fa11c91e28..7ddef896944a 100644 --- a/pkgs/by-name/ja/jack-passthrough/package.nix +++ b/pkgs/by-name/ja/jack-passthrough/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { libjack2 ]; - meta = with lib; { + meta = { description = "Simple app to help with JACK apps that behave strangely"; longDescription = '' Creates a JACK passthrough client with an arbitrary name and number of @@ -40,8 +40,8 @@ stdenv.mkDerivation { auto-connecting to certain things. ''; # license unknown: https://github.com/guysherman/jack-passthrough/issues/2 - license = licenses.unfree; - maintainers = [ maintainers.PowerUser64 ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.PowerUser64 ]; platforms = [ "x86_64-linux" ]; mainProgram = "jack-passthru"; }; diff --git a/pkgs/by-name/ja/jack1/package.nix b/pkgs/by-name/ja/jack1/package.nix index fa31d8ae5fbb..6877a2bc1edf 100644 --- a/pkgs/by-name/ja/jack1/package.nix +++ b/pkgs/by-name/ja/jack1/package.nix @@ -48,15 +48,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "JACK audio connection kit"; homepage = "https://jackaudio.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21 ]; pkgConfigModules = [ "jack" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ja/jack_capture/package.nix b/pkgs/by-name/ja/jack_capture/package.nix index 25622193a3c0..69a39da387b6 100644 --- a/pkgs/by-name/ja/jack_capture/package.nix +++ b/pkgs/by-name/ja/jack_capture/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Program for recording soundfiles with jack"; mainProgram = "jack_capture"; homepage = "https://github.com/kmatheussen/jack_capture/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/ja/jack_oscrolloscope/package.nix b/pkgs/by-name/ja/jack_oscrolloscope/package.nix index 61f696842218..d8c4086ec9f1 100644 --- a/pkgs/by-name/ja/jack_oscrolloscope/package.nix +++ b/pkgs/by-name/ja/jack_oscrolloscope/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { mv jack_oscrolloscope $out/bin/ ''; - meta = with lib; { + meta = { description = "Simple waveform viewer for JACK"; mainProgram = "jack_oscrolloscope"; homepage = "http://das.nasophon.de/jack_oscrolloscope"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/ja/jackmix/package.nix b/pkgs/by-name/ja/jackmix/package.nix index 1f89278235e4..9da49c9ca2c4 100644 --- a/pkgs/by-name/ja/jackmix/package.nix +++ b/pkgs/by-name/ja/jackmix/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation (finalAttrs: { install -D jackmix/jackmix $out/bin/jackmix ''; - meta = with lib; { + meta = { description = "Matrix-Mixer for the Jack-Audio-connection-Kit"; mainProgram = "jackmix"; homepage = "https://github.com/kampfschlaefer/jackmix"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ja/jacoco/package.nix b/pkgs/by-name/ja/jacoco/package.nix index 9069add297d8..09d15ed00d08 100644 --- a/pkgs/by-name/ja/jacoco/package.nix +++ b/pkgs/by-name/ja/jacoco/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free code coverage library for Java"; mainProgram = "jacoco"; homepage = "https://www.jacoco.org/jacoco"; changelog = "https://www.jacoco.org/jacoco/trunk/doc/changes.html"; - license = licenses.epl20; - platforms = platforms.all; + license = lib.licenses.epl20; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ja/jadx/package.nix b/pkgs/by-name/ja/jadx/package.nix index a3e14509699e..13d6f05ac71d 100644 --- a/pkgs/by-name/ja/jadx/package.nix +++ b/pkgs/by-name/ja/jadx/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { changelog = "https://github.com/skylot/jadx/releases/tag/v${finalAttrs.version}"; description = "Dex to Java decompiler"; homepage = "https://github.com/skylot/jadx"; @@ -99,13 +99,13 @@ stdenv.mkDerivation (finalAttrs: { Command line and GUI tools for produce Java source code from Android Dex and Apk files. ''; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "jadx-gui"; - maintainers = with maintainers; [ emilytrau ]; + maintainers = with lib.maintainers; [ emilytrau ]; }; }) diff --git a/pkgs/by-name/ja/jags/package.nix b/pkgs/by-name/ja/jags/package.nix index f1069c09c841..2deb7e82eead 100644 --- a/pkgs/by-name/ja/jags/package.nix +++ b/pkgs/by-name/ja/jags/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { "--with-lapack=-llapack" ]; - meta = with lib; { + meta = { description = "Just Another Gibbs Sampler"; mainProgram = "jags"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "http://mcmc-jags.sourceforge.net"; - maintainers = [ maintainers.andres ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.andres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ja/jama/package.nix b/pkgs/by-name/ja/jama/package.nix index 360fdf37ea32..1ecfc0034791 100644 --- a/pkgs/by-name/ja/jama/package.nix +++ b/pkgs/by-name/ja/jama/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { cp *.h $out/include ''; - meta = with lib; { + meta = { homepage = "https://math.nist.gov/tnt/"; description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates"; - platforms = platforms.unix; - license = licenses.publicDomain; + platforms = lib.platforms.unix; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/ja/jami/package.nix b/pkgs/by-name/ja/jami/package.nix index 05a221df4cc7..390117e2f64c 100644 --- a/pkgs/by-name/ja/jami/package.nix +++ b/pkgs/by-name/ja/jami/package.nix @@ -173,11 +173,11 @@ stdenv.mkDerivation rec { "-DBUILD_EXAMPLE=Off" ]; - meta = with lib; { + meta = { description = "Lightweight Peer-to-Peer Communication Library"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.linsui ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.linsui ]; }; }; @@ -308,12 +308,12 @@ stdenv.mkDerivation rec { inherit daemon pjsip dhtnet; }; - meta = with lib; { + meta = { homepage = "https://jami.net/"; description = "Free and universal communication platform that respects the privacy and freedoms of its users"; mainProgram = "jami"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.linsui ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.linsui ]; }; } diff --git a/pkgs/by-name/ja/janusgraph/package.nix b/pkgs/by-name/ja/janusgraph/package.nix index 33b6f5e655c1..faa7bde73eeb 100644 --- a/pkgs/by-name/ja/janusgraph/package.nix +++ b/pkgs/by-name/ja/janusgraph/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { cd "$TMPDIR" ''; - meta = with lib; { + meta = { description = "Open-source, distributed graph database"; homepage = "https://janusgraph.org/"; mainProgram = "janusgraph-server"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.ners ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ners ]; }; } diff --git a/pkgs/by-name/ja/jasmin/package.nix b/pkgs/by-name/ja/jasmin/package.nix index 0f28afdd5f09..42f68c2f0666 100644 --- a/pkgs/by-name/ja/jasmin/package.nix +++ b/pkgs/by-name/ja/jasmin/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation (finalAttrs: { minimal-module = callPackage ./test-assemble-hello-world { }; }; - meta = with lib; { + meta = { description = "Assembler for the Java Virtual Machine"; downloadPage = "https://sourceforge.net/projects/jasmin/files/latest/download"; homepage = "https://jasmin.sourceforge.net/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "jasmin"; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ja/java-language-server/package.nix b/pkgs/by-name/ja/java-language-server/package.nix index e21bc9d6ca9c..afcf58970e4e 100644 --- a/pkgs/by-name/ja/java-language-server/package.nix +++ b/pkgs/by-name/ja/java-language-server/package.nix @@ -66,11 +66,11 @@ maven.buildMavenPackage { runHook postInstall ''; - meta = with lib; { + meta = { description = "Java language server based on v3.0 of the protocol and implemented using the Java compiler API"; mainProgram = "java-language-server"; homepage = "https://github.com/georgewfraser/java-language-server"; - license = licenses.mit; - maintainers = with maintainers; [ hqurve ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hqurve ]; }; } diff --git a/pkgs/by-name/ja/java-service-wrapper/package.nix b/pkgs/by-name/ja/java-service-wrapper/package.nix index 31e86188a046..964756fa5323 100644 --- a/pkgs/by-name/ja/java-service-wrapper/package.nix +++ b/pkgs/by-name/ja/java-service-wrapper/package.nix @@ -59,17 +59,17 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Enables a Java Application to be run as a Windows Service or Unix Daemon"; homepage = "https://wrapper.tanukisoftware.com/"; changelog = "https://wrapper.tanukisoftware.com/doc/english/release-notes.html#${finalAttrs.version}"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" ]; - maintainers = [ maintainers.suhr ]; + maintainers = [ lib.maintainers.suhr ]; mainProgram = "wrapper"; # Broken for Musl at 2024-01-17. Errors as: # logger.c:81:12: fatal error: gnu/libc-version.h: No such file or directory diff --git a/pkgs/by-name/ja/javacc/package.nix b/pkgs/by-name/ja/javacc/package.nix index 9f6f03089afa..7f78beec439c 100644 --- a/pkgs/by-name/ja/javacc/package.nix +++ b/pkgs/by-name/ja/javacc/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = with lib; { + meta = { changelog = "https://github.com/javacc/javacc/blob/${finalAttrs.src.rev}/docs/release-notes.md"; description = "Parser generator for building parsers from grammars"; homepage = "https://javacc.github.io/javacc"; - license = licenses.bsd2; + license = lib.licenses.bsd2; mainProgram = "javacc"; - teams = [ teams.deshaw ]; + teams = [ lib.teams.deshaw ]; }; }) diff --git a/pkgs/by-name/ja/jay/package.nix b/pkgs/by-name/ja/jay/package.nix index b1995ee66130..f67aa04c4724 100644 --- a/pkgs/by-name/ja/jay/package.nix +++ b/pkgs/by-name/ja/jay/package.nix @@ -55,12 +55,12 @@ rustPlatform.buildRustPackage rec { install -D etc/jay-portals.conf $out/share/xdg-desktop-portal/jay-portals.conf ''; - meta = with lib; { + meta = { description = "Wayland compositor written in Rust"; homepage = "https://github.com/mahkoh/jay"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "jay"; }; } diff --git a/pkgs/by-name/ja/jazzy/package.nix b/pkgs/by-name/ja/jazzy/package.nix index ca9c0ec55d4d..cf22f02d9303 100644 --- a/pkgs/by-name/ja/jazzy/package.nix +++ b/pkgs/by-name/ja/jazzy/package.nix @@ -11,12 +11,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "jazzy"; - meta = with lib; { + meta = { description = "Command-line utility that generates documentation for Swift or Objective-C"; homepage = "https://github.com/realm/jazzy"; - license = licenses.mit; - platforms = platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ nicknovitski ]; }; diff --git a/pkgs/by-name/jb/jbake/package.nix b/pkgs/by-name/jb/jbake/package.nix index 31f288d748f4..4e66fb825ec8 100644 --- a/pkgs/by-name/jb/jbake/package.nix +++ b/pkgs/by-name/jb/jbake/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { ''; doCheck = true; - meta = with lib; { + meta = { description = "Java based, open source, static site/blog generator for developers & designers"; homepage = "https://jbake.org/"; - license = licenses.mit; - maintainers = with maintainers; [ moaxcp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moaxcp ]; }; } diff --git a/pkgs/by-name/jb/jbang/package.nix b/pkgs/by-name/jb/jbang/package.nix index 06d7246a7a37..84e8fdee14fa 100644 --- a/pkgs/by-name/jb/jbang/package.nix +++ b/pkgs/by-name/jb/jbang/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { $out/bin/jbang --version 2>&1 | grep -q "${version}" ''; - meta = with lib; { + meta = { description = "Run java as scripts anywhere"; mainProgram = "jbang"; longDescription = '' @@ -51,8 +51,8 @@ stdenv.mkDerivation rec { sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ moaxcp ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moaxcp ]; }; } diff --git a/pkgs/by-name/jb/jboss/package.nix b/pkgs/by-name/jb/jboss/package.nix index 7da5e8edaeb9..64b7268c1d54 100644 --- a/pkgs/by-name/jb/jboss/package.nix +++ b/pkgs/by-name/jb/jboss/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { find $out/bin -name \*.sh -print0 | xargs -0 sed -i -e '/#!\/bin\/sh/aJAVA_HOME=${jdk}' ''; - meta = with lib; { + meta = { homepage = "https://www.jboss.org/"; description = "Open Source J2EE application server"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl21; - platforms = platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; knownVulnerabilities = [ "CVE-2015-7501: remote code execution in apache-commons-collections: InvokerTransformer during deserialisation" ]; diff --git a/pkgs/by-name/jb/jbrowse/package.nix b/pkgs/by-name/jb/jbrowse/package.nix index 25738c034d9a..6a86bd446dd7 100644 --- a/pkgs/by-name/jb/jbrowse/package.nix +++ b/pkgs/by-name/jb/jbrowse/package.nix @@ -31,11 +31,11 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun --no-sandbox' 'Exec=jbrowse-desktop' ''; - meta = with lib; { + meta = { description = "Next-generation genome browser"; mainProgram = "jbrowse-desktop"; homepage = "https://jbrowse.org/jb2/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/jc/jcal/package.nix b/pkgs/by-name/jc/jcal/package.nix index 7bcfdfa47387..cc9c5e161ec2 100644 --- a/pkgs/by-name/jc/jcal/package.nix +++ b/pkgs/by-name/jc/jcal/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { preAutoreconf = "cd sources/"; - meta = with lib; { + meta = { description = "Jalali calendar is a small and portable free software library to manipulate date and time in Jalali calendar system"; homepage = "http://nongnu.org/jcal/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jc/jconvolver/package.nix b/pkgs/by-name/jc/jconvolver/package.nix index 89cb290b9613..58d3c79c3977 100644 --- a/pkgs/by-name/jc/jconvolver/package.nix +++ b/pkgs/by-name/jc/jconvolver/package.nix @@ -123,11 +123,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "JACK client and audio file convolver with reverb samples"; homepage = "https://kokkinizita.linuxaudio.org/linuxaudio/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jd/jdepend/package.nix b/pkgs/by-name/jd/jdepend/package.nix index 135c7e0a7501..9213809c7cdd 100644 --- a/pkgs/by-name/jd/jdepend/package.nix +++ b/pkgs/by-name/jd/jdepend/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/clarkware/jdepend/blob/${finalAttrs.src.rev}/CHANGELOG.md"; description = "Traverses Java class file directories and generates design quality metrics for each Java package"; homepage = "http://www.clarkware.com/software/JDepend.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/jd/jdiskreport/package.nix b/pkgs/by-name/jd/jdiskreport/package.nix index 0f11b0779357..5c89565d2a7e 100644 --- a/pkgs/by-name/jd/jdiskreport/package.nix +++ b/pkgs/by-name/jd/jdiskreport/package.nix @@ -56,16 +56,16 @@ stdenv.mkDerivation rec { desktopItems = [ desktopItem ]; - meta = with lib; { + meta = { homepage = "http://www.jgoodies.com/freeware/jdiskreport/"; description = "Graphical utility to visualize disk usage"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfreeRedistributable; # TODO freedist, libs under BSD-3 + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfreeRedistributable; # TODO freedist, libs under BSD-3 platforms = [ "x86_64-linux" "x86_64-darwin" ]; - maintainers = with maintainers; [ kylesferrazza ]; + maintainers = with lib.maintainers; [ kylesferrazza ]; mainProgram = "jdiskreport"; }; } diff --git a/pkgs/by-name/jd/jdom/package.nix b/pkgs/by-name/jd/jdom/package.nix index 10fe91ba4f0b..fa23e3952404 100644 --- a/pkgs/by-name/jd/jdom/package.nix +++ b/pkgs/by-name/jd/jdom/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Java-based solution for accessing, manipulating, and outputting XML data from Java code"; homepage = "http://www.jdom.org"; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsdOriginal; + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsdOriginal; }; } diff --git a/pkgs/by-name/je/jed/package.nix b/pkgs/by-name/je/jed/package.nix index 1e17aaf18163..60a6fddbcb86 100644 --- a/pkgs/by-name/je/jed/package.nix +++ b/pkgs/by-name/je/jed/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { install -D src/objs/rgrep $out/bin ''; - meta = with lib; { + meta = { description = "Programmable text editor written around S-Lang"; longDescription = '' JED is a freely available text editor for Unix, VMS, MSDOS, OS/2, BeOS, @@ -93,7 +93,7 @@ stdenv.mkDerivation rec { more ''; homepage = "https://www.jedsoft.org/jed/index.html"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = slang.meta.platforms; }; } diff --git a/pkgs/by-name/je/jefferson/package.nix b/pkgs/by-name/je/jefferson/package.nix index bc307d7a290c..12292f93253e 100644 --- a/pkgs/by-name/je/jefferson/package.nix +++ b/pkgs/by-name/je/jefferson/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "JFFS2 filesystem extraction tool"; homepage = "https://github.com/onekey-sec/jefferson"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tnias vlaci ]; diff --git a/pkgs/by-name/je/jekyll/package.nix b/pkgs/by-name/je/jekyll/package.nix index 45d48bc23ae7..84264e0c4775 100644 --- a/pkgs/by-name/je/jekyll/package.nix +++ b/pkgs/by-name/je/jekyll/package.nix @@ -41,7 +41,7 @@ bundlerApp { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Blog-aware, static site generator, written in Ruby"; longDescription = '' Jekyll is a simple, blog-aware, static site generator, written in Ruby. @@ -53,9 +53,9 @@ bundlerApp { ''; homepage = "https://jekyllrb.com/"; changelog = "https://jekyllrb.com/news/releases/"; - license = licenses.mit; - maintainers = [ maintainers.anthonyroussel ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.anthonyroussel ]; + platforms = lib.platforms.unix; mainProgram = "jekyll"; }; } diff --git a/pkgs/by-name/je/jelly/package.nix b/pkgs/by-name/je/jelly/package.nix index 7d0c111a9be0..89c118135f3f 100644 --- a/pkgs/by-name/je/jelly/package.nix +++ b/pkgs/by-name/je/jelly/package.nix @@ -25,12 +25,12 @@ python3Packages.buildPythonApplication { # the build to fail doCheck = false; - meta = with lib; { + meta = { description = "Recreational programming language inspired by J"; mainProgram = "jelly"; homepage = "https://github.com/DennisMitchell/jellylanguage"; - license = licenses.mit; - maintainers = [ maintainers.tckmn ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.tckmn ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/je/jellycli/package.nix b/pkgs/by-name/je/jellycli/package.nix index 94d83f6f7f82..af09c72062fe 100644 --- a/pkgs/by-name/je/jellycli/package.nix +++ b/pkgs/by-name/je/jellycli/package.nix @@ -26,7 +26,7 @@ buildGoModule rec { buildInputs = [ alsa-lib ]; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Jellyfin terminal client"; longDescription = '' @@ -34,8 +34,8 @@ buildGoModule rec { Subsonic comptabile servers (API >= 1.16), e.g., Navidrome. ''; homepage = "https://github.com/tryffel/jellycli"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ oxzi ]; mainProgram = "jellycli"; }; } diff --git a/pkgs/by-name/je/jellyfin-web/package.nix b/pkgs/by-name/je/jellyfin-web/package.nix index e816bcd3aaba..4eca104caf72 100644 --- a/pkgs/by-name/je/jellyfin-web/package.nix +++ b/pkgs/by-name/je/jellyfin-web/package.nix @@ -60,11 +60,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Web Client for Jellyfin"; homepage = "https://jellyfin.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ nyanloutre minijackson purcell diff --git a/pkgs/by-name/je/jellyfin/package.nix b/pkgs/by-name/je/jellyfin/package.nix index f8c58e68bee6..cf8be72196ea 100644 --- a/pkgs/by-name/je/jellyfin/package.nix +++ b/pkgs/by-name/je/jellyfin/package.nix @@ -49,12 +49,12 @@ buildDotnetModule rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Free Software Media System"; homepage = "https://jellyfin.org/"; # https://github.com/jellyfin/jellyfin/issues/610#issuecomment-537625510 - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ nyanloutre minijackson purcell diff --git a/pkgs/by-name/je/jenkins/package.nix b/pkgs/by-name/je/jenkins/package.nix index 5cd87aebdb10..ad482809e1fa 100644 --- a/pkgs/by-name/je/jenkins/package.nix +++ b/pkgs/by-name/je/jenkins/package.nix @@ -74,16 +74,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Extendable open source continuous integration server"; homepage = "https://jenkins.io/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ earldouglas ]; changelog = "https://www.jenkins.io/changelog-stable/#v${finalAttrs.version}"; mainProgram = "jenkins-cli"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/je/jextract-21/package.nix b/pkgs/by-name/je/jextract-21/package.nix index 68147eec93c2..ee87170a7011 100644 --- a/pkgs/by-name/je/jextract-21/package.nix +++ b/pkgs/by-name/je/jextract-21/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool which mechanically generates Java bindings from a native library headers"; mainProgram = "jextract"; homepage = "https://github.com/openjdk/jextract"; platforms = jdk21.meta.platforms; - license = licenses.gpl2Only; - maintainers = with maintainers; [ sharzy ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sharzy ]; }; } diff --git a/pkgs/by-name/je/jextract/package.nix b/pkgs/by-name/je/jextract/package.nix index 65d264787b83..49eeb4063551 100644 --- a/pkgs/by-name/je/jextract/package.nix +++ b/pkgs/by-name/je/jextract/package.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool which mechanically generates Java bindings from a native library headers"; mainProgram = "jextract"; homepage = "https://github.com/openjdk/jextract"; platforms = jdk25.meta.platforms; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jlesquembre sharzy ]; diff --git a/pkgs/by-name/jf/jf/package.nix b/pkgs/by-name/jf/jf/package.nix index 83ebcb125cb9..69bb87d6ede0 100644 --- a/pkgs/by-name/jf/jf/package.nix +++ b/pkgs/by-name/jf/jf/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { installManPage assets/jf.1 ''; - meta = with lib; { + meta = { description = "Small utility to safely format and print JSON objects in the commandline"; mainProgram = "jf"; homepage = "https://github.com/sayanarijit/jf"; - license = licenses.mit; - maintainers = [ maintainers.sayanarijit ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sayanarijit ]; }; } diff --git a/pkgs/by-name/jf/jffi/package.nix b/pkgs/by-name/jf/jffi/package.nix index 8d8cb04e69cf..0cddc9dec8a7 100644 --- a/pkgs/by-name/jf/jffi/package.nix +++ b/pkgs/by-name/jf/jffi/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { echo ${libffi} > $out/nix-support/depends ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Java Foreign Function Interface"; homepage = "https://github.com/jnr/jffi"; - platforms = platforms.unix; - license = licenses.asl20; - maintainers = with maintainers; [ bachp ]; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bachp ]; }; }) diff --git a/pkgs/by-name/jf/jflap/package.nix b/pkgs/by-name/jf/jflap/package.nix index 8f40b8794261..09177caa79bc 100644 --- a/pkgs/by-name/jf/jflap/package.nix +++ b/pkgs/by-name/jf/jflap/package.nix @@ -60,12 +60,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "GUI tool for experimenting with formal languages topics"; homepage = "https://www.jflap.org/"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ grnnja ]; platforms = jre8.meta.platforms; diff --git a/pkgs/by-name/jf/jfsutils/package.nix b/pkgs/by-name/jf/jfsutils/package.nix index 5902d2383ba4..a0cfb595d06e 100644 --- a/pkgs/by-name/jf/jfsutils/package.nix +++ b/pkgs/by-name/jf/jfsutils/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation rec { cp ./libfs/libfs.a $out/lib ''; - meta = with lib; { + meta = { description = "IBM JFS utilities"; homepage = "https://jfs.sourceforge.net"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jf/jftui/package.nix b/pkgs/by-name/jf/jftui/package.nix index 1bae1dd70ca9..4c3d4ae85c8e 100644 --- a/pkgs/by-name/jf/jftui/package.nix +++ b/pkgs/by-name/jf/jftui/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { install -Dm555 build/jftui $out/bin/jftui ''; - meta = with lib; { + meta = { description = "Jellyfin Terminal User Interface"; homepage = "https://github.com/Aanok/jftui"; - license = licenses.unlicense; - maintainers = [ maintainers.nyanloutre ]; - platforms = platforms.linux; + license = lib.licenses.unlicense; + maintainers = [ lib.maintainers.nyanloutre ]; + platforms = lib.platforms.linux; mainProgram = "jftui"; }; } diff --git a/pkgs/by-name/jg/jgmenu/package.nix b/pkgs/by-name/jg/jgmenu/package.nix index a552c9a2d14a..db4643e17746 100644 --- a/pkgs/by-name/jg/jgmenu/package.nix +++ b/pkgs/by-name/jg/jgmenu/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://github.com/johanmalm/jgmenu"; description = "Small X11 menu intended to be used with openbox and tint2"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/jh/jhead/package.nix b/pkgs/by-name/jh/jhead/package.nix index 7e85789f4f21..678f0c0f487b 100644 --- a/pkgs/by-name/jh/jhead/package.nix +++ b/pkgs/by-name/jh/jhead/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { cp -v *.txt $out/share/doc/${pname}-${version} ''; - meta = with lib; { + meta = { homepage = "https://www.sentex.net/~mwandel/jhead/"; description = "Exif Jpeg header manipulation tool"; - license = licenses.publicDomain; - maintainers = with maintainers; [ rycee ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ rycee ]; + platforms = lib.platforms.all; mainProgram = "jhead"; }; } diff --git a/pkgs/by-name/ji/jibri/package.nix b/pkgs/by-name/ji/jibri/package.nix index f48e2b903005..ba21f38becd8 100644 --- a/pkgs/by-name/ji/jibri/package.nix +++ b/pkgs/by-name/ji/jibri/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) jibri; }; - meta = with lib; { + meta = { description = "JItsi BRoadcasting Infrastructure"; mainProgram = "jibri"; longDescription = '' @@ -64,9 +64,9 @@ stdenv.mkDerivation rec { supported on a single jibri. ''; homepage = "https://github.com/jitsi/jibri"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - teams = [ teams.jitsi ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + teams = [ lib.teams.jitsi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ji/jicofo/package.nix b/pkgs/by-name/ji/jicofo/package.nix index 48aa5b031ac1..5a53a6159e10 100644 --- a/pkgs/by-name/ji/jicofo/package.nix +++ b/pkgs/by-name/ji/jicofo/package.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Server side focus component used in Jitsi Meet conferences"; mainProgram = "jicofo"; longDescription = '' JItsi COnference FOcus is a server side focus component used in Jitsi Meet conferences. ''; homepage = "https://github.com/jitsi/jicofo"; - license = licenses.asl20; - teams = [ teams.jitsi ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + teams = [ lib.teams.jitsi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ji/jigmo/package.nix b/pkgs/by-name/ji/jigmo/package.nix index 000d0388a5b3..0734fee1ea22 100644 --- a/pkgs/by-name/ji/jigmo/package.nix +++ b/pkgs/by-name/ji/jigmo/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Japanese Kanji font set which is the official successor to Hanazono Mincho"; homepage = "https://kamichikoichi.github.io/jigmo/"; - license = licenses.cc0; + license = lib.licenses.cc0; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ji/jikken/package.nix b/pkgs/by-name/ji/jikken/package.nix index 2ee17b4831d1..35b07c122bbd 100644 --- a/pkgs/by-name/ji/jikken/package.nix +++ b/pkgs/by-name/ji/jikken/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { ]; }; - meta = with lib; { + meta = { description = "Powerful, source control friendly REST API testing toolkit"; homepage = "https://jikken.io/"; changelog = "https://github.com/jikkenio/jikken/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ vinnymeller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vinnymeller ]; mainProgram = "jk"; }; } diff --git a/pkgs/by-name/ji/jing-trang/package.nix b/pkgs/by-name/ji/jing-trang/package.nix index d30d0438c4ea..99ac4447edde 100644 --- a/pkgs/by-name/ji/jing-trang/package.nix +++ b/pkgs/by-name/ji/jing-trang/package.nix @@ -54,16 +54,16 @@ stdenv.mkDerivation rec { doCheck = true; checkPhase = "ant test"; - meta = with lib; { + meta = { description = "RELAX NG validator in Java"; # The homepage is www.thaiopensource.com, but it links to googlecode.com # for downloads and call it the "project site". homepage = "https://www.thaiopensource.com/relaxng/trang.html"; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; - maintainers = [ maintainers.bjornfor ]; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/ji/jinja2-cli/package.nix b/pkgs/by-name/ji/jinja2-cli/package.nix index 2b9529444413..70f3a2bea768 100644 --- a/pkgs/by-name/ji/jinja2-cli/package.nix +++ b/pkgs/by-name/ji/jinja2-cli/package.nix @@ -49,10 +49,10 @@ python3.pkgs.buildPythonApplication rec { yaml = [ pyyaml ]; }; - meta = with lib; { + meta = { description = "CLI for Jinja2"; homepage = "https://github.com/mattrobenolt/jinja2-cli"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "jinja2"; }; diff --git a/pkgs/by-name/ji/jiq/package.nix b/pkgs/by-name/ji/jiq/package.nix index fc39e1b38023..dd68aa1b8a05 100644 --- a/pkgs/by-name/ji/jiq/package.nix +++ b/pkgs/by-name/ji/jiq/package.nix @@ -28,9 +28,9 @@ buildGoModule rec { --prefix PATH : ${lib.makeBinPath [ jq ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/fiatjaf/jiq"; - license = licenses.mit; + license = lib.licenses.mit; description = "Interactive JSON query tool using jq expressions"; mainProgram = "jiq"; maintainers = [ ]; diff --git a/pkgs/by-name/ji/jirafeau/package.nix b/pkgs/by-name/ji/jirafeau/package.nix index 33cc8d383e59..d3b515e41748 100644 --- a/pkgs/by-name/ji/jirafeau/package.nix +++ b/pkgs/by-name/ji/jirafeau/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) jirafeau; }; - meta = with lib; { + meta = { description = "Website permitting upload of a file in a simple way and giving a unique link to it"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; homepage = "https://gitlab.com/mojo42/Jirafeau"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ji/jiten/package.nix b/pkgs/by-name/ji/jiten/package.nix index 54aa702adae2..e716444fabd7 100644 --- a/pkgs/by-name/ji/jiten/package.nix +++ b/pkgs/by-name/ji/jiten/package.nix @@ -78,7 +78,7 @@ python3.pkgs.buildPythonApplication rec { --fish <(env _JITEN_COMPLETE=fish_source $out/bin/jiten) ''; - meta = with lib; { + meta = { description = "Japanese android/cli/web dictionary based on jmdict/kanjidic"; longDescription = '' Jiten is a Japanese dictionary based on JMDict/Kanjidic @@ -119,11 +119,11 @@ python3.pkgs.buildPythonApplication rec { Command-line interface ''; homepage = "https://github.com/obfusk/jiten"; - license = with licenses; [ + license = with lib.licenses; [ agpl3Plus # code cc-by-sa-30 # jmdict/kanjidic unfreeRedistributable # pitch data & audio are non-commercial ]; - maintainers = [ maintainers.obfusk ]; + maintainers = [ lib.maintainers.obfusk ]; }; } diff --git a/pkgs/by-name/ji/jitsi-excalidraw/package.nix b/pkgs/by-name/ji/jitsi-excalidraw/package.nix index 26b91355a739..970e69823190 100644 --- a/pkgs/by-name/ji/jitsi-excalidraw/package.nix +++ b/pkgs/by-name/ji/jitsi-excalidraw/package.nix @@ -35,11 +35,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Excalidraw collaboration backend for Jitsi"; homepage = "https://github.com/jitsi/excalidraw-backend"; - license = licenses.mit; - maintainers = with maintainers; [ camillemndn ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ camillemndn ]; mainProgram = "jitsi-excalidraw-backend"; }; } diff --git a/pkgs/by-name/ji/jitsi-meet-electron/package.nix b/pkgs/by-name/ji/jitsi-meet-electron/package.nix index 28dae1858b50..ca2e117371cb 100644 --- a/pkgs/by-name/ji/jitsi-meet-electron/package.nix +++ b/pkgs/by-name/ji/jitsi-meet-electron/package.nix @@ -120,14 +120,14 @@ buildNpmPackage rec { }) ]; - meta = with lib; { + meta = { changelog = "https://github.com/jitsi/jitsi-meet-electron/releases/tag/${src.rev}"; description = "Jitsi Meet desktop application powered by Electron"; homepage = "https://github.com/jitsi/jitsi-meet-electron"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "jitsi-meet-electron"; - maintainers = [ maintainers.tomasajt ]; - teams = [ teams.jitsi ]; + maintainers = [ lib.maintainers.tomasajt ]; + teams = [ lib.teams.jitsi ]; inherit (electron.meta) platforms; }; } diff --git a/pkgs/by-name/ji/jitsi-meet-prosody/package.nix b/pkgs/by-name/ji/jitsi-meet-prosody/package.nix index f1b8c4365c55..da1498b8ac32 100644 --- a/pkgs/by-name/ji/jitsi-meet-prosody/package.nix +++ b/pkgs/by-name/ji/jitsi-meet-prosody/package.nix @@ -31,14 +31,14 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Prosody configuration for Jitsi Meet"; longDescription = '' This package contains configuration for Prosody to be used with Jitsi Meet. ''; homepage = "https://github.com/jitsi/jitsi-meet/"; - license = licenses.asl20; - teams = [ teams.jitsi ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + teams = [ lib.teams.jitsi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ji/jitsi-videobridge/package.nix b/pkgs/by-name/ji/jitsi-videobridge/package.nix index fffdbd6b853e..c6ae0896ce42 100644 --- a/pkgs/by-name/ji/jitsi-videobridge/package.nix +++ b/pkgs/by-name/ji/jitsi-videobridge/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "WebRTC compatible video router"; longDescription = '' Jitsi Videobridge is an XMPP server component that allows for multiuser video communication. @@ -62,9 +62,9 @@ stdenv.mkDerivation { CPU horsepower is not that critical for performance. ''; homepage = "https://github.com/jitsi/jitsi-videobridge"; - license = licenses.asl20; - teams = [ teams.jitsi ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + teams = [ lib.teams.jitsi ]; + platforms = lib.platforms.linux; mainProgram = "jitsi-videobridge"; }; } diff --git a/pkgs/by-name/ji/jitsi/package.nix b/pkgs/by-name/ji/jitsi/package.nix index c7d2a47b77e6..f10caa8b259f 100644 --- a/pkgs/by-name/ji/jitsi/package.nix +++ b/pkgs/by-name/ji/jitsi/package.nix @@ -81,16 +81,16 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://desktop.jitsi.org/"; description = "Open Source Video Calls and Chat"; mainProgram = "jitsi"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.jitsi ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.jitsi ]; }; } diff --git a/pkgs/by-name/jj/jj-fzf/package.nix b/pkgs/by-name/jj/jj-fzf/package.nix index e109571e1f28..62c5ff003f1f 100644 --- a/pkgs/by-name/jj/jj-fzf/package.nix +++ b/pkgs/by-name/jj/jj-fzf/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Text UI for Jujutsu based on fzf"; homepage = "https://github.com/tim-janik/jj-fzf"; - license = licenses.mpl20; - maintainers = with maintainers; [ bbigras ]; - platforms = platforms.all; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ bbigras ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jl/jless/package.nix b/pkgs/by-name/jl/jless/package.nix index 10412d048943..3f72963e7321 100644 --- a/pkgs/by-name/jl/jless/package.nix +++ b/pkgs/by-name/jl/jless/package.nix @@ -24,13 +24,13 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ libxcb ]; - meta = with lib; { + meta = { description = "Command-line pager for JSON data"; mainProgram = "jless"; homepage = "https://jless.io"; changelog = "https://github.com/PaulJuliusMartinez/jless/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jfchevrette ]; }; diff --git a/pkgs/by-name/jm/jmespath/package.nix b/pkgs/by-name/jm/jmespath/package.nix index 3b2b70d09d52..90895b58be1e 100644 --- a/pkgs/by-name/jm/jmespath/package.nix +++ b/pkgs/by-name/jm/jmespath/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Golang implementation of JMESPath"; homepage = "https://github.com/jmespath/go-jmespath"; - license = licenses.asl20; - maintainers = with maintainers; [ cransom ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cransom ]; mainProgram = "jpgo"; }; } diff --git a/pkgs/by-name/jm/jmeter/package.nix b/pkgs/by-name/jm/jmeter/package.nix index 1f73b1966c23..37367a551f74 100644 --- a/pkgs/by-name/jm/jmeter/package.nix +++ b/pkgs/by-name/jm/jmeter/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { timeout --kill=1s 1s $out/bin/jmeter-mirror-server.sh || test "$?" = "124" ''; - meta = with lib; { + meta = { description = "100% pure Java desktop application designed to load test functional behavior and measure performance"; longDescription = '' The Apache JMeter desktop application is open source software, a 100% @@ -62,9 +62,9 @@ stdenv.mkDerivation rec { measure performance. It was originally designed for testing Web Applications but has since expanded to other test functions. ''; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; priority = 1; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/jm/jmol/package.nix b/pkgs/by-name/jm/jmol/package.nix index 4076550ebeb6..007afbbb156b 100644 --- a/pkgs/by-name/jm/jmol/package.nix +++ b/pkgs/by-name/jm/jmol/package.nix @@ -59,13 +59,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Java 3D viewer for chemical structures"; mainProgram = "jmol"; homepage = "https://sourceforge.net/projects/jmol"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl2; - platforms = platforms.all; - teams = [ teams.sage ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.all; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/jm/jmtpfs/package.nix b/pkgs/by-name/jm/jmtpfs/package.nix index 5c0540193ba6..abd79b31b874 100644 --- a/pkgs/by-name/jm/jmtpfs/package.nix +++ b/pkgs/by-name/jm/jmtpfs/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { libmtp ]; - meta = with lib; { + meta = { description = "FUSE filesystem for MTP devices like Android phones"; homepage = "https://github.com/JasonFerrara/jmtpfs"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.coconnor ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.coconnor ]; mainProgram = "jmtpfs"; }; } diff --git a/pkgs/by-name/jm/jmusicbot/package.nix b/pkgs/by-name/jm/jmusicbot/package.nix index b66cea7e3a8d..a07971d730f8 100644 --- a/pkgs/by-name/jm/jmusicbot/package.nix +++ b/pkgs/by-name/jm/jmusicbot/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { --add-flags "-Xmx1G -Dnogui=true -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 -jar $out/lib/JMusicBot" ''; - meta = with lib; { + meta = { description = "Discord music bot that's easy to set up and run yourself"; homepage = "https://github.com/jagrosh/MusicBot"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; maintainers = [ ]; inherit (jre_headless.meta) platforms; mainProgram = "JMusicBot"; diff --git a/pkgs/by-name/jn/jna/package.nix b/pkgs/by-name/jn/jna/package.nix index 2f676c76419e..9bf9e8beee65 100644 --- a/pkgs/by-name/jn/jna/package.nix +++ b/pkgs/by-name/jn/jna/package.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/java-native-access/jna/blob/${finalAttrs.version}/CHANGES.md"; description = "Java Native Access"; homepage = "https://github.com/java-native-access/jna"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 asl20 ]; - maintainers = with maintainers; [ nagy ]; - platforms = platforms.linux ++ platforms.darwin; + maintainers = with lib.maintainers; [ nagy ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/jn/jnetmap/package.nix b/pkgs/by-name/jn/jnetmap/package.nix index 45e235fd69c3..3657ba109c26 100644 --- a/pkgs/by-name/jn/jnetmap/package.nix +++ b/pkgs/by-name/jn/jnetmap/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Graphical network monitoring and documentation tool"; mainProgram = "jnetmap"; homepage = "http://www.rakudave.ch/jnetmap/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3Plus; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3Plus; # Upstream supports macOS and Windows too. - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/jn/jnr-posix/package.nix b/pkgs/by-name/jn/jnr-posix/package.nix index 0199e379a154..0a8063a3ae06 100644 --- a/pkgs/by-name/jn/jnr-posix/package.nix +++ b/pkgs/by-name/jn/jnr-posix/package.nix @@ -78,10 +78,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lightweight cross-platform POSIX emulation layer for Java, written in Java and is part of the JNR project"; homepage = "https://github.com/jnr/jnr-posix"; - license = with licenses; [ + license = with lib.licenses; [ epl20 gpl2Only lgpl21Only diff --git a/pkgs/by-name/jo/joe/package.nix b/pkgs/by-name/jo/joe/package.nix index 4907cee12cc7..fff23dba2c97 100644 --- a/pkgs/by-name/jo/joe/package.nix +++ b/pkgs/by-name/jo/joe/package.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { patches = [ ./macos-fix.patch ]; - meta = with lib; { + meta = { description = "Full featured terminal-based screen editor"; longDescription = '' JOE (Joe's Own Editor) is a full featured terminal-based screen editor @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { terminal - it has its own code for this). ''; homepage = "https://joe-editor.sourceforge.io"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/jo/jogl/package.nix b/pkgs/by-name/jo/jogl/package.nix index 47f441992038..06be6562a899 100644 --- a/pkgs/by-name/jo/jogl/package.nix +++ b/pkgs/by-name/jo/jogl/package.nix @@ -118,11 +118,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Java libraries for 3D Graphics, Multimedia and Processing"; homepage = "https://jogamp.org/"; changelog = "https://jogamp.org/deployment/jogamp-current/archive/ChangeLogs/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jo/johnny/package.nix b/pkgs/by-name/jo/johnny/package.nix index 77d69c1b4e94..0c41b21e0c6c 100644 --- a/pkgs/by-name/jo/johnny/package.nix +++ b/pkgs/by-name/jo/johnny/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://openwall.info/wiki/john/johnny"; description = "Open Source GUI frontend for John the Ripper"; mainProgram = "johnny"; - license = licenses.bsd2; - maintainers = with maintainers; [ Misaka13514 ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ Misaka13514 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jo/joker/package.nix b/pkgs/by-name/jo/joker/package.nix index fd31f828c6d9..649a9b8e6b93 100644 --- a/pkgs/by-name/jo/joker/package.nix +++ b/pkgs/by-name/jo/joker/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { homepage = "https://github.com/candid82/joker"; description = "Small Clojure interpreter and linter written in Go"; mainProgram = "joker"; - license = licenses.epl10; - maintainers = with maintainers; [ andrestylianos ]; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ andrestylianos ]; }; } diff --git a/pkgs/by-name/jo/jonquil/package.nix b/pkgs/by-name/jo/jonquil/package.nix index 8d1e04586c65..e9b40d20f3aa 100644 --- a/pkgs/by-name/jo/jonquil/package.nix +++ b/pkgs/by-name/jo/jonquil/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "JSON parser on top of TOML implementation"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; homepage = "https://github.com/toml-f/jonquil"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/jo/joomscan/package.nix b/pkgs/by-name/jo/joomscan/package.nix index e9007c83699d..8f145f05a443 100644 --- a/pkgs/by-name/jo/joomscan/package.nix +++ b/pkgs/by-name/jo/joomscan/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Joomla Vulnerability Scanner"; homepage = "https://wiki.owasp.org/index.php/Category:OWASP_Joomla_Vulnerability_Scanner_Project"; mainProgram = "joomscan.pl"; - maintainers = with maintainers; [ emilytrau ]; - license = licenses.gpl3Only; - platforms = platforms.all; + maintainers = with lib.maintainers; [ emilytrau ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jo/joplin-desktop/package.nix b/pkgs/by-name/jo/joplin-desktop/package.nix index 6d101a268506..33d9a9b8f3cd 100644 --- a/pkgs/by-name/jo/joplin-desktop/package.nix +++ b/pkgs/by-name/jo/joplin-desktop/package.nix @@ -233,7 +233,7 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Open source note taking and to-do application with synchronisation capabilities"; mainProgram = "joplin-desktop"; longDescription = '' @@ -244,8 +244,8 @@ stdenv.mkDerivation (finalAttrs: { Markdown format. ''; homepage = "https://joplinapp.org"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ fugi ]; platforms = electron.meta.platforms ++ lib.platforms.darwin; diff --git a/pkgs/by-name/jo/joshuto/package.nix b/pkgs/by-name/jo/joshuto/package.nix index a0a80ae9a4cb..6c1385554bea 100644 --- a/pkgs/by-name/jo/joshuto/package.nix +++ b/pkgs/by-name/jo/joshuto/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { --fish <($out/bin/joshuto completions fish) ''; - meta = with lib; { + meta = { description = "Ranger-like terminal file manager written in Rust"; homepage = "https://github.com/kamiyaa/joshuto"; changelog = "https://github.com/kamiyaa/joshuto/releases/tag/${src.rev}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ totoroot xrelkd ]; diff --git a/pkgs/by-name/jo/jost/package.nix b/pkgs/by-name/jo/jost/package.nix index b2b3ddbc2674..911edf4fe51e 100644 --- a/pkgs/by-name/jo/jost/package.nix +++ b/pkgs/by-name/jo/jost/package.nix @@ -21,10 +21,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/indestructible-type/Jost"; description = "Sans serif font by Indestructible Type"; - license = licenses.ofl; - maintainers = [ maintainers.ar1a ]; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.ar1a ]; }; } diff --git a/pkgs/by-name/jo/jot/package.nix b/pkgs/by-name/jo/jot/package.nix index 24645bb8490e..144355ed4068 100644 --- a/pkgs/by-name/jo/jot/package.nix +++ b/pkgs/by-name/jo/jot/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-B3CkXoSShZTnT3OlVaqRBbGIaOKiqri6AuYVrUHB6NQ="; - meta = with lib; { + meta = { description = "Rapid note management for the terminal"; homepage = "https://github.com/shashwatah/jot"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "jt"; }; } diff --git a/pkgs/by-name/jo/jotdown/package.nix b/pkgs/by-name/jo/jotdown/package.nix index bc7ebce7302b..68ac453c93f0 100644 --- a/pkgs/by-name/jo/jotdown/package.nix +++ b/pkgs/by-name/jo/jotdown/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-xPi/C9N3/9AsinmbHI/M9EGy4gvS7ZWXEl3xBf3f4LQ="; - meta = with lib; { + meta = { description = "Minimal Djot CLI"; mainProgram = "jotdown"; homepage = "https://github.com/hellux/jotdown"; changelog = "https://github.com/hellux/jotdown/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/jo/joularjx/package.nix b/pkgs/by-name/jo/joularjx/package.nix index 80a8d568c119..0710781fa0aa 100644 --- a/pkgs/by-name/jo/joularjx/package.nix +++ b/pkgs/by-name/jo/joularjx/package.nix @@ -32,11 +32,11 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Java-based agent for software power monitoring at the source code level"; homepage = "https://github.com/joular/joularjx"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ julienmalka ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ julienmalka ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jo/journaldriver/package.nix b/pkgs/by-name/jo/journaldriver/package.nix index bf6cd7a9b541..1f6456840ced 100644 --- a/pkgs/by-name/jo/journaldriver/package.nix +++ b/pkgs/by-name/jo/journaldriver/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage { ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Log forwarder from journald to Stackdriver Logging"; homepage = "https://code.tvl.fyi/about/ops/journaldriver"; - license = licenses.gpl3; - maintainers = [ maintainers.tazjin ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.tazjin ]; + platforms = lib.platforms.linux; mainProgram = "journaldriver"; }; } diff --git a/pkgs/by-name/jo/journalwatch/package.nix b/pkgs/by-name/jo/journalwatch/package.nix index 30d3fde59354..be2ab7f71d1c 100644 --- a/pkgs/by-name/jo/journalwatch/package.nix +++ b/pkgs/by-name/jo/journalwatch/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "journalwatch" ]; - meta = with lib; { + meta = { description = "Tool to find error messages in the systemd journal"; homepage = "https://github.com/The-Compiler/journalwatch"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ florianjacob ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ florianjacob ]; mainProgram = "journalwatch"; }; } diff --git a/pkgs/by-name/jo/joycond-cemuhook/package.nix b/pkgs/by-name/jo/joycond-cemuhook/package.nix index 1a5c9dc66cc3..4f0c09a4d14b 100644 --- a/pkgs/by-name/jo/joycond-cemuhook/package.nix +++ b/pkgs/by-name/jo/joycond-cemuhook/package.nix @@ -33,12 +33,12 @@ python3Packages.buildPythonApplication { termcolor ]; - meta = with lib; { + meta = { homepage = "https://github.com/joaorb64/joycond-cemuhook"; description = "Support for cemuhook's UDP protocol for joycond devices"; - license = licenses.mit; - maintainers = [ maintainers.noodlez1232 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.noodlez1232 ]; mainProgram = "joycond-cemuhook"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jo/joycond/package.nix b/pkgs/by-name/jo/joycond/package.nix index dff9c042cba2..97a938012d4d 100644 --- a/pkgs/by-name/jo/joycond/package.nix +++ b/pkgs/by-name/jo/joycond/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation { "/bin/setfacl" "${acl}/bin/setfacl" ''; - meta = with lib; { + meta = { homepage = "https://github.com/DanielOgorchock/joycond"; description = "Userspace daemon to combine joy-cons from the hid-nintendo kernel driver"; mainProgram = "joycond"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jo/joypixels/package.nix b/pkgs/by-name/jo/joypixels/package.nix index 2cf2347b5d4c..ab7d9d37e7e6 100644 --- a/pkgs/by-name/jo/joypixels/package.nix +++ b/pkgs/by-name/jo/joypixels/package.nix @@ -116,12 +116,12 @@ stdenv.mkDerivation rec { free = false; redistributable = true; }; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ toonn jtojnar ]; # Not quite accurate since it's a font, not a program, but clearly # indicates we're not actually building it from source. - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/jo/joystickwake/package.nix b/pkgs/by-name/jo/joystickwake/package.nix index 470902310baa..abc076d8e545 100644 --- a/pkgs/by-name/jo/joystickwake/package.nix +++ b/pkgs/by-name/jo/joystickwake/package.nix @@ -30,7 +30,7 @@ python3.pkgs.buildPythonApplication rec { ln -s $out/${python3.sitePackages}/etc $out/etc ''; - meta = with lib; { + meta = { description = "Joystick-aware screen waker"; mainProgram = "joystickwake"; longDescription = '' @@ -38,8 +38,8 @@ python3.pkgs.buildPythonApplication rec { This program works around the problem by temporarily disabling screen blankers when joystick activity is detected. ''; homepage = "https://github.com/foresto/joystickwake"; - maintainers = with maintainers; [ bertof ]; - license = licenses.mit; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ bertof ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jp/jp/package.nix b/pkgs/by-name/jp/jp/package.nix index bdba45d5e83f..181cd6e616f8 100644 --- a/pkgs/by-name/jp/jp/package.nix +++ b/pkgs/by-name/jp/jp/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-K6ZNtART7tcVBH5myV6vKrKWfnwK8yTa6/KK4QLyr00="; - meta = with lib; { + meta = { description = "Command line interface to the JMESPath expression language for JSON"; mainProgram = "jp"; homepage = "https://github.com/jmespath/jp"; - maintainers = with maintainers; [ cransom ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ cransom ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/jp/jpcre2/package.nix b/pkgs/by-name/jp/jpcre2/package.nix index 6286efa65164..a39a02ca3dec 100644 --- a/pkgs/by-name/jp/jpcre2/package.nix +++ b/pkgs/by-name/jp/jpcre2/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { buildInputs = [ pcre2 ]; - meta = with lib; { + meta = { homepage = "https://docs.neuzunix.com/jpcre2/latest/"; description = "C++ wrapper for PCRE2 Library"; platforms = lib.platforms.all; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/jp/jpeg-archive/package.nix b/pkgs/by-name/jp/jpeg-archive/package.nix index 7b0378949874..d6b873144e82 100644 --- a/pkgs/by-name/jp/jpeg-archive/package.nix +++ b/pkgs/by-name/jp/jpeg-archive/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation { --set PATH "$out/bin:${coreutils}/bin:${parallel}/bin:${findutils}/bin" ''; - meta = with lib; { + meta = { description = "Utilities for archiving photos for saving to long term storage or serving over the web"; homepage = "https://github.com/danielgtaylor/jpeg-archive"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jp/jpegexiforient/package.nix b/pkgs/by-name/jp/jpegexiforient/package.nix index d5bcdc945658..fa3a998729e9 100644 --- a/pkgs/by-name/jp/jpegexiforient/package.nix +++ b/pkgs/by-name/jp/jpegexiforient/package.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation { installPhase = '' install -Dt $out/bin jpegexiforient ''; - meta = with lib; { + meta = { description = "Utility program to get and set the Exif Orientation Tag"; homepage = "http://sylvana.net/jpegcrop/exif_orientation.html"; # Website doesn't mention any license, but I think it's safe to assume this # to be free since it's from IJG, the current maintainers of libjpeg - license = licenses.free; - platforms = platforms.all; + license = lib.licenses.free; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "jpegexiforient"; }; diff --git a/pkgs/by-name/jp/jpeginfo/package.nix b/pkgs/by-name/jp/jpeginfo/package.nix index 4deebb1e8be2..16fcdc37ef17 100644 --- a/pkgs/by-name/jp/jpeginfo/package.nix +++ b/pkgs/by-name/jp/jpeginfo/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { buildInputs = [ libjpeg ]; - meta = with lib; { + meta = { description = "Prints information and tests integrity of JPEG/JFIF files"; homepage = "https://www.kokkonen.net/tjko/projects.html"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.bjornfor ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.bjornfor ]; + platforms = lib.platforms.all; mainProgram = "jpeginfo"; }; } diff --git a/pkgs/by-name/jp/jpegoptim/package.nix b/pkgs/by-name/jp/jpegoptim/package.nix index fca75e9e1be7..53674c35cdc2 100644 --- a/pkgs/by-name/jp/jpegoptim/package.nix +++ b/pkgs/by-name/jp/jpegoptim/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { buildInputs = [ libjpeg ]; - meta = with lib; { + meta = { description = "Optimize JPEG files"; homepage = "https://www.kokkonen.net/tjko/projects.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "jpegoptim"; }; } diff --git a/pkgs/by-name/jp/jpegrescan/package.nix b/pkgs/by-name/jp/jpegrescan/package.nix index 042a84684bcb..f6524d6e9afb 100644 --- a/pkgs/by-name/jp/jpegrescan/package.nix +++ b/pkgs/by-name/jp/jpegrescan/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation { buildInputs = [ perl ]; - meta = with lib; { + meta = { description = "Losslessly shrink any JPEG file"; homepage = "https://github.com/kud/jpegrescan"; - license = licenses.publicDomain; - maintainers = with maintainers; [ ramkromberg ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ ramkromberg ]; + platforms = lib.platforms.all; mainProgram = "jpegrescan"; }; } diff --git a/pkgs/by-name/jp/jpexs/package.nix b/pkgs/by-name/jp/jpexs/package.nix index 5146f27d3be8..6e3223ea46dc 100644 --- a/pkgs/by-name/jp/jpexs/package.nix +++ b/pkgs/by-name/jp/jpexs/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { startupWMClass = "com-jpexs-decompiler-flash-gui-Main"; }; - meta = with lib; { + meta = { description = "Flash SWF decompiler and editor"; mainProgram = "ffdec"; longDescription = '' @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { texts or fonts. ''; homepage = "https://github.com/jindrapetrik/jpexs-decompiler"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; platforms = jdk8.meta.platforms; maintainers = with lib.maintainers; [ xrtxn diff --git a/pkgs/by-name/jp/jpsxdec/package.nix b/pkgs/by-name/jp/jpsxdec/package.nix index e8e6f380de2d..9ccb0e1c10dd 100644 --- a/pkgs/by-name/jp/jpsxdec/package.nix +++ b/pkgs/by-name/jp/jpsxdec/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { changelog = "https://github.com/m35/jpsxdec/blob/${finalAttrs.src.rev}/jpsxdec/doc/CHANGES.txt"; description = "Cross-platform PlayStation 1 audio and video converter"; homepage = "https://jpsxdec.blogspot.com/"; @@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { free = true; }; mainProgram = "jpsxdec"; - maintainers = with maintainers; [ zane ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ zane ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/jq/jq-lsp/package.nix b/pkgs/by-name/jq/jq-lsp/package.nix index 92c18134de7c..46bb118d2667 100644 --- a/pkgs/by-name/jq/jq-lsp/package.nix +++ b/pkgs/by-name/jq/jq-lsp/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { "-X main.builtBy=Nix" ]; - meta = with lib; { + meta = { description = "jq language server"; homepage = "https://github.com/wader/jq-lsp"; - license = licenses.mit; - maintainers = with maintainers; [ sysedwinistrator ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sysedwinistrator ]; mainProgram = "jq-lsp"; }; } diff --git a/pkgs/by-name/jq/jqp/package.nix b/pkgs/by-name/jq/jqp/package.nix index 2c7442258216..0edfdf99a854 100644 --- a/pkgs/by-name/jq/jqp/package.nix +++ b/pkgs/by-name/jq/jqp/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "TUI playground to experiment with jq"; mainProgram = "jqp"; homepage = "https://github.com/noahgorstein/jqp"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/jq/jquake/package.nix b/pkgs/by-name/jq/jquake/package.nix index 98058134a059..30c36011e9f8 100644 --- a/pkgs/by-name/jq/jquake/package.nix +++ b/pkgs/by-name/jq/jquake/package.nix @@ -67,15 +67,15 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Real-time earthquake map of Japan"; homepage = "https://jquake.net"; downloadPage = "https://jquake.net/en/terms.html?os=linux&arch=any"; changelog = "https://jquake.net/en/changelog.html"; - maintainers = with maintainers; [ nessdoor ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ nessdoor ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; mainProgram = "JQuake"; }; } diff --git a/pkgs/by-name/jr/jrsonnet/package.nix b/pkgs/by-name/jr/jrsonnet/package.nix index 7cb2b868a913..f2b117e6e214 100644 --- a/pkgs/by-name/jr/jrsonnet/package.nix +++ b/pkgs/by-name/jr/jrsonnet/package.nix @@ -39,11 +39,11 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Purely-functional configuration language that helps you define JSON data"; homepage = "https://github.com/CertainLach/jrsonnet"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lach ]; }; diff --git a/pkgs/by-name/js/jshon/package.nix b/pkgs/by-name/js/jshon/package.nix index b207f856a36c..b2bfd1290487 100644 --- a/pkgs/by-name/js/jshon/package.nix +++ b/pkgs/by-name/js/jshon/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { export DESTDIR=$out ''; - meta = with lib; { + meta = { homepage = "http://kmkeen.com/jshon"; description = "JSON parser designed for maximum convenience within the shell"; mainProgram = "jshon"; - license = licenses.free; - platforms = platforms.all; - maintainers = with maintainers; [ rushmorem ]; + license = lib.licenses.free; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ rushmorem ]; }; } diff --git a/pkgs/by-name/js/jsluice/package.nix b/pkgs/by-name/js/jsluice/package.nix index 23ac15c63d12..d1ac2b015ad6 100644 --- a/pkgs/by-name/js/jsluice/package.nix +++ b/pkgs/by-name/js/jsluice/package.nix @@ -22,10 +22,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Tool for extracting URLs, paths, secrets, and other data from JavaScript source code"; homepage = "https://github.com/BishopFox/jsluice"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/js/json-fortran/package.nix b/pkgs/by-name/js/json-fortran/package.nix index ffe328b197bb..9da0ffba7cd0 100644 --- a/pkgs/by-name/js/json-fortran/package.nix +++ b/pkgs/by-name/js/json-fortran/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { rm -r $out/nix ''; - meta = with lib; { + meta = { description = "Modern Fortran JSON API"; homepage = "https://github.com/jacobwilliams/json-fortran"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/js/json-glib/package.nix b/pkgs/by-name/js/json-glib/package.nix index 1d94f5c32aec..806638889ef6 100644 --- a/pkgs/by-name/js/json-glib/package.nix +++ b/pkgs/by-name/js/json-glib/package.nix @@ -102,11 +102,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library providing (de)serialization support for the JavaScript Object Notation (JSON) format"; homepage = "https://gitlab.gnome.org/GNOME/json-glib"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = with platforms; unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/js/json-plot/package.nix b/pkgs/by-name/js/json-plot/package.nix index 7b0f08c523ad..742238e6adeb 100644 --- a/pkgs/by-name/js/json-plot/package.nix +++ b/pkgs/by-name/js/json-plot/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Dead simple terminal plots from JSON (or CSV) data. Bar charts, line charts, scatter plots, histograms and heatmaps are supported"; homepage = "https://github.com/sgreben/jp"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "jp"; }; } diff --git a/pkgs/by-name/js/json2hcl/package.nix b/pkgs/by-name/js/json2hcl/package.nix index 5b5cab3e8d9e..766db2f6672b 100644 --- a/pkgs/by-name/js/json2hcl/package.nix +++ b/pkgs/by-name/js/json2hcl/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Convert JSON to HCL, and vice versa"; mainProgram = "json2hcl"; homepage = "https://github.com/kvz/json2hcl"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/js/json2ts/package.nix b/pkgs/by-name/js/json2ts/package.nix index afd374da6e2a..5797c9125499 100644 --- a/pkgs/by-name/js/json2ts/package.nix +++ b/pkgs/by-name/js/json2ts/package.nix @@ -24,13 +24,13 @@ buildNpmPackage { mv temp.json tsconfig.json ''; - meta = with lib; { + meta = { mainProgram = "json2ts"; description = "Compile JSON Schema to TypeScript type declarations"; homepage = "https://github.com/bcherny/json-schema-to-typescript"; changelog = "https://github.com/bcherny/json-schema-to-typescript/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hsjobeki ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hsjobeki ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/js/json2tsv/package.nix b/pkgs/by-name/js/json2tsv/package.nix index 9b49c3fd927c..83d2e4d44eeb 100644 --- a/pkgs/by-name/js/json2tsv/package.nix +++ b/pkgs/by-name/js/json2tsv/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "JSON to TSV converter"; homepage = "https://codemadness.org/json2tsv.html"; - license = licenses.isc; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/js/json_c/package.nix b/pkgs/by-name/js/json_c/package.nix index 04022602426d..44fe5db5ba5e 100644 --- a/pkgs/by-name/js/json_c/package.nix +++ b/pkgs/by-name/js/json_c/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "BUILD_APPS" false) ]; - meta = with lib; { + meta = { description = "JSON implementation in C"; longDescription = '' JSON-C implements a reference counting object model that allows you to @@ -37,8 +37,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://github.com/json-c/json-c/wiki"; changelog = "https://github.com/json-c/json-c/blob/${finalAttrs.src.rev}/ChangeLog"; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; }) diff --git a/pkgs/by-name/js/jsoncpp/package.nix b/pkgs/by-name/js/jsoncpp/package.nix index 729dd5408735..9e57fa185353 100644 --- a/pkgs/by-name/js/jsoncpp/package.nix +++ b/pkgs/by-name/js/jsoncpp/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { (stdenv.buildPlatform != stdenv.hostPlatform) || secureMemory ) "-DJSONCPP_WITH_TESTS=OFF"; - meta = with lib; { + meta = { homepage = "https://github.com/open-source-parsers/jsoncpp"; description = "C++ library for interacting with JSON"; - maintainers = with maintainers; [ ttuegel ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ ttuegel ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/js/jsonfmt/package.nix b/pkgs/by-name/js/jsonfmt/package.nix index d9c5f1f9c752..83119abd762a 100644 --- a/pkgs/by-name/js/jsonfmt/package.nix +++ b/pkgs/by-name/js/jsonfmt/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Formatter for JSON files"; homepage = "https://github.com/caarlos0/jsonfmt"; changelog = "https://github.com/caarlos0/jsonfmt/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "jsonfmt"; }; diff --git a/pkgs/by-name/js/jsonnet-bundler/package.nix b/pkgs/by-name/js/jsonnet-bundler/package.nix index 4750a17cd0cf..e33b790b7a3c 100644 --- a/pkgs/by-name/js/jsonnet-bundler/package.nix +++ b/pkgs/by-name/js/jsonnet-bundler/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Jsonnet package manager"; homepage = "https://github.com/jsonnet-bundler/jsonnet-bundler"; - license = licenses.asl20; - maintainers = with maintainers; [ preisschild ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ preisschild ]; mainProgram = "jb"; }; } diff --git a/pkgs/by-name/js/jsonrpc-glib/package.nix b/pkgs/by-name/js/jsonrpc-glib/package.nix index 33720e56ac6d..fbeaef44ec20 100644 --- a/pkgs/by-name/js/jsonrpc-glib/package.nix +++ b/pkgs/by-name/js/jsonrpc-glib/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library to communicate using the JSON-RPC 2.0 specification"; homepage = "https://gitlab.gnome.org/GNOME/jsonrpc-glib"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/js/jsonwatch/package.nix b/pkgs/by-name/js/jsonwatch/package.nix index bfdf357ecab8..4acdc15ef0cf 100644 --- a/pkgs/by-name/js/jsonwatch/package.nix +++ b/pkgs/by-name/js/jsonwatch/package.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-D29pmt97DYfpYa9EwK+IlggR3zQFGzOy/Ky01UGI3tg="; - meta = with lib; { + meta = { description = "Like watch -d but for JSON"; longDescription = '' jsonwatch is a command line utility with which you can track @@ -28,8 +28,8 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/dbohdan/jsonwatch"; changelog = "https://github.com/dbohdan/jsonwatch/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "jsonwatch"; }; } diff --git a/pkgs/by-name/js/jstest-gtk/package.nix b/pkgs/by-name/js/jstest-gtk/package.nix index d7c9cd7264c8..396c445343d7 100644 --- a/pkgs/by-name/js/jstest-gtk/package.nix +++ b/pkgs/by-name/js/jstest-gtk/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation { xorg.libX11 ]; - meta = with lib; { + meta = { description = "Simple joystick tester based on Gtk+"; longDescription = '' It provides you with a list of attached joysticks, a way to display which @@ -38,9 +38,9 @@ stdenv.mkDerivation { to calibrate your joystick. ''; homepage = "https://github.com/Grumbel/jstest-gtk"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wucke13 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wucke13 ]; + platforms = lib.platforms.linux; mainProgram = "jstest-gtk"; }; } diff --git a/pkgs/by-name/js/jsubfinder/package.nix b/pkgs/by-name/js/jsubfinder/package.nix index 774fa5ba4507..18df77c69466 100644 --- a/pkgs/by-name/js/jsubfinder/package.nix +++ b/pkgs/by-name/js/jsubfinder/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-pr4KkszyzEl+yLJousx29tr7UZDJf0arEfXBb7eumww="; - meta = with lib; { + meta = { description = "Tool to search for in Javascript hidden subdomains and secrets"; mainProgram = "jsubfinder"; homepage = "https://github.com/ThreatUnkown/jsubfinder"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/jt/jtag-remote-server/package.nix b/pkgs/by-name/jt/jtag-remote-server/package.nix index 25e7ed6aa9a9..287099ff04fe 100644 --- a/pkgs/by-name/jt/jtag-remote-server/package.nix +++ b/pkgs/by-name/jt/jtag-remote-server/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libftdi1 ]; - meta = with lib; { + meta = { description = "Remote JTAG server for remote debugging"; mainProgram = "jtag-remote-server"; homepage = "https://github.com/jiegec/jtag-remote-server"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/jt/jtc/package.nix b/pkgs/by-name/jt/jtc/package.nix index 2200ea54331e..adb03226f735 100644 --- a/pkgs/by-name/jt/jtc/package.nix +++ b/pkgs/by-name/jt/jtc/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "JSON manipulation and transformation tool"; mainProgram = "jtc"; homepage = "https://github.com/ldn-softdev/jtc"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ju/jugglinglab/package.nix b/pkgs/by-name/ju/jugglinglab/package.nix index 38b3c9eabfe0..623131b2279e 100644 --- a/pkgs/by-name/ju/jugglinglab/package.nix +++ b/pkgs/by-name/ju/jugglinglab/package.nix @@ -80,15 +80,15 @@ maven.buildMavenPackage rec { --add-flags "-jar $out/share/jugglinglab/JugglingLab.jar" ''; - meta = with lib; { + meta = { description = "Program to visualize different juggling pattens"; homepage = "https://jugglinglab.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "jugglinglab"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ wnklmnn tomasajt ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ju/juicefs/package.nix b/pkgs/by-name/ju/juicefs/package.nix index 28c93623c016..b3c8b3ceb26a 100644 --- a/pkgs/by-name/ju/juicefs/package.nix +++ b/pkgs/by-name/ju/juicefs/package.nix @@ -31,10 +31,10 @@ buildGoModule rec { ln -s $out/bin/juicefs $out/bin/mount.juicefs ''; - meta = with lib; { + meta = { description = "Distributed POSIX file system built on top of Redis and S3"; homepage = "https://www.juicefs.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/ju/juicity/package.nix b/pkgs/by-name/ju/juicity/package.nix index ff201501a7a6..74aeefa35413 100644 --- a/pkgs/by-name/ju/juicity/package.nix +++ b/pkgs/by-name/ju/juicity/package.nix @@ -38,10 +38,10 @@ buildGoModule rec { --replace /usr/bin/juicity-client $out/bin/juicity-client ''; - meta = with lib; { + meta = { homepage = "https://github.com/juicity/juicity"; description = "Quic-based proxy protocol"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ oluceps ]; }; } diff --git a/pkgs/by-name/ju/juju/package.nix b/pkgs/by-name/ju/juju/package.nix index 4f9058dcc089..e2bd9d30452f 100644 --- a/pkgs/by-name/ju/juju/package.nix +++ b/pkgs/by-name/ju/juju/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { command = "HOME=\"$(mktemp -d)\" juju --version"; }; - meta = with lib; { + meta = { description = "Open source modelling tool for operating software in the cloud"; homepage = "https://juju.is"; - license = licenses.mit; - maintainers = with maintainers; [ citadelcore ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ citadelcore ]; mainProgram = "juju"; }; } diff --git a/pkgs/by-name/ju/julia-mono/package.nix b/pkgs/by-name/ju/julia-mono/package.nix index a34ff0eb6fde..374e1e9f2d66 100644 --- a/pkgs/by-name/ju/julia-mono/package.nix +++ b/pkgs/by-name/ju/julia-mono/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monospaced font for scientific and technical computing"; longDescription = '' JuliaMono is a monospaced typeface designed for use in text editing @@ -32,9 +32,9 @@ stdenvNoCC.mkDerivation rec { 2020 JuliaCon conference in Lisbon, Portugal (which of course didn’t physically happen in Lisbon, but online). ''; - maintainers = with maintainers; [ suhr ]; - platforms = with platforms; all; + maintainers = with lib.maintainers; [ suhr ]; + platforms = with lib.platforms; all; homepage = "https://juliamono.netlify.app/"; - license = licenses.ofl; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/ju/julius/package.nix b/pkgs/by-name/ju/julius/package.nix index be56dc23ea97..3b8a37720db5 100644 --- a/pkgs/by-name/ju/julius/package.nix +++ b/pkgs/by-name/ju/julius/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/bvschaik/julius"; description = "Open source re-implementation of Caesar III"; mainProgram = "julius"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ Thra11 matteopacini ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ju/jump/package.nix b/pkgs/by-name/ju/jump/package.nix index 0228ab8d4418..fee16aff1d27 100644 --- a/pkgs/by-name/ju/jump/package.nix +++ b/pkgs/by-name/ju/jump/package.nix @@ -39,7 +39,7 @@ buildGoModule rec { --zsh <($out/bin/jump shell zsh) ''; - meta = with lib; { + meta = { description = "Navigate directories faster by learning your habits"; longDescription = '' Jump integrates with the shell and learns about your @@ -47,7 +47,7 @@ buildGoModule rec { strives to give you the best directory for the shortest search term. ''; homepage = "https://github.com/gsamokovarov/jump"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "jump"; }; diff --git a/pkgs/by-name/ju/jumpnbump/package.nix b/pkgs/by-name/ju/jumpnbump/package.nix index d2721f2db4d0..c025e519b78e 100644 --- a/pkgs/by-name/ju/jumpnbump/package.nix +++ b/pkgs/by-name/ju/jumpnbump/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Cute, true multiplayer platform game with bunnies"; homepage = "https://libregames.gitlab.io/jumpnbump/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ iblech ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ iblech ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ju/jumppad/package.nix b/pkgs/by-name/ju/jumppad/package.nix index 271e140a05c9..ef9089112e52 100644 --- a/pkgs/by-name/ju/jumppad/package.nix +++ b/pkgs/by-name/ju/jumppad/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { # Kubernetes, Docker, and GCC. doCheck = false; - meta = with lib; { + meta = { description = "Tool for building modern cloud native development environments"; homepage = "https://jumppad.dev"; - license = licenses.mpl20; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ cpcloud ]; mainProgram = "jumppad"; }; } diff --git a/pkgs/by-name/ju/junction/package.nix b/pkgs/by-name/ju/junction/package.nix index b64b5a3ecee1..3381aa33be08 100644 --- a/pkgs/by-name/ju/junction/package.nix +++ b/pkgs/by-name/ju/junction/package.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { mainProgram = "re.sonny.Junction"; description = "Choose the application to open files and links"; homepage = "https://apps.gnome.org/Junction/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ hqurve ]; - teams = [ teams.gnome-circle ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hqurve ]; + teams = [ lib.teams.gnome-circle ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ju/juno-theme/package.nix b/pkgs/by-name/ju/juno-theme/package.nix index 50491498c47f..fd6827dc25a9 100644 --- a/pkgs/by-name/ju/juno-theme/package.nix +++ b/pkgs/by-name/ju/juno-theme/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "GTK themes inspired by epic vscode themes"; homepage = "https://github.com/EliverLara/Juno"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = [ maintainers.gvolpe ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.gvolpe ]; }; } diff --git a/pkgs/by-name/ju/justify/package.nix b/pkgs/by-name/ju/justify/package.nix index e17af0d5bcee..a2f729f595bd 100644 --- a/pkgs/by-name/ju/justify/package.nix +++ b/pkgs/by-name/ju/justify/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { install -D justify $out/bin/justify ''; - meta = with lib; { + meta = { homepage = "https://tildegit.org/jns/justify"; description = "Simple text alignment tool that supports left/right/center/fill justify alignment"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; mainProgram = "justify"; - maintainers = with maintainers; [ xfnw ]; + maintainers = with lib.maintainers; [ xfnw ]; }; } diff --git a/pkgs/by-name/jx/jxplorer/package.nix b/pkgs/by-name/jx/jxplorer/package.nix index 83f7dbd0fb99..a8c7a8140c26 100644 --- a/pkgs/by-name/jx/jxplorer/package.nix +++ b/pkgs/by-name/jx/jxplorer/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { --set JAVA_HOME ${jdk8} ''; - meta = with lib; { + meta = { description = "Java Ldap Browser"; homepage = "https://sourceforge.net/projects/jxplorer/"; license = lib.licenses.asl11; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "jxplorer"; }; } diff --git a/pkgs/by-name/jx/jxrlib/package.nix b/pkgs/by-name/jx/jxrlib/package.nix index 7ec21d055e49..0ef86f2bc480 100644 --- a/pkgs/by-name/jx/jxrlib/package.nix +++ b/pkgs/by-name/jx/jxrlib/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { QUILT_PATCHES=debian/patches quilt push -a ''; - meta = with lib; { + meta = { description = "Implementation of the JPEG XR image codec standard"; homepage = "https://jxrlib.codeplex.com"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/k2/k2tf/package.nix b/pkgs/by-name/k2/k2tf/package.nix index 4a277964bf83..77cef7307377 100644 --- a/pkgs/by-name/k2/k2tf/package.nix +++ b/pkgs/by-name/k2/k2tf/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { "-X main.commit=v${version}" ]; - meta = with lib; { + meta = { description = "Kubernetes YAML to Terraform HCL converter"; mainProgram = "k2tf"; homepage = "https://github.com/sl1pm4t/k2tf"; - license = licenses.mpl20; - maintainers = [ maintainers.flokli ]; + license = lib.licenses.mpl20; + maintainers = [ lib.maintainers.flokli ]; }; } diff --git a/pkgs/by-name/k3/k3sup/package.nix b/pkgs/by-name/k3/k3sup/package.nix index 3440f82e1fe2..83b3c60d42a7 100644 --- a/pkgs/by-name/k3/k3sup/package.nix +++ b/pkgs/by-name/k3/k3sup/package.nix @@ -50,12 +50,12 @@ buildGoModule rec { --fish <($out/bin/k3sup completion fish) ''; - meta = with lib; { + meta = { homepage = "https://github.com/alexellis/k3sup"; description = "Bootstrap Kubernetes with k3s over SSH"; mainProgram = "k3sup"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ welteki qjoly ]; diff --git a/pkgs/by-name/k4/k40-whisperer/package.nix b/pkgs/by-name/k4/k40-whisperer/package.nix index 38d8100d34e7..9cfb5cbcc02d 100644 --- a/pkgs/by-name/k4/k40-whisperer/package.nix +++ b/pkgs/by-name/k4/k40-whisperer/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { --prefix PYTHONPATH : $out ''; - meta = with lib; { + meta = { description = '' Control software for the stock K40 Laser controller ''; @@ -76,8 +76,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.scorchworks.com/K40whisperer/k40whisperer.html"; downloadPage = "https://www.scorchworks.com/K40whisperer/k40whisperer.html#download"; - license = licenses.gpl3; - maintainers = with maintainers; [ fooker ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ fooker ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ka/kabeljau/package.nix b/pkgs/by-name/ka/kabeljau/package.nix index 0c43141bb7c8..6937a9bafe18 100644 --- a/pkgs/by-name/ka/kabeljau/package.nix +++ b/pkgs/by-name/ka/kabeljau/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Survive as a stray cat in an ncurses game"; mainProgram = "kabeljau"; homepage = "https://codeberg.org/annaaurora/kabeljau"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ annaaurora ]; }; } diff --git a/pkgs/by-name/ka/kacst/package.nix b/pkgs/by-name/ka/kacst/package.nix index 8d8a0de7992c..9fe114b8fd2b 100644 --- a/pkgs/by-name/ka/kacst/package.nix +++ b/pkgs/by-name/ka/kacst/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Latin-Arabic TrueType fonts"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = with lib.maintainers; [ serge ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ka/kaf/package.nix b/pkgs/by-name/ka/kaf/package.nix index 65fec0f2e434..332e7fdfedcf 100644 --- a/pkgs/by-name/ka/kaf/package.nix +++ b/pkgs/by-name/ka/kaf/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { --fish <($out/bin/kaf completion fish) ''; - meta = with lib; { + meta = { description = "Modern CLI for Apache Kafka, written in Go"; mainProgram = "kaf"; homepage = "https://github.com/birdayz/kaf"; - license = licenses.asl20; - maintainers = with maintainers; [ zarelit ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zarelit ]; }; } diff --git a/pkgs/by-name/ka/kafka-cmak/package.nix b/pkgs/by-name/ka/kafka-cmak/package.nix index d2913e230a88..04dd46debff8 100644 --- a/pkgs/by-name/ka/kafka-cmak/package.nix +++ b/pkgs/by-name/ka/kafka-cmak/package.nix @@ -39,10 +39,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Cluster Manager for Apache Kafka, previously known as Kafka Manager"; - license = licenses.apsl20; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.apsl20; + maintainers = with lib.maintainers; [ cafkafk ]; platforms = lib.platforms.unix; mainProgram = "cmak"; }; diff --git a/pkgs/by-name/ka/kafka-delta-ingest/package.nix b/pkgs/by-name/ka/kafka-delta-ingest/package.nix index 26e6e1b1181b..c31fab728429 100644 --- a/pkgs/by-name/ka/kafka-delta-ingest/package.nix +++ b/pkgs/by-name/ka/kafka-delta-ingest/package.nix @@ -51,12 +51,12 @@ rustPlatform.buildRustPackage { # many tests seem to require a running kafka instance doCheck = false; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Highly efficient daemon for streaming data from Kafka into Delta Lake"; mainProgram = "kafka-delta-ingest"; homepage = "https://github.com/delta-io/kafka-delta-ingest"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ka/kail/package.nix b/pkgs/by-name/ka/kail/package.nix index c25223395763..922c3ff59a9a 100644 --- a/pkgs/by-name/ka/kail/package.nix +++ b/pkgs/by-name/ka/kail/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { vendorHash = "sha256-u6/LsLphaqYswJkAuqgrgknnm+7MnaeH+kf9BPcdtrc="; - meta = with lib; { + meta = { description = "Kubernetes log viewer"; homepage = "https://github.com/boz/kail"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ offline vdemeester ]; diff --git a/pkgs/by-name/ka/kaitai-struct-compiler/package.nix b/pkgs/by-name/ka/kaitai-struct-compiler/package.nix index c6b08dccf873..cf273f2523e5 100644 --- a/pkgs/by-name/ka/kaitai-struct-compiler/package.nix +++ b/pkgs/by-name/ka/kaitai-struct-compiler/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/kaitai-struct-compiler --prefix PATH : ${lib.makeBinPath [ jre ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/kaitai-io/kaitai_struct_compiler"; description = "Compiler to generate binary data parsers in C++ / C# / Go / Java / JavaScript / Lua / Perl / PHP / Python / Ruby "; - license = licenses.gpl3Only; - maintainers = with maintainers; [ qubasa ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ qubasa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ka/kakasi/package.nix b/pkgs/by-name/ka/kakasi/package.nix index cf05aad7a9cc..7064324c6a85 100644 --- a/pkgs/by-name/ka/kakasi/package.nix +++ b/pkgs/by-name/ka/kakasi/package.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ]; - meta = with lib; { + meta = { description = "Kanji Kana Simple Inverter"; longDescription = '' KAKASI is the language processing filter to convert Kanji @@ -22,8 +22,8 @@ stdenv.mkDerivation rec { helpful to read Japanese documents. ''; homepage = "http://kakasi.namazu.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; src = fetchurl { diff --git a/pkgs/by-name/ka/kalamine/package.nix b/pkgs/by-name/ka/kalamine/package.nix index 017ac8ed19eb..fe65e1329af2 100644 --- a/pkgs/by-name/ka/kalamine/package.nix +++ b/pkgs/by-name/ka/kalamine/package.nix @@ -31,10 +31,10 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "kalamine" ]; - meta = with lib; { + meta = { description = "Keyboard Layout Maker"; homepage = "https://github.com/OneDeadKey/kalamine/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "kalamine"; }; diff --git a/pkgs/by-name/ka/kaldi/package.nix b/pkgs/by-name/ka/kaldi/package.nix index aa3508733945..5703c366f9ff 100644 --- a/pkgs/by-name/ka/kaldi/package.nix +++ b/pkgs/by-name/ka/kaldi/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Speech Recognition Toolkit"; homepage = "https://kaldi-asr.org"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ka/kalibrate-hackrf/package.nix b/pkgs/by-name/ka/kalibrate-hackrf/package.nix index 18a41567fd57..fbac3666a101 100644 --- a/pkgs/by-name/ka/kalibrate-hackrf/package.nix +++ b/pkgs/by-name/ka/kalibrate-hackrf/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation { mv $out/bin/kal $out/bin/kal-hackrf ''; - meta = with lib; { + meta = { description = "Calculate local oscillator frequency offset in hackrf devices"; longDescription = '' Kalibrate, or kal, can scan for GSM base stations in a given frequency @@ -47,9 +47,9 @@ stdenv.mkDerivation { This package is for hackrf devices. ''; homepage = "https://github.com/scateu/kalibrate-hackrf"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = [ maintainers.mog ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.mog ]; mainProgram = "kal-hackrf"; }; } diff --git a/pkgs/by-name/ka/kalibrate-rtl/package.nix b/pkgs/by-name/ka/kalibrate-rtl/package.nix index 87fa1f2aeaef..8211f52539ee 100644 --- a/pkgs/by-name/ka/kalibrate-rtl/package.nix +++ b/pkgs/by-name/ka/kalibrate-rtl/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { libusb1 ]; - meta = with lib; { + meta = { description = "Calculate local oscillator frequency offset in RTL-SDR devices"; longDescription = '' Kalibrate, or kal, can scan for GSM base stations in a given frequency @@ -41,12 +41,12 @@ stdenv.mkDerivation { This package is for RTL-SDR devices. ''; homepage = "https://github.com/steve-m/kalibrate-rtl"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ bjornfor viraptor ]; mainProgram = "kal"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ka/kallisto/package.nix b/pkgs/by-name/ka/kallisto/package.nix index a773fc881103..cec86f056bf3 100644 --- a/pkgs/by-name/ka/kallisto/package.nix +++ b/pkgs/by-name/ka/kallisto/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Near-optimal quantification of transcripts from RNA-seq data"; longDescription = '' kallisto is a program for quantifying abundances of transcripts @@ -58,8 +58,8 @@ stdenv.mkDerivation rec { ''; mainProgram = "kallisto"; homepage = "https://pachterlab.github.io/kallisto"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = [ maintainers.arcadio ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.arcadio ]; }; } diff --git a/pkgs/by-name/ka/kamal/package.nix b/pkgs/by-name/ka/kamal/package.nix index 2bf89a9ca040..a97c14fd6905 100644 --- a/pkgs/by-name/ka/kamal/package.nix +++ b/pkgs/by-name/ka/kamal/package.nix @@ -11,11 +11,11 @@ bundlerApp { exes = [ "kamal" ]; - meta = with lib; { + meta = { description = "Deploy web apps anywhere"; homepage = "https://kamal-deploy.org/"; - license = licenses.mit; - maintainers = with maintainers; [ nathanruiz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nathanruiz ]; mainProgram = "kamal"; }; } diff --git a/pkgs/by-name/ka/kana/package.nix b/pkgs/by-name/ka/kana/package.nix index 93fe877665f6..3d237f66e23c 100644 --- a/pkgs/by-name/ka/kana/package.nix +++ b/pkgs/by-name/ka/kana/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "16" ) "-Wno-error=incompatible-function-pointer-types"; - meta = with lib; { + meta = { description = "Learn Japanese hiragana and katakana characters"; homepage = "https://gitlab.gnome.org/fkinoshita/kana"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "kana"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ka/kanagawa-gtk-theme/package.nix b/pkgs/by-name/ka/kanagawa-gtk-theme/package.nix index 4f33ec40c797..c98ec89e924c 100644 --- a/pkgs/by-name/ka/kanagawa-gtk-theme/package.nix +++ b/pkgs/by-name/ka/kanagawa-gtk-theme/package.nix @@ -33,11 +33,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "GTK theme with the Kanagawa colour palette"; homepage = "https://github.com/Fausto-Korpsvart/Kanagawa-GKT-Theme"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ iynaix ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ iynaix ]; platforms = gtk3.meta.platforms; }; } diff --git a/pkgs/by-name/ka/kanagawa-icon-theme/package.nix b/pkgs/by-name/ka/kanagawa-icon-theme/package.nix index 42573489d134..d2e7deb95be8 100644 --- a/pkgs/by-name/ka/kanagawa-icon-theme/package.nix +++ b/pkgs/by-name/ka/kanagawa-icon-theme/package.nix @@ -38,11 +38,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Icon theme for the Kanagawa colour palette"; homepage = "https://github.com/Fausto-Korpsvart/Kanagawa-GKT-Theme"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ iynaix ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ iynaix ]; platforms = gtk3.meta.platforms; }; } diff --git a/pkgs/by-name/ka/kanata/package.nix b/pkgs/by-name/ka/kanata/package.nix index e7fbd0b14f55..dc28d596d754 100644 --- a/pkgs/by-name/ka/kanata/package.nix +++ b/pkgs/by-name/ka/kanata/package.nix @@ -67,15 +67,15 @@ rustPlatform.buildRustPackage (finalAttrs: { null; }; - meta = with lib; { + meta = { description = "Tool to improve keyboard comfort and usability with advanced customization"; homepage = "https://github.com/jtroo/kanata"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ linj auscyber ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "kanata"; }; }) diff --git a/pkgs/by-name/ka/kanit-font/package.nix b/pkgs/by-name/ka/kanit-font/package.nix index d503fae0340b..9de5a9a53cd8 100644 --- a/pkgs/by-name/ka/kanit-font/package.nix +++ b/pkgs/by-name/ka/kanit-font/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://cadsondemak.github.io/kanit/"; description = "Loopless Thai and sans serif Latin typeface for contemporary and futuristic uses"; longDescription = '' @@ -40,8 +40,8 @@ stdenv.mkDerivation { which allows the design to enjoy decreased spacing between letters while preserving readability and legibility at smaller point sizes. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.toastal ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.toastal ]; }; } diff --git a/pkgs/by-name/ka/kanjidraw/package.nix b/pkgs/by-name/ka/kanjidraw/package.nix index 367e043e468e..625ee87a2d13 100644 --- a/pkgs/by-name/ka/kanjidraw/package.nix +++ b/pkgs/by-name/ka/kanjidraw/package.nix @@ -30,7 +30,7 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "kanjidraw" ]; - meta = with lib; { + meta = { description = "Handwritten kanji recognition"; mainProgram = "kanjidraw"; longDescription = '' @@ -44,10 +44,10 @@ python3.pkgs.buildPythonApplication rec { Kanji draw Android app. ''; homepage = "https://github.com/obfusk/kanjidraw"; - license = with licenses; [ + license = with lib.licenses; [ agpl3Plus # code cc-by-sa-30 # data.json ]; - maintainers = [ maintainers.obfusk ]; + maintainers = [ lib.maintainers.obfusk ]; }; } diff --git a/pkgs/by-name/ka/kapitonov-plugins-pack/package.nix b/pkgs/by-name/ka/kapitonov-plugins-pack/package.nix index 5fe18fb1265a..37f5224b0e78 100644 --- a/pkgs/by-name/ka/kapitonov-plugins-pack/package.nix +++ b/pkgs/by-name/ka/kapitonov-plugins-pack/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { # Fix linking issues with C++ code generated by Faust env.NIX_LDFLAGS = "-lstdc++ -lm"; - meta = with lib; { + meta = { description = "Set of LADSPA and LV2 plugins for guitar sound processing"; homepage = "https://github.com/olegkapitonov/Kapitonov-Plugins-Pack"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ magnetophon ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ magnetophon ]; }; } diff --git a/pkgs/by-name/ka/kapow/package.nix b/pkgs/by-name/ka/kapow/package.nix index d25c5e04b952..6dc4f20ae7ed 100644 --- a/pkgs/by-name/ka/kapow/package.nix +++ b/pkgs/by-name/ka/kapow/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { buildInputs = [ libsForQt5.qtbase ]; - meta = with lib; { + meta = { description = "Punch clock to track time spent on projects"; mainProgram = "kapow"; homepage = "https://gottcode.org/kapow/"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/ka/kapowbang/package.nix b/pkgs/by-name/ka/kapowbang/package.nix index d4e8e9cdd66c..de502bfb78f5 100644 --- a/pkgs/by-name/ka/kapowbang/package.nix +++ b/pkgs/by-name/ka/kapowbang/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/BBVA/kapow"; description = "Expose command-line tools over HTTP"; - license = licenses.asl20; - maintainers = with maintainers; [ nilp0inter ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nilp0inter ]; mainProgram = "kapow"; }; } diff --git a/pkgs/by-name/ka/kapp/package.nix b/pkgs/by-name/ka/kapp/package.nix index cd8d895fd631..bfb326cb792e 100644 --- a/pkgs/by-name/ka/kapp/package.nix +++ b/pkgs/by-name/ka/kapp/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { package = kapp; }; - meta = with lib; { + meta = { description = "CLI tool that encourages Kubernetes users to manage bulk resources with an application abstraction for grouping"; homepage = "https://carvel.dev/kapp/"; - license = licenses.asl20; - maintainers = with maintainers; [ brodes ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ brodes ]; mainProgram = "kapp"; }; } diff --git a/pkgs/by-name/ka/karma/package.nix b/pkgs/by-name/ka/karma/package.nix index c4c6822eea05..ccb192234773 100644 --- a/pkgs/by-name/ka/karma/package.nix +++ b/pkgs/by-name/ka/karma/package.nix @@ -59,12 +59,12 @@ buildGoModule rec { passthru.tests.karma = nixosTests.karma; - meta = with lib; { + meta = { changelog = "https://github.com/prymitive/karma/blob/${src.rev}/CHANGELOG.md"; description = "Alert dashboard for Prometheus Alertmanager"; mainProgram = "karma"; homepage = "https://karma-dashboard.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ nukaduka ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nukaduka ]; }; } diff --git a/pkgs/by-name/ka/kas/package.nix b/pkgs/by-name/ka/kas/package.nix index 0edaa64a417d..65f01be0e9c1 100644 --- a/pkgs/by-name/ka/kas/package.nix +++ b/pkgs/by-name/ka/kas/package.nix @@ -42,10 +42,10 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "kas" ]; - meta = with lib; { + meta = { homepage = "https://github.com/siemens/kas"; description = "Setup tool for bitbake based projects"; - license = licenses.mit; - maintainers = with maintainers; [ bachp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bachp ]; }; } diff --git a/pkgs/by-name/ka/kasmweb/package.nix b/pkgs/by-name/ka/kasmweb/package.nix index bb528e57e664..c0f4f7612615 100644 --- a/pkgs/by-name/ka/kasmweb/package.nix +++ b/pkgs/by-name/ka/kasmweb/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.kasmweb.com/"; description = "Streaming containerized apps and desktops to end-users"; - license = licenses.unfree; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/by-name/ka/katago/package.nix b/pkgs/by-name/ka/katago/package.nix index 7bc1f7f30024..b2536ee3e8a1 100644 --- a/pkgs/by-name/ka/katago/package.nix +++ b/pkgs/by-name/ka/katago/package.nix @@ -134,12 +134,12 @@ stdenv'.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Go engine modeled after AlphaGo Zero"; mainProgram = "katago"; homepage = "https://github.com/lightvector/katago"; - license = licenses.mit; - maintainers = [ maintainers.omnipotententity ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.omnipotententity ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ka/katawa-shoujo/package.nix b/pkgs/by-name/ka/katawa-shoujo/package.nix index 664565b21141..289896146572 100644 --- a/pkgs/by-name/ka/katawa-shoujo/package.nix +++ b/pkgs/by-name/ka/katawa-shoujo/package.nix @@ -180,7 +180,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Bishoujo-style visual novel by Four Leaf Studios, built in Ren'Py"; longDescription = '' Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku High School for disabled children, @@ -199,11 +199,11 @@ stdenv.mkDerivation rec { # https://www.katawa-shoujo.com/about.php # November 2022: Update, is it still ND? # https://ks.renai.us/viewtopic.php?f=13&p=248149#p248149 - license = with licenses; [ cc-by-nc-nd-30 ]; - maintainers = with maintainers; [ OPNA2608 ]; + license = with lib.licenses; [ cc-by-nc-nd-30 ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; # Building Ren'Py6 from source would allow more, but too much of a hassle - platforms = platforms.x86; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.x86; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # Needs different srcDetails & installPhase broken = stdenv.hostPlatform.isWindows; }; diff --git a/pkgs/by-name/ka/kati/package.nix b/pkgs/by-name/ka/kati/package.nix index 661248987aee..e956e4798851 100644 --- a/pkgs/by-name/ka/kati/package.nix +++ b/pkgs/by-name/ka/kati/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { install -D ckati $out/bin/ckati ''; - meta = with lib; { + meta = { description = "Experimental GNU make clone"; mainProgram = "ckati"; homepage = "https://github.com/google/kati"; - platforms = platforms.all; - license = licenses.asl20; - maintainers = with maintainers; [ danielfullmer ]; + platforms = lib.platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danielfullmer ]; }; } diff --git a/pkgs/by-name/ka/kaufkauflist/package.nix b/pkgs/by-name/ka/kaufkauflist/package.nix index 8fb3073405a4..5ff7103e7da9 100644 --- a/pkgs/by-name/ka/kaufkauflist/package.nix +++ b/pkgs/by-name/ka/kaufkauflist/package.nix @@ -50,11 +50,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://codeberg.org/annaaurora/kaufkauflist"; description = "To-do list for shopping or other use cases"; - license = licenses.mit; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "kaufdbclean"; }; } diff --git a/pkgs/by-name/kb/kbdlight/package.nix b/pkgs/by-name/kb/kbdlight/package.nix index efb971d634fc..4db6a2d50e0b 100644 --- a/pkgs/by-name/kb/kbdlight/package.nix +++ b/pkgs/by-name/kb/kbdlight/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { --replace 4755 0755 ''; - meta = with lib; { + meta = { homepage = "https://github.com/hobarrera/kbdlight"; description = "Very simple application that changes MacBooks' keyboard backlight level"; mainProgram = "kbdlight"; - license = licenses.isc; - maintainers = [ maintainers.womfoo ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.womfoo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kb/kbst/package.nix b/pkgs/by-name/kb/kbst/package.nix index 93fa27fc26ca..43d5a507ef4e 100644 --- a/pkgs/by-name/kb/kbst/package.nix +++ b/pkgs/by-name/kb/kbst/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { $out/bin/kbst help | grep v${version} > /dev/null ''; - meta = with lib; { + meta = { description = "Kubestack framework CLI"; mainProgram = "kbst"; homepage = "https://www.kubestack.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ mtrsk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mtrsk ]; }; } diff --git a/pkgs/by-name/kb/kbt/package.nix b/pkgs/by-name/kb/kbt/package.nix index dfc0380b9e10..f499a9f6cb6d 100644 --- a/pkgs/by-name/kb/kbt/package.nix +++ b/pkgs/by-name/kb/kbt/package.nix @@ -28,10 +28,10 @@ rustPlatform.buildRustPackage rec { xorg.libX11 ]; - meta = with lib; { + meta = { description = "Keyboard tester in terminal"; homepage = "https://github.com/bloznelis/kbt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "kbt"; }; diff --git a/pkgs/by-name/kc/kcat/package.nix b/pkgs/by-name/kc/kcat/package.nix index 22d64830edb9..b01def6c0f97 100644 --- a/pkgs/by-name/kc/kcat/package.nix +++ b/pkgs/by-name/kc/kcat/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { libserdes ]; - meta = with lib; { + meta = { description = "Generic non-JVM producer and consumer for Apache Kafka"; mainProgram = "kcat"; homepage = "https://github.com/edenhill/kcat"; - license = licenses.bsd2; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ nyarly ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ nyarly ]; }; } diff --git a/pkgs/by-name/kc/kcgi/package.nix b/pkgs/by-name/kc/kcgi/package.nix index 94044168851b..bc3e11117cfc 100644 --- a/pkgs/by-name/kc/kcgi/package.nix +++ b/pkgs/by-name/kc/kcgi/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { installFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "https://kristaps.bsd.lv/kcgi"; description = "Minimal CGI and FastCGI library for C/C++"; - license = licenses.isc; - platforms = platforms.all; + license = lib.licenses.isc; + platforms = lib.platforms.all; mainProgram = "kfcgi"; }; } diff --git a/pkgs/by-name/kc/kchat/package.nix b/pkgs/by-name/kc/kchat/package.nix index c472bc2eafbe..5d6834004b3d 100644 --- a/pkgs/by-name/kc/kchat/package.nix +++ b/pkgs/by-name/kc/kchat/package.nix @@ -29,11 +29,11 @@ appimageTools.wrapType2 rec { substituteInPlace $out/share/applications/kchat-desktop.desktop --replace-fail 'Exec=AppRun' 'Exec=${meta.mainProgram}' ''; - meta = with lib; { + meta = { description = "Instant messaging service part of Infomaniak KSuite"; homepage = "https://www.infomaniak.com/en/apps/download-kchat"; - license = licenses.unfree; - maintainers = [ maintainers.vinetos ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.vinetos ]; mainProgram = "kchat"; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; diff --git a/pkgs/by-name/kc/kclvm_cli/package.nix b/pkgs/by-name/kc/kclvm_cli/package.nix index f98c8f49e271..f860b0c8ab72 100644 --- a/pkgs/by-name/kc/kclvm_cli/package.nix +++ b/pkgs/by-name/kc/kclvm_cli/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { rustc ]; - meta = with lib; { + meta = { description = "High-performance implementation of KCL written in Rust that uses LLVM as the compiler backend"; homepage = "https://github.com/kcl-lang/kcl"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ selfuryon ]; mainProgram = "kclvm_cli"; diff --git a/pkgs/by-name/kc/kconf/package.nix b/pkgs/by-name/kc/kconf/package.nix index 52ed756298ca..9cf9e3c3c075 100644 --- a/pkgs/by-name/kc/kconf/package.nix +++ b/pkgs/by-name/kc/kconf/package.nix @@ -33,12 +33,12 @@ buildGoModule rec { --zsh <($out/bin/kconf completion zsh) ''; - meta = with lib; { + meta = { description = "Opinionated command line tool for managing multiple kubeconfigs"; mainProgram = "kconf"; homepage = "https://github.com/particledecay/kconf"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thmzlt sailord vinetos diff --git a/pkgs/by-name/kc/kcov/package.nix b/pkgs/by-name/kc/kcov/package.nix index 221bf6fed279..32541b7c3c39 100644 --- a/pkgs/by-name/kc/kcov/package.nix +++ b/pkgs/by-name/kc/kcov/package.nix @@ -70,7 +70,7 @@ let ''; }; - meta = with lib; { + meta = { description = "Code coverage tester for compiled programs, Python scripts and shell scripts"; longDescription = '' @@ -82,13 +82,13 @@ let ''; homepage = "http://simonkagstrom.github.io/kcov/index.html"; - license = licenses.gpl2; + license = lib.licenses.gpl2; changelog = "https://github.com/SimonKagstrom/kcov/blob/master/ChangeLog"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ gal_bolle ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }; in diff --git a/pkgs/by-name/kc/kcp/package.nix b/pkgs/by-name/kc/kcp/package.nix index e2733a5c925b..6d46f2275a12 100644 --- a/pkgs/by-name/kc/kcp/package.nix +++ b/pkgs/by-name/kc/kcp/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Fast and Reliable ARQ Protocol"; homepage = "https://github.com/skywind3000/kcp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/kd/kdash/package.nix b/pkgs/by-name/kd/kdash/package.nix index 2bf5a244d3f0..b3069ab51b10 100644 --- a/pkgs/by-name/kd/kdash/package.nix +++ b/pkgs/by-name/kd/kdash/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-72DuM64wj8WW6soagodOFIeHvVn1CPpb1T3Y7GQYsbs="; - meta = with lib; { + meta = { description = "Simple and fast dashboard for Kubernetes"; mainProgram = "kdash"; homepage = "https://github.com/kdash-rs/kdash"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ matthiasbeyer ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/kd/kdbg/package.nix b/pkgs/by-name/kd/kdbg/package.nix index 0583b0502e72..917139a42651 100644 --- a/pkgs/by-name/kd/kdbg/package.nix +++ b/pkgs/by-name/kd/kdbg/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { homepage = "https://www.kdbg.org/"; description = '' A graphical user interface to gdb, the GNU debugger. It provides an @@ -48,6 +48,6 @@ stdenv.mkDerivation rec { stepping through code. ''; mainProgram = "kdbg"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/kd/kddockwidgets/package.nix b/pkgs/by-name/kd/kddockwidgets/package.nix index 7e4cebd2659b..213dca33129c 100644 --- a/pkgs/by-name/kd/kddockwidgets/package.nix +++ b/pkgs/by-name/kd/kddockwidgets/package.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "KDAB's Dock Widget Framework for Qt"; homepage = "https://www.kdab.com/development-resources/qt-tools/kddockwidgets"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Only ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ _1000teslas tmarkus ]; diff --git a/pkgs/by-name/kd/kde-gruvbox/package.nix b/pkgs/by-name/kd/kde-gruvbox/package.nix index f034d7e1fc14..f1cb4139b7be 100644 --- a/pkgs/by-name/kd/kde-gruvbox/package.nix +++ b/pkgs/by-name/kd/kde-gruvbox/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Suite of themes for KDE applications that match the retro gruvbox colorscheme"; homepage = "https://github.com/printesoi/kde-gruvbox"; - license = licenses.mit; - maintainers = [ maintainers.ymarkus ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ymarkus ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/kd/kde-rounded-corners/package.nix b/pkgs/by-name/kd/kde-rounded-corners/package.nix index 51849df7a489..d0a2a6eaff37 100644 --- a/pkgs/by-name/kd/kde-rounded-corners/package.nix +++ b/pkgs/by-name/kd/kde-rounded-corners/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { kdePackages.qtbase ]; - meta = with lib; { + meta = { description = "Rounds the corners of your windows"; homepage = "https://github.com/matinlotfali/KDE-Rounded-Corners"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ devusb ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ devusb ]; }; } diff --git a/pkgs/by-name/kd/kdeltachat/package.nix b/pkgs/by-name/kd/kdeltachat/package.nix index ff2ab0db040f..b3935553a873 100644 --- a/pkgs/by-name/kd/kdeltachat/package.nix +++ b/pkgs/by-name/kd/kdeltachat/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation { qtmultimedia ]; - meta = with lib; { + meta = { description = "Delta Chat client using Kirigami framework"; mainProgram = "kdeltachat"; homepage = "https://git.sr.ht/~link2xt/kdeltachat"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kd/kdiff3/package.nix b/pkgs/by-name/kd/kdiff3/package.nix index a3d8e0b76b2c..c3686a36f503 100644 --- a/pkgs/by-name/kd/kdiff3/package.nix +++ b/pkgs/by-name/kd/kdiff3/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { ln -s "$out/Applications/KDE/kdiff3.app/Contents/MacOS" "$out/bin" ''; - meta = with lib; { + meta = { description = "Compares and merges 2 or 3 files or directories"; mainProgram = "kdiff3"; homepage = "https://invent.kde.org/sdk/kdiff3"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; inherit (kdePackages.qtbase.meta) platforms; }; }) diff --git a/pkgs/by-name/kd/kdiskmark/package.nix b/pkgs/by-name/kd/kdiskmark/package.nix index 70aab77d7243..9e4a4b065e5f 100644 --- a/pkgs/by-name/kd/kdiskmark/package.nix +++ b/pkgs/by-name/kd/kdiskmark/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { (lib.makeBinPath [ fio ]) ]; - meta = with lib; { + meta = { description = "HDD and SSD benchmark tool with a friendly graphical user interface"; longDescription = '' If kdiskmark is not run as root it can rely on polkit to get the necessary @@ -50,9 +50,9 @@ stdenv.mkDerivation rec { on NixOS, nix-env will not work. ''; homepage = "https://github.com/JonMagon/KDiskMark"; - maintainers = [ maintainers.symphorien ]; - license = licenses.gpl3Only; - platforms = platforms.linux; + maintainers = [ lib.maintainers.symphorien ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; mainProgram = "kdiskmark"; }; } diff --git a/pkgs/by-name/kd/kdocker/package.nix b/pkgs/by-name/kd/kdocker/package.nix index b02db7ebe101..7882e270c90b 100644 --- a/pkgs/by-name/kd/kdocker/package.nix +++ b/pkgs/by-name/kd/kdocker/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation (finalAttrs: { qt6.qtbase ]; - meta = with lib; { + meta = { description = "Dock any application into the system tray"; homepage = "https://github.com/user-none/KDocker"; changelog = "https://github.com/user-none/KDocker/blob/${finalAttrs.version}/ChangeLog"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ hexclover ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ hexclover ]; + platforms = lib.platforms.linux; mainProgram = "kdocker"; }; }) diff --git a/pkgs/by-name/kd/kdoctor/package.nix b/pkgs/by-name/kd/kdoctor/package.nix index 4e743b9963ad..3cdd2278d0bd 100644 --- a/pkgs/by-name/kd/kdoctor/package.nix +++ b/pkgs/by-name/kd/kdoctor/package.nix @@ -28,17 +28,17 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Environment analysis tool for Kotlin Multiplatform Mobile"; longDescription = '' KDoctor is a command-line tool that helps to set up the environment for Kotlin Multiplatform Mobile app development. ''; homepage = "https://github.com/Kotlin/kdoctor"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "kdoctor"; - maintainers = with maintainers; [ sironheart ]; - platforms = platforms.darwin; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ sironheart ]; + platforms = lib.platforms.darwin; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/kd/kdotool/package.nix b/pkgs/by-name/kd/kdotool/package.nix index ae5adf9a38d5..a43d252b47d9 100644 --- a/pkgs/by-name/kd/kdotool/package.nix +++ b/pkgs/by-name/kd/kdotool/package.nix @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ dbus ]; - meta = with lib; { + meta = { description = "xdotool clone for KDE Wayland"; homepage = "https://github.com/jinliu/kdotool"; - license = licenses.asl20; - maintainers = with maintainers; [ kotatsuyaki ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kotatsuyaki ]; }; } diff --git a/pkgs/by-name/ke/keama/package.nix b/pkgs/by-name/ke/keama/package.nix index 106f608e54c2..89621fbd6b07 100644 --- a/pkgs/by-name/ke/keama/package.nix +++ b/pkgs/by-name/ke/keama/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { "keama" ]; - meta = with lib; { + meta = { description = "Kea Migration Assistent"; longDescription = '' @@ -31,9 +31,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://gitlab.isc.org/isc-projects/dhcp/-/wikis/kea-migration-assistant"; - license = licenses.mpl20; - platforms = platforms.unix; - maintainers = with maintainers; [ blitz ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ blitz ]; mainProgram = "keama"; }; } diff --git a/pkgs/by-name/ke/keepalived/package.nix b/pkgs/by-name/ke/keepalived/package.nix index fed5d5ae8395..d52f632dd211 100644 --- a/pkgs/by-name/ke/keepalived/package.nix +++ b/pkgs/by-name/ke/keepalived/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { "--enable-snmp" ]; - meta = with lib; { + meta = { homepage = "https://keepalived.org"; description = "Routing software written in C"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.raitobezarius ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.raitobezarius ]; mainProgram = "keepalived"; }; } diff --git a/pkgs/by-name/ke/keepass-charactercopy/package.nix b/pkgs/by-name/ke/keepass-charactercopy/package.nix index d06a3f45cdc5..e887849270bd 100644 --- a/pkgs/by-name/ke/keepass-charactercopy/package.nix +++ b/pkgs/by-name/ke/keepass-charactercopy/package.nix @@ -24,7 +24,7 @@ let cp $src $out/lib/dotnet/keepass/ ''; - meta = with lib; { + meta = { description = "Enables KeePass to copy individual characters by index"; longDescription = '' Character Copy is a lightweight KeePass plugin that integrates into KeePass' entry menu and @@ -38,8 +38,8 @@ let "x86_64-linux" ]; # licensing info was found in source files https://github.com/SketchingDev/Character-Copy/search?q=license - license = licenses.gpl2; - maintainers = with maintainers; [ nazarewk ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ nazarewk ]; }; }; in diff --git a/pkgs/by-name/ke/keepass-diff/package.nix b/pkgs/by-name/ke/keepass-diff/package.nix index 6a9d334d7400..43eb581f74da 100644 --- a/pkgs/by-name/ke/keepass-diff/package.nix +++ b/pkgs/by-name/ke/keepass-diff/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-QjcXeLLIvegzETIu3xbZQ+o2WYxR6xkALVOOWYWhGUo="; - meta = with lib; { + meta = { description = "CLI-tool to diff Keepass (.kdbx) files"; homepage = "https://keepass-diff.narigo.dev/"; - license = licenses.mit; - maintainers = with maintainers; [ wamserma ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wamserma ]; mainProgram = "keepass-diff"; }; } diff --git a/pkgs/by-name/ke/keepass-keepassrpc/package.nix b/pkgs/by-name/ke/keepass-keepassrpc/package.nix index 85aada8031da..dd61d90b34a1 100644 --- a/pkgs/by-name/ke/keepass-keepassrpc/package.nix +++ b/pkgs/by-name/ke/keepass-keepassrpc/package.nix @@ -16,12 +16,12 @@ let hash = "sha256-p5dYluCrXAKhBhlm6sQ3QQE3gLMJzEZsHXwGnVeXFos="; }; - meta = with lib; { + meta = { description = "KeePassRPC plugin that needs to be installed inside KeePass in order for Kee to be able to connect your browser to your passwords"; homepage = "https://github.com/kee-org/keepassrpc"; platforms = [ "x86_64-linux" ]; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ svsdep mgregoire ]; diff --git a/pkgs/by-name/ke/keepass-keetraytotp/package.nix b/pkgs/by-name/ke/keepass-keetraytotp/package.nix index 5326d3614ef8..055756fdd001 100644 --- a/pkgs/by-name/ke/keepass-keetraytotp/package.nix +++ b/pkgs/by-name/ke/keepass-keetraytotp/package.nix @@ -24,7 +24,7 @@ let cp $src $out/lib/dotnet/keepass/ ''; - meta = with lib; { + meta = { description = "Augments KeePass with TOTP user interface"; longDescription = '' This KeePass2 plugin adds advanced support for generating Time-based One-Time Passwords (TOTPs) @@ -37,8 +37,8 @@ let "i686-linux" "x86_64-linux" ]; - license = licenses.gpl3; - maintainers = with maintainers; [ nazarewk ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ nazarewk ]; }; }; in diff --git a/pkgs/by-name/ke/keepass-qrcodeview/package.nix b/pkgs/by-name/ke/keepass-qrcodeview/package.nix index bb4f910abf28..2b5a55d20a0c 100644 --- a/pkgs/by-name/ke/keepass-qrcodeview/package.nix +++ b/pkgs/by-name/ke/keepass-qrcodeview/package.nix @@ -24,7 +24,7 @@ let cp $src $out/lib/dotnet/keepass/ ''; - meta = with lib; { + meta = { description = "Enables KeePass to display data as QR code images"; longDescription = '' KeePassQRCodeView is a plugin for KeePass 2.x which shows QR codes for entry fields. @@ -36,8 +36,8 @@ let "i686-linux" "x86_64-linux" ]; - license = licenses.mit; - maintainers = with maintainers; [ nazarewk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nazarewk ]; }; }; in diff --git a/pkgs/by-name/ke/keeperrl/package.nix b/pkgs/by-name/ke/keeperrl/package.nix index 373c1473a9ec..370f0390c0ea 100644 --- a/pkgs/by-name/ke/keeperrl/package.nix +++ b/pkgs/by-name/ke/keeperrl/package.nix @@ -90,12 +90,12 @@ stdenv.mkDerivation { ${lib.optionalString unfree_assets "cp -r data $out/share"} ''; - meta = with lib; { + meta = { description = "Dungeon management rogue-like"; mainProgram = "keeper"; homepage = "https://keeperrl.com/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ onny ]; # TODO: Add OS X platforms = [ "i686-linux" diff --git a/pkgs/by-name/ke/keepmenu/package.nix b/pkgs/by-name/ke/keepmenu/package.nix index c584834311cc..e1d5bb3960c3 100644 --- a/pkgs/by-name/ke/keepmenu/package.nix +++ b/pkgs/by-name/ke/keepmenu/package.nix @@ -52,12 +52,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "keepmenu" ]; - meta = with lib; { + meta = { homepage = "https://github.com/firecat53/keepmenu"; description = "Dmenu/Rofi frontend for Keepass databases"; mainProgram = "keepmenu"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ elliot ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ elliot ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ke/keet/package.nix b/pkgs/by-name/ke/keet/package.nix index a426cd041217..17d2cf74890e 100644 --- a/pkgs/by-name/ke/keet/package.nix +++ b/pkgs/by-name/ke/keet/package.nix @@ -34,11 +34,11 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/*.png $out/share ''; - meta = with lib; { + meta = { description = "Peer-to-Peer Chat"; homepage = "https://keet.io"; - license = licenses.unfree; - maintainers = with maintainers; [ extends ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ extends ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ke/kepler/package.nix b/pkgs/by-name/ke/kepler/package.nix index c8b573c5d444..3bd66dfa1c2c 100644 --- a/pkgs/by-name/ke/kepler/package.nix +++ b/pkgs/by-name/ke/kepler/package.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage { ZSTD_SYS_USE_PKG_CONFIG = true; }; - meta = with lib; { + meta = { description = "NIST-based CVE lookup store and API powered by Rust"; homepage = "https://github.com/Exein-io/kepler"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "kepler"; }; } diff --git a/pkgs/by-name/ke/kepubify/package.nix b/pkgs/by-name/ke/kepubify/package.nix index d7c25858569f..d744ba847681 100644 --- a/pkgs/by-name/ke/kepubify/package.nix +++ b/pkgs/by-name/ke/kepubify/package.nix @@ -25,10 +25,10 @@ buildGoModule rec { excludedPackages = [ "kobotest" ]; - meta = with lib; { + meta = { description = "EPUB to KEPUB converter"; homepage = "https://pgaskin.net/kepubify"; - license = licenses.mit; - maintainers = with maintainers; [ zowoq ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zowoq ]; }; } diff --git a/pkgs/by-name/ke/kermit/package.nix b/pkgs/by-name/ke/kermit/package.nix index b68c09f33a29..71f295c4d16c 100644 --- a/pkgs/by-name/ke/kermit/package.nix +++ b/pkgs/by-name/ke/kermit/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { env.NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration -Wno-implicit-int"; - meta = with lib; { + meta = { homepage = "https://www.kermitproject.org/ck90.html"; description = "Portable Scriptable Network and Serial Communication Software"; - license = licenses.bsd3; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ke/kernel-hardening-checker/package.nix b/pkgs/by-name/ke/kernel-hardening-checker/package.nix index 44ba1cfa0b13..c6fdef230525 100644 --- a/pkgs/by-name/ke/kernel-hardening-checker/package.nix +++ b/pkgs/by-name/ke/kernel-hardening-checker/package.nix @@ -20,12 +20,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "kernel_hardening_checker" ]; - meta = with lib; { + meta = { description = "Tool for checking the security hardening options of the Linux kernel"; homepage = "https://github.com/a13xp0p0v/kernel-hardening-checker"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ erdnaxe ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ erdnaxe ]; mainProgram = "kernel-hardening-checker"; }; } diff --git a/pkgs/by-name/ke/kestrel/package.nix b/pkgs/by-name/ke/kestrel/package.nix index 1653f80bd4f6..67211b838e45 100644 --- a/pkgs/by-name/ke/kestrel/package.nix +++ b/pkgs/by-name/ke/kestrel/package.nix @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage rec { installShellCompletion --bash --name kestrel completion/kestrel.bash-completion ''; - meta = with lib; { + meta = { description = "File encryption done right"; mainProgram = "kestrel"; longDescription = " @@ -35,7 +35,7 @@ rustPlatform.buildRustPackage rec { that lets you encrypt files to anyone with a public key. "; homepage = "https://getkestrel.com"; - license = licenses.bsd3; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/ke/kexec-tools/package.nix b/pkgs/by-name/ke/kexec-tools/package.nix index c11eff6bc3fa..fa65622e8444 100644 --- a/pkgs/by-name/ke/kexec-tools/package.nix +++ b/pkgs/by-name/ke/kexec-tools/package.nix @@ -63,10 +63,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "http://horms.net/projects/kexec/kexec-tools"; description = "Tools related to the kexec Linux feature"; - platforms = platforms.linux; + platforms = lib.platforms.linux; badPlatforms = [ "microblaze-linux" "microblazeel-linux" @@ -76,7 +76,7 @@ stdenv.mkDerivation rec { "sparc64-linux" "powerpc-linux" ]; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "kexec"; }; } diff --git a/pkgs/by-name/ke/keycard-cli/package.nix b/pkgs/by-name/ke/keycard-cli/package.nix index df69da7538bf..6799d6237065 100644 --- a/pkgs/by-name/ke/keycard-cli/package.nix +++ b/pkgs/by-name/ke/keycard-cli/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "Command line tool and shell to manage keycards"; mainProgram = "keycard-cli"; homepage = "https://keycard.status.im"; - license = licenses.mpl20; - maintainers = [ maintainers.zimbatm ]; + license = lib.licenses.mpl20; + maintainers = [ lib.maintainers.zimbatm ]; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/keycard-cli.x86_64-darwin }; } diff --git a/pkgs/by-name/ke/keychain/package.nix b/pkgs/by-name/ke/keychain/package.nix index ee1200809fb4..1582c06144b5 100644 --- a/pkgs/by-name/ke/keychain/package.nix +++ b/pkgs/by-name/ke/keychain/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { }" \ ''; - meta = with lib; { + meta = { description = "Manage SSH and GPG keys in a convenient and secure manner"; longDescription = '' Keychain helps you to manage SSH and GPG keys in a convenient and secure @@ -66,9 +66,9 @@ stdenv.mkDerivation rec { process, allowing your scripts to take advantage of key-based logins. ''; homepage = "https://www.funtoo.org/Keychain"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ sigma ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sigma ]; mainProgram = "keychain"; }; } diff --git a/pkgs/by-name/ke/keychron-udev-rules/package.nix b/pkgs/by-name/ke/keychron-udev-rules/package.nix index 374ef9ff2a57..fdb954e734de 100644 --- a/pkgs/by-name/ke/keychron-udev-rules/package.nix +++ b/pkgs/by-name/ke/keychron-udev-rules/package.nix @@ -28,10 +28,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Keychron Keyboard Udev Rules, fixes issues with keyboard detection on Linux"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ kruziikrel13 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kruziikrel13 ]; }; }) diff --git a/pkgs/by-name/ke/keycloak/keycloak-discord/default.nix b/pkgs/by-name/ke/keycloak/keycloak-discord/default.nix index daa976b7d59d..3394d910e605 100644 --- a/pkgs/by-name/ke/keycloak/keycloak-discord/default.nix +++ b/pkgs/by-name/ke/keycloak/keycloak-discord/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/wadahiro/keycloak-discord"; description = "Keycloak Social Login extension for Discord"; - license = licenses.asl20; - maintainers = with maintainers; [ mkg20001 ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mkg20001 ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; } diff --git a/pkgs/by-name/ke/keycloak/keycloak-restrict-client-auth/default.nix b/pkgs/by-name/ke/keycloak/keycloak-restrict-client-auth/default.nix index 3f6edb39979c..2e02a2c1b1e9 100644 --- a/pkgs/by-name/ke/keycloak/keycloak-restrict-client-auth/default.nix +++ b/pkgs/by-name/ke/keycloak/keycloak-restrict-client-auth/default.nix @@ -23,10 +23,10 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/sventorben/keycloak-restrict-client-auth"; description = "Keycloak authenticator to restrict authorization on clients"; - license = licenses.mit; - maintainers = with maintainers; [ leona ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leona ]; }; } diff --git a/pkgs/by-name/ke/keycloak/scim-for-keycloak/default.nix b/pkgs/by-name/ke/keycloak/scim-for-keycloak/default.nix index 4bc5a3f5141d..2d873fa51f41 100644 --- a/pkgs/by-name/ke/keycloak/scim-for-keycloak/default.nix +++ b/pkgs/by-name/ke/keycloak/scim-for-keycloak/default.nix @@ -21,14 +21,14 @@ maven.buildMavenPackage rec { install -D "scim-for-keycloak-server/target/scim-for-keycloak-${version}.jar" "$out/scim-for-keycloak-${version}.jar" ''; - meta = with lib; { + meta = { homepage = "https://github.com/Captain-P-Goldfish/scim-for-keycloak"; description = "Third party module that extends Keycloak with SCIM functionality"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # dependencies ]; - license = licenses.bsd3; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/ke/keycloak/scim-keycloak-user-storage-spi/default.nix b/pkgs/by-name/ke/keycloak/scim-keycloak-user-storage-spi/default.nix index a4d71d36577e..cb979db32959 100644 --- a/pkgs/by-name/ke/keycloak/scim-keycloak-user-storage-spi/default.nix +++ b/pkgs/by-name/ke/keycloak/scim-keycloak-user-storage-spi/default.nix @@ -21,13 +21,13 @@ maven.buildMavenPackage { install -D "target/scim-user-spi-0.0.1-SNAPSHOT.jar" "$out/scim-user-spi-0.0.1-SNAPSHOT.jar" ''; - meta = with lib; { + meta = { homepage = "https://github.com/justin-stephenson/scim-keycloak-user-storage-spi"; description = "Third party module that extends Keycloak, allow for user storage in an external scimv2 server"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource ]; - license = licenses.mit; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/by-name/ke/keyd/package.nix b/pkgs/by-name/ke/keyd/package.nix index b18f1271a7fa..7d0709d39674 100644 --- a/pkgs/by-name/ke/keyd/package.nix +++ b/pkgs/by-name/ke/keyd/package.nix @@ -70,10 +70,10 @@ stdenv.mkDerivation { passthru.tests.keyd = nixosTests.keyd; - meta = with lib; { + meta = { description = "Key remapping daemon for Linux"; - license = licenses.mit; - maintainers = with maintainers; [ alfarel ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alfarel ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ke/keyfinder-cli/package.nix b/pkgs/by-name/ke/keyfinder-cli/package.nix index c4b708918c85..761c1daf57a6 100644 --- a/pkgs/by-name/ke/keyfinder-cli/package.nix +++ b/pkgs/by-name/ke/keyfinder-cli/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Musical key detection for digital audio (command-line tool)"; longDescription = '' @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { use of Ibrahim Sha'ath's high quality libKeyFinder library, it can be used to estimate the musical key of many different audio formats. ''; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "keyfinder-cli"; }; } diff --git a/pkgs/by-name/ke/keyfuzz/package.nix b/pkgs/by-name/ke/keyfuzz/package.nix index fe3380fd0652..68fe91b03093 100644 --- a/pkgs/by-name/ke/keyfuzz/package.nix +++ b/pkgs/by-name/ke/keyfuzz/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation { pname = "keyfuzz"; version = "0.2"; - meta = with lib; { + meta = { description = "Manipulate the scancode/keycode translation tables of keyboard drivers"; mainProgram = "keyfuzz"; homepage = "http://0pointer.de/lennart/projects/keyfuzz/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ mboes ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mboes ]; }; src = fetchurl { diff --git a/pkgs/by-name/ke/keylight-cli/package.nix b/pkgs/by-name/ke/keylight-cli/package.nix index bf0e43e5c74a..d8535dc68be2 100644 --- a/pkgs/by-name/ke/keylight-cli/package.nix +++ b/pkgs/by-name/ke/keylight-cli/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CLI tool to control Elgato Key Light devices"; homepage = "https://github.com/versality/keylight-cli"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ versality ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ versality ]; mainProgram = "keylight"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ke/keylight-controller-mschneider82/package.nix b/pkgs/by-name/ke/keylight-controller-mschneider82/package.nix index 82a82703e4ad..5974ec91a873 100644 --- a/pkgs/by-name/ke/keylight-controller-mschneider82/package.nix +++ b/pkgs/by-name/ke/keylight-controller-mschneider82/package.nix @@ -41,14 +41,14 @@ buildGoModule rec { xinput ]); - meta = with lib; { + meta = { description = "Desktop application to control Elgato Keylights"; longDescription = '' Requires having: * Elgato's Keylight paired to local wifi network. * Service avahi with nssmdns4 enabled. ''; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/mschneider82/keylight-control"; maintainers = [ ]; mainProgram = "keylight-control"; diff --git a/pkgs/by-name/ke/keym/package.nix b/pkgs/by-name/ke/keym/package.nix index d4b963816174..c6cb1835755d 100644 --- a/pkgs/by-name/ke/keym/package.nix +++ b/pkgs/by-name/ke/keym/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/cwkx/keym"; description = "C tool to control mouse with keyboard for X11"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "keym"; - maintainers = with maintainers; [ CompileTime ]; + maintainers = with lib.maintainers; [ CompileTime ]; }; } diff --git a/pkgs/by-name/ke/keymapviz/package.nix b/pkgs/by-name/ke/keymapviz/package.nix index 83fd244cdcb9..eb0c23c9d9e2 100644 --- a/pkgs/by-name/ke/keymapviz/package.nix +++ b/pkgs/by-name/ke/keymapviz/package.nix @@ -22,10 +22,10 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "keymapviz" ]; - meta = with lib; { + meta = { description = "Qmk keymap.c visualizer"; homepage = "https://github.com/yskoht/keymapviz"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "keymapviz"; }; diff --git a/pkgs/by-name/ke/keynav/package.nix b/pkgs/by-name/ke/keynav/package.nix index 3ff04e0146ef..200419bd2b18 100644 --- a/pkgs/by-name/ke/keynav/package.nix +++ b/pkgs/by-name/ke/keynav/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation { cp keynavrc $out/share/keynav/doc ''; - meta = with lib; { + meta = { description = "Generate X11 mouse clicks from keyboard"; homepage = "https://www.semicomplete.com/projects/keynav/"; - license = licenses.bsd3; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; mainProgram = "keynav"; }; } diff --git a/pkgs/by-name/ke/keystone/package.nix b/pkgs/by-name/ke/keystone/package.nix index 39c86a25149c..0fc9ccd6045a 100644 --- a/pkgs/by-name/ke/keystone/package.nix +++ b/pkgs/by-name/ke/keystone/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { fixDarwinDylibNames ]; - meta = with lib; { + meta = { description = "Lightweight multi-platform, multi-architecture assembler framework"; homepage = "https://www.keystone-engine.org"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; mainProgram = "kstool"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ke/keyutils/package.nix b/pkgs/by-name/ke/keyutils/package.nix index ef23de4fa8cc..ba984e72c862 100644 --- a/pkgs/by-name/ke/keyutils/package.nix +++ b/pkgs/by-name/ke/keyutils/package.nix @@ -68,10 +68,10 @@ stdenv.mkDerivation rec { "USRLIBDIR=$(lib)/lib" ]; - meta = with lib; { + meta = { homepage = "https://people.redhat.com/dhowells/keyutils/"; description = "Tools used to control the Linux kernel key management system"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kg/kgeotag/package.nix b/pkgs/by-name/kg/kgeotag/package.nix index ea6950ce7983..b11fa84cf395 100644 --- a/pkgs/by-name/kg/kgeotag/package.nix +++ b/pkgs/by-name/kg/kgeotag/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { qt6.qtwebengine ]; - meta = with lib; { + meta = { homepage = "https://kgeotag.kde.org/"; description = "Stand-alone photo geotagging program"; changelog = "https://invent.kde.org/graphics/kgeotag/-/blob/master/CHANGELOG.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ cimm ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ cimm ]; mainProgram = "kgeotag"; }; } diff --git a/pkgs/by-name/kg/kgraphviewer/package.nix b/pkgs/by-name/kg/kgraphviewer/package.nix index 797ed6c7fb30..3d904916ae1d 100644 --- a/pkgs/by-name/kg/kgraphviewer/package.nix +++ b/pkgs/by-name/kg/kgraphviewer/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { kwidgetsaddons ]; - meta = with lib; { + meta = { description = "Graphviz dot graph viewer for KDE"; mainProgram = "kgraphviewer"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kh/khd/package.nix b/pkgs/by-name/kh/khd/package.nix index bfdc1dfc7d3b..2877355808f2 100644 --- a/pkgs/by-name/kh/khd/package.nix +++ b/pkgs/by-name/kh/khd/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { substituteInPlace $out/Library/LaunchDaemons/org.nixos.khd.plist --subst-var out ''; - meta = with lib; { + meta = { description = "Simple modal hotkey daemon for OSX"; homepage = "https://github.com/koekeishiya/khd"; downloadPage = "https://github.com/koekeishiya/khd/releases"; - platforms = platforms.darwin; - maintainers = with maintainers; [ lnl7 ]; - license = licenses.mit; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ lnl7 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/kh/khmeros/package.nix b/pkgs/by-name/kh/khmeros/package.nix index 8fdb07423952..7170c9863669 100644 --- a/pkgs/by-name/kh/khmeros/package.nix +++ b/pkgs/by-name/kh/khmeros/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode fonts for the Khmer language"; homepage = "http://www.khmeros.info/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ serge ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/kh/khronos-ocl-icd-loader/package.nix b/pkgs/by-name/kh/khronos-ocl-icd-loader/package.nix index 0632ad6a08f6..48c5ddb88987 100644 --- a/pkgs/by-name/kh/khronos-ocl-icd-loader/package.nix +++ b/pkgs/by-name/kh/khronos-ocl-icd-loader/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { (lib.cmakeBool "OCL_ICD_ENABLE_TRACE" withTracing) ]; - meta = with lib; { + meta = { description = "Official Khronos OpenCL ICD Loader"; mainProgram = "cllayerinfo"; homepage = "https://github.com/KhronosGroup/OpenCL-ICD-Loader"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kh/khronos/package.nix b/pkgs/by-name/kh/khronos/package.nix index dc0ce1d15e6c..17eb91974ccf 100644 --- a/pkgs/by-name/kh/khronos/package.nix +++ b/pkgs/by-name/kh/khronos/package.nix @@ -48,13 +48,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Track each task's time in a simple inobtrusive way"; homepage = "https://github.com/lainsce/khronos"; - maintainers = with maintainers; [ xiorcale ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ xiorcale ]; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; mainProgram = "io.github.lainsce.Khronos"; }; } diff --git a/pkgs/by-name/ki/kickoff/package.nix b/pkgs/by-name/ki/kickoff/package.nix index 5dfc9c2f9c4e..ea10295d8691 100644 --- a/pkgs/by-name/ki/kickoff/package.nix +++ b/pkgs/by-name/ki/kickoff/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage (finalAttrs: { wrapProgram "$out/bin/kickoff" --prefix LD_LIBRARY_PATH : "${finalAttrs.libPath}" ''; - meta = with lib; { + meta = { description = "Minimalistic program launcher"; mainProgram = "kickoff"; homepage = "https://github.com/j0ru/kickoff"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pyxels ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pyxels ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ki/kicli/package.nix b/pkgs/by-name/ki/kicli/package.nix index 8b0f75711291..7aa6af483df8 100644 --- a/pkgs/by-name/ki/kicli/package.nix +++ b/pkgs/by-name/ki/kicli/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/anned20/kicli"; description = "CLI interface to the Kimai time tracking project"; - license = licenses.mit; - maintainers = with maintainers; [ poelzi ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ poelzi ]; + platforms = lib.platforms.all; mainProgram = "kicli"; }; } diff --git a/pkgs/by-name/ki/kile-wl/package.nix b/pkgs/by-name/ki/kile-wl/package.nix index d09dcfe3a6f1..252a99f605bc 100644 --- a/pkgs/by-name/ki/kile-wl/package.nix +++ b/pkgs/by-name/ki/kile-wl/package.nix @@ -23,12 +23,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-HcwdUwhiSkULCevsHTnRyazNfHDvLZv44SFXKxrHxYY="; - meta = with lib; { + meta = { description = "Tiling layout generator for river"; homepage = "https://gitlab.com/snakedye/kile"; - license = licenses.mit; - platforms = platforms.linux; # It's meant for river, a wayland compositor - maintainers = with maintainers; [ moni ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; # It's meant for river, a wayland compositor + maintainers = with lib.maintainers; [ moni ]; mainProgram = "kile"; }; } diff --git a/pkgs/by-name/ki/kiln/package.nix b/pkgs/by-name/ki/kiln/package.nix index d5a4daa89358..0d3ff2e79163 100644 --- a/pkgs/by-name/ki/kiln/package.nix +++ b/pkgs/by-name/ki/kiln/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { installManPage docs/kiln.1 ''; - meta = with lib; { + meta = { description = "Simple static site generator for Gemini"; homepage = "https://kiln.adnano.co/"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "kiln"; }; } diff --git a/pkgs/by-name/ki/kind/package.nix b/pkgs/by-name/ki/kind/package.nix index 8f48ba17ae96..d000d31b2bd3 100644 --- a/pkgs/by-name/ki/kind/package.nix +++ b/pkgs/by-name/ki/kind/package.nix @@ -52,14 +52,14 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Kubernetes IN Docker - local clusters for testing Kubernetes"; homepage = "https://github.com/kubernetes-sigs/kind"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ offline rawkode ]; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "kind"; }; } diff --git a/pkgs/by-name/ki/kind2/package.nix b/pkgs/by-name/ki/kind2/package.nix index f5106139344a..34ae627b4597 100644 --- a/pkgs/by-name/ki/kind2/package.nix +++ b/pkgs/by-name/ki/kind2/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { # requires nightly features RUSTC_BOOTSTRAP = true; - meta = with lib; { + meta = { description = "Functional programming language and proof assistant"; mainProgram = "kind2"; homepage = "https://github.com/higherorderco/kind"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ki/kinect-audio-setup/package.nix b/pkgs/by-name/ki/kinect-audio-setup/package.nix index a814e57e5a61..76cd1370d66b 100644 --- a/pkgs/by-name/ki/kinect-audio-setup/package.nix +++ b/pkgs/by-name/ki/kinect-audio-setup/package.nix @@ -86,11 +86,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tools to enable audio input from the Microsoft Kinect sensor device"; homepage = "https://git.ao2.it/kinect-audio-setup.git"; - maintainers = with maintainers; [ berbiche ]; - platforms = platforms.linux; - license = licenses.unfree; + maintainers = with lib.maintainers; [ berbiche ]; + platforms = lib.platforms.linux; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/ki/kirc/package.nix b/pkgs/by-name/ki/kirc/package.nix index 5e54aa140640..85557b1214c8 100644 --- a/pkgs/by-name/ki/kirc/package.nix +++ b/pkgs/by-name/ki/kirc/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://mcpcpc.github.io/kirc/"; description = "Tiny IRC client written in C99"; mainProgram = "kirc"; @@ -39,8 +39,8 @@ stdenv.mkDerivation rec { - Full support for all RFC 2812 commands. - Easy customized color scheme definition. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ki/kissat/package.nix b/pkgs/by-name/ki/kissat/package.nix index 7940d96d0038..136b6e1d6bc3 100644 --- a/pkgs/by-name/ki/kissat/package.nix +++ b/pkgs/by-name/ki/kissat/package.nix @@ -9,7 +9,7 @@ let # Early meta to reference in pkgconfig generation - meta = with lib; { + meta = { description = "'keep it simple and clean bare metal SAT solver' written in C"; mainProgram = "kissat"; longDescription = '' @@ -17,9 +17,9 @@ let It is a port of CaDiCaL back to C with improved data structures, better scheduling of inprocessing and optimized algorithms and implementation. ''; - maintainers = with maintainers; [ shnarazk ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ shnarazk ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; homepage = "https://fmv.jku.at/kissat"; }; in diff --git a/pkgs/by-name/ki/kisslicer/package.nix b/pkgs/by-name/ki/kisslicer/package.nix index 02c9c874dd11..23cf751efb42 100644 --- a/pkgs/by-name/ki/kisslicer/package.nix +++ b/pkgs/by-name/ki/kisslicer/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { --run "mkdir -p ${inidir}" ''; - meta = with lib; { + meta = { description = "Convert STL files into Gcode"; homepage = "http://www.kisslicer.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.cransom ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.cransom ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ki/kiterunner/package.nix b/pkgs/by-name/ki/kiterunner/package.nix index 6c553ad05b3f..e4ac957d09b1 100644 --- a/pkgs/by-name/ki/kiterunner/package.nix +++ b/pkgs/by-name/ki/kiterunner/package.nix @@ -28,7 +28,7 @@ buildGoModule rec { # Test data is missing in the repo doCheck = false; - meta = with lib; { + meta = { description = "Contextual content discovery tool"; mainProgram = "kiterunner"; longDescription = '' @@ -37,7 +37,7 @@ buildGoModule rec { and endpoints in modern applications. ''; homepage = "https://github.com/assetnote/kiterunner"; - license = with licenses; [ agpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ki/kitsas/package.nix b/pkgs/by-name/ki/kitsas/package.nix index 0b3c345e17d7..1f168d6013fb 100644 --- a/pkgs/by-name/ki/kitsas/package.nix +++ b/pkgs/by-name/ki/kitsas/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { install -Dm644 ../kitsas.desktop -t $out/share/applications ''; - meta = with lib; { + meta = { homepage = "https://github.com/artoh/kitupiikki"; description = "Accounting tool suitable for Finnish associations and small business"; mainProgram = "kitsas"; - maintainers = with maintainers; [ gspia ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ gspia ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ki/kitty/package.nix b/pkgs/by-name/ki/kitty/package.nix index 9f09158758ae..8a6f02194f3f 100644 --- a/pkgs/by-name/ki/kitty/package.nix +++ b/pkgs/by-name/ki/kitty/package.nix @@ -316,17 +316,17 @@ buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/kovidgoyal/kitty"; description = "Fast, feature-rich, GPU based terminal emulator"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; changelog = [ "https://sw.kovidgoyal.net/kitty/changelog/" "https://github.com/kovidgoyal/kitty/blob/v${version}/docs/changelog.rst" ]; - platforms = platforms.darwin ++ platforms.linux; + platforms = lib.platforms.darwin ++ lib.platforms.linux; mainProgram = "kitty"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rvolosatovs Luflosi kashw2 diff --git a/pkgs/by-name/kj/kjv/package.nix b/pkgs/by-name/kj/kjv/package.nix index 0bd8f52d0a3b..16876f9b7b06 100644 --- a/pkgs/by-name/kj/kjv/package.nix +++ b/pkgs/by-name/kj/kjv/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Bible, King James Version"; homepage = "https://github.com/bontibon/kjv"; - license = licenses.unlicense; - maintainers = with maintainers; [ + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ jtobin cafkafk ]; diff --git a/pkgs/by-name/kl/klavaro/package.nix b/pkgs/by-name/kl/klavaro/package.nix index 1873aa38ac64..13b3415ef4c5 100644 --- a/pkgs/by-name/kl/klavaro/package.nix +++ b/pkgs/by-name/kl/klavaro/package.nix @@ -56,14 +56,14 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Free touch typing tutor program"; mainProgram = "klavaro"; homepage = "http://klavaro.sourceforge.net/"; changelog = "https://sourceforge.net/p/klavaro/code/HEAD/tree/trunk/ChangeLog"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mimame davidak ]; diff --git a/pkgs/by-name/kl/klipperscreen/package.nix b/pkgs/by-name/kl/klipperscreen/package.nix index 31593b21b9be..1efab9c2182e 100644 --- a/pkgs/by-name/kl/klipperscreen/package.nix +++ b/pkgs/by-name/kl/klipperscreen/package.nix @@ -48,11 +48,11 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = gitUpdater { url = meta.homepage; }; - meta = with lib; { + meta = { description = "Touchscreen GUI for the Klipper 3D printer firmware"; homepage = "https://github.com/jordanruthe/KlipperScreen"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ cab404 saturn745 ]; diff --git a/pkgs/by-name/kl/klog-time-tracker/package.nix b/pkgs/by-name/kl/klog-time-tracker/package.nix index ce68514dd018..c5e7173ee1cf 100644 --- a/pkgs/by-name/kl/klog-time-tracker/package.nix +++ b/pkgs/by-name/kl/klog-time-tracker/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-ilV/+Xogy4+5c/Rs0cCSvVTgDhL4mm9V/pxJB3XGDkw="; - meta = with lib; { + meta = { description = "Command line tool for time tracking in a human-readable, plain-text file format"; homepage = "https://klog.jotaen.net"; - license = licenses.mit; - maintainers = [ maintainers.blinry ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.blinry ]; mainProgram = "klog"; }; } diff --git a/pkgs/by-name/km/kmeet/package.nix b/pkgs/by-name/km/kmeet/package.nix index 09e2921f1756..f1c2246105ba 100644 --- a/pkgs/by-name/km/kmeet/package.nix +++ b/pkgs/by-name/km/kmeet/package.nix @@ -28,11 +28,11 @@ appimageTools.wrapType2 rec { substituteInPlace $out/share/applications/kMeet.desktop --replace 'Exec=AppRun' 'Exec=${meta.mainProgram}' ''; - meta = with lib; { + meta = { description = "Organise secure online meetings via your web browser, your mobile, your tablet or your computer"; homepage = "https://www.infomaniak.com/en/apps/download-kmeet"; - license = licenses.unfree; - maintainers = [ maintainers.vinetos ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.vinetos ]; mainProgram = "kmeet"; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; diff --git a/pkgs/by-name/km/kminion/package.nix b/pkgs/by-name/km/kminion/package.nix index 9d9f8b150624..cd72491a7be5 100644 --- a/pkgs/by-name/km/kminion/package.nix +++ b/pkgs/by-name/km/kminion/package.nix @@ -34,10 +34,10 @@ buildGoModule (finalAttrs: { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Feature-rich Prometheus exporter for Apache Kafka written in Go"; - license = licenses.mit; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cafkafk ]; mainProgram = "kminion"; }; }) diff --git a/pkgs/by-name/km/kmod-blacklist-ubuntu/package.nix b/pkgs/by-name/km/kmod-blacklist-ubuntu/package.nix index 10e38954e748..a166ba29ab5f 100644 --- a/pkgs/by-name/km/kmod-blacklist-ubuntu/package.nix +++ b/pkgs/by-name/km/kmod-blacklist-ubuntu/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { --replace " xargs " " /run/booted-system/sw/bin/xargs " ''; - meta = with lib; { + meta = { homepage = "https://launchpad.net/ubuntu/+source/kmod"; description = "Linux kernel module blacklists from Ubuntu"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; diff --git a/pkgs/by-name/km/kmod-debian-aliases/package.nix b/pkgs/by-name/km/kmod-debian-aliases/package.nix index 39dd96493699..4cfe90a4499c 100644 --- a/pkgs/by-name/km/kmod-debian-aliases/package.nix +++ b/pkgs/by-name/km/kmod-debian-aliases/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { cp extra/aliases.conf $out ''; - meta = with lib; { + meta = { homepage = "https://packages.debian.org/source/sid/kmod"; description = "Linux configuration file for modprobe"; - maintainers = with maintainers; [ mathnerd314 ]; - platforms = with platforms; linux; - license = with licenses; [ + maintainers = with lib.maintainers; [ mathnerd314 ]; + platforms = with lib.platforms; linux; + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; diff --git a/pkgs/by-name/km/kmscon/package.nix b/pkgs/by-name/km/kmscon/package.nix index 6a9d1eb43b8d..27c9a1f17ebb 100644 --- a/pkgs/by-name/km/kmscon/package.nix +++ b/pkgs/by-name/km/kmscon/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation { ./sandbox.patch # Generate system units where they should be (nix store) instead of /etc/systemd/system ]; - meta = with lib; { + meta = { description = "KMS/DRM based System Console"; mainProgram = "kmscon"; homepage = "https://www.freedesktop.org/wiki/Software/kmscon/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/km/kmscube/package.nix b/pkgs/by-name/km/kmscube/package.nix index d2192b58895e..4448040458c2 100644 --- a/pkgs/by-name/km/kmscube/package.nix +++ b/pkgs/by-name/km/kmscube/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { gst-plugins-base ]); - meta = with lib; { + meta = { description = "Example OpenGL app using KMS/GBM"; homepage = "https://gitlab.freedesktop.org/mesa/kmscube"; - license = licenses.mit; - maintainers = with maintainers; [ dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dezgeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/km/kmsvnc/package.nix b/pkgs/by-name/km/kmsvnc/package.nix index 238ea9ba372d..629e3bf929e0 100644 --- a/pkgs/by-name/km/kmsvnc/package.nix +++ b/pkgs/by-name/km/kmsvnc/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { libva ]; - meta = with lib; { + meta = { description = "VNC server for DRM/KMS capable GNU/Linux devices"; homepage = "https://github.com/isjerryxiao/kmsvnc"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "kmsvnc"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/km/kmsxx/package.nix b/pkgs/by-name/km/kmsxx/package.nix index 94e936ab484b..3e7ce3d74d8b 100644 --- a/pkgs/by-name/km/kmsxx/package.nix +++ b/pkgs/by-name/km/kmsxx/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation { mesonFlags = lib.optional (!withPython) "-Dpykms=disabled"; - meta = with lib; { + meta = { description = "C++11 library, utilities and python bindings for Linux kernel mode setting"; homepage = "https://github.com/tomba/kmsxx"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kn/knightos-genkfs/package.nix b/pkgs/by-name/kn/knightos-genkfs/package.nix index 663770b483c2..a3d13d63d580 100644 --- a/pkgs/by-name/kn/knightos-genkfs/package.nix +++ b/pkgs/by-name/kn/knightos-genkfs/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Utility to write a KFS filesystem into a ROM file"; mainProgram = "genkfs"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/kn/knightos-kcc/package.nix b/pkgs/by-name/kn/knightos-kcc/package.nix index 6b22a5a1ea4e..3cefa6d5ca58 100644 --- a/pkgs/by-name/kn/knightos-kcc/package.nix +++ b/pkgs/by-name/kn/knightos-kcc/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://github.com/KnightOS/kcc"; description = "KnightOS C compiler"; mainProgram = "kcc"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kn/knightos-kimg/package.nix b/pkgs/by-name/kn/knightos-kimg/package.nix index acfcf4cd1d8e..b8b262f32745 100644 --- a/pkgs/by-name/kn/knightos-kimg/package.nix +++ b/pkgs/by-name/kn/knightos-kimg/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Converts image formats supported by stb_image to the KnightOS image format"; mainProgram = "kimg"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/kn/knightos-kpack/package.nix b/pkgs/by-name/kn/knightos-kpack/package.nix index 141bdb8b1a4e..08f3f922ca3e 100644 --- a/pkgs/by-name/kn/knightos-kpack/package.nix +++ b/pkgs/by-name/kn/knightos-kpack/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Tool to create or extract KnightOS packages"; mainProgram = "kpack"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kn/knightos-mkrom/package.nix b/pkgs/by-name/kn/knightos-mkrom/package.nix index 100da9137d29..ce0b1d57d97f 100644 --- a/pkgs/by-name/kn/knightos-mkrom/package.nix +++ b/pkgs/by-name/kn/knightos-mkrom/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { "install_man" ]; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Packages KnightOS distribution files into a ROM"; mainProgram = "mkrom"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/kn/knightos-mktiupgrade/package.nix b/pkgs/by-name/kn/knightos-mktiupgrade/package.nix index 0a688a809e88..cc84a42066ce 100644 --- a/pkgs/by-name/kn/knightos-mktiupgrade/package.nix +++ b/pkgs/by-name/kn/knightos-mktiupgrade/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Makes TI calculator upgrade files from ROM dumps"; mainProgram = "mktiupgrade"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kn/knightos-patchrom/package.nix b/pkgs/by-name/kn/knightos-patchrom/package.nix index 9f7163e2f0a5..e3ab717f1bcb 100644 --- a/pkgs/by-name/kn/knightos-patchrom/package.nix +++ b/pkgs/by-name/kn/knightos-patchrom/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Patches jumptables into TI calculator ROM files and generates an include file"; mainProgram = "patchrom"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kn/knightos-scas/package.nix b/pkgs/by-name/kn/knightos-scas/package.nix index f3dc7525d961..bd8cc17bed7f 100644 --- a/pkgs/by-name/kn/knightos-scas/package.nix +++ b/pkgs/by-name/kn/knightos-scas/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { make DESTDIR=$out install_man ''; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Assembler and linker for the Z80"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/kn/knightos-z80e/package.nix b/pkgs/by-name/kn/knightos-z80e/package.nix index 6b15c23bed03..5f540a065fdd 100644 --- a/pkgs/by-name/kn/knightos-z80e/package.nix +++ b/pkgs/by-name/kn/knightos-z80e/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; description = "Z80 calculator emulator and debugger"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kn/knossosnet/package.nix b/pkgs/by-name/kn/knossosnet/package.nix index 3b016a4583a8..b392df89e27b 100644 --- a/pkgs/by-name/kn/knossosnet/package.nix +++ b/pkgs/by-name/kn/knossosnet/package.nix @@ -44,11 +44,11 @@ buildDotnetModule rec { install -Dm644 $src/packaging/linux/knossos-512.png $out/share/icons/hicolor/512x512/apps/knossos.png ''; - meta = with lib; { + meta = { homepage = "https://github.com/KnossosNET/Knossos.NET"; description = "Multi-platform launcher for Freespace 2 Open"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "Knossos.NET"; - maintainers = with maintainers; [ cdombroski ]; + maintainers = with lib.maintainers; [ cdombroski ]; }; } diff --git a/pkgs/by-name/kn/knot-resolver_5/package.nix b/pkgs/by-name/kn/knot-resolver_5/package.nix index 20d8e1c5494f..19e785c7df68 100644 --- a/pkgs/by-name/kn/knot-resolver_5/package.nix +++ b/pkgs/by-name/kn/knot-resolver_5/package.nix @@ -143,13 +143,13 @@ let meson test --print-errorlogs --no-suite snowflake ''; - meta = with lib; { + meta = { description = "Caching validating DNS resolver, from .cz domain registry"; homepage = "https://knot-resolver.cz"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; maintainers = [ - maintainers.vcunat # upstream developer + lib.maintainers.vcunat # upstream developer ]; mainProgram = "kresd"; }; diff --git a/pkgs/by-name/kn/knot-resolver_6/package.nix b/pkgs/by-name/kn/knot-resolver_6/package.nix index 21fa65aab9fa..4016a8482a83 100644 --- a/pkgs/by-name/kn/knot-resolver_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver_6/package.nix @@ -138,15 +138,15 @@ let meson test --print-errorlogs --no-suite snowflake ''; - meta = with lib; { + meta = { description = "Caching validating DNS resolver, from .cz domain registry"; homepage = "https://knot-resolver.cz"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; maintainers = [ - maintainers.vcunat # upstream developer + lib.maintainers.vcunat # upstream developer ]; - teams = [ teams.flyingcircus ]; + teams = [ lib.teams.flyingcircus ]; mainProgram = "kresd"; }; }); diff --git a/pkgs/by-name/kn/knowsmore/package.nix b/pkgs/by-name/kn/knowsmore/package.nix index 8b753b9e0f64..64a4ccc974a6 100644 --- a/pkgs/by-name/kn/knowsmore/package.nix +++ b/pkgs/by-name/kn/knowsmore/package.nix @@ -52,12 +52,12 @@ python3.pkgs.buildPythonApplication rec { "test_create_db" ]; - meta = with lib; { + meta = { description = "Tool for pentesting Microsoft Active Directory"; homepage = "https://github.com/helviojunior/knowsmore"; changelog = "https://github.com/helviojunior/knowsmore/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "knowsmore"; }; } diff --git a/pkgs/by-name/kn/kns/package.nix b/pkgs/by-name/kn/kns/package.nix index 73aaacf389a1..28272dfb2e33 100644 --- a/pkgs/by-name/kn/kns/package.nix +++ b/pkgs/by-name/kn/kns/package.nix @@ -32,11 +32,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Kubernetes namespace switcher"; homepage = "https://github.com/blendle/kns"; - license = licenses.isc; - maintainers = with maintainers; [ mmlb ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ mmlb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ko/kode-mono/package.nix b/pkgs/by-name/ko/kode-mono/package.nix index 61ce94997ae6..685309375d0a 100644 --- a/pkgs/by-name/ko/kode-mono/package.nix +++ b/pkgs/by-name/ko/kode-mono/package.nix @@ -21,12 +21,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Custom-designed typeface explicitly created for the developer community"; homepage = "https://kodemono.com/"; changelog = "https://github.com/isaozler/kode-mono/blob/main/CHANGELOG.md"; - license = licenses.ofl; - maintainers = [ maintainers.isaozler ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.isaozler ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ko/kodelife/package.nix b/pkgs/by-name/ko/kodelife/package.nix index 029f64b67365..28f583e53c1b 100644 --- a/pkgs/by-name/ko/kodelife/package.nix +++ b/pkgs/by-name/ko/kodelife/package.nix @@ -99,12 +99,12 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { homepage = "https://hexler.net/kodelife"; description = "Real-time GPU shader editor"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ prusnak ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ prusnak ]; platforms = [ "aarch64-linux" "armv7l-linux" diff --git a/pkgs/by-name/ko/kodi-cli/package.nix b/pkgs/by-name/ko/kodi-cli/package.nix index 8c49c224fd80..ae403df42e86 100644 --- a/pkgs/by-name/ko/kodi-cli/package.nix +++ b/pkgs/by-name/ko/kodi-cli/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/nawar/kodi-cli"; description = "Kodi/XBMC bash script to send Kodi commands using JSON RPC. It also allows sending YouTube videos to Kodi"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = [ maintainers.pstn ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.pstn ]; }; } diff --git a/pkgs/by-name/ko/kokkos/package.nix b/pkgs/by-name/ko/kokkos/package.nix index 541c5294e0b3..8bcd4e6b6881 100644 --- a/pkgs/by-name/ko/kokkos/package.nix +++ b/pkgs/by-name/ko/kokkos/package.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "C++ Performance Portability Programming EcoSystem"; homepage = "https://github.com/kokkos/kokkos"; changelog = "https://github.com/kokkos/kokkos/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 llvm-exception ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/by-name/ko/kolla/package.nix b/pkgs/by-name/ko/kolla/package.nix index 88b0ad2c2094..0e231cfe59f9 100644 --- a/pkgs/by-name/ko/kolla/package.nix +++ b/pkgs/by-name/ko/kolla/package.nix @@ -65,12 +65,12 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Provides production-ready containers and deployment tools for operating OpenStack clouds"; mainProgram = "kolla-build"; homepage = "https://opendev.org/openstack/kolla"; - license = licenses.asl20; - maintainers = [ maintainers.astro ]; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.astro ]; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/by-name/ko/komorebi/package.nix b/pkgs/by-name/ko/komorebi/package.nix index 5983473634c7..f2f9ed9a14fc 100644 --- a/pkgs/by-name/ko/komorebi/package.nix +++ b/pkgs/by-name/ko/komorebi/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Beautiful and customizable wallpaper manager for Linux"; homepage = "https://github.com/Komorebi-Fork/komorebi"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kranzes ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kranzes ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ko/kompose/package.nix b/pkgs/by-name/ko/kompose/package.nix index ed23efe96c56..e8cc3639d38b 100644 --- a/pkgs/by-name/ko/kompose/package.nix +++ b/pkgs/by-name/ko/kompose/package.nix @@ -46,13 +46,13 @@ buildGoModule (finalAttrs: { command = "kompose version"; }; - meta = with lib; { + meta = { description = "Tool to help users who are familiar with docker-compose move to Kubernetes"; mainProgram = "kompose"; homepage = "https://kompose.io"; changelog = "https://github.com/kubernetes/kompose/releases/tag/${finalAttrs.src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thpham vdemeester ]; diff --git a/pkgs/by-name/ko/kompute/package.nix b/pkgs/by-name/ko/kompute/package.nix index 8724169b5c9a..f7c350c52f16 100644 --- a/pkgs/by-name/ko/kompute/package.nix +++ b/pkgs/by-name/ko/kompute/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { vulkan-loader ]; - meta = with lib; { + meta = { description = "General purpose GPU compute framework built on Vulkan"; longDescription = '' General purpose GPU compute framework built on Vulkan to @@ -75,8 +75,8 @@ stdenv.mkDerivation rec { processing usecases. Backed by the Linux Foundation" ''; homepage = "https://kompute.cc/"; - license = licenses.asl20; - maintainers = with maintainers; [ atila ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ atila ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ko/kona/package.nix b/pkgs/by-name/ko/kona/package.nix index c163cb8b2117..68ac5b0c0caf 100644 --- a/pkgs/by-name/ko/kona/package.nix +++ b/pkgs/by-name/ko/kona/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; preInstall = ''mkdir -p "$out/bin"''; - meta = with lib; { + meta = { description = "Interpreter of K, APL-like programming language"; homepage = "https://github.com/kevinlawler/kona/"; - maintainers = with maintainers; [ raskin ]; + maintainers = with lib.maintainers; [ raskin ]; mainProgram = "k"; - platforms = platforms.all; - license = licenses.isc; + platforms = lib.platforms.all; + license = lib.licenses.isc; }; } diff --git a/pkgs/by-name/ko/kondo/package.nix b/pkgs/by-name/ko/kondo/package.nix index ac2eacf16ce3..221139176a1a 100644 --- a/pkgs/by-name/ko/kondo/package.nix +++ b/pkgs/by-name/ko/kondo/package.nix @@ -28,10 +28,10 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/kondo --completions zsh) ''; - meta = with lib; { + meta = { description = "Save disk space by cleaning unneeded files from software projects"; homepage = "https://github.com/tbillington/kondo"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "kondo"; }; } diff --git a/pkgs/by-name/ko/konf/package.nix b/pkgs/by-name/ko/konf/package.nix index 90ee378839ed..0bacb166c773 100644 --- a/pkgs/by-name/ko/konf/package.nix +++ b/pkgs/by-name/ko/konf/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Lightweight and blazing fast kubeconfig manager which allows to use different kubeconfigs at the same time"; mainProgram = "konf-go"; homepage = "https://github.com/SimonTheLeg/konf-go"; - license = licenses.asl20; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arikgrahl ]; }; } diff --git a/pkgs/by-name/ko/konsave/package.nix b/pkgs/by-name/ko/konsave/package.nix index 065d61af530f..aa01adadba17 100644 --- a/pkgs/by-name/ko/konsave/package.nix +++ b/pkgs/by-name/ko/konsave/package.nix @@ -27,12 +27,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "konsave" ]; - meta = with lib; { + meta = { description = "Save Linux Customization"; mainProgram = "konsave"; - maintainers = with maintainers; [ MoritzBoehme ]; + maintainers = with lib.maintainers; [ MoritzBoehme ]; homepage = "https://github.com/Prayag2/konsave"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ko/koodousfinder/package.nix b/pkgs/by-name/ko/koodousfinder/package.nix index 0d201df1c7f1..f49099f74015 100644 --- a/pkgs/by-name/ko/koodousfinder/package.nix +++ b/pkgs/by-name/ko/koodousfinder/package.nix @@ -32,10 +32,10 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "koodousfinder" ]; - meta = with lib; { + meta = { description = "Tool to allows users to search for and analyze Android apps"; homepage = "https://github.com/teixeira0xfffff/KoodousFinder"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ko/kooha/package.nix b/pkgs/by-name/ko/kooha/package.nix index 344831c69279..306f3e2e477d 100644 --- a/pkgs/by-name/ko/kooha/package.nix +++ b/pkgs/by-name/ko/kooha/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { $out/bin/kooha --help ''; - meta = with lib; { + meta = { description = "Elegantly record your screen"; homepage = "https://github.com/SeaDve/Kooha"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ austinbutler ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ austinbutler ]; mainProgram = "kooha"; }; } diff --git a/pkgs/by-name/ko/kool/package.nix b/pkgs/by-name/ko/kool/package.nix index d55de0b4339c..e0163bc22896 100644 --- a/pkgs/by-name/ko/kool/package.nix +++ b/pkgs/by-name/ko/kool/package.nix @@ -31,12 +31,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "From local development to the cloud: development workflow made easy"; mainProgram = "kool"; homepage = "https://kool.dev"; changelog = "https://github.com/kool-dev/kool/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ko/kord/package.nix b/pkgs/by-name/ko/kord/package.nix index fbe93f41c7df..ad3862b6f54f 100644 --- a/pkgs/by-name/ko/kord/package.nix +++ b/pkgs/by-name/ko/kord/package.nix @@ -41,10 +41,10 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ alsa-lib ]; - meta = with lib; { + meta = { description = "Music theory binary and library for Rust"; homepage = "https://github.com/twitchax/kord"; - maintainers = with maintainers; [ kidsan ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ kidsan ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/by-name/ko/kore/package.nix b/pkgs/by-name/ko/kore/package.nix index 4f95c0d3382c..b931fc4748a2 100644 --- a/pkgs/by-name/ko/kore/package.nix +++ b/pkgs/by-name/ko/kore/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Easy to use web application framework for C"; homepage = "https://kore.io"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ johnmh ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ johnmh ]; }; } diff --git a/pkgs/by-name/ko/koruri/package.nix b/pkgs/by-name/ko/koruri/package.nix index 412b4a0fa152..e5573a6e58e1 100644 --- a/pkgs/by-name/ko/koruri/package.nix +++ b/pkgs/by-name/ko/koruri/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Japanese TrueType font obtained by mixing M+ FONTS and Open Sans"; homepage = "https://github.com/Koruri/Koruri"; - license = licenses.asl20; - maintainers = with maintainers; [ haruki7049 ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ haruki7049 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ko/kotlin-interactive-shell/package.nix b/pkgs/by-name/ko/kotlin-interactive-shell/package.nix index 8ee1ed750260..df2374d16858 100644 --- a/pkgs/by-name/ko/kotlin-interactive-shell/package.nix +++ b/pkgs/by-name/ko/kotlin-interactive-shell/package.nix @@ -35,7 +35,7 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Kotlin Language Interactive Shell"; longDescription = '' The shell is an extensible implementation of Kotlin REPL with a rich set of features including: @@ -45,8 +45,8 @@ maven.buildMavenPackage rec { - List declared symbols ''; homepage = "https://github.com/Kotlin/kotlin-interactive-shell"; - license = licenses.asl20; - maintainers = [ maintainers.starsep ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.starsep ]; platforms = jre.meta.platforms; mainProgram = "ki"; }; diff --git a/pkgs/by-name/ko/koules/package.nix b/pkgs/by-name/ko/koules/package.nix index 350772dbf7c6..e350e78430e3 100644 --- a/pkgs/by-name/ko/koules/package.nix +++ b/pkgs/by-name/ko/koules/package.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://www.ucw.cz/~hubicka/koules/English/"; description = "Fast arcade game based on the fundamental law of body attraction"; mainProgram = "xkoules"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.iblech ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.iblech ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kp/kpcli/package.nix b/pkgs/by-name/kp/kpcli/package.nix index 4b7f09496c5d..45c9214d9733 100644 --- a/pkgs/by-name/kp/kpcli/package.nix +++ b/pkgs/by-name/kp/kpcli/package.nix @@ -59,16 +59,16 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "KeePass Command Line Interface"; mainProgram = "kpcli"; longDescription = '' KeePass Command Line Interface (CLI) / interactive shell. Use this program to access and manage your KeePass 1.x or 2.x databases from a Unix-like command line. ''; - license = licenses.artistic1; + license = lib.licenses.artistic1; homepage = "http://kpcli.sourceforge.net"; - platforms = platforms.all; - maintainers = [ maintainers.j-keck ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.j-keck ]; }; } diff --git a/pkgs/by-name/kp/kphotoalbum/package.nix b/pkgs/by-name/kp/kphotoalbum/package.nix index 72020cfba7b5..1a150bc46352 100644 --- a/pkgs/by-name/kp/kphotoalbum/package.nix +++ b/pkgs/by-name/kp/kphotoalbum/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation (finalAttrs: { "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ]; - meta = with lib; { + meta = { description = "Efficient image organization and indexing"; homepage = "https://www.kphotoalbum.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; inherit (kdePackages.kconfig.meta) platforms; }; }) diff --git a/pkgs/by-name/kp/kplex/package.nix b/pkgs/by-name/kp/kplex/package.nix index 4286cbc5ba56..6eb3081f9ea1 100644 --- a/pkgs/by-name/kp/kplex/package.nix +++ b/pkgs/by-name/kp/kplex/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Multiplexer for various nmea 0183 interfaces"; homepage = "https://www.stripydog.com/kplex/"; changelog = "https://www.stripydog.com/kplex/changes.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mabster314 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mabster314 ]; mainProgram = "kplex"; }; }) diff --git a/pkgs/by-name/kr/krakenx/package.nix b/pkgs/by-name/kr/krakenx/package.nix index a72ba9e4ac97..799d67e12b04 100644 --- a/pkgs/by-name/kr/krakenx/package.nix +++ b/pkgs/by-name/kr/krakenx/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "krakenx" ]; - meta = with lib; { + meta = { description = "Python script to control NZXT cooler Kraken X52/X62/X72"; homepage = "https://github.com/KsenijaS/krakenx"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kr/krankerl/package.nix b/pkgs/by-name/kr/krankerl/package.nix index bab61ea6b0c3..e4be33f69529 100644 --- a/pkgs/by-name/kr/krankerl/package.nix +++ b/pkgs/by-name/kr/krankerl/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { file ]; - meta = with lib; { + meta = { description = "CLI helper to manage, package and publish Nextcloud apps"; mainProgram = "krankerl"; homepage = "https://github.com/ChristophWurst/krankerl"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/kr/krapslog/package.nix b/pkgs/by-name/kr/krapslog/package.nix index 52fe71d91cc7..361888dc3079 100644 --- a/pkgs/by-name/kr/krapslog/package.nix +++ b/pkgs/by-name/kr/krapslog/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv; - meta = with lib; { + meta = { description = "Visualize a log file with sparklines"; homepage = "https://github.com/acj/krapslog-rs"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ yanganto ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ yanganto ]; mainProgram = "krapslog"; }; } diff --git a/pkgs/by-name/kr/krew/package.nix b/pkgs/by-name/kr/krew/package.nix index 2fc475b41e9b..f6db56c236e6 100644 --- a/pkgs/by-name/kr/krew/package.nix +++ b/pkgs/by-name/kr/krew/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { --prefix PATH : ${lib.makeBinPath [ gitMinimal ]} ''; - meta = with lib; { + meta = { description = "Package manager for kubectl plugins"; mainProgram = "krew"; homepage = "https://github.com/kubernetes-sigs/krew"; - maintainers = with maintainers; [ vdemeester ]; + maintainers = with lib.maintainers; [ vdemeester ]; license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/kr/krita-plugin-gmic/package.nix b/pkgs/by-name/kr/krita-plugin-gmic/package.nix index db5fdc92aec1..e9ee4c173308 100644 --- a/pkgs/by-name/kr/krita-plugin-gmic/package.nix +++ b/pkgs/by-name/kr/krita-plugin-gmic/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "ENABLE_SYSTEM_GMIC" false) ]; - meta = with lib; { + meta = { homepage = "https://github.com/amyspark/gmic"; description = "GMic plugin for Krita"; license = lib.licenses.cecill21; - maintainers = with maintainers; [ lelgenio ]; + maintainers = with lib.maintainers; [ lelgenio ]; }; }) diff --git a/pkgs/by-name/kr/kronosnet/package.nix b/pkgs/by-name/kr/kronosnet/package.nix index f319154c4ec7..8136a95f561e 100644 --- a/pkgs/by-name/kr/kronosnet/package.nix +++ b/pkgs/by-name/kr/kronosnet/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { zstd ]; - meta = with lib; { + meta = { description = "VPN on steroids"; homepage = "https://kronosnet.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus gpl2Plus ]; - maintainers = with maintainers; [ ryantm ]; + maintainers = with lib.maintainers; [ ryantm ]; }; } diff --git a/pkgs/by-name/kr/krr/package.nix b/pkgs/by-name/kr/krr/package.nix index e8a6eaa8d6c5..9afb59ae6f24 100644 --- a/pkgs/by-name/kr/krr/package.nix +++ b/pkgs/by-name/kr/krr/package.nix @@ -56,7 +56,7 @@ python3.pkgs.buildPythonPackage rec { command = "krr version"; }; - meta = with lib; { + meta = { description = "Prometheus-based Kubernetes resource recommendations"; longDescription = '' Robusta KRR (Kubernetes Resource Recommender) is a CLI tool for optimizing @@ -66,7 +66,7 @@ python3.pkgs.buildPythonPackage rec { ''; homepage = "https://github.com/robusta-dev/krr"; changelog = "https://github.com/robusta-dev/krr/releases/tag/v${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "krr"; }; diff --git a/pkgs/by-name/ks/kseexpr/package.nix b/pkgs/by-name/ks/kseexpr/package.nix index 4bf5adf44353..138b6c2b56e8 100644 --- a/pkgs/by-name/ks/kseexpr/package.nix +++ b/pkgs/by-name/ks/kseexpr/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { qt5.qtbase ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/graphics/kseexpr"; description = "Embeddable expression evaluation engine"; - maintainers = with maintainers; [ nek0 ]; - license = licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ nek0 ]; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/by-name/ks/kshutdown/package.nix b/pkgs/by-name/ks/kshutdown/package.nix index 405134f87486..3797a959310c 100644 --- a/pkgs/by-name/ks/kshutdown/package.nix +++ b/pkgs/by-name/ks/kshutdown/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { kstatusnotifieritem ]; - meta = with lib; { + meta = { homepage = "https://kshutdown.sourceforge.io/"; description = "Graphical shutdown utility for Linux and Windows"; mainProgram = "kshutdown"; - license = with licenses; [ gpl3 ]; - maintainers = with maintainers; [ eymeric ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3 ]; + maintainers = with lib.maintainers; [ eymeric ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ks/ksmbd-tools/package.nix b/pkgs/by-name/ks/ksmbd-tools/package.nix index a48ff86c211b..d84f22f63724 100644 --- a/pkgs/by-name/ks/ksmbd-tools/package.nix +++ b/pkgs/by-name/ks/ksmbd-tools/package.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { "--sysconfdir /etc" ]; - meta = with lib; { + meta = { description = "Userspace utilities for the ksmbd kernel SMB server"; homepage = "https://www.kernel.org/doc/html/latest/filesystems/cifs/ksmbd.html"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ks/kstars/package.nix b/pkgs/by-name/ks/kstars/package.nix index c0cf5700f06c..0139cf5227b6 100644 --- a/pkgs/by-name/ks/kstars/package.nix +++ b/pkgs/by-name/ks/kstars/package.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation (finalAttrs: { (cmakeFeature "DATA_INSTALL_DIR" (placeholder "out") + "/share/kstars/") ]; - meta = with lib; { + meta = { description = "Virtual planetarium astronomy software"; mainProgram = "kstars"; homepage = "https://kde.org/applications/education/org.kde.kstars"; @@ -96,9 +96,9 @@ stdenv.mkDerivation (finalAttrs: { The display includes up to 100 million stars, 13.000 deep-sky objects, all 8 planets, the Sun and Moon, and thousands of comets, asteroids, supernovae, and satellites. For students and teachers, it supports adjustable simulation speeds in order to view phenomena that happen over long timescales, the KStars Astrocalculator to predict conjunctions, and many common astronomical calculations. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ timput returntoreality ]; diff --git a/pkgs/by-name/ks/kstart/package.nix b/pkgs/by-name/ks/kstart/package.nix index d520d45a31a0..56904bdcf4fa 100644 --- a/pkgs/by-name/ks/kstart/package.nix +++ b/pkgs/by-name/ks/kstart/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation (finalAttrs: { "man" ]; - meta = with lib; { + meta = { outputsToInstall = [ "out" "man" ]; description = "Modified version of kerberos tools that support automatic ticket refresh"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/ks/ksuperkey/package.nix b/pkgs/by-name/ks/ksuperkey/package.nix index 44afd8773aef..474aa82f2a18 100644 --- a/pkgs/by-name/ks/ksuperkey/package.nix +++ b/pkgs/by-name/ks/ksuperkey/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { libXi ]; - meta = with lib; { + meta = { description = "Tool to be able to bind the super key as a key rather than a modifier"; homepage = "https://github.com/hanschen/ksuperkey"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ksuperkey"; }; } diff --git a/pkgs/by-name/kt/kt/package.nix b/pkgs/by-name/kt/kt/package.nix index 8070bd50d09c..5e2c373ad092 100644 --- a/pkgs/by-name/kt/kt/package.nix +++ b/pkgs/by-name/kt/kt/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Kafka command line tool"; homepage = "https://github.com/fgeller/kt"; - maintainers = with maintainers; [ utdemir ]; - platforms = with platforms; unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ utdemir ]; + platforms = with lib.platforms; unix; + license = lib.licenses.mit; mainProgram = "kt"; }; } diff --git a/pkgs/by-name/kt/ktailctl/package.nix b/pkgs/by-name/kt/ktailctl/package.nix index 3f684aed23cf..ed947d9c9ab1 100644 --- a/pkgs/by-name/kt/ktailctl/package.nix +++ b/pkgs/by-name/kt/ktailctl/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation { qtwayland ]; - meta = with lib; { + meta = { description = "GUI to monitor and manage Tailscale on your Linux desktop"; homepage = "https://github.com/f-koehler/KTailctl"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ k900 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ k900 ]; mainProgram = "ktailctl"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kt/ktfmt/package.nix b/pkgs/by-name/kt/ktfmt/package.nix index 05863a02ff23..d3a3ff92138f 100644 --- a/pkgs/by-name/kt/ktfmt/package.nix +++ b/pkgs/by-name/kt/ktfmt/package.nix @@ -36,12 +36,12 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Program that reformats Kotlin source code to comply with the common community standard for Kotlin code conventions"; homepage = "https://github.com/facebook/ktfmt"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "ktfmt"; - maintainers = with maintainers; [ ghostbuster91 ]; + maintainers = with lib.maintainers; [ ghostbuster91 ]; inherit (jre_headless.meta) platforms; }; } diff --git a/pkgs/by-name/kt/ktlint/package.nix b/pkgs/by-name/kt/ktlint/package.nix index bf619c57684c..89b7bdab00f3 100644 --- a/pkgs/by-name/kt/ktlint/package.nix +++ b/pkgs/by-name/kt/ktlint/package.nix @@ -33,17 +33,17 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Anti-bikeshedding Kotlin linter with built-in formatter"; homepage = "https://ktlint.github.io/"; - license = licenses.mit; + license = lib.licenses.mit; platforms = jre_headless.meta.platforms; changelog = "https://github.com/pinterest/ktlint/blob/master/CHANGELOG.md"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tadfisher SubhrajyotiSen ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; mainProgram = "ktlint"; }; } diff --git a/pkgs/by-name/kt/ktls-utils/package.nix b/pkgs/by-name/kt/ktls-utils/package.nix index 671c53a75f8d..170b9126f137 100644 --- a/pkgs/by-name/kt/ktls-utils/package.nix +++ b/pkgs/by-name/kt/ktls-utils/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "TLS handshake utilities for in-kernel TLS consumers"; homepage = "https://github.com/oracle/ktls-utils"; changelog = "https://github.com/oracle/ktls-utils/blob/${src.rev}/NEWS"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; mainProgram = "tlshd"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kt/ktop/package.nix b/pkgs/by-name/kt/ktop/package.nix index cd5a71fe615e..654d08062f2d 100644 --- a/pkgs/by-name/kt/ktop/package.nix +++ b/pkgs/by-name/kt/ktop/package.nix @@ -29,14 +29,14 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Top-like tool for your Kubernetes cluster"; mainProgram = "ktop"; longDescription = '' Following the tradition of Unix/Linux top tools, ktop is a tool that displays useful metrics information about nodes, pods, and other workload resources running in a Kubernetes cluster. ''; homepage = "https://github.com/vladimirvivien/ktop/"; - license = licenses.asl20; - maintainers = with maintainers; [ qjoly ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qjoly ]; }; } diff --git a/pkgs/by-name/kt/ktunnel/package.nix b/pkgs/by-name/kt/ktunnel/package.nix index 66fcee188903..4135d62437a0 100644 --- a/pkgs/by-name/kt/ktunnel/package.nix +++ b/pkgs/by-name/kt/ktunnel/package.nix @@ -35,11 +35,11 @@ buildGoModule { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Cli that exposes your local resources to kubernetes"; mainProgram = "ktunnel"; homepage = "https://github.com/omrikiei/ktunnel"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/kt/ktx-tools/package.nix b/pkgs/by-name/kt/ktx-tools/package.nix index 2668f899b568..c443ce61bafb 100644 --- a/pkgs/by-name/kt/ktx-tools/package.nix +++ b/pkgs/by-name/kt/ktx-tools/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { patchShebangs . ''; - meta = with lib; { + meta = { description = "KTX (Khronos Texture) Library and Tools"; longDescription = '' KTX (Khronos Texture) is a lightweight container for textures for OpenGL®, @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { formats and Zstd supercompression. ''; homepage = "https://github.com/KhronosGroup/KTX-Software"; - license = licenses.asl20; - maintainers = with maintainers; [ bonsairobo ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bonsairobo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ku/kube-hunter/package.nix b/pkgs/by-name/ku/kube-hunter/package.nix index 9669979d65a7..e324616c9b68 100644 --- a/pkgs/by-name/ku/kube-hunter/package.nix +++ b/pkgs/by-name/ku/kube-hunter/package.nix @@ -51,12 +51,12 @@ python3.pkgs.buildPythonApplication rec { "test_K8sCveHunter" ]; - meta = with lib; { + meta = { description = "Tool to search issues in Kubernetes clusters"; homepage = "https://github.com/aquasecurity/kube-hunter"; changelog = "https://github.com/aquasecurity/kube-hunter/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "kube-hunter"; }; } diff --git a/pkgs/by-name/ku/kube-prompt/package.nix b/pkgs/by-name/ku/kube-prompt/package.nix index 8ce8a8960840..9d8314851556 100644 --- a/pkgs/by-name/ku/kube-prompt/package.nix +++ b/pkgs/by-name/ku/kube-prompt/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-wou5inOX8vadEBCIBccwSRjtzf0GH1abwNdUu4JBvyM="; - meta = with lib; { + meta = { description = "Interactive kubernetes client featuring auto-complete"; mainProgram = "kube-prompt"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/c-bata/kube-prompt"; - maintainers = with maintainers; [ vdemeester ]; + maintainers = with lib.maintainers; [ vdemeester ]; }; } diff --git a/pkgs/by-name/ku/kube-router/package.nix b/pkgs/by-name/ku/kube-router/package.nix index 2e2f0a1a64e8..791c6bbe33eb 100644 --- a/pkgs/by-name/ku/kube-router/package.nix +++ b/pkgs/by-name/ku/kube-router/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { package = kube-router; }; - meta = with lib; { + meta = { homepage = "https://www.kube-router.io/"; description = "All-in-one router, firewall and service proxy for Kubernetes"; mainProgram = "kube-router"; - license = licenses.asl20; - maintainers = with maintainers; [ johanot ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ johanot ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ku/kubecm/package.nix b/pkgs/by-name/ku/kubecm/package.nix index 574ff81285da..5cffcf649c54 100644 --- a/pkgs/by-name/ku/kubecm/package.nix +++ b/pkgs/by-name/ku/kubecm/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Manage your kubeconfig more easily"; homepage = "https://github.com/sunny0826/kubecm/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qjoly sailord ]; diff --git a/pkgs/by-name/ku/kubeconform/package.nix b/pkgs/by-name/ku/kubeconform/package.nix index 6c9ce5ce1feb..21be5b50455c 100644 --- a/pkgs/by-name/ku/kubeconform/package.nix +++ b/pkgs/by-name/ku/kubeconform/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "FAST Kubernetes manifests validator, with support for Custom Resources"; mainProgram = "kubeconform"; homepage = "https://github.com/yannh/kubeconform/"; - license = licenses.asl20; - maintainers = [ maintainers.j4m3s ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.j4m3s ]; }; } diff --git a/pkgs/by-name/ku/kubectl-cnpg/package.nix b/pkgs/by-name/ku/kubectl-cnpg/package.nix index df1cd3d29cfd..34ae567be37c 100644 --- a/pkgs/by-name/ku/kubectl-cnpg/package.nix +++ b/pkgs/by-name/ku/kubectl-cnpg/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "cmd/kubectl-cnpg" ]; - meta = with lib; { + meta = { homepage = "https://cloudnative-pg.io/"; description = "Plugin for kubectl to manage a CloudNativePG cluster in Kubernetes"; mainProgram = "kubectl-cnpg"; - license = licenses.asl20; - maintainers = with maintainers; [ devusb ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ devusb ]; }; } diff --git a/pkgs/by-name/ku/kubectl-evict-pod/package.nix b/pkgs/by-name/ku/kubectl-evict-pod/package.nix index e219ebf1ee91..76c902836f6a 100644 --- a/pkgs/by-name/ku/kubectl-evict-pod/package.nix +++ b/pkgs/by-name/ku/kubectl-evict-pod/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "This plugin evicts the given pod and is useful for testing pod disruption budget rules"; mainProgram = "kubectl-evict-pod"; homepage = "https://github.com/rajatjindal/kubectl-evict-pod"; - license = licenses.asl20; - maintainers = [ maintainers.j4m3s ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.j4m3s ]; }; } diff --git a/pkgs/by-name/ku/kubectl-gadget/package.nix b/pkgs/by-name/ku/kubectl-gadget/package.nix index a7612d54d1d7..3b40b4ba85cd 100644 --- a/pkgs/by-name/ku/kubectl-gadget/package.nix +++ b/pkgs/by-name/ku/kubectl-gadget/package.nix @@ -33,12 +33,12 @@ buildGoModule rec { subPackages = [ "cmd/kubectl-gadget" ]; - meta = with lib; { + meta = { description = "Collection of gadgets for troubleshooting Kubernetes applications using eBPF"; mainProgram = "kubectl-gadget"; homepage = "https://inspektor-gadget.io"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kranurag7 devusb ]; diff --git a/pkgs/by-name/ku/kubectl-node-shell/package.nix b/pkgs/by-name/ku/kubectl-node-shell/package.nix index 8b1afed54972..81b9e6e5c897 100644 --- a/pkgs/by-name/ku/kubectl-node-shell/package.nix +++ b/pkgs/by-name/ku/kubectl-node-shell/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Exec into node via kubectl"; mainProgram = "kubectl-node_shell"; homepage = "https://github.com/kvaps/kubectl-node-shell"; - license = licenses.asl20; - maintainers = with maintainers; [ jocelynthode ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jocelynthode ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ku/kubectx/package.nix b/pkgs/by-name/ku/kubectx/package.nix index 52469f2e4859..f939fde73257 100644 --- a/pkgs/by-name/ku/kubectx/package.nix +++ b/pkgs/by-name/ku/kubectx/package.nix @@ -30,10 +30,10 @@ buildGoModule rec { installShellCompletion completion/* ''; - meta = with lib; { + meta = { description = "Fast way to switch between clusters and namespaces in kubectl"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/ahmetb/kubectx"; - maintainers = with maintainers; [ jlesquembre ]; + maintainers = with lib.maintainers; [ jlesquembre ]; }; } diff --git a/pkgs/by-name/ku/kubedb-cli/package.nix b/pkgs/by-name/ku/kubedb-cli/package.nix index f4ad59ffdf8a..8360b8332cb8 100644 --- a/pkgs/by-name/ku/kubedb-cli/package.nix +++ b/pkgs/by-name/ku/kubedb-cli/package.nix @@ -20,10 +20,10 @@ buildGoModule rec { # Don't compile the documentation stuff subPackages = [ "cmd/kubectl-dba" ]; - meta = with lib; { + meta = { description = "kubectl plugin for KubeDB by AppsCode"; homepage = "https://github.com/kubedb/cli"; - license = licenses.unfree; - maintainers = [ maintainers.starcraft66 ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.starcraft66 ]; }; } diff --git a/pkgs/by-name/ku/kubedock/package.nix b/pkgs/by-name/ku/kubedock/package.nix index c091a93e16d7..6d82bff7357a 100644 --- a/pkgs/by-name/ku/kubedock/package.nix +++ b/pkgs/by-name/ku/kubedock/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { env.CGO_ENABLED = 0; - meta = with lib; { + meta = { description = "Minimal implementation of the Docker API that will orchestrate containers on a Kubernetes cluster"; homepage = "https://github.com/joyrex2001/kubedock"; - license = licenses.mit; - maintainers = with maintainers; [ mausch ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mausch ]; mainProgram = "kubedock"; }; } diff --git a/pkgs/by-name/ku/kubedog/package.nix b/pkgs/by-name/ku/kubedog/package.nix index 25367f1a6d08..37dd517717a3 100644 --- a/pkgs/by-name/ku/kubedog/package.nix +++ b/pkgs/by-name/ku/kubedog/package.nix @@ -36,7 +36,7 @@ buildGoModule rec { version = src.rev; }; - meta = with lib; { + meta = { description = '' A tool to watch and follow Kubernetes resources in CI/CD deployment pipelines @@ -44,7 +44,7 @@ buildGoModule rec { mainProgram = "kubedog"; homepage = "https://github.com/werf/kubedog"; changelog = "https://github.com/werf/kubedog/releases/tag/${src.rev}"; - license = licenses.asl20; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/ku/kubefwd/package.nix b/pkgs/by-name/ku/kubefwd/package.nix index 27c3cccfdbc7..eb7ac51aa68e 100644 --- a/pkgs/by-name/ku/kubefwd/package.nix +++ b/pkgs/by-name/ku/kubefwd/package.nix @@ -23,10 +23,10 @@ buildGoModule rec { "-X=main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Bulk port forwarding Kubernetes services for local development"; homepage = "https://github.com/txn2/kubefwd"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "kubefwd"; }; diff --git a/pkgs/by-name/ku/kubelogin/package.nix b/pkgs/by-name/ku/kubelogin/package.nix index 1d18b3e1ffb9..99af8f816570 100644 --- a/pkgs/by-name/ku/kubelogin/package.nix +++ b/pkgs/by-name/ku/kubelogin/package.nix @@ -45,11 +45,11 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Kubernetes credential plugin implementing Azure authentication"; mainProgram = "kubelogin"; inherit (src.meta) homepage; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ku/kubeprompt/package.nix b/pkgs/by-name/ku/kubeprompt/package.nix index 20c5370ad9ea..170c6261210c 100644 --- a/pkgs/by-name/ku/kubeprompt/package.nix +++ b/pkgs/by-name/ku/kubeprompt/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Kubernetes prompt"; mainProgram = "kubeprompt"; homepage = "https://github.com/jlesquembre/kubeprompt"; - license = licenses.epl20; - maintainers = with maintainers; [ jlesquembre ]; + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ jlesquembre ]; }; } diff --git a/pkgs/by-name/ku/kubepug/package.nix b/pkgs/by-name/ku/kubepug/package.nix index 339039be21b4..713c1439ca39 100644 --- a/pkgs/by-name/ku/kubepug/package.nix +++ b/pkgs/by-name/ku/kubepug/package.nix @@ -23,10 +23,10 @@ buildGoModule rec { "-X sigs.k8s.io/release-utils/version.gitVersion=${version}" ]; - meta = with lib; { + meta = { description = "Checks a Kubernetes cluster for objects using deprecated API versions"; homepage = "https://github.com/kubepug/kubepug"; - license = licenses.asl20; - maintainers = with maintainers; [ mausch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mausch ]; }; } diff --git a/pkgs/by-name/ku/kubergrunt/package.nix b/pkgs/by-name/ku/kubergrunt/package.nix index afd0417a1a1c..e9f3c8ee45f2 100644 --- a/pkgs/by-name/ku/kubergrunt/package.nix +++ b/pkgs/by-name/ku/kubergrunt/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { mv $out/bin/cmd $out/bin/kubergrunt ''; - meta = with lib; { + meta = { description = "Collection of commands to fill in the gaps between Terraform, Helm, and Kubectl"; mainProgram = "kubergrunt"; homepage = "https://github.com/gruntwork-io/kubergrunt"; - license = licenses.asl20; - maintainers = with maintainers; [ psibi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ psibi ]; }; } diff --git a/pkgs/by-name/ku/kubernetes-metrics-server/package.nix b/pkgs/by-name/ku/kubernetes-metrics-server/package.nix index 9264facf3ae3..2ffc495ae74e 100644 --- a/pkgs/by-name/ku/kubernetes-metrics-server/package.nix +++ b/pkgs/by-name/ku/kubernetes-metrics-server/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { rm test/e2e_test.go ''; - meta = with lib; { + meta = { homepage = "https://github.com/kubernetes-sigs/metrics-server"; description = "Kubernetes container resource metrics collector"; mainProgram = "metrics-server"; - license = licenses.asl20; - maintainers = with maintainers; [ eskytthe ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ eskytthe ]; }; } diff --git a/pkgs/by-name/ku/kubernetes-polaris/package.nix b/pkgs/by-name/ku/kubernetes-polaris/package.nix index 8ac6c5fdc82d..16653dcae687 100644 --- a/pkgs/by-name/ku/kubernetes-polaris/package.nix +++ b/pkgs/by-name/ku/kubernetes-polaris/package.nix @@ -45,11 +45,11 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Validate and remediate Kubernetes resources to ensure configuration best practices are followed"; mainProgram = "polaris"; homepage = "https://www.fairwinds.com/polaris"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ longer ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ longer ]; }; } diff --git a/pkgs/by-name/ku/kubernix/package.nix b/pkgs/by-name/ku/kubernix/package.nix index d61b67d1a03e..bfcd0442eb94 100644 --- a/pkgs/by-name/ku/kubernix/package.nix +++ b/pkgs/by-name/ku/kubernix/package.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage { doCheck = false; - meta = with lib; { + meta = { description = "Single dependency Kubernetes clusters for local testing, experimenting and development"; mainProgram = "kubernix"; homepage = "https://github.com/saschagrunert/kubernix"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ saschagrunert ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ saschagrunert ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ku/kubespy/package.nix b/pkgs/by-name/ku/kubespy/package.nix index 2d1550409fb9..8b3fcffc6fcd 100644 --- a/pkgs/by-name/ku/kubespy/package.nix +++ b/pkgs/by-name/ku/kubespy/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "Tool to observe Kubernetes resources in real time"; mainProgram = "kubespy"; homepage = "https://github.com/pulumi/kubespy"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ku/kubetail/package.nix b/pkgs/by-name/ku/kubetail/package.nix index e80858a504d0..66653a5ccf64 100644 --- a/pkgs/by-name/ku/kubetail/package.nix +++ b/pkgs/by-name/ku/kubetail/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { installShellCompletion completion/kubetail.{bash,fish,zsh} ''; - meta = with lib; { + meta = { description = "Bash script to tail Kubernetes logs from multiple pods at the same time"; mainProgram = "kubetail"; longDescription = '' @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { -f " but for multiple pods. ''; homepage = "https://github.com/johanhaleby/kubetail"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit qjoly ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ku/kubevirt/package.nix b/pkgs/by-name/ku/kubevirt/package.nix index beefc4bf2dd1..c72c179dba66 100644 --- a/pkgs/by-name/ku/kubevirt/package.nix +++ b/pkgs/by-name/ku/kubevirt/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Client tool to use advanced features such as console access"; homepage = "https://kubevirt.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ haslersn ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ haslersn ]; mainProgram = "virtctl"; }; } diff --git a/pkgs/by-name/ku/kubexit/package.nix b/pkgs/by-name/ku/kubexit/package.nix index 36e09434ed33..d3070be233aa 100644 --- a/pkgs/by-name/ku/kubexit/package.nix +++ b/pkgs/by-name/ku/kubexit/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { "-s" "-w" ]; - meta = with lib; { + meta = { description = "Command supervisor for coordinated Kubernetes pod container termination"; mainProgram = "kubexit"; homepage = "https://github.com/karlkfi/kubexit/"; - license = licenses.asl20; - maintainers = with maintainers; [ qjoly ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qjoly ]; }; } diff --git a/pkgs/by-name/ku/kubie/package.nix b/pkgs/by-name/ku/kubie/package.nix index d3a0f31832fb..2299209c1c73 100644 --- a/pkgs/by-name/ku/kubie/package.nix +++ b/pkgs/by-name/ku/kubie/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage rec { }" ''; - meta = with lib; { + meta = { description = "Shell independent context and namespace switcher for kubectl"; mainProgram = "kubie"; homepage = "https://github.com/sbstp/kubie"; - license = with licenses; [ zlib ]; - maintainers = with maintainers; [ illiusdope ]; + license = with lib.licenses; [ zlib ]; + maintainers = with lib.maintainers; [ illiusdope ]; }; } diff --git a/pkgs/by-name/ku/kubo/package.nix b/pkgs/by-name/ku/kubo/package.nix index 13f49dd66556..67780689e95a 100644 --- a/pkgs/by-name/ku/kubo/package.nix +++ b/pkgs/by-name/ku/kubo/package.nix @@ -61,14 +61,14 @@ buildGoModule rec { install --mode=444 -D 'misc/systemd/ipfs-hardened.service' "$systemd_unit_hardened/etc/systemd/system/ipfs.service" ''; - meta = with lib; { + meta = { description = "IPFS implementation in Go"; homepage = "https://ipfs.io/"; changelog = "https://github.com/ipfs/kubo/releases/tag/${rev}"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "ipfs"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ Luflosi ]; }; diff --git a/pkgs/by-name/ku/kupfer/package.nix b/pkgs/by-name/ku/kupfer/package.nix index 421b98a8f921..07c1250dd9e8 100644 --- a/pkgs/by-name/ku/kupfer/package.nix +++ b/pkgs/by-name/ku/kupfer/package.nix @@ -63,11 +63,11 @@ buildPythonApplication rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Smart, quick launcher"; homepage = "https://kupferlauncher.github.io/"; - license = licenses.gpl3; - maintainers = with maintainers; [ cobbal ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ cobbal ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ku/kuro/package.nix b/pkgs/by-name/ku/kuro/package.nix index e03de7344c6e..9e1d1f4ebf36 100644 --- a/pkgs/by-name/ku/kuro/package.nix +++ b/pkgs/by-name/ku/kuro/package.nix @@ -80,13 +80,13 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { changelog = "https://github.com/davidsmorais/kuro/releases/tag/${src.rev}"; description = "Unofficial, featureful, open source, community-driven, free Microsoft To-Do app"; homepage = "https://github.com/davidsmorais/kuro"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "kuro"; - maintainers = with maintainers; [ ChaosAttractor ]; + maintainers = with lib.maintainers; [ ChaosAttractor ]; inherit (electron.meta) platforms; }; } diff --git a/pkgs/by-name/ku/kuttl/package.nix b/pkgs/by-name/ku/kuttl/package.nix index 7c2e2033a29a..c5ce5f1aae7c 100644 --- a/pkgs/by-name/ku/kuttl/package.nix +++ b/pkgs/by-name/ku/kuttl/package.nix @@ -26,10 +26,10 @@ buildGoModule rec { "-X github.com/kudobuilder/kuttl/pkg/version.gitVersion=${version}" ]; - meta = with lib; { + meta = { description = "KUbernetes Test TooL (KUTTL) provides a declarative approach to testing production-grade Kubernetes operators"; homepage = "https://github.com/kudobuilder/kuttl"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "kubectl-kuttl"; }; } diff --git a/pkgs/by-name/kv/kvmtool/package.nix b/pkgs/by-name/kv/kvmtool/package.nix index ff5cdd1aec77..adfbd884d0e0 100644 --- a/pkgs/by-name/kv/kvmtool/package.nix +++ b/pkgs/by-name/kv/kvmtool/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { "LIBFDT_DIR=${dtc}/lib" ]; - meta = with lib; { + meta = { description = "Lightweight tool for hosting KVM guests"; homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git/tree/README"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ astro mfrw peigongdsd diff --git a/pkgs/by-name/kw/kwakd/package.nix b/pkgs/by-name/kw/kwakd/package.nix index 1e2e7543141a..e26f7d5bbff7 100644 --- a/pkgs/by-name/kw/kwakd/package.nix +++ b/pkgs/by-name/kw/kwakd/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { --replace "kwakd -p 80" "$out/bin/kwakd -p 80" ''; - meta = with lib; { + meta = { description = "Super small webserver that serves blank pages"; mainProgram = "kwakd"; - license = licenses.gpl2Only; - maintainers = [ maintainers.nicknovitski ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.nicknovitski ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/kw/kwm/package.nix b/pkgs/by-name/kw/kwm/package.nix index 0031a33ff4ad..0f1c13640cc7 100644 --- a/pkgs/by-name/kw/kwm/package.nix +++ b/pkgs/by-name/kw/kwm/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { substituteInPlace $out/Library/LaunchDaemons/org.nixos.kwm.plist --subst-var out ''; - meta = with lib; { + meta = { description = "Tiling window manager with focus follows mouse for OSX"; homepage = "https://github.com/koekeishiya/kwm"; downloadPage = "https://github.com/koekeishiya/kwm/releases"; - platforms = platforms.darwin; - maintainers = with maintainers; [ lnl7 ]; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ lnl7 ]; mainProgram = "kwmc"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ky/kyotocabinet/package.nix b/pkgs/by-name/ky/kyotocabinet/package.nix index 6a926eefa6f0..e27d698799af 100644 --- a/pkgs/by-name/ky/kyotocabinet/package.nix +++ b/pkgs/by-name/ky/kyotocabinet/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; - meta = with lib; { + meta = { homepage = "https://dbmx.net/kyotocabinet"; description = "Library of routines for managing a database"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ky/kytea/package.nix b/pkgs/by-name/ky/kytea/package.nix index 5b8e380d96ca..675e9a6c1061 100644 --- a/pkgs/by-name/ky/kytea/package.nix +++ b/pkgs/by-name/ky/kytea/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing"; - meta = with lib; { + meta = { homepage = "http://www.phontron.com/kytea/"; description = "General toolkit developed for analyzing text"; @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { Chinese and other languages requiring word or morpheme segmentation. ''; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ky/kythe/package.nix b/pkgs/by-name/ky/kythe/package.nix index b4920ab1a75f..bc23fee232d1 100644 --- a/pkgs/by-name/ky/kythe/package.nix +++ b/pkgs/by-name/ky/kythe/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { ln -s $out/tools $out/bin ''; - meta = with lib; { + meta = { description = "Pluggable, (mostly) language-agnostic ecosystem for building tools that work with code"; longDescription = '' The Kythe project was founded to provide and support tools and standards @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { analyses, editors, code-review applications, and more — to share information with each other smoothly. ''; homepage = "https://kythe.io/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = [ maintainers.mpickering ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.mpickering ]; }; } diff --git a/pkgs/by-name/l2/l2md/package.nix b/pkgs/by-name/l2/l2md/package.nix index bdf8207e19bb..4a1d04f08cfb 100644 --- a/pkgs/by-name/l2/l2md/package.nix +++ b/pkgs/by-name/l2/l2md/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { cp l2md $out/bin ''; - meta = with lib; { + meta = { description = "Convert public-inbox archives to maildir messages"; mainProgram = "l2md"; longDescription = '' @@ -30,8 +30,8 @@ stdenv.mkDerivation { periodically synced. ''; homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/dborkman/l2md.git"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ yoctocell ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ yoctocell ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/la/lab/package.nix b/pkgs/by-name/la/lab/package.nix index 425214809eab..4422e4b2732f 100644 --- a/pkgs/by-name/la/lab/package.nix +++ b/pkgs/by-name/la/lab/package.nix @@ -52,10 +52,10 @@ buildGoModule rec { }" ''; - meta = with lib; { + meta = { description = "Wraps Git or Hub, making it simple to clone, fork, and interact with repositories on GitLab"; homepage = "https://zaquestion.github.io/lab"; - license = licenses.cc0; + license = lib.licenses.cc0; maintainers = [ ]; mainProgram = "lab"; }; diff --git a/pkgs/by-name/la/labctl/package.nix b/pkgs/by-name/la/labctl/package.nix index 4cc42615c533..cc174a727a09 100644 --- a/pkgs/by-name/la/labctl/package.nix +++ b/pkgs/by-name/la/labctl/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { --zsh <(echo "complete -o nospace -C $INSTALL labctl") ''; - meta = with lib; { + meta = { description = "Collection of helper tools for network engineers, while configuring and experimenting with their own network labs"; homepage = "https://labctl.net"; changelog = "https://github.com/labctl/labctl/releases"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "labctl"; }; diff --git a/pkgs/by-name/la/lacus/package.nix b/pkgs/by-name/la/lacus/package.nix index da00f13d0df5..168e17e96727 100644 --- a/pkgs/by-name/la/lacus/package.nix +++ b/pkgs/by-name/la/lacus/package.nix @@ -36,11 +36,11 @@ python3.pkgs.buildPythonApplication rec { werkzeug ]; - meta = with lib; { + meta = { description = "Capturing system using playwright"; homepage = "https://github.com/ail-project/lacus"; changelog = "https://github.com/ail-project/lacus/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/la/lalezar-fonts/package.nix b/pkgs/by-name/la/lalezar-fonts/package.nix index d78245f88f25..8a1da894e179 100644 --- a/pkgs/by-name/la/lalezar-fonts/package.nix +++ b/pkgs/by-name/la/lalezar-fonts/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/BornaIz/Lalezar"; description = "Multi-script display typeface for popular culture"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/la/lalrpop/package.nix b/pkgs/by-name/la/lalrpop/package.nix index e2ed8341ada5..e701a79e5908 100644 --- a/pkgs/by-name/la/lalrpop/package.nix +++ b/pkgs/by-name/la/lalrpop/package.nix @@ -33,15 +33,15 @@ rustPlatform.buildRustPackage rec { cargoCheckHook ''; - meta = with lib; { + meta = { description = "LR(1) parser generator for Rust"; homepage = "https://github.com/lalrpop/lalrpop"; changelog = "https://github.com/lalrpop/lalrpop/blob/${src.rev}/RELEASES.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; mainProgram = "lalrpop"; - maintainers = with maintainers; [ chayleaf ]; + maintainers = with lib.maintainers; [ chayleaf ]; }; } diff --git a/pkgs/by-name/la/lambda-delta/package.nix b/pkgs/by-name/la/lambda-delta/package.nix index 430a2fac7f83..ec00837035b9 100644 --- a/pkgs/by-name/la/lambda-delta/package.nix +++ b/pkgs/by-name/la/lambda-delta/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--without-SDL1" ]; - meta = with lib; { + meta = { description = "LMI (Lambda Lisp Machine) emulator"; homepage = "https://github.com/dseagrav/ld"; - license = licenses.gpl2; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/la/lambda-lisp/package.nix b/pkgs/by-name/la/lambda-lisp/package.nix index 4e85a12169f0..5185e71d212b 100644 --- a/pkgs/by-name/la/lambda-lisp/package.nix +++ b/pkgs/by-name/la/lambda-lisp/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Lisp interpreter written in untyped lambda calculus"; homepage = "https://github.com/woodrush/lambdalisp"; longDescription = '' @@ -76,8 +76,8 @@ stdenv.mkDerivation { consists of the beta-reduction of lambda terms, without introducing any non-lambda-type object. ''; - license = licenses.mit; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cafkafk ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/la/lambda-mod-zsh-theme/package.nix b/pkgs/by-name/la/lambda-mod-zsh-theme/package.nix index 266dd9a2a4ac..5d40bdbe309d 100644 --- a/pkgs/by-name/la/lambda-mod-zsh-theme/package.nix +++ b/pkgs/by-name/la/lambda-mod-zsh-theme/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { install -Dm0644 lambda-mod.zsh-theme $out/share/zsh/themes/lambda-mod.zsh-theme ''; - meta = with lib; { + meta = { description = "ZSH theme optimized for people who use Git & Unicode-compatible fonts and terminals"; homepage = "https://github.com/halfo/lambda-mod-zsh-theme/"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/la/lame/package.nix b/pkgs/by-name/la/lame/package.nix index aa595e94efc2..b5794732a5c1 100644 --- a/pkgs/by-name/la/lame/package.nix +++ b/pkgs/by-name/la/lame/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { sed -i '/lame_init_old/d' include/libmp3lame.sym ''; - meta = with lib; { + meta = { description = "High quality MPEG Audio Layer III (MP3) encoder"; homepage = "http://lame.sourceforge.net"; - license = licenses.lgpl2; - maintainers = with maintainers; [ codyopel ]; - platforms = platforms.all; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ codyopel ]; + platforms = lib.platforms.all; mainProgram = "lame"; }; } diff --git a/pkgs/by-name/la/laminar/package.nix b/pkgs/by-name/la/laminar/package.nix index 9d5a1d2f7e9b..a3d70ca2eb92 100644 --- a/pkgs/by-name/la/laminar/package.nix +++ b/pkgs/by-name/la/laminar/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { rm -rf $out/etc # remove upstream config file ''; - meta = with lib; { + meta = { description = "Lightweight and modular continuous integration service"; homepage = "https://laminar.ohwg.net"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kaction maralorn ]; diff --git a/pkgs/by-name/la/languagetool/package.nix b/pkgs/by-name/la/languagetool/package.nix index a9f97b25d964..d2d7c08b65e2 100644 --- a/pkgs/by-name/la/languagetool/package.nix +++ b/pkgs/by-name/la/languagetool/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { passthru.tests.languagetool = nixosTests.languagetool; - meta = with lib; { + meta = { homepage = "https://languagetool.org"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl21Plus; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl21Plus; platforms = jre.meta.platforms; description = "Proofreading program for English, French German, Polish, and more"; }; diff --git a/pkgs/by-name/la/lao/package.nix b/pkgs/by-name/la/lao/package.nix index 921d9c932171..bcb38d83407e 100644 --- a/pkgs/by-name/la/lao/package.nix +++ b/pkgs/by-name/la/lao/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "TrueType font for Lao language"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ serge ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/la/lapack-reference/package.nix b/pkgs/by-name/la/lapack-reference/package.nix index f690529cbeed..c0de4ce76a46 100644 --- a/pkgs/by-name/la/lapack-reference/package.nix +++ b/pkgs/by-name/la/lapack-reference/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Linear Algebra PACKage"; homepage = "http://www.netlib.org/lapack/"; - maintainers = with maintainers; [ markuskowa ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ markuskowa ]; + license = lib.licenses.bsd3; pkgConfigModules = [ "lapack" ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/la/lash/package.nix b/pkgs/by-name/la/lash/package.nix index b5a69b2208f0..6a8ef9eafa43 100644 --- a/pkgs/by-name/la/lash/package.nix +++ b/pkgs/by-name/la/lash/package.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Linux Audio Session Handler"; longDescription = '' Session management system for GNU/Linux audio applications. ''; homepage = "https://www.nongnu.org/lash"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/la/last-resort/package.nix b/pkgs/by-name/la/last-resort/package.nix index 5c7821f1066f..8029a5bf9676 100644 --- a/pkgs/by-name/la/last-resort/package.nix +++ b/pkgs/by-name/la/last-resort/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fallback font of last resort"; homepage = "https://github.com/unicode-org/last-resort-font"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; }; } diff --git a/pkgs/by-name/la/last/package.nix b/pkgs/by-name/la/last/package.nix index a2762f99b713..acefefcdc13e 100644 --- a/pkgs/by-name/la/last/package.nix +++ b/pkgs/by-name/la/last/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Genomic sequence aligner"; homepage = "https://gitlab.com/mcfrith/last"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/la/lastpass-cli/package.nix b/pkgs/by-name/la/lastpass-cli/package.nix index 5aff38e0831f..1ebcd74f5c51 100644 --- a/pkgs/by-name/la/lastpass-cli/package.nix +++ b/pkgs/by-name/la/lastpass-cli/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { install -Dm755 -T ../contrib/examples/git-credential-lastpass $out/bin/git-credential-lastpass ''; - meta = with lib; { + meta = { description = "Stores, retrieves, generates, and synchronizes passwords securely"; homepage = "https://github.com/lastpass/lastpass-cli"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ vinylen ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vinylen ]; }; } diff --git a/pkgs/by-name/la/latex2html/package.nix b/pkgs/by-name/la/latex2html/package.nix index ca0bd75fe666..ab6d0047a531 100644 --- a/pkgs/by-name/la/latex2html/package.nix +++ b/pkgs/by-name/la/latex2html/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "LaTeX-to-HTML translator"; longDescription = '' A Perl program that translates LaTeX into HTML (HyperText Markup @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { homepage = "https://www.ctan.org/pkg/latex2html"; - license = licenses.gpl2Only; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ yurrriq ]; + license = lib.licenses.gpl2Only; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ yurrriq ]; }; } diff --git a/pkgs/by-name/la/latexrun/package.nix b/pkgs/by-name/la/latexrun/package.nix index 40d7df12694d..235e3f6bf5de 100644 --- a/pkgs/by-name/la/latexrun/package.nix +++ b/pkgs/by-name/la/latexrun/package.nix @@ -24,12 +24,12 @@ stdenvNoCC.mkDerivation { chmod +x $out/bin/latexrun ''; - meta = with lib; { + meta = { description = "21st century LaTeX wrapper"; mainProgram = "latexrun"; homepage = "https://github.com/aclements/latexrun"; - license = licenses.mit; - maintainers = [ maintainers.lucus16 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lucus16 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/la/lato/package.nix b/pkgs/by-name/la/lato/package.nix index de07e06369b9..c1fe2ae6499e 100644 --- a/pkgs/by-name/la/lato/package.nix +++ b/pkgs/by-name/la/lato/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.latofonts.com/"; description = '' @@ -42,8 +42,8 @@ stdenvNoCC.mkDerivation { additional weights were created. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ chris-martin ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ chris-martin ]; }; } diff --git a/pkgs/by-name/la/laudanum/package.nix b/pkgs/by-name/la/laudanum/package.nix index 19d0122a86f5..430d83a2f314 100644 --- a/pkgs/by-name/la/laudanum/package.nix +++ b/pkgs/by-name/la/laudanum/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Collection of injectable files, designed to be used in a pentest when SQL injection flaws are found and are in multiple languages for different environments"; homepage = "https://github.com/junk13/laudanum"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.all; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/la/laurel/package.nix b/pkgs/by-name/la/laurel/package.nix index ff3899e7ba5c..d6843da87fa4 100644 --- a/pkgs/by-name/la/laurel/package.nix +++ b/pkgs/by-name/la/laurel/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { "--skip=rotate::test::fresh_file" ]; - meta = with lib; { + meta = { description = "Transform Linux Audit logs for SIEM usage"; homepage = "https://github.com/threathunters-io/laurel"; changelog = "https://github.com/threathunters-io/laurel/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ emilylange ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ emilylange ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/la/lavanda-gtk-theme/package.nix b/pkgs/by-name/la/lavanda-gtk-theme/package.nix index 3a77a82fc7d1..c1b90a389779 100644 --- a/pkgs/by-name/la/lavanda-gtk-theme/package.nix +++ b/pkgs/by-name/la/lavanda-gtk-theme/package.nix @@ -42,11 +42,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lavanda gtk theme for linux desktops"; homepage = "https://github.com/vinceliuice/Lavanda-gtk-theme"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ dretyuiop ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dretyuiop ]; }; } diff --git a/pkgs/by-name/la/lavat/package.nix b/pkgs/by-name/la/lavat/package.nix index 8cd735a692c5..9e202f92ae6a 100644 --- a/pkgs/by-name/la/lavat/package.nix +++ b/pkgs/by-name/la/lavat/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lava lamp simulation in the terminal"; longDescription = '' Lavat puts ascii metaballs in your terminal to make it look a bit like a @@ -33,10 +33,10 @@ stdenv.mkDerivation { Lavat contains various options, including those to change the color and speed of the metaballs. For a full list, run `lavat -h` ''; - maintainers = [ maintainers.minion3665 ]; - license = licenses.mit; + maintainers = [ lib.maintainers.minion3665 ]; + license = lib.licenses.mit; homepage = "https://github.com/AngelJumbo/lavat"; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "lavat"; }; } diff --git a/pkgs/by-name/la/layan-gtk-theme/package.nix b/pkgs/by-name/la/layan-gtk-theme/package.nix index aea277dcadf0..8ea8204d4bf6 100644 --- a/pkgs/by-name/la/layan-gtk-theme/package.nix +++ b/pkgs/by-name/la/layan-gtk-theme/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Flat Material Design theme for GTK 3, GTK 2 and Gnome-Shell"; homepage = "https://github.com/vinceliuice/Layan-gtk-theme"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.vanilla ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.vanilla ]; }; } diff --git a/pkgs/by-name/la/lazycli/package.nix b/pkgs/by-name/la/lazycli/package.nix index 3c0ee41a5cfb..63eef7024b0b 100644 --- a/pkgs/by-name/la/lazycli/package.nix +++ b/pkgs/by-name/la/lazycli/package.nix @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage rec { "--skip=command::test_run_command_fail" ]; - meta = with lib; { + meta = { description = "Tool to static turn CLI commands into TUIs"; homepage = "https://github.com/jesseduffield/lazycli"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "lazycli"; }; diff --git a/pkgs/by-name/la/lazydocker/package.nix b/pkgs/by-name/la/lazydocker/package.nix index 84972f30960c..53bae3c1b4d6 100644 --- a/pkgs/by-name/la/lazydocker/package.nix +++ b/pkgs/by-name/la/lazydocker/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { package = lazydocker; }; - meta = with lib; { + meta = { description = "Simple terminal UI for both docker and docker-compose"; homepage = "https://github.com/jesseduffield/lazydocker"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ das-g ]; mainProgram = "lazydocker"; diff --git a/pkgs/by-name/la/lazymc/package.nix b/pkgs/by-name/la/lazymc/package.nix index 5a25e6bc3a1e..e16a56bb8597 100644 --- a/pkgs/by-name/la/lazymc/package.nix +++ b/pkgs/by-name/la/lazymc/package.nix @@ -20,15 +20,15 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Remote wake-up daemon for minecraft servers"; homepage = "https://github.com/timvisee/lazymc"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ h7x4 dandellion ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "lazymc"; }; } diff --git a/pkgs/by-name/la/lazysql/package.nix b/pkgs/by-name/la/lazysql/package.nix index a494089d4e02..4c69c41fa5cd 100644 --- a/pkgs/by-name/la/lazysql/package.nix +++ b/pkgs/by-name/la/lazysql/package.nix @@ -33,10 +33,10 @@ buildGoModule rec { command = "lazysql --version"; }; - meta = with lib; { + meta = { description = "Cross-platform TUI database management tool written in Go"; homepage = "https://github.com/jorgerojas26/lazysql"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "lazysql"; }; diff --git a/pkgs/by-name/lb/lbd/package.nix b/pkgs/by-name/lb/lbd/package.nix index 330d2775c03f..d7d319364034 100644 --- a/pkgs/by-name/lb/lbd/package.nix +++ b/pkgs/by-name/lb/lbd/package.nix @@ -48,12 +48,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Detect if a domain uses DNS and/or HTTP Load-Balancing"; mainProgram = "lbd"; homepage = "https://github.com/D3vil0p3r/lbd"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/lb/lbdb/package.nix b/pkgs/by-name/lb/lbdb/package.nix index 746cda2bc5e1..4afb5520bfee 100644 --- a/pkgs/by-name/lb/lbdb/package.nix +++ b/pkgs/by-name/lb/lbdb/package.nix @@ -57,14 +57,14 @@ stdenv.mkDerivation rec { ./add-methods-to-rc.patch ]; - meta = with lib; { + meta = { homepage = "https://www.spinnaker.de/lbdb/"; description = "Little Brother's Database"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kaiha bfortz ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lb/lbry/package.nix b/pkgs/by-name/lb/lbry/package.nix index 8785b836f051..e6a5fa8a71d4 100644 --- a/pkgs/by-name/lb/lbry/package.nix +++ b/pkgs/by-name/lb/lbry/package.nix @@ -33,17 +33,17 @@ appimageTools.wrapAppImage rec { cp -r ${src}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Browser and wallet for LBRY, the decentralized, user-controlled content marketplace"; longDescription = '' The LBRY app is a graphical browser for the decentralized content marketplace provided by the LBRY protocol. It is essentially the lbry daemon bundled with a UI using Electron. ''; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://lbry.com/"; downloadPage = "https://lbry.com/get/"; changelog = "https://github.com/lbryio/lbry-desktop/blob/master/CHANGELOG.md"; - maintainers = with maintainers; [ enderger ]; + maintainers = with lib.maintainers; [ enderger ]; platforms = [ "x86_64-linux" ]; mainProgram = "lbry"; }; diff --git a/pkgs/by-name/lb/lbzip2/package.nix b/pkgs/by-name/lb/lbzip2/package.nix index 795d35089771..ce3bdc3f8d27 100644 --- a/pkgs/by-name/lb/lbzip2/package.nix +++ b/pkgs/by-name/lb/lbzip2/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { ./build-aux/autogen.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/kjn/lbzip2"; # Formerly http://lbzip2.org/ description = "Parallel bzip2 compression utility"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lc/lc3tools/package.nix b/pkgs/by-name/lc/lc3tools/package.nix index f1ea37351939..c9ef1484bb24 100644 --- a/pkgs/by-name/lc/lc3tools/package.nix +++ b/pkgs/by-name/lc/lc3tools/package.nix @@ -56,15 +56,15 @@ stdenv.mkDerivation { mv -t $out/bin $out/lc3* ''; - meta = with lib; { + meta = { longDescription = '' The LC-3 tools package contains the lc3as assembler, the lc3sim simulator, and lc3sim-tk, a Tcl/Tk-based GUI frontend to the simulator. ''; description = "Toolchain and emulator for the LC-3 architecture"; homepage = "https://highered.mheducation.com/sites/0072467509/student_view0/lc-3_simulator.html"; - license = licenses.gpl2; - maintainers = with maintainers; [ anna328p ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ anna328p ]; mainProgram = "lc3sim-tk"; platforms = with lib.platforms; unix ++ windows; }; diff --git a/pkgs/by-name/lc/lcab/package.nix b/pkgs/by-name/lc/lcab/package.nix index dc7d018f2398..a82c5ca70be3 100644 --- a/pkgs/by-name/lc/lcab/package.nix +++ b/pkgs/by-name/lc/lcab/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Create cabinet (.cab) archives"; homepage = "http://ohnopub.net/~ohnobinki/lcab"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; mainProgram = "lcab"; }; }) diff --git a/pkgs/by-name/lc/lcalc/package.nix b/pkgs/by-name/lc/lcalc/package.nix index 2d5cb74fda4f..60b2b3f5ffe1 100644 --- a/pkgs/by-name/lc/lcalc/package.nix +++ b/pkgs/by-name/lc/lcalc/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { "--with-pari" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/sagemath/lcalc"; description = "Program for calculating with L-functions"; mainProgram = "lcalc"; - license = with licenses; [ gpl2 ]; - teams = [ teams.sage ]; - platforms = platforms.all; + license = with lib.licenses; [ gpl2 ]; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lc/lcdf-typetools/package.nix b/pkgs/by-name/lc/lcdf-typetools/package.nix index 4cac4a5b3e09..afe4dcbb58ee 100644 --- a/pkgs/by-name/lc/lcdf-typetools/package.nix +++ b/pkgs/by-name/lc/lcdf-typetools/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { configureFlags = [ "--without-kpathsea" ]; - meta = with lib; { + meta = { description = "Utilities for manipulating OpenType, PostScript Type 1, and Multiple Master fonts"; homepage = "https://www.lcdf.org/type"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/by-name/lc/lcdproc/package.nix b/pkgs/by-name/lc/lcdproc/package.nix index 81c2971b9103..ef1045cfba3d 100644 --- a/pkgs/by-name/lc/lcdproc/package.nix +++ b/pkgs/by-name/lc/lcdproc/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { --replace server/drivers/ $out/lib/lcdproc/ ''; - meta = with lib; { + meta = { description = "Client/server suite for controlling a wide variety of LCD devices"; homepage = "https://lcdproc.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/lc/lcm/package.nix b/pkgs/by-name/lc/lcm/package.nix index a0904490e776..f1ff112f4ee4 100644 --- a/pkgs/by-name/lc/lcm/package.nix +++ b/pkgs/by-name/lc/lcm/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { glib ]; - meta = with lib; { + meta = { description = "Lightweight Communications and Marshalling (LCM)"; homepage = "https://github.com/lcm-proj/lcm"; - license = licenses.lgpl21; - maintainers = with maintainers; [ kjeremy ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ kjeremy ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lc/lcms2/package.nix b/pkgs/by-name/lc/lcms2/package.nix index e5fe6136e7da..89b0d2434e4c 100644 --- a/pkgs/by-name/lc/lcms2/package.nix +++ b/pkgs/by-name/lc/lcms2/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { # See https://trac.macports.org/ticket/60656 LDFLAGS = if stdenv.hostPlatform.isDarwin then "-Wl,-w" else null; - meta = with lib; { + meta = { description = "Color management engine"; homepage = "http://www.littlecms.com/"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ld/ldacbt/package.nix b/pkgs/by-name/ld/ldacbt/package.nix index 0de3e7468a4b..c4ec8d49980d 100644 --- a/pkgs/by-name/ld/ldacbt/package.nix +++ b/pkgs/by-name/ld/ldacbt/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 3.0...3.10)' ''; - meta = with lib; { + meta = { description = "AOSP libldac dispatcher"; homepage = "https://github.com/EHfive/ldacBT"; - license = licenses.asl20; + license = lib.licenses.asl20; # libldac code detects & #error's out on non-LE byte order - platforms = platforms.littleEndian; + platforms = lib.platforms.littleEndian; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ld/ldapvi/package.nix b/pkgs/by-name/ld/ldapvi/package.nix index 794eb6ef4819..f2b39707674f 100644 --- a/pkgs/by-name/ld/ldapvi/package.nix +++ b/pkgs/by-name/ld/ldapvi/package.nix @@ -53,14 +53,14 @@ stdenv.mkDerivation { ./autogen.sh ''; - meta = with lib; { + meta = { description = "Interactive LDAP client for Unix terminals"; longDescription = '' ldapvi is an interactive LDAP client for Unix terminals. Using it, you can update LDAP entries with a text editor. ''; homepage = "http://www.lichteblau.com/ldapvi/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "ldapvi"; diff --git a/pkgs/by-name/ld/ldb/package.nix b/pkgs/by-name/ld/ldb/package.nix index 1ff91e9c5ca2..529e0c8e0e97 100644 --- a/pkgs/by-name/ld/ldb/package.nix +++ b/pkgs/by-name/ld/ldb/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "LDAP-like embedded database"; homepage = "https://ldb.samba.org/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; pkgConfigModules = [ "ldb" ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ld/ldc/bootstrap.nix b/pkgs/by-name/ld/ldc/bootstrap.nix index 4fa9437ec073..734797cd5c2a 100644 --- a/pkgs/by-name/ld/ldc/bootstrap.nix +++ b/pkgs/by-name/ld/ldc/bootstrap.nix @@ -58,18 +58,18 @@ stdenv.mkDerivation { mv bin etc import lib LICENSE README $out/ ''; - meta = with lib; { + meta = { description = "LLVM-based D Compiler"; homepage = "https://github.com/ldc-developers/ldc"; # from https://github.com/ldc-developers/ldc/blob/master/LICENSE - license = with licenses; [ + license = with lib.licenses; [ bsd3 boost mit ncsa gpl2Plus ]; - maintainers = with maintainers; [ lionello ]; + maintainers = with lib.maintainers; [ lionello ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/ld/ldc/package.nix b/pkgs/by-name/ld/ldc/package.nix index afda829e6a3c..e57382a52b6a 100644 --- a/pkgs/by-name/ld/ldc/package.nix +++ b/pkgs/by-name/ld/ldc/package.nix @@ -156,12 +156,12 @@ stdenv.mkDerivation (finalAttrs: { disallowedReferences = [ ldcBootstrap ]; - meta = with lib; { + meta = { description = "LLVM-based D compiler"; homepage = "https://github.com/ldc-developers/ldc"; changelog = "https://github.com/ldc-developers/ldc/releases/tag/v${finalAttrs.version}"; # from https://github.com/ldc-developers/ldc/blob/master/LICENSE - license = with licenses; [ + license = with lib.licenses; [ bsd3 boost mit @@ -169,7 +169,7 @@ stdenv.mkDerivation (finalAttrs: { gpl2Plus ]; mainProgram = "ldc2"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lionello jtbx ]; diff --git a/pkgs/by-name/ld/ldeep/package.nix b/pkgs/by-name/ld/ldeep/package.nix index 0698d02538b5..60b286ff3285 100644 --- a/pkgs/by-name/ld/ldeep/package.nix +++ b/pkgs/by-name/ld/ldeep/package.nix @@ -45,12 +45,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "ldeep" ]; - meta = with lib; { + meta = { description = "In-depth LDAP enumeration utility"; homepage = "https://github.com/franc-pentest/ldeep"; changelog = "https://github.com/franc-pentest/ldeep/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ldeep"; }; } diff --git a/pkgs/by-name/ld/ldid-procursus/package.nix b/pkgs/by-name/ld/ldid-procursus/package.nix index 1b964935fb24..c49c6b3042d7 100644 --- a/pkgs/by-name/ld/ldid-procursus/package.nix +++ b/pkgs/by-name/ld/ldid-procursus/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { installShellCompletion --cmd ldid --zsh _ldid ''; - meta = with lib; { + meta = { mainProgram = "ldid"; description = "Put real or fake signatures in a Mach-O binary"; homepage = "https://github.com/ProcursusTeam/ldid"; - maintainers = with maintainers; [ keto ]; - platforms = platforms.unix; - license = licenses.agpl3Only; + maintainers = with lib.maintainers; [ keto ]; + platforms = lib.platforms.unix; + license = lib.licenses.agpl3Only; }; }) diff --git a/pkgs/by-name/ld/ldmtool/package.nix b/pkgs/by-name/ld/ldmtool/package.nix index 23c522c6e831..afc7e7d789bf 100644 --- a/pkgs/by-name/ld/ldmtool/package.nix +++ b/pkgs/by-name/ld/ldmtool/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { libuuid ]; - meta = with lib; { + meta = { description = "Tool and library for managing Microsoft Windows Dynamic Disks"; homepage = "https://github.com/mdbooth/libldm"; - maintainers = with maintainers; [ jensbin ]; - license = licenses.gpl3; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ jensbin ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "ldmtool"; }; } diff --git a/pkgs/by-name/ld/ldns/package.nix b/pkgs/by-name/ld/ldns/package.nix index 4d2671f6fbb8..a076082fb91f 100644 --- a/pkgs/by-name/ld/ldns/package.nix +++ b/pkgs/by-name/ld/ldns/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { moveToOutput "bin/ldns-config" "$dev" ''; - meta = with lib; { + meta = { description = "Library with the aim of simplifying DNS programming in C"; homepage = "https://www.nlnetlabs.nl/projects/ldns/"; - license = licenses.bsd3; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "drill"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ld/ldtk/package.nix b/pkgs/by-name/ld/ldtk/package.nix index 7eba14b94949..e40ac5b9de75 100644 --- a/pkgs/by-name/ld/ldtk/package.nix +++ b/pkgs/by-name/ld/ldtk/package.nix @@ -63,14 +63,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Modern, lightweight and efficient 2D level editor"; homepage = "https://ldtk.io/"; changelog = "https://github.com/deepnight/ldtk/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ felschr ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ felschr ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; mainProgram = "ldtk"; }; }) diff --git a/pkgs/by-name/le/leaf/package.nix b/pkgs/by-name/le/leaf/package.nix index c7daa1ef1e48..d6b17c5151fb 100644 --- a/pkgs/by-name/le/leaf/package.nix +++ b/pkgs/by-name/le/leaf/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-RQ9fQfYfpsFAA5CzR3ICLIEYb00qzUsWAQKSrK/488g="; - meta = with lib; { + meta = { description = "Simple system fetch written in rust"; homepage = "https://github.com/IogaMaster/leaf"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "leaf"; }; diff --git a/pkgs/by-name/le/lean2/package.nix b/pkgs/by-name/le/lean2/package.nix index f644176134f7..bf5c2aec400b 100644 --- a/pkgs/by-name/le/lean2/package.nix +++ b/pkgs/by-name/le/lean2/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation { wrapProgram $out/bin/linja --prefix PATH : $out/bin:${ninja}/bin ''; - meta = with lib; { + meta = { description = "Automatic and interactive theorem prover (version with HoTT support)"; homepage = "http://leanprover.github.io"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; broken = stdenv.hostPlatform.isAarch64; diff --git a/pkgs/by-name/le/lean4/package.nix b/pkgs/by-name/le/lean4/package.nix index 942b877ccc53..096093124e0a 100644 --- a/pkgs/by-name/le/lean4/package.nix +++ b/pkgs/by-name/le/lean4/package.nix @@ -89,13 +89,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Automatic and interactive theorem prover"; homepage = "https://leanprover.github.io/"; changelog = "https://github.com/leanprover/lean4/blob/${finalAttrs.src.tag}/RELEASES.md"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ danielbritten jthulhu ]; diff --git a/pkgs/by-name/le/leanify/package.nix b/pkgs/by-name/le/leanify/package.nix index 11193f2dbf53..f1a81c440f42 100644 --- a/pkgs/by-name/le/leanify/package.nix +++ b/pkgs/by-name/le/leanify/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lightweight lossless file minifier/optimizer"; longDescription = '' Leanify is a lightweight lossless file minifier/optimizer. @@ -53,9 +53,9 @@ stdenv.mkDerivation { ''; homepage = "https://github.com/JayXon/Leanify"; changelog = "https://github.com/JayXon/Leanify/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = [ maintainers.mynacol ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mynacol ]; + platforms = lib.platforms.all; mainProgram = "leanify"; }; } diff --git a/pkgs/by-name/le/leaps/package.nix b/pkgs/by-name/le/leaps/package.nix index 6c053c8343c2..b4e5ea1d396d 100644 --- a/pkgs/by-name/le/leaps/package.nix +++ b/pkgs/by-name/le/leaps/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { inherit (nixosTests) leaps; }; - meta = with lib; { + meta = { description = "Pair programming tool and library written in Golang"; mainProgram = "leaps"; homepage = "https://github.com/jeffail/leaps/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ qknight ]; }; } diff --git a/pkgs/by-name/le/leatherman/package.nix b/pkgs/by-name/le/leatherman/package.nix index f4171ddfa62a..e7b5117e8332 100644 --- a/pkgs/by-name/le/leatherman/package.nix +++ b/pkgs/by-name/le/leatherman/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { ruby ]; - meta = with lib; { + meta = { homepage = "https://github.com/puppetlabs/leatherman/"; description = "Collection of C++ and CMake utility libraries"; - license = licenses.asl20; - maintainers = [ maintainers.womfoo ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.womfoo ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/le/ledger-live-desktop/package.nix b/pkgs/by-name/le/ledger-live-desktop/package.nix index b457e5a9115a..8017f6480db9 100644 --- a/pkgs/by-name/le/ledger-live-desktop/package.nix +++ b/pkgs/by-name/le/ledger-live-desktop/package.nix @@ -37,11 +37,11 @@ appimageTools.wrapType2 rec { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "App for Ledger hardware wallets"; homepage = "https://www.ledger.com/ledger-live/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ andresilva thedavidmeister nyanloutre @@ -50,6 +50,6 @@ appimageTools.wrapType2 rec { ]; platforms = [ "x86_64-linux" ]; mainProgram = "ledger-live-desktop"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/le/ledger-udev-rules/package.nix b/pkgs/by-name/le/ledger-udev-rules/package.nix index 889bca5beb86..ab6b16ccb9e7 100644 --- a/pkgs/by-name/le/ledger-udev-rules/package.nix +++ b/pkgs/by-name/le/ledger-udev-rules/package.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation { cp 20-hw1.rules $out/lib/udev/rules.d/20-ledger.rules ''; - meta = with lib; { + meta = { description = "udev rules for Ledger devices"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ asymmetric toasteruwu ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "https://github.com/LedgerHQ/udev-rules"; }; } diff --git a/pkgs/by-name/le/ledger-web/package.nix b/pkgs/by-name/le/ledger-web/package.nix index 21efff5a4e29..061b93a92feb 100644 --- a/pkgs/by-name/le/ledger-web/package.nix +++ b/pkgs/by-name/le/ledger-web/package.nix @@ -21,15 +21,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "ledger-web"; - meta = with lib; { + meta = { description = "Web frontend to the Ledger CLI tool"; homepage = "https://github.com/peterkeen/ledger-web"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ledger_web"; }; } diff --git a/pkgs/by-name/le/ledger2beancount/package.nix b/pkgs/by-name/le/ledger2beancount/package.nix index 51cd01a9ff19..0b3c9b527887 100644 --- a/pkgs/by-name/le/ledger2beancount/package.nix +++ b/pkgs/by-name/le/ledger2beancount/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { --set PERL5LIB "${perlPackages.makeFullPerlPath perlDeps}" ''; - meta = with lib; { + meta = { description = "Ledger to Beancount text-based converter"; longDescription = '' A script to automatically convert Ledger-based textual ledgers to Beancount ones. @@ -62,8 +62,8 @@ stdenv.mkDerivation rec { Conversion is based on (concrete) syntax, so that information that is not meaningful for accounting reasons but still valuable (e.g., comments, formatting, etc.) can be preserved. ''; homepage = "https://github.com/beancount/ledger2beancount"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pablovsky ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pablovsky ]; }; } diff --git a/pkgs/by-name/le/ledit/package.nix b/pkgs/by-name/le/ledit/package.nix index f905c2b29312..c2b2d7728441 100644 --- a/pkgs/by-name/le/ledit/package.nix +++ b/pkgs/by-name/le/ledit/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { camlp-streams ]; - meta = with lib; { + meta = { homepage = "http://pauillac.inria.fr/~ddr/ledit/"; description = "Line editor, allowing to use shell commands with control characters like in emacs"; - license = licenses.bsd3; - maintainers = [ maintainers.delta ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.delta ]; mainProgram = "ledit"; }; } diff --git a/pkgs/by-name/le/ledmon/package.nix b/pkgs/by-name/le/ledmon/package.nix index 767467c7ffec..f7b9bc96c317 100644 --- a/pkgs/by-name/le/ledmon/package.nix +++ b/pkgs/by-name/le/ledmon/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { "LEDMON_INSTDIR=${placeholder "out"}/sbin" ]; - meta = with lib; { + meta = { homepage = "https://github.com/intel/ledmon"; description = "Enclosure LED Utilities"; - platforms = platforms.linux; - license = with licenses; [ gpl2Only ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl2Only ]; maintainers = with lib.maintainers; [ sorki ]; }; } diff --git a/pkgs/by-name/le/leela-zero/package.nix b/pkgs/by-name/le/leela-zero/package.nix index 7b5440562920..f55f99ec4b20 100644 --- a/pkgs/by-name/le/leela-zero/package.nix +++ b/pkgs/by-name/le/leela-zero/package.nix @@ -38,14 +38,14 @@ stdenv.mkDerivation { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Go engine modeled after AlphaGo Zero"; homepage = "https://github.com/gcp/leela-zero"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ - maintainers.averelld - maintainers.omnipotententity + lib.maintainers.averelld + lib.maintainers.omnipotententity ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/le/leetcode-cli/package.nix b/pkgs/by-name/le/leetcode-cli/package.nix index 2d8e859fa87e..d75c4a25d81a 100644 --- a/pkgs/by-name/le/leetcode-cli/package.nix +++ b/pkgs/by-name/le/leetcode-cli/package.nix @@ -47,11 +47,11 @@ rustPlatform.buildRustPackage rec { version = "leetcode ${version}"; }; - meta = with lib; { + meta = { description = "Leetcode CLI utility"; homepage = "https://github.com/clearloop/leetcode-cli"; - license = licenses.mit; - maintainers = with maintainers; [ congee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ congee ]; mainProgram = "leetcode"; }; } diff --git a/pkgs/by-name/le/left4gore-bin/package.nix b/pkgs/by-name/le/left4gore-bin/package.nix index 76bd0b5b17e2..c62d76442632 100644 --- a/pkgs/by-name/le/left4gore-bin/package.nix +++ b/pkgs/by-name/le/left4gore-bin/package.nix @@ -46,10 +46,10 @@ stdenvNoCC.mkDerivation { ln -s ${env}/bin/* $out/bin/left4gore ''; - meta = with lib; { + meta = { homepage = "http://www.left4gore.com"; description = "Memory patcher which adds the gore back into Left 4 Dead 2"; - license = licenses.unfree; # Probably the best choice - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.unfree; # Probably the best choice + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/le/legit/package.nix b/pkgs/by-name/le/legit/package.nix index f124496236d8..d87e5606dacf 100644 --- a/pkgs/by-name/le/legit/package.nix +++ b/pkgs/by-name/le/legit/package.nix @@ -33,11 +33,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "legit" ]; - meta = with lib; { + meta = { homepage = "https://github.com/frostming/legit"; description = "Git for Humans, Inspired by GitHub for Mac"; - license = licenses.bsd3; - maintainers = with maintainers; [ ryneeverett ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ryneeverett ]; mainProgram = "legit"; }; } diff --git a/pkgs/by-name/le/lego/package.nix b/pkgs/by-name/le/lego/package.nix index cef96732f65f..3be9fa4af401 100644 --- a/pkgs/by-name/le/lego/package.nix +++ b/pkgs/by-name/le/lego/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "Let's Encrypt client and ACME library written in Go"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://go-acme.github.io/lego/"; - teams = [ teams.acme ]; + teams = [ lib.teams.acme ]; mainProgram = "lego"; }; diff --git a/pkgs/by-name/le/lemminx/package.nix b/pkgs/by-name/le/lemminx/package.nix index db8204322470..725c9565142a 100644 --- a/pkgs/by-name/le/lemminx/package.nix +++ b/pkgs/by-name/le/lemminx/package.nix @@ -123,11 +123,11 @@ maven.buildMavenPackage rec { }); }; - meta = with lib; { + meta = { description = "XML Language Server"; mainProgram = "lemminx"; homepage = "https://github.com/eclipse/lemminx"; - license = licenses.epl20; - maintainers = with maintainers; [ tricktron ]; + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ tricktron ]; }; } diff --git a/pkgs/by-name/le/lemon-graph/package.nix b/pkgs/by-name/le/lemon-graph/package.nix index 71cd026e7811..36a20337fb16 100644 --- a/pkgs/by-name/le/lemon-graph/package.nix +++ b/pkgs/by-name/le/lemon-graph/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { ./cmake_version.patch ]; - meta = with lib; { + meta = { homepage = "https://lemon.cs.elte.hu/trac/lemon"; description = "Efficient library for combinatorial optimization tasks on graphs and networks"; - license = licenses.boost; - maintainers = with maintainers; [ trepetti ]; - platforms = platforms.all; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ trepetti ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/le/lemon/package.nix b/pkgs/by-name/le/lemon/package.nix index 6535e2f1fb1d..8ab85bd08711 100644 --- a/pkgs/by-name/le/lemon/package.nix +++ b/pkgs/by-name/le/lemon/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { install -Dvm644 ${srcs.lempar} $out/bin/lempar.c ''; - meta = with lib; { + meta = { description = "LALR(1) parser generator"; mainProgram = "lemon"; longDescription = '' @@ -45,7 +45,7 @@ stdenv.mkDerivation { programs "yacc" and "bison", but is not compatible with either. ''; homepage = "http://www.hwaci.com/sw/lemon/"; - license = licenses.publicDomain; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/le/lemonade/package.nix b/pkgs/by-name/le/lemonade/package.nix index 596ffd382a3b..7cddb46ba113 100644 --- a/pkgs/by-name/le/lemonade/package.nix +++ b/pkgs/by-name/le/lemonade/package.nix @@ -27,10 +27,10 @@ buildGoModule { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Remote utility tool that to copy, paste and open browsers over TCP"; homepage = "https://github.com/lemonade-command/lemonade/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "lemonade"; }; diff --git a/pkgs/by-name/le/lenpaste/package.nix b/pkgs/by-name/le/lenpaste/package.nix index f697efa9c2f7..88dc76b22888 100644 --- a/pkgs/by-name/le/lenpaste/package.nix +++ b/pkgs/by-name/le/lenpaste/package.nix @@ -30,10 +30,10 @@ buildGoModule rec { mv $out/bin/cmd $out/bin/lenpaste ''; - meta = with lib; { + meta = { description = "Web service that allows you to share notes anonymously, an alternative to pastebin.com"; homepage = "https://git.lcomrade.su/root/lenpaste"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; maintainers = [ ]; mainProgram = "lenpaste"; }; diff --git a/pkgs/by-name/le/lens/package.nix b/pkgs/by-name/le/lens/package.nix index 34d68055f8b8..6cbe93baffc1 100644 --- a/pkgs/by-name/le/lens/package.nix +++ b/pkgs/by-name/le/lens/package.nix @@ -29,11 +29,11 @@ let inherit (sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}")) url hash; }; - meta = with lib; { + meta = { description = "Kubernetes IDE"; homepage = "https://k8slens.dev/"; - license = licenses.lens; - maintainers = with maintainers; [ + license = lib.licenses.lens; + maintainers = with lib.maintainers; [ dbirks RossComputerGuy starkca90 diff --git a/pkgs/by-name/le/lensfun/package.nix b/pkgs/by-name/le/lensfun/package.nix index d59644ce0c73..55fa9762f086 100644 --- a/pkgs/by-name/le/lensfun/package.nix +++ b/pkgs/by-name/le/lensfun/package.nix @@ -73,9 +73,9 @@ stdenv.mkDerivation { cmakeFlags = [ "-DINSTALL_HELPER_SCRIPTS=OFF" ]; - meta = with lib; { - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + meta = { + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ flokli paperdigits ]; diff --git a/pkgs/by-name/le/leo3-bin/package.nix b/pkgs/by-name/le/leo3-bin/package.nix index cf0c9ba0806e..856cdb526482 100644 --- a/pkgs/by-name/le/leo3-bin/package.nix +++ b/pkgs/by-name/le/leo3-bin/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/leo3" ''; - meta = with lib; { + meta = { description = "Automated theorem prover for classical higher-order logic with choice"; mainProgram = "leo3"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsd3; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; homepage = "https://page.mi.fu-berlin.de/lex/leo3/"; }; } diff --git a/pkgs/by-name/le/lepton-eda/package.nix b/pkgs/by-name/le/lepton-eda/package.nix index 4c8d7ccc3453..e685ec889d41 100644 --- a/pkgs/by-name/le/lepton-eda/package.nix +++ b/pkgs/by-name/le/lepton-eda/package.nix @@ -65,15 +65,15 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/lepton-eda"; description = "Lepton Electronic Design Automation"; longDescription = '' Lepton EDA is a suite of free software tools for designing electronics. It provides schematic capture, netlisting into over 30 netlist formats, and many other features. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ tesq0 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tesq0 ]; }; } diff --git a/pkgs/by-name/le/lepton/package.nix b/pkgs/by-name/le/lepton/package.nix index 2da51c154b67..336afe9a1b16 100644 --- a/pkgs/by-name/le/lepton/package.nix +++ b/pkgs/by-name/le/lepton/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation { ]; buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ glibc.static ]; - meta = with lib; { + meta = { homepage = "https://github.com/dropbox/lepton"; description = "Tool to losslessly compress JPEGs"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" "x86_64-darwin" ]; - maintainers = with maintainers; [ artemist ]; + maintainers = with lib.maintainers; [ artemist ]; knownVulnerabilities = [ "CVE-2022-4104" ]; }; } diff --git a/pkgs/by-name/le/leptosfmt/package.nix b/pkgs/by-name/le/leptosfmt/package.nix index 2ee8e4ab9253..0114bb8ea103 100644 --- a/pkgs/by-name/le/leptosfmt/package.nix +++ b/pkgs/by-name/le/leptosfmt/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-m9426zuxp9GfbYoljW49BVgetLTqqcqGHCb7I+Yw+bc="; - meta = with lib; { + meta = { description = "Formatter for the leptos view! macro"; mainProgram = "leptosfmt"; homepage = "https://github.com/bram209/leptosfmt"; changelog = "https://github.com/bram209/leptosfmt/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/le/lerpn/package.nix b/pkgs/by-name/le/lerpn/package.nix index d21c44e8c965..c51003a88d2c 100644 --- a/pkgs/by-name/le/lerpn/package.nix +++ b/pkgs/by-name/le/lerpn/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "LerpnApp" ]; - meta = with lib; { + meta = { homepage = "https://gitea.alexisvl.rocks/alexisvl/lerpn"; description = "Curses RPN calculator written in straight Python"; maintainers = [ ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "lerpn"; }; } diff --git a/pkgs/by-name/le/lesbar/package.nix b/pkgs/by-name/le/lesbar/package.nix index e05ad2f9a7d8..9fe4547fcc35 100644 --- a/pkgs/by-name/le/lesbar/package.nix +++ b/pkgs/by-name/le/lesbar/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Programming language agnostic view layer for creating desktop widgets and status bars"; homepage = "https://git.sr.ht/~salmiak/lesbar"; - license = licenses.mit; - maintainers = with maintainers; [ jpentland ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpentland ]; + platforms = lib.platforms.linux; mainProgram = "lesbar"; }; }) diff --git a/pkgs/by-name/le/lesscpy/package.nix b/pkgs/by-name/le/lesscpy/package.nix index 8c0b148dccce..63d0d3dd0b62 100644 --- a/pkgs/by-name/le/lesscpy/package.nix +++ b/pkgs/by-name/le/lesscpy/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonPackage rec { pythonImportsCheck = [ "lesscpy" ]; - meta = with lib; { + meta = { description = "Python LESS Compiler"; mainProgram = "lesscpy"; homepage = "https://github.com/lesscpy/lesscpy"; - license = licenses.mit; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/by-name/le/lesspass-cli/package.nix b/pkgs/by-name/le/lesspass-cli/package.nix index ae3092ba608b..a515bb8e6780 100644 --- a/pkgs/by-name/le/lesspass-cli/package.nix +++ b/pkgs/by-name/le/lesspass-cli/package.nix @@ -49,11 +49,11 @@ buildPythonApplication rec { pythonImportsCheck = [ "lesspass" ]; - meta = with lib; { + meta = { description = "Stateless password manager"; mainProgram = "lesspass"; homepage = "https://lesspass.com"; - maintainers = with maintainers; [ jasoncarr ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ jasoncarr ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/le/lesspipe/package.nix b/pkgs/by-name/le/lesspipe/package.nix index cfe53fd5b5be..419a1a5c3dc1 100644 --- a/pkgs/by-name/le/lesspipe/package.nix +++ b/pkgs/by-name/le/lesspipe/package.nix @@ -223,7 +223,7 @@ stdenv.mkDerivation rec { }} ''; - meta = with lib; { + meta = { description = "Preprocessor for less"; longDescription = '' Usually lesspipe.sh is called as an input filter to less. With the help @@ -238,8 +238,8 @@ stdenv.mkDerivation rec { ''; mainProgram = "lesspipe.sh"; homepage = "https://github.com/wofr06/lesspipe"; - platforms = platforms.all; - license = licenses.gpl2Only; - maintainers = [ maintainers.martijnvermaat ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.martijnvermaat ]; }; } diff --git a/pkgs/by-name/le/lethe/package.nix b/pkgs/by-name/le/lethe/package.nix index a62b9eaefc3a..bf25f9739b3f 100644 --- a/pkgs/by-name/le/lethe/package.nix +++ b/pkgs/by-name/le/lethe/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Ky39RpLoYks4xDiheSsrUj3l/ZrGcY+y5IuDZ28pH/c="; - meta = with lib; { + meta = { description = "Tool to wipe drives in a secure way"; homepage = "https://github.com/kostassoid/lethe"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "lethe"; }; } diff --git a/pkgs/by-name/le/letterpress/package.nix b/pkgs/by-name/le/letterpress/package.nix index 1b8aee44ddbc..39e2a8d1b9ae 100644 --- a/pkgs/by-name/le/letterpress/package.nix +++ b/pkgs/by-name/le/letterpress/package.nix @@ -63,7 +63,7 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Create beautiful ASCII art"; longDescription = '' Letterpress converts your images into a picture made up of ASCII characters. @@ -72,10 +72,10 @@ python3Packages.buildPythonApplication rec { ''; homepage = "https://apps.gnome.org/Letterpress/"; changelog = "https://gitlab.gnome.org/World/Letterpress/-/releases/${version}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - teams = [ teams.gnome-circle ]; - platforms = platforms.linux; + teams = [ lib.teams.gnome-circle ]; + platforms = lib.platforms.linux; mainProgram = "letterpress"; }; } diff --git a/pkgs/by-name/le/levant/package.nix b/pkgs/by-name/le/levant/package.nix index f6785b35f44f..b0a3f2b988f4 100644 --- a/pkgs/by-name/le/levant/package.nix +++ b/pkgs/by-name/le/levant/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # The tests try to connect to a Nomad cluster. doCheck = false; - meta = with lib; { + meta = { description = "Open source templating and deployment tool for HashiCorp Nomad jobs"; mainProgram = "levant"; homepage = "https://github.com/hashicorp/levant"; - license = licenses.mpl20; - maintainers = with maintainers; [ max-niederman ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ max-niederman ]; }; } diff --git a/pkgs/by-name/le/leveldb/package.nix b/pkgs/by-name/le/leveldb/package.nix index 899135413fbc..f07d03a1271c 100644 --- a/pkgs/by-name/le/leveldb/package.nix +++ b/pkgs/by-name/le/leveldb/package.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { homepage = "https://github.com/google/leveldb"; description = "Fast and lightweight key/value database library by Google"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/le/lexend/package.nix b/pkgs/by-name/le/lexend/package.nix index 14523b359293..b01c2662ac93 100644 --- a/pkgs/by-name/le/lexend/package.nix +++ b/pkgs/by-name/le/lexend/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.lexend.com"; description = "Variable font family designed to aid in reading proficiency"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ fufexan ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fufexan ]; }; } diff --git a/pkgs/by-name/le/lexido/package.nix b/pkgs/by-name/le/lexido/package.nix index 103d44b4763d..0d14f34c55ff 100644 --- a/pkgs/by-name/le/lexido/package.nix +++ b/pkgs/by-name/le/lexido/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Terminal assistant, powered by Generative AI"; homepage = "https://github.com/micr0-dev/lexido"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ daru-san ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ daru-san ]; mainProgram = "lexido"; }; } diff --git a/pkgs/by-name/le/lexmark-aex/package.nix b/pkgs/by-name/le/lexmark-aex/package.nix index 8bb1c4c0bec8..5feb1c703740 100644 --- a/pkgs/by-name/le/lexmark-aex/package.nix +++ b/pkgs/by-name/le/lexmark-aex/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "CUPS drivers for Lexmark B2200 and MB2200 Series printers"; homepage = "https://support.lexmark.com/en_xm/drivers-downloads.html"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.tobim ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.tobim ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/lf/lftp/package.nix b/pkgs/by-name/lf/lftp/package.nix index 37654dd957d9..5c6f64733857 100644 --- a/pkgs/by-name/lf/lftp/package.nix +++ b/pkgs/by-name/lf/lftp/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "File transfer program supporting a number of network protocols"; homepage = "https://lftp.yar.ru/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/lg/lguf-brightness/package.nix b/pkgs/by-name/lg/lguf-brightness/package.nix index af221f5ee474..2b367ae3f331 100644 --- a/pkgs/by-name/lg/lguf-brightness/package.nix +++ b/pkgs/by-name/lg/lguf-brightness/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { install -D lguf_brightness $out/bin/lguf_brightness ''; - meta = with lib; { + meta = { description = "Adjust brightness for LG UltraFine 4K display (cross platform)"; homepage = "https://github.com/periklis/lguf-brightness"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ periklis ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ periklis ]; mainProgram = "lguf_brightness"; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/lh/lhapdf/package.nix b/pkgs/by-name/lh/lhapdf/package.nix index f9f607d0991b..c6e424c55ca6 100644 --- a/pkgs/by-name/lh/lhapdf/package.nix +++ b/pkgs/by-name/lh/lhapdf/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/lhapdf --prefix PYTHONPATH : "$(toPythonPath "$out")" ''; - meta = with lib; { + meta = { description = "General purpose interpolator, used for evaluating Parton Distribution Functions from discretised data files"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://www.lhapdf.org"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/lh/lhasa/package.nix b/pkgs/by-name/lh/lhasa/package.nix index 6f36ddacc154..d0c7d777a4c2 100644 --- a/pkgs/by-name/lh/lhasa/package.nix +++ b/pkgs/by-name/lh/lhasa/package.nix @@ -13,16 +13,16 @@ stdenv.mkDerivation rec { sha256 = "sha256-v4eFxwYJ0h62K32ueJTxOIiPiJ086Xho1QL24Tp5Kxw="; }; - meta = with lib; { + meta = { description = "Free Software replacement for the Unix LHA tool"; longDescription = '' Lhasa is a Free Software replacement for the Unix LHA tool, for decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for the tool is a library, so that it can be reused for other purposes. ''; - license = licenses.isc; + license = lib.licenses.isc; homepage = "http://fragglet.github.io/lhasa"; mainProgram = "lha"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/liana/package.nix b/pkgs/by-name/li/liana/package.nix index a5cd2b1030f2..8a9dba3b86b8 100644 --- a/pkgs/by-name/li/liana/package.nix +++ b/pkgs/by-name/li/liana/package.nix @@ -81,14 +81,14 @@ rustPlatform.buildRustPackage rec { doCheck = true; - meta = with lib; { + meta = { mainProgram = "liana-gui"; description = "Bitcoin wallet leveraging on-chain timelocks for safety and recovery"; homepage = "https://wizardsardine.com/liana"; changelog = "https://github.com/wizardsardine/liana/releases/tag/${src.rev}"; - license = licenses.bsd3; - maintainers = with maintainers; [ dunxen ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dunxen ]; + platforms = lib.platforms.linux; broken = stdenv.hostPlatform.isAarch64; }; } diff --git a/pkgs/by-name/li/lib2geom/package.nix b/pkgs/by-name/li/lib2geom/package.nix index db3331621e28..17fc5ec2630b 100644 --- a/pkgs/by-name/li/lib2geom/package.nix +++ b/pkgs/by-name/li/lib2geom/package.nix @@ -95,14 +95,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Easy to use 2D geometry library in C++"; homepage = "https://gitlab.com/inkscape/lib2geom"; license = [ - licenses.lgpl21Only - licenses.mpl11 + lib.licenses.lgpl21Only + lib.licenses.mpl11 ]; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/lib3mf/package.nix b/pkgs/by-name/li/lib3mf/package.nix index 8038e0f5b0db..5fe49009f61c 100644 --- a/pkgs/by-name/li/lib3mf/package.nix +++ b/pkgs/by-name/li/lib3mf/package.nix @@ -114,12 +114,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/3MFConsortium/lib3mf/releases/tag/${finalAttrs.src.tag}"; description = "Reference implementation of the 3D Manufacturing Format file standard"; homepage = "https://3mf.io/"; - license = licenses.bsd2; - maintainers = with maintainers; [ nim65s ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nim65s ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libGDSII/package.nix b/pkgs/by-name/li/libGDSII/package.nix index bbf2e36a86be..d1226ad50745 100644 --- a/pkgs/by-name/li/libGDSII/package.nix +++ b/pkgs/by-name/li/libGDSII/package.nix @@ -23,15 +23,15 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Library and command-line utility for reading GDSII geometry files"; mainProgram = "GDSIIConvert"; homepage = "https://github.com/HomerReid/libGDSII"; - license = [ licenses.gpl2Only ]; - maintainers = with maintainers; [ + license = [ lib.licenses.gpl2Only ]; + maintainers = with lib.maintainers; [ sheepforce markuskowa ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libHX/package.nix b/pkgs/by-name/li/libHX/package.nix index dda695c1f747..e95023fc43ca 100644 --- a/pkgs/by-name/li/libHX/package.nix +++ b/pkgs/by-name/li/libHX/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { sh autogen.sh ''; - meta = with lib; { + meta = { homepage = "https://libhx.sourceforge.net/"; longDescription = '' libHX is a C library (with some C++ bindings available) that provides data structures @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { and autoresizing, option and config file parsing, type checking casts and more. ''; maintainers = [ ]; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl3 lgpl21Plus wtfpl diff --git a/pkgs/by-name/li/libaacs/package.nix b/pkgs/by-name/li/libaacs/package.nix index f9bc443d8320..06cb5b870ce3 100644 --- a/pkgs/by-name/li/libaacs/package.nix +++ b/pkgs/by-name/li/libaacs/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { flex ]; - meta = with lib; { + meta = { homepage = "https://www.videolan.org/developers/libaacs.html"; description = "Library to access AACS protected Blu-Ray disks"; mainProgram = "aacs_info"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libabigail/package.nix b/pkgs/by-name/li/libabigail/package.nix index 89bd65ccae6f..c360fa709bea 100644 --- a/pkgs/by-name/li/libabigail/package.nix +++ b/pkgs/by-name/li/libabigail/package.nix @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { patchShebangs tests/ ''; - meta = with lib; { + meta = { description = "ABI Generic Analysis and Instrumentation Library"; homepage = "https://sourceware.org/libabigail/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 llvm-exception ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libabw/package.nix b/pkgs/by-name/li/libabw/package.nix index a6c8be817e80..7bba4449f9d6 100644 --- a/pkgs/by-name/li/libabw/package.nix +++ b/pkgs/by-name/li/libabw/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libabw"; description = "Library parsing abiword documents"; - platforms = platforms.unix; - license = licenses.mpl20; + platforms = lib.platforms.unix; + license = lib.licenses.mpl20; }; } diff --git a/pkgs/by-name/li/libacars/package.nix b/pkgs/by-name/li/libacars/package.nix index adb346920174..6137de5240fd 100644 --- a/pkgs/by-name/li/libacars/package.nix +++ b/pkgs/by-name/li/libacars/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/szpajder/libacars"; description = "Aircraft Communications Addressing and Reporting System (ACARS) message decoder"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.mafo ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.mafo ]; }; } diff --git a/pkgs/by-name/li/libaccounts-glib/package.nix b/pkgs/by-name/li/libaccounts-glib/package.nix index 150d394e7075..72e5b0915f97 100644 --- a/pkgs/by-name/li/libaccounts-glib/package.nix +++ b/pkgs/by-name/li/libaccounts-glib/package.nix @@ -80,10 +80,10 @@ stdenv.mkDerivation rec { rev-prefix = "VERSION_"; }; - meta = with lib; { + meta = { description = "Library for managing accounts which can be used from GLib applications"; homepage = "https://gitlab.com/accounts-sso/libaccounts-glib"; - platforms = platforms.linux; - license = licenses.lgpl21; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libacr38u/package.nix b/pkgs/by-name/li/libacr38u/package.nix index a4ac9de90bd4..899c8dcacde0 100644 --- a/pkgs/by-name/li/libacr38u/package.nix +++ b/pkgs/by-name/li/libacr38u/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { makeFlagsArray=(usbdropdir="$out/pcsc/drivers"); ''; - meta = with lib; { + meta = { description = "ACR38U smartcard reader driver for pcsclite"; longDescription = '' A PC/SC IFD handler implementation for the ACS ACR38U @@ -48,8 +48,8 @@ stdenv.mkDerivation { The package is based on the debian package libacr38u. ''; homepage = "https://www.acs.com.hk"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ berce ]; - platforms = with platforms; unix; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ berce ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libad9361/package.nix b/pkgs/by-name/li/libad9361/package.nix index 10c9e198af45..4b05073cabc3 100644 --- a/pkgs/by-name/li/libad9361/package.nix +++ b/pkgs/by-name/li/libad9361/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "IIO AD9361 library for filter design and handling, multi-chip sync, etc"; homepage = "http://analogdevicesinc.github.io/libad9361-iio/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libadwaita/package.nix b/pkgs/by-name/li/libadwaita/package.nix index e29c04dd5b15..a1954d7c71b0 100644 --- a/pkgs/by-name/li/libadwaita/package.nix +++ b/pkgs/by-name/li/libadwaita/package.nix @@ -127,15 +127,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://gitlab.gnome.org/GNOME/libadwaita/-/blob/${finalAttrs.src.tag}/NEWS"; description = "Library to help with developing UI for mobile devices using GTK/GNOME"; mainProgram = "adwaita-1-demo"; homepage = "https://gitlab.gnome.org/GNOME/libadwaita"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ dotlambda ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; pkgConfigModules = [ "libadwaita-1" ]; }; }) diff --git a/pkgs/by-name/li/libaec/package.nix b/pkgs/by-name/li/libaec/package.nix index 6814da5a5ea8..ebd4fc51c83c 100644 --- a/pkgs/by-name/li/libaec/package.nix +++ b/pkgs/by-name/li/libaec/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://gitlab.dkrz.de/k202009/libaec"; description = "Adaptive Entropy Coding library"; - license = licenses.bsd2; - maintainers = with maintainers; [ tbenst ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ tbenst ]; }; } diff --git a/pkgs/by-name/li/libajantv2/package.nix b/pkgs/by-name/li/libajantv2/package.nix index 6352cf082700..2044db178b6a 100644 --- a/pkgs/by-name/li/libajantv2/package.nix +++ b/pkgs/by-name/li/libajantv2/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { inherit (linuxPackages) ajantv2; }; - meta = with lib; { + meta = { description = "AJA NTV2 Open Source Static Libs and Headers for building applications that only wish to statically link against"; homepage = "https://github.com/aja-video/libajantv2"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ lib.maintainers.lukegb ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libamplsolver/package.nix b/pkgs/by-name/li/libamplsolver/package.nix index 62fd07444840..7f4343dea2aa 100644 --- a/pkgs/by-name/li/libamplsolver/package.nix +++ b/pkgs/by-name/li/libamplsolver/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Library of routines that help solvers work with AMPL"; homepage = "https://ampl.com/netlib/ampl/"; - license = [ licenses.mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ aanderse ]; + license = [ lib.licenses.mit ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ aanderse ]; # generates header at compile time broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; }; diff --git a/pkgs/by-name/li/libantlr3c/package.nix b/pkgs/by-name/li/libantlr3c/package.nix index 76ad3a773421..45919c448c25 100644 --- a/pkgs/by-name/li/libantlr3c/package.nix +++ b/pkgs/by-name/li/libantlr3c/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { # https://github.com/antlr/antlr3/issues/205 ++ lib.optional (!stdenv.hostPlatform.isx86) "--disable-abiflags"; - meta = with lib; { + meta = { description = "C runtime libraries of ANTLR v3"; homepage = "https://www.antlr3.org/"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/by-name/li/libaosd/package.nix b/pkgs/by-name/li/libaosd/package.nix index bc6aa9c97dd7..e0c4b2eaa966 100644 --- a/pkgs/by-name/li/libaosd/package.nix +++ b/pkgs/by-name/li/libaosd/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { longDescription = '' libaosd is an advanced on screen display library. @@ -49,8 +49,8 @@ stdenv.mkDerivation rec { ''; broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/atheme-legacy/libaosd"; - license = licenses.mit; - maintainers = with maintainers; [ unode ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ unode ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libappimage/package.nix b/pkgs/by-name/li/libappimage/package.nix index 0356c862aa65..3f9e51c465ae 100644 --- a/pkgs/by-name/li/libappimage/package.nix +++ b/pkgs/by-name/li/libappimage/package.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Implements functionality for dealing with AppImage files"; homepage = "https://github.com/AppImageCommunity/libappimage/"; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libappindicator/package.nix b/pkgs/by-name/li/libappindicator/package.nix index ac61fc224788..e820f7321089 100644 --- a/pkgs/by-name/li/libappindicator/package.nix +++ b/pkgs/by-name/li/libappindicator/package.nix @@ -105,10 +105,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Library to allow applications to export a menu into the Unity Menu bar"; homepage = "https://launchpad.net/libappindicator"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 lgpl3 ]; @@ -118,8 +118,8 @@ stdenv.mkDerivation (finalAttrs: { "3" = [ "appindicator3-0.1" ]; } .${gtkVersion} or throwBadGtkVersion; - platforms = platforms.linux; - maintainers = [ maintainers.msteen ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.msteen ]; # TODO: Resolve the issues with the Mono bindings. broken = monoSupport; }; diff --git a/pkgs/by-name/li/libarchive/package.nix b/pkgs/by-name/li/libarchive/package.nix index f0bfd5355b44..528e52dc6a72 100644 --- a/pkgs/by-name/li/libarchive/package.nix +++ b/pkgs/by-name/li/libarchive/package.nix @@ -126,7 +126,7 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://libarchive.org"; description = "Multi-format archive and compression library"; longDescription = '' @@ -136,9 +136,9 @@ stdenv.mkDerivation (finalAttrs: { tools that use the libarchive library. ''; changelog = "https://github.com/libarchive/libarchive/releases/tag/v${finalAttrs.version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ jcumming ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jcumming ]; + platforms = lib.platforms.all; inherit (acl.meta) badPlatforms; }; diff --git a/pkgs/by-name/li/libargon2/package.nix b/pkgs/by-name/li/libargon2/package.nix index 09117757372e..4957b47bab50 100644 --- a/pkgs/by-name/li/libargon2/package.nix +++ b/pkgs/by-name/li/libargon2/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { "LINKED_LIB_EXT=" ]; - meta = with lib; { + meta = { description = "Key derivation function that was selected as the winner of the Password Hashing Competition in July 2015"; longDescription = '' A password-hashing function created by by Alex Biryukov, Daniel Dinu, and @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { recommends using Argon2 rather than legacy algorithms. ''; homepage = "https://www.argon2.com/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 cc0 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ taeer olynch ]; mainProgram = "argon2"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libargs/package.nix b/pkgs/by-name/li/libargs/package.nix index 584aa6df8b28..e3f0d1577514 100644 --- a/pkgs/by-name/li/libargs/package.nix +++ b/pkgs/by-name/li/libargs/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { description = "Simple header-only C++ argument parser library"; homepage = "https://github.com/Taywee/args"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libaribcaption/package.nix b/pkgs/by-name/li/libaribcaption/package.nix index 51d1da2f66be..b2ff119eaa0a 100644 --- a/pkgs/by-name/li/libaribcaption/package.nix +++ b/pkgs/by-name/li/libaribcaption/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { freetype ]; - meta = with lib; { + meta = { description = "Portable ARIB STD-B24 Caption Decoder/Renderer"; homepage = "https://github.com/xqq/libaribcaption"; changelog = "https://github.com/xqq/libaribcaption/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ chayleaf ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chayleaf ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libasr/package.nix b/pkgs/by-name/li/libasr/package.nix index 7dccc5058e28..8104d6a359e5 100644 --- a/pkgs/by-name/li/libasr/package.nix +++ b/pkgs/by-name/li/libasr/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { homepage = "https://github.com/OpenSMTPD/libasr"; description = "Free, simple and portable asynchronous resolver library"; - license = licenses.isc; - maintainers = [ maintainers.koral ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.koral ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libass/package.nix b/pkgs/by-name/li/libass/package.nix index ce543e9e36a1..35edf198f2cb 100644 --- a/pkgs/by-name/li/libass/package.nix +++ b/pkgs/by-name/li/libass/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { libiconv ]; - meta = with lib; { + meta = { description = "Portable ASS/SSA subtitle renderer"; homepage = "https://github.com/libass/libass"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ codyopel ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ codyopel ]; }; } diff --git a/pkgs/by-name/li/libasyncns/package.nix b/pkgs/by-name/li/libasyncns/package.nix index a13e3733ff96..f7600800afb1 100644 --- a/pkgs/by-name/li/libasyncns/package.nix +++ b/pkgs/by-name/li/libasyncns/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { "ac_cv_func_realloc_0_nonnull=yes" ]; - meta = with lib; { + meta = { homepage = "http://0pointer.de/lennart/projects/libasyncns/"; description = "C library for Linux/Unix for executing name service queries asynchronously"; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libatasmart/package.nix b/pkgs/by-name/li/libatasmart/package.nix index c3e5c301b37c..d0cb107a5262 100644 --- a/pkgs/by-name/li/libatasmart/package.nix +++ b/pkgs/by-name/li/libatasmart/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ udev ]; - meta = with lib; { + meta = { homepage = "http://0pointer.de/blog/projects/being-smart.html"; description = "Library for querying ATA SMART status"; - license = licenses.lgpl21; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libaudclient/package.nix b/pkgs/by-name/li/libaudclient/package.nix index a8245cb0fadf..53435aaabeac 100644 --- a/pkgs/by-name/li/libaudclient/package.nix +++ b/pkgs/by-name/li/libaudclient/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { dbus-glib ]; - meta = with lib; { + meta = { description = "Legacy D-Bus client library for Audacious"; homepage = "https://audacious-media-player.org/"; - license = licenses.bsd2; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libaudec/package.nix b/pkgs/by-name/li/libaudec/package.nix index 073191c7a9d3..22b6a4dcd568 100644 --- a/pkgs/by-name/li/libaudec/package.nix +++ b/pkgs/by-name/li/libaudec/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Library for reading and resampling audio files"; homepage = "https://www.zrythm.org"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; mainProgram = "audec"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libax25/package.nix b/pkgs/by-name/li/libax25/package.nix index 34c114aa6d04..0248e8f70d79 100644 --- a/pkgs/by-name/li/libax25/package.nix +++ b/pkgs/by-name/li/libax25/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (finalAttrs: { "-static" ]; - meta = with lib; { + meta = { description = "AX.25 library for hamradio applications"; homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ sarcasticadmin ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ sarcasticadmin ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libb2/package.nix b/pkgs/by-name/li/libb2/package.nix index 77679c010a36..e627539ba462 100644 --- a/pkgs/by-name/li/libb2/package.nix +++ b/pkgs/by-name/li/libb2/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "BLAKE2 family of cryptographic hash functions"; homepage = "https://blake2.net/"; pkgConfigModules = [ "libb2" ]; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ dfoxfranke dotlambda ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; }) diff --git a/pkgs/by-name/li/libbacktrace/package.nix b/pkgs/by-name/li/libbacktrace/package.nix index 33ce3d6a0ebe..0f3abdba1ab9 100644 --- a/pkgs/by-name/li/libbacktrace/package.nix +++ b/pkgs/by-name/li/libbacktrace/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "C library that may be linked into a C/C++ program to produce symbolic backtraces"; homepage = "https://github.com/ianlancetaylor/libbacktrace"; - maintainers = with maintainers; [ twey ]; - license = with licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ twey ]; + license = with lib.licenses; [ bsd3 ]; }; } diff --git a/pkgs/by-name/li/libbaseencode/package.nix b/pkgs/by-name/li/libbaseencode/package.nix index d37276b64c2a..c86a2909a9f4 100644 --- a/pkgs/by-name/li/libbaseencode/package.nix +++ b/pkgs/by-name/li/libbaseencode/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Library written in C for encoding and decoding data using base32 or base64 (RFC-4648)"; homepage = "https://github.com/paolostivanin/libbaseencode"; - license = licenses.asl20; - maintainers = with maintainers; [ alexbakker ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ alexbakker ]; }; } diff --git a/pkgs/by-name/li/libbdplus/package.nix b/pkgs/by-name/li/libbdplus/package.nix index 65ce5347951a..96e7625e2974 100644 --- a/pkgs/by-name/li/libbdplus/package.nix +++ b/pkgs/by-name/li/libbdplus/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { gettext ]; - meta = with lib; { + meta = { homepage = "http://www.videolan.org/developers/libbdplus.html"; description = "Library to access BD+ protected Blu-Ray disks"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libbgcode/package.nix b/pkgs/by-name/li/libbgcode/package.nix index d6348bc29edd..37fcfb7b3939 100644 --- a/pkgs/by-name/li/libbgcode/package.nix +++ b/pkgs/by-name/li/libbgcode/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "LibBGCode_BUILD_TESTS" finalAttrs.finalPackage.doCheck) ]; - meta = with lib; { + meta = { homepage = "https://github.com/prusa3d/libbgcode"; description = "Prusa Block & Binary G-code reader / writer / converter"; mainProgram = "bgcode"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ lach ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ lach ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libbladeRF/package.nix b/pkgs/by-name/li/libbladeRF/package.nix index 4a2fff450484..65775419c7a1 100644 --- a/pkgs/by-name/li/libbladeRF/package.nix +++ b/pkgs/by-name/li/libbladeRF/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "fortify" ]; - meta = with lib; { + meta = { homepage = "https://nuand.com/libbladeRF-doc"; description = "Supporting library of the BladeRF SDR opensource hardware"; - license = licenses.lgpl21; - maintainers = with maintainers; [ markuskowa ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ markuskowa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libblocksruntime/package.nix b/pkgs/by-name/li/libblocksruntime/package.nix index f54f190c9042..f28dddd17b11 100644 --- a/pkgs/by-name/li/libblocksruntime/package.nix +++ b/pkgs/by-name/li/libblocksruntime/package.nix @@ -37,9 +37,9 @@ stdenv.mkDerivation { doCheck = false; # hasdescriptor.c test fails, hrm. - meta = with lib; { + meta = { description = "Installs the BlocksRuntime library from the compiler-rt"; homepage = "https://github.com/mackyle/blocksruntime"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/li/libbluray/package.nix b/pkgs/by-name/li/libbluray/package.nix index b65ebdf349e3..4b3dfdd295d4 100644 --- a/pkgs/by-name/li/libbluray/package.nix +++ b/pkgs/by-name/li/libbluray/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { ++ lib.optional (!withMetadata) "--without-libxml2" ++ lib.optional (!withFonts) "--without-freetype"; - meta = with lib; { + meta = { homepage = "http://www.videolan.org/developers/libbluray.html"; description = "Library to access Blu-Ray disks for video playback"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libbpkg/package.nix b/pkgs/by-name/li/libbpkg/package.nix index 4e523d24aabf..0a1c20649b6a 100644 --- a/pkgs/by-name/li/libbpkg/package.nix +++ b/pkgs/by-name/li/libbpkg/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Build2 package dependency manager utility library"; longDescription = '' This library defines the types and utilities for working with build2 packages. @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://build2.org/"; changelog = "https://git.build2.org/cgit/libbpkg/log"; - license = licenses.mit; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libbraiding/package.nix b/pkgs/by-name/li/libbraiding/package.nix index ebf4612acb2b..0e4a596e0ec7 100644 --- a/pkgs/by-name/li/libbraiding/package.nix +++ b/pkgs/by-name/li/libbraiding/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { # no tests included for now (2018-08-05), but can't hurt to activate doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/miguelmarco/libbraiding/"; description = "C++ library for computations on braid groups"; longDescription = '' A library to compute several properties of braids, including centralizer and conjugacy check. ''; - license = licenses.gpl3; - teams = [ teams.sage ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libbsd/package.nix b/pkgs/by-name/li/libbsd/package.nix index 696c10d03673..4fcb082e19e6 100644 --- a/pkgs/by-name/li/libbsd/package.nix +++ b/pkgs/by-name/li/libbsd/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17" ) [ "LDFLAGS=-Wl,--undefined-version" ]; - meta = with lib; { + meta = { description = "Common functions found on BSD systems"; homepage = "https://libbsd.freedesktop.org/"; - license = with licenses; [ + license = with lib.licenses; [ beerware bsd2 bsd3 @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { isc mit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # See architectures defined in src/local-elf.h. badPlatforms = lib.platforms.microblaze; maintainers = [ ]; diff --git a/pkgs/by-name/li/libbtbb/package.nix b/pkgs/by-name/li/libbtbb/package.nix index 00643a1cfda7..db06ab2b0569 100644 --- a/pkgs/by-name/li/libbtbb/package.nix +++ b/pkgs/by-name/li/libbtbb/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { description = "Bluetooth baseband decoding library"; homepage = "https://github.com/greatscottgadgets/libbtbb"; - license = licenses.gpl2; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/li/libcaca/package.nix b/pkgs/by-name/li/libcaca/package.nix index dfb291589566..848f7c7d3060 100644 --- a/pkgs/by-name/li/libcaca/package.nix +++ b/pkgs/by-name/li/libcaca/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { mv $bin/bin/caca-config $dev/bin/caca-config ''; - meta = with lib; { + meta = { homepage = "http://caca.zoy.org/wiki/libcaca"; description = "Graphics library that outputs text instead of pixels"; longDescription = '' @@ -79,8 +79,8 @@ stdenv.mkDerivation rec { Libcaca was written by Sam Hocevar and Jean-Yves Lamoureux. ''; - license = licenses.wtfpl; + license = lib.licenses.wtfpl; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcacard/package.nix b/pkgs/by-name/li/libcacard/package.nix index 3dfe6a7445ba..4f080ee3465f 100644 --- a/pkgs/by-name/li/libcacard/package.nix +++ b/pkgs/by-name/li/libcacard/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { nss ]; - meta = with lib; { + meta = { description = "Smart card emulation library"; homepage = "https://gitlab.freedesktop.org/spice/libcacard"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcamera/package.nix b/pkgs/by-name/li/libcamera/package.nix index b84c6794de6e..5633a74ec866 100644 --- a/pkgs/by-name/li/libcamera/package.nix +++ b/pkgs/by-name/li/libcamera/package.nix @@ -128,13 +128,13 @@ stdenv.mkDerivation rec { # Silence fontconfig warnings about missing config FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; }; - meta = with lib; { + meta = { description = "Open source camera stack and framework for Linux, Android, and ChromeOS"; homepage = "https://libcamera.org"; changelog = "https://git.libcamera.org/libcamera/libcamera.git/tag/?h=${src.rev}"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ citadelcore ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ citadelcore ]; + platforms = lib.platforms.linux; badPlatforms = [ # Mandatory shared libraries. lib.systems.inspect.platformPatterns.isStatic diff --git a/pkgs/by-name/li/libcanberra/package.nix b/pkgs/by-name/li/libcanberra/package.nix index 41521927cdaa..79b7a49817c2 100644 --- a/pkgs/by-name/li/libcanberra/package.nix +++ b/pkgs/by-name/li/libcanberra/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation rec { gtkModule = if gtkSupport == "gtk2" then "/lib/gtk-2.0" else "/lib/gtk-3.0/"; }; - meta = with lib; { + meta = { description = "Implementation of the XDG Sound Theme and Name Specifications"; mainProgram = "canberra-gtk-play"; longDescription = '' @@ -95,8 +95,8 @@ stdenv.mkDerivation rec { portable. ''; homepage = "http://0pointer.de/lennart/projects/libcanberra/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ RossComputerGuy ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ RossComputerGuy ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcaption/package.nix b/pkgs/by-name/li/libcaption/package.nix index 27d788b00937..7f6896edad6c 100644 --- a/pkgs/by-name/li/libcaption/package.nix +++ b/pkgs/by-name/li/libcaption/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; buildInputs = [ re2c ]; - meta = with lib; { + meta = { description = "Free open-source CEA608 / CEA708 closed-caption encoder/decoder"; homepage = "https://github.com/szatmary/libcaption"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ pschmitt ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pschmitt ]; }; }) diff --git a/pkgs/by-name/li/libcardiacarrest/package.nix b/pkgs/by-name/li/libcardiacarrest/package.nix index 54a80da8611e..7de5c0c20a8c 100644 --- a/pkgs/by-name/li/libcardiacarrest/package.nix +++ b/pkgs/by-name/li/libcardiacarrest/package.nix @@ -36,9 +36,8 @@ stdenv.mkDerivation rec { ''; meta = - with lib; - src.meta - // { + + src.meta // { description = "Trivial implementation of libpulse PulseAudio library API"; longDescription = '' libcardiacarrest is a trivial implementation of libpulse @@ -53,7 +52,7 @@ stdenv.mkDerivation rec { JACK). ''; license = libpulseaudio.meta.license; # "same as PA headers" - maintainers = [ maintainers.oxij ]; # also the author + maintainers = [ lib.maintainers.oxij ]; # also the author }; } diff --git a/pkgs/by-name/li/libcbor/package.nix b/pkgs/by-name/li/libcbor/package.nix index 3c48f2b52977..c2445e7d8965 100644 --- a/pkgs/by-name/li/libcbor/package.nix +++ b/pkgs/by-name/li/libcbor/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation (finalAttrs: { ); }; - meta = with lib; { + meta = { description = "CBOR protocol implementation for C and others"; homepage = "https://github.com/PJK/libcbor"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/li/libccd/package.nix b/pkgs/by-name/li/libccd/package.nix index 7e5263de362d..202635f62b98 100644 --- a/pkgs/by-name/li/libccd/package.nix +++ b/pkgs/by-name/li/libccd/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Library for collision detection between two convex shapes"; homepage = "https://github.com/danfis/libccd"; - license = licenses.bsd3; - maintainers = with maintainers; [ lopsided98 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lopsided98 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcdada/package.nix b/pkgs/by-name/li/libcdada/package.nix index e944a448710e..318d96159263 100644 --- a/pkgs/by-name/li/libcdada/package.nix +++ b/pkgs/by-name/li/libcdada/package.nix @@ -25,14 +25,14 @@ stdenv.mkDerivation rec { "--without-examples" ]; - meta = with lib; { + meta = { description = "Library for basic data structures in C"; longDescription = '' Basic data structures in C: list, set, map/hashtable, queue... (libstdc++ wrapper) ''; homepage = "https://github.com/msune/libcdada"; - license = licenses.bsd2; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcddb/package.nix b/pkgs/by-name/li/libcddb/package.nix index 0830491431cb..0262349831c4 100644 --- a/pkgs/by-name/li/libcddb/package.nix +++ b/pkgs/by-name/li/libcddb/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails 3 of 5 tests with locale errors - meta = with lib; { + meta = { description = "C library to access data on a CDDB server (freedb.org)"; homepage = "https://libcddb.sourceforge.net/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; mainProgram = "cddb_query"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcdio-paranoia/package.nix b/pkgs/by-name/li/libcdio-paranoia/package.nix index 4ac39a32362f..85016c6354f9 100644 --- a/pkgs/by-name/li/libcdio-paranoia/package.nix +++ b/pkgs/by-name/li/libcdio-paranoia/package.nix @@ -32,16 +32,16 @@ stdenv.mkDerivation rec { configureFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "--disable-ld-version-script" ]; - meta = with lib; { + meta = { description = "CD paranoia on top of libcdio"; longDescription = '' This is a port of xiph.org's cdda paranoia to use libcdio for CDROM access. By doing this, cdparanoia runs on platforms other than GNU/Linux. ''; homepage = "https://github.com/rocky/libcdio-paranoia"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "cd-paranoia"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcerf/package.nix b/pkgs/by-name/li/libcerf/package.nix index 37d1d0a912ee..b07e8f05046c 100644 --- a/pkgs/by-name/li/libcerf/package.nix +++ b/pkgs/by-name/li/libcerf/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { inherit gnuplot; }; - meta = with lib; { + meta = { description = "Complex error (erf), Dawson, Faddeeva, and Voigt function library"; homepage = "https://jugit.fz-juelich.de/mlz/libcerf"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libchamplain/package.nix b/pkgs/by-name/li/libchamplain/package.nix index 433c828b5182..547aa3902c56 100644 --- a/pkgs/by-name/li/libchamplain/package.nix +++ b/pkgs/by-name/li/libchamplain/package.nix @@ -75,9 +75,9 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/libchamplain"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; description = "C library providing a ClutterActor to display maps"; @@ -90,9 +90,9 @@ stdenv.mkDerivation rec { ''; teams = lib.optionals withLibsoup3 [ - teams.gnome - teams.pantheon + lib.teams.gnome + lib.teams.pantheon ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libchardet/package.nix b/pkgs/by-name/li/libchardet/package.nix index de4963ccea37..bb673fd2d4d1 100644 --- a/pkgs/by-name/li/libchardet/package.nix +++ b/pkgs/by-name/li/libchardet/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Mozilla's Universal Charset Detector C/C++ API"; mainProgram = "chardet-config"; homepage = "ftp://ftp.oops.org/pub/oops/libchardet/index.html"; - license = licenses.mpl11; + license = lib.licenses.mpl11; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcint/package.nix b/pkgs/by-name/li/libcint/package.nix index a85880b587a5..ef7c96f88cb9 100644 --- a/pkgs/by-name/li/libcint/package.nix +++ b/pkgs/by-name/li/libcint/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { doCheck = true; nativeCheckInputs = [ python3.pkgs.numpy ]; - meta = with lib; { + meta = { description = "General GTO integrals for quantum chemistry"; longDescription = '' libcint is an open source library for analytical Gaussian integrals. @@ -49,8 +49,8 @@ stdenv.mkDerivation rec { homepage = "http://wiki.sunqm.net/libcint"; downloadPage = "https://github.com/sunqm/libcint"; changelog = "https://github.com/sunqm/libcint/blob/master/ChangeLog"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcircle/package.nix b/pkgs/by-name/li/libcircle/package.nix index fc59d955226c..82001484a009 100644 --- a/pkgs/by-name/li/libcircle/package.nix +++ b/pkgs/by-name/li/libcircle/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ mpi ]; - meta = with lib; { + meta = { description = "API for distributing embarrassingly parallel workloads using self-stabilization"; homepage = "http://hpc.github.io/libcircle/"; - platforms = platforms.linux; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/li/libck/package.nix b/pkgs/by-name/li/libck/package.nix index 13963ef721c1..2715c3f38512 100644 --- a/pkgs/by-name/li/libck/package.nix +++ b/pkgs/by-name/li/libck/package.nix @@ -27,18 +27,18 @@ stdenv.mkDerivation rec { dontDisableStatic = true; - meta = with lib; { + meta = { description = "High-performance concurrency research library"; longDescription = '' Concurrency primitives, safe memory reclamation mechanisms and non-blocking data structures for the research, design and implementation of high performance concurrent systems. ''; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd2 ]; homepage = "https://concurrencykit.org/"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ chessai thoughtpolice ]; diff --git a/pkgs/by-name/li/libcloudproviders/package.nix b/pkgs/by-name/li/libcloudproviders/package.nix index 128aba939454..057acdc377a1 100644 --- a/pkgs/by-name/li/libcloudproviders/package.nix +++ b/pkgs/by-name/li/libcloudproviders/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "DBus API that allows cloud storage sync clients to expose their services"; homepage = "https://gitlab.gnome.org/World/libcloudproviders"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libclthreads/package.nix b/pkgs/by-name/li/libclthreads/package.nix index db0183c7e21a..ecf506310f4e 100644 --- a/pkgs/by-name/li/libclthreads/package.nix +++ b/pkgs/by-name/li/libclthreads/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { ln $out/lib/libclthreads.so $out/lib/libclthreads.so.2 ''; - meta = with lib; { + meta = { description = "Zita thread library"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html"; - license = licenses.lgpl21; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libclxclient/package.nix b/pkgs/by-name/li/libclxclient/package.nix index 1aea861ea1a9..bb15eb70e46e 100644 --- a/pkgs/by-name/li/libclxclient/package.nix +++ b/pkgs/by-name/li/libclxclient/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { ln $out/lib/libclxclient.so $out/lib/libclxclient.so.3 ''; - meta = with lib; { + meta = { description = "Zita X11 library"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html"; - license = licenses.lgpl21; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libcmis/package.nix b/pkgs/by-name/li/libcmis/package.nix index f0b39eeff446..2d318efb1075 100644 --- a/pkgs/by-name/li/libcmis/package.nix +++ b/pkgs/by-name/li/libcmis/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "C++ client library for the CMIS interface"; homepage = "https://github.com/tdf/libcmis"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "cmis-client"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcoap/package.nix b/pkgs/by-name/li/libcoap/package.nix index f8c4c44715e5..b7fc45841354 100644 --- a/pkgs/by-name/li/libcoap/package.nix +++ b/pkgs/by-name/li/libcoap/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { ] ++ lib.optional (!withDocs) "--disable-documentation" ++ lib.optional withTLS "--enable-dtls"; - meta = with lib; { + meta = { homepage = "https://github.com/obgm/libcoap"; description = "CoAP (RFC 7252) implementation in C"; - platforms = platforms.unix; - license = licenses.bsd2; - maintainers = [ maintainers.kmein ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.kmein ]; }; } diff --git a/pkgs/by-name/li/libcomps/package.nix b/pkgs/by-name/li/libcomps/package.nix index 4de5395ff051..12a6f3c0bce7 100644 --- a/pkgs/by-name/li/libcomps/package.nix +++ b/pkgs/by-name/li/libcomps/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { moveToOutput "lib/${python3.libPrefix}" "$py" ''; - meta = with lib; { + meta = { description = "Comps XML file manipulation library"; homepage = "https://github.com/rpm-software-management/libcomps"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ katexochen ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ katexochen ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libconfuse/package.nix b/pkgs/by-name/li/libconfuse/package.nix index 3a13c2a67780..4780f7e4d337 100644 --- a/pkgs/by-name/li/libconfuse/package.nix +++ b/pkgs/by-name/li/libconfuse/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; installCheckTarget = "check"; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Small configuration file parser library for C"; longDescription = '' @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { with a gazillion of features. Instead, it aims to be easy to use and quick to integrate with your code. ''; - license = licenses.isc; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.isc; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libcork/package.nix b/pkgs/by-name/li/libcork/package.nix index d8261ba99721..7c59221f52d5 100644 --- a/pkgs/by-name/li/libcork/package.nix +++ b/pkgs/by-name/li/libcork/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { ln -s $out/lib/libcork.so $out/lib/libcork.so.1 ''; - meta = with lib; { + meta = { homepage = "https://github.com/dcreager/libcork"; description = "Simple, easily embeddable cross-platform C library"; mainProgram = "cork-hash"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/by-name/li/libcotp/package.nix b/pkgs/by-name/li/libcotp/package.nix index 23625f7b0257..5fdd68034c80 100644 --- a/pkgs/by-name/li/libcotp/package.nix +++ b/pkgs/by-name/li/libcotp/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "C library that generates TOTP and HOTP"; homepage = "https://github.com/paolostivanin/libcotp"; - license = licenses.asl20; - maintainers = with maintainers; [ alexbakker ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ alexbakker ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libcouchbase/package.nix b/pkgs/by-name/li/libcouchbase/package.nix index aea366c0c7b2..c7aa9158d92d 100644 --- a/pkgs/by-name/li/libcouchbase/package.nix +++ b/pkgs/by-name/li/libcouchbase/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "C client library for Couchbase"; homepage = "https://github.com/couchbase/libcouchbase"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcpr/package.nix b/pkgs/by-name/li/libcpr/package.nix index 6087ef0bb00b..e55950be8b7b 100644 --- a/pkgs/by-name/li/libcpr/package.nix +++ b/pkgs/by-name/li/libcpr/package.nix @@ -50,14 +50,14 @@ stdenv.mkDerivation { "_IMPORT_PREFIX \"$dev\"" ''; - meta = with lib; { + meta = { description = "C++ wrapper around libcurl"; homepage = "https://docs.libcpr.org/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ phodina rycee ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libcpr_1_10_5/package.nix b/pkgs/by-name/li/libcpr_1_10_5/package.nix index 2164dcce331a..e63730d3fe50 100644 --- a/pkgs/by-name/li/libcpr_1_10_5/package.nix +++ b/pkgs/by-name/li/libcpr_1_10_5/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { "_IMPORT_PREFIX \"$dev\"" ''; - meta = with lib; { + meta = { description = "C++ wrapper around libcurl"; homepage = "https://docs.libcpr.org/"; - license = licenses.mit; - maintainers = with maintainers; [ rycee ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rycee ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libcpuid/package.nix b/pkgs/by-name/li/libcpuid/package.nix index 1bf5a7e51762..68402de9a104 100644 --- a/pkgs/by-name/li/libcpuid/package.nix +++ b/pkgs/by-name/li/libcpuid/package.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://libcpuid.sourceforge.net/"; description = "Small C library for x86 CPU detection and feature extraction"; mainProgram = "cpuid_tool"; changelog = "https://raw.githubusercontent.com/anrieff/libcpuid/master/ChangeLog"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.x86; + platforms = lib.platforms.x86; }; } diff --git a/pkgs/by-name/li/libcredis/package.nix b/pkgs/by-name/li/libcredis/package.nix index 46644331bf0b..9059754b679a 100644 --- a/pkgs/by-name/li/libcredis/package.nix +++ b/pkgs/by-name/li/libcredis/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { cp -v *.h "$out/include/" ''; - meta = with lib; { + meta = { description = "C client library for Redis (key-value database)"; mainProgram = "credis-test"; homepage = "https://code.google.com/archive/p/credis/"; - license = licenses.bsd3; # from homepage - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.bsd3; # from homepage + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/li/libcrossguid/package.nix b/pkgs/by-name/li/libcrossguid/package.nix index bc9b0706738a..8b65fda2bb7c 100644 --- a/pkgs/by-name/li/libcrossguid/package.nix +++ b/pkgs/by-name/li/libcrossguid/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { install -D -m644 guid.h "$out/include/guid.h" ''; - meta = with lib; { + meta = { description = "Lightweight cross platform C++ GUID/UUID library"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/graeme-hill/crossguid"; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/li/libcsa/package.nix b/pkgs/by-name/li/libcsa/package.nix index 5308a71d962d..a63ca0f55ea0 100644 --- a/pkgs/by-name/li/libcsa/package.nix +++ b/pkgs/by-name/li/libcsa/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "C code for cubic spline approximation of 2D scattered data"; homepage = "https://github.com/sakov/csa-c/"; - platforms = platforms.unix; - license = licenses.bsd3; - maintainers = with maintainers; [ mkez ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mkez ]; mainProgram = "csabathy"; }; }) diff --git a/pkgs/by-name/li/libcsptr/package.nix b/pkgs/by-name/li/libcsptr/package.nix index 1b1e0ba59ac9..3eb1cb52fb3d 100644 --- a/pkgs/by-name/li/libcsptr/package.nix +++ b/pkgs/by-name/li/libcsptr/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { (lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.5") ]; - meta = with lib; { + meta = { description = "Smart pointer constructs for the (GNU) C programming language"; homepage = "https://github.com/Snaipe/libcsptr"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.fragamus ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.fragamus ]; }; } diff --git a/pkgs/by-name/li/libctb/package.nix b/pkgs/by-name/li/libctb/package.nix index 4e5ea342e3bc..e3dae03d7d42 100644 --- a/pkgs/by-name/li/libctb/package.nix +++ b/pkgs/by-name/li/libctb/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Communications toolbox"; homepage = "https://iftools.com"; - license = licenses.lgpl2; - platforms = platforms.linux; - maintainers = [ maintainers.misuzu ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.misuzu ]; }; } diff --git a/pkgs/by-name/li/libctl/package.nix b/pkgs/by-name/li/libctl/package.nix index 8570e3d83158..4cd3482c2ddb 100644 --- a/pkgs/by-name/li/libctl/package.nix +++ b/pkgs/by-name/li/libctl/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-shared" ]; - meta = with lib; { + meta = { description = "Guile-based library for supporting flexible control files in scientific simulations"; mainProgram = "gen-ctl-io"; homepage = "https://github.com/NanoComp/libctl"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libcue/package.nix b/pkgs/by-name/li/libcue/package.nix index f3d92b40afc2..ffca99114c85 100644 --- a/pkgs/by-name/li/libcue/package.nix +++ b/pkgs/by-name/li/libcue/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "CUE Sheet Parser Library"; longDescription = '' libcue is intended to parse a so called cue sheet from a char string or @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { available. ''; homepage = "https://github.com/lipnitsk/libcue"; - license = licenses.gpl2Only; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdatachannel/package.nix b/pkgs/by-name/li/libdatachannel/package.nix index 4032cad92efd..cc9b2b5f06ae 100644 --- a/pkgs/by-name/li/libdatachannel/package.nix +++ b/pkgs/by-name/li/libdatachannel/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { --replace-fail "\''${_IMPORT_PREFIX}/include" "$dev/include" ''; - meta = with lib; { + meta = { description = "C/C++ WebRTC network library featuring Data Channels, Media Transport, and WebSockets"; homepage = "https://libdatachannel.org/"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ erdnaxe ]; - platforms = platforms.linux ++ platforms.darwin; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ erdnaxe ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libdatovka/package.nix b/pkgs/by-name/li/libdatovka/package.nix index ea2f021bc412..999fbd7bc608 100644 --- a/pkgs/by-name/li/libdatovka/package.nix +++ b/pkgs/by-name/li/libdatovka/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { docbook_xsl ]; - meta = with lib; { + meta = { description = "Client library for accessing SOAP services of Czech government-provided Databox infomation system"; homepage = "https://gitlab.nic.cz/datovka/libdatovka"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.ovlach ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.ovlach ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libdatrie/package.nix b/pkgs/by-name/li/libdatrie/package.nix index 9c22e4a46ca6..4403f1cf1cca 100644 --- a/pkgs/by-name/li/libdatrie/package.nix +++ b/pkgs/by-name/li/libdatrie/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { installManPage man/trietool.1 ''; - meta = with lib; { + meta = { homepage = "https://linux.thai.net/~thep/datrie/datrie.html"; description = "This is an implementation of double-array structure for representing trie"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; maintainers = [ ]; pkgConfigModules = [ "datrie-0.2" ]; }; diff --git a/pkgs/by-name/li/libdazzle/package.nix b/pkgs/by-name/li/libdazzle/package.nix index 2c967eeb3125..0b079cb49b19 100644 --- a/pkgs/by-name/li/libdazzle/package.nix +++ b/pkgs/by-name/li/libdazzle/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library to delight your users with fancy features"; mainProgram = "dazzle-list-counters"; longDescription = '' @@ -89,8 +89,8 @@ stdenv.mkDerivation rec { enough to work for everyone. ''; homepage = "https://gitlab.gnome.org/GNOME/libdazzle"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdbi/package.nix b/pkgs/by-name/li/libdbi/package.nix index 44cd2e99f8c1..794ce92bbd87 100644 --- a/pkgs/by-name/li/libdbi/package.nix +++ b/pkgs/by-name/li/libdbi/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "00s5ra7hdlq25iv23nwf4h1v3kmbiyzx0v9bhggjiii4lpf6ryys"; }; - meta = with lib; { + meta = { homepage = "https://libdbi.sourceforge.net/"; description = "DB independent interface to DB"; - license = licenses.lgpl21; - platforms = platforms.all; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libdbiDrivers/package.nix b/pkgs/by-name/li/libdbiDrivers/package.nix index d9677e6f1732..dd8e2b3cdd70 100644 --- a/pkgs/by-name/li/libdbiDrivers/package.nix +++ b/pkgs/by-name/li/libdbiDrivers/package.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation rec { rm -rf $out/var ''; - meta = with lib; { + meta = { homepage = "https://libdbi-drivers.sourceforge.net/"; description = "Database drivers for libdbi"; - platforms = platforms.all; - license = licenses.lgpl21; + platforms = lib.platforms.all; + license = lib.licenses.lgpl21; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libdbusmenu/package.nix b/pkgs/by-name/li/libdbusmenu/package.nix index 1bd881db3142..7193271c5bfa 100644 --- a/pkgs/by-name/li/libdbusmenu/package.nix +++ b/pkgs/by-name/li/libdbusmenu/package.nix @@ -86,10 +86,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Library for passing menu structures across DBus"; homepage = "https://launchpad.net/dbusmenu"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 lgpl21 lgpl3 @@ -99,7 +99,7 @@ stdenv.mkDerivation (finalAttrs: { "dbusmenu-jsonloader-0.4" ] ++ lib.optional (gtkVersion == "3") "dbusmenu-gtk${gtkVersion}-0.4"; - platforms = platforms.linux; - maintainers = [ maintainers.msteen ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.msteen ]; }; }) diff --git a/pkgs/by-name/li/libdc1394/package.nix b/pkgs/by-name/li/libdc1394/package.nix index 49a4d14e63a6..7660fca4d3e5 100644 --- a/pkgs/by-name/li/libdc1394/package.nix +++ b/pkgs/by-name/li/libdc1394/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { buildInputs = [ libusb1 ] ++ lib.optional stdenv.hostPlatform.isLinux libraw1394; - meta = with lib; { + meta = { description = "Capture and control API for IIDC compliant cameras"; homepage = "https://sourceforge.net/projects/libdc1394/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; mainProgram = "dc1394_reset_bus"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdecor/package.nix b/pkgs/by-name/li/libdecor/package.nix index 4e1c2e3e8819..cbb9d9fada26 100644 --- a/pkgs/by-name/li/libdecor/package.nix +++ b/pkgs/by-name/li/libdecor/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { gtk3 ]; - meta = with lib; { + meta = { homepage = "https://gitlab.freedesktop.org/libdecor/libdecor"; description = "Client-side decorations library for Wayland clients"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/by-name/li/libdeflate/package.nix b/pkgs/by-name/li/libdeflate/package.nix index 489120138448..1d15c2fd7b05 100644 --- a/pkgs/by-name/li/libdeflate/package.nix +++ b/pkgs/by-name/li/libdeflate/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Fast DEFLATE/zlib/gzip compressor and decompressor"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/ebiggers/libdeflate"; changelog = "https://github.com/ebiggers/libdeflate/blob/v${finalAttrs.version}/NEWS.md"; - platforms = platforms.unix ++ platforms.windows; - maintainers = with maintainers; [ + platforms = lib.platforms.unix ++ lib.platforms.windows; + maintainers = with lib.maintainers; [ kaction ]; pkgConfigModules = [ "libdeflate" ]; diff --git a/pkgs/by-name/li/libdeltachat/package.nix b/pkgs/by-name/li/libdeltachat/package.nix index 53574bba138f..5454b1e9aae7 100644 --- a/pkgs/by-name/li/libdeltachat/package.nix +++ b/pkgs/by-name/li/libdeltachat/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Delta Chat Rust Core library"; homepage = "https://github.com/chatmail/core"; changelog = "https://github.com/chatmail/core/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdex/package.nix b/pkgs/by-name/li/libdex/package.nix index f9901e8b3ae3..aac7ef64c3b6 100644 --- a/pkgs/by-name/li/libdex/package.nix +++ b/pkgs/by-name/li/libdex/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation (finalAttrs: { versionPolicy = "odd-unstable"; }; - meta = with lib; { + meta = { description = "Library supporting deferred execution for GNOME and GTK"; homepage = "https://gitlab.gnome.org/GNOME/libdex"; - teams = [ teams.gnome ]; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.lgpl21Plus; }; }) diff --git a/pkgs/by-name/li/libdicom/package.nix b/pkgs/by-name/li/libdicom/package.nix index c064e6007a30..9a123655657d 100644 --- a/pkgs/by-name/li/libdicom/package.nix +++ b/pkgs/by-name/li/libdicom/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "C library for reading DICOM files"; homepage = "https://github.com/ImagingDataCommons/libdicom"; - license = licenses.mit; - maintainers = with maintainers; [ lromor ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lromor ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libdict/package.nix b/pkgs/by-name/li/libdict/package.nix index b29b53cc4988..31cb5f668c15 100644 --- a/pkgs/by-name/li/libdict/package.nix +++ b/pkgs/by-name/li/libdict/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/rtbrick/libdict/"; changelog = "https://github.com/rtbrick/libdict/releases/tag/${finalAttrs.version}"; description = "C library of key-value data structures"; - license = licenses.bsd2; - teams = [ teams.wdz ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.wdz ]; }; }) diff --git a/pkgs/by-name/li/libdigidocpp/package.nix b/pkgs/by-name/li/libdigidocpp/package.nix index a7e58c1dbee6..7e0795ce9aa6 100644 --- a/pkgs/by-name/li/libdigidocpp/package.nix +++ b/pkgs/by-name/li/libdigidocpp/package.nix @@ -66,14 +66,14 @@ stdenv.mkDerivation rec { -i "$dev"/lib/cmake/libdigidocpp/libdigidocpp-config.cmake ''; - meta = with lib; { + meta = { description = "Library for creating DigiDoc signature files"; mainProgram = "digidoc-tool"; homepage = "https://www.id.ee/"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; maintainers = [ - maintainers.flokli + lib.maintainers.flokli ]; }; } diff --git a/pkgs/by-name/li/libdiscid/package.nix b/pkgs/by-name/li/libdiscid/package.nix index 689b72e8aa33..1d392a680185 100644 --- a/pkgs/by-name/li/libdiscid/package.nix +++ b/pkgs/by-name/li/libdiscid/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "C library for creating MusicBrainz DiscIDs from audio CDs"; homepage = "https://musicbrainz.org/doc/libdiscid"; - license = licenses.lgpl21; - platforms = platforms.all; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libdisplay-info/package.nix b/pkgs/by-name/li/libdisplay-info/package.nix index 020c587cb7c6..f67688d1f7fd 100644 --- a/pkgs/by-name/li/libdisplay-info/package.nix +++ b/pkgs/by-name/li/libdisplay-info/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs tool/gen-search-table.py ''; - meta = with lib; { + meta = { description = "EDID and DisplayID library"; mainProgram = "di-edid-decode"; homepage = "https://gitlab.freedesktop.org/emersion/libdisplay-info"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ pedrohlc ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pedrohlc ]; }; }) diff --git a/pkgs/by-name/li/libdivecomputer/package.nix b/pkgs/by-name/li/libdivecomputer/package.nix index fa599d076b7f..a545342a7e32 100644 --- a/pkgs/by-name/li/libdivecomputer/package.nix +++ b/pkgs/by-name/li/libdivecomputer/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.libdivecomputer.org"; description = "Cross-platform and open source library for communication with dive computers from various manufacturers"; mainProgram = "dctool"; - maintainers = [ maintainers.mguentner ]; - license = licenses.lgpl21; - platforms = platforms.all; + maintainers = [ lib.maintainers.mguentner ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libdjinterop/package.nix b/pkgs/by-name/li/libdjinterop/package.nix index ce116d4a0275..00bb024af7d3 100644 --- a/pkgs/by-name/li/libdjinterop/package.nix +++ b/pkgs/by-name/li/libdjinterop/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation (finalAttrs: { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/xsco/libdjinterop"; description = "C++ library for access to DJ record libraries"; - license = licenses.lgpl3; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ benley ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libdmapsharing/package.nix b/pkgs/by-name/li/libdmapsharing/package.nix index cbc8f9d2f169..26c9d8cbc939 100644 --- a/pkgs/by-name/li/libdmapsharing/package.nix +++ b/pkgs/by-name/li/libdmapsharing/package.nix @@ -86,11 +86,11 @@ stdenv.mkDerivation rec { NOCONFIGURE=1 ./autogen.sh ''; - meta = with lib; { + meta = { homepage = "https://www.flyn.org/projects/libdmapsharing/"; description = "Library that implements the DMAP family of protocols"; - teams = [ teams.gnome ]; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libdovi/package.nix b/pkgs/by-name/li/libdovi/package.nix index a1dad59c0652..ce9f4f123bb8 100644 --- a/pkgs/by-name/li/libdovi/package.nix +++ b/pkgs/by-name/li/libdovi/package.nix @@ -43,10 +43,10 @@ rustPlatform.buildRustPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "C library for Dolby Vision metadata parsing and writing"; homepage = "https://crates.io/crates/dolby_vision"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/by-name/li/libdrm/package.nix b/pkgs/by-name/li/libdrm/package.nix index f78ff46011f2..901e7de81f72 100644 --- a/pkgs/by-name/li/libdrm/package.nix +++ b/pkgs/by-name/li/libdrm/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.freedesktop.org/mesa/drm"; downloadPage = "https://dri.freedesktop.org/libdrm/"; description = "Direct Rendering Manager library and headers"; @@ -81,8 +81,8 @@ stdenv.mkDerivation rec { libdrm is a low-level library, typically used by graphics drivers such as the Mesa drivers, the X drivers, libva and similar projects. ''; - license = licenses.mit; - platforms = lib.subtractLists platforms.darwin platforms.unix; + license = lib.licenses.mit; + platforms = lib.subtractLists lib.platforms.darwin lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libdsk/package.nix b/pkgs/by-name/li/libdsk/package.nix index 4323a8c4601e..33b735af2a1e 100644 --- a/pkgs/by-name/li/libdsk/package.nix +++ b/pkgs/by-name/li/libdsk/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-gQ+AC8x2ZfTBs14ZquyzXzcptxKtHYBxBQWbS9sc8Ek="; }; - meta = with lib; { + meta = { description = "Library for accessing discs and disc image files"; homepage = "http://www.seasip.info/Unix/LibDsk/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdv/package.nix b/pkgs/by-name/li/libdv/package.nix index 71a7e206860d..4b5d8921aeb1 100644 --- a/pkgs/by-name/li/libdv/package.nix +++ b/pkgs/by-name/li/libdv/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { buildInputs = [ popt ]; - meta = with lib; { + meta = { description = "Software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards"; homepage = "https://sourceforge.net/projects/libdv/"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdvdcss/package.nix b/pkgs/by-name/li/libdvdcss/package.nix index bd0db914c25a..951024b65c8d 100644 --- a/pkgs/by-name/li/libdvdcss/package.nix +++ b/pkgs/by-name/li/libdvdcss/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-IzzJL13AHF06lvWzWCvn1c7lo1pS06CBWHRdPYYHAHk="; }; - meta = with lib; { + meta = { homepage = "http://www.videolan.org/developers/libdvdcss.html"; description = "Library for decrypting DVDs"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdynd/package.nix b/pkgs/by-name/li/libdynd/package.nix index 37065b69fee8..e9ff379b3431 100644 --- a/pkgs/by-name/li/libdynd/package.nix +++ b/pkgs/by-name/li/libdynd/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { ]; outputDoc = "dev"; - meta = with lib; { + meta = { description = "C++ dynamic ndarray library, with Python exposure"; homepage = "http://libdynd.org"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libe57format/package.nix b/pkgs/by-name/li/libe57format/package.nix index 254ae614ab26..fe9d3bc5cbb2 100644 --- a/pkgs/by-name/li/libe57format/package.nix +++ b/pkgs/by-name/li/libe57format/package.nix @@ -77,14 +77,14 @@ stdenv.mkDerivation (finalAttrs: { fi ''; - meta = with lib; { + meta = { description = "Library for reading & writing the E57 file format"; homepage = "https://github.com/asmaloney/libE57Format"; - license = licenses.boost; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ chpatrick nh2 ]; - platforms = platforms.linux; # because of the .so buiding in `postInstall` above + platforms = lib.platforms.linux; # because of the .so buiding in `postInstall` above }; }) diff --git a/pkgs/by-name/li/libeatmydata/package.nix b/pkgs/by-name/li/libeatmydata/package.nix index 587133bd9152..8d53048ee18f 100644 --- a/pkgs/by-name/li/libeatmydata/package.nix +++ b/pkgs/by-name/li/libeatmydata/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Small LD_PRELOAD library to disable fsync and friends"; homepage = "https://www.flamingspork.com/projects/libeatmydata/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "eatmydata"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libeb/package.nix b/pkgs/by-name/li/libeb/package.nix index 2bf7ff792da5..4cd718e20eaa 100644 --- a/pkgs/by-name/li/libeb/package.nix +++ b/pkgs/by-name/li/libeb/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ perl ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "C library for accessing Japanese CD-ROM books"; longDescription = '' The EB library is a library for accessing CD-ROM books, which are a common way to distribute electronic dictionaries in Japan. It supports the EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING formats. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libebml/package.nix b/pkgs/by-name/li/libebml/package.nix index 54b01be9dfc8..18b548dfddb9 100644 --- a/pkgs/by-name/li/libebml/package.nix +++ b/pkgs/by-name/li/libebml/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_PREFIX=" ]; - meta = with lib; { + meta = { description = "Extensible Binary Meta Language library"; homepage = "https://dl.matroska.org/downloads/libebml/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libebur128/package.nix b/pkgs/by-name/li/libebur128/package.nix index 283d0dd432d3..5f4d2b68c6ac 100644 --- a/pkgs/by-name/li/libebur128/package.nix +++ b/pkgs/by-name/li/libebur128/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Implementation of the EBU R128 loudness standard"; homepage = "https://github.com/jiixyj/libebur128"; - license = licenses.mit; - maintainers = [ maintainers.andrewrk ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.andrewrk ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libei/package.nix b/pkgs/by-name/li/libei/package.nix index f19ae95147e7..4fea44d697d7 100644 --- a/pkgs/by-name/li/libei/package.nix +++ b/pkgs/by-name/li/libei/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { patchShebangs ./proto/ei-scanner ''; - meta = with lib; { + meta = { description = "Library for Emulated Input"; mainProgram = "ei-debug-events"; homepage = "https://gitlab.freedesktop.org/libinput/libei"; - license = licenses.mit; - maintainers = [ maintainers.pedrohlc ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.pedrohlc ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libemf2svg/package.nix b/pkgs/by-name/li/libemf2svg/package.nix index 7d2b29e41b20..f373db811a87 100644 --- a/pkgs/by-name/li/libemf2svg/package.nix +++ b/pkgs/by-name/li/libemf2svg/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { description = "Microsoft EMF to SVG conversion library"; mainProgram = "emf2svg-conv"; homepage = "https://github.com/kakwa/libemf2svg"; - maintainers = with maintainers; [ erdnaxe ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ erdnaxe ]; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/li/libepc/package.nix b/pkgs/by-name/li/libepc/package.nix index a6c8912184a2..e9d642d2a7d1 100644 --- a/pkgs/by-name/li/libepc/package.nix +++ b/pkgs/by-name/li/libepc/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Easy Publish and Consume Library"; homepage = "https://gitlab.gnome.org/Archive/libepc"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.bot-wxt1221 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.bot-wxt1221 ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libepoxy/package.nix b/pkgs/by-name/li/libepoxy/package.nix index c73090a25a29..ba41e23ae2f1 100644 --- a/pkgs/by-name/li/libepoxy/package.nix +++ b/pkgs/by-name/li/libepoxy/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library for handling OpenGL function pointer management"; homepage = "https://github.com/anholt/libepoxy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; pkgConfigModules = [ "epoxy" ]; }; }) diff --git a/pkgs/by-name/li/libepubgen/package.nix b/pkgs/by-name/li/libepubgen/package.nix index 4f02f5759846..e75de3af9e9f 100644 --- a/pkgs/by-name/li/libepubgen/package.nix +++ b/pkgs/by-name/li/libepubgen/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { libxml2 ]; - meta = with lib; { + meta = { description = "EPUB generator for librevenge"; homepage = "https://sourceforge.net/projects/libepubgen/"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/liberal-crime-squad/package.nix b/pkgs/by-name/li/liberal-crime-squad/package.nix index 48ed43a65862..a3812708c1b3 100644 --- a/pkgs/by-name/li/liberal-crime-squad/package.nix +++ b/pkgs/by-name/li/liberal-crime-squad/package.nix @@ -30,15 +30,15 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Humorous politically themed ncurses game"; longDescription = '' Welcome to Liberal Crime Squad! The Conservatives have taken the Executive, Legislative, and Judicial branches of government. Over time, the Liberal laws of this nation will erode and turn the country into a BACKWOODS YET CORPORATE NIGHTMARE. To prevent this from happening, the Liberal Crime Squad was established. The mood of the country is shifting, and we need to turn things around. Go out on the streets and indoctrinate Conservative automatons. That is, let them see their True Liberal Nature. Then arm them and send them forth to Stop Evil. ''; homepage = "https://github.com/Kamal-Sadek/Liberal-Crime-Squad"; - maintainers = [ maintainers.rardiol ]; + maintainers = [ lib.maintainers.rardiol ]; mainProgram = "crimesquad"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/liberastika/package.nix b/pkgs/by-name/li/liberastika/package.nix index 85ccb3c6b9fa..b8f77be79b15 100644 --- a/pkgs/by-name/li/liberastika/package.nix +++ b/pkgs/by-name/li/liberastika/package.nix @@ -22,12 +22,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Liberation Sans fork with improved cyrillic support"; homepage = "https://sourceforge.net/projects/lib-ka/"; - license = licenses.gpl2; - platforms = platforms.all; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/liberasurecode/package.nix b/pkgs/by-name/li/liberasurecode/package.nix index 015860099113..b908d68498d0 100644 --- a/pkgs/by-name/li/liberasurecode/package.nix +++ b/pkgs/by-name/li/liberasurecode/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Erasure Code API library written in C with pluggable Erasure Code backends"; homepage = "https://github.com/openstack/liberasurecode"; - license = licenses.bsd2; - teams = [ teams.openstack ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.openstack ]; pkgConfigModules = [ "erasurecode-1" ]; }; }) diff --git a/pkgs/by-name/li/liberation-sans-narrow/package.nix b/pkgs/by-name/li/liberation-sans-narrow/package.nix index 199dc6977335..624a2f967f4a 100644 --- a/pkgs/by-name/li/liberation-sans-narrow/package.nix +++ b/pkgs/by-name/li/liberation-sans-narrow/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Liberation Sans Narrow Font Family is a replacement for Arial Narrow"; longDescription = '' Liberation Sans Narrow is a font originally created by Ascender @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { license to the Open Font License. ''; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://github.com/liberationfonts"; }; } diff --git a/pkgs/by-name/li/liberfa/package.nix b/pkgs/by-name/li/liberfa/package.nix index 7a31b881b1e2..c87f6ed3c8e1 100644 --- a/pkgs/by-name/li/liberfa/package.nix +++ b/pkgs/by-name/li/liberfa/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-shared" ]; - meta = with lib; { + meta = { description = "Essential Routines for Fundamental Astronomy"; homepage = "https://github.com/liberfa/erfa"; - maintainers = with maintainers; [ mir06 ]; + maintainers = with lib.maintainers; [ mir06 ]; license = { url = "https://github.com/liberfa/erfa/blob/master/LICENSE"; free = true; diff --git a/pkgs/by-name/li/liberio/package.nix b/pkgs/by-name/li/liberio/package.nix index 7913cff2c291..d1dc4c57655f 100644 --- a/pkgs/by-name/li/liberio/package.nix +++ b/pkgs/by-name/li/liberio/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Ettus Research DMA I/O Library"; homepage = "https://github.com/EttusResearch/liberio"; - license = licenses.gpl2; - maintainers = [ maintainers.doronbehar ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.doronbehar ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libertine/package.nix b/pkgs/by-name/li/libertine/package.nix index 79455a3f0dbe..aebd1d9c47d9 100644 --- a/pkgs/by-name/li/libertine/package.nix +++ b/pkgs/by-name/li/libertine/package.nix @@ -50,10 +50,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux Libertine Fonts"; homepage = "http://linuxlibertine.sf.net"; - maintainers = with maintainers; [ erdnaxe ]; - license = licenses.ofl; + maintainers = with lib.maintainers; [ erdnaxe ]; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/li/libertinus/package.nix b/pkgs/by-name/li/libertinus/package.nix index 46f2f27567f8..212a0eb1eca2 100644 --- a/pkgs/by-name/li/libertinus/package.nix +++ b/pkgs/by-name/li/libertinus/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Libertinus font family"; longDescription = '' The Libertinus font project began as a fork of the Linux Libertine and @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation rec { full-fledged fork addressing many of the bugs in the Libertine fonts. ''; homepage = "https://github.com/alerque/libertinus"; - license = licenses.ofl; - maintainers = with maintainers; [ siddharthist ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ siddharthist ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libesmtp/package.nix b/pkgs/by-name/li/libesmtp/package.nix index 981521b177c4..c704e11e2045 100644 --- a/pkgs/by-name/li/libesmtp/package.nix +++ b/pkgs/by-name/li/libesmtp/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { sha256 = "1bhh8hlsl9597x0bnfl563k2c09b61qnkb9mfyqcmzlq63m1zw5y"; }; - meta = with lib; { + meta = { description = "Library for Posting Electronic Mail"; longDescription = '' libESMTP is an SMTP client library which manages submission of electronic mail @@ -37,6 +37,6 @@ stdenv.mkDerivation rec { and PIPELINING for high performance. ''; homepage = "https://libesmtp.github.io/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/by-name/li/libestr/package.nix b/pkgs/by-name/li/libestr/package.nix index 4183c0e5e815..3748467dcf20 100644 --- a/pkgs/by-name/li/libestr/package.nix +++ b/pkgs/by-name/li/libestr/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "0910ifzcs8kpd3srrr4fvbacgh2zrc6yn7i4rwfj6jpzhlkjnqs6"; }; - meta = with lib; { + meta = { homepage = "https://libestr.adiscon.com/"; description = "Some essentials for string handling"; - license = licenses.lgpl21; - platforms = platforms.all; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libetebase/package.nix b/pkgs/by-name/li/libetebase/package.nix index 3e47737a4b0c..33e0c6d8a4ce 100644 --- a/pkgs/by-name/li/libetebase/package.nix +++ b/pkgs/by-name/li/libetebase/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage rec { passthru.tests.pkgs-config = testers.testMetaPkgConfig libetebase; - meta = with lib; { + meta = { description = "C library for Etebase"; homepage = "https://www.etebase.com/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ laalsaas ]; + maintainers = with lib.maintainers; [ laalsaas ]; pkgConfigModules = [ "etebase" ]; }; } diff --git a/pkgs/by-name/li/libetpan/package.nix b/pkgs/by-name/li/libetpan/package.nix index e1612b75b231..285358683767 100644 --- a/pkgs/by-name/li/libetpan/package.nix +++ b/pkgs/by-name/li/libetpan/package.nix @@ -106,11 +106,11 @@ stdenv.mkDerivation rec { configureScript = "./autogen.sh"; - meta = with lib; { + meta = { description = "Mail Framework for the C Language"; homepage = "https://www.etpan.org/libetpan.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ oxzi ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ oxzi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libevdev/package.nix b/pkgs/by-name/li/libevdev/package.nix index 64deb28f988d..f970332cc8f1 100644 --- a/pkgs/by-name/li/libevdev/package.nix +++ b/pkgs/by-name/li/libevdev/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "Wrapper library for evdev devices"; homepage = "https://www.freedesktop.org/software/libevdev/doc/latest/index.html"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libevdevc/package.nix b/pkgs/by-name/li/libevdevc/package.nix index 0eb423dd6720..eea628fb9330 100644 --- a/pkgs/by-name/li/libevdevc/package.nix +++ b/pkgs/by-name/li/libevdevc/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "ChromiumOS libevdev. Renamed to avoid conflicts with the standard libevdev found in Linux distros"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; homepage = "https://chromium.googlesource.com/chromiumos/platform/libevdev/"; - maintainers = with maintainers; [ kcalvinalvin ]; + maintainers = with lib.maintainers; [ kcalvinalvin ]; }; } diff --git a/pkgs/by-name/li/libevent/package.nix b/pkgs/by-name/li/libevent/package.nix index d57718c75356..362ef0f0190a 100644 --- a/pkgs/by-name/li/libevent/package.nix +++ b/pkgs/by-name/li/libevent/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Event notification library"; mainProgram = "event_rpcgen.py"; longDescription = '' @@ -85,7 +85,7 @@ stdenv.mkDerivation rec { the event loop. ''; homepage = "https://libevent.org/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libexecinfo/package.nix b/pkgs/by-name/li/libexecinfo/package.nix index ca6fe44dabf2..3d5274a4314a 100644 --- a/pkgs/by-name/li/libexecinfo/package.nix +++ b/pkgs/by-name/li/libexecinfo/package.nix @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { install -Dm755 libexecinfo.a -t $out/lib ''; - meta = with lib; { + meta = { description = "Quick-n-dirty BSD licensed clone of the GNU libc backtrace facility"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://www.freshports.org/devel/libexecinfo"; maintainers = [ ]; }; diff --git a/pkgs/by-name/li/libexif/package.nix b/pkgs/by-name/li/libexif/package.nix index 17962c419380..e828aeb8ac23 100644 --- a/pkgs/by-name/li/libexif/package.nix +++ b/pkgs/by-name/li/libexif/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { gettext ]; - meta = with lib; { + meta = { homepage = "https://libexif.github.io/"; description = "Library to read and manipulate EXIF data in digital photographs"; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; maintainers = [ ]; }; diff --git a/pkgs/by-name/li/libexosip/package.nix b/pkgs/by-name/li/libexosip/package.nix index 5927101d0bcc..a3f9a73260c4 100644 --- a/pkgs/by-name/li/libexosip/package.nix +++ b/pkgs/by-name/li/libexosip/package.nix @@ -22,9 +22,9 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { - license = licenses.gpl2Plus; + meta = { + license = lib.licenses.gpl2Plus; description = "Library that hides the complexity of using the SIP protocol"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libexsid/package.nix b/pkgs/by-name/li/libexsid/package.nix index 74fa4db8b818..d4ce696e2858 100644 --- a/pkgs/by-name/li/libexsid/package.nix +++ b/pkgs/by-name/li/libexsid/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { cp -r docs/html $doc/share/libexsid/doc/ ''; - meta = with lib; { + meta = { description = "Driver for exSID USB"; homepage = "http://hacks.slashdirt.org/hw/exsid/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libexttextcat/package.nix b/pkgs/by-name/li/libexttextcat/package.nix index ba7b16d08730..b4a188b9d010 100644 --- a/pkgs/by-name/li/libexttextcat/package.nix +++ b/pkgs/by-name/li/libexttextcat/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-bXfqziDp6hBsEzDiaO3nDJpKiXRN3CVxVoJ1TsozaN8="; }; - meta = with lib; { + meta = { description = "N-Gram-Based Text Categorization library primarily intended for language guessing"; homepage = "https://wiki.documentfoundation.org/Libexttextcat"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "createfp"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libfabric/package.nix b/pkgs/by-name/li/libfabric/package.nix index 47ce9db99b9b..5cdf5fbf924d 100644 --- a/pkgs/by-name/li/libfabric/package.nix +++ b/pkgs/by-name/li/libfabric/package.nix @@ -47,14 +47,14 @@ stdenv.mkDerivation rec { (if enableOpx then "--enable-opx" else "--disable-opx") ]; - meta = with lib; { + meta = { homepage = "https://ofiwg.github.io/libfabric/"; description = "Open Fabric Interfaces"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 bsd2 ]; - platforms = platforms.all; - maintainers = [ maintainers.bzizou ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bzizou ]; }; } diff --git a/pkgs/by-name/li/libfakekey/package.nix b/pkgs/by-name/li/libfakekey/package.nix index 2d01260e8f66..d075ce7f25a6 100644 --- a/pkgs/by-name/li/libfakekey/package.nix +++ b/pkgs/by-name/li/libfakekey/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lX11"; - meta = with lib; { + meta = { description = "X virtual keyboard library"; homepage = "https://www.yoctoproject.org/tools-resources/projects/matchbox"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libff/package.nix b/pkgs/by-name/li/libff/package.nix index 6aee73ce3b69..f4a849bc1a67 100644 --- a/pkgs/by-name/li/libff/package.nix +++ b/pkgs/by-name/li/libff/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "C++ library for Finite Fields and Elliptic Curves"; changelog = "https://github.com/scipr-lab/libff/blob/develop/CHANGELOG.md"; homepage = "https://github.com/scipr-lab/libff"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ arturcygan ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ arturcygan ]; }; } diff --git a/pkgs/by-name/li/libffcall/package.nix b/pkgs/by-name/li/libffcall/package.nix index c7e4cf8ba8f6..a1ee28558af2 100644 --- a/pkgs/by-name/li/libffcall/package.nix +++ b/pkgs/by-name/li/libffcall/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { rm -rf $out/share ''; - meta = with lib; { + meta = { description = "Foreign function call library"; homepage = "https://www.gnu.org/software/libffcall/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libfido2/package.nix b/pkgs/by-name/li/libfido2/package.nix index 5821d0b7b1de..2dc6ea440ffa 100644 --- a/pkgs/by-name/li/libfido2/package.nix +++ b/pkgs/by-name/li/libfido2/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation rec { # causes possible redefinition of _FORTIFY_SOURCE? hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = '' Provides library functionality for FIDO 2.0, including communication with a device over USB. ''; homepage = "https://github.com/Yubico/libfido2"; - license = licenses.bsd2; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libfilezilla/package.nix b/pkgs/by-name/li/libfilezilla/package.nix index 2e13cea6a997..834e93075255 100644 --- a/pkgs/by-name/li/libfilezilla/package.nix +++ b/pkgs/by-name/li/libfilezilla/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://lib.filezilla-project.org/"; description = "Modern C++ library, offering some basic functionality to build high-performing, platform-independent programs"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/li/libfishsound/package.nix b/pkgs/by-name/li/libfishsound/package.nix index 59ceeccfd2f3..582aad5dc64b 100644 --- a/pkgs/by-name/li/libfishsound/package.nix +++ b/pkgs/by-name/li/libfishsound/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://xiph.org/fishsound/"; description = "Simple programming interface for decoding and encoding audio data using Xiph.org codecs (FLAC, Speex and Vorbis)"; longDescription = '' @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { FishSound has been developed and tested on GNU/Linux, Darwin/MacOSX and Win32. It probably also works on other Unix-like systems via GNU autoconf. For Win32: nmake Makefiles, Visual Studio .NET 2003 solution files and Visual C++ 6.0 workspace files are all provided in the source distribution. ''; - platforms = platforms.unix; - license = licenses.bsd3; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/libfixposix/package.nix b/pkgs/by-name/li/libfixposix/package.nix index e0fbd8873e82..25878860746f 100644 --- a/pkgs/by-name/li/libfixposix/package.nix +++ b/pkgs/by-name/li/libfixposix/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation rec { ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ getconf ]; - meta = with lib; { + meta = { homepage = "https://github.com/sionescu/libfixposix"; description = "Thin wrapper over POSIX syscalls and some replacement functionality"; - license = licenses.boost; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libfolia/package.nix b/pkgs/by-name/li/libfolia/package.nix index 60c68056170a..042a71146b22 100644 --- a/pkgs/by-name/li/libfolia/package.nix +++ b/pkgs/by-name/li/libfolia/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "C++ API for FoLiA documents; an XML-based linguistic annotation format"; mainProgram = "folialint"; homepage = "https://proycon.github.io/folia/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; longDescription = '' A high-level C++ API to read, manipulate, and create FoLiA documents. FoLiA is an XML-based annotation format, suitable for the representation of linguistically annotated language resources. FoLiA’s intended use is as a format for storing and/or exchanging language resources, including corpora. diff --git a/pkgs/by-name/li/libfprint-2-tod1-broadcom/package.nix b/pkgs/by-name/li/libfprint-2-tod1-broadcom/package.nix index 842f803c0af0..0f4406ff402c 100644 --- a/pkgs/by-name/li/libfprint-2-tod1-broadcom/package.nix +++ b/pkgs/by-name/li/libfprint-2-tod1-broadcom/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation { passthru.driverPath = "/lib/libfprint-2/tod-1"; - meta = with lib; { + meta = { description = "Broadcom driver module for libfprint-2-tod Touch OEM Driver (from Dell)"; homepage = "http://dell.archive.canonical.com/updates/pool/public/libf/libfprint-2-tod1-broadcom/"; - license = licenses.unfree; - maintainers = with maintainers; [ pitkling ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ pitkling ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/li/libfprint-2-tod1-elan/package.nix b/pkgs/by-name/li/libfprint-2-tod1-elan/package.nix index 30ca7275d68f..e3e359d8b307 100644 --- a/pkgs/by-name/li/libfprint-2-tod1-elan/package.nix +++ b/pkgs/by-name/li/libfprint-2-tod1-elan/package.nix @@ -43,12 +43,12 @@ stdenvNoCC.mkDerivation { passthru.driverPath = "/lib/libfprint-2/tod-1"; - meta = with lib; { + meta = { description = "Elan(04f3:0c4b) driver module for libfprint-2-tod Touch OEM Driver"; homepage = "https://support.lenovo.com/us/en/downloads/ds560939-elan-fingerprint-driver-for-ubuntu-2204-thinkpad-e14-gen-4-e15-gen-4"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ qdlmcfresh ]; + maintainers = with lib.maintainers; [ qdlmcfresh ]; }; } diff --git a/pkgs/by-name/li/libfprint-2-tod1-goodix-550a/package.nix b/pkgs/by-name/li/libfprint-2-tod1-goodix-550a/package.nix index f597fd7f89f2..b280bea6dffd 100644 --- a/pkgs/by-name/li/libfprint-2-tod1-goodix-550a/package.nix +++ b/pkgs/by-name/li/libfprint-2-tod1-goodix-550a/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { passthru.driverPath = "/lib/libfprint-2/tod-1"; - meta = with lib; { + meta = { description = "Goodix 550a driver module for libfprint-2-tod Touch OEM Driver (from Lenovo)"; homepage = "https://support.lenovo.com/us/en/downloads/ds560884-goodix-fingerprint-driver-for-linux-thinkpad-e14-gen-4-e15-gen-4"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ utkarshgupta137 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ utkarshgupta137 ]; }; } diff --git a/pkgs/by-name/li/libfprint-2-tod1-goodix/package.nix b/pkgs/by-name/li/libfprint-2-tod1-goodix/package.nix index f0900f7e5e3c..63764e525f8e 100644 --- a/pkgs/by-name/li/libfprint-2-tod1-goodix/package.nix +++ b/pkgs/by-name/li/libfprint-2-tod1-goodix/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { passthru.driverPath = "/lib/libfprint-2/tod-1"; - meta = with lib; { + meta = { description = "Goodix driver module for libfprint-2-tod Touch OEM Driver"; homepage = "https://git.launchpad.net/~oem-solutions-engineers/libfprint-2-tod1-goodix/+git/libfprint-2-tod1-goodix/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ grahamc ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ grahamc ]; }; } diff --git a/pkgs/by-name/li/libfprint-2-tod1-vfs0090/package.nix b/pkgs/by-name/li/libfprint-2-tod1-vfs0090/package.nix index 7cd609484408..e93b857febe2 100644 --- a/pkgs/by-name/li/libfprint-2-tod1-vfs0090/package.nix +++ b/pkgs/by-name/li/libfprint-2-tod1-vfs0090/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { passthru.driverPath = "/lib/libfprint-2/tod-1"; - meta = with lib; { + meta = { description = "Libfprint-2-tod Touch OEM Driver for 2016 ThinkPad's fingerprint readers"; homepage = "https://gitlab.freedesktop.org/3v1n0/libfprint-tod-vfs0090"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ valodim ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ valodim ]; # Does not compile against libfprint-tod, hasn't seen any maintenance # since 2020. broken = true; diff --git a/pkgs/by-name/li/libfprint-tod/package.nix b/pkgs/by-name/li/libfprint-tod/package.nix index 6abda09a6eb3..c8f8b20a62f0 100644 --- a/pkgs/by-name/li/libfprint-tod/package.nix +++ b/pkgs/by-name/li/libfprint-tod/package.nix @@ -42,12 +42,12 @@ libfprint.overrideAttrs ( ./tests/*.sh \ ''; - meta = with lib; { + meta = { homepage = "https://gitlab.freedesktop.org/3v1n0/libfprint"; description = "Library designed to make it easy to add support for consumer fingerprint readers, with support for loaded drivers"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = with maintainers; [ grahamc ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ grahamc ]; }; } ) diff --git a/pkgs/by-name/li/libfreeaptx/package.nix b/pkgs/by-name/li/libfreeaptx/package.nix index 38d08a2f592b..95496d43c7c2 100644 --- a/pkgs/by-name/li/libfreeaptx/package.nix +++ b/pkgs/by-name/li/libfreeaptx/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { install_name_tool -id $out/lib/libfreeaptx.dylib.0 $out/lib/libfreeaptx.dylib.0 ''; - meta = with lib; { + meta = { description = "Free Implementation of Audio Processing Technology codec (aptX)"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; homepage = "https://github.com/iamthehorker/libfreeaptx"; - platforms = platforms.unix; - maintainers = with maintainers; [ kranzes ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/by-name/li/libfsm/package.nix b/pkgs/by-name/li/libfsm/package.nix index 118283dabaa2..b9e40e808ad3 100644 --- a/pkgs/by-name/li/libfsm/package.nix +++ b/pkgs/by-name/li/libfsm/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "DFA regular expression library & friends"; homepage = "https://github.com/katef/libfsm"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/li/libftdi1/package.nix b/pkgs/by-name/li/libftdi1/package.nix index 4286550068e5..e2bdd0c67888 100644 --- a/pkgs/by-name/li/libftdi1/package.nix +++ b/pkgs/by-name/li/libftdi1/package.nix @@ -92,14 +92,14 @@ stdenv.mkDerivation { substituteInPlace $out/lib/pkgconfig/libftdipp1.pc --replace-fail "libdir=$out/$out/lib" "libdir=$out/lib" ''; - meta = with lib; { + meta = { description = "Library to talk to FTDI chips using libusb"; homepage = "https://www.intra2net.com/en/developer/libftdi/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Only gpl2Only ]; - platforms = platforms.all; - maintainers = with maintainers; [ bjornfor ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/by-name/li/libfyaml/package.nix b/pkgs/by-name/li/libfyaml/package.nix index 0e9e5c665a95..82cd2b8a7357 100644 --- a/pkgs/by-name/li/libfyaml/package.nix +++ b/pkgs/by-name/li/libfyaml/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite"; homepage = "https://github.com/pantoniou/libfyaml"; changelog = "https://github.com/pantoniou/libfyaml/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; pkgConfigModules = [ "libfyaml" ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libgdamm/package.nix b/pkgs/by-name/li/libgdamm/package.nix index 2f81ac0fe49f..c6d9cb40027a 100644 --- a/pkgs/by-name/li/libgdamm/package.nix +++ b/pkgs/by-name/li/libgdamm/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ bindings for libgda"; homepage = "https://www.gnome-db.org/"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.bot-wxt1221 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.bot-wxt1221 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgdata/package.nix b/pkgs/by-name/li/libgdata/package.nix index 6d22a15c6359..636eccc96891 100644 --- a/pkgs/by-name/li/libgdata/package.nix +++ b/pkgs/by-name/li/libgdata/package.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GData API library"; homepage = "https://gitlab.gnome.org/GNOME/libgdata"; - maintainers = with maintainers; [ raskin ]; - teams = [ teams.gnome ]; - platforms = platforms.linux; - license = licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ raskin ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/by-name/li/libgdiplus/package.nix b/pkgs/by-name/li/libgdiplus/package.nix index 4e98f25e1f79..f8b64f9af93a 100644 --- a/pkgs/by-name/li/libgdiplus/package.nix +++ b/pkgs/by-name/li/libgdiplus/package.nix @@ -69,10 +69,10 @@ stdenv.mkDerivation (finalAttrs: { make check -w ''; - meta = with lib; { + meta = { description = "Mono library that provides a GDI+-compatible API on non-Windows operating systems"; homepage = "https://www.mono-project.com/docs/gui/libgdiplus/"; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; }) diff --git a/pkgs/by-name/li/libgedit-gtksourceview/package.nix b/pkgs/by-name/li/libgedit-gtksourceview/package.nix index 0d0b0f6fdaaf..209b388b471b 100644 --- a/pkgs/by-name/li/libgedit-gtksourceview/package.nix +++ b/pkgs/by-name/li/libgedit-gtksourceview/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { ignoredVersions = "(alpha|beta|rc).*"; }; - meta = with lib; { + meta = { description = "Source code editing widget for GTK"; homepage = "https://gitlab.gnome.org/World/gedit/libgedit-gtksourceview"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ bobby285271 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ bobby285271 ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libgedit-tepl/package.nix b/pkgs/by-name/li/libgedit-tepl/package.nix index 65f51d8ce8c0..fa70f86bd385 100644 --- a/pkgs/by-name/li/libgedit-tepl/package.nix +++ b/pkgs/by-name/li/libgedit-tepl/package.nix @@ -64,14 +64,14 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { ignoredVersions = "(alpha|beta|rc).*"; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/gedit/libgedit-tepl"; description = "Text editor product line"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ manveru bobby285271 ]; - license = licenses.lgpl3Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgee/package.nix b/pkgs/by-name/li/libgee/package.nix index 8ec7a73b330b..853b20cf2d61 100644 --- a/pkgs/by-name/li/libgee/package.nix +++ b/pkgs/by-name/li/libgee/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Utility library providing GObject-based interfaces and classes for commonly used data structures"; homepage = "https://gitlab.gnome.org/GNOME/libgee"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/li/libgen-cli/package.nix b/pkgs/by-name/li/libgen-cli/package.nix index 14c76402e3ae..8ccce2727aca 100644 --- a/pkgs/by-name/li/libgen-cli/package.nix +++ b/pkgs/by-name/li/libgen-cli/package.nix @@ -37,7 +37,7 @@ buildGoModule rec { --zsh <($out/bin/libgen-cli completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/ciehanski/libgen-cli"; description = "CLI tool used to access the Library Genesis dataset; written in Go"; longDescription = '' @@ -45,8 +45,8 @@ buildGoModule rec { quickly query the Library Genesis dataset and download any of its contents. ''; - license = licenses.asl20; - maintainers = with maintainers; [ zaninime ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zaninime ]; mainProgram = "libgen-cli"; }; } diff --git a/pkgs/by-name/li/libgeotiff/package.nix b/pkgs/by-name/li/libgeotiff/package.nix index 30d1a94372a1..de629da0e1ec 100644 --- a/pkgs/by-name/li/libgeotiff/package.nix +++ b/pkgs/by-name/li/libgeotiff/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation rec { #hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery"; homepage = "https://github.com/OSGeo/libgeotiff"; changelog = "https://github.com/OSGeo/libgeotiff/blob/${src.rev}/libgeotiff/NEWS"; - license = licenses.mit; - maintainers = with maintainers; [ marcweber ]; - teams = [ teams.geospatial ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marcweber ]; + teams = [ lib.teams.geospatial ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/li/libgepub/package.nix b/pkgs/by-name/li/libgepub/package.nix index 91b8fdcf3977..0a68f7fcabaa 100644 --- a/pkgs/by-name/li/libgepub/package.nix +++ b/pkgs/by-name/li/libgepub/package.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GObject based library for handling and rendering epub documents"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/li/libgestures/package.nix b/pkgs/by-name/li/libgestures/package.nix index 144a457c1987..f8a532c6e519 100644 --- a/pkgs/by-name/li/libgestures/package.nix +++ b/pkgs/by-name/li/libgestures/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { "LIBDIR=/lib" ]; - meta = with lib; { + meta = { description = "ChromiumOS libgestures modified to compile for Linux"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; homepage = "https://chromium.googlesource.com/chromiumos/platform/gestures"; - maintainers = with maintainers; [ kcalvinalvin ]; + maintainers = with lib.maintainers; [ kcalvinalvin ]; }; } diff --git a/pkgs/by-name/li/libgflow/package.nix b/pkgs/by-name/li/libgflow/package.nix index cc0470babd9c..47a603a06a1b 100644 --- a/pkgs/by-name/li/libgflow/package.nix +++ b/pkgs/by-name/li/libgflow/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { "-Denable_gtk4=false" ]; - meta = with lib; { + meta = { description = "Flow graph widget for GTK 3"; homepage = "https://notabug.org/grindhold/libgtkflow"; - maintainers = with maintainers; [ grindhold ]; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ grindhold ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libgig/package.nix b/pkgs/by-name/li/libgig/package.nix index a9daf5e2ddb7..b52ae3934cf8 100644 --- a/pkgs/by-name/li/libgig/package.nix +++ b/pkgs/by-name/li/libgig/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.linuxsampler.org"; description = "Gigasampler file access library"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgit2-glib/package.nix b/pkgs/by-name/li/libgit2-glib/package.nix index de8171c6e36f..8af2905f5df5 100644 --- a/pkgs/by-name/li/libgit2-glib/package.nix +++ b/pkgs/by-name/li/libgit2-glib/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Glib wrapper library around the libgit2 git access library"; homepage = "https://gitlab.gnome.org/GNOME/libgit2-glib"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libgit2/package.nix b/pkgs/by-name/li/libgit2/package.nix index 7a6d5c1ad278..46b58d4ed566 100644 --- a/pkgs/by-name/li/libgit2/package.nix +++ b/pkgs/by-name/li/libgit2/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation (finalAttrs: { inherit gitstatus; }; - meta = with lib; { + meta = { description = "Linkable library implementation of Git that you can use in your application"; mainProgram = "git2"; homepage = "https://libgit2.org/"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; }) diff --git a/pkgs/by-name/li/libgmpris/package.nix b/pkgs/by-name/li/libgmpris/package.nix index c1368abe6ceb..dfc4c0b42565 100644 --- a/pkgs/by-name/li/libgmpris/package.nix +++ b/pkgs/by-name/li/libgmpris/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { cp ./README $out/share/doc/${pname} ''; - meta = with lib; { + meta = { homepage = "https://www.sonarnerd.net/src/"; description = "GMPRIS GDBus bindings GDBus bindings generated from the GMPRIS XML spec files"; - license = licenses.lgpl21; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/by-name/li/libgnomekbd/package.nix b/pkgs/by-name/li/libgnomekbd/package.nix index 153ff597ba09..9151787c6ddc 100644 --- a/pkgs/by-name/li/libgnomekbd/package.nix +++ b/pkgs/by-name/li/libgnomekbd/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Keyboard management library"; mainProgram = "gkbd-keyboard-display"; - teams = [ teams.gnome ]; - license = licenses.gpl2; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgnt/package.nix b/pkgs/by-name/li/libgnt/package.nix index 96b7f6608869..9848e62b583e 100644 --- a/pkgs/by-name/li/libgnt/package.nix +++ b/pkgs/by-name/li/libgnt/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { (lib.mesonBool "python2" false) ]; - meta = with lib; { + meta = { description = "Ncurses toolkit for creating text-mode graphical user interfaces"; homepage = "https://keep.imfreedom.org/libgnt/libgnt/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ ony ]; }; } diff --git a/pkgs/by-name/li/libgnurl/package.nix b/pkgs/by-name/li/libgnurl/package.nix index d1f3ecf8c790..8e72d0f5d657 100644 --- a/pkgs/by-name/li/libgnurl/package.nix +++ b/pkgs/by-name/li/libgnurl/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { "--without-librtmp" ]; - meta = with lib; { + meta = { description = "Fork of libcurl used by GNUnet"; homepage = "https://gnunet.org/en/gnurl.html"; maintainers = [ ]; - platforms = platforms.unix; - license = licenses.curl; + platforms = lib.platforms.unix; + license = lib.licenses.curl; }; } diff --git a/pkgs/by-name/li/libgourou/package.nix b/pkgs/by-name/li/libgourou/package.nix index b790d56deb29..a06c5cf51459 100644 --- a/pkgs/by-name/li/libgourou/package.nix +++ b/pkgs/by-name/li/libgourou/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Implementation of Adobe's ADEPT protocol for ePub/PDF DRM"; homepage = "https://forge.soutade.fr/soutade/libgourou"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ autumnal ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ autumnal ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/by-name/li/libgovirt/package.nix b/pkgs/by-name/li/libgovirt/package.nix index 98aa1e319b62..5d0402f99506 100644 --- a/pkgs/by-name/li/libgovirt/package.nix +++ b/pkgs/by-name/li/libgovirt/package.nix @@ -56,14 +56,14 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/libgovirt"; description = "GObject wrapper for the oVirt REST API"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ amarshall atemu ]; - platforms = with platforms; linux ++ darwin; - license = licenses.lgpl21Plus; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/by-name/li/libgpiod/package.nix b/pkgs/by-name/li/libgpiod/package.nix index ed6b3ca2fa1c..9d3a6dc374d3 100644 --- a/pkgs/by-name/li/libgpiod/package.nix +++ b/pkgs/by-name/li/libgpiod/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { allowedVersions = "^[0-9\\.]+$"; }; - meta = with lib; { + meta = { description = "C library and tools for interacting with the linux GPIO character device"; longDescription = '' Since linux 4.8 the GPIO sysfs interface is deprecated. User space should use @@ -44,13 +44,13 @@ stdenv.mkDerivation rec { ''; homepage = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/"; license = - with licenses; + with lib.licenses; [ lgpl21Plus # libgpiod lgpl3Plus # C++ bindings ] ++ lib.optional enable-tools gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgpiod_1/package.nix b/pkgs/by-name/li/libgpiod_1/package.nix index 39aa5b933d01..ece00227400a 100644 --- a/pkgs/by-name/li/libgpiod_1/package.nix +++ b/pkgs/by-name/li/libgpiod_1/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { ] ++ lib.optional enablePython "--enable-bindings-python"; - meta = with lib; { + meta = { description = "C library and tools for interacting with the linux GPIO character device"; longDescription = '' Since linux 4.8 the GPIO sysfs interface is deprecated. User space should use @@ -55,8 +55,8 @@ stdenv.mkDerivation rec { data structures behind a straightforward API. ''; homepage = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgpod/package.nix b/pkgs/by-name/li/libgpod/package.nix index f67a218345a8..0222cc37c406 100644 --- a/pkgs/by-name/li/libgpod/package.nix +++ b/pkgs/by-name/li/libgpod/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/gtkpod/"; description = "Library used by gtkpod to access the contents of an ipod"; mainProgram = "ipod-read-sysinfo-extended"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libgrapheme/package.nix b/pkgs/by-name/li/libgrapheme/package.nix index bde5ddc937c7..c2143e310798 100644 --- a/pkgs/by-name/li/libgrapheme/package.nix +++ b/pkgs/by-name/li/libgrapheme/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "LDCONFIG=" ]; - meta = with lib; { + meta = { description = "Unicode string library"; homepage = "https://libs.suckless.org/libgrapheme/"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/li/libgringotts/package.nix b/pkgs/by-name/li/libgringotts/package.nix index fb941e531beb..64c499b98684 100644 --- a/pkgs/by-name/li/libgringotts/package.nix +++ b/pkgs/by-name/li/libgringotts/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { libmhash ]; - meta = with lib; { + meta = { description = "Small library to encapsulate data in an encrypted structure"; homepage = "https://libgringotts.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/li/libgsf/package.nix b/pkgs/by-name/li/libgsf/package.nix index ea749cf2c63c..4663889d917b 100644 --- a/pkgs/by-name/li/libgsf/package.nix +++ b/pkgs/by-name/li/libgsf/package.nix @@ -90,11 +90,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GNOME's Structured File Library"; homepage = "https://www.gnome.org/projects/libgsf"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ lovek323 ]; platforms = lib.platforms.unix; longDescription = '' diff --git a/pkgs/by-name/li/libgssglue/package.nix b/pkgs/by-name/li/libgssglue/package.nix index b11c9e3600a5..d0cb8a594257 100644 --- a/pkgs/by-name/li/libgssglue/package.nix +++ b/pkgs/by-name/li/libgssglue/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation (finalAttrs: { EOF ''; - meta = with lib; { + meta = { homepage = "http://www.citi.umich.edu/projects/nfsv4/linux/"; description = "Exports a gssapi interface which calls other random gssapi libraries"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ corngood ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ corngood ]; }; }) diff --git a/pkgs/by-name/li/libgtkflow3/package.nix b/pkgs/by-name/li/libgtkflow3/package.nix index a32f890d9f5f..a825f7ab67ec 100644 --- a/pkgs/by-name/li/libgtkflow3/package.nix +++ b/pkgs/by-name/li/libgtkflow3/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { rm -r libgflow ''; - meta = with lib; { + meta = { description = "Flow graph widget for GTK 3"; homepage = "https://notabug.org/grindhold/libgtkflow"; - maintainers = with maintainers; [ grindhold ]; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ grindhold ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libgtkflow4/package.nix b/pkgs/by-name/li/libgtkflow4/package.nix index 8b8a4cc41e4d..82c04e72cce4 100644 --- a/pkgs/by-name/li/libgtkflow4/package.nix +++ b/pkgs/by-name/li/libgtkflow4/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { rm -r libgflow ''; - meta = with lib; { + meta = { description = "Flow graph widget for GTK 3"; homepage = "https://notabug.org/grindhold/libgtkflow"; - maintainers = with maintainers; [ grindhold ]; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ grindhold ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libgtop/package.nix b/pkgs/by-name/li/libgtop/package.nix index fb4f8d6ceccb..0d41ee8bcee2 100644 --- a/pkgs/by-name/li/libgtop/package.nix +++ b/pkgs/by-name/li/libgtop/package.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library that reads information about processes and the running system"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libgudev/package.nix b/pkgs/by-name/li/libgudev/package.nix index a3b8e58f3b91..1db56931abc0 100644 --- a/pkgs/by-name/li/libgudev/package.nix +++ b/pkgs/by-name/li/libgudev/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library that provides GObject bindings for libudev"; homepage = "https://gitlab.gnome.org/GNOME/libgudev"; - teams = [ teams.gnome ]; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2Plus; }; }) diff --git a/pkgs/by-name/li/libguestfs-appliance/package.nix b/pkgs/by-name/li/libguestfs-appliance/package.nix index 76afaad99eff..d4f5fccf34e0 100644 --- a/pkgs/by-name/li/libguestfs-appliance/package.nix +++ b/pkgs/by-name/li/libguestfs-appliance/package.nix @@ -22,14 +22,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "VM appliance disk image used in libguestfs package"; homepage = "https://libguestfs.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - maintainers = with maintainers; [ lukts30 ]; + maintainers = with lib.maintainers; [ lukts30 ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/li/libgumath/package.nix b/pkgs/by-name/li/libgumath/package.nix index 6160e7276c2d..01aa7ae1f619 100644 --- a/pkgs/by-name/li/libgumath/package.nix +++ b/pkgs/by-name/li/libgumath/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "Library supporting function dispatch on general data containers. C base and Python wrapper"; homepage = "https://xnd.io/"; - license = licenses.bsd3; - maintainers = [ maintainers.costrouc ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/by-name/li/libgweather/package.nix b/pkgs/by-name/li/libgweather/package.nix index 85dcb9b2a661..ba1c20f8076f 100644 --- a/pkgs/by-name/li/libgweather/package.nix +++ b/pkgs/by-name/li/libgweather/package.nix @@ -119,11 +119,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library to access weather information from online services for numerous locations"; homepage = "https://gitlab.gnome.org/GNOME/libgweather"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libgxps/package.nix b/pkgs/by-name/li/libgxps/package.nix index 95fdbe9710e7..7f161bd6b2ac 100644 --- a/pkgs/by-name/li/libgxps/package.nix +++ b/pkgs/by-name/li/libgxps/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GObject based library for handling and rendering XPS documents"; homepage = "https://gitlab.gnome.org/GNOME/libgxps"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libhangul/package.nix b/pkgs/by-name/li/libhangul/package.nix index f08e47b21d05..5bb008a3d111 100644 --- a/pkgs/by-name/li/libhangul/package.nix +++ b/pkgs/by-name/li/libhangul/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { "ac_cv_func_realloc_0_nonnull=yes" ]; - meta = with lib; { + meta = { description = "Core algorithm library for Korean input routines"; mainProgram = "hangul"; homepage = "https://github.com/choehwanjin/libhangul"; - license = licenses.lgpl21; - maintainers = [ maintainers.ianwookim ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.ianwookim ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libhdhomerun/package.nix b/pkgs/by-name/li/libhdhomerun/package.nix index 1c9597f2df48..1ad5b0466e15 100644 --- a/pkgs/by-name/li/libhdhomerun/package.nix +++ b/pkgs/by-name/li/libhdhomerun/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Implements the libhdhomerun protocol for use with Silicondust HDHomeRun TV tuners"; mainProgram = "hdhomerun_config"; homepage = "https://www.silicondust.com/support/linux"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ sielicki ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ sielicki ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libhomfly/package.nix b/pkgs/by-name/li/libhomfly/package.nix index 0a31d077ca76..ff919d6b5449 100644 --- a/pkgs/by-name/li/libhomfly/package.nix +++ b/pkgs/by-name/li/libhomfly/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/miguelmarco/libhomfly/"; description = "Library to compute the homfly polynomial of knots and links"; - license = licenses.unlicense; - teams = [ teams.sage ]; - platforms = platforms.all; + license = lib.licenses.unlicense; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libhttpserver/package.nix b/pkgs/by-name/li/libhttpserver/package.nix index 3bf538dfbdeb..c2117e97b843 100644 --- a/pkgs/by-name/li/libhttpserver/package.nix +++ b/pkgs/by-name/li/libhttpserver/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-same-directory-build" ]; - meta = with lib; { + meta = { description = "C++ library for creating an embedded Rest HTTP server (and more)"; homepage = "https://github.com/etr/libhttpserver"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ pongo1231 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ pongo1231 ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # configure: error: cannot find required auxiliary files: ltmain.sh }; } diff --git a/pkgs/by-name/li/libhwy/package.nix b/pkgs/by-name/li/libhwy/package.nix index c282d8420a34..cf30a6fe94d5 100644 --- a/pkgs/by-name/li/libhwy/package.nix +++ b/pkgs/by-name/li/libhwy/package.nix @@ -82,14 +82,14 @@ stdenv.mkDerivation rec { # hydra's darwin machines run into https://github.com/libjxl/libjxl/issues/408 doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Performance-portable, length-agnostic SIMD with runtime dispatch"; homepage = "https://github.com/google/highway"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 ]; - platforms = platforms.unix; - maintainers = with maintainers; [ zhaofengli ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/by-name/li/libiberty/package.nix b/pkgs/by-name/li/libiberty/package.nix index 8046b08b791a..3617d801654d 100644 --- a/pkgs/by-name/li/libiberty/package.nix +++ b/pkgs/by-name/li/libiberty/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation { cp pic/libiberty.a $out/lib*/libiberty.a ''; - meta = with lib; { + meta = { homepage = "https://gcc.gnu.org/"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; description = "Collection of subroutines used by various GNU programs"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ericson2314 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libibmad/package.nix b/pkgs/by-name/li/libibmad/package.nix index 40fea5384835..0193047f69b4 100644 --- a/pkgs/by-name/li/libibmad/package.nix +++ b/pkgs/by-name/li/libibmad/package.nix @@ -16,9 +16,9 @@ stdenv.mkDerivation rec { buildInputs = [ libibumad ]; - meta = with lib; { + meta = { homepage = "https://www.openfabrics.org/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libibumad/package.nix b/pkgs/by-name/li/libibumad/package.nix index 1f280e4142cd..a10ca9038410 100644 --- a/pkgs/by-name/li/libibumad/package.nix +++ b/pkgs/by-name/li/libibumad/package.nix @@ -13,9 +13,9 @@ stdenv.mkDerivation rec { sha256 = "0bkygb3lbpaj6s4vsyixybrrkcnilbijv4ga5p1xdwyr3gip83sh"; }; - meta = with lib; { + meta = { homepage = "https://www.openfabrics.org/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libicns/package.nix b/pkgs/by-name/li/libicns/package.nix index d0853240ec56..48e9c943568d 100644 --- a/pkgs/by-name/li/libicns/package.nix +++ b/pkgs/by-name/li/libicns/package.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "Library for manipulation of the Mac OS icns resource format"; homepage = "https://icns.sourceforge.io"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl2 lgpl21 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libiec61883/package.nix b/pkgs/by-name/li/libiec61883/package.nix index 42d7254f0909..45711fd939d6 100644 --- a/pkgs/by-name/li/libiec61883/package.nix +++ b/pkgs/by-name/li/libiec61883/package.nix @@ -20,9 +20,9 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libraw1394 ]; - meta = with lib; { + meta = { homepage = "https://www.linux1394.org"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libieee1284/package.nix b/pkgs/by-name/li/libieee1284/package.nix index 1d476916be85..70db42c998d9 100644 --- a/pkgs/by-name/li/libieee1284/package.nix +++ b/pkgs/by-name/li/libieee1284/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { ./bootstrap ''; - meta = with lib; { + meta = { description = "Parallel port communication library"; mainProgram = "libieee1284_test"; homepage = "http://cyberelk.net/tim/software/libieee1284/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/li/libiff/package.nix b/pkgs/by-name/li/libiff/package.nix index 6a8fd441cc40..d4c5ae100513 100644 --- a/pkgs/by-name/li/libiff/package.nix +++ b/pkgs/by-name/li/libiff/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { autoreconfHook help2man ]; - meta = with lib; { + meta = { description = "Parser for the Interchange File Format (IFF)"; longDescription = '' libiff is a portable, extensible parser library implemented in @@ -27,8 +27,8 @@ stdenv.mkDerivation { (IFF). ''; homepage = "https://github.com/svanderburg/libiff"; - maintainers = with maintainers; [ _414owen ]; - platforms = platforms.all; - license = licenses.mit; + maintainers = with lib.maintainers; [ _414owen ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/li/libigl/package.nix b/pkgs/by-name/li/libigl/package.nix index 1ef1a6d73324..cd974773514d 100644 --- a/pkgs/by-name/li/libigl/package.nix +++ b/pkgs/by-name/li/libigl/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { rm -rf $out/include/igl/opengl ''; - meta = with lib; { + meta = { description = "Simple C++ geometry processing library"; homepage = "https://github.com/libigl/libigl"; - license = licenses.mpl20; - maintainers = with maintainers; [ nim65s ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nim65s ]; }; }) diff --git a/pkgs/by-name/li/libilbc/package.nix b/pkgs/by-name/li/libilbc/package.nix index e2d2ab71bdb8..7491b24c225c 100644 --- a/pkgs/by-name/li/libilbc/package.nix +++ b/pkgs/by-name/li/libilbc/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Packaged version of iLBC codec from the WebRTC project"; homepage = "https://github.com/TimothyGu/libilbc"; changelog = "https://github.com/TimothyGu/libilbc/blob/v${finalAttrs.version}/NEWS.md"; - maintainers = with maintainers; [ jopejoe1 ]; + maintainers = with lib.maintainers; [ jopejoe1 ]; pkgConfigModules = [ "lilbc" ]; - platforms = platforms.all; - license = licenses.bsd3; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/li/libilbm/package.nix b/pkgs/by-name/li/libilbm/package.nix index 2a8ef532dade..af3f925729a2 100644 --- a/pkgs/by-name/li/libilbm/package.nix +++ b/pkgs/by-name/li/libilbm/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { pkg-config help2man ]; - meta = with lib; { + meta = { description = "Parser for the ILBM: IFF Interleaved BitMap format"; longDescription = '' libilbm is a portable parser library built on top of libiff, @@ -32,8 +32,8 @@ stdenv.mkDerivation { ''; homepage = "https://github.com/svanderburg/libilbm"; changelog = "https://github.com/svanderburg/libilbm/blob/master/ChangeLog"; - maintainers = with maintainers; [ _414owen ]; - platforms = platforms.all; - license = licenses.mit; + maintainers = with lib.maintainers; [ _414owen ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/li/libimagequant/package.nix b/pkgs/by-name/li/libimagequant/package.nix index 687e006e47b0..ec783eb93571 100644 --- a/pkgs/by-name/li/libimagequant/package.nix +++ b/pkgs/by-name/li/libimagequant/package.nix @@ -57,12 +57,12 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { homepage = "https://pngquant.org/lib/"; description = "Image quantization library"; longDescription = "Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images."; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ ma9e ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ma9e ]; }; } diff --git a/pkgs/by-name/li/libime/package.nix b/pkgs/by-name/li/libime/package.nix index e343ffe2b0fa..8fb616d1797e 100644 --- a/pkgs/by-name/li/libime/package.nix +++ b/pkgs/by-name/li/libime/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { fcitx5 ]; - meta = with lib; { + meta = { description = "Library to support generic input method implementation"; homepage = "https://github.com/fcitx/libime"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libimobiledevice-glue/package.nix b/pkgs/by-name/li/libimobiledevice-glue/package.nix index 22a10bf44048..7e1466e43b4f 100644 --- a/pkgs/by-name/li/libimobiledevice-glue/package.nix +++ b/pkgs/by-name/li/libimobiledevice-glue/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/libimobiledevice/libimobiledevice-glue"; description = "Library with common code used by the libraries and tools around the libimobiledevice project"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libimobiledevice/package.nix b/pkgs/by-name/li/libimobiledevice/package.nix index 5c1909b5eb95..91fd4d468270 100644 --- a/pkgs/by-name/li/libimobiledevice/package.nix +++ b/pkgs/by-name/li/libimobiledevice/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/libimobiledevice/libimobiledevice"; description = "Software library that talks the protocols to support iPhone®, iPod Touch® and iPad® devices on Linux"; longDescription = '' @@ -71,8 +71,8 @@ stdenv.mkDerivation rec { development since August 2007 with the goal to bring support for these devices to the Linux Desktop. ''; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ RossComputerGuy ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ RossComputerGuy ]; }; } diff --git a/pkgs/by-name/li/libindicator/package.nix b/pkgs/by-name/li/libindicator/package.nix index 72bd23985a38..2fa1a94cbd1c 100644 --- a/pkgs/by-name/li/libindicator/package.nix +++ b/pkgs/by-name/li/libindicator/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails 8 out of 8 tests - meta = with lib; { + meta = { description = "Set of symbols and convenience functions for Ayatana indicators"; homepage = "https://launchpad.net/libindicator"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.msteen ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.msteen ]; }; } diff --git a/pkgs/by-name/li/libinjection/package.nix b/pkgs/by-name/li/libinjection/package.nix index 42dfec32bb2f..a3c3bdf6cfd7 100644 --- a/pkgs/by-name/li/libinjection/package.nix +++ b/pkgs/by-name/li/libinjection/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "SQL / SQLI tokenizer parser analyzer"; homepage = "https://github.com/client9/libinjection"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/li/libinklevel/package.nix b/pkgs/by-name/li/libinklevel/package.nix index 602ef0687123..16f8ab9d5259 100644 --- a/pkgs/by-name/li/libinklevel/package.nix +++ b/pkgs/by-name/li/libinklevel/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { description = "Library for checking the ink level of your printer"; longDescription = '' Libinklevel is a library for checking the ink level of your printer on a @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { level of a printer connected to a Linux or FreeBSD box. ''; homepage = "https://libinklevel.sourceforge.net/"; - license = licenses.gpl2; - platforms = platforms.linux ++ platforms.freebsd; - maintainers = with maintainers; [ samb96 ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux ++ lib.platforms.freebsd; + maintainers = with lib.maintainers; [ samb96 ]; }; } diff --git a/pkgs/by-name/li/libinotify-kqueue/package.nix b/pkgs/by-name/li/libinotify-kqueue/package.nix index 130a3e803382..e6abfba44b51 100644 --- a/pkgs/by-name/li/libinotify-kqueue/package.nix +++ b/pkgs/by-name/li/libinotify-kqueue/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { checkFlags = [ "test" ]; - meta = with lib; { + meta = { description = "Inotify shim for macOS and BSD"; homepage = "https://github.com/libinotify-kqueue/libinotify-kqueue"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd; + platforms = with lib.platforms; darwin ++ freebsd ++ netbsd ++ openbsd; }; } diff --git a/pkgs/by-name/li/libinstpatch/package.nix b/pkgs/by-name/li/libinstpatch/package.nix index 9b95120613e4..5bce976df79c 100644 --- a/pkgs/by-name/li/libinstpatch/package.nix +++ b/pkgs/by-name/li/libinstpatch/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "-DLIB_SUFFIX=" # Install in $out/lib. ]; - meta = with lib; { + meta = { homepage = "http://www.swamiproject.org/"; description = "MIDI instrument patch files support library"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libiodbc/package.nix b/pkgs/by-name/li/libiodbc/package.nix index 4b5e409198ac..5a699674b787 100644 --- a/pkgs/by-name/li/libiodbc/package.nix +++ b/pkgs/by-name/li/libiodbc/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { export NIX_LDFLAGS_BEFORE="-rpath $out/lib" ''; - meta = with lib; { + meta = { description = "iODBC driver manager"; homepage = "https://www.iodbc.org"; - platforms = platforms.unix; - license = licenses.bsd3; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/libipfix/package.nix b/pkgs/by-name/li/libipfix/package.nix index 11bbcfde6b54..5d47a64cb9f8 100644 --- a/pkgs/by-name/li/libipfix/package.nix +++ b/pkgs/by-name/li/libipfix/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation { # https://sourceforge.net/p/libipfix/code/ci/a501612c6b8ac6f2df16b366f7a92211382bae6b/ env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = with lib; { + meta = { homepage = "https://libipfix.sourceforge.net/"; description = "C library that implements the IPFIX protocol defined by the IP Flow Information Export working group of the IETF"; mainProgram = "ipfix_collector"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ lewo ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lewo ]; }; } diff --git a/pkgs/by-name/li/libipt/package.nix b/pkgs/by-name/li/libipt/package.nix index 75c10f53f437..b14a14f01eff 100644 --- a/pkgs/by-name/li/libipt/package.nix +++ b/pkgs/by-name/li/libipt/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lstdthreads"; }; - meta = with lib; { + meta = { description = "Intel Processor Trace decoder library"; homepage = "https://github.com/intel/libipt"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libiptcdata/package.nix b/pkgs/by-name/li/libiptcdata/package.nix index a952f3c45b18..b38ea1b5365b 100644 --- a/pkgs/by-name/li/libiptcdata/package.nix +++ b/pkgs/by-name/li/libiptcdata/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { libintl ]; - meta = with lib; { + meta = { description = "Library for reading and writing the IPTC metadata in images and other files"; mainProgram = "iptc"; homepage = "https://github.com/ianw/libiptcdata"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/li/libircclient/package.nix b/pkgs/by-name/li/libircclient/package.nix index 903dafce1b58..a7706e03247d 100644 --- a/pkgs/by-name/li/libircclient/package.nix +++ b/pkgs/by-name/li/libircclient/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { --replace "cp " "install " ''; - meta = with lib; { + meta = { description = "Small but extremely powerful library which implements the client IRC protocol"; homepage = "http://www.ulduzsoft.com/libircclient/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libirecovery/package.nix b/pkgs/by-name/li/libirecovery/package.nix index ebece12070f9..22ef42ebe424 100644 --- a/pkgs/by-name/li/libirecovery/package.nix +++ b/pkgs/by-name/li/libirecovery/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { ''--with-udevrule=OWNER="root",GROUP="myusergroup",MODE="0660"'' ]; - meta = with lib; { + meta = { description = "Library and utility to talk to iBoot/iBSS via USB on Mac OS X, Windows, and Linux"; longDescription = '' libirecovery is a cross-platform library which implements communication to @@ -58,9 +58,9 @@ stdenv.mkDerivation rec { provided. ''; homepage = "https://github.com/libimobiledevice/libirecovery"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ nh2 ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ nh2 ]; mainProgram = "irecovery"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libiscsi/package.nix b/pkgs/by-name/li/libiscsi/package.nix index 5c36f7af4e10..69f88454c405 100644 --- a/pkgs/by-name/li/libiscsi/package.nix +++ b/pkgs/by-name/li/libiscsi/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=format"; }; - meta = with lib; { + meta = { description = "iSCSI client library and utilities"; homepage = "https://github.com/sahlberg/libiscsi"; - license = licenses.lgpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ misuzu ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/by-name/li/libisds/package.nix b/pkgs/by-name/li/libisds/package.nix index 5ca83d7f6edd..07be0efe9917 100644 --- a/pkgs/by-name/li/libisds/package.nix +++ b/pkgs/by-name/li/libisds/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ]; - meta = with lib; { + meta = { description = "Client library for accessing SOAP services of Czech government-provided Databox infomation system"; homepage = "http://xpisar.wz.cz/libisds/"; - license = licenses.lgpl3; - maintainers = [ maintainers.mmahut ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.mmahut ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libite/package.nix b/pkgs/by-name/li/libite/package.nix index 540d2254c1a4..3eaa036be22e 100644 --- a/pkgs/by-name/li/libite/package.nix +++ b/pkgs/by-name/li/libite/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libconfuse ]; - meta = with lib; { + meta = { description = "Lightweight library of frog DNA"; longDescription = '' Libite is a lightweight library of frog DNA. It can be used to fill @@ -39,9 +39,9 @@ stdenv.mkDerivation rec { traversing lists to delete/free nodes. ''; homepage = "https://github.com/troglobit/libite"; - platforms = with platforms; linux ++ netbsd; - maintainers = with maintainers; [ fpletz ]; - license = with licenses; [ + platforms = with lib.platforms; linux ++ netbsd; + maintainers = with lib.maintainers; [ fpletz ]; + license = with lib.licenses; [ mit isc bsd2 diff --git a/pkgs/by-name/li/libitl/package.nix b/pkgs/by-name/li/libitl/package.nix index 0a478041dfef..008cdad9ea5c 100644 --- a/pkgs/by-name/li/libitl/package.nix +++ b/pkgs/by-name/li/libitl/package.nix @@ -23,15 +23,15 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "cmake_minimum_required(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Islamic Tools and Libraries (ITL)"; longDescription = '' The Islamic Tools and Libraries (ITL) project provides a fully featured library for performing common Islamic calculations. ''; homepage = "https://www.arabeyes.org/ITL"; - license = licenses.lgpl21Only; - platforms = platforms.all; - maintainers = with maintainers; [ amyipdev ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ amyipdev ]; }; }) diff --git a/pkgs/by-name/li/libivykis/package.nix b/pkgs/by-name/li/libivykis/package.nix index 5cb6cc0fbd0b..ecb9a03dca77 100644 --- a/pkgs/by-name/li/libivykis/package.nix +++ b/pkgs/by-name/li/libivykis/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { protobufc ]; - meta = with lib; { + meta = { homepage = "https://libivykis.sourceforge.net/"; description = '' A thin wrapper over various OS'es implementation of I/O readiness notification facilities ''; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libixion/package.nix b/pkgs/by-name/li/libixion/package.nix index 6f47fae8e763..3c64585b3475 100644 --- a/pkgs/by-name/li/libixion/package.nix +++ b/pkgs/by-name/li/libixion/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { "--with-boost=${boost.dev}" ]; - meta = with lib; { + meta = { description = "General purpose formula parser, interpreter, formula cell dependency tracker and spreadsheet document model backend all in one package"; homepage = "https://gitlab.com/ixion/ixion"; changelog = "https://gitlab.com/ixion/ixion/-/blob/${src.rev}/CHANGELOG"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libjaylink/package.nix b/pkgs/by-name/li/libjaylink/package.nix index 0a9d8b12bbf8..4744f1871627 100644 --- a/pkgs/by-name/li/libjaylink/package.nix +++ b/pkgs/by-name/li/libjaylink/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://gitlab.zapb.de/libjaylink/libjaylink"; description = "Shared library written in C to access SEGGER J-Link and compatible devices"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ felixsinger ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ felixsinger ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libjcat/package.nix b/pkgs/by-name/li/libjcat/package.nix index ed834efe1f29..b94ea6e87361 100644 --- a/pkgs/by-name/li/libjcat/package.nix +++ b/pkgs/by-name/li/libjcat/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library for reading and writing Jcat files"; mainProgram = "jcat-tool"; homepage = "https://github.com/hughsie/libjcat"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libjson-rpc-cpp/package.nix b/pkgs/by-name/li/libjson-rpc-cpp/package.nix index 39b88c637d67..a898b6ffee29 100644 --- a/pkgs/by-name/li/libjson-rpc-cpp/package.nix +++ b/pkgs/by-name/li/libjson-rpc-cpp/package.nix @@ -101,13 +101,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "C++ framework for json-rpc (json remote procedure call)"; mainProgram = "jsonrpcstub"; homepage = "https://github.com/cinemast/libjson-rpc-cpp"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ robertrichter ]; + maintainers = with lib.maintainers; [ robertrichter ]; }; } diff --git a/pkgs/by-name/li/libjson/package.nix b/pkgs/by-name/li/libjson/package.nix index 9f27a1a319ad..5bb93c8ad95b 100644 --- a/pkgs/by-name/li/libjson/package.nix +++ b/pkgs/by-name/li/libjson/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = toString [ "-std=c++11" ]; preInstall = "mkdir -p $out/lib"; - meta = with lib; { + meta = { homepage = "http://libjson.sourceforge.net/"; description = "JSON reader and writer"; longDescription = '' @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { It's highly customizable to optimize for your particular project, and very lightweight. For Windows, OSX, or Linux. Works in any language. ''; - platforms = platforms.unix; - license = licenses.bsd2; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/li/libjwt/package.nix b/pkgs/by-name/li/libjwt/package.nix index d4ebba5f1842..bec9e3ad97ee 100644 --- a/pkgs/by-name/li/libjwt/package.nix +++ b/pkgs/by-name/li/libjwt/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { homepage = "https://github.com/benmcollins/libjwt"; description = "JWT C Library"; - license = licenses.mpl20; - maintainers = with maintainers; [ pnotequalnp ]; - platforms = platforms.all; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ pnotequalnp ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libjxl/package.nix b/pkgs/by-name/li/libjxl/package.nix index d5615b27d1a0..baafab3033bf 100644 --- a/pkgs/by-name/li/libjxl/package.nix +++ b/pkgs/by-name/li/libjxl/package.nix @@ -205,11 +205,11 @@ stdenv.mkDerivation rec { ".*bitSqueeze.*" ]; - meta = with lib; { + meta = { homepage = "https://github.com/libjxl/libjxl"; description = "JPEG XL image format reference implementation"; - license = licenses.bsd3; - maintainers = with maintainers; [ nh2 ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nh2 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libkeyfinder/package.nix b/pkgs/by-name/li/libkeyfinder/package.nix index f25158df9913..7346f3793e0b 100644 --- a/pkgs/by-name/li/libkeyfinder/package.nix +++ b/pkgs/by-name/li/libkeyfinder/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Musical key detection for digital audio (C++ library)"; homepage = "https://mixxxdj.github.io/libkeyfinder/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libks/package.nix b/pkgs/by-name/li/libks/package.nix index 4b6943d650d5..35d17fcd4efb 100644 --- a/pkgs/by-name/li/libks/package.nix +++ b/pkgs/by-name/li/libks/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Foundational support for signalwire C products"; homepage = "https://github.com/signalwire/libks"; maintainers = with lib.maintainers; [ misuzu ]; teams = [ lib.teams.ngi ]; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/li/libksba/package.nix b/pkgs/by-name/li/libksba/package.nix index f606ba680f63..ddb350d70042 100644 --- a/pkgs/by-name/li/libksba/package.nix +++ b/pkgs/by-name/li/libksba/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { rmdir --ignore-fail-on-non-empty $out/bin ''; - meta = with lib; { + meta = { homepage = "https://www.gnupg.org"; description = "CMS and X.509 access library"; mainProgram = "ksba-config"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; }; } diff --git a/pkgs/by-name/li/libksi/package.nix b/pkgs/by-name/li/libksi/package.nix index 49fd7cd3d09f..4d5606444c36 100644 --- a/pkgs/by-name/li/libksi/package.nix +++ b/pkgs/by-name/li/libksi/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { "--with-cafile=/etc/ssl/certs/ca-certificates.crt" ]; - meta = with lib; { + meta = { homepage = "https://github.com/GuardTime/libksi"; description = "Keyless Signature Infrastructure API library"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/liblangtag/package.nix b/pkgs/by-name/li/liblangtag/package.nix index 63168b55d899..9c95c3a9db89 100644 --- a/pkgs/by-name/li/liblangtag/package.nix +++ b/pkgs/by-name/li/liblangtag/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { gobject-introspection ]; - meta = with lib; { + meta = { description = "Interface library to access tags for identifying languages"; - license = licenses.mpl20; - maintainers = [ maintainers.raskin ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.unix; # There are links to a homepage that are broken by a BitBucket change homepage = "https://bitbucket.org/tagoh/liblangtag/overview"; }; diff --git a/pkgs/by-name/li/liblaxjson/package.nix b/pkgs/by-name/li/liblaxjson/package.nix index 86fb56ebb3ce..56658b5ff35c 100644 --- a/pkgs/by-name/li/liblaxjson/package.nix +++ b/pkgs/by-name/li/liblaxjson/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Library for parsing JSON config files"; homepage = "https://github.com/andrewrk/liblaxjson"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - maintainers = [ maintainers.andrewrk ]; + maintainers = [ lib.maintainers.andrewrk ]; }; } diff --git a/pkgs/by-name/li/liblc3/package.nix b/pkgs/by-name/li/liblc3/package.nix index 4428d1e5220b..62d1a1831bc7 100644 --- a/pkgs/by-name/li/liblc3/package.nix +++ b/pkgs/by-name/li/liblc3/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { ninja ]; - meta = with lib; { + meta = { description = "LC3 (Low Complexity Communication Codec) is an efficient low latency audio codec"; homepage = "https://github.com/google/liblc3"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ jansol ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jansol ]; }; } diff --git a/pkgs/by-name/li/liblcf/package.nix b/pkgs/by-name/li/liblcf/package.nix index 4b4fe0083864..615e95de225b 100644 --- a/pkgs/by-name/li/liblcf/package.nix +++ b/pkgs/by-name/li/liblcf/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects"; homepage = "https://github.com/EasyRPG/liblcf"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/liblinear/package.nix b/pkgs/by-name/li/liblinear/package.nix index 75ff37996e75..38fee736dc36 100644 --- a/pkgs/by-name/li/liblinear/package.nix +++ b/pkgs/by-name/li/liblinear/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $dev/include linear.h ''; - meta = with lib; { + meta = { description = "Library for large linear classification"; homepage = "https://www.csie.ntu.edu.tw/~cjlin/liblinear/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/liblogging/package.nix b/pkgs/by-name/li/liblogging/package.nix index 8ca62ab2e5d2..0e21cfeb470c 100644 --- a/pkgs/by-name/li/liblogging/package.nix +++ b/pkgs/by-name/li/liblogging/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-int -Wno-error=implicit-function-declaration"; - meta = with lib; { + meta = { homepage = "http://www.liblogging.org/"; description = "Lightweight signal-safe logging library"; mainProgram = "stdlogctl"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/liblouis/package.nix b/pkgs/by-name/li/liblouis/package.nix index 584d657a5f82..082fa6ddfe50 100644 --- a/pkgs/by-name/li/liblouis/package.nix +++ b/pkgs/by-name/li/liblouis/package.nix @@ -75,14 +75,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Open-source braille translator and back-translator"; homepage = "https://liblouis.io/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus # library gpl3Plus # tools ]; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/liblqr1/package.nix b/pkgs/by-name/li/liblqr1/package.nix index 8ab47058aef9..bfe56beef91b 100644 --- a/pkgs/by-name/li/liblqr1/package.nix +++ b/pkgs/by-name/li/liblqr1/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; propagatedBuildInputs = [ glib ]; - meta = with lib; { + meta = { homepage = "http://liblqr.wikidot.com"; description = "Seam-carving C/C++ library called Liquid Rescaling"; - platforms = platforms.all; - license = with licenses; [ + platforms = lib.platforms.all; + license = with lib.licenses; [ gpl3 lgpl3 ]; diff --git a/pkgs/by-name/li/liblscp/package.nix b/pkgs/by-name/li/liblscp/package.nix index daea8f6fc48a..40b9281c448b 100644 --- a/pkgs/by-name/li/liblscp/package.nix +++ b/pkgs/by-name/li/liblscp/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.linuxsampler.org"; description = "LinuxSampler Control Protocol (LSCP) wrapper library"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libltc/package.nix b/pkgs/by-name/li/libltc/package.nix index 9c07075526a8..438647c3086a 100644 --- a/pkgs/by-name/li/libltc/package.nix +++ b/pkgs/by-name/li/libltc/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-Cm1CzWwh6SWif6Vg3EWsgAV9J18jNCECglkJwC07Ekk="; }; - meta = with lib; { + meta = { homepage = "http://x42.github.io/libltc/"; description = "POSIX-C Library for handling Linear/Logitudinal Time Code (LTC)"; - license = licenses.lgpl3Plus; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/liblxi/package.nix b/pkgs/by-name/li/liblxi/package.nix index d2815e84d5c7..3cee9da78b3a 100644 --- a/pkgs/by-name/li/liblxi/package.nix +++ b/pkgs/by-name/li/liblxi/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: { libxml2 ]; - meta = with lib; { + meta = { description = "Library for communicating with LXI compatible instruments"; longDescription = '' liblxi is an open source software library which offers a simple @@ -56,8 +56,8 @@ stdenv.mkDerivation (finalAttrs: { on networks and communicate SCPI commands. ''; homepage = "https://lxi-tools.github.io/"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.vq ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.vq ]; }; }) diff --git a/pkgs/by-name/li/libmad/package.nix b/pkgs/by-name/li/libmad/package.nix index 1c947bf35c5b..6be2c0d82571 100644 --- a/pkgs/by-name/li/libmad/package.nix +++ b/pkgs/by-name/li/libmad/package.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation rec { ocaml-mad = ocamlPackages.mad; }; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/mad/"; description = "High-quality, fixed-point MPEG audio decoder supporting MPEG-1 and MPEG-2"; - license = licenses.gpl2; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libmanette/package.nix b/pkgs/by-name/li/libmanette/package.nix index de3ac59a1065..1c68682d8c69 100644 --- a/pkgs/by-name/li/libmanette/package.nix +++ b/pkgs/by-name/li/libmanette/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Simple GObject game controller library"; mainProgram = "manette-test"; homepage = "https://gnome.pages.gitlab.gnome.org/libmanette/"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libmatthew_java/package.nix b/pkgs/by-name/li/libmatthew_java/package.nix index bef6d89380de..297e7ba6908f 100644 --- a/pkgs/by-name/li/libmatthew_java/package.nix +++ b/pkgs/by-name/li/libmatthew_java/package.nix @@ -19,8 +19,8 @@ stdenv.mkDerivation rec { PREFIX = "\${out}"; buildInputs = [ jdk ]; - meta = with lib; { - platforms = platforms.linux; - license = licenses.mit; + meta = { + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/li/libmaxminddb/package.nix b/pkgs/by-name/li/libmaxminddb/package.nix index fa637ae4fdf3..cf591a7f1adb 100644 --- a/pkgs/by-name/li/libmaxminddb/package.nix +++ b/pkgs/by-name/li/libmaxminddb/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-G/v477o+1kYuBOIlkGrVzl/pWKo9YmoSNbKiJT1gB0M="; }; - meta = with lib; { + meta = { description = "C library for working with MaxMind geolocation DB files"; homepage = "https://github.com/maxmind/libmaxminddb"; - license = licenses.asl20; - teams = [ teams.helsinki-systems ]; + license = lib.licenses.asl20; + teams = [ lib.teams.helsinki-systems ]; mainProgram = "mmdblookup"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libmbd/package.nix b/pkgs/by-name/li/libmbd/package.nix index 92d8ff469825..fdba444b8f24 100644 --- a/pkgs/by-name/li/libmbd/package.nix +++ b/pkgs/by-name/li/libmbd/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ mpi ]; - meta = with lib; { + meta = { description = "Many-body dispersion library"; homepage = "https://github.com/libmbd/libmbd"; - license = licenses.mpl20; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/li/libmcfp/package.nix b/pkgs/by-name/li/libmcfp/package.nix index dc07d6117e10..1f7f8295b2ed 100644 --- a/pkgs/by-name/li/libmcfp/package.nix +++ b/pkgs/by-name/li/libmcfp/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = with lib; { + meta = { description = "Header only library that can collect configuration options from command line arguments"; homepage = "https://github.com/mhekkel/libmcfp"; changelog = "https://github.com/mhekkel/libmcfp/blob/${finalAttrs.src.rev}/changelog"; - license = licenses.bsd2; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libmd/package.nix b/pkgs/by-name/li/libmd/package.nix index fc1ff6b95895..d64679f607f9 100644 --- a/pkgs/by-name/li/libmd/package.nix +++ b/pkgs/by-name/li/libmd/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://www.hadrons.org/software/libmd/"; changelog = "https://archive.hadrons.org/software/libmd/libmd-${finalAttrs.version}.announce"; # Git: https://git.hadrons.org/cgit/libmd.git description = "Message Digest functions from BSD systems"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 bsd2 isc @@ -36,6 +36,6 @@ stdenv.mkDerivation (finalAttrs: { publicDomain ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libmediaart/package.nix b/pkgs/by-name/li/libmediaart/package.nix index 24013758b159..33d2b5c30df2 100644 --- a/pkgs/by-name/li/libmediaart/package.nix +++ b/pkgs/by-name/li/libmediaart/package.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library tasked with managing, extracting and handling media art caches"; - teams = [ teams.gnome ]; - license = licenses.gpl2; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libmediainfo/package.nix b/pkgs/by-name/li/libmediainfo/package.nix index a731de75f91e..19d86faba9c9 100644 --- a/pkgs/by-name/li/libmediainfo/package.nix +++ b/pkgs/by-name/li/libmediainfo/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { install -vD -m 644 libmediainfo.pc "$out/lib/pkgconfig/libmediainfo.pc" ''; - meta = with lib; { + meta = { description = "Shared library for mediainfo"; homepage = "https://mediaarea.net/"; changelog = "https://mediaarea.net/MediaInfo/ChangeLog"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.devhell ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.devhell ]; }; } diff --git a/pkgs/by-name/li/libmemcached/package.nix b/pkgs/by-name/li/libmemcached/package.nix index 43f0e9880eb9..507816afab6b 100644 --- a/pkgs/by-name/li/libmemcached/package.nix +++ b/pkgs/by-name/li/libmemcached/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-fpermissive"; - meta = with lib; { + meta = { homepage = "https://libmemcached.org"; description = "Open source C/C++ client library and tools for the memcached server"; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libmesode/package.nix b/pkgs/by-name/li/libmesode/package.nix index 3633b47d1593..b016c47fb849 100644 --- a/pkgs/by-name/li/libmesode/package.nix +++ b/pkgs/by-name/li/libmesode/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Fork of libstrophe (https://github.com/strophe/libstrophe) for use with Profanity XMPP Client"; longDescription = '' Reasons for forking: @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { TLS functionality such as manual SSL certificate verification. ''; homepage = "https://github.com/profanity-im/libmesode/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only mit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ devhell ]; + maintainers = with lib.maintainers; [ devhell ]; }; } diff --git a/pkgs/by-name/li/libmicrodns/package.nix b/pkgs/by-name/li/libmicrodns/package.nix index 0d60242be1bc..a2cf4ef48c85 100644 --- a/pkgs/by-name/li/libmicrodns/package.nix +++ b/pkgs/by-name/li/libmicrodns/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Minimal mDNS resolver library, used by VLC"; homepage = "https://github.com/videolabs/libmicrodns"; - license = licenses.lgpl21; - platforms = platforms.unix; - maintainers = [ maintainers.shazow ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.shazow ]; }; } diff --git a/pkgs/by-name/li/libmikmod/package.nix b/pkgs/by-name/li/libmikmod/package.nix index 725b0e311dec..c6e0f62f0804 100644 --- a/pkgs/by-name/li/libmikmod/package.nix +++ b/pkgs/by-name/li/libmikmod/package.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation rec { moveToOutput bin/libmikmod-config "$dev" ''; - meta = with lib; { + meta = { description = "Library for playing tracker music module files"; mainProgram = "libmikmod-config"; homepage = "https://mikmod.shlomifish.org/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ lovek323 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; longDescription = '' A library for playing tracker music module files supporting many formats, diff --git a/pkgs/by-name/li/libmilter/package.nix b/pkgs/by-name/li/libmilter/package.nix index c8fe5eed0362..471d7e6bf3b5 100644 --- a/pkgs/by-name/li/libmilter/package.nix +++ b/pkgs/by-name/li/libmilter/package.nix @@ -50,10 +50,10 @@ stdenv.mkDerivation rec { fixDarwinDylibNames $out/lib/libmilter.*.1 ''; - meta = with lib; { + meta = { description = "Sendmail Milter mail filtering API library"; - platforms = platforms.unix; - maintainers = with maintainers; [ fpletz ]; - license = licenses.sendmail; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fpletz ]; + license = lib.licenses.sendmail; }; } diff --git a/pkgs/by-name/li/libminc/package.nix b/pkgs/by-name/li/libminc/package.nix index 207f215e5653..ba6f273c3e70 100644 --- a/pkgs/by-name/li/libminc/package.nix +++ b/pkgs/by-name/li/libminc/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation (finalAttrs: { ctest -j1 --output-on-failure ''; - meta = with lib; { + meta = { homepage = "https://github.com/BIC-MNI/libminc"; description = "Medical imaging library based on HDF5"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = licenses.free; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.free; }; }) diff --git a/pkgs/by-name/li/libmms/package.nix b/pkgs/by-name/li/libmms/package.nix index 2d4630e69823..e304e654e723 100644 --- a/pkgs/by-name/li/libmms/package.nix +++ b/pkgs/by-name/li/libmms/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Library for downloading (streaming) media files using the mmst and mmsh protocols"; homepage = "http://libmms.sourceforge.net"; - platforms = platforms.all; - license = licenses.lgpl21; + platforms = lib.platforms.all; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libmng/package.nix b/pkgs/by-name/li/libmng/package.nix index da928a584ce6..f8f9b87080fe 100644 --- a/pkgs/by-name/li/libmng/package.nix +++ b/pkgs/by-name/li/libmng/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { lcms2 ]; - meta = with lib; { + meta = { description = "Reference library for reading, displaying, writing and examining Multiple-Image Network Graphics"; homepage = "http://www.libmng.com"; - license = licenses.zlib; - maintainers = with maintainers; [ marcweber ]; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ marcweber ]; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; } diff --git a/pkgs/by-name/li/libmodbus/package.nix b/pkgs/by-name/li/libmodbus/package.nix index 96e7b0d2b46b..71e688eb259c 100644 --- a/pkgs/by-name/li/libmodbus/package.nix +++ b/pkgs/by-name/li/libmodbus/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { "ac_cv_func_realloc_0_nonnull=yes" ]; - meta = with lib; { + meta = { description = "Library to send/receive data according to the Modbus protocol"; homepage = "https://libmodbus.org/"; - license = licenses.lgpl21Plus; - platforms = with platforms; unix ++ windows; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix ++ windows; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/li/libmodplug/package.nix b/pkgs/by-name/li/libmodplug/package.nix index dd5ee10ca5b3..9f8440062eec 100644 --- a/pkgs/by-name/li/libmodplug/package.nix +++ b/pkgs/by-name/li/libmodplug/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { --replace /usr/bin/file ${file}/bin/file ''; - meta = with lib; { + meta = { description = "MOD playing library"; homepage = "https://modplug-xmms.sourceforge.net/"; - license = licenses.publicDomain; - platforms = platforms.unix; - maintainers = with maintainers; [ raskin ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ raskin ]; }; } diff --git a/pkgs/by-name/li/libmodsecurity/package.nix b/pkgs/by-name/li/libmodsecurity/package.nix index 544363a24fca..144b64651851 100644 --- a/pkgs/by-name/li/libmodsecurity/package.nix +++ b/pkgs/by-name/li/libmodsecurity/package.nix @@ -94,7 +94,7 @@ stdenv.mkDerivation rec { nginx-modsecurity = nixosTests.nginx-modsecurity; }; - meta = with lib; { + meta = { homepage = "https://github.com/owasp-modsecurity/ModSecurity"; description = '' ModSecurity v3 library component. @@ -107,9 +107,9 @@ stdenv.mkDerivation rec { the ModSecurity SecRules format and apply them to HTTP content provided by your application via Connectors. ''; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ izorkin ]; mainProgram = "modsec-rules-check"; }; } diff --git a/pkgs/by-name/li/libmodule/package.nix b/pkgs/by-name/li/libmodule/package.nix index 3ffac7617bfc..435b6a47c8a8 100644 --- a/pkgs/by-name/li/libmodule/package.nix +++ b/pkgs/by-name/li/libmodule/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { description = "C simple and elegant implementation of an actor library"; homepage = "https://github.com/FedeDP/libmodule"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eadwu ]; }; diff --git a/pkgs/by-name/li/libmodulemd/package.nix b/pkgs/by-name/li/libmodulemd/package.nix index 5881382aa55a..bb1b7e430f3d 100644 --- a/pkgs/by-name/li/libmodulemd/package.nix +++ b/pkgs/by-name/li/libmodulemd/package.nix @@ -88,12 +88,12 @@ stdenv.mkDerivation rec { echo "$out ${python3.pkgs.pygobject3} ${python3.pkgs.six}" > "$py/nix-support/propagated-build-inputs" ''; - meta = with lib; { + meta = { description = "C Library for manipulating module metadata files"; mainProgram = "modulemd-validator"; homepage = "https://github.com/fedora-modularity/libmodulemd"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libmongocrypt/package.nix b/pkgs/by-name/li/libmongocrypt/package.nix index fe97c5de7a1c..0c59816d8fc8 100644 --- a/pkgs/by-name/li/libmongocrypt/package.nix +++ b/pkgs/by-name/li/libmongocrypt/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation rec { "-DBUILD_VERSION=${version}" ]; - meta = with lib; { + meta = { description = "Required C library for client-side and queryable encryption in MongoDB"; homepage = "https://github.com/mongodb/libmongocrypt"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libmowgli/package.nix b/pkgs/by-name/li/libmowgli/package.nix index 2f2575a3a183..d744dfbf9146 100644 --- a/pkgs/by-name/li/libmowgli/package.nix +++ b/pkgs/by-name/li/libmowgli/package.nix @@ -15,10 +15,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-jlw6ixMoIdIjmQ86N+KN+Gez218sw894POkcCYnT0s0="; }; - meta = with lib; { + meta = { description = "Development framework for C providing high performance and highly flexible algorithms"; homepage = "https://github.com/atheme/libmowgli-2"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libmpack/package.nix b/pkgs/by-name/li/libmpack/package.nix index 00b8d72d28b6..c852ac0736a9 100644 --- a/pkgs/by-name/li/libmpack/package.nix +++ b/pkgs/by-name/li/libmpack/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { "config=release" ]; - meta = with lib; { + meta = { description = "Simple implementation of msgpack in C"; homepage = "https://github.com/tarruda/libmpack/"; - license = licenses.mit; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libmpd/package.nix b/pkgs/by-name/li/libmpd/package.nix index c186379cde4e..76d413d430cc 100644 --- a/pkgs/by-name/li/libmpd/package.nix +++ b/pkgs/by-name/li/libmpd/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { # https://hydra.nixos.org/build/281958201/nixlog/3 env.NIX_CFLAGS_COMPILE = "-Wno-error=int-conversion"; - meta = with lib; { + meta = { description = "Higher level access to MPD functions"; homepage = "https://www.musicpd.org/download/libmpd/"; changelog = "https://www.musicpd.org/download/libmpd/${finalAttrs.version}/README"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.all; # Getting DARWIN_NULL related errors broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/li/libmsgraph/package.nix b/pkgs/by-name/li/libmsgraph/package.nix index 1f99ed61c20e..cc85bab20ba6 100644 --- a/pkgs/by-name/li/libmsgraph/package.nix +++ b/pkgs/by-name/li/libmsgraph/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library to access MS Graph API for Office 365"; homepage = "https://gitlab.gnome.org/GNOME/msgraph"; changelog = "https://gitlab.gnome.org/GNOME/msgraph/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.lgpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libmtp/package.nix b/pkgs/by-name/li/libmtp/package.nix index f5c2eb548f08..3e990343bbfd 100644 --- a/pkgs/by-name/li/libmtp/package.nix +++ b/pkgs/by-name/li/libmtp/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/libmtp/libmtp"; description = "Implementation of Microsoft's Media Transfer Protocol"; longDescription = '' @@ -86,8 +86,8 @@ stdenv.mkDerivation rec { in the form of a library suitable primarily for POSIX compliant operating systems. We implement MTP Basic, the stuff proposed for standardization. ''; - platforms = platforms.unix; - license = licenses.lgpl21; - maintainers = with maintainers; [ lovesegfault ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/by-name/li/libmwaw/package.nix b/pkgs/by-name/li/libmwaw/package.nix index 732db1b4c9b2..3fdb31a44bc1 100644 --- a/pkgs/by-name/li/libmwaw/package.nix +++ b/pkgs/by-name/li/libmwaw/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Import library for some old mac text documents"; - license = licenses.mpl20; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libmypaint/package.nix b/pkgs/by-name/li/libmypaint/package.nix index 1ccc5c2087a8..39b3e6d5508e 100644 --- a/pkgs/by-name/li/libmypaint/package.nix +++ b/pkgs/by-name/li/libmypaint/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { homepage = "http://mypaint.org/"; description = "Library for making brushstrokes which is used by MyPaint and other projects"; - license = licenses.isc; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libmysofa/package.nix b/pkgs/by-name/li/libmysofa/package.nix index 67961dc1cf6c..e5dac672f46f 100644 --- a/pkgs/by-name/li/libmysofa/package.nix +++ b/pkgs/by-name/li/libmysofa/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "-DCODE_COVERAGE=OFF" ]; - meta = with lib; { + meta = { description = "Reader for AES SOFA files to get better HRTFs"; homepage = "https://github.com/hoene/libmysofa"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libnabo/package.nix b/pkgs/by-name/li/libnabo/package.nix index 58bec38657e4..9a65d164ea51 100644 --- a/pkgs/by-name/li/libnabo/package.nix +++ b/pkgs/by-name/li/libnabo/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "test"; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Fast K Nearest Neighbor library for low-dimensional spaces"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ cryptix ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cryptix ]; }; } diff --git a/pkgs/by-name/li/libnatpmp/package.nix b/pkgs/by-name/li/libnatpmp/package.nix index c09ae36ec95d..8fddd7088615 100644 --- a/pkgs/by-name/li/libnatpmp/package.nix +++ b/pkgs/by-name/li/libnatpmp/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { chmod +x $out/lib/* ''; - meta = with lib; { + meta = { description = "NAT-PMP client"; homepage = "http://miniupnp.free.fr/libnatpmp.html"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; mainProgram = "natpmpc"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libnats-c/package.nix b/pkgs/by-name/li/libnats-c/package.nix index 830d74fa7e2d..b071dd050ac5 100644 --- a/pkgs/by-name/li/libnats-c/package.nix +++ b/pkgs/by-name/li/libnats-c/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ ''; - meta = with lib; { + meta = { description = "C API for the NATS messaging system"; homepage = "https://github.com/nats-io/nats.c"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/li/libnatspec/package.nix b/pkgs/by-name/li/libnatspec/package.nix index 0bc5de4e4f05..409a7438aac2 100644 --- a/pkgs/by-name/li/libnatspec/package.nix +++ b/pkgs/by-name/li/libnatspec/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libiconv ]; - meta = with lib; { + meta = { homepage = "https://natspec.sourceforge.net/"; description = "Library intended to smooth national specificities in using of programs"; mainProgram = "natspec"; - platforms = platforms.unix; - license = licenses.lgpl21; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libnbd/package.nix b/pkgs/by-name/li/libnbd/package.nix index b0a9b3fd78d1..b53141bc3359 100644 --- a/pkgs/by-name/li/libnbd/package.nix +++ b/pkgs/by-name/li/libnbd/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { substituteAllInPlace $LIBNBD_PYTHON_METADATA ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/nbdkit/libnbd"; description = "Network Block Device client library in userspace"; longDescription = '' @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { - Bindings in several programming languages. - Shell (nbdsh) for command line and scripting. ''; - license = with licenses; lgpl21Plus; - maintainers = with maintainers; [ + license = with lib.licenses; lgpl21Plus; + maintainers = with lib.maintainers; [ humancalico ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; broken = buildOcamlBindings && !lib.versionAtLeast ocamlPackages.ocaml.version "4.05"; }; } diff --git a/pkgs/by-name/li/libndp/package.nix b/pkgs/by-name/li/libndp/package.nix index 933c0aaa54dd..8d99227d1df4 100644 --- a/pkgs/by-name/li/libndp/package.nix +++ b/pkgs/by-name/li/libndp/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "http://libndp.org/"; description = "Library for Neighbor Discovery Protocol"; mainProgram = "ndptool"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libndtypes/package.nix b/pkgs/by-name/li/libndtypes/package.nix index ec7fd35932df..07ec9eb8a49d 100644 --- a/pkgs/by-name/li/libndtypes/package.nix +++ b/pkgs/by-name/li/libndtypes/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "Dynamic types for data description and in-memory computations"; homepage = "https://xnd.io/"; - license = licenses.bsdOriginal; - maintainers = [ maintainers.costrouc ]; + license = lib.licenses.bsdOriginal; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/by-name/li/libnest2d/package.nix b/pkgs/by-name/li/libnest2d/package.nix index cd583bdc7d2c..eec7acc9f86c 100644 --- a/pkgs/by-name/li/libnest2d/package.nix +++ b/pkgs/by-name/li/libnest2d/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation { CLIPPER_PATH = "${clipper.out}"; cmakeFlags = [ "-DLIBNEST2D_HEADER_ONLY=OFF" ]; - meta = with lib; { + meta = { description = "2D irregular bin packaging and nesting library written in modern C++"; homepage = "https://github.com/Ultimaker/libnest2d"; - license = licenses.lgpl3; - platforms = platforms.all; + license = lib.licenses.lgpl3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libnet/package.nix b/pkgs/by-name/li/libnet/package.nix index a152d0823744..be9a0600baf8 100644 --- a/pkgs/by-name/li/libnet/package.nix +++ b/pkgs/by-name/li/libnet/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { moveToOutput bin/libnet-config "$dev" ''; - meta = with lib; { + meta = { homepage = "https://github.com/sam-github/libnet"; description = "Portable framework for low-level network packet construction"; mainProgram = "libnet-config"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnetfilter_acct/package.nix b/pkgs/by-name/li/libnetfilter_acct/package.nix index c12e39e9bcb5..c39c5cc26de2 100644 --- a/pkgs/by-name/li/libnetfilter_acct/package.nix +++ b/pkgs/by-name/li/libnetfilter_acct/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libmnl ]; - meta = with lib; { + meta = { homepage = "https://www.netfilter.org/projects/libnetfilter_acct/"; description = "Userspace library providing interface to extended accounting infrastructure"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnetfilter_conntrack/package.nix b/pkgs/by-name/li/libnetfilter_conntrack/package.nix index ff200671af0f..08f7382541ad 100644 --- a/pkgs/by-name/li/libnetfilter_conntrack/package.nix +++ b/pkgs/by-name/li/libnetfilter_conntrack/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Userspace library providing an API to the in-kernel connection tracking state table"; longDescription = '' libnetfilter_conntrack is a userspace library providing a programming interface (API) to the @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { by conntrack-tools among many other applications ''; homepage = "https://netfilter.org/projects/libnetfilter_conntrack/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnetfilter_log/package.nix b/pkgs/by-name/li/libnetfilter_log/package.nix index 3229cd78e14b..8e3c923cc8b2 100644 --- a/pkgs/by-name/li/libnetfilter_log/package.nix +++ b/pkgs/by-name/li/libnetfilter_log/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libnfnetlink ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Userspace library providing interface to packets that have been logged by the kernel packet filter"; longDescription = '' libnetfilter_log is a userspace library providing interface to packets @@ -29,8 +29,8 @@ stdenv.mkDerivation rec { library has been previously known as libnfnetlink_log. ''; homepage = "https://netfilter.org/projects/libnetfilter_log/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libnetfilter_queue/package.nix b/pkgs/by-name/li/libnetfilter_queue/package.nix index 86a5ab16235d..eebe5e3cab91 100644 --- a/pkgs/by-name/li/libnetfilter_queue/package.nix +++ b/pkgs/by-name/li/libnetfilter_queue/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { libnfnetlink ]; - meta = with lib; { + meta = { homepage = "https://www.netfilter.org/projects/libnetfilter_queue/"; description = "Userspace API to packets queued by the kernel packet filter"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnfc/package.nix b/pkgs/by-name/li/libnfc/package.nix index 555364022345..75aa3663d192 100644 --- a/pkgs/by-name/li/libnfc/package.nix +++ b/pkgs/by-name/li/libnfc/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { "sysconfdir=/etc" ]; - meta = with lib; { + meta = { description = "Library for Near Field Communication (NFC)"; homepage = "https://github.com/nfc-tools/libnfc"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnfs/package.nix b/pkgs/by-name/li/libnfs/package.nix index e1a896d031ec..c902507761c8 100644 --- a/pkgs/by-name/li/libnfs/package.nix +++ b/pkgs/by-name/li/libnfs/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "NFS client library"; homepage = "https://github.com/sahlberg/libnfs"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2 bsd2 gpl3 ]; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnftnl/package.nix b/pkgs/by-name/li/libnftnl/package.nix index 21cede656fd1..73799c03d809 100644 --- a/pkgs/by-name/li/libnftnl/package.nix +++ b/pkgs/by-name/li/libnftnl/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { rev-prefix = "libnftnl-"; }; - meta = with lib; { + meta = { description = "Userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem"; homepage = "https://netfilter.org/projects/libnftnl/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/li/libnghttp2_asio/package.nix b/pkgs/by-name/li/libnghttp2_asio/package.nix index 490566fde01f..152d8c0615f6 100644 --- a/pkgs/by-name/li/libnghttp2_asio/package.nix +++ b/pkgs/by-name/li/libnghttp2_asio/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 3.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "High level HTTP/2 C++ library"; longDescription = '' libnghttp2_asio is C++ library built on top of libnghttp2 @@ -49,7 +49,7 @@ stdenv.mkDerivation { OpenSSL. libnghttp2_asio provides both client and server APIs. ''; homepage = "https://github.com/nghttp2/nghttp2-asio"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ izorkin ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/by-name/li/libngspice/package.nix b/pkgs/by-name/li/libngspice/package.nix index c6bbd6ce2516..dfb1e6244a40 100644 --- a/pkgs/by-name/li/libngspice/package.nix +++ b/pkgs/by-name/li/libngspice/package.nix @@ -50,16 +50,16 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Next Generation Spice (Electronic Circuit Simulator)"; mainProgram = "ngspice"; homepage = "http://ngspice.sourceforge.net"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 gpl2Plus lgpl2Plus ]; # See https://sourceforge.net/p/ngspice/ngspice/ci/master/tree/COPYING - maintainers = with maintainers; [ bgamari ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bgamari ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnids/package.nix b/pkgs/by-name/li/libnids/package.nix index 090637b5e7ad..d7603cc138a6 100644 --- a/pkgs/by-name/li/libnids/package.nix +++ b/pkgs/by-name/li/libnids/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { */ env.NIX_CFLAGS_COMPILE = "-Dg_thread_init= "; - meta = with lib; { + meta = { description = "E-component of Network Intrusion Detection System which emulates the IP stack of Linux 2.0.x"; homepage = "https://libnids.sourceforge.net/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.symphorien ]; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.symphorien ]; # probably also bsd and solaris - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnitrokey/package.nix b/pkgs/by-name/li/libnitrokey/package.nix index 5604afda7716..4af4e213392e 100644 --- a/pkgs/by-name/li/libnitrokey/package.nix +++ b/pkgs/by-name/li/libnitrokey/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { doInstallCheck = true; - meta = with lib; { + meta = { description = "Communicate with Nitrokey devices in a clean and easy manner"; homepage = "https://github.com/Nitrokey/libnitrokey"; - license = licenses.lgpl3; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ panicgh raitobezarius ]; diff --git a/pkgs/by-name/li/libnixxml/package.nix b/pkgs/by-name/li/libnixxml/package.nix index ec6baa77fcde..f825d46a920a 100644 --- a/pkgs/by-name/li/libnixxml/package.nix +++ b/pkgs/by-name/li/libnixxml/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "XML-based Nix-friendly data integration library"; homepage = "https://github.com/svanderburg/libnixxml"; - license = licenses.mit; - maintainers = with maintainers; [ tomberek ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomberek ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnl-tiny/package.nix b/pkgs/by-name/li/libnl-tiny/package.nix index d814fbab6ce7..493792b5b56b 100644 --- a/pkgs/by-name/li/libnl-tiny/package.nix +++ b/pkgs/by-name/li/libnl-tiny/package.nix @@ -25,14 +25,14 @@ stdenv.mkDerivation { -i libnl-tiny.pc.in ''; - meta = with lib; { + meta = { description = "Tiny OpenWrt fork of libnl"; homepage = "https://git.openwrt.org/?p=project/libnl-tiny.git;a=summary"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mkg20001 dvn0 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnl/package.nix b/pkgs/by-name/li/libnl/package.nix index 20e8ea5313de..a17cfc8a8841 100644 --- a/pkgs/by-name/li/libnl/package.nix +++ b/pkgs/by-name/li/libnl/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { inherit pythonSupport; }; - meta = with lib; { + meta = { homepage = "http://www.infradead.org/~tgr/libnl/"; description = "Linux Netlink interface library suite"; - license = licenses.lgpl21; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnma/package.nix b/pkgs/by-name/li/libnma/package.nix index ddd16147d587..11e15b3d8528 100644 --- a/pkgs/by-name/li/libnma/package.nix +++ b/pkgs/by-name/li/libnma/package.nix @@ -112,11 +112,11 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { 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; + license = lib.licenses.gpl2Plus; # Mix of GPL and LPGL 2+ + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnotify/package.nix b/pkgs/by-name/li/libnotify/package.nix index 5403b0d07218..757dcaabdc0d 100644 --- a/pkgs/by-name/li/libnotify/package.nix +++ b/pkgs/by-name/li/libnotify/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library that sends desktop notifications to a notification daemon"; homepage = "https://gitlab.gnome.org/GNOME/libnotify"; - license = licenses.lgpl21; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21; + teams = [ lib.teams.gnome ]; mainProgram = "notify-send"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnova/package.nix b/pkgs/by-name/li/libnova/package.nix index 4cd10c707fa9..61afcb15ef1b 100644 --- a/pkgs/by-name/li/libnova/package.nix +++ b/pkgs/by-name/li/libnova/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Celestial Mechanics, Astrometry and Astrodynamics Library"; mainProgram = "libnovaconfig"; homepage = "http://libnova.sf.net"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ returntoreality ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnsl/package.nix b/pkgs/by-name/li/libnsl/package.nix index fe251a5ee1bd..a031474c6a71 100644 --- a/pkgs/by-name/li/libnsl/package.nix +++ b/pkgs/by-name/li/libnsl/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libtirpc ]; - meta = with lib; { + meta = { description = "Client interface library for NIS(YP) and NIS+"; homepage = "https://github.com/thkukuk/libnsl"; - license = licenses.lgpl21; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnss-mysql/package.nix b/pkgs/by-name/li/libnss-mysql/package.nix index 432f75bdd0a6..ed921c924969 100644 --- a/pkgs/by-name/li/libnss-mysql/package.nix +++ b/pkgs/by-name/li/libnss-mysql/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) auth-mysql; }; - meta = with lib; { + meta = { description = "MySQL module for the Solaris Nameservice Switch (NSS)"; homepage = "https://github.com/saknopper/libnss-mysql"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/by-name/li/libnut/package.nix b/pkgs/by-name/li/libnut/package.nix index c1d197cccedd..f62fb86d0703 100644 --- a/pkgs/by-name/li/libnut/package.nix +++ b/pkgs/by-name/li/libnut/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { "install-nututils" ]; - meta = with lib; { + meta = { description = "Library to read/write the NUT video container format"; homepage = "https://git.ffmpeg.org/gitweb/nut.git"; - license = licenses.mit; - maintainers = with maintainers; [ quag ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ quag ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnvme/package.nix b/pkgs/by-name/li/libnvme/package.nix index c894494686e9..464309842280 100644 --- a/pkgs/by-name/li/libnvme/package.nix +++ b/pkgs/by-name/li/libnvme/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation (finalAttrs: { # mocked ioctl conflicts with the musl one: https://github.com/NixOS/nixpkgs/pull/263768#issuecomment-1782877974 doCheck = !stdenv.hostPlatform.isMusl; - meta = with lib; { + meta = { description = "C Library for NVM Express on Linux"; homepage = "https://github.com/linux-nvme/libnvme"; - maintainers = with maintainers; [ vifino ]; - license = with licenses; [ lgpl21Plus ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ vifino ]; + license = with lib.licenses; [ lgpl21Plus ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/liboauth/package.nix b/pkgs/by-name/li/liboauth/package.nix index 12552d6e4c03..12838f1bd4c2 100644 --- a/pkgs/by-name/li/liboauth/package.nix +++ b/pkgs/by-name/li/liboauth/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { --replace "-lnss3" "-L${nss.out}/lib -lnss3" ''; - meta = with lib; { - platforms = platforms.all; + meta = { + platforms = lib.platforms.all; description = "C library implementing the OAuth secure authentication protocol"; homepage = "http://liboauth.sourceforge.net/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/li/libodb-sqlite/package.nix b/pkgs/by-name/li/libodb-sqlite/package.nix index 851ff3cb6629..0d7816756778 100644 --- a/pkgs/by-name/li/libodb-sqlite/package.nix +++ b/pkgs/by-name/li/libodb-sqlite/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "SQLite ODB runtime library"; longDescription = '' ODB is an object-relational mapping (ORM) system for C++. It provides @@ -56,8 +56,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.codesynthesis.com/products/odb/"; changelog = "https://git.codesynthesis.com/cgit/odb/libodb-sqlite/tree/NEWS"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libodb/package.nix b/pkgs/by-name/li/libodb/package.nix index 3ec508b9d11e..c5641b8c31e5 100644 --- a/pkgs/by-name/li/libodb/package.nix +++ b/pkgs/by-name/li/libodb/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Common ODB runtime library"; longDescription = '' ODB is an object-relational mapping (ORM) system for C++. It provides @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.codesynthesis.com/products/odb/"; changelog = "https://git.codesynthesis.com/cgit/odb/libodb/tree/NEWS"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libodfgen/package.nix b/pkgs/by-name/li/libodfgen/package.nix index efaf663c9322..cd5f492fdc91 100644 --- a/pkgs/by-name/li/libodfgen/package.nix +++ b/pkgs/by-name/li/libodfgen/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { librevenge ]; - meta = with lib; { + meta = { description = "Base library for generating ODF documents"; - license = licenses.mpl20; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libofa/package.nix b/pkgs/by-name/li/libofa/package.nix index 242eacf9bd71..e596633e0032 100644 --- a/pkgs/by-name/li/libofa/package.nix +++ b/pkgs/by-name/li/libofa/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { fftw ]; - meta = with lib; { + meta = { homepage = "https://code.google.com/archive/p/musicip-libofa/"; description = "Library Open Fingerprint Architecture"; longDescription = '' LibOFA (Library Open Fingerprint Architecture) is an open-source audio fingerprint created and provided by MusicIP''; - platforms = platforms.linux; - license = licenses.gpl2; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/li/liboggz/package.nix b/pkgs/by-name/li/liboggz/package.nix index d2b5d4905686..8b7193c22000 100644 --- a/pkgs/by-name/li/liboggz/package.nix +++ b/pkgs/by-name/li/liboggz/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { homepage = "https://xiph.org/oggz/"; description = "C library and tools for manipulating with Ogg files and streams"; longDescription = '' @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { interleaving data container developed by Monty at Xiph.Org, originally to support the Ogg Vorbis audio format but now used for many free codecs including Dirac, FLAC, Speex and Theora.''; - platforms = platforms.unix; - license = licenses.bsd3; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/liboil/package.nix b/pkgs/by-name/li/liboil/package.nix index f9f9cdc5ea93..29270d59eba2 100644 --- a/pkgs/by-name/li/liboil/package.nix +++ b/pkgs/by-name/li/liboil/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { # fixes a cast in inline asm: easier than patching buildFlags = lib.optional stdenv.hostPlatform.isDarwin "CFLAGS=-fheinous-gnu-extensions"; - meta = with lib; { + meta = { description = "Library of simple functions that are optimized for various CPUs"; mainProgram = "oil-bugreport"; homepage = "https://liboil.freedesktop.org"; - license = licenses.bsd2; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libomemo-c/package.nix b/pkgs/by-name/li/libomemo-c/package.nix index 3d9a9da507d0..1d7c8e442015 100644 --- a/pkgs/by-name/li/libomemo-c/package.nix +++ b/pkgs/by-name/li/libomemo-c/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { "-Dtests=false" ]; - meta = with lib; { + meta = { description = "Fork of libsignal-protocol-c adding support for OMEMO XEP-0384 0.5.0+"; homepage = "https://github.com/dino/libomemo-c"; - license = licenses.gpl3Only; - maintainers = [ maintainers.astro ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.astro ]; }; } diff --git a/pkgs/by-name/li/libomxil-bellagio/package.nix b/pkgs/by-name/li/libomxil-bellagio/package.nix index 7b87b9122284..6b00f6f79c8b 100644 --- a/pkgs/by-name/li/libomxil-bellagio/package.nix +++ b/pkgs/by-name/li/libomxil-bellagio/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { in "-Wno-error=absolute-value -Wno-error=enum-conversion -Wno-error=logical-not-parentheses -Wno-error=non-literal-null-conversion${lib.optionalString isLLVM17 " -Wno-error=unused-but-set-variable"}"; - meta = with lib; { + meta = { homepage = "https://omxil.sourceforge.net/"; description = "Opensource implementation of the Khronos OpenMAX Integration Layer API to access multimedia components"; mainProgram = "omxregister-bellagio"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libopenaptx/package.nix b/pkgs/by-name/li/libopenaptx/package.nix index 9f9d7d4f8308..61c2c092c524 100644 --- a/pkgs/by-name/li/libopenaptx/package.nix +++ b/pkgs/by-name/li/libopenaptx/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Audio Processing Technology codec (aptX)"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/pali/libopenaptx"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libopenmpt-modplug/package.nix b/pkgs/by-name/li/libopenmpt-modplug/package.nix index 4c7a9bf49e21..c3191eb7b0a9 100644 --- a/pkgs/by-name/li/libopenmpt-modplug/package.nix +++ b/pkgs/by-name/li/libopenmpt-modplug/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { "--enable-libmodplug" ]; - meta = with lib; { + meta = { description = "Libmodplug emulation layer based on libopenmpt"; homepage = "https://lib.openmpt.org/libopenmpt/"; - license = licenses.bsd3; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libopenmpt/package.nix b/pkgs/by-name/li/libopenmpt/package.nix index 599b70009c17..23a5ea99f42e 100644 --- a/pkgs/by-name/li/libopenmpt/package.nix +++ b/pkgs/by-name/li/libopenmpt/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Cross-platform C++ and C library to decode tracked music files into a raw PCM audio stream"; mainProgram = "openmpt123"; longDescription = '' @@ -70,8 +70,8 @@ stdenv.mkDerivation rec { libopenmpt is based on the player code of the OpenMPT project. ''; homepage = "https://lib.openmpt.org/libopenmpt/"; - license = licenses.bsd3; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libopenraw/package.nix b/pkgs/by-name/li/libopenraw/package.nix index 5bf344a7f43b..f1b3609e79eb 100644 --- a/pkgs/by-name/li/libopenraw/package.nix +++ b/pkgs/by-name/li/libopenraw/package.nix @@ -44,14 +44,14 @@ stdenv.mkDerivation rec { "--with-boost=${lib.getDev boost}" ]; - meta = with lib; { + meta = { description = "RAW camerafile decoding library"; homepage = "https://libopenraw.freedesktop.org"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = [ maintainers.struan ]; + maintainers = [ lib.maintainers.struan ]; }; } diff --git a/pkgs/by-name/li/libopensmtpd/package.nix b/pkgs/by-name/li/libopensmtpd/package.nix index b4229e69ba91..ff9556304eb1 100644 --- a/pkgs/by-name/li/libopensmtpd/package.nix +++ b/pkgs/by-name/li/libopensmtpd/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { "LOCALBASE=" ]; - meta = with lib; { + meta = { description = "Library for creating OpenSMTPD filters"; homepage = "http://imperialat.at/dev/libopensmtpd/"; - license = licenses.isc; - maintainers = with maintainers; [ malte-v ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ malte-v ]; }; } diff --git a/pkgs/by-name/li/libopusenc/package.nix b/pkgs/by-name/li/libopusenc/package.nix index 0c5ee795ad62..973ca7000d35 100644 --- a/pkgs/by-name/li/libopusenc/package.nix +++ b/pkgs/by-name/li/libopusenc/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libopus ]; - meta = with lib; { + meta = { description = "Library for encoding .opus audio files and live streams"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://www.opus-codec.org/"; - platforms = platforms.unix; - maintainers = with maintainers; [ pmiddend ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pmiddend ]; }; } diff --git a/pkgs/by-name/li/liborcus/package.nix b/pkgs/by-name/li/liborcus/package.nix index 3285bc1a3248..f9e5a27b7ddc 100644 --- a/pkgs/by-name/li/liborcus/package.nix +++ b/pkgs/by-name/li/liborcus/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; enableParallelChecking = true; - meta = with lib; { + meta = { description = "Collection of parsers and import filters for spreadsheet documents"; homepage = "https://gitlab.com/orcus/orcus"; changelog = "https://gitlab.com/orcus/orcus/-/blob/${src.rev}/CHANGELOG"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libosmo-netif/package.nix b/pkgs/by-name/li/libosmo-netif/package.nix index 7142f2e5c93a..cd57f4c0ea68 100644 --- a/pkgs/by-name/li/libosmo-netif/package.nix +++ b/pkgs/by-name/li/libosmo-netif/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Osmocom network / socket interface library"; homepage = "https://osmocom.org/projects/libosmo-netif/wiki"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ markuskowa ]; }; diff --git a/pkgs/by-name/li/libosmo-sigtran/package.nix b/pkgs/by-name/li/libosmo-sigtran/package.nix index 0e661a183f4e..1d2555ed4e7b 100644 --- a/pkgs/by-name/li/libosmo-sigtran/package.nix +++ b/pkgs/by-name/li/libosmo-sigtran/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "SCCP + SIGTRAN (SUA/M3UA) libraries as well as OsmoSTP"; mainProgram = "osmo-stp"; homepage = "https://osmocom.org/projects/libosmo-sccp"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ markuskowa ]; }; diff --git a/pkgs/by-name/li/libosmoabis/package.nix b/pkgs/by-name/li/libosmoabis/package.nix index 376ea6a18a69..067357f8a895 100644 --- a/pkgs/by-name/li/libosmoabis/package.nix +++ b/pkgs/by-name/li/libosmoabis/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Osmocom Abis interface library"; homepage = "https://github.com/osmocom/libosmo-abis"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ markuskowa ]; }; diff --git a/pkgs/by-name/li/libosmocore/package.nix b/pkgs/by-name/li/libosmocore/package.nix index 334e153a7826..b41743066af3 100644 --- a/pkgs/by-name/li/libosmocore/package.nix +++ b/pkgs/by-name/li/libosmocore/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Set of Osmocom core libraries"; homepage = "https://github.com/osmocom/libosmocore"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mog ]; }; diff --git a/pkgs/by-name/li/libossp_uuid/package.nix b/pkgs/by-name/li/libossp_uuid/package.nix index a0ed6e50b467..058b709ea80e 100644 --- a/pkgs/by-name/li/libossp_uuid/package.nix +++ b/pkgs/by-name/li/libossp_uuid/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { patches = [ ./shtool.patch ]; - meta = with lib; { + meta = { homepage = "http://www.ossp.org/pkg/lib/uuid/"; description = "OSSP uuid ISO-C and C++ shared library"; longDescription = '' @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { short lifetime and to reliably identifying very persistent objects across a network. ''; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libotr/package.nix b/pkgs/by-name/li/libotr/package.nix index 8a668e049596..0e605813e6df 100644 --- a/pkgs/by-name/li/libotr/package.nix +++ b/pkgs/by-name/li/libotr/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { ]; propagatedBuildInputs = [ libgcrypt ]; - meta = with lib; { + meta = { homepage = "http://www.cypherpunks.ca/otr/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; description = "Library for Off-The-Record Messaging"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libow/package.nix b/pkgs/by-name/li/libow/package.nix index b8b86b0321b3..090733a6480c 100644 --- a/pkgs/by-name/li/libow/package.nix +++ b/pkgs/by-name/li/libow/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { "--disable-owexternal" ]; - meta = with lib; { + meta = { description = "1-Wire File System full library"; homepage = "https://owfs.org/"; - license = licenses.gpl2; - maintainers = with maintainers; [ disserman ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ disserman ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libowfat/package.nix b/pkgs/by-name/li/libowfat/package.nix index 23ce6cfb41bb..29095b5d71fa 100644 --- a/pkgs/by-name/li/libowfat/package.nix +++ b/pkgs/by-name/li/libowfat/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "GPL reimplementation of libdjb"; homepage = "https://www.fefe.de/libowfat/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; # build tool "json" is built for the host platform broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; }; diff --git a/pkgs/by-name/li/libp11/package.nix b/pkgs/by-name/li/libp11/package.nix index 932106c7f3bd..fa3f23959744 100644 --- a/pkgs/by-name/li/libp11/package.nix +++ b/pkgs/by-name/li/libp11/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { passthru = { inherit openssl; }; - meta = with lib; { + meta = { description = "Small layer on top of PKCS#11 API to make PKCS#11 implementations easier"; homepage = "https://github.com/OpenSC/libp11"; - license = licenses.lgpl21Plus; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libpam-wrapper/package.nix b/pkgs/by-name/li/libpam-wrapper/package.nix index 0dba2ed32539..692d86ffa196 100644 --- a/pkgs/by-name/li/libpam-wrapper/package.nix +++ b/pkgs/by-name/li/libpam-wrapper/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { # We must use linux-pam, using openpam will result in broken fprintd. buildInputs = [ linux-pam ]; - meta = with lib; { + meta = { description = "Wrapper for testing PAM modules"; homepage = "https://cwrap.org/pam_wrapper.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libpanel/package.nix b/pkgs/by-name/li/libpanel/package.nix index 9cf2460f3f25..f34f7d0f140d 100644 --- a/pkgs/by-name/li/libpanel/package.nix +++ b/pkgs/by-name/li/libpanel/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Dock/panel library for GTK 4"; mainProgram = "libpanel-example"; homepage = "https://gitlab.gnome.org/GNOME/libpanel"; - license = licenses.lgpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libpcap/package.nix b/pkgs/by-name/li/libpcap/package.nix index 4936b39c8833..57304a6e3951 100644 --- a/pkgs/by-name/li/libpcap/package.nix +++ b/pkgs/by-name/li/libpcap/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation rec { haskell-pcap = haskellPackages.pcap; }; - meta = with lib; { + meta = { homepage = "https://www.tcpdump.org"; description = "Packet Capture Library"; mainProgram = "pcap-config"; - platforms = platforms.unix; - maintainers = with maintainers; [ fpletz ]; - license = licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fpletz ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/libpfm/package.nix b/pkgs/by-name/li/libpfm/package.nix index b564b7ebebb4..87dcac45923c 100644 --- a/pkgs/by-name/li/libpfm/package.nix +++ b/pkgs/by-name/li/libpfm/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = lib.optional stdenv.hostPlatform.isMinGW windows.libgnurx; - meta = with lib; { + meta = { description = "Helper library to program the performance monitoring events"; longDescription = '' This package provides a library, called libpfm4 which is used to @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { events such as those provided by the Performance Monitoring Unit (PMU) of modern processors. ''; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ pierron t4ccer ]; - platforms = platforms.linux ++ platforms.windows; + platforms = lib.platforms.linux ++ lib.platforms.windows; }; }) diff --git a/pkgs/by-name/li/libphonenumber/package.nix b/pkgs/by-name/li/libphonenumber/package.nix index c1742c1c3bf1..a9aa13b05056 100644 --- a/pkgs/by-name/li/libphonenumber/package.nix +++ b/pkgs/by-name/li/libphonenumber/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "PROTOC_BIN" (lib.getExe buildPackages.protobuf)) ]; - meta = with lib; { + meta = { changelog = "https://github.com/google/libphonenumber/blob/${finalAttrs.src.rev}/release_notes.txt"; description = "Google's i18n library for parsing and using phone numbers"; homepage = "https://github.com/google/libphonenumber"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ illegalprime wegank ]; diff --git a/pkgs/by-name/li/libpipeline/package.nix b/pkgs/by-name/li/libpipeline/package.nix index 3ae4568451f8..af4d705853fc 100644 --- a/pkgs/by-name/li/libpipeline/package.nix +++ b/pkgs/by-name/li/libpipeline/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { # https://git.savannah.gnu.org/cgit/config.git/commit/?id=e4786449e1c26716e3f9ea182caf472e4dbc96e0 nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ]; - meta = with lib; { + meta = { homepage = "http://libpipeline.nongnu.org"; description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way"; - platforms = platforms.unix; - license = licenses.gpl3; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/li/libpisp/package.nix b/pkgs/by-name/li/libpisp/package.nix index d7aa73b00722..b0d44498a5c1 100644 --- a/pkgs/by-name/li/libpisp/package.nix +++ b/pkgs/by-name/li/libpisp/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation (finalAttrs: { nlohmann_json ]; - meta = with lib; { + meta = { homepage = "https://github.com/raspberrypi/libpisp"; description = "Helper library to generate run-time configuration for the Raspberry Pi ISP (PiSP), consisting of the Frontend and Backend hardware components"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libplist/package.nix b/pkgs/by-name/li/libplist/package.nix index c8e553ef514e..78a7d466bade 100644 --- a/pkgs/by-name/li/libplist/package.nix +++ b/pkgs/by-name/li/libplist/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { moveToOutput "lib/${python3.libPrefix}" "$py" ''; - meta = with lib; { + meta = { description = "Library to handle Apple Property List format in binary or XML"; homepage = "https://github.com/libimobiledevice/libplist"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "plistutil"; }; } diff --git a/pkgs/by-name/li/libpointmatcher/package.nix b/pkgs/by-name/li/libpointmatcher/package.nix index 8b19232f1fe7..8ffbb9263678 100644 --- a/pkgs/by-name/li/libpointmatcher/package.nix +++ b/pkgs/by-name/li/libpointmatcher/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "\"Iterative Closest Point\" library for 2-D/3-D mapping in robotic"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ cryptix ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cryptix ]; }; } diff --git a/pkgs/by-name/li/libpoly/package.nix b/pkgs/by-name/li/libpoly/package.nix index 108d69d55ee2..d953ed54cdfd 100644 --- a/pkgs/by-name/li/libpoly/package.nix +++ b/pkgs/by-name/li/libpoly/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://github.com/SRI-CSL/libpoly"; description = "C library for manipulating polynomials"; - license = licenses.lgpl3; - platforms = platforms.all; + license = lib.licenses.lgpl3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libpostal/package.nix b/pkgs/by-name/li/libpostal/package.nix index 517960dff51e..0e930a08ba56 100644 --- a/pkgs/by-name/li/libpostal/package.nix +++ b/pkgs/by-name/li/libpostal/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { ''; doCheck = withData; - meta = with lib; { + meta = { description = "C library for parsing/normalizing street addresses around the world. Powered by statistical NLP and open geo data"; homepage = "https://github.com/openvenues/libpostal"; - license = licenses.mit; - maintainers = [ maintainers.Thra11 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.Thra11 ]; mainProgram = "libpostal_data"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libproxy/package.nix b/pkgs/by-name/li/libproxy/package.nix index f0f9985a85a3..8c641d3770b9 100644 --- a/pkgs/by-name/li/libproxy/package.nix +++ b/pkgs/by-name/li/libproxy/package.nix @@ -128,11 +128,11 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Library that provides automatic proxy configuration management"; homepage = "https://libproxy.github.io/libproxy/"; - license = licenses.lgpl21Plus; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; badPlatforms = [ # Mandatory libpxbackend-1.0 shared library. lib.systems.inspect.platformPatterns.isStatic diff --git a/pkgs/by-name/li/libpsm2/package.nix b/pkgs/by-name/li/libpsm2/package.nix index 60eb292909c8..28ac598c8ff1 100644 --- a/pkgs/by-name/li/libpsm2/package.nix +++ b/pkgs/by-name/li/libpsm2/package.nix @@ -50,15 +50,15 @@ stdenv.mkDerivation rec { rmdir $out/usr ''; - meta = with lib; { + meta = { homepage = "https://github.com/intel/opa-psm2"; description = "PSM2 library supports a number of fabric media and stacks"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only bsd3 ]; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.bzizou ]; + maintainers = [ lib.maintainers.bzizou ]; # uses __off64_t, srand48_r, lrand48_r, drand48_r broken = stdenv.hostPlatform.isMusl; }; diff --git a/pkgs/by-name/li/libpst/package.nix b/pkgs/by-name/li/libpst/package.nix index aa52e2daa378..e8f4837dc1d1 100644 --- a/pkgs/by-name/li/libpst/package.nix +++ b/pkgs/by-name/li/libpst/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://www.five-ten-sg.com/libpst/"; description = "Library to read PST (MS Outlook Personal Folders) files"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libptytty/package.nix b/pkgs/by-name/li/libptytty/package.nix index e9da99ff565d..c92f646f589b 100644 --- a/pkgs/by-name/li/libptytty/package.nix +++ b/pkgs/by-name/li/libptytty/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { "-DLASTLOG_SUPPORT=OFF" ]; - meta = with lib; { + meta = { description = "OS independent and secure pty/tty and utmp/wtmp/lastlog"; homepage = "http://dist.schmorp.de/libptytty"; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.unix; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2; # pkgsMusl.pkgsStatic errors as: # ln: failed to create symbolic link './include': File exists broken = isStatic && isMusl; diff --git a/pkgs/by-name/li/libpwquality/package.nix b/pkgs/by-name/li/libpwquality/package.nix index 6cb79b823a18..139b51582094 100644 --- a/pkgs/by-name/li/libpwquality/package.nix +++ b/pkgs/by-name/li/libpwquality/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { # leave for now to avoid rebuilds on !enablePython before 24.11 fully lands [ "--disable-python-bindings" ]; - meta = with lib; { + meta = { homepage = "https://github.com/libpwquality/libpwquality"; description = "Password quality checking and random password generation library"; longDescription = '' @@ -97,12 +97,12 @@ stdenv.mkDerivation rec { function and PAM module that can be used instead of pam_cracklib. The module supports all the options of pam_cracklib. ''; - license = with licenses; [ + license = with lib.licenses; [ bsd3 # or gpl2Plus ]; - maintainers = with maintainers; [ jk ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jk ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libqb/package.nix b/pkgs/by-name/li/libqb/package.nix index 07c42ad714c4..0badad4cc9eb 100644 --- a/pkgs/by-name/li/libqb/package.nix +++ b/pkgs/by-name/li/libqb/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { sed -i '/# --enable-new-dtags:/,/--enable-new-dtags is required/ d' configure.ac ''; - meta = with lib; { + meta = { homepage = "https://github.com/clusterlabs/libqb"; description = "Library providing high performance logging, tracing, ipc, and poll"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libqrtr-glib/package.nix b/pkgs/by-name/li/libqrtr-glib/package.nix index 887ffbac429e..c1c98aeca17d 100644 --- a/pkgs/by-name/li/libqrtr-glib/package.nix +++ b/pkgs/by-name/li/libqrtr-glib/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { glib ]; - meta = with lib; { + meta = { homepage = "https://gitlab.freedesktop.org/mobile-broadband/libqrtr-glib"; description = "Qualcomm IPC Router protocol helper library"; - teams = [ teams.freedesktop ]; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + teams = [ lib.teams.freedesktop ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2Plus; }; } diff --git a/pkgs/by-name/li/libraqm/package.nix b/pkgs/by-name/li/libraqm/package.nix index 7c5f35caa2d6..fe394696c04e 100644 --- a/pkgs/by-name/li/libraqm/package.nix +++ b/pkgs/by-name/li/libraqm/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Library for complex text layout"; homepage = "https://github.com/HOST-Oman/libraqm"; - license = licenses.mit; - maintainers = with maintainers; [ sifmelcara ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sifmelcara ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libraspberrypi/package.nix b/pkgs/by-name/li/libraspberrypi/package.nix index 636126e9d986..0e913d939fc8 100644 --- a/pkgs/by-name/li/libraspberrypi/package.nix +++ b/pkgs/by-name/li/libraspberrypi/package.nix @@ -30,17 +30,17 @@ stdenv.mkDerivation { (lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.10") ]; - meta = with lib; { + meta = { description = "Userland tools & libraries for interfacing with Raspberry Pi hardware"; homepage = "https://github.com/raspberrypi/userland"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dezgeg tkerber ]; diff --git a/pkgs/by-name/li/librasterlite2/package.nix b/pkgs/by-name/li/librasterlite2/package.nix index 290a22aabc55..ee54ea5c6807 100644 --- a/pkgs/by-name/li/librasterlite2/package.nix +++ b/pkgs/by-name/li/librasterlite2/package.nix @@ -81,16 +81,16 @@ stdenv.mkDerivation rec { # - check_sql_stmt doCheck = false; - meta = with lib; { + meta = { description = "Advanced library supporting raster handling methods"; homepage = "https://www.gaia-gis.it/fossil/librasterlite2"; # They allow any of these - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus mpl11 ]; - platforms = platforms.unix; - teams = [ teams.geospatial ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/by-name/li/libraw1394/package.nix b/pkgs/by-name/li/libraw1394/package.nix index 628d10710e0f..205c15950d45 100644 --- a/pkgs/by-name/li/libraw1394/package.nix +++ b/pkgs/by-name/li/libraw1394/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "0z5md84941ky5l7afayx2z6j0sk0mildxbjajq6niznd44ky7i6x"; }; - meta = with lib; { + meta = { description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface"; homepage = "https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/librda/package.nix b/pkgs/by-name/li/librda/package.nix index 8eb42735a93f..33ba3add27b5 100644 --- a/pkgs/by-name/li/librda/package.nix +++ b/pkgs/by-name/li/librda/package.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Remote Desktop Awareness Shared Library"; homepage = "https://github.com/ArcticaProject/librda"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "rdacheck"; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.linux; pkgConfigModules = [ "rda" ]; diff --git a/pkgs/by-name/li/libre-baskerville/package.nix b/pkgs/by-name/li/libre-baskerville/package.nix index 0cefcbc1c56b..c4ac0287c394 100644 --- a/pkgs/by-name/li/libre-baskerville/package.nix +++ b/pkgs/by-name/li/libre-baskerville/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Webfont family optimized for body text"; longDescription = '' Libre Baskerville is a webfont family optimized for body text. It's Based @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation rec { screen. ''; homepage = "http://www.impallari.com/projects/overview/libre-baskerville"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libre-bodoni/package.nix b/pkgs/by-name/li/libre-bodoni/package.nix index 4b58f7383ff1..dfe7cc5c3491 100644 --- a/pkgs/by-name/li/libre-bodoni/package.nix +++ b/pkgs/by-name/li/libre-bodoni/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Bodoni fonts adapted for today's web requirements"; longDescription = '' The Libre Bodoni fonts are based on the 19th century Morris Fuller @@ -38,8 +38,8 @@ stdenvNoCC.mkDerivation rec { Bold Italic. ''; homepage = "https://github.com/impallari/Libre-Bodoni"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libre-caslon/package.nix b/pkgs/by-name/li/libre-caslon/package.nix index 9637cdd0be37..18ad5a292589 100644 --- a/pkgs/by-name/li/libre-caslon/package.nix +++ b/pkgs/by-name/li/libre-caslon/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHash = "05aajwny99yqzn1nnq1blx6h7rl54x056y12hyawfbigkzxhscns"; - meta = with lib; { + meta = { description = "Caslon fonts based on hand-lettered American Caslons of 1960s"; homepage = "http://www.impallari.com/librecaslon"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libre-franklin/package.nix b/pkgs/by-name/li/libre-franklin/package.nix index 662231984d97..876d8e67b36a 100644 --- a/pkgs/by-name/li/libre-franklin/package.nix +++ b/pkgs/by-name/li/libre-franklin/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Reinterpretation and expansion based on the 1912 Morris Fuller Benton’s classic"; homepage = "https://github.com/impallari/Libre-Franklin"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/librearp-lv2/package.nix b/pkgs/by-name/li/librearp-lv2/package.nix index 0d30ff5115ab..c1ee31ca9d1c 100644 --- a/pkgs/by-name/li/librearp-lv2/package.nix +++ b/pkgs/by-name/li/librearp-lv2/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation (finalAttrs: { cp -r LV2/LibreArp.lv2 $out/lib/lv2 ''; - meta = with lib; { + meta = { description = "Pattern-based arpeggio generator plugin"; homepage = "https://librearp.gitlab.io/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ magnetophon ]; + maintainers = with lib.maintainers; [ magnetophon ]; }; }) diff --git a/pkgs/by-name/li/librearp/package.nix b/pkgs/by-name/li/librearp/package.nix index 491ea9d1f3fb..72f167fbe727 100644 --- a/pkgs/by-name/li/librearp/package.nix +++ b/pkgs/by-name/li/librearp/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation (finalAttrs: { cp -r VST3/LibreArp.vst3 $out/lib/vst3 ''; - meta = with lib; { + meta = { description = "Pattern-based arpeggio generator plugin"; homepage = "https://librearp.gitlab.io/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ magnetophon ]; + maintainers = with lib.maintainers; [ magnetophon ]; }; }) diff --git a/pkgs/by-name/li/libredirect/package.nix b/pkgs/by-name/li/libredirect/package.nix index fe76b3d1f2c8..59e98b5eca65 100644 --- a/pkgs/by-name/li/libredirect/package.nix +++ b/pkgs/by-name/li/libredirect/package.nix @@ -128,8 +128,8 @@ else ) ''; - meta = with lib; { - platforms = platforms.unix; + meta = { + platforms = lib.platforms.unix; description = "LD_PRELOAD library to intercept and rewrite the paths in glibc calls"; longDescription = '' libredirect is an LD_PRELOAD library to intercept and rewrite the paths in diff --git a/pkgs/by-name/li/libredwg/package.nix b/pkgs/by-name/li/libredwg/package.nix index 8e4de639d490..121508c79ade 100644 --- a/pkgs/by-name/li/libredwg/package.nix +++ b/pkgs/by-name/li/libredwg/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation rec { libxml2.dev ]; - meta = with lib; { + meta = { description = "Free implementation of the DWG file format"; homepage = "https://savannah.gnu.org/projects/libredwg/"; - maintainers = with maintainers; [ tweber ]; - license = licenses.gpl3Plus; - platforms = platforms.all; + maintainers = with lib.maintainers; [ tweber ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/librelp/package.nix b/pkgs/by-name/li/librelp/package.nix index 5c4b6eeb2822..889e1549bbc5 100644 --- a/pkgs/by-name/li/librelp/package.nix +++ b/pkgs/by-name/li/librelp/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "Reliable logging library"; homepage = "https://www.librelp.com/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/librenms/package.nix b/pkgs/by-name/li/librenms/package.nix index c0f33c267998..b64650b23675 100644 --- a/pkgs/by-name/li/librenms/package.nix +++ b/pkgs/by-name/li/librenms/package.nix @@ -123,12 +123,12 @@ phpPackage.buildComposerProject2 rec { tests.librenms = nixosTests.librenms; }; - meta = with lib; { + meta = { description = "Auto-discovering PHP/MySQL/SNMP based network monitoring"; homepage = "https://www.librenms.org/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ netali ]; - teams = [ teams.wdz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ netali ]; + teams = [ lib.teams.wdz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/librespeed-cli/package.nix b/pkgs/by-name/li/librespeed-cli/package.nix index da6eac10f641..a97c04a1f49a 100644 --- a/pkgs/by-name/li/librespeed-cli/package.nix +++ b/pkgs/by-name/li/librespeed-cli/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { mv $out/bin/speedtest-cli $out/bin/librespeed-cli ''; - meta = with lib; { + meta = { description = "Command line client for LibreSpeed"; homepage = "https://github.com/librespeed/speedtest-cli"; changelog = "https://github.com/librespeed/speedtest-cli/releases/tag/${src.tag}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "librespeed-cli"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/li/libreswan/package.nix b/pkgs/by-name/li/libreswan/package.nix index cee8f4320820..042094cd99ee 100644 --- a/pkgs/by-name/li/libreswan/package.nix +++ b/pkgs/by-name/li/libreswan/package.nix @@ -128,15 +128,15 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) libreswan libreswan-nat; }; - meta = with lib; { + meta = { homepage = "https://libreswan.org"; description = "Free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange"; - platforms = platforms.linux ++ platforms.freebsd; - license = with licenses; [ + platforms = lib.platforms.linux ++ lib.platforms.freebsd; + license = with lib.licenses; [ gpl2Plus mpl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rnhmjoj ]; mainProgram = "ipsec"; diff --git a/pkgs/by-name/li/libretro-core-info/package.nix b/pkgs/by-name/li/libretro-core-info/package.nix index b8b4a8311910..4b5a16706c44 100644 --- a/pkgs/by-name/li/libretro-core-info/package.nix +++ b/pkgs/by-name/li/libretro-core-info/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Libretro's core info files"; homepage = "https://libretro.com"; - license = licenses.mit; - teams = [ teams.libretro ]; - platforms = platforms.all; + license = lib.licenses.mit; + teams = [ lib.teams.libretro ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/librevenge/package.nix b/pkgs/by-name/li/librevenge/package.nix index db56de87c844..2836060d9455 100644 --- a/pkgs/by-name/li/librevenge/package.nix +++ b/pkgs/by-name/li/librevenge/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { sed -i 's,-DLIBREVENGE_BUILD,\0 -DBOOST_ERROR_CODE_HEADER_ONLY,g' src/lib/Makefile.in ''; - meta = with lib; { + meta = { description = "Base library for writing document import filters"; - license = licenses.mpl20; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/librime/package.nix b/pkgs/by-name/li/librime/package.nix index 00247f4005e8..14016b557d65 100644 --- a/pkgs/by-name/li/librime/package.nix +++ b/pkgs/by-name/li/librime/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { preConfigure = copyPlugins; - meta = with lib; { + meta = { homepage = "https://rime.im/"; description = "Rime Input Method Engine, the core library"; - license = licenses.bsd3; - maintainers = with maintainers; [ vonfry ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vonfry ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/librist/package.nix b/pkgs/by-name/li/librist/package.nix index f1174833ab29..304e80787f50 100644 --- a/pkgs/by-name/li/librist/package.nix +++ b/pkgs/by-name/li/librist/package.nix @@ -40,15 +40,15 @@ stdenv.mkDerivation rec { mbedtls ]; - meta = with lib; { + meta = { description = "Library that can be used to easily add the RIST protocol to your application"; homepage = "https://code.videolan.org/rist/librist"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 mit isc ]; - maintainers = with maintainers; [ raphaelr ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ raphaelr ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libroxml/package.nix b/pkgs/by-name/li/libroxml/package.nix index 68ba8f05c767..6be682e100c2 100644 --- a/pkgs/by-name/li/libroxml/package.nix +++ b/pkgs/by-name/li/libroxml/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "0y0vc9n4rfbimjp28nx4kdfzz08j5xymh5xjy84l9fhfac5z5a0x"; }; - meta = with lib; { + meta = { description = "This library is minimum, easy-to-use, C implementation for xml file parsing"; homepage = "https://www.libroxml.net/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ mpickering ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ mpickering ]; mainProgram = "roxml"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/librseq/package.nix b/pkgs/by-name/li/librseq/package.nix index b0c6670986a1..cd02a353d335 100644 --- a/pkgs/by-name/li/librseq/package.nix +++ b/pkgs/by-name/li/librseq/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { rm -rf $out/share ''; - meta = with lib; { + meta = { description = "Userspace library for the Linux Restartable Sequence API"; homepage = "https://github.com/compudj/librseq"; - license = licenses.lgpl21Only; - platforms = platforms.linux; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/li/librsvg/package.nix b/pkgs/by-name/li/librsvg/package.nix index 4e4b9f000378..8237f92c4c08 100644 --- a/pkgs/by-name/li/librsvg/package.nix +++ b/pkgs/by-name/li/librsvg/package.nix @@ -217,12 +217,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Small library to render SVG images to Cairo surfaces"; homepage = "https://gitlab.gnome.org/GNOME/librsvg"; - license = licenses.lgpl2Plus; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl2Plus; + teams = [ lib.teams.gnome ]; mainProgram = "rsvg-convert"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/librtprocess/package.nix b/pkgs/by-name/li/librtprocess/package.nix index e727bc22ead9..6283c5f97c44 100644 --- a/pkgs/by-name/li/librtprocess/package.nix +++ b/pkgs/by-name/li/librtprocess/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ llvmPackages.openmp ]; - meta = with lib; { + meta = { description = "Highly optimized library for processing RAW images"; homepage = "https://github.com/CarVac/librtprocess"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ returntoreality ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/librttopo/package.nix b/pkgs/by-name/li/librttopo/package.nix index 12ea18a9c3a5..030b3f17ab8c 100644 --- a/pkgs/by-name/li/librttopo/package.nix +++ b/pkgs/by-name/li/librttopo/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "RT Topology Library"; homepage = "https://git.osgeo.org/gitea/rttopo/librttopo"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; - teams = [ teams.geospatial ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + teams = [ lib.teams.geospatial ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/librum/package.nix b/pkgs/by-name/li/librum/package.nix index 5d13804397c4..1f7028e1f845 100644 --- a/pkgs/by-name/li/librum/package.nix +++ b/pkgs/by-name/li/librum/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { qt6.qtwayland ]; - meta = with lib; { + meta = { description = "Application designed to make reading enjoyable and straightforward"; longDescription = '' Librum is an application designed to make reading enjoyable @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { ''; homepage = "https://librumreader.com"; changelog = "https://github.com/Librum-Reader/Librum/releases/tag/${src.rev}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "librum"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aleksana oluceps ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsamplerate/package.nix b/pkgs/by-name/li/libsamplerate/package.nix index 776bd977cbb0..59b9a27d13aa 100644 --- a/pkgs/by-name/li/libsamplerate/package.nix +++ b/pkgs/by-name/li/libsamplerate/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { "out" ]; - meta = with lib; { + meta = { description = "Sample Rate Converter for audio"; homepage = "https://libsndfile.github.io/libsamplerate/"; - license = licenses.bsd2; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.all; # Linker is unhappy with the `.def` file. broken = stdenv.hostPlatform.isMinGW; }; diff --git a/pkgs/by-name/li/libsass/package.nix b/pkgs/by-name/li/libsass/package.nix index 0dd16c7535ed..fab490c41d26 100644 --- a/pkgs/by-name/li/libsass/package.nix +++ b/pkgs/by-name/li/libsass/package.nix @@ -40,15 +40,15 @@ stdenv.mkDerivation (finalAttrs: { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "C/C++ implementation of a Sass compiler"; homepage = "https://github.com/sass/libsass"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ codyopel offline ]; pkgConfigModules = [ "libsass" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libsbml/package.nix b/pkgs/by-name/li/libsbml/package.nix index 08fe4d1e7b90..95486537dec2 100644 --- a/pkgs/by-name/li/libsbml/package.nix +++ b/pkgs/by-name/li/libsbml/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation (attrs: { pythonImportsCheck = [ "libsbml" ]; - meta = with lib; { + meta = { description = "Library for manipulating Systems Biology Markup Language (SBML)"; homepage = "https://github.com/sbmlteam/libsbml"; - license = licenses.lgpl21Only; - maintainers = [ maintainers.kupac ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Only; + maintainers = [ lib.maintainers.kupac ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libscfg/package.nix b/pkgs/by-name/li/libscfg/package.nix index adf08d291a73..5ab969b7f2ef 100644 --- a/pkgs/by-name/li/libscfg/package.nix +++ b/pkgs/by-name/li/libscfg/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://sr.ht/~emersion/libscfg"; description = "Simple configuration file format"; - license = licenses.mit; - maintainers = with maintainers; [ michaeladler ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ michaeladler ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libschrift/package.nix b/pkgs/by-name/li/libschrift/package.nix index d31ae07a4e2f..5d7a2afebb84 100644 --- a/pkgs/by-name/li/libschrift/package.nix +++ b/pkgs/by-name/li/libschrift/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { makeFlags = [ "libschrift.a" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tomolt/libschrift"; description = "Lightweight TrueType font rendering library"; - license = licenses.isc; - platforms = platforms.all; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/by-name/li/libsciter/package.nix b/pkgs/by-name/li/libsciter/package.nix index a5a31a65b4c8..8078be2151d8 100644 --- a/pkgs/by-name/li/libsciter/package.nix +++ b/pkgs/by-name/li/libsciter/package.nix @@ -56,15 +56,15 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://sciter.com"; description = "Embeddable HTML/CSS/JavaScript engine for modern UI development"; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ leixb ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + maintainers = with lib.maintainers; [ leixb ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/li/libscrypt/package.nix b/pkgs/by-name/li/libscrypt/package.nix index 33ed0870466c..c9f0aab010d4 100644 --- a/pkgs/by-name/li/libscrypt/package.nix +++ b/pkgs/by-name/li/libscrypt/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Shared library that implements scrypt() functionality"; homepage = "https://lolware.net/2014/04/29/libscrypt.html"; - license = licenses.bsd2; - maintainers = with maintainers; [ davidak ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ davidak ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libseccomp/package.nix b/pkgs/by-name/li/libseccomp/package.nix index fe66fcb25068..db9ec4511e80 100644 --- a/pkgs/by-name/li/libseccomp/package.nix +++ b/pkgs/by-name/li/libseccomp/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "High level library for the Linux Kernel seccomp filter"; mainProgram = "scmp_sys_resolver"; homepage = "https://github.com/seccomp/libseccomp"; - license = licenses.lgpl21Only; - platforms = platforms.linux; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.linux; badPlatforms = [ "alpha-linux" "m68k-linux" @@ -91,6 +91,6 @@ stdenv.mkDerivation rec { "sparc-linux" "sparc64-linux" ]; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/li/libsegfault/package.nix b/pkgs/by-name/li/libsegfault/package.nix index bcf95e1df5e4..9fb757ccd319 100644 --- a/pkgs/by-name/li/libsegfault/package.nix +++ b/pkgs/by-name/li/libsegfault/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "Implementation of libSegFault.so with Boost.stracktrace"; homepage = "https://github.com/jonathanpoelen/libsegfault"; - license = licenses.asl20; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsepol/package.nix b/pkgs/by-name/li/libsepol/package.nix index f04de97e9949..2fe6be3fa195 100644 --- a/pkgs/by-name/li/libsepol/package.nix +++ b/pkgs/by-name/li/libsepol/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { passthru = { inherit se_url; }; - meta = with lib; { + meta = { description = "SELinux binary policy manipulation library"; homepage = "http://userspace.selinuxproject.org"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ RossComputerGuy numinit ]; diff --git a/pkgs/by-name/li/libserdes/package.nix b/pkgs/by-name/li/libserdes/package.nix index 13dbbe147d6d..e35c3d7a6a60 100644 --- a/pkgs/by-name/li/libserdes/package.nix +++ b/pkgs/by-name/li/libserdes/package.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Schema-based serializer/deserializer C/C++ library with support for Avro and the Confluent Platform Schema Registry"; homepage = "https://github.com/confluentinc/libserdes"; - license = licenses.asl20; - maintainers = with maintainers; [ liff ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ liff ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libshumate/package.nix b/pkgs/by-name/li/libshumate/package.nix index e65a9f14dc52..5ae76ed886d4 100644 --- a/pkgs/by-name/li/libshumate/package.nix +++ b/pkgs/by-name/li/libshumate/package.nix @@ -95,12 +95,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "GTK toolkit providing widgets for embedded maps"; mainProgram = "shumate-demo"; homepage = "https://gitlab.gnome.org/GNOME/libshumate"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libsieve/package.nix b/pkgs/by-name/li/libsieve/package.nix index d922f0ce29a4..a38db2316a9f 100644 --- a/pkgs/by-name/li/libsieve/package.nix +++ b/pkgs/by-name/li/libsieve/package.nix @@ -12,10 +12,10 @@ stdenv.mkDerivation rec { sha256 = "1gllhl9hbmc86dq3k98d4kjs5bwk0p2rlk7ywqj3fjn7jw6mbhcj"; }; - meta = with lib; { + meta = { description = "Interpreter for RFC 3028 Sieve and various extensions"; homepage = "http://sodabrew.com/libsieve/"; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsignal-ffi/package.nix b/pkgs/by-name/li/libsignal-ffi/package.nix index a6aef3914755..a06af2c31f9c 100644 --- a/pkgs/by-name/li/libsignal-ffi/package.nix +++ b/pkgs/by-name/li/libsignal-ffi/package.nix @@ -47,11 +47,11 @@ rustPlatform.buildRustPackage rec { "libsignal-ffi" ]; - meta = with lib; { + meta = { description = "C ABI library which exposes Signal protocol logic"; homepage = "https://github.com/signalapp/libsignal"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ pentane SchweGELBin ]; diff --git a/pkgs/by-name/li/libsignal-protocol-c/package.nix b/pkgs/by-name/li/libsignal-protocol-c/package.nix index 7047e18fd005..861db375c8df 100644 --- a/pkgs/by-name/li/libsignal-protocol-c/package.nix +++ b/pkgs/by-name/li/libsignal-protocol-c/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Signal Protocol C Library"; homepage = "https://github.com/signalapp/libsignal-protocol-c"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libsignon-glib/package.nix b/pkgs/by-name/li/libsignon-glib/package.nix index a646c35e6144..dc50d7888b71 100644 --- a/pkgs/by-name/li/libsignon-glib/package.nix +++ b/pkgs/by-name/li/libsignon-glib/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Library for managing single signon credentials which can be used from GLib applications"; homepage = "https://gitlab.com/accounts-sso/libsignon-glib"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libsigrok/package.nix b/pkgs/by-name/li/libsigrok/package.nix index c934f236c818..88a30b609e2b 100644 --- a/pkgs/by-name/li/libsigrok/package.nix +++ b/pkgs/by-name/li/libsigrok/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Core library of the sigrok signal analysis software suite"; homepage = "https://sigrok.org/"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor vifino ]; diff --git a/pkgs/by-name/li/libsigrokdecode/package.nix b/pkgs/by-name/li/libsigrokdecode/package.nix index c81b18fecc2b..aac1bdfa8ec0 100644 --- a/pkgs/by-name/li/libsigrokdecode/package.nix +++ b/pkgs/by-name/li/libsigrokdecode/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { nativeCheckInputs = [ check ]; doCheck = true; - meta = with lib; { + meta = { description = "Protocol decoding library for the sigrok signal analysis software suite"; homepage = "https://sigrok.org/"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor vifino ]; diff --git a/pkgs/by-name/li/libsixel/package.nix b/pkgs/by-name/li/libsixel/package.nix index 76d028ced1e5..7fc985d72842 100644 --- a/pkgs/by-name/li/libsixel/package.nix +++ b/pkgs/by-name/li/libsixel/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation (finalAttrs: { "-Dpng=disabled" ]; - meta = with lib; { + meta = { description = "SIXEL library for console graphics, and converter programs"; homepage = "https://github.com/libsixel/libsixel"; maintainers = with lib.maintainers; [ hzeller ]; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libslirp/package.nix b/pkgs/by-name/li/libslirp/package.nix index 9411bd2aac33..1f59dc7a767c 100644 --- a/pkgs/by-name/li/libslirp/package.nix +++ b/pkgs/by-name/li/libslirp/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { echo ${version} > .tarball-version ''; - meta = with lib; { + meta = { description = "General purpose TCP-IP emulator"; homepage = "https://gitlab.freedesktop.org/slirp/libslirp"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsmbios/package.nix b/pkgs/by-name/li/libsmbios/package.nix index a878b9d154d6..b00c451f2c1e 100644 --- a/pkgs/by-name/li/libsmbios/package.nix +++ b/pkgs/by-name/li/libsmbios/package.nix @@ -59,10 +59,10 @@ stdenv.mkDerivation rec { patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" "$out/sbin/smbios-sys-info-lite" ''; - meta = with lib; { + meta = { homepage = "https://github.com/dell/libsmbios"; description = "Library to obtain BIOS information"; - license = with licenses; [ + license = with lib.licenses; [ osl21 gpl2Plus ]; diff --git a/pkgs/by-name/li/libsmf/package.nix b/pkgs/by-name/li/libsmf/package.nix index 8c766a1a3eb3..3f28cd6b45ef 100644 --- a/pkgs/by-name/li/libsmf/package.nix +++ b/pkgs/by-name/li/libsmf/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ glib ]; - meta = with lib; { + meta = { description = "C library for reading and writing Standard MIDI Files"; homepage = "https://github.com/stump/libsmf"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "smfsh"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsmi/package.nix b/pkgs/by-name/li/libsmi/package.nix index 1e578eed35a0..2c02693dd7ee 100644 --- a/pkgs/by-name/li/libsmi/package.nix +++ b/pkgs/by-name/li/libsmi/package.nix @@ -15,10 +15,10 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-std=gnu90"; - meta = with lib; { + meta = { description = "Library to Access SMI MIB Information"; homepage = "https://www.ibr.cs.tu-bs.de/projects/libsmi/index.html"; - license = licenses.free; + license = lib.licenses.free; platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/libsodium/package.nix b/pkgs/by-name/li/libsodium/package.nix index 3a594b8609ab..734c84088d33 100644 --- a/pkgs/by-name/li/libsodium/package.nix +++ b/pkgs/by-name/li/libsodium/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Modern and easy-to-use crypto library"; homepage = "https://doc.libsodium.org/"; - license = licenses.isc; - maintainers = with maintainers; [ raskin ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ raskin ]; pkgConfigModules = [ "libsodium" ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libsolv/package.nix b/pkgs/by-name/li/libsolv/package.nix index d8ef8279a364..5424338c08f3 100644 --- a/pkgs/by-name/li/libsolv/package.nix +++ b/pkgs/by-name/li/libsolv/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { ] ++ lib.optional withRpm rpm; - meta = with lib; { + meta = { description = "Free package dependency solver"; homepage = "https://github.com/openSUSE/libsolv"; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libsoundio/package.nix b/pkgs/by-name/li/libsoundio/package.nix index cfc5a6292000..5461a5934c48 100644 --- a/pkgs/by-name/li/libsoundio/package.nix +++ b/pkgs/by-name/li/libsoundio/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-strict-prototypes"; - meta = with lib; { + meta = { description = "Cross platform audio input and output"; homepage = "http://libsound.io/"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.andrewrk ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.andrewrk ]; }; } diff --git a/pkgs/by-name/li/libspatialaudio/package.nix b/pkgs/by-name/li/libspatialaudio/package.nix index d3ff33fb2eab..e19456d5120d 100644 --- a/pkgs/by-name/li/libspatialaudio/package.nix +++ b/pkgs/by-name/li/libspatialaudio/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { --replace '-L${lib.getDev libmysofa}' '-L${lib.getLib libmysofa}' ''; - meta = with lib; { + meta = { description = "Ambisonic encoding / decoding and binauralization library in C++"; homepage = "https://github.com/videolabs/libspatialaudio"; - license = licenses.lgpl21Plus; - platforms = platforms.all; - maintainers = with maintainers; [ krav ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ krav ]; }; } diff --git a/pkgs/by-name/li/libspecbleach/package.nix b/pkgs/by-name/li/libspecbleach/package.nix index 7a6957958b79..1b0eca73d4a5 100644 --- a/pkgs/by-name/li/libspecbleach/package.nix +++ b/pkgs/by-name/li/libspecbleach/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { fftwFloat ]; - meta = with lib; { + meta = { description = "C library for audio noise reduction"; homepage = "https://github.com/lucianodato/libspecbleach"; - license = licenses.lgpl2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libspectrum/package.nix b/pkgs/by-name/li/libspectrum/package.nix index a681b636835b..8cc546a4b0d6 100644 --- a/pkgs/by-name/li/libspectrum/package.nix +++ b/pkgs/by-name/li/libspectrum/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; doCheck = true; - meta = with lib; { + meta = { homepage = "https://fuse-emulator.sourceforge.net/libspectrum.php"; description = "ZX Spectrum input and output support library"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libspf2/package.nix b/pkgs/by-name/li/libspf2/package.nix index 4bc0a87d530e..fc6516722fcd 100644 --- a/pkgs/by-name/li/libspf2/package.nix +++ b/pkgs/by-name/li/libspf2/package.nix @@ -32,16 +32,16 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Implementation of the Sender Policy Framework for SMTP " + "authorization (Helsinki Systems fork)"; homepage = "https://github.com/helsinki-systems/libspf2"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus bsd2 ]; - maintainers = with maintainers; [ euxane ]; - teams = [ teams.helsinki-systems ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ euxane ]; + teams = [ lib.teams.helsinki-systems ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libspiro/package.nix b/pkgs/by-name/li/libspiro/package.nix index e3f37999e53b..636d85d4b4ee 100644 --- a/pkgs/by-name/li/libspiro/package.nix +++ b/pkgs/by-name/li/libspiro/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Library that simplifies the drawing of beautiful curves"; homepage = "https://github.com/fontforge/libspiro"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.erictapen ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.erictapen ]; }; } diff --git a/pkgs/by-name/li/libspnav/package.nix b/pkgs/by-name/li/libspnav/package.nix index e4a523036eed..f7360eadabf2 100644 --- a/pkgs/by-name/li/libspnav/package.nix +++ b/pkgs/by-name/li/libspnav/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { mkdir -p $out/{lib,include} ''; - meta = with lib; { + meta = { homepage = "https://spacenav.sourceforge.net/"; description = "Device driver and SDK for 3Dconnexion 3D input devices"; longDescription = "A free, compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 3D input devices (called 'space navigator', 'space pilot', 'space traveller', etc)"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ sohalt ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sohalt ]; }; } diff --git a/pkgs/by-name/li/libspng/package.nix b/pkgs/by-name/li/libspng/package.nix index 3e8b69041e93..6f20acd4c137 100644 --- a/pkgs/by-name/li/libspng/package.nix +++ b/pkgs/by-name/li/libspng/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Simple, modern libpng alternative"; homepage = "https://libspng.org/"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ humancalico ]; - platforms = platforms.all; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ humancalico ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libssh/package.nix b/pkgs/by-name/li/libssh/package.nix index e479c07add62..f40d7d7e38bf 100644 --- a/pkgs/by-name/li/libssh/package.nix +++ b/pkgs/by-name/li/libssh/package.nix @@ -57,10 +57,10 @@ stdenv.mkDerivation rec { inherit ffmpeg sshping wireshark; }; - meta = with lib; { + meta = { description = "SSH client library"; homepage = "https://libssh.org"; - license = licenses.lgpl2Plus; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libssh2/package.nix b/pkgs/by-name/li/libssh2/package.nix index 0239ca729c6a..eaef9807c897 100644 --- a/pkgs/by-name/li/libssh2/package.nix +++ b/pkgs/by-name/li/libssh2/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { curl = (curl.override { scpSupport = true; }).tests.withCheck; }; - meta = with lib; { + meta = { description = "Client-side C library implementing the SSH2 protocol"; homepage = "https://www.libssh2.org"; - platforms = platforms.all; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + platforms = lib.platforms.all; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/li/libstatgrab/package.nix b/pkgs/by-name/li/libstatgrab/package.nix index f90ba95d3116..68d06322577d 100644 --- a/pkgs/by-name/li/libstatgrab/package.nix +++ b/pkgs/by-name/li/libstatgrab/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { buildInputs = lib.optional withSaidar ncurses; - meta = with lib; { + meta = { homepage = "https://www.i-scream.org/libstatgrab/"; description = "Library that provides cross platforms access to statistics about the running system"; maintainers = [ ]; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libstemmer/package.nix b/pkgs/by-name/li/libstemmer/package.nix index b3bc59115d26..619cd1e2b79f 100644 --- a/pkgs/by-name/li/libstemmer/package.nix +++ b/pkgs/by-name/li/libstemmer/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Snowball Stemming Algorithms"; homepage = "https://snowballstem.org/"; - license = licenses.bsd3; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libstrophe/package.nix b/pkgs/by-name/li/libstrophe/package.nix index 25b10bf1a78e..0f521177883e 100644 --- a/pkgs/by-name/li/libstrophe/package.nix +++ b/pkgs/by-name/li/libstrophe/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Simple, lightweight C library for writing XMPP clients"; longDescription = '' libstrophe is a lightweight XMPP client library written in C. It has @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { ''; homepage = "https://strophe.im/libstrophe/"; changelog = "https://github.com/strophe/libstrophe/blob/${src.rev}/ChangeLog"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ devhell flosse ]; diff --git a/pkgs/by-name/li/libsurvive/package.nix b/pkgs/by-name/li/libsurvive/package.nix index d97f35160dcb..21ab58178fb6 100644 --- a/pkgs/by-name/li/libsurvive/package.nix +++ b/pkgs/by-name/li/libsurvive/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { --replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ ''; - meta = with lib; { + meta = { description = "Open Source Lighthouse Tracking System"; homepage = "https://github.com/cntools/libsurvive"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libsvm/package.nix b/pkgs/by-name/li/libsvm/package.nix index 4653352086fe..3351b4ceed7f 100644 --- a/pkgs/by-name/li/libsvm/package.nix +++ b/pkgs/by-name/li/libsvm/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Library for support vector machines"; homepage = "https://www.csie.ntu.edu.tw/~cjlin/libsvm/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsystemtap/package.nix b/pkgs/by-name/li/libsystemtap/package.nix index f6a981062dec..4fc1b26b34b0 100644 --- a/pkgs/by-name/li/libsystemtap/package.nix +++ b/pkgs/by-name/li/libsystemtap/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Statically defined probes development files"; homepage = "https://sourceware.org/systemtap/"; - license = licenses.bsd3; - platforms = elfutils.meta.platforms or platforms.unix; + license = lib.licenses.bsd3; + platforms = elfutils.meta.platforms or lib.platforms.unix; badPlatforms = elfutils.meta.badPlatforms or [ ]; maintainers = [ lib.maintainers.workflow ]; }; diff --git a/pkgs/by-name/li/libtar/package.nix b/pkgs/by-name/li/libtar/package.nix index 0aab9e7b0db7..42e0f69617f4 100644 --- a/pkgs/by-name/li/libtar/package.nix +++ b/pkgs/by-name/li/libtar/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "C library for manipulating POSIX tar files"; mainProgram = "libtar"; homepage = "https://repo.or.cz/libtar"; - license = licenses.bsd3; - platforms = with platforms; linux ++ darwin; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.bsd3; + platforms = with lib.platforms; linux ++ darwin; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/li/libtas/package.nix b/pkgs/by-name/li/libtas/package.nix index 18c8dfa25b23..f40f06ea4777 100644 --- a/pkgs/by-name/li/libtas/package.nix +++ b/pkgs/by-name/li/libtas/package.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { homepage = "https://clementgallet.github.io/libTAS/"; changelog = "https://github.com/clementgallet/libTAS/blob/${finalAttrs.src.rev}/CHANGELOG.md"; description = "GNU/Linux software to give TAS tools to games"; license = lib.licenses.gpl3Only; - maintainers = with maintainers; [ skyrina ]; + maintainers = with lib.maintainers; [ skyrina ]; mainProgram = "libTAS"; platforms = [ "i686-linux" diff --git a/pkgs/by-name/li/libtermkey/package.nix b/pkgs/by-name/li/libtermkey/package.nix index 4fe2408d80d6..cb1535034a87 100644 --- a/pkgs/by-name/li/libtermkey/package.nix +++ b/pkgs/by-name/li/libtermkey/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Terminal keypress reading library"; homepage = "http://www.leonerd.org.uk/code/libtermkey"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libthai/package.nix b/pkgs/by-name/li/libthai/package.nix index bde18a051985..70a780a4bc2d 100644 --- a/pkgs/by-name/li/libthai/package.nix +++ b/pkgs/by-name/li/libthai/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { installManPage man/man3/*.3 ''; - meta = with lib; { + meta = { homepage = "https://linux.thai.net/projects/libthai/"; description = "Set of Thai language support routines"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ crertel ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ crertel ]; pkgConfigModules = [ "libthai" ]; }; } diff --git a/pkgs/by-name/li/libthreadar/package.nix b/pkgs/by-name/li/libthreadar/package.nix index 080ead869858..3b4a0c1d3d24 100644 --- a/pkgs/by-name/li/libthreadar/package.nix +++ b/pkgs/by-name/li/libthreadar/package.nix @@ -39,15 +39,15 @@ stdenv.mkDerivation rec { rm -r "$out"/share ''; - meta = with lib; { + meta = { homepage = "https://libthreadar.sourceforge.net/"; description = "C++ library that provides several classes to manipulate threads"; longDescription = '' Libthreadar is a C++ library providing a small set of C++ classes to manipulate threads in a very simple and efficient way from your C++ code. ''; - maintainers = with maintainers; [ izorkin ]; - license = licenses.lgpl3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ izorkin ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libticables2/package.nix b/pkgs/by-name/li/libticables2/package.nix index a60b43412282..17fde89dc6d7 100644 --- a/pkgs/by-name/li/libticables2/package.nix +++ b/pkgs/by-name/li/libticables2/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { changelog = "http://lpg.ticalc.org/prj_tilp/news.html"; description = "This library is part of the TiLP framework"; homepage = "http://lpg.ticalc.org/prj_tilp/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ siraben ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/li/libticalcs2/package.nix b/pkgs/by-name/li/libticalcs2/package.nix index a4a085c43d81..7d8e49acfb2d 100644 --- a/pkgs/by-name/li/libticalcs2/package.nix +++ b/pkgs/by-name/li/libticalcs2/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { acl ]; - meta = with lib; { + meta = { changelog = "http://lpg.ticalc.org/prj_tilp/news.html"; description = "This library is part of the TiLP framework"; homepage = "http://lpg.ticalc.org/prj_tilp/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ siraben ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/li/libtickit/package.nix b/pkgs/by-name/li/libtickit/package.nix index b0ae23194ccf..5f2246db9fd4 100644 --- a/pkgs/by-name/li/libtickit/package.nix +++ b/pkgs/by-name/li/libtickit/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "Terminal interface construction kit"; longDescription = '' This library provides an abstracted mechanism for building interactive full-screen terminal @@ -59,8 +59,8 @@ stdenv.mkDerivation { input events. ''; homepage = "https://www.leonerd.org.uk/code/libtickit/"; - license = licenses.mit; - maintainers = with maintainers; [ onemoresuza ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onemoresuza ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libticonv/package.nix b/pkgs/by-name/li/libticonv/package.nix index 8b4db12b9b54..102d5c734336 100644 --- a/pkgs/by-name/li/libticonv/package.nix +++ b/pkgs/by-name/li/libticonv/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { ] ++ lib.optional stdenv.hostPlatform.isDarwin "LDFLAGS=-liconv"; - meta = with lib; { + meta = { changelog = "http://lpg.ticalc.org/prj_tilp/news.html"; description = "This library is part of the TiLP framework"; homepage = "http://lpg.ticalc.org/prj_tilp/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ siraben ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/li/libtiff/package.nix b/pkgs/by-name/li/libtiff/package.nix index a7930a49d2af..3b6ba2345148 100644 --- a/pkgs/by-name/li/libtiff/package.nix +++ b/pkgs/by-name/li/libtiff/package.nix @@ -123,13 +123,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Library and utilities for working with the TIFF image file format"; homepage = "https://libtiff.gitlab.io/libtiff"; changelog = "https://libtiff.gitlab.io/libtiff/releases/v${finalAttrs.version}.html"; - license = licenses.libtiff; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.libtiff; + platforms = lib.platforms.unix ++ lib.platforms.windows; pkgConfigModules = [ "libtiff-4" ]; - teams = [ teams.geospatial ]; + teams = [ lib.teams.geospatial ]; }; }) diff --git a/pkgs/by-name/li/libtifiles2/package.nix b/pkgs/by-name/li/libtifiles2/package.nix index b5a1dbdb5ee5..df0cd5201ccc 100644 --- a/pkgs/by-name/li/libtifiles2/package.nix +++ b/pkgs/by-name/li/libtifiles2/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { libticonv ]; - meta = with lib; { + meta = { changelog = "http://lpg.ticalc.org/prj_tilp/news.html"; description = "This library is part of the TiLP framework"; homepage = "http://lpg.ticalc.org/prj_tilp/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ siraben ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/li/libtirpc/package.nix b/pkgs/by-name/li/libtirpc/package.nix index b20425cebfd8..b0296afa746f 100644 --- a/pkgs/by-name/li/libtirpc/package.nix +++ b/pkgs/by-name/li/libtirpc/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/libtirpc/"; description = "Transport-independent Sun RPC implementation (TI-RPC)"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; maintainers = [ ]; longDescription = '' Currently, NFS commands use the SunRPC routines provided by the diff --git a/pkgs/by-name/li/libtommath/package.nix b/pkgs/by-name/li/libtommath/package.nix index aa9fa53e1aaf..61d1d497ce03 100644 --- a/pkgs/by-name/li/libtommath/package.nix +++ b/pkgs/by-name/li/libtommath/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.libtom.net/LibTomMath/"; description = "Library for integer-based number-theoretic applications"; - license = with licenses; [ + license = with lib.licenses; [ publicDomain wtfpl ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix b/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix index 3521249a6766..000737d70b51 100644 --- a/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix +++ b/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix @@ -91,12 +91,12 @@ stdenv.mkDerivation { "--with-boost-libdir=${boostPython.out}/lib" ]; - meta = with lib; { + meta = { homepage = "https://libtorrent.org/"; description = "C++ BitTorrent implementation focusing on efficiency and scalability"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libtpms/package.nix b/pkgs/by-name/li/libtpms/package.nix index 4d2327bd6fbc..f8169a99f66f 100644 --- a/pkgs/by-name/li/libtpms/package.nix +++ b/pkgs/by-name/li/libtpms/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { "--with-tpm2" ]; - meta = with lib; { + meta = { description = "Library for software emulation of a Trusted Platform Module (TPM 1.2 and TPM 2.0)"; homepage = "https://github.com/stefanberger/libtpms"; - license = licenses.bsd3; - maintainers = [ maintainers.baloo ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.baloo ]; }; } diff --git a/pkgs/by-name/li/libtraceevent/package.nix b/pkgs/by-name/li/libtraceevent/package.nix index 0542f80c25e5..fb595a712243 100644 --- a/pkgs/by-name/li/libtraceevent/package.nix +++ b/pkgs/by-name/li/libtraceevent/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { rev-prefix = "libtraceevent-"; }; - meta = with lib; { + meta = { description = "Linux kernel trace event library"; homepage = "https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/"; - license = licenses.lgpl21Only; - platforms = platforms.linux; - maintainers = with maintainers; [ wentasah ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wentasah ]; }; } diff --git a/pkgs/by-name/li/libtracefs/package.nix b/pkgs/by-name/li/libtracefs/package.nix index d06f703b9e24..b7643f0dfc97 100644 --- a/pkgs/by-name/li/libtracefs/package.nix +++ b/pkgs/by-name/li/libtracefs/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { rev-prefix = "libtracefs-"; }; - meta = with lib; { + meta = { description = "Linux kernel trace file system library"; mainProgram = "sqlhist"; homepage = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/"; - license = licenses.lgpl21Only; - platforms = platforms.linux; - maintainers = with maintainers; [ wentasah ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wentasah ]; }; } diff --git a/pkgs/by-name/li/libtree/package.nix b/pkgs/by-name/li/libtree/package.nix index 423280978086..6ad5681d5ddf 100644 --- a/pkgs/by-name/li/libtree/package.nix +++ b/pkgs/by-name/li/libtree/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Tree ldd with an option to bundle dependencies into a single folder"; mainProgram = "libtree"; homepage = "https://github.com/haampie/libtree"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ prusnak rardiol ]; diff --git a/pkgs/by-name/li/libtsm/package.nix b/pkgs/by-name/li/libtsm/package.nix index df7e70171bec..9e7877e18f15 100644 --- a/pkgs/by-name/li/libtsm/package.nix +++ b/pkgs/by-name/li/libtsm/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { description = "Terminal-emulator State Machine"; homepage = "https://www.freedesktop.org/wiki/Software/kmscon/libtsm/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libu2f-host/package.nix b/pkgs/by-name/li/libu2f-host/package.nix index dcf975eeb935..92fac31daea3 100644 --- a/pkgs/by-name/li/libu2f-host/package.nix +++ b/pkgs/by-name/li/libu2f-host/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "C library and command-line tool that implements the host-side of the U2F protocol"; homepage = "https://developers.yubico.com/libu2f-host"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl21Plus ]; mainProgram = "u2f-host"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libu2f-server/package.nix b/pkgs/by-name/li/libu2f-server/package.nix index cb340a6a0e14..9d88c72e4724 100644 --- a/pkgs/by-name/li/libu2f-server/package.nix +++ b/pkgs/by-name/li/libu2f-server/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { file ]; - meta = with lib; { + meta = { homepage = "https://developers.yubico.com/libu2f-server/"; description = "C library that implements the server-side of the U2F protocol"; mainProgram = "u2f-server"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ philandstuff ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ philandstuff ]; }; } diff --git a/pkgs/by-name/li/libuchardet/package.nix b/pkgs/by-name/li/libuchardet/package.nix index b2645715dced..c392fe8ab878 100644 --- a/pkgs/by-name/li/libuchardet/package.nix +++ b/pkgs/by-name/li/libuchardet/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isi686; # tests fail on i686 - meta = with lib; { + meta = { description = "Mozilla's Universal Charset Detector C/C++ API"; mainProgram = "uchardet"; homepage = "https://www.freedesktop.org/wiki/Software/uchardet/"; - license = licenses.mpl11; + license = lib.licenses.mpl11; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libucl/package.nix b/pkgs/by-name/li/libucl/package.nix index 620b933898b8..689c1cfcbf88 100644 --- a/pkgs/by-name/li/libucl/package.nix +++ b/pkgs/by-name/li/libucl/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { feat: enabled: lib.strings.enableFeature enabled feat ) features; - meta = with lib; { + meta = { description = "Universal configuration library parser"; homepage = "https://github.com/vstakhov/libucl"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ jpotier ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jpotier ]; }; } diff --git a/pkgs/by-name/li/libucontext/package.nix b/pkgs/by-name/li/libucontext/package.nix index e4bfd406a04c..2990643c5164 100644 --- a/pkgs/by-name/li/libucontext/package.nix +++ b/pkgs/by-name/li/libucontext/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/kaniini/libucontext"; description = "ucontext implementation featuring glibc-compatible ABI"; - license = licenses.isc; - platforms = platforms.linux; - teams = [ teams.lix ]; + license = lib.licenses.isc; + platforms = lib.platforms.linux; + teams = [ lib.teams.lix ]; }; } diff --git a/pkgs/by-name/li/libudev0-shim/package.nix b/pkgs/by-name/li/libudev0-shim/package.nix index 012c8436b2a1..75d54769cda0 100644 --- a/pkgs/by-name/li/libudev0-shim/package.nix +++ b/pkgs/by-name/li/libudev0-shim/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { ln -s "$name" "$out/lib/libudev.so.0" ''; - meta = with lib; { + meta = { description = "Shim to preserve libudev.so.0 compatibility"; homepage = "https://github.com/archlinux/libudev0-shim"; - platforms = platforms.linux; - license = licenses.lgpl21; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libudfread/package.nix b/pkgs/by-name/li/libudfread/package.nix index cb42d7372108..0aac862a9be6 100644 --- a/pkgs/by-name/li/libudfread/package.nix +++ b/pkgs/by-name/li/libudfread/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "UDF reader"; homepage = "https://code.videolan.org/videolan/libudfread"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ chkno ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ chkno ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libuecc/package.nix b/pkgs/by-name/li/libuecc/package.nix index becafcf39c36..50b08142bfdd 100644 --- a/pkgs/by-name/li/libuecc/package.nix +++ b/pkgs/by-name/li/libuecc/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Very small Elliptic Curve Cryptography library"; homepage = "https://git.universe-factory.net/libuecc"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/li/libuev/package.nix b/pkgs/by-name/li/libuev/package.nix index 430eb6a0fc21..c2c16b06f725 100644 --- a/pkgs/by-name/li/libuev/package.nix +++ b/pkgs/by-name/li/libuev/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Lightweight event loop library for Linux epoll() family APIs"; homepage = "https://codedocs.xyz/troglobit/libuev/"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ vifino ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ vifino ]; }; } diff --git a/pkgs/by-name/li/libui-ng/package.nix b/pkgs/by-name/li/libui-ng/package.nix index d58d382a9a5a..ea10918f06e0 100644 --- a/pkgs/by-name/li/libui-ng/package.nix +++ b/pkgs/by-name/li/libui-ng/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { tagPrefix = "alpha"; }; - meta = with lib; { + meta = { description = "Portable GUI library for C"; homepage = "https://github.com/libui-ng/libui-ng"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libuiohook/package.nix b/pkgs/by-name/li/libuiohook/package.nix index 16a4ef27ff60..2ae4b266cbdb 100644 --- a/pkgs/by-name/li/libuiohook/package.nix +++ b/pkgs/by-name/li/libuiohook/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { cp ./uiohook_tests $test/share ''; - meta = with lib; { + meta = { description = "C library to provide global keyboard and mouse hooks from userland"; homepage = "https://github.com/kwhat/libuiohook"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ anoa ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ anoa ]; }; passthru.tests.libuiohook = nixosTests.libuiohook; diff --git a/pkgs/by-name/li/libuldaq/package.nix b/pkgs/by-name/li/libuldaq/package.nix index 81c561498b0b..7dcd9d3c4169 100644 --- a/pkgs/by-name/li/libuldaq/package.nix +++ b/pkgs/by-name/li/libuldaq/package.nix @@ -28,15 +28,15 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Library to talk to uldaq devices"; longDescription = '' Library used to communicate with USB data acquisition (DAQ) devices from Measurement Computing ''; homepage = "https://github.com/mccdaq/uldaq"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.simonkampe ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.simonkampe ]; }; } diff --git a/pkgs/by-name/li/libunarr/package.nix b/pkgs/by-name/li/libunarr/package.nix index bb5d2e88092f..f27a5fc36547 100644 --- a/pkgs/by-name/li/libunarr/package.nix +++ b/pkgs/by-name/li/libunarr/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/selmf/unarr"; description = "Lightweight decompression library with support for rar, tar and zip archives"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libunibreak/package.nix b/pkgs/by-name/li/libunibreak/package.nix index a3814f545203..12c8795e30af 100644 --- a/pkgs/by-name/li/libunibreak/package.nix +++ b/pkgs/by-name/li/libunibreak/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/adah1972/libunibreak"; description = "Implementation of line breaking and word breaking algorithms as in the Unicode standard"; - license = licenses.zlib; - platforms = platforms.unix; + license = lib.licenses.zlib; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libunicode/package.nix b/pkgs/by-name/li/libunicode/package.nix index fdf88d026ab2..5ca5a5f77382 100644 --- a/pkgs/by-name/li/libunicode/package.nix +++ b/pkgs/by-name/li/libunicode/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (final: { cmakeFlags = [ "-DLIBUNICODE_UCD_DIR=${ucd-src}" ]; - meta = with lib; { + meta = { description = "Modern C++20 Unicode library"; mainProgram = "unicode-query"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ moni ]; }; }) diff --git a/pkgs/by-name/li/libunity/package.nix b/pkgs/by-name/li/libunity/package.nix index f705ca9f56c0..c00143ae57cd 100644 --- a/pkgs/by-name/li/libunity/package.nix +++ b/pkgs/by-name/li/libunity/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation { "--with-pygi-overrides-dir=${placeholder "py"}/${python3.sitePackages}/gi/overrides" ]; - meta = with lib; { + meta = { description = "Library for instrumenting and integrating with all aspects of the Unity shell"; homepage = "https://launchpad.net/libunity"; - license = licenses.lgpl3; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/liburing/package.nix b/pkgs/by-name/li/liburing/package.nix index 5709adc82624..9fdfe41e9b7a 100644 --- a/pkgs/by-name/li/liburing/package.nix +++ b/pkgs/by-name/li/liburing/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Userspace library for the Linux io_uring API"; homepage = "https://github.com/axboe/liburing"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice nickcao ]; diff --git a/pkgs/by-name/li/libusb1/package.nix b/pkgs/by-name/li/libusb1/package.nix index 102eb5a23804..5fce6ad1c936 100644 --- a/pkgs/by-name/li/libusb1/package.nix +++ b/pkgs/by-name/li/libusb1/package.nix @@ -66,15 +66,15 @@ stdenv.mkDerivation rec { ln -s $out/examples/bin/fxload $out/sbin/fxload ''; - meta = with lib; { + meta = { homepage = "https://libusb.info/"; description = "Cross-platform user-mode USB device library"; longDescription = '' libusb is a cross-platform user-mode library that provides access to USB devices. ''; - platforms = platforms.all; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ prusnak logger ]; diff --git a/pkgs/by-name/li/libusbp/package.nix b/pkgs/by-name/li/libusbp/package.nix index 7e6a921d3aea..75385ce6c991 100644 --- a/pkgs/by-name/li/libusbp/package.nix +++ b/pkgs/by-name/li/libusbp/package.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation (finalAttrs: { udev ]; - meta = with lib; { + meta = { homepage = "https://github.com/pololu/libusbp"; changelog = "https://github.com/pololu/libusbp/blob/${finalAttrs.src.rev}/README.md#version-history"; description = "Pololu USB Library (also known as libusbp)"; longDescription = '' libusbp is a cross-platform C library for accessing USB devices ''; - platforms = platforms.all; - license = licenses.cc-by-sa-30; - maintainers = with maintainers; [ bzizou ]; + platforms = lib.platforms.all; + license = lib.licenses.cc-by-sa-30; + maintainers = with lib.maintainers; [ bzizou ]; }; }) diff --git a/pkgs/by-name/li/libusbsio/package.nix b/pkgs/by-name/li/libusbsio/package.nix index a489fccc59ee..f4b15d5c413b 100644 --- a/pkgs/by-name/li/libusbsio/package.nix +++ b/pkgs/by-name/li/libusbsio/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.nxp.com/design/software/development-software/library-for-windows-macos-and-ubuntu-linux:LIBUSBSIO"; description = "Library for communicating with devices connected via the USB bridge on LPC-Link2 and MCU-Link debug probes on supported NXP microcontroller evaluation boards"; - platforms = platforms.all; - license = licenses.bsd3; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ frogamic sbruder ]; diff --git a/pkgs/by-name/li/libutempter/package.nix b/pkgs/by-name/li/libutempter/package.nix index 6506d1007642..e56b6129c7cd 100644 --- a/pkgs/by-name/li/libutempter/package.nix +++ b/pkgs/by-name/li/libutempter/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { "mandir=\${out}/share/man" ]; - meta = with lib; { + meta = { homepage = "https://github.com/altlinux/libutempter"; description = "Interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files"; longDescription = '' The bundled utempter binary must be able to run as a user belonging to group utmp. On NixOS systems, this can be achieved by creating a setguid wrapper. ''; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = [ maintainers.msteen ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.msteen ]; }; } diff --git a/pkgs/by-name/li/libutp/package.nix b/pkgs/by-name/li/libutp/package.nix index 2673e223b2ed..6b001f011a4b 100644 --- a/pkgs/by-name/li/libutp/package.nix +++ b/pkgs/by-name/li/libutp/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "uTorrent Transport Protocol library"; homepage = "https://github.com/transmission/libutp"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libutp_3_4/package.nix b/pkgs/by-name/li/libutp_3_4/package.nix index 20d966402fb4..4ac2b5a61267 100644 --- a/pkgs/by-name/li/libutp_3_4/package.nix +++ b/pkgs/by-name/li/libutp_3_4/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "uTorrent Transport Protocol library"; mainProgram = "ucat"; homepage = "https://github.com/transmission/libutp"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libuv/package.nix b/pkgs/by-name/li/libuv/package.nix index e39612f62639..b70e9909dca3 100644 --- a/pkgs/by-name/li/libuv/package.nix +++ b/pkgs/by-name/li/libuv/package.nix @@ -196,14 +196,14 @@ stdenv.mkDerivation (finalAttrs: { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Multi-platform support library with a focus on asynchronous I/O"; homepage = "https://libuv.org/"; changelog = "https://github.com/libuv/libuv/blob/v${finalAttrs.version}/ChangeLog"; pkgConfigModules = [ "libuv" ]; maintainers = [ ]; - platforms = platforms.all; - license = with licenses; [ + platforms = lib.platforms.all; + license = with lib.licenses; [ mit isc bsd2 diff --git a/pkgs/by-name/li/libuvc/package.nix b/pkgs/by-name/li/libuvc/package.nix index 720105974359..b188243b05f8 100644 --- a/pkgs/by-name/li/libuvc/package.nix +++ b/pkgs/by-name/li/libuvc/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { buildInputs = [ libusb1 ]; - meta = with lib; { + meta = { homepage = "https://ken.tossell.net/libuvc/"; description = "Cross-platform library for USB video devices"; - platforms = platforms.linux; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ prusnak ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/by-name/li/libva-vdpau-driver/package.nix b/pkgs/by-name/li/libva-vdpau-driver/package.nix index 49f3f92148c8..d4922b65f185 100644 --- a/pkgs/by-name/li/libva-vdpau-driver/package.nix +++ b/pkgs/by-name/li/libva-vdpau-driver/package.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure ''; - meta = with lib; { + meta = { homepage = "https://cgit.freedesktop.org/vaapi/vdpau-driver"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "VDPAU driver for the VAAPI library"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libvarlink/package.nix b/pkgs/by-name/li/libvarlink/package.nix index ac1f4c26fe1a..053f6b84d45c 100644 --- a/pkgs/by-name/li/libvarlink/package.nix +++ b/pkgs/by-name/li/libvarlink/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "C implementation of the Varlink protocol and command line tool"; mainProgram = "varlink"; homepage = "https://github.com/varlink/libvarlink"; - license = licenses.asl20; - maintainers = with maintainers; [ artturin ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ artturin ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libvdpau-va-gl/package.nix b/pkgs/by-name/li/libvdpau-va-gl/package.nix index fbd1a28cb3d7..fd71b4049bdc 100644 --- a/pkgs/by-name/li/libvdpau-va-gl/package.nix +++ b/pkgs/by-name/li/libvdpau-va-gl/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { doCheck = false; # fails. needs DRI access - meta = with lib; { + meta = { homepage = "https://github.com/i-rinat/libvdpau-va-gl"; description = "VDPAU driver with OpenGL/VAAPI backend"; - license = licenses.lgpl3; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; maintainers = [ lib.maintainers.johnrtitor ]; }; } diff --git a/pkgs/by-name/li/libvdpau/package.nix b/pkgs/by-name/li/libvdpau/package.nix index b2f20969e499..7fe2666c81d6 100644 --- a/pkgs/by-name/li/libvdpau/package.nix +++ b/pkgs/by-name/li/libvdpau/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { patchelf $out/lib/libvdpau.so --add-rpath $out/lib ''; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/wiki/Software/VDPAU/"; description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)"; - license = licenses.mit; # expat version - platforms = platforms.unix; - maintainers = [ maintainers.vcunat ]; + license = lib.licenses.mit; # expat version + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.vcunat ]; }; } diff --git a/pkgs/by-name/li/libvdwxc/package.nix b/pkgs/by-name/li/libvdwxc/package.nix index 4703fc9a4a6d..7d9eed9c1741 100644 --- a/pkgs/by-name/li/libvdwxc/package.nix +++ b/pkgs/by-name/li/libvdwxc/package.nix @@ -51,14 +51,14 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "Portable C library of density functionals with van der Waals interactions for density functional theory"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus bsd3 ]; homepage = "https://libvdwxc.materialsmodeling.org/"; - platforms = platforms.unix; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/li/libversion/package.nix b/pkgs/by-name/li/libversion/package.nix index 844ec4889c4c..30d379af2705 100644 --- a/pkgs/by-name/li/libversion/package.nix +++ b/pkgs/by-name/li/libversion/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { checkTarget = "test"; doCheck = true; - meta = with lib; { + meta = { description = "Advanced version string comparison library"; homepage = "https://github.com/repology/libversion"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ryantm ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ryantm ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libverto/package.nix b/pkgs/by-name/li/libverto/package.nix index b1a6756dd3be..6dda72f6df47 100644 --- a/pkgs/by-name/li/libverto/package.nix +++ b/pkgs/by-name/li/libverto/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = optional glibSupport glib ++ optional libevSupport libev ++ optional libeventSupport libevent; - meta = with lib; { + meta = { homepage = "https://github.com/latchset/libverto"; description = "Asynchronous event loop abstraction library"; longDescription = '' @@ -46,8 +46,8 @@ stdenv.mkDerivation (finalAttrs: { async api which allows the library to expose asynchronous interfaces and offload the choice of the main loop to the application. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libvibrant/package.nix b/pkgs/by-name/li/libvibrant/package.nix index c6dab911b41e..3e7579fa56d1 100644 --- a/pkgs/by-name/li/libvibrant/package.nix +++ b/pkgs/by-name/li/libvibrant/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { linuxPackages.nvidia_x11.settings.libXNVCtrl ]; - meta = with lib; { + meta = { description = "Simple library to adjust color saturation of X11 outputs"; homepage = "https://github.com/libvibrant/libvibrant"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Scrumplex ]; mainProgram = "vibrant-cli"; }; }) diff --git a/pkgs/by-name/li/libvirt-glib/package.nix b/pkgs/by-name/li/libvirt-glib/package.nix index b358c1d5bd30..4f387354b7b9 100644 --- a/pkgs/by-name/li/libvirt-glib/package.nix +++ b/pkgs/by-name/li/libvirt-glib/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { (lib.mesonEnable "introspection" withIntrospection) ]; - meta = with lib; { + meta = { description = "Wrapper library of libvirt for glib-based applications"; longDescription = '' libvirt-glib wraps libvirt to provide a high-level object-oriented API better @@ -90,7 +90,7 @@ stdenv.mkDerivation rec { - libvirt-gobject - GObjects for managing libvirt objects ''; homepage = "https://libvirt.org/"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libvisio/package.nix b/pkgs/by-name/li/libvisio/package.nix index 9987190dca26..5c4ba03253c5 100644 --- a/pkgs/by-name/li/libvisio/package.nix +++ b/pkgs/by-name/li/libvisio/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Library providing ability to interpret and import visio diagrams into various applications"; homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libvisio"; - license = licenses.mpl20; - platforms = platforms.unix; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/li/libvisio2svg/package.nix b/pkgs/by-name/li/libvisio2svg/package.nix index b6f86d88a3b6..9d64a0219573 100644 --- a/pkgs/by-name/li/libvisio2svg/package.nix +++ b/pkgs/by-name/li/libvisio2svg/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { description = "Library and tools to convert Microsoft Visio documents (VSS and VSD) to SVG"; homepage = "https://github.com/kakwa/libvisio2svg"; - maintainers = with maintainers; [ erdnaxe ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ erdnaxe ]; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/li/libvmaf/package.nix b/pkgs/by-name/li/libvmaf/package.nix index eea42c1c5730..7b841808b423 100644 --- a/pkgs/by-name/li/libvmaf/package.nix +++ b/pkgs/by-name/li/libvmaf/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Perceptual video quality assessment based on multi-method fusion (VMAF)"; homepage = "https://github.com/Netflix/vmaf"; changelog = "https://github.com/Netflix/vmaf/blob/v${finalAttrs.version}/CHANGELOG.md"; - license = licenses.bsd2Patent; - maintainers = [ maintainers.cfsmp3 ]; + license = lib.licenses.bsd2Patent; + maintainers = [ lib.maintainers.cfsmp3 ]; mainProgram = "vmaf"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libvncserver/package.nix b/pkgs/by-name/li/libvncserver/package.nix index b4c94caccdbb..29ce2959e878 100644 --- a/pkgs/by-name/li/libvncserver/package.nix +++ b/pkgs/by-name/li/libvncserver/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = enableShared; - meta = with lib; { + meta = { description = "VNC server library"; homepage = "https://libvnc.github.io/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libvoikko/package.nix b/pkgs/by-name/li/libvoikko/package.nix index bb3f37578008..a1ea02d79776 100644 --- a/pkgs/by-name/li/libvoikko/package.nix +++ b/pkgs/by-name/li/libvoikko/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { hfst-ospell ]; - meta = with lib; { + meta = { homepage = "https://voikko.puimula.org/"; description = "Finnish language processing library"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ lurkki ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ lurkki ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libvolume_id/package.nix b/pkgs/by-name/li/libvolume_id/package.nix index dbdd75e27560..f39e0b7a01f3 100644 --- a/pkgs/by-name/li/libvolume_id/package.nix +++ b/pkgs/by-name/li/libvolume_id/package.nix @@ -23,9 +23,9 @@ stdenv.mkDerivation rec { cp -f libvolume_id.so.0 $out/lib/ "; - meta = with lib; { - platforms = platforms.linux; - license = licenses.gpl2Only; + meta = { + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; homepage = "http://www.marcuscom.com/downloads/"; }; } diff --git a/pkgs/by-name/li/libvorbis/package.nix b/pkgs/by-name/li/libvorbis/package.nix index e3d74ba1260a..bb28242ecc22 100644 --- a/pkgs/by-name/li/libvorbis/package.nix +++ b/pkgs/by-name/li/libvorbis/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { sed s/\-mno\-ieee\-fp// -i {configure,configure.ac} ''; - meta = with lib; { + meta = { description = "Vorbis audio compression reference implementation"; homepage = "https://xiph.org/vorbis/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libvori/package.nix b/pkgs/by-name/li/libvori/package.nix index 1d431610a006..8646ef01dc59 100644 --- a/pkgs/by-name/li/libvori/package.nix +++ b/pkgs/by-name/li/libvori/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Library for Voronoi integration of electron densities"; homepage = "https://brehm-research.de/libvori.php"; - license = with licenses; [ lgpl3Only ]; - platforms = platforms.unix; - maintainers = [ maintainers.sheepforce ]; + license = with lib.licenses; [ lgpl3Only ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/li/libvpl/package.nix b/pkgs/by-name/li/libvpl/package.nix index 319373b62dfc..1d4b09a892aa 100644 --- a/pkgs/by-name/li/libvpl/package.nix +++ b/pkgs/by-name/li/libvpl/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Intel Video Processing Library"; homepage = "https://intel.github.io/libvpl/"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libvterm-neovim/package.nix b/pkgs/by-name/li/libvterm-neovim/package.nix index 5f183515da98..3b17c1c6ed84 100644 --- a/pkgs/by-name/li/libvterm-neovim/package.nix +++ b/pkgs/by-name/li/libvterm-neovim/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "VT220/xterm/ECMA-48 terminal emulator library"; homepage = "http://www.leonerd.org.uk/code/libvterm/"; - license = licenses.mit; - maintainers = with maintainers; [ rvolosatovs ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvolosatovs ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libvterm/package.nix b/pkgs/by-name/li/libvterm/package.nix index 30980297efcd..d079681af2bc 100644 --- a/pkgs/by-name/li/libvterm/package.nix +++ b/pkgs/by-name/li/libvterm/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ ncurses ]; - meta = with lib; { + meta = { homepage = "http://libvterm.sourceforge.net/"; description = "Terminal emulator library to mimic both vt100 and rxvt"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libwbxml/package.nix b/pkgs/by-name/li/libwbxml/package.nix index 82036c7099f6..249deb4c5d01 100644 --- a/pkgs/by-name/li/libwbxml/package.nix +++ b/pkgs/by-name/li/libwbxml/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ expat ]; - meta = with lib; { + meta = { homepage = "https://github.com/libwbxml/libwbxml"; description = "WBXML Library (aka libwbxml) contains a library and its associated tools to Parse, Encode and Handle WBXML documents"; - maintainers = with maintainers; [ mh ]; - platforms = platforms.unix; - license = licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ mh ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/by-name/li/libwebcam/package.nix b/pkgs/by-name/li/libwebcam/package.nix index 70d08400a1b9..7fcb30629bb7 100644 --- a/pkgs/by-name/li/libwebcam/package.nix +++ b/pkgs/by-name/li/libwebcam/package.nix @@ -55,10 +55,10 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Webcam-tools package"; - platforms = platforms.linux; - license = licenses.lgpl3; - maintainers = with maintainers; [ jraygauthier ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/by-name/li/libwebp/package.nix b/pkgs/by-name/li/libwebp/package.nix index d20b25693a88..1726b821430b 100644 --- a/pkgs/by-name/li/libwebp/package.nix +++ b/pkgs/by-name/li/libwebp/package.nix @@ -95,12 +95,12 @@ stdenv.mkDerivation rec { pkg-config = testers.hasPkgConfigModules { package = libwebp; }; }; - meta = with lib; { + meta = { description = "Tools and library for the WebP image format"; homepage = "https://developers.google.com/speed/webp/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ ajs124 ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ajs124 ]; pkgConfigModules = [ # configure_pkg_config() calls for these are unconditional "libwebp" diff --git a/pkgs/by-name/li/libwebsockets/package.nix b/pkgs/by-name/li/libwebsockets/package.nix index 6a7d4e8bcfd1..5fe60bd697ea 100644 --- a/pkgs/by-name/li/libwebsockets/package.nix +++ b/pkgs/by-name/li/libwebsockets/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { # $out/share/libwebsockets-test-server/plugins/libprotocol_*.so refers to crtbeginS.o disallowedReferences = [ stdenv.cc.cc ]; - meta = with lib; { + meta = { description = "Light, portable C library for websockets"; longDescription = '' Libwebsockets is a lightweight pure C library built to @@ -93,13 +93,13 @@ stdenv.mkDerivation rec { homepage = "https://libwebsockets.org/"; # Relicensed from LGPLv2.1+ to MIT with 4.0. Licensing situation # is tricky, see https://github.com/warmcat/libwebsockets/blob/main/LICENSE - license = with licenses; [ + license = with lib.licenses; [ mit publicDomain bsd3 asl20 ]; - maintainers = with maintainers; [ mindavi ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mindavi ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libwhereami/package.nix b/pkgs/by-name/li/libwhereami/package.nix index 84774a19f4f4..171eaab208bc 100644 --- a/pkgs/by-name/li/libwhereami/package.nix +++ b/pkgs/by-name/li/libwhereami/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { leatherman ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Library to report hypervisor information from inside a VM"; - license = licenses.asl20; - maintainers = [ maintainers.womfoo ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.womfoo ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/li/libwhich/package.nix b/pkgs/by-name/li/libwhich/package.nix index 4dc97d33a7e7..7fc953f59344 100644 --- a/pkgs/by-name/li/libwhich/package.nix +++ b/pkgs/by-name/li/libwhich/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { install -Dm755 -t $out/bin libwhich ''; - meta = with lib; { + meta = { description = "Like `which`, for dynamic libraries"; mainProgram = "libwhich"; homepage = "https://github.com/vtjnash/libwhich"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libwmf/package.nix b/pkgs/by-name/li/libwmf/package.nix index 7e55740b0376..a96299418f75 100644 --- a/pkgs/by-name/li/libwmf/package.nix +++ b/pkgs/by-name/li/libwmf/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "WMF library from wvWare"; homepage = "https://wvware.sourceforge.net/libwmf.html"; downloadPage = "https://github.com/caolanm/libwmf/releases"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libwpg/package.nix b/pkgs/by-name/li/libwpg/package.nix index f0cee5d5c87a..2a93835198a3 100644 --- a/pkgs/by-name/li/libwpg/package.nix +++ b/pkgs/by-name/li/libwpg/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { homepage = "https://libwpg.sourceforge.net"; description = "C++ library to parse WPG"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 mpl20 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libwps/package.nix b/pkgs/by-name/li/libwps/package.nix index 9b2f54b9b883..a1d0ea11524b 100644 --- a/pkgs/by-name/li/libwps/package.nix +++ b/pkgs/by-name/li/libwps/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough"; - meta = with lib; { + meta = { homepage = "https://libwps.sourceforge.net/"; description = "Microsoft Works document format import filter library"; - platforms = platforms.unix; - license = licenses.lgpl21; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libwtk-sdl2/package.nix b/pkgs/by-name/li/libwtk-sdl2/package.nix index 5b6e549153ef..ecf04c300478 100644 --- a/pkgs/by-name/li/libwtk-sdl2/package.nix +++ b/pkgs/by-name/li/libwtk-sdl2/package.nix @@ -40,19 +40,19 @@ stdenv.mkDerivation (finalAttrs: { "lib" ]; - meta = with lib; { + meta = { description = "Simplistic SDL2 GUI framework in early developement"; mainProgram = "libwtk-sdl2-test"; homepage = "https://github.com/muesli4/libwtk-sdl2"; # See: https://github.com/muesli4/mpd-touch-screen-gui/tree/master/LICENSES - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ doronbehar ]; /* Partial darwin build failure log (from ofborg): geometry.cpp:95:34: error: no member named 'abs' in namespace 'std' > return { std::abs(v.w), std::abs(v.h) }; > ~~~~~^ */ - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libx86/package.nix b/pkgs/by-name/li/libx86/package.nix index c32d53d8651c..e52c97848d77 100644 --- a/pkgs/by-name/li/libx86/package.nix +++ b/pkgs/by-name/li/libx86/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; }; - meta = with lib; { + meta = { description = "Real-mode x86 code emulator"; - maintainers = with maintainers; [ raskin ]; + maintainers = with lib.maintainers; [ raskin ]; platforms = [ "x86_64-linux" "i686-linux" ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/li/libx86emu/package.nix b/pkgs/by-name/li/libx86emu/package.nix index 6449b67a7600..e1d4dc1cc68b 100644 --- a/pkgs/by-name/li/libx86emu/package.nix +++ b/pkgs/by-name/li/libx86emu/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { "LIBDIR=/lib" ]; - meta = with lib; { + meta = { description = "x86 emulation library"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://github.com/wfeldt/libx86emu"; - maintainers = with maintainers; [ bobvanderlinden ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ bobvanderlinden ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libxc/package.nix b/pkgs/by-name/li/libxc/package.nix index 85a4867882d4..cfbdd693d154 100644 --- a/pkgs/by-name/li/libxc/package.nix +++ b/pkgs/by-name/li/libxc/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Library of exchange-correlation functionals for density-functional theory"; mainProgram = "xc-info"; homepage = "https://www.tddft.org/programs/Libxc/"; - license = licenses.mpl20; - platforms = platforms.unix; - maintainers = with maintainers; [ markuskowa ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ markuskowa ]; }; } diff --git a/pkgs/by-name/li/libxcomp/package.nix b/pkgs/by-name/li/libxcomp/package.nix index ba935930a207..f6b7c1b247f0 100644 --- a/pkgs/by-name/li/libxcomp/package.nix +++ b/pkgs/by-name/li/libxcomp/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "NX compression library"; homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libxdg_basedir/package.nix b/pkgs/by-name/li/libxdg_basedir/package.nix index 2ae5e9aa54ff..0360d422ce8d 100644 --- a/pkgs/by-name/li/libxdg_basedir/package.nix +++ b/pkgs/by-name/li/libxdg_basedir/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Implementation of the XDG Base Directory specification"; homepage = "https://github.com/devnev/libxdg-basedir"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libxisf/package.nix b/pkgs/by-name/li/libxisf/package.nix index a421b6594b2f..cfcc2042edeb 100644 --- a/pkgs/by-name/li/libxisf/package.nix +++ b/pkgs/by-name/li/libxisf/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Library to load and write XISF format from PixInsight"; homepage = "https://gitea.nouspiro.space/nou/libXISF"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ panicgh ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ panicgh ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libxkbcommon_8/package.nix b/pkgs/by-name/li/libxkbcommon_8/package.nix index 5c0e5bd400d5..40ebb5c6cecb 100644 --- a/pkgs/by-name/li/libxkbcommon_8/package.nix +++ b/pkgs/by-name/li/libxkbcommon_8/package.nix @@ -85,7 +85,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library to handle keyboard descriptions"; longDescription = '' libxkbcommon is a keyboard keymap compiler and support library which @@ -95,12 +95,12 @@ stdenv.mkDerivation (finalAttrs: { ''; # and a separate library for listing available keyboard layouts. homepage = "https://xkbcommon.org"; changelog = "https://github.com/xkbcommon/libxkbcommon/blob/xkbcommon-${finalAttrs.version}/NEWS.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ttuegel ]; mainProgram = "xkbcli"; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; pkgConfigModules = [ "xkbcommon" "xkbcommon-x11" diff --git a/pkgs/by-name/li/libxklavier/package.nix b/pkgs/by-name/li/libxklavier/package.nix index acb02a343f54..3b722344ba69 100644 --- a/pkgs/by-name/li/libxklavier/package.nix +++ b/pkgs/by-name/li/libxklavier/package.nix @@ -74,10 +74,10 @@ stdenv.mkDerivation rec { "${if withDoc then "--enable-gtk-doc" else "--disable-gtk-doc"}" ]; - meta = with lib; { + meta = { description = "Library providing high-level API for X Keyboard Extension known as XKB"; homepage = "http://freedesktop.org/wiki/Software/LibXklavier"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libxl/package.nix b/pkgs/by-name/li/libxl/package.nix index a8700bc8391d..c070a57d4b19 100644 --- a/pkgs/by-name/li/libxl/package.nix +++ b/pkgs/by-name/li/libxl/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { cp -rva lib64 $out/lib ''; - meta = with lib; { + meta = { description = "Library for parsing Excel files"; homepage = "https://www.libxl.com/"; - license = licenses.unfree; - platforms = platforms.linux; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libxlsxwriter/package.nix b/pkgs/by-name/li/libxlsxwriter/package.nix index 5612de5ec025..ee52431403f8 100644 --- a/pkgs/by-name/li/libxlsxwriter/package.nix +++ b/pkgs/by-name/li/libxlsxwriter/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { checkTarget = "test"; - meta = with lib; { + meta = { description = "C library for creating Excel XLSX files"; homepage = "https://libxlsxwriter.github.io/"; changelog = "https://github.com/jmcnamara/libxlsxwriter/blob/${src.rev}/Changes.txt"; - license = licenses.bsd2; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libxmlb/package.nix b/pkgs/by-name/li/libxmlb/package.nix index 868c2dbb9d7d..8d91adeaf782 100644 --- a/pkgs/by-name/li/libxmlb/package.nix +++ b/pkgs/by-name/li/libxmlb/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library to help create and query binary XML blobs"; mainProgram = "xb-tool"; homepage = "https://github.com/hughsie/libxmlb"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libxslt/package.nix b/pkgs/by-name/li/libxslt/package.nix index d31337777f26..ed1b8770b4cb 100644 --- a/pkgs/by-name/li/libxslt/package.nix +++ b/pkgs/by-name/li/libxslt/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/libxslt"; description = "C library and tools to do XSL transformations"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ jtojnar ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jtojnar ]; broken = pythonSupport && !libxml2.pythonSupport; # see #73102 for why this is not an assert }; }) diff --git a/pkgs/by-name/li/libxsmm/package.nix b/pkgs/by-name/li/libxsmm/package.nix index fcb99e8c346c..ebcdfb6ee79b 100644 --- a/pkgs/by-name/li/libxsmm/package.nix +++ b/pkgs/by-name/li/libxsmm/package.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation rec { patchShebangs . ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives"; mainProgram = "libxsmm_gemm_generator"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/hfp/libxsmm"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ chessai ]; }; } diff --git a/pkgs/by-name/li/libyafaray/package.nix b/pkgs/by-name/li/libyafaray/package.nix index 921393408c3b..8e25eeef704e 100644 --- a/pkgs/by-name/li/libyafaray/package.nix +++ b/pkgs/by-name/li/libyafaray/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation { ] ++ lib.optional withPython python3; - meta = with lib; { + meta = { description = "Free, open source raytracer"; downloadPage = "https://github.com/YafaRay/libYafaRay"; homepage = "http://www.yafaray.org"; - maintainers = with maintainers; [ hodapp ]; - license = licenses.lgpl21; + maintainers = with lib.maintainers; [ hodapp ]; + license = lib.licenses.lgpl21; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/li/libyaml/package.nix b/pkgs/by-name/li/libyaml/package.nix index 9ab641e5543d..180edb07d305 100644 --- a/pkgs/by-name/li/libyaml/package.nix +++ b/pkgs/by-name/li/libyaml/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://pyyaml.org/"; description = "YAML 1.1 parser and emitter written in C"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libyang/package.nix b/pkgs/by-name/li/libyang/package.nix index e71823151a31..4ae7fb336e06 100644 --- a/pkgs/by-name/li/libyang/package.nix +++ b/pkgs/by-name/li/libyang/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "YANG data modelling language parser and toolkit"; longDescription = '' libyang is a YANG data modelling language parser and toolkit written (and @@ -61,8 +61,8 @@ stdenv.mkDerivation rec { sysrepo or FRRouting projects. ''; homepage = "https://github.com/CESNET/libyang"; - license = with licenses; [ bsd3 ]; - platforms = platforms.unix; - maintainers = with maintainers; [ woffs ]; + license = with lib.licenses; [ bsd3 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ woffs ]; }; } diff --git a/pkgs/by-name/li/libykclient/package.nix b/pkgs/by-name/li/libykclient/package.nix index a35a5a92a490..cf4142a5f645 100644 --- a/pkgs/by-name/li/libykclient/package.nix +++ b/pkgs/by-name/li/libykclient/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { ]; buildInputs = [ curl ]; - meta = with lib; { + meta = { description = "Yubikey C client library"; mainProgram = "ykclient"; homepage = "https://developers.yubico.com/yubico-c-client"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libykneomgr/package.nix b/pkgs/by-name/li/libykneomgr/package.nix index 06d8a8e87e13..245b1c028903 100644 --- a/pkgs/by-name/li/libykneomgr/package.nix +++ b/pkgs/by-name/li/libykneomgr/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { "--with-backend=pcsc" ]; - meta = with lib; { + meta = { description = "C library to interact with the CCID-part of the Yubikey NEO"; homepage = "https://developers.yubico.com/libykneomgr"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "ykneomgr"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libytnef/package.nix b/pkgs/by-name/li/libytnef/package.nix index 9b3bf8c5e3fe..842cbfc01dfd 100644 --- a/pkgs/by-name/li/libytnef/package.nix +++ b/pkgs/by-name/li/libytnef/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Yeraze's TNEF Stream Reader - for winmail.dat files"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/li/libyubikey/package.nix b/pkgs/by-name/li/libyubikey/package.nix index edfb08994133..28e35dcc94f7 100644 --- a/pkgs/by-name/li/libyubikey/package.nix +++ b/pkgs/by-name/li/libyubikey/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "009l3k2zyn06dbrlja2d4p2vfnzjhlcqxi88v02mlrnb17mx1v84"; }; - meta = with lib; { + meta = { homepage = "http://opensource.yubico.com/yubico-c/"; description = "C library for manipulating Yubico YubiKey One-Time Passwords (OTPs)"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libyuv/package.nix b/pkgs/by-name/li/libyuv/package.nix index 42b3893a4aae..f8de345929ea 100644 --- a/pkgs/by-name/li/libyuv/package.nix +++ b/pkgs/by-name/li/libyuv/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://chromium.googlesource.com/libyuv/libyuv"; description = "Open source project that includes YUV scaling and conversion functionality"; mainProgram = "yuvconvert"; - platforms = platforms.unix; - maintainers = with maintainers; [ leixb ]; - license = licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ leixb ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/libzbc/package.nix b/pkgs/by-name/li/libzbc/package.nix index f4e935ae12e7..4f592158a5a9 100644 --- a/pkgs/by-name/li/libzbc/package.nix +++ b/pkgs/by-name/li/libzbc/package.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation rec { configureFlags = lib.optional guiSupport "--enable-gui"; - meta = with lib; { + meta = { description = "ZBC device manipulation library"; homepage = "https://github.com/westerndigitalcorporation/libzbc"; maintainers = [ ]; - license = with licenses; [ + license = with lib.licenses; [ bsd2 lgpl3Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libzbd/package.nix b/pkgs/by-name/li/libzbd/package.nix index d40745a6b825..b8307fed9903 100644 --- a/pkgs/by-name/li/libzbd/package.nix +++ b/pkgs/by-name/li/libzbd/package.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { configureFlags = lib.optional guiSupport "--enable-gui"; - meta = with lib; { + meta = { description = "Zoned block device manipulation library and tools"; mainProgram = "zbd"; homepage = "https://github.com/westerndigitalcorporation/libzbd"; maintainers = [ ]; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus gpl3Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libzen/package.nix b/pkgs/by-name/li/libzen/package.nix index ee01bb7a0f22..be527f259824 100644 --- a/pkgs/by-name/li/libzen/package.nix +++ b/pkgs/by-name/li/libzen/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Shared library for libmediainfo and mediainfo"; homepage = "https://mediaarea.net/"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.devhell ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.devhell ]; }; } diff --git a/pkgs/by-name/li/libzip/package.nix b/pkgs/by-name/li/libzip/package.nix index 042c745ce9d6..b54663c94cc4 100644 --- a/pkgs/by-name/li/libzip/package.nix +++ b/pkgs/by-name/li/libzip/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { homepage = "https://libzip.org/"; description = "C library for reading, creating and modifying zip archives"; - license = licenses.bsd3; + license = lib.licenses.bsd3; pkgConfigModules = [ "libzip" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; changelog = "https://github.com/nih-at/libzip/blob/v${finalAttrs.version}/NEWS.md"; }; }) diff --git a/pkgs/by-name/li/libzra/package.nix b/pkgs/by-name/li/libzra/package.nix index 6f4dd78693e2..80c32f511a58 100644 --- a/pkgs/by-name/li/libzra/package.nix +++ b/pkgs/by-name/li/libzra/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 2.8.9 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://github.com/zraorg/ZRA"; description = "Library for ZStandard random access"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/license-cli/package.nix b/pkgs/by-name/li/license-cli/package.nix index 2c3f5e0b1ddf..1e5b58dce8c3 100644 --- a/pkgs/by-name/li/license-cli/package.nix +++ b/pkgs/by-name/li/license-cli/package.nix @@ -55,11 +55,11 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~zethra/license"; description = "Command-line tool to easily add license to your project"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "license"; - maintainers = with maintainers; [ foo-dogsquared ]; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/by-name/li/license-generator/package.nix b/pkgs/by-name/li/license-generator/package.nix index 3e47ff377c04..cf2cb52e0b02 100644 --- a/pkgs/by-name/li/license-generator/package.nix +++ b/pkgs/by-name/li/license-generator/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-GP1Xr+M7mDXFB1fVdTq3VPPQR9QU43iQlJNW9MqcLB0="; - meta = with lib; { + meta = { description = "Command-line tool for generating license files"; homepage = "https://github.com/azu/license-generator"; - license = licenses.mit; - maintainers = with maintainers; [ loicreynier ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ loicreynier ]; mainProgram = "license-generator"; }; } diff --git a/pkgs/by-name/li/licenseclassifier/package.nix b/pkgs/by-name/li/licenseclassifier/package.nix index ad12323a4ecc..884fd68f2d3b 100644 --- a/pkgs/by-name/li/licenseclassifier/package.nix +++ b/pkgs/by-name/li/licenseclassifier/package.nix @@ -25,7 +25,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "License Classifier"; mainProgram = "identify_license"; longDescription = '' @@ -36,8 +36,8 @@ buildGoModule rec { license text in a comment. ''; homepage = "https://github.com/google/licenseclassifier"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ tnias ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tnias ]; }; } diff --git a/pkgs/by-name/li/licensure/package.nix b/pkgs/by-name/li/licensure/package.nix index bffc0f609bf2..41fc7d10612e 100644 --- a/pkgs/by-name/li/licensure/package.nix +++ b/pkgs/by-name/li/licensure/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { "--skip=test_get_project_files" ]; - meta = with lib; { + meta = { description = "FOSS License management tool for your projects"; homepage = "https://github.com/chasinglogic/licensure"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "licensure"; - maintainers = [ maintainers.bpeetz ]; - platforms = platforms.linux ++ platforms.darwin; + maintainers = [ lib.maintainers.bpeetz ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/li/lieer/package.nix b/pkgs/by-name/li/lieer/package.nix index d0689c031c14..a05f64d65cf8 100644 --- a/pkgs/by-name/li/lieer/package.nix +++ b/pkgs/by-name/li/lieer/package.nix @@ -37,7 +37,7 @@ python3Packages.buildPythonApplication rec { "lieer" ]; - meta = with lib; { + meta = { description = "Fast email-fetching and two-way tag synchronization between notmuch and GMail"; longDescription = '' This program can pull email and labels (and changes to labels) @@ -47,8 +47,8 @@ python3Packages.buildPythonApplication rec { GMail account. ''; homepage = "https://lieer.gaute.vetsj.com/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ archer-65 flokli ]; diff --git a/pkgs/by-name/li/lief/package.nix b/pkgs/by-name/li/lief/package.nix index 82c31fcbd8cf..8ca5ac1cb5e6 100644 --- a/pkgs/by-name/li/lief/package.nix +++ b/pkgs/by-name/li/lief/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Library to Instrument Executable Formats"; homepage = "https://lief.quarkslab.com/"; - license = [ licenses.asl20 ]; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ + license = [ lib.licenses.asl20 ]; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ lassulus genericnerdyusername ]; diff --git a/pkgs/by-name/li/lifecycled/package.nix b/pkgs/by-name/li/lifecycled/package.nix index 8605f701fe1b..9771b7df0dd2 100644 --- a/pkgs/by-name/li/lifecycled/package.nix +++ b/pkgs/by-name/li/lifecycled/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { --replace /usr/bin/lifecycled $out/bin/lifecycled ''; - meta = with lib; { + meta = { description = "Daemon for responding to AWS AutoScaling Lifecycle Hooks"; homepage = "https://github.com/buildkite/lifecycled/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cole-h grahamc ]; diff --git a/pkgs/by-name/li/liferea/package.nix b/pkgs/by-name/li/liferea/package.nix index 991222b673ad..756309b64a84 100644 --- a/pkgs/by-name/li/liferea/package.nix +++ b/pkgs/by-name/li/liferea/package.nix @@ -78,15 +78,15 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "GTK-based news feed aggregator"; homepage = "http://lzone.de/liferea/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ romildo yayayayaka ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; longDescription = '' Liferea (Linux Feed Reader) is an RSS/RDF feed reader. diff --git a/pkgs/by-name/li/lightdm-enso-os-greeter/package.nix b/pkgs/by-name/li/lightdm-enso-os-greeter/package.nix index 056ab12c8515..d322188ed60c 100644 --- a/pkgs/by-name/li/lightdm-enso-os-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-enso-os-greeter/package.nix @@ -79,16 +79,16 @@ stdenv.mkDerivation { --replace "pantheon-greeter" "$out/bin/pantheon-greeter" ''; - meta = with lib; { + meta = { description = '' A fork of pantheon greeter that positions elements in a central and vertigal manner and adds a blur effect to the background ''; mainProgram = "pantheon-greeter"; homepage = "https://github.com/nick92/Enso-OS"; - platforms = platforms.linux; - license = licenses.gpl3; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ eadwu ]; }; diff --git a/pkgs/by-name/li/lightdm-mini-greeter/package.nix b/pkgs/by-name/li/lightdm-mini-greeter/package.nix index 632e471c9203..d789afadb058 100644 --- a/pkgs/by-name/li/lightdm-mini-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-mini-greeter/package.nix @@ -53,16 +53,16 @@ stdenv.mkDerivation rec { } ]; - meta = with lib; { + meta = { description = "Minimal, configurable, single-user GTK3 LightDM greeter"; mainProgram = "lightdm-mini-greeter"; homepage = "https://github.com/prikhi/lightdm-mini-greeter"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ mnacamura prikhi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; changelog = "https://github.com/prikhi/lightdm-mini-greeter/blob/master/CHANGELOG.md"; }; } diff --git a/pkgs/by-name/li/lightdm-mobile-greeter/package.nix b/pkgs/by-name/li/lightdm-mobile-greeter/package.nix index 3ac1eec18e32..d638447ff3e4 100644 --- a/pkgs/by-name/li/lightdm-mobile-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-mobile-greeter/package.nix @@ -47,12 +47,12 @@ rustPlatform.buildRustPackage { } ]; - meta = with lib; { + meta = { description = "Simple log in screen for use on touch screens"; homepage = "https://git.raatty.club/raatty/lightdm-mobile-greeter"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; mainProgram = "lightdm-mobile-greeter"; }; } diff --git a/pkgs/by-name/li/lightdm-slick-greeter/package.nix b/pkgs/by-name/li/lightdm-slick-greeter/package.nix index c43509b41000..3d39f3648dd0 100644 --- a/pkgs/by-name/li/lightdm-slick-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-slick-greeter/package.nix @@ -97,14 +97,14 @@ stdenv.mkDerivation rec { } ]; - meta = with lib; { + meta = { description = "Slick-looking LightDM greeter"; homepage = "https://github.com/linuxmint/slick-greeter"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ water-sucks bobby285271 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/lightdm-tiny-greeter/package.nix b/pkgs/by-name/li/lightdm-tiny-greeter/package.nix index eb0f46c6d39e..fb365523f729 100644 --- a/pkgs/by-name/li/lightdm-tiny-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-tiny-greeter/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { } ]; - meta = with lib; { + meta = { description = "Tiny multi user lightdm greeter"; mainProgram = "lightdm-tiny-greeter"; homepage = "https://github.com/off-world/lightdm-tiny-greeter"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/lighthouse-steamvr/package.nix b/pkgs/by-name/li/lighthouse-steamvr/package.nix index 62fd08cca424..60a90c771828 100644 --- a/pkgs/by-name/li/lighthouse-steamvr/package.nix +++ b/pkgs/by-name/li/lighthouse-steamvr/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ dbus ]; - meta = with lib; { + meta = { description = "VR Lighthouse power state management"; homepage = "https://github.com/ShayBox/Lighthouse"; - license = licenses.mit; - maintainers = with maintainers; [ bddvlpr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bddvlpr ]; mainProgram = "lighthouse"; }; } diff --git a/pkgs/by-name/li/lighthouse/package.nix b/pkgs/by-name/li/lighthouse/package.nix index 2b7afb326baf..b308db4f483c 100644 --- a/pkgs/by-name/li/lighthouse/package.nix +++ b/pkgs/by-name/li/lighthouse/package.nix @@ -335,11 +335,11 @@ rustPlatform.buildRustPackage rec { # This is needed by the unit tests. FORK_NAME = "capella"; - meta = with lib; { + meta = { description = "Ethereum consensus client in Rust"; homepage = "https://lighthouse.sigmaprime.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ centromere pmw ]; diff --git a/pkgs/by-name/li/lightlocker/package.nix b/pkgs/by-name/li/lightlocker/package.nix index 559a267aa0fd..57cb6296927a 100644 --- a/pkgs/by-name/li/lightlocker/package.nix +++ b/pkgs/by-name/li/lightlocker/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/the-cavalry/light-locker"; description = "Simple session-locker for LightDM"; longDescription = '' @@ -86,9 +86,9 @@ stdenv.mkDerivation rec { It relies on LightDM for locking and unlocking your session via ConsoleKit/UPower or logind/systemd. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ obadz ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ obadz ]; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/lightning-loop/package.nix b/pkgs/by-name/li/lightning-loop/package.nix index 8db5d3ba5dfd..3d89d8aa6bf7 100644 --- a/pkgs/by-name/li/lightning-loop/package.nix +++ b/pkgs/by-name/li/lightning-loop/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { installManPage docs/loop.1 ''; - meta = with lib; { + meta = { description = "Lightning Loop Client"; homepage = "https://github.com/lightninglabs/loop"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ proofofkeags starius ]; diff --git a/pkgs/by-name/li/lightning-pool/package.nix b/pkgs/by-name/li/lightning-pool/package.nix index 145455a4ea75..f786add8963b 100644 --- a/pkgs/by-name/li/lightning-pool/package.nix +++ b/pkgs/by-name/li/lightning-pool/package.nix @@ -27,10 +27,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Lightning Pool Client"; homepage = "https://github.com/lightninglabs/pool"; - license = licenses.mit; - maintainers = with maintainers; [ proofofkeags ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ proofofkeags ]; }; } diff --git a/pkgs/by-name/li/lightspark/package.nix b/pkgs/by-name/li/lightspark/package.nix index 89d6900fba94..e1c7564b7b68 100644 --- a/pkgs/by-name/li/lightspark/package.nix +++ b/pkgs/by-name/li/lightspark/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { glibmm ]; - meta = with lib; { + meta = { description = "Open source Flash Player implementation"; homepage = "https://lightspark.github.io/"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ jchw ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ jchw ]; + platforms = lib.platforms.linux; mainProgram = "lightspark"; }; } diff --git a/pkgs/by-name/li/lighttpd/package.nix b/pkgs/by-name/li/lighttpd/package.nix index 4e648abbc999..4be2b88d50cf 100644 --- a/pkgs/by-name/li/lighttpd/package.nix +++ b/pkgs/by-name/li/lighttpd/package.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) lighttpd; }; - meta = with lib; { + meta = { description = "Lightweight high-performance web server"; homepage = "http://www.lighttpd.net/"; license = lib.licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor brecht ]; diff --git a/pkgs/by-name/li/lightwalletd/package.nix b/pkgs/by-name/li/lightwalletd/package.nix index 0d5f17e96759..4f74a5b774ac 100644 --- a/pkgs/by-name/li/lightwalletd/package.nix +++ b/pkgs/by-name/li/lightwalletd/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { version = "v${lightwalletd.version}"; }; - meta = with lib; { + meta = { description = "Backend service that provides a bandwidth-efficient interface to the Zcash blockchain"; homepage = "https://github.com/zcash/lightwalletd"; - maintainers = with maintainers; [ centromere ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ centromere ]; + license = lib.licenses.mit; mainProgram = "lightwalletd"; }; } diff --git a/pkgs/by-name/li/lilex/package.nix b/pkgs/by-name/li/lilex/package.nix index 49c031a22c0d..8dc12d069a66 100644 --- a/pkgs/by-name/li/lilex/package.nix +++ b/pkgs/by-name/li/lilex/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source programming font"; homepage = "https://github.com/mishamyrt/Lilex"; - license = licenses.ofl; - maintainers = with maintainers; [ redyf ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ redyf ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/lilo/package.nix b/pkgs/by-name/li/lilo/package.nix index 7a104119faa3..4840b1bbda75 100644 --- a/pkgs/by-name/li/lilo/package.nix +++ b/pkgs/by-name/li/lilo/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "MAN_DIR=/share/man" ]; - meta = with lib; { + meta = { homepage = "https://www.joonet.de/lilo/"; description = "Linux bootloader"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/by-name/li/lilv/package.nix b/pkgs/by-name/li/lilv/package.nix index 9a1ecddac6f9..1f5de05882c4 100644 --- a/pkgs/by-name/li/lilv/package.nix +++ b/pkgs/by-name/li/lilv/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "http://drobilla.net/software/lilv"; description = "C library to make the use of LV2 plugins"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/limesurvey/package.nix b/pkgs/by-name/li/limesurvey/package.nix index a56fc5bf834e..238e78b67dc3 100644 --- a/pkgs/by-name/li/limesurvey/package.nix +++ b/pkgs/by-name/li/limesurvey/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Open source survey application"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.limesurvey.org"; - maintainers = with maintainers; [ offline ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ offline ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/limitcpu/package.nix b/pkgs/by-name/li/limitcpu/package.nix index c3488092f72f..3280d14bb892 100644 --- a/pkgs/by-name/li/limitcpu/package.nix +++ b/pkgs/by-name/li/limitcpu/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://limitcpu.sourceforge.net/"; description = "Tool to throttle the CPU usage of programs"; - platforms = with platforms; linux ++ freebsd; - license = licenses.gpl2Only; - maintainers = [ maintainers.rycee ]; + platforms = with lib.platforms; linux ++ freebsd; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.rycee ]; mainProgram = "cpulimit"; }; } diff --git a/pkgs/by-name/li/linbox/package.nix b/pkgs/by-name/li/linbox/package.nix index 9ddefae70028..f78aaf1109c9 100644 --- a/pkgs/by-name/li/linbox/package.nix +++ b/pkgs/by-name/li/linbox/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "C++ library for exact, high-performance linear algebra"; mainProgram = "linbox-config"; - license = licenses.lgpl21Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; homepage = "https://linalg.org/"; }; } diff --git a/pkgs/by-name/li/line-awesome/package.nix b/pkgs/by-name/li/line-awesome/package.nix index 12bd35d1f31c..363130d4fcb7 100644 --- a/pkgs/by-name/li/line-awesome/package.nix +++ b/pkgs/by-name/li/line-awesome/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { cp *.woff2 $out/share/fonts/woff2 ''; - meta = with lib; { + meta = { description = "Replace Font Awesome with modern line icons"; longDescription = '' This package includes only the TTF, WOFF and WOFF2 fonts. For full CSS etc. see the project website. ''; homepage = "https://icons8.com/line-awesome"; - license = licenses.mit; - maintainers = with maintainers; [ puzzlewolf ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ puzzlewolf ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/lineselect/package.nix b/pkgs/by-name/li/lineselect/package.nix index 140ce971410e..d4c57da60ff9 100644 --- a/pkgs/by-name/li/lineselect/package.nix +++ b/pkgs/by-name/li/lineselect/package.nix @@ -29,10 +29,10 @@ buildNpmPackage rec { --add-flags $out/lib/node_modules/lineselect/dist/cli.js ''; - meta = with lib; { + meta = { description = "Shell utility to interactively select lines from stdin"; homepage = "https://github.com/chfritz/lineselect"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "lineselect"; }; diff --git a/pkgs/by-name/li/lingeling/package.nix b/pkgs/by-name/li/lingeling/package.nix index 6ca0b1fad952..ee5816caa73f 100644 --- a/pkgs/by-name/li/lingeling/package.nix +++ b/pkgs/by-name/li/lingeling/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation { "lib" ]; - meta = with lib; { + meta = { description = "Fast SAT solver"; homepage = "http://fmv.jku.at/lingeling/"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/li/lingua-franca/package.nix b/pkgs/by-name/li/lingua-franca/package.nix index 769c9e13d4c9..a38a325153b8 100644 --- a/pkgs/by-name/li/lingua-franca/package.nix +++ b/pkgs/by-name/li/lingua-franca/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { chmod +x $out/bin/lfc ''; - meta = with lib; { + meta = { description = "Polyglot coordination language"; longDescription = '' Lingua Franca (LF) is a polyglot coordination language for concurrent @@ -37,9 +37,9 @@ stdenv.mkDerivation rec { embedded code to distributed cloud and edge applications. ''; homepage = "https://github.com/lf-lang/lingua-franca"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ revol-xut ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ revol-xut ]; }; } diff --git a/pkgs/by-name/li/linja-pi-pu-lukin/package.nix b/pkgs/by-name/li/linja-pi-pu-lukin/package.nix index de46fa570e52..98d0ff97a165 100644 --- a/pkgs/by-name/li/linja-pi-pu-lukin/package.nix +++ b/pkgs/by-name/li/linja-pi-pu-lukin/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Sitelen pona font resembling the style found in Toki Pona: The Language of Good (lipu pu), by jan Sa"; homepage = "https://jansa-tp.github.io/linja-pi-pu-lukin/"; - license = licenses.unfree; # license is unspecified in repository - platforms = platforms.all; - maintainers = with maintainers; [ somasis ]; + license = lib.licenses.unfree; # license is unspecified in repository + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ somasis ]; }; } diff --git a/pkgs/by-name/li/linja-sike/package.nix b/pkgs/by-name/li/linja-sike/package.nix index c5fed186c67c..0bbb4f801bc7 100644 --- a/pkgs/by-name/li/linja-sike/package.nix +++ b/pkgs/by-name/li/linja-sike/package.nix @@ -14,12 +14,12 @@ fetchurl { sha256 = "sha256-LkjG1Oao/LqKwI+eRZPzShTh7lz5DkooltXm7vxZC9w="; - meta = with lib; { + meta = { description = "Extensive sitelen pona font by lipamanka"; homepage = "https://docs.google.com/document/d/1d8kUIAVlB-JNgK3LWr_zVCuUOZTh2hF7CfC6xQgxsBs/edit?usp=sharing"; downloadPage = "https://wyub.github.io/tokipona/linjasike"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ somasis ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ somasis ]; }; } diff --git a/pkgs/by-name/li/links2/package.nix b/pkgs/by-name/li/links2/package.nix index 4d9e4d4628b0..bbc99d936845 100644 --- a/pkgs/by-name/li/links2/package.nix +++ b/pkgs/by-name/li/links2/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: { NIX_CFLAGS_COMPILE = "-Wno-error=implicit-int"; }; - meta = with lib; { + meta = { homepage = "http://links.twibright.com/"; description = "Small browser with some graphics support"; - maintainers = with maintainers; [ raskin ]; + maintainers = with lib.maintainers; [ raskin ]; mainProgram = "links"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/lint-staged/package.nix b/pkgs/by-name/li/lint-staged/package.nix index 14692450371b..7d77eca1fa6e 100644 --- a/pkgs/by-name/li/lint-staged/package.nix +++ b/pkgs/by-name/li/lint-staged/package.nix @@ -30,14 +30,14 @@ buildNpmPackage rec { passthru.tests.version = testers.testVersion { package = lint-staged; }; - meta = with lib; { + meta = { description = "Run linters on git staged files"; longDescription = '' Run linters against staged git files and don't let 💩 slip into your code base! ''; homepage = src.meta.homepage; - license = licenses.mit; - maintainers = with maintainers; [ DamienCassou ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DamienCassou ]; mainProgram = "lint-staged"; }; } diff --git a/pkgs/by-name/li/linux-exploit-suggester/package.nix b/pkgs/by-name/li/linux-exploit-suggester/package.nix index e98b189c7cd5..ae6373e809e0 100644 --- a/pkgs/by-name/li/linux-exploit-suggester/package.nix +++ b/pkgs/by-name/li/linux-exploit-suggester/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool designed to assist in detecting security deficiencies for given Linux kernel/Linux-based machine"; mainProgram = "linux-exploit-suggester"; homepage = "https://github.com/mzet-/linux-exploit-suggester"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/linux-scripts/package.nix b/pkgs/by-name/li/linux-scripts/package.nix index 479fcafecfd3..0d45c3b074f1 100644 --- a/pkgs/by-name/li/linux-scripts/package.nix +++ b/pkgs/by-name/li/linux-scripts/package.nix @@ -54,11 +54,11 @@ stdenvNoCC.mkDerivation { ${toWrapScriptLines "extract-vmlinux"} ''; - meta = with lib; { + meta = { description = "Standalone scripts from /scripts"; homepage = "https://www.kernel.org/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.phip1611 ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.phip1611 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/linux-wifi-hotspot/package.nix b/pkgs/by-name/li/linux-wifi-hotspot/package.nix index 75ab89eef600..4f10506fc3e3 100644 --- a/pkgs/by-name/li/linux-wifi-hotspot/package.nix +++ b/pkgs/by-name/li/linux-wifi-hotspot/package.nix @@ -94,15 +94,15 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : "${placeholder "out"}/bin" ''; - meta = with lib; { + meta = { description = "Feature-rich wifi hotspot creator for Linux which provides both GUI and command-line interface"; homepage = "https://github.com/lakinduakash/linux-wifi-hotspot"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ johnrtitor onny ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/linuxConsoleTools/package.nix b/pkgs/by-name/li/linuxConsoleTools/package.nix index 79b9fdcfbe2f..65f6b9a63d29 100644 --- a/pkgs/by-name/li/linuxConsoleTools/package.nix +++ b/pkgs/by-name/li/linuxConsoleTools/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/linuxconsole/"; description = "Set of tools for joysticks and serial peripherals"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ebzzry ]; diff --git a/pkgs/by-name/li/linux_logo/package.nix b/pkgs/by-name/li/linux_logo/package.nix index 85da3509bd6c..41eb8dc129de 100644 --- a/pkgs/by-name/li/linux_logo/package.nix +++ b/pkgs/by-name/li/linux_logo/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { which ]; - meta = with lib; { + meta = { description = "Prints an ASCII logo and some system info"; mainProgram = "linux_logo"; homepage = "http://www.deater.net/weave/vmwprod/linux_logo"; changelog = "https://github.com/deater/linux_logo/blob/${src.rev}/CHANGES"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/linuxdoc-tools/package.nix b/pkgs/by-name/li/linuxdoc-tools/package.nix index 3da32b0f6fd4..91b418d37fbc 100644 --- a/pkgs/by-name/li/linuxdoc-tools/package.nix +++ b/pkgs/by-name/li/linuxdoc-tools/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation rec { ] ++ lib.optionals withLatex [ texliveMedium ]; - meta = with lib; { + meta = { description = "Toolset for processing LinuxDoc DTD SGML files"; longDescription = '' A collection of text formatters which understands a LinuxDoc DTD SGML @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { documents written in LinuxDoc DTD sgml source. ''; homepage = "https://gitlab.com/agmartin/linuxdoc-tools"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit sgmlug ]; - platforms = platforms.linux; - maintainers = with maintainers; [ p-h ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ p-h ]; }; } diff --git a/pkgs/by-name/li/linuxptp/package.nix b/pkgs/by-name/li/linuxptp/package.nix index 3b02c68f1221..c4cc9e76655e 100644 --- a/pkgs/by-name/li/linuxptp/package.nix +++ b/pkgs/by-name/li/linuxptp/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Implementation of the Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux"; homepage = "https://linuxptp.nwtime.org"; - maintainers = [ maintainers.markuskowa ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/linuxquota/package.nix b/pkgs/by-name/li/linuxquota/package.nix index 04e5d71dbe9c..6a1062cde7c5 100644 --- a/pkgs/by-name/li/linuxquota/package.nix +++ b/pkgs/by-name/li/linuxquota/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { execer cannot bin/quota ''; - meta = with lib; { + meta = { description = "Tools to manage kernel-level quotas in Linux"; homepage = "https://sourceforge.net/projects/linuxquota/"; - license = licenses.gpl2Plus; # With some files being BSD as an exception - platforms = platforms.linux; - maintainers = [ maintainers.dezgeg ]; + license = lib.licenses.gpl2Plus; # With some files being BSD as an exception + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.dezgeg ]; }; } diff --git a/pkgs/by-name/li/linx-server/package.nix b/pkgs/by-name/li/linx-server/package.nix index 9e895bd600e3..e712312b321d 100644 --- a/pkgs/by-name/li/linx-server/package.nix +++ b/pkgs/by-name/li/linx-server/package.nix @@ -25,10 +25,10 @@ buildGoModule { preBuild = "rice embed-go"; - meta = with lib; { + meta = { description = "Self-hosted file/code/media sharing website"; homepage = "https://put.icu"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/li/lipl/package.nix b/pkgs/by-name/li/lipl/package.nix index 72d2c0734460..e87cfe6c36ee 100644 --- a/pkgs/by-name/li/lipl/package.nix +++ b/pkgs/by-name/li/lipl/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-TA/EP2CJceKNzPBV8K24Pyly1oj3tyIkpdPZJ9Zh81E="; - meta = with lib; { + meta = { description = "Command line tool to analyse the output over time of custom shell commands"; homepage = "https://github.com/yxdunc/lipl"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "lipl"; }; diff --git a/pkgs/by-name/li/liquibase/package.nix b/pkgs/by-name/li/liquibase/package.nix index b78ae4d23e72..480f9e53494c 100644 --- a/pkgs/by-name/li/liquibase/package.nix +++ b/pkgs/by-name/li/liquibase/package.nix @@ -86,14 +86,14 @@ stdenv.mkDerivation (finalAttrs: { ignoredVersions = "10.10.10|5.0.0|.*-beta.*"; }; - meta = with lib; { + meta = { description = "Version Control for your database"; mainProgram = "liquibase"; homepage = "https://www.liquibase.org/"; changelog = "https://raw.githubusercontent.com/liquibase/liquibase/v${finalAttrs.version}/changelog.txt"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ jsoo1 ]; - platforms = with platforms; unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jsoo1 ]; + platforms = with lib.platforms; unix; }; }) diff --git a/pkgs/by-name/li/liquibase_redshift_extension/package.nix b/pkgs/by-name/li/liquibase_redshift_extension/package.nix index 705dbf2b283d..01d9e6edfa60 100644 --- a/pkgs/by-name/li/liquibase_redshift_extension/package.nix +++ b/pkgs/by-name/li/liquibase_redshift_extension/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/liquibase/liquibase-redshift/"; description = "Amazon Redshift extension for Liquibase"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ sir4ur0n ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sir4ur0n ]; }; } diff --git a/pkgs/by-name/li/liquidfun/package.nix b/pkgs/by-name/li/liquidfun/package.nix index 210b61295e3b..8e060bd2707c 100644 --- a/pkgs/by-name/li/liquidfun/package.nix +++ b/pkgs/by-name/li/liquidfun/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { description = "2D physics engine based on Box2D"; - maintainers = with maintainers; [ qknight ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ qknight ]; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://google.github.io/liquidfun/"; }; } diff --git a/pkgs/by-name/li/liquidprompt/package.nix b/pkgs/by-name/li/liquidprompt/package.nix index 45ea18b01f37..0c546a193b4f 100644 --- a/pkgs/by-name/li/liquidprompt/package.nix +++ b/pkgs/by-name/li/liquidprompt/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Full-featured & carefully designed adaptive prompt for Bash & Zsh"; homepage = "https://github.com/liquidprompt/liquidprompt"; - license = licenses.agpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ gerschtli ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ gerschtli ]; }; } diff --git a/pkgs/by-name/li/lirc/package.nix b/pkgs/by-name/li/lirc/package.nix index 6108f4156e6b..21ccc1a8dd31 100644 --- a/pkgs/by-name/li/lirc/package.nix +++ b/pkgs/by-name/li/lirc/package.nix @@ -115,11 +115,11 @@ stdenv.mkDerivation rec { # Upstream ships broken symlinks in docs dontCheckForBrokenSymlinks = true; - meta = with lib; { + meta = { description = "Allows to receive and send infrared signals"; homepage = "https://www.lirc.org/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/li/lisgd/package.nix b/pkgs/by-name/li/lisgd/package.nix index 7ccc9e7f9cd3..a631f70ef566 100644 --- a/pkgs/by-name/li/lisgd/package.nix +++ b/pkgs/by-name/li/lisgd/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Bind gestures via libinput touch events"; mainProgram = "lisgd"; homepage = "https://git.sr.ht/~mil/lisgd"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/li/listadmin/package.nix b/pkgs/by-name/li/listadmin/package.nix index f99c749ef75d..a8283bd43d70 100644 --- a/pkgs/by-name/li/listadmin/package.nix +++ b/pkgs/by-name/li/listadmin/package.nix @@ -46,7 +46,7 @@ stdenvNoCC.mkDerivation rec { $out/bin/listadmin --help 2> /dev/null ''; - meta = with lib; { + meta = { description = "Command line mailman moderator queue manipulation"; longDescription = '' listadmin is a command line tool to manipulate the queues of messages @@ -56,9 +56,9 @@ stdenvNoCC.mkDerivation rec { filter, or it can match specific senders, subjects, or reasons. ''; homepage = "https://sourceforge.net/projects/listadmin/"; - license = licenses.publicDomain; - platforms = platforms.unix; - maintainers = with maintainers; [ nomeata ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nomeata ]; mainProgram = "listadmin"; }; } diff --git a/pkgs/by-name/li/listen1/package.nix b/pkgs/by-name/li/listen1/package.nix index 69eadb71aeed..8205313a331c 100644 --- a/pkgs/by-name/li/listen1/package.nix +++ b/pkgs/by-name/li/listen1/package.nix @@ -24,13 +24,13 @@ appimageTools.wrapType2 { $out/share/icons/hicolor/512x512/apps/listen1.png ''; - meta = with lib; { + meta = { description = "One for all free music in China"; homepage = "http://listen1.github.io/listen1/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "listen1"; }; } diff --git a/pkgs/by-name/li/lite/package.nix b/pkgs/by-name/li/lite/package.nix index a32d3bdd3d24..9072ec76f914 100644 --- a/pkgs/by-name/li/lite/package.nix +++ b/pkgs/by-name/li/lite/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { makeWrapper $out/lib/lite/lite $out/bin/lite ''; - meta = with lib; { + meta = { description = "Lightweight text editor written in Lua"; homepage = "https://github.com/rxi/lite"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "lite"; }; } diff --git a/pkgs/by-name/li/litebrowser/package.nix b/pkgs/by-name/li/litebrowser/package.nix index 8ceac80212ab..a01aba6bad8f 100644 --- a/pkgs/by-name/li/litebrowser/package.nix +++ b/pkgs/by-name/li/litebrowser/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.cc.isClang; # https://github.com/litehtml/litebrowser-linux/issues/19 description = "Simple browser based on the litehtml engine"; mainProgram = "litebrowser"; homepage = "https://github.com/litehtml/litebrowser-linux"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/li/litefs/package.nix b/pkgs/by-name/li/litefs/package.nix index 455b77971f8a..9da94cbdd2d2 100644 --- a/pkgs/by-name/li/litefs/package.nix +++ b/pkgs/by-name/li/litefs/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { doCheck = false; # fails - meta = with lib; { + meta = { description = "FUSE-based file system for replicating SQLite databases across a cluster of machines"; homepage = "https://github.com/superfly/litefs"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "litefs"; }; } diff --git a/pkgs/by-name/li/litehtml/package.nix b/pkgs/by-name/li/litehtml/package.nix index d111b8dd538c..b5db137ce7c4 100644 --- a/pkgs/by-name/li/litehtml/package.nix +++ b/pkgs/by-name/li/litehtml/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { "-DLITEHTML_BUILD_TESTING=OFF" ]; - meta = with lib; { + meta = { description = "Fast and lightweight HTML/CSS rendering engine"; homepage = "http://www.litehtml.com/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; }; }) diff --git a/pkgs/by-name/li/litestream/package.nix b/pkgs/by-name/li/litestream/package.nix index f6414af6ef24..8ceedb0a788d 100644 --- a/pkgs/by-name/li/litestream/package.nix +++ b/pkgs/by-name/li/litestream/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) litestream; }; - meta = with lib; { + meta = { description = "Streaming replication for SQLite"; mainProgram = "litestream"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://litestream.io/"; - maintainers = with maintainers; [ fbrs ]; + maintainers = with lib.maintainers; [ fbrs ]; }; } diff --git a/pkgs/by-name/li/litmus/package.nix b/pkgs/by-name/li/litmus/package.nix index 076c4ed83c3d..bba8e4c038b2 100644 --- a/pkgs/by-name/li/litmus/package.nix +++ b/pkgs/by-name/li/litmus/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { "neon/macros" ]; - meta = with lib; { + meta = { description = "WebDAV server protocol compliance test suite"; homepage = "http://www.webdav.org/neon/litmus/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.lorenz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.lorenz ]; mainProgram = "litmus"; }; } diff --git a/pkgs/by-name/li/litterbox/package.nix b/pkgs/by-name/li/litterbox/package.nix index f5210ef13d30..455b12c0d3a5 100644 --- a/pkgs/by-name/li/litterbox/package.nix +++ b/pkgs/by-name/li/litterbox/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { buildFlags = [ "all" ]; - meta = with lib; { + meta = { description = "Simple TLS-only IRC logger"; homepage = "https://code.causal.agency/june/litterbox"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "litterbox"; - maintainers = with maintainers; [ ajwhouse ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ajwhouse ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/little_boxes/package.nix b/pkgs/by-name/li/little_boxes/package.nix index 7d9178af1469..9c39f1ad3abd 100644 --- a/pkgs/by-name/li/little_boxes/package.nix +++ b/pkgs/by-name/li/little_boxes/package.nix @@ -36,7 +36,7 @@ rustPlatform.buildRustPackage rec { command = "little_boxes --version"; }; - meta = with lib; { + meta = { description = "Add boxes are input text"; longDescription = '' little_boxes is a small program that takes input from stdin or a file @@ -51,8 +51,8 @@ rustPlatform.buildRustPackage rec { ┗━━━━━━━━━━━━━┛ ''; homepage = "https://github.com/giodamelio/little_boxes"; - license = licenses.mit; - maintainers = with maintainers; [ giodamelio ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ giodamelio ]; mainProgram = "little_boxes"; }; } diff --git a/pkgs/by-name/li/livecaptions/package.nix b/pkgs/by-name/li/livecaptions/package.nix index f78390a8489d..b7eb32470863 100644 --- a/pkgs/by-name/li/livecaptions/package.nix +++ b/pkgs/by-name/li/livecaptions/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = with lib; { + meta = { description = "Linux Desktop application that provides live captioning"; homepage = "https://github.com/abb128/LiveCaptions"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Scrumplex ]; mainProgram = "livecaptions"; }; }) diff --git a/pkgs/by-name/li/livedl/package.nix b/pkgs/by-name/li/livedl/package.nix index 82304bcfbd50..8ee5c96531bd 100644 --- a/pkgs/by-name/li/livedl/package.nix +++ b/pkgs/by-name/li/livedl/package.nix @@ -21,12 +21,12 @@ buildGoModule { proxyVendor = true; vendorHash = "sha256-C7lUusq/cWBCnA2wP9fzQglJCXvQyvFG4JY13H0cP6g="; - meta = with lib; { + meta = { description = "Command-line tool to download nicovideo.jp livestreams"; homepage = "https://github.com/himananiito/livedl"; - license = licenses.mit; - maintainers = with maintainers; [ wakira ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wakira ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; broken = stdenv.hostPlatform.isDarwin; # build fails with go > 1.17 mainProgram = "livedl"; }; diff --git a/pkgs/by-name/li/livekit-cli/package.nix b/pkgs/by-name/li/livekit-cli/package.nix index ea9716c6fd70..bb1297cf3cc9 100644 --- a/pkgs/by-name/li/livekit-cli/package.nix +++ b/pkgs/by-name/li/livekit-cli/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "cmd/livekit-cli" ]; - meta = with lib; { + meta = { description = "Command line interface to LiveKit"; homepage = "https://livekit.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ mgdelacroix ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mgdelacroix ]; mainProgram = "livekit-cli"; }; } diff --git a/pkgs/by-name/li/livekit/package.nix b/pkgs/by-name/li/livekit/package.nix index 0d4ef3b07c4c..a9493b824345 100644 --- a/pkgs/by-name/li/livekit/package.nix +++ b/pkgs/by-name/li/livekit/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { passthru.tests = nixosTests.livekit; - meta = with lib; { + meta = { description = "End-to-end stack for WebRTC. SFU media server and SDKs"; homepage = "https://livekit.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ mgdelacroix ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mgdelacroix ]; mainProgram = "livekit-server"; }; } diff --git a/pkgs/by-name/lk/lk-jwt-service/package.nix b/pkgs/by-name/lk/lk-jwt-service/package.nix index 7e61f3a6deb3..0f1331ef934a 100644 --- a/pkgs/by-name/lk/lk-jwt-service/package.nix +++ b/pkgs/by-name/lk/lk-jwt-service/package.nix @@ -20,12 +20,12 @@ buildGoModule (finalAttrs: { passthru.tests = nixosTests.lk-jwt-service; - meta = with lib; { + meta = { changelog = "https://github.com/element-hq/lk-jwt-service/releases/tag/${finalAttrs.src.tag}"; description = "Minimal service to issue LiveKit JWTs for MatrixRTC"; homepage = "https://github.com/element-hq/lk-jwt-service"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ kilimnik ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ kilimnik ]; mainProgram = "lk-jwt-service"; }; }) diff --git a/pkgs/by-name/lk/lkl/package.nix b/pkgs/by-name/lk/lkl/package.nix index 2585c2d3a62a..1d6ae37fdddd 100644 --- a/pkgs/by-name/lk/lkl/package.nix +++ b/pkgs/by-name/lk/lkl/package.nix @@ -114,7 +114,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Linux kernel as a library"; longDescription = '' LKL (Linux Kernel Library) aims to allow reusing the Linux kernel code as @@ -122,9 +122,9 @@ stdenv.mkDerivation { overhead ''; homepage = "https://github.com/lkl/linux/"; - platforms = platforms.linux; # Darwin probably works too but I haven't tested it - license = licenses.gpl2; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; # Darwin probably works too but I haven't tested it + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ timschumi ]; }; diff --git a/pkgs/by-name/lk/lklug-sinhala/package.nix b/pkgs/by-name/lk/lklug-sinhala/package.nix index de313a2ca756..010331be6a93 100644 --- a/pkgs/by-name/lk/lklug-sinhala/package.nix +++ b/pkgs/by-name/lk/lklug-sinhala/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode Sinhala font by Lanka Linux User Group"; homepage = "http://www.lug.lk/fonts/lklug"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ serge ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lk/lkproof/package.nix b/pkgs/by-name/lk/lkproof/package.nix index 88b70bb29d6b..63be05c57638 100644 --- a/pkgs/by-name/lk/lkproof/package.nix +++ b/pkgs/by-name/lk/lkproof/package.nix @@ -21,8 +21,8 @@ stdenv.mkDerivation { cp -prd *.sty $out/share/texmf-nix/tex/generic/lkproof "; - meta = with lib; { - platforms = platforms.unix; - license = licenses.gpl1Plus; + meta = { + platforms = lib.platforms.unix; + license = lib.licenses.gpl1Plus; }; } diff --git a/pkgs/by-name/lk/lksctp-tools/package.nix b/pkgs/by-name/lk/lksctp-tools/package.nix index 8958dff70378..aa5c7a9ca6bc 100644 --- a/pkgs/by-name/lk/lksctp-tools/package.nix +++ b/pkgs/by-name/lk/lksctp-tools/package.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Linux Kernel Stream Control Transmission Protocol Tools"; homepage = "https://github.com/sctp/lksctp-tools/wiki"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21 ]; # library is lgpl21 - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ll/lldap/package.nix b/pkgs/by-name/ll/lldap/package.nix index b03c0b314574..74779b5afc8b 100644 --- a/pkgs/by-name/ll/lldap/package.nix +++ b/pkgs/by-name/ll/lldap/package.nix @@ -126,13 +126,13 @@ rustPlatform.buildRustPackage ( }; }; - meta = with lib; { + meta = { description = "Lightweight authentication server that provides an opinionated, simplified LDAP interface for authentication"; homepage = "https://github.com/lldap/lldap"; changelog = "https://github.com/lldap/lldap/blob/v${lldap.version}/CHANGELOG.md"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bendlas ibizaman ]; diff --git a/pkgs/by-name/ll/lldpd/package.nix b/pkgs/by-name/ll/lldpd/package.nix index 5cfad1396ea9..454b7903b0fb 100644 --- a/pkgs/by-name/ll/lldpd/package.nix +++ b/pkgs/by-name/ll/lldpd/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { find $out -type f -exec remove-references-to -t ${stdenv.cc} '{}' + ''; - meta = with lib; { + meta = { description = "802.1ab implementation (LLDP) to help you locate neighbors of all your equipments"; homepage = "https://lldpd.github.io/"; - license = licenses.isc; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ll/llpp/package.nix b/pkgs/by-name/ll/llpp/package.nix index aba77bc08557..37c2e58533bd 100644 --- a/pkgs/by-name/ll/llpp/package.nix +++ b/pkgs/by-name/ll/llpp/package.nix @@ -85,14 +85,14 @@ stdenv.mkDerivation rec { --prefix PATH ":" "${procps}/bin" ''; - meta = with lib; { + meta = { homepage = "https://github.com/criticic/llpp"; description = "MuPDF based PDF pager written in OCaml"; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ pSub ]; license = [ - licenses.publicDomain - licenses.bsd3 + lib.licenses.publicDomain + lib.licenses.bsd3 ]; }; } diff --git a/pkgs/by-name/ll/lls/package.nix b/pkgs/by-name/ll/lls/package.nix index 98700eafb72d..b0630b0f83b5 100644 --- a/pkgs/by-name/ll/lls/package.nix +++ b/pkgs/by-name/ll/lls/package.nix @@ -16,14 +16,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-TY7s0sIeW+FgxqbbYvK3uZ2RwPLVKKhLq3DOurer+Gc="; - meta = with lib; { + meta = { description = "Tool to list listening sockets"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ - maintainers.k900 - maintainers.jcaesar + lib.maintainers.k900 + lib.maintainers.jcaesar ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "https://github.com/jcaesar/lls"; mainProgram = "lls"; }; diff --git a/pkgs/by-name/lm/lmmath/package.nix b/pkgs/by-name/lm/lmmath/package.nix index f043a546a8a3..58db2e36c080 100644 --- a/pkgs/by-name/lm/lmmath/package.nix +++ b/pkgs/by-name/lm/lmmath/package.nix @@ -24,14 +24,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Latin Modern Math (LM Math) font completes the modernization of the Computer Modern family of typefaces designed and programmed by Donald E. Knuth"; homepage = "https://www.gust.org.pl/projects/e-foundry/lm-math"; # "The Latin Modern Math font is licensed under the GUST Font License (GFL), # which is a free license, legally equivalent to the LaTeX Project Public # License (LPPL), version 1.3c or later." - GUST website - license = licenses.lppl13c; - maintainers = with maintainers; [ siddharthist ]; - platforms = platforms.all; + license = lib.licenses.lppl13c; + maintainers = with lib.maintainers; [ siddharthist ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lm/lmp/package.nix b/pkgs/by-name/lm/lmp/package.nix index f651b1d9046e..39c296f67e6d 100644 --- a/pkgs/by-name/lm/lmp/package.nix +++ b/pkgs/by-name/lm/lmp/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-3NTaJ/Y3Tc6UGLfYTKjZxAAI43GJyZQ5wQVYbnXHSYc="; - meta = with lib; { + meta = { description = "Scanning and validation toolkit for the Log4J vulnerability"; homepage = "https://github.com/0xInfection/LogMePwn"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "lmp"; }; } diff --git a/pkgs/by-name/ln/lnch/package.nix b/pkgs/by-name/ln/lnch/package.nix index af272abbde42..7b425c9385c7 100644 --- a/pkgs/by-name/ln/lnch/package.nix +++ b/pkgs/by-name/ln/lnch/package.nix @@ -22,10 +22,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/oem/lnch"; description = "Launches a process and moves it out of the process group"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "lnch"; }; } diff --git a/pkgs/by-name/ln/lnd/package.nix b/pkgs/by-name/ln/lnd/package.nix index 554808f5c76e..e127b5dc758c 100644 --- a/pkgs/by-name/ln/lnd/package.nix +++ b/pkgs/by-name/ln/lnd/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { inherit tags; - meta = with lib; { + meta = { description = "Lightning Network Daemon"; homepage = "https://github.com/lightningnetwork/lnd"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bleetube cypherpunk2140 prusnak diff --git a/pkgs/by-name/ln/lndconnect/package.nix b/pkgs/by-name/ln/lndconnect/package.nix index 55db70b56405..1ee58928f64a 100644 --- a/pkgs/by-name/ln/lndconnect/package.nix +++ b/pkgs/by-name/ln/lndconnect/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Generate QRCode to connect apps to lnd Resources"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/LN-Zap/lndconnect"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "lndconnect"; }; } diff --git a/pkgs/by-name/ln/lndhub-go/package.nix b/pkgs/by-name/ln/lndhub-go/package.nix index a8be86ad8a03..eaa6da614567 100644 --- a/pkgs/by-name/ln/lndhub-go/package.nix +++ b/pkgs/by-name/ln/lndhub-go/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = false; # tests require networking - meta = with lib; { + meta = { description = "Accounting wrapper for the Lightning Network"; homepage = "https://github.com/getAlby/lndhub.go"; - license = licenses.gpl3; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ prusnak ]; mainProgram = "lndhub.go"; }; } diff --git a/pkgs/by-name/ln/lndmanage/package.nix b/pkgs/by-name/ln/lndmanage/package.nix index 63a94ae318f8..9f77cc83c76f 100644 --- a/pkgs/by-name/ln/lndmanage/package.nix +++ b/pkgs/by-name/ln/lndmanage/package.nix @@ -45,11 +45,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "lndmanage" ]; - meta = with lib; { + meta = { description = "Channel management tool for lightning network daemon (LND) operators"; homepage = "https://github.com/bitromortac/lndmanage"; - license = licenses.mit; - maintainers = with maintainers; [ mmilata ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmilata ]; mainProgram = "lndmanage"; }; } diff --git a/pkgs/by-name/ln/lnx/package.nix b/pkgs/by-name/ln/lnx/package.nix index af4cd98cf222..3bad721f2788 100644 --- a/pkgs/by-name/ln/lnx/package.nix +++ b/pkgs/by-name/ln/lnx/package.nix @@ -20,12 +20,12 @@ rustPlatform.buildRustPackage { }; cargoHash = "sha256-9fro1Dx7P+P9NTsg0gtMfr0s4TEpkZA31EFAnObiNFo="; - meta = with lib; { + meta = { description = "Ultra-fast, adaptable deployment of the tantivy search engine via REST"; mainProgram = "lnx"; homepage = "https://lnx.rs/"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lo/loadlibrary/package.nix b/pkgs/by-name/lo/loadlibrary/package.nix index f1412096be20..d7ce17f9f729 100644 --- a/pkgs/by-name/lo/loadlibrary/package.nix +++ b/pkgs/by-name/lo/loadlibrary/package.nix @@ -30,12 +30,12 @@ stdenv_32bit.mkDerivation rec { cp mpclient $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/taviso/loadlibrary"; description = "Porting Windows Dynamic Link Libraries to Linux"; - platforms = platforms.linux; - maintainers = [ maintainers.eleanor ]; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.eleanor ]; + license = lib.licenses.gpl2Plus; mainProgram = "mpclient"; }; } diff --git a/pkgs/by-name/lo/lobster/package.nix b/pkgs/by-name/lo/lobster/package.nix index b8a2826bf3d3..929fd261d3a8 100644 --- a/pkgs/by-name/lo/lobster/package.nix +++ b/pkgs/by-name/lo/lobster/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix { }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://strlen.com/lobster/"; description = "Lobster programming language"; @@ -54,8 +54,8 @@ stdenv.mkDerivation (finalAttrs: { very static typing and memory management with a very lightweight, friendly and terse syntax, by doing most of the heavy lifting for you. ''; - license = licenses.asl20; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/lo/local-ai/package.nix b/pkgs/by-name/lo/local-ai/package.nix index 7f166b3a1eb5..7e1d70a13530 100644 --- a/pkgs/by-name/lo/local-ai/package.nix +++ b/pkgs/by-name/lo/local-ai/package.nix @@ -528,16 +528,16 @@ let passthru.tests = callPackages ./tests.nix { inherit self; }; passthru.lib = callPackages ./lib.nix { }; - meta = with lib; { + meta = { description = "OpenAI alternative to run local LLMs, image and audio generation"; mainProgram = "local-ai"; homepage = "https://localai.io"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ck3d ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; # Doesn't build with >buildGo123Module. # 'cp: cannot stat 'bin/rpc-server': No such file or directory' broken = true; diff --git a/pkgs/by-name/lo/localproxy/package.nix b/pkgs/by-name/lo/localproxy/package.nix index 94aac1acb208..89c8e45be70a 100644 --- a/pkgs/by-name/lo/localproxy/package.nix +++ b/pkgs/by-name/lo/localproxy/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "AWS IoT Secure Tunneling Local Proxy Reference Implementation C++"; homepage = "https://github.com/aws-samples/aws-iot-securetunneling-localproxy"; - license = licenses.asl20; - maintainers = with maintainers; [ spalf ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ spalf ]; + platforms = lib.platforms.unix; mainProgram = "localproxy"; }; }) diff --git a/pkgs/by-name/lo/localstack/package.nix b/pkgs/by-name/lo/localstack/package.nix index 94fad26e2c00..b9e939aab4a5 100644 --- a/pkgs/by-name/lo/localstack/package.nix +++ b/pkgs/by-name/lo/localstack/package.nix @@ -65,10 +65,10 @@ python3.pkgs.buildPythonApplication rec { rm $out/nix-support/propagated-build-inputs ''; - meta = with lib; { + meta = { description = "Fully functional local Cloud stack"; homepage = "https://github.com/localstack/localstack"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "localstack"; }; diff --git a/pkgs/by-name/lo/localtime/package.nix b/pkgs/by-name/lo/localtime/package.nix index d32cbf759d51..6c1de739eee4 100644 --- a/pkgs/by-name/lo/localtime/package.nix +++ b/pkgs/by-name/lo/localtime/package.nix @@ -34,12 +34,12 @@ buildGoModule { runHook postInstall ''; - meta = with lib; { + meta = { description = "Daemon for keeping the system timezone up-to-date based on the current location"; homepage = "https://github.com/Stebalien/localtime"; - maintainers = with maintainers; [ lovesegfault ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ lovesegfault ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; mainProgram = "localtimed"; }; } diff --git a/pkgs/by-name/lo/locate-dominating-file/package.nix b/pkgs/by-name/lo/locate-dominating-file/package.nix index ece548fc56c7..d5bbca6851dd 100644 --- a/pkgs/by-name/lo/locate-dominating-file/package.nix +++ b/pkgs/by-name/lo/locate-dominating-file/package.nix @@ -66,12 +66,12 @@ resholve.mkDerivation { ]; }; - meta = with lib; { + meta = { homepage = "https://github.com/roman/locate-dominating-file"; description = "Program that looks up in a directory hierarchy for a given filename"; - license = licenses.mit; - maintainers = [ maintainers.roman ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.roman ]; + platforms = lib.platforms.all; mainProgram = "locate-dominating-file"; }; } diff --git a/pkgs/by-name/lo/loccount/package.nix b/pkgs/by-name/lo/loccount/package.nix index 0e96f32f7d10..b4c914dee478 100644 --- a/pkgs/by-name/lo/loccount/package.nix +++ b/pkgs/by-name/lo/loccount/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { go generate ''; - meta = with lib; { + meta = { description = "Re-implementation of sloccount in Go"; mainProgram = "loccount"; longDescription = '' @@ -48,7 +48,7 @@ buildGoModule rec { ''; homepage = "https://gitlab.com/esr/loccount"; downloadPage = "https://gitlab.com/esr/loccount/tree/master"; - license = licenses.bsd2; - maintainers = with maintainers; [ calvertvl ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ calvertvl ]; }; } diff --git a/pkgs/by-name/lo/log4cpp/package.nix b/pkgs/by-name/lo/log4cpp/package.nix index cdccc9019582..f1321e5c1420 100644 --- a/pkgs/by-name/lo/log4cpp/package.nix +++ b/pkgs/by-name/lo/log4cpp/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://log4cpp.sourceforge.net/"; description = "Logging framework for C++ patterned after Apache log4j"; mainProgram = "log4cpp-config"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lo/log4shib/package.nix b/pkgs/by-name/lo/log4shib/package.nix index 4933c3552fc8..ef90d78fecbd 100644 --- a/pkgs/by-name/lo/log4shib/package.nix +++ b/pkgs/by-name/lo/log4shib/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { CXXFLAGS = "-std=c++11"; - meta = with lib; { + meta = { description = "Forked version of log4cpp that has been created for the Shibboleth project"; mainProgram = "log4shib-config"; maintainers = [ ]; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; homepage = "http://log4cpp.sf.net"; }; } diff --git a/pkgs/by-name/lo/logcheck/package.nix b/pkgs/by-name/lo/logcheck/package.nix index 6588e726f57c..0f4861ca51e8 100644 --- a/pkgs/by-name/lo/logcheck/package.nix +++ b/pkgs/by-name/lo/logcheck/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { "SHAREDIR=share/logtail/detectrotate" ]; - meta = with lib; { + meta = { description = "Mails anomalies in the system logfiles to the administrator"; longDescription = '' Mails anomalies in the system logfiles to the administrator. @@ -48,6 +48,6 @@ stdenv.mkDerivation rec { Logcheck was part of the Abacus Project of security tools, but this version has been rewritten. ''; homepage = "https://salsa.debian.org/debian/logcheck"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/lo/logiops/package.nix b/pkgs/by-name/lo/logiops/package.nix index f8c5054033de..e2e136bb170c 100644 --- a/pkgs/by-name/lo/logiops/package.nix +++ b/pkgs/by-name/lo/logiops/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation (oldAttrs: { PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system"; - meta = with lib; { + meta = { description = "Unofficial userspace driver for HID++ Logitech devices"; mainProgram = "logid"; homepage = "https://github.com/PixlOne/logiops"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/by-name/lo/logiops_0_2_3/package.nix b/pkgs/by-name/lo/logiops_0_2_3/package.nix index 99c8415134cc..7c08fb49023c 100644 --- a/pkgs/by-name/lo/logiops_0_2_3/package.nix +++ b/pkgs/by-name/lo/logiops_0_2_3/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { libconfig ]; - meta = with lib; { + meta = { description = "Unofficial userspace driver for HID++ Logitech devices"; mainProgram = "logid"; homepage = "https://github.com/PixlOne/logiops"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/lo/logkeys/package.nix b/pkgs/by-name/lo/logkeys/package.nix index 812028117977..b332c646d320 100644 --- a/pkgs/by-name/lo/logkeys/package.nix +++ b/pkgs/by-name/lo/logkeys/package.nix @@ -41,14 +41,14 @@ stdenv.mkDerivation { passthru.tests.nixos = nixosTests.logkeys; - meta = with lib; { + meta = { description = "GNU/Linux keylogger that works"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/kernc/logkeys"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mikoim offline ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/lo/logmap/package.nix b/pkgs/by-name/lo/logmap/package.nix index 86764e0676a0..a7045c8092bf 100644 --- a/pkgs/by-name/lo/logmap/package.nix +++ b/pkgs/by-name/lo/logmap/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tools for fuzzing Log4j2 jndi injection"; homepage = "https://github.com/zhzyker/logmap"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "logmap"; }; } diff --git a/pkgs/by-name/lo/logmein-hamachi/package.nix b/pkgs/by-name/lo/logmein-hamachi/package.nix index 04e4e30baaac..3207267c3b3d 100644 --- a/pkgs/by-name/lo/logmein-hamachi/package.nix +++ b/pkgs/by-name/lo/logmein-hamachi/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation rec { dontStrip = true; dontPatchELF = true; - meta = with lib; { + meta = { description = "Hosted VPN service that lets you securely extend LAN-like networks to distributed teams"; homepage = "https://secure.logmein.com/products/hamachi/"; changelog = "https://support.logmeininc.com/central/help/whats-new-in-hamachi"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/lo/logrotate/package.nix b/pkgs/by-name/lo/logrotate/package.nix index 70642b44ef13..e8882b8bae82 100644 --- a/pkgs/by-name/lo/logrotate/package.nix +++ b/pkgs/by-name/lo/logrotate/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { nixos-logrotate = nixosTests.logrotate; }; - meta = with lib; { + meta = { homepage = "https://github.com/logrotate/logrotate"; description = "Rotates and compresses system logs"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.tobim ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.tobim ]; + platforms = lib.platforms.all; mainProgram = "logrotate"; }; } diff --git a/pkgs/by-name/lo/logstalgia/package.nix b/pkgs/by-name/lo/logstalgia/package.nix index 52ffb5aca6aa..20423522109c 100644 --- a/pkgs/by-name/lo/logstalgia/package.nix +++ b/pkgs/by-name/lo/logstalgia/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { "--with-boost-filesystem=boost_filesystem" ]; - meta = with lib; { + meta = { homepage = "https://logstalgia.io/"; description = "Website traffic visualization tool"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' Logstalgia is a website traffic visualization that replays or @@ -73,8 +73,8 @@ stdenv.mkDerivation rec { a Miscellaneous section. ''; - platforms = platforms.gnu ++ platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.gnu ++ lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "logstalgia"; }; } diff --git a/pkgs/by-name/lo/logtop/package.nix b/pkgs/by-name/lo/logtop/package.nix index fb756a9c1833..f2b9f68d3511 100644 --- a/pkgs/by-name/lo/logtop/package.nix +++ b/pkgs/by-name/lo/logtop/package.nix @@ -31,17 +31,17 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace /usr "" ''; - meta = with lib; { + meta = { description = "Displays a real-time count of strings received from stdin"; longDescription = '' logtop displays a real-time count of strings received from stdin. It can be useful in some cases, like getting the IP flooding your server or the top buzzing article of your blog ''; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://github.com/JulienPalard/logtop"; - platforms = platforms.unix; - maintainers = [ maintainers.starcraft66 ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.starcraft66 ]; mainProgram = "logtop"; }; } diff --git a/pkgs/by-name/lo/lokalise2-cli/package.nix b/pkgs/by-name/lo/lokalise2-cli/package.nix index f6c53649100f..06117d14763f 100644 --- a/pkgs/by-name/lo/lokalise2-cli/package.nix +++ b/pkgs/by-name/lo/lokalise2-cli/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { mv $out/bin/lokalise-cli-2-go $out/bin/lokalise2 ''; - meta = with lib; { + meta = { description = "Translation platform for developers. Upload language files, translate, integrate via API"; homepage = "https://lokalise.com"; - license = licenses.bsd3; - maintainers = with maintainers; [ timstott ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ timstott ]; mainProgram = "lokalise2"; }; } diff --git a/pkgs/by-name/lo/loki/package.nix b/pkgs/by-name/lo/loki/package.nix index fbafd989a308..15fa6e8b2121 100644 --- a/pkgs/by-name/lo/loki/package.nix +++ b/pkgs/by-name/lo/loki/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "C++ library of designs, containing flexible implementations of common design patterns and idioms"; homepage = "https://loki-lib.sourceforge.net"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/by-name/lo/lolcode/package.nix b/pkgs/by-name/lo/lolcode/package.nix index 0a61347d282c..ec6e3efaab6c 100644 --- a/pkgs/by-name/lo/lolcode/package.nix +++ b/pkgs/by-name/lo/lolcode/package.nix @@ -39,14 +39,14 @@ stdenv.mkDerivation rec { # Maybe it clashes with lci scientific logic software package... postInstall = "mv $out/bin/lci $out/bin/lolcode-lci"; - meta = with lib; { + meta = { homepage = "http://lolcode.org"; description = "Esoteric programming language"; longDescription = '' LOLCODE is a funny esoteric programming language, a bit Pascal-like, whose keywords are LOLspeak. ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "lolcode-lci"; platforms = lib.platforms.unix; diff --git a/pkgs/by-name/lo/longview/package.nix b/pkgs/by-name/lo/longview/package.nix index 4ee5e4f983de..a7c6d684617c 100644 --- a/pkgs/by-name/lo/longview/package.nix +++ b/pkgs/by-name/lo/longview/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { --suffix PERL5LIB : $out --suffix INC : $out ''; - meta = with lib; { + meta = { homepage = "https://www.linode.com/longview"; description = "Collects all of your system-level metrics and sends them to Linode"; mainProgram = "longview"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.rvl ]; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.rvl ]; inherit version; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/lo/looking-glass-client/package.nix b/pkgs/by-name/lo/looking-glass-client/package.nix index cc2c8f8172a1..00d152b715cb 100644 --- a/pkgs/by-name/lo/looking-glass-client/package.nix +++ b/pkgs/by-name/lo/looking-glass-client/package.nix @@ -117,7 +117,7 @@ stdenv.mkDerivation (finalAttrs: { cp $src/resources/lg-logo.png $out/share/pixmaps ''; - meta = with lib; { + meta = { description = "KVM Frame Relay (KVMFR) implementation"; longDescription = '' Looking Glass is an open source application that allows the use of a KVM @@ -127,9 +127,9 @@ stdenv.mkDerivation (finalAttrs: { for legacy programs that require high performance graphics. ''; homepage = "https://looking-glass.io/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "looking-glass-client"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ alexbakker babbaj j-brn diff --git a/pkgs/by-name/lo/lorien/package.nix b/pkgs/by-name/lo/lorien/package.nix index 664b5453cef8..614d46b80c6e 100644 --- a/pkgs/by-name/lo/lorien/package.nix +++ b/pkgs/by-name/lo/lorien/package.nix @@ -126,16 +126,16 @@ stdenv.mkDerivation rec { udev ]; - meta = with lib; { + meta = { homepage = "https://github.com/mbrlabs/Lorien"; description = "Infinite canvas drawing/note-taking app"; longDescription = '' An infinite canvas drawing/note-taking app that is focused on performance, small savefiles and simplicity ''; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ hqurve ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ hqurve ]; mainProgram = "lorien"; }; } diff --git a/pkgs/by-name/lo/lorri/package.nix b/pkgs/by-name/lo/lorri/package.nix index 44565d92ffd6..cd7682af8d08 100644 --- a/pkgs/by-name/lo/lorri/package.nix +++ b/pkgs/by-name/lo/lorri/package.nix @@ -64,11 +64,11 @@ in }; }; - meta = with lib; { + meta = { description = "Your project's nix-env"; homepage = "https://github.com/nix-community/lorri"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ grahamc Profpatsch nyarly diff --git a/pkgs/by-name/lo/lottieconverter/package.nix b/pkgs/by-name/lo/lottieconverter/package.nix index 7eef0a30f316..a5cd909019a0 100644 --- a/pkgs/by-name/lo/lottieconverter/package.nix +++ b/pkgs/by-name/lo/lottieconverter/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/sot-tech/LottieConverter/"; description = "Lottie converter utility"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ CRTified nickcao ]; diff --git a/pkgs/by-name/lo/loudmouth/package.nix b/pkgs/by-name/lo/loudmouth/package.nix index 6ce497ea5a59..710b6414a6ee 100644 --- a/pkgs/by-name/lo/loudmouth/package.nix +++ b/pkgs/by-name/lo/loudmouth/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Lightweight C library for the Jabber protocol"; - platforms = platforms.all; + platforms = lib.platforms.all; downloadPage = "http://mcabber.com/files/loudmouth/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/lo/lounge-gtk-theme/package.nix b/pkgs/by-name/lo/lounge-gtk-theme/package.nix index 0e885c112efe..852eeb7c2d76 100644 --- a/pkgs/by-name/lo/lounge-gtk-theme/package.nix +++ b/pkgs/by-name/lo/lounge-gtk-theme/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { gtk-update-icon-cache "$out"/share/icons/Lounge-aux; ''; - meta = with lib; { + meta = { description = "Simple and clean GTK theme with vintage scrollbars, inspired by Absolute, based on Adwaita"; homepage = "https://github.com/monday15/lounge-gtk-theme"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/lo/loupe/package.nix b/pkgs/by-name/lo/loupe/package.nix index 38a902de5a81..857507f83f9c 100644 --- a/pkgs/by-name/lo/loupe/package.nix +++ b/pkgs/by-name/lo/loupe/package.nix @@ -113,14 +113,14 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/loupe"; changelog = "https://gitlab.gnome.org/GNOME/loupe/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "Simple image viewer application written with GTK4 and Rust"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ jk ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jk ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; mainProgram = "loupe"; }; }) diff --git a/pkgs/by-name/lo/louvain-community/package.nix b/pkgs/by-name/lo/louvain-community/package.nix index 139da16aa76f..73bb9f47decc 100644 --- a/pkgs/by-name/lo/louvain-community/package.nix +++ b/pkgs/by-name/lo/louvain-community/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "cmake_minimum_required(VERSION 3.3 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Louvain Community Detection Library"; homepage = "https://github.com/meelgroup/louvain-community"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ t4ccer ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ t4ccer ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/lo/lowdown/package.nix b/pkgs/by-name/lo/lowdown/package.nix index 7ea55e19f137..d4720161aa07 100644 --- a/pkgs/by-name/lo/lowdown/package.nix +++ b/pkgs/by-name/lo/lowdown/package.nix @@ -99,11 +99,11 @@ stdenv.mkDerivation rec { inherit nix lowdown-unsandboxed; }; - meta = with lib; { + meta = { homepage = "https://kristaps.bsd.lv/lowdown/"; description = "Simple markdown translator"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lo/loxodo/package.nix b/pkgs/by-name/lo/loxodo/package.nix index c98f048dc907..ae5442e701a0 100644 --- a/pkgs/by-name/lo/loxodo/package.nix +++ b/pkgs/by-name/lo/loxodo/package.nix @@ -43,12 +43,12 @@ python3.pkgs.buildPythonApplication { doCheck = false; # Tests are interactive. - meta = with lib; { + meta = { description = "Password Safe V3 compatible password vault"; mainProgram = "loxodo"; homepage = "https://www.christoph-sommer.de/loxodo/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/lp/lprint/package.nix b/pkgs/by-name/lp/lprint/package.nix index 548a72711025..12155a67eaa1 100644 --- a/pkgs/by-name/lp/lprint/package.nix +++ b/pkgs/by-name/lp/lprint/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Implements printing for a variety of common label and receipt printers connected via network or USB"; mainProgram = "lprint"; homepage = "https://github.com/michaelrsweet/lprint"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/by-name/lr/lr/package.nix b/pkgs/by-name/lr/lr/package.nix index a2e8e0cd2bda..5badeb50feaf 100644 --- a/pkgs/by-name/lr/lr/package.nix +++ b/pkgs/by-name/lr/lr/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/chneukirchen/lr"; description = "List files recursively"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ vikanezrimaya ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ vikanezrimaya ]; mainProgram = "lr"; }; } diff --git a/pkgs/by-name/lr/lrcalc/package.nix b/pkgs/by-name/lr/lrcalc/package.nix index c682d69ded20..aa40b030ad7b 100644 --- a/pkgs/by-name/lr/lrcalc/package.nix +++ b/pkgs/by-name/lr/lrcalc/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { passthru.tests = { inherit sage; }; - meta = with lib; { + meta = { description = "Littlewood-Richardson calculator"; homepage = "http://math.rutgers.edu/~asbuch/lrcalc/"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lr/lrzip/package.nix b/pkgs/by-name/lr/lrzip/package.nix index 9e10ed9013d2..b970e75ac2ce 100644 --- a/pkgs/by-name/lr/lrzip/package.nix +++ b/pkgs/by-name/lr/lrzip/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { "--disable-asm" ]; - meta = with lib; { + meta = { homepage = "http://ck.kolivas.org/apps/lrzip/"; description = "CK LRZIP compression program (LZMA + RZIP)"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lr/lrzsz/package.nix b/pkgs/by-name/lr/lrzsz/package.nix index 4b0d5c79cd76..fe1350ad1a5e 100644 --- a/pkgs/by-name/lr/lrzsz/package.nix +++ b/pkgs/by-name/lr/lrzsz/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=incompatible-pointer-types"; - meta = with lib; { + meta = { homepage = "https://ohse.de/uwe/software/lrzsz.html"; description = "Communication package providing the XMODEM, YMODEM ZMODEM file transfer protocols"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ls/ls-lint/package.nix b/pkgs/by-name/ls/ls-lint/package.nix index 3a9d5445dfb7..cf53a685365b 100644 --- a/pkgs/by-name/ls/ls-lint/package.nix +++ b/pkgs/by-name/ls/ls-lint/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-XbYfHgpZCGv6w/55dGiFcYTQ36f0n3w8XwnC7wIUFro="; - meta = with lib; { + meta = { description = "Extremely fast file and directory name linter"; mainProgram = "ls_lint"; homepage = "https://ls-lint.org/"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/ls/lsb-release/package.nix b/pkgs/by-name/ls/lsb-release/package.nix index 0adb79795794..2f2f80c941dc 100644 --- a/pkgs/by-name/ls/lsb-release/package.nix +++ b/pkgs/by-name/ls/lsb-release/package.nix @@ -18,11 +18,11 @@ replaceVarsWith { inherit coreutils getopt runtimeShell; }; - meta = with lib; { + meta = { description = "Prints certain LSB (Linux Standard Base) and Distribution information"; mainProgram = "lsb_release"; - license = [ licenses.mit ]; + license = [ lib.licenses.mit ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ls/lsdvd/package.nix b/pkgs/by-name/ls/lsdvd/package.nix index b8f8c411c021..8f2ae69322c0 100644 --- a/pkgs/by-name/ls/lsdvd/package.nix +++ b/pkgs/by-name/ls/lsdvd/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { buildInputs = [ libdvdread ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/lsdvd/"; description = "Display information about audio, video, and subtitle tracks on a DVD"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "lsdvd"; }; } diff --git a/pkgs/by-name/ls/lshw/package.nix b/pkgs/by-name/ls/lshw/package.nix index 9937c4c81e6c..bfb638d4e949 100644 --- a/pkgs/by-name/ls/lshw/package.nix +++ b/pkgs/by-name/ls/lshw/package.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { changelog = "https://github.com/lyonel/lshw/blob/master/docs/Changelog"; description = "Provide detailed information on the hardware configuration of the machine"; homepage = "https://ezix.org/project/wiki/HardwareLiSter"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "lshw"; - maintainers = with maintainers; [ thiagokokada ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ thiagokokada ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ls/lsirec/package.nix b/pkgs/by-name/ls/lsirec/package.nix index e349bc600da3..425f4bb51008 100644 --- a/pkgs/by-name/ls/lsirec/package.nix +++ b/pkgs/by-name/ls/lsirec/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "LSI SAS2008/SAS2108 low-level recovery tool for Linux"; homepage = "https://github.com/marcan/lsirec"; - platforms = platforms.linux; - license = licenses.bsd2; - maintainers = with maintainers; [ Luflosi ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ Luflosi ]; # never built on aarch64-linux since first introduction in nixpkgs broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/ls/lsiutil/package.nix b/pkgs/by-name/ls/lsiutil/package.nix index 4268371e5f38..da2ce10872f1 100644 --- a/pkgs/by-name/ls/lsiutil/package.nix +++ b/pkgs/by-name/ls/lsiutil/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/exactassembly/meta-xa-stm/tree/master/recipes-support/lsiutil/files"; description = "Configuration utility for MPT adapters (FC, SCSI, and SAS/SATA)"; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/by-name/ls/lsix/package.nix b/pkgs/by-name/ls/lsix/package.nix index 9f6a7c26bd8f..8b10bbcb4e69 100644 --- a/pkgs/by-name/ls/lsix/package.nix +++ b/pkgs/by-name/ls/lsix/package.nix @@ -32,12 +32,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { --prefix PATH : ${lib.makeBinPath [ (imagemagick.override { ghostscriptSupport = true; }) ]} ''; - meta = with lib; { + meta = { description = "Shows thumbnails in terminal using sixel graphics"; homepage = "https://github.com/hackerb9/lsix"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ justinlime kidonng ]; diff --git a/pkgs/by-name/ls/lspmux/package.nix b/pkgs/by-name/ls/lspmux/package.nix index deeb333f59f3..70e7d119d7ff 100644 --- a/pkgs/by-name/ls/lspmux/package.nix +++ b/pkgs/by-name/ls/lspmux/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-Um4BZ1QTHCilOslo/GR7cGvPCX1xNitf6WU8QaehAaE="; - meta = with lib; { + meta = { description = "Share one language server instance between multiple LSP clients to save resources"; mainProgram = "lspmux"; homepage = "https://codeberg.org/p2502/lspmux"; - license = with licenses; [ eupl12 ]; - maintainers = with maintainers; [ mrcjkb ]; + license = with lib.licenses; [ eupl12 ]; + maintainers = with lib.maintainers; [ mrcjkb ]; }; }) diff --git a/pkgs/by-name/ls/lsscsi/package.nix b/pkgs/by-name/ls/lsscsi/package.nix index e3fa8ebe2e64..1499ad0b8d32 100644 --- a/pkgs/by-name/ls/lsscsi/package.nix +++ b/pkgs/by-name/ls/lsscsi/package.nix @@ -17,8 +17,8 @@ stdenv.mkDerivation rec { substituteInPlace Makefile.in --replace /usr "$out" ''; - meta = with lib; { - license = licenses.gpl2Plus; - platforms = platforms.linux; + meta = { + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ls/lswt/package.nix b/pkgs/by-name/ls/lswt/package.nix index d69a7b509f43..e811966665f0 100644 --- a/pkgs/by-name/ls/lswt/package.nix +++ b/pkgs/by-name/ls/lswt/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = with lib; { + meta = { description = "Command that lists Wayland toplevels"; homepage = "https://sr.ht/~leon_plickat/lswt"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ edrex ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ edrex ]; + platforms = lib.platforms.linux; mainProgram = "lswt"; }; } diff --git a/pkgs/by-name/lt/ltc-tools/package.nix b/pkgs/by-name/lt/ltc-tools/package.nix index 926b212b3a95..5c81f5aad3af 100644 --- a/pkgs/by-name/lt/ltc-tools/package.nix +++ b/pkgs/by-name/lt/ltc-tools/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/x42/ltc-tools"; description = "Tools to deal with linear-timecode (LTC)"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ tg-x ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tg-x ]; }; } diff --git a/pkgs/by-name/lt/ltex-ls/package.nix b/pkgs/by-name/lt/ltex-ls/package.nix index 4204579818ec..73c6f9e6e83b 100644 --- a/pkgs/by-name/lt/ltex-ls/package.nix +++ b/pkgs/by-name/lt/ltex-ls/package.nix @@ -30,12 +30,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://valentjn.github.io/ltex/"; description = "LSP language server for LanguageTool"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "ltex-ls"; - maintainers = with maintainers; [ vinnymeller ]; + maintainers = with lib.maintainers; [ vinnymeller ]; platforms = jre_headless.meta.platforms; }; } diff --git a/pkgs/by-name/lt/ltrace/package.nix b/pkgs/by-name/lt/ltrace/package.nix index 79247dd7837f..573f63608a53 100644 --- a/pkgs/by-name/lt/ltrace/package.nix +++ b/pkgs/by-name/lt/ltrace/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation { make check ''; - meta = with lib; { + meta = { description = "Library call tracer"; mainProgram = "ltrace"; homepage = "https://www.ltrace.org/"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/lt/lttng-tools/package.nix b/pkgs/by-name/lt/lttng-tools/package.nix index 7acdae15a541..8b6dea07b6dc 100644 --- a/pkgs/by-name/lt/lttng-tools/package.nix +++ b/pkgs/by-name/lt/lttng-tools/package.nix @@ -34,16 +34,16 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Tracing tools (kernel + user space) for Linux"; mainProgram = "lttng"; homepage = "https://lttng.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Only gpl2Only ]; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/lt/lttng-ust_2_12/package.nix b/pkgs/by-name/lt/lttng-ust_2_12/package.nix index 9a2b2579911b..e1860dbb9d23 100644 --- a/pkgs/by-name/lt/lttng-ust_2_12/package.nix +++ b/pkgs/by-name/lt/lttng-ust_2_12/package.nix @@ -53,17 +53,17 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "LTTng Userspace Tracer libraries"; mainProgram = "lttng-gen-tp"; homepage = "https://lttng.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Only gpl2Only mit ]; - platforms = lib.intersectLists platforms.linux liburcu.meta.platforms; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.intersectLists lib.platforms.linux liburcu.meta.platforms; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/lt/lttv/package.nix b/pkgs/by-name/lt/lttv/package.nix index e7719dc3bd92..c2962ab149d2 100644 --- a/pkgs/by-name/lt/lttv/package.nix +++ b/pkgs/by-name/lt/lttv/package.nix @@ -36,17 +36,17 @@ stdenv.mkDerivation rec { babeltrace ]; - meta = with lib; { + meta = { description = "Graphical trace viewer for LTTng trace files"; homepage = "https://lttng.org/"; # liblttvtraceread (ltt/ directory) is distributed under the GNU LGPL v2.1. # The rest of the LTTV package is distributed under the GNU GPL v2. - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl21 ]; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/lt/ltunify/package.nix b/pkgs/by-name/lt/ltunify/package.nix index e4595c1623b3..d808af58949d 100644 --- a/pkgs/by-name/lt/ltunify/package.nix +++ b/pkgs/by-name/lt/ltunify/package.nix @@ -30,15 +30,15 @@ stdenv.mkDerivation rec { "bindir=/bin" ]; - meta = with lib; { + meta = { description = "Tool for working with Logitech Unifying receivers and devices"; longDescription = '' This tool requires either to be run with root/sudo or alternatively to have the udev rules files installed. On NixOS this can be achieved by setting `hardware.logitech.wireless.enable`. ''; homepage = "https://lekensteyn.nl/logitech-unifying.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ltunify"; }; } diff --git a/pkgs/by-name/lu/luaformatter/package.nix b/pkgs/by-name/lu/luaformatter/package.nix index 4f897ed991f3..8a9384d8d8c5 100644 --- a/pkgs/by-name/lu/luaformatter/package.nix +++ b/pkgs/by-name/lu/luaformatter/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { yaml-cpp ]; - meta = with lib; { + meta = { description = "Code formatter for Lua"; homepage = "https://github.com/Koihik/LuaFormatter"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "lua-format"; }; diff --git a/pkgs/by-name/lu/luanti/package.nix b/pkgs/by-name/lu/luanti/package.nix index cfe5f4a2f491..2d162b616316 100644 --- a/pkgs/by-name/lu/luanti/package.nix +++ b/pkgs/by-name/lu/luanti/package.nix @@ -144,12 +144,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://www.luanti.org/"; description = "Open source voxel game engine (formerly Minetest)"; - license = licenses.lgpl21Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ fpletz fgaz jk diff --git a/pkgs/by-name/lu/luastatus/package.nix b/pkgs/by-name/lu/luastatus/package.nix index 40fb644ff715..7fad58679daf 100644 --- a/pkgs/by-name/lu/luastatus/package.nix +++ b/pkgs/by-name/lu/luastatus/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation (finalAttrs: { --prefix LUASTATUS : $out/bin/luastatus ''; - meta = with lib; { + meta = { description = "Universal status bar content generator"; homepage = "https://github.com/shdown/luastatus"; changelog = "https://github.com/shdown/luastatus/releases/tag/${finalAttrs.version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kashw2 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kashw2 ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/lu/lucky-cli/package.nix b/pkgs/by-name/lu/lucky-cli/package.nix index 6ee31e492fa0..9777b4580515 100644 --- a/pkgs/by-name/lu/lucky-cli/package.nix +++ b/pkgs/by-name/lu/lucky-cli/package.nix @@ -38,13 +38,13 @@ crystal.buildCrystalPackage rec { --prefix PATH : ${lib.makeBinPath [ crystal ]} ''; - meta = with lib; { + meta = { description = "Crystal library for creating and running tasks. Also generates Lucky projects"; homepage = "https://luckyframework.org/"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "lucky"; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = lib.versionOlder crystal.version "1.6.0"; }; } diff --git a/pkgs/by-name/lu/lucky-commit/package.nix b/pkgs/by-name/lu/lucky-commit/package.nix index 4190ef3a071e..fe3eb0cbef71 100644 --- a/pkgs/by-name/lu/lucky-commit/package.nix +++ b/pkgs/by-name/lu/lucky-commit/package.nix @@ -27,10 +27,10 @@ rustPlatform.buildRustPackage rec { # disable tests that require gpu checkNoDefaultFeatures = true; - meta = with lib; { + meta = { description = "Change the start of your git commit hashes to whatever you want"; homepage = "https://github.com/not-an-aardvark/lucky-commit"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "lucky_commit"; }; diff --git a/pkgs/by-name/lu/luculent/package.nix b/pkgs/by-name/lu/luculent/package.nix index 08efe16472a9..3f2cea934ed2 100644 --- a/pkgs/by-name/lu/luculent/package.nix +++ b/pkgs/by-name/lu/luculent/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Luculent font"; homepage = "http://www.eastfarthing.com/luculent/"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lu/ludtwig/package.nix b/pkgs/by-name/lu/ludtwig/package.nix index e91c8c71c60e..085295467698 100644 --- a/pkgs/by-name/lu/ludtwig/package.nix +++ b/pkgs/by-name/lu/ludtwig/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-00JHtrDffFl3h3IOH+h491qGOSfXIJH9NBmaqqUtQ6k="; - meta = with lib; { + meta = { description = "Linter / Formatter for Twig template files which respects HTML and your time"; homepage = "https://github.com/MalteJanz/ludtwig"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maltejanz ]; mainProgram = "ludtwig"; diff --git a/pkgs/by-name/lu/lukesmithxyz-bible-kjv/package.nix b/pkgs/by-name/lu/lukesmithxyz-bible-kjv/package.nix index e9cd5c80b002..abe6397f68e7 100644 --- a/pkgs/by-name/lu/lukesmithxyz-bible-kjv/package.nix +++ b/pkgs/by-name/lu/lukesmithxyz-bible-kjv/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Read the Word of God from your terminal + Apocrypha"; mainProgram = "kjv"; homepage = "https://lukesmith.xyz/articles/command-line-bibles"; - license = licenses.unlicense; - platforms = platforms.unix; - maintainers = [ maintainers.wesleyjrz ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.wesleyjrz ]; }; } diff --git a/pkgs/by-name/lu/lukesmithxyz-st/package.nix b/pkgs/by-name/lu/lukesmithxyz-st/package.nix index c1a8ede4823e..6f27f920ad99 100644 --- a/pkgs/by-name/lu/lukesmithxyz-st/package.nix +++ b/pkgs/by-name/lu/lukesmithxyz-st/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/LukeSmithxyz/st"; description = "Luke Smith's fork of st"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/lu/lunar-client/package.nix b/pkgs/by-name/lu/lunar-client/package.nix index 3442c477f25a..757bceb94699 100644 --- a/pkgs/by-name/lu/lunar-client/package.nix +++ b/pkgs/by-name/lu/lunar-client/package.nix @@ -31,12 +31,12 @@ appimageTools.wrapType2 rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Free Minecraft client with mods, cosmetics, and performance boost"; homepage = "https://www.lunarclient.com/"; - license = with licenses; [ unfree ]; + license = with lib.licenses; [ unfree ]; mainProgram = "lunarclient"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ Technical27 surfaceflinger ]; diff --git a/pkgs/by-name/lu/lunarvim/package.nix b/pkgs/by-name/lu/lunarvim/package.nix index e3d078252846..2c430aef7daf 100644 --- a/pkgs/by-name/lu/lunarvim/package.nix +++ b/pkgs/by-name/lu/lunarvim/package.nix @@ -133,17 +133,17 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "IDE layer for Neovim"; homepage = "https://www.lunarvim.org/"; changelog = "https://github.com/LunarVim/LunarVim/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - sourceProvenance = with sourceTypes; [ fromSource ]; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ prominentretail lebensterben ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "lvim"; }; }) diff --git a/pkgs/by-name/lu/lunatic/package.nix b/pkgs/by-name/lu/lunatic/package.nix index 11f01928975b..d07b97650a23 100644 --- a/pkgs/by-name/lu/lunatic/package.nix +++ b/pkgs/by-name/lu/lunatic/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage { branch = "main"; }; - meta = with lib; { + meta = { description = "Erlang inspired runtime for WebAssembly"; homepage = "https://lunatic.solutions"; changelog = "https://github.com/lunatic-solutions/lunatic/blob/main/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/lu/lune/package.nix b/pkgs/by-name/lu/lune/package.nix index d053e32bc244..1b77171b6f05 100644 --- a/pkgs/by-name/lu/lune/package.nix +++ b/pkgs/by-name/lu/lune/package.nix @@ -44,12 +44,12 @@ rustPlatform.buildRustPackage rec { "--skip=tests::process_exec_cwd" ]; - meta = with lib; { + meta = { description = "Standalone Luau script runtime"; mainProgram = "lune"; homepage = "https://github.com/lune-org/lune"; changelog = "https://github.com/lune-org/lune/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ lammermann ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ lammermann ]; }; } diff --git a/pkgs/by-name/lu/luppp/package.nix b/pkgs/by-name/lu/luppp/package.nix index bd7ab5762a92..fd0256da290b 100644 --- a/pkgs/by-name/lu/luppp/package.nix +++ b/pkgs/by-name/lu/luppp/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { ntk ]; - meta = with lib; { + meta = { homepage = "http://openavproductions.com/luppp/"; # https does not work description = "Music creation tool, intended for live use"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.linux; mainProgram = "luppp"; }; } diff --git a/pkgs/by-name/lu/lutgen/package.nix b/pkgs/by-name/lu/lutgen/package.nix index 1cd2695e21d5..16dd84d2e207 100644 --- a/pkgs/by-name/lu/lutgen/package.nix +++ b/pkgs/by-name/lu/lutgen/package.nix @@ -43,15 +43,15 @@ rustPlatform.buildRustPackage rec { extraArgs = [ "--version-regex=^lutgen-v([0-9.]+)$" ]; }; - meta = with lib; { + meta = { description = "Blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes"; homepage = "https://github.com/ozwaldorf/lutgen-rs"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ozwaldorf zzzsy donovanglover ]; mainProgram = "lutgen"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/lv/lv/package.nix b/pkgs/by-name/lv/lv/package.nix index 59882b5a78a2..b83d38d41efd 100644 --- a/pkgs/by-name/lv/lv/package.nix +++ b/pkgs/by-name/lv/lv/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Powerful multi-lingual file viewer / grep"; homepage = "https://github.com/ttdoda/lv"; - license = licenses.gpl2Plus; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ kayhide ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ kayhide ]; }; } diff --git a/pkgs/by-name/lv/lv2-cpp-tools/package.nix b/pkgs/by-name/lv/lv2-cpp-tools/package.nix index 8b99a2425c4d..c221ba7c6934 100644 --- a/pkgs/by-name/lv/lv2-cpp-tools/package.nix +++ b/pkgs/by-name/lv/lv2-cpp-tools/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { homepage = "http://ll-plugins.nongnu.org/hacking.html"; description = "Tools and libraries that may come in handy when writing LV2 plugins in C++"; - license = licenses.gpl3; - maintainers = [ maintainers.michalrus ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.michalrus ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/lv/lv2/package.nix b/pkgs/by-name/lv/lv2/package.nix index cb6060cc6e28..6e2428ade0fa 100644 --- a/pkgs/by-name/lv/lv2/package.nix +++ b/pkgs/by-name/lv/lv2/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://lv2plug.in"; description = "Plugin standard for audio systems"; mainProgram = "lv2_validate"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lv/lv2bm/package.nix b/pkgs/by-name/lv/lv2bm/package.nix index bbf1ab10b2f8..b4c1e1ea24d1 100644 --- a/pkgs/by-name/lv/lv2bm/package.nix +++ b/pkgs/by-name/lv/lv2bm/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { make install PREFIX=$out ''; - meta = with lib; { + meta = { homepage = "https://github.com/portalmod/lv2bm"; description = "Benchmark tool for LV2 plugins"; - license = licenses.gpl3; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "lv2bm"; }; } diff --git a/pkgs/by-name/lv/lvmsync/package.nix b/pkgs/by-name/lv/lvmsync/package.nix index 071f4da2b03d..aede83ef0345 100644 --- a/pkgs/by-name/lv/lvmsync/package.nix +++ b/pkgs/by-name/lv/lvmsync/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { passthru.updateScript = bundlerUpdateScript "lvmsync"; - meta = with lib; { + meta = { description = "Optimised synchronisation of LVM snapshots over a network"; mainProgram = "lvmsync"; homepage = "https://theshed.hezmatt.org/lvmsync/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine nicknovitski ]; diff --git a/pkgs/by-name/lw/lwan/package.nix b/pkgs/by-name/lw/lwan/package.nix index e34ee666b4e1..2e7ce1b1b785 100644 --- a/pkgs/by-name/lw/lwan/package.nix +++ b/pkgs/by-name/lw/lwan/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { # Note: tcmalloc and mimalloc are also supported (and normal malloc) cmakeFlags = lib.optional enableJemalloc "-DUSE_ALTERNATIVE_MALLOC=jemalloc"; - meta = with lib; { + meta = { description = "Lightweight high-performance multi-threaded web server"; mainProgram = "lwan"; longDescription = "A lightweight and speedy web server with a low memory @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { support. "; homepage = "https://lwan.ws/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/lw/lwgrp/package.nix b/pkgs/by-name/lw/lwgrp/package.nix index a043c27d8512..9ddac9bd3bbb 100644 --- a/pkgs/by-name/lw/lwgrp/package.nix +++ b/pkgs/by-name/lw/lwgrp/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ mpi ]; - meta = with lib; { + meta = { description = "Data structures and operations to group MPI processes as an ordered set"; homepage = "https://github.com/LLNL/lwgrp"; - platforms = platforms.linux; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/lw/lwm/package.nix b/pkgs/by-name/lw/lwm/package.nix index 4e0b71f5cfaf..0d2aed4af706 100644 --- a/pkgs/by-name/lw/lwm/package.nix +++ b/pkgs/by-name/lw/lwm/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { install -m644 lwm.man $out/share/man/man1/lwm.1 ''; - meta = with lib; { + meta = { description = "Lightweight Window Manager"; longDescription = '' lwm is a window manager for X that tries to keep out of your face. There @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { disc space and its annexation of your physical memory. ''; homepage = "http://www.jfc.org.uk/software/lwm.html"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "lwm"; }; } diff --git a/pkgs/by-name/lx/lxd-image-server/package.nix b/pkgs/by-name/lx/lxd-image-server/package.nix index f89cde401e78..d428bb53655e 100644 --- a/pkgs/by-name/lx/lxd-image-server/package.nix +++ b/pkgs/by-name/lx/lxd-image-server/package.nix @@ -53,12 +53,12 @@ python3.pkgs.buildPythonApplication rec { passthru.tests.lxd-image-server = nixosTests.lxd-image-server; - meta = with lib; { + meta = { description = "Creates and manages a simplestreams lxd image server on top of nginx"; homepage = "https://github.com/Avature/lxd-image-server"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mkg20001 ]; mainProgram = "lxd-image-server"; }; } diff --git a/pkgs/by-name/lx/lxgw-fusionkai/package.nix b/pkgs/by-name/lx/lxgw-fusionkai/package.nix index 99c7a8e3e37f..f41da234e594 100644 --- a/pkgs/by-name/lx/lxgw-fusionkai/package.nix +++ b/pkgs/by-name/lx/lxgw-fusionkai/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/lxgw/FusionKai"; description = "Simplified Chinese font derived from LXGW WenKai GB, iansui and Klee One"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ hellodword ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ hellodword ]; }; } diff --git a/pkgs/by-name/lx/lxgw-neoxihei/package.nix b/pkgs/by-name/lx/lxgw-neoxihei/package.nix index a332f253b8c2..0d58fe98a33c 100644 --- a/pkgs/by-name/lx/lxgw-neoxihei/package.nix +++ b/pkgs/by-name/lx/lxgw-neoxihei/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simplified Chinese sans-serif font derived from IPAex Gothic"; homepage = "https://github.com/lxgw/LxgwNeoXiHei"; - license = licenses.ipa; - platforms = platforms.all; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.ipa; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/lx/lxgw-wenkai-tc/package.nix b/pkgs/by-name/lx/lxgw-wenkai-tc/package.nix index abfa118f9e7f..c13bd716be93 100644 --- a/pkgs/by-name/lx/lxgw-wenkai-tc/package.nix +++ b/pkgs/by-name/lx/lxgw-wenkai-tc/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/lxgw/LxgwWenKaiTC"; description = "Traditional Chinese Edition of LXGW WenKai"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ lebensterben ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ lebensterben ]; }; } diff --git a/pkgs/by-name/lx/lxgw-wenkai/package.nix b/pkgs/by-name/lx/lxgw-wenkai/package.nix index 1b8da1e608a7..6b760b3014df 100644 --- a/pkgs/by-name/lx/lxgw-wenkai/package.nix +++ b/pkgs/by-name/lx/lxgw-wenkai/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://lxgw.github.io/"; description = "Open-source Chinese font derived from Fontworks' Klee One"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ryanccn ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ryanccn ]; }; } diff --git a/pkgs/by-name/ly/lynis/package.nix b/pkgs/by-name/ly/lynis/package.nix index f19d7cdde6ab..baa2b557e16a 100644 --- a/pkgs/by-name/ly/lynis/package.nix +++ b/pkgs/by-name/ly/lynis/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { extras/bash_completion.d/lynis ''; - meta = with lib; { + meta = { description = "Security auditing tool for Linux, macOS, and UNIX-based systems"; mainProgram = "lynis"; homepage = "https://cisofy.com/lynis/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.ryneeverett ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ryneeverett ]; }; } diff --git a/pkgs/by-name/ly/lynx/package.nix b/pkgs/by-name/ly/lynx/package.nix index 9aedcccb6e81..d4b6bd227292 100644 --- a/pkgs/by-name/ly/lynx/package.nix +++ b/pkgs/by-name/ly/lynx/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration"; }; - meta = with lib; { + meta = { description = "Text-mode web browser"; homepage = "https://lynx.invisible-island.net/"; mainProgram = "lynx"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ly/lyra/package.nix b/pkgs/by-name/ly/lyra/package.nix index edb94873f5dc..40d083d61cc8 100644 --- a/pkgs/by-name/ly/lyra/package.nix +++ b/pkgs/by-name/ly/lyra/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { cp -R $src/include/* $out/include ''; - meta = with lib; { + meta = { homepage = "https://github.com/bfgroup/Lyra"; description = "Simple to use, composable, command line parser for C++ 11 and beyond"; - platforms = platforms.unix; - license = licenses.boost; + platforms = lib.platforms.unix; + license = lib.licenses.boost; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ly/lyrebird/package.nix b/pkgs/by-name/ly/lyrebird/package.nix index 7774c9289e5e..405e8352697e 100644 --- a/pkgs/by-name/ly/lyrebird/package.nix +++ b/pkgs/by-name/ly/lyrebird/package.nix @@ -71,12 +71,12 @@ python3Packages.buildPythonApplication rec { install -Dm755 app.py $out/bin/lyrebird ''; - meta = with lib; { + meta = { description = "Simple and powerful voice changer for Linux, written in GTK 3"; mainProgram = "lyrebird"; homepage = "https://github.com/lyrebird-voice-changer/lyrebird"; - license = licenses.mit; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/lz/lz4/package.nix b/pkgs/by-name/lz/lz4/package.nix index bab192f7c424..285df98c5d22 100644 --- a/pkgs/by-name/lz/lz4/package.nix +++ b/pkgs/by-name/lz/lz4/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Extremely fast compression algorithm"; longDescription = '' Very fast lossless compression algorithm, providing compression speed @@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: { multi-core systems. ''; homepage = "https://lz4.github.io/lz4/"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 gpl2Plus ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "lz4"; - maintainers = [ maintainers.tobim ]; + maintainers = [ lib.maintainers.tobim ]; }; }) diff --git a/pkgs/by-name/lz/lzbench/package.nix b/pkgs/by-name/lz/lzbench/package.nix index 70403dc903d2..61c210b97e34 100644 --- a/pkgs/by-name/lz/lzbench/package.nix +++ b/pkgs/by-name/lz/lzbench/package.nix @@ -22,14 +22,14 @@ stdenv.mkDerivation rec { cp lzbench $out/bin ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "In-memory benchmark of open-source LZ77/LZSS/LZMA compressors"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Only ]; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = with lib.maintainers; [ videl ]; mainProgram = "lzbench"; }; diff --git a/pkgs/by-name/lz/lzip/package.nix b/pkgs/by-name/lz/lzip/package.nix index d291478ca732..1d92e7e6439a 100644 --- a/pkgs/by-name/lz/lzip/package.nix +++ b/pkgs/by-name/lz/lzip/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { doCheck = true; enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/lzip/lzip.html"; description = "Lossless data compressor based on the LZMA algorithm"; license = lib.licenses.gpl2Plus; - maintainers = with maintainers; [ vlaci ]; + maintainers = with lib.maintainers; [ vlaci ]; platforms = lib.platforms.all; mainProgram = "lzip"; }; diff --git a/pkgs/by-name/lz/lzo/package.nix b/pkgs/by-name/lz/lzo/package.nix index 99d090f4e862..3fff59dddc13 100644 --- a/pkgs/by-name/lz/lzo/package.nix +++ b/pkgs/by-name/lz/lzo/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Real-time data (de)compression library"; longDescription = '' LZO is a portable lossless data compression library written in ANSI C. @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { ''; homepage = "http://www.oberhumer.com/opensource/lzo"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lz/lzop/package.nix b/pkgs/by-name/lz/lzop/package.nix index 98301c16b54e..d7dafe6f7545 100644 --- a/pkgs/by-name/lz/lzop/package.nix +++ b/pkgs/by-name/lz/lzop/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { buildInputs = [ lzo ]; - meta = with lib; { + meta = { homepage = "http://www.lzop.org"; description = "Fast file compressor"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "lzop"; }; } diff --git a/pkgs/by-name/m-/m-cli/package.nix b/pkgs/by-name/m-/m-cli/package.nix index 340df4bf12e1..92f1e4802347 100644 --- a/pkgs/by-name/m-/m-cli/package.nix +++ b/pkgs/by-name/m-/m-cli/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation rec { install -Dt "$out/share/zsh/site-functions/" -m444 completions/zsh/_m ''; - meta = with lib; { + meta = { description = "Swiss Army Knife for macOS"; inherit (src.meta) homepage; - license = licenses.mit; + license = lib.licenses.mit; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; maintainers = [ ]; mainProgram = "m"; }; diff --git a/pkgs/by-name/m1/m17-cxx-demod/package.nix b/pkgs/by-name/m1/m17-cxx-demod/package.nix index e57f43f375f7..f3fd9808c80c 100644 --- a/pkgs/by-name/m1/m17-cxx-demod/package.nix +++ b/pkgs/by-name/m1/m17-cxx-demod/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { description = "M17 Demodulator in C++"; homepage = "https://github.com/mobilinkd/m17-cxx-demod"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/m2/m2-mesoplanet/package.nix b/pkgs/by-name/m2/m2-mesoplanet/package.nix index 3e7c625ad31a..dc58ec2c9515 100644 --- a/pkgs/by-name/m2/m2-mesoplanet/package.nix +++ b/pkgs/by-name/m2/m2-mesoplanet/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Macro Expander Saving Our m2-PLANET"; homepage = "https://github.com/oriansj/M2-Mesoplanet"; - license = licenses.gpl3Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.minimal-bootstrap ]; inherit (m2libc.meta) platforms; mainProgram = "M2-Mesoplanet"; }; diff --git a/pkgs/by-name/m2/m2-planet/package.nix b/pkgs/by-name/m2/m2-planet/package.nix index d209d604a241..cf8e5eb57033 100644 --- a/pkgs/by-name/m2/m2-planet/package.nix +++ b/pkgs/by-name/m2/m2-planet/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "PLAtform NEutral Transpiler"; homepage = "https://github.com/oriansj/M2-Planet"; - license = licenses.gpl3Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.minimal-bootstrap ]; inherit (m2libc.meta) platforms; mainProgram = "M2-Planet"; }; diff --git a/pkgs/by-name/m2/m2libc/package.nix b/pkgs/by-name/m2/m2libc/package.nix index 4c3546c7abcc..4ac241fbb73a 100644 --- a/pkgs/by-name/m2/m2libc/package.nix +++ b/pkgs/by-name/m2/m2libc/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "More standards compliant C library written in M2-Planet's C subset"; homepage = "https://github.com/oriansj/m2libc"; - license = licenses.gpl3Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.minimal-bootstrap ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/m3/m33-linux/package.nix b/pkgs/by-name/m3/m33-linux/package.nix index ff43ccdf154e..7fa75e4a1ac5 100644 --- a/pkgs/by-name/m3/m33-linux/package.nix +++ b/pkgs/by-name/m3/m33-linux/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { install -Dm755 90-micro-3d-local.rules $out/lib/udev/rules.d/90-micro-3d-local.rules ''; - meta = with lib; { + meta = { homepage = "https://github.com/donovan6000/M3D-Linux"; description = "Linux program that can communicate with the Micro 3D printer"; mainProgram = "m33-linux"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/m4/m4acut/package.nix b/pkgs/by-name/m4/m4acut/package.nix index 22b7fa486048..9408fd792022 100644 --- a/pkgs/by-name/m4/m4acut/package.nix +++ b/pkgs/by-name/m4/m4acut/package.nix @@ -20,15 +20,15 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ l-smash ]; - meta = with lib; { + meta = { description = "Losslessly & gaplessly cut m4a (AAC in MP4) files"; homepage = "https://github.com/nu774/m4acut"; - license = with licenses; [ + license = with lib.licenses; [ bsdOriginal zlib ]; - maintainers = [ maintainers.chkno ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.chkno ]; + platforms = lib.platforms.all; mainProgram = "m4acut"; }; } diff --git a/pkgs/by-name/m4/m4ri/package.nix b/pkgs/by-name/m4/m4ri/package.nix index d6e397a18e90..16b38a8d2c43 100644 --- a/pkgs/by-name/m4/m4ri/package.nix +++ b/pkgs/by-name/m4/m4ri/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://malb.bitbucket.io/m4ri/"; description = "Library to do fast arithmetic with dense matrices over F_2"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/m4/m4rie/package.nix b/pkgs/by-name/m4/m4rie/package.nix index 9bc3f77d6b74..796b50ef7ecb 100644 --- a/pkgs/by-name/m4/m4rie/package.nix +++ b/pkgs/by-name/m4/m4rie/package.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { homepage = "https://malb.bitbucket.io/m4rie/"; description = "Library for matrix multiplication, reduction and inversion over GF(2^k) for 2 <= k <= 10"; longDescription = '' M4RIE is a library for fast arithmetic with dense matrices over small finite fields of even characteristic. It uses the M4RI library, implementing the same operations over the finite field F2. ''; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/maa-assistant-arknights/fastdeploy-ppocr.nix b/pkgs/by-name/ma/maa-assistant-arknights/fastdeploy-ppocr.nix index e5c84bdf6d7b..92ec9065cdb9 100644 --- a/pkgs/by-name/ma/maa-assistant-arknights/fastdeploy-ppocr.nix +++ b/pkgs/by-name/ma/maa-assistant-arknights/fastdeploy-ppocr.nix @@ -68,11 +68,11 @@ effectiveStdenv.mkDerivation (finalAttrs: { install -Dm644 ${finalAttrs.src}/cmake/Findonnxruntime.cmake $cmake/ ''; - meta = with lib; { + meta = { description = "MaaAssistantArknights stripped-down version of FastDeploy"; homepage = "https://github.com/MaaAssistantArknights/FastDeploy"; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.asl20; broken = cudaSupport && stdenv.hostPlatform.system != "x86_64-linux"; }; }) diff --git a/pkgs/by-name/ma/maa-assistant-arknights/package.nix b/pkgs/by-name/ma/maa-assistant-arknights/package.nix index de03cba1c916..40ceab5fdd91 100644 --- a/pkgs/by-name/ma/maa-assistant-arknights/package.nix +++ b/pkgs/by-name/ma/maa-assistant-arknights/package.nix @@ -77,11 +77,11 @@ stdenv.mkDerivation (finalAttr: { mv $out/{Python,resource} $out/share/${finalAttr.pname} ''; - meta = with lib; { + meta = { description = "Arknights assistant"; homepage = "https://github.com/MaaAssistantArknights/MaaAssistantArknights"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ Cryolitia ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ Cryolitia ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/ma/maa-cli/package.nix b/pkgs/by-name/ma/maa-cli/package.nix index 9225611da69b..25cfeb2b2d51 100644 --- a/pkgs/by-name/ma/maa-cli/package.nix +++ b/pkgs/by-name/ma/maa-cli/package.nix @@ -65,12 +65,12 @@ rustPlatform.buildRustPackage rec { installManPage manpage/* ''; - meta = with lib; { + meta = { description = "Simple CLI for MAA by Rust"; homepage = "https://github.com/MaaAssistantArknights/maa-cli"; - license = licenses.agpl3Only; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ Cryolitia ]; + license = lib.licenses.agpl3Only; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ Cryolitia ]; mainProgram = "maa"; }; } diff --git a/pkgs/by-name/ma/mac-fdisk/package.nix b/pkgs/by-name/ma/mac-fdisk/package.nix index 975241b5d60c..6f7eadc02ad6 100644 --- a/pkgs/by-name/ma/mac-fdisk/package.nix +++ b/pkgs/by-name/ma/mac-fdisk/package.nix @@ -97,17 +97,17 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "68K and PowerPC Mac disk partitioning utility, Adélie Linux version"; # http://ftp.mklinux.apple.com:/pub/Other_Tools/ but that one's looong dead, link goes to the patch compilation we're using homepage = "https://git.adelielinux.org/adelie/packages/-/tree/master/user/mac-fdisk"; - license = with licenses; [ + license = with lib.licenses; [ hpnd # original license statements seems to match this (in files that are shared with pdisk) gpl1Plus # fdisk.c ]; - maintainers = with maintainers; [ OPNA2608 ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; # the toolchain that's being expected for Mac support (SCSI.h from Universal Headers 2.0, SIOUX.h from Metrowerks CoreWarrior) is ancient, unsure about BSDs - platforms = platforms.linux; - badPlatforms = platforms.aarch64; # missing some platform definitions + platforms = lib.platforms.linux; + badPlatforms = lib.platforms.aarch64; # missing some platform definitions }; } diff --git a/pkgs/by-name/ma/mac-robber/package.nix b/pkgs/by-name/ma/mac-robber/package.nix index 784b2397998c..22d9e3038151 100644 --- a/pkgs/by-name/ma/mac-robber/package.nix +++ b/pkgs/by-name/ma/mac-robber/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Digital investigation tool that collects data from allocated files in a mounted file system"; mainProgram = "mac-robber"; homepage = "https://www.sleuthkit.org/mac-robber/"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Only; }; }) diff --git a/pkgs/by-name/ma/macchanger/package.nix b/pkgs/by-name/ma/macchanger/package.nix index e65e1cca5fcb..49857d1237e4 100644 --- a/pkgs/by-name/ma/macchanger/package.nix +++ b/pkgs/by-name/ma/macchanger/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { "info" ]; - meta = with lib; { + meta = { description = "Utility for viewing/manipulating the MAC address of network interfaces"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ joachifm dotlambda ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/alobbs/macchanger"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "macchanger"; }; } diff --git a/pkgs/by-name/ma/maccy/package.nix b/pkgs/by-name/ma/maccy/package.nix index fd838fd7795d..8c462db0fb44 100644 --- a/pkgs/by-name/ma/maccy/package.nix +++ b/pkgs/by-name/ma/maccy/package.nix @@ -27,15 +27,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple clipboard manager for macOS"; homepage = "https://maccy.app"; - license = licenses.mit; + license = lib.licenses.mit; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ emilytrau baongoc124 ]; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/ma/macdylibbundler/package.nix b/pkgs/by-name/ma/macdylibbundler/package.nix index 3aa0b704783b..10af2eae3486 100644 --- a/pkgs/by-name/ma/macdylibbundler/package.nix +++ b/pkgs/by-name/ma/macdylibbundler/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { --prefix PATH ":" "${cctools}/bin" ''; - meta = with lib; { + meta = { description = "Utility to ease bundling libraries into executables for OSX"; longDescription = '' dylibbundler is a small command-line programs that aims to make bundling @@ -37,9 +37,9 @@ stdenv.mkDerivation rec { program uses plug-ins that have dependencies too. ''; homepage = "https://github.com/auriamg/macdylibbundler"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.nomeata ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.nomeata ]; }; } diff --git a/pkgs/by-name/ma/macfuse-stubs/package.nix b/pkgs/by-name/ma/macfuse-stubs/package.nix index 1461e3ef27f6..22391705e90a 100644 --- a/pkgs/by-name/ma/macfuse-stubs/package.nix +++ b/pkgs/by-name/ma/macfuse-stubs/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { cp -R usr/local/include/* $out/include ''; - meta = with lib; { + meta = { homepage = "https://osxfuse.github.io"; description = "Build time stubs for FUSE on macOS"; longDescription = '' @@ -58,13 +58,13 @@ stdenv.mkDerivation rec { use the installer from the project website. ''; - platforms = platforms.darwin; - maintainers = with maintainers; [ midchildan ]; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ midchildan ]; # macFUSE as a whole includes code with restrictions on commercial # redistribution. However, the build artifacts that we actually touch for # this derivation are distributed under a free license. - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus # libfuse ]; }; diff --git a/pkgs/by-name/ma/mackerel-agent/package.nix b/pkgs/by-name/ma/mackerel-agent/package.nix index fb802c55dfc4..0569a9924c61 100644 --- a/pkgs/by-name/ma/mackerel-agent/package.nix +++ b/pkgs/by-name/ma/mackerel-agent/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "System monitoring service for mackerel.io"; mainProgram = "mackerel-agent"; homepage = "https://github.com/mackerelio/mackerel-agent"; - license = licenses.asl20; - maintainers = with maintainers; [ midchildan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ midchildan ]; }; } diff --git a/pkgs/by-name/ma/macse/package.nix b/pkgs/by-name/ma/macse/package.nix index 58ad1dc617f7..46b56bb6f116 100644 --- a/pkgs/by-name/ma/macse/package.nix +++ b/pkgs/by-name/ma/macse/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Multiple alignment of coding sequences"; mainProgram = "macse"; homepage = "https://bioweb.supagro.inra.fr/macse/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl2; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/maddy/package.nix b/pkgs/by-name/ma/maddy/package.nix index 636d65e1cb36..1a38b3e4f770 100644 --- a/pkgs/by-name/ma/maddy/package.nix +++ b/pkgs/by-name/ma/maddy/package.nix @@ -64,10 +64,10 @@ buildGoModule rec { passthru.tests.nixos = nixosTests.maddy; - meta = with lib; { + meta = { description = "Composable all-in-one mail server"; homepage = "https://maddy.email"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/ma/madonctl/package.nix b/pkgs/by-name/ma/madonctl/package.nix index d95fa7e6a624..35dcb780ec52 100644 --- a/pkgs/by-name/ma/madonctl/package.nix +++ b/pkgs/by-name/ma/madonctl/package.nix @@ -39,10 +39,10 @@ buildGoModule rec { command = "madonctl version"; }; - meta = with lib; { + meta = { description = "CLI for the Mastodon social network API"; homepage = "https://github.com/McKael/madonctl"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "madonctl"; }; diff --git a/pkgs/by-name/ma/maeparser/package.nix b/pkgs/by-name/ma/maeparser/package.nix index f70136f826b0..1a7e4d6ef558 100644 --- a/pkgs/by-name/ma/maeparser/package.nix +++ b/pkgs/by-name/ma/maeparser/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/schrodinger/maeparser"; description = "Maestro file parser"; - maintainers = [ maintainers.rmcgibbo ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = [ lib.maintainers.rmcgibbo ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/maestro/package.nix b/pkgs/by-name/ma/maestro/package.nix index 169dedbf9eb8..57868467a6ac 100644 --- a/pkgs/by-name/ma/maestro/package.nix +++ b/pkgs/by-name/ma/maestro/package.nix @@ -44,14 +44,14 @@ stdenv.mkDerivation (finalAttrs: { update-source-version "maestro" "$NEW_VERSION" --print-changes ''; - meta = with lib; { + meta = { description = "Mobile UI Automation tool"; homepage = "https://maestro.mobile.dev/"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = lib.platforms.all; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; changelog = "https://github.com/mobile-dev-inc/maestro/blob/main/CHANGELOG.md"; - maintainers = with maintainers; [ SubhrajyotiSen ]; + maintainers = with lib.maintainers; [ SubhrajyotiSen ]; mainProgram = "maestro"; }; }) diff --git a/pkgs/by-name/ma/mafft/package.nix b/pkgs/by-name/ma/mafft/package.nix index ca1f89388a44..5b0aded430e5 100644 --- a/pkgs/by-name/ma/mafft/package.nix +++ b/pkgs/by-name/ma/mafft/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Multiple alignment program for amino acid or nucleotide sequences"; homepage = "https://mafft.cbrc.jp/alignment/software/"; - license = licenses.bsd3; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ma/mage/package.nix b/pkgs/by-name/ma/mage/package.nix index bf4f016dc8b7..df40be93f5fd 100644 --- a/pkgs/by-name/ma/mage/package.nix +++ b/pkgs/by-name/ma/mage/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X github.com/magefile/mage/mage.timestamp=1970-01-01T00:00:00Z" ]; - meta = with lib; { + meta = { description = "Make/Rake-like Build Tool Using Go"; mainProgram = "mage"; homepage = "https://magefile.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ swdunlop ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ swdunlop ]; }; } diff --git a/pkgs/by-name/ma/magic-vlsi/package.nix b/pkgs/by-name/ma/magic-vlsi/package.nix index 5735194590b4..284220fc2ca2 100644 --- a/pkgs/by-name/ma/magic-vlsi/package.nix +++ b/pkgs/by-name/ma/magic-vlsi/package.nix @@ -90,10 +90,10 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration"; env.NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-headerpad_max_install_names"; - meta = with lib; { + meta = { description = "VLSI layout tool written in Tcl"; homepage = "http://opencircuitdesign.com/magic/"; - license = licenses.mit; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/ma/magicrescue/package.nix b/pkgs/by-name/ma/magicrescue/package.nix index 0158a38a7ea3..6f22b33233bf 100644 --- a/pkgs/by-name/ma/magicrescue/package.nix +++ b/pkgs/by-name/ma/magicrescue/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { perl ]; - meta = with lib; { + meta = { description = "Find and recover deleted files on block devices"; mainProgram = "magicrescue"; homepage = "https://github.com/jbj/magicrescue"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ma/magnetico/package.nix b/pkgs/by-name/ma/magnetico/package.nix index f3106dd91a3d..2578fe55665b 100644 --- a/pkgs/by-name/ma/magnetico/package.nix +++ b/pkgs/by-name/ma/magnetico/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) magnetico; }; - meta = with lib; { + meta = { description = "Autonomous (self-hosted) BitTorrent DHT search engine suite"; homepage = "https://maxwell.eurofusion.eu/git/rnhmjoj/magnetico"; - license = licenses.agpl3Only; - badPlatforms = platforms.darwin; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.agpl3Only; + badPlatforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/ma/maid/package.nix b/pkgs/by-name/ma/maid/package.nix index f4b0ce2d3e2d..e760d2c32aee 100644 --- a/pkgs/by-name/ma/maid/package.nix +++ b/pkgs/by-name/ma/maid/package.nix @@ -14,11 +14,11 @@ bundlerApp rec { passthru.tests.run = callPackage ./test.nix { }; - meta = with lib; { + meta = { description = "Rule-based file mover and cleaner in Ruby"; homepage = "https://github.com/maid/maid"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ alanpearce ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ alanpearce ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/mailcap/package.nix b/pkgs/by-name/ma/mailcap/package.nix index 03d4b3401b9e..6a809eb9e53e 100644 --- a/pkgs/by-name/ma/mailcap/package.nix +++ b/pkgs/by-name/ma/mailcap/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { passthru.tests.nginx-mime = nixosTests.nginx-mime; - meta = with lib; { + meta = { description = "Helper application and MIME type associations for file types"; homepage = "https://pagure.io/mailcap"; - license = licenses.mit; - maintainers = with maintainers; [ c0bw3b ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ c0bw3b ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/maildrop/package.nix b/pkgs/by-name/ma/maildrop/package.nix index 3dc4970918d7..e13819560d14 100644 --- a/pkgs/by-name/ma/maildrop/package.nix +++ b/pkgs/by-name/ma/maildrop/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { doCheck = false; # fails with "setlocale: LC_ALL: cannot change locale (en_US.UTF-8)" - meta = with lib; { + meta = { homepage = "http://www.courier-mta.org/maildrop/"; description = "Mail filter/mail delivery agent that is used by the Courier Mail Server"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ma/mailpit/package.nix b/pkgs/by-name/ma/mailpit/package.nix index 90559dfa6957..4b0341c59ee2 100644 --- a/pkgs/by-name/ma/mailpit/package.nix +++ b/pkgs/by-name/ma/mailpit/package.nix @@ -90,12 +90,12 @@ buildGoModule { command = ./update.sh; }; - meta = with lib; { + meta = { description = "Email and SMTP testing tool with API for developers"; homepage = "https://github.com/axllent/mailpit"; changelog = "https://github.com/axllent/mailpit/releases/tag/v${version}"; - maintainers = with maintainers; [ stephank ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ stephank ]; + license = lib.licenses.mit; mainProgram = "mailpit"; }; } diff --git a/pkgs/by-name/ma/makebootfat/package.nix b/pkgs/by-name/ma/makebootfat/package.nix index 167a18ed3929..f39cd82e1116 100644 --- a/pkgs/by-name/ma/makebootfat/package.nix +++ b/pkgs/by-name/ma/makebootfat/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "0v0g1xax0y6hmw2x10nfhchp9n7vqyvgc33gcxqax8jdq2pxm1q2"; }; - meta = with lib; { + meta = { description = "Create bootable USB disks using the FAT filesystem and syslinux"; homepage = "http://advancemame.sourceforge.net/boot-readme.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "makebootfat"; }; } diff --git a/pkgs/by-name/ma/makefile2graph/package.nix b/pkgs/by-name/ma/makefile2graph/package.nix index 2e384a719440..787a4231351e 100644 --- a/pkgs/by-name/ma/makefile2graph/package.nix +++ b/pkgs/by-name/ma/makefile2graph/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { --set PATH ${lib.makeBinPath [ gnumake ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/lindenb/makefile2graph"; description = "Creates a graph of dependencies from GNU-Make; Output is a graphiz-dot file or a Gexf-XML file"; - maintainers = with maintainers; [ cmcdragonkai ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ cmcdragonkai ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/makemkv/package.nix b/pkgs/by-name/ma/makemkv/package.nix index 4ba7eb44b9b5..65b9292569c0 100644 --- a/pkgs/by-name/ma/makemkv/package.nix +++ b/pkgs/by-name/ma/makemkv/package.nix @@ -108,7 +108,7 @@ stdenv.mkDerivation ( }); }; - meta = with lib; { + meta = { description = "Convert blu-ray and dvd to mkv"; longDescription = '' makemkv is a one-click QT application that transcodes an encrypted @@ -119,14 +119,14 @@ stdenv.mkDerivation ( can always download the latest version from makemkv.com that will reset the expiration date. ''; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = [ - licenses.unfree - licenses.lgpl21 + lib.licenses.unfree + lib.licenses.lgpl21 ]; homepage = "https://makemkv.com"; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ jchw ]; + maintainers = with lib.maintainers; [ jchw ]; }; } ) diff --git a/pkgs/by-name/ma/maker-panel/package.nix b/pkgs/by-name/ma/maker-panel/package.nix index 0ba87d8fe84b..d14487d58832 100644 --- a/pkgs/by-name/ma/maker-panel/package.nix +++ b/pkgs/by-name/ma/maker-panel/package.nix @@ -34,10 +34,10 @@ rustPlatform.buildRustPackage rec { installManPage maker-panel.5 ''; - meta = with lib; { + meta = { description = "Make mechanical PCBs by combining shapes together"; homepage = "https://github.com/twitchyliquid64/maker-panel"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ma/makerpm/package.nix b/pkgs/by-name/ma/makerpm/package.nix index f7b0d884da7d..7977299bd612 100644 --- a/pkgs/by-name/ma/makerpm/package.nix +++ b/pkgs/by-name/ma/makerpm/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { sha256 = "089dkbh5705ppyi920rd0ksjc0143xmvnhm8qrx93rsgwc1ggi1y"; }; - meta = with lib; { + meta = { homepage = "https://github.com/ivan-tkatchev/makerpm/"; description = "Clean, simple RPM packager reimplemented completely from scratch"; mainProgram = "makerpm"; - license = licenses.free; - platforms = platforms.all; - maintainers = [ maintainers.ivan-tkatchev ]; + license = lib.licenses.free; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.ivan-tkatchev ]; }; } diff --git a/pkgs/by-name/ma/makeself/package.nix b/pkgs/by-name/ma/makeself/package.nix index de6d35c66c14..de67c34ec017 100644 --- a/pkgs/by-name/ma/makeself/package.nix +++ b/pkgs/by-name/ma/makeself/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { sed -e "s|^HEADER=.*|HEADER=${sharePath}/makeself-header.sh|" -i $out/bin/makeself ''; - meta = with lib; { + meta = { homepage = "https://makeself.io"; description = "Utility to create self-extracting packages"; - license = licenses.gpl2; - maintainers = [ maintainers.wmertens ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.wmertens ]; + platforms = lib.platforms.all; mainProgram = "makeself"; }; } diff --git a/pkgs/by-name/ma/makima/package.nix b/pkgs/by-name/ma/makima/package.nix index 6f9118a3e4ca..989482e7aafc 100644 --- a/pkgs/by-name/ma/makima/package.nix +++ b/pkgs/by-name/ma/makima/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ udev ]; - meta = with lib; { + meta = { description = "Linux daemon to remap and create macros for keyboards, mice and controllers"; homepage = "https://github.com/cyber-sushi/makima"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ByteSudoer ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ByteSudoer ]; + platforms = lib.platforms.linux; mainProgram = "makima"; }; } diff --git a/pkgs/by-name/ma/malt/package.nix b/pkgs/by-name/ma/malt/package.nix index c5046ead52c0..42cc34333d32 100644 --- a/pkgs/by-name/ma/malt/package.nix +++ b/pkgs/by-name/ma/malt/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { libunwind ]; - meta = with lib; { + meta = { description = "Memory tool to find where you allocate your memory"; homepage = "https://github.com/memtt/malt"; - license = licenses.cecill-c; - maintainers = with maintainers; [ skohtv ]; - platforms = platforms.linux; + license = lib.licenses.cecill-c; + maintainers = with lib.maintainers; [ skohtv ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ma/maltego/package.nix b/pkgs/by-name/ma/maltego/package.nix index 9521b66b4487..5b2d2cc3d322 100644 --- a/pkgs/by-name/ma/maltego/package.nix +++ b/pkgs/by-name/ma/maltego/package.nix @@ -76,16 +76,16 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.maltego.com"; description = "Open source intelligence and forensics application, enabling to easily gather information about DNS, domains, IP addresses, websites, persons, and so on"; mainProgram = "maltego"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ emilytrau d3vil0p3r ]; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; }; }) diff --git a/pkgs/by-name/ma/mamba-cpp/package.nix b/pkgs/by-name/ma/mamba-cpp/package.nix index 682f6464637b..344a9e9d3eef 100644 --- a/pkgs/by-name/ma/mamba-cpp/package.nix +++ b/pkgs/by-name/ma/mamba-cpp/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { nativeInstallCheckInputs = [ versionCheckHook ]; - meta = with lib; { + meta = { description = "Reimplementation of the conda package manager"; homepage = "https://github.com/mamba-org/mamba"; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ klchen0112 ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ klchen0112 ]; mainProgram = "mamba"; }; } diff --git a/pkgs/by-name/ma/mamba/package.nix b/pkgs/by-name/ma/mamba/package.nix index 53d604fccb03..82b20777f72c 100644 --- a/pkgs/by-name/ma/mamba/package.nix +++ b/pkgs/by-name/ma/mamba/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/brummer10/Mamba"; description = "Virtual MIDI keyboard for Jack Audio Connection Kit"; - license = licenses.bsd0; - maintainers = with maintainers; [ + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ magnetophon ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ma/man-db/package.nix b/pkgs/by-name/ma/man-db/package.nix index b223637ea535..0b173b013f7b 100644 --- a/pkgs/by-name/ma/man-db/package.nix +++ b/pkgs/by-name/ma/man-db/package.nix @@ -121,10 +121,10 @@ stdenv.mkDerivation rec { nixos = nixosTests.man; }; - meta = with lib; { + meta = { homepage = "http://man-db.nongnu.org"; description = "Implementation of the standard Unix documentation system accessed using the man command"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = lib.platforms.unix; mainProgram = "man"; }; diff --git a/pkgs/by-name/ma/mandelbulber/package.nix b/pkgs/by-name/ma/mandelbulber/package.nix index 775bec9560cc..18e83eebb1fd 100644 --- a/pkgs/by-name/ma/mandelbulber/package.nix +++ b/pkgs/by-name/ma/mandelbulber/package.nix @@ -66,13 +66,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "3D fractal rendering engine"; mainProgram = "mandelbulber2"; longDescription = "Mandelbulber creatively generates three-dimensional fractals. Explore trigonometric, hyper-complex, Mandelbox, IFS, and many other 3D fractals."; homepage = "https://mandelbulber.com"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ kovirobi ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kovirobi ]; }; }) diff --git a/pkgs/by-name/ma/mandoc/package.nix b/pkgs/by-name/ma/mandoc/package.nix index 8c65a0ed5f74..b546854d7816 100644 --- a/pkgs/by-name/ma/mandoc/package.nix +++ b/pkgs/by-name/ma/mandoc/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { nixos = nixosTests.man; }; - meta = with lib; { + meta = { # check if we can execute binaries for the host platform on the build platform # even though the platforms aren't the same. mandoc can't be cross compiled # (easily) because of its configurePhase which executes compiled programs @@ -78,9 +78,9 @@ stdenv.mkDerivation rec { homepage = "https://mandoc.bsd.lv/"; description = "Suite of tools compiling mdoc and man"; downloadPage = "http://mandoc.bsd.lv/snapshots/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ramkromberg sternenseemann ]; diff --git a/pkgs/by-name/ma/manga-cli/package.nix b/pkgs/by-name/ma/manga-cli/package.nix index 9319628ae253..3f0365b1df88 100644 --- a/pkgs/by-name/ma/manga-cli/package.nix +++ b/pkgs/by-name/ma/manga-cli/package.nix @@ -36,11 +36,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/7USTIN/manga-cli"; description = "Bash script for reading mangas via the terminal by scraping manganato"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ baitinq ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ baitinq ]; mainProgram = "manga-cli"; }; } diff --git a/pkgs/by-name/ma/mangal/package.nix b/pkgs/by-name/ma/mangal/package.nix index e06d33506753..2b0e7d203293 100644 --- a/pkgs/by-name/ma/mangal/package.nix +++ b/pkgs/by-name/ma/mangal/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { doCheck = false; # test fail because of sandbox - meta = with lib; { + meta = { description = "CLI app written in Go which scrapes, downloads and packs manga into different formats"; homepage = "https://github.com/metafates/mangal"; - license = licenses.mit; - maintainers = [ maintainers.bertof ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.bertof ]; mainProgram = "mangal"; }; } diff --git a/pkgs/by-name/ma/mangl/package.nix b/pkgs/by-name/ma/mangl/package.nix index 53c00df623d2..0a50ce619edb 100644 --- a/pkgs/by-name/ma/mangl/package.nix +++ b/pkgs/by-name/ma/mangl/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/zigalenarcic/mangl"; description = "Graphical man page viewer based on the mandoc library"; - license = licenses.bsd2; - maintainers = with maintainers; [ nrabulinski ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nrabulinski ]; + platforms = lib.platforms.linux; mainProgram = "mangl"; }; } diff --git a/pkgs/by-name/ma/manifest-tool/package.nix b/pkgs/by-name/ma/manifest-tool/package.nix index 71190b146eba..53ec9f6e2f8a 100644 --- a/pkgs/by-name/ma/manifest-tool/package.nix +++ b/pkgs/by-name/ma/manifest-tool/package.nix @@ -55,11 +55,11 @@ buildGoModule rec { package = manifest-tool; }; - meta = with lib; { + meta = { description = "Command line tool to create and query container image manifest list/indexes"; mainProgram = "manifest-tool"; homepage = "https://github.com/estesp/manifest-tool"; - license = licenses.asl20; - maintainers = with maintainers; [ tricktron ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tricktron ]; }; } diff --git a/pkgs/by-name/ma/manix/package.nix b/pkgs/by-name/ma/manix/package.nix index 0840933f8316..7ab2000cd291 100644 --- a/pkgs/by-name/ma/manix/package.nix +++ b/pkgs/by-name/ma/manix/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6KkZg8MXQIewhwdLE8NiqllJifa0uvebU1/MqeE/bdI="; - meta = with lib; { + meta = { description = "Fast CLI documentation searcher for Nix"; homepage = "https://github.com/nix-community/manix"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ lecoqjacob ]; mainProgram = "manix"; diff --git a/pkgs/by-name/ma/manrope/package.nix b/pkgs/by-name/ma/manrope/package.nix index aa61acc65408..1e967ebe7c6c 100644 --- a/pkgs/by-name/ma/manrope/package.nix +++ b/pkgs/by-name/ma/manrope/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open-source modern sans-serif font family"; homepage = "https://www.gent.media/manrope"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ma/manticoresearch/package.nix b/pkgs/by-name/ma/manticoresearch/package.nix index 48c2cb16d222..c0b190e29e60 100644 --- a/pkgs/by-name/ma/manticoresearch/package.nix +++ b/pkgs/by-name/ma/manticoresearch/package.nix @@ -116,13 +116,13 @@ stdenv.mkDerivation (finalAttrs: { command = "searchd --version"; }; - meta = with lib; { + meta = { description = "Easy to use open source fast database for search"; homepage = "https://manticoresearch.com"; changelog = "https://github.com/manticoresoftware/manticoresearch/releases/tag/${finalAttrs.version}"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "searchd"; - maintainers = [ maintainers.jdelStrother ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.jdelStrother ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ma/map-cmd/package.nix b/pkgs/by-name/ma/map-cmd/package.nix index e11af51aa70f..e78da614fa34 100644 --- a/pkgs/by-name/ma/map-cmd/package.nix +++ b/pkgs/by-name/ma/map-cmd/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { checkPhase = "./test/tests.sh"; - meta = with lib; { + meta = { description = "Map lines from stdin to commands"; mainProgram = "map"; homepage = "https://github.com/soveran/map"; - license = licenses.bsd2; - maintainers = with maintainers; [ pogobanane ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ pogobanane ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/mapscii/package.nix b/pkgs/by-name/ma/mapscii/package.nix index 3657192d3571..9367c0860da5 100644 --- a/pkgs/by-name/ma/mapscii/package.nix +++ b/pkgs/by-name/ma/mapscii/package.nix @@ -23,12 +23,12 @@ buildNpmPackage rec { rm -r $out/lib/node_modules/mapscii/node_modules/.bin ''; - meta = with lib; { + meta = { description = "Braille & ASCII world map renderer for your console"; homepage = "https://github.com/rastapasta/mapscii"; - license = licenses.mit; - maintainers = with maintainers; [ kinzoku ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kinzoku ]; mainProgram = "mapscii"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/maptool/package.nix b/pkgs/by-name/ma/maptool/package.nix index 4a596f8a7874..390cb0ee17ed 100644 --- a/pkgs/by-name/ma/maptool/package.nix +++ b/pkgs/by-name/ma/maptool/package.nix @@ -20,16 +20,16 @@ let hash = "sha256-QSJjXgzjoKIwTvIx6iWCHjleJTAAI7qnbcxZb8sygxY="; }; - meta = with lib; { + meta = { description = "Virtual Tabletop for playing roleplaying games with remote players or face to face"; mainProgram = "maptool"; homepage = "https://www.rptools.net/toolbox/maptool/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ rhendric ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ rhendric ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ma/marathi-cursive/package.nix b/pkgs/by-name/ma/marathi-cursive/package.nix index 8ab61de1f1d4..cb67a6d09700 100644 --- a/pkgs/by-name/ma/marathi-cursive/package.nix +++ b/pkgs/by-name/ma/marathi-cursive/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/MihailJP/MarathiCursive"; description = "Modi script font with Graphite and OpenType support"; - maintainers = with maintainers; [ mathnerd314 ]; - license = licenses.mplus; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mathnerd314 ]; + license = lib.licenses.mplus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/marathonctl/package.nix b/pkgs/by-name/ma/marathonctl/package.nix index 3a1f344e53af..4741bdcce0e6 100644 --- a/pkgs/by-name/ma/marathonctl/package.nix +++ b/pkgs/by-name/ma/marathonctl/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/shoenig/marathonctl"; description = "CLI tool for Marathon"; - license = licenses.mit; - maintainers = with maintainers; [ manveru ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manveru ]; mainProgram = "marathonctl"; }; } diff --git a/pkgs/by-name/ma/marcel/package.nix b/pkgs/by-name/ma/marcel/package.nix index 1e3e1391f488..577fb7db15b5 100644 --- a/pkgs/by-name/ma/marcel/package.nix +++ b/pkgs/by-name/ma/marcel/package.nix @@ -39,11 +39,11 @@ python3Packages.buildPythonApplication rec { --prefix PYTHONPATH : "$program_PYTHONPATH" ''; - meta = with lib; { + meta = { description = "Modern shell"; homepage = "https://github.com/geophile/marcel"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kud ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kud ]; mainProgram = "marcel"; }; } diff --git a/pkgs/by-name/ma/marge-bot/package.nix b/pkgs/by-name/ma/marge-bot/package.nix index 0e962e468dbd..bc7ed6d6ba98 100644 --- a/pkgs/by-name/ma/marge-bot/package.nix +++ b/pkgs/by-name/ma/marge-bot/package.nix @@ -51,12 +51,12 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Merge bot for GitLab"; homepage = "https://gitlab.com/marge-org/marge-bot"; changelog = "https://gitlab.com/marge-org/marge-bot/-/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin lelgenio ]; diff --git a/pkgs/by-name/ma/mari0/package.nix b/pkgs/by-name/ma/mari0/package.nix index 38a1fa5d72a3..4a35b3abf3dc 100644 --- a/pkgs/by-name/ma/mari0/package.nix +++ b/pkgs/by-name/ma/mari0/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Crossover between Super Mario Bros. and Portal"; mainProgram = "mari0"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; downloadPage = "https://stabyourself.net/mari0/"; }; diff --git a/pkgs/by-name/ma/mariadb-connector-java/package.nix b/pkgs/by-name/ma/mariadb-connector-java/package.nix index d842a08b996f..bd47c48aacd7 100644 --- a/pkgs/by-name/ma/mariadb-connector-java/package.nix +++ b/pkgs/by-name/ma/mariadb-connector-java/package.nix @@ -28,12 +28,12 @@ maven.buildMavenPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "MariaDB Connector/J is used to connect applications developed in Java to MariaDB and MySQL databases"; homepage = "https://mariadb.com/kb/en/about-mariadb-connector-j/"; changelog = "https://mariadb.com/kb/en/mariadb-connector-j-release-notes/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ anthonyroussel ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ anthonyroussel ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/mariadb-galera/package.nix b/pkgs/by-name/ma/mariadb-galera/package.nix index 81a1ee8ab801..c2002555c61b 100644 --- a/pkgs/by-name/ma/mariadb-galera/package.nix +++ b/pkgs/by-name/ma/mariadb-galera/package.nix @@ -47,14 +47,14 @@ stdenv.mkDerivation rec { inherit (nixosTests) mariadb-galera; }; - meta = with lib; { + meta = { description = "Galera 3 wsrep provider library"; mainProgram = "garbd"; homepage = "https://galeracluster.com/"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ izorkin ]; - teams = [ teams.helsinki-systems ]; - platforms = platforms.all; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ izorkin ]; + teams = [ lib.teams.helsinki-systems ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/ma/marisa/package.nix b/pkgs/by-name/ma/marisa/package.nix index 027f3220b89d..e4add9a10ce9 100644 --- a/pkgs/by-name/ma/marisa/package.nix +++ b/pkgs/by-name/ma/marisa/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/s-yata/marisa-trie"; changelog = "https://github.com/s-yata/marisa-trie/releases/tag/${src.tag}"; description = "Static and space-efficient trie data structure library"; - license = licenses.bsd3; - maintainers = with maintainers; [ sifmelcara ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sifmelcara ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/mark/package.nix b/pkgs/by-name/ma/mark/package.nix index d9709279077d..918ee20b7ecf 100644 --- a/pkgs/by-name/ma/mark/package.nix +++ b/pkgs/by-name/ma/mark/package.nix @@ -37,12 +37,12 @@ buildGoModule rec { "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; - meta = with lib; { + meta = { description = "Tool for syncing your markdown documentation with Atlassian Confluence pages"; mainProgram = "mark"; homepage = "https://github.com/kovetskiy/mark"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rguevara84 wrbbz ]; diff --git a/pkgs/by-name/ma/markscribe/package.nix b/pkgs/by-name/ma/markscribe/package.nix index 7124b951a9de..41b75a620ead 100644 --- a/pkgs/by-name/ma/markscribe/package.nix +++ b/pkgs/by-name/ma/markscribe/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Your personal markdown scribe with template-engine and Git(Hub) & RSS powers"; mainProgram = "markscribe"; homepage = "https://github.com/muesli/markscribe"; changelog = "https://github.com/muesli/markscribe/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ma/marl/package.nix b/pkgs/by-name/ma/marl/package.nix index b2e338d11bca..40d00759efba 100644 --- a/pkgs/by-name/ma/marl/package.nix +++ b/pkgs/by-name/ma/marl/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 3.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://github.com/google/marl"; description = "Hybrid thread / fiber task scheduler written in C++ 11"; - platforms = platforms.all; - license = licenses.asl20; - maintainers = with maintainers; [ breakds ]; + platforms = lib.platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ breakds ]; }; } diff --git a/pkgs/by-name/ma/marlin-calc/package.nix b/pkgs/by-name/ma/marlin-calc/package.nix index 3aaab1652fc1..fa653aaa904e 100644 --- a/pkgs/by-name/ma/marlin-calc/package.nix +++ b/pkgs/by-name/ma/marlin-calc/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { install -Dm0755 {,$out/bin/}marlin-calc ''; - meta = with lib; { + meta = { homepage = "https://github.com/eyal0/Marlin"; description = "Marlin 3D printer timing simulator"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/marlin-calc.x86_64-darwin mainProgram = "marlin-calc"; }; diff --git a/pkgs/by-name/ma/marp-cli/package.nix b/pkgs/by-name/ma/marp-cli/package.nix index aea856212481..ffc186e8356c 100644 --- a/pkgs/by-name/ma/marp-cli/package.nix +++ b/pkgs/by-name/ma/marp-cli/package.nix @@ -22,10 +22,10 @@ buildNpmPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "About A CLI interface for Marp and Marpit based converters"; homepage = "https://github.com/marp-team/marp-cli"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = nodejs.meta.platforms; mainProgram = "marp"; diff --git a/pkgs/by-name/ma/marst/package.nix b/pkgs/by-name/ma/marst/package.nix index a68dead275c1..cd5697c92df1 100644 --- a/pkgs/by-name/ma/marst/package.nix +++ b/pkgs/by-name/ma/marst/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { install -m644 doc/marst.pdf -Dt $out/share/doc/${pname}/ ''; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/marst/"; description = "Algol-60-to-C translator"; longDescription = '' @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { - the converter, MACVT, that allows to convert existing Algol 60 programs from some other representations to MARST representation. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/martin/package.nix b/pkgs/by-name/ma/martin/package.nix index 6fbde09f3fd1..5a6e76ae2ce0 100644 --- a/pkgs/by-name/ma/martin/package.nix +++ b/pkgs/by-name/ma/martin/package.nix @@ -53,15 +53,15 @@ rustPlatform.buildRustPackage rec { "--skip tables_multiple_geom_ok" ]; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = "Blazing fast and lightweight PostGIS vector tiles server"; homepage = "https://martin.maplibre.org/"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ sikmir ]; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/ma/marvin/package.nix b/pkgs/by-name/ma/marvin/package.nix index 25f155bba171..bc456549e0a4 100644 --- a/pkgs/by-name/ma/marvin/package.nix +++ b/pkgs/by-name/ma/marvin/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { )} ''; - meta = with lib; { + meta = { description = "Chemical modelling, analysis and structure drawing program"; homepage = "https://chemaxon.com/products/marvin"; - maintainers = with maintainers; [ fusion809 ]; - license = licenses.unfree; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ fusion809 ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ma/marwaita-orange/package.nix b/pkgs/by-name/ma/marwaita-orange/package.nix index 84cfff18cdc1..5ce559ef717c 100644 --- a/pkgs/by-name/ma/marwaita-orange/package.nix +++ b/pkgs/by-name/ma/marwaita-orange/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Ubuntu Style of Marwaita GTK theme"; homepage = "https://www.pling.com/p/1352833/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ma/marwaita-red/package.nix b/pkgs/by-name/ma/marwaita-red/package.nix index 47022469591e..df84010e943a 100644 --- a/pkgs/by-name/ma/marwaita-red/package.nix +++ b/pkgs/by-name/ma/marwaita-red/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Marwaita GTK theme with Peppermint Os Linux style"; homepage = "https://www.pling.com/p/1399569/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ma/marwaita-teal/package.nix b/pkgs/by-name/ma/marwaita-teal/package.nix index 76d8c73829b6..9d1f18b76238 100644 --- a/pkgs/by-name/ma/marwaita-teal/package.nix +++ b/pkgs/by-name/ma/marwaita-teal/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Manjaro Style of Marwaita GTK theme"; homepage = "https://www.pling.com/p/1351213/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ma/marwaita-yellow/package.nix b/pkgs/by-name/ma/marwaita-yellow/package.nix index 2b1346214753..f3d20ee0a6a8 100644 --- a/pkgs/by-name/ma/marwaita-yellow/package.nix +++ b/pkgs/by-name/ma/marwaita-yellow/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Marwaita GTK theme with Pop_os Linux style"; homepage = "https://www.pling.com/p/1377894/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ma/marwaita/package.nix b/pkgs/by-name/ma/marwaita/package.nix index 7f0b14b5a310..5fd2f09ebec8 100644 --- a/pkgs/by-name/ma/marwaita/package.nix +++ b/pkgs/by-name/ma/marwaita/package.nix @@ -41,11 +41,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "GTK theme supporting Budgie, Pantheon, Mate, Xfce4 and GNOME desktops"; homepage = "https://www.pling.com/p/1239855/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ma/mas/package.nix b/pkgs/by-name/ma/mas/package.nix index 32b90b0bc08a..0e3eed2b9bbf 100644 --- a/pkgs/by-name/ma/mas/package.nix +++ b/pkgs/by-name/ma/mas/package.nix @@ -49,12 +49,12 @@ stdenvNoCC.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Mac App Store command line interface"; homepage = "https://github.com/mas-cli/mas"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "mas"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ zachcoyle ]; platforms = [ diff --git a/pkgs/by-name/ma/massren/package.nix b/pkgs/by-name/ma/massren/package.nix index 0ae0c0c33205..7d09accc18d9 100644 --- a/pkgs/by-name/ma/massren/package.nix +++ b/pkgs/by-name/ma/massren/package.nix @@ -41,9 +41,9 @@ buildGoModule rec { in [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; - meta = with lib; { + meta = { description = "Easily rename multiple files using your text editor"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/laurent22/massren"; maintainers = [ ]; mainProgram = "massren"; diff --git a/pkgs/by-name/ma/master_me/package.nix b/pkgs/by-name/ma/master_me/package.nix index 90036b2e284f..b0697ddf0dec 100644 --- a/pkgs/by-name/ma/master_me/package.nix +++ b/pkgs/by-name/ma/master_me/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/trummerschlunk/master_me"; description = "Automatic mastering plugin for live streaming, podcasts and internet radio"; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # error: no type or protocol named 'NSPasteboardType' - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "master_me"; }; } diff --git a/pkgs/by-name/ma/mastodon-archive/package.nix b/pkgs/by-name/ma/mastodon-archive/package.nix index 02ea1bd784e3..3e950e847b24 100644 --- a/pkgs/by-name/ma/mastodon-archive/package.nix +++ b/pkgs/by-name/ma/mastodon-archive/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "mastodon_archive" ]; - meta = with lib; { + meta = { description = "Utility for backing up your Mastodon content"; mainProgram = "mastodon-archive"; homepage = "https://alexschroeder.ch/software/Mastodon_Archive"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ julm ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ julm ]; }; } diff --git a/pkgs/by-name/ma/mastotool/package.nix b/pkgs/by-name/ma/mastotool/package.nix index a9b91c88b401..de5cf7bf519f 100644 --- a/pkgs/by-name/ma/mastotool/package.nix +++ b/pkgs/by-name/ma/mastotool/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Collection of command-line tools to work with your Mastodon account"; homepage = "https://github.com/muesli/mastotool"; changelog = "https://github.com/muesli/mastotool/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "mastotool"; }; diff --git a/pkgs/by-name/ma/matcha-gtk-theme/package.nix b/pkgs/by-name/ma/matcha-gtk-theme/package.nix index 9b6d4156f668..b23a5b2dde5b 100644 --- a/pkgs/by-name/ma/matcha-gtk-theme/package.nix +++ b/pkgs/by-name/ma/matcha-gtk-theme/package.nix @@ -70,11 +70,11 @@ lib.checkListOfEnum "${pname}: color variants" [ "standard" "light" "dark" ] col passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Stylish flat Design theme for GTK based desktop environments"; homepage = "https://vinceliuice.github.io/theme-matcha"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ma/matcha-rss-digest/package.nix b/pkgs/by-name/ma/matcha-rss-digest/package.nix index ed706f032d5a..b9fdfbdbc1fd 100644 --- a/pkgs/by-name/ma/matcha-rss-digest/package.nix +++ b/pkgs/by-name/ma/matcha-rss-digest/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-CURFy92K4aNF9xC8ik6RDadRAvlw8p3Xc+gWE2un6cc="; - meta = with lib; { + meta = { homepage = "https://github.com/piqoni/matcha"; description = "Daily digest generator from a list of RSS feeds"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "matcha"; - maintainers = with maintainers; [ foo-dogsquared ]; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/by-name/ma/materia-kde-theme/package.nix b/pkgs/by-name/ma/materia-kde-theme/package.nix index 990bc77b0762..0cfc022f3901 100644 --- a/pkgs/by-name/ma/materia-kde-theme/package.nix +++ b/pkgs/by-name/ma/materia-kde-theme/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Port of the materia theme for Plasma"; homepage = "https://github.com/PapirusDevelopmentTeam/materia-kde"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.diffumist ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.diffumist ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/materia-theme/package.nix b/pkgs/by-name/ma/materia-theme/package.nix index f772a995ba23..109d87adc303 100644 --- a/pkgs/by-name/ma/materia-theme/package.nix +++ b/pkgs/by-name/ma/materia-theme/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { rm $out/share/themes/*/COPYING ''; - meta = with lib; { + meta = { description = "Material Design theme for GNOME/GTK based desktop environments"; homepage = "https://github.com/nana-4/materia-theme"; - license = licenses.gpl2Only; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/material-black-colors/package.nix b/pkgs/by-name/ma/material-black-colors/package.nix index 7f3386f70cd0..7d40703b3720 100644 --- a/pkgs/by-name/ma/material-black-colors/package.nix +++ b/pkgs/by-name/ma/material-black-colors/package.nix @@ -60,12 +60,12 @@ lib.checkListOfEnum "${pname}: color variants" colorVariantList colorVariants dontFixup = true; - meta = with lib; { + meta = { description = "Material Black Colors icons"; homepage = "https://github.com/rtlewis88/rtl88-Themes/tree/material-black-COLORS"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.all; - license = with licenses; [ + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.all; + license = with lib.licenses; [ gpl3Plus mit ]; diff --git a/pkgs/by-name/ma/material-design-icons/package.nix b/pkgs/by-name/ma/material-design-icons/package.nix index 449eb27f16e6..88c7e5768793 100644 --- a/pkgs/by-name/ma/material-design-icons/package.nix +++ b/pkgs/by-name/ma/material-design-icons/package.nix @@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "7000+ Material Design Icons from the Community"; longDescription = '' Material Design Icons' growing icon collection allows designers and @@ -39,9 +39,9 @@ stdenvNoCC.mkDerivation rec { color and size they need for any project. ''; homepage = "https://materialdesignicons.com"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ vlaci dixslyf ]; diff --git a/pkgs/by-name/ma/material-icons/package.nix b/pkgs/by-name/ma/material-icons/package.nix index a8dfb57c9cc7..33559df909b4 100644 --- a/pkgs/by-name/ma/material-icons/package.nix +++ b/pkgs/by-name/ma/material-icons/package.nix @@ -33,11 +33,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "System status icons by Google, featuring material design"; homepage = "https://material.io/icons"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ mpcsh ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mpcsh ]; }; }) diff --git a/pkgs/by-name/ma/math-preview/package.nix b/pkgs/by-name/ma/math-preview/package.nix index 08a577ebaac3..12a9149382b5 100644 --- a/pkgs/by-name/ma/math-preview/package.nix +++ b/pkgs/by-name/ma/math-preview/package.nix @@ -25,12 +25,12 @@ buildNpmPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Emacs preview math inline"; mainProgram = "math-preview"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://gitlab.com/matsievskiysv/math-preview"; - maintainers = with maintainers; [ renesat ]; + maintainers = with lib.maintainers; [ renesat ]; inherit (nodejs.meta) platforms; }; } diff --git a/pkgs/by-name/ma/mathematica/package.nix b/pkgs/by-name/ma/mathematica/package.nix index 1ed286b2f96b..0e11ca609d8a 100644 --- a/pkgs/by-name/ma/mathematica/package.nix +++ b/pkgs/by-name/ma/mathematica/package.nix @@ -70,12 +70,12 @@ callPackage ./generic.nix { + "-${found-version.version}" + lib.optionalString (lang != "en") "-${lang}" ); - meta = with lib; { + meta = { description = "Wolfram Mathematica computational software system"; homepage = "https://www.wolfram.com/mathematica/"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ rafaelrc ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/ma/mathgl/package.nix b/pkgs/by-name/ma/mathgl/package.nix index 4081f7d8cd59..8d06aa75ba62 100644 --- a/pkgs/by-name/ma/mathgl/package.nix +++ b/pkgs/by-name/ma/mathgl/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation rec { libGL ]; - meta = with lib; { + meta = { description = "Library for scientific data visualization"; homepage = "https://mathgl.sourceforge.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 lgpl3 ]; - platforms = platforms.linux; - maintainers = [ maintainers.GabrielDougherty ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.GabrielDougherty ]; # build tool make_bin is built for host broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; }; diff --git a/pkgs/by-name/ma/mathpix-snipping-tool/package.nix b/pkgs/by-name/ma/mathpix-snipping-tool/package.nix index 140a97620026..8720b46e2dd4 100644 --- a/pkgs/by-name/ma/mathpix-snipping-tool/package.nix +++ b/pkgs/by-name/ma/mathpix-snipping-tool/package.nix @@ -28,13 +28,13 @@ appimageTools.wrapType2 { wrapProgram $out/bin/${pname} --set QT_QPA_PLATFORM xcb ''; - meta = with lib; { + meta = { description = "OCR tool to convert pictures to LaTeX"; homepage = "https://mathpix.com/"; - license = licenses.unfree; + license = lib.licenses.unfree; maintainers = [ - maintainers.hiro98 - maintainers.axodentally + lib.maintainers.hiro98 + lib.maintainers.axodentally ]; platforms = [ "x86_64-linux" ]; mainProgram = "mathpix-snipping-tool"; diff --git a/pkgs/by-name/ma/matrix-alertmanager/package.nix b/pkgs/by-name/ma/matrix-alertmanager/package.nix index 945257620cff..f27339a8038e 100644 --- a/pkgs/by-name/ma/matrix-alertmanager/package.nix +++ b/pkgs/by-name/ma/matrix-alertmanager/package.nix @@ -25,12 +25,12 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = with lib; { + meta = { changelog = "https://github.com/jaywink/matrix-alertmanager/blob/${src.rev}/CHANGELOG.md"; description = "Bot to receive Alertmanager webhook events and forward them to chosen rooms"; mainProgram = "matrix-alertmanager"; homepage = "https://github.com/jaywink/matrix-alertmanager"; - license = licenses.mit; - maintainers = with maintainers; [ erethon ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erethon ]; }; } diff --git a/pkgs/by-name/ma/matrix-brandy/package.nix b/pkgs/by-name/ma/matrix-brandy/package.nix index 4d768943462d..8c93567d6657 100644 --- a/pkgs/by-name/ma/matrix-brandy/package.nix +++ b/pkgs/by-name/ma/matrix-brandy/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://brandy.matrixnetwork.co.uk/"; description = "Matrix Brandy BASIC VI for Linux, Windows, MacOSX"; mainProgram = "brandy"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ fiq ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fiq ]; }; } diff --git a/pkgs/by-name/ma/matrix-corporal/package.nix b/pkgs/by-name/ma/matrix-corporal/package.nix index f37b3342dad0..07270a97ce67 100644 --- a/pkgs/by-name/ma/matrix-corporal/package.nix +++ b/pkgs/by-name/ma/matrix-corporal/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { vendorHash = "sha256-sC9JA6VRmHGuO3anaZW2Ih5QnRrUom9IIOE7yi3TTG8="; - meta = with lib; { + meta = { homepage = "https://github.com/devture/matrix-corporal"; description = "Reconciliator and gateway for a managed Matrix server"; - maintainers = with maintainers; [ dandellion ]; + maintainers = with lib.maintainers; [ dandellion ]; mainProgram = "devture-matrix-corporal"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; }; } diff --git a/pkgs/by-name/ma/matrix-dl/package.nix b/pkgs/by-name/ma/matrix-dl/package.nix index b93346a64c75..b5a1cf4b43ae 100644 --- a/pkgs/by-name/ma/matrix-dl/package.nix +++ b/pkgs/by-name/ma/matrix-dl/package.nix @@ -24,12 +24,12 @@ python3Packages.buildPythonApplication rec { matrix-client ]; - meta = with lib; { + meta = { description = "Download backlogs from Matrix as raw text"; mainProgram = "matrix-dl"; homepage = src.meta.homepage; - license = licenses.gpl1Plus; - maintainers = with maintainers; [ aw ]; - platforms = platforms.unix; + license = lib.licenses.gpl1Plus; + maintainers = with lib.maintainers; [ aw ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/matrix-hook/package.nix b/pkgs/by-name/ma/matrix-hook/package.nix index 244ba93eec09..a9635c4b10d3 100644 --- a/pkgs/by-name/ma/matrix-hook/package.nix +++ b/pkgs/by-name/ma/matrix-hook/package.nix @@ -18,12 +18,12 @@ buildGoModule rec { install message.html.tmpl -Dt $out ''; - meta = with lib; { + meta = { description = "Simple webhook for matrix"; mainProgram = "matrix-hook"; homepage = "https://github.com/pinpox/matrix-hook"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pinpox mic92 zowoq diff --git a/pkgs/by-name/ma/matrix-media-repo/package.nix b/pkgs/by-name/ma/matrix-media-repo/package.nix index 5a4b057357cc..82314e6df5ff 100644 --- a/pkgs/by-name/ma/matrix-media-repo/package.nix +++ b/pkgs/by-name/ma/matrix-media-repo/package.nix @@ -60,12 +60,12 @@ buildGoModule { doCheck = false; # requires docker - meta = with lib; { + meta = { description = "Highly configurable multi-domain media repository for Matrix"; homepage = "https://github.com/t2bot/matrix-media-repo"; changelog = "https://github.com/t2bot/matrix-media-repo/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "media_repo"; }; } diff --git a/pkgs/by-name/ma/matrix-sdk-crypto-nodejs/package.nix b/pkgs/by-name/ma/matrix-sdk-crypto-nodejs/package.nix index f5b7644f5ce6..0b12740e1440 100644 --- a/pkgs/by-name/ma/matrix-sdk-crypto-nodejs/package.nix +++ b/pkgs/by-name/ma/matrix-sdk-crypto-nodejs/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "No-network-IO implementation of a state machine that handles E2EE for Matrix clients"; homepage = "https://github.com/matrix-org/matrix-rust-sdk-crypto-nodejs"; changelog = "https://github.com/matrix-org/matrix-rust-sdk-crypto-nodejs/blob/main/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ winter dandellion ]; diff --git a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/ldap3.nix b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/ldap3.nix index 7f4ddc0353a6..c520f6e30e51 100644 --- a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/ldap3.nix +++ b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/ldap3.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ldap_auth_provider" ]; - meta = with lib; { + meta = { description = "LDAP3 auth provider for Synapse"; homepage = "https://github.com/matrix-org/matrix-synapse-ldap3"; - license = licenses.asl20; - teams = [ teams.c3d2 ]; + license = lib.licenses.asl20; + teams = [ lib.teams.c3d2 ]; }; } diff --git a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/mjolnir-antispam.nix b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/mjolnir-antispam.nix index 8d9f5f89dfe4..5ae37483686e 100644 --- a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/mjolnir-antispam.nix +++ b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/mjolnir-antispam.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { doCheck = false; # no tests pythonImportsCheck = [ "mjolnir" ]; - meta = with lib; { + meta = { description = "AntiSpam / Banlist plugin to be used with mjolnir"; longDescription = '' Primarily meant to block invites from undesired homeservers/users, @@ -33,8 +33,8 @@ buildPythonPackage rec { them to your entire homeserver. ''; homepage = "https://github.com/matrix-org/mjolnir/blob/main/docs/synapse_module.md"; - license = licenses.asl20; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jojosch ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/pam.nix b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/pam.nix index 02102099e604..a9739757b3e5 100644 --- a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/pam.nix +++ b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/pam.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pam_auth_provider" ]; - meta = with lib; { + meta = { description = "PAM auth provider for the Synapse Matrix server"; homepage = "https://github.com/14mRh4X0r/matrix-synapse-pam"; - license = licenses.eupl12; + license = lib.licenses.eupl12; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/rendezvous.nix b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/rendezvous.nix index 2cfbd50403bc..bce69a48e4fe 100644 --- a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/rendezvous.nix +++ b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/rendezvous.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "matrix_http_rendezvous_synapse" ]; - meta = with lib; { + meta = { description = "Implementation of MSC3886: Simple rendezvous capability"; homepage = "https://github.com/matrix-org/rust-http-rendezvous-server"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/shared-secret-auth.nix b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/shared-secret-auth.nix index bc6b559370d8..6d40b5055f98 100644 --- a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/shared-secret-auth.nix +++ b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/shared-secret-auth.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { buildInputs = [ matrix-synapse-unwrapped ]; propagatedBuildInputs = [ twisted ]; - meta = with lib; { + meta = { description = "Shared Secret Authenticator password provider module for Matrix Synapse"; homepage = "https://github.com/devture/matrix-synapse-shared-secret-auth"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ sumnerevans ]; }; } diff --git a/pkgs/by-name/ma/matter-compiler/package.nix b/pkgs/by-name/ma/matter-compiler/package.nix index b00c26c0ba5f..5d28606c00e2 100644 --- a/pkgs/by-name/ma/matter-compiler/package.nix +++ b/pkgs/by-name/ma/matter-compiler/package.nix @@ -11,18 +11,18 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "matter-compiler"; - meta = with lib; { + meta = { description = '' Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool. It composes an API blueprint from its serialzed AST media-type. ''; homepage = "https://github.com/apiaryio/matter_compiler/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvlander manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/matterircd/package.nix b/pkgs/by-name/ma/matterircd/package.nix index 686418886992..7260c514a9c2 100644 --- a/pkgs/by-name/ma/matterircd/package.nix +++ b/pkgs/by-name/ma/matterircd/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Minimal IRC server bridge to Mattermost"; mainProgram = "matterircd"; homepage = "https://github.com/42wim/matterircd"; - license = licenses.mit; - maintainers = with maintainers; [ numinit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ numinit ]; }; } diff --git a/pkgs/by-name/ma/mautrix-discord/package.nix b/pkgs/by-name/ma/mautrix-discord/package.nix index 90745e234796..c6d5939c2221 100644 --- a/pkgs/by-name/ma/mautrix-discord/package.nix +++ b/pkgs/by-name/ma/mautrix-discord/package.nix @@ -37,12 +37,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Matrix-Discord puppeting bridge"; homepage = "https://github.com/mautrix/discord"; changelog = "https://github.com/mautrix/discord/blob/${src.rev}/CHANGELOG.md"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ MoritzBoehme sumnerevans ]; diff --git a/pkgs/by-name/ma/mautrix-gmessages/package.nix b/pkgs/by-name/ma/mautrix-gmessages/package.nix index 7da393294afd..838bb42eead6 100644 --- a/pkgs/by-name/ma/mautrix-gmessages/package.nix +++ b/pkgs/by-name/ma/mautrix-gmessages/package.nix @@ -45,12 +45,12 @@ buildGoModule rec { tests.version = testers.testVersion { package = mautrix-gmessages; }; }; - meta = with lib; { + meta = { description = "Matrix-Google Messages puppeting bridge"; homepage = "https://github.com/mautrix/gmessages"; changelog = "https://github.com/mautrix/gmessages/blob/${src.rev}/CHANGELOG.md"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ sumnerevans ]; mainProgram = "mautrix-gmessages"; }; } diff --git a/pkgs/by-name/ma/mautrix-googlechat/package.nix b/pkgs/by-name/ma/mautrix-googlechat/package.nix index be0a62814998..20c07c5980cc 100644 --- a/pkgs/by-name/ma/mautrix-googlechat/package.nix +++ b/pkgs/by-name/ma/mautrix-googlechat/package.nix @@ -68,12 +68,12 @@ python3.pkgs.buildPythonApplication rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/mautrix/googlechat"; description = "Matrix-Google Chat puppeting bridge"; - license = licenses.agpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ arcnmx ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ arcnmx ]; mainProgram = "mautrix-googlechat"; }; } diff --git a/pkgs/by-name/ma/mautrix-signal/package.nix b/pkgs/by-name/ma/mautrix-signal/package.nix index 304bfda030cb..5b09f985c595 100644 --- a/pkgs/by-name/ma/mautrix-signal/package.nix +++ b/pkgs/by-name/ma/mautrix-signal/package.nix @@ -69,11 +69,11 @@ buildGoModule rec { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { homepage = "https://github.com/mautrix/signal"; description = "Matrix-Signal puppeting bridge"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ pentane ma27 SchweGELBin diff --git a/pkgs/by-name/ma/mautrix-whatsapp/package.nix b/pkgs/by-name/ma/mautrix-whatsapp/package.nix index 77848b5244c4..3163156aa0ce 100644 --- a/pkgs/by-name/ma/mautrix-whatsapp/package.nix +++ b/pkgs/by-name/ma/mautrix-whatsapp/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/mautrix/whatsapp"; description = "Matrix-WhatsApp puppeting bridge"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ vskilet ma27 chvp diff --git a/pkgs/by-name/ma/maxcso/package.nix b/pkgs/by-name/ma/maxcso/package.nix index f0810fd126e3..32c88d145bd4 100644 --- a/pkgs/by-name/ma/maxcso/package.nix +++ b/pkgs/by-name/ma/maxcso/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/unknownbrackets/maxcso"; description = "Fast ISO to CSO compression program for use with PSP and PS2 emulators, which uses multiple algorithms for best compression ratio"; - maintainers = with maintainers; [ david-sawatzke ]; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.isc; + maintainers = with lib.maintainers; [ david-sawatzke ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.isc; mainProgram = "maxcso"; }; } diff --git a/pkgs/by-name/ma/maxfetch/package.nix b/pkgs/by-name/ma/maxfetch/package.nix index 4b00627daf08..78a54246453d 100644 --- a/pkgs/by-name/ma/maxfetch/package.nix +++ b/pkgs/by-name/ma/maxfetch/package.nix @@ -35,12 +35,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Nice fetching program written in sh"; homepage = "https://github.com/jobcmax/maxfetch"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "maxfetch"; - maintainers = with maintainers; [ jtbx ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jtbx ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/maxflow/package.nix b/pkgs/by-name/ma/maxflow/package.nix index 8837d39bc76a..3bc2434fb477 100644 --- a/pkgs/by-name/ma/maxflow/package.nix +++ b/pkgs/by-name/ma/maxflow/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Software for computing mincut/maxflow in a graph"; homepage = "https://github.com/gerddie/maxflow"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.tadfisher ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.tadfisher ]; }; } diff --git a/pkgs/by-name/mb/mb2md/package.nix b/pkgs/by-name/mb/mb2md/package.nix index d64e368d3169..e6886554a23c 100644 --- a/pkgs/by-name/mb/mb2md/package.nix +++ b/pkgs/by-name/mb/mb2md/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { --set PERL5LIB "${perlPackages.makePerlPath perlDeps}" ''; - meta = with lib; { + meta = { description = "mbox to maildir tool"; mainProgram = "mb2md"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = [ maintainers.jb55 ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.jb55 ]; }; } diff --git a/pkgs/by-name/mb/mbed-cli/package.nix b/pkgs/by-name/mb/mbed-cli/package.nix index 3004e1210074..963bae567f7a 100644 --- a/pkgs/by-name/mb/mbed-cli/package.nix +++ b/pkgs/by-name/mb/mbed-cli/package.nix @@ -31,10 +31,10 @@ buildPythonApplication rec { pytest test ''; - meta = with lib; { + meta = { homepage = "https://github.com/ARMmbed/mbed-cli"; description = "Arm Mbed Command Line Interface"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mb/mbelib/package.nix b/pkgs/by-name/mb/mbelib/package.nix index 9672719b2682..bf6f2faad166 100644 --- a/pkgs/by-name/mb/mbelib/package.nix +++ b/pkgs/by-name/mb/mbelib/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "P25 Phase 1 and ProVoice vocoder"; homepage = "https://github.com/szechyjs/mbelib"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; maintainers = [ lib.maintainers.aciceri ]; }; } diff --git a/pkgs/by-name/mb/mbidled/package.nix b/pkgs/by-name/mb/mbidled/package.nix index 82c3d9ad5140..ec43e6270211 100644 --- a/pkgs/by-name/mb/mbidled/package.nix +++ b/pkgs/by-name/mb/mbidled/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation { openssl ]; - meta = with lib; { + meta = { description = "Run command on mailbox change"; homepage = "https://github.com/zsugabubus/mbidled"; - license = licenses.unlicense; - maintainers = with maintainers; [ laalsaas ]; - platforms = platforms.linux; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ laalsaas ]; + platforms = lib.platforms.linux; mainProgram = "mbidled"; }; } diff --git a/pkgs/by-name/mb/mblaze/package.nix b/pkgs/by-name/mb/mblaze/package.nix index ce58fc30fb80..4cc1e7a0087e 100644 --- a/pkgs/by-name/mb/mblaze/package.nix +++ b/pkgs/by-name/mb/mblaze/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/leahneukirchen/mblaze"; description = "Unix utilities for processing and interacting with mail messages which are stored in maildir folders"; - license = licenses.cc0; - platforms = platforms.all; - maintainers = [ maintainers.ajgrf ]; + license = lib.licenses.cc0; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.ajgrf ]; }; } diff --git a/pkgs/by-name/mb/mblock-mlink/package.nix b/pkgs/by-name/mb/mblock-mlink/package.nix index bdb370799965..e61adf30bdba 100644 --- a/pkgs/by-name/mb/mblock-mlink/package.nix +++ b/pkgs/by-name/mb/mblock-mlink/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { chmod +x $out/bin/mlink ''; - meta = with lib; { + meta = { description = "Driver for mBlock web version"; homepage = "https://mblock.makeblock.com/en-us/download/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.mausch ]; + maintainers = [ lib.maintainers.mausch ]; }; } diff --git a/pkgs/by-name/mb/mbmd/package.nix b/pkgs/by-name/mb/mbmd/package.nix index 94a97a998ba7..29e15ef68972 100644 --- a/pkgs/by-name/mb/mbmd/package.nix +++ b/pkgs/by-name/mb/mbmd/package.nix @@ -32,11 +32,11 @@ buildGoModule { env.CGO_ENABLED = 0; # NOTE: Pure Go - meta = with lib; { + meta = { description = "ModBus Measurement Daemon - simple reading of data from ModBus meters and grid inverters"; homepage = "https://github.com/volkszaehler/mbmd"; - license = licenses.bsd3; - maintainers = with maintainers; [ tsandrini ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ tsandrini ]; mainProgram = "mbmd"; }; } diff --git a/pkgs/by-name/mb/mbpfan/package.nix b/pkgs/by-name/mb/mbpfan/package.nix index 83bf9a2d1dc8..40195b99e452 100644 --- a/pkgs/by-name/mb/mbpfan/package.nix +++ b/pkgs/by-name/mb/mbpfan/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { cp bin/mbpfan $out/bin cp mbpfan.conf $out/etc ''; - meta = with lib; { + meta = { description = "Daemon that uses input from coretemp module and sets the fan speed using the applesmc module"; mainProgram = "mbpfan"; homepage = "https://github.com/dgraziotin/mbpfan"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mb/mbpoll/package.nix b/pkgs/by-name/mb/mbpoll/package.nix index 206b2d29b3c8..ef5967c6d666 100644 --- a/pkgs/by-name/mb/mbpoll/package.nix +++ b/pkgs/by-name/mb/mbpoll/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { pkg-config ]; - meta = with lib; { + meta = { description = "Command line utility to communicate with ModBus slave (RTU or TCP)"; homepage = "https://epsilonrt.fr"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "mbpoll"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/mb/mbrola/package.nix b/pkgs/by-name/mb/mbrola/package.nix index e025827fed7a..ace9c75ee231 100644 --- a/pkgs/by-name/mb/mbrola/package.nix +++ b/pkgs/by-name/mb/mbrola/package.nix @@ -10,10 +10,10 @@ let pname = "mbrola"; version = "3.3-unstable-2024-01-29"; - meta = with lib; { - license = licenses.agpl3Plus; - maintainers = with maintainers; [ davidak ]; - platforms = platforms.all; + meta = { + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ davidak ]; + platforms = lib.platforms.all; description = "Speech synthesizer based on the concatenation of diphones"; homepage = "https://github.com/numediart/MBROLA"; }; diff --git a/pkgs/by-name/mb/mbt/package.nix b/pkgs/by-name/mb/mbt/package.nix index 1179e4b22bb8..9d27befd7e69 100644 --- a/pkgs/by-name/mb/mbt/package.nix +++ b/pkgs/by-name/mb/mbt/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Memory Based Tagger"; homepage = "https://languagemachines.github.io/mbt/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; longDescription = '' MBT is a memory-based tagger-generator and tagger in one. The tagger-generator part can generate a sequence tagger on the basis of a training set of tagged sequences; the tagger part can tag new sequences. MBT can, for instance, be used to generate part-of-speech taggers or chunkers for natural language processing. It has also been used for named-entity recognition, information extraction in domain-specific texts, and disfluency chunking in transcribed speech. diff --git a/pkgs/by-name/mc/mc/package.nix b/pkgs/by-name/mc/mc/package.nix index c7bb9ae0bbbf..3d67cad87cc6 100644 --- a/pkgs/by-name/mc/mc/package.nix +++ b/pkgs/by-name/mc/mc/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation rec { update-source-version mc "$new_version" ''; - meta = with lib; { + meta = { description = "File Manager and User Shell for the GNU Project, known as Midnight Commander"; downloadPage = "https://ftp.osuosl.org/pub/midnightcommander/"; homepage = "https://midnight-commander.org"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "mc"; }; } diff --git a/pkgs/by-name/mc/mcabber/package.nix b/pkgs/by-name/mc/mcabber/package.nix index 5475671a45c1..72b0e5ca2a8b 100644 --- a/pkgs/by-name/mc/mcabber/package.nix +++ b/pkgs/by-name/mc/mcabber/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "http://mcabber.com/"; description = "Small Jabber console client"; mainProgram = "mcabber"; - license = licenses.gpl2; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; linux; downloadPage = "http://mcabber.com/files/"; }; } diff --git a/pkgs/by-name/mc/mcap-cli/package.nix b/pkgs/by-name/mc/mcap-cli/package.nix index f59859e0989b..7a79a3a5a564 100644 --- a/pkgs/by-name/mc/mcap-cli/package.nix +++ b/pkgs/by-name/mc/mcap-cli/package.nix @@ -74,11 +74,11 @@ buildGoModule { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "MCAP CLI tool to inspect and fix MCAP files"; homepage = "https://github.com/foxglove/mcap"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ squalus therishidesai ]; diff --git a/pkgs/by-name/mc/mcaselector/package.nix b/pkgs/by-name/mc/mcaselector/package.nix index a8b30c70ee17..36e115891913 100644 --- a/pkgs/by-name/mc/mcaselector/package.nix +++ b/pkgs/by-name/mc/mcaselector/package.nix @@ -46,13 +46,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''${gappsWrapperArgs[@]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/Querz/mcaselector"; description = "Tool to select chunks from Minecraft worlds for deletion or export"; mainProgram = "mcaselector"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - maintainers = [ maintainers.Scrumplex ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.Scrumplex ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/mc/mceinject/package.nix b/pkgs/by-name/mc/mceinject/package.nix index 3de429db236c..009f91995bea 100644 --- a/pkgs/by-name/mc/mceinject/package.nix +++ b/pkgs/by-name/mc/mceinject/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { "manprefix=/share" ]; - meta = with lib; { + meta = { description = "Tool to inject machine checks into x86 kernel for testing"; mainProgram = "mce-inject"; longDescription = '' @@ -44,8 +44,8 @@ stdenv.mkDerivation { kernel machine check handler. ''; homepage = "https://github.com/andikleen/mce-inject/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ arkivm ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ arkivm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mc/mcfly-fzf/package.nix b/pkgs/by-name/mc/mcfly-fzf/package.nix index 5e8a071f687f..565aacb572d9 100644 --- a/pkgs/by-name/mc/mcfly-fzf/package.nix +++ b/pkgs/by-name/mc/mcfly-fzf/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-xHYOhq/vDmjP7RfgRR15Isj7rg/nIV9tz9XznHBENig="; - meta = with lib; { + meta = { homepage = "https://github.com/bnprks/mcfly-fzf"; description = "Integrate Mcfly with fzf to combine a solid command history database with a widely-loved fuzzy search UI"; - license = licenses.mit; - maintainers = [ maintainers.simonhammes ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.simonhammes ]; mainProgram = "mcfly-fzf"; }; } diff --git a/pkgs/by-name/mc/mchprs/package.nix b/pkgs/by-name/mc/mchprs/package.nix index aee75eda4571..e29e67a2c08b 100644 --- a/pkgs/by-name/mc/mchprs/package.nix +++ b/pkgs/by-name/mc/mchprs/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { zlib ]; - meta = with lib; { + meta = { mainProgram = "mchprs"; description = "Multithreaded Minecraft server built for redstone"; homepage = "https://github.com/MCHPR/MCHPRS"; - license = licenses.mit; - maintainers = with maintainers; [ gdd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gdd ]; }; } diff --git a/pkgs/by-name/mc/mcomix/package.nix b/pkgs/by-name/mc/mcomix/package.nix index becbbe4d3da1..b1b7ebeefab8 100644 --- a/pkgs/by-name/mc/mcomix/package.nix +++ b/pkgs/by-name/mc/mcomix/package.nix @@ -69,7 +69,7 @@ python3.pkgs.buildPythonApplication rec { package = mcomix; }; - meta = with lib; { + meta = { description = "Comic book reader and image viewer"; mainProgram = "mcomix"; longDescription = '' @@ -78,8 +78,8 @@ python3.pkgs.buildPythonApplication rec { (including CBR, CBZ, CB7, CBT, LHA and PDF) ''; homepage = "https://sourceforge.net/projects/mcomix/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ confus thiagokokada ]; diff --git a/pkgs/by-name/mc/mcpp/package.nix b/pkgs/by-name/mc/mcpp/package.nix index ffefd2cfb8a0..5141f375d4e7 100644 --- a/pkgs/by-name/mc/mcpp/package.nix +++ b/pkgs/by-name/mc/mcpp/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { configureFlags = [ "--enable-mcpplib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/museoa/mcpp"; description = "Matsui's C preprocessor"; mainProgram = "mcpp"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/mc/mcrl2/package.nix b/pkgs/by-name/mc/mcrl2/package.nix index 3534afcbae25..cfc94fe5f9f8 100644 --- a/pkgs/by-name/mc/mcrl2/package.nix +++ b/pkgs/by-name/mc/mcrl2/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Toolset for model-checking concurrent systems and protocols"; longDescription = '' @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { concurrent systems and protocols ''; homepage = "https://www.mcrl2.org/"; - license = licenses.boost; - maintainers = with maintainers; [ moretea ]; - platforms = platforms.unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ moretea ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mc/mctc-lib/package.nix b/pkgs/by-name/mc/mctc-lib/package.nix index f619f22aa368..823a5c150a6b 100644 --- a/pkgs/by-name/mc/mctc-lib/package.nix +++ b/pkgs/by-name/mc/mctc-lib/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { patchShebangs --build config/install-mod.py ''; - meta = with lib; { + meta = { description = "Modular computation tool chain library"; mainProgram = "mctc-convert"; homepage = "https://github.com/grimme-lab/mctc-lib"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/mc/mcuboot-imgtool/package.nix b/pkgs/by-name/mc/mcuboot-imgtool/package.nix index 66e0aded30e4..1af1c45911b0 100644 --- a/pkgs/by-name/mc/mcuboot-imgtool/package.nix +++ b/pkgs/by-name/mc/mcuboot-imgtool/package.nix @@ -28,11 +28,11 @@ python3Packages.buildPythonApplication rec { pyyaml ]; - meta = with lib; { + meta = { description = "MCUboot's image signing and key management"; homepage = "https://github.com/mcu-tools/mcuboot/tree/main/scripts"; - license = licenses.asl20; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ otavio ]; mainProgram = "imgtool"; }; } diff --git a/pkgs/by-name/mc/mcumgr-client/package.nix b/pkgs/by-name/mc/mcumgr-client/package.nix index bdb21940b456..ef88b18b2538 100644 --- a/pkgs/by-name/mc/mcumgr-client/package.nix +++ b/pkgs/by-name/mc/mcumgr-client/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ udev ]; - meta = with lib; { + meta = { description = "Client for mcumgr commands"; homepage = "https://github.com/vouch-opensource/mcumgr-client"; - license = licenses.asl20; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ otavio ]; mainProgram = "mcumgr-client"; }; } diff --git a/pkgs/by-name/md/md-tangle/package.nix b/pkgs/by-name/md/md-tangle/package.nix index 5a5432b664b2..98e687ce3563 100644 --- a/pkgs/by-name/md/md-tangle/package.nix +++ b/pkgs/by-name/md/md-tangle/package.nix @@ -25,11 +25,11 @@ python3.pkgs.buildPythonPackage rec { pythonImportsCheck = [ "md_tangle" ]; - meta = with lib; { + meta = { homepage = "https://github.com/joakimmj/md-tangle/"; description = "Generates (\"tangles\") source code from Markdown documents"; mainProgram = "md-tangle"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/md/mda_lv2/package.nix b/pkgs/by-name/md/mda_lv2/package.nix index bbd059f3a5d6..8d772d2b298b 100644 --- a/pkgs/by-name/md/mda_lv2/package.nix +++ b/pkgs/by-name/md/mda_lv2/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { lv2 ]; - meta = with lib; { + meta = { homepage = "http://drobilla.net/software/mda-lv2.html"; description = "LV2 port of the MDA plugins by Paul Kellett"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/md/mdadm4/package.nix b/pkgs/by-name/md/mdadm4/package.nix index b8b604216092..c4e2ec5dbde1 100644 --- a/pkgs/by-name/md/mdadm4/package.nix +++ b/pkgs/by-name/md/mdadm4/package.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Programs for managing RAID arrays under Linux"; homepage = "https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "mdadm"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/md/mdbook-cmdrun/package.nix b/pkgs/by-name/md/mdbook-cmdrun/package.nix index 8e24c1a50e91..a82528518412 100644 --- a/pkgs/by-name/md/mdbook-cmdrun/package.nix +++ b/pkgs/by-name/md/mdbook-cmdrun/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-C3Rg+WXHBA7KyUDFdhBz4mOm8CFH/f7UVA8KOLs9ClE="; - meta = with lib; { + meta = { description = "mdbook preprocessor to run arbitrary commands"; mainProgram = "mdbook-cmdrun"; homepage = "https://github.com/FauconFan/mdbook-cmdrun"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pinpox matthiasbeyer ]; diff --git a/pkgs/by-name/md/mdbook-d2/package.nix b/pkgs/by-name/md/mdbook-d2/package.nix index 59d6e4d04d7d..84fb25a73510 100644 --- a/pkgs/by-name/md/mdbook-d2/package.nix +++ b/pkgs/by-name/md/mdbook-d2/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-K4vovc78MiLkWMVS4YDuSK9L7EmwpGdZXdRqeELcPT8="; doCheck = false; - meta = with lib; { + meta = { description = "D2 diagram generator plugin for MdBook"; mainProgram = "mdbook-d2"; homepage = "https://github.com/danieleades/mdbook-d2"; changelog = "https://github.com/danieleades/mdbook-d2/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/md/mdbook-kroki-preprocessor/package.nix b/pkgs/by-name/md/mdbook-kroki-preprocessor/package.nix index 036158bbd927..c057a7a914bd 100644 --- a/pkgs/by-name/md/mdbook-kroki-preprocessor/package.nix +++ b/pkgs/by-name/md/mdbook-kroki-preprocessor/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Render Kroki diagrams from files or code blocks in mdbook"; mainProgram = "mdbook-kroki-preprocessor"; homepage = "https://github.com/joelcourtney/mdbook-kroki-preprocessor"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/md/mdbook-linkcheck/package.nix b/pkgs/by-name/md/mdbook-linkcheck/package.nix index 13b8f580a19c..3664ce87e159 100644 --- a/pkgs/by-name/md/mdbook-linkcheck/package.nix +++ b/pkgs/by-name/md/mdbook-linkcheck/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = mdbook-linkcheck; }; - meta = with lib; { + meta = { description = "Backend for `mdbook` which will check your links for you"; mainProgram = "mdbook-linkcheck"; homepage = "https://github.com/Michael-F-Bryan/mdbook-linkcheck"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zhaofengli matthiasbeyer ]; diff --git a/pkgs/by-name/md/mdbook-man/package.nix b/pkgs/by-name/md/mdbook-man/package.nix index 311447aee2f7..79e310673495 100644 --- a/pkgs/by-name/md/mdbook-man/package.nix +++ b/pkgs/by-name/md/mdbook-man/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-+CD7+pYAoKRmkMZPpEru6lug9sBakrL0rLXs78e3tqk="; - meta = with lib; { + meta = { description = "Generate manual pages from mdBooks"; mainProgram = "mdbook-man"; homepage = "https://github.com/vv9k/mdbook-man"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/md/mdbook-open-on-gh/package.nix b/pkgs/by-name/md/mdbook-open-on-gh/package.nix index e04537201b1e..893cd4b1c93e 100644 --- a/pkgs/by-name/md/mdbook-open-on-gh/package.nix +++ b/pkgs/by-name/md/mdbook-open-on-gh/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jbBwXYUIkrDyf9qC2cL5czbXCM2/JrbBUmKJZb+VEAk="; - meta = with lib; { + meta = { description = "mdbook preprocessor to add a open-on-github link on every page"; mainProgram = "mdbook-open-on-gh"; homepage = "https://github.com/badboy/mdbook-open-on-gh"; - license = [ licenses.mpl20 ]; - maintainers = with maintainers; [ matthiasbeyer ]; + license = [ lib.licenses.mpl20 ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/md/mdbook-pagetoc/package.nix b/pkgs/by-name/md/mdbook-pagetoc/package.nix index e56c7f1f0f2a..a9520afe9206 100644 --- a/pkgs/by-name/md/mdbook-pagetoc/package.nix +++ b/pkgs/by-name/md/mdbook-pagetoc/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CazBgtNh4Z2wlfh9q0SjLsn70zh+aEg957Zq0kh45Hc="; - meta = with lib; { + meta = { description = "Table of contents for mdbook (in sidebar)"; mainProgram = "mdbook-pagetoc"; homepage = "https://github.com/slowsage/mdbook-pagetoc"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/md/mdbook-pdf-outline/package.nix b/pkgs/by-name/md/mdbook-pdf-outline/package.nix index 137dfe791adf..f075c25f7a31 100644 --- a/pkgs/by-name/md/mdbook-pdf-outline/package.nix +++ b/pkgs/by-name/md/mdbook-pdf-outline/package.nix @@ -24,10 +24,10 @@ python3Packages.buildPythonApplication rec { python3Packages.pypdf ]; - meta = with lib; { + meta = { homepage = "https://github.com/HollowMan6/mdbook-pdf"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hollowman6 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hollowman6 ]; }; } diff --git a/pkgs/by-name/md/mdds/package.nix b/pkgs/by-name/md/mdds/package.nix index 55e2f3aa6ebe..abf16d3c86db 100644 --- a/pkgs/by-name/md/mdds/package.nix +++ b/pkgs/by-name/md/mdds/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation (finalAttrs: { mv $out/share/pkgconfig $out/lib/ ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/mdds/mdds"; description = "Collection of multi-dimensional data structure and indexing algorithms"; changelog = "https://gitlab.com/mdds/mdds/-/blob/${finalAttrs.version}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) # TODO: multi-output diff --git a/pkgs/by-name/md/mdevctl/package.nix b/pkgs/by-name/md/mdevctl/package.nix index 25c6f677de56..e7985362ee10 100644 --- a/pkgs/by-name/md/mdevctl/package.nix +++ b/pkgs/by-name/md/mdevctl/package.nix @@ -42,10 +42,10 @@ rustPlatform.buildRustPackage rec { installShellCompletion $releaseDir/build/mdevctl-*/out/{lsmdev,mdevctl}.bash ''; - meta = with lib; { + meta = { homepage = "https://github.com/mdevctl/mdevctl"; description = "Mediated device management utility for linux"; - license = licenses.lgpl21Only; - platforms = platforms.linux; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/md/mdf2iso/package.nix b/pkgs/by-name/md/mdf2iso/package.nix index b990b3392099..d4ee1fba77af 100644 --- a/pkgs/by-name/md/mdf2iso/package.nix +++ b/pkgs/by-name/md/mdf2iso/package.nix @@ -14,12 +14,12 @@ stdenv.mkDerivation rec { sha256 = "0xg43jlvrk8adfjgbjir15nxwcj0nhz4gxpqx7jdfvhg0kwliq0n"; }; - meta = with lib; { + meta = { description = "Small utility that converts MDF images to ISO format"; homepage = src.url; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.oxij ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.oxij ]; mainProgram = "mdf2iso"; }; } diff --git a/pkgs/by-name/md/mdhtml/package.nix b/pkgs/by-name/md/mdhtml/package.nix index 9051cd55fd3b..46ea013e620f 100644 --- a/pkgs/by-name/md/mdhtml/package.nix +++ b/pkgs/by-name/md/mdhtml/package.nix @@ -18,12 +18,12 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Really simple CLI Markdown to HTML converter with styling support"; homepage = "https://codeberg.org/Tomkoid/mdhtml"; - license = licenses.mit; + license = lib.licenses.mit; changelog = "https://codeberg.org/Tomkoid/mdhtml/releases"; - maintainers = with maintainers; [ tomkoid ]; + maintainers = with lib.maintainers; [ tomkoid ]; mainProgram = "mdhtml"; }; } diff --git a/pkgs/by-name/md/mdl/package.nix b/pkgs/by-name/md/mdl/package.nix index 77720c8435d6..4f0305056051 100644 --- a/pkgs/by-name/md/mdl/package.nix +++ b/pkgs/by-name/md/mdl/package.nix @@ -11,16 +11,16 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "mdl"; - meta = with lib; { + meta = { description = "Tool to check markdown files and flag style issues"; homepage = "https://github.com/markdownlint/markdownlint"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gerschtli manveru nicknovitski totoroot ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/md/mdns/package.nix b/pkgs/by-name/md/mdns/package.nix index 9bc9505c2366..8545a70ced14 100644 --- a/pkgs/by-name/md/mdns/package.nix +++ b/pkgs/by-name/md/mdns/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { (lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.10") ]; - meta = with lib; { + meta = { description = "Public domain mDNS/DNS-SD library in C"; homepage = "https://github.com/mjansson/mdns"; changelog = "https://github.com/mjansson/mdns/blob/${src.rev}/CHANGELOG"; - license = licenses.unlicense; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.all; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/md/mdp/package.nix b/pkgs/by-name/md/mdp/package.nix index d0a96c8796b1..a237114c62a6 100644 --- a/pkgs/by-name/md/mdp/package.nix +++ b/pkgs/by-name/md/mdp/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { homepage = "https://github.com/visit1985/mdp"; description = "Command-line based markdown presentation tool"; - maintainers = with maintainers; [ matthiasbeyer ]; - license = licenses.gpl3; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + license = lib.licenses.gpl3; + platforms = with lib.platforms; unix; mainProgram = "mdp"; }; } diff --git a/pkgs/by-name/md/mdr/package.nix b/pkgs/by-name/md/mdr/package.nix index 591c807b0c18..6b5919369812 100644 --- a/pkgs/by-name/md/mdr/package.nix +++ b/pkgs/by-name/md/mdr/package.nix @@ -25,10 +25,10 @@ buildGoModule rec { "-X main.GitExactTag=${version}" ]; - meta = with lib; { + meta = { description = "MarkDown Renderer for the terminal"; homepage = "https://github.com/MichaelMure/mdr"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "mdr"; }; diff --git a/pkgs/by-name/md/mdsh/package.nix b/pkgs/by-name/md/mdsh/package.nix index 73279951797e..c1e4e206d7ce 100644 --- a/pkgs/by-name/md/mdsh/package.nix +++ b/pkgs/by-name/md/mdsh/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-JhrELBMGVtxJjyfPGcM6v8h1XJjdD+vOsYNfZ86Ras0="; - meta = with lib; { + meta = { description = "Markdown shell pre-processor"; homepage = "https://github.com/zimbatm/mdsh"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ zimbatm ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ zimbatm ]; mainProgram = "mdsh"; }; } diff --git a/pkgs/by-name/md/mdslides/package.nix b/pkgs/by-name/md/mdslides/package.nix index f38f46ed3fc6..7bfe9e5e1195 100644 --- a/pkgs/by-name/md/mdslides/package.nix +++ b/pkgs/by-name/md/mdslides/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication { pythonImportsCheck = [ "mdslides" ]; - meta = with lib; { + meta = { longDescription = "Using markdown, write simple but beautiful presentations with math, animations and media, which can be visualized in a web browser or exported to PDF."; homepage = "https://github.com/dadoomer/markdown-slides"; - license = licenses.mit; - maintainers = [ maintainers.qjoly ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.qjoly ]; mainProgram = "mdslides"; }; } diff --git a/pkgs/by-name/md/mdzk/package.nix b/pkgs/by-name/md/mdzk/package.nix index ec6d6ff32403..11cd67162069 100644 --- a/pkgs/by-name/md/mdzk/package.nix +++ b/pkgs/by-name/md/mdzk/package.nix @@ -23,12 +23,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-+x4pOtszvdzI/zR55ezcxlS52GrWQTuBn7vbnqDTVac="; - meta = with lib; { + meta = { description = "Plain text Zettelkasten based on mdBook"; homepage = "https://github.com/mdzk-rs/mdzk/"; changelog = "https://github.com/mdzk-rs/mdzk/blob/main/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ ratsclub ]; mainProgram = "mdzk"; diff --git a/pkgs/by-name/me/me_cleaner/package.nix b/pkgs/by-name/me/me_cleaner/package.nix index d0996351fc6f..a7eed8f4692d 100644 --- a/pkgs/by-name/me/me_cleaner/package.nix +++ b/pkgs/by-name/me/me_cleaner/package.nix @@ -18,14 +18,14 @@ python3.pkgs.buildPythonPackage rec { build-system = with python3.pkgs; [ setuptools ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Tool for partial deblobbing of Intel ME/TXE firmware images"; longDescription = '' me_cleaner is a Python script able to modify an Intel ME firmware image with the final purpose of reducing its ability to interact with the system. ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "me_cleaner.py"; }; diff --git a/pkgs/by-name/me/mealie/mealie-frontend.nix b/pkgs/by-name/me/mealie/mealie-frontend.nix index ec28d8e12f07..5db17c2706ba 100644 --- a/pkgs/by-name/me/mealie/mealie-frontend.nix +++ b/pkgs/by-name/me/mealie/mealie-frontend.nix @@ -61,9 +61,9 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Frontend for Mealie"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ litchipi ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ litchipi ]; }; } diff --git a/pkgs/by-name/me/mealie/package.nix b/pkgs/by-name/me/mealie/package.nix index 9744e913d3c2..eac66b1484c1 100644 --- a/pkgs/by-name/me/mealie/package.nix +++ b/pkgs/by-name/me/mealie/package.nix @@ -135,7 +135,7 @@ pythonpkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Self hosted recipe manager and meal planner"; longDescription = '' Mealie is a self hosted recipe manager and meal planner with a REST API and a reactive frontend @@ -145,8 +145,8 @@ pythonpkgs.buildPythonApplication rec { ''; homepage = "https://mealie.io"; changelog = "https://github.com/mealie-recipes/mealie/releases/tag/${src.rev}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ litchipi anoa ]; diff --git a/pkgs/by-name/me/measureme/package.nix b/pkgs/by-name/me/measureme/package.nix index b69418cb7a95..919c1c6d6245 100644 --- a/pkgs/by-name/me/measureme/package.nix +++ b/pkgs/by-name/me/measureme/package.nix @@ -23,10 +23,10 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Support crate for rustc's self-profiling feature"; homepage = "https://github.com/rust-lang/measureme"; - license = licenses.asl20; - maintainers = [ maintainers.t4ccer ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.t4ccer ]; }; } diff --git a/pkgs/by-name/me/media-player-info/package.nix b/pkgs/by-name/me/media-player-info/package.nix index 2106ddcc598d..a620b07c5dea 100644 --- a/pkgs/by-name/me/media-player-info/package.nix +++ b/pkgs/by-name/me/media-player-info/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-udevdir=${placeholder "out"}/lib/udev" ]; - meta = with lib; { + meta = { description = "Repository of data files describing media player capabilities"; homepage = "https://www.freedesktop.org/wiki/Software/media-player-info/"; - license = licenses.bsd3; - maintainers = with maintainers; [ ttuegel ]; - platforms = with platforms; linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ttuegel ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/me/mediainfo/package.nix b/pkgs/by-name/me/mediainfo/package.nix index f9c794c55b2a..41e801aaa920 100644 --- a/pkgs/by-name/me/mediainfo/package.nix +++ b/pkgs/by-name/me/mediainfo/package.nix @@ -34,16 +34,16 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Supplies technical and tag information about a video or audio file"; longDescription = '' MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files. ''; homepage = "https://mediaarea.net/"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.devhell ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.devhell ]; mainProgram = "mediainfo"; }; } diff --git a/pkgs/by-name/me/mediasynclite/package.nix b/pkgs/by-name/me/mediasynclite/package.nix index 2b532d229220..adf67f1e30a1 100644 --- a/pkgs/by-name/me/mediasynclite/package.nix +++ b/pkgs/by-name/me/mediasynclite/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { substitute ./src/ibmsl.c ./src/ibmsl.c --subst-var out ''; - meta = with lib; { + meta = { description = "Linux-native graphical uploader for iBroadcast"; downloadPage = "https://github.com/tobz619/MediaSyncLiteLinuxNix"; homepage = "https://github.com/iBroadcastMediaServices/MediaSyncLiteLinux"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ tobz619 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ tobz619 ]; }; } diff --git a/pkgs/by-name/me/mediathekview/package.nix b/pkgs/by-name/me/mediathekview/package.nix index ca8a0850be48..8888c6da78b4 100644 --- a/pkgs/by-name/me/mediathekview/package.nix +++ b/pkgs/by-name/me/mediathekview/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Offers access to the Mediathek of different tv stations (ARD, ZDF, Arte, etc.)"; homepage = "https://mediathekview.de/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3Plus; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3Plus; mainProgram = "mediathek"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/me/mediawiki/package.nix b/pkgs/by-name/me/mediawiki/package.nix index 4c83e799096c..1d5a58c1ecec 100644 --- a/pkgs/by-name/me/mediawiki/package.nix +++ b/pkgs/by-name/me/mediawiki/package.nix @@ -35,11 +35,11 @@ stdenvNoCC.mkDerivation rec { inherit (nixosTests.mediawiki) mysql postgresql; }; - meta = with lib; { + meta = { description = "Collaborative editing software that runs Wikipedia"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.mediawiki.org/"; - platforms = platforms.all; - teams = [ teams.c3d2 ]; + platforms = lib.platforms.all; + teams = [ lib.teams.c3d2 ]; }; } diff --git a/pkgs/by-name/me/medio/package.nix b/pkgs/by-name/me/medio/package.nix index a91de839bb56..185d7e4d1171 100644 --- a/pkgs/by-name/me/medio/package.nix +++ b/pkgs/by-name/me/medio/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/medio/"; description = "Serif font designed by Sora Sagano"; longDescription = '' @@ -34,10 +34,10 @@ stdenvNoCC.mkDerivation { on the proportions of the font Tenderness (from the same designer), but with hairline serifs in the style of a Didone. ''; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/me/medusa/package.nix b/pkgs/by-name/me/medusa/package.nix index 19e5759d7bca..4995d47f01fe 100644 --- a/pkgs/by-name/me/medusa/package.nix +++ b/pkgs/by-name/me/medusa/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { libssh2 ]; - meta = with lib; { + meta = { description = "Speedy, parallel, and modular, login brute-forcer"; homepage = "https://github.com/jmk-foofus/medusa"; changelog = "https://github.com/jmk-foofus/medusa/releases/tag/${src.tag}"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "medusa"; }; diff --git a/pkgs/by-name/me/meek/package.nix b/pkgs/by-name/me/meek/package.nix index 91e7acd5a648..41729102c8d0 100644 --- a/pkgs/by-name/me/meek/package.nix +++ b/pkgs/by-name/me/meek/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { installManPage doc/meek-server.1 ''; - meta = with lib; { + meta = { description = "Blocking-resistant pluggable transport for Tor"; longDescription = '' meek is a blocking-resistant pluggable transport for Tor. It encodes a @@ -42,7 +42,7 @@ buildGoModule rec { fingerprintable byte patterns in Tor traffic. ''; homepage = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/meek"; - maintainers = with maintainers; [ doronbehar ]; - license = licenses.cc0; + maintainers = with lib.maintainers; [ doronbehar ]; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/me/meg/package.nix b/pkgs/by-name/me/meg/package.nix index 7a0973ff92af..4b68dc06c7c2 100644 --- a/pkgs/by-name/me/meg/package.nix +++ b/pkgs/by-name/me/meg/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { hash = "sha256-uhfPNpvuuC9kBYUBCGE6X46TeZ5QxIcnDQ4HRrn2mT4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/tomnomnom/meg"; description = "Fetch many paths for many hosts without flooding hosts"; mainProgram = "meg"; - maintainers = with maintainers; [ averagebit ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ averagebit ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/me/megaglest/package.nix b/pkgs/by-name/me/megaglest/package.nix index 59ff8c9a7306..91b2b7c1a877 100644 --- a/pkgs/by-name/me/megaglest/package.nix +++ b/pkgs/by-name/me/megaglest/package.nix @@ -157,11 +157,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Entertaining free (freeware and free software) and open source cross-platform 3D real-time strategy (RTS) game"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://megaglest.org/"; - maintainers = [ maintainers.matejc ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.matejc ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/megahit/package.nix b/pkgs/by-name/me/megahit/package.nix index ea0266471781..caee20ef7549 100644 --- a/pkgs/by-name/me/megahit/package.nix +++ b/pkgs/by-name/me/megahit/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/voutcn/megahit"; - maintainers = with maintainers; [ luispedro ]; + maintainers = with lib.maintainers; [ luispedro ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/me/mela/package.nix b/pkgs/by-name/me/mela/package.nix index 1bdaf081ac3a..e28aae4d03b0 100644 --- a/pkgs/by-name/me/mela/package.nix +++ b/pkgs/by-name/me/mela/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Mellin Evolution LibrAry"; mainProgram = "mela-config"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/vbertone/MELA"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/me/melange/package.nix b/pkgs/by-name/me/melange/package.nix index 51615a36c79a..7330b799c513 100644 --- a/pkgs/by-name/me/melange/package.nix +++ b/pkgs/by-name/me/melange/package.nix @@ -64,12 +64,12 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/chainguard-dev/melange"; changelog = "https://github.com/chainguard-dev/melange/blob/${src.rev}/NEWS.md"; description = "Build APKs from source code"; mainProgram = "melange"; - license = licenses.asl20; - maintainers = with maintainers; [ developer-guy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ developer-guy ]; }; } diff --git a/pkgs/by-name/me/meld/package.nix b/pkgs/by-name/me/meld/package.nix index 8a36faf0565b..4d72e5d698cd 100644 --- a/pkgs/by-name/me/meld/package.nix +++ b/pkgs/by-name/me/meld/package.nix @@ -68,12 +68,12 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Visual diff and merge tool"; homepage = "https://meld.app/"; - license = licenses.gpl2Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ jtojnar mimame ]; diff --git a/pkgs/by-name/me/melete/package.nix b/pkgs/by-name/me/melete/package.nix index 02465f917625..5e8e1e5decb5 100644 --- a/pkgs/by-name/me/melete/package.nix +++ b/pkgs/by-name/me/melete/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/melete/"; description = "Headline typeface that could be used as a movie title"; - platforms = platforms.all; - maintainers = with maintainers; [ minijackson ]; - license = licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/me/meletrix-udev-rules/package.nix b/pkgs/by-name/me/meletrix-udev-rules/package.nix index bd8103780b69..d9b563120f24 100644 --- a/pkgs/by-name/me/meletrix-udev-rules/package.nix +++ b/pkgs/by-name/me/meletrix-udev-rules/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation { install -Dpm644 $src $out/lib/udev/rules.d/70-meletrix.rules ''; - meta = with lib; { + meta = { description = "udev rules to configure Meletrix keyboards"; - license = licenses.cc0; - maintainers = with maintainers; [ Scrumplex ]; - platforms = platforms.linux; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ Scrumplex ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/meli/package.nix b/pkgs/by-name/me/meli/package.nix index 11ee60dd0708..a7abb932779e 100644 --- a/pkgs/by-name/me/meli/package.nix +++ b/pkgs/by-name/me/meli/package.nix @@ -78,15 +78,15 @@ rustPlatform.buildRustPackage rec { "--skip=test_cli_subcommands" # panicking due to sandbox ]; - meta = with lib; { + meta = { description = "Terminal e-mail client and e-mail client library"; mainProgram = "meli"; homepage = "https://meli.delivery"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ _0x4A6F matthiasbeyer ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/me/melody/package.nix b/pkgs/by-name/me/melody/package.nix index 1b6b0fde6a39..7797f8626b91 100644 --- a/pkgs/by-name/me/melody/package.nix +++ b/pkgs/by-name/me/melody/package.nix @@ -16,10 +16,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-TNW36FLK1E6uoDICfGN5ZmTX8V9ndSqyif7tbBqvqDI="; - meta = with lib; { + meta = { description = "Language that compiles to regular expressions"; homepage = "https://github.com/yoav-lavi/melody"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "melody"; }; diff --git a/pkgs/by-name/me/memcached/package.nix b/pkgs/by-name/me/memcached/package.nix index ce401cc550f3..d25370d20c83 100644 --- a/pkgs/by-name/me/memcached/package.nix +++ b/pkgs/by-name/me/memcached/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { [ "-Wno-error=deprecated-declarations" ] ++ lib.optional stdenv.hostPlatform.isDarwin "-Wno-error" ); - meta = with lib; { + meta = { description = "Distributed memory object caching system"; homepage = "http://memcached.org/"; - license = licenses.bsd3; - maintainers = [ maintainers.coconnor ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.coconnor ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "memcached"; }; passthru.tests = { diff --git a/pkgs/by-name/me/meme-bingo-web/package.nix b/pkgs/by-name/me/meme-bingo-web/package.nix index 8c11b790e881..16588bf0af74 100644 --- a/pkgs/by-name/me/meme-bingo-web/package.nix +++ b/pkgs/by-name/me/meme-bingo-web/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Play meme bingo using this neat web app"; mainProgram = "meme-bingo-web"; homepage = "https://codeberg.org/annaaurora/meme-bingo-web"; - license = licenses.unlicense; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ annaaurora ]; }; } diff --git a/pkgs/by-name/me/meme-image-generator/package.nix b/pkgs/by-name/me/meme-image-generator/package.nix index 98a643d4754a..c38afd1f9eb7 100644 --- a/pkgs/by-name/me/meme-image-generator/package.nix +++ b/pkgs/by-name/me/meme-image-generator/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Command line utility for creating image macro style memes"; homepage = "https://github.com/nomad-software/meme"; - license = licenses.mit; - maintainers = [ maintainers.fgaz ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.fgaz ]; mainProgram = "meme"; }; } diff --git a/pkgs/by-name/me/meme-suite/package.nix b/pkgs/by-name/me/meme-suite/package.nix index be7fa0f0c992..f6cd0ca87d58 100644 --- a/pkgs/by-name/me/meme-suite/package.nix +++ b/pkgs/by-name/me/meme-suite/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "Motif-based sequence analysis tools"; homepage = "https://meme-suite.org/meme/meme-software/"; - license = licenses.unfree; - maintainers = with maintainers; [ gschwartz ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ gschwartz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/memorado/package.nix b/pkgs/by-name/me/memorado/package.nix index 14f6c1e8fdcd..aeb0ba7d340c 100644 --- a/pkgs/by-name/me/memorado/package.nix +++ b/pkgs/by-name/me/memorado/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { )) ]; - meta = with lib; { + meta = { description = "Simple and clean flashcard memorizing app"; homepage = "https://github.com/wbernard/Memorado"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/me/memtest86-efi/package.nix b/pkgs/by-name/me/memtest86-efi/package.nix index 9023cbb58f5a..d6a1f3d4bed3 100644 --- a/pkgs/by-name/me/memtest86-efi/package.nix +++ b/pkgs/by-name/me/memtest86-efi/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.memtest86.com/"; downloadPage = "https://www.memtest86.com/download.htm"; changelog = "https://www.memtest86.com/whats-new.html"; @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''; # MemTest86 Free Edition is free to download with no restrictions on usage. However, the source code is not available. # https://www.memtest86.com/tech_license-information.html - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ cdepillabout ]; - platforms = platforms.linux; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ cdepillabout ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/memtest_vulkan/package.nix b/pkgs/by-name/me/memtest_vulkan/package.nix index 341e0b68ad5e..9283dc24cc51 100644 --- a/pkgs/by-name/me/memtest_vulkan/package.nix +++ b/pkgs/by-name/me/memtest_vulkan/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { description = "Vulkan compute tool for testing video memory stability"; homepage = "https://github.com/GpuZelenograd/memtest_vulkan"; - license = licenses.zlib; - maintainers = with maintainers; [ atemu ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ atemu ]; mainProgram = "memtest_vulkan"; broken = stdenv.system == "aarch64-linux" # error: linker `aarch64-linux-gnu-gcc` not found diff --git a/pkgs/by-name/me/memtester/package.nix b/pkgs/by-name/me/memtester/package.nix index d6780e943fe7..2d95a1a13e0c 100644 --- a/pkgs/by-name/me/memtester/package.nix +++ b/pkgs/by-name/me/memtester/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { installFlags = [ "INSTALLPATH=$(out)" ]; - meta = with lib; { + meta = { description = "Userspace utility for testing the memory subsystem for faults"; homepage = "http://pyropus.ca/software/memtester/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.unix; mainProgram = "memtester"; }; } diff --git a/pkgs/by-name/me/memtree/package.nix b/pkgs/by-name/me/memtree/package.nix index d3e6a5bf9b85..b504a26bd40e 100644 --- a/pkgs/by-name/me/memtree/package.nix +++ b/pkgs/by-name/me/memtree/package.nix @@ -40,11 +40,11 @@ python3Packages.buildPythonApplication { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Render cgroups tree annotated by memory usage"; homepage = "https://github.com/nbraud/memtree"; - maintainers = with maintainers; [ nicoo ]; + maintainers = with lib.maintainers; [ nicoo ]; mainProgram = "memtree"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/mencal/package.nix b/pkgs/by-name/me/mencal/package.nix index dd5ea1063b03..964124888033 100644 --- a/pkgs/by-name/me/mencal/package.nix +++ b/pkgs/by-name/me/mencal/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; - meta = with lib; { + meta = { description = "Menstruation calendar"; longDescription = '' Mencal is a simple variation of the well-known unix command cal. @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { menstruation (or other) cycles conveniently. ''; homepage = "http://www.kyberdigi.cz/projects/mencal/english.html"; - license = licenses.gpl2; - maintainers = [ maintainers.mmahut ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.mmahut ]; + platforms = lib.platforms.all; mainProgram = "mencal"; }; } diff --git a/pkgs/by-name/me/menulibre/package.nix b/pkgs/by-name/me/menulibre/package.nix index 1a5c1d1743c3..78737aa9bf12 100644 --- a/pkgs/by-name/me/menulibre/package.nix +++ b/pkgs/by-name/me/menulibre/package.nix @@ -54,12 +54,12 @@ python3Packages.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Advanced menu editor with an easy-to-use interface"; homepage = "https://bluesabre.org/projects/menulibre"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ lelgenio ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lelgenio ]; mainProgram = "menulibre"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/menumaker/package.nix b/pkgs/by-name/me/menumaker/package.nix index d4b2cef88cbd..996284f0dff0 100644 --- a/pkgs/by-name/me/menumaker/package.nix +++ b/pkgs/by-name/me/menumaker/package.nix @@ -15,12 +15,12 @@ python3Packages.buildPythonApplication rec { format = "other"; - meta = with lib; { + meta = { description = "Heuristics-driven menu generator for several window managers"; mainProgram = "mmaker"; homepage = "https://menumaker.sourceforge.net"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/me/meowlnir/package.nix b/pkgs/by-name/me/meowlnir/package.nix index 77ffecd8c3b6..5052fd5b5e04 100644 --- a/pkgs/by-name/me/meowlnir/package.nix +++ b/pkgs/by-name/me/meowlnir/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/maunium/meowlnir"; description = "Opinionated Matrix moderation bot"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ sumnerevans ]; mainProgram = "meowlnir"; }; } diff --git a/pkgs/by-name/me/merecat/package.nix b/pkgs/by-name/me/merecat/package.nix index 2a50a431bfb8..93f62fe0d065 100644 --- a/pkgs/by-name/me/merecat/package.nix +++ b/pkgs/by-name/me/merecat/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) merecat; }; - meta = with lib; { + meta = { description = "Small and made-easy HTTP/HTTPS server based on Jef Poskanzer's thttpd"; homepage = "https://troglobit.com/projects/merecat/"; - license = licenses.bsd2; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; # Strange header and/or linker errors broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/me/meritous/package.nix b/pkgs/by-name/me/meritous/package.nix index 33b088e91dee..8a79612d2ad9 100644 --- a/pkgs/by-name/me/meritous/package.nix +++ b/pkgs/by-name/me/meritous/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Action-adventure dungeon crawl game"; homepage = "https://gitlab.com/meritous/meritous"; changelog = "https://gitlab.com/meritous/meritous/-/blob/master/NEWS"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "meritous"; - maintainers = [ maintainers.alexvorobiev ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.alexvorobiev ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/me/mermaid-filter/package.nix b/pkgs/by-name/me/mermaid-filter/package.nix index d34f0eb5b0b0..ca3f1ab9a9f8 100644 --- a/pkgs/by-name/me/mermaid-filter/package.nix +++ b/pkgs/by-name/me/mermaid-filter/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { --set PUPPETEER_EXECUTABLE_PATH ${chromium}/bin/chromium ''; - meta = with lib; { + meta = { description = "Pandoc filter for creating diagrams in mermaid syntax blocks in markdown docs"; homepage = "https://github.com/raghur/mermaid-filter"; - license = licenses.bsd2; - maintainers = with maintainers; [ ners ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ners ]; platforms = chromium.meta.platforms; mainProgram = "mermaid-filter"; }; diff --git a/pkgs/by-name/me/merriweather-sans/package.nix b/pkgs/by-name/me/merriweather-sans/package.nix index 8f1499eb2b80..e3b44a16d2c7 100644 --- a/pkgs/by-name/me/merriweather-sans/package.nix +++ b/pkgs/by-name/me/merriweather-sans/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation rec { # TODO: install variable version? ''; - meta = with lib; { + meta = { homepage = "https://github.com/SorkinType/Merriweather-Sans"; description = "Merriweather Sans is a low-contrast semi-condensed sans-serif text typeface family designed to be pleasant to read at very small sizes"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ emily ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ emily ]; }; } diff --git a/pkgs/by-name/me/merriweather/package.nix b/pkgs/by-name/me/merriweather/package.nix index a3c3066beb93..87f38e6b14d2 100644 --- a/pkgs/by-name/me/merriweather/package.nix +++ b/pkgs/by-name/me/merriweather/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { # TODO: install variable version? ''; - meta = with lib; { + meta = { homepage = "https://github.com/SorkinType/Merriweather"; description = "Text face designed to be pleasant to read on screens"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ emily ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ emily ]; }; } diff --git a/pkgs/by-name/me/mesa-demos/package.nix b/pkgs/by-name/me/mesa-demos/package.nix index c4aa6350630b..9647cc6797d1 100644 --- a/pkgs/by-name/me/mesa-demos/package.nix +++ b/pkgs/by-name/me/mesa-demos/package.nix @@ -65,10 +65,10 @@ stdenv.mkDerivation rec { (lib.mesonEnable "wayland" (lib.meta.availableOn stdenv.hostPlatform wayland)) ]; - meta = with lib; { + meta = { inherit (mesa.meta) homepage platforms; description = "Collection of demos and test programs for OpenGL and Mesa"; - license = licenses.mit; - maintainers = with maintainers; [ andersk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ andersk ]; }; } diff --git a/pkgs/by-name/me/mescc-tools-extra/package.nix b/pkgs/by-name/me/mescc-tools-extra/package.nix index 5b62096e9609..d921d78da4ed 100644 --- a/pkgs/by-name/me/mescc-tools-extra/package.nix +++ b/pkgs/by-name/me/mescc-tools-extra/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Collection of tools written for use in bootstrapping"; homepage = "https://github.com/oriansj/mescc-tools-extra"; - license = licenses.gpl3Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.minimal-bootstrap ]; inherit (m2libc.meta) platforms; }; }) diff --git a/pkgs/by-name/me/mescc-tools/package.nix b/pkgs/by-name/me/mescc-tools/package.nix index 7b3426aecacf..4393171a448d 100644 --- a/pkgs/by-name/me/mescc-tools/package.nix +++ b/pkgs/by-name/me/mescc-tools/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Collection of tools written for use in bootstrapping"; homepage = "https://savannah.nongnu.org/projects/mescc-tools"; - license = licenses.gpl3Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.minimal-bootstrap ]; inherit (m2libc.meta) platforms; }; }) diff --git a/pkgs/by-name/me/meshoptimizer/package.nix b/pkgs/by-name/me/meshoptimizer/package.nix index fba0ec9718fe..fa65240ece4f 100644 --- a/pkgs/by-name/me/meshoptimizer/package.nix +++ b/pkgs/by-name/me/meshoptimizer/package.nix @@ -40,15 +40,15 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Mesh optimization library that makes meshes smaller and faster to render"; homepage = "https://github.com/zeux/meshoptimizer"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bouk lillycham ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "gltfpack"; }; } diff --git a/pkgs/by-name/me/meslo-lgs-nf/package.nix b/pkgs/by-name/me/meslo-lgs-nf/package.nix index eeffbbb6e4cb..9faeb5164cb3 100644 --- a/pkgs/by-name/me/meslo-lgs-nf/package.nix +++ b/pkgs/by-name/me/meslo-lgs-nf/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { cp $src/*.ttf $out/share/fonts/truetype ''; - meta = with lib; { + meta = { description = "Meslo Nerd Font patched for Powerlevel10k"; homepage = "https://github.com/romkatv/powerlevel10k-media"; - license = licenses.asl20; - maintainers = with maintainers; [ bbigras ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bbigras ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/me/meson-tools/package.nix b/pkgs/by-name/me/meson-tools/package.nix index 714ed7f763a7..565d9f275458 100644 --- a/pkgs/by-name/me/meson-tools/package.nix +++ b/pkgs/by-name/me/meson-tools/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { mv amlbootsig unamlbootsig amlinfo "$out/bin" ''; - meta = with lib; { + meta = { homepage = "https://github.com/afaerber/meson-tools"; description = "Tools for Amlogic Meson ARM platforms"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ lopsided98 ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/by-name/me/mesonlsp/package.nix b/pkgs/by-name/me/mesonlsp/package.nix index 48303931dba5..88637491b467 100644 --- a/pkgs/by-name/me/mesonlsp/package.nix +++ b/pkgs/by-name/me/mesonlsp/package.nix @@ -158,14 +158,14 @@ stdenv'.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Unofficial, unendorsed language server for Meson written in C++"; homepage = "https://github.com/JCWasmx86/mesonlsp"; changelog = "https://github.com/JCWasmx86/mesonlsp/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "mesonlsp"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # ../src/liblog/log.cpp:41:7: error: call to 'format' is ambiguous broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64; }; diff --git a/pkgs/by-name/me/metabase/package.nix b/pkgs/by-name/me/metabase/package.nix index 96805b04df27..c3aa49b23ecd 100644 --- a/pkgs/by-name/me/metabase/package.nix +++ b/pkgs/by-name/me/metabase/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Business Intelligence and Embedded Analytics tool"; homepage = "https://metabase.com"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.agpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.agpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice mmahut ]; diff --git a/pkgs/by-name/me/metals/package.nix b/pkgs/by-name/me/metals/package.nix index 8f28a0b6e522..3a31b4b4ae69 100644 --- a/pkgs/by-name/me/metals/package.nix +++ b/pkgs/by-name/me/metals/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { --add-flags "${finalAttrs.extraJavaOpts} -cp $CLASSPATH scala.meta.metals.Main" ''; - meta = with lib; { + meta = { homepage = "https://scalameta.org/metals/"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Language server for Scala"; mainProgram = "metals"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fabianhjr jpaju tomahna diff --git a/pkgs/by-name/me/metamath/package.nix b/pkgs/by-name/me/metamath/package.nix index 884aa8ab4814..f38d658ed637 100644 --- a/pkgs/by-name/me/metamath/package.nix +++ b/pkgs/by-name/me/metamath/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { sha256 = "sha256-Cg1dgz+uphDlGhKH3mTywtAccWinC5+pwNv4TB3YAnI="; }; - meta = with lib; { + meta = { description = "Interpreter for the metamath proof language"; mainProgram = "metamath"; longDescription = '' @@ -29,8 +29,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://us.metamath.org"; downloadPage = "https://us.metamath.org/#downloads"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.taneb ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.taneb ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/me/metamorphose2/package.nix b/pkgs/by-name/me/metamorphose2/package.nix index 6d997bc327cf..c34ec30e5078 100644 --- a/pkgs/by-name/me/metamorphose2/package.nix +++ b/pkgs/by-name/me/metamorphose2/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Graphical mass renaming program for files and folders"; homepage = "https://github.com/timinaust/metamorphose2"; - license = with licenses; gpl3Plus; - maintainers = with maintainers; [ ramkromberg ]; - platforms = with platforms; linux; + license = with lib.licenses; gpl3Plus; + maintainers = with lib.maintainers; [ ramkromberg ]; + platforms = with lib.platforms; linux; mainProgram = "metamorphose2"; }; } diff --git a/pkgs/by-name/me/metapixel/package.nix b/pkgs/by-name/me/metapixel/package.nix index 7bdd859af933..87b6cb0dd007 100644 --- a/pkgs/by-name/me/metapixel/package.nix +++ b/pkgs/by-name/me/metapixel/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation { cp metapixel-sizesort $out/bin/metapixel-sizesort ''; - meta = with lib; { + meta = { homepage = "https://github.com/schani/metapixel"; description = "Tool for generating photomosaics"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/by-name/me/metar/package.nix b/pkgs/by-name/me/metar/package.nix index 34f4c6d2eb05..da4902475359 100644 --- a/pkgs/by-name/me/metar/package.nix +++ b/pkgs/by-name/me/metar/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { buildInputs = [ curl ]; - meta = with lib; { + meta = { homepage = "https://github.com/keesL/metar"; description = "Downloads weather reports and optionally decodes them"; longDescription = '' @@ -31,8 +31,8 @@ stdenv.mkDerivation { more work in the area of clouds need to be done, as support for Cumulus or Cumulunimbus is not yet decoded. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ zalakain ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ zalakain ]; mainProgram = "metar"; }; } diff --git a/pkgs/by-name/me/metastore/package.nix b/pkgs/by-name/me/metastore/package.nix index 32d85ff6cc4e..d2900010b015 100644 --- a/pkgs/by-name/me/metastore/package.nix +++ b/pkgs/by-name/me/metastore/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { buildInputs = [ libbsd ]; installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Store and restore metadata from a filesystem"; mainProgram = "metastore"; homepage = "https://software.przemoc.net/#metastore"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ sstef ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sstef ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/meteor/package.nix b/pkgs/by-name/me/meteor/package.nix index 63c307d2a48a..2179b87fd1a8 100644 --- a/pkgs/by-name/me/meteor/package.nix +++ b/pkgs/by-name/me/meteor/package.nix @@ -114,11 +114,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Complete open source platform for building web and mobile apps in pure JavaScript"; homepage = "https://www.meteor.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; platforms = builtins.attrNames srcs; maintainers = [ ]; mainProgram = "meteor"; diff --git a/pkgs/by-name/me/meterbridge/package.nix b/pkgs/by-name/me/meterbridge/package.nix index 7b6e59fc55a8..5906053572e3 100644 --- a/pkgs/by-name/me/meterbridge/package.nix +++ b/pkgs/by-name/me/meterbridge/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { libjack2 ]; - meta = with lib; { + meta = { description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit"; homepage = "http://plugin.org.uk/meterbridge/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.nico202 ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.nico202 ]; mainProgram = "meterbridge"; }; } diff --git a/pkgs/by-name/me/metersLv2/package.nix b/pkgs/by-name/me/metersLv2/package.nix index beeaeb4f5ebf..820ce300b831 100644 --- a/pkgs/by-name/me/metersLv2/package.nix +++ b/pkgs/by-name/me/metersLv2/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Collection of audio level meters with GUI in LV2 plugin format"; mainProgram = "x42-meter"; homepage = "https://x42.github.io/meters.lv2/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/me/metis-prover/package.nix b/pkgs/by-name/me/metis-prover/package.nix index 7167fc864024..d5d575aef6eb 100644 --- a/pkgs/by-name/me/metis-prover/package.nix +++ b/pkgs/by-name/me/metis-prover/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { install -Dm0755 bin/mlton/metis $out/bin/metis ''; - meta = with lib; { + meta = { description = "Automatic theorem prover for first-order logic with equality"; mainProgram = "metis"; homepage = "https://www.gilith.com/research/metis/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/me/metronome/package.nix b/pkgs/by-name/me/metronome/package.nix index b9f4dee6a2ee..da9d63887d29 100644 --- a/pkgs/by-name/me/metronome/package.nix +++ b/pkgs/by-name/me/metronome/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "16" ) "-Wno-error=incompatible-function-pointer-types"; - meta = with lib; { + meta = { description = "Keep the tempo"; longDescription = '' Metronome beats the rhythm for you, you simply @@ -65,9 +65,9 @@ stdenv.mkDerivation rec { application guess the required beats per minute. ''; homepage = "https://gitlab.gnome.org/World/metronome"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "metronome"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/me/mev-boost/package.nix b/pkgs/by-name/me/mev-boost/package.nix index 0ab558f8e0a5..30e675565261 100644 --- a/pkgs/by-name/me/mev-boost/package.nix +++ b/pkgs/by-name/me/mev-boost/package.nix @@ -16,12 +16,12 @@ buildGoModule rec { vendorHash = "sha256-FpkQp/PgmZ9+swQYI984j87ODbT0kpanBkHfJK86FWA="; - meta = with lib; { + meta = { description = "Ethereum block-building middleware"; homepage = "https://github.com/flashbots/mev-boost"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "mev-boost"; - maintainers = with maintainers; [ ekimber ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ekimber ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mf/mfc465cncupswrapper/package.nix b/pkgs/by-name/mf/mfc465cncupswrapper/package.nix index 89626b1f3c28..3f327285b329 100644 --- a/pkgs/by-name/mf/mfc465cncupswrapper/package.nix +++ b/pkgs/by-name/mf/mfc465cncupswrapper/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { chmod 755 $out/lib/cups/filter/brlpdwrappermfc465cn ''; - meta = with lib; { + meta = { description = "Brother MFC-465CN CUPS wrapper driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ phrogg ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ phrogg ]; }; } diff --git a/pkgs/by-name/mf/mfc465cnlpr/package.nix b/pkgs/by-name/mf/mfc465cnlpr/package.nix index 0a86b518db49..dc4841a2fb4a 100644 --- a/pkgs/by-name/mf/mfc465cnlpr/package.nix +++ b/pkgs/by-name/mf/mfc465cnlpr/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { chmod -R a+w $dir/inf/ ''; - meta = with lib; { + meta = { description = "Brother MFC-465CN LPR printer driver"; homepage = "http://www.brother.com/"; - license = licenses.unfree; - maintainers = with maintainers; [ phrogg ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ phrogg ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/mf/mfc5890cncupswrapper/package.nix b/pkgs/by-name/mf/mfc5890cncupswrapper/package.nix index 88607d736cef..339fe7d9c3a5 100644 --- a/pkgs/by-name/mf/mfc5890cncupswrapper/package.nix +++ b/pkgs/by-name/mf/mfc5890cncupswrapper/package.nix @@ -71,13 +71,13 @@ stdenv.mkDerivation rec { ln $out/usr/share/ppd/brmfc5890cn.ppd $out/share/cups/model ''; - meta = with lib; { + meta = { description = "Brother MFC-5890CN CUPS wrapper driver"; longDescription = "Brother MFC-5890CN CUPS wrapper driver. Use the connection string 'lpd://\${IP_ADDRESS}/binary_p1' when connecting to this printer via the network."; homepage = "http://www.brother.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ martinramm ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ martinramm ]; }; } diff --git a/pkgs/by-name/mf/mfc5890cnlpr/package.nix b/pkgs/by-name/mf/mfc5890cnlpr/package.nix index 225b04ea6e17..3a2afd6b4cd9 100644 --- a/pkgs/by-name/mf/mfc5890cnlpr/package.nix +++ b/pkgs/by-name/mf/mfc5890cnlpr/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Brother MFC-5890CN LPR printer driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ martinramm ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ martinramm ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/mf/mfc9140cdncupswrapper/package.nix b/pkgs/by-name/mf/mfc9140cdncupswrapper/package.nix index 7534a6238024..002c36ca264d 100644 --- a/pkgs/by-name/mf/mfc9140cdncupswrapper/package.nix +++ b/pkgs/by-name/mf/mfc9140cdncupswrapper/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { chmod +x $out/lib/cups/filter/brother_lpdwrapper_mfc9140cdn ''; - meta = with lib; { + meta = { description = "Brother MFC-9140CDN CUPS wrapper driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ hexa ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/mf/mfc9140cdnlpr/package.nix b/pkgs/by-name/mf/mfc9140cdnlpr/package.nix index 9092d2073807..dccbf495f425 100644 --- a/pkgs/by-name/mf/mfc9140cdnlpr/package.nix +++ b/pkgs/by-name/mf/mfc9140cdnlpr/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Brother MFC-9140CDN LPR printer driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ hexa ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ hexa ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/mf/mfcj6510dw-cupswrapper/package.nix b/pkgs/by-name/mf/mfcj6510dw-cupswrapper/package.nix index eefc4294c4b7..92df006d0f79 100644 --- a/pkgs/by-name/mf/mfcj6510dw-cupswrapper/package.nix +++ b/pkgs/by-name/mf/mfcj6510dw-cupswrapper/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother MFC-J6510DW CUPS wrapper driver"; - license = with licenses; gpl2Plus; - platforms = with platforms; linux; + license = with lib.licenses; gpl2Plus; + platforms = with lib.platforms; linux; downloadPage = "http://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj6510dw_all&os=128"; - maintainers = with maintainers; [ ramkromberg ]; + maintainers = with lib.maintainers; [ ramkromberg ]; }; } diff --git a/pkgs/by-name/mf/mfcj880dwcupswrapper/package.nix b/pkgs/by-name/mf/mfcj880dwcupswrapper/package.nix index 46b484e65787..9c8cc02c86cd 100644 --- a/pkgs/by-name/mf/mfcj880dwcupswrapper/package.nix +++ b/pkgs/by-name/mf/mfcj880dwcupswrapper/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother MFC-J880DW CUPS wrapper driver"; - license = with licenses; gpl2; - platforms = with platforms; linux; + license = with lib.licenses; gpl2; + platforms = with lib.platforms; linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj880dw_us_eu_as&os=128"; - maintainers = with maintainers; [ _6543 ]; + maintainers = with lib.maintainers; [ _6543 ]; }; } diff --git a/pkgs/by-name/mf/mfcj880dwlpr/package.nix b/pkgs/by-name/mf/mfcj880dwlpr/package.nix index 7948c720fcbd..0484b17906e3 100644 --- a/pkgs/by-name/mf/mfcj880dwlpr/package.nix +++ b/pkgs/by-name/mf/mfcj880dwlpr/package.nix @@ -117,13 +117,13 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Brother MFC-J880DW LPR driver"; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj880dw_us_eu_as&os=128"; homepage = "http://www.brother.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = with licenses; unfree; - maintainers = with maintainers; [ _6543 ]; - platforms = with platforms; linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with lib.licenses; unfree; + maintainers = with lib.maintainers; [ _6543 ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/mf/mfcuk/package.nix b/pkgs/by-name/mf/mfcuk/package.nix index 8d10b3eb20ac..676d32e7bcb7 100644 --- a/pkgs/by-name/mf/mfcuk/package.nix +++ b/pkgs/by-name/mf/mfcuk/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libnfc ]; - meta = with lib; { + meta = { description = "MiFare Classic Universal toolKit"; mainProgram = "mfcuk"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/nfc-tools/mfcuk"; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mf/mfoc-hardnested/package.nix b/pkgs/by-name/mf/mfoc-hardnested/package.nix index 3cd51bbd0e1f..5b99328e05d6 100644 --- a/pkgs/by-name/mf/mfoc-hardnested/package.nix +++ b/pkgs/by-name/mf/mfoc-hardnested/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation { xz ]; - meta = with lib; { + meta = { description = "Fork of mfoc integrating hardnested code from the proxmark"; mainProgram = "mfoc-hardnested"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://github.com/nfc-tools/mfoc-hardnested"; changelog = "https://github.com/nfc-tools/mfoc-hardnested/blob/master/debian/changelog"; - maintainers = with maintainers; [ azuwis ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ azuwis ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mf/mfoc/package.nix b/pkgs/by-name/mf/mfoc/package.nix index 7f83b7c7ba44..49c199a04305 100644 --- a/pkgs/by-name/mf/mfoc/package.nix +++ b/pkgs/by-name/mf/mfoc/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libnfc ]; - meta = with lib; { + meta = { description = "Mifare Classic Offline Cracker"; mainProgram = "mfoc"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/nfc-tools/mfoc"; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mf/mftrace/package.nix b/pkgs/by-name/mf/mftrace/package.nix index 8f387f970bb3..13810a4c2e4e 100644 --- a/pkgs/by-name/mf/mftrace/package.nix +++ b/pkgs/by-name/mf/mftrace/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { metafont ]; - meta = with lib; { + meta = { description = "Scalable PostScript Fonts for MetaFont"; longDescription = '' mftrace is a small Python program that lets you trace a TeX bitmap @@ -66,11 +66,11 @@ stdenv.mkDerivation (finalAttrs: { TTF (TrueType) font. ''; homepage = "https://lilypond.org/mftrace/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only mit ]; - maintainers = with maintainers; [ xworld21 ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ xworld21 ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/mg/mg/package.nix b/pkgs/by-name/mg/mg/package.nix index b88c01f605ae..778bfe86b032 100644 --- a/pkgs/by-name/mg/mg/package.nix +++ b/pkgs/by-name/mg/mg/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Micro GNU/emacs, a portable version of the mg maintained by the OpenBSD team"; homepage = "https://man.openbsd.org/OpenBSD-current/man1/mg.1"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; mainProgram = "mg"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mh/mhost/package.nix b/pkgs/by-name/mh/mhost/package.nix index 06ea2c38b689..c5a9a1ca2b67 100644 --- a/pkgs/by-name/mh/mhost/package.nix +++ b/pkgs/by-name/mh/mhost/package.nix @@ -21,14 +21,14 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Modern take on the classic host DNS lookup utility including an easy to use and very fast Rust lookup library"; homepage = "https://github.com/lukaspustina/mhost"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = [ maintainers.mgttlinger ]; + maintainers = [ lib.maintainers.mgttlinger ]; mainProgram = "mhost"; }; } diff --git a/pkgs/by-name/mi/mi2ly/package.nix b/pkgs/by-name/mi/mi2ly/package.nix index f78d1df79a5e..60c0b0f2b830 100644 --- a/pkgs/by-name/mi/mi2ly/package.nix +++ b/pkgs/by-name/mi/mi2ly/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp README Doc.txt COPYING Manual.txt "$out/share/doc/mi2ly" ''; - meta = with lib; { + meta = { description = "MIDI to Lilypond converter"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://www.nongnu.org/mi2ly/"; mainProgram = "mi2ly"; }; diff --git a/pkgs/by-name/mi/micro-httpd/package.nix b/pkgs/by-name/mi/micro-httpd/package.nix index 918d29d45514..9966ef328382 100644 --- a/pkgs/by-name/mi/micro-httpd/package.nix +++ b/pkgs/by-name/mi/micro-httpd/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { mkdir -p $out/share/man/man8 ''; - meta = with lib; { + meta = { homepage = "http://acme.com/software/micro_httpd/"; description = "Really small HTTP server"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "micro_httpd"; }; diff --git a/pkgs/by-name/mi/microcode-amd/package.nix b/pkgs/by-name/mi/microcode-amd/package.nix index 44399fdb7ca8..892b27ab49a7 100644 --- a/pkgs/by-name/mi/microcode-amd/package.nix +++ b/pkgs/by-name/mi/microcode-amd/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { echo kernel/x86/microcode/AuthenticAMD.bin | bsdtar --uid 0 --gid 0 -cnf - -T - | bsdtar --null -cf - --format=newc @- > $out/amd-ucode.img ''; - meta = with lib; { + meta = { description = "AMD Processor microcode patch"; homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"; - license = licenses.unfreeRedistributableFirmware; + license = lib.licenses.unfreeRedistributableFirmware; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/mi/microcode-intel/package.nix b/pkgs/by-name/mi/microcode-intel/package.nix index 5e5f8560592b..0f3b11e9a8c4 100644 --- a/pkgs/by-name/mi/microcode-intel/package.nix +++ b/pkgs/by-name/mi/microcode-intel/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.intel.com/"; changelog = "https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/${finalAttrs.src.rev}"; description = "Microcode for Intel processors"; - license = licenses.unfreeRedistributableFirmware; + license = lib.licenses.unfreeRedistributableFirmware; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ felixsinger ]; + maintainers = with lib.maintainers; [ felixsinger ]; }; }) diff --git a/pkgs/by-name/mi/microcom/package.nix b/pkgs/by-name/mi/microcom/package.nix index b70adcd0ff01..072029434496 100644 --- a/pkgs/by-name/mi/microcom/package.nix +++ b/pkgs/by-name/mi/microcom/package.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ readline ]; - meta = with lib; { + meta = { description = "Minimalistic terminal program for communicating with devices over a serial connection"; inherit (src.meta) homepage; - license = licenses.gpl2; - maintainers = with maintainers; [ emantor ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ emantor ]; + platforms = with lib.platforms; linux; mainProgram = "microcom"; }; } diff --git a/pkgs/by-name/mi/micronaut/package.nix b/pkgs/by-name/mi/micronaut/package.nix index d6922b079c8d..4d25d21b5f71 100644 --- a/pkgs/by-name/mi/micronaut/package.nix +++ b/pkgs/by-name/mi/micronaut/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Modern, JVM-based, full-stack framework for building microservice applications"; longDescription = '' Micronaut is a modern, JVM-based, full stack microservices framework @@ -42,9 +42,9 @@ stdenv.mkDerivation rec { not bound to the size of your codebase. ''; homepage = "https://micronaut.io/"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ moaxcp ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moaxcp ]; mainProgram = "mn"; }; } diff --git a/pkgs/by-name/mi/microplane/package.nix b/pkgs/by-name/mi/microplane/package.nix index 59b6b67f2621..d03f24e60a1e 100644 --- a/pkgs/by-name/mi/microplane/package.nix +++ b/pkgs/by-name/mi/microplane/package.nix @@ -27,10 +27,10 @@ buildGoModule rec { ln -s $out/bin/microplane $out/bin/mp ''; - meta = with lib; { + meta = { description = "CLI tool to make git changes across many repos"; homepage = "https://github.com/Clever/microplane"; - license = licenses.asl20; - maintainers = with maintainers; [ dbirks ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dbirks ]; }; } diff --git a/pkgs/by-name/mi/micropython/package.nix b/pkgs/by-name/mi/micropython/package.nix index dadd165c0785..19eb005ba52b 100644 --- a/pkgs/by-name/mi/micropython/package.nix +++ b/pkgs/by-name/mi/micropython/package.nix @@ -135,12 +135,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lean and efficient Python implementation for microcontrollers and constrained systems"; homepage = "https://micropython.org"; - platforms = platforms.unix; - license = licenses.mit; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak sgo ]; diff --git a/pkgs/by-name/mi/microscheme/package.nix b/pkgs/by-name/mi/microscheme/package.nix index 8c7841904438..30edec06a7a3 100644 --- a/pkgs/by-name/mi/microscheme/package.nix +++ b/pkgs/by-name/mi/microscheme/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://ryansuchocki.github.io/microscheme/"; description = "Scheme subset for Atmel microcontrollers"; mainProgram = "microscheme"; @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { Microscheme is a Scheme subset/variant designed for Atmel microcontrollers, especially as found on Arduino boards. ''; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ ardumont ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ardumont ]; }; } diff --git a/pkgs/by-name/mi/microserver/package.nix b/pkgs/by-name/mi/microserver/package.nix index b0c159431c31..f29c1dde4028 100644 --- a/pkgs/by-name/mi/microserver/package.nix +++ b/pkgs/by-name/mi/microserver/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-IPJJ9kv7gf5l7Y2JLCLjkNFao42h/VmkTd3LF5BCMLU="; - meta = with lib; { + meta = { homepage = "https://github.com/robertohuertasm/microserver"; description = "Simple ad-hoc server with SPA support"; - maintainers = with maintainers; [ flosse ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ flosse ]; + license = lib.licenses.mit; mainProgram = "microserver"; }; } diff --git a/pkgs/by-name/mi/microsoft-gsl/package.nix b/pkgs/by-name/mi/microsoft-gsl/package.nix index 232517d6663f..8c9d270b8316 100644 --- a/pkgs/by-name/mi/microsoft-gsl/package.nix +++ b/pkgs/by-name/mi/microsoft-gsl/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "C++ Core Guideline support library"; longDescription = '' The Guideline Support Library (GSL) contains functions and types that are suggested for @@ -37,9 +37,9 @@ stdenv.mkDerivation rec { This package contains Microsoft's implementation of GSL. ''; homepage = "https://github.com/Microsoft/GSL"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice yuriaisaka ]; diff --git a/pkgs/by-name/mi/mictray/package.nix b/pkgs/by-name/mi/mictray/package.nix index f0d7239718a8..52f1d5a9f3d4 100644 --- a/pkgs/by-name/mi/mictray/package.nix +++ b/pkgs/by-name/mi/mictray/package.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/Junker/mictray"; description = "System tray application for microphone"; longDescription = '' MicTray is a Lightweight system tray application which lets you control the microphone state and volume. ''; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.anpryl ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.anpryl ]; mainProgram = "mictray"; }; } diff --git a/pkgs/by-name/mi/mid2key/package.nix b/pkgs/by-name/mi/mid2key/package.nix index d1e3fb1c2b72..e58cf4fdb697 100644 --- a/pkgs/by-name/mi/mid2key/package.nix +++ b/pkgs/by-name/mi/mid2key/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { installPhase = "mkdir -p $out/bin && mv mid2key $out/bin"; - meta = with lib; { + meta = { homepage = "http://code.google.com/p/mid2key/"; description = "Simple tool which maps midi notes to simulated keystrokes"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "mid2key"; }; } diff --git a/pkgs/by-name/mi/midi-trigger/package.nix b/pkgs/by-name/mi/midi-trigger/package.nix index c05218a923bd..8ae0f33aa156 100644 --- a/pkgs/by-name/mi/midi-trigger/package.nix +++ b/pkgs/by-name/mi/midi-trigger/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { mv midi-trigger.lv2 "$out/lib/lv2" ''; - meta = with lib; { + meta = { homepage = "https://github.com/unclechu/MIDI-Trigger"; description = "LV2 plugin which generates MIDI notes by detected audio signal peaks"; - maintainers = with maintainers; [ unclechu ]; - license = licenses.gpl3Only; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ unclechu ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mi/midicsv/package.nix b/pkgs/by-name/mi/midicsv/package.nix index 330be90a045b..0fc9cf828c0a 100644 --- a/pkgs/by-name/mi/midicsv/package.nix +++ b/pkgs/by-name/mi/midicsv/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { --replace gcc "${stdenv.cc.targetPrefix}cc" ''; - meta = with lib; { + meta = { description = "Losslessly translate MIDI to CSV and back"; homepage = "https://www.fourmilab.ch/webtools/midicsv/"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mi/midimonster/package.nix b/pkgs/by-name/mi/midimonster/package.nix index dc92d792535a..022d55518f7c 100644 --- a/pkgs/by-name/mi/midimonster/package.nix +++ b/pkgs/by-name/mi/midimonster/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { cp assets/MIDIMonster.svg "$out/share/icons/hicolor/scalable/apps/" ''; - meta = with lib; { + meta = { homepage = "https://midimonster.net"; description = "Multi-protocol translation tool"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ keldu ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ keldu ]; mainProgram = "midimonster"; }; } diff --git a/pkgs/by-name/mi/midivisualizer/package.nix b/pkgs/by-name/mi/midivisualizer/package.nix index 601f52e080de..5bccdd888588 100644 --- a/pkgs/by-name/mi/midivisualizer/package.nix +++ b/pkgs/by-name/mi/midivisualizer/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation (finalAttrs: { --prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS" ''; - meta = with lib; { + meta = { description = "Small MIDI visualizer tool, using OpenGL"; mainProgram = "MIDIVisualizer"; homepage = "https://github.com/kosua20/MIDIVisualizer"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - maintainers = [ maintainers.ericdallo ]; + maintainers = [ lib.maintainers.ericdallo ]; }; }) diff --git a/pkgs/by-name/mi/migmix/package.nix b/pkgs/by-name/mi/migmix/package.nix index 7e7bbbcccedf..0f7a7a1135c4 100644 --- a/pkgs/by-name/mi/migmix/package.nix +++ b/pkgs/by-name/mi/migmix/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHash = "1fhh8wg6lxwrnsg9rl4ihffl0bsp1wqa5gps9fx60kr6j9wpvmbg"; - meta = with lib; { + meta = { description = "High-quality Japanese font based on M+ fonts and IPA fonts"; homepage = "http://mix-mplus-ipa.osdn.jp/migmix"; - license = licenses.ipa; - maintainers = [ maintainers.mikoim ]; + license = lib.licenses.ipa; + maintainers = [ lib.maintainers.mikoim ]; }; } diff --git a/pkgs/by-name/mi/migrate/package.nix b/pkgs/by-name/mi/migrate/package.nix index aceb010875d7..028a123a6f98 100644 --- a/pkgs/by-name/mi/migrate/package.nix +++ b/pkgs/by-name/mi/migrate/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation (finalAttrs: { "mpis" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Estimates population size, migration, population splitting parameters using genetic/genomic data"; homepage = "https://peterbeerli.com/migrate-html5/index.html"; - license = licenses.mit; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.unix; mainProgram = "migrate-n"; }; }) diff --git a/pkgs/by-name/mi/migu/package.nix b/pkgs/by-name/mi/migu/package.nix index 0476bd072987..97da8af6e0cb 100644 --- a/pkgs/by-name/mi/migu/package.nix +++ b/pkgs/by-name/mi/migu/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHash = "0nbpn21cxdd6gsgr3fadzjsnz84f2swpf81wmscmjgvd56ngndzh"; - meta = with lib; { + meta = { description = "High-quality Japanese font based on modified M+ fonts and IPA fonts"; homepage = "http://mix-mplus-ipa.osdn.jp/migu/"; - license = licenses.ipa; - maintainers = [ maintainers.mikoim ]; + license = lib.licenses.ipa; + maintainers = [ lib.maintainers.mikoim ]; }; } diff --git a/pkgs/by-name/mi/mihomo/package.nix b/pkgs/by-name/mi/mihomo/package.nix index 248e973c8945..53524cb98357 100644 --- a/pkgs/by-name/mi/mihomo/package.nix +++ b/pkgs/by-name/mi/mihomo/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { mihomo = nixosTests.mihomo; }; - meta = with lib; { + meta = { description = "Rule-based tunnel in Go"; homepage = "https://github.com/MetaCubeX/mihomo/tree/Alpha"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ oluceps ]; mainProgram = "mihomo"; }; } diff --git a/pkgs/by-name/mi/miller/package.nix b/pkgs/by-name/mi/miller/package.nix index cae50e379a81..53fe0052c706 100644 --- a/pkgs/by-name/mi/miller/package.nix +++ b/pkgs/by-name/mi/miller/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { subPackages = [ "cmd/mlr" ]; - meta = with lib; { + meta = { description = "Like awk, sed, cut, join, and sort for data formats such as CSV, TSV, JSON, JSON Lines, and positionally-indexed"; homepage = "https://github.com/johnkerl/miller"; - license = licenses.bsd2; - maintainers = with maintainers; [ mstarzyk ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mstarzyk ]; mainProgram = "mlr"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mi/millipixels/package.nix b/pkgs/by-name/mi/millipixels/package.nix index 96fb56df4d1a..29b3391c84d6 100644 --- a/pkgs/by-name/mi/millipixels/package.nix +++ b/pkgs/by-name/mi/millipixels/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Camera application for the Librem 5"; homepage = "https://source.puri.sm/Librem5/millipixels"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ _999eagle ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ _999eagle ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/mimalloc/package.nix b/pkgs/by-name/mi/mimalloc/package.nix index fc3e135cf813..1c7f1e12eb43 100644 --- a/pkgs/by-name/mi/mimalloc/package.nix +++ b/pkgs/by-name/mi/mimalloc/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Compact, fast, general-purpose memory allocator"; homepage = "https://github.com/microsoft/mimalloc"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ kamadorueda thoughtpolice ]; diff --git a/pkgs/by-name/mi/mimeo/package.nix b/pkgs/by-name/mi/mimeo/package.nix index 4c655035b62d..5edbcdaab098 100644 --- a/pkgs/by-name/mi/mimeo/package.nix +++ b/pkgs/by-name/mi/mimeo/package.nix @@ -36,12 +36,12 @@ python3Packages.buildPythonApplication { $out/bin/mimeo --help > /dev/null ''; - meta = with lib; { + meta = { description = "Open files by MIME-type or file name using regular expressions"; homepage = "https://xyne.dev/projects/mimeo/"; - license = [ licenses.gpl2Only ]; - maintainers = [ maintainers.rycee ]; - platforms = platforms.unix; + license = [ lib.licenses.gpl2Only ]; + maintainers = [ lib.maintainers.rycee ]; + platforms = lib.platforms.unix; mainProgram = "mimeo"; }; } diff --git a/pkgs/by-name/mi/mimetic/package.nix b/pkgs/by-name/mi/mimetic/package.nix index 60ef6a6ff6cc..54ed3ae71a65 100644 --- a/pkgs/by-name/mi/mimetic/package.nix +++ b/pkgs/by-name/mi/mimetic/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { ] ++ lib.optional stdenv.hostPlatform.isAarch64 ./narrowing.patch; - meta = with lib; { + meta = { description = "MIME handling library"; homepage = "https://www.codesink.org/mimetic_mime_library.html"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/mimir/package.nix b/pkgs/by-name/mi/mimir/package.nix index 40e7c1bc7fd6..ebc6e2bfead3 100644 --- a/pkgs/by-name/mi/mimir/package.nix +++ b/pkgs/by-name/mi/mimir/package.nix @@ -59,12 +59,12 @@ buildGoModule (finalAttrs: { "-X ${t}.Branch=unknown" ]; - meta = with lib; { + meta = { description = "Grafana Mimir provides horizontally scalable, highly available, multi-tenant, long-term storage for Prometheus. "; homepage = "https://github.com/grafana/mimir"; changelog = "https://github.com/grafana/mimir/releases/tag/mimir-${finalAttrs.version}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ happysalada bryanhonof adamcstephens diff --git a/pkgs/by-name/mi/minder/package.nix b/pkgs/by-name/mi/minder/package.nix index e393a7dd27c8..232fac6e6692 100644 --- a/pkgs/by-name/mi/minder/package.nix +++ b/pkgs/by-name/mi/minder/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Mind-mapping application for elementary OS"; homepage = "https://github.com/phase1geo/Minder"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "com.github.phase1geo.minder"; }; } diff --git a/pkgs/by-name/mi/minecraft-server-hibernation/package.nix b/pkgs/by-name/mi/minecraft-server-hibernation/package.nix index 53269a87f573..5b1615faf824 100644 --- a/pkgs/by-name/mi/minecraft-server-hibernation/package.nix +++ b/pkgs/by-name/mi/minecraft-server-hibernation/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { "${builtins.concatStringsSep "|" skippedTests}" ]; - meta = with lib; { + meta = { description = "Autostart and stop minecraft-server when players join/leave"; mainProgram = "msh"; homepage = "https://github.com/gekware/minecraft-server-hibernation"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ squarepear ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ squarepear ]; }; } diff --git a/pkgs/by-name/mi/minecraftia/package.nix b/pkgs/by-name/mi/minecraftia/package.nix index 811b99c51045..9e4d4df5a96a 100644 --- a/pkgs/by-name/mi/minecraftia/package.nix +++ b/pkgs/by-name/mi/minecraftia/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://fontlibrary.org/en/font/minecraftia"; description = "Cool Minecraft font"; - license = licenses.cc-by-sa-30; - platforms = platforms.all; + license = lib.licenses.cc-by-sa-30; + platforms = lib.platforms.all; maintainers = with lib.maintainers; [ gepbird ]; }; } diff --git a/pkgs/by-name/mi/minesweep-rs/package.nix b/pkgs/by-name/mi/minesweep-rs/package.nix index 43dbd5d89b41..92e4f25ffe3c 100644 --- a/pkgs/by-name/mi/minesweep-rs/package.nix +++ b/pkgs/by-name/mi/minesweep-rs/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-HO0eO6Ip508AIALS50exP2btLd3jUhM+giHQpMdsAVA="; - meta = with lib; { + meta = { description = "Sweep some mines for fun, and probably not for profit"; homepage = "https://github.com/cpcloud/minesweep-rs"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "minesweep"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mi/mingetty/package.nix b/pkgs/by-name/mi/mingetty/package.nix index 261fcf6cbfff..a25990fdf646 100644 --- a/pkgs/by-name/mi/mingetty/package.nix +++ b/pkgs/by-name/mi/mingetty/package.nix @@ -23,9 +23,9 @@ stdenv.mkDerivation rec { mkdir -p $out/sbin $out/share/man/man8 ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/mingetty"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/minia/package.nix b/pkgs/by-name/mi/minia/package.nix index 33dfd798cad7..4d954e8659a9 100644 --- a/pkgs/by-name/mi/minia/package.nix +++ b/pkgs/by-name/mi/minia/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required (VERSION 3.1.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Short read genome assembler"; mainProgram = "minia"; homepage = "https://github.com/GATB/minia"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ jbedo ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ jbedo ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/mi/miniaudio/package.nix b/pkgs/by-name/mi/miniaudio/package.nix index 852418e7aeca..4d35736ddcc3 100644 --- a/pkgs/by-name/mi/miniaudio/package.nix +++ b/pkgs/by-name/mi/miniaudio/package.nix @@ -66,16 +66,16 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Single header audio playback and capture library written in C"; homepage = "https://github.com/mackron/miniaudio"; changelog = "https://github.com/mackron/miniaudio/blob/${finalAttrs.version}/CHANGES.md"; - license = with licenses; [ + license = with lib.licenses; [ unlicense # or mit0 ]; - maintainers = [ maintainers.jansol ]; + maintainers = [ lib.maintainers.jansol ]; pkgConfigModules = [ "miniaudio" ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/mi/minica/package.nix b/pkgs/by-name/mi/minica/package.nix index 594725a773cd..d72fae343633 100644 --- a/pkgs/by-name/mi/minica/package.nix +++ b/pkgs/by-name/mi/minica/package.nix @@ -22,7 +22,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Simple tool for generating self signed certificates"; mainProgram = "minica"; longDescription = '' @@ -33,7 +33,7 @@ buildGoModule rec { ''; homepage = "https://github.com/jsha/minica/"; changelog = "https://github.com/jsha/minica/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ m1cr0man ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ m1cr0man ]; }; } diff --git a/pkgs/by-name/mi/minicom/package.nix b/pkgs/by-name/mi/minicom/package.nix index 4eaa1a74b42d..49530f84a505 100644 --- a/pkgs/by-name/mi/minicom/package.nix +++ b/pkgs/by-name/mi/minicom/package.nix @@ -57,16 +57,16 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Modem control and terminal emulation program"; homepage = "https://salsa.debian.org/minicom-team/minicom"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' Minicom is a menu driven communications program. It emulates ANSI and VT102 terminals. It has a dialing directory and auto zmodem download. ''; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mi/minidlna/package.nix b/pkgs/by-name/mi/minidlna/package.nix index 7f481d20e4af..b0fde7c02c11 100644 --- a/pkgs/by-name/mi/minidlna/package.nix +++ b/pkgs/by-name/mi/minidlna/package.nix @@ -64,15 +64,15 @@ stdenv.mkDerivation { passthru.tests = { inherit (nixosTests) minidlna; }; - meta = with lib; { + meta = { description = "Media server software"; longDescription = '' MiniDLNA (aka ReadyDLNA) is server software with the aim of being fully compliant with DLNA/UPnP-AV clients. ''; homepage = "https://sourceforge.net/projects/minidlna/"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "minidlnad"; }; } diff --git a/pkgs/by-name/mi/minidsp/package.nix b/pkgs/by-name/mi/minidsp/package.nix index da0f1092b100..a1938e91be0f 100644 --- a/pkgs/by-name/mi/minidsp/package.nix +++ b/pkgs/by-name/mi/minidsp/package.nix @@ -25,14 +25,14 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; - meta = with lib; { + meta = { description = "Control interface for some MiniDSP products"; homepage = "https://github.com/mrene/minidsp-rs"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; maintainers = [ - maintainers.adamcstephens - maintainers.mrene + lib.maintainers.adamcstephens + lib.maintainers.mrene ]; }; } diff --git a/pkgs/by-name/mi/miniflux/package.nix b/pkgs/by-name/mi/miniflux/package.nix index 4e6870638aac..255ce0237210 100644 --- a/pkgs/by-name/mi/miniflux/package.nix +++ b/pkgs/by-name/mi/miniflux/package.nix @@ -40,12 +40,12 @@ buildGoModule (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Minimalist and opinionated feed reader"; changelog = "https://miniflux.app/releases/${finalAttrs.version}.html"; homepage = "https://miniflux.app/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rvolosatovs benpye emilylange diff --git a/pkgs/by-name/mi/minikube/package.nix b/pkgs/by-name/mi/minikube/package.nix index b28e5408bcae..35ba6f42aafb 100644 --- a/pkgs/by-name/mi/minikube/package.nix +++ b/pkgs/by-name/mi/minikube/package.nix @@ -69,12 +69,12 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { homepage = "https://minikube.sigs.k8s.io"; description = "Tool that makes it easy to run Kubernetes locally"; mainProgram = "minikube"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ebzzry vdemeester atkinschang diff --git a/pkgs/by-name/mi/minilibx/package.nix b/pkgs/by-name/mi/minilibx/package.nix index 01d50ffe3b59..f237ae7c38fa 100644 --- a/pkgs/by-name/mi/minilibx/package.nix +++ b/pkgs/by-name/mi/minilibx/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "Simple X-Window (X11R6) programming API in C"; homepage = "https://github.com/42Paris/minilibx-linux"; - license = licenses.bsd2; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mi/minimap2/package.nix b/pkgs/by-name/mi/minimap2/package.nix index 863f3be16dae..587229b2c9b9 100644 --- a/pkgs/by-name/mi/minimap2/package.nix +++ b/pkgs/by-name/mi/minimap2/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Versatile pairwise aligner for genomic and spliced nucleotide sequences"; longDescription = '' Minimap2 is a versatile sequence alignment program that aligns @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { ''; mainProgram = "minimap2"; homepage = "https://lh3.github.io/minimap2"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.arcadio ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.arcadio ]; }; } diff --git a/pkgs/by-name/mi/mininet/package.nix b/pkgs/by-name/mi/mininet/package.nix index bc9d921bfea3..9550417068e6 100644 --- a/pkgs/by-name/mi/mininet/package.nix +++ b/pkgs/by-name/mi/mininet/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "Emulator for rapid prototyping of Software Defined Networks"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; homepage = "https://github.com/mininet/mininet"; - maintainers = with maintainers; [ teto ]; + maintainers = with lib.maintainers; [ teto ]; mainProgram = "mnexec"; }; } diff --git a/pkgs/by-name/mi/minio-certgen/package.nix b/pkgs/by-name/mi/minio-certgen/package.nix index 7c115585ac32..42561140d330 100644 --- a/pkgs/by-name/mi/minio-certgen/package.nix +++ b/pkgs/by-name/mi/minio-certgen/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Simple Minio tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries"; downloadPage = "https://github.com/minio/certgen"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; mainProgram = "certgen"; }; diff --git a/pkgs/by-name/mi/minio-client/package.nix b/pkgs/by-name/mi/minio-client/package.nix index 108db1f79d19..9c6268cf9936 100644 --- a/pkgs/by-name/mi/minio-client/package.nix +++ b/pkgs/by-name/mi/minio-client/package.nix @@ -33,14 +33,14 @@ buildGoModule rec { passthru.tests.minio = nixosTests.minio; - meta = with lib; { + meta = { homepage = "https://github.com/minio/mc"; description = "Replacement for ls, cp, mkdir, diff and rsync commands for filesystems and object storage"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bachp ryan4yin ]; mainProgram = "mc"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/mi/miniplayer/package.nix b/pkgs/by-name/mi/miniplayer/package.nix index bf8a6228ca94..ee63811ca0fe 100644 --- a/pkgs/by-name/mi/miniplayer/package.nix +++ b/pkgs/by-name/mi/miniplayer/package.nix @@ -34,10 +34,10 @@ buildPythonApplication rec { # pythonImportsCheck is disabled because this package doesn't expose any modules. - meta = with lib; { + meta = { description = "Curses-based MPD client with basic functionality that can also display an album art"; homepage = "https://github.com/GuardKenzie/miniplayer"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mi/minipro/package.nix b/pkgs/by-name/mi/minipro/package.nix index da7a2774f83b..28c4be89ba5e 100644 --- a/pkgs/by-name/mi/minipro/package.nix +++ b/pkgs/by-name/mi/minipro/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://gitlab.com/DavidGriffith/minipro"; description = "Open source program for controlling the MiniPRO TL866xx series of chip programmers"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.bmwalters ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.bmwalters ]; mainProgram = "minipro"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mi/minisat/package.nix b/pkgs/by-name/mi/minisat/package.nix index 630e4b4d6e7f..2ef2dffa3256 100644 --- a/pkgs/by-name/mi/minisat/package.nix +++ b/pkgs/by-name/mi/minisat/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Compact and readable SAT solver"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; homepage = "http://minisat.se/"; }; }) diff --git a/pkgs/by-name/mi/miniscript/package.nix b/pkgs/by-name/mi/miniscript/package.nix index d1883339b341..9bac33efd4e0 100644 --- a/pkgs/by-name/mi/miniscript/package.nix +++ b/pkgs/by-name/mi/miniscript/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Compiler and inspector for the miniscript Bitcoin policy language"; longDescription = "Miniscript is a language for writing (a subset of) Bitcoin Scripts in a structured way, enabling analysis, composition, generic signing and more."; homepage = "https://bitcoin.sipa.be/miniscript/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ RaghavSood jb55 ]; diff --git a/pkgs/by-name/mi/minisign/package.nix b/pkgs/by-name/mi/minisign/package.nix index ebecb13ca6be..aee10433cf8f 100644 --- a/pkgs/by-name/mi/minisign/package.nix +++ b/pkgs/by-name/mi/minisign/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libsodium ]; - meta = with lib; { + meta = { description = "Simple tool for signing files and verifying signatures"; longDescription = '' minisign uses public key cryptography to help facilitate secure (but not @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { is similar to and compatible with OpenBSD's signify. ''; homepage = "https://jedisct1.github.io/minisign/"; - license = licenses.isc; - maintainers = with maintainers; [ joachifm ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ joachifm ]; + platforms = lib.platforms.unix; mainProgram = "minisign"; }; } diff --git a/pkgs/by-name/mi/minissdpd/package.nix b/pkgs/by-name/mi/minissdpd/package.nix index 9b11452bdc81..f356a6ebe867 100644 --- a/pkgs/by-name/mi/minissdpd/package.nix +++ b/pkgs/by-name/mi/minissdpd/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Small daemon to speed up UPnP device discoveries"; longDescription = '' MiniSSDPd receives NOTIFY packets and stores (caches) that information @@ -41,8 +41,8 @@ stdenv.mkDerivation rec { ''; homepage = "http://miniupnp.free.fr/minissdpd.html"; downloadPage = "http://miniupnp.free.fr/files/"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; mainProgram = "minissdpd"; }; } diff --git a/pkgs/by-name/mi/ministat/package.nix b/pkgs/by-name/mi/ministat/package.nix index 1933def73d62..c416e33459b8 100644 --- a/pkgs/by-name/mi/ministat/package.nix +++ b/pkgs/by-name/mi/ministat/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { cp ministat.1 $out/share/man/man1/ ''; - meta = with lib; { + meta = { description = "Simple tool for statistical comparison of data sets"; homepage = "https://git.decadent.org.uk/gitweb/?p=ministat.git"; - license = licenses.beerware; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.all; + license = lib.licenses.beerware; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.all; mainProgram = "ministat"; }; } diff --git a/pkgs/by-name/mi/minivmac/package.nix b/pkgs/by-name/mi/minivmac/package.nix index a40cb4731e7a..0253073a3511 100644 --- a/pkgs/by-name/mi/minivmac/package.nix +++ b/pkgs/by-name/mi/minivmac/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { patchelf --add-rpath "${lib.getLib alsa-lib}/lib" $out/bin/minivmac ''; - meta = with lib; { + meta = { description = "Miniature early Macintosh emulator (fork from erichelgeson)"; homepage = "https://github.com/erichelgeson/minivmac"; - license = licenses.gpl2; - maintainers = [ maintainers.flokli ]; - platforms = platforms.linux; - sourceProvenance = [ sourceTypes.fromSource ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.flokli ]; + platforms = lib.platforms.linux; + sourceProvenance = [ lib.sourceTypes.fromSource ]; }; } diff --git a/pkgs/by-name/mi/minixml/package.nix b/pkgs/by-name/mi/minixml/package.nix index d978973e7e93..aba92f7242e4 100644 --- a/pkgs/by-name/mi/minixml/package.nix +++ b/pkgs/by-name/mi/minixml/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Small XML library"; homepage = "https://www.msweet.org/mxml/"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mi/miniz/package.nix b/pkgs/by-name/mi/miniz/package.nix index d1af52d8a2d4..667dee71c116 100644 --- a/pkgs/by-name/mi/miniz/package.nix +++ b/pkgs/by-name/mi/miniz/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { versionCheck = true; }; - meta = with lib; { + meta = { description = "Single C source file zlib-replacement library"; homepage = "https://github.com/richgel999/miniz"; - license = licenses.mit; - maintainers = with maintainers; [ astro ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ astro ]; + platforms = lib.platforms.unix; pkgConfigModules = [ "miniz" ]; }; }) diff --git a/pkgs/by-name/mi/minizip-ng/package.nix b/pkgs/by-name/mi/minizip-ng/package.nix index 9f4afd5d87a7..3fe7c9e34f00 100644 --- a/pkgs/by-name/mi/minizip-ng/package.nix +++ b/pkgs/by-name/mi/minizip-ng/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation (finalAttrs: { nativeCheckInputs = [ gtest ]; enableParallelChecking = false; - meta = with lib; { + meta = { description = "Fork of the popular zip manipulation library found in the zlib distribution"; homepage = "https://github.com/zlib-ng/minizip-ng"; - license = licenses.zlib; - maintainers = with maintainers; [ + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ ris ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/mi/mint-artwork/package.nix b/pkgs/by-name/mi/mint-artwork/package.nix index c35ca278e83f..dbe95d3e06ae 100644 --- a/pkgs/by-name/mi/mint-artwork/package.nix +++ b/pkgs/by-name/mi/mint-artwork/package.nix @@ -43,14 +43,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-artwork"; description = "Artwork for the cinnamon desktop"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-40 ]; # from debian/copyright - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/mi/mint-cursor-themes/package.nix b/pkgs/by-name/mi/mint-cursor-themes/package.nix index 66fd61fef4ae..f85f720bcfc6 100644 --- a/pkgs/by-name/mi/mint-cursor-themes/package.nix +++ b/pkgs/by-name/mi/mint-cursor-themes/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-cursor-themes/"; description = "Linux Mint cursor themes"; - license = licenses.gpl3Plus; - teams = [ teams.cinnamon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.cinnamon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/mint-l-icons/package.nix b/pkgs/by-name/mi/mint-l-icons/package.nix index e3ee0856a252..a77866067328 100644 --- a/pkgs/by-name/mi/mint-l-icons/package.nix +++ b/pkgs/by-name/mi/mint-l-icons/package.nix @@ -47,11 +47,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-l-icons"; description = "Mint-L icon theme"; - license = licenses.gpl3Plus; # from debian/copyright - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Plus; # from debian/copyright + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/mi/mint-l-theme/package.nix b/pkgs/by-name/mi/mint-l-theme/package.nix index 01476cf1d229..b9558f54b14e 100644 --- a/pkgs/by-name/mi/mint-l-theme/package.nix +++ b/pkgs/by-name/mi/mint-l-theme/package.nix @@ -37,11 +37,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-l-theme"; description = "Mint-L theme for the Cinnamon desktop"; - license = licenses.gpl3Plus; # from debian/copyright - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Plus; # from debian/copyright + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/mi/mint-themes/package.nix b/pkgs/by-name/mi/mint-themes/package.nix index 97acbb056ebd..58e03c7a89af 100644 --- a/pkgs/by-name/mi/mint-themes/package.nix +++ b/pkgs/by-name/mi/mint-themes/package.nix @@ -33,11 +33,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-themes"; description = "Mint-X and Mint-Y themes for the cinnamon desktop"; - license = licenses.gpl3; # from debian/copyright - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3; # from debian/copyright + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/mi/mint-x-icons/package.nix b/pkgs/by-name/mi/mint-x-icons/package.nix index 3e74060e05eb..3bd7ee5fdd7b 100644 --- a/pkgs/by-name/mi/mint-x-icons/package.nix +++ b/pkgs/by-name/mi/mint-x-icons/package.nix @@ -48,11 +48,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-x-icons"; description = "Mint/metal theme based on mintified versions of Clearlooks Revamp, Elementary and Faenza"; - license = licenses.gpl3Plus; # from debian/copyright - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Plus; # from debian/copyright + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/mi/mint-y-icons/package.nix b/pkgs/by-name/mi/mint-y-icons/package.nix index b49d865a9df4..d566109c84a1 100644 --- a/pkgs/by-name/mi/mint-y-icons/package.nix +++ b/pkgs/by-name/mi/mint-y-icons/package.nix @@ -44,11 +44,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-y-icons"; description = "Mint-Y icon theme"; - license = licenses.gpl3; # from debian/copyright - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3; # from debian/copyright + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/mi/miraclecast/package.nix b/pkgs/by-name/mi/miraclecast/package.nix index c255ae5ed211..a64a7a85fe59 100644 --- a/pkgs/by-name/mi/miraclecast/package.nix +++ b/pkgs/by-name/mi/miraclecast/package.nix @@ -80,11 +80,11 @@ stdenv.mkDerivation { version = "Miraclecast 1"; }; - meta = with lib; { + meta = { description = "Connect external monitors to your system via Wifi-Display specification also known as Miracast"; homepage = "https://github.com/albfan/miraclecast"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.wizardlink ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.wizardlink ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/miracode/package.nix b/pkgs/by-name/mi/miracode/package.nix index 0bc5cb3bd05d..30acf8dcdecc 100644 --- a/pkgs/by-name/mi/miracode/package.nix +++ b/pkgs/by-name/mi/miracode/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Sharp, readable, vector-y version of Monocraft"; homepage = "https://github.com/IdreesInc/Miracode"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ coca ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ coca ]; }; } diff --git a/pkgs/by-name/mi/mirakurun/package.nix b/pkgs/by-name/mi/mirakurun/package.nix index e47e417bcd3e..825ff812f01c 100644 --- a/pkgs/by-name/mi/mirakurun/package.nix +++ b/pkgs/by-name/mi/mirakurun/package.nix @@ -71,9 +71,9 @@ buildNpmPackage rec { popd ''; - meta = with lib; { + meta = { description = "Resource manager for TV tuners"; - license = licenses.asl20; - maintainers = with maintainers; [ midchildan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ midchildan ]; }; } diff --git a/pkgs/by-name/mi/miranda/package.nix b/pkgs/by-name/mi/miranda/package.nix index be51e320f226..13c29cf1160e 100644 --- a/pkgs/by-name/mi/miranda/package.nix +++ b/pkgs/by-name/mi/miranda/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace strip '${stdenv.cc.targetPrefix}strip' ''; - meta = with lib; { + meta = { description = "Compiler for Miranda -- a pure, non-strict, polymorphic, higher order functional programming language"; homepage = "https://www.cs.kent.ac.uk/people/staff/dat/miranda/"; - license = licenses.bsd2; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; mainProgram = "mira"; }; } diff --git a/pkgs/by-name/mi/miredo/package.nix b/pkgs/by-name/mi/miredo/package.nix index f07457e82bac..81644d34d797 100644 --- a/pkgs/by-name/mi/miredo/package.nix +++ b/pkgs/by-name/mi/miredo/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { rm -rf $out/lib/systemd $out/var $out/etc/miredo/miredo.conf ''; - meta = with lib; { + meta = { description = "Teredo IPv6 Tunneling Daemon"; homepage = "https://www.remlab.net/miredo/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mi/misc-gitology/package.nix b/pkgs/by-name/mi/misc-gitology/package.nix index a8d633d4874f..2b6c9f735544 100644 --- a/pkgs/by-name/mi/misc-gitology/package.nix +++ b/pkgs/by-name/mi/misc-gitology/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Assortment of scripts around Git"; homepage = "https://github.com/da-x/misc-gitology"; - license = [ licenses.bsd2 ]; - maintainers = [ maintainers._9999years ]; + license = [ lib.licenses.bsd2 ]; + maintainers = [ lib.maintainers._9999years ]; }; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/by-name/mi/miscfiles/package.nix b/pkgs/by-name/mi/miscfiles/package.nix index 21d538cb0b79..5d585e3a2840 100644 --- a/pkgs/by-name/mi/miscfiles/package.nix +++ b/pkgs/by-name/mi/miscfiles/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "005588vfrwx8ghsdv9p7zczj9lbc9a3r4m5aphcaqv8gif4siaka"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/miscfiles/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "Collection of files not of crucial importance for sysadmins"; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/mi/missidentify/package.nix b/pkgs/by-name/mi/missidentify/package.nix index a99950d39541..1349d36d3ff6 100644 --- a/pkgs/by-name/mi/missidentify/package.nix +++ b/pkgs/by-name/mi/missidentify/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { "--build=arm" ]; - meta = with lib; { + meta = { description = "Find Win32 applications"; longDescription = '' Miss Identify is a program to find Win32 applications. In @@ -52,8 +52,8 @@ stdenv.mkDerivation (finalAttrs: { ''; mainProgram = "missidentify"; homepage = "https://missidentify.sourceforge.net"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Only; }; }) diff --git a/pkgs/by-name/mi/mission-planner/package.nix b/pkgs/by-name/mi/mission-planner/package.nix index 793193e76b79..fcc76a92180a 100644 --- a/pkgs/by-name/mi/mission-planner/package.nix +++ b/pkgs/by-name/mi/mission-planner/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "ArduPilot ground station"; mainProgram = "mission-planner"; longDescription = '' @@ -81,8 +81,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://ardupilot.org/planner/"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wucke13 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wucke13 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mi/mitama-cpp-result/package.nix b/pkgs/by-name/mi/mitama-cpp-result/package.nix index 0e59ad25ce4f..2a921d645f37 100644 --- a/pkgs/by-name/mi/mitama-cpp-result/package.nix +++ b/pkgs/by-name/mi/mitama-cpp-result/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/LoliGothick/mitama-cpp-result"; description = "Library that provides `result` and `maybe` and monadic functions for them"; longDescription = '' @@ -29,9 +29,9 @@ stdenv.mkDerivation (finalAttrs: { mitama-cpp-result provides `result`, `maybe`, and associated monadic functions (like Result and Option in Programming Language Rust). ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) # TODO [ ken-matsui ]: tests diff --git a/pkgs/by-name/mi/mitm-cache/package.nix b/pkgs/by-name/mi/mitm-cache/package.nix index 8a7c05252fad..69c9a65211d4 100644 --- a/pkgs/by-name/mi/mitm-cache/package.nix +++ b/pkgs/by-name/mi/mitm-cache/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { passthru.fetch = callPackage ./fetch.nix { }; - meta = with lib; { + meta = { description = "MITM caching proxy for use in nixpkgs"; homepage = "https://github.com/chayleaf/mitm-cache#readme"; - license = licenses.mit; - maintainers = with maintainers; [ chayleaf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chayleaf ]; mainProgram = "mitm-cache"; }; } diff --git a/pkgs/by-name/mi/mitscheme/package.nix b/pkgs/by-name/mi/mitscheme/package.nix index 486cf04e2e26..fb14fd822560 100644 --- a/pkgs/by-name/mi/mitscheme/package.nix +++ b/pkgs/by-name/mi/mitscheme/package.nix @@ -115,7 +115,7 @@ stdenv.mkDerivation { # XXX: The `check' target doesn't exist. doCheck = false; - meta = with lib; { + meta = { description = "MIT/GNU Scheme, a native code Scheme compiler"; longDescription = '' @@ -128,12 +128,12 @@ stdenv.mkDerivation { homepage = "https://www.gnu.org/software/mit-scheme/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; # Build fails on Cygwin and Darwin: # . - platforms = platforms.gnu ++ platforms.linux ++ platforms.freebsd; + platforms = lib.platforms.gnu ++ lib.platforms.linux ++ lib.platforms.freebsd; }; } diff --git a/pkgs/by-name/mi/mix2nix/package.nix b/pkgs/by-name/mi/mix2nix/package.nix index f3be5eedc4bc..450a1c62bc4b 100644 --- a/pkgs/by-name/mi/mix2nix/package.nix +++ b/pkgs/by-name/mi/mix2nix/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { buildPhase = "mix escript.build"; installPhase = "install -Dt $out/bin mix2nix"; - meta = with lib; { + meta = { description = "Generate nix expressions from mix.lock file"; mainProgram = "mix2nix"; - license = licenses.mit; - maintainers = with maintainers; [ ydlr ]; - teams = [ teams.beam ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ydlr ]; + teams = [ lib.teams.beam ]; }; } diff --git a/pkgs/by-name/mj/mjpegtools/package.nix b/pkgs/by-name/mj/mjpegtools/package.nix index bfd9320ed020..ee5c37e7020f 100644 --- a/pkgs/by-name/mj/mjpegtools/package.nix +++ b/pkgs/by-name/mj/mjpegtools/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { "lib" ]; - meta = with lib; { + meta = { description = "Suite of programs for processing MPEG or MJPEG video"; homepage = "http://mjpeg.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mj/mjpg-streamer/package.nix b/pkgs/by-name/mj/mjpg-streamer/package.nix index 34f28d7bbaf0..4eee1013c963 100644 --- a/pkgs/by-name/mj/mjpg-streamer/package.nix +++ b/pkgs/by-name/mj/mjpg-streamer/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib/mjpg-streamer" $out/bin/mjpg_streamer ''; - meta = with lib; { + meta = { homepage = "https://github.com/jacksonliam/mjpg-streamer"; description = "Takes JPGs from Linux-UVC compatible webcams, filesystem or other input plugins and streams them as M-JPEG via HTTP to webbrowsers, VLC and other software"; - platforms = platforms.linux; - license = licenses.gpl2; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; maintainers = [ ]; mainProgram = "mjpg_streamer"; }; diff --git a/pkgs/by-name/mk/mkbootimage/package.nix b/pkgs/by-name/mk/mkbootimage/package.nix index c990d4a28a6b..477497d147ff 100644 --- a/pkgs/by-name/mk/mkbootimage/package.nix +++ b/pkgs/by-name/mk/mkbootimage/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { hardeningDisable = [ "fortify" ]; - meta = with lib; { + meta = { description = "Open source replacement of the Xilinx bootgen application"; homepage = "https://github.com/antmicro/zynq-mkbootimage"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = [ maintainers.fsagbuya ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.fsagbuya ]; mainProgram = "mkbootimage"; }; }) diff --git a/pkgs/by-name/mk/mkcert/package.nix b/pkgs/by-name/mk/mkcert/package.nix index 0252a7d758d8..78fd737ef2e1 100644 --- a/pkgs/by-name/mk/mkcert/package.nix +++ b/pkgs/by-name/mk/mkcert/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X main.Version=v${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/FiloSottile/mkcert"; description = "Simple tool for making locally-trusted development certificates"; mainProgram = "mkcert"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mk/mkcue/package.nix b/pkgs/by-name/mk/mkcue/package.nix index d0e2baacf519..daba3ee1f99c 100644 --- a/pkgs/by-name/mk/mkcue/package.nix +++ b/pkgs/by-name/mk/mkcue/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { preInstall = "mkdir -pv $out/bin"; postInstall = "chmod -v +w $out/bin/mkcue"; - meta = with lib; { + meta = { description = "Generates CUE sheets from a CD TOC"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "mkcue"; }; } diff --git a/pkgs/by-name/mk/mkinitcpio-nfs-utils/package.nix b/pkgs/by-name/mk/mkinitcpio-nfs-utils/package.nix index 2dceca860d4f..209bc1093f9d 100644 --- a/pkgs/by-name/mk/mkinitcpio-nfs-utils/package.nix +++ b/pkgs/by-name/mk/mkinitcpio-nfs-utils/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { rm -rf $out/usr ''; - meta = with lib; { + meta = { homepage = "https://archlinux.org/"; description = "ipconfig and nfsmount tools for root on NFS, ported from klibc"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mk/mkl/package.nix b/pkgs/by-name/mk/mkl/package.nix index 5b80e16e634f..f9e1dda4e7ab 100644 --- a/pkgs/by-name/mk/mkl/package.nix +++ b/pkgs/by-name/mk/mkl/package.nix @@ -197,7 +197,7 @@ stdenvNoCC.mkDerivation ( }; }; - meta = with lib; { + meta = { description = "Intel OneAPI Math Kernel Library"; longDescription = '' Intel OneAPI Math Kernel Library (Intel oneMKL) optimizes code with minimal @@ -206,8 +206,8 @@ stdenvNoCC.mkDerivation ( threading models. ''; homepage = "https://software.intel.com/en-us/mkl"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.issl; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.issl; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/mk/mkosi/package.nix b/pkgs/by-name/mk/mkosi/package.nix index 10108277497e..d200ad81eaad 100644 --- a/pkgs/by-name/mk/mkosi/package.nix +++ b/pkgs/by-name/mk/mkosi/package.nix @@ -120,16 +120,16 @@ python3Packages.buildPythonApplication rec { mv mkosi/resources/man/mkosi.1 $out/share/man/man1/ ''; - meta = with lib; { + meta = { description = "Build legacy-free OS images"; homepage = "https://github.com/systemd/mkosi"; changelog = "https://github.com/systemd/mkosi/releases/tag/v${version}"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; mainProgram = "mkosi"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ malt3 msanft ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mk/mkp224o/package.nix b/pkgs/by-name/mk/mkp224o/package.nix index 9d347181265f..e9e32193ed74 100644 --- a/pkgs/by-name/mk/mkp224o/package.nix +++ b/pkgs/by-name/mk/mkp224o/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation rec { '' ) variants; - meta = with lib; { + meta = { description = "Vanity address generator for tor onion v3 (ed25519) hidden services"; homepage = "http://cathug2kyi4ilneggumrenayhuhsvrgn6qv2y47bgeet42iivkpynqad.onion/"; - license = licenses.cc0; - platforms = platforms.unix; + license = lib.licenses.cc0; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mk/mktemp/package.nix b/pkgs/by-name/mk/mktemp/package.nix index 4b644672dd8e..44ed887af8be 100644 --- a/pkgs/by-name/mk/mktemp/package.nix +++ b/pkgs/by-name/mk/mktemp/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Simple tool to make temporary file handling in shells scripts safe and simple"; mainProgram = "mktemp"; homepage = "https://www.mktemp.org"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mk/mktorrent/package.nix b/pkgs/by-name/mk/mktorrent/package.nix index 451989ddf65b..d514c56c6a56 100644 --- a/pkgs/by-name/mk/mktorrent/package.nix +++ b/pkgs/by-name/mk/mktorrent/package.nix @@ -28,15 +28,15 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Command line utility to create BitTorrent metainfo files"; homepage = "https://github.com/pobrn/mktorrent/wiki"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Profpatsch winter ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "mktorrent"; }; } diff --git a/pkgs/by-name/ml/mlarchive2maildir/package.nix b/pkgs/by-name/ml/mlarchive2maildir/package.nix index 7089c79fdf68..9dd6afe4d25f 100644 --- a/pkgs/by-name/ml/mlarchive2maildir/package.nix +++ b/pkgs/by-name/ml/mlarchive2maildir/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "mlarchive2maildir" ]; - meta = with lib; { + meta = { homepage = "https://github.com/flokli/mlarchive2maildir"; description = "Imports mail from (pipermail) archives into a maildir"; mainProgram = "mlarchive2maildir"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/ml/mlc/package.nix b/pkgs/by-name/ml/mlc/package.nix index ee0bf347bac6..c6b8a3852dc2 100644 --- a/pkgs/by-name/ml/mlc/package.nix +++ b/pkgs/by-name/ml/mlc/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/mlc ''; - meta = with lib; { + meta = { homepage = "https://software.intel.com/content/www/us/en/develop/articles/intelr-memory-latency-checker.html"; description = "Intel Memory Latency Checker"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ basvandijk ]; - platforms = with platforms; linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ basvandijk ]; + platforms = with lib.platforms; linux; mainProgram = "mlc"; }; } diff --git a/pkgs/by-name/ml/mle/package.nix b/pkgs/by-name/ml/mle/package.nix index c11fc690e55b..203ef415a42c 100644 --- a/pkgs/by-name/ml/mle/package.nix +++ b/pkgs/by-name/ml/mle/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { installManPage mle.1 ''; - meta = with lib; { + meta = { description = "Small, flexible, terminal-based text editor"; homepage = "https://github.com/adsr/mle"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ adsr ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ adsr ]; mainProgram = "mle"; }; } diff --git a/pkgs/by-name/ml/mlib/package.nix b/pkgs/by-name/ml/mlib/package.nix index 73e3fb5e6601..92873bb77f17 100644 --- a/pkgs/by-name/ml/mlib/package.nix +++ b/pkgs/by-name/ml/mlib/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Library of generic and type safe containers in pure C language"; longDescription = '' M*LIB (M star lib) is a C library enabling to define and use generic and @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/P-p-H-d/mlib"; changelog = "https://github.com/P-p-H-d/mlib/releases/tag/${src.rev}"; - license = licenses.bsd2; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ml/mlmmj/package.nix b/pkgs/by-name/ml/mlmmj/package.nix index 26e5dd2f1071..6828fe929cdd 100644 --- a/pkgs/by-name/ml/mlmmj/package.nix +++ b/pkgs/by-name/ml/mlmmj/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { install -vDm 644 -t $out/share/doc/mlmmj/ $docfiles ''; - meta = with lib; { + meta = { homepage = "http://mlmmj.org"; description = "Mailing List Management Made Joyful"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ml/mloader/package.nix b/pkgs/by-name/ml/mloader/package.nix index 9e61c8f8134d..ef04df0ce20c 100644 --- a/pkgs/by-name/ml/mloader/package.nix +++ b/pkgs/by-name/ml/mloader/package.nix @@ -29,10 +29,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "mloader" ]; - meta = with lib; { + meta = { description = "Command-line tool to download manga from mangaplus"; homepage = "https://github.com/hurlenko/mloader"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "mloader"; }; diff --git a/pkgs/by-name/ml/mlt/package.nix b/pkgs/by-name/ml/mlt/package.nix index 718ef3ef656c..8d641d776061 100644 --- a/pkgs/by-name/ml/mlt/package.nix +++ b/pkgs/by-name/ml/mlt/package.nix @@ -155,14 +155,14 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Open source multimedia framework, designed for television broadcasting"; homepage = "https://www.mltframework.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus gpl2Plus ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ml/mlvwm/package.nix b/pkgs/by-name/ml/mlvwm/package.nix index 8c50cacc9c81..f1053ed1e2f2 100644 --- a/pkgs/by-name/ml/mlvwm/package.nix +++ b/pkgs/by-name/ml/mlvwm/package.nix @@ -51,10 +51,10 @@ stdenv.mkDerivation rec { installManPage man/mlvwm.1 ''; - meta = with lib; { + meta = { homepage = "https://github.com/morgant/mlvwm"; description = "Macintosh-like Virtual Window Manager"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' MLVWM or Macintosh-Like Virtual Window Manager, is an FVWM descendant created by Takashi Hasegawa @@ -63,8 +63,8 @@ stdenv.mkDerivation rec { As its name implies, it attempts to emulate the pre-Mac OS X Macintosh look and feel in its layout and window design. ''; - platforms = platforms.linux; - maintainers = [ maintainers.j0hax ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.j0hax ]; mainProgram = "mlvwm"; }; } diff --git a/pkgs/by-name/ml/mlxbf-bootimages/package.nix b/pkgs/by-name/ml/mlxbf-bootimages/package.nix index d95122cef9e9..4c4c5203c12d 100644 --- a/pkgs/by-name/ml/mlxbf-bootimages/package.nix +++ b/pkgs/by-name/ml/mlxbf-bootimages/package.nix @@ -26,16 +26,16 @@ stdenv.mkDerivation rec { find lib -type f -exec install -D {} $out/{} \; ''; - meta = with lib; { + meta = { description = "BlueField boot images"; homepage = "https://github.com/Mellanox/bootimages"; # It is unclear if the bootimages themselves are Open Source software. They # never explicitly say they are. They contain Open Source software licensed # under bsd2, bsd2Patent, bsd3. However, it is probably safer to assume # they are unfree. See https://github.com/Mellanox/bootimages/issues/3 - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nikstur thillux ]; diff --git a/pkgs/by-name/mm/mm-common/package.nix b/pkgs/by-name/mm/mm-common/package.nix index 608d090485f8..895044793b9c 100644 --- a/pkgs/by-name/mm/mm-common/package.nix +++ b/pkgs/by-name/mm/mm-common/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Common build files of GLib/GTK C++ bindings"; longDescription = '' The mm-common module provides the build infrastructure and utilities @@ -49,8 +49,8 @@ stdenv.mkDerivation rec { building tarball releases, unless configured to use maintainer-mode. ''; homepage = "https://www.gtkmm.org"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mm/mm/package.nix b/pkgs/by-name/mm/mm/package.nix index 95e4d00a2e56..8a52bd0e7cee 100644 --- a/pkgs/by-name/mm/mm/package.nix +++ b/pkgs/by-name/mm/mm/package.nix @@ -16,11 +16,11 @@ buildGoModule { vendorHash = "sha256-zJJ9PzQShv2iRNyCg1XVscbwjV9ZtMIojJDtXXm3rVM="; - meta = with lib; { + meta = { description = "File system based matrix client"; mainProgram = "mm"; homepage = "https://git.lost.host/meutraa/mm"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mm/mmake/package.nix b/pkgs/by-name/mm/mmake/package.nix index c882a4d027dd..38cf41700fd5 100644 --- a/pkgs/by-name/mm/mmake/package.nix +++ b/pkgs/by-name/mm/mmake/package.nix @@ -25,7 +25,7 @@ buildGoModule rec { # Almost all tests require non-local networking, trying to resolve githubusercontent.com. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/tj/mmake"; description = "Small program which wraps make to provide additional functionality"; longDescription = '' @@ -34,8 +34,8 @@ buildGoModule rec { includes, and eventually more. It otherwise acts as a pass-through to standard make. ''; - license = licenses.mit; - maintainers = [ maintainers.gabesoft ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.gabesoft ]; mainProgram = "mmake"; }; } diff --git a/pkgs/by-name/mm/mmc-utils/package.nix b/pkgs/by-name/mm/mmc-utils/package.nix index 2312f7ecca8e..fe5c5be58285 100644 --- a/pkgs/by-name/mm/mmc-utils/package.nix +++ b/pkgs/by-name/mm/mmc-utils/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Configure MMC storage devices from userspace"; mainProgram = "mmc"; homepage = "https://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/mm/mmdoc/package.nix b/pkgs/by-name/mm/mmdoc/package.nix index ca10843f3095..d28f84d10f02 100644 --- a/pkgs/by-name/mm/mmdoc/package.nix +++ b/pkgs/by-name/mm/mmdoc/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { libzip ]; - meta = with lib; { + meta = { description = "Minimal Markdown Documentation"; mainProgram = "mmdoc"; homepage = "https://github.com/ryantm/mmdoc"; - license = licenses.cc0; - maintainers = with maintainers; [ ryantm ]; - platforms = platforms.unix; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ ryantm ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mm/mmixware/package.nix b/pkgs/by-name/mm/mmixware/package.nix index 93f7168c0f20..b70467b2b5c1 100644 --- a/pkgs/by-name/mm/mmixware/package.nix +++ b/pkgs/by-name/mm/mmixware/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "MMIX simulator and assembler"; homepage = "https://www-cs-faculty.stanford.edu/~knuth/mmix-news.html"; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; - license = licenses.publicDomain; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/mm/mmj2/package.nix b/pkgs/by-name/mm/mmj2/package.nix index 90bffe0b6916..c9d760c6757b 100644 --- a/pkgs/by-name/mm/mmj2/package.nix +++ b/pkgs/by-name/mm/mmj2/package.nix @@ -43,7 +43,7 @@ maven.buildMavenPackage { runHook postInstall ''; - meta = with lib; { + meta = { description = "GUI Proof Assistant for the Metamath project"; longDescription = '' mmj2 is a proof assistant for the Metamath language. Metamath is a @@ -52,9 +52,9 @@ maven.buildMavenPackage { and grammatical/syntax analysis. ''; homepage = "https://github.com/digama0/mmj2"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ io12 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ io12 ]; + platforms = lib.platforms.linux; mainProgram = "mmj2"; }; } diff --git a/pkgs/by-name/mm/mmtf-cpp/package.nix b/pkgs/by-name/mm/mmtf-cpp/package.nix index 80e30d7438a9..2bac5c167796 100644 --- a/pkgs/by-name/mm/mmtf-cpp/package.nix +++ b/pkgs/by-name/mm/mmtf-cpp/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail msgpackc msgpack-cxx ''; - meta = with lib; { + meta = { description = "Library of exchange-correlation functionals with arbitrary-order derivatives"; homepage = "https://github.com/rcsb/mmtf-cpp"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheepforce ]; }; }) diff --git a/pkgs/by-name/mm/mmv-go/package.nix b/pkgs/by-name/mm/mmv-go/package.nix index fdc05fdbd68c..37b30dff9046 100644 --- a/pkgs/by-name/mm/mmv-go/package.nix +++ b/pkgs/by-name/mm/mmv-go/package.nix @@ -23,10 +23,10 @@ buildGoModule rec { "-X main.revision=${src.rev}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/itchyny/mmv"; description = "Rename multiple files using your $EDITOR"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "mmv"; }; diff --git a/pkgs/by-name/mn/mnamer/package.nix b/pkgs/by-name/mn/mnamer/package.nix index 6935fbf5d1de..5facfc460980 100644 --- a/pkgs/by-name/mn/mnamer/package.nix +++ b/pkgs/by-name/mn/mnamer/package.nix @@ -46,11 +46,11 @@ python3Packages.buildPythonApplication rec { "test_utils.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jkwill87/mnamer"; description = "Intelligent and highly configurable media organization utility"; mainProgram = "mnamer"; - license = licenses.mit; - maintainers = with maintainers; [ urlordjames ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urlordjames ]; }; } diff --git a/pkgs/by-name/mn/mnc/package.nix b/pkgs/by-name/mn/mnc/package.nix index 8186682ad96a..f0c1a5028326 100644 --- a/pkgs/by-name/mn/mnc/package.nix +++ b/pkgs/by-name/mn/mnc/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { sha256 = "sha256-eCj7wmHxPF2j2x4yHKN7TE122TCv1++azgdoQArabBM="; }; - meta = with lib; { + meta = { description = "Opens the user's crontab and echos the time when the next cronjob will be ran"; homepage = "https://git.sr.ht/~anjan/mnc"; - license = licenses.unlicense; - platforms = platforms.linux; - maintainers = with maintainers; [ wentam ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wentam ]; mainProgram = "mnc"; }; } diff --git a/pkgs/by-name/mn/mnemonicode/package.nix b/pkgs/by-name/mn/mnemonicode/package.nix index bf8859933505..8fae8208c6fb 100644 --- a/pkgs/by-name/mn/mnemonicode/package.nix +++ b/pkgs/by-name/mn/mnemonicode/package.nix @@ -18,16 +18,16 @@ stdenv.mkDerivation (finalAttrs: { mv mnencode $out/bin mv mndecode $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/singpolyma/mnemonicode"; description = '' Routines which implement a method for encoding binary data into a sequence of words which can be spoken over the phone, for example, and converted back to data on the other side. ''; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ kirillrdy ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kirillrdy ]; mainProgram = "mnencode"; }; }) diff --git a/pkgs/by-name/mn/mnist/package.nix b/pkgs/by-name/mn/mnist/package.nix index e57c151b49d5..4cb49e891fe7 100644 --- a/pkgs/by-name/mn/mnist/package.nix +++ b/pkgs/by-name/mn/mnist/package.nix @@ -34,7 +34,7 @@ stdenvNoCC.mkDerivation { ln -s "${srcs.test-labels}" "$out/${srcs.test-labels.name}" ''; dontUnpack = true; - meta = with lib; { + meta = { description = "Large database of handwritten digits"; longDescription = '' The MNIST database (Modified National Institute of Standards and @@ -42,8 +42,8 @@ stdenvNoCC.mkDerivation { commonly used for training various image processing systems. ''; homepage = "http://yann.lecun.com/exdb/mnist/index.html"; - license = licenses.cc-by-sa-30; - platforms = platforms.all; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.cc-by-sa-30; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/by-name/mn/mno16/package.nix b/pkgs/by-name/mn/mno16/package.nix index c112f234e32f..c703134295ca 100644 --- a/pkgs/by-name/mn/mno16/package.nix +++ b/pkgs/by-name/mn/mno16/package.nix @@ -19,9 +19,9 @@ stdenvNoCC.mkDerivation rec { cp fonts/*.ttf $out/share/fonts/truetype/ ''; - meta = with lib; { + meta = { description = "Minimalist monospaced font"; homepage = "https://sev.dev/fonts/mno16"; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/mo/mo/package.nix b/pkgs/by-name/mo/mo/package.nix index beeb1f994bbd..cd8d1c003d2a 100644 --- a/pkgs/by-name/mo/mo/package.nix +++ b/pkgs/by-name/mo/mo/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Moustache templates for Bash"; homepage = "https://github.com/tests-always-included/mo"; - license = licenses.mit; - maintainers = with maintainers; [ sheepforce ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sheepforce ]; }; } diff --git a/pkgs/by-name/mo/mob/package.nix b/pkgs/by-name/mo/mob/package.nix index cef344cd13dd..fb86b4e7db9d 100644 --- a/pkgs/by-name/mo/mob/package.nix +++ b/pkgs/by-name/mo/mob/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { --set MOB_VOICE_COMMAND "${lib.getBin espeak-ng}/bin/espeak" ''; - meta = with lib; { + meta = { description = "Tool for smooth git handover"; mainProgram = "mob"; homepage = "https://github.com/remotemobprogramming/mob"; - license = licenses.mit; - maintainers = with maintainers; [ ericdallo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ericdallo ]; }; } diff --git a/pkgs/by-name/mo/mobilecoin-wallet/package.nix b/pkgs/by-name/mo/mobilecoin-wallet/package.nix index c6c972a0e78d..59cfed619faa 100644 --- a/pkgs/by-name/mo/mobilecoin-wallet/package.nix +++ b/pkgs/by-name/mo/mobilecoin-wallet/package.nix @@ -31,10 +31,10 @@ appimageTools.wrapType2 { --replace "AppRun" "${pname}" ''; - meta = with lib; { + meta = { description = "User-friendly desktop wallet with support for transaction history, encrypted contact book, gift codes, and payments"; homepage = "https://github.com/mobilecoinofficial/desktop-wallet"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "mobilecoin-wallet"; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/mo/mobroute/package.nix b/pkgs/by-name/mo/mobroute/package.nix index 74fe7659aee0..9bb520e0e080 100644 --- a/pkgs/by-name/mo/mobroute/package.nix +++ b/pkgs/by-name/mo/mobroute/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { mv $out/bin/{cli,mobroute} ''; - meta = with lib; { + meta = { description = "General purpose public transportation router based on GTFS"; longDescription = '' Mobroute is a general purpose public transportation router @@ -48,10 +48,10 @@ buildGoModule rec { without comprising privacy or user freedoms. ''; homepage = "https://git.sr.ht/~mil/mobroute"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; mainProgram = "mobroute"; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/mo/mobsql/package.nix b/pkgs/by-name/mo/mobsql/package.nix index 9332d56db5a2..38bf591597f3 100644 --- a/pkgs/by-name/mo/mobsql/package.nix +++ b/pkgs/by-name/mo/mobsql/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "GTFS to SQLite import utility"; longDescription = '' Mobsql is a Go library and command-line application @@ -43,9 +43,9 @@ buildGoModule rec { to the database simulatenously). ''; homepage = "https://git.sr.ht/~mil/mobsql"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; mainProgram = "mobsql"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mo/moc/package.nix b/pkgs/by-name/mo/moc/package.nix index c91d65966beb..48cb8403e185 100644 --- a/pkgs/by-name/mo/moc/package.nix +++ b/pkgs/by-name/mo/moc/package.nix @@ -155,15 +155,15 @@ stdenv.mkDerivation { "--without-rcc" ]; - meta = with lib; { + meta = { description = "Terminal audio player designed to be powerful and easy to use"; homepage = "http://moc.daper.net/"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ aethelz pSub ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "mocp"; }; } diff --git a/pkgs/by-name/mo/mockobjects/package.nix b/pkgs/by-name/mo/mockobjects/package.nix index cf9403385679..c8a4c25a727d 100644 --- a/pkgs/by-name/mo/mockobjects/package.nix +++ b/pkgs/by-name/mo/mockobjects/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Generic unit testing framework and methodology for testing any kind of code"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.unix; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/mo/mod-arpeggiator-lv2/package.nix b/pkgs/by-name/mo/mod-arpeggiator-lv2/package.nix index 78124dc44ef3..8619b9741a68 100644 --- a/pkgs/by-name/mo/mod-arpeggiator-lv2/package.nix +++ b/pkgs/by-name/mo/mod-arpeggiator-lv2/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "LV2 arpeggiator"; homepage = "https://github.com/moddevices/mod-arpeggiator-lv2"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/mod-distortion/package.nix b/pkgs/by-name/mo/mod-distortion/package.nix index 784c34774cd5..0ca62124c43e 100644 --- a/pkgs/by-name/mo/mod-distortion/package.nix +++ b/pkgs/by-name/mo/mod-distortion/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { installFlags = [ "INSTALL_PATH=$(out)/lib/lv2" ]; - meta = with lib; { + meta = { homepage = "https://github.com/portalmod/mod-distortion"; description = "Analog distortion emulation lv2 plugins"; - license = licenses.gpl3; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/mod/package.nix b/pkgs/by-name/mo/mod/package.nix index a93b5ec89be8..d0fe2d223bea 100644 --- a/pkgs/by-name/mo/mod/package.nix +++ b/pkgs/by-name/mo/mod/package.nix @@ -21,7 +21,7 @@ buildGoModule rec { subPackages = [ "cmd/mod" ]; - meta = with lib; { + meta = { description = "Automated Semantic Import Versioning Upgrades for Go"; mainProgram = "mod"; longDescription = '' @@ -29,8 +29,8 @@ buildGoModule rec { Modules. ''; homepage = "https://github.com/marwan-at-work/mod"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/mo/modd/package.nix b/pkgs/by-name/mo/modd/package.nix index 697fea21d22b..5d9d37258f54 100644 --- a/pkgs/by-name/mo/modd/package.nix +++ b/pkgs/by-name/mo/modd/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Flexible developer tool that runs processes and responds to filesystem changes"; mainProgram = "modd"; homepage = "https://github.com/cortesi/modd"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mo/modelscan/package.nix b/pkgs/by-name/mo/modelscan/package.nix index 62a59749f058..27f35378ecc3 100644 --- a/pkgs/by-name/mo/modelscan/package.nix +++ b/pkgs/by-name/mo/modelscan/package.nix @@ -48,12 +48,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "modelscan" ]; - meta = with lib; { + meta = { description = "Protection against Model Serialization Attacks"; homepage = "https://github.com/protectai/modelscan"; changelog = "https://github.com/protectai/modelscan/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "modelscan"; }; } diff --git a/pkgs/by-name/mo/modem-manager-gui/package.nix b/pkgs/by-name/mo/modem-manager-gui/package.nix index 9e3420103563..bece7293f5ed 100644 --- a/pkgs/by-name/mo/modem-manager-gui/package.nix +++ b/pkgs/by-name/mo/modem-manager-gui/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs man/manhelper.py ''; - meta = with lib; { + meta = { description = "App to send/receive SMS, make USSD requests, control mobile data usage and more"; longDescription = '' A simple GTK based GUI compatible with Modem manager, Wader and oFono @@ -80,12 +80,12 @@ stdenv.mkDerivation (finalAttrs: { messages, control mobile traffic consumption and more. ''; homepage = "https://linuxonly.ru/page/modem-manager-gui"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ahuzik galagora ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "modem-manager-gui"; }; }) diff --git a/pkgs/by-name/mo/modemmanager/package.nix b/pkgs/by-name/mo/modemmanager/package.nix index 79d970da9156..d2f43bb42572 100644 --- a/pkgs/by-name/mo/modemmanager/package.nix +++ b/pkgs/by-name/mo/modemmanager/package.nix @@ -121,11 +121,11 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "WWAN modem manager, part of NetworkManager"; homepage = "https://www.freedesktop.org/wiki/Software/ModemManager/"; - license = licenses.gpl2Plus; - teams = [ teams.freedesktop ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.freedesktop ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/modern-cpp-kafka/package.nix b/pkgs/by-name/mo/modern-cpp-kafka/package.nix index 6f1b37ed6452..b2b135bcd317 100644 --- a/pkgs/by-name/mo/modern-cpp-kafka/package.nix +++ b/pkgs/by-name/mo/modern-cpp-kafka/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { rapidjson ]; - meta = with lib; { + meta = { description = "C++ API for Kafka clients (i.e. KafkaProducer, KafkaConsumer, AdminClient)"; homepage = "https://github.com/morganstanley/modern-cpp-kafka"; - license = licenses.asl20; - maintainers = with maintainers; [ ditsuke ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ditsuke ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mo/modsecurity-crs/package.nix b/pkgs/by-name/mo/modsecurity-crs/package.nix index f95bb592e459..13339cc6c498 100644 --- a/pkgs/by-name/mo/modsecurity-crs/package.nix +++ b/pkgs/by-name/mo/modsecurity-crs/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { homepage = "https://coreruleset.org"; description = '' The OWASP ModSecurity Core Rule Set is a set of generic attack detection rules for use with ModSecurity or compatible web application firewalls. ''; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/by-name/mo/moka-icon-theme/package.nix b/pkgs/by-name/mo/moka-icon-theme/package.nix index 6674b83bc204..6ce987e42127 100644 --- a/pkgs/by-name/mo/moka-icon-theme/package.nix +++ b/pkgs/by-name/mo/moka-icon-theme/package.nix @@ -50,15 +50,15 @@ stdenvNoCC.mkDerivation { jdupes -l -r $out/share/icons ''; - meta = with lib; { + meta = { description = "Icon theme designed with a minimal flat style using simple geometry and bright colours"; homepage = "https://snwh.org/moka"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 gpl3Only ]; # darwin cannot deal with file names differing only in case - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/mo/mokutil/package.nix b/pkgs/by-name/mo/mokutil/package.nix index 3d4c8d3bd066..d576407e78d8 100644 --- a/pkgs/by-name/mo/mokutil/package.nix +++ b/pkgs/by-name/mo/mokutil/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { libxcrypt ]; - meta = with lib; { + meta = { homepage = "https://github.com/lcp/mokutil"; description = "Utility to manipulate machines owner keys"; mainProgram = "mokutil"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nickcao ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nickcao ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/molden/package.nix b/pkgs/by-name/mo/molden/package.nix index 7ca292390b95..12959c85825a 100644 --- a/pkgs/by-name/mo/molden/package.nix +++ b/pkgs/by-name/mo/molden/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Display and manipulate molecular structures"; homepage = "http://www3.cmbi.umcn.nl/molden/"; license = { @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { url = "http://www3.cmbi.umcn.nl/molden/CopyRight.html"; free = false; }; - platforms = platforms.linux; - maintainers = with maintainers; [ markuskowa ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ markuskowa ]; }; } diff --git a/pkgs/by-name/mo/mole/package.nix b/pkgs/by-name/mo/mole/package.nix index b531ec44960a..9398d62ce5a7 100644 --- a/pkgs/by-name/mo/mole/package.nix +++ b/pkgs/by-name/mo/mole/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X=github.com/davrodpin/mole/cmd.version=${version}" ]; - meta = with lib; { + meta = { description = "CLI application to create SSH tunnels"; homepage = "https://github.com/davrodpin/mole"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; broken = stdenv.hostPlatform.isDarwin; # build fails with go > 1.17 mainProgram = "mole"; }; diff --git a/pkgs/by-name/mo/molly-brown/package.nix b/pkgs/by-name/mo/molly-brown/package.nix index 3fcdd2bacab7..8d2b349079fa 100644 --- a/pkgs/by-name/mo/molly-brown/package.nix +++ b/pkgs/by-name/mo/molly-brown/package.nix @@ -24,10 +24,10 @@ buildGoModule { passthru.tests.basic = nixosTests.molly-brown; - meta = with lib; { + meta = { description = "Full-featured Gemini server"; mainProgram = "molly-brown"; homepage = "https://tildegit.org/solderpunk/molly-brown"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/mo/molly-guard/package.nix b/pkgs/by-name/mo/molly-guard/package.nix index e7feab9566e6..91e4516174a0 100644 --- a/pkgs/by-name/mo/molly-guard/package.nix +++ b/pkgs/by-name/mo/molly-guard/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { done; ''; - meta = with lib; { + meta = { description = "Attempts to prevent you from accidentally shutting down or rebooting machines"; homepage = "https://salsa.debian.org/debian/molly-guard"; - license = licenses.artistic2; - platforms = platforms.linux; - maintainers = with maintainers; [ DerTim1 ]; + license = lib.licenses.artistic2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ DerTim1 ]; priority = -10; }; } diff --git a/pkgs/by-name/mo/molot-lite/package.nix b/pkgs/by-name/mo/molot-lite/package.nix index 5c6e4d94592e..e3902fbdf40e 100644 --- a/pkgs/by-name/mo/molot-lite/package.nix +++ b/pkgs/by-name/mo/molot-lite/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Stereo and mono audio signal dynamic range compressor in LV2 format"; homepage = "https://github.com/magnetophon/molot-lite"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/molotov/package.nix b/pkgs/by-name/mo/molotov/package.nix index 8814a1537656..cf14bfbd536d 100644 --- a/pkgs/by-name/mo/molotov/package.nix +++ b/pkgs/by-name/mo/molotov/package.nix @@ -23,11 +23,11 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${pname}' cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "French TV service"; homepage = "https://www.molotov.tv/"; - license = with licenses; [ unfree ]; - maintainers = with maintainers; [ apeyroux ]; + license = with lib.licenses; [ unfree ]; + maintainers = with lib.maintainers; [ apeyroux ]; platforms = [ "x86_64-linux" ]; mainProgram = "molotov"; }; diff --git a/pkgs/by-name/mo/moltengamepad/package.nix b/pkgs/by-name/mo/moltengamepad/package.nix index e71f746085b3..7180699467eb 100644 --- a/pkgs/by-name/mo/moltengamepad/package.nix +++ b/pkgs/by-name/mo/moltengamepad/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation { sed -i -e '159d;161d;472d;473d;474d;475d' source/eventlists/key_list.cpp ''; - meta = with lib; { + meta = { homepage = "https://github.com/jgeumlek/MoltenGamepad"; description = "Flexible Linux input device translator, geared for gamepads"; mainProgram = "moltengamepad"; - license = licenses.mit; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/monado-vulkan-layers/package.nix b/pkgs/by-name/mo/monado-vulkan-layers/package.nix index 820a07d5d9b2..d64763da58bf 100644 --- a/pkgs/by-name/mo/monado-vulkan-layers/package.nix +++ b/pkgs/by-name/mo/monado-vulkan-layers/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { ./absolute-layer-path.patch ]; - meta = with lib; { + meta = { description = "Vulkan Layers for Monado"; homepage = "https://gitlab.freedesktop.org/monado/utilities/vulkan-layers"; - platforms = platforms.linux; - license = licenses.boost; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ Scrumplex passivelemon ]; diff --git a/pkgs/by-name/mo/monetdb/package.nix b/pkgs/by-name/mo/monetdb/package.nix index d9b41dae36e6..658caf87c12a 100644 --- a/pkgs/by-name/mo/monetdb/package.nix +++ b/pkgs/by-name/mo/monetdb/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = { inherit (nixosTests) monetdb; }; - meta = with lib; { + meta = { description = "Open source database system"; homepage = "https://www.monetdb.org/"; - license = licenses.mpl20; - platforms = platforms.unix; - maintainers = [ maintainers.StillerHarpo ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.StillerHarpo ]; }; }) diff --git a/pkgs/by-name/mo/mongoaudit/package.nix b/pkgs/by-name/mo/mongoaudit/package.nix index 8a9ad93c2fa7..b80668bef553 100644 --- a/pkgs/by-name/mo/mongoaudit/package.nix +++ b/pkgs/by-name/mo/mongoaudit/package.nix @@ -36,11 +36,11 @@ python3.pkgs.buildPythonApplication rec { "mongoaudit" ]; - meta = with lib; { + meta = { description = "MongoDB auditing and pentesting tool"; homepage = "https://github.com/stampery/mongoaudit"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "mongoaudit"; }; } diff --git a/pkgs/by-name/mo/mongoc/package.nix b/pkgs/by-name/mo/mongoc/package.nix index 74c92b65168f..f7a3d76c4689 100644 --- a/pkgs/by-name/mo/mongoc/package.nix +++ b/pkgs/by-name/mo/mongoc/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { rm -rf src/{libmongoc,libbson} ''; - meta = with lib; { + meta = { description = "Official C client library for MongoDB"; homepage = "http://mongoc.org"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "mongoc-stat"; - maintainers = with maintainers; [ archer-65 ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ archer-65 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mo/mongocxx/package.nix b/pkgs/by-name/mo/mongocxx/package.nix index 947da3423261..911ec75b40ad 100644 --- a/pkgs/by-name/mo/mongocxx/package.nix +++ b/pkgs/by-name/mo/mongocxx/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Official C++ client library for MongoDB"; homepage = "http://mongocxx.org"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ adriandole vcele ]; @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { "libmongocxx" "libbsoncxx" ]; - platforms = platforms.all; + platforms = lib.platforms.all; badPlatforms = [ "x86_64-darwin" ]; # needs sdk >= 10.14 }; }) diff --git a/pkgs/by-name/mo/mongoose/package.nix b/pkgs/by-name/mo/mongoose/package.nix index 2a226b5c7994..534f74216e33 100644 --- a/pkgs/by-name/mo/mongoose/package.nix +++ b/pkgs/by-name/mo/mongoose/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Graph Coarsening and Partitioning Library"; mainProgram = "suitesparse_mongoose"; homepage = "https://github.com/DrTimothyAldenDavis/SuiteSparse/tree/dev/Mongoose"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ wegank ]; - platforms = with platforms; unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ wegank ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/mo/monitorcontrol/package.nix b/pkgs/by-name/mo/monitorcontrol/package.nix index 197dba9c9389..ed51b73ada49 100644 --- a/pkgs/by-name/mo/monitorcontrol/package.nix +++ b/pkgs/by-name/mo/monitorcontrol/package.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { cp -R . "$out/Applications/MonitorControl.app" ''; - meta = with lib; { + meta = { description = "MacOS system extension to control brightness and volume of external displays with native OSD"; longDescription = "Controls your external display brightness and volume and shows native OSD. Use menulet sliders or the keyboard, including native Apple keys!"; homepage = "https://github.com/MonitorControl/MonitorControl#readme"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cbleslie cottand ]; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/mo/monitoring-plugins/package.nix b/pkgs/by-name/mo/monitoring-plugins/package.nix index 4454909310d4..f869775b5a15 100644 --- a/pkgs/by-name/mo/monitoring-plugins/package.nix +++ b/pkgs/by-name/mo/monitoring-plugins/package.nix @@ -93,14 +93,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Official monitoring plugins for Nagios/Icinga/Sensu and others"; homepage = "https://www.monitoring-plugins.org"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ thoughtpolice relrod ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/monkeysAudio/package.nix b/pkgs/by-name/mo/monkeysAudio/package.nix index 5597ea992aaa..544f2291ffc5 100644 --- a/pkgs/by-name/mo/monkeysAudio/package.nix +++ b/pkgs/by-name/mo/monkeysAudio/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = with lib; { + meta = { description = "APE codec and decompressor"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "mac"; - license = licenses.bsd3; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ doronbehar ]; }; }) diff --git a/pkgs/by-name/mo/monkeysphere/package.nix b/pkgs/by-name/mo/monkeysphere/package.nix index affe82b4671e..8393ce4b4d6c 100644 --- a/pkgs/by-name/mo/monkeysphere/package.nix +++ b/pkgs/by-name/mo/monkeysphere/package.nix @@ -122,7 +122,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "http://web.monkeysphere.info/"; description = "Leverage the OpenPGP web of trust for SSH and TLS authentication"; longDescription = '' @@ -134,8 +134,8 @@ stdenv.mkDerivation rec { TLS/SSL communications through the normal use of tools you are familiar with, such as your web browser0 or secure shell. ''; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mo/monocraft/package.nix b/pkgs/by-name/mo/monocraft/package.nix index 85ff3d02f53b..78876b6a546c 100644 --- a/pkgs/by-name/mo/monocraft/package.nix +++ b/pkgs/by-name/mo/monocraft/package.nix @@ -36,11 +36,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Programming font based on the typeface used in Minecraft"; homepage = "https://github.com/IdreesInc/Monocraft"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/by-name/mo/monocypher/package.nix b/pkgs/by-name/mo/monocypher/package.nix index f7e4eb9ff568..80446b3035e9 100644 --- a/pkgs/by-name/mo/monocypher/package.nix +++ b/pkgs/by-name/mo/monocypher/package.nix @@ -17,14 +17,14 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Boring crypto that simply works"; homepage = "https://monocypher.org"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 cc0 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ sikmir ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/mo/monoid/package.nix b/pkgs/by-name/mo/monoid/package.nix index 7882007dae03..7ee69cf5e8a1 100644 --- a/pkgs/by-name/mo/monoid/package.nix +++ b/pkgs/by-name/mo/monoid/package.nix @@ -48,14 +48,14 @@ stdenv.mkDerivation { install -m444 -Dt $out/share/doc Readme.md ''; - meta = with lib; { + meta = { homepage = "http://larsenwork.com/monoid"; description = "Customisable coding font with alternates, ligatures and contextual positioning"; license = [ - licenses.ofl - licenses.mit + lib.licenses.ofl + lib.licenses.mit ]; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/mo/monolith/package.nix b/pkgs/by-name/mo/monolith/package.nix index 899a7e77cf57..908004029fbd 100644 --- a/pkgs/by-name/mo/monolith/package.nix +++ b/pkgs/by-name/mo/monolith/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Bundle any web page into a single HTML file"; mainProgram = "monolith"; homepage = "https://github.com/Y2Z/monolith"; - license = licenses.cc0; + license = lib.licenses.cc0; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mo/mononoki/package.nix b/pkgs/by-name/mo/mononoki/package.nix index 5b8b33144e2f..d528cb79b2f7 100644 --- a/pkgs/by-name/mo/mononoki/package.nix +++ b/pkgs/by-name/mo/mononoki/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/madmalik/mononoki"; description = "Font for programming and code review"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mo/monosat/package.nix b/pkgs/by-name/mo/monosat/package.nix index 02a828ceb247..b95ede2b84b1 100644 --- a/pkgs/by-name/mo/monosat/package.nix +++ b/pkgs/by-name/mo/monosat/package.nix @@ -74,13 +74,13 @@ let passthru = { inherit python; }; - meta = with lib; { + meta = { description = "SMT solver for Monotonic Theories"; mainProgram = "monosat"; - platforms = platforms.unix; - license = if includeGplCode then licenses.gpl2 else licenses.mit; + platforms = lib.platforms.unix; + license = if includeGplCode then lib.licenses.gpl2 else lib.licenses.mit; homepage = "https://github.com/sambayless/monosat"; - maintainers = [ maintainers.acairncross ]; + maintainers = [ lib.maintainers.acairncross ]; }; }; diff --git a/pkgs/by-name/mo/mons/package.nix b/pkgs/by-name/mo/mons/package.nix index fc4216878a46..47f846b37559 100644 --- a/pkgs/by-name/mo/mons/package.nix +++ b/pkgs/by-name/mo/mons/package.nix @@ -89,12 +89,12 @@ resholve.mkDerivation { "PREFIX=" ]; - meta = with lib; { + meta = { description = "POSIX Shell script to quickly manage 2-monitors display"; homepage = "https://github.com/Ventto/mons.git"; - license = licenses.mit; - maintainers = with maintainers; [ thiagokokada ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thiagokokada ]; + platforms = lib.platforms.unix; mainProgram = "mons"; }; } diff --git a/pkgs/by-name/mo/montserrat/package.nix b/pkgs/by-name/mo/montserrat/package.nix index cdd11322f13e..611f00c29005 100644 --- a/pkgs/by-name/mo/montserrat/package.nix +++ b/pkgs/by-name/mo/montserrat/package.nix @@ -29,12 +29,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Geometric sans serif font with extended latin support (Regular, Alternates, Subrayada)"; homepage = "https://www.fontspace.com/julieta-ulanovsky/montserrat"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ scolobb jk ]; diff --git a/pkgs/by-name/mo/moodle-dl/package.nix b/pkgs/by-name/mo/moodle-dl/package.nix index 4356aeaae407..afbbe14ebebf 100644 --- a/pkgs/by-name/mo/moodle-dl/package.nix +++ b/pkgs/by-name/mo/moodle-dl/package.nix @@ -41,11 +41,11 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/C0D3D3V/Moodle-Downloader-2"; - maintainers = [ maintainers.kmein ]; + maintainers = [ lib.maintainers.kmein ]; description = "Moodle downloader that downloads course content fast from Moodle"; mainProgram = "moodle-dl"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/mo/moon-phases/package.nix b/pkgs/by-name/mo/moon-phases/package.nix index 81ae0d182315..9b8da608bcef 100644 --- a/pkgs/by-name/mo/moon-phases/package.nix +++ b/pkgs/by-name/mo/moon-phases/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8Ada1KBGO1q61dg+4NMJ1Sbipr3ATSP5PO14oQ/QWGs="; - meta = with lib; { + meta = { description = "Command-line/WM bar tool to display the moon phase at a certain date"; homepage = "https://github.com/mirrorwitch/moon-phases"; - license = licenses.acsl14; - maintainers = with maintainers; [ mirrorwitch ]; + license = lib.licenses.acsl14; + maintainers = with lib.maintainers; [ mirrorwitch ]; mainProgram = "moon-phases"; }; } diff --git a/pkgs/by-name/mo/moonlight-embedded/package.nix b/pkgs/by-name/mo/moonlight-embedded/package.nix index c794648d137e..eb92a97cc0f4 100644 --- a/pkgs/by-name/mo/moonlight-embedded/package.nix +++ b/pkgs/by-name/mo/moonlight-embedded/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { libva ]; - meta = with lib; { + meta = { description = "Open source implementation of NVIDIA's GameStream"; homepage = "https://github.com/moonlight-stream/moonlight-embedded"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "moonlight"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/moonlight/package.nix b/pkgs/by-name/mo/moonlight/package.nix index 2a79d8e68aa3..98bb355dd3fa 100644 --- a/pkgs/by-name/mo/moonlight/package.nix +++ b/pkgs/by-name/mo/moonlight/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { ); }; - meta = with lib; { + meta = { description = "Discord client modification, focused on enhancing user and developer experience"; longDescription = '' Moonlight is a ***passion project***—yet another Discord client mod—focused on providing a decent user @@ -79,8 +79,8 @@ stdenv.mkDerivation (finalAttrs: { downloadPage = "https://moonlight-mod.github.io/using/install/#nix"; changelog = "https://raw.githubusercontent.com/moonlight-mod/moonlight/refs/tags/v${finalAttrs.version}/CHANGELOG.md"; - license = licenses.lgpl3; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ ilys FlameFlag ]; diff --git a/pkgs/by-name/mo/moonraker/package.nix b/pkgs/by-name/mo/moonraker/package.nix index 75765521f1ee..1a49a5ded0f3 100644 --- a/pkgs/by-name/mo/moonraker/package.nix +++ b/pkgs/by-name/mo/moonraker/package.nix @@ -62,11 +62,11 @@ stdenvNoCC.mkDerivation rec { tests.moonraker = nixosTests.moonraker; }; - meta = with lib; { + meta = { description = "API web server for Klipper"; homepage = "https://github.com/Arksine/moonraker"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ zhaofengli ]; mainProgram = "moonraker"; }; } diff --git a/pkgs/by-name/mo/mop/package.nix b/pkgs/by-name/mo/mop/package.nix index 245abeac0f5d..25b353d5f3ad 100644 --- a/pkgs/by-name/mo/mop/package.nix +++ b/pkgs/by-name/mo/mop/package.nix @@ -25,10 +25,10 @@ buildGoModule rec { mv cmd mop ''; - meta = with lib; { + meta = { description = "Simple stock tracker implemented in go"; homepage = "https://github.com/mop-tracker/mop"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "mop"; }; } diff --git a/pkgs/by-name/mo/mopac/package.nix b/pkgs/by-name/mo/mopac/package.nix index e2191b1330f4..b5ce55cd0cb8 100644 --- a/pkgs/by-name/mo/mopac/package.nix +++ b/pkgs/by-name/mo/mopac/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { export OMP_NUM_THREADS=2 ''; - meta = with lib; { + meta = { description = "Semiempirical quantum chemistry"; homepage = "https://github.com/openmopac/mopac"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sheepforce markuskowa ]; diff --git a/pkgs/by-name/mo/moproxy/package.nix b/pkgs/by-name/mo/moproxy/package.nix index d519642970a2..74563c536265 100644 --- a/pkgs/by-name/mo/moproxy/package.nix +++ b/pkgs/by-name/mo/moproxy/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { }");/' build.rs ''; - meta = with lib; { + meta = { homepage = "https://github.com/sorz/moproxy"; description = "Transparent TCP to SOCKSv5/HTTP proxy on Linux written in Rust"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "moproxy"; - maintainers = with maintainers; [ oluceps ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ oluceps ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/moq/package.nix b/pkgs/by-name/mo/moq/package.nix index 4ad342ffb995..1b6d13333ffd 100644 --- a/pkgs/by-name/mo/moq/package.nix +++ b/pkgs/by-name/mo/moq/package.nix @@ -25,7 +25,7 @@ buildGoModule rec { "-X main.Version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/matryer/moq"; description = "Interface mocking tool for go generate"; mainProgram = "moq"; @@ -33,7 +33,7 @@ buildGoModule rec { Moq is a tool that generates a struct from any interface. The struct can be used in test code as a mock of the interface. ''; - license = licenses.mit; - maintainers = with maintainers; [ anpryl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anpryl ]; }; } diff --git a/pkgs/by-name/mo/morgen/package.nix b/pkgs/by-name/mo/morgen/package.nix index dda652605dfa..45af4b559e91 100644 --- a/pkgs/by-name/mo/morgen/package.nix +++ b/pkgs/by-name/mo/morgen/package.nix @@ -64,13 +64,13 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "All-in-one Calendars, Tasks and Scheduler"; homepage = "https://morgen.so/"; mainProgram = "morgen"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ justanotherariel ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ justanotherariel ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/mo/morph/package.nix b/pkgs/by-name/mo/morph/package.nix index 4e3d9b410c73..d1b54913cc2f 100644 --- a/pkgs/by-name/mo/morph/package.nix +++ b/pkgs/by-name/mo/morph/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { "lib" ]; - meta = with lib; { + meta = { description = "NixOS host manager written in Golang"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/dbcdk/morph"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ adamt johanot ]; diff --git a/pkgs/by-name/mo/morsel/package.nix b/pkgs/by-name/mo/morsel/package.nix index b887bd1854cf..b982a19007c5 100644 --- a/pkgs/by-name/mo/morsel/package.nix +++ b/pkgs/by-name/mo/morsel/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-3rwYD49yq3apKOGBSWvTm5m98ImbtTKqRb2cSgjWmFA="; - meta = with lib; { + meta = { description = "Command line tool to translate morse code input to text in real time"; mainProgram = "morsel"; homepage = "https://github.com/SamLee514/morsel"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/by-name/mo/mos/package.nix b/pkgs/by-name/mo/mos/package.nix index dc527f625686..d53f14f4ce75 100644 --- a/pkgs/by-name/mo/mos/package.nix +++ b/pkgs/by-name/mo/mos/package.nix @@ -28,13 +28,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Smooths scrolling and set mouse scroll directions independently on macOS"; homepage = "https://mos.caldis.me/"; changelog = "https://github.com/Caldis/Mos/releases/tag/${finalAttrs.version}"; - license = licenses.cc-by-nc-40; + license = lib.licenses.cc-by-nc-40; maintainers = with lib.maintainers; [ xiaoxiangmoe ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/mo/mosdepth/package.nix b/pkgs/by-name/mo/mosdepth/package.nix index 9c17f0d1510b..71825a565f72 100644 --- a/pkgs/by-name/mo/mosdepth/package.nix +++ b/pkgs/by-name/mo/mosdepth/package.nix @@ -26,14 +26,14 @@ buildNimPackage (finalAttrs: { doInstallCheck = true; - meta = with lib; { + meta = { description = "Fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing"; mainProgram = "mosdepth"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/brentp/mosdepth"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jbedo ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/mo/moserial/package.nix b/pkgs/by-name/mo/moserial/package.nix index ec7468760dd3..54c388d4465e 100644 --- a/pkgs/by-name/mo/moserial/package.nix +++ b/pkgs/by-name/mo/moserial/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Clean, friendly gtk-based serial terminal for the gnome desktop"; homepage = "https://gitlab.gnome.org/GNOME/moserial"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ linsui ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ linsui ]; + platforms = lib.platforms.linux; mainProgram = "moserial"; }; } diff --git a/pkgs/by-name/mo/mosh/package.nix b/pkgs/by-name/mo/mosh/package.nix index 219109119951..b5b016340d27 100644 --- a/pkgs/by-name/mo/mosh/package.nix +++ b/pkgs/by-name/mo/mosh/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/mosh --prefix PERL5LIB : $PERL5LIB ''; - meta = with lib; { + meta = { homepage = "https://mosh.org/"; description = "Mobile shell (ssh replacement)"; longDescription = '' @@ -85,8 +85,8 @@ stdenv.mkDerivation rec { Mosh is a replacement for SSH. It's more robust and responsive, especially over Wi-Fi, cellular, and long-distance links. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ skeuchel ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mo/mosml/package.nix b/pkgs/by-name/mo/mosml/package.nix index 2bd5a6b1c0a0..8ae2488cef00 100644 --- a/pkgs/by-name/mo/mosml/package.nix +++ b/pkgs/by-name/mo/mosml/package.nix @@ -35,15 +35,15 @@ stdenv.mkDerivation rec { # by the build system), which patchelf will remove. dontPatchELF = true; - meta = with lib; { + meta = { description = "Light-weight implementation of Standard ML"; longDescription = '' Moscow ML is a light-weight implementation of Standard ML (SML), a strict functional language used in teaching and research. ''; homepage = "https://mosml.org/"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ vaibhavsagar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vaibhavsagar ]; }; } diff --git a/pkgs/by-name/mo/most/package.nix b/pkgs/by-name/mo/most/package.nix index f7d31d4a24c6..b1f38ffc1fa8 100644 --- a/pkgs/by-name/mo/most/package.nix +++ b/pkgs/by-name/mo/most/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Terminal pager similar to 'more' and 'less'"; longDescription = '' MOST is a powerful paging program for Unix, VMS, MSDOS, and win32 @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { windows and can scroll left and right. Why settle for less? ''; homepage = "https://www.jedsoft.org/most/index.html"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "most"; }; } diff --git a/pkgs/by-name/mo/motif/package.nix b/pkgs/by-name/mo/motif/package.nix index 92bd4eafae1b..2b208fb331c7 100644 --- a/pkgs/by-name/mo/motif/package.nix +++ b/pkgs/by-name/mo/motif/package.nix @@ -137,12 +137,12 @@ stdenv.mkDerivation rec { cp config/util/makestrs tools/wml/{wml,wmluiltok,.libs/wmldbcreate} "$out/lib/internals" ''; - meta = with lib; { + meta = { homepage = "https://motif.ics.com"; description = "Unix standard widget-toolkit and window-manager"; - platforms = platforms.unix; - license = with licenses; [ lgpl21Plus ]; - maintainers = with maintainers; [ qyliss ]; + platforms = lib.platforms.unix; + license = with lib.licenses; [ lgpl21Plus ]; + maintainers = with lib.maintainers; [ qyliss ]; broken = demoSupport && stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "16"; }; } diff --git a/pkgs/by-name/mo/motion/package.nix b/pkgs/by-name/mo/motion/package.nix index 098dfa41003d..51d860736522 100644 --- a/pkgs/by-name/mo/motion/package.nix +++ b/pkgs/by-name/mo/motion/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { libmicrohttpd ]; - meta = with lib; { + meta = { description = "Monitors the video signal from cameras"; homepage = "https://motion-project.github.io/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ puffnfresh veprbl ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; mainProgram = "motion"; diff --git a/pkgs/by-name/mo/motrix/package.nix b/pkgs/by-name/mo/motrix/package.nix index cbbfd061b08a..b414ffd25e05 100644 --- a/pkgs/by-name/mo/motrix/package.nix +++ b/pkgs/by-name/mo/motrix/package.nix @@ -27,13 +27,13 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Full-featured download manager"; homepage = "https://motrix.app"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ dit7ya ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "motrix"; }; } diff --git a/pkgs/by-name/mo/mountain-duck/package.nix b/pkgs/by-name/mo/mountain-duck/package.nix index e1a73025e404..d66f96f45753 100644 --- a/pkgs/by-name/mo/mountain-duck/package.nix +++ b/pkgs/by-name/mo/mountain-duck/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mount server and cloud storage as a disk on macOS and Windows"; homepage = "https://mountainduck.io"; - license = licenses.unfree; + license = lib.licenses.unfree; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/mo/mountpoint-s3/package.nix b/pkgs/by-name/mo/mountpoint-s3/package.nix index 58e8dda6f710..5d3c8d4dc2da 100644 --- a/pkgs/by-name/mo/mountpoint-s3/package.nix +++ b/pkgs/by-name/mo/mountpoint-s3/package.nix @@ -62,11 +62,11 @@ rustPlatform.buildRustPackage rec { "--skip=test_get_identity_document" ]; - meta = with lib; { + meta = { homepage = "https://github.com/awslabs/mountpoint-s3"; description = "Simple, high-throughput file client for mounting an Amazon S3 bucket as a local file system"; - license = licenses.asl20; - maintainers = with maintainers; [ lblasc ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lblasc ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/mousai/package.nix b/pkgs/by-name/mo/mousai/package.nix index 12bbd6dbf885..003606ec952c 100644 --- a/pkgs/by-name/mo/mousai/package.nix +++ b/pkgs/by-name/mo/mousai/package.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Identify any songs in seconds"; mainProgram = "mousai"; homepage = "https://github.com/SeaDve/Mousai"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; - teams = [ teams.gnome-circle ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + teams = [ lib.teams.gnome-circle ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/mousam/package.nix b/pkgs/by-name/mo/mousam/package.nix index 72a29c30bd90..ba19ed0df45d 100644 --- a/pkgs/by-name/mo/mousam/package.nix +++ b/pkgs/by-name/mo/mousam/package.nix @@ -48,12 +48,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Beautiful and lightweight weather app based on Python and GTK4"; homepage = "https://amit9838.github.io/mousam"; - license = with licenses; [ gpl3Plus ]; + license = with lib.licenses; [ gpl3Plus ]; mainProgram = "mousam"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mo/mouse-actions/package.nix b/pkgs/by-name/mo/mouse-actions/package.nix index beb241014bd5..ac712cf10a92 100644 --- a/pkgs/by-name/mo/mouse-actions/package.nix +++ b/pkgs/by-name/mo/mouse-actions/package.nix @@ -43,12 +43,12 @@ rustPlatform.buildRustPackage rec { echo 'KERNEL=="/dev/input/event*", SUBSYSTEM=="misc", TAG+="uaccess", OPTIONS+="static_node=uinput"' >> $out/etc/udev/rules.d/80-mouse-actions.rules ''; - meta = with lib; { + meta = { description = "Execute commands from mouse events such as clicks/wheel on the side/corners of the screen, or drawing shapes"; homepage = "https://github.com/jersou/mouse-actions"; - license = licenses.mit; - maintainers = with maintainers; [ rgri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rgri ]; mainProgram = "mouse-actions"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/mousetweaks/package.nix b/pkgs/by-name/mo/mousetweaks/package.nix index 162f70d0b309..adef94490f6c 100644 --- a/pkgs/by-name/mo/mousetweaks/package.nix +++ b/pkgs/by-name/mo/mousetweaks/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Provides mouse accessibility enhancements for the GNOME desktop"; longDescription = '' Mousetweaks provides mouse accessibility enhancements for the GNOME @@ -58,9 +58,9 @@ stdenv.mkDerivation rec { panel of the GNOME Control Center. ''; homepage = "https://gitlab.gnome.org/Archive/mousetweaks"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.johnazoidberg ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.johnazoidberg ]; mainProgram = "mousetweaks"; }; } diff --git a/pkgs/by-name/mo/mov-cli/package.nix b/pkgs/by-name/mo/mov-cli/package.nix index e96cb0c674a9..4839d8af5071 100644 --- a/pkgs/by-name/mo/mov-cli/package.nix +++ b/pkgs/by-name/mo/mov-cli/package.nix @@ -61,7 +61,7 @@ python3.pkgs.buildPythonPackage { "--prefix PATH : ${binPath}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mov-cli/mov-cli"; description = "Cli tool to browse and watch movies"; license = with lib.licenses; [ gpl3Only ]; diff --git a/pkgs/by-name/mo/movine/package.nix b/pkgs/by-name/mo/movine/package.nix index ce89367a79ac..7040bbad4a76 100644 --- a/pkgs/by-name/mo/movine/package.nix +++ b/pkgs/by-name/mo/movine/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Migration manager written in Rust, that attempts to be smart yet minimal"; mainProgram = "movine"; homepage = "https://github.com/byronwasti/movine"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' Movine is a simple database migration manager that aims to be compatible with real-world migration work. Many migration managers get confused @@ -47,6 +47,6 @@ rustPlatform.buildRustPackage rec { Consider diesel instead if you want an ORM. ''; - maintainers = with maintainers; [ netcrns ]; + maintainers = with lib.maintainers; [ netcrns ]; }; } diff --git a/pkgs/by-name/mo/movit/package.nix b/pkgs/by-name/mo/movit/package.nix index 7cb3d825862e..8f68f323b859 100644 --- a/pkgs/by-name/mo/movit/package.nix +++ b/pkgs/by-name/mo/movit/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "High-performance, high-quality video filters for the GPU"; homepage = "https://movit.sesse.net"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mo/mozc/package.nix b/pkgs/by-name/mo/mozc/package.nix index f5773a640f0c..b0eb6f71c01c 100644 --- a/pkgs/by-name/mo/mozc/package.nix +++ b/pkgs/by-name/mo/mozc/package.nix @@ -101,14 +101,14 @@ buildBazelPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { isIbusEngine = true; description = "Japanese input method from Google"; mainProgram = "mozc_emacs_helper"; homepage = "https://github.com/google/mozc"; - license = licenses.free; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.free; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pineapplehunter ]; }; diff --git a/pkgs/by-name/mo/mozlz4a/package.nix b/pkgs/by-name/mo/mozlz4a/package.nix index 24432a59b342..2bc8a4e90a11 100644 --- a/pkgs/by-name/mo/mozlz4a/package.nix +++ b/pkgs/by-name/mo/mozlz4a/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/mozlz4a" ''; - meta = with lib; { + meta = { description = "Compression/decompression utility"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ kira-bruneau pshirshov raskin diff --git a/pkgs/by-name/mo/mozphab/package.nix b/pkgs/by-name/mo/mozphab/package.nix index 6795f2d673af..1e6d8dcf916f 100644 --- a/pkgs/by-name/mo/mozphab/package.nix +++ b/pkgs/by-name/mo/mozphab/package.nix @@ -75,7 +75,7 @@ python3.pkgs.buildPythonApplication rec { "tests/test_sentry.py" ]; - meta = with lib; { + meta = { description = "Phabricator CLI from Mozilla to support submission of a series of commits"; mainProgram = "moz-phab"; longDescription = '' @@ -84,8 +84,8 @@ python3.pkgs.buildPythonApplication rec { submitting series of commits. ''; homepage = "https://moz-conduit.readthedocs.io/en/latest/phabricator-user.html"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mo/mozwire/package.nix b/pkgs/by-name/mo/mozwire/package.nix index 65aa57cb06b4..01d13b59e6cb 100644 --- a/pkgs/by-name/mo/mozwire/package.nix +++ b/pkgs/by-name/mo/mozwire/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-UEo/CSRg1hS/BIEQTEgqfwwz1LAMDdjKwV8bDyspX7o="; - meta = with lib; { + meta = { description = "MozillaVPN configuration manager giving Linux, macOS users (among others), access to MozillaVPN"; homepage = "https://github.com/NilsIrl/MozWire"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ siraben nilsirl ]; diff --git a/pkgs/by-name/mp/mp3cat/package.nix b/pkgs/by-name/mp/mp3cat/package.nix index 3ea25a67912e..6062c67fb13f 100644 --- a/pkgs/by-name/mp/mp3cat/package.nix +++ b/pkgs/by-name/mp/mp3cat/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { "install_bin" ]; - meta = with lib; { + meta = { description = "Command line program which concatenates MP3 files"; longDescription = '' A command line program which concatenates MP3 files, mp3cat @@ -31,9 +31,9 @@ stdenv.mkDerivation rec { in its input stream ''; homepage = "https://github.com/tomclegg/mp3cat"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.omnipotententity ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.omnipotententity ]; + platforms = lib.platforms.all; mainProgram = "mp3cat"; }; } diff --git a/pkgs/by-name/mp/mp3fs/package.nix b/pkgs/by-name/mp/mp3fs/package.nix index 0e9ee3fd0bac..c4b57f293377 100644 --- a/pkgs/by-name/mp/mp3fs/package.nix +++ b/pkgs/by-name/mp/mp3fs/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "FUSE file system that transparently transcodes to MP3"; longDescription = '' A read-only FUSE filesystem which transcodes between audio formats @@ -57,9 +57,9 @@ stdenv.mkDerivation rec { files through simple drag-and-drop in a file browser. ''; homepage = "https://khenriks.github.io/mp3fs/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ Luflosi ]; mainProgram = "mp3fs"; }; } diff --git a/pkgs/by-name/mp/mp3gain/package.nix b/pkgs/by-name/mp/mp3gain/package.nix index d672d58a3563..1d7bd552344d 100644 --- a/pkgs/by-name/mp/mp3gain/package.nix +++ b/pkgs/by-name/mp/mp3gain/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { install -vD mp3gain "$out/bin/mp3gain" ''; - meta = with lib; { + meta = { description = "Lossless mp3 normalizer with statistical analysis"; homepage = "https://mp3gain.sourceforge.net/"; - license = licenses.lgpl21; - platforms = platforms.unix; - maintainers = with maintainers; [ devhell ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ devhell ]; mainProgram = "mp3gain"; }; } diff --git a/pkgs/by-name/mp/mp4fpsmod/package.nix b/pkgs/by-name/mp/mp4fpsmod/package.nix index 9f8710d38178..2397179a2e8d 100644 --- a/pkgs/by-name/mp/mp4fpsmod/package.nix +++ b/pkgs/by-name/mp/mp4fpsmod/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ./bootstrap.sh ''; - meta = with lib; { + meta = { description = "Tiny mp4 time code editor"; longDescription = '' Tiny mp4 time code editor. You can use this for changing fps, @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { time codes of mp4. ''; inherit (src.meta) homepage; - license = with licenses; [ + license = with lib.licenses; [ # All files are distributed as Public Domain, except for the followings: publicDomain mpl11 # mp4v2 boost # Boost bsd2 # FreeBSD CVS ]; - platforms = platforms.unix; - maintainers = with maintainers; [ huggy ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ huggy ]; mainProgram = "mp4fpsmod"; }; } diff --git a/pkgs/by-name/mp/mpack/package.nix b/pkgs/by-name/mp/mpack/package.nix index 567fb303f7ce..84921bda7216 100644 --- a/pkgs/by-name/mp/mpack/package.nix +++ b/pkgs/by-name/mp/mpack/package.nix @@ -91,9 +91,9 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Utilities for encoding and decoding binary files in MIME"; - license = licenses.free; - maintainers = with maintainers; [ tomodachi94 ]; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ tomodachi94 ]; }; } diff --git a/pkgs/by-name/mp/mpd-discord-rpc/package.nix b/pkgs/by-name/mp/mpd-discord-rpc/package.nix index 431a0677bc31..9793b6f44dd4 100644 --- a/pkgs/by-name/mp/mpd-discord-rpc/package.nix +++ b/pkgs/by-name/mp/mpd-discord-rpc/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Rust application which displays your currently playing song / album / artist from MPD in Discord using Rich Presence"; homepage = "https://github.com/JakeStanger/mpd-discord-rpc/"; changelog = "https://github.com/JakeStanger/mpd-discord-rpc/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; mainProgram = "mpd-discord-rpc"; }; } diff --git a/pkgs/by-name/mp/mpd-mpris/package.nix b/pkgs/by-name/mp/mpd-mpris/package.nix index c3daa6ae4f38..8abed8f15f53 100644 --- a/pkgs/by-name/mp/mpd-mpris/package.nix +++ b/pkgs/by-name/mp/mpd-mpris/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { install -Dm644 mpd-mpris.desktop $out/etc/xdg/autostart/mpd-mpris.desktop ''; - meta = with lib; { + meta = { description = "Implementation of the MPRIS protocol for MPD"; homepage = "https://github.com/natsukagami/mpd-mpris"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "mpd-mpris"; }; } diff --git a/pkgs/by-name/mp/mpd-notification/package.nix b/pkgs/by-name/mp/mpd-notification/package.nix index 1f7c4369c234..993d1952f164 100644 --- a/pkgs/by-name/mp/mpd-notification/package.nix +++ b/pkgs/by-name/mp/mpd-notification/package.nix @@ -53,15 +53,15 @@ stdenv.mkDerivation rec { substituteInPlace systemd/mpd-notification.service --replace /usr $out ''; - meta = with lib; { + meta = { description = "Notifications for mpd"; homepage = "https://github.com/eworm-de/mpd-notification"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ CaitlinDavitt matthiasbeyer ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "mpd-notification"; }; } diff --git a/pkgs/by-name/mp/mpd-touch-screen-gui/package.nix b/pkgs/by-name/mp/mpd-touch-screen-gui/package.nix index 31a47126dfc4..6777331a99e5 100644 --- a/pkgs/by-name/mp/mpd-touch-screen-gui/package.nix +++ b/pkgs/by-name/mp/mpd-touch-screen-gui/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Small MPD client that let's you view covers and has controls suitable for small touchscreens"; homepage = "https://github.com/muesli4/mpd-touch-screen-gui"; # See: https://github.com/muesli4/mpd-touch-screen-gui/tree/master/LICENSES - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/mp/mpdas/package.nix b/pkgs/by-name/mp/mpdas/package.nix index c1e9c88bdb5d..3cb3a3281b1a 100644 --- a/pkgs/by-name/mp/mpdas/package.nix +++ b/pkgs/by-name/mp/mpdas/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Music Player Daemon AudioScrobbler"; homepage = "https://50hz.ws/mpdas/"; - license = licenses.bsd3; - maintainers = [ maintainers.taketwo ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.taketwo ]; + platforms = lib.platforms.all; mainProgram = "mpdas"; }; } diff --git a/pkgs/by-name/mp/mpdscribble/package.nix b/pkgs/by-name/mp/mpdscribble/package.nix index 0d60127161fc..e957afda27af 100644 --- a/pkgs/by-name/mp/mpdscribble/package.nix +++ b/pkgs/by-name/mp/mpdscribble/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { ] ++ lib.optional stdenv.hostPlatform.isLinux systemd; - meta = with lib; { + meta = { description = "MPD client which submits info about tracks being played to a scrobbler"; homepage = "https://www.musicpd.org/clients/mpdscribble/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.sohalt ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.sohalt ]; + platforms = lib.platforms.unix; mainProgram = "mpdscribble"; }; } diff --git a/pkgs/by-name/mp/mpifileutils/package.nix b/pkgs/by-name/mp/mpifileutils/package.nix index ddb67dd5d5d0..e8a8899324e7 100644 --- a/pkgs/by-name/mp/mpifileutils/package.nix +++ b/pkgs/by-name/mp/mpifileutils/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 3.1)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Suite of MPI-based tools to manage large datasets"; homepage = "https://hpc.github.io/mpifileutils"; - platforms = platforms.linux; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/mp/mpop/package.nix b/pkgs/by-name/mp/mpop/package.nix index 31645187b5bb..d9e8ee5ac8ef 100644 --- a/pkgs/by-name/mp/mpop/package.nix +++ b/pkgs/by-name/mp/mpop/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { ] ++ lib.optional stdenv.hostPlatform.isDarwin "--with-macosx-keyring"; - meta = with lib; { + meta = { description = "POP3 mail retrieval agent"; homepage = "https://marlam.de/mpop"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mp/mprime/package.nix b/pkgs/by-name/mp/mprime/package.nix index bc4e505d54f6..989d5ba7a260 100644 --- a/pkgs/by-name/mp/mprime/package.nix +++ b/pkgs/by-name/mp/mprime/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { install -Dm555 -t $out/bin ${srcDir}/mprime ''; - meta = with lib; { + meta = { description = "Mersenne prime search / System stability tester"; longDescription = '' MPrime is the Linux command-line interface version of Prime95, to be run @@ -80,14 +80,14 @@ stdenv.mkDerivation rec { homepage = "https://www.mersenne.org/"; # Unfree, because of a license requirement to share prize money if you find # a suitable prime. http://www.mersenne.org/legal/#EULA - license = licenses.unfree; + license = lib.licenses.unfree; # Untested on linux-32 and osx. Works in theory. platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; - maintainers = with maintainers; [ dstremur ]; + maintainers = with lib.maintainers; [ dstremur ]; mainProgram = "mprime"; }; } diff --git a/pkgs/by-name/mp/mpris-notifier/package.nix b/pkgs/by-name/mp/mpris-notifier/package.nix index b71369d57d12..99a51b6a1a84 100644 --- a/pkgs/by-name/mp/mpris-notifier/package.nix +++ b/pkgs/by-name/mp/mpris-notifier/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-lM3co7akhLoFarprbnqladSzK+OkysduEe6uXpAoCwU="; - meta = with lib; { + meta = { description = "Dependency-light, highly-customizable, XDG desktop notification generator for MPRIS status changes"; homepage = "https://github.com/l1na-forever/mpris-notifier"; - license = licenses.mit; - maintainers = with maintainers; [ leixb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leixb ]; mainProgram = "mpris-notifier"; }; } diff --git a/pkgs/by-name/mp/mpris-scrobbler/package.nix b/pkgs/by-name/mp/mpris-scrobbler/package.nix index 1e81a7ad8f88..47824af4f687 100644 --- a/pkgs/by-name/mp/mpris-scrobbler/package.nix +++ b/pkgs/by-name/mp/mpris-scrobbler/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Minimalistic scrobbler for ListenBrainz, libre.fm, & last.fm"; homepage = "https://github.com/mariusor/mpris-scrobbler"; - license = licenses.mit; - maintainers = with maintainers; [ emantor ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emantor ]; + platforms = lib.platforms.unix; mainProgram = "mpris-scrobbler"; }; } diff --git a/pkgs/by-name/mp/mprisence/package.nix b/pkgs/by-name/mp/mprisence/package.nix index 136b253d3dff..57cb04ca1244 100644 --- a/pkgs/by-name/mp/mprisence/package.nix +++ b/pkgs/by-name/mp/mprisence/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage (finalAttrs: { openssl ]; - meta = with lib; { + meta = { description = "Highly customizable Discord Rich Presence for MPRIS media players on Linux"; homepage = "https://github.com/lazykern/mprisence"; - license = licenses.mit; - maintainers = with maintainers; [ toasteruwu ]; - sourceProvenance = with sourceTypes; [ fromSource ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ toasteruwu ]; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; mainProgram = "mprisence"; }; }) diff --git a/pkgs/by-name/mp/mpv-shim-default-shaders/package.nix b/pkgs/by-name/mp/mpv-shim-default-shaders/package.nix index 1c46eae6d6e0..f036332f6394 100644 --- a/pkgs/by-name/mp/mpv-shim-default-shaders/package.nix +++ b/pkgs/by-name/mp/mpv-shim-default-shaders/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { cp -r shaders *.json $out/share/${pname} ''; - meta = with lib; { + meta = { homepage = "https://github.com/iwalton3/default-shader-pack"; description = "Preconfigured set of MPV shaders and configurations for MPV Shim media clients"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit unlicense ]; - maintainers = with maintainers; [ devusb ]; + maintainers = with lib.maintainers; [ devusb ]; }; } diff --git a/pkgs/by-name/mp/mpvpaper/package.nix b/pkgs/by-name/mp/mpvpaper/package.nix index e2897d6558a0..643e2a375375 100644 --- a/pkgs/by-name/mp/mpvpaper/package.nix +++ b/pkgs/by-name/mp/mpvpaper/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { installManPage ../mpvpaper.1 ''; - meta = with lib; { + meta = { description = "Video wallpaper program for wlroots based wayland compositors"; homepage = "https://github.com/GhostNaN/mpvpaper"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; mainProgram = "mpvpaper"; - maintainers = with maintainers; [ atila ]; + maintainers = with lib.maintainers; [ atila ]; }; } diff --git a/pkgs/by-name/mp/mpy-utils/package.nix b/pkgs/by-name/mp/mpy-utils/package.nix index a79791bdfdc0..b78d65c84061 100644 --- a/pkgs/by-name/mp/mpy-utils/package.nix +++ b/pkgs/by-name/mp/mpy-utils/package.nix @@ -20,11 +20,11 @@ python3Packages.buildPythonApplication rec { pyserial ]; - meta = with lib; { + meta = { description = "MicroPython development utility programs"; homepage = "https://github.com/nickzoic/mpy-utils"; - license = licenses.mit; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aciceri ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/mq/mqtt_cpp/package.nix b/pkgs/by-name/mq/mqtt_cpp/package.nix index 20510ef61d28..1df6bc114e37 100644 --- a/pkgs/by-name/mq/mqtt_cpp/package.nix +++ b/pkgs/by-name/mq/mqtt_cpp/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ boost ]; - meta = with lib; { + meta = { description = "MQTT client/server for C++14 based on Boost.Asio"; homepage = "https://github.com/redboltz/mqtt_cpp"; - license = licenses.boost; - maintainers = with maintainers; [ spalf ]; - platforms = platforms.unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ spalf ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/mq/mqttmultimeter/package.nix b/pkgs/by-name/mq/mqttmultimeter/package.nix index 67aa9b13dbfd..a860c28d954e 100644 --- a/pkgs/by-name/mq/mqttmultimeter/package.nix +++ b/pkgs/by-name/mq/mqttmultimeter/package.nix @@ -57,11 +57,11 @@ buildDotnetModule rec { }) ]; - meta = with lib; { + meta = { mainProgram = builtins.head executables; description = "MQTT traffic monitor"; - license = licenses.free; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mr/mrbayes/package.nix b/pkgs/by-name/mr/mrbayes/package.nix index b8c899d0bd3e..64a70846bf45 100644 --- a/pkgs/by-name/mr/mrbayes/package.nix +++ b/pkgs/by-name/mr/mrbayes/package.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { sha256 = "sha256-pkkxZ6YHRn/I1SJpT9A+EK4S5hWGmFdcDBJS0zh5mLA="; }; - meta = with lib; { + meta = { description = "Bayesian Inference of Phylogeny"; mainProgram = "mb"; longDescription = '' @@ -28,8 +28,8 @@ stdenv.mkDerivation rec { MCMC) to approximate the posterior probabilities of trees. ''; maintainers = [ ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://nbisweden.github.io/MrBayes/"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mr/mro-unicode/package.nix b/pkgs/by-name/mr/mro-unicode/package.nix index 8c613e11e84c..8b87d66f2cb4 100644 --- a/pkgs/by-name/mr/mro-unicode/package.nix +++ b/pkgs/by-name/mr/mro-unicode/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/phjamr/MroUnicode"; description = "Unicode-compliant Mro font"; - maintainers = with maintainers; [ mathnerd314 ]; - license = licenses.ofl; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mathnerd314 ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mr/mrrescue/package.nix b/pkgs/by-name/mr/mrrescue/package.nix index 48052f53b47b..d0ad259680d4 100644 --- a/pkgs/by-name/mr/mrrescue/package.nix +++ b/pkgs/by-name/mr/mrrescue/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation { ln -s ${desktopItem}/share/applications/* $out/share/applications/ ''; - meta = with lib; { + meta = { description = "Arcade-style fire fighting game"; mainProgram = "mrrescue"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.zlib; + platforms = lib.platforms.linux; + license = lib.licenses.zlib; downloadPage = "http://tangramgames.dk/games/mrrescue"; }; diff --git a/pkgs/by-name/mr/mrsh/package.nix b/pkgs/by-name/mr/mrsh/package.nix index 166da7bf10bf..a9a8a1ef3221 100644 --- a/pkgs/by-name/mr/mrsh/package.nix +++ b/pkgs/by-name/mr/mrsh/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "Minimal POSIX shell"; mainProgram = "mrsh"; homepage = "https://mrsh.sh"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.unix; }; passthru = { diff --git a/pkgs/by-name/mr/mrtg/package.nix b/pkgs/by-name/mr/mrtg/package.nix index c7cb5d605fba..c8bb63a2859e 100644 --- a/pkgs/by-name/mr/mrtg/package.nix +++ b/pkgs/by-name/mr/mrtg/package.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/mrtg --set LANG C ''; - meta = with lib; { + meta = { description = "Multi Router Traffic Grapher"; homepage = "https://oss.oetiker.ch/mrtg/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ robberer usovalx ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mr/mrtrix/package.nix b/pkgs/by-name/mr/mrtrix/package.nix index 1f24bc209c59..07345b1933ad 100644 --- a/pkgs/by-name/mr/mrtrix/package.nix +++ b/pkgs/by-name/mr/mrtrix/package.nix @@ -126,12 +126,12 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "https://github.com/MRtrix3/mrtrix3"; description = "Suite of tools for diffusion imaging"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.linux; - license = licenses.mpl20; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.linux; + license = lib.licenses.mpl20; }; }) diff --git a/pkgs/by-name/mr/mruby/package.nix b/pkgs/by-name/mr/mruby/package.nix index f5ac1c1fb3b4..cce569c26c9c 100644 --- a/pkgs/by-name/mr/mruby/package.nix +++ b/pkgs/by-name/mr/mruby/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Embeddable implementation of the Ruby language"; homepage = "https://mruby.org"; - maintainers = with maintainers; [ nicknovitski ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ nicknovitski ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "mruby"; }; }) diff --git a/pkgs/by-name/ms/msalsdk-dbusclient/package.nix b/pkgs/by-name/ms/msalsdk-dbusclient/package.nix index c38bbf685b41..70fa05c2a30b 100644 --- a/pkgs/by-name/ms/msalsdk-dbusclient/package.nix +++ b/pkgs/by-name/ms/msalsdk-dbusclient/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { ''; passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Microsoft Authentication Library cross platform Dbus client for talking to microsoft-identity-broker"; homepage = "https://github.com/AzureAD/microsoft-authentication-library-for-cpp"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" ]; maintainers = with lib.maintainers; [ rhysmdnz ]; }; diff --git a/pkgs/by-name/ms/msbuild/package.nix b/pkgs/by-name/ms/msbuild/package.nix index 80c3113ddaa8..6d8010e4e0cb 100644 --- a/pkgs/by-name/ms/msbuild/package.nix +++ b/pkgs/by-name/ms/msbuild/package.nix @@ -148,16 +148,16 @@ mkPackage rec { ${mono}/bin/mono Helloworld.exe | grep "Hello, world!" ''; - meta = with lib; { + meta = { description = "Mono version of Microsoft Build Engine, the build platform for .NET, and Visual Studio"; mainProgram = "msbuild"; homepage = "https://github.com/mono/msbuild"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode # dependencies ]; - license = licenses.mit; - maintainers = with maintainers; [ jdanek ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jdanek ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ms/mscompress/package.nix b/pkgs/by-name/ms/mscompress/package.nix index c6974027cafb..d639f68949c1 100644 --- a/pkgs/by-name/ms/mscompress/package.nix +++ b/pkgs/by-name/ms/mscompress/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation (finalAttrs: { install -Dm444 -t $out/share/doc/mscompress ChangeLog README TODO ''; - meta = with lib; { + meta = { description = ''Microsoft "compress.exe/expand.exe" compatible (de)compressor''; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ms/msfpc/package.nix b/pkgs/by-name/ms/msfpc/package.nix index 5f4b614ba4c0..92cee31e2529 100644 --- a/pkgs/by-name/ms/msfpc/package.nix +++ b/pkgs/by-name/ms/msfpc/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "MSFvenom Payload Creator"; mainProgram = "msfpc"; homepage = "https://github.com/g0tmi1k/msfpc"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ms/msgpack-c/package.nix b/pkgs/by-name/ms/msgpack-c/package.nix index afa7ea3581a3..2e74d57a41a7 100644 --- a/pkgs/by-name/ms/msgpack-c/package.nix +++ b/pkgs/by-name/ms/msgpack-c/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; - meta = with lib; { + meta = { description = "MessagePack implementation for C"; homepage = "https://github.com/msgpack/msgpack-c"; changelog = "https://github.com/msgpack/msgpack-c/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.boost; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ nickcao ]; }; }) diff --git a/pkgs/by-name/ms/msgpack-cxx/package.nix b/pkgs/by-name/ms/msgpack-cxx/package.nix index 613ac38e322e..02789eb707ae 100644 --- a/pkgs/by-name/ms/msgpack-cxx/package.nix +++ b/pkgs/by-name/ms/msgpack-cxx/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; - meta = with lib; { + meta = { description = "MessagePack implementation for C++"; homepage = "https://github.com/msgpack/msgpack-c"; changelog = "https://github.com/msgpack/msgpack-c/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.boost; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ nickcao ]; }; }) diff --git a/pkgs/by-name/ms/msgpuck/package.nix b/pkgs/by-name/ms/msgpuck/package.nix index 85cdb0859429..0d0745d9f0bf 100644 --- a/pkgs/by-name/ms/msgpuck/package.nix +++ b/pkgs/by-name/ms/msgpuck/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_policy(SET CMP0037 OLD)" "cmake_policy(SET CMP0037 NEW)" ''; - meta = with lib; { + meta = { description = "Simple and efficient MsgPack binary serialization library in a self-contained header file"; homepage = "https://github.com/rtsisyk/msgpuck"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/by-name/ms/msgraph-cli/package.nix b/pkgs/by-name/ms/msgraph-cli/package.nix index b2e3711a189e..6c166bf6f684 100644 --- a/pkgs/by-name/ms/msgraph-cli/package.nix +++ b/pkgs/by-name/ms/msgraph-cli/package.nix @@ -26,12 +26,12 @@ buildDotnetModule rec { runtimeDeps = [ libsecret ]; passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { mainProgram = "mgc"; description = "Microsoft Graph CLI"; homepage = "https://github.com/microsoftgraph/msgraph-cli"; - license = licenses.mit; - maintainers = with maintainers; [ nazarewk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nazarewk ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/by-name/ms/msgviewer/package.nix b/pkgs/by-name/ms/msgviewer/package.nix index 37c1a633d24c..384d29e8c82d 100644 --- a/pkgs/by-name/ms/msgviewer/package.nix +++ b/pkgs/by-name/ms/msgviewer/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { unzip ]; - meta = with lib; { + meta = { description = "Viewer for .msg files (MS Outlook)"; mainProgram = "msgviewer"; homepage = "https://www.washington.edu/alpine/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ms/msilbc/package.nix b/pkgs/by-name/ms/msilbc/package.nix index 8af8f031323d..890ec043497d 100644 --- a/pkgs/by-name/ms/msilbc/package.nix +++ b/pkgs/by-name/ms/msilbc/package.nix @@ -29,9 +29,9 @@ stdenv.mkDerivation rec { "MEDIASTREAMER_CFLAGS=-I${linphonePackages.mediastreamer2}/include" ]; - meta = with lib; { + meta = { description = "Mediastreamer plugin for the iLBC audio codec"; - platforms = platforms.linux; - license = licenses.gpl2; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/ms/msitools/package.nix b/pkgs/by-name/ms/msitools/package.nix index f210adf14ff4..91adf8096d03 100644 --- a/pkgs/by-name/ms/msitools/package.nix +++ b/pkgs/by-name/ms/msitools/package.nix @@ -58,16 +58,16 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Set of programs to inspect and build Windows Installer (.MSI) files"; homepage = "https://gitlab.gnome.org/GNOME/msitools"; - license = with licenses; [ + license = with lib.licenses; [ # Library lgpl21Plus # Tools gpl2Plus ]; - maintainers = with maintainers; [ PlushBeaver ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ PlushBeaver ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ms/msldapdump/package.nix b/pkgs/by-name/ms/msldapdump/package.nix index 3ef7a515e2cf..49fa39269641 100644 --- a/pkgs/by-name/ms/msldapdump/package.nix +++ b/pkgs/by-name/ms/msldapdump/package.nix @@ -38,10 +38,10 @@ python3.pkgs.buildPythonApplication { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "LDAP enumeration tool"; homepage = "https://github.com/dievus/msLDAPDump"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ms/mslink/package.nix b/pkgs/by-name/ms/mslink/package.nix index f52167c3162e..573364a1d939 100644 --- a/pkgs/by-name/ms/mslink/package.nix +++ b/pkgs/by-name/ms/mslink/package.nix @@ -24,12 +24,12 @@ gccStdenv.mkDerivation rec { install -D mslink $out/bin/mslink ''; - meta = with lib; { + meta = { description = "Create Windows Shortcut Files (.LNK) without using Windows"; homepage = "http://www.mamachine.org/mslink/index.en.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mkg20001 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mkg20001 ]; + platforms = lib.platforms.unix; mainProgram = "mslink"; }; } diff --git a/pkgs/by-name/ms/msmtp/package.nix b/pkgs/by-name/ms/msmtp/package.nix index 1e487ba0d3e9..f1ce73f1f959 100644 --- a/pkgs/by-name/ms/msmtp/package.nix +++ b/pkgs/by-name/ms/msmtp/package.nix @@ -40,12 +40,12 @@ let hash = "sha256-ofyDtP7KgTKX/O1O4g3OcDwgihDveAiJ5s5GQtSqf28="; }; - meta = with lib; { + meta = { description = "Simple and easy to use SMTP client with excellent sendmail compatibility"; homepage = "https://marlam.de/msmtp/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "msmtp"; }; diff --git a/pkgs/by-name/ms/msr-tools/package.nix b/pkgs/by-name/ms/msr-tools/package.nix index 6dbac3bbc4b8..8e6b0c1dd1e3 100644 --- a/pkgs/by-name/ms/msr-tools/package.nix +++ b/pkgs/by-name/ms/msr-tools/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Tools to read/write from/to MSR CPU registers on Linux"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/by-name/ms/msr/package.nix b/pkgs/by-name/ms/msr/package.nix index e99d2cec9736..8fa9f26f3017 100644 --- a/pkgs/by-name/ms/msr/package.nix +++ b/pkgs/by-name/ms/msr/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.etallen.com/msr.html"; description = "Linux tool to display or modify x86 model-specific registers (MSRs)"; mainProgram = "msr"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; platforms = [ "i686-linux" diff --git a/pkgs/by-name/ms/mstflint/package.nix b/pkgs/by-name/ms/mstflint/package.nix index b3e6426eedd4..1683fb968e3a 100644 --- a/pkgs/by-name/ms/mstflint/package.nix +++ b/pkgs/by-name/ms/mstflint/package.nix @@ -120,14 +120,14 @@ stdenv.mkDerivation rec { dontDisableStatic = true; # the build fails without this. should probably be reported upstream - meta = with lib; { + meta = { description = "Open source version of Mellanox Firmware Tools (MFT)"; homepage = "https://github.com/Mellanox/mstflint"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only bsd2 ]; - maintainers = with maintainers; [ thillux ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ thillux ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ms/mstore/package.nix b/pkgs/by-name/ms/mstore/package.nix index 0507fc6222b3..91de4859b7d9 100644 --- a/pkgs/by-name/ms/mstore/package.nix +++ b/pkgs/by-name/ms/mstore/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { patchShebangs --build config/install-mod.py ''; - meta = with lib; { + meta = { description = "Molecular structure store for testing"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/grimme-lab/mstore"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/ms/mstpd/package.nix b/pkgs/by-name/ms/mstpd/package.nix index 1dd6c8600653..7a782267e06c 100644 --- a/pkgs/by-name/ms/mstpd/package.nix +++ b/pkgs/by-name/ms/mstpd/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { "--libexecdir=$(out)/lib" ]; - meta = with lib; { + meta = { description = "Multiple Spanning Tree Protocol daemon"; homepage = "https://github.com/mstpd/mstpd"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ms/mswatch/package.nix b/pkgs/by-name/ms/mswatch/package.nix index 68a1f9bed8ac..21d65737dd32 100644 --- a/pkgs/by-name/ms/mswatch/package.nix +++ b/pkgs/by-name/ms/mswatch/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { glib ]; - meta = with lib; { + meta = { description = "Command-line Linux utility that efficiently directs mail synchronization between a pair of mailboxes"; homepage = "https://mswatch.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; }; }) diff --git a/pkgs/by-name/mt/mtdev/package.nix b/pkgs/by-name/mt/mtdev/package.nix index b2f2a25641a1..1da2deb5850c 100644 --- a/pkgs/by-name/mt/mtdev/package.nix +++ b/pkgs/by-name/mt/mtdev/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://bitmath.org/code/mtdev/"; description = "Multitouch Protocol Translation Library"; mainProgram = "mtdev-test"; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { tracking, type A with contact tracking, or type B with contact tracking. See the kernel documentation for further details. ''; - license = licenses.mit; - platforms = with platforms; freebsd ++ linux; + license = lib.licenses.mit; + platforms = with lib.platforms; freebsd ++ linux; }; } diff --git a/pkgs/by-name/mt/mtdutils/package.nix b/pkgs/by-name/mt/mtdutils/package.nix index 0ee2651116e6..0bd438517c9d 100644 --- a/pkgs/by-name/mt/mtdutils/package.nix +++ b/pkgs/by-name/mt/mtdutils/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { mv include $dev/ ''; - meta = with lib; { + meta = { description = "Tools for MTD filesystems"; downloadPage = "https://git.infradead.org/mtd-utils.git"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "http://www.linux-mtd.infradead.org/"; maintainers = with lib.maintainers; [ skeuchel ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/mt/mtm/package.nix b/pkgs/by-name/mt/mtm/package.nix index 52ccbde12e84..c7a897ef70d7 100644 --- a/pkgs/by-name/mt/mtm/package.nix +++ b/pkgs/by-name/mt/mtm/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { echo "$terminfo" >> $out/nix-support/propagated-user-env-packages ''; - meta = with lib; { + meta = { description = "Perhaps the smallest useful terminal multiplexer in the world"; homepage = "https://github.com/deadpixi/mtm"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "mtm"; }; diff --git a/pkgs/by-name/mt/mtools/package.nix b/pkgs/by-name/mt/mtools/package.nix index cffe937a4d64..8cfc3dcfab0d 100644 --- a/pkgs/by-name/mt/mtools/package.nix +++ b/pkgs/by-name/mt/mtools/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/mtools/"; description = "Utilities to access MS-DOS disks"; - platforms = platforms.unix; - license = licenses.gpl3; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/mt/mtpfs/package.nix b/pkgs/by-name/mt/mtpfs/package.nix index 707ce295796b..e3bdb418c772 100644 --- a/pkgs/by-name/mt/mtpfs/package.nix +++ b/pkgs/by-name/mt/mtpfs/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { sha256 = "07acrqb17kpif2xcsqfqh5j4axvsa4rnh6xwnpqab5b9w5ykbbqv"; }; - meta = with lib; { + meta = { homepage = "https://github.com/cjd/mtpfs"; description = "FUSE Filesystem providing access to MTP devices"; - platforms = platforms.all; - license = licenses.gpl3; - maintainers = [ maintainers.qknight ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.qknight ]; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/mtpfs.x86_64-darwin mainProgram = "mtpfs"; }; diff --git a/pkgs/by-name/mt/mtr-exporter/package.nix b/pkgs/by-name/mt/mtr-exporter/package.nix index 4a7f1fae3d7a..3a48974c34ef 100644 --- a/pkgs/by-name/mt/mtr-exporter/package.nix +++ b/pkgs/by-name/mt/mtr-exporter/package.nix @@ -17,14 +17,14 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = '' Mtr-exporter periodically executes mtr to a given host and provides the measured results as prometheus metrics. ''; homepage = "https://github.com/mgumz/mtr-exporter"; - license = licenses.bsd3; - maintainers = with maintainers; [ jakubgs ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jakubgs ]; mainProgram = "mtr-exporter"; }; } diff --git a/pkgs/by-name/mt/mtxclient/package.nix b/pkgs/by-name/mt/mtxclient/package.nix index dba49625017a..75513c76f0c8 100644 --- a/pkgs/by-name/mt/mtxclient/package.nix +++ b/pkgs/by-name/mt/mtxclient/package.nix @@ -55,16 +55,16 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Client API library for the Matrix protocol"; homepage = "https://github.com/Nheko-Reborn/mtxclient"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz pstn rebmit rnhmjoj ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/mu/mucommander/package.nix b/pkgs/by-name/mu/mucommander/package.nix index 5116b5e27641..80dd3c7eae5e 100644 --- a/pkgs/by-name/mu/mucommander/package.nix +++ b/pkgs/by-name/mu/mucommander/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { --set JAVA_HOME ${jdk} ''; - meta = with lib; { + meta = { homepage = "https://www.mucommander.com/"; description = "Cross-platform file manager"; - license = licenses.gpl3; - maintainers = with maintainers; [ jiegec ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ jiegec ]; + platforms = lib.platforms.all; mainProgram = "mucommander"; }; }) diff --git a/pkgs/by-name/mu/muffin/package.nix b/pkgs/by-name/mu/muffin/package.nix index 0844df43a89b..160d5a958725 100644 --- a/pkgs/by-name/mu/muffin/package.nix +++ b/pkgs/by-name/mu/muffin/package.nix @@ -128,12 +128,12 @@ stdenv.mkDerivation rec { patchShebangs src/backends/native/gen-default-modes.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/muffin"; description = "Window management library for the Cinnamon desktop (libmuffin) and its sample WM binary (muffin)"; mainProgram = "muffin"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/mu/mujmap/package.nix b/pkgs/by-name/mu/mujmap/package.nix index 21488c7d1d5c..937770754b8d 100644 --- a/pkgs/by-name/mu/mujmap/package.nix +++ b/pkgs/by-name/mu/mujmap/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { notmuch ]; - meta = with lib; { + meta = { description = "JMAP integration for notmuch mail"; homepage = "https://github.com/elizagamedev/mujmap/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ elizagamedev ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ elizagamedev ]; mainProgram = "mujmap"; }; } diff --git a/pkgs/by-name/mu/mujs/package.nix b/pkgs/by-name/mu/mujs/package.nix index de4b1a95d504..46aa66e1f97c 100644 --- a/pkgs/by-name/mu/mujs/package.nix +++ b/pkgs/by-name/mu/mujs/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { url = "git://git.ghostscript.com/mujs.git"; }; - meta = with lib; { + meta = { homepage = "https://mujs.com/"; description = "Lightweight, embeddable Javascript interpreter"; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; - license = licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; + license = lib.licenses.isc; }; } diff --git a/pkgs/by-name/mu/multicharge/package.nix b/pkgs/by-name/mu/multicharge/package.nix index b5298015d4e1..eb3e1c26fcda 100644 --- a/pkgs/by-name/mu/multicharge/package.nix +++ b/pkgs/by-name/mu/multicharge/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { export OMP_NUM_THREADS=2 ''; - meta = with lib; { + meta = { description = "Electronegativity equilibration model for atomic partial charges"; mainProgram = "multicharge"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/grimme-lab/multicharge"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/mu/multilockscreen/package.nix b/pkgs/by-name/mu/multilockscreen/package.nix index ba3f74931018..9a22f7b521f2 100644 --- a/pkgs/by-name/mu/multilockscreen/package.nix +++ b/pkgs/by-name/mu/multilockscreen/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/multilockscreen" --prefix PATH : "${binPath}" ''; - meta = with lib; { + meta = { description = "Wrapper script for i3lock-color"; mainProgram = "multilockscreen"; longDescription = '' @@ -63,8 +63,8 @@ stdenv.mkDerivation rec { It allows you to cache background images for i3lock-color with a variety of different effects and adds a stylish indicator. ''; homepage = "https://github.com/jeffmhubbard/multilockscreen"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ kylesferrazza ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kylesferrazza ]; }; } diff --git a/pkgs/by-name/mu/multimon-ng/package.nix b/pkgs/by-name/mu/multimon-ng/package.nix index fea28eb14143..7145ca6686dd 100644 --- a/pkgs/by-name/mu/multimon-ng/package.nix +++ b/pkgs/by-name/mu/multimon-ng/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/multimon-ng --prefix PATH : "${lib.makeBinPath [ sox ]}" ''; - meta = with lib; { + meta = { description = "Digital baseband audio protocol decoder"; mainProgram = "multimon-ng"; longDescription = '' @@ -56,8 +56,8 @@ stdenv.mkDerivation rec { ZVEI3 DZVEI PZVEI EEA EIA CCIR MORSE CW ''; homepage = "https://github.com/EliasOenal/multimon-ng"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ markuskowa ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ markuskowa ]; }; } diff --git a/pkgs/by-name/mu/multirun/package.nix b/pkgs/by-name/mu/multirun/package.nix index 1ecc3c8f9e9e..abcdac4a5c44 100644 --- a/pkgs/by-name/mu/multirun/package.nix +++ b/pkgs/by-name/mu/multirun/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { cmake ]; - meta = with lib; { + meta = { description = "Minimalist init process designed for Docker"; homepage = "https://github.com/nicolas-van/multirun"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "multirun"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mu/multus-cni/package.nix b/pkgs/by-name/mu/multus-cni/package.nix index 040accb1f5df..7ea0af076059 100644 --- a/pkgs/by-name/mu/multus-cni/package.nix +++ b/pkgs/by-name/mu/multus-cni/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "Multus CNI is a container network interface (CNI) plugin for Kubernetes that enables attaching multiple network interfaces to pods"; homepage = "https://github.com/k8snetworkplumbingwg/multus-cni"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ onixie kashw2 ]; diff --git a/pkgs/by-name/mu/munge/package.nix b/pkgs/by-name/mu/munge/package.nix index 1fbd0e3947d6..47551a1755b5 100644 --- a/pkgs/by-name/mu/munge/package.nix +++ b/pkgs/by-name/mu/munge/package.nix @@ -65,17 +65,17 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.nixos = nixosTests.munge; - meta = with lib; { + meta = { description = '' An authentication service for creating and validating credentials ''; license = [ # MUNGE - licenses.gpl3Plus + lib.licenses.gpl3Plus # libmunge - licenses.lgpl3Plus + lib.licenses.lgpl3Plus ]; - platforms = platforms.unix; - maintainers = [ maintainers.rickynils ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.rickynils ]; }; }) diff --git a/pkgs/by-name/mu/munin/package.nix b/pkgs/by-name/mu/munin/package.nix index 7041ac25a64c..26cb48d9d5bc 100644 --- a/pkgs/by-name/mu/munin/package.nix +++ b/pkgs/by-name/mu/munin/package.nix @@ -164,7 +164,7 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) munin; }; - meta = with lib; { + meta = { description = "Networked resource monitoring tool"; longDescription = '' Munin is a monitoring tool that surveys all your computers and remembers @@ -173,8 +173,8 @@ stdenv.mkDerivation rec { to kill our performance?' problems. ''; homepage = "https://munin-monitoring.org/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.bjornfor ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.bjornfor ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/mu/muonlang/package.nix b/pkgs/by-name/mu/muonlang/package.nix index 51165756729e..1bac783c94e0 100644 --- a/pkgs/by-name/mu/muonlang/package.nix +++ b/pkgs/by-name/mu/muonlang/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation { --add-flags $out/share/mu/lib/core.mu ''; - meta = with lib; { + meta = { description = "Modern low-level programming language"; homepage = "https://github.com/nickmqb/muon"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mu/mup/package.nix b/pkgs/by-name/mu/mup/package.nix index d119bc58788d..6942b8bff92a 100644 --- a/pkgs/by-name/mu/mup/package.nix +++ b/pkgs/by-name/mu/mup/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation { enableParallelBuilding = false; # Undeclared dependencies + https://stackoverflow.com/a/19822767/1687334 for prolog.ps. - meta = with lib; { + meta = { homepage = "http://www.arkkra.com/"; description = "Music typesetting program (ASCII to PostScript and MIDI)"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mu/muparserx/package.nix b/pkgs/by-name/mu/muparserx/package.nix index e1a3fda9d1f4..628026382cdb 100644 --- a/pkgs/by-name/mu/muparserx/package.nix +++ b/pkgs/by-name/mu/muparserx/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { description = "C++ Library for Parsing Expressions with Strings, Complex Numbers, Vectors, Matrices and more"; homepage = "https://beltoforion.de/en/muparserx/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mu/mupen64plus/package.nix b/pkgs/by-name/mu/mupen64plus/package.nix index ccd246008c42..a1b0171e17d5 100644 --- a/pkgs/by-name/mu/mupen64plus/package.nix +++ b/pkgs/by-name/mu/mupen64plus/package.nix @@ -52,9 +52,9 @@ stdenv.mkDerivation rec { dash m64p_install.sh DESTDIR="$out" PREFIX="" ''; - meta = with lib; { + meta = { description = "Nintendo 64 Emulator"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "http://www.mupen64plus.org/"; platforms = [ "x86_64-linux" ]; mainProgram = "mupen64plus"; diff --git a/pkgs/by-name/mu/murex/package.nix b/pkgs/by-name/mu/murex/package.nix index 44b8ce529df5..f2aea1d688f5 100644 --- a/pkgs/by-name/mu/murex/package.nix +++ b/pkgs/by-name/mu/murex/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Bash-like shell and scripting environment with advanced features designed for safety and productivity"; mainProgram = "murex"; homepage = "https://murex.rocks"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dit7ya kashw2 ]; diff --git a/pkgs/by-name/mu/mus/package.nix b/pkgs/by-name/mu/mus/package.nix index 63482b602d14..67e869668300 100644 --- a/pkgs/by-name/mu/mus/package.nix +++ b/pkgs/by-name/mu/mus/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-1ruRKqHW5/MH4THRAozofAROZT6zE3JFKGluuWWa1ms="; - meta = with lib; { + meta = { description = "Pretty good mpd client"; homepage = "https://sr.ht/~nbsp/mus"; - license = licenses.mit; - maintainers = with maintainers; [ nbsp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nbsp ]; mainProgram = "mus"; }; } diff --git a/pkgs/by-name/mu/muscle/package.nix b/pkgs/by-name/mu/muscle/package.nix index 7d85ef8aebdb..f43af73bc8dd 100644 --- a/pkgs/by-name/mu/muscle/package.nix +++ b/pkgs/by-name/mu/muscle/package.nix @@ -29,12 +29,12 @@ gccStdenv.mkDerivation rec { install -m755 -D ${target}/muscle $out/bin/muscle ''; - meta = with lib; { + meta = { description = "Multiple sequence alignment with top benchmark scores scalable to thousands of sequences"; mainProgram = "muscle"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://www.drive5.com/muscle/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ unode ]; }; diff --git a/pkgs/by-name/mu/musl-fts/package.nix b/pkgs/by-name/mu/musl-fts/package.nix index 2e27e29a6af5..f9b3030a8e82 100644 --- a/pkgs/by-name/mu/musl-fts/package.nix +++ b/pkgs/by-name/mu/musl-fts/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/void-linux/musl-fts"; description = "Implementation of fts(3) for musl-libc"; - platforms = platforms.linux; - license = licenses.bsd3; - maintainers = [ maintainers.pjjw ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.pjjw ]; }; } diff --git a/pkgs/by-name/mu/musl-obstack/package.nix b/pkgs/by-name/mu/musl-obstack/package.nix index 31475e66a1f4..3f0a4310c18a 100644 --- a/pkgs/by-name/mu/musl-obstack/package.nix +++ b/pkgs/by-name/mu/musl-obstack/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/void-linux/musl-obstack"; description = "Extraction of the obstack functions and macros from GNU libiberty for use with musl-libc"; - platforms = platforms.unix; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.pjjw ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.pjjw ]; }; } diff --git a/pkgs/by-name/mu/muso/package.nix b/pkgs/by-name/mu/muso/package.nix index bfdf4c19fbb0..76ec9e605175 100644 --- a/pkgs/by-name/mu/muso/package.nix +++ b/pkgs/by-name/mu/muso/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-L0ZQoz9J5Hxg98puk1RbKuybLboIoOsy5qqGnvEPi1U="; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Automatic music sorter (based on ID3 tags)"; mainProgram = "muso"; homepage = "https://github.com/quebin31/muso"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ crertel ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ crertel ]; }; } diff --git a/pkgs/by-name/mu/mustache-go/package.nix b/pkgs/by-name/mu/mustache-go/package.nix index 7e0f27be2769..da26d3688f54 100644 --- a/pkgs/by-name/mu/mustache-go/package.nix +++ b/pkgs/by-name/mu/mustache-go/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/cbroglie/mustache"; description = "Mustache template language in Go"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ Zimmi48 ]; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ Zimmi48 ]; mainProgram = "mustache"; }; } diff --git a/pkgs/by-name/mu/mustache-hpp/package.nix b/pkgs/by-name/mu/mustache-hpp/package.nix index 69e533a2c7d9..39279cf626ff 100644 --- a/pkgs/by-name/mu/mustache-hpp/package.nix +++ b/pkgs/by-name/mu/mustache-hpp/package.nix @@ -22,9 +22,9 @@ stdenv.mkDerivation rec { cp mustache.hpp $out/include ''; - meta = with lib; { + meta = { description = "Mustache text templates for modern C++"; homepage = "https://github.com/kainjow/Mustache"; - license = licenses.boost; + license = lib.licenses.boost; }; } diff --git a/pkgs/by-name/mu/mutest/package.nix b/pkgs/by-name/mu/mutest/package.nix index 976a53aedf52..f6d8a74c8e70 100644 --- a/pkgs/by-name/mu/mutest/package.nix +++ b/pkgs/by-name/mu/mutest/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/ebassi/mutest"; description = "BDD testing framework for C, inspired by Mocha"; - license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mu/mutt-ics/package.nix b/pkgs/by-name/mu/mutt-ics/package.nix index bf8f91015263..1e8a0d7e8a3b 100644 --- a/pkgs/by-name/mu/mutt-ics/package.nix +++ b/pkgs/by-name/mu/mutt-ics/package.nix @@ -21,11 +21,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "mutt_ics" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dmedvinsky/mutt-ics"; description = "Tool to show calendar event details in Mutt"; mainProgram = "mutt-ics"; - license = licenses.mit; - maintainers = with maintainers; [ mh182 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mh182 ]; }; } diff --git a/pkgs/by-name/mu/mutt-wizard/package.nix b/pkgs/by-name/mu/mutt-wizard/package.nix index cf655f0dd1d0..01224aa23f76 100644 --- a/pkgs/by-name/mu/mutt-wizard/package.nix +++ b/pkgs/by-name/mu/mutt-wizard/package.nix @@ -17,11 +17,11 @@ stdenvNoCC.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "System for automatically configuring mutt and isync"; homepage = "https://github.com/LukeSmithxyz/mutt-wizard"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mu/mutt/package.nix b/pkgs/by-name/mu/mutt/package.nix index bd51921ae338..fb2fc651ab50 100644 --- a/pkgs/by-name/mu/mutt/package.nix +++ b/pkgs/by-name/mu/mutt/package.nix @@ -126,12 +126,12 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Small but very powerful text-based mail client"; homepage = "http://www.mutt.org"; mainProgram = "mutt"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/mu/mutter46/package.nix b/pkgs/by-name/mu/mutter46/package.nix index 4802ca437b0d..f215ef9fd523 100644 --- a/pkgs/by-name/mu/mutter46/package.nix +++ b/pkgs/by-name/mu/mutter46/package.nix @@ -204,12 +204,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Window manager for GNOME"; mainProgram = "mutter"; homepage = "https://gitlab.gnome.org/GNOME/mutter"; - license = licenses.gpl2Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/mu/muzika/package.nix b/pkgs/by-name/mu/muzika/package.nix index fe26ba940652..656da15e3f98 100644 --- a/pkgs/by-name/mu/muzika/package.nix +++ b/pkgs/by-name/mu/muzika/package.nix @@ -85,10 +85,10 @@ stdenv.mkDerivation rec { ln -s $out/bin/com.vixalien.muzika $out/bin/muzika ''; - meta = with lib; { + meta = { description = "Elegant music streaming app"; homepage = "https://github.com/vixalien/muzika"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/mv/mvapich/package.nix b/pkgs/by-name/mv/mvapich/package.nix index a35fcca30b54..e26377ee8125 100644 --- a/pkgs/by-name/mv/mvapich/package.nix +++ b/pkgs/by-name/mv/mvapich/package.nix @@ -113,11 +113,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "MPI-3.1 implementation optimized for Infiband transport"; homepage = "https://mvapich.cse.ohio-state.edu"; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mv/mvebu64boot/package.nix b/pkgs/by-name/mv/mvebu64boot/package.nix index 81c190aad231..d33974f73a7e 100644 --- a/pkgs/by-name/mv/mvebu64boot/package.nix +++ b/pkgs/by-name/mv/mvebu64boot/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Boot 64-bit Marvell EBU SoC over UART"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ lukegb ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ lukegb ]; + platforms = lib.platforms.all; mainProgram = "mvebu64boot"; }; } diff --git a/pkgs/by-name/mx/mx-takeover/package.nix b/pkgs/by-name/mx/mx-takeover/package.nix index d3e54e541cc6..f7802d6de0da 100644 --- a/pkgs/by-name/mx/mx-takeover/package.nix +++ b/pkgs/by-name/mx/mx-takeover/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tool to work with DNS MX records"; homepage = "https://github.com/musana/mx-takeover"; changelog = "https://github.com/musana/mx-takeover/releases/tag/v${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "mx-takeover"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/mx/mxnet/package.nix b/pkgs/by-name/mx/mxnet/package.nix index 28635ac2745c..a075a184595b 100644 --- a/pkgs/by-name/mx/mxnet/package.nix +++ b/pkgs/by-name/mx/mxnet/package.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation rec { rm "$out"/lib/*.a ''; - meta = with lib; { + meta = { description = "Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler"; homepage = "https://mxnet.incubator.apache.org/"; maintainers = [ ]; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mx/mxt-app/package.nix b/pkgs/by-name/mx/mxt-app/package.nix index 249194054eed..bf37a9b87997 100644 --- a/pkgs/by-name/mx/mxt-app/package.nix +++ b/pkgs/by-name/mx/mxt-app/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "fortify" ]; - meta = with lib; { + meta = { description = "Command line utility for Atmel maXTouch devices"; homepage = "https://github.com/atmel-maxtouch/mxt-app"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "mxt-app"; }; } diff --git a/pkgs/by-name/my/mya/package.nix b/pkgs/by-name/my/mya/package.nix index 38d6f49ce16f..88811fae12e1 100644 --- a/pkgs/by-name/my/mya/package.nix +++ b/pkgs/by-name/my/mya/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Minimalistic command line interface for fetching user anime data from MyAnimeList"; longDescription = '' Minimalistic command line interface for fetching user anime data from MyAnimeList. @@ -61,9 +61,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://github.com/jmakhack/myanimelist-cli"; changelog = "https://github.com/jmakhack/myanimelist-cli/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; mainProgram = "mya"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/my/mycelium/package.nix b/pkgs/by-name/my/mycelium/package.nix index d1b69d28e244..d1dead302c73 100644 --- a/pkgs/by-name/my/mycelium/package.nix +++ b/pkgs/by-name/my/mycelium/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "End-2-end encrypted IPv6 overlay network"; homepage = "https://github.com/threefoldtech/mycelium"; changelog = "https://github.com/threefoldtech/mycelium/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ flokli matthewcroughan rvdp diff --git a/pkgs/by-name/my/mycrypto/package.nix b/pkgs/by-name/my/mycrypto/package.nix index 04f713d2a30f..670ddfe2e0ad 100644 --- a/pkgs/by-name/my/mycrypto/package.nix +++ b/pkgs/by-name/my/mycrypto/package.nix @@ -39,14 +39,14 @@ appimageTools.wrapType2 { mv $out/share/icons/hicolor/{0x0,256x256} ''; - meta = with lib; { + meta = { description = "Free, open-source interface for interacting with the blockchain"; longDescription = '' MyCrypto is an open-source, client-side tool for generating ether wallets, handling ERC-20 tokens, and interacting with the blockchain more easily. ''; homepage = "https://mycrypto.com"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; maintainers = [ ]; mainProgram = "MyCrypto"; diff --git a/pkgs/by-name/my/mymcplus/package.nix b/pkgs/by-name/my/mymcplus/package.nix index 69bf95eae1f2..2715b129abec 100644 --- a/pkgs/by-name/my/mymcplus/package.nix +++ b/pkgs/by-name/my/mymcplus/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "mymcplus" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~thestr4ng3r/mymcplus"; description = "PlayStation 2 memory card manager"; mainProgram = "mymcplus"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/my/mynewt-newt/package.nix b/pkgs/by-name/my/mynewt-newt/package.nix index 325979f99ffa..c60d6177814b 100644 --- a/pkgs/by-name/my/mynewt-newt/package.nix +++ b/pkgs/by-name/my/mynewt-newt/package.nix @@ -20,7 +20,7 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://mynewt.apache.org/"; description = "Build and package management tool for embedded development"; longDescription = '' @@ -28,7 +28,7 @@ buildGoModule rec { designed for C and C++ applications in embedded contexts. Newt was developed as a part of the Apache Mynewt Operating System. ''; - license = licenses.asl20; - maintainers = with maintainers; [ pjones ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pjones ]; }; } diff --git a/pkgs/by-name/my/mynewt-newtmgr/package.nix b/pkgs/by-name/my/mynewt-newtmgr/package.nix index bf9e547b1040..8fba7a22685e 100644 --- a/pkgs/by-name/my/mynewt-newtmgr/package.nix +++ b/pkgs/by-name/my/mynewt-newtmgr/package.nix @@ -25,15 +25,15 @@ buildGoModule rec { command = "newtmgr version"; }; - meta = with lib; { + meta = { homepage = "https://mynewt.apache.org/"; description = "Tool to communicate with devices running Mynewt OS"; longDescription = '' Newt Manager (newtmgr) an application that enables a user to communicate with and manage remote devices running the Mynewt OS ''; - license = licenses.asl20; - maintainers = with maintainers; [ bezmuth ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bezmuth ]; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/my/myrddin/package.nix b/pkgs/by-name/my/myrddin/package.nix index cd1708ace2cc..6906c6e6204f 100644 --- a/pkgs/by-name/my/myrddin/package.nix +++ b/pkgs/by-name/my/myrddin/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Systems language that is both powerful and fun to use"; homepage = "https://myrlang.org/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; # darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/my/myrescue/package.nix b/pkgs/by-name/my/myrescue/package.nix index 9a53d0397091..754e7e706aef 100644 --- a/pkgs/by-name/my/myrescue/package.nix +++ b/pkgs/by-name/my/myrescue/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Hard disk recovery tool that reads undamaged regions first"; mainProgram = "myrescue"; homepage = "https://myrescue.sourceforge.net"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/my/myrica/package.nix b/pkgs/by-name/my/myrica/package.nix index bba8fde3e867..f49b6cc63291 100644 --- a/pkgs/by-name/my/myrica/package.nix +++ b/pkgs/by-name/my/myrica/package.nix @@ -25,10 +25,10 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://myrica.estable.jp/"; - license = licenses.ofl; - maintainers = with maintainers; [ mikoim ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ mikoim ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/my/mysides/package.nix b/pkgs/by-name/my/mysides/package.nix index acdd4cb5c6aa..348c97e097f5 100644 --- a/pkgs/by-name/my/mysides/package.nix +++ b/pkgs/by-name/my/mysides/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Manage macOS Finder sidebar favorites"; homepage = "https://github.com/mosen/mysides"; - license = licenses.mit; - maintainers = with maintainers; [ tboerger ]; - platforms = platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tboerger ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/my/mysql84/package.nix b/pkgs/by-name/my/mysql84/package.nix index c769361caa97..fffba61effcb 100644 --- a/pkgs/by-name/my/mysql84/package.nix +++ b/pkgs/by-name/my/mysql84/package.nix @@ -113,12 +113,12 @@ stdenv.mkDerivation (finalAttrs: { mysqlVersion = lib.versions.majorMinor finalAttrs.version; }; - meta = with lib; { + meta = { homepage = "https://www.mysql.com/"; description = "World's most popular open source database"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/my/mysql_jdbc/package.nix b/pkgs/by-name/my/mysql_jdbc/package.nix index 8e29368f8f51..062a7579bad6 100644 --- a/pkgs/by-name/my/mysql_jdbc/package.nix +++ b/pkgs/by-name/my/mysql_jdbc/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { url = "https://github.com/mysql/mysql-connector-j.git"; }; - meta = with lib; { + meta = { description = "MySQL Connector/J"; homepage = "https://dev.mysql.com/doc/connector-j/en/"; changelog = "https://dev.mysql.com/doc/relnotes/connector-j/en/"; maintainers = [ ]; - platforms = platforms.unix; - license = licenses.gpl2Only; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Only; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/my/mysqltuner/package.nix b/pkgs/by-name/my/mysqltuner/package.nix index 41d4ba01e5ce..495befde4995 100644 --- a/pkgs/by-name/my/mysqltuner/package.nix +++ b/pkgs/by-name/my/mysqltuner/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Make recommendations for increased performance and stability of MariaDB/MySQL"; homepage = "https://github.com/major/MySQLTuner-perl"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ peterhoeg shamilton ]; diff --git a/pkgs/by-name/my/mystem/package.nix b/pkgs/by-name/my/mystem/package.nix index 0d114dab1f12..b7fa3f708609 100644 --- a/pkgs/by-name/my/mystem/package.nix +++ b/pkgs/by-name/my/mystem/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { patchelf --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) $out/bin/mystem ''; - meta = with lib; { + meta = { description = "Morphological analysis of Russian text"; homepage = "https://yandex.ru/dev/mystem/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "mystem"; diff --git a/pkgs/by-name/my/mystmd/package.nix b/pkgs/by-name/my/mystmd/package.nix index 1c3d41a8c825..841338014853 100644 --- a/pkgs/by-name/my/mystmd/package.nix +++ b/pkgs/by-name/my/mystmd/package.nix @@ -38,11 +38,11 @@ buildNpmPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Command line tools for working with MyST Markdown"; homepage = "https://github.com/executablebooks/mystmd"; changelog = "https://github.com/executablebooks/mystmd/blob/${src.rev}/packages/myst-cli/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "myst"; }; diff --git a/pkgs/by-name/my/myxer/package.nix b/pkgs/by-name/my/myxer/package.nix index 47b763c1fa0c..50b9dea1683a 100644 --- a/pkgs/by-name/my/myxer/package.nix +++ b/pkgs/by-name/my/myxer/package.nix @@ -42,15 +42,15 @@ rustPlatform.buildRustPackage rec { # Currently no tests are implemented, so we avoid building the package twice doCheck = false; - meta = with lib; { + meta = { description = "Modern Volume Mixer for PulseAudio"; homepage = "https://github.com/Aurailus/Myxer"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ erin rster2002 ]; mainProgram = "myxer"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/n2/n2n/package.nix b/pkgs/by-name/n2/n2n/package.nix index 55a7bda111b7..bfd41e8a1800 100644 --- a/pkgs/by-name/n2/n2n/package.nix +++ b/pkgs/by-name/n2/n2n/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { PREFIX = placeholder "out"; - meta = with lib; { + meta = { description = "Peer-to-peer VPN"; homepage = "https://www.ntop.org/products/n2n/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ malte-v ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ malte-v ]; }; } diff --git a/pkgs/by-name/na/nacelle/package.nix b/pkgs/by-name/na/nacelle/package.nix index 2ab17a4c87be..d78c167cd40f 100644 --- a/pkgs/by-name/na/nacelle/package.nix +++ b/pkgs/by-name/na/nacelle/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/nacelle/"; description = "Improved version of the Aileron font"; - platforms = platforms.all; - maintainers = with maintainers; [ minijackson ]; - license = licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/na/nahid-fonts/package.nix b/pkgs/by-name/na/nahid-fonts/package.nix index b36b78d752e1..146c03474cbd 100644 --- a/pkgs/by-name/na/nahid-fonts/package.nix +++ b/pkgs/by-name/na/nahid-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/nahid-font"; description = "Persian (Farsi) Font - قلم (فونت) فارسی ناهید"; - license = licenses.free; - platforms = platforms.all; + license = lib.licenses.free; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/na/nali/package.nix b/pkgs/by-name/na/nali/package.nix index d21bb3d1a19c..d9b548f8009c 100644 --- a/pkgs/by-name/na/nali/package.nix +++ b/pkgs/by-name/na/nali/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { installShellCompletion --cmd nali nali.{bash,fish,zsh} ''; - meta = with lib; { + meta = { description = "Offline tool for querying IP geographic information and CDN provider"; homepage = "https://github.com/zu1k/nali"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ diffumist xyenon ]; diff --git a/pkgs/by-name/na/namaka/package.nix b/pkgs/by-name/na/namaka/package.nix index 6810ab0fef2b..e91c758700ad 100644 --- a/pkgs/by-name/na/namaka/package.nix +++ b/pkgs/by-name/na/namaka/package.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { installShellCompletion artifacts/namaka.{bash,fish} --zsh artifacts/_namaka ''; - meta = with lib; { + meta = { description = "Snapshot testing tool for Nix based on haumea"; mainProgram = "namaka"; homepage = "https://github.com/nix-community/namaka"; changelog = "https://github.com/nix-community/namaka/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/na/namecoind/package.nix b/pkgs/by-name/na/namecoind/package.nix index 7c9861e504aa..d2c51f2bdc85 100644 --- a/pkgs/by-name/na/namecoind/package.nix +++ b/pkgs/by-name/na/namecoind/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { checkFlags = [ "LC_ALL=en_US.UTF-8" ]; - meta = with lib; { + meta = { description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency"; homepage = "https://namecoin.org"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/na/nano/package.nix b/pkgs/by-name/na/nano/package.nix index 32fca0879baa..a0a303a0d3d7 100644 --- a/pkgs/by-name/na/nano/package.nix +++ b/pkgs/by-name/na/nano/package.nix @@ -99,15 +99,15 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { homepage = "https://www.nano-editor.org/"; description = "Small, user-friendly console text editor"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ joachifm sigmasquadron ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "nano"; }; } diff --git a/pkgs/by-name/na/nanomsg/package.nix b/pkgs/by-name/na/nanomsg/package.nix index a84a84812822..7198183e3113 100644 --- a/pkgs/by-name/na/nanomsg/package.nix +++ b/pkgs/by-name/na/nanomsg/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ ''; - meta = with lib; { + meta = { description = "Socket library that provides several common communication patterns"; homepage = "https://nanomsg.org/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "nanocat"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/na/nanopb/package.nix b/pkgs/by-name/na/nanopb/package.nix index f2e308d1b6b9..3aa117b922c8 100644 --- a/pkgs/by-name/na/nanopb/package.nix +++ b/pkgs/by-name/na/nanopb/package.nix @@ -101,13 +101,13 @@ stdenvNoCC.mkDerivation ( }; }; - meta = with lib; { - platforms = platforms.all; + meta = { + platforms = lib.platforms.all; description = "Protocol Buffers with small code size"; homepage = "https://jpa.kapsi.fi/nanopb/"; - license = licenses.zlib; - maintainers = with maintainers; [ + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ kalbasit liarokapisv ]; diff --git a/pkgs/by-name/na/nanosaur/package.nix b/pkgs/by-name/na/nanosaur/package.nix index 7617b0308783..35a1ab8778da 100644 --- a/pkgs/by-name/na/nanosaur/package.nix +++ b/pkgs/by-name/na/nanosaur/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Port of Nanosaur, a 1998 Macintosh game by Pangea Software, for modern operating systems"; longDescription = '' Nanosaur is a 1998 Macintosh game by Pangea Software. @@ -52,9 +52,9 @@ stdenv.mkDerivation { And you get to shoot at T-Rexes with nukes. ''; homepage = "https://github.com/jorio/Nanosaur"; - license = licenses.cc-by-sa-40; + license = lib.licenses.cc-by-sa-40; mainProgram = "Nanosaur"; - maintainers = with maintainers; [ lux ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lux ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/na/nanosaur2/package.nix b/pkgs/by-name/na/nanosaur2/package.nix index 81dda4473f29..139fa5730c3d 100644 --- a/pkgs/by-name/na/nanosaur2/package.nix +++ b/pkgs/by-name/na/nanosaur2/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Port of Nanosaur2, a 2004 Macintosh game by Pangea Software, for modern operating systems"; longDescription = '' Nanosaur is a 2004 Macintosh game by Pangea Software. @@ -52,9 +52,9 @@ stdenv.mkDerivation { Is a continuation of the original Nanosaur storyline, only this time you get to fly a pterodactyl who’s loaded with hi-tech weaponry. ''; homepage = "https://github.com/jorio/Nanosaur2"; - license = licenses.cc-by-sa-40; + license = lib.licenses.cc-by-sa-40; mainProgram = "Nanosaur2"; - maintainers = with maintainers; [ lux ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lux ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/na/nanosvg/package.nix b/pkgs/by-name/na/nanosvg/package.nix index 43229b7e6e88..5dd78db653c9 100644 --- a/pkgs/by-name/na/nanosvg/package.nix +++ b/pkgs/by-name/na/nanosvg/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Simple stupid SVG parser"; homepage = "https://github.com/memononen/nanosvg"; - license = licenses.zlib; - platforms = platforms.all; + license = lib.licenses.zlib; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/na/nanum-gothic-coding/package.nix b/pkgs/by-name/na/nanum-gothic-coding/package.nix index ef6c0ea107d9..57f3d144b56b 100644 --- a/pkgs/by-name/na/nanum-gothic-coding/package.nix +++ b/pkgs/by-name/na/nanum-gothic-coding/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Contemporary monospaced sans-serif typeface with a warm touch"; homepage = "https://github.com/naver/nanumfont"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/na/nanum/package.nix b/pkgs/by-name/na/nanum/package.nix index b8342a24c22f..bfa9de0964dd 100644 --- a/pkgs/by-name/na/nanum/package.nix +++ b/pkgs/by-name/na/nanum/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Nanum Korean font set"; homepage = "https://hangeul.naver.com/font"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = with lib.maintainers; [ serge ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/na/napi-rs-cli/package.nix b/pkgs/by-name/na/napi-rs-cli/package.nix index 0b482e0ea97e..e28bf970a1c5 100644 --- a/pkgs/by-name/na/napi-rs-cli/package.nix +++ b/pkgs/by-name/na/napi-rs-cli/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CLI tools for napi-rs"; mainProgram = "napi"; homepage = "https://napi.rs"; - license = licenses.mit; - maintainers = with maintainers; [ winter ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ winter ]; inherit (nodejs.meta) platforms; }; } diff --git a/pkgs/by-name/na/nar-serve/package.nix b/pkgs/by-name/na/nar-serve/package.nix index 84e91c2ae2bf..8c8afe41d233 100644 --- a/pkgs/by-name/na/nar-serve/package.nix +++ b/pkgs/by-name/na/nar-serve/package.nix @@ -21,12 +21,12 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) nar-serve; }; - meta = with lib; { + meta = { description = "Serve NAR file contents via HTTP"; mainProgram = "nar-serve"; homepage = "https://github.com/numtide/nar-serve"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rizary zimbatm ]; diff --git a/pkgs/by-name/na/nasin-nanpa-helvetica/package.nix b/pkgs/by-name/na/nasin-nanpa-helvetica/package.nix index 857ebeed240c..a0270e3b8ab1 100644 --- a/pkgs/by-name/na/nasin-nanpa-helvetica/package.nix +++ b/pkgs/by-name/na/nasin-nanpa-helvetica/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/ETBCOR/nasin-nanpa"; description = ''UCSUR OpenType monospaced font for the Toki Pona writing system, Sitelen Pona ("Discord" version; makes UCSUR visible in vanilla Discord)''; longDescription = '' @@ -31,8 +31,8 @@ stdenvNoCC.mkDerivation rec { sitelen ale pi nasin ni li sama mute weka. sitelen pi nasin ni li lon nasin UCSUR kin. ''; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ feathecutie ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ feathecutie ]; }; } diff --git a/pkgs/by-name/na/nasin-nanpa-ucsur/package.nix b/pkgs/by-name/na/nasin-nanpa-ucsur/package.nix index 221e6a247c91..7b932d35f5cb 100644 --- a/pkgs/by-name/na/nasin-nanpa-ucsur/package.nix +++ b/pkgs/by-name/na/nasin-nanpa-ucsur/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/ETBCOR/nasin-nanpa"; description = ''UCSUR OpenType monospaced font for the Toki Pona writing system, Sitelen Pona ("UCSUR only" version; doesn't have latin ligatures)''; longDescription = '' @@ -31,8 +31,8 @@ stdenvNoCC.mkDerivation rec { sitelen ale pi nasin ni li sama mute weka. sitelen pi nasin ni li lon nasin UCSUR kin. ''; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ feathecutie ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ feathecutie ]; }; } diff --git a/pkgs/by-name/na/nasin-nanpa/package.nix b/pkgs/by-name/na/nasin-nanpa/package.nix index 78560f0446ce..c1265563b974 100644 --- a/pkgs/by-name/na/nasin-nanpa/package.nix +++ b/pkgs/by-name/na/nasin-nanpa/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/ETBCOR/nasin-nanpa"; description = ''UCSUR OpenType monospaced font for the Toki Pona writing system, Sitelen Pona ("main" version; uses UCSUR and ligatures from latin characters)''; longDescription = '' @@ -31,9 +31,9 @@ stdenvNoCC.mkDerivation rec { sitelen ale pi nasin ni li sama mute weka. sitelen pi nasin ni li lon nasin UCSUR kin. ''; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ somasis feathecutie ]; diff --git a/pkgs/by-name/na/nasm/package.nix b/pkgs/by-name/na/nasm/package.nix index 03b359c9c9a7..7092f5b57a61 100644 --- a/pkgs/by-name/na/nasm/package.nix +++ b/pkgs/by-name/na/nasm/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation rec { ignoredVersions = "rc.*"; }; - meta = with lib; { + meta = { homepage = "https://www.nasm.us/"; description = "80x86 and x86-64 assembler designed for portability and modularity"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "nasm"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/na/nasmfmt/package.nix b/pkgs/by-name/na/nasmfmt/package.nix index 850f0303e825..d183fa03d432 100644 --- a/pkgs/by-name/na/nasmfmt/package.nix +++ b/pkgs/by-name/na/nasmfmt/package.nix @@ -23,11 +23,11 @@ buildGoModule { ldflags = [ "-s" ]; - meta = with lib; { + meta = { description = "Formatter for NASM source files"; mainProgram = "nasmfmt"; homepage = "https://github.com/yamnikov-oleg/nasmfmt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/na/nasty/package.nix b/pkgs/by-name/na/nasty/package.nix index bd548a37bbd8..4e03c2d032c7 100644 --- a/pkgs/by-name/na/nasty/package.nix +++ b/pkgs/by-name/na/nasty/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { cp nasty $out/bin ''; - meta = with lib; { + meta = { description = "Recover the passphrase of your PGP or GPG-key"; mainProgram = "nasty"; longDescription = '' @@ -34,8 +34,8 @@ stdenv.mkDerivation rec { this program could be at least 100x faster. ''; homepage = "http://www.vanheusden.com/nasty/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ davidak ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ davidak ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/na/nat-traverse/package.nix b/pkgs/by-name/na/nat-traverse/package.nix index e955c672f388..ac7c1b38db24 100644 --- a/pkgs/by-name/na/nat-traverse/package.nix +++ b/pkgs/by-name/na/nat-traverse/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { gzip -c nat-traverse.1 > $out/share/man/man1/nat-traverse.1.gz ''; - meta = with lib; { + meta = { description = "NAT gateway traversal utility"; longDescription = '' nat-traverse establishes direct connections between nodes which are @@ -35,9 +35,9 @@ stdenv.mkDerivation rec { nat-traverse works out-of-the-box. ''; homepage = "https://www.speicherleck.de/iblech/nat-traverse/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.iblech ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.iblech ]; mainProgram = "nat-traverse"; }; } diff --git a/pkgs/by-name/na/national-park-typeface/package.nix b/pkgs/by-name/na/national-park-typeface/package.nix index 8f9bfd3ab148..5b1f86bbed1d 100644 --- a/pkgs/by-name/na/national-park-typeface/package.nix +++ b/pkgs/by-name/na/national-park-typeface/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = ''Typeface designed to mimic the national park service signs that are carved using a router bit''; homepage = "https://nationalparktypeface.com/"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; }; } diff --git a/pkgs/by-name/na/natls/package.nix b/pkgs/by-name/na/natls/package.nix index eeb3817b7808..3cde9b08e03e 100644 --- a/pkgs/by-name/na/natls/package.nix +++ b/pkgs/by-name/na/natls/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-mfmG2VzBc9bRAjAF2a46JA6fzeXViVkTFUJYEIV44qo="; - meta = with lib; { + meta = { description = "'ls' replacement you never knew you needed"; homepage = "https://github.com/willdoescode/nat"; - license = licenses.mit; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cafkafk ]; mainProgram = "natls"; }; } diff --git a/pkgs/by-name/na/natural-docs/package.nix b/pkgs/by-name/na/natural-docs/package.nix index 51fcd609549f..57710a42f751 100644 --- a/pkgs/by-name/na/natural-docs/package.nix +++ b/pkgs/by-name/na/natural-docs/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { makeWrapper ${mono}/bin/mono $out/bin/NaturalDocs --add-flags "$out/NaturalDocs.exe" ''; - meta = with lib; { + meta = { description = "Documentation generator for multiple programming languages"; longDescription = '' Natural Docs is an open source documentation generator for multiple @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { high-quality HTML documentation from it. ''; homepage = "https://naturaldocs.org"; - license = licenses.agpl3Only; - maintainers = [ maintainers.nkpvk ]; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.nkpvk ]; mainProgram = "NaturalDocs"; }; } diff --git a/pkgs/by-name/na/nautilus-open-any-terminal/package.nix b/pkgs/by-name/na/nautilus-open-any-terminal/package.nix index 40ebc0865d7f..70a7baadc360 100644 --- a/pkgs/by-name/na/nautilus-open-any-terminal/package.nix +++ b/pkgs/by-name/na/nautilus-open-any-terminal/package.nix @@ -55,11 +55,11 @@ python3.pkgs.buildPythonPackage rec { glib-compile-schemas "$out/share/glib-2.0/schemas" ''; - meta = with lib; { + meta = { description = "Extension for nautilus, which adds an context-entry for opening other terminal-emulators then `gnome-terminal`"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ stunkymonkey ]; homepage = "https://github.com/Stunkymonkey/nautilus-open-any-terminal"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/na/nautilus-open-in-blackbox/package.nix b/pkgs/by-name/na/nautilus-open-in-blackbox/package.nix index 4fcd165946c2..3bd30f8d83f5 100644 --- a/pkgs/by-name/na/nautilus-open-in-blackbox/package.nix +++ b/pkgs/by-name/na/nautilus-open-in-blackbox/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Extension for nautilus, which adds an context-entry for opening in blackbox"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ blankparticle ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ blankparticle ]; homepage = "https://github.com/ppvan/nautilus-open-in-blackbox"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/na/nautilus-python/package.nix b/pkgs/by-name/na/nautilus-python/package.nix index e9a76b856ad9..59781edb3faf 100644 --- a/pkgs/by-name/na/nautilus-python/package.nix +++ b/pkgs/by-name/na/nautilus-python/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Python bindings for the Nautilus Extension API"; homepage = "https://gitlab.gnome.org/GNOME/nautilus-python"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/na/nautilus/package.nix b/pkgs/by-name/na/nautilus/package.nix index e8992233fc18..e41b49201b46 100644 --- a/pkgs/by-name/na/nautilus/package.nix +++ b/pkgs/by-name/na/nautilus/package.nix @@ -127,12 +127,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "File manager for GNOME"; homepage = "https://apps.gnome.org/Nautilus/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.gnome ]; mainProgram = "nautilus"; }; }) diff --git a/pkgs/by-name/na/nauty/package.nix b/pkgs/by-name/na/nauty/package.nix index 123b10fe3a02..06566a3de0f6 100644 --- a/pkgs/by-name/na/nauty/package.nix +++ b/pkgs/by-name/na/nauty/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { checkTarget = "checks"; - meta = with lib; { + meta = { description = "Programs for computing automorphism groups of graphs and digraphs"; - license = licenses.asl20; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; # The filename may change for future changelogs. Better than nothing in any case. changelog = "https://pallini.di.uniroma1.it/changes24-2${lib.versions.minor version}.txt"; homepage = "https://pallini.di.uniroma1.it/"; diff --git a/pkgs/by-name/na/navilu-font/package.nix b/pkgs/by-name/na/navilu-font/package.nix index ebc79d5fd283..c63b0f17bf94 100644 --- a/pkgs/by-name/na/navilu-font/package.nix +++ b/pkgs/by-name/na/navilu-font/package.nix @@ -25,11 +25,10 @@ stdenvNoCC.mkDerivation rec { installPhase = "install -Dm444 -t $out/share/fonts/truetype/ Navilu.ttf"; meta = - with lib; - src.meta - // { + + src.meta // { description = "Kannada handwriting font"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nb/nb/package.nix b/pkgs/by-name/nb/nb/package.nix index 525454f0c8e5..84a26deefde3 100644 --- a/pkgs/by-name/nb/nb/package.nix +++ b/pkgs/by-name/nb/nb/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Command line note-taking, bookmarking, archiving, and knowledge base application"; longDescription = '' `nb` creates notes in text-based formats like Markdown, Emacs Org mode, @@ -80,9 +80,9 @@ stdenv.mkDerivation rec { of features. `nb` is flexible. ''; homepage = "https://xwmx.github.io/nb/"; - license = licenses.agpl3Plus; - maintainers = [ maintainers.toonn ]; - platforms = platforms.all; + license = lib.licenses.agpl3Plus; + maintainers = [ lib.maintainers.toonn ]; + platforms = lib.platforms.all; mainProgram = "nb"; }; } diff --git a/pkgs/by-name/nb/nbench/package.nix b/pkgs/by-name/nb/nbench/package.nix index ae1d27a1e9cb..8dbfa82c22ae 100644 --- a/pkgs/by-name/nb/nbench/package.nix +++ b/pkgs/by-name/nb/nbench/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { cp NNET.DAT $out ''; - meta = with lib; { + meta = { homepage = "https://www.math.utah.edu/~mayer/linux/bmark.html"; description = "Synthetic computing benchmark program"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ bennofs ]; mainProgram = "nbench"; }; diff --git a/pkgs/by-name/nb/nbtscan/package.nix b/pkgs/by-name/nb/nbtscan/package.nix index a958994a4f3b..a0a8cc57d1ee 100644 --- a/pkgs/by-name/nb/nbtscan/package.nix +++ b/pkgs/by-name/nb/nbtscan/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Scan networks searching for NetBIOS information"; mainProgram = "nbtscan"; homepage = "https://github.com/resurrecting-open-source-projects/nbtscan"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/nb/nbutools/package.nix b/pkgs/by-name/nb/nbutools/package.nix index 887cc7b16e8f..0c96e540bea2 100644 --- a/pkgs/by-name/nb/nbutools/package.nix +++ b/pkgs/by-name/nb/nbutools/package.nix @@ -35,10 +35,10 @@ python3.pkgs.buildPythonApplication { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Tools for offensive security of NetBackup infrastructures"; homepage = "https://github.com/airbus-seclab/nbutools"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/nb/nbxplorer/package.nix b/pkgs/by-name/nb/nbxplorer/package.nix index a0a04fad267e..f198ea562fa3 100644 --- a/pkgs/by-name/nb/nbxplorer/package.nix +++ b/pkgs/by-name/nb/nbxplorer/package.nix @@ -27,14 +27,14 @@ buildDotnetModule rec { mv $out/bin/{NBXplorer,nbxplorer} || : ''; - meta = with lib; { + meta = { description = "Minimalist UTXO tracker for HD Cryptocurrency Wallets"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kcalvinalvin erikarvstedt ]; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "nbxplorer"; }; } diff --git a/pkgs/by-name/nc/ncdns/package.nix b/pkgs/by-name/nc/ncdns/package.nix index a603b9674f02..6caf29402e40 100644 --- a/pkgs/by-name/nc/ncdns/package.nix +++ b/pkgs/by-name/nc/ncdns/package.nix @@ -105,10 +105,10 @@ buildGoModule { passthru.tests.ncdns = nixosTests.ncdns; - meta = with lib; { + meta = { description = "Namecoin to DNS bridge daemon"; homepage = "https://github.com/namecoin/ncdns"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/nc/ncmpc/package.nix b/pkgs/by-name/nc/ncmpc/package.nix index ea251ac8cd1b..e06495336f37 100644 --- a/pkgs/by-name/nc/ncmpc/package.nix +++ b/pkgs/by-name/nc/ncmpc/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { description = "Curses-based interface for MPD (music player daemon)"; homepage = "https://www.musicpd.org/clients/ncmpc/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - badPlatforms = platforms.darwin; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ fpletz ]; mainProgram = "ncmpc"; }; } diff --git a/pkgs/by-name/nc/ncompress/package.nix b/pkgs/by-name/nc/ncompress/package.nix index 4baac00754ee..b71b8e4b1579 100644 --- a/pkgs/by-name/nc/ncompress/package.nix +++ b/pkgs/by-name/nc/ncompress/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { mv $out/bin/uncompress $out/bin/uncompress-ncompress ''; - meta = with lib; { + meta = { homepage = "http://ncompress.sourceforge.net/"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; description = "Fast, simple LZW file compressor"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nc/ncpamixer/package.nix b/pkgs/by-name/nc/ncpamixer/package.nix index 30e616118a02..58559d74d03b 100644 --- a/pkgs/by-name/nc/ncpamixer/package.nix +++ b/pkgs/by-name/nc/ncpamixer/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Terminal mixer for PulseAudio inspired by pavucontrol"; homepage = "https://github.com/fulhax/ncpamixer"; - license = licenses.mit; - platforms = platforms.linux; - teams = [ teams.c3d2 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + teams = [ lib.teams.c3d2 ]; mainProgram = "ncpamixer"; }; } diff --git a/pkgs/by-name/nc/ncrack/package.nix b/pkgs/by-name/nc/ncrack/package.nix index c28de8150513..99ac046e4168 100644 --- a/pkgs/by-name/nc/ncrack/package.nix +++ b/pkgs/by-name/nc/ncrack/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Network authentication tool"; mainProgram = "ncrack"; homepage = "https://nmap.org/ncrack/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nc/ncview/package.nix b/pkgs/by-name/nc/ncview/package.nix index 7dc9288bbda6..9845006113ae 100644 --- a/pkgs/by-name/nc/ncview/package.nix +++ b/pkgs/by-name/nc/ncview/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { xorg.libXt ]; - meta = with lib; { + meta = { description = "Visual browser for netCDF format files"; homepage = "http://meteora.ucsd.edu/~pierce/ncview_home_page.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "ncview"; - maintainers = with maintainers; [ jmettes ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ jmettes ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/nd/ndi/package.nix b/pkgs/by-name/nd/ndi/package.nix index d04a95769779..25a75cfbd04e 100644 --- a/pkgs/by-name/nd/ndi/package.nix +++ b/pkgs/by-name/nd/ndi/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { }; passthru.updateScript = ./update.py; - meta = with lib; { + meta = { homepage = "https://ndi.video/ndi-sdk/"; description = "NDI Software Developer Kit"; platforms = [ @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { "armv7l-linux" ]; hydraPlatforms = [ ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/nd/ndisc6/package.nix b/pkgs/by-name/nd/ndisc6/package.nix index f89a89164b8a..7ae78945b8b2 100644 --- a/pkgs/by-name/nd/ndisc6/package.nix +++ b/pkgs/by-name/nd/ndisc6/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { "localstatedir=$(TMPDIR)" ]; - meta = with lib; { + meta = { homepage = "https://www.remlab.net/ndisc6/"; description = "Small collection of useful tools for IPv6 networking"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/nd/ndjbdns/package.nix b/pkgs/by-name/nd/ndjbdns/package.nix index 5d330ed1ab0e..4f0adf8d29d6 100644 --- a/pkgs/by-name/nd/ndjbdns/package.nix +++ b/pkgs/by-name/nd/ndjbdns/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation { ]; buildInputs = [ ] ++ lib.optional stdenv.hostPlatform.isLinux systemd; - meta = with lib; { + meta = { description = "Brand new release of the Djbdns"; longDescription = '' Djbdns is a fully‐fledged Domain Name System(DNS), originally written by the eminent author of qmail, Dr. D J Bernstein. ''; homepage = "http://pjp.dgplug.org/ndjbdns/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/nd/ndn-cxx/package.nix b/pkgs/by-name/nd/ndn-cxx/package.nix index 144d79262c84..05b0394ae52e 100644 --- a/pkgs/by-name/nd/ndn-cxx/package.nix +++ b/pkgs/by-name/nd/ndn-cxx/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://named-data.net/"; description = "Named Data Networking (NDN) or Content Centric Networking (CCN) abstraction"; longDescription = '' @@ -67,9 +67,9 @@ stdenv.mkDerivation rec { traversing fewer network hops, eliminating redundant requests, and consuming less resources overall. ''; - license = licenses.lgpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sjmackenzie bertof ]; diff --git a/pkgs/by-name/nd/ndn-tools/package.nix b/pkgs/by-name/nd/ndn-tools/package.nix index 52941aa57fce..812cd1d9403e 100644 --- a/pkgs/by-name/nd/ndn-tools/package.nix +++ b/pkgs/by-name/nd/ndn-tools/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://named-data.net/"; description = "Named Data Networking (NDN) Essential Tools"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ bertof ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bertof ]; }; } diff --git a/pkgs/by-name/nd/ndpi/package.nix b/pkgs/by-name/nd/ndpi/package.nix index ffade02b5b4a..7f10b1436dc3 100644 --- a/pkgs/by-name/nd/ndpi/package.nix +++ b/pkgs/by-name/nd/ndpi/package.nix @@ -33,19 +33,19 @@ stdenv.mkDerivation (finalAttrs: { libpcap ]; - meta = with lib; { + meta = { description = "Library for deep-packet inspection"; longDescription = '' nDPI is a library for deep-packet inspection based on OpenDPI. ''; homepage = "https://www.ntop.org/products/deep-packet-inspection/ndpi/"; changelog = "https://github.com/ntop/nDPI/blob/${finalAttrs.version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus bsd3 ]; - maintainers = with maintainers; [ takikawa ]; + maintainers = with lib.maintainers; [ takikawa ]; mainProgram = "ndpiReader"; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; }) diff --git a/pkgs/by-name/nd/ndppd/package.nix b/pkgs/by-name/nd/ndppd/package.nix index 8f71e1d733a7..18b873e009eb 100644 --- a/pkgs/by-name/nd/ndppd/package.nix +++ b/pkgs/by-name/nd/ndppd/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) ndppd; }; - meta = with lib; { + meta = { description = "Daemon that proxies NDP (Neighbor Discovery Protocol) messages between interfaces"; homepage = "https://github.com/DanielAdolfsson/ndppd"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "ndppd"; }; } diff --git a/pkgs/by-name/nd/ndstrim/package.nix b/pkgs/by-name/nd/ndstrim/package.nix index 9cf1b43050bf..f3c5b34039bc 100644 --- a/pkgs/by-name/nd/ndstrim/package.nix +++ b/pkgs/by-name/nd/ndstrim/package.nix @@ -17,13 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-wRMMWeZDk9Xt3263pq20Qioy1x8egiPhuoPxmpNTq8M="; - meta = with lib; { + meta = { description = "Trim the excess padding found in Nintendo DS(i) ROMs"; homepage = "https://github.com/Nemris/ndstrim"; changelog = "https://github.com/Nemris/ndstrim/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ thiagokokada ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thiagokokada ]; mainProgram = "ndstrim"; }; } diff --git a/pkgs/by-name/ne/nearcore/package.nix b/pkgs/by-name/ne/nearcore/package.nix index 1564ded65895..5bb712ce75e4 100644 --- a/pkgs/by-name/ne/nearcore/package.nix +++ b/pkgs/by-name/ne/nearcore/package.nix @@ -53,13 +53,13 @@ rustPlatform.buildRustPackage rec { # fat LTO requires ~3.4GB RAM requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = "Reference client for NEAR Protocol"; homepage = "https://github.com/near/nearcore"; - license = licenses.gpl3; - maintainers = with maintainers; [ mikroskeem ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ mikroskeem ]; # only x86_64 is supported in nearcore because of sse4+ support, macOS might # be also possible platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/ne/neard/package.nix b/pkgs/by-name/ne/neard/package.nix index 71853a3f3769..947fe729a231 100644 --- a/pkgs/by-name/ne/neard/package.nix +++ b/pkgs/by-name/ne/neard/package.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation { wrapPythonProgramsIn "$out/lib/neard" "$pythonPath" ''; - meta = with lib; { + meta = { description = "Near Field Communication manager"; homepage = "https://01.org/linux-nfc"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ne/nedit/package.nix b/pkgs/by-name/ne/nedit/package.nix index f3809053300f..1b9374c5354c 100644 --- a/pkgs/by-name/ne/nedit/package.nix +++ b/pkgs/by-name/ne/nedit/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { cp -p source/nedit source/nc $out/bin ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/nedit"; description = "Fast, compact Motif/X11 plain text editor"; - platforms = with platforms; linux ++ darwin; - license = licenses.gpl2; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/ne/needle/package.nix b/pkgs/by-name/ne/needle/package.nix index 3d771cd693e5..c7a8021f6e94 100644 --- a/pkgs/by-name/ne/needle/package.nix +++ b/pkgs/by-name/ne/needle/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Compile-time safe Swift dependency injection framework"; homepage = "https://github.com/uber/needle"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "needle"; - maintainers = with maintainers; [ matteopacini ]; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ matteopacini ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ne/neil/package.nix b/pkgs/by-name/ne/neil/package.nix index 8aa5c7b85fea..469375139948 100644 --- a/pkgs/by-name/ne/neil/package.nix +++ b/pkgs/by-name/ne/neil/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { --prefix PATH : "${lib.makeBinPath [ babashka ]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/babashka/neil"; description = "CLI to add common aliases and features to deps.edn-based projects"; mainProgram = "neil"; - license = licenses.mit; + license = lib.licenses.mit; platforms = babashka.meta.platforms; - maintainers = with maintainers; [ jlesquembre ]; + maintainers = with lib.maintainers; [ jlesquembre ]; }; } diff --git a/pkgs/by-name/ne/nelua/package.nix b/pkgs/by-name/ne/nelua/package.nix index 7854a27bceac..4a01e5d43be7 100644 --- a/pkgs/by-name/ne/nelua/package.nix +++ b/pkgs/by-name/ne/nelua/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { description = "Minimal, efficient, statically-typed and meta-programmable systems programming language heavily inspired by Lua, which compiles to C and native code"; homepage = "https://nelua.io/"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ne/nemiver/package.nix b/pkgs/by-name/ne/nemiver/package.nix index 198c5ef3fe4b..f85f62f029a1 100644 --- a/pkgs/by-name/ne/nemiver/package.nix +++ b/pkgs/by-name/ne/nemiver/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/Archive/nemiver"; description = "Easy to use standalone C/C++ debugger"; mainProgram = "nemiver"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.juliendehos ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/ne/nemo-emblems/package.nix b/pkgs/by-name/ne/nemo-emblems/package.nix index ece3a9f62f1b..8874a95f2584 100644 --- a/pkgs/by-name/ne/nemo-emblems/package.nix +++ b/pkgs/by-name/ne/nemo-emblems/package.nix @@ -30,15 +30,15 @@ python3.pkgs.buildPythonApplication rec { build-system = with python3.pkgs; [ setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/nemo-extensions/tree/master/nemo-emblems"; description = "Change a folder or file emblem in Nemo"; longDescription = '' Nemo extension that allows you to change folder or file emblems. When adding this to nemo-with-extensions you also need to add nemo-python. ''; - license = licenses.gpl3Only; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ne/nemo-fileroller/package.nix b/pkgs/by-name/ne/nemo-fileroller/package.nix index 9f5115f7922c..f695302b591a 100644 --- a/pkgs/by-name/ne/nemo-fileroller/package.nix +++ b/pkgs/by-name/ne/nemo-fileroller/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { PKG_CONFIG_LIBNEMO_EXTENSION_EXTENSIONDIR = "${placeholder "out"}/${nemo.extensiondir}"; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/nemo-extensions/tree/master/nemo-fileroller"; description = "Nemo file roller extension"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ne/nemo-python/package.nix b/pkgs/by-name/ne/nemo-python/package.nix index 2caf1456f9b1..5df04ef58f7a 100644 --- a/pkgs/by-name/ne/nemo-python/package.nix +++ b/pkgs/by-name/ne/nemo-python/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { passthru.nemoPythonExtensionDeps = [ python3.pkgs.pygobject3 ]; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/nemo-extensions/tree/master/nemo-python"; description = "Python bindings for the Nemo extension library"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/ne/nemo/package.nix b/pkgs/by-name/ne/nemo/package.nix index a52469d63d11..351df66a48d3 100644 --- a/pkgs/by-name/ne/nemo/package.nix +++ b/pkgs/by-name/ne/nemo/package.nix @@ -102,15 +102,15 @@ stdenv.mkDerivation rec { # Taken from libnemo-extension.pc. passthru.extensiondir = "lib/nemo/extensions-3.0"; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/nemo"; description = "File browser for Cinnamon"; license = [ - licenses.gpl2 - licenses.lgpl2 + lib.licenses.gpl2 + lib.licenses.lgpl2 ]; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; mainProgram = "nemo"; }; } diff --git a/pkgs/by-name/ne/nengo-gui/package.nix b/pkgs/by-name/ne/nengo-gui/package.nix index dddff73e70fb..a61fa2b12bbd 100644 --- a/pkgs/by-name/ne/nengo-gui/package.nix +++ b/pkgs/by-name/ne/nengo-gui/package.nix @@ -22,10 +22,10 @@ python3Packages.buildPythonPackage rec { # pyimgur doCheck = false; - meta = with lib; { + meta = { description = "Nengo interactive visualizer"; homepage = "https://nengo.ai/"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ne/neo-cowsay/package.nix b/pkgs/by-name/ne/neo-cowsay/package.nix index 05af75036d41..ccd99c682954 100644 --- a/pkgs/by-name/ne/neo-cowsay/package.nix +++ b/pkgs/by-name/ne/neo-cowsay/package.nix @@ -26,10 +26,10 @@ buildGoModule rec { "cowthink" ]; - meta = with lib; { + meta = { description = "Cowsay reborn, written in Go"; homepage = "https://github.com/Code-Hex/Neo-cowsay"; - license = with licenses; [ + license = with lib.licenses; [ artistic1 # or gpl3 ]; diff --git a/pkgs/by-name/ne/neo/package.nix b/pkgs/by-name/ne/neo/package.nix index 1a34e52cac4c..a912366c2e81 100644 --- a/pkgs/by-name/ne/neo/package.nix +++ b/pkgs/by-name/ne/neo/package.nix @@ -16,16 +16,16 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = ''Simulates the digital rain from "The Matrix"''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' neo recreates the digital rain effect from "The Matrix". Streams of random characters will endlessly scroll down your terminal screen. ''; homepage = "https://github.com/st3w/neo"; platforms = ncurses.meta.platforms; - maintainers = [ maintainers.abbe ]; + maintainers = [ lib.maintainers.abbe ]; mainProgram = "neo"; }; } diff --git a/pkgs/by-name/ne/neo4j/package.nix b/pkgs/by-name/ne/neo4j/package.nix index 6d70883fe9d6..70a5017d9ee2 100644 --- a/pkgs/by-name/ne/neo4j/package.nix +++ b/pkgs/by-name/ne/neo4j/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { passthru.tests.nixos = nixosTests.neo4j; - meta = with lib; { + meta = { description = "Highly scalable, robust (fully ACID) native graph database"; homepage = "https://neo4j.com/"; - license = licenses.gpl3; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ne/neocities/package.nix b/pkgs/by-name/ne/neocities/package.nix index 3f324fd19d9a..efb707f8e4ca 100644 --- a/pkgs/by-name/ne/neocities/package.nix +++ b/pkgs/by-name/ne/neocities/package.nix @@ -11,12 +11,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "neocities"; - meta = with lib; { + meta = { description = "CLI and library for interacting with the Neocities API"; homepage = "https://github.com/neocities/neocities-ruby"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "neocities"; - maintainers = with maintainers; [ dawoox ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ dawoox ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ne/neofetch/package.nix b/pkgs/by-name/ne/neofetch/package.nix index 54f1f0884324..c6d0ec72962d 100644 --- a/pkgs/by-name/ne/neofetch/package.nix +++ b/pkgs/by-name/ne/neofetch/package.nix @@ -67,12 +67,12 @@ stdenvNoCC.mkDerivation { "SYSCONFDIR=${placeholder "out"}/etc" ]; - meta = with lib; { + meta = { description = "Fast, highly customizable system info script"; homepage = "https://github.com/dylanaraps/neofetch"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ konimex ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ konimex ]; mainProgram = "neofetch"; }; } diff --git a/pkgs/by-name/ne/neosay/package.nix b/pkgs/by-name/ne/neosay/package.nix index 293de7c9b0dc..a7bb3e47d74f 100644 --- a/pkgs/by-name/ne/neosay/package.nix +++ b/pkgs/by-name/ne/neosay/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Pipe stdin to matrix"; mainProgram = "neosay"; homepage = "https://github.com/donuts-are-good/neosay"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ne/neovim-remote/package.nix b/pkgs/by-name/ne/neovim-remote/package.nix index ac9a703a8086..cc1e3c7830eb 100644 --- a/pkgs/by-name/ne/neovim-remote/package.nix +++ b/pkgs/by-name/ne/neovim-remote/package.nix @@ -47,12 +47,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "nvr" ]; - meta = with lib; { + meta = { description = "Tool that helps controlling nvim processes from a terminal"; homepage = "https://github.com/mhinz/neovim-remote/"; - license = licenses.mit; - maintainers = with maintainers; [ edanaher ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ edanaher ]; + platforms = lib.platforms.unix; mainProgram = "nvr"; }; } diff --git a/pkgs/by-name/ne/nerd-font-patcher/package.nix b/pkgs/by-name/ne/nerd-font-patcher/package.nix index 44b1f3136fe8..1d94eed16734 100644 --- a/pkgs/by-name/ne/nerd-font-patcher/package.nix +++ b/pkgs/by-name/ne/nerd-font-patcher/package.nix @@ -31,11 +31,11 @@ python3Packages.buildPythonApplication rec { cp -ra bin/scripts/name_parser $out/lib/ ''; - meta = with lib; { + meta = { description = "Font patcher to generate Nerd font"; mainProgram = "nerd-font-patcher"; homepage = "https://nerdfonts.com/"; - license = licenses.mit; - maintainers = with maintainers; [ ck3d ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ck3d ]; }; } diff --git a/pkgs/by-name/ne/nerdfetch/package.nix b/pkgs/by-name/ne/nerdfetch/package.nix index 1c883297567d..190c3cbd4d51 100644 --- a/pkgs/by-name/ne/nerdfetch/package.nix +++ b/pkgs/by-name/ne/nerdfetch/package.nix @@ -27,13 +27,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "POSIX *nix (Linux, macOS, Android, *BSD, etc) fetch script using Nerdfonts"; homepage = "https://github.com/ThatOneCalculator/NerdFetch"; changelog = "https://github.com/ThatOneCalculator/NerdFetch/releases/tag/${finalAttrs.version}"; - maintainers = with maintainers; [ ByteSudoer ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ByteSudoer ]; + license = lib.licenses.mit; mainProgram = "nerdfetch"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ne/nerdfix/package.nix b/pkgs/by-name/ne/nerdfix/package.nix index 47e5d66fa912..133c54a6e609 100644 --- a/pkgs/by-name/ne/nerdfix/package.nix +++ b/pkgs/by-name/ne/nerdfix/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8EchpubKnixlvAyM2iSf4fE5wowJHT6/mDHIvLPnEok="; - meta = with lib; { + meta = { description = "Helps you to find/fix obsolete nerd font icons in your project"; mainProgram = "nerdfix"; homepage = "https://github.com/loichyan/nerdfix"; changelog = "https://github.com/loichyan/nerdfix/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/ne/net-snmp/package.nix b/pkgs/by-name/ne/net-snmp/package.nix index 7129bb8c008c..d7d759cf7943 100644 --- a/pkgs/by-name/ne/net-snmp/package.nix +++ b/pkgs/by-name/ne/net-snmp/package.nix @@ -100,10 +100,10 @@ stdenv.mkDerivation rec { mv $bin/bin/net-snmp-config $dev/bin ''; - meta = with lib; { + meta = { description = "Clients and server for the SNMP network monitoring protocol"; homepage = "https://www.net-snmp.org/"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ne/netassert/package.nix b/pkgs/by-name/ne/netassert/package.nix index c03b11e851c3..fc24faf9e3e4 100644 --- a/pkgs/by-name/ne/netassert/package.nix +++ b/pkgs/by-name/ne/netassert/package.nix @@ -26,7 +26,7 @@ buildGoModule rec { mv $GOPATH/bin/{cli,netassert} ''; - meta = with lib; { + meta = { homepage = "https://github.com/controlplaneio/netassert"; changelog = "https://github.com/controlplaneio/netassert/blob/${src.rev}/CHANGELOG.md"; description = "Command line utility to test network connectivity between kubernetes objects"; @@ -35,8 +35,8 @@ buildGoModule rec { It currently supports Deployment, Pod, Statefulset and Daemonset. You can check the traffic flow between these objects or from these objects to a remote host or an IP address. ''; - license = licenses.asl20; - maintainers = with maintainers; [ jk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk ]; mainProgram = "netassert"; }; } diff --git a/pkgs/by-name/ne/netavark/package.nix b/pkgs/by-name/ne/netavark/package.nix index 25a120042222..2e3851939770 100644 --- a/pkgs/by-name/ne/netavark/package.nix +++ b/pkgs/by-name/ne/netavark/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { passthru.tests = { inherit (nixosTests) podman; }; - meta = with lib; { + meta = { changelog = "https://github.com/containers/netavark/releases/tag/${src.rev}"; description = "Rust based network stack for containers"; homepage = "https://github.com/containers/netavark"; - license = licenses.asl20; - teams = [ teams.podman ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + teams = [ lib.teams.podman ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ne/netbird-dashboard/package.nix b/pkgs/by-name/ne/netbird-dashboard/package.nix index afe06bf284f3..891b36b3fd4d 100644 --- a/pkgs/by-name/ne/netbird-dashboard/package.nix +++ b/pkgs/by-name/ne/netbird-dashboard/package.nix @@ -26,11 +26,11 @@ buildNpmPackage rec { CYPRESS_INSTALL_BINARY = 0; }; - meta = with lib; { + meta = { description = "NetBird Management Service Web UI Panel"; homepage = "https://github.com/netbirdio/dashboard"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ patrickdag ]; }; diff --git a/pkgs/by-name/ne/netbox2netshot/package.nix b/pkgs/by-name/ne/netbox2netshot/package.nix index 1cbf582a3c39..354db6541c2e 100644 --- a/pkgs/by-name/ne/netbox2netshot/package.nix +++ b/pkgs/by-name/ne/netbox2netshot/package.nix @@ -27,10 +27,10 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Inventory synchronization tool between Netbox and Netshot"; homepage = "https://github.com/scaleway/netbox2netshot"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "netbox2netshot"; }; diff --git a/pkgs/by-name/ne/netcat-openbsd/package.nix b/pkgs/by-name/ne/netcat-openbsd/package.nix index ebb407027bd2..45de1ff7cd25 100644 --- a/pkgs/by-name/ne/netcat-openbsd/package.nix +++ b/pkgs/by-name/ne/netcat-openbsd/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { $out/bin/nc -h 2> /dev/null ''; - meta = with lib; { + meta = { description = "TCP/IP swiss army knife. OpenBSD variant"; homepage = "https://salsa.debian.org/debian/netcat-openbsd"; - maintainers = with maintainers; [ artturin ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ artturin ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; mainProgram = "nc"; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/ne/netcdffortran/package.nix b/pkgs/by-name/ne/netcdffortran/package.nix index 363a85402eae..20d769b9f4bf 100644 --- a/pkgs/by-name/ne/netcdffortran/package.nix +++ b/pkgs/by-name/ne/netcdffortran/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { FFLAGS = [ "-std=legacy" ]; FCFLAGS = [ "-std=legacy" ]; - meta = with lib; { + meta = { description = "Fortran API to manipulate netcdf files"; mainProgram = "nf-config"; homepage = "https://www.unidata.ucar.edu/software/netcdf/"; - license = licenses.free; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.unix; + license = lib.licenses.free; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ne/netcoredbg/package.nix b/pkgs/by-name/ne/netcoredbg/package.nix index 4edb65220a0e..36524bec3962 100644 --- a/pkgs/by-name/ne/netcoredbg/package.nix +++ b/pkgs/by-name/ne/netcoredbg/package.nix @@ -110,13 +110,13 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Managed code debugger with MI interface for CoreCLR"; homepage = "https://github.com/Samsung/netcoredbg"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "netcoredbg"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ leo60228 konradmalik ]; diff --git a/pkgs/by-name/ne/netdiscover/package.nix b/pkgs/by-name/ne/netdiscover/package.nix index c1ad923ddda2..23ad01061446 100644 --- a/pkgs/by-name/ne/netdiscover/package.nix +++ b/pkgs/by-name/ne/netdiscover/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { # Running update-oui-database.sh would probably make the build irreproducible - meta = with lib; { + meta = { description = "Network address discovering tool, developed mainly for those wireless networks without dhcp server, it also works on hub/switched networks"; homepage = "https://github.com/netdiscover-scanner/netdiscover"; changelog = "https://github.com/netdiscover-scanner/netdiscover/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vdot0x23 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vdot0x23 ]; + platforms = lib.platforms.unix; mainProgram = "netdiscover"; }; } diff --git a/pkgs/by-name/ne/netevent/package.nix b/pkgs/by-name/ne/netevent/package.nix index 989943a062fa..6459798b5726 100644 --- a/pkgs/by-name/ne/netevent/package.nix +++ b/pkgs/by-name/ne/netevent/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { cp doc/netevent.rst $doc/share/doc/netevent/netevent.rst ''; - meta = with lib; { + meta = { description = "Share linux event devices with other machines"; homepage = "https://github.com/Blub/netevent"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ rgrunbla ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rgrunbla ]; }; } diff --git a/pkgs/by-name/ne/nethogs/package.nix b/pkgs/by-name/ne/nethogs/package.nix index 5ad1bfd5c999..fd1e92db737a 100644 --- a/pkgs/by-name/ne/nethogs/package.nix +++ b/pkgs/by-name/ne/nethogs/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { "sbin=$(out)/bin" ]; - meta = with lib; { + meta = { description = "Small 'net top' tool, grouping bandwidth by process"; longDescription = '' NetHogs is a small 'net top' tool. Instead of breaking the traffic down @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { identify programs that have gone wild and are suddenly taking up your bandwidth. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/raboof/nethogs#readme"; - platforms = platforms.linux; - maintainers = [ maintainers.rycee ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rycee ]; mainProgram = "nethogs"; }; } diff --git a/pkgs/by-name/ne/nethoscope/package.nix b/pkgs/by-name/ne/nethoscope/package.nix index 6b9514a9003a..5344351681b5 100644 --- a/pkgs/by-name/ne/nethoscope/package.nix +++ b/pkgs/by-name/ne/nethoscope/package.nix @@ -44,16 +44,16 @@ rustPlatform.buildRustPackage rec { fi ''; - meta = with lib; { + meta = { description = "Listen to your network traffic"; longDescription = '' Employ your built-in wetware pattern recognition and signal processing facilities to understand your network traffic. ''; homepage = "https://github.com/vvilhonen/nethoscope"; - license = licenses.isc; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = lib.platforms.linux; mainProgram = "nethoscope"; }; diff --git a/pkgs/by-name/ne/netifd/package.nix b/pkgs/by-name/ne/netifd/package.nix index afb13762dc22..fc00cd29eb3f 100644 --- a/pkgs/by-name/ne/netifd/package.nix +++ b/pkgs/by-name/ne/netifd/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { ] ); - meta = with lib; { + meta = { description = "OpenWrt Network interface configuration daemon"; homepage = "https://git.openwrt.org/?p=project/netifd.git;a=summary"; - license = licenses.lgpl21Only; - platforms = platforms.linux; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mkg20001 ]; mainProgram = "netifd"; }; } diff --git a/pkgs/by-name/ne/netmask/package.nix b/pkgs/by-name/ne/netmask/package.nix index 9397e44d9fd7..848f90803e21 100644 --- a/pkgs/by-name/ne/netmask/package.nix +++ b/pkgs/by-name/ne/netmask/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { buildInputs = [ texinfo ]; nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/tlby/netmask"; description = "IP address formatting tool"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.jensbin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.jensbin ]; mainProgram = "netmask"; }; } diff --git a/pkgs/by-name/ne/netplan/package.nix b/pkgs/by-name/ne/netplan/package.nix index 6668eeff00f5..3c701018a25d 100644 --- a/pkgs/by-name/ne/netplan/package.nix +++ b/pkgs/by-name/ne/netplan/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { "BASH_COMPLETIONS_DIR=share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Backend-agnostic network configuration in YAML"; homepage = "https://netplan.io"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mkg20001 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mkg20001 ]; + platforms = lib.platforms.linux; mainProgram = "netplan"; }; } diff --git a/pkgs/by-name/ne/netproc/package.nix b/pkgs/by-name/ne/netproc/package.nix index eb49dcb019f5..598d9992458c 100644 --- a/pkgs/by-name/ne/netproc/package.nix +++ b/pkgs/by-name/ne/netproc/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Tool to monitor network traffic based on processes"; homepage = "https://github.com/berghetti/netproc"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "netproc"; - maintainers = [ maintainers.azuwis ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.azuwis ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ne/netproxrc/package.nix b/pkgs/by-name/ne/netproxrc/package.nix index 96eb98afd65d..95e51197408f 100644 --- a/pkgs/by-name/ne/netproxrc/package.nix +++ b/pkgs/by-name/ne/netproxrc/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-LWNn5qp+Z/M9xTtOZ5RDHq1QEFK/Y2XgBi7H5S7Z7XE="; - meta = with lib; { + meta = { description = "HTTP proxy injecting credentials from a .netrc file"; mainProgram = "netproxrc"; homepage = "https://github.com/timbertson/netproxrc"; - license = licenses.mit; - maintainers = with maintainers; [ timbertson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ timbertson ]; }; } diff --git a/pkgs/by-name/ne/netris/package.nix b/pkgs/by-name/ne/netris/package.nix index 3ef68f36551b..60dffc6036f7 100644 --- a/pkgs/by-name/ne/netris/package.nix +++ b/pkgs/by-name/ne/netris/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { cp ./netris $out/bin ''; - meta = with lib; { + meta = { description = "Free networked version of T*tris"; mainProgram = "netris"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ patryk27 ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ patryk27 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ne/netselect/package.nix b/pkgs/by-name/ne/netselect/package.nix index 1eaae2cf75ae..b08e6d1c3e3a 100644 --- a/pkgs/by-name/ne/netselect/package.nix +++ b/pkgs/by-name/ne/netselect/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/apenwarr/netselect"; description = "Ultrafast intelligent parallelizing binary-search implementation of \"ping\""; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ne/netsniff-ng/package.nix b/pkgs/by-name/ne/netsniff-ng/package.nix index 791ea0ed4df2..118b70c858e2 100644 --- a/pkgs/by-name/ne/netsniff-ng/package.nix +++ b/pkgs/by-name/ne/netsniff-ng/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation rec { rm -v $out/etc/netsniff-ng/geoip.conf # updating databases after installation is impossible ''; - meta = with lib; { + meta = { description = "Swiss army knife for daily Linux network plumbing"; longDescription = '' netsniff-ng is a free Linux networking toolkit. Its gain of performance @@ -94,7 +94,7 @@ stdenv.mkDerivation rec { development and analysis, debugging, auditing or network reconnaissance. ''; homepage = "http://netsniff-ng.org/"; - license = with licenses; [ gpl2Only ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl2Only ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ne/networkaudiod/package.nix b/pkgs/by-name/ne/networkaudiod/package.nix index 37b99d4a3546..731f8e23db57 100644 --- a/pkgs/by-name/ne/networkaudiod/package.nix +++ b/pkgs/by-name/ne/networkaudiod/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation rec { --replace /usr/sbin/networkaudiod $out/bin/networkaudiod ''; - meta = with lib; { + meta = { homepage = "https://www.signalyst.com/index.html"; description = "Network Audio Adapter daemon"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ lovesegfault ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ lovesegfault ]; + platforms = lib.platforms.linux; mainProgram = "networkaudiod"; }; } diff --git a/pkgs/by-name/ne/networkd-dispatcher/package.nix b/pkgs/by-name/ne/networkd-dispatcher/package.nix index 5c2003027f81..addb7879e2c4 100644 --- a/pkgs/by-name/ne/networkd-dispatcher/package.nix +++ b/pkgs/by-name/ne/networkd-dispatcher/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=("--prefix" "PATH" ":" "${lib.makeBinPath [ iw ]}") ''; - meta = with lib; { + meta = { description = "Dispatcher service for systemd-networkd connection status changes"; mainProgram = "networkd-dispatcher"; homepage = "https://gitlab.com/craftyguy/networkd-dispatcher"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/ne/networkd-notify/package.nix b/pkgs/by-name/ne/networkd-notify/package.nix index cc3a0d7b35b0..d98f906563ec 100644 --- a/pkgs/by-name/ne/networkd-notify/package.nix +++ b/pkgs/by-name/ne/networkd-notify/package.nix @@ -50,12 +50,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Desktop notification integration for systemd-networkd"; mainProgram = "networkd-notify"; homepage = "https://gitlab.com/wavexx/networkd-notify"; - maintainers = with maintainers; [ danc86 ]; - license = licenses.gpl3; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ danc86 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ne/networking-ts-cxx/package.nix b/pkgs/by-name/ne/networking-ts-cxx/package.nix index c020bdc77071..f239fc150089 100644 --- a/pkgs/by-name/ne/networking-ts-cxx/package.nix +++ b/pkgs/by-name/ne/networking-ts-cxx/package.nix @@ -23,9 +23,9 @@ stdenv.mkDerivation { substituteAll ${./networking_ts.pc.in} $out/lib/pkgconfig/networking_ts.pc ''; - meta = with lib; { + meta = { description = "Experimental implementation of the C++ Networking Technical Specification"; homepage = "https://github.com/chriskohlhoff/networking-ts-impl"; - license = licenses.boost; + license = lib.licenses.boost; }; } diff --git a/pkgs/by-name/ne/networkmanager-fortisslvpn/package.nix b/pkgs/by-name/ne/networkmanager-fortisslvpn/package.nix index 578632ad42b3..737d3ce60d61 100644 --- a/pkgs/by-name/ne/networkmanager-fortisslvpn/package.nix +++ b/pkgs/by-name/ne/networkmanager-fortisslvpn/package.nix @@ -87,9 +87,9 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "NetworkManager’s FortiSSL plugin"; inherit (networkmanager.meta) maintainers teams platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ne/networkmanager-iodine/package.nix b/pkgs/by-name/ne/networkmanager-iodine/package.nix index cc26a788586a..a4cd0d76a2b0 100644 --- a/pkgs/by-name/ne/networkmanager-iodine/package.nix +++ b/pkgs/by-name/ne/networkmanager-iodine/package.nix @@ -70,9 +70,9 @@ stdenv.mkDerivation { networkManagerPlugin = "VPN/nm-iodine-service.name"; }; - meta = with lib; { + meta = { description = "NetworkManager's iodine plugin"; inherit (networkmanager.meta) maintainers teams platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ne/networkmanager-l2tp/package.nix b/pkgs/by-name/ne/networkmanager-l2tp/package.nix index 3b2a3830d5de..3e1ccfdd95eb 100644 --- a/pkgs/by-name/ne/networkmanager-l2tp/package.nix +++ b/pkgs/by-name/ne/networkmanager-l2tp/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { networkManagerPlugin = "VPN/nm-l2tp-service.name"; }; - meta = with lib; { + meta = { description = "L2TP plugin for NetworkManager"; inherit (networkmanager.meta) platforms; homepage = "https://github.com/nm-l2tp/network-manager-l2tp"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ obadz ]; }; diff --git a/pkgs/by-name/ne/networkmanager-openconnect/package.nix b/pkgs/by-name/ne/networkmanager-openconnect/package.nix index d9bf1c519342..ea5f428778d3 100644 --- a/pkgs/by-name/ne/networkmanager-openconnect/package.nix +++ b/pkgs/by-name/ne/networkmanager-openconnect/package.nix @@ -75,9 +75,9 @@ stdenv.mkDerivation rec { networkManagerRuntimeDeps = [ openconnect ]; }; - meta = with lib; { + meta = { description = "NetworkManager’s OpenConnect plugin"; inherit (networkmanager.meta) maintainers teams platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ne/networkmanager-sstp/package.nix b/pkgs/by-name/ne/networkmanager-sstp/package.nix index b881ddf0c756..42df1b088fa8 100644 --- a/pkgs/by-name/ne/networkmanager-sstp/package.nix +++ b/pkgs/by-name/ne/networkmanager-sstp/package.nix @@ -75,9 +75,9 @@ stdenv.mkDerivation rec { networkManagerPlugin = "VPN/nm-sstp-service.name"; }; - meta = with lib; { + meta = { description = "NetworkManager's sstp plugin"; inherit (networkmanager.meta) maintainers teams platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ne/networkmanager-strongswan/package.nix b/pkgs/by-name/ne/networkmanager-strongswan/package.nix index 5d0b6ae110e8..a81ea1c46d50 100644 --- a/pkgs/by-name/ne/networkmanager-strongswan/package.nix +++ b/pkgs/by-name/ne/networkmanager-strongswan/package.nix @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "NetworkManager's strongswan plugin"; inherit (networkmanager.meta) platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ne/networkmanager-vpnc/package.nix b/pkgs/by-name/ne/networkmanager-vpnc/package.nix index 06c49313d36e..3b5da87dfbff 100644 --- a/pkgs/by-name/ne/networkmanager-vpnc/package.nix +++ b/pkgs/by-name/ne/networkmanager-vpnc/package.nix @@ -68,9 +68,9 @@ stdenv.mkDerivation rec { networkManagerPlugin = "VPN/nm-vpnc-service.name"; }; - meta = with lib; { + meta = { description = "NetworkManager's VPNC plugin"; inherit (networkmanager.meta) maintainers teams platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ne/networkmanager/package.nix b/pkgs/by-name/ne/networkmanager/package.nix index 5f8238dc05b1..16f1b80d9eb6 100644 --- a/pkgs/by-name/ne/networkmanager/package.nix +++ b/pkgs/by-name/ne/networkmanager/package.nix @@ -235,16 +235,16 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://networkmanager.dev"; description = "Network configuration and management tool"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; changelog = "https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/raw/${finalAttrs.version}/NEWS"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ obadz ]; - teams = [ teams.freedesktop ]; - platforms = platforms.linux; + teams = [ lib.teams.freedesktop ]; + platforms = lib.platforms.linux; badPlatforms = [ # Mandatory shared libraries. lib.systems.inspect.platformPatterns.isStatic diff --git a/pkgs/by-name/ne/networkmanagerapplet/package.nix b/pkgs/by-name/ne/networkmanagerapplet/package.nix index 98de9077f661..b05ddf78a561 100644 --- a/pkgs/by-name/ne/networkmanagerapplet/package.nix +++ b/pkgs/by-name/ne/networkmanagerapplet/package.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/network-manager-applet/"; description = "NetworkManager control applet for GNOME"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "nm-applet"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ne/neuron/package.nix b/pkgs/by-name/ne/neuron/package.nix index 93cccf3081fa..b836deae90c9 100644 --- a/pkgs/by-name/ne/neuron/package.nix +++ b/pkgs/by-name/ne/neuron/package.nix @@ -100,7 +100,7 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-dmpx0Wud0IhdFvvTJuW/w1Uq6vFYaNal9n27LAqV1Qc="; }; - meta = with lib; { + meta = { description = "Simulation environment for empirically-based simulations of neurons and networks of neurons"; longDescription = '' NEURON is a simulation environment for developing and exercising models of @@ -109,13 +109,13 @@ stdenv.mkDerivation (finalAttrs: { potential close to the membrane), and where cell membrane properties are complex, involving many ion-specific channels, ion accumulation, and second messengers ''; - sourceProvenance = with sourceTypes; [ fromSource ]; - license = licenses.bsd3; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = lib.licenses.bsd3; homepage = "http://www.neuron.yale.edu/neuron"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ adev davidcromp ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ne/new-session-manager/package.nix b/pkgs/by-name/ne/new-session-manager/package.nix index 343c84db10d0..e2b8ce9dd8d3 100644 --- a/pkgs/by-name/ne/new-session-manager/package.nix +++ b/pkgs/by-name/ne/new-session-manager/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://new-session-manager.jackaudio.org/"; description = "Session manager designed for audio applications"; - maintainers = [ maintainers._6AA4FD ]; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers._6AA4FD ]; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ne/newlib/package.nix b/pkgs/by-name/ne/newlib/package.nix index 6f37ed837531..1946dac7cbdc 100644 --- a/pkgs/by-name/ne/newlib/package.nix +++ b/pkgs/by-name/ne/newlib/package.nix @@ -138,7 +138,7 @@ stdenvNoLibc.mkDerivation (finalAttrs: { libdir = "/${stdenvNoLibc.targetPlatform.config}/lib"; }; - meta = with lib; { + meta = { description = "C library intended for use on embedded systems"; homepage = "https://sourceware.org/newlib/"; # arch has "bsd" while gentoo has "NEWLIB LIBGLOSS GPL-2" while COPYING has "gpl2" @@ -148,6 +148,6 @@ stdenvNoLibc.mkDerivation (finalAttrs: { # COPYING.LIBGLOSS # COPYING.NEWLIB # COPYING3 - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/ne/newrelic-sysmond/package.nix b/pkgs/by-name/ne/newrelic-sysmond/package.nix index 73218723f222..3f1073127349 100644 --- a/pkgs/by-name/ne/newrelic-sysmond/package.nix +++ b/pkgs/by-name/ne/newrelic-sysmond/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { $out/bin/nrsysmond ''; - meta = with lib; { + meta = { description = "System-wide monitoring for newrelic"; homepage = "https://newrelic.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ lnl7 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lnl7 ]; }; } diff --git a/pkgs/by-name/ne/newtonwars/package.nix b/pkgs/by-name/ne/newtonwars/package.nix index 0a0bd2583fb4..cfef73d2a03b 100644 --- a/pkgs/by-name/ne/newtonwars/package.nix +++ b/pkgs/by-name/ne/newtonwars/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { --prefix LD_LIBRARY_PATH ":" ${libGL}/lib ''; - meta = with lib; { + meta = { description = "Space battle game with gravity as the main theme"; mainProgram = "nw"; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ne/nex/package.nix b/pkgs/by-name/ne/nex/package.nix index 09536fea4662..270449d0c42b 100644 --- a/pkgs/by-name/ne/nex/package.nix +++ b/pkgs/by-name/ne/nex/package.nix @@ -28,11 +28,11 @@ buildGoModule { # Checks failed on master before, but buildGoPackage had checks disabled. doCheck = false; - meta = with lib; { + meta = { description = "Lexer for Go"; mainProgram = "nex"; homepage = "https://github.com/blynn/nex"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/ne/nextdns/package.nix b/pkgs/by-name/ne/nextdns/package.nix index 5fcb0e34adc5..6ac2443d8993 100644 --- a/pkgs/by-name/ne/nextdns/package.nix +++ b/pkgs/by-name/ne/nextdns/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "NextDNS DNS/53 to DoH Proxy"; homepage = "https://nextdns.io"; - license = licenses.mit; - maintainers = with maintainers; [ pnelson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pnelson ]; mainProgram = "nextdns"; }; } diff --git a/pkgs/by-name/ne/nextflow/package.nix b/pkgs/by-name/ne/nextflow/package.nix index b2249deea516..cd474294ad1a 100644 --- a/pkgs/by-name/ne/nextflow/package.nix +++ b/pkgs/by-name/ne/nextflow/package.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation (finalAttrs: { command = "env HOME=$TMPDIR nextflow -version"; }; - meta = with lib; { + meta = { description = "DSL for data-driven computational pipelines"; longDescription = '' Nextflow is a bioinformatics workflow manager that enables the development of portable and reproducible workflows. @@ -110,11 +110,11 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.nextflow.io/"; changelog = "https://github.com/nextflow-io/nextflow/releases"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Etjean ]; mainProgram = "nextflow"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ne/nextinspace/package.nix b/pkgs/by-name/ne/nextinspace/package.nix index 3b8c5b2a11e6..c1cb7fa73c5d 100644 --- a/pkgs/by-name/ne/nextinspace/package.nix +++ b/pkgs/by-name/ne/nextinspace/package.nix @@ -36,11 +36,11 @@ python3.pkgs.buildPythonApplication rec { "nextinspace" ]; - meta = with lib; { + meta = { description = "Print upcoming space-related events in your terminal"; mainProgram = "nextinspace"; homepage = "https://github.com/The-Kid-Gid/nextinspace"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ne/nexttrace/package.nix b/pkgs/by-name/ne/nexttrace/package.nix index c520450f38fc..6204cd22246c 100644 --- a/pkgs/by-name/ne/nexttrace/package.nix +++ b/pkgs/by-name/ne/nexttrace/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { mv $out/bin/NTrace-core $out/bin/nexttrace ''; - meta = with lib; { + meta = { description = "Open source visual route tracking CLI tool"; homepage = "https://mtr.moe"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ sharzy ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ sharzy ]; mainProgram = "nexttrace"; }; } diff --git a/pkgs/by-name/nf/nf-test/package.nix b/pkgs/by-name/nf/nf-test/package.nix index 014465db1d19..925c787e46d5 100644 --- a/pkgs/by-name/nf/nf-test/package.nix +++ b/pkgs/by-name/nf/nf-test/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation rec { command = "nf-test version"; }; - meta = with lib; { + meta = { description = "Simple test framework for Nextflow pipelines"; homepage = "https://www.nf-test.com/"; changelog = "https://github.com/askimed/nf-test/releases"; - license = licenses.mit; - maintainers = with maintainers; [ rollf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rollf ]; mainProgram = "nf-test"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nf/nfd/package.nix b/pkgs/by-name/nf/nfd/package.nix index a98ec3fcfeae..d8d61476109e 100644 --- a/pkgs/by-name/nf/nfd/package.nix +++ b/pkgs/by-name/nf/nfd/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { ] ++ lib.optional (!withWebSocket) "--without-websocket"; - meta = with lib; { + meta = { homepage = "https://named-data.net/"; description = "Named Data Networking (NDN) Forwarding Daemon"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ bertof ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bertof ]; }; } diff --git a/pkgs/by-name/nf/nfs-ganesha/package.nix b/pkgs/by-name/nf/nfs-ganesha/package.nix index 5626abc7cb8a..6db715615745 100644 --- a/pkgs/by-name/nf/nfs-ganesha/package.nix +++ b/pkgs/by-name/nf/nfs-ganesha/package.nix @@ -114,12 +114,12 @@ stdenv.mkDerivation rec { install -Dm644 $src/src/scripts/ganeshactl/org.ganesha.nfsd.conf $out/etc/dbus-1/system.d/org.ganesha.nfsd.conf ''; - meta = with lib; { + meta = { description = "NFS server that runs in user space"; homepage = "https://github.com/nfs-ganesha/nfs-ganesha/wiki"; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.linux; - license = licenses.lgpl3Plus; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl3Plus; mainProgram = "ganesha.nfsd"; outputsToInstall = [ "out" diff --git a/pkgs/by-name/nf/nfs-utils/package.nix b/pkgs/by-name/nf/nfs-utils/package.nix index 59c7c8349508..a3dd7cf73e2b 100644 --- a/pkgs/by-name/nf/nfs-utils/package.nix +++ b/pkgs/by-name/nf/nfs-utils/package.nix @@ -183,7 +183,7 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Linux user-space NFS utilities"; longDescription = '' @@ -193,8 +193,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://linux-nfs.org/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ lib.maintainers.dotlambda ]; }; } diff --git a/pkgs/by-name/ng/ngadmin/package.nix b/pkgs/by-name/ng/ngadmin/package.nix index 751b2f2b9658..1bb3de22ef0a 100644 --- a/pkgs/by-name/ng/ngadmin/package.nix +++ b/pkgs/by-name/ng/ngadmin/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { ++ lib.optional enableEmu "--enable-emu" ++ lib.optional enableSpy "--enable-spy"; - meta = with lib; { + meta = { description = "Netgear switch (NSDP) administration tool"; homepage = "https://www.netgeek.ovh/wiki/projets:ngadmin"; - license = licenses.gpl2Only; - maintainers = [ maintainers.astro ]; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.astro ]; }; } diff --git a/pkgs/by-name/ng/nginx-config-formatter/package.nix b/pkgs/by-name/ng/nginx-config-formatter/package.nix index 7fb643b64d44..e7d303678bd1 100644 --- a/pkgs/by-name/ng/nginx-config-formatter/package.nix +++ b/pkgs/by-name/ng/nginx-config-formatter/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { install -m 0755 $src/nginxfmt.py $out/bin/nginxfmt ''; - meta = with lib; { + meta = { description = "Nginx config file formatter"; - maintainers = with maintainers; [ Baughn ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ Baughn ]; + license = lib.licenses.asl20; homepage = "https://github.com/slomkowski/nginx-config-formatter"; mainProgram = "nginxfmt"; }; diff --git a/pkgs/by-name/ng/nginx-doc/package.nix b/pkgs/by-name/ng/nginx-doc/package.nix index 01ab35ff1f9c..f662c9696f7b 100644 --- a/pkgs/by-name/ng/nginx-doc/package.nix +++ b/pkgs/by-name/ng/nginx-doc/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { mv libxslt/en $out/share/doc/nginx ''; - meta = with lib; { + meta = { description = "Reverse proxy and lightweight webserver (documentation)"; homepage = "https://nginx.org/"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; priority = 6; - maintainers = with maintainers; [ kaction ]; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/by-name/ng/nginx-sso/package.nix b/pkgs/by-name/ng/nginx-sso/package.nix index c2d4a9473a20..63c1c1a3bbf4 100644 --- a/pkgs/by-name/ng/nginx-sso/package.nix +++ b/pkgs/by-name/ng/nginx-sso/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { inherit (nixosTests) nginx-sso; }; - meta = with lib; { + meta = { description = "SSO authentication provider for the auth_request nginx module"; homepage = "https://github.com/Luzifer/nginx-sso"; - license = licenses.asl20; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ambroisie ]; mainProgram = "nginx-sso"; }; } diff --git a/pkgs/by-name/ng/ngrep/package.nix b/pkgs/by-name/ng/ngrep/package.nix index 5c0772047f0f..028e8e8f8f68 100644 --- a/pkgs/by-name/ng/ngrep/package.nix +++ b/pkgs/by-name/ng/ngrep/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { sed -i "s|BPF=.*|BPF=${libpcap}/include/pcap/bpf.h|" configure ''; - meta = with lib; { + meta = { description = "Network packet analyzer"; longDescription = '' ngrep strives to provide most of GNU grep's common features, applying @@ -61,8 +61,8 @@ stdenv.mkDerivation rec { free = true; redistributable = true; }; - platforms = with platforms; linux ++ darwin; - maintainers = [ maintainers.bjornfor ]; + platforms = with lib.platforms; linux ++ darwin; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "ngrep"; }; } diff --git a/pkgs/by-name/ng/ngt/package.nix b/pkgs/by-name/ng/ngt/package.nix index 76427d914f1c..bd4bb134f750 100644 --- a/pkgs/by-name/ng/ngt/package.nix +++ b/pkgs/by-name/ng/ngt/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { NIX_ENFORCE_NO_NATIVE = !enableAVX; __AVX2__ = if enableAVX then 1 else 0; - meta = with lib; { + meta = { homepage = "https://github.com/yahoojapan/NGT"; description = "Nearest Neighbor Search with Neighborhood Graph and Tree for High-dimensional Data"; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.asl20; - maintainers = with maintainers; [ tomberek ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tomberek ]; }; }) diff --git a/pkgs/by-name/nh/nheko/package.nix b/pkgs/by-name/nh/nheko/package.nix index 8745ef3a950d..c4fc89b2cd3e 100644 --- a/pkgs/by-name/nh/nheko/package.nix +++ b/pkgs/by-name/nh/nheko/package.nix @@ -105,16 +105,16 @@ stdenv.mkDerivation (finalAttrs: { qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") ''; - meta = with lib; { + meta = { description = "Desktop client for the Matrix protocol"; homepage = "https://github.com/Nheko-Reborn/nheko"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "nheko"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fpletz rebmit rnhmjoj ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ni/nice-dcv-client/package.nix b/pkgs/by-name/ni/nice-dcv-client/package.nix index 5d2fcbb4e01a..21e6ca1f9f54 100644 --- a/pkgs/by-name/ni/nice-dcv-client/package.nix +++ b/pkgs/by-name/ni/nice-dcv-client/package.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation rec { ln -s ${lib.getLib libffi}/lib/libffi.so $out/lib64/libffi.so.6 ''; - meta = with lib; { + meta = { description = "High-performance remote display protocol"; homepage = "https://aws.amazon.com/hpc/dcv/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ rmcgibbo ]; + maintainers = with lib.maintainers; [ rmcgibbo ]; }; } diff --git a/pkgs/by-name/ni/nicotine-plus/package.nix b/pkgs/by-name/ni/nicotine-plus/package.nix index 0c42fc06e5d6..0537bf623b92 100644 --- a/pkgs/by-name/ni/nicotine-plus/package.nix +++ b/pkgs/by-name/ni/nicotine-plus/package.nix @@ -56,7 +56,7 @@ python3Packages.buildPythonApplication { ]; doCheck = false; - meta = with lib; { + meta = { description = "Graphical client for the SoulSeek peer-to-peer system"; longDescription = '' Nicotine+ aims to be a pleasant, free and open source (FOSS) alternative @@ -64,8 +64,8 @@ python3Packages.buildPythonApplication { keeping current with the Soulseek protocol. ''; homepage = "https://www.nicotine-plus.org"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ klntsky amadaluzia ]; diff --git a/pkgs/by-name/ni/nifi/package.nix b/pkgs/by-name/ni/nifi/package.nix index fabd567d3163..2dd3db34e5a4 100644 --- a/pkgs/by-name/ni/nifi/package.nix +++ b/pkgs/by-name/ni/nifi/package.nix @@ -38,16 +38,16 @@ stdenv.mkDerivation rec { tests.nifi = nixosTests.nifi; }; - meta = with lib; { + meta = { description = "Easy to use, powerful, and reliable system to process and distribute data"; longDescription = '' Apache NiFi supports powerful and scalable directed graphs of data routing, transformation, and system mediation logic. ''; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://nifi.apache.org"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ izorkin ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/by-name/ni/nifticlib/package.nix b/pkgs/by-name/ni/nifticlib/package.nix index 9ace77562c62..94840f078cf3 100644 --- a/pkgs/by-name/ni/nifticlib/package.nix +++ b/pkgs/by-name/ni/nifticlib/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { ''; doCheck = true; - meta = with lib; { + meta = { homepage = "https://nifti-imaging.github.io"; description = "Medical imaging format C API"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = licenses.publicDomain; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/ni/niftyreg/package.nix b/pkgs/by-name/ni/niftyreg/package.nix index 3f981df10c2d..f04a84798327 100644 --- a/pkgs/by-name/ni/niftyreg/package.nix +++ b/pkgs/by-name/ni/niftyreg/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "http://cmictig.cs.ucl.ac.uk/wiki/index.php/NiftyReg"; description = "Medical image registration software"; - maintainers = with maintainers; [ bcdarwin ]; + maintainers = with lib.maintainers; [ bcdarwin ]; platforms = [ "x86_64-linux" ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/ni/niftyseg/package.nix b/pkgs/by-name/ni/niftyseg/package.nix index 4be9dd5fe895..90c559a930c4 100644 --- a/pkgs/by-name/ni/niftyseg/package.nix +++ b/pkgs/by-name/ni/niftyseg/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_policy(VERSION 2.8)" "cmake_policy(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "http://cmictig.cs.ucl.ac.uk/research/software/software-nifty/niftyseg"; description = "Software for medical image segmentation, bias field correction, and cortical thickness calculation"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; # last successful hydra build on darwin was in 2023 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ni/nika-fonts/package.nix b/pkgs/by-name/ni/nika-fonts/package.nix index 165145ff295a..070851c632ed 100644 --- a/pkgs/by-name/ni/nika-fonts/package.nix +++ b/pkgs/by-name/ni/nika-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/font-store/NikaFont/"; description = "Persian/Arabic Open Source Font"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ni/nilaway/package.nix b/pkgs/by-name/ni/nilaway/package.nix index f333cb03e103..f4162af1f834 100644 --- a/pkgs/by-name/ni/nilaway/package.nix +++ b/pkgs/by-name/ni/nilaway/package.nix @@ -30,11 +30,11 @@ buildGoModule { unset subPackages ''; - meta = with lib; { + meta = { description = "Static Analysis tool to detect potential Nil panics in Go code"; homepage = "https://github.com/uber-go/nilaway"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ prit342 jk ]; diff --git a/pkgs/by-name/ni/nile/package.nix b/pkgs/by-name/ni/nile/package.nix index cabc6ffe2f51..dce713ffb8b9 100644 --- a/pkgs/by-name/ni/nile/package.nix +++ b/pkgs/by-name/ni/nile/package.nix @@ -43,11 +43,11 @@ python3Packages.buildPythonApplication { pythonImportsCheck = [ "nile" ]; - meta = with lib; { + meta = { description = "Unofficial Amazon Games client"; mainProgram = "nile"; homepage = "https://github.com/imLinguin/nile"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; }; passthru.updateScript = gitUpdater { diff --git a/pkgs/by-name/ni/nilfs-utils/package.nix b/pkgs/by-name/ni/nilfs-utils/package.nix index 07ba97eb6fe7..11be16b0b432 100644 --- a/pkgs/by-name/ni/nilfs-utils/package.nix +++ b/pkgs/by-name/ni/nilfs-utils/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { find . -name .libs -exec rm -rf -- {} + ''; - meta = with lib; { + meta = { description = "NILFS utilities"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; - license = with licenses; [ + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl2Plus lgpl21 ]; diff --git a/pkgs/by-name/ni/nim-unwrapped-2_2/package.nix b/pkgs/by-name/ni/nim-unwrapped-2_2/package.nix index bf24c32192d6..69a8926f5f7b 100644 --- a/pkgs/by-name/ni/nim-unwrapped-2_2/package.nix +++ b/pkgs/by-name/ni/nim-unwrapped-2_2/package.nix @@ -171,10 +171,10 @@ stdenv.mkDerivation (finalAttrs: { inherit nimHost nimTarget; }; - meta = with lib; { + meta = { description = "Statically typed, imperative programming language"; homepage = "https://nim-lang.org/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "nim"; teams = [ lib.teams.nim ]; }; diff --git a/pkgs/by-name/ni/nimbo/package.nix b/pkgs/by-name/ni/nimbo/package.nix index f8209f815fe0..42d2a9bd8d00 100644 --- a/pkgs/by-name/ni/nimbo/package.nix +++ b/pkgs/by-name/ni/nimbo/package.nix @@ -59,10 +59,10 @@ python3.pkgs.buildPythonApplication rec { --fish <(_NIMBO_COMPLETE=source_fish $out/bin/nimbo) ''; - meta = with lib; { + meta = { description = "Run machine learning jobs on AWS with a single command"; homepage = "https://github.com/nimbo-sh/nimbo"; - license = licenses.bsl11; - maintainers = with maintainers; [ noreferences ]; + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ noreferences ]; }; } diff --git a/pkgs/by-name/ni/nimdow/package.nix b/pkgs/by-name/ni/nimdow/package.nix index eb9f3ac2874c..4e11d9a0d11d 100644 --- a/pkgs/by-name/ni/nimdow/package.nix +++ b/pkgs/by-name/ni/nimdow/package.nix @@ -42,13 +42,12 @@ buildNimPackage (finalAttrs: { }; meta = - with lib; - finalAttrs.src.meta - // { + + finalAttrs.src.meta // { description = "Nim based tiling window manager"; - platforms = platforms.linux; - license = [ licenses.gpl2 ]; - maintainers = [ maintainers.marcusramberg ]; + platforms = lib.platforms.linux; + license = [ lib.licenses.gpl2 ]; + maintainers = [ lib.maintainers.marcusramberg ]; mainProgram = "nimdow"; }; }) diff --git a/pkgs/by-name/ni/ninjas2/package.nix b/pkgs/by-name/ni/ninjas2/package.nix index de076902e6f3..07089ee9d8ca 100644 --- a/pkgs/by-name/ni/ninjas2/package.nix +++ b/pkgs/by-name/ni/ninjas2/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/clearly-broken-software/ninjas2"; description = "Sample slicer plugin for LV2, VST, and jack standalone"; - license = with licenses; [ gpl3 ]; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3 ]; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "ninjas2"; }; } diff --git a/pkgs/by-name/ni/ninka/package.nix b/pkgs/by-name/ni/ninka/package.nix index 61e23a95ec5e..8af94d092272 100644 --- a/pkgs/by-name/ni/ninka/package.nix +++ b/pkgs/by-name/ni/ninka/package.nix @@ -37,12 +37,12 @@ perlPackages.buildPerlPackage { perl Makefile.PL ''; - meta = with lib; { + meta = { description = "Sentence based license detector"; mainProgram = "ninka"; homepage = "http://ninka.turingmachine.org/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ni/ninvaders/package.nix b/pkgs/by-name/ni/ninvaders/package.nix index 06618b34f55e..5e6b0b53b975 100644 --- a/pkgs/by-name/ni/ninvaders/package.nix +++ b/pkgs/by-name/ni/ninvaders/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Space Invaders clone based on ncurses"; mainProgram = "ninvaders"; homepage = "https://ninvaders.sourceforge.net/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ _1000101 ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ _1000101 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ni/nip2/package.nix b/pkgs/by-name/ni/nip2/package.nix index 207efe86b27e..45cea2aa7ac5 100644 --- a/pkgs/by-name/ni/nip2/package.nix +++ b/pkgs/by-name/ni/nip2/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/nip2 --set VIPSHOME "$out" ''; - meta = with lib; { + meta = { homepage = "https://github.com/libvips/nip2"; description = "Graphical user interface for VIPS image processing system"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ kovirobi ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kovirobi ]; + platforms = lib.platforms.unix; mainProgram = "nip2"; }; } diff --git a/pkgs/by-name/ni/nitch/package.nix b/pkgs/by-name/ni/nitch/package.nix index 9440d0295335..d644e70ae9df 100644 --- a/pkgs/by-name/ni/nitch/package.nix +++ b/pkgs/by-name/ni/nitch/package.nix @@ -26,12 +26,12 @@ buildNimPackage { }) ]; - meta = with lib; { + meta = { description = "Incredibly fast system fetch written in nim"; homepage = "https://github.com/unxsh/nitch"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ michaelBelsanti ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ michaelBelsanti ]; mainProgram = "nitch"; }; } diff --git a/pkgs/by-name/ni/nitrokey-udev-rules/package.nix b/pkgs/by-name/ni/nitrokey-udev-rules/package.nix index 022943c23b07..90b6e74f0226 100644 --- a/pkgs/by-name/ni/nitrokey-udev-rules/package.nix +++ b/pkgs/by-name/ni/nitrokey-udev-rules/package.nix @@ -36,11 +36,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { install -D 41-nitrokey.rules -t $out/etc/udev/rules.d ''; - meta = with lib; { + meta = { description = "udev rules for Nitrokey devices"; homepage = "https://github.com/Nitrokey/nitrokey-udev-rules"; - license = [ licenses.cc0 ]; - maintainers = with maintainers; [ + license = [ lib.licenses.cc0 ]; + maintainers = with lib.maintainers; [ frogamic robinkrahl ]; diff --git a/pkgs/by-name/ni/nitter/package.nix b/pkgs/by-name/ni/nitter/package.nix index f02f26428051..e97b3da9815b 100644 --- a/pkgs/by-name/ni/nitter/package.nix +++ b/pkgs/by-name/ni/nitter/package.nix @@ -44,11 +44,11 @@ buildNimPackage ( updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/zedeus/nitter"; description = "Alternative Twitter front-end"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ erdnaxe infinidoge ]; diff --git a/pkgs/by-name/ni/nix-bash-completions/package.nix b/pkgs/by-name/ni/nix-bash-completions/package.nix index 0aff7d889d87..ef47e2e8a979 100644 --- a/pkgs/by-name/ni/nix-bash-completions/package.nix +++ b/pkgs/by-name/ni/nix-bash-completions/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/hedning/nix-bash-completions"; description = "Bash completions for Nix, NixOS, and NixOps"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ hedning ncfavier ]; diff --git a/pkgs/by-name/ni/nix-bisect/package.nix b/pkgs/by-name/ni/nix-bisect/package.nix index 1e4873227e62..150fa7e1a9ec 100644 --- a/pkgs/by-name/ni/nix-bisect/package.nix +++ b/pkgs/by-name/ni/nix-bisect/package.nix @@ -31,10 +31,10 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "nix_bisect" ]; - meta = with lib; { + meta = { description = "Bisect nix builds"; homepage = "https://github.com/timokau/nix-bisect"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/ni/nix-btm/package.nix b/pkgs/by-name/ni/nix-btm/package.nix index 18a954a4bcea..9151981e45c9 100644 --- a/pkgs/by-name/ni/nix-btm/package.nix +++ b/pkgs/by-name/ni/nix-btm/package.nix @@ -16,10 +16,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-zMQw3Q9t6JSMDt7xHMGTgAu9LW6MhG+Rrjpp5IEs/qQ="; - meta = with lib; { + meta = { description = "Rust tool to monitor Nix processes"; homepage = "https://github.com/DieracDelta/nix-btm"; - license = licenses.mit; - maintainers = with maintainers; [ DieracDelta ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DieracDelta ]; }; } diff --git a/pkgs/by-name/ni/nix-build-uncached/package.nix b/pkgs/by-name/ni/nix-build-uncached/package.nix index 5bf09afad6e3..eeaa2beb353a 100644 --- a/pkgs/by-name/ni/nix-build-uncached/package.nix +++ b/pkgs/by-name/ni/nix-build-uncached/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { nativeBuildInputs = [ makeWrapper ]; - meta = with lib; { + meta = { description = "CI friendly wrapper around nix-build"; mainProgram = "nix-build-uncached"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Mic92/nix-build-uncached"; - maintainers = [ maintainers.mic92 ]; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/by-name/ni/nix-bundle/package.nix b/pkgs/by-name/ni/nix-bundle/package.nix index 8673f50fed3e..a3244682d6f4 100644 --- a/pkgs/by-name/ni/nix-bundle/package.nix +++ b/pkgs/by-name/ni/nix-bundle/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { ln -s $out/share/nix-bundle/nix-run.sh $out/bin/nix-run ''; - meta = with lib; { + meta = { homepage = "https://github.com/matthewbauer/nix-bundle"; description = "Create bundles from Nixpkgs attributes"; longDescription = '' @@ -55,8 +55,8 @@ stdenv.mkDerivation rec { - Distro agnostic - No installation ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ni/nix-doc/package.nix b/pkgs/by-name/ni/nix-doc/package.nix index 7758d217d780..175da5776602 100644 --- a/pkgs/by-name/ni/nix-doc/package.nix +++ b/pkgs/by-name/ni/nix-doc/package.nix @@ -58,13 +58,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-EC+Wps6u1qXpv7ByM3NkRVCKRKCaBtC1o2vK8cKqzyU="; - meta = with lib; { + meta = { description = "Interactive Nix documentation tool"; longDescription = "An interactive Nix documentation tool providing a CLI for function search, a Nix plugin for docs in the REPL, and a ctags implementation for Nix script"; homepage = "https://github.com/lf-/nix-doc"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.philiptaron ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.philiptaron ]; + platforms = lib.platforms.unix; mainProgram = "nix-doc"; }; } diff --git a/pkgs/by-name/ni/nix-health/package.nix b/pkgs/by-name/ni/nix-health/package.nix index 816178f8e494..753208f3e8db 100644 --- a/pkgs/by-name/ni/nix-health/package.nix +++ b/pkgs/by-name/ni/nix-health/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Check the health of your Nix setup"; homepage = "https://github.com/juspay/nix-health"; - license = licenses.asl20; - maintainers = with maintainers; [ shivaraj-bh ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ shivaraj-bh ]; mainProgram = "nix-health"; }; } diff --git a/pkgs/by-name/ni/nix-index-unwrapped/package.nix b/pkgs/by-name/ni/nix-index-unwrapped/package.nix index 97ce3cea62d2..b0d3b6eb9163 100644 --- a/pkgs/by-name/ni/nix-index-unwrapped/package.nix +++ b/pkgs/by-name/ni/nix-index-unwrapped/package.nix @@ -37,12 +37,12 @@ rustPlatform.buildRustPackage rec { install -Dm555 command-not-found.nu -t $out/etc/profile.d ''; - meta = with lib; { + meta = { description = "Files database for nixpkgs"; homepage = "https://github.com/nix-community/nix-index"; changelog = "https://github.com/nix-community/nix-index/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ bennofs ncfavier ]; diff --git a/pkgs/by-name/ni/nix-inspect/package.nix b/pkgs/by-name/ni/nix-inspect/package.nix index 29729c2ac6df..838cdda8bec7 100644 --- a/pkgs/by-name/ni/nix-inspect/package.nix +++ b/pkgs/by-name/ni/nix-inspect/package.nix @@ -70,12 +70,12 @@ rustPlatform.buildRustPackage { --replace-fail 'env!("WORKER_BINARY_PATH")' '"${workerPackage}/bin/nix-inspect"' ''; - meta = with lib; { + meta = { description = "Interactive TUI for inspecting nix configs and other expressions"; homepage = "https://github.com/bluskript/nix-inspect"; - license = licenses.mit; - maintainers = with maintainers; [ blusk ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ blusk ]; + platforms = lib.platforms.unix; mainProgram = "nix-inspect"; }; } diff --git a/pkgs/by-name/ni/nix-melt/package.nix b/pkgs/by-name/ni/nix-melt/package.nix index 5fcd038ae8f5..1e368878cdb7 100644 --- a/pkgs/by-name/ni/nix-melt/package.nix +++ b/pkgs/by-name/ni/nix-melt/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { installShellCompletion artifacts/nix-melt.{bash,fish} --zsh artifacts/_nix-melt ''; - meta = with lib; { + meta = { description = "Ranger-like flake.lock viewer"; mainProgram = "nix-melt"; homepage = "https://github.com/nix-community/nix-melt"; changelog = "https://github.com/nix-community/nix-melt/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ni/nix-pin/package.nix b/pkgs/by-name/ni/nix-pin/package.nix index 30d5ebec5b74..8fbdd3af9afd 100644 --- a/pkgs/by-name/ni/nix-pin/package.nix +++ b/pkgs/by-name/ni/nix-pin/package.nix @@ -63,12 +63,12 @@ let --modify-nix default.nix ''; }; - meta = with lib; { + meta = { homepage = "https://github.com/timbertson/nix-pin"; description = "Nixpkgs development utility"; - license = licenses.mit; - maintainers = [ maintainers.timbertson ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.timbertson ]; + platforms = lib.platforms.all; mainProgram = "nix-pin"; }; }; diff --git a/pkgs/by-name/ni/nix-query-tree-viewer/package.nix b/pkgs/by-name/ni/nix-query-tree-viewer/package.nix index 6872fb0bba95..e5e3c08e134f 100644 --- a/pkgs/by-name/ni/nix-query-tree-viewer/package.nix +++ b/pkgs/by-name/ni/nix-query-tree-viewer/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6TdPYN42PMOE5zL8nBRVdndjWhvU+7y0yNWtJybvkf0="; - meta = with lib; { + meta = { description = "GTK viewer for the output of `nix store --query --tree`"; mainProgram = "nix-query-tree-viewer"; homepage = "https://github.com/cdepillabout/nix-query-tree-viewer"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ cdepillabout ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ cdepillabout ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ni/nix-script/package.nix b/pkgs/by-name/ni/nix-script/package.nix index fb811373056f..5e1e472bea72 100644 --- a/pkgs/by-name/ni/nix-script/package.nix +++ b/pkgs/by-name/ni/nix-script/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Shebang for running inside nix-shell"; homepage = "https://github.com/bennofs/nix-script"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bennofs rnhmjoj ]; diff --git a/pkgs/by-name/ni/nix-serve/package.nix b/pkgs/by-name/ni/nix-serve/package.nix index 4c6aa006f3ba..41d79d116f50 100644 --- a/pkgs/by-name/ni/nix-serve/package.nix +++ b/pkgs/by-name/ni/nix-serve/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation { nix-serve-ssh = nixosTests.nix-serve-ssh; }; - meta = with lib; { + meta = { homepage = "https://github.com/edolstra/nix-serve"; description = "Utility for sharing a Nix store as a binary cache"; - maintainers = [ maintainers.eelco ]; - license = licenses.lgpl21; + maintainers = [ lib.maintainers.eelco ]; + license = lib.licenses.lgpl21; # See https://github.com/edolstra/nix-serve/issues/57 broken = stdenv.hostPlatform.isDarwin; platforms = nix.meta.platforms; diff --git a/pkgs/by-name/ni/nix-store-veritysetup-generator/package.nix b/pkgs/by-name/ni/nix-store-veritysetup-generator/package.nix index bff81aff6347..3bf2419ed1f4 100644 --- a/pkgs/by-name/ni/nix-store-veritysetup-generator/package.nix +++ b/pkgs/by-name/ni/nix-store-veritysetup-generator/package.nix @@ -39,10 +39,10 @@ rustPlatform.buildRustPackage rec { inherit (nixosTests) nix-store-veritysetup; }; - meta = with lib; { + meta = { description = "Systemd unit generator for a verity protected Nix Store"; homepage = "https://github.com/nikstur/nix-store-veritysetup-generator"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ nikstur ]; mainProgram = "nix-store-veritysetup-generator"; }; diff --git a/pkgs/by-name/ni/nix-tour/package.nix b/pkgs/by-name/ni/nix-tour/package.nix index 4fb5d9121f93..3368dac1a2dc 100644 --- a/pkgs/by-name/ni/nix-tour/package.nix +++ b/pkgs/by-name/ni/nix-tour/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "'the tour of nix' from nixcloud.io/tour as offline version"; homepage = "https://nixcloud.io/tour"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ qknight ]; mainProgram = "nix-tour"; diff --git a/pkgs/by-name/ni/nix-web/package.nix b/pkgs/by-name/ni/nix-web/package.nix index 13a59db72f40..bc6b243339e7 100644 --- a/pkgs/by-name/ni/nix-web/package.nix +++ b/pkgs/by-name/ni/nix-web/package.nix @@ -45,12 +45,12 @@ rustPlatform.buildRustPackage rec { NIX_WEB_BUILD_NIX_CLI_PATH = "${nixPackage}/bin/nix"; - meta = with lib; { + meta = { description = "Web interface for the Nix store"; homepage = "https://codeberg.org/gorgon/gorgon/src/branch/main/nix-web"; - license = licenses.eupl12; - platforms = platforms.unix; - maintainers = with maintainers; [ embr ]; + license = lib.licenses.eupl12; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ embr ]; mainProgram = "nix-web"; }; } diff --git a/pkgs/by-name/ni/nix-zsh-completions/package.nix b/pkgs/by-name/ni/nix-zsh-completions/package.nix index ee621f70daf7..d864721339e3 100644 --- a/pkgs/by-name/ni/nix-zsh-completions/package.nix +++ b/pkgs/by-name/ni/nix-zsh-completions/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp *.zsh $out/share/zsh/plugins/nix ''; - meta = with lib; { + meta = { homepage = "https://github.com/nix-community/nix-zsh-completions"; description = "ZSH completions for Nix, NixOS, and NixOps"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ olejorgenb hedning ma27 diff --git a/pkgs/by-name/ni/nixbit/package.nix b/pkgs/by-name/ni/nixbit/package.nix index 94b4eae794fa..fc453ac4ba36 100644 --- a/pkgs/by-name/ni/nixbit/package.nix +++ b/pkgs/by-name/ni/nixbit/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation (finalAttrs: { --fish <(xvfb-run $out/bin/nixbit --completion-fish) ''; - meta = with lib; { + meta = { description = "KDE Plasma application to update your NixOS system from a git repository"; homepage = "https://github.com/pbek/nixbit"; changelog = "https://github.com/pbek/nixbit/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ pbek ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "nixbit"; }; }) diff --git a/pkgs/by-name/ni/nixel/package.nix b/pkgs/by-name/ni/nixel/package.nix index 60d66aa39bca..df6697be71d1 100644 --- a/pkgs/by-name/ni/nixel/package.nix +++ b/pkgs/by-name/ni/nixel/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { version = testers.testVersion { package = nixel; }; }; - meta = with lib; { + meta = { description = "Lexer, Parser, Abstract Syntax Tree and Concrete Syntax Tree for the Nix Expressions Language"; mainProgram = "nixel"; homepage = "https://github.com/kamadorueda/nixel"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/by-name/ni/nixops-dns/package.nix b/pkgs/by-name/ni/nixops-dns/package.nix index 1a3cb7797c4b..357647be62f5 100644 --- a/pkgs/by-name/ni/nixops-dns/package.nix +++ b/pkgs/by-name/ni/nixops-dns/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/museoa/nixops-dns"; description = "DNS server for resolving NixOps machines"; mainProgram = "nixops-dns"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamilchm sorki ]; diff --git a/pkgs/by-name/ni/nixos-anywhere/package.nix b/pkgs/by-name/ni/nixos-anywhere/package.nix index 3e1d85c70b1f..496b2272c80e 100644 --- a/pkgs/by-name/ni/nixos-anywhere/package.nix +++ b/pkgs/by-name/ni/nixos-anywhere/package.nix @@ -49,17 +49,17 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : ${lib.makeBinPath runtimeDeps} --suffix PATH : ${lib.makeBinPath [ openssh ]} ''; - meta = with lib; { + meta = { description = "Install nixos everywhere via ssh"; homepage = "https://github.com/nix-community/nixos-anywhere"; mainProgram = "nixos-anywhere"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ - maintainers.mic92 - maintainers.lassulus - maintainers.phaer - maintainers.Enzime + lib.maintainers.mic92 + lib.maintainers.lassulus + lib.maintainers.phaer + lib.maintainers.Enzime ]; }; }) diff --git a/pkgs/by-name/ni/nixos-bgrt-plymouth/package.nix b/pkgs/by-name/ni/nixos-bgrt-plymouth/package.nix index 1529df96ebea..c6e18d3cabcc 100644 --- a/pkgs/by-name/ni/nixos-bgrt-plymouth/package.nix +++ b/pkgs/by-name/ni/nixos-bgrt-plymouth/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "BGRT theme with a spinning NixOS logo"; homepage = "https://github.com/helsinki-systems/plymouth-theme-nixos-bgrt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ni/nixos-firewall-tool/package.nix b/pkgs/by-name/ni/nixos-firewall-tool/package.nix index 4615287fb260..f0245905a902 100644 --- a/pkgs/by-name/ni/nixos-firewall-tool/package.nix +++ b/pkgs/by-name/ni/nixos-firewall-tool/package.nix @@ -31,15 +31,15 @@ stdenvNoCC.mkDerivation { shellcheck nixos-firewall-tool ''; - meta = with lib; { + meta = { description = "Tool to temporarily manipulate the NixOS firewall"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ clerie rvfg garyguo ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "nixos-firewall-tool"; }; } diff --git a/pkgs/by-name/ni/nixos-generators/package.nix b/pkgs/by-name/ni/nixos-generators/package.nix index eef7650ffb92..cf9b0abfdfa5 100644 --- a/pkgs/by-name/ni/nixos-generators/package.nix +++ b/pkgs/by-name/ni/nixos-generators/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Collection of image builders"; homepage = "https://github.com/nix-community/nixos-generators"; - license = licenses.mit; - maintainers = with maintainers; [ lassulus ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lassulus ]; mainProgram = "nixos-generate"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ni/nixos-render-docs/package.nix b/pkgs/by-name/ni/nixos-render-docs/package.nix index 21644f6c4b4c..fc8e8c4c23b9 100644 --- a/pkgs/by-name/ni/nixos-render-docs/package.nix +++ b/pkgs/by-name/ni/nixos-render-docs/package.nix @@ -80,10 +80,10 @@ python.pkgs.buildPythonApplication rec { touch $out ''; - meta = with lib; { + meta = { description = "Renderer for NixOS manual and option docs"; mainProgram = "nixos-render-docs"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ni/nixos-shell/package.nix b/pkgs/by-name/ni/nixos-shell/package.nix index b41ee3f47055..97ccf9c63a81 100644 --- a/pkgs/by-name/ni/nixos-shell/package.nix +++ b/pkgs/by-name/ni/nixos-shell/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Spawns lightweight nixos vms in a shell"; inherit (src.meta) homepage; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.unix; mainProgram = "nixos-shell"; }; } diff --git a/pkgs/by-name/ni/nixpacks/package.nix b/pkgs/by-name/ni/nixpacks/package.nix index 3178423bddd4..1b8be9defdb0 100644 --- a/pkgs/by-name/ni/nixpacks/package.nix +++ b/pkgs/by-name/ni/nixpacks/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { # skip test due FHS dependency doCheck = false; - meta = with lib; { + meta = { description = "App source + Nix packages + Docker = Image Resources"; homepage = "https://github.com/railwayapp/nixpacks"; - license = licenses.mit; - maintainers = [ maintainers.zoedsoupe ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.zoedsoupe ]; mainProgram = "nixpacks"; }; } diff --git a/pkgs/by-name/ni/nixpkgs-fmt/package.nix b/pkgs/by-name/ni/nixpkgs-fmt/package.nix index 164b13ef67ac..52088ecb813b 100644 --- a/pkgs/by-name/ni/nixpkgs-fmt/package.nix +++ b/pkgs/by-name/ni/nixpkgs-fmt/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-aookq6n8/dMz+REDwtSghhzcUf66D3O9SKJKx3q7lsI="; - meta = with lib; { + meta = { description = "Nix code formatter for nixpkgs"; homepage = "https://nix-community.github.io/nixpkgs-fmt"; - license = licenses.asl20; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zimbatm ]; mainProgram = "nixpkgs-fmt"; }; } diff --git a/pkgs/by-name/ni/nixpkgs-lint-community/package.nix b/pkgs/by-name/ni/nixpkgs-lint-community/package.nix index 334bfb88786e..bd2cdc197921 100644 --- a/pkgs/by-name/ni/nixpkgs-lint-community/package.nix +++ b/pkgs/by-name/ni/nixpkgs-lint-community/package.nix @@ -17,13 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-wK2ZMqxgSLGhM7TsztFkZHB2+WnT+8Tjd3UrFdIvGpI="; - meta = with lib; { + meta = { description = "Fast semantic linter for Nix using tree-sitter"; mainProgram = "nixpkgs-lint"; homepage = "https://github.com/nix-community/nixpkgs-lint"; changelog = "https://github.com/nix-community/nixpkgs-lint/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ artturin ]; }; diff --git a/pkgs/by-name/nl/nlohmann_json/package.nix b/pkgs/by-name/nl/nlohmann_json/package.nix index d32c7366011b..6216661edcb7 100644 --- a/pkgs/by-name/nl/nlohmann_json/package.nix +++ b/pkgs/by-name/nl/nlohmann_json/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation (finalAttrs: { postInstall = "rm -rf $out/lib64"; - meta = with lib; { + meta = { description = "JSON for Modern C++"; homepage = "https://json.nlohmann.me"; changelog = "https://github.com/nlohmann/json/blob/develop/ChangeLog.md"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/nm/nmap-parse/package.nix b/pkgs/by-name/nm/nmap-parse/package.nix index 8e4180dce494..cfb19087aaba 100644 --- a/pkgs/by-name/nm/nmap-parse/package.nix +++ b/pkgs/by-name/nm/nmap-parse/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Command line nmap XML parser"; homepage = "https://github.com/jonny1102/nmap-parse"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "nmap-parse"; }; } diff --git a/pkgs/by-name/nm/nmon/package.nix b/pkgs/by-name/nm/nmon/package.nix index c142a8ec3281..13a991261fe7 100644 --- a/pkgs/by-name/nm/nmon/package.nix +++ b/pkgs/by-name/nm/nmon/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { cp nmon $out/bin ''; - meta = with lib; { + meta = { description = "AIX & Linux Performance Monitoring tool"; mainProgram = "nmon"; homepage = "https://nmon.sourceforge.net"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ sveitser ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sveitser ]; }; } diff --git a/pkgs/by-name/nm/nmrpflash/package.nix b/pkgs/by-name/nm/nmrpflash/package.nix index 2e098a9ccd67..39965f82c63f 100644 --- a/pkgs/by-name/nm/nmrpflash/package.nix +++ b/pkgs/by-name/nm/nmrpflash/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Netgear Unbrick Utility"; homepage = "https://github.com/jclehner/nmrpflash"; - license = licenses.gpl3; - maintainers = with maintainers; [ dadada ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ dadada ]; mainProgram = "nmrpflash"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nm/nms/package.nix b/pkgs/by-name/nm/nms/package.nix index f7ddc9cfb86c..270e34a4ea97 100644 --- a/pkgs/by-name/nm/nms/package.nix +++ b/pkgs/by-name/nm/nms/package.nix @@ -21,14 +21,14 @@ stdenv.mkDerivation rec { ]; installFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bartobri/no-more-secrets"; description = '' A command line tool that recreates the famous data decryption effect seen in the 1992 movie Sneakers. ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nn/nn/package.nix b/pkgs/by-name/nn/nn/package.nix index 6613dc365e0d..43d97cd59106 100644 --- a/pkgs/by-name/nn/nn/package.nix +++ b/pkgs/by-name/nn/nn/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "C code for Natural Neighbours interpolation of 2D scattered data"; homepage = "https://github.com/sakov/nn-c/"; - platforms = platforms.unix; - license = licenses.bsd3; - maintainers = with maintainers; [ mkez ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mkez ]; }; }) diff --git a/pkgs/by-name/nn/nng/package.nix b/pkgs/by-name/nn/nng/package.nix index 316712c12b12..96e3960e2f1b 100644 --- a/pkgs/by-name/nn/nng/package.nix +++ b/pkgs/by-name/nn/nng/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { "-DNNG_ENABLE_TLS=ON" ]; - meta = with lib; { + meta = { homepage = "https://nng.nanomsg.org/"; description = "Nanomsg next generation"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "nngcat"; - platforms = platforms.unix; - maintainers = with maintainers; [ nviets ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nviets ]; }; } diff --git a/pkgs/by-name/nn/nnpdf/package.nix b/pkgs/by-name/nn/nnpdf/package.nix index b1e55a6d998b..6ed461495f4d 100644 --- a/pkgs/by-name/nn/nnpdf/package.nix +++ b/pkgs/by-name/nn/nnpdf/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { "-DCOMPILE_evolvefit=ON" ]; - meta = with lib; { + meta = { description = "Open-source machine learning framework for global analyses of parton distributions"; mainProgram = "evolven3fit"; homepage = "https://docs.nnpdf.science/"; - license = licenses.gpl3Only; - maintainers = [ maintainers.veprbl ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.veprbl ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/no/nodehun/package.nix b/pkgs/by-name/no/nodehun/package.nix index 8947522834bb..72134b9bcd4f 100644 --- a/pkgs/by-name/no/nodehun/package.nix +++ b/pkgs/by-name/no/nodehun/package.nix @@ -63,10 +63,10 @@ buildNpmPackage { disallowedReferences = [ nodejs ]; - meta = with lib; { + meta = { description = "Hunspell binding for NodeJS that exposes as much of Hunspell as possible and also adds new features"; homepage = "https://github.com/Wulf/nodehun"; - license = licenses.mit; - maintainers = [ maintainers.thomasjm ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.thomasjm ]; }; } diff --git a/pkgs/by-name/no/noice/package.nix b/pkgs/by-name/no/noice/package.nix index 3ee3e1593081..8ce8765c73a6 100644 --- a/pkgs/by-name/no/noice/package.nix +++ b/pkgs/by-name/no/noice/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = with lib; { + meta = { description = "Small ncurses-based file browser"; homepage = "https://git.2f30.org/noice/"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "noice"; }; diff --git a/pkgs/by-name/no/noise-repellent/package.nix b/pkgs/by-name/no/noise-repellent/package.nix index bee759acfefd..55e595763d2f 100644 --- a/pkgs/by-name/no/noise-repellent/package.nix +++ b/pkgs/by-name/no/noise-repellent/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { lv2 ]; - meta = with lib; { + meta = { description = "LV2 plugin for broadband noise reduction"; homepage = "https://github.com/lucianodato/noise-repellent"; - license = licenses.gpl3; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/no/noisetorch/package.nix b/pkgs/by-name/no/noisetorch/package.nix index cc8b045d806a..132c6068ac4a 100644 --- a/pkgs/by-name/no/noisetorch/package.nix +++ b/pkgs/by-name/no/noisetorch/package.nix @@ -40,12 +40,12 @@ buildGoModule rec { install -Dm444 ./assets/noisetorch.desktop $out/share/applications/noisetorch.desktop ''; - meta = with lib; { + meta = { description = "Virtual microphone device with noise supression for PulseAudio"; homepage = "https://github.com/noisetorch/NoiseTorch"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ panaeon ]; mainProgram = "noisetorch"; diff --git a/pkgs/by-name/no/nomachine-client/package.nix b/pkgs/by-name/no/nomachine-client/package.nix index 810019694abf..94b432989887 100644 --- a/pkgs/by-name/no/nomachine-client/package.nix +++ b/pkgs/by-name/no/nomachine-client/package.nix @@ -93,17 +93,17 @@ stdenv.mkDerivation rec { dontBuild = true; dontStrip = true; - meta = with lib; { + meta = { description = "NoMachine remote desktop client (nxplayer)"; homepage = "https://www.nomachine.com/"; mainProgram = "nxplayer"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = { fullName = "NoMachine 7 End-User License Agreement"; url = "https://www.nomachine.com/licensing-7"; free = false; }; - maintainers = with maintainers; [ talyz ]; + maintainers = with lib.maintainers; [ talyz ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/no/nomad-autoscaler/package.nix b/pkgs/by-name/no/nomad-autoscaler/package.nix index e83fef2c859c..9819a051d5f4 100644 --- a/pkgs/by-name/no/nomad-autoscaler/package.nix +++ b/pkgs/by-name/no/nomad-autoscaler/package.nix @@ -94,11 +94,11 @@ let inherit plugins withPlugins; }; - meta = with lib; { + meta = { description = "Autoscaling daemon for Nomad"; mainProgram = "nomad-autoscaler"; homepage = "https://github.com/hashicorp/nomad-autoscaler"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; }; diff --git a/pkgs/by-name/no/nomad-driver-containerd/package.nix b/pkgs/by-name/no/nomad-driver-containerd/package.nix index c5bbc5a936d2..eb99b03b0b80 100644 --- a/pkgs/by-name/no/nomad-driver-containerd/package.nix +++ b/pkgs/by-name/no/nomad-driver-containerd/package.nix @@ -46,12 +46,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://www.github.com/Roblox/nomad-driver-containerd"; description = "Containerd task driver for Nomad"; mainProgram = "nomad-driver-containerd"; - platforms = platforms.linux; - license = licenses.asl20; - maintainers = with maintainers; [ techknowlogick ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/by-name/no/nomad-driver-podman/package.nix b/pkgs/by-name/no/nomad-driver-podman/package.nix index 8d5f9122fce2..40116f941391 100644 --- a/pkgs/by-name/no/nomad-driver-podman/package.nix +++ b/pkgs/by-name/no/nomad-driver-podman/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { # some tests require a running podman service doCheck = false; - meta = with lib; { + meta = { homepage = "https://www.github.com/hashicorp/nomad-driver-podman"; description = "Podman task driver for Nomad"; mainProgram = "nomad-driver-podman"; - platforms = platforms.linux; - license = licenses.mpl20; - maintainers = with maintainers; [ cpcloud ]; + platforms = lib.platforms.linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/by-name/no/nomad-pack/package.nix b/pkgs/by-name/no/nomad-pack/package.nix index 125f8dc5e40e..fd26d055484b 100644 --- a/pkgs/by-name/no/nomad-pack/package.nix +++ b/pkgs/by-name/no/nomad-pack/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/hashicorp/nomad-pack"; changelog = "https://github.com/hashicorp/nomad-pack/blob/main/CHANGELOG.md"; description = "Nomad Pack is a templating and packaging tool used with HashiCorp Nomad"; - license = licenses.mpl20; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/by-name/no/nomino/package.nix b/pkgs/by-name/no/nomino/package.nix index 8108d270d350..d4f38d0b18d6 100644 --- a/pkgs/by-name/no/nomino/package.nix +++ b/pkgs/by-name/no/nomino/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-daHhCr55RzIHooGXBK831SYD1b8NPEDD6mtDut6nuaQ="; - meta = with lib; { + meta = { description = "Batch rename utility for developers"; homepage = "https://github.com/yaa110/nomino"; changelog = "https://github.com/yaa110/nomino/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/no/nordpass/package.nix b/pkgs/by-name/no/nordpass/package.nix index c9f4fe7db621..bece26ceeea9 100644 --- a/pkgs/by-name/no/nordpass/package.nix +++ b/pkgs/by-name/no/nordpass/package.nix @@ -136,14 +136,14 @@ let runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://nordpass.com/"; description = "Secure and simple password manager for a stress-free online experience"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "nordpass"; - maintainers = with maintainers; [ coconnor ]; + maintainers = with lib.maintainers; [ coconnor ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; }; in diff --git a/pkgs/by-name/no/nordzy-cursor-theme/package.nix b/pkgs/by-name/no/nordzy-cursor-theme/package.nix index fbbe8ceeb29c..4a8b7c4ea366 100644 --- a/pkgs/by-name/no/nordzy-cursor-theme/package.nix +++ b/pkgs/by-name/no/nordzy-cursor-theme/package.nix @@ -21,12 +21,12 @@ stdenvNoCC.mkDerivation rec { cp -r hyprcursors/themes/* $out/share/icons ''; - meta = with lib; { + meta = { description = "Cursor theme using the Nord color palette and based on Vimix and cz-Viator"; homepage = "https://github.com/guillaumeboehm/Nordzy-cursors"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ alexnortung ]; }; diff --git a/pkgs/by-name/no/nordzy-icon-theme/package.nix b/pkgs/by-name/no/nordzy-icon-theme/package.nix index 8014d85dfcb7..dc362d5b0fbc 100644 --- a/pkgs/by-name/no/nordzy-icon-theme/package.nix +++ b/pkgs/by-name/no/nordzy-icon-theme/package.nix @@ -47,11 +47,11 @@ stdenvNoCC.mkDerivation rec { dontFixup = true; - meta = with lib; { + meta = { description = "Icon theme using the Nord color palette, based on WhiteSur and Numix icon themes"; homepage = "https://github.com/alvatip/Nordzy-icon"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ alexnortung ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ alexnortung ]; }; } diff --git a/pkgs/by-name/no/normaliz/package.nix b/pkgs/by-name/no/normaliz/package.nix index bcfddfda396f..6762d607b236 100644 --- a/pkgs/by-name/no/normaliz/package.nix +++ b/pkgs/by-name/no/normaliz/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://www.normaliz.uni-osnabrueck.de/"; description = "Open source tool for computations in affine monoids, vector configurations, lattice polytopes, and rational cones"; - maintainers = with maintainers; [ yannickulrich ]; - platforms = with platforms; unix ++ windows; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ yannickulrich ]; + platforms = with lib.platforms; unix ++ windows; + license = lib.licenses.gpl3Plus; mainProgram = "normaliz"; }; }) diff --git a/pkgs/by-name/no/normalize/package.nix b/pkgs/by-name/no/normalize/package.nix index e65c50c69926..3c4b40a11803 100644 --- a/pkgs/by-name/no/normalize/package.nix +++ b/pkgs/by-name/no/normalize/package.nix @@ -16,10 +16,10 @@ stdenv.mkDerivation rec { buildInputs = [ libmad ]; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/normalize/"; description = "Audio file normalizer"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/no/norminette/package.nix b/pkgs/by-name/no/norminette/package.nix index 72f5d783c936..26891f647fd1 100644 --- a/pkgs/by-name/no/norminette/package.nix +++ b/pkgs/by-name/no/norminette/package.nix @@ -31,11 +31,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "norminette" ]; - meta = with lib; { + meta = { description = "Open source norminette to apply 42's norme to C files"; mainProgram = "norminette"; homepage = "https://github.com/42School/norminette"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/no/norwester-font/package.nix b/pkgs/by-name/no/norwester-font/package.nix index c8b0d2e0d3f4..fb8ef1ab1e73 100644 --- a/pkgs/by-name/no/norwester-font/package.nix +++ b/pkgs/by-name/no/norwester-font/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://jamiewilson.io/norwester"; description = "Condensed geometric sans serif by Jamie Wilson"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/no/nosqli/package.nix b/pkgs/by-name/no/nosqli/package.nix index 883459be732e..87b8a1927a9e 100644 --- a/pkgs/by-name/no/nosqli/package.nix +++ b/pkgs/by-name/no/nosqli/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-QnrzEei4Pt4C0vCJu4YN28lWWAqEikmNLrqshd3knx4="; - meta = with lib; { + meta = { description = "NoSql Injection tool for finding vulnerable websites using MongoDB"; mainProgram = "nosqli"; homepage = "https://github.com/Charlie-belmer/nosqli"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/no/nostui/package.nix b/pkgs/by-name/no/nostui/package.nix index ef9f83ccbee5..eea754c3cea2 100644 --- a/pkgs/by-name/no/nostui/package.nix +++ b/pkgs/by-name/no/nostui/package.nix @@ -24,12 +24,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-X5VeL9oWjqoWmXQTCINvvFLdXqCyhO01ckDU7x42Teo="; - meta = with lib; { + meta = { homepage = "https://github.com/akiomik/nostui"; description = "TUI client for Nostr"; - license = licenses.mit; - maintainers = with maintainers; [ heywoodlh ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ heywoodlh ]; + platforms = lib.platforms.unix; mainProgram = "nostui"; }; } diff --git a/pkgs/by-name/no/notable/package.nix b/pkgs/by-name/no/notable/package.nix index 80995ce15d94..771d0c4b5d75 100644 --- a/pkgs/by-name/no/notable/package.nix +++ b/pkgs/by-name/no/notable/package.nix @@ -44,10 +44,10 @@ appimageTools.wrapType2 rec { --add-flags "--disable-seccomp-filter-sandbox" ''; - meta = with lib; { + meta = { description = "Markdown-based note-taking app that doesn't suck"; homepage = "https://github.com/notable/notable"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; maintainers = [ ]; }; diff --git a/pkgs/by-name/no/notcurses/package.nix b/pkgs/by-name/no/notcurses/package.nix index f7ab7e942dd7..483b345a9bd9 100644 --- a/pkgs/by-name/no/notcurses/package.nix +++ b/pkgs/by-name/no/notcurses/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { homepage = "https://github.com/dankamongmen/notcurses"; description = "Blingful TUIs and character graphics"; longDescription = '' @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { It is not a source-compatible X/Open Curses implementation, nor a replacement for NCURSES on existing systems. ''; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; inherit (ncurses.meta) platforms; }; diff --git a/pkgs/by-name/no/notejot/package.nix b/pkgs/by-name/no/notejot/package.nix index 0e49409a0a7d..06b9f447f120 100644 --- a/pkgs/by-name/no/notejot/package.nix +++ b/pkgs/by-name/no/notejot/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/lainsce/notejot"; description = "Stupidly-simple notes app"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "io.github.lainsce.Notejot"; }; } diff --git a/pkgs/by-name/no/noteshrink/package.nix b/pkgs/by-name/no/noteshrink/package.nix index 959f7aa525f2..9d41a84b8d82 100644 --- a/pkgs/by-name/no/noteshrink/package.nix +++ b/pkgs/by-name/no/noteshrink/package.nix @@ -26,11 +26,11 @@ buildPythonApplication rec { pillow ]; - meta = with lib; { + meta = { description = "Convert scans of handwritten notes to beautiful, compact PDFs"; homepage = "https://mzucker.github.io/2016/09/20/noteshrink.html"; - license = licenses.mit; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rnhmjoj ]; mainProgram = "noteshrink"; }; } diff --git a/pkgs/by-name/no/notesnook/package.nix b/pkgs/by-name/no/notesnook/package.nix index 6aad8f362ae6..68bbd0dd81ed 100644 --- a/pkgs/by-name/no/notesnook/package.nix +++ b/pkgs/by-name/no/notesnook/package.nix @@ -39,7 +39,7 @@ let inherit pname version src; }; - meta = with lib; { + meta = { description = "Fully open source & end-to-end encrypted note taking alternative to Evernote"; longDescription = '' Notesnook is a free (as in speech) & open source note taking app @@ -48,8 +48,8 @@ let XChaCha20-Poly1305 & Argon2. ''; homepage = "https://notesnook.com"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ cig0 j0lol ]; diff --git a/pkgs/by-name/no/notify-client/package.nix b/pkgs/by-name/no/notify-client/package.nix index 714f422d97cd..02b035199a65 100644 --- a/pkgs/by-name/no/notify-client/package.nix +++ b/pkgs/by-name/no/notify-client/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { sqlite ]; - meta = with lib; { + meta = { description = "Ntfy client application to receive everyday's notifications"; homepage = "https://github.com/ranfdev/Notify"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "notify"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/no/notify-desktop/package.nix b/pkgs/by-name/no/notify-desktop/package.nix index 33405ed0f08f..c30123d57281 100644 --- a/pkgs/by-name/no/notify-desktop/package.nix +++ b/pkgs/by-name/no/notify-desktop/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { install -m 755 bin/notify-desktop $out/bin/notify-desktop ''; - meta = with lib; { + meta = { description = "Little application that lets you send desktop notifications with one command"; longDescription = '' It's basically clone of notify-send from libnotify, @@ -33,9 +33,9 @@ stdenv.mkDerivation { It also does not use any external dependencies (except from libdbus of course). ''; homepage = "https://github.com/nowrep/notify-desktop"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ ylwghst ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ylwghst ]; mainProgram = "notify-desktop"; }; } diff --git a/pkgs/by-name/no/notify-osd-customizable/package.nix b/pkgs/by-name/no/notify-osd-customizable/package.nix index e235f4f03806..dec0f271062d 100644 --- a/pkgs/by-name/no/notify-osd-customizable/package.nix +++ b/pkgs/by-name/no/notify-osd-customizable/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; - meta = with lib; { + meta = { description = "Daemon that displays passive pop-up notifications"; mainProgram = "notify-osd"; homepage = "https://launchpad.net/notify-osd"; - license = licenses.gpl3; - maintainers = [ maintainers.imalison ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.imalison ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/no/notify/package.nix b/pkgs/by-name/no/notify/package.nix index 4e04f257a0ef..addfcd998536 100644 --- a/pkgs/by-name/no/notify/package.nix +++ b/pkgs/by-name/no/notify/package.nix @@ -30,15 +30,15 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Allows sending the output from any tool to Slack, Discord and Telegram"; longDescription = '' Notify is a helper utility written in Go that allows you to post the output from any tool to Slack, Discord, and Telegram. ''; homepage = "https://github.com/projectdiscovery/notify"; - license = licenses.mit; - maintainers = with maintainers; [ hanemile ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hanemile ]; mainProgram = "notify"; }; } diff --git a/pkgs/by-name/no/notifymuch/package.nix b/pkgs/by-name/no/notifymuch/package.nix index 2cfbd9cae380..ee9b6d6176e0 100644 --- a/pkgs/by-name/no/notifymuch/package.nix +++ b/pkgs/by-name/no/notifymuch/package.nix @@ -43,11 +43,11 @@ python3.pkgs.buildPythonApplication { strictDeps = false; - meta = with lib; { + meta = { description = "Display desktop notifications for unread mail in a notmuch database"; mainProgram = "notifymuch"; homepage = "https://github.com/kspi/notifymuch"; - maintainers = with maintainers; [ arjan-s ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ arjan-s ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/no/notion-app-enhanced/package.nix b/pkgs/by-name/no/notion-app-enhanced/package.nix index 78057b67b3d6..f5f3f9ae041f 100644 --- a/pkgs/by-name/no/notion-app-enhanced/package.nix +++ b/pkgs/by-name/no/notion-app-enhanced/package.nix @@ -24,11 +24,11 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Notion Desktop builds with Notion Enhancer for Windows, MacOS and Linux"; homepage = "https://github.com/notion-enhancer/desktop"; - license = licenses.unfree; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ sei40kr ]; platforms = [ "x86_64-linux" ]; mainProgram = "notion-app-enhanced"; }; diff --git a/pkgs/by-name/no/notmuch-addrlookup/package.nix b/pkgs/by-name/no/notmuch-addrlookup/package.nix index d2f60b6ae64a..fb387922e76f 100644 --- a/pkgs/by-name/no/notmuch-addrlookup/package.nix +++ b/pkgs/by-name/no/notmuch-addrlookup/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { installPhase = "install -D notmuch-addrlookup $out/bin/notmuch-addrlookup"; - meta = with lib; { + meta = { description = "Address lookup tool for Notmuch in C"; homepage = "https://github.com/aperezdc/notmuch-addrlookup-c"; - maintainers = with maintainers; [ mog ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ mog ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; mainProgram = "notmuch-addrlookup"; }; } diff --git a/pkgs/by-name/no/notmuch-bower/package.nix b/pkgs/by-name/no/notmuch-bower/package.nix index 09262d8bfce0..a25b45c6e788 100644 --- a/pkgs/by-name/no/notmuch-bower/package.nix +++ b/pkgs/by-name/no/notmuch-bower/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/wangp/bower"; description = "Curses terminal client for the Notmuch email system"; mainProgram = "bower"; - maintainers = with maintainers; [ jgart ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ jgart ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/no/notmuch-mailmover/package.nix b/pkgs/by-name/no/notmuch-mailmover/package.nix index e8cba4021af4..946a95b53498 100644 --- a/pkgs/by-name/no/notmuch-mailmover/package.nix +++ b/pkgs/by-name/no/notmuch-mailmover/package.nix @@ -45,15 +45,15 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Application to assign notmuch tagged mails to IMAP folders"; mainProgram = "notmuch-mailmover"; homepage = "https://github.com/michaeladler/notmuch-mailmover/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ michaeladler archer-65 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/no/noto-fonts-cjk-serif/package.nix b/pkgs/by-name/no/noto-fonts-cjk-serif/package.nix index 4bb5c093c025..56a476a68165 100644 --- a/pkgs/by-name/no/noto-fonts-cjk-serif/package.nix +++ b/pkgs/by-name/no/noto-fonts-cjk-serif/package.nix @@ -36,7 +36,7 @@ stdenvNoCC.mkDerivation rec { rev-prefix = "Serif"; }; - meta = with lib; { + meta = { description = "Beautiful and free fonts for CJK languages"; homepage = "https://www.google.com/get/noto/help/cjk/"; longDescription = '' @@ -51,9 +51,9 @@ stdenvNoCC.mkDerivation rec { Japanese kana, vertical forms, and variant characters (itaiji); it supports Korean hangeul — both contemporary and archaic. ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mathnerd314 emily leana8959 diff --git a/pkgs/by-name/no/nototools/package.nix b/pkgs/by-name/no/nototools/package.nix index d0a2809a75b5..356eb8bf7672 100644 --- a/pkgs/by-name/no/nototools/package.nix +++ b/pkgs/by-name/no/nototools/package.nix @@ -73,10 +73,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "nototools" ]; - meta = with lib; { + meta = { description = "Noto fonts support tools and scripts plus web site generation"; homepage = "https://github.com/googlefonts/nototools"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/no/nova-filters/package.nix b/pkgs/by-name/no/nova-filters/package.nix index 09dec37941ec..9a591c1a51f2 100644 --- a/pkgs/by-name/no/nova-filters/package.nix +++ b/pkgs/by-name/no/nova-filters/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation (finalAttrs: { scons ]; - meta = with lib; { + meta = { description = "LADSPA plugins based on filters of nova"; homepage = "http://klingt.org/~tim/nova-filters/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/no/nova/package.nix b/pkgs/by-name/no/nova/package.nix index 20ceb28d574c..9db12fdb6f8e 100644 --- a/pkgs/by-name/no/nova/package.nix +++ b/pkgs/by-name/no/nova/package.nix @@ -23,7 +23,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Find outdated or deprecated Helm charts running in your cluster"; mainProgram = "nova"; longDescription = '' @@ -33,7 +33,7 @@ buildGoModule rec { your current version is deprecated, it will let you know. ''; homepage = "https://nova.docs.fairwinds.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ qjoly ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qjoly ]; }; } diff --git a/pkgs/by-name/no/novnc/package.nix b/pkgs/by-name/no/novnc/package.nix index 455aba44f34c..d27f36c17375 100644 --- a/pkgs/by-name/no/novnc/package.nix +++ b/pkgs/by-name/no/novnc/package.nix @@ -40,17 +40,17 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "VNC client web application"; homepage = "https://novnc.com"; - license = with licenses; [ + license = with lib.licenses; [ mpl20 ofl bsd3 bsd2 mit ]; - maintainers = with maintainers; [ neverbehave ]; + maintainers = with lib.maintainers; [ neverbehave ]; mainProgram = "novnc"; }; } diff --git a/pkgs/by-name/no/novops/package.nix b/pkgs/by-name/no/novops/package.nix index e917f0cbd4b4..48cd7ba94c4b 100644 --- a/pkgs/by-name/no/novops/package.nix +++ b/pkgs/by-name/no/novops/package.nix @@ -47,11 +47,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/novops completion zsh) ''; - meta = with lib; { + meta = { description = "Cross-platform secret & config manager for development and CI environments"; homepage = "https://github.com/PierreBeucher/novops"; - license = licenses.lgpl3; - maintainers = with maintainers; [ pbeucher ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ pbeucher ]; mainProgram = "novops"; }; } diff --git a/pkgs/by-name/no/noweb/package.nix b/pkgs/by-name/no/noweb/package.nix index 987731c26c5a..1c9f1bb2795e 100644 --- a/pkgs/by-name/no/noweb/package.nix +++ b/pkgs/by-name/no/noweb/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation (finalAttrs: { pkgs = [ finalAttrs.finalPackage.tex ]; }; - meta = with lib; { + meta = { description = "Simple, extensible literate-programming tool"; homepage = "https://www.cs.tufts.edu/~nr/noweb"; - license = licenses.bsd2; - maintainers = with maintainers; [ yurrriq ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ yurrriq ]; + platforms = with lib.platforms; linux ++ darwin; }; }) diff --git a/pkgs/by-name/no/nowplaying-cli/package.nix b/pkgs/by-name/no/nowplaying-cli/package.nix index 61f46f60930c..784bb871e3d1 100644 --- a/pkgs/by-name/no/nowplaying-cli/package.nix +++ b/pkgs/by-name/no/nowplaying-cli/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "macOS command-line utility for retrieving currently playing media"; homepage = "https://github.com/kirtan-shah/nowplaying-cli"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.darwin; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.darwin; mainProgram = "nowplaying-cli"; }; }) diff --git a/pkgs/by-name/np/npapi_sdk/package.nix b/pkgs/by-name/np/npapi_sdk/package.nix index 0663afc7be34..54f3854460cb 100644 --- a/pkgs/by-name/np/npapi_sdk/package.nix +++ b/pkgs/by-name/np/npapi_sdk/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { sha256 = "0xxfcsjmmgbbyl9zwpzdshbx27grj5fnzjfmldmm9apws2yk9gq1"; }; - meta = with lib; { + meta = { description = "Bundle of NPAPI headers by Mozilla"; homepage = "https://bitbucket.org/mgorny/npapi-sdk"; # see also https://github.com/mozilla/npapi-sdk - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/np/npins/package.nix b/pkgs/by-name/np/npins/package.nix index 8d10fcab54b5..b08ac3037cd7 100644 --- a/pkgs/by-name/np/npins/package.nix +++ b/pkgs/by-name/np/npins/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/npins --prefix PATH : "${runtimePath}" ''; - meta = with lib; { + meta = { description = "Simple and convenient dependency pinning for Nix"; mainProgram = "npins"; homepage = "https://github.com/andir/npins"; - license = licenses.eupl12; - maintainers = with maintainers; [ piegames ]; + license = lib.licenses.eupl12; + maintainers = with lib.maintainers; [ piegames ]; }; } diff --git a/pkgs/by-name/np/npm-lockfile-fix/package.nix b/pkgs/by-name/np/npm-lockfile-fix/package.nix index e12c88d607c8..73d80f62f53e 100644 --- a/pkgs/by-name/np/npm-lockfile-fix/package.nix +++ b/pkgs/by-name/np/npm-lockfile-fix/package.nix @@ -29,12 +29,12 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Add missing integrity and resolved fields to a package-lock.json file"; homepage = "https://github.com/jeslie0/npm-lockfile-fix"; mainProgram = "npm-lockfile-fix"; license = lib.licenses.mit; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lucasew felschr ]; diff --git a/pkgs/by-name/np/npth/package.nix b/pkgs/by-name/np/npth/package.nix index 4cbb7e0ddf25..b73afcaf3438 100644 --- a/pkgs/by-name/np/npth/package.nix +++ b/pkgs/by-name/np/npth/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { musl = pkgsCross.musl64.npth; }; - meta = with lib; { + meta = { description = "New GNU Portable Threads Library"; longDescription = '' This is a library to provide the GNU Pth API and thus a non-preemptive @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { that this is a solid way to provide a co-routine based framework. ''; homepage = "http://www.gnupg.org"; - license = licenses.lgpl3; - platforms = platforms.all; + license = lib.licenses.lgpl3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nq/nqc/package.nix b/pkgs/by-name/nq/nqc/package.nix index 1ff73d14f404..ab10ff8fcc0d 100644 --- a/pkgs/by-name/nq/nqc/package.nix +++ b/pkgs/by-name/nq/nqc/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { dontConfigure = true; - meta = with lib; { + meta = { homepage = "https://bricxcc.sourceforge.net/nqc/"; description = "Programming language for several LEGO MINDSTORMS products including the RCX, CyberMaster, and Scout"; - platforms = platforms.linux; - license = licenses.mpl10; - maintainers = with maintainers; [ christophcharles ]; + platforms = lib.platforms.linux; + license = lib.licenses.mpl10; + maintainers = with lib.maintainers; [ christophcharles ]; }; } diff --git a/pkgs/by-name/nr/nrf-command-line-tools/package.nix b/pkgs/by-name/nr/nrf-command-line-tools/package.nix index f4b1bec1f78e..87c751641be1 100644 --- a/pkgs/by-name/nr/nrf-command-line-tools/package.nix +++ b/pkgs/by-name/nr/nrf-command-line-tools/package.nix @@ -73,8 +73,8 @@ stdenv.mkDerivation { meta = with lib; { description = "Nordic Semiconductor nRF Command Line Tools"; homepage = "https://www.nordicsemi.com/Products/Development-tools/nRF-Command-Line-Tools"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = attrNames supported; - maintainers = with maintainers; [ stargate01 ]; + maintainers = with lib.maintainers; [ stargate01 ]; }; } diff --git a/pkgs/by-name/nr/nrf-udev/package.nix b/pkgs/by-name/nr/nrf-udev/package.nix index 01048df4ec61..40174f7c70ec 100644 --- a/pkgs/by-name/nr/nrf-udev/package.nix +++ b/pkgs/by-name/nr/nrf-udev/package.nix @@ -30,12 +30,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Udev rules for nRF (Nordic Semiconductor) development kits"; homepage = "https://github.com/NordicSemiconductor/nrf-udev"; changelog = "https://github.com/NordicSemiconductor/nrf-udev/releases/tag/${finalAttrs.src.rev}"; - license = licenses.unfree; - platforms = platforms.all; - maintainers = with maintainers; [ h7x4 ]; + license = lib.licenses.unfree; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ h7x4 ]; }; }) diff --git a/pkgs/by-name/nr/nrf5-sdk/package.nix b/pkgs/by-name/nr/nrf5-sdk/package.nix index 4f45b9a47564..27d7bc6b1f33 100644 --- a/pkgs/by-name/nr/nrf5-sdk/package.nix +++ b/pkgs/by-name/nr/nrf5-sdk/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Nordic Semiconductor nRF5 Software Development Kit"; homepage = "https://www.nordicsemi.com/Products/Development-software/nRF5-SDK"; - license = licenses.unfree; - platforms = platforms.all; - maintainers = with maintainers; [ stargate01 ]; + license = lib.licenses.unfree; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ stargate01 ]; }; } diff --git a/pkgs/by-name/nr/nrpl/package.nix b/pkgs/by-name/nr/nrpl/package.nix index 29ffdc552a52..4b44dd86d020 100644 --- a/pkgs/by-name/nr/nrpl/package.nix +++ b/pkgs/by-name/nr/nrpl/package.nix @@ -43,12 +43,12 @@ buildNimPackage { } ''; - meta = with lib; { + meta = { description = "REPL for the Nim programming language"; mainProgram = "nrpl"; homepage = "https://github.com/wheineman/nrpl"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/nr/nrr/package.nix b/pkgs/by-name/nr/nrr/package.nix index fcb1cc474650..a4c05e08de7a 100644 --- a/pkgs/by-name/nr/nrr/package.nix +++ b/pkgs/by-name/nr/nrr/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { postInstall = lib.optionalString nrxAlias "ln -s $out/bin/nr{r,x}"; - meta = with lib; { + meta = { description = "Minimal, blazing fast npm scripts runner"; homepage = "https://github.com/ryanccn/nrr"; - maintainers = with maintainers; [ ryanccn ]; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ ryanccn ]; + license = lib.licenses.gpl3Only; mainProgram = "nrr"; }; } diff --git a/pkgs/by-name/nr/nrsc5/package.nix b/pkgs/by-name/nr/nrsc5/package.nix index 09dc3fe79498..e006bdb732ac 100644 --- a/pkgs/by-name/nr/nrsc5/package.nix +++ b/pkgs/by-name/nr/nrsc5/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { "-DUSE_FAAD2=ON" ]; - meta = with lib; { + meta = { homepage = "https://github.com/theori-io/nrsc5"; description = "HD-Radio decoder for RTL-SDR"; platforms = lib.platforms.linux; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ markuskowa ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ markuskowa ]; mainProgram = "nrsc5"; }; }) diff --git a/pkgs/by-name/ns/ns-3/package.nix b/pkgs/by-name/ns/ns-3/package.nix index e41e6bc7b6f4..eca0d6324019 100644 --- a/pkgs/by-name/ns/ns-3/package.nix +++ b/pkgs/by-name/ns/ns-3/package.nix @@ -160,12 +160,12 @@ stdenv.mkDerivation rec { "strictoverflow" ]; - meta = with lib; { + meta = { homepage = "http://www.nsnam.org"; - license = licenses.gpl3; + license = lib.licenses.gpl3; description = "Discrete time event network simulator"; - platforms = with platforms; unix; - maintainers = with maintainers; [ + platforms = with lib.platforms; unix; + maintainers = with lib.maintainers; [ teto rgrunbla ]; diff --git a/pkgs/by-name/ns/ns-usbloader/package.nix b/pkgs/by-name/ns/ns-usbloader/package.nix index e0ed485b0eaa..662b974f00f7 100644 --- a/pkgs/by-name/ns/ns-usbloader/package.nix +++ b/pkgs/by-name/ns/ns-usbloader/package.nix @@ -106,11 +106,11 @@ maven.buildMavenPackage rec { }) ]; - meta = with lib; { + meta = { description = pkgDescription; homepage = "https://github.com/developersu/ns-usbloader"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ soupglasses ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ soupglasses ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/ns/nsf-ordlista/package.nix b/pkgs/by-name/ns/nsf-ordlista/package.nix index 8972d1317821..3f75a924544b 100644 --- a/pkgs/by-name/ns/nsf-ordlista/package.nix +++ b/pkgs/by-name/ns/nsf-ordlista/package.nix @@ -17,12 +17,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Wordlist from the Norwegian Scrabble Federation"; homepage = "https://www2.scrabbleforbundet.no/"; downloadPage = "https://www2.scrabbleforbundet.no/?p=4881#more-4881"; - license = licenses.unfree; - maintainers = with maintainers; [ h7x4 ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ h7x4 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ns/nsis/package.nix b/pkgs/by-name/ns/nsis/package.nix index 6950c3af6909..b99bdf9ca9ea 100644 --- a/pkgs/by-name/ns/nsis/package.nix +++ b/pkgs/by-name/ns/nsis/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { prefixKey = "PREFIX="; installTargets = [ "install-compiler" ]; - meta = with lib; { + meta = { description = "Free scriptable win32 installer/uninstaller system that doesn't suck and isn't huge"; homepage = "https://nsis.sourceforge.io/"; - license = licenses.zlib; - platforms = platforms.unix; - maintainers = with maintainers; [ pombeirp ]; + license = lib.licenses.zlib; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pombeirp ]; mainProgram = "makensis"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ns/nsncd/package.nix b/pkgs/by-name/ns/nsncd/package.nix index 5325dd9f4b85..76a044ea6c39 100644 --- a/pkgs/by-name/ns/nsncd/package.nix +++ b/pkgs/by-name/ns/nsncd/package.nix @@ -38,15 +38,15 @@ rustPlatform.buildRustPackage { "--skip=handlers::test::test_handle_getservbyport_port_proto_aliases" ]; - meta = with lib; { + meta = { description = "Name service non-caching daemon"; mainProgram = "nsncd"; longDescription = '' nsncd is a nscd-compatible daemon that proxies lookups, without caching. ''; homepage = "https://github.com/twosigma/nsncd"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ flokli picnoir ]; diff --git a/pkgs/by-name/ns/nsplist/package.nix b/pkgs/by-name/ns/nsplist/package.nix index 7a33d233e1ef..aa649c2d0cc3 100644 --- a/pkgs/by-name/ns/nsplist/package.nix +++ b/pkgs/by-name/ns/nsplist/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { maintainers = [ ]; description = "Parses .plist files"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ns/nspr/package.nix b/pkgs/by-name/ns/nspr/package.nix index d16052a7603c..17c205840377 100644 --- a/pkgs/by-name/ns/nspr/package.nix +++ b/pkgs/by-name/ns/nspr/package.nix @@ -52,14 +52,14 @@ stdenv.mkDerivation rec { inherit (nixosTests) firefox firefox-esr; }; - meta = with lib; { + meta = { homepage = "https://firefox-source-docs.mozilla.org/nspr/index.html"; description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ajs124 hexa ]; - platforms = platforms.all; - license = licenses.mpl20; + platforms = lib.platforms.all; + license = lib.licenses.mpl20; }; } diff --git a/pkgs/by-name/ns/nss_ldap/package.nix b/pkgs/by-name/ns/nss_ldap/package.nix index ae4c02f4394f..5e6702eead58 100644 --- a/pkgs/by-name/ns/nss_ldap/package.nix +++ b/pkgs/by-name/ns/nss_ldap/package.nix @@ -43,9 +43,9 @@ stdenv.mkDerivation rec { openldap ]; - meta = with lib; { + meta = { description = "LDAP module for the Solaris Nameservice Switch (NSS)"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ns/nss_pam_ldapd/package.nix b/pkgs/by-name/ns/nss_pam_ldapd/package.nix index 5d3bb59619e4..d00e085ebfb4 100644 --- a/pkgs/by-name/ns/nss_pam_ldapd/package.nix +++ b/pkgs/by-name/ns/nss_pam_ldapd/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { wrapProgram $out/sbin/nslcd --prefix LD_LIBRARY_PATH ":" $out/lib ''; - meta = with lib; { + meta = { description = "LDAP identity and authentication for NSS/PAM"; homepage = "https://arthurdejong.org/nss-pam-ldapd/"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ns/nss_wrapper/package.nix b/pkgs/by-name/ns/nss_wrapper/package.nix index 210fe4a311a7..a86a20c8eaaa 100644 --- a/pkgs/by-name/ns/nss_wrapper/package.nix +++ b/pkgs/by-name/ns/nss_wrapper/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Wrapper for the user, group and hosts NSS API"; mainProgram = "nss_wrapper.pl"; homepage = "https://git.samba.org/?p=nss_wrapper.git;a=summary;"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/nt/ntbtls/package.nix b/pkgs/by-name/nt/ntbtls/package.nix index effcae04a68e..4de2601cb3e0 100644 --- a/pkgs/by-name/nt/ntbtls/package.nix +++ b/pkgs/by-name/nt/ntbtls/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { moveToOutput "bin/ntbtls-config" $dev ''; - meta = with lib; { + meta = { description = "Tiny TLS 1.2 only implementation"; mainProgram = "ntbtls-config"; homepage = "https://www.gnupg.org/software/ntbtls/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ joachifm ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ joachifm ]; }; } diff --git a/pkgs/by-name/nt/ntfs3g/package.nix b/pkgs/by-name/nt/ntfs3g/package.nix index 5d879a74b62d..0be3d7f7235a 100644 --- a/pkgs/by-name/nt/ntfs3g/package.nix +++ b/pkgs/by-name/nt/ntfs3g/package.nix @@ -80,13 +80,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/tuxera/ntfs-3g"; description = "FUSE-based NTFS driver with full write support"; - maintainers = with maintainers; [ dezgeg ]; + maintainers = with lib.maintainers; [ dezgeg ]; mainProgram = "ntfs-3g"; - platforms = with platforms; darwin ++ linux; - license = with licenses; [ + platforms = with lib.platforms; darwin ++ linux; + license = with lib.licenses; [ gpl2Plus # ntfs-3g itself lgpl2Plus # fuse-lite ]; diff --git a/pkgs/by-name/nt/ntfy-alertmanager/package.nix b/pkgs/by-name/nt/ntfy-alertmanager/package.nix index 9726dad9784b..d9339efdc318 100644 --- a/pkgs/by-name/nt/ntfy-alertmanager/package.nix +++ b/pkgs/by-name/nt/ntfy-alertmanager/package.nix @@ -15,15 +15,15 @@ buildGoModule rec { vendorHash = "sha256-NHaLv+Ulzl4ev3a6OjZiacCSmYAtvqFFmbYzAp+4AFU="; - meta = with lib; { + meta = { description = "Bridge between ntfy and Alertmanager"; homepage = "https://git.xenrox.net/~xenrox/ntfy-alertmanager"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "ntfy-alertmanager"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bleetube fpletz ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/nt/ntirpc/package.nix b/pkgs/by-name/nt/ntirpc/package.nix index e3f99bcc380c..0776f07bc77b 100644 --- a/pkgs/by-name/nt/ntirpc/package.nix +++ b/pkgs/by-name/nt/ntirpc/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { cp ${libtirpc}/etc/netconfig $out/etc/ ''; - meta = with lib; { + meta = { description = "Transport-independent RPC (TI-RPC)"; homepage = "https://github.com/nfs-ganesha/ntirpc"; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.linux; - license = licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/nt/ntlm-challenger/package.nix b/pkgs/by-name/nt/ntlm-challenger/package.nix index 6de3791b6145..52099f5108f2 100644 --- a/pkgs/by-name/nt/ntlm-challenger/package.nix +++ b/pkgs/by-name/nt/ntlm-challenger/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { description = "Parse NTLM challenge messages over HTTP and SMB"; mainProgram = "ntlm_challenger"; homepage = "https://github.com/nopfor/ntlm_challenger"; - license = licenses.mit; - maintainers = [ maintainers.crem ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.crem ]; }; } diff --git a/pkgs/by-name/nt/ntopng/package.nix b/pkgs/by-name/nt/ntopng/package.nix index e26ff249810c..7505e7ab4782 100644 --- a/pkgs/by-name/nt/ntopng/package.nix +++ b/pkgs/by-name/nt/ntopng/package.nix @@ -93,13 +93,13 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "High-speed web-based traffic analysis and flow collection tool"; homepage = "https://www.ntop.org/products/traffic-analysis/ntop/"; changelog = "https://github.com/ntop/ntopng/blob/${finalAttrs.version}/CHANGELOG.md"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "ntopng"; }; }) diff --git a/pkgs/by-name/nt/ntp/package.nix b/pkgs/by-name/nt/ntp/package.nix index fcf00bce2845..916ad6a4e2f1 100644 --- a/pkgs/by-name/nt/ntp/package.nix +++ b/pkgs/by-name/nt/ntp/package.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation rec { rm -rf $out/share/doc ''; - meta = with lib; { + meta = { homepage = "https://www.ntp.org/"; description = "Implementation of the Network Time Protocol"; license = { # very close to isc and bsd2 url = "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html"; }; - maintainers = with maintainers; [ thoughtpolice ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nt/nttcp/package.nix b/pkgs/by-name/nt/nttcp/package.nix index d7b73bcee57e..305be433de0f 100644 --- a/pkgs/by-name/nt/nttcp/package.nix +++ b/pkgs/by-name/nt/nttcp/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "New test TCP program"; - license = licenses.unfree; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nt/ntttcp/package.nix b/pkgs/by-name/nt/ntttcp/package.nix index 4ff7ddcb2825..fdcf2dc1f6c1 100644 --- a/pkgs/by-name/nt/ntttcp/package.nix +++ b/pkgs/by-name/nt/ntttcp/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux network throughput multiple-thread benchmark tool"; homepage = "https://github.com/microsoft/ntttcp-for-linux"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ntttcp"; }; } diff --git a/pkgs/by-name/nu/nuXmv/package.nix b/pkgs/by-name/nu/nuXmv/package.nix index d9580d1f1318..51164773a4d4 100644 --- a/pkgs/by-name/nu/nuXmv/package.nix +++ b/pkgs/by-name/nu/nuXmv/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/nuXmv --prefix DYLD_LIBRARY_PATH : ${gmp}/lib ''; - meta = with lib; { + meta = { description = "Symbolic model checker for analysis of finite and infinite state systems"; homepage = "https://nuxmv.fbk.eu/pmwiki.php"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ siraben ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ siraben ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/nu/nudoku/package.nix b/pkgs/by-name/nu/nudoku/package.nix index 650eac8b4acf..1234f3177f37 100644 --- a/pkgs/by-name/nu/nudoku/package.nix +++ b/pkgs/by-name/nu/nudoku/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation rec { ]; buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Ncurses based sudoku game"; mainProgram = "nudoku"; homepage = "https://jubalh.github.io/nudoku"; - license = licenses.gpl3Only; - sourceProvenance = with sourceTypes; [ fromSource ]; - platforms = platforms.all; - maintainers = with maintainers; [ weathercold ]; + license = lib.licenses.gpl3Only; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ weathercold ]; }; } diff --git a/pkgs/by-name/nu/nuget/package.nix b/pkgs/by-name/nu/nuget/package.nix index c80812e295d9..fd28bbc90ba1 100644 --- a/pkgs/by-name/nu/nuget/package.nix +++ b/pkgs/by-name/nu/nuget/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (attrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Package manager for the .NET platform"; mainProgram = "nuget"; homepage = "https://www.mono-project.com/"; @@ -49,9 +49,9 @@ stdenv.mkDerivation (attrs: { packages functionality built-in. ''; # https://learn.microsoft.com/en-us/nuget/resources/nuget-faq#what-is-the-license-for-nuget-exe- - license = licenses.mit; - sourceProvenance = [ sourceTypes.binaryBytecode ]; - maintainers = [ maintainers.mdarocha ]; + license = lib.licenses.mit; + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; + maintainers = [ lib.maintainers.mdarocha ]; inherit (mono.meta) platforms; }; }) diff --git a/pkgs/by-name/nu/nuked-md/package.nix b/pkgs/by-name/nu/nuked-md/package.nix index 71af5135a9bd..f5bae8f6e946 100644 --- a/pkgs/by-name/nu/nuked-md/package.nix +++ b/pkgs/by-name/nu/nuked-md/package.nix @@ -71,16 +71,16 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Cycle accurate Mega Drive emulator"; longDescription = '' Cycle accurate Mega Drive core. The goal of this project is to emulate Sega Mega Drive chipset as accurately as possible using decapped chips photos. ''; homepage = "https://github.com/nukeykt/Nuked-MD"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "Nuked-MD"; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/nu/nullidentdmod/package.nix b/pkgs/by-name/nu/nullidentdmod/package.nix index 74f95fa9a6b7..ad2c1206321f 100644 --- a/pkgs/by-name/nu/nullidentdmod/package.nix +++ b/pkgs/by-name/nu/nullidentdmod/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { install -Dm755 nullidentdmod $out/bin ''; - meta = with lib; { + meta = { description = "Simple identd that just replies with a random string or customized userid"; mainProgram = "nullidentdmod"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/Ranthrall/nullidentdmod"; - maintainers = with maintainers; [ das_j ]; - platforms = platforms.linux; # Must be run by systemd + maintainers = with lib.maintainers; [ das_j ]; + platforms = lib.platforms.linux; # Must be run by systemd }; } diff --git a/pkgs/by-name/nu/nulloy/package.nix b/pkgs/by-name/nu/nulloy/package.nix index d534ef78020a..661e22c72235 100644 --- a/pkgs/by-name/nu/nulloy/package.nix +++ b/pkgs/by-name/nu/nulloy/package.nix @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Music player with a waveform progress bar"; homepage = "https://nulloy.com"; changelog = "https://github.com/nulloy/nulloy/blob/${src.rev}/ChangeLog"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "nulloy"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/nu/num-utils/package.nix b/pkgs/by-name/nu/num-utils/package.nix index 5def44141ddf..d07cdba31012 100644 --- a/pkgs/by-name/nu/num-utils/package.nix +++ b/pkgs/by-name/nu/num-utils/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { "PERL=${perl}/bin/perl" ]; - meta = with lib; { + meta = { description = "Programs for dealing with numbers from the command line"; homepage = "https://suso.suso.org/xulu/Num-utils"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nu/numactl/package.nix b/pkgs/by-name/nu/numactl/package.nix index 331551d4b826..43cec54a2fc7 100644 --- a/pkgs/by-name/nu/numactl/package.nix +++ b/pkgs/by-name/nu/numactl/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { # building ~5% slower until reboot. Ugh! doCheck = false; # never ever! - meta = with lib; { + meta = { description = "Library and tools for non-uniform memory access (NUMA) machines"; homepage = "https://github.com/numactl/numactl"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21 ]; # libnuma is lgpl21 - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/nu/numad/package.nix b/pkgs/by-name/nu/numad/package.nix index f3128b68709d..63dfe6f55999 100644 --- a/pkgs/by-name/nu/numad/package.nix +++ b/pkgs/by-name/nu/numad/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { ''; }; - meta = with lib; { + meta = { description = "User-level daemon that monitors NUMA topology and processes resource consumption to facilitate good NUMA resource access"; mainProgram = "numad"; homepage = "https://fedoraproject.org/wiki/Features/numad"; - license = licenses.lgpl21; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/nu/numdiff/package.nix b/pkgs/by-name/nu/numdiff/package.nix index dc9c37da0e5d..5d8f728ade2d 100644 --- a/pkgs/by-name/nu/numdiff/package.nix +++ b/pkgs/by-name/nu/numdiff/package.nix @@ -16,15 +16,15 @@ stdenv.mkDerivation rec { buildInputs = [ libintl ]; - meta = with lib; { + meta = { description = '' A little program that can be used to compare putatively similar files line by line and field by field, ignoring small numeric differences or/and different numeric formats ''; homepage = "https://www.nongnu.org/numdiff/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nu/numix-cursor-theme/package.nix b/pkgs/by-name/nu/numix-cursor-theme/package.nix index d7a41cc49c54..e9a3bf1a11dd 100644 --- a/pkgs/by-name/nu/numix-cursor-theme/package.nix +++ b/pkgs/by-name/nu/numix-cursor-theme/package.nix @@ -32,11 +32,11 @@ stdenvNoCC.mkDerivation rec { cp -dr --no-preserve='ownership' Numix-Cursor{,-Light} $out/share/icons/ ''; - meta = with lib; { + meta = { description = "Numix cursor theme"; homepage = "https://numixproject.github.io"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ offline ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ offline ]; }; } diff --git a/pkgs/by-name/nu/numix-icon-theme-circle/package.nix b/pkgs/by-name/nu/numix-icon-theme-circle/package.nix index c98cf6a9245e..61d84a691744 100644 --- a/pkgs/by-name/nu/numix-icon-theme-circle/package.nix +++ b/pkgs/by-name/nu/numix-icon-theme-circle/package.nix @@ -47,12 +47,12 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Numix icon theme (circle version)"; homepage = "https://numixproject.github.io"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; # darwin cannot deal with file names differing only in case - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/nu/numix-icon-theme-square/package.nix b/pkgs/by-name/nu/numix-icon-theme-square/package.nix index a7876710760c..5222e031be2d 100644 --- a/pkgs/by-name/nu/numix-icon-theme-square/package.nix +++ b/pkgs/by-name/nu/numix-icon-theme-square/package.nix @@ -47,12 +47,12 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Numix icon theme (square version)"; homepage = "https://numixproject.github.io"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; # darwin cannot deal with file names differing only in case - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix b/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix index 4b7d6b0c7d62..3cf4b444d531 100644 --- a/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix +++ b/pkgs/by-name/nu/numix-solarized-gtk-theme/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Solarized versions of Numix GTK2 and GTK3 theme"; longDescription = '' This is a fork of the Numix GTK theme that replaces the colors of the theme @@ -56,8 +56,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/Ferdi265/numix-solarized-gtk-theme"; downloadPage = "https://github.com/Ferdi265/numix-solarized-gtk-theme/releases"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.offline ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.offline ]; }; } diff --git a/pkgs/by-name/nu/numr/package.nix b/pkgs/by-name/nu/numr/package.nix index a0001031e410..2b61a2f5df2b 100644 --- a/pkgs/by-name/nu/numr/package.nix +++ b/pkgs/by-name/nu/numr/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Text calculator inspired by Numi - natural language expressions, variables, unit conversions"; homepage = "https://github.com/nasedkinpv/numr"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "numr"; diff --git a/pkgs/by-name/nu/numworks-epsilon/package.nix b/pkgs/by-name/nu/numworks-epsilon/package.nix index ffb92658150c..d8a48ec84af1 100644 --- a/pkgs/by-name/nu/numworks-epsilon/package.nix +++ b/pkgs/by-name/nu/numworks-epsilon/package.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Simulator for Epsilon, a High-performance graphing calculator operating system"; homepage = "https://numworks.com/"; - license = licenses.cc-by-nc-sa-40; - maintainers = with maintainers; [ erikbackman ]; + license = lib.licenses.cc-by-nc-sa-40; + maintainers = with lib.maintainers; [ erikbackman ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/nu/numworks-udev-rules/package.nix b/pkgs/by-name/nu/numworks-udev-rules/package.nix index 425651c6c937..efa40f4bff5b 100644 --- a/pkgs/by-name/nu/numworks-udev-rules/package.nix +++ b/pkgs/by-name/nu/numworks-udev-rules/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { install -Dm 644 "${udevRules}" "$out/lib/udev/rules.d/50-numworks-calculator.rules" ''; - meta = with lib; { + meta = { description = "Udev rules for Numworks calculators"; homepage = "https://numworks.com"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/nu/nuraft/package.nix b/pkgs/by-name/nu/nuraft/package.nix index d32e01202816..8a367cb66465 100644 --- a/pkgs/by-name/nu/nuraft/package.nix +++ b/pkgs/by-name/nu/nuraft/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/eBay/NuRaft"; description = "C++ implementation of Raft core logic as a replication library"; - license = licenses.asl20; - maintainers = with maintainers; [ wheelsandmetal ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ wheelsandmetal ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nu/nusmv/package.nix b/pkgs/by-name/nu/nusmv/package.nix index 0e7bcad3cc9e..9bd86ba048dd 100644 --- a/pkgs/by-name/nu/nusmv/package.nix +++ b/pkgs/by-name/nu/nusmv/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { cp -r lib $out/lib ''; - meta = with lib; { + meta = { description = "New symbolic model checker for the analysis of synchronous finite-state and infinite-state systems"; homepage = "https://nusmv.fbk.eu/"; - maintainers = with maintainers; [ mgttlinger ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.linux ++ platforms.darwin; + maintainers = with lib.maintainers; [ mgttlinger ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/nu/nut/package.nix b/pkgs/by-name/nu/nut/package.nix index 64efe0b6c811..fc42f5adcafd 100644 --- a/pkgs/by-name/nu/nut/package.nix +++ b/pkgs/by-name/nu/nut/package.nix @@ -145,7 +145,7 @@ stdenv.mkDerivation rec { rm $out/etc/udev/rules.d/52-nut-ipmipsu.rules ''; - meta = with lib; { + meta = { description = "Network UPS Tools"; longDescription = '' Network UPS Tools is a collection of programs which provide a common @@ -153,9 +153,9 @@ stdenv.mkDerivation rec { It uses a layered approach to connect all of the parts. ''; homepage = "https://networkupstools.org/"; - platforms = platforms.linux; - maintainers = [ maintainers.pierron ]; - license = with licenses; [ + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.pierron ]; + license = with lib.licenses; [ gpl1Plus gpl2Plus gpl3Plus diff --git a/pkgs/by-name/nu/nuttcp/package.nix b/pkgs/by-name/nu/nuttcp/package.nix index c5e700a39a58..a08f346f7be9 100644 --- a/pkgs/by-name/nu/nuttcp/package.nix +++ b/pkgs/by-name/nu/nuttcp/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { installManPage nuttcp.8 ''; - meta = with lib; { + meta = { description = "Network performance measurement tool"; longDescription = '' nuttcp is a network performance measurement tool intended for use by @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { system, and wall-clock time, transmitter and receiver CPU utilization, and loss percentage (for UDP transfers). ''; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "http://nuttcp.net/"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "nuttcp"; }; } diff --git a/pkgs/by-name/nu/nuweb/package.nix b/pkgs/by-name/nu/nuweb/package.nix index a0c1f20a9fb5..f3ee25d8fa81 100644 --- a/pkgs/by-name/nu/nuweb/package.nix +++ b/pkgs/by-name/nu/nuweb/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation rec { cp htdocs/index.html nuweb.w nuweb.pdf nuwebdoc.pdf README $out/share/doc/${pname}-${version} ''; - meta = with lib; { + meta = { description = "Simple literate programming tool"; mainProgram = "nuweb"; homepage = "https://nuweb.sourceforge.net"; - license = licenses.free; + license = lib.licenses.free; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } # TODO: nuweb.el Emacs integration diff --git a/pkgs/by-name/nv/nvc/package.nix b/pkgs/by-name/nv/nvc/package.nix index 0e3f5710d743..840b684ef3b9 100644 --- a/pkgs/by-name/nv/nvc/package.nix +++ b/pkgs/by-name/nv/nvc/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "VHDL compiler and simulator"; mainProgram = "nvc"; homepage = "https://www.nickg.me.uk/nvc/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nv/nvidia-container-toolkit/nvidia-docker.nix b/pkgs/by-name/nv/nvidia-container-toolkit/nvidia-docker.nix index 983bbcc89a47..3dafa5e48eac 100644 --- a/pkgs/by-name/nv/nvidia-container-toolkit/nvidia-docker.nix +++ b/pkgs/by-name/nv/nvidia-container-toolkit/nvidia-docker.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp bin/nvidia-docker $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/NVIDIA/nvidia-docker"; description = "NVIDIA container runtime for Docker"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/by-name/nv/nvidia-optical-flow-sdk/package.nix b/pkgs/by-name/nv/nvidia-optical-flow-sdk/package.nix index 3dfad2f8eff6..b347142c62a5 100644 --- a/pkgs/by-name/nv/nvidia-optical-flow-sdk/package.nix +++ b/pkgs/by-name/nv/nvidia-optical-flow-sdk/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation { cudaPackages.markForCudatoolkitRootHook ]; - meta = with lib; { + meta = { description = "Nvidia optical flow headers for computing the relative motion of pixels between images"; homepage = "https://developer.nvidia.com/opticalflow-sdk"; - license = licenses.bsd3; # applies to the header files only - platforms = platforms.all; + license = lib.licenses.bsd3; # applies to the header files only + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nv/nvidia-texture-tools/package.nix b/pkgs/by-name/nv/nvidia-texture-tools/package.nix index c7db25018023..0d6e9c5cada3 100644 --- a/pkgs/by-name/nv/nvidia-texture-tools/package.nix +++ b/pkgs/by-name/nv/nvidia-texture-tools/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { moveToOutput lib "$lib" ''; - meta = with lib; { + meta = { description = "Set of cuda-enabled texture tools and compressors"; homepage = "https://github.com/castano/nvidia-texture-tools"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/nv/nvimpager/package.nix b/pkgs/by-name/nv/nvimpager/package.nix index 9a4b8908b2d0..08c930168ab4 100644 --- a/pkgs/by-name/nv/nvimpager/package.nix +++ b/pkgs/by-name/nv/nvimpager/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { patchShebangs --update --host $out/bin/nvimpager ''; - meta = with lib; { + meta = { description = "Use neovim as pager"; longDescription = '' Use neovim as a pager to view manpages, diffs, etc with nvim's syntax @@ -67,9 +67,9 @@ stdenv.mkDerivation rec { and a ansi esc mode to highlight ansi escape sequences in neovim. ''; homepage = "https://github.com/lucc/nvimpager"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.lucc ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.lucc ]; mainProgram = "nvimpager"; }; } diff --git a/pkgs/by-name/nv/nvme-cli/package.nix b/pkgs/by-name/nv/nvme-cli/package.nix index 6d564a8ea355..20057831bea7 100644 --- a/pkgs/by-name/nv/nvme-cli/package.nix +++ b/pkgs/by-name/nv/nvme-cli/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; # https://nvmexpress.org/ description = "NVM-Express user space tooling for Linux"; longDescription = '' @@ -53,9 +53,9 @@ stdenv.mkDerivation rec { tooling for NVM-Express drives. It was made specifically for Linux as it relies on the IOCTLs defined by the mainline kernel driver. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mic92 vifino ]; diff --git a/pkgs/by-name/nv/nvmet-cli/package.nix b/pkgs/by-name/nv/nvmet-cli/package.nix index 7380fdb40092..f96290cb3053 100644 --- a/pkgs/by-name/nv/nvmet-cli/package.nix +++ b/pkgs/by-name/nv/nvmet-cli/package.nix @@ -21,11 +21,11 @@ python3Packages.buildPythonApplication rec { # This package requires the `nvmet` kernel module to be loaded for tests. doCheck = false; - meta = with lib; { + meta = { description = "NVMe target CLI"; mainProgram = "nvmetcli"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ hoverbear ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hoverbear ]; }; } diff --git a/pkgs/by-name/nv/nvmetcfg/package.nix b/pkgs/by-name/nv/nvmetcfg/package.nix index 70eba0ecbf46..e47ce7b07be9 100644 --- a/pkgs/by-name/nv/nvmetcfg/package.nix +++ b/pkgs/by-name/nv/nvmetcfg/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { inherit (nixosTests) nvmetcfg; }; - meta = with lib; { + meta = { description = "NVMe-oF Target Configuration Utility for Linux"; homepage = "https://github.com/vifino/nvmetcfg"; - license = licenses.isc; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "nvmetcfg"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/nw/nwg-bar/package.nix b/pkgs/by-name/nw/nwg-bar/package.nix index 15bbaa60e2d0..32b8e4b85c8c 100644 --- a/pkgs/by-name/nw/nwg-bar/package.nix +++ b/pkgs/by-name/nw/nwg-bar/package.nix @@ -44,12 +44,12 @@ buildGoModule rec { cp -r config/* images $out/share/nwg-bar ''; - meta = with lib; { + meta = { description = "GTK3-based button bar for sway and other wlroots-based compositors"; mainProgram = "nwg-bar"; homepage = "https://github.com/nwg-piotr/nwg-bar"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sei40kr ]; }; } diff --git a/pkgs/by-name/nw/nwg-dock/package.nix b/pkgs/by-name/nw/nwg-dock/package.nix index 43eea2388399..fc1802ca1c22 100644 --- a/pkgs/by-name/nw/nwg-dock/package.nix +++ b/pkgs/by-name/nw/nwg-dock/package.nix @@ -31,12 +31,12 @@ buildGoModule rec { gtk-layer-shell ]; - meta = with lib; { + meta = { description = "GTK3-based dock for sway"; homepage = "https://github.com/nwg-piotr/nwg-dock"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "nwg-dock"; }; } diff --git a/pkgs/by-name/nw/nwg-drawer/package.nix b/pkgs/by-name/nw/nwg-drawer/package.nix index 3531b6c88f3b..aa438cde4911 100644 --- a/pkgs/by-name/nw/nwg-drawer/package.nix +++ b/pkgs/by-name/nw/nwg-drawer/package.nix @@ -59,7 +59,7 @@ buildGoModule { ) ''; - meta = with lib; { + meta = { description = "Application drawer for sway Wayland compositor"; homepage = "https://github.com/nwg-piotr/nwg-drawer"; changelog = "https://github.com/nwg-piotr/nwg-drawer/releases/tag/${src.rev}"; diff --git a/pkgs/by-name/nw/nwg-launchers/package.nix b/pkgs/by-name/nw/nwg-launchers/package.nix index 2c79d969f26a..4ed956ec6e8b 100644 --- a/pkgs/by-name/nw/nwg-launchers/package.nix +++ b/pkgs/by-name/nw/nwg-launchers/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { --prefix PATH : "${swaylock}/bin" ''; - meta = with lib; { + meta = { description = "GTK-based launchers: application grid, button bar, dmenu for sway and other window managers"; homepage = "https://github.com/nwg-piotr/nwg-launchers"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/nw/nwg-look/package.nix b/pkgs/by-name/nw/nwg-look/package.nix index 0da3a4ae20ca..af6c19cfef97 100644 --- a/pkgs/by-name/nw/nwg-look/package.nix +++ b/pkgs/by-name/nw/nwg-look/package.nix @@ -66,12 +66,12 @@ buildGoModule rec { ) ''; - meta = with lib; { + meta = { homepage = "https://github.com/nwg-piotr/nwg-look"; description = "GTK settings editor, designed to work properly in wlroots-based Wayland environment"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ max-amb ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ max-amb ]; mainProgram = "nwg-look"; }; } diff --git a/pkgs/by-name/nw/nwg-menu/package.nix b/pkgs/by-name/nw/nwg-menu/package.nix index b45d9312e318..41ab3a8e2024 100644 --- a/pkgs/by-name/nw/nwg-menu/package.nix +++ b/pkgs/by-name/nw/nwg-menu/package.nix @@ -55,12 +55,12 @@ buildGoModule rec { gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "$out/share") ''; - meta = with lib; { + meta = { homepage = "https://github.com/nwg-piotr/nwg-menu"; description = "MenuStart plugin for nwg-panel"; mainProgram = "nwg-menu"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ berbiche ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ berbiche ]; }; } diff --git a/pkgs/by-name/nw/nwg-wrapper/package.nix b/pkgs/by-name/nw/nwg-wrapper/package.nix index 8ea443fc3f67..94202cfddaef 100644 --- a/pkgs/by-name/nw/nwg-wrapper/package.nix +++ b/pkgs/by-name/nw/nwg-wrapper/package.nix @@ -50,11 +50,11 @@ python3Packages.buildPythonPackage rec { pythonImportsCheck = [ "nwg_wrapper" ]; - meta = with lib; { + meta = { description = "Wrapper to display a script output or a text file content on the desktop in sway or other wlroots-based compositors"; mainProgram = "nwg-wrapper"; homepage = "https://github.com/nwg-piotr/nwg-wrapper/"; - license = licenses.mit; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/by-name/nw/nwipe/package.nix b/pkgs/by-name/nw/nwipe/package.nix index 22e7c5002e80..dbe647f66d00 100644 --- a/pkgs/by-name/nw/nwipe/package.nix +++ b/pkgs/by-name/nw/nwipe/package.nix @@ -49,15 +49,15 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Securely erase disks"; mainProgram = "nwipe"; homepage = "https://github.com/martijnvanbrummelen/nwipe"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ vifino woffs ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/nx/nx2elf/package.nix b/pkgs/by-name/nx/nx2elf/package.nix index 401bd949d86b..6cd9aa2e00cf 100644 --- a/pkgs/by-name/nx/nx2elf/package.nix +++ b/pkgs/by-name/nx/nx2elf/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation { install -D nx2elf $out/bin/nx2elf ''; - meta = with lib; { + meta = { homepage = "https://github.com/shuffle2/nx2elf"; description = "Convert Nintendo Switch executable files to ELFs"; - license = licenses.unfree; # No license specified upstream + license = lib.licenses.unfree; # No license specified upstream platforms = [ "x86_64-linux" ]; # Should work on Darwin as well, but this is untested. aarch64-linux fails. maintainers = [ ]; mainProgram = "nx2elf"; diff --git a/pkgs/by-name/nx/nxpmicro-mfgtools/package.nix b/pkgs/by-name/nx/nxpmicro-mfgtools/package.nix index 129d1aba36fa..1d14cedc23e2 100644 --- a/pkgs/by-name/nx/nxpmicro-mfgtools/package.nix +++ b/pkgs/by-name/nx/nxpmicro-mfgtools/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { --bash ../snap/local/bash-completion/universal-update-utility ''; - meta = with lib; { + meta = { description = "Freescale/NXP I.MX chip image deploy tools"; longDescription = '' UUU (Universal Update Utility) is a command line tool, evolved out of @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { script works on both OS. ''; homepage = "https://github.com/NXPmicro/mfgtools"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bmilanov jraygauthier ]; mainProgram = "uuu"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ny/nyancat/package.nix b/pkgs/by-name/ny/nyancat/package.nix index e69cf3e6870a..e69f49da85e3 100644 --- a/pkgs/by-name/ny/nyancat/package.nix +++ b/pkgs/by-name/ny/nyancat/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { mkdir -p $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Nyancat in your terminal, rendered through ANSI escape sequences"; homepage = "https://nyancat.dakko.us"; - license = licenses.ncsa; - maintainers = with maintainers; [ midchildan ]; - platforms = platforms.unix; + license = lib.licenses.ncsa; + maintainers = with lib.maintainers; [ midchildan ]; + platforms = lib.platforms.unix; mainProgram = "nyancat"; }; } diff --git a/pkgs/by-name/ny/nylon/package.nix b/pkgs/by-name/ny/nylon/package.nix index 4ad702ff4bf9..ffb459be3213 100644 --- a/pkgs/by-name/ny/nylon/package.nix +++ b/pkgs/by-name/ny/nylon/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { buildInputs = [ libevent ]; - meta = with lib; { + meta = { homepage = "http://monkey.org/~marius/nylon"; description = "Proxy server, supporting SOCKS 4 and 5, as well as a mirror mode"; - license = licenses.bsdOriginal; - platforms = platforms.linux; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; mainProgram = "nylon"; }; } diff --git a/pkgs/by-name/ny/nyx/package.nix b/pkgs/by-name/ny/nyx/package.nix index cfc82671f18f..f25f6c8e7fd3 100644 --- a/pkgs/by-name/ny/nyx/package.nix +++ b/pkgs/by-name/ny/nyx/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "nyx" ]; - meta = with lib; { + meta = { description = "Command-line monitor for Tor"; mainProgram = "nyx"; homepage = "https://nyx.torproject.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ offline ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ offline ]; }; } diff --git a/pkgs/by-name/nz/nzbget/package.nix b/pkgs/by-name/nz/nzbget/package.nix index 04bc4baddadc..992d27d76aba 100644 --- a/pkgs/by-name/nz/nzbget/package.nix +++ b/pkgs/by-name/nz/nzbget/package.nix @@ -79,16 +79,16 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = { inherit (nixosTests) nzbget; }; - meta = with lib; { + meta = { homepage = "https://nzbget.com/"; changelog = "https://github.com/nzbgetcom/nzbget/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "Command line tool for downloading files from news servers"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ pSub devusb ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; mainProgram = "nzbget"; }; }) diff --git a/pkgs/by-name/oa/oak/package.nix b/pkgs/by-name/oa/oak/package.nix index f630344ec013..8641fa580346 100644 --- a/pkgs/by-name/oa/oak/package.nix +++ b/pkgs/by-name/oa/oak/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-iQtb3zNa57nB6x4InVPw7FCmW7XPw5yuz0OcfASXPD8="; - meta = with lib; { + meta = { description = "Expressive, simple, dynamic programming language"; mainProgram = "oak"; homepage = "https://oaklang.org/"; - license = licenses.mit; - maintainers = with maintainers; [ tejasag ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tejasag ]; }; } diff --git a/pkgs/by-name/oa/oam-tools/package.nix b/pkgs/by-name/oa/oam-tools/package.nix index d1fc3937f93e..709f93a9ecb9 100644 --- a/pkgs/by-name/oa/oam-tools/package.nix +++ b/pkgs/by-name/oa/oam-tools/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Analysis and management tools for an Open Asset Model database"; homepage = "https://github.com/owasp-amass/oam-tools"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/oa/oath-toolkit/package.nix b/pkgs/by-name/oa/oath-toolkit/package.nix index d994e61601d0..9f86a5f4046e 100644 --- a/pkgs/by-name/oa/oath-toolkit/package.nix +++ b/pkgs/by-name/oa/oath-toolkit/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Components for building one-time password authentication systems"; homepage = "https://www.nongnu.org/oath-toolkit/"; - maintainers = with maintainers; [ schnusch ]; - platforms = with platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ schnusch ]; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "oathtool"; }; } diff --git a/pkgs/by-name/oa/oatpp/package.nix b/pkgs/by-name/oa/oatpp/package.nix index a0daeafbd9d0..b3b0c5101ae0 100644 --- a/pkgs/by-name/oa/oatpp/package.nix +++ b/pkgs/by-name/oa/oatpp/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 3.1 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://oatpp.io/"; description = "Light and powerful C++ web framework for highly scalable and resource-efficient web applications"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/oa/oauth2-proxy/package.nix b/pkgs/by-name/oa/oauth2-proxy/package.nix index f139c70f3c99..1f4c7bd1d806 100644 --- a/pkgs/by-name/oa/oauth2-proxy/package.nix +++ b/pkgs/by-name/oa/oauth2-proxy/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { versionCheckProgramArg = "--version"; doInstallCheck = true; - meta = with lib; { + meta = { description = "Reverse proxy that provides authentication with Google, Github, or other providers"; homepage = "https://github.com/oauth2-proxy/oauth2-proxy/"; - license = licenses.mit; - teams = [ teams.serokell ]; + license = lib.licenses.mit; + teams = [ lib.teams.serokell ]; mainProgram = "oauth2-proxy"; }; } diff --git a/pkgs/by-name/oa/oauth2c/package.nix b/pkgs/by-name/oa/oauth2c/package.nix index 0a4e33cd85f5..b96bafcf07da 100644 --- a/pkgs/by-name/oa/oauth2c/package.nix +++ b/pkgs/by-name/oa/oauth2c/package.nix @@ -19,7 +19,7 @@ buildGoModule rec { doCheck = false; # tests want to talk to oauth2c.us.authz.cloudentity.io - meta = with lib; { + meta = { homepage = "https://github.com/cloudentity/oauth2c"; description = "User-friendly OAuth2 CLI"; mainProgram = "oauth2c"; @@ -29,8 +29,8 @@ buildGoModule rec { using any grant type or client authentication method. It is compliant with almost all basic and advanced OAuth 2.0, OIDC, OIDF FAPI and JWT profiles. ''; - license = licenses.asl20; - maintainers = [ maintainers.flokli ]; - platforms = platforms.darwin ++ platforms.linux; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.flokli ]; + platforms = lib.platforms.darwin ++ lib.platforms.linux; }; } diff --git a/pkgs/by-name/oa/oauth2l/package.nix b/pkgs/by-name/oa/oauth2l/package.nix index 692707d7c788..bbf95bb1147c 100644 --- a/pkgs/by-name/oa/oauth2l/package.nix +++ b/pkgs/by-name/oa/oauth2l/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { # tests fail on linux for some reason doCheck = stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Simple CLI for interacting with Google API authentication"; homepage = "https://github.com/google/oauth2l"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "oauth2l"; }; } diff --git a/pkgs/by-name/oa/oauth2ms/package.nix b/pkgs/by-name/oa/oauth2ms/package.nix index 2e3b729cf6eb..3439275ba580 100644 --- a/pkgs/by-name/oa/oauth2ms/package.nix +++ b/pkgs/by-name/oa/oauth2ms/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/harishkrupo/oauth2ms"; description = "XOAUTH2 compatible Office365 token fetcher"; mainProgram = "oauth2ms"; - platforms = platforms.all; - license = licenses.asl20; - maintainers = with maintainers; [ wentasah ]; + platforms = lib.platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ wentasah ]; }; } diff --git a/pkgs/by-name/ob/oberon-risc-emu/package.nix b/pkgs/by-name/ob/oberon-risc-emu/package.nix index b947746eaf03..36e917dc230a 100644 --- a/pkgs/by-name/ob/oberon-risc-emu/package.nix +++ b/pkgs/by-name/ob/oberon-risc-emu/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { mv risc $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/pdewacht/oberon-risc-emu/"; description = "Emulator for the Oberon RISC machine"; - license = licenses.isc; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "risc"; }; } diff --git a/pkgs/by-name/ob/obex_data_server/package.nix b/pkgs/by-name/ob/obex_data_server/package.nix index d38525342c41..6e1fcf7b54d5 100644 --- a/pkgs/by-name/ob/obex_data_server/package.nix +++ b/pkgs/by-name/ob/obex_data_server/package.nix @@ -41,9 +41,9 @@ stdenv.mkDerivation rec { export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH" ''; - meta = with lib; { + meta = { homepage = "http://wiki.muiline.com/obex-data-server"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ob/obexd/package.nix b/pkgs/by-name/ob/obexd/package.nix index e5d23c750d8c..f37f0c8fe0c5 100644 --- a/pkgs/by-name/ob/obexd/package.nix +++ b/pkgs/by-name/ob/obexd/package.nix @@ -29,9 +29,9 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { homepage = "https://www.bluez.org/"; - platforms = platforms.linux; - license = licenses.gpl3; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/ob/obexfs/package.nix b/pkgs/by-name/ob/obexfs/package.nix index 2d3364cc2a83..3d5c2c999545 100644 --- a/pkgs/by-name/ob/obexfs/package.nix +++ b/pkgs/by-name/ob/obexfs/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { bluez ]; - meta = with lib; { + meta = { homepage = "http://dev.zuckschwerdt.org/openobex/wiki/ObexFs"; description = "Tool to mount OBEX-based devices (such as Bluetooth phones)"; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2Plus; }; } diff --git a/pkgs/by-name/ob/obexftp/package.nix b/pkgs/by-name/ob/obexftp/package.nix index 584e86f2d405..0bb2ec9acc03 100644 --- a/pkgs/by-name/ob/obexftp/package.nix +++ b/pkgs/by-name/ob/obexftp/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { sed -i 's,^Requires: bluetooth,Requires:,' $out/lib/pkgconfig/obexftp.pc ''; - meta = with lib; { + meta = { homepage = "http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp"; description = "Library and tool to access files on OBEX-based devices (such as Bluetooth phones)"; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2Plus; }; } diff --git a/pkgs/by-name/ob/obitools3/package.nix b/pkgs/by-name/ob/obitools3/package.nix index 501b7f9c6750..385f639befd4 100644 --- a/pkgs/by-name/ob/obitools3/package.nix +++ b/pkgs/by-name/ob/obitools3/package.nix @@ -36,12 +36,12 @@ python3Packages.buildPythonApplication rec { doCheck = true; - meta = with lib; { + meta = { description = "Management of analyses and data in DNA metabarcoding"; mainProgram = "obi"; homepage = "https://git.metabarcoding.org/obitools/obitools3"; - license = licenses.cecill20; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.all; + license = lib.licenses.cecill20; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ob/objconv/package.nix b/pkgs/by-name/ob/objconv/package.nix index 240d4c90d216..29c87d22079c 100644 --- a/pkgs/by-name/ob/objconv/package.nix +++ b/pkgs/by-name/ob/objconv/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { mv objconv-instructions.pdf $out/doc/objconv ''; - meta = with lib; { + meta = { description = "Object and executable file converter, modifier and disassembler"; mainProgram = "objconv"; homepage = "https://www.agner.org/optimize/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ob/obsidian/package.nix b/pkgs/by-name/ob/obsidian/package.nix index 1dfdd8a21264..64259fad8d4b 100644 --- a/pkgs/by-name/ob/obsidian/package.nix +++ b/pkgs/by-name/ob/obsidian/package.nix @@ -14,13 +14,13 @@ let pname = "obsidian"; version = "1.10.6"; appname = "Obsidian"; - meta = with lib; { + meta = { description = "Powerful knowledge base that works on top of a local folder of plain text Markdown files"; homepage = "https://obsidian.md"; downloadPage = "https://github.com/obsidianmd/obsidian-releases/releases"; mainProgram = "obsidian"; - license = licenses.obsidian; - maintainers = with maintainers; [ + license = lib.licenses.obsidian; + maintainers = with lib.maintainers; [ atila conradmearns zaninime diff --git a/pkgs/by-name/oc/ocaml-pds/package.nix b/pkgs/by-name/oc/ocaml-pds/package.nix index 94044e2d261b..821bb18e0e80 100644 --- a/pkgs/by-name/oc/ocaml-pds/package.nix +++ b/pkgs/by-name/oc/ocaml-pds/package.nix @@ -55,15 +55,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "A tool to build Makefiles for OCaml projects"; longDescription = '' pds is a build system for Ocaml that is meant to make it easy to build a project that follows a particular layout by generating a makefile for the project. The input to pds is a config file, pds.conf, and a directory structure, which is always the current working directory, and the output is the build description. ''; homepage = "https://hg.sr.ht/~mmatalka/pds"; changelog = "https://hg.sr.ht/~mmatalka/pds#changelog"; - license = licenses.bsd3; - maintainers = with maintainers; [ mtrsk ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mtrsk ]; platforms = ocaml.meta.platforms; }; }) diff --git a/pkgs/by-name/oc/ocf-resource-agents/package.nix b/pkgs/by-name/oc/ocf-resource-agents/package.nix index e467d5ddfd01..9ff4ced6d42e 100644 --- a/pkgs/by-name/oc/ocf-resource-agents/package.nix +++ b/pkgs/by-name/oc/ocf-resource-agents/package.nix @@ -61,12 +61,12 @@ let ] ); - meta = with lib; { + meta = { homepage = "https://github.com/ClusterLabs/resource-agents"; description = "Combined repository of OCF agents from the RHCS and Linux-HA projects"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ryantm astro ]; diff --git a/pkgs/by-name/oc/oci-cli/package.nix b/pkgs/by-name/oc/oci-cli/package.nix index b953b0a4da66..dc87d3bee4e3 100644 --- a/pkgs/by-name/oc/oci-cli/package.nix +++ b/pkgs/by-name/oc/oci-cli/package.nix @@ -100,14 +100,14 @@ py.pkgs.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Command Line Interface for Oracle Cloud Infrastructure"; homepage = "https://docs.cloud.oracle.com/iaas/Content/API/Concepts/cliconcepts.htm"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or upl ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ilian FKouhai ]; diff --git a/pkgs/by-name/oc/oci-seccomp-bpf-hook/package.nix b/pkgs/by-name/oc/oci-seccomp-bpf-hook/package.nix index 7814da4e5965..1f2b86427397 100644 --- a/pkgs/by-name/oc/oci-seccomp-bpf-hook/package.nix +++ b/pkgs/by-name/oc/oci-seccomp-bpf-hook/package.nix @@ -52,14 +52,14 @@ buildGoModule rec { installManPage docs/*.[1-9] ''; - meta = with lib; { + meta = { homepage = "https://github.com/containers/oci-seccomp-bpf-hook"; description = '' OCI hook to trace syscalls and generate a seccomp profile ''; mainProgram = "oci-seccomp-bpf-hook"; - license = licenses.asl20; - maintainers = with maintainers; [ saschagrunert ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ saschagrunert ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/oc/ocis_5-bin/package.nix b/pkgs/by-name/oc/ocis_5-bin/package.nix index 4e2c420f7ad3..5d94b5be63ff 100644 --- a/pkgs/by-name/oc/ocis_5-bin/package.nix +++ b/pkgs/by-name/oc/ocis_5-bin/package.nix @@ -57,14 +57,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = ./update.py; - meta = with lib; { + meta = { description = "ownCloud Infinite Scale Stack"; homepage = "https://owncloud.dev/ocis/"; changelog = "https://github.com/owncloud/ocis/releases/tag/v${finalAttrs.version}"; # oCIS is licensed under non-free EULA which can be found here : # https://github.com/owncloud/ocis/releases/download/v5.0.1/End-User-License-Agreement-for-ownCloud-Infinite-Scale.pdf - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ ramblurr bhankas danth @@ -72,12 +72,12 @@ stdenv.mkDerivation (finalAttrs: { ]; platforms = - (lib.intersectLists platforms.linux ( + (lib.intersectLists lib.platforms.linux ( lib.platforms.arm ++ lib.platforms.aarch64 ++ lib.platforms.x86 )) - ++ (lib.intersectLists platforms.darwin (lib.platforms.aarch64 ++ lib.platforms.x86_64)); + ++ (lib.intersectLists lib.platforms.darwin (lib.platforms.aarch64 ++ lib.platforms.x86_64)); - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; mainProgram = "ocis"; }; }) diff --git a/pkgs/by-name/oc/ockam/package.nix b/pkgs/by-name/oc/ockam/package.nix index 8a8aa6bf021e..eac7a250ae11 100644 --- a/pkgs/by-name/oc/ockam/package.nix +++ b/pkgs/by-name/oc/ockam/package.nix @@ -40,10 +40,10 @@ rustPlatform.buildRustPackage { cargoBuildFlags = [ "-p ockam" ]; - meta = with lib; { + meta = { description = "Orchestrate end-to-end encryption, cryptographic identities, mutual authentication, and authorization policies between distributed applications – at massive scale"; homepage = "https://github.com/build-trust/ockam"; - license = licenses.mpl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/oc/ocl-icd/package.nix b/pkgs/by-name/oc/ocl-icd/package.nix index fb0df289ef62..38de95f11b20 100644 --- a/pkgs/by-name/oc/ocl-icd/package.nix +++ b/pkgs/by-name/oc/ocl-icd/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { # fixes: can't build x86_64-w64-mingw32 shared library unless -no-undefined is specified makeFlags = lib.optionals stdenv.hostPlatform.isWindows [ "LDFLAGS=-no-undefined" ]; - meta = with lib; { + meta = { description = "OpenCL ICD Loader for ${opencl-headers.name}"; mainProgram = "cllayerinfo"; homepage = "https://github.com/OCL-dev/ocl-icd"; - license = licenses.bsd2; - platforms = platforms.unix ++ platforms.windows; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix ++ lib.platforms.windows; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/oc/ocm/package.nix b/pkgs/by-name/oc/ocm/package.nix index e3af61062994..747ebe013e5b 100644 --- a/pkgs/by-name/oc/ocm/package.nix +++ b/pkgs/by-name/oc/ocm/package.nix @@ -51,12 +51,12 @@ buildGoModule rec { command = "ocm version"; }; - meta = with lib; { + meta = { description = "CLI for the Red Hat OpenShift Cluster Manager"; mainProgram = "ocm"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/openshift-online/ocm-cli"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ stehessel jfchevrette ]; diff --git a/pkgs/by-name/oc/ocproxy/package.nix b/pkgs/by-name/oc/ocproxy/package.nix index 55f69c702696..997e4b6311c0 100644 --- a/pkgs/by-name/oc/ocproxy/package.nix +++ b/pkgs/by-name/oc/ocproxy/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { description = "OpenConnect proxy"; longDescription = '' ocproxy is a user-level SOCKS and port forwarding proxy for OpenConnect based on lwIP. ''; homepage = "https://github.com/cernekee/ocproxy"; - license = licenses.bsd3; - maintainers = [ maintainers.joko ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.joko ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/oc/ocr-a/package.nix b/pkgs/by-name/oc/ocr-a/package.nix index ea47d6282d69..962ed2722fb3 100644 --- a/pkgs/by-name/oc/ocr-a/package.nix +++ b/pkgs/by-name/oc/ocr-a/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { install -D -m 0644 $src $out/share/fonts/truetype/OCRA.ttf ''; - meta = with lib; { + meta = { description = "ANSI OCR font from the '60s. CYBER"; homepage = "https://sourceforge.net/projects/ocr-a-font/"; - license = licenses.publicDomain; - maintainers = with maintainers; [ V ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ V ]; }; } diff --git a/pkgs/by-name/oc/ocs-url/package.nix b/pkgs/by-name/oc/ocs-url/package.nix index 38dd28cc660f..b24171bd1c81 100644 --- a/pkgs/by-name/oc/ocs-url/package.nix +++ b/pkgs/by-name/oc/ocs-url/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Open Collaboration System for use with DE store websites"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ SohamG ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ SohamG ]; + platforms = lib.platforms.linux; mainProgram = "ocs-url"; }; } diff --git a/pkgs/by-name/oc/octofetch/package.nix b/pkgs/by-name/oc/octofetch/package.nix index 88a33c488a10..75f6d3a65ba9 100644 --- a/pkgs/by-name/oc/octofetch/package.nix +++ b/pkgs/by-name/oc/octofetch/package.nix @@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]; - meta = with lib; { + meta = { homepage = "https://github.com/azur1s/octofetch"; description = "Github user information on terminal"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "octofetch"; }; diff --git a/pkgs/by-name/oc/octomap/package.nix b/pkgs/by-name/oc/octomap/package.nix index 433fbf92555e..63887220e674 100644 --- a/pkgs/by-name/oc/octomap/package.nix +++ b/pkgs/by-name/oc/octomap/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { "-Wno-error=deprecated-declarations" ]; - meta = with lib; { + meta = { description = "Probabilistic, flexible, and compact 3D mapping library for robotic systems"; homepage = "https://octomap.github.io/"; - license = licenses.bsd3; - maintainers = with maintainers; [ lopsided98 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lopsided98 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/oc/octoprint/package.nix b/pkgs/by-name/oc/octoprint/package.nix index faf15d695808..91b9bf4228ac 100644 --- a/pkgs/by-name/oc/octoprint/package.nix +++ b/pkgs/by-name/oc/octoprint/package.nix @@ -225,12 +225,12 @@ let }; }; - meta = with lib; { + meta = { homepage = "https://octoprint.org/"; description = "Snappy web interface for your 3D printer"; mainProgram = "octoprint"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ WhittlesJr gador ]; diff --git a/pkgs/by-name/oc/octoprint/plugins.nix b/pkgs/by-name/oc/octoprint/plugins.nix index 406612621e0a..a6e5632eed7b 100644 --- a/pkgs/by-name/oc/octoprint/plugins.nix +++ b/pkgs/by-name/oc/octoprint/plugins.nix @@ -37,11 +37,11 @@ in sha256 = "1w6h4hia286lbz2gy33rslq02iypx067yqn413xcipb07ivhvdq7"; }; - meta = with lib; { + meta = { description = "Changes the \"Motors off\" button in octoprint's control tab to issue an M84 command to allow compatibility with Repetier firmware Resources"; homepage = "https://github.com/ntoff/OctoPrint-M84MotOff"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; }; @@ -58,11 +58,11 @@ in sha256 = "0ij3rvdwya1sbymwm5swlh2j4jagb6fal945g88zrzh5xf26hzjh"; }; - meta = with lib; { + meta = { description = "Marlin auto bed leveling control, mesh correction, and z probe handling"; homepage = "https://framagit.org/razer/Octoprint_ABL_Expert/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ WhittlesJr ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ WhittlesJr ]; }; }; @@ -78,11 +78,11 @@ in sha256 = "sha256-6JcYvYgEmphp5zz4xZi4G0yTo4FCIR6Yh+MXYK7H7+w="; }; - meta = with lib; { + meta = { description = "Displays 3D mesh of bed topography report"; homepage = "https://github.com/jneilliii/OctoPrint-BedLevelVisualizer"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; }; @@ -98,11 +98,11 @@ in sha256 = "sha256-04OPa/RpM8WehUmOp195ocsAjAvKdVY7iD5ybzQO7Dg="; }; - meta = with lib; { + meta = { description = "Plugin to display the estimated print cost for the loaded model"; homepage = "https://github.com/OllisGit/OctoPrint-CostEstimation"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; }; @@ -118,10 +118,10 @@ in sha256 = "sha256-54siSmzgPlnCRpkpZhXU9theNQ3hqL3j+Ip4Ie2w2vA="; }; - meta = with lib; { + meta = { description = "Plugin for slicing via Cura Legacy from within OctoPrint"; homepage = "https://github.com/OctoPrint/OctoPrint-CuraEngineLegacy"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; }; @@ -138,11 +138,11 @@ in sha256 = "080prvfwggl4vkzyi369vxh1n8231hrl8a44f399laqah3dn5qw4"; }; - meta = with lib; { + meta = { description = "Displays the job progress on the printer's display"; homepage = "https://github.com/OctoPrint/OctoPrint-DisplayProgress"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; }; @@ -158,11 +158,11 @@ in sha256 = "sha256-hhHc2SPixZCPJzCP8enMMWNYaYbNZAU0lNSx1B0d++4="; }; - meta = with lib; { + meta = { description = "OctoPrint-Plugin that sends the current progress of a print via M117 command"; homepage = "https://github.com/OllisGit/OctoPrint-DisplayLayerProgress"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ j0hax ]; }; }; @@ -178,11 +178,11 @@ in sha256 = "03bc2zbffw4ksk8if90kxhs3179nbhb4xikp4f0adm3lrnvxkd3s"; }; - meta = with lib; { + meta = { description = "Fixes the double temperature reporting from the Creality Ender-3 v2 printer"; homepage = "https://github.com/SimplyPrint/OctoPrint-Creality2xTemperatureReportingFix"; - license = licenses.mit; - maintainers = with maintainers; [ illustris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ illustris ]; }; }; @@ -200,11 +200,11 @@ in propagatedBuildInputs = with super; [ pyserial ]; - meta = with lib; { + meta = { description = "Printer Firmware Updater"; homepage = "https://github.com/OctoPrint/OctoPrint-FirmwareUpdater"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -220,11 +220,11 @@ in sha256 = "sha256-Z8twpj+gqgbiWWxNd9I9qflEAln5Obpb3cn34KwSc5A="; }; - meta = with lib; { + meta = { description = "Open webcam in fullscreen mode"; homepage = "https://github.com/BillyBlaze/OctoPrint-FullScreen"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -240,11 +240,11 @@ in sha256 = "sha256-1Sk2ri3DKW8q8VJ/scFjpRsz65Pwt8OEURP1k70aydE="; }; - meta = with lib; { + meta = { description = "Edit gcode on OctoPrint"; homepage = "https://github.com/ieatacid/OctoPrint-GcodeEditor"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ WhittlesJr ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ WhittlesJr ]; }; }; @@ -260,11 +260,11 @@ in sha256 = "sha256-3ay6iCxZk8QkFM/2Y14VTpPoxr6NXq14BFSHofn3q7I="; }; - meta = with lib; { + meta = { description = "Displays GCode documentation for Marlin in the Octoprint terminal command line"; homepage = "https://github.com/costas-basdekis/MarlinGcodeDocumentation"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ lovesegfault ]; }; }; @@ -282,11 +282,11 @@ in propagatedBuildInputs = with super; [ paho-mqtt ]; - meta = with lib; { + meta = { description = "Publish printer status MQTT"; homepage = "https://github.com/OctoPrint/OctoPrint-MQTT"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ peterhoeg ]; }; }; @@ -304,11 +304,11 @@ in propagatedBuildInputs = with super; [ jsonpath-ng ]; - meta = with lib; { + meta = { description = "Enables Chamber temperature reporting via subscribing to an MQTT topic"; homepage = "https://github.com/synman/OctoPrint-MqttChamberTemperature"; - license = licenses.wtfpl; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -324,11 +324,11 @@ in sha256 = "sha256-ZPpTx+AadRffUb53sZbMUbCZa7xYGQW/5si7UB8mnVI="; }; - meta = with lib; { + meta = { description = "Displays temperatures on navbar"; homepage = "https://github.com/imrahil/OctoPrint-NavbarTemp"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -351,11 +351,11 @@ in distro ]; - meta = with lib; { + meta = { description = "Monitor Octoprint-connected printers with Obico"; homepage = "https://www.obico.io/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -373,11 +373,11 @@ in propagatedBuildInputs = with super; [ pillow ]; - meta = with lib; { + meta = { description = "OctoPod extension for OctoPrint"; homepage = "https://github.com/gdombiak/OctoPrint-OctoPod"; - license = licenses.asl20; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -404,10 +404,10 @@ in sed 's@"{}.{}".format(binary_base_name, machine)@"${marlin-calc}/bin/marlin-calc"@' -i */analyzers/analyze_progress.py ''; - meta = with lib; { + meta = { description = "Better print time estimation for OctoPrint"; homepage = "https://github.com/eyal0/OctoPrint-PrintTimeGenius"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; }; @@ -426,11 +426,11 @@ in propagatedBuildInputs = with super; [ psutil ]; - meta = with lib; { + meta = { description = "Plugin that extracts thumbnails from uploaded gcode files sliced by PrusaSlicer"; homepage = "https://github.com/jneilliii/OctoPrint-PrusaSlicerThumbnails"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -455,10 +455,10 @@ in sed /RPi.GPIO/d -i requirements.txt ''; - meta = with lib; { + meta = { description = "OctoPrint plugin to control ATX/AUX power supply"; homepage = "https://github.com/kantlivelong/OctoPrint-PSUControl"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; }; @@ -477,11 +477,11 @@ in propagatedBuildInputs = with super; [ psutil ]; - meta = with lib; { + meta = { description = "Plugin to view the current CPU and RAM usage on your system"; homepage = "https://github.com/Renaud11232/OctoPrint-Resource-Monitor"; - license = licenses.mit; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -497,11 +497,11 @@ in sha256 = "sha256-MbP3cKa9FPElQ/M8ykYh9kVXl8hNvmGiCHDvjgWvm9k="; }; - meta = with lib; { + meta = { description = "Simple plugin that add an emergency stop buton on NavBar of OctoPrint"; homepage = "https://github.com/Sebclem/OctoPrint-SimpleEmergencyStop"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ WhittlesJr ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ WhittlesJr ]; }; }; @@ -517,10 +517,10 @@ in sha256 = "sha256-S7zjEbyo59OJpa7INCv1o4ybQ+Sy6a3EJ5AJ6wiBe1Y="; }; - meta = with lib; { + meta = { description = "Simple stl viewer tab for OctoPrint"; homepage = "https://github.com/jneilliii/Octoprint-STLViewer"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; }; @@ -539,11 +539,11 @@ in propagatedBuildInputs = with super; [ pillow ]; - meta = with lib; { + meta = { description = "Plugin to send status messages and receive commands via Telegram messenger"; homepage = "https://github.com/fabianonline/OctoPrint-Telegram"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; }; @@ -559,11 +559,11 @@ in sha256 = "sha256-om9IUSmxU8y0x8DrodW1EU/pilAN3+PbtYck6KfROEg="; }; - meta = with lib; { + meta = { description = "Beautiful themes for OctoPrint"; homepage = "https://github.com/birkbjo/OctoPrint-Themeify"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ lovesegfault ]; }; }; @@ -579,11 +579,11 @@ in sha256 = "sha256-XS4m4KByScGTPfVE4kuRLw829gNE2CdM0RyhRqGGxyw="; }; - meta = with lib; { + meta = { description = "Automatically deletes timelapses that are older than configured timeframe"; homepage = "https://github.com/jneilliii/OctoPrint-TimelapsePurger"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ tri-ler ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ tri-ler ]; }; }; @@ -599,10 +599,10 @@ in sha256 = "10nxjrixg0i6n6x8ghc1ndshm25c97bvkcis5j9kmlkkzs36i2c6"; }; - meta = with lib; { + meta = { description = "Show printers status in window title"; homepage = "https://github.com/MoonshineSG/OctoPrint-TitleStatus"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; }; @@ -619,10 +619,10 @@ in sha256 = "sha256-PNDCjY7FhfnwK7Nd86el9ZQ00G4uMANH2Sk080iMYXw="; }; - meta = with lib; { + meta = { description = "Touch friendly interface for a small TFT module or phone for OctoPrint"; homepage = "https://github.com/BillyBlaze/OctoPrint-TouchUI"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; }; @@ -639,11 +639,11 @@ in sha256 = "sha256-6r5jJDSR0DxlDQ/XWmQgYUgeL1otNNBnwurX7bbcThg="; }; - meta = with lib; { + meta = { description = "Plugin for a better integration of Klipper into OctoPrint"; homepage = "https://github.com/AliceGrey/OctoprintKlipperPlugin"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ lovesegfault ]; }; }; @@ -659,11 +659,11 @@ in sha256 = "sha256-hLHT3Uze/6PlOCEICVZ2ieFTyXgcqCvgHOlIIEquujg="; }; - meta = with lib; { + meta = { description = "Dashboard for Octoprint"; homepage = "https://github.com/StefanCohen/OctoPrint-Dashboard"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ j0hax ]; }; }; } diff --git a/pkgs/by-name/oc/octopus-caller/package.nix b/pkgs/by-name/oc/octopus-caller/package.nix index 87fae180408f..59083e235d06 100644 --- a/pkgs/by-name/oc/octopus-caller/package.nix +++ b/pkgs/by-name/oc/octopus-caller/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { mv $out/octopus $out/bin ''; - meta = with lib; { + meta = { description = "Bayesian haplotype-based mutation calling"; mainProgram = "octopus"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/luntergroup/octopus"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/oc/octosql/package.nix b/pkgs/by-name/oc/octosql/package.nix index a11e397635e7..1cb319d4986c 100644 --- a/pkgs/by-name/oc/octosql/package.nix +++ b/pkgs/by-name/oc/octosql/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { rm -v $out/bin/tester ''; - meta = with lib; { + meta = { description = "Commandline tool for joining, analyzing and transforming data from multiple databases and file formats using SQL"; homepage = "https://github.com/cube2222/octosql"; - license = licenses.mpl20; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "octosql"; }; } diff --git a/pkgs/by-name/od/odafileconverter/package.nix b/pkgs/by-name/od/odafileconverter/package.nix index 60ba539566ae..ace47cb3a8b6 100644 --- a/pkgs/by-name/od/odafileconverter/package.nix +++ b/pkgs/by-name/od/odafileconverter/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "For converting between different versions of .dwg and .dxf"; homepage = "https://www.opendesign.com/guestfiles/oda_file_converter"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ nagisa konradmalik ]; diff --git a/pkgs/by-name/od/ode/package.nix b/pkgs/by-name/od/ode/package.nix index b41cb0e48b31..f6776c64fd7f 100644 --- a/pkgs/by-name/od/ode/package.nix +++ b/pkgs/by-name/od/ode/package.nix @@ -18,17 +18,17 @@ stdenv.mkDerivation (finalAttrs: { "-Wno-error=c++11-narrowing" ]); - meta = with lib; { + meta = { description = "Open Dynamics Engine"; mainProgram = "ode-config"; homepage = "https://www.ode.org"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 lgpl21Only lgpl3Only zlib ]; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/od/odin2/package.nix b/pkgs/by-name/od/odin2/package.nix index 9209c499992d..29fd530cf778 100644 --- a/pkgs/by-name/od/odin2/package.nix +++ b/pkgs/by-name/od/odin2/package.nix @@ -105,12 +105,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Odin 2 Synthesizer Plugin"; homepage = "https://thewavewarden.com/odin2"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ magnetophon ]; + maintainers = with lib.maintainers; [ magnetophon ]; mainProgram = "Odin2"; }; }) diff --git a/pkgs/by-name/od/odp-dpdk/package.nix b/pkgs/by-name/od/odp-dpdk/package.nix index 5134a82a6987..03c39be171a5 100644 --- a/pkgs/by-name/od/odp-dpdk/package.nix +++ b/pkgs/by-name/od/odp-dpdk/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Open Data Plane optimized for DPDK"; homepage = "https://www.opendataplane.org"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = [ maintainers.abuibrahim ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.abuibrahim ]; }; } diff --git a/pkgs/by-name/od/odpic/package.nix b/pkgs/by-name/od/odpic/package.nix index 921a4e84481c..b65b3058466e 100644 --- a/pkgs/by-name/od/odpic/package.nix +++ b/pkgs/by-name/od/odpic/package.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation { ''} ''; - meta = with lib; { + meta = { description = "Oracle ODPI-C library"; homepage = "https://oracle.github.io/odpi/"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/od/odroid-xu3-bootloader/package.nix b/pkgs/by-name/od/odroid-xu3-bootloader/package.nix index a1e446db9eb8..7868f85c0ed7 100644 --- a/pkgs/by-name/od/odroid-xu3-bootloader/package.nix +++ b/pkgs/by-name/od/odroid-xu3-bootloader/package.nix @@ -33,9 +33,9 @@ stdenv.mkDerivation { $out/bin/sd_fuse-xu3 ''; - meta = with lib; { - platforms = platforms.linux; - license = licenses.unfreeRedistributableFirmware; + meta = { + platforms = lib.platforms.linux; + license = lib.licenses.unfreeRedistributableFirmware; description = "Secure boot enabled boot loader for ODROID-XU{3,4}"; maintainers = [ ]; }; diff --git a/pkgs/by-name/od/odyssey/package.nix b/pkgs/by-name/od/odyssey/package.nix index b6d4217b450a..73f6dc5f4ef6 100644 --- a/pkgs/by-name/od/odyssey/package.nix +++ b/pkgs/by-name/od/odyssey/package.nix @@ -50,10 +50,10 @@ stdenv.mkDerivation rec { install -Dm755 -t $out/bin sources/odyssey ''; - meta = with lib; { + meta = { description = "Scalable PostgreSQL connection pooler"; homepage = "https://github.com/yandex/odyssey"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "odyssey"; diff --git a/pkgs/by-name/oe/oed/package.nix b/pkgs/by-name/oe/oed/package.nix index 61540a7b6cf9..5df9d20cd3e4 100644 --- a/pkgs/by-name/oe/oed/package.nix +++ b/pkgs/by-name/oe/oed/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { install -m644 -Dt $out/share/man/man1 ed.1 ''; - meta = with lib; { + meta = { description = "Portable ed editor from OpenBSD"; homepage = "https://github.com/ibara/oed"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; mainProgram = "ed"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/of/offensive-azure/package.nix b/pkgs/by-name/of/offensive-azure/package.nix index 77f5493e370e..98cf2ae09fef 100644 --- a/pkgs/by-name/of/offensive-azure/package.nix +++ b/pkgs/by-name/of/offensive-azure/package.nix @@ -48,10 +48,10 @@ python3.pkgs.buildPythonApplication rec { "offensive_azure" ]; - meta = with lib; { + meta = { description = "Collection of offensive tools targeting Microsoft Azure"; homepage = "https://github.com/blacklanternsecurity/offensive-azure"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/of/office-code-pro/package.nix b/pkgs/by-name/of/office-code-pro/package.nix index 4413664ead8f..0d4ab3f6b17f 100644 --- a/pkgs/by-name/of/office-code-pro/package.nix +++ b/pkgs/by-name/of/office-code-pro/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Customized version of Source Code Pro"; longDescription = '' Office Code Pro is a customized version of Source Code Pro, the monospaced @@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation rec { and coding environments, but are still very usable in other applications. ''; homepage = "https://github.com/nathco/Office-Code-Pro"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; }; } diff --git a/pkgs/by-name/of/offzip/package.nix b/pkgs/by-name/of/offzip/package.nix index fe74861d1eb3..db8be322e43c 100644 --- a/pkgs/by-name/of/offzip/package.nix +++ b/pkgs/by-name/of/offzip/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Tool to unpack the zip data contained in any type of file"; homepage = "https://aluigi.altervista.org/mytoolz.htm#offzip"; license = lib.licenses.gpl2Plus; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.unix; mainProgram = "offzip"; }; } diff --git a/pkgs/by-name/og/ograc/package.nix b/pkgs/by-name/og/ograc/package.nix index 71303ec9acb1..b84563fd944e 100644 --- a/pkgs/by-name/og/ograc/package.nix +++ b/pkgs/by-name/og/ograc/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-rWU8rOGLUrSkXLkHib8qkkiOZvuGbSJ4knFrHuD+R44="; - meta = with lib; { + meta = { description = "Like cargo, but backwards"; mainProgram = "ograc"; homepage = "https://crates.io/crates/ograc"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ sciencentistguy ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ sciencentistguy ]; }; } diff --git a/pkgs/by-name/og/oguri/package.nix b/pkgs/by-name/og/oguri/package.nix index 05c3f8396e47..35f2339cc981 100644 --- a/pkgs/by-name/og/oguri/package.nix +++ b/pkgs/by-name/og/oguri/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation { wayland-protocols ]; - meta = with lib; { + meta = { homepage = "https://github.com/vilhalmer/oguri/"; description = "Very nice animated wallpaper daemon for Wayland compositors"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; inherit (wayland.meta) platforms; broken = stdenv.hostPlatform.isDarwin; # this should be enfoced by wayland platforms in the future diff --git a/pkgs/by-name/oh/oh-my-git/package.nix b/pkgs/by-name/oh/oh-my-git/package.nix index b7f08cffd885..496984eb0178 100644 --- a/pkgs/by-name/oh/oh-my-git/package.nix +++ b/pkgs/by-name/oh/oh-my-git/package.nix @@ -125,12 +125,12 @@ stdenv.mkDerivation rec { udev ]; - meta = with lib; { + meta = { homepage = "https://ohmygit.org/"; description = "Interactive Git learning game"; mainProgram = "oh-my-git"; - license = with licenses; [ blueOak100 ]; + license = with lib.licenses; [ blueOak100 ]; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ jojosch ]; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/by-name/oh/oh-my-zsh/package.nix b/pkgs/by-name/oh/oh-my-zsh/package.nix index 6edd3fb4d9b0..838f94cc7c3d 100644 --- a/pkgs/by-name/oh/oh-my-zsh/package.nix +++ b/pkgs/by-name/oh/oh-my-zsh/package.nix @@ -117,7 +117,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Framework for managing your zsh configuration"; longDescription = '' Oh My Zsh is a framework for managing your zsh configuration. @@ -128,7 +128,7 @@ stdenv.mkDerivation rec { $ cp -v $(nix-env -q --out-path oh-my-zsh | cut -d' ' -f3)/share/oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc ''; homepage = "https://ohmyz.sh/"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/oh/oh/package.nix b/pkgs/by-name/oh/oh/package.nix index 57a55ce2b539..3baf6f8392da 100644 --- a/pkgs/by-name/oh/oh/package.nix +++ b/pkgs/by-name/oh/oh/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-Qma5Vk0JO/tTrZanvTCE40LmjeCfBup3U3N7gyhfp44="; - meta = with lib; { + meta = { homepage = "https://github.com/michaelmacinnis/oh"; description = "New Unix shell"; mainProgram = "oh"; - license = licenses.mit; + license = lib.licenses.mit; }; passthru = { diff --git a/pkgs/by-name/oi/oidc-agent/package.nix b/pkgs/by-name/oi/oidc-agent/package.nix index 8646bd831025..0384e9b66a80 100644 --- a/pkgs/by-name/oi/oidc-agent/package.nix +++ b/pkgs/by-name/oi/oidc-agent/package.nix @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Manage OpenID Connect tokens on the command line"; homepage = "https://github.com/indigo-dc/oidc-agent"; - maintainers = with maintainers; [ xinyangli ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ xinyangli ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/oi/oidentd/package.nix b/pkgs/by-name/oi/oidentd/package.nix index 4be824f00e4c..b38a18b126e3 100644 --- a/pkgs/by-name/oi/oidentd/package.nix +++ b/pkgs/by-name/oi/oidentd/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-yyvcnabxNkcIMOiZBjvoOm/pEjrGXFt4W4SG5lprkbc="; }; - meta = with lib; { + meta = { description = "Configurable Ident protocol server"; mainProgram = "oidentd"; homepage = "https://oidentd.janikrabe.com/"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/oi/oil-buku/package.nix b/pkgs/by-name/oi/oil-buku/package.nix index 58ad6883843a..34635a0fdcb8 100644 --- a/pkgs/by-name/oi/oil-buku/package.nix +++ b/pkgs/by-name/oi/oil-buku/package.nix @@ -42,12 +42,12 @@ stdenvNoCC.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ peco ]} ''; - meta = with lib; { + meta = { description = "Search-as-you-type cli frontend for the buku bookmarks manager using peco"; homepage = "https://github.com/AndreiUlmeyda/oil"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ atila ]; mainProgram = "oil"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/oi/ois/package.nix b/pkgs/by-name/oi/ois/package.nix index 1943f02ae4d4..e0df9cf62d5d 100644 --- a/pkgs/by-name/oi/ois/package.nix +++ b/pkgs/by-name/oi/ois/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { ./cmake4.patch ]; - meta = with lib; { + meta = { description = "Object-oriented C++ input system"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.unix; - license = licenses.zlib; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.zlib; }; } diff --git a/pkgs/by-name/ok/okapi/package.nix b/pkgs/by-name/ok/okapi/package.nix index b8898c4bc3b3..0df0888d949b 100644 --- a/pkgs/by-name/ok/okapi/package.nix +++ b/pkgs/by-name/ok/okapi/package.nix @@ -20,10 +20,10 @@ rustPlatform.buildRustPackage rec { cp -r include $out ''; - meta = with lib; { + meta = { description = "Collection of tools that support workflows for working with authentic data and identity management"; homepage = "https://github.com/trinsic-id/okapi"; - license = licenses.asl20; - maintainers = with maintainers; [ tmarkovski ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tmarkovski ]; }; } diff --git a/pkgs/by-name/ok/okolors/package.nix b/pkgs/by-name/ok/okolors/package.nix index 974c00982ff7..f1792309b44e 100644 --- a/pkgs/by-name/ok/okolors/package.nix +++ b/pkgs/by-name/ok/okolors/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-3wZeRPG2VrpPlqRVmkrMskqzM6NGZoSGbgGBTJzKCgQ="; - meta = with lib; { + meta = { description = "Generate a color palette from an image using k-means clustering in the Oklab color space"; homepage = "https://github.com/Ivordir/Okolors"; - license = licenses.mit; - maintainers = with maintainers; [ laurent-f1z1 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ laurent-f1z1 ]; mainProgram = "okolors"; }; } diff --git a/pkgs/by-name/ok/oksh/package.nix b/pkgs/by-name/ok/oksh/package.nix index fb5eea3d5bcc..5d0b7114a785 100644 --- a/pkgs/by-name/ok/oksh/package.nix +++ b/pkgs/by-name/ok/oksh/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh)"; mainProgram = "oksh"; homepage = "https://github.com/ibara/oksh"; - license = licenses.publicDomain; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.all; }; passthru = { diff --git a/pkgs/by-name/ok/okta-aws-cli/package.nix b/pkgs/by-name/ok/okta-aws-cli/package.nix index 45276e8facb0..52a44c2fb257 100644 --- a/pkgs/by-name/ok/okta-aws-cli/package.nix +++ b/pkgs/by-name/ok/okta-aws-cli/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "CLI for having Okta as the IdP for AWS CLI operations"; homepage = "https://github.com/okta/okta-aws-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ daniyalsuri6 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ daniyalsuri6 ]; mainProgram = "okta-aws-cli"; }; } diff --git a/pkgs/by-name/ol/oldsindhi/package.nix b/pkgs/by-name/ol/oldsindhi/package.nix index a52d3630c635..c01d5b2393f1 100644 --- a/pkgs/by-name/ol/oldsindhi/package.nix +++ b/pkgs/by-name/ol/oldsindhi/package.nix @@ -22,14 +22,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/MihailJP/oldsindhi"; description = "Free Sindhi Khudabadi font"; - maintainers = with maintainers; [ mathnerd314 ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ mathnerd314 ]; + license = with lib.licenses; [ mit ofl ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ol/oldstandard/package.nix b/pkgs/by-name/ol/oldstandard/package.nix index 05402cecb1a0..8b3b6cd02a2e 100644 --- a/pkgs/by-name/ol/oldstandard/package.nix +++ b/pkgs/by-name/ol/oldstandard/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/akryukov/oldstand"; description = "Attempt to revive a specific type of Modern style of serif typefaces"; - maintainers = with maintainers; [ raskin ]; - license = licenses.ofl; - platforms = platforms.all; + maintainers = with lib.maintainers; [ raskin ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ol/olm/package.nix b/pkgs/by-name/ol/olm/package.nix index e1eece806206..70434dcb6b6e 100644 --- a/pkgs/by-name/ol/olm/package.nix +++ b/pkgs/by-name/ol/olm/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { --replace-fail "T * const other_pos = other._data;" "T const * other_pos = other._data;" ''; - meta = with lib; { + meta = { description = "Implements double cryptographic ratchet and Megolm ratchet"; homepage = "https://gitlab.matrix.org/matrix-org/olm"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tilpner oxzi ]; diff --git a/pkgs/by-name/ol/olvid/package.nix b/pkgs/by-name/ol/olvid/package.nix index 5c1ff70c06d9..ef016788850a 100644 --- a/pkgs/by-name/ol/olvid/package.nix +++ b/pkgs/by-name/ol/olvid/package.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Secure french messenger"; homepage = "https://www.olvid.io"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "olvid"; - maintainers = with maintainers; [ rookeur ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ rookeur ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/om/ombi/package.nix b/pkgs/by-name/om/ombi/package.nix index 56b5e743092d..6e8d8d8cd40f 100644 --- a/pkgs/by-name/om/ombi/package.nix +++ b/pkgs/by-name/om/ombi/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { tests.smoke-test = nixosTests.ombi; }; - meta = with lib; { + meta = { description = "Self-hosted web application that automatically gives your shared Plex or Emby users the ability to request content by themselves"; homepage = "https://ombi.io/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2Only; - maintainers = with maintainers; [ woky ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ woky ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/om/omegat/package.nix b/pkgs/by-name/om/omegat/package.nix index b88bccd32de4..10493a4ed183 100644 --- a/pkgs/by-name/om/omegat/package.nix +++ b/pkgs/by-name/om/omegat/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { chmod +x $out/bin/omegat ''; - meta = with lib; { + meta = { description = "Free computer aided translation (CAT) tool for professionals"; mainProgram = "omegat"; longDescription = '' @@ -45,9 +45,9 @@ stdenv.mkDerivation { translation leveraging into updated projects. ''; homepage = "http://www.omegat.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ t184256 ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ t184256 ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/om/omni-gtk-theme/package.nix b/pkgs/by-name/om/omni-gtk-theme/package.nix index 534f54d88995..c0bf9a2da1b9 100644 --- a/pkgs/by-name/om/omni-gtk-theme/package.nix +++ b/pkgs/by-name/om/omni-gtk-theme/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Dark theme created by Rocketseat"; homepage = "https://github.com/getomni/gtk"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ zoedsoupe ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zoedsoupe ]; }; } diff --git a/pkgs/by-name/om/omnictl/package.nix b/pkgs/by-name/om/omnictl/package.nix index 93c1bc965b65..95e0561f9587 100644 --- a/pkgs/by-name/om/omnictl/package.nix +++ b/pkgs/by-name/om/omnictl/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "CLI for the Sidero Omni Kubernetes management platform"; mainProgram = "omnictl"; homepage = "https://omni.siderolabs.com/"; - license = licenses.bsl11; - maintainers = with maintainers; [ raylas ]; + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ raylas ]; }; } diff --git a/pkgs/by-name/om/omniorb/package.nix b/pkgs/by-name/om/omniorb/package.nix index 574d758fcc58..fc6e3160b466 100644 --- a/pkgs/by-name/om/omniorb/package.nix +++ b/pkgs/by-name/om/omniorb/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { ${lib.getExe python3} -c "import omniidl_be.cxx" ''; - meta = with lib; { + meta = { description = "Robust high performance CORBA ORB for C++ and Python"; longDescription = '' omniORB is a robust high performance CORBA ORB for C++ and Python. @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { omniORB is largely CORBA 2.6 compliant. ''; homepage = "http://omniorb.sourceforge.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ smironov ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ smironov ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/om/omnissa-horizon-client/package.nix b/pkgs/by-name/om/omnissa-horizon-client/package.nix index 5bcb44ce125a..819508a31806 100644 --- a/pkgs/by-name/om/omnissa-horizon-client/package.nix +++ b/pkgs/by-name/om/omnissa-horizon-client/package.nix @@ -154,12 +154,12 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { inherit mainProgram; description = "Allows you to connect to your Omnissa Horizon virtual desktop"; homepage = "https://www.omnissa.com/products/horizon-8/"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ mhutter ]; + maintainers = with lib.maintainers; [ mhutter ]; }; } diff --git a/pkgs/by-name/om/omorfi/package.nix b/pkgs/by-name/om/omorfi/package.nix index 24c00b34e7af..75e2d3ba7d7f 100644 --- a/pkgs/by-name/om/omorfi/package.nix +++ b/pkgs/by-name/om/omorfi/package.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation (finalAttrs: { "--enable-hyphenator" ]; - meta = with lib; { + meta = { description = "Analysis for Finnish text"; homepage = "https://github.com/flammie/omorfi"; - license = licenses.gpl3; - maintainers = with maintainers; [ lurkki ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ lurkki ]; # Darwin build fails due to hfst not being found broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/om/omxplayer/package.nix b/pkgs/by-name/om/omxplayer/package.nix index 7cdc0f707982..e7291f65f169 100644 --- a/pkgs/by-name/om/omxplayer/package.nix +++ b/pkgs/by-name/om/omxplayer/package.nix @@ -102,10 +102,10 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/huceke/omxplayer"; description = "Commandline OMX player for the Raspberry Pi"; - license = licenses.gpl2Plus; - platforms = platforms.arm; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.arm; }; } diff --git a/pkgs/by-name/on/onagre/package.nix b/pkgs/by-name/on/onagre/package.nix index b7525ab98bbb..fff99134399e 100644 --- a/pkgs/by-name/on/onagre/package.nix +++ b/pkgs/by-name/on/onagre/package.nix @@ -61,15 +61,15 @@ rustPlatform.buildRustPackage { } ''; - meta = with lib; { + meta = { description = "General purpose application launcher for X and wayland inspired by rofi/wofi and alfred"; homepage = "https://github.com/onagre-launcher/onagre"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ - maintainers.jfvillablanca - maintainers.ilya-epifanov + lib.maintainers.jfvillablanca + lib.maintainers.ilya-epifanov ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "onagre"; }; } diff --git a/pkgs/by-name/on/onboard/package.nix b/pkgs/by-name/on/onboard/package.nix index e54a7bd835de..196243d55289 100644 --- a/pkgs/by-name/on/onboard/package.nix +++ b/pkgs/by-name/on/onboard/package.nix @@ -189,10 +189,10 @@ python3.pkgs.buildPythonApplication rec { rm -rf $out/share/icons/ubuntu-mono-* ''; - meta = with lib; { + meta = { homepage = "https://launchpad.net/onboard"; description = "Onscreen keyboard useful for tablet PC users and for mobility impaired users"; maintainers = [ ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/on/ondir/package.nix b/pkgs/by-name/on/ondir/package.nix index 163ebcb13e67..e5c7a11075e0 100644 --- a/pkgs/by-name/on/ondir/package.nix +++ b/pkgs/by-name/on/ondir/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Small program to automate tasks specific to certain directories"; longDescription = '' It works by executing scripts in directories when you enter and leave them. @@ -38,8 +38,8 @@ stdenv.mkDerivation { See man ondir for more information ''; homepage = "https://github.com/alecthomas/ondir/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.michaelCTS ]; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.michaelCTS ]; mainProgram = "ondir"; }; } diff --git a/pkgs/by-name/on/one-click-backup/package.nix b/pkgs/by-name/on/one-click-backup/package.nix index ea3994bbec30..754011079651 100644 --- a/pkgs/by-name/on/one-click-backup/package.nix +++ b/pkgs/by-name/on/one-click-backup/package.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation (finalAttrs: { qt6.qtdeclarative ]; - meta = with lib; { + meta = { description = "Simple Program to backup folders to an external location by copying them"; homepage = "https://gitlab.com/dev-nis/nis-one-click-backup-qt"; changelog = "https://gitlab.com/dev-nis/nis-one-click-backup-qt/-/blob/${finalAttrs.version}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ NIS ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ NIS ]; mainProgram = "NIS_One-Click-Backup_Qt"; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/by-name/on/one_gadget/package.nix b/pkgs/by-name/on/one_gadget/package.nix index 3432638aa3b4..db9e5b0b01a0 100644 --- a/pkgs/by-name/on/one_gadget/package.nix +++ b/pkgs/by-name/on/one_gadget/package.nix @@ -21,15 +21,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "one_gadget"; - meta = with lib; { + meta = { description = "Best tool for finding one gadget RCE in libc.so.6"; homepage = "https://github.com/david942j/one_gadget"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ artemist nicknovitski ]; mainProgram = "one_gadget"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/on/onedriver/package.nix b/pkgs/by-name/on/onedriver/package.nix index 76c5ae58f0c3..62c55a1740b8 100644 --- a/pkgs/by-name/on/onedriver/package.nix +++ b/pkgs/by-name/on/onedriver/package.nix @@ -66,7 +66,7 @@ buildGoModule { --replace "/usr/bin/fusermount" "${wrapperDir}/fusermount" ''; - meta = with lib; { + meta = { description = "Network filesystem for Linux"; longDescription = '' onedriver is a network filesystem that gives your computer direct access to your files on Microsoft OneDrive. @@ -75,8 +75,8 @@ buildGoModule { your local computer. ''; inherit (src.meta) homepage; - license = licenses.gpl3Plus; - maintainers = [ maintainers.massimogengarelli ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.massimogengarelli ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/on/oneko/package.nix b/pkgs/by-name/on/oneko/package.nix index 0f71603ef342..050bc76770c4 100644 --- a/pkgs/by-name/on/oneko/package.nix +++ b/pkgs/by-name/on/oneko/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = with lib; { + meta = { description = "Creates a cute cat chasing around your mouse cursor"; longDescription = '' Oneko changes your mouse cursor into a mouse @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { When the cat is done catching the mouse, it starts sleeping. ''; homepage = "https://github.com/IreneKnapp/oneko"; - license = with licenses; [ publicDomain ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ publicDomain ]; + maintainers = with lib.maintainers; [ xaverdh irenes ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "oneko"; }; } diff --git a/pkgs/by-name/on/oneshot/package.nix b/pkgs/by-name/on/oneshot/package.nix index f7b57d070b72..b05c01c78c1a 100644 --- a/pkgs/by-name/on/oneshot/package.nix +++ b/pkgs/by-name/on/oneshot/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { command = "oneshot version"; }; - meta = with lib; { + meta = { description = "First-come first-served single-fire HTTP server"; homepage = "https://www.oneshot.uno/"; - license = licenses.mit; - maintainers = with maintainers; [ milibopp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ milibopp ]; mainProgram = "oneshot"; }; } diff --git a/pkgs/by-name/on/onesixtyone/package.nix b/pkgs/by-name/on/onesixtyone/package.nix index 3bc04f474f02..71c1d0c1de15 100644 --- a/pkgs/by-name/on/onesixtyone/package.nix +++ b/pkgs/by-name/on/onesixtyone/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { branch = "master"; # optional, defaults to default branch }; - meta = with lib; { + meta = { description = "Fast SNMP Scanner"; homepage = "https://github.com/trailofbits/onesixtyone"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.fishi0x01 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.fishi0x01 ]; mainProgram = "onesixtyone"; }; } diff --git a/pkgs/by-name/on/onestepback/package.nix b/pkgs/by-name/on/onestepback/package.nix index 37c9a05684aa..71f6cb2f9b99 100644 --- a/pkgs/by-name/on/onestepback/package.nix +++ b/pkgs/by-name/on/onestepback/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Gtk theme inspired by the NextStep look"; homepage = "http://www.vide.memoire.free.fr/pages/onestepback"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/on/oniguruma/package.nix b/pkgs/by-name/on/oniguruma/package.nix index 4f6e11d6a0ad..8f667789d2eb 100644 --- a/pkgs/by-name/on/oniguruma/package.nix +++ b/pkgs/by-name/on/oniguruma/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; configureFlags = [ "--enable-posix-api=yes" ]; - meta = with lib; { + meta = { homepage = "https://github.com/kkos/oniguruma"; description = "Regular expressions library"; mainProgram = "onig-config"; - license = licenses.bsd2; - maintainers = with maintainers; [ artturin ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ artturin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/on/onioncircuits/package.nix b/pkgs/by-name/on/onioncircuits/package.nix index 3f28526e852f..40607c3f08a1 100644 --- a/pkgs/by-name/on/onioncircuits/package.nix +++ b/pkgs/by-name/on/onioncircuits/package.nix @@ -43,11 +43,11 @@ python3.pkgs.buildPythonApplication rec { cp apparmor/usr.bin.onioncircuits $out/etc/apparmor.d ''; - meta = with lib; { + meta = { homepage = "https://tails.boum.org"; description = "GTK application to display Tor circuits and streams"; mainProgram = "onioncircuits"; - license = licenses.gpl3; - maintainers = with maintainers; [ wattmto ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ wattmto ]; }; } diff --git a/pkgs/by-name/on/onlykey-agent/package.nix b/pkgs/by-name/on/onlykey-agent/package.nix index 35b607f71798..1519d0505cb6 100644 --- a/pkgs/by-name/on/onlykey-agent/package.nix +++ b/pkgs/by-name/on/onlykey-agent/package.nix @@ -77,10 +77,10 @@ python3Packages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "onlykey_agent" ]; - meta = with lib; { + meta = { description = "Middleware that lets you use OnlyKey as a hardware SSH/GPG device"; homepage = "https://github.com/trustcrypto/onlykey-agent"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/on/onlykey-cli/package.nix b/pkgs/by-name/on/onlykey-cli/package.nix index a78d97de7c6e..72a2023d0449 100644 --- a/pkgs/by-name/on/onlykey-cli/package.nix +++ b/pkgs/by-name/on/onlykey-cli/package.nix @@ -37,11 +37,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "onlykey.client" ]; - meta = with lib; { + meta = { description = "OnlyKey client and command-line tool"; mainProgram = "onlykey-cli"; homepage = "https://github.com/trustcrypto/python-onlykey"; - license = licenses.mit; - maintainers = with maintainers; [ ranfdev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ranfdev ]; }; } diff --git a/pkgs/by-name/on/onlyoffice-documentserver/package.nix b/pkgs/by-name/on/onlyoffice-documentserver/package.nix index fda9ba6fa8b4..8fc124c7b4ef 100644 --- a/pkgs/by-name/on/onlyoffice-documentserver/package.nix +++ b/pkgs/by-name/on/onlyoffice-documentserver/package.nix @@ -157,7 +157,7 @@ let }; }; - meta = with lib; { + meta = { description = "ONLYOFFICE Document Server is an online office suite comprising viewers and editors"; mainProgram = "documentserver-prepare4shutdown.sh"; longDescription = '' @@ -165,13 +165,13 @@ let fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time. ''; homepage = "https://github.com/ONLYOFFICE/DocumentServer"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; platforms = [ "x86_64-linux" "aarch64-linux" ]; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; - maintainers = with maintainers; [ raboof ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + maintainers = with lib.maintainers; [ raboof ]; }; }; in diff --git a/pkgs/by-name/on/onmetal-image/package.nix b/pkgs/by-name/on/onmetal-image/package.nix index 1ab6200b5370..6b8dafb229a5 100644 --- a/pkgs/by-name/on/onmetal-image/package.nix +++ b/pkgs/by-name/on/onmetal-image/package.nix @@ -31,10 +31,10 @@ buildGoModule rec { --zsh <($out/bin/onmetal-image completion zsh) ''; - meta = with lib; { + meta = { description = "Onmetal OCI Image Specification, Library and Tooling"; homepage = "https://github.com/onmetal/onmetal-image"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "onmetal-image"; }; diff --git a/pkgs/by-name/oo/oo7/package.nix b/pkgs/by-name/oo/oo7/package.nix index 44e6de58f2f2..26e004d7f56f 100644 --- a/pkgs/by-name/oo/oo7/package.nix +++ b/pkgs/by-name/oo/oo7/package.nix @@ -33,16 +33,16 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "James Bond went on a new mission as a Secret Service provider"; homepage = "https://github.com/bilelmoussaoui/oo7"; changelog = "https://github.com/bilelmoussaoui/oo7/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ getchoo Scrumplex ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "oo7-cli"; }; } diff --git a/pkgs/by-name/oo/ookla-speedtest/package.nix b/pkgs/by-name/oo/ookla-speedtest/package.nix index 83388bbb83d7..93685e244016 100644 --- a/pkgs/by-name/oo/ookla-speedtest/package.nix +++ b/pkgs/by-name/oo/ookla-speedtest/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { install -D speedtest.5 $out/share/man/man5/speedtest.5 ''; - meta = with lib; { + meta = { description = "Command line internet speedtest tool by Ookla"; homepage = "https://www.speedtest.net/apps/cli"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ kranzes ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ kranzes ]; platforms = lib.attrNames srcs; mainProgram = "speedtest"; }; diff --git a/pkgs/by-name/oo/oonf-olsrd2/package.nix b/pkgs/by-name/oo/oonf-olsrd2/package.nix index 8b5d6815d66e..2fe56e1da48a 100644 --- a/pkgs/by-name/oo/oonf-olsrd2/package.nix +++ b/pkgs/by-name/oo/oonf-olsrd2/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Adhoc wireless mesh routing daemon"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "http://olsr.org/"; - maintainers = with maintainers; [ mkg20001 ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ mkg20001 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/oo/ooniprobe-cli/package.nix b/pkgs/by-name/oo/ooniprobe-cli/package.nix index f19bc733b879..ef93e6ac46f9 100644 --- a/pkgs/by-name/oo/ooniprobe-cli/package.nix +++ b/pkgs/by-name/oo/ooniprobe-cli/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ooni/probe-cli/releases/tag/${src.tag}"; description = "Open Observatory of Network Interference command line network probe"; homepage = "https://ooni.org/install/cli"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "ooniprobe"; }; } diff --git a/pkgs/by-name/op/opam2json/package.nix b/pkgs/by-name/op/opam2json/package.nix index bdaa23dcd785..002289e51f3b 100644 --- a/pkgs/by-name/op/opam2json/package.nix +++ b/pkgs/by-name/op/opam2json/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { preInstall = ''export PREFIX="$out"''; - meta = with lib; { - platforms = platforms.all; + meta = { + platforms = lib.platforms.all; description = "Convert opam file syntax to JSON"; mainProgram = "opam2json"; - maintainers = [ maintainers.balsoft ]; - license = licenses.gpl3; + maintainers = [ lib.maintainers.balsoft ]; + license = lib.licenses.gpl3; homepage = "https://github.com/tweag/opam2json"; }; } diff --git a/pkgs/by-name/op/opcua-commander/package.nix b/pkgs/by-name/op/opcua-commander/package.nix index 79af40699445..52d74410d008 100644 --- a/pkgs/by-name/op/opcua-commander/package.nix +++ b/pkgs/by-name/op/opcua-commander/package.nix @@ -48,11 +48,11 @@ buildNpmPackage rec { --prefix PATH : "${lib.makeBinPath [ nodejs ]}" ''; - meta = with lib; { + meta = { description = "Opcua client with blessed (ncurses)"; homepage = "https://github.com/node-opcua/opcua-commander"; - license = licenses.mit; - maintainers = with maintainers; [ jonboh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jonboh ]; mainProgram = "opcua-commander"; }; } diff --git a/pkgs/by-name/op/open-dyslexic/package.nix b/pkgs/by-name/op/open-dyslexic/package.nix index 9df85f40a824..bd23345f8379 100644 --- a/pkgs/by-name/op/open-dyslexic/package.nix +++ b/pkgs/by-name/op/open-dyslexic/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://opendyslexic.org/"; description = "Font created to increase readability for readers with dyslexia"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/op/open-ecard/package.nix b/pkgs/by-name/op/open-ecard/package.nix index 1a4cd79aa5da..70a56c1c2d77 100644 --- a/pkgs/by-name/op/open-ecard/package.nix +++ b/pkgs/by-name/op/open-ecard/package.nix @@ -64,14 +64,14 @@ stdenv.mkDerivation rec { --suffix LD_LIBRARY_PATH ':' ${lib.getLib pcsclite}/lib ''; - meta = with lib; { + meta = { description = "Client side implementation of the eCard-API-Framework (BSI TR-03112) and related international standards, such as ISO/IEC 24727"; mainProgram = "open-ecard"; homepage = "https://www.openecard.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3; - maintainers = with maintainers; [ sephalon ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ sephalon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/open-english-wordnet/package.nix b/pkgs/by-name/op/open-english-wordnet/package.nix index 20f830ea4c90..e4e753d59169 100644 --- a/pkgs/by-name/op/open-english-wordnet/package.nix +++ b/pkgs/by-name/op/open-english-wordnet/package.nix @@ -60,7 +60,7 @@ stdenvNoCC.mkDerivation (self: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lexical network of the English language"; longDescription = '' Open English WordNet is a lexical network of the English language grouping @@ -73,8 +73,8 @@ stdenvNoCC.mkDerivation (self: { open source methodology. ''; homepage = "https://en-word.net/"; - license = licenses.cc-by-40; - maintainers = with maintainers; [ nicoo ]; - platforms = platforms.all; + license = lib.licenses.cc-by-40; + maintainers = with lib.maintainers; [ nicoo ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/op/open-fonts/package.nix b/pkgs/by-name/op/open-fonts/package.nix index a0ff9f38ede8..fdce45076a16 100644 --- a/pkgs/by-name/op/open-fonts/package.nix +++ b/pkgs/by-name/op/open-fonts/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Collection of beautiful free and open source fonts"; homepage = "https://github.com/kiwi0fruit/open-fonts"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/op/open-fprintd/package.nix b/pkgs/by-name/op/open-fprintd/package.nix index 740b2ce33766..6ddfed95dd47 100644 --- a/pkgs/by-name/op/open-fprintd/package.nix +++ b/pkgs/by-name/op/open-fprintd/package.nix @@ -52,10 +52,10 @@ python3Packages.buildPythonPackage rec { wrapPythonProgramsIn "$out/lib/open-fprintd" "$out $pythonPath" ''; - meta = with lib; { + meta = { description = "Fprintd replacement which allows you to have your own backend as a standalone service"; homepage = "https://github.com/uunicorn/open-fprintd"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/open-in-mpv/package.nix b/pkgs/by-name/op/open-in-mpv/package.nix index 175f65d615e6..1baa0de1e687 100644 --- a/pkgs/by-name/op/open-in-mpv/package.nix +++ b/pkgs/by-name/op/open-in-mpv/package.nix @@ -26,7 +26,7 @@ buildGoModule rec { install -Dm444 -t $out/share/applications scripts/open-in-mpv.desktop ''; - meta = with lib; { + meta = { description = "Simple web extension to open videos in mpv"; longDescription = '' To function the browser extension must be installed and open-in-mpv must be set as the default scheme-handler for mpv:// eg.: @@ -36,8 +36,8 @@ buildGoModule rec { https://chrome.google.com/webstore/detail/open-in-mpv/ggijpepdpiehgbiknmfpfbhcalffjlbj ''; homepage = "https://github.com/Baldomo/open-in-mpv"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "open-in-mpv"; }; } diff --git a/pkgs/by-name/op/open-isns/package.nix b/pkgs/by-name/op/open-isns/package.nix index 8488668da2b2..49b61c761142 100644 --- a/pkgs/by-name/op/open-isns/package.nix +++ b/pkgs/by-name/op/open-isns/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { "-Dsystemddir=${placeholder "out"}/lib/systemd" ]; - meta = with lib; { + meta = { description = "iSNS server and client for Linux"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; homepage = "https://github.com/open-iscsi/open-isns"; - platforms = platforms.linux; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/op/open-sans/package.nix b/pkgs/by-name/op/open-sans/package.nix index 91144234c13b..03d1ef0001ea 100644 --- a/pkgs/by-name/op/open-sans/package.nix +++ b/pkgs/by-name/op/open-sans/package.nix @@ -25,15 +25,15 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open Sans fonts"; longDescription = '' Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. ''; homepage = "https://www.opensans.com"; - license = licenses.asl20; - platforms = platforms.all; - teams = [ teams.pantheon ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/by-name/op/open-scq30/package.nix b/pkgs/by-name/op/open-scq30/package.nix index 2c32e651aaa4..2e0611382db2 100644 --- a/pkgs/by-name/op/open-scq30/package.nix +++ b/pkgs/by-name/op/open-scq30/package.nix @@ -58,12 +58,12 @@ rustPlatform.buildRustPackage rec { cargo make --profile release install ''; - meta = with lib; { + meta = { description = "Cross platform application for controlling settings of Soundcore headphones"; homepage = "https://github.com/Oppzippy/OpenSCQ30"; changelog = "https://github.com/Oppzippy/OpenSCQ30/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mkg20001 ]; mainProgram = "open-scq30"; }; } diff --git a/pkgs/by-name/op/open-stage-control/package.nix b/pkgs/by-name/op/open-stage-control/package.nix index 6ffa6b95ec41..1e6c0e505450 100644 --- a/pkgs/by-name/op/open-stage-control/package.nix +++ b/pkgs/by-name/op/open-stage-control/package.nix @@ -90,12 +90,12 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Libre and modular OSC / MIDI controller"; homepage = "https://openstagecontrol.ammd.net/"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "open-stage-control"; # Depends on nodejs_18 that has been removed. broken = true; diff --git a/pkgs/by-name/op/open-wbo/package.nix b/pkgs/by-name/op/open-wbo/package.nix index a99305706303..97250ced05a7 100644 --- a/pkgs/by-name/op/open-wbo/package.nix +++ b/pkgs/by-name/op/open-wbo/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation { install -Dm0755 open-wbo_release $out/bin/open-wbo ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "State-of-the-art MaxSAT and Pseudo-Boolean solver"; mainProgram = "open-wbo"; maintainers = [ ]; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; homepage = "http://sat.inesc-id.pt/open-wbo/"; }; } diff --git a/pkgs/by-name/op/open-web-calendar/package.nix b/pkgs/by-name/op/open-web-calendar/package.nix index 1579e8cdf8a4..b3b12768becf 100644 --- a/pkgs/by-name/op/open-web-calendar/package.nix +++ b/pkgs/by-name/op/open-web-calendar/package.nix @@ -76,7 +76,7 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Highly customizable web calendar that can be embedded into websites using ICal source links"; homepage = "https://open-web-calendar.quelltext.eu"; changelog = @@ -84,13 +84,13 @@ python.pkgs.buildPythonApplication rec { v = builtins.replaceStrings [ "." ] [ "" ] version; in "https://open-web-calendar.quelltext.eu/changelog/#v${v}"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only cc-by-sa-40 cc0 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ erictapen ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ erictapen ]; mainProgram = "open-web-calendar"; }; } diff --git a/pkgs/by-name/op/open62541/package.nix b/pkgs/by-name/op/open62541/package.nix index 5107a1bf0ab6..86d3f698a829 100644 --- a/pkgs/by-name/op/open62541/package.nix +++ b/pkgs/by-name/op/open62541/package.nix @@ -175,7 +175,7 @@ stdenv.mkDerivation (finalAttrs: { open62541Full-mbedtls = open62541Full "mbedtls"; }; - meta = with lib; { + meta = { description = "Open source implementation of OPC UA"; longDescription = '' open62541 (http://open62541.org) is an open source and free implementation @@ -187,8 +187,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.open62541.org"; changelog = "https://github.com/open62541/open62541/releases/tag/v${finalAttrs.version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ panicgh ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ panicgh ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/op/openapi-tui/package.nix b/pkgs/by-name/op/openapi-tui/package.nix index ff334b6ed538..3c97eabeaebd 100644 --- a/pkgs/by-name/op/openapi-tui/package.nix +++ b/pkgs/by-name/op/openapi-tui/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Terminal UI to list, browse and run APIs defined with openapi spec"; homepage = "https://github.com/zaghaghi/openapi-tui"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "openapi-tui"; }; } diff --git a/pkgs/by-name/op/openasar/package.nix b/pkgs/by-name/op/openasar/package.nix index c750eebf6f5d..01513613237b 100644 --- a/pkgs/by-name/op/openasar/package.nix +++ b/pkgs/by-name/op/openasar/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation (finalAttrs: { ); }; - meta = with lib; { + meta = { description = "Open-source alternative of Discord desktop's \"app.asar\""; homepage = "https://openasar.dev"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ Scrumplex jopejoe1 ]; diff --git a/pkgs/by-name/op/openbgpd/package.nix b/pkgs/by-name/op/openbgpd/package.nix index 7c33126a56a4..910e80f2a63b 100644 --- a/pkgs/by-name/op/openbgpd/package.nix +++ b/pkgs/by-name/op/openbgpd/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { # bgpd-bgpd.o:/build/source/src/bgpd/bgpd.h:133: first defined here env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = with lib; { + meta = { description = "Free implementation of the Border Gateway Protocol, Version 4. It allows ordinary machines to be used as routers exchanging routes with other systems speaking the BGP protocol"; - license = licenses.isc; + license = lib.licenses.isc; homepage = "http://www.openbgpd.org/"; - maintainers = with maintainers; [ kloenk ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ kloenk ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/openboard/package.nix b/pkgs/by-name/op/openboard/package.nix index 0fc368b5539a..117d5d4a8704 100644 --- a/pkgs/by-name/op/openboard/package.nix +++ b/pkgs/by-name/op/openboard/package.nix @@ -93,15 +93,15 @@ stdenv.mkDerivation (finalAttrs: { libXfixes ]; - meta = with lib; { + meta = { description = "Interactive whiteboard application"; homepage = "https://openboard.ch/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ atinba fufexan ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "openboard"; }; }) diff --git a/pkgs/by-name/op/openboardview/package.nix b/pkgs/by-name/op/openboardview/package.nix index 7a3a1409ac1d..59cf764c4469 100644 --- a/pkgs/by-name/op/openboardview/package.nix +++ b/pkgs/by-name/op/openboardview/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { ignoredVersions = ''.*\.90\..*''; }; - meta = with lib; { + meta = { description = "Linux SDL/ImGui edition software for viewing .brd files"; mainProgram = "openboardview"; homepage = "https://github.com/OpenBoardView/OpenBoardView"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ k3a ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ k3a ]; }; } diff --git a/pkgs/by-name/op/openbooks/common.nix b/pkgs/by-name/op/openbooks/common.nix index baf1ac2529e7..bc6075bce23b 100644 --- a/pkgs/by-name/op/openbooks/common.nix +++ b/pkgs/by-name/op/openbooks/common.nix @@ -9,9 +9,9 @@ rec { hash = "sha256-gznaMcj8/9xW8wvz/pQaw4tY/hDW8K6duFfJD74E47E="; }; - meta = with lib; { + meta = { homepage = "https://evan-buss.github.io/openbooks/"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/by-name/op/opencascade-occt/package.nix b/pkgs/by-name/op/opencascade-occt/package.nix index 23cc7b525235..72f84459a5f4 100644 --- a/pkgs/by-name/op/opencascade-occt/package.nix +++ b/pkgs/by-name/op/opencascade-occt/package.nix @@ -80,13 +80,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Open CASCADE Technology, libraries for 3D modeling and numerical simulation"; homepage = "https://www.opencascade.org/"; - license = licenses.lgpl21; # essentially... + license = lib.licenses.lgpl21; # essentially... # The special exception defined in the file OCCT_LGPL_EXCEPTION.txt # are basically about making the license a little less share-alike. - maintainers = with maintainers; [ amiloradovsky ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ amiloradovsky ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/op/opencbm/package.nix b/pkgs/by-name/op/opencbm/package.nix index 200e80f5d9ca..1c2d56aa7ed5 100644 --- a/pkgs/by-name/op/opencbm/package.nix +++ b/pkgs/by-name/op/opencbm/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Kernel driver and development library to control serial CBM devices"; longDescription = '' Win 7/8/10, and Linux/i386/AMD64 kernel driver and development library to @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { and the XUM1541 devices (a.k.a. "ZoomFloppy"). ''; homepage = "https://spiro.trikaliotis.net/opencbm"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/opencc/package.nix b/pkgs/by-name/op/opencc/package.nix index b1b075679c1b..a3b116d34b8d 100644 --- a/pkgs/by-name/op/opencc/package.nix +++ b/pkgs/by-name/op/opencc/package.nix @@ -41,9 +41,9 @@ stdenv.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "ver."; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/BYVoid/OpenCC"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Project for conversion between Traditional and Simplified Chinese"; longDescription = '' Open Chinese Convert (OpenCC) is an opensource project for conversion between @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { phrase-level conversion, variant conversion and regional idioms among Mainland China, Taiwan and Hong kong. ''; - maintainers = with maintainers; [ sifmelcara ]; - platforms = with platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ sifmelcara ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/op/opencorsairlink/package.nix b/pkgs/by-name/op/opencorsairlink/package.nix index e0ca6b4c30cf..e034b35c2857 100644 --- a/pkgs/by-name/op/opencorsairlink/package.nix +++ b/pkgs/by-name/op/opencorsairlink/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { }) ]; - meta = with lib; { + meta = { description = "Linux and Mac OS support for the CorsairLink Devices"; homepage = "https://github.com/audiohacked/OpenCorsairLink"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "OpenCorsairLink.elf"; }; diff --git a/pkgs/by-name/op/openctm/package.nix b/pkgs/by-name/op/openctm/package.nix index 25314ca6b981..1e76f30df494 100644 --- a/pkgs/by-name/op/openctm/package.nix +++ b/pkgs/by-name/op/openctm/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation (finalAttrs: { preInstall = "mkdir -p $bin/bin $dev/include $out/lib $man/share/man/man1"; - meta = with lib; { + meta = { description = "File format, software library and a tool set for compression of 3D triangle meshes"; homepage = "https://sourceforge.net/projects/openctm/"; - license = licenses.zlib; - maintainers = with maintainers; [ nim65s ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ nim65s ]; }; }) diff --git a/pkgs/by-name/op/opendbx/package.nix b/pkgs/by-name/op/opendbx/package.nix index 4b46e91ae277..75240d494fab 100644 --- a/pkgs/by-name/op/opendbx/package.nix +++ b/pkgs/by-name/op/opendbx/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { "-std=c++14" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Extremely lightweight but extensible database access library written in C"; mainProgram = "odbx-sql"; - license = licenses.lgpl21; - platforms = platforms.all; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/op/opendht/package.nix b/pkgs/by-name/op/opendht/package.nix index 8bb5f61fd630..5c8dbb54c36b 100644 --- a/pkgs/by-name/op/opendht/package.nix +++ b/pkgs/by-name/op/opendht/package.nix @@ -72,15 +72,15 @@ stdenv.mkDerivation rec { extraArgs = [ "--version-regex=v(.+)" ]; }; - meta = with lib; { + meta = { description = "C++11 Kademlia distributed hash table implementation"; homepage = "https://github.com/savoirfairelinux/opendht"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ taeer olynch thoughtpolice ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/opendkim/package.nix b/pkgs/by-name/op/opendkim/package.nix index 2b8a2190de05..41c5866a57f7 100644 --- a/pkgs/by-name/op/opendkim/package.nix +++ b/pkgs/by-name/op/opendkim/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { --prefix PATH : ${openssl.bin}/bin ''; - meta = with lib; { + meta = { description = "C library for producing DKIM-aware applications and an open source milter for providing DKIM service"; homepage = "http://www.opendkim.org/"; maintainers = [ ]; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/opendmarc/package.nix b/pkgs/by-name/op/opendmarc/package.nix index cf48bbeda178..815abcd88711 100644 --- a/pkgs/by-name/op/opendmarc/package.nix +++ b/pkgs/by-name/op/opendmarc/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Free open source software implementation of the DMARC specification"; homepage = "http://www.trusteddomain.org/opendmarc/"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 sendmail ]; - teams = [ teams.helsinki-systems ]; + teams = [ lib.teams.helsinki-systems ]; }; } diff --git a/pkgs/by-name/op/opendune/package.nix b/pkgs/by-name/op/opendune/package.nix index 38727c388ebb..7f6df84157c4 100644 --- a/pkgs/by-name/op/opendune/package.nix +++ b/pkgs/by-name/op/opendune/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Dune, Reinvented"; mainProgram = "opendune"; homepage = "https://github.com/OpenDUNE/OpenDUNE"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/op/openexrid-unstable/package.nix b/pkgs/by-name/op/openexrid-unstable/package.nix index 02e14959dc87..ed165fb45a97 100644 --- a/pkgs/by-name/op/openexrid-unstable/package.nix +++ b/pkgs/by-name/op/openexrid-unstable/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation { mv $out/lib $lib/ ''; - meta = with lib; { + meta = { description = "OpenEXR files able to isolate any object of a CG image with a perfect antialiazing"; homepage = "https://github.com/MercenariesEngineering/openexrid"; - maintainers = [ maintainers.guibou ]; - platforms = platforms.all; - license = licenses.mit; + maintainers = [ lib.maintainers.guibou ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/op/openfec/package.nix b/pkgs/by-name/op/openfec/package.nix index 1fbed3dfc591..4aee241d57e8 100644 --- a/pkgs/by-name/op/openfec/package.nix +++ b/pkgs/by-name/op/openfec/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Application-level Forward Erasure Correction codes"; homepage = "https://github.com/roc-streaming/openfec"; - license = licenses.cecill-c; - maintainers = with maintainers; [ bgamari ]; - platforms = platforms.unix; + license = lib.licenses.cecill-c; + maintainers = with lib.maintainers; [ bgamari ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/openfortivpn-webview-qt/package.nix b/pkgs/by-name/op/openfortivpn-webview-qt/package.nix index b51ecd5d7755..db5c59c61d96 100644 --- a/pkgs/by-name/op/openfortivpn-webview-qt/package.nix +++ b/pkgs/by-name/op/openfortivpn-webview-qt/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Perform the SAML single sign-on and easily retrieve the SVPNCOOKIE needed by openfortivpn"; homepage = "https://github.com/gm-vm/openfortivpn-webview/tree/main"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.jonboh ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "openfortivpn-webview"; }; } diff --git a/pkgs/by-name/op/openfst/package.nix b/pkgs/by-name/op/openfst/package.nix index cd7df6534b05..2c116b27fbe5 100644 --- a/pkgs/by-name/op/openfst/package.nix +++ b/pkgs/by-name/op/openfst/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Library for working with finite-state transducers"; longDescription = '' Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs). @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { pattern matching, string processing, machine learning, information extraction and retrieval among others ''; homepage = "https://www.openfst.org/twiki/bin/view/FST/WebHome"; - license = licenses.asl20; - maintainers = [ maintainers.dfordivam ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.dfordivam ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/openfx/package.nix b/pkgs/by-name/op/openfx/package.nix index 674ee7928763..16aab8c28382 100644 --- a/pkgs/by-name/op/openfx/package.nix +++ b/pkgs/by-name/op/openfx/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { cp -r include/* $dev/include/OpenFX/ ''; - meta = with lib; { + meta = { description = "Image processing plug-in standard"; homepage = "https://openeffects.org/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = [ maintainers.guibou ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.guibou ]; }; } diff --git a/pkgs/by-name/op/opengrm-ngram/package.nix b/pkgs/by-name/op/opengrm-ngram/package.nix index c2ee06353a33..4fead12e27ec 100644 --- a/pkgs/by-name/op/opengrm-ngram/package.nix +++ b/pkgs/by-name/op/opengrm-ngram/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Library to make and modify n-gram language models encoded as weighted finite-state transducers"; homepage = "https://www.openfst.org/twiki/bin/view/GRM/NGramLibrary"; - license = licenses.asl20; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/openipmi/package.nix b/pkgs/by-name/op/openipmi/package.nix index fada75ad48cb..110ba72de6a9 100644 --- a/pkgs/by-name/op/openipmi/package.nix +++ b/pkgs/by-name/op/openipmi/package.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { homepage = "https://openipmi.sourceforge.io/"; description = "User-level library that provides a higher-level abstraction of IPMI and generic services"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl2Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ arezvov ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ arezvov ]; }; } diff --git a/pkgs/by-name/op/openiscsi/package.nix b/pkgs/by-name/op/openiscsi/package.nix index 18e24429d8a9..a30c88051c41 100644 --- a/pkgs/by-name/op/openiscsi/package.nix +++ b/pkgs/by-name/op/openiscsi/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) iscsi-root; }; - meta = with lib; { + meta = { description = "High performance, transport independent, multi-platform implementation of RFC3720"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.open-iscsi.com"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cleverca22 zaninime ]; diff --git a/pkgs/by-name/op/openldap/package.nix b/pkgs/by-name/op/openldap/package.nix index e42a6411de3c..3ebf541856ef 100644 --- a/pkgs/by-name/op/openldap/package.nix +++ b/pkgs/by-name/op/openldap/package.nix @@ -155,12 +155,12 @@ stdenv.mkDerivation rec { kerberosWithLdap = nixosTests.kerberos.ldap; }; - meta = with lib; { + meta = { homepage = "https://www.openldap.org/"; description = "Open source implementation of the Lightweight Directory Access Protocol"; - license = licenses.openldap; - maintainers = with maintainers; [ hexa ]; - teams = [ teams.helsinki-systems ]; - platforms = platforms.unix; + license = lib.licenses.openldap; + maintainers = with lib.maintainers; [ hexa ]; + teams = [ lib.teams.helsinki-systems ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/openmesh/package.nix b/pkgs/by-name/op/openmesh/package.nix index 2a1e065044a8..f342c4b7ebfe 100644 --- a/pkgs/by-name/op/openmesh/package.nix +++ b/pkgs/by-name/op/openmesh/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://www.graphics.rwth-aachen.de/software/openmesh/"; description = "Generic and efficient polygon mesh data structure"; - maintainers = with maintainers; [ yzx9 ]; - platforms = platforms.all; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ yzx9 ]; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/op/openmm/package.nix b/pkgs/by-name/op/openmm/package.nix index f63175e4e7a8..5b936343c10d 100644 --- a/pkgs/by-name/op/openmm/package.nix +++ b/pkgs/by-name/op/openmm/package.nix @@ -115,16 +115,16 @@ stdenv.mkDerivation (finalAttrs: { # Couldn't get CUDA to run properly in the sandbox doCheck = !enableCuda && !enableOpencl; - meta = with lib; { + meta = { description = "Toolkit for molecular simulation using high performance GPU code"; mainProgram = "TestReferenceHarmonicBondForce"; homepage = "https://openmm.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus mit ]; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; }) diff --git a/pkgs/by-name/op/openmsx/package.nix b/pkgs/by-name/op/openmsx/package.nix index ab305c0dbef8..734522bea203 100644 --- a/pkgs/by-name/op/openmsx/package.nix +++ b/pkgs/by-name/op/openmsx/package.nix @@ -73,20 +73,20 @@ stdenv.mkDerivation (finalAttrs: { # Nixpkgs! :) TCL_CONFIG = "${tcl}/lib/"; - meta = with lib; { + meta = { homepage = "https://openmsx.org"; description = "MSX emulator that aims for perfection"; longDescription = '' OpenMSX is an emulator for the MSX home computer system. Its goal is to emulate all aspects of the MSX with 100% accuracy. ''; - license = with licenses; [ + license = with lib.licenses; [ bsd2 boost gpl2Plus ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "openmsx"; }; }) diff --git a/pkgs/by-name/op/openntpd/package.nix b/pkgs/by-name/op/openntpd/package.nix index a92a32c151bb..aeff2b4051ea 100644 --- a/pkgs/by-name/op/openntpd/package.nix +++ b/pkgs/by-name/op/openntpd/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { "localstatedir=\${TMPDIR}" ]; - meta = with lib; { + meta = { homepage = "https://www.openntpd.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "OpenBSD NTP daemon (Debian port)"; - platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/op/openobex/package.nix b/pkgs/by-name/op/openobex/package.nix index d673c8345142..8f6358e46fab 100644 --- a/pkgs/by-name/op/openobex/package.nix +++ b/pkgs/by-name/op/openobex/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { --replace-fail '\$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR} ''; - meta = with lib; { + meta = { homepage = "http://dev.zuckschwerdt.org/openobex/"; description = "Open source implementation of the Object Exchange (OBEX) protocol"; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2Plus; mainProgram = "obex-check-device"; }; } diff --git a/pkgs/by-name/op/openocd/package.nix b/pkgs/by-name/op/openocd/package.nix index b18c935a5041..d8decff9ebb4 100644 --- a/pkgs/by-name/op/openocd/package.nix +++ b/pkgs/by-name/op/openocd/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { ln -s "$rules" "$out/etc/udev/rules.d/" ''; - meta = with lib; { + meta = { description = "Free and Open On-Chip Debugging, In-System Programming and Boundary-Scan Testing"; mainProgram = "openocd"; longDescription = '' @@ -95,11 +95,11 @@ stdenv.mkDerivation rec { GNU GDB program. ''; homepage = "https://openocd.sourceforge.net/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ bjornfor prusnak ]; - platforms = platforms.unix ++ platforms.windows; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; } diff --git a/pkgs/by-name/op/openonload/package.nix b/pkgs/by-name/op/openonload/package.nix index bf01d96a6d9c..2b0a4163e862 100644 --- a/pkgs/by-name/op/openonload/package.nix +++ b/pkgs/by-name/op/openonload/package.nix @@ -147,11 +147,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "OpenOnLoad high performance network stack from Solarflare"; homepage = "https://www.openonload.org"; license = lib.licenses.gpl2; - maintainers = with maintainers; [ YorikSar ]; + maintainers = with lib.maintainers; [ YorikSar ]; # ARM64 build fails, see https://github.com/Xilinx-CNS/onload/issues/253 platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/op/openpam/package.nix b/pkgs/by-name/op/openpam/package.nix index 52b026e5c3a8..9b7346f79d41 100644 --- a/pkgs/by-name/op/openpam/package.nix +++ b/pkgs/by-name/op/openpam/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { __structuredAttrs = true; - meta = with lib; { + meta = { homepage = "https://www.openpam.org"; description = "Open source PAM library that focuses on simplicity, correctness, and cleanliness"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/op/openpgp-ca/package.nix b/pkgs/by-name/op/openpgp-ca/package.nix index 31dd0ac29cb6..7ad920ac2479 100644 --- a/pkgs/by-name/op/openpgp-ca/package.nix +++ b/pkgs/by-name/op/openpgp-ca/package.nix @@ -46,12 +46,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Tool for managing OpenPGP keys within organizations"; homepage = "https://openpgp-ca.org/"; changelog = "https://openpgp-ca.org/doc/changelog/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ cherrykitten ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ cherrykitten ]; mainProgram = "oca"; }; } diff --git a/pkgs/by-name/op/openpgp-card-tools/package.nix b/pkgs/by-name/op/openpgp-card-tools/package.nix index 02ef60cb045b..c0e800712df2 100644 --- a/pkgs/by-name/op/openpgp-card-tools/package.nix +++ b/pkgs/by-name/op/openpgp-card-tools/package.nix @@ -49,14 +49,14 @@ rustPlatform.buildRustPackage rec { installManPage ./man/*.1 ''; - meta = with lib; { + meta = { description = "Tool for inspecting and configuring OpenPGP cards"; homepage = "https://codeberg.org/openpgp-card/openpgp-card-tools"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # OR mit ]; - maintainers = with maintainers; [ nickcao ]; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "oct"; }; } diff --git a/pkgs/by-name/op/openpomodoro-cli/package.nix b/pkgs/by-name/op/openpomodoro-cli/package.nix index 1a0fe5f64d89..44201f5f876e 100644 --- a/pkgs/by-name/op/openpomodoro-cli/package.nix +++ b/pkgs/by-name/op/openpomodoro-cli/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { "-X=main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Command-line Pomodoro tracker which uses the Open Pomodoro Format"; homepage = "https://github.com/open-pomodoro/openpomodoro-cli"; changelog = "https://github.com/open-pomodoro/openpomodoro-cli/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ gdifolco ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gdifolco ]; mainProgram = "openpomodoro-cli"; }; } diff --git a/pkgs/by-name/op/openrefine/package.nix b/pkgs/by-name/op/openrefine/package.nix index d9ea9e4270e1..01aa8f922da5 100644 --- a/pkgs/by-name/op/openrefine/package.nix +++ b/pkgs/by-name/op/openrefine/package.nix @@ -119,15 +119,15 @@ maven.buildMavenPackage { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Power tool for working with messy data and improving it"; homepage = "https://openrefine.org"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ris arcstur ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # maven dependencies ]; diff --git a/pkgs/by-name/op/openrgb-plugin-effects/package.nix b/pkgs/by-name/op/openrgb-plugin-effects/package.nix index ce0c60f496d3..5d29b2e8901d 100644 --- a/pkgs/by-name/op/openrgb-plugin-effects/package.nix +++ b/pkgs/by-name/op/openrgb-plugin-effects/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { openal ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/OpenRGBDevelopers/OpenRGBEffectsPlugin"; description = "Effects plugin for OpenRGB"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix b/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix index 433eb4fc8bdc..a5677c591f9f 100644 --- a/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix +++ b/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation (finalAttrs: { kdePackages.wrapQtAppsHook ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/OpenRGBDevelopers/OpenRGBHardwareSyncPlugin"; description = "Sync your ARGB devices colors with hardware measures (CPU, GPU, fan speed, etc...)"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/op/openring/package.nix b/pkgs/by-name/op/openring/package.nix index 1321868651e8..0715436cee0f 100644 --- a/pkgs/by-name/op/openring/package.nix +++ b/pkgs/by-name/op/openring/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # The package has no tests. doCheck = false; - meta = with lib; { + meta = { description = "Webring for static site generators"; homepage = "https://sr.ht/~sircmpwn/openring"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ sumnerevans ]; mainProgram = "openring"; }; } diff --git a/pkgs/by-name/op/openrsync/package.nix b/pkgs/by-name/op/openrsync/package.nix index bd7df3bcd42b..d9545aff3274 100644 --- a/pkgs/by-name/op/openrsync/package.nix +++ b/pkgs/by-name/op/openrsync/package.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation { # Uses oconfigure prefixKey = "PREFIX="; - meta = with lib; { + meta = { homepage = "https://www.openrsync.org/"; description = "BSD-licensed implementation of rsync"; mainProgram = "openrsync"; - license = licenses.isc; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fgaz ]; # https://github.com/kristapsdz/openrsync#portability # https://github.com/kristapsdz/oconfigure#readme - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/openrussian-cli/package.nix b/pkgs/by-name/op/openrussian-cli/package.nix index 64c15b8092b7..cc92d12d38e2 100644 --- a/pkgs/by-name/op/openrussian-cli/package.nix +++ b/pkgs/by-name/op/openrussian-cli/package.nix @@ -81,16 +81,16 @@ stdenv.mkDerivation rec { installManPage ./openrussian.1 ''; - meta = with lib; { + meta = { description = "Offline Console Russian Dictionary (based on openrussian.org)"; homepage = "https://github.com/rhaberkorn/openrussian-cli"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only mit cc-by-sa-40 ]; - maintainers = with maintainers; [ zane ]; + maintainers = with lib.maintainers; [ zane ]; mainProgram = "openrussian"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/opensaml-cpp/package.nix b/pkgs/by-name/op/opensaml-cpp/package.nix index 6bbe4f57d718..fd54433a0697 100644 --- a/pkgs/by-name/op/opensaml-cpp/package.nix +++ b/pkgs/by-name/op/opensaml-cpp/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://shibboleth.net/products/opensaml-cpp.html"; description = "Low-level library written in C++ that provides support for producing and consuming SAML messages"; mainProgram = "samlsign"; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/op/opensc/package.nix b/pkgs/by-name/op/opensc/package.nix index 059372dd9a8c..1fe90a5082a3 100644 --- a/pkgs/by-name/op/opensc/package.nix +++ b/pkgs/by-name/op/opensc/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Set of libraries and utilities to access smart cards"; homepage = "https://github.com/OpenSC/OpenSC/wiki"; - license = licenses.lgpl21Plus; - platforms = platforms.all; - maintainers = [ maintainers.michaeladler ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.michaeladler ]; }; } diff --git a/pkgs/by-name/op/openscad-lsp/package.nix b/pkgs/by-name/op/openscad-lsp/package.nix index a3961988b61e..1edf8370b443 100644 --- a/pkgs/by-name/op/openscad-lsp/package.nix +++ b/pkgs/by-name/op/openscad-lsp/package.nix @@ -28,13 +28,13 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "LSP (Language Server Protocol) server for OpenSCAD"; mainProgram = "openscad-lsp"; homepage = "https://github.com/Leathong/openscad-LSP"; changelog = "https://github.com/Leathong/openscad-LSP/releases/tag/${finalAttrs.src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ c-h-johnson curious ]; diff --git a/pkgs/by-name/op/openscad-unstable/package.nix b/pkgs/by-name/op/openscad-unstable/package.nix index 0184ab5753c6..e31d22adc839 100644 --- a/pkgs/by-name/op/openscad-unstable/package.nix +++ b/pkgs/by-name/op/openscad-unstable/package.nix @@ -167,7 +167,7 @@ clangStdenv.mkDerivation rec { dontUseNinjaCheck = true; - meta = with lib; { + meta = { description = "3D parametric model compiler (unstable)"; longDescription = '' OpenSCAD is a software for creating solid 3D CAD objects. It is free diff --git a/pkgs/by-name/op/openscenegraph/package.nix b/pkgs/by-name/op/openscenegraph/package.nix index ee4b53ae8057..b411ad4beb58 100644 --- a/pkgs/by-name/op/openscenegraph/package.nix +++ b/pkgs/by-name/op/openscenegraph/package.nix @@ -146,14 +146,14 @@ stdenv.mkDerivation rec { lib.optional (!withApps) "-DBUILD_OSG_APPLICATIONS=OFF" ++ lib.optional withExamples "-DBUILD_OSG_EXAMPLES=ON"; - meta = with lib; { + meta = { description = "3D graphics toolkit"; homepage = "http://www.openscenegraph.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aanderse raskin ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; license = with lib.licenses; [ lgpl21Only wxWindowsException31 diff --git a/pkgs/by-name/op/openseachest/package.nix b/pkgs/by-name/op/openseachest/package.nix index 9938d99ceb24..76ca18f42197 100644 --- a/pkgs/by-name/op/openseachest/package.nix +++ b/pkgs/by-name/op/openseachest/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Collection of command line diagnostic tools for storage devices"; homepage = "https://github.com/Seagate/openSeaChest"; - license = licenses.mpl20; - maintainers = with maintainers; [ justinas ]; - platforms = with platforms; freebsd ++ linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ justinas ]; + platforms = with lib.platforms; freebsd ++ linux; }; } diff --git a/pkgs/by-name/op/openshift/package.nix b/pkgs/by-name/op/openshift/package.nix index 5a0d1ee8a678..ccb6dc93ba17 100644 --- a/pkgs/by-name/op/openshift/package.nix +++ b/pkgs/by-name/op/openshift/package.nix @@ -60,11 +60,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Build, deploy, and manage your applications with Docker and Kubernetes"; homepage = "http://www.openshift.org"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline moretea stehessel diff --git a/pkgs/by-name/op/openslide/package.nix b/pkgs/by-name/op/openslide/package.nix index ba0ae8eb69a7..9cce3bf27e91 100644 --- a/pkgs/by-name/op/openslide/package.nix +++ b/pkgs/by-name/op/openslide/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation (finalAttrs: { zstd ]; - meta = with lib; { + meta = { homepage = "https://openslide.org"; description = "C library that provides a simple interface to read whole-slide images"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; changelog = "https://github.com/openslide/openslide/releases/tag/v${finalAttrs.version}"; - platforms = platforms.unix; - maintainers = with maintainers; [ lromor ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lromor ]; mainProgram = "slidetool"; }; }) diff --git a/pkgs/by-name/op/openslp/package.nix b/pkgs/by-name/op/openslp/package.nix index 503daabb90bd..b17ff1c59678 100644 --- a/pkgs/by-name/op/openslp/package.nix +++ b/pkgs/by-name/op/openslp/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { ./CVE-2019-5544.patch ]; - meta = with lib; { + meta = { homepage = "http://www.openslp.org/"; description = "Open-source implementation of the IETF Service Location Protocol"; - maintainers = with maintainers; [ ttuegel ]; - license = licenses.bsd3; - platforms = platforms.all; + maintainers = with lib.maintainers; [ ttuegel ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; knownVulnerabilities = [ diff --git a/pkgs/by-name/op/opensm/package.nix b/pkgs/by-name/op/opensm/package.nix index 8da103bce1d0..d9a7f76fcaec 100644 --- a/pkgs/by-name/op/opensm/package.nix +++ b/pkgs/by-name/op/opensm/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Infiniband subnet manager"; homepage = "https://www.openfabrics.org/"; - license = licenses.gpl2Only; # dual licensed as 2-clause BSD - maintainers = [ maintainers.aij ]; + license = lib.licenses.gpl2Only; # dual licensed as 2-clause BSD + maintainers = [ lib.maintainers.aij ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/op/opensmtpd-filter-dkimsign/package.nix b/pkgs/by-name/op/opensmtpd-filter-dkimsign/package.nix index 198c53278134..63e54618770f 100644 --- a/pkgs/by-name/op/opensmtpd-filter-dkimsign/package.nix +++ b/pkgs/by-name/op/opensmtpd-filter-dkimsign/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { "LOCALBASE=" ]; - meta = with lib; { + meta = { description = "OpenSMTPD filter for DKIM signing"; homepage = "http://imperialat.at/dev/filter-dkimsign/"; - license = licenses.isc; - maintainers = with maintainers; [ malte-v ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ malte-v ]; }; } diff --git a/pkgs/by-name/op/opensmtpd-filter-rspamd/package.nix b/pkgs/by-name/op/opensmtpd-filter-rspamd/package.nix index 0cba39036ffe..a8730e7018e0 100644 --- a/pkgs/by-name/op/opensmtpd-filter-rspamd/package.nix +++ b/pkgs/by-name/op/opensmtpd-filter-rspamd/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { opensmtpd-rspamd-integration = nixosTests.opensmtpd-rspamd; }; - meta = with lib; { + meta = { description = "OpenSMTPD filter integration for the Rspamd daemon"; homepage = "https://github.com/poolpOrg/filter-rspamd"; - license = licenses.isc; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ Flakebi ]; mainProgram = "filter-rspamd"; }; } diff --git a/pkgs/by-name/op/opensmtpd/package.nix b/pkgs/by-name/op/opensmtpd/package.nix index f952a4b00361..ebd00cae0a65 100644 --- a/pkgs/by-name/op/opensmtpd/package.nix +++ b/pkgs/by-name/op/opensmtpd/package.nix @@ -71,15 +71,15 @@ stdenv.mkDerivation rec { "localstatedir=\${TMPDIR}" ]; - meta = with lib; { + meta = { homepage = "https://www.opensmtpd.org/"; description = '' A free implementation of the server-side SMTP protocol as defined by RFC 5321, with some additional standard extensions ''; - license = licenses.isc; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.isc; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ obadz vifino ]; diff --git a/pkgs/by-name/op/opensoldat/package.nix b/pkgs/by-name/op/opensoldat/package.nix index c31f93e4354f..d9028a931ed0 100644 --- a/pkgs/by-name/op/opensoldat/package.nix +++ b/pkgs/by-name/op/opensoldat/package.nix @@ -40,10 +40,10 @@ let install -Dm644 play-regular.ttf -t $out/share/opensoldat ''; - meta = with lib; { + meta = { description = "Opensoldat's base game content"; - license = licenses.cc-by-40; - platforms = platforms.all; + license = lib.licenses.cc-by-40; + platforms = lib.platforms.all; inherit (src.meta) homepage; }; }; @@ -106,14 +106,14 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Unique 2D (side-view) multiplayer action game"; license = [ - licenses.mit + lib.licenses.mit base.meta.license ]; inherit (src.meta) homepage; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/op/opensoundmeter/package.nix b/pkgs/by-name/op/opensoundmeter/package.nix index 9d6d441fec14..98999caa36c9 100644 --- a/pkgs/by-name/op/opensoundmeter/package.nix +++ b/pkgs/by-name/op/opensoundmeter/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Sound measurement application for tuning audio systems in real-time"; homepage = "https://opensoundmeter.com/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "OpenSoundMeter"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/opensp/package.nix b/pkgs/by-name/op/opensp/package.nix index 630a4d334b7f..45f5c89e702f 100644 --- a/pkgs/by-name/op/opensp/package.nix +++ b/pkgs/by-name/op/opensp/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails - meta = with lib; { + meta = { description = "Suite of SGML/XML processing tools"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://openjade.sourceforge.net/"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/op/openspades/package.nix b/pkgs/by-name/op/openspades/package.nix index 0fe5f3581a45..d71d264e5d20 100644 --- a/pkgs/by-name/op/openspades/package.nix +++ b/pkgs/by-name/op/openspades/package.nix @@ -95,13 +95,13 @@ stdenv.mkDerivation rec { NIX_CFLAGS_LINK = "-lopenal"; - meta = with lib; { + meta = { description = "Compatible client of Ace of Spades 0.75"; mainProgram = "openspades"; homepage = "https://github.com/yvt/openspades/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ azahi ]; # never built on aarch64-linux since first introduction in nixpkgs diff --git a/pkgs/by-name/op/openspin/package.nix b/pkgs/by-name/op/openspin/package.nix index 93f18f27bc86..eddd3fa06d89 100644 --- a/pkgs/by-name/op/openspin/package.nix +++ b/pkgs/by-name/op/openspin/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation { mv build/openspin $out/bin/openspin ''; - meta = with lib; { + meta = { description = "Compiler for SPIN/PASM languages for Parallax Propeller MCU"; mainProgram = "openspin"; homepage = "https://github.com/parallaxinc/OpenSpin"; - license = licenses.mit; - maintainers = [ maintainers.redvers ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.redvers ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/op/openswitcher/package.nix b/pkgs/by-name/op/openswitcher/package.nix index d744acbdbb98..941e6a944d31 100644 --- a/pkgs/by-name/op/openswitcher/package.nix +++ b/pkgs/by-name/op/openswitcher/package.nix @@ -73,12 +73,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Blackmagic Design mixer control application"; downloadPage = "https://git.sr.ht/~martijnbraam/pyatem"; homepage = "https://openswitcher.org/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "switcher-control"; }; } diff --git a/pkgs/by-name/op/opentracker/package.nix b/pkgs/by-name/op/opentracker/package.nix index 06a138381228..079f4fbcfd1c 100644 --- a/pkgs/by-name/op/opentracker/package.nix +++ b/pkgs/by-name/op/opentracker/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { bittorrent-integration = nixosTests.bittorrent; }; - meta = with lib; { + meta = { homepage = "https://erdgeist.org/arts/software/opentracker/"; - license = licenses.beerware; - platforms = platforms.linux; + license = lib.licenses.beerware; + platforms = lib.platforms.linux; description = "Bittorrent tracker project which aims for minimal resource usage and is intended to run at your wlan router"; mainProgram = "opentracker"; - maintainers = with maintainers; [ makefu ]; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/by-name/op/opentsdb/package.nix b/pkgs/by-name/op/opentsdb/package.nix index 250566cdb84a..01d1a9f07d32 100644 --- a/pkgs/by-name/op/opentsdb/package.nix +++ b/pkgs/by-name/op/opentsdb/package.nix @@ -350,12 +350,12 @@ stdenv.mkDerivation rec { --set JAVA "${jre}/bin/java" ''; - meta = with lib; { + meta = { description = "Time series database with millisecond precision"; homepage = "http://opentsdb.net"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; platforms = lib.platforms.linux; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # maven dependencies ]; diff --git a/pkgs/by-name/op/opentype-sanitizer/package.nix b/pkgs/by-name/op/opentype-sanitizer/package.nix index afb658d7e757..1590d62f77d0 100644 --- a/pkgs/by-name/op/opentype-sanitizer/package.nix +++ b/pkgs/by-name/op/opentype-sanitizer/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Sanitizing parser for OpenType fonts"; homepage = "https://github.com/khaledhosny/ots"; - license = licenses.bsd3; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ danc86 ]; }; }) diff --git a/pkgs/by-name/op/openutau/package.nix b/pkgs/by-name/op/openutau/package.nix index bfa05887b2aa..f4d23ff32d6e 100644 --- a/pkgs/by-name/op/openutau/package.nix +++ b/pkgs/by-name/op/openutau/package.nix @@ -95,17 +95,17 @@ buildDotnetModule rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Open source singing synthesis platform and UTAU successor"; homepage = "http://www.openutau.com/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource # deps binaryBytecode # some deps and worldline resampler binaryNativeCode ]; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/op/openvas-scanner/package.nix b/pkgs/by-name/op/openvas-scanner/package.nix index 415f5c8ce47c..cf9f78c61252 100644 --- a/pkgs/by-name/op/openvas-scanner/package.nix +++ b/pkgs/by-name/op/openvas-scanner/package.nix @@ -79,13 +79,13 @@ stdenv.mkDerivation rec { "-DOPENVAS_FEED_LOCK_PATH=$out/var/lib/openvas/feed-update.lock" ]; - meta = with lib; { + meta = { description = "Scanner component for Greenbone Community Edition"; homepage = "https://github.com/greenbone/openvas-scanner"; changelog = "https://github.com/greenbone/openvas-scanner/blob/${src.rev}/changelog.toml"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "openvas-scanner"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/op/openvas-smb/package.nix b/pkgs/by-name/op/openvas-smb/package.nix index 9b1d2ec9aca2..138f88f0c02f 100644 --- a/pkgs/by-name/op/openvas-smb/package.nix +++ b/pkgs/by-name/op/openvas-smb/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { cp ${heimdalConfigHeader} include/heim_threads.h ''; - meta = with lib; { + meta = { description = "SMB module for Greenbone Community Edition"; homepage = "https://github.com/greenbone/openvas-smb"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ mi-ael ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mi-ael ]; mainProgram = "wmic"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/openvdb/package.nix b/pkgs/by-name/op/openvdb/package.nix index 14f9a8a11fc1..7bf6cb0984c1 100644 --- a/pkgs/by-name/op/openvdb/package.nix +++ b/pkgs/by-name/op/openvdb/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { --replace \''${OPENVDB_INCLUDEDIR} $dev/include ''; - meta = with lib; { + meta = { description = "Open framework for voxel"; mainProgram = "vdb_print"; homepage = "https://www.openvdb.org"; - maintainers = [ maintainers.guibou ]; - platforms = platforms.unix; - license = licenses.asl20; + maintainers = [ lib.maintainers.guibou ]; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/op/openvino/package.nix b/pkgs/by-name/op/openvino/package.nix index b4714b7d2bb2..ff6e0908808f 100644 --- a/pkgs/by-name/op/openvino/package.nix +++ b/pkgs/by-name/op/openvino/package.nix @@ -186,7 +186,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { changelog = "https://github.com/openvinotoolkit/openvino/releases/tag/${src.tag}"; description = "Open-source toolkit for optimizing and deploying AI inference"; longDescription = '' @@ -197,8 +197,8 @@ stdenv.mkDerivation rec { It supports pre-trained models from the Open Model Zoo, along with 100+ open source and public models in popular formats such as Caffe*, TensorFlow*, MXNet* and ONNX*. ''; homepage = "https://docs.openvinotoolkit.org/"; - license = with licenses; [ asl20 ]; - platforms = platforms.all; + license = with lib.licenses; [ asl20 ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # Cannot find macos sdk }; } diff --git a/pkgs/by-name/op/openvmm/package.nix b/pkgs/by-name/op/openvmm/package.nix index 39293e762e25..d04e9770be6f 100644 --- a/pkgs/by-name/op/openvmm/package.nix +++ b/pkgs/by-name/op/openvmm/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-u0E09yFssd71wUS1BD766ztDImauu90T/jIWOb2v0mE="; - meta = with lib; { + meta = { homepage = "https://github.com/microsoft/openvmm"; description = "Modular, cross-platform Virtual Machine Monitor (VMM), written in Rust"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "openvmm"; - maintainers = with maintainers; [ astro ]; + maintainers = with lib.maintainers; [ astro ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/op/openwith/package.nix b/pkgs/by-name/op/openwith/package.nix index ef5ffa15875f..527fcd2f438f 100644 --- a/pkgs/by-name/op/openwith/package.nix +++ b/pkgs/by-name/op/openwith/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Utility to specify which application bundle should open specific file extensions"; homepage = "https://github.com/jdek/openwith"; - license = licenses.unlicense; - maintainers = with maintainers; [ zowoq ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ zowoq ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/by-name/op/openxr-loader/package.nix b/pkgs/by-name/op/openxr-loader/package.nix index 41a1ba59b4e0..70f72ab41406 100644 --- a/pkgs/by-name/op/openxr-loader/package.nix +++ b/pkgs/by-name/op/openxr-loader/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { mv "$out/lib/libXrApiLayer"* "$layers/lib" ''; - meta = with lib; { + meta = { description = "Khronos OpenXR loader"; homepage = "https://www.khronos.org/openxr"; - platforms = platforms.linux; - license = licenses.asl20; - maintainers = [ maintainers.ralith ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.ralith ]; }; } diff --git a/pkgs/by-name/op/openzone-cursors/package.nix b/pkgs/by-name/op/openzone-cursors/package.nix index 988b2115d4aa..1e06131bfa54 100644 --- a/pkgs/by-name/op/openzone-cursors/package.nix +++ b/pkgs/by-name/op/openzone-cursors/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Clean and sharp X11/Wayland cursor theme"; homepage = "https://www.gnome-look.org/p/999999/"; - license = licenses.mit; - maintainers = with maintainers; [ zaninime ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zaninime ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/openzwave/package.nix b/pkgs/by-name/op/openzwave/package.nix index ef6c038c74bc..1d27e9bf8640 100644 --- a/pkgs/by-name/op/openzwave/package.nix +++ b/pkgs/by-name/op/openzwave/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation { --replace "-Werror" "-Werror -Wno-format" ''; - meta = with lib; { + meta = { description = "C++ library to control Z-Wave Networks via a USB Z-Wave Controller"; homepage = "http://www.openzwave.net/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/opkg-utils/package.nix b/pkgs/by-name/op/opkg-utils/package.nix index 72ee637d98a5..dcc649aa75bf 100644 --- a/pkgs/by-name/op/opkg-utils/package.nix +++ b/pkgs/by-name/op/opkg-utils/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { makeFlagsArray+=(PREFIX="$out") ''; - meta = with lib; { + meta = { description = "Helper scripts for use with the opkg package manager"; homepage = "http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/op/oppai-ng/package.nix b/pkgs/by-name/op/oppai-ng/package.nix index ef4f850f7869..6ffa07b527ec 100644 --- a/pkgs/by-name/op/oppai-ng/package.nix +++ b/pkgs/by-name/op/oppai-ng/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { install -D liboppai.so $out/lib/liboppai.so ''; - meta = with lib; { + meta = { description = "Difficulty and pp calculator for osu!"; homepage = "https://github.com/Francesco149/oppai-ng"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; mainProgram = "oppai"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/op/ops/package.nix b/pkgs/by-name/op/ops/package.nix index 67742993b9c1..873d76c952a5 100644 --- a/pkgs/by-name/op/ops/package.nix +++ b/pkgs/by-name/op/ops/package.nix @@ -28,12 +28,12 @@ buildGoModule rec { "-X github.com/nanovms/ops/lepton.Version=${version}" ]; - meta = with lib; { + meta = { description = "Build and run nanos unikernels"; homepage = "https://github.com/nanovms/ops"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "ops"; }; } diff --git a/pkgs/by-name/op/opshin/package.nix b/pkgs/by-name/op/opshin/package.nix index 932d2c00317c..c1f62ddd8702 100644 --- a/pkgs/by-name/op/opshin/package.nix +++ b/pkgs/by-name/op/opshin/package.nix @@ -39,11 +39,11 @@ python3'.pkgs.buildPythonApplication rec { ordered-set ]; - meta = with lib; { + meta = { description = "Simple pythonic programming language for Smart Contracts on Cardano"; homepage = "https://opshin.dev"; - license = licenses.mit; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aciceri ]; mainProgram = "opshin"; }; } diff --git a/pkgs/by-name/op/optar/package.nix b/pkgs/by-name/op/optar/package.nix index 6f32f0fb7c62..dd38b7a4895c 100644 --- a/pkgs/by-name/op/optar/package.nix +++ b/pkgs/by-name/op/optar/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "OPTical ARchiver - it's a codec for encoding data on paper"; homepage = "http://ronja.twibright.com/optar/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; - platforms = with platforms; linux; # possibly others, but only tested on Linux + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = with lib.platforms; linux; # possibly others, but only tested on Linux }; } diff --git a/pkgs/by-name/op/optipng/package.nix b/pkgs/by-name/op/optipng/package.nix index dddd5cf53254..37b4b0db54cd 100644 --- a/pkgs/by-name/op/optipng/package.nix +++ b/pkgs/by-name/op/optipng/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { else null; - meta = with lib; { + meta = { homepage = "https://optipng.sourceforge.net/"; description = "PNG optimizer"; - license = licenses.zlib; - platforms = platforms.unix; + license = lib.licenses.zlib; + platforms = lib.platforms.unix; mainProgram = "optipng"; }; } diff --git a/pkgs/by-name/op/opusfile/package.nix b/pkgs/by-name/op/opusfile/package.nix index 18960a5c0224..23aad825cf8d 100644 --- a/pkgs/by-name/op/opusfile/package.nix +++ b/pkgs/by-name/op/opusfile/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { ++ lib.optionals stdenv.hostPlatform.isWindows [ ./disable-cert-store.patch ]; configureFlags = [ "--disable-examples" ]; - meta = with lib; { + meta = { description = "High-level API for decoding and seeking in .opus files"; homepage = "https://www.opus-codec.org/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ taeer ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ taeer ]; }; } diff --git a/pkgs/by-name/op/opustags/package.nix b/pkgs/by-name/op/opustags/package.nix index eb1901819b2a..64cd4e9918f2 100644 --- a/pkgs/by-name/op/opustags/package.nix +++ b/pkgs/by-name/op/opustags/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { make check ''; - meta = with lib; { + meta = { homepage = "https://github.com/fmang/opustags"; description = "Ogg Opus tags editor"; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ kmein ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ kmein ]; + license = lib.licenses.bsd3; mainProgram = "opustags"; }; } diff --git a/pkgs/by-name/oq/oq/package.nix b/pkgs/by-name/oq/oq/package.nix index b54098bb3428..7721912ed77f 100644 --- a/pkgs/by-name/oq/oq/package.nix +++ b/pkgs/by-name/oq/oq/package.nix @@ -37,11 +37,11 @@ crystal.buildCrystalPackage rec { --prefix PATH : "${lib.makeBinPath [ jq ]}" ''; - meta = with lib; { + meta = { description = "Performant, and portable jq wrapper"; mainProgram = "oq"; homepage = "https://blacksmoke16.github.io/oq/"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/oq/oqs-provider/package.nix b/pkgs/by-name/oq/oqs-provider/package.nix index e25ae17d80ac..9ac36e32768e 100644 --- a/pkgs/by-name/oq/oqs-provider/package.nix +++ b/pkgs/by-name/oq/oqs-provider/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/open-quantum-safe/oqs-provider"; description = "Open Quantum Safe provider for OpenSSL (3.x)"; - license = licenses.mit; - maintainers = with maintainers; [ rixxc ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rixxc ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/or/oracle-instantclient/package.nix b/pkgs/by-name/or/oracle-instantclient/package.nix index 2274a77b7054..0e8b01560975 100644 --- a/pkgs/by-name/or/oracle-instantclient/package.nix +++ b/pkgs/by-name/or/oracle-instantclient/package.nix @@ -187,22 +187,22 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Oracle instant client libraries and sqlplus CLI"; longDescription = '' Oracle instant client provides access to Oracle databases (OCI, OCCI, Pro*C, ODBC or JDBC). This package includes the sqlplus command line SQL client. ''; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with maintainers; [ dylanmtaylor ]; + maintainers = with lib.maintainers; [ dylanmtaylor ]; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/or/oranchelo-icon-theme/package.nix b/pkgs/by-name/or/oranchelo-icon-theme/package.nix index b3972069b06d..fb396745f57d 100644 --- a/pkgs/by-name/or/oranchelo-icon-theme/package.nix +++ b/pkgs/by-name/or/oranchelo-icon-theme/package.nix @@ -44,11 +44,11 @@ stdenvNoCC.mkDerivation rec { ''; dontCheckForBrokenSymlinks = true; - meta = with lib; { + meta = { description = "Oranchelo icon theme"; homepage = "https://github.com/OrancheloTeam/oranchelo-icon-theme"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ _414owen ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ _414owen ]; }; } diff --git a/pkgs/by-name/or/oranda/package.nix b/pkgs/by-name/or/oranda/package.nix index 43709d15407d..6919413fbfe6 100644 --- a/pkgs/by-name/or/oranda/package.nix +++ b/pkgs/by-name/or/oranda/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { OPENSSL_CONF = ""; }; - meta = with lib; { + meta = { description = "Generate beautiful landing pages for your developer tools"; homepage = "https://github.com/axodotdev/oranda"; changelog = "https://github.com/axodotdev/oranda/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/or/orbitron/package.nix b/pkgs/by-name/or/orbitron/package.nix index 67838b01fecb..944cb98bff98 100644 --- a/pkgs/by-name/or/orbitron/package.nix +++ b/pkgs/by-name/or/orbitron/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.theleagueofmoveabletype.com/orbitron"; downloadPage = "https://www.theleagueofmoveabletype.com/orbitron/download"; description = "Geometric sans-serif for display purposes by Matt McInerney"; @@ -45,8 +45,8 @@ stdenvNoCC.mkDerivation { course Orbitron could also be used on the posters for the movies portraying this inevitable future. ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = with lib.maintainers; [ minijackson ]; diff --git a/pkgs/by-name/or/orc/package.nix b/pkgs/by-name/or/orc/package.nix index f4d6e15bd1b5..ff7b71fbb4a8 100644 --- a/pkgs/by-name/or/orc/package.nix +++ b/pkgs/by-name/or/orc/package.nix @@ -66,17 +66,17 @@ stdenv.mkDerivation (finalAttrs: { qt6-qtmultimedia = qt6.qtmultimedia; }; - meta = with lib; { + meta = { description = "Oil Runtime Compiler"; homepage = "https://gstreamer.freedesktop.org/projects/orc.html"; changelog = "https://gitlab.freedesktop.org/gstreamer/orc/-/blob/${finalAttrs.version}/RELEASE"; # The source code implementing the Marsenne Twister algorithm is licensed # under the 3-clause BSD license. The rest is 2-clause BSD license. - license = with licenses; [ + license = with lib.licenses; [ bsd3 bsd2 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/or/orca-c/package.nix b/pkgs/by-name/or/orca-c/package.nix index 0696a6683fed..46a7576e212f 100644 --- a/pkgs/by-name/or/orca-c/package.nix +++ b/pkgs/by-name/or/orca-c/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Esoteric programming language designed to quickly create procedural sequencers"; homepage = "https://git.sr.ht/~rabbits/orca"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ netcrns ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ netcrns ]; mainProgram = "orca"; }; } diff --git a/pkgs/by-name/or/orca/package.nix b/pkgs/by-name/or/orca/package.nix index 7d0482be0f00..c5d4988f5df5 100644 --- a/pkgs/by-name/or/orca/package.nix +++ b/pkgs/by-name/or/orca/package.nix @@ -113,7 +113,7 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://orca.gnome.org/"; changelog = "https://gitlab.gnome.org/GNOME/orca/-/blob/main/NEWS"; description = "Screen reader"; @@ -128,9 +128,9 @@ python3.pkgs.buildPythonApplication rec { Needs `services.gnome.at-spi2-core.enable = true;` in `configuration.nix`. ''; - maintainers = with maintainers; [ berce ]; - teams = [ teams.gnome ]; - license = licenses.lgpl21; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ berce ]; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/or/orcania/package.nix b/pkgs/by-name/or/orcania/package.nix index c30a72ee16df..978c8ccab151 100644 --- a/pkgs/by-name/or/orcania/package.nix +++ b/pkgs/by-name/or/orcania/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Potluck with different functions for different purposes that can be shared among C programs"; mainProgram = "base64url"; homepage = "https://github.com/babelouest/orcania"; - license = licenses.lgpl21; - maintainers = with maintainers; [ johnazoidberg ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ johnazoidberg ]; }; } diff --git a/pkgs/by-name/or/orchard/package.nix b/pkgs/by-name/or/orchard/package.nix index a9fb90161a85..8e71cfdd1612 100644 --- a/pkgs/by-name/or/orchard/package.nix +++ b/pkgs/by-name/or/orchard/package.nix @@ -50,11 +50,11 @@ buildGoModule rec { --fish <($out/bin/orchard completion fish) ''; - meta = with lib; { + meta = { mainProgram = "orchard"; description = "Orchestrator for running Tart Virtual Machines on a cluster of Apple Silicon devices"; homepage = "https://github.com/cirruslabs/orchard"; - license = licenses.fairsource09; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.fairsource09; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/by-name/or/orchis-theme/package.nix b/pkgs/by-name/or/orchis-theme/package.nix index 5ba9ce8ec43e..9b60565a2cbd 100644 --- a/pkgs/by-name/or/orchis-theme/package.nix +++ b/pkgs/by-name/or/orchis-theme/package.nix @@ -72,11 +72,11 @@ lib.checkListOfEnum "${pname}: theme tweaks" validTweaks tweaks runHook postInstall ''; - meta = with lib; { + meta = { description = "Material Design theme for GNOME/GTK based desktop environments"; homepage = "https://github.com/vinceliuice/Orchis-theme"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.fufexan ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.fufexan ]; }; } diff --git a/pkgs/by-name/or/ord/package.nix b/pkgs/by-name/or/ord/package.nix index 2b51cdd7921c..a04bdfa186ef 100644 --- a/pkgs/by-name/or/ord/package.nix +++ b/pkgs/by-name/or/ord/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { "--skip=subcommand::server::tests::status" # test fails if it built from source tarball ]; - meta = with lib; { + meta = { description = "Index, block explorer, and command-line wallet for Ordinals"; homepage = "https://github.com/ordinals/ord"; changelog = "https://github.com/ordinals/ord/blob/${src.rev}/CHANGELOG.md"; - license = licenses.cc0; - maintainers = with maintainers; [ xrelkd ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ xrelkd ]; mainProgram = "ord"; }; } diff --git a/pkgs/by-name/or/org-stats/package.nix b/pkgs/by-name/or/org-stats/package.nix index fc734f4f6a43..bf2b7b532436 100644 --- a/pkgs/by-name/or/org-stats/package.nix +++ b/pkgs/by-name/or/org-stats/package.nix @@ -55,11 +55,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Get the contributor stats summary from all repos of any given organization"; homepage = "https://github.com/caarlos0/org-stats"; changelog = "https://github.com/caarlos0/org-stats/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "org-stats"; }; diff --git a/pkgs/by-name/or/orocos-kdl/package.nix b/pkgs/by-name/or/orocos-kdl/package.nix index 0e3d40810d9e..348a8ffd49a7 100644 --- a/pkgs/by-name/or/orocos-kdl/package.nix +++ b/pkgs/by-name/or/orocos-kdl/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; propagatedBuildInputs = [ eigen ]; - meta = with lib; { + meta = { description = "Kinematics and Dynamics Library"; homepage = "https://www.orocos.org/kdl.html"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ lopsided98 ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ lopsided98 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/or/ory/package.nix b/pkgs/by-name/or/ory/package.nix index 45c7eddd418c..486ca0cb60cb 100644 --- a/pkgs/by-name/or/ory/package.nix +++ b/pkgs/by-name/or/ory/package.nix @@ -41,12 +41,12 @@ buildGoModule rec { --zsh <($out/bin/ory completion zsh) ''; - meta = with lib; { + meta = { description = "CLI for Ory"; mainProgram = "ory"; homepage = "https://www.ory.sh/cli"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ luleyleo nicolas-goudry ]; diff --git a/pkgs/by-name/or/orz/package.nix b/pkgs/by-name/or/orz/package.nix index 365ea3f22b91..ed297c311021 100644 --- a/pkgs/by-name/or/orz/package.nix +++ b/pkgs/by-name/or/orz/package.nix @@ -35,10 +35,10 @@ rustPlatform.buildRustPackage { mv $out/lib "$lib" ''; - meta = with lib; { + meta = { description = "High performance, general purpose data compressor written in rust"; homepage = "https://github.com/richox/orz"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "orz"; }; diff --git a/pkgs/by-name/os/os-prober/package.nix b/pkgs/by-name/os/os-prober/package.nix index 0b539d98ac97..eed51825249e 100644 --- a/pkgs/by-name/os/os-prober/package.nix +++ b/pkgs/by-name/os/os-prober/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { passthru.tests = { os-prober = nixosTests.os-prober; }; - meta = with lib; { + meta = { description = "Utility to detect other OSs on a set of drives"; homepage = "http://packages.debian.org/source/sid/os-prober"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "os-prober"; - maintainers = with maintainers; [ symphorien ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ symphorien ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/os/osc-cli/package.nix b/pkgs/by-name/os/osc-cli/package.nix index 3a024b86657c..c0289204ebf3 100644 --- a/pkgs/by-name/os/osc-cli/package.nix +++ b/pkgs/by-name/os/osc-cli/package.nix @@ -35,11 +35,11 @@ python3.pkgs.buildPythonApplication rec { # Skipping tests as they require working access and secret keys doCheck = false; - meta = with lib; { + meta = { description = "Official Outscale CLI providing connectors to Outscale API"; homepage = "https://github.com/outscale/osc-cli"; - license = licenses.bsd3; - maintainers = with maintainers; [ nicolas-goudry ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nicolas-goudry ]; mainProgram = "osc-cli"; }; } diff --git a/pkgs/by-name/os/oscar/package.nix b/pkgs/by-name/os/oscar/package.nix index 9beb9e5ca3aa..f3bfccc61bf6 100644 --- a/pkgs/by-name/os/oscar/package.nix +++ b/pkgs/by-name/os/oscar/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { homepage = "https://www.sleepfiles.com/OSCAR/"; description = "Software for reviewing and exploring data produced by CPAP and related machines used in the treatment of sleep apnea"; mainProgram = "OSCAR"; - license = licenses.gpl3Only; - maintainers = [ maintainers.roconnor ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.roconnor ]; # Someone needs to create a suitable installPhase for Darwin and Windows. # See https://gitlab.com/pholy/OSCAR-code/-/tree/master/Building. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/os/oscclip/package.nix b/pkgs/by-name/os/oscclip/package.nix index 349079d35329..64f738d2e929 100644 --- a/pkgs/by-name/os/oscclip/package.nix +++ b/pkgs/by-name/os/oscclip/package.nix @@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec { nativeBuildInputs = with python3Packages; [ poetry-core ]; - meta = with lib; { + meta = { description = "Program that allows to copy/paste from a terminal using osc-52 control sequences"; longDescription = '' oscclip provides two commands: osc-copy and osc-paste. These commands allow to interact with the clipboard through the terminal directly. @@ -27,8 +27,8 @@ python3Packages.buildPythonApplication rec { ''; homepage = "https://github.com/rumpelsepp/oscclip"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ rumpelsepp traxys ]; diff --git a/pkgs/by-name/os/osdlyrics/package.nix b/pkgs/by-name/os/osdlyrics/package.nix index 58a5dddd9127..5a2f11ccbd34 100644 --- a/pkgs/by-name/os/osdlyrics/package.nix +++ b/pkgs/by-name/os/osdlyrics/package.nix @@ -86,11 +86,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Standalone lyrics fetcher/displayer"; homepage = "https://github.com/osdlyrics/osdlyrics"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pedrohlc ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pedrohlc ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/os/oshka/package.nix b/pkgs/by-name/os/oshka/package.nix index 58c7c2bc4e5d..1764e8e4618d 100644 --- a/pkgs/by-name/os/oshka/package.nix +++ b/pkgs/by-name/os/oshka/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { # Tests requires a running Docker instance doCheck = false; - meta = with lib; { + meta = { description = "Tool for extracting nested CI/CD supply chains and executing commands"; mainProgram = "oshka"; homepage = "https://github.com/k1LoW/oshka"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/os/osi/package.nix b/pkgs/by-name/os/osi/package.nix index 0bb2d186f3bd..f542179365ca 100644 --- a/pkgs/by-name/os/osi/package.nix +++ b/pkgs/by-name/os/osi/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { passthru = { inherit withGurobi withCplex; }; - meta = with lib; { + meta = { description = "Abstract base class to a generic linear programming (LP) solver"; homepage = "https://github.com/coin-or/Osi"; - license = licenses.epl20; - platforms = platforms.unix; + license = lib.licenses.epl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/os/osmctools/package.nix b/pkgs/by-name/os/osmctools/package.nix index 0c1971436af3..c40175e388ae 100644 --- a/pkgs/by-name/os/osmctools/package.nix +++ b/pkgs/by-name/os/osmctools/package.nix @@ -20,15 +20,15 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Command line tools for transforming Open Street Map files"; homepage = [ "https://wiki.openstreetmap.org/wiki/osmconvert" "https://wiki.openstreetmap.org/wiki/osmfilter" "https://wiki.openstreetmap.org/wiki/osmupdate" ]; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; - license = licenses.agpl3Only; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; + license = lib.licenses.agpl3Only; }; } diff --git a/pkgs/by-name/os/osmid/package.nix b/pkgs/by-name/os/osmid/package.nix index 8cd51e0149fe..a8b84b10c6cd 100644 --- a/pkgs/by-name/os/osmid/package.nix +++ b/pkgs/by-name/os/osmid/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/llloret/osmid"; description = "Lightweight, portable, easy to use tool to convert MIDI to OSC and OSC to MIDI"; - license = licenses.mit; - maintainers = with maintainers; [ c0deaddict ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ c0deaddict ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo/package.nix b/pkgs/by-name/os/osmo/package.nix index 51ede958a4c4..498a6093b832 100644 --- a/pkgs/by-name/os/osmo/package.nix +++ b/pkgs/by-name/os/osmo/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { libgringotts ]; - meta = with lib; { + meta = { description = "Handy personal organizer"; mainProgram = "osmo"; homepage = "https://clayo.org/osmo/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/os/osmtogeojson/package.nix b/pkgs/by-name/os/osmtogeojson/package.nix index 34a80a73b80b..9939dbf87974 100644 --- a/pkgs/by-name/os/osmtogeojson/package.nix +++ b/pkgs/by-name/os/osmtogeojson/package.nix @@ -22,11 +22,11 @@ buildNpmPackage rec { npmDepsHash = "sha256-stAVuyjuRQthQ3jQdekmZYjeau9l0GzEEMkV1q5fT2k="; dontNpmBuild = true; - meta = with lib; { + meta = { description = "Converts OSM data to GeoJSON"; homepage = "https://tyrasd.github.io/osmtogeojson/"; - maintainers = with maintainers; [ thibautmarty ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ thibautmarty ]; + license = lib.licenses.mit; mainProgram = "osmtogeojson"; }; } diff --git a/pkgs/by-name/os/ospd-openvas/package.nix b/pkgs/by-name/os/ospd-openvas/package.nix index 62a0e16fc3fe..955fe83b8f60 100644 --- a/pkgs/by-name/os/ospd-openvas/package.nix +++ b/pkgs/by-name/os/ospd-openvas/package.nix @@ -42,12 +42,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "ospd_openvas" ]; - meta = with lib; { + meta = { description = "OSP server implementation to allow GVM to remotely control an OpenVAS Scanner"; homepage = "https://github.com/greenbone/ospd-openvas"; changelog = "https://github.com/greenbone/ospd-openvas/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/os/osquery/package.nix b/pkgs/by-name/os/osquery/package.nix index bdc8070d0c3f..3690dd369d14 100644 --- a/pkgs/by-name/os/osquery/package.nix +++ b/pkgs/by-name/os/osquery/package.nix @@ -92,16 +92,16 @@ stdenvNoCC.mkDerivation rec { } (builtins.readFile ./update.py); }; - meta = with lib; { + meta = { description = "SQL powered operating system instrumentation, monitoring, and analytics"; homepage = "https://osquery.io"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only asl20 ]; - platforms = platforms.linux; - sourceProvenance = with sourceTypes; [ fromSource ]; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + maintainers = with lib.maintainers; [ znewman01 lewo squalus diff --git a/pkgs/by-name/os/osquery/toolchain-bin.nix b/pkgs/by-name/os/osquery/toolchain-bin.nix index 3d05ee9f1e2f..e96eab513288 100644 --- a/pkgs/by-name/os/osquery/toolchain-bin.nix +++ b/pkgs/by-name/os/osquery/toolchain-bin.nix @@ -36,18 +36,18 @@ stdenv.mkDerivation { cp -r * $out ''; - meta = with lib; { + meta = { description = "LLVM-based toolchain for Linux designed to build a portable osquery"; homepage = "https://github.com/osquery/osquery-toolchain"; platforms = [ "x86_64-linux" "aarch64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = with licenses; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with lib.licenses; [ gpl2Only asl20 ]; - maintainers = with maintainers; [ squalus ]; + maintainers = with lib.maintainers; [ squalus ]; }; } diff --git a/pkgs/by-name/os/ossia-score/package.nix b/pkgs/by-name/os/ossia-score/package.nix index 5d2ee5b936a5..dc02b35ef0a7 100644 --- a/pkgs/by-name/os/ossia-score/package.nix +++ b/pkgs/by-name/os/ossia-score/package.nix @@ -151,7 +151,7 @@ clangStdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://ossia.io/score/about.html"; description = "Sequencer for audio-visual artists"; longDescription = '' @@ -159,9 +159,9 @@ clangStdenv.mkDerivation (finalAttrs: { the creation of interactive shows, museum installations, intermedia digital artworks, interactive music and more in an intuitive user interface. ''; - platforms = platforms.linux; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jcelerier minijackson ]; diff --git a/pkgs/by-name/os/osslsigncode/package.nix b/pkgs/by-name/os/osslsigncode/package.nix index 45644d0e7dc3..3cc7f003080a 100644 --- a/pkgs/by-name/os/osslsigncode/package.nix +++ b/pkgs/by-name/os/osslsigncode/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { homepage = "https://github.com/mtrojnar/osslsigncode"; description = "OpenSSL based Authenticode signing for PE/MSI/Java CAB files"; mainProgram = "osslsigncode"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mmahut prusnak ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/os/ostree-rs-ext/package.nix b/pkgs/by-name/os/ostree-rs-ext/package.nix index 59f987917acc..1e0eb299f688 100644 --- a/pkgs/by-name/os/ostree-rs-ext/package.nix +++ b/pkgs/by-name/os/ostree-rs-ext/package.nix @@ -76,14 +76,14 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { description = "Rust library with higher level APIs on top of the core ostree API"; homepage = "https://github.com/ostreedev/ostree-rs-ext"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ nickcao ]; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "ostree-ext-cli"; }; } diff --git a/pkgs/by-name/os/ostree/package.nix b/pkgs/by-name/os/ostree/package.nix index fb9d75d90624..a676e445b751 100644 --- a/pkgs/by-name/os/ostree/package.nix +++ b/pkgs/by-name/os/ostree/package.nix @@ -173,11 +173,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Git for operating system binaries"; homepage = "https://ostreedev.github.io/ostree/"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/os/osx-cpu-temp/package.nix b/pkgs/by-name/os/osx-cpu-temp/package.nix index ba6deb709230..abc925244af4 100644 --- a/pkgs/by-name/os/osx-cpu-temp/package.nix +++ b/pkgs/by-name/os/osx-cpu-temp/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { cp osx-cpu-temp $out/bin ''; - meta = with lib; { + meta = { description = "Outputs current CPU temperature for OSX"; homepage = "https://github.com/lavoiesl/osx-cpu-temp"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ virusdave ]; - platforms = platforms.darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ virusdave ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/os/osxsnarf/package.nix b/pkgs/by-name/os/osxsnarf/package.nix index 91ff370b4b9a..71861fe0d369 100644 --- a/pkgs/by-name/os/osxsnarf/package.nix +++ b/pkgs/by-name/os/osxsnarf/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { ]; makeFlags = [ "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Plan 9-inspired way to share your OS X clipboard"; homepage = "https://github.com/eraserhd/osxsnarf"; - license = licenses.unlicense; - platforms = platforms.darwin; - maintainers = [ maintainers.eraserhd ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.darwin; + maintainers = [ lib.maintainers.eraserhd ]; }; } diff --git a/pkgs/by-name/ot/otf2bdf/package.nix b/pkgs/by-name/ot/otf2bdf/package.nix index 110d81383845..b4734b7ed334 100644 --- a/pkgs/by-name/ot/otf2bdf/package.nix +++ b/pkgs/by-name/ot/otf2bdf/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { cp otf2bdf.man $out/share/man/man1/otf2bdf.1 ''; - meta = with lib; { + meta = { #homepage = "http://sofia.nmsu.edu/~mleisher/Software/otf2bdf/"; # timeout homepage = "https://github.com/jirutka/otf2bdf"; description = "OpenType to BDF font converter"; - license = licenses.mit0; - platforms = platforms.all; - maintainers = with maintainers; [ hzeller ]; + license = lib.licenses.mit0; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ hzeller ]; mainProgram = "otf2bdf"; }; } diff --git a/pkgs/by-name/ot/otfcc/package.nix b/pkgs/by-name/ot/otfcc/package.nix index a5a8478867b8..4ff438888896 100644 --- a/pkgs/by-name/ot/otfcc/package.nix +++ b/pkgs/by-name/ot/otfcc/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Optimized OpenType builder and inspector"; homepage = "https://github.com/caryll/otfcc"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ttuegel ]; # Build fails on all platforms with # > configure flags: gmake # > ** Warning: action 'xcode4' sets 'os' field, which is deprecated, use 'targetos' instead. diff --git a/pkgs/by-name/ot/otpauth/package.nix b/pkgs/by-name/ot/otpauth/package.nix index f0a797d8b703..40258fc6a579 100644 --- a/pkgs/by-name/ot/otpauth/package.nix +++ b/pkgs/by-name/ot/otpauth/package.nix @@ -17,11 +17,11 @@ buildGo124Module rec { vendorHash = "sha256-Vx+nSSXidSJdEDoI2Bzx+5CQstNmW9dIOg8jEpAaguQ="; - meta = with lib; { + meta = { description = "Google Authenticator migration decoder"; mainProgram = "otpauth"; homepage = "https://github.com/dim13/otpauth"; - license = licenses.isc; - maintainers = with maintainers; [ ereslibre ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ereslibre ]; }; } diff --git a/pkgs/by-name/ou/oui/package.nix b/pkgs/by-name/ou/oui/package.nix index f22095f4e54b..a2741a1be1a2 100644 --- a/pkgs/by-name/ou/oui/package.nix +++ b/pkgs/by-name/ou/oui/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-TLVw4tnfvgK2h/Xj5LNNjDG4WQ83Bw8yBhZc16Tjmws="; - meta = with lib; { + meta = { description = "MAC Address CLI Toolkit"; homepage = "https://github.com/thatmattlove/oui"; - license = with licenses; [ bsd3 ]; - teams = [ teams.wdz ]; + license = with lib.licenses; [ bsd3 ]; + teams = [ lib.teams.wdz ]; mainProgram = "oui"; }; } diff --git a/pkgs/by-name/ou/out-of-tree/package.nix b/pkgs/by-name/ou/out-of-tree/package.nix index d725ec26c0b5..9d4b26103c8c 100644 --- a/pkgs/by-name/ou/out-of-tree/package.nix +++ b/pkgs/by-name/ou/out-of-tree/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { }" ''; - meta = with lib; { + meta = { description = "Kernel {module, exploit} development tool"; mainProgram = "out-of-tree"; homepage = "https://out-of-tree.io"; - maintainers = [ maintainers.dump_stack ]; - license = licenses.agpl3Plus; + maintainers = [ lib.maintainers.dump_stack ]; + license = lib.licenses.agpl3Plus; }; } diff --git a/pkgs/by-name/ou/outils/package.nix b/pkgs/by-name/ou/outils/package.nix index 416bfc9abac9..e933be0c1e78 100644 --- a/pkgs/by-name/ou/outils/package.nix +++ b/pkgs/by-name/ou/outils/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/leahneukirchen/outils"; description = "Port of OpenBSD-exclusive tools such as `calendar`, `vis`, and `signify`"; - license = with licenses; [ + license = with lib.licenses; [ beerware bsd2 bsd3 @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { mit publicDomain ]; - platforms = platforms.linux; - maintainers = with maintainers; [ somasis ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ somasis ]; }; } diff --git a/pkgs/by-name/ov/oven-media-engine/package.nix b/pkgs/by-name/ov/oven-media-engine/package.nix index 68ee14aa4a26..359ac998a8d9 100644 --- a/pkgs/by-name/ov/oven-media-engine/package.nix +++ b/pkgs/by-name/ov/oven-media-engine/package.nix @@ -83,14 +83,14 @@ stdenv.mkDerivation rec { install -Dm0644 ../misc/conf_examples/Logger.xml $out/share/examples/edge_conf/Logger.xml ''; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = "Open-source streaming video service with sub-second latency"; mainProgram = "OvenMediaEngine"; homepage = "https://ovenmediaengine.com"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ lukegb ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ lukegb ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ov/overcommit/package.nix b/pkgs/by-name/ov/overcommit/package.nix index 3e9b9915bb16..1813bceac799 100644 --- a/pkgs/by-name/ov/overcommit/package.nix +++ b/pkgs/by-name/ov/overcommit/package.nix @@ -27,15 +27,15 @@ bundlerApp { updateScript = bundlerUpdateScript "overcommit"; }; - meta = with lib; { + meta = { description = "Tool to manage and configure Git hooks"; homepage = "https://github.com/sds/overcommit"; changelog = "https://github.com/sds/overcommit/blob/main/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "overcommit"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ anthonyroussel ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ov/overmind/package.nix b/pkgs/by-name/ov/overmind/package.nix index 6325a76239b3..32609cb0f197 100644 --- a/pkgs/by-name/ov/overmind/package.nix +++ b/pkgs/by-name/ov/overmind/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { vendorHash = "sha256-XhF4oizOZ6g0351Q71Wp9IA3aFpocC5xGovDefIoL78="; - meta = with lib; { + meta = { homepage = "https://github.com/DarthSim/overmind"; description = "Process manager for Procfile-based applications and tmux"; mainProgram = "overmind"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ov/overpass/package.nix b/pkgs/by-name/ov/overpass/package.nix index b0eabb5f7b14..cb7eae774d0c 100644 --- a/pkgs/by-name/ov/overpass/package.nix +++ b/pkgs/by-name/ov/overpass/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://overpassfont.org/"; description = "Font heavily inspired by Highway Gothic"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/ov/ovh-ttyrec/package.nix b/pkgs/by-name/ov/ovh-ttyrec/package.nix index a639a90898eb..a1dfb1d7f869 100644 --- a/pkgs/by-name/ov/ovh-ttyrec/package.nix +++ b/pkgs/by-name/ov/ovh-ttyrec/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { cp docs/*.1 $out/man ''; - meta = with lib; { + meta = { homepage = "https://github.com/ovh/ovh-ttyrec/"; description = "Terminal interaction recorder and player"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ chaduffy zimbatm ]; diff --git a/pkgs/by-name/ow/owamp/package.nix b/pkgs/by-name/ow/owamp/package.nix index be7cd034606f..7027b3929a84 100644 --- a/pkgs/by-name/ow/owamp/package.nix +++ b/pkgs/by-name/ow/owamp/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { ./bootstrap ''; - meta = with lib; { + meta = { homepage = "http://software.internet2.edu/owamp/"; description = "Tool for performing one-way active measurements"; - platforms = platforms.linux; - maintainers = [ maintainers.teto ]; - license = licenses.asl20; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.teto ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/ow/owl-compositor/package.nix b/pkgs/by-name/ow/owl-compositor/package.nix index 06937ead954f..ad689f032665 100644 --- a/pkgs/by-name/ow/owl-compositor/package.nix +++ b/pkgs/by-name/ow/owl-compositor/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Portable Wayland compositor in Objective-C"; homepage = "https://github.com/owl-compositor/owl"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; mainProgram = "Owl"; }; } diff --git a/pkgs/by-name/ow/owl-lisp/package.nix b/pkgs/by-name/ow/owl-lisp/package.nix index 1953285e83ea..f1bb3a12d47f 100644 --- a/pkgs/by-name/ow/owl-lisp/package.nix +++ b/pkgs/by-name/ow/owl-lisp/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { # tests are run as part of the compilation process doCheck = false; - meta = with lib; { + meta = { description = "Functional Scheme for world domination"; homepage = "https://gitlab.com/owl-lisp/owl"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ow/owl/package.nix b/pkgs/by-name/ow/owl/package.nix index 90f13b54b42b..25d0e251ae5a 100644 --- a/pkgs/by-name/ow/owl/package.nix +++ b/pkgs/by-name/ow/owl/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 2.6.4)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Open Apple Wireless Direct Link (AWDL) implementation written in C"; homepage = "https://owlink.org/"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "owl"; diff --git a/pkgs/by-name/ow/owncast/package.nix b/pkgs/by-name/ow/owncast/package.nix index f630fc8e1e3d..458dbc950d5f 100644 --- a/pkgs/by-name/ow/owncast/package.nix +++ b/pkgs/by-name/ow/owncast/package.nix @@ -51,12 +51,12 @@ buildGoModule { passthru.tests.owncast = nixosTests.owncast; - meta = with lib; { + meta = { description = "Self-hosted video live streaming solution"; homepage = "https://owncast.online"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ flexiondotorg MayNiklas ]; diff --git a/pkgs/by-name/ow/owntracks-recorder/package.nix b/pkgs/by-name/ow/owntracks-recorder/package.nix index 4882f52124bc..d5f68916d6b4 100644 --- a/pkgs/by-name/ow/owntracks-recorder/package.nix +++ b/pkgs/by-name/ow/owntracks-recorder/package.nix @@ -74,13 +74,13 @@ stdenv.mkDerivation (finalAttrs: { version = finalAttrs.version; }; - meta = with lib; { + meta = { description = "Store and access data published by OwnTracks apps"; homepage = "https://github.com/owntracks/recorder"; changelog = "https://github.com/owntracks/recorder/blob/master/Changelog"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ gaelreyrol ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "ot-recorder"; }; }) diff --git a/pkgs/by-name/ow/owofetch/package.nix b/pkgs/by-name/ow/owofetch/package.nix index cd406d1b5c85..c7f44358c8e4 100644 --- a/pkgs/by-name/ow/owofetch/package.nix +++ b/pkgs/by-name/ow/owofetch/package.nix @@ -19,12 +19,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-0ON1h8+ruLOvBR7Q/hOIW6j+BjfPAAuYA2wrUYj59Ow="; - meta = with lib; { + meta = { description = "Alternative to *fetch, uwuifies all stats"; homepage = "https://github.com/netthier/owofetch-rs"; - license = licenses.gpl3Only; - platforms = platforms.x86_64; - maintainers = with maintainers; [ nullishamy ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.x86_64; + maintainers = with lib.maintainers; [ nullishamy ]; mainProgram = "owofetch"; }; } diff --git a/pkgs/by-name/ox/oxtools/package.nix b/pkgs/by-name/ox/oxtools/package.nix index 171640eaf83c..1073b43b24ce 100644 --- a/pkgs/by-name/ox/oxtools/package.nix +++ b/pkgs/by-name/ox/oxtools/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Utilities for analyzing application performance"; homepage = "https://0x.tools"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ astro ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/ox/oxygenfonts/package.nix b/pkgs/by-name/ox/oxygenfonts/package.nix index 8d162c7fcb5b..584d1b8e1c86 100644 --- a/pkgs/by-name/ox/oxygenfonts/package.nix +++ b/pkgs/by-name/ox/oxygenfonts/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Desktop/gui font for integrated use with the KDE desktop"; longDescription = '' Oxygen Font is a font family originally aimed as a desktop/gui @@ -51,7 +51,7 @@ stdenvNoCC.mkDerivation { See: http://sansoxygen.com/ ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/p1/p11-kit/package.nix b/pkgs/by-name/p1/p11-kit/package.nix index bbdf20b66a93..44e53de8e77d 100644 --- a/pkgs/by-name/p1/p11-kit/package.nix +++ b/pkgs/by-name/p1/p11-kit/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { description = "Library for loading and sharing PKCS#11 modules"; longDescription = '' Provides a way to load and enumerate PKCS#11 modules. @@ -94,12 +94,12 @@ stdenv.mkDerivation rec { "https://github.com/p11-glue/p11-kit/raw/${version}/NEWS" "https://github.com/p11-glue/p11-kit/releases/tag/${version}" ]; - platforms = platforms.all; + platforms = lib.platforms.all; badPlatforms = [ # https://github.com/p11-glue/p11-kit/issues/355#issuecomment-778777141 lib.systems.inspect.platformPatterns.isStatic ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "p11-kit"; }; } diff --git a/pkgs/by-name/p3/p3x-onenote/package.nix b/pkgs/by-name/p3/p3x-onenote/package.nix index a04a4b49a45c..6138e10fb739 100644 --- a/pkgs/by-name/p3/p3x-onenote/package.nix +++ b/pkgs/by-name/p3/p3x-onenote/package.nix @@ -50,11 +50,11 @@ appimageTools.wrapType2 { --delete-original $out/p3x-onenote.desktop ''; - meta = with lib; { + meta = { homepage = "https://github.com/patrikx3/onenote"; description = "Linux Electron Onenote - A Linux compatible version of OneNote"; - license = licenses.mit; - maintainers = with maintainers; [ tiagolobocastro ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tiagolobocastro ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/p4/p4/package.nix b/pkgs/by-name/p4/p4/package.nix index 90aaf12731d0..186fd7dfcaec 100644 --- a/pkgs/by-name/p4/p4/package.nix +++ b/pkgs/by-name/p4/p4/package.nix @@ -125,13 +125,13 @@ stdenv.mkDerivation (finalAttrs: { command = "p4 -V"; }; - meta = with lib; { + meta = { description = "Perforce Helix Core command-line client and APIs"; homepage = "https://www.perforce.com"; - license = licenses.bsd2; + license = lib.licenses.bsd2; mainProgram = "p4"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ corngood impl ]; diff --git a/pkgs/by-name/p4/p4d/package.nix b/pkgs/by-name/p4/p4d/package.nix index 47107d0e4ec9..27d1fa46381c 100644 --- a/pkgs/by-name/p4/p4d/package.nix +++ b/pkgs/by-name/p4/p4d/package.nix @@ -38,14 +38,14 @@ stdenv.mkDerivation { install -D -t $out/doc/p4d -m 0644 *.txt ''; - meta = with lib; { + meta = { description = "Perforce Helix Core Server"; homepage = "https://www.perforce.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; mainProgram = "p4d"; platforms = builtins.attrNames srcs; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ corngood impl ]; diff --git a/pkgs/by-name/p7/p7zip/package.nix b/pkgs/by-name/p7/p7zip/package.nix index 0c7578b441df..878badaf8445 100644 --- a/pkgs/by-name/p7/p7zip/package.nix +++ b/pkgs/by-name/p7/p7zip/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation (finalAttrs: { setupHook = ./setup-hook.sh; passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { homepage = "https://github.com/p7zip-project/p7zip"; description = "New p7zip fork with additional codecs and improvements (forked from https://sourceforge.net/projects/p7zip/)"; license = - with licenses; + with lib.licenses; # p7zip code is largely lgpl2Plus # CPP/7zip/Compress/LzfseDecoder.cpp is bsd3 [ @@ -88,11 +88,11 @@ stdenv.mkDerivation (finalAttrs: { # and CPP/7zip/Compress/Rar* are unfree with the unRAR license restriction # the unRAR compression code is disabled by default lib.optionals enableUnfree [ unfree ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin jk ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "7z"; }; }) diff --git a/pkgs/by-name/p9/p910nd/package.nix b/pkgs/by-name/p9/p910nd/package.nix index f4a329b17624..87f9b613d002 100644 --- a/pkgs/by-name/p9/p910nd/package.nix +++ b/pkgs/by-name/p9/p910nd/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Small printer daemon passing jobs directly to the printer"; longDescription = '' p910nd is a small printer daemon intended for diskless platforms that @@ -48,9 +48,9 @@ stdenv.mkDerivation rec { this protocol and the syntax is lp=remotehost%9100 in /etc/printcap. ''; homepage = "https://github.com/kenyapcomau/p910nd"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "p910nd"; }; } diff --git a/pkgs/by-name/pa/pa-notify/package.nix b/pkgs/by-name/pa/pa-notify/package.nix index 2383b1a7eade..1ec4996f8bfd 100644 --- a/pkgs/by-name/pa/pa-notify/package.nix +++ b/pkgs/by-name/pa/pa-notify/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { libpulseaudio ]; - meta = with lib; { + meta = { homepage = "https://github.com/ikrivosheev/pa-notify"; description = "PulseAudio or PipeWire volume notification"; - license = licenses.mit; - maintainers = with maintainers; [ juancmuller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ juancmuller ]; mainProgram = "pa-notify"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/pa/pa_applet/package.nix b/pkgs/by-name/pa/pa_applet/package.nix index 2a73119b80e0..d6c801cee1fe 100644 --- a/pkgs/by-name/pa/pa_applet/package.nix +++ b/pkgs/by-name/pa/pa_applet/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { postInstall = ""; - meta = with lib; { + meta = { description = ""; mainProgram = "pa-applet"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pacemaker/package.nix b/pkgs/by-name/pa/pacemaker/package.nix index bbeee37f8d28..4e1f168424da 100644 --- a/pkgs/by-name/pa/pacemaker/package.nix +++ b/pkgs/by-name/pa/pacemaker/package.nix @@ -97,12 +97,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) pacemaker; }; - meta = with lib; { + meta = { homepage = "https://clusterlabs.org/pacemaker/"; description = "Open source, high availability resource manager suitable for both small and large clusters"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ryantm astro ]; diff --git a/pkgs/by-name/pa/pachyderm/package.nix b/pkgs/by-name/pa/pachyderm/package.nix index bb9fe0ac5c56..dcd00946b200 100644 --- a/pkgs/by-name/pa/pachyderm/package.nix +++ b/pkgs/by-name/pa/pachyderm/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X github.com/pachyderm/pachyderm/v${lib.versions.major version}/src/version.AppVersion=${version}" ]; - meta = with lib; { + meta = { description = "Containerized Data Analytics"; homepage = "https://www.pachyderm.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ offline ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline ]; mainProgram = "pachctl"; }; } diff --git a/pkgs/by-name/pa/package-project-cmake/package.nix b/pkgs/by-name/pa/package-project-cmake/package.nix index fa97e0e7f48d..6d54a1773c77 100644 --- a/pkgs/by-name/pa/package-project-cmake/package.nix +++ b/pkgs/by-name/pa/package-project-cmake/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/TheLartians/PackageProject.cmake"; description = "CMake script for packaging C/C++ projects"; longDescription = '' @@ -39,8 +39,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { to get things working. This small script should simplify the CMake packaging process into a single, easy-to-use command. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/pa/packcc/package.nix b/pkgs/by-name/pa/packcc/package.nix index 3693a9ef57f4..72727a6468be 100644 --- a/pkgs/by-name/pa/packcc/package.nix +++ b/pkgs/by-name/pa/packcc/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Parser generator for C"; longDescription = '' PackCC is a parser generator for C. Its main features are as follows: @@ -71,9 +71,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://github.com/arithy/packcc"; changelog = "https://github.com/arithy/packcc/releases/tag/${finalAttrs.src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; mainProgram = "packcc"; }; }) diff --git a/pkgs/by-name/pa/packet-sd/package.nix b/pkgs/by-name/pa/packet-sd/package.nix index c8b98687cf2b..71a7df166255 100644 --- a/pkgs/by-name/pa/packet-sd/package.nix +++ b/pkgs/by-name/pa/packet-sd/package.nix @@ -40,10 +40,10 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Prometheus service discovery for Equinix Metal"; homepage = "https://github.com/packethost/prometheus-packet-sd"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "prometheus-packet-sd"; # The last successful Darwin Hydra build was in 2024 diff --git a/pkgs/by-name/pa/packr/package.nix b/pkgs/by-name/pa/packr/package.nix index 1a2ea2b74a9e..13515c290387 100644 --- a/pkgs/by-name/pa/packr/package.nix +++ b/pkgs/by-name/pa/packr/package.nix @@ -26,11 +26,11 @@ let doCheck = false; - meta = with lib; { + meta = { description = "Simple and easy way to embed static files into Go binaries"; homepage = "https://github.com/gobuffalo/packr"; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmahut ]; # golang.org/x/sys needs to be updated due to: # @@ -58,11 +58,11 @@ let doCheck = false; - meta = with lib; { + meta = { description = "Simple and easy way to embed static files into Go binaries"; homepage = "https://github.com/gobuffalo/packr"; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmahut ]; # golang.org/x/sys needs to be updated due to: # diff --git a/pkgs/by-name/pa/packwiz/package.nix b/pkgs/by-name/pa/packwiz/package.nix index 21aaff58a189..d2fbccbdc3e7 100644 --- a/pkgs/by-name/pa/packwiz/package.nix +++ b/pkgs/by-name/pa/packwiz/package.nix @@ -32,11 +32,11 @@ buildGoModule { --zsh <($out/bin/packwiz completion zsh) ''; - meta = with lib; { + meta = { description = "Command line tool for editing and distributing Minecraft modpacks, using a git-friendly TOML format"; homepage = "https://packwiz.infra.link/"; - license = licenses.mit; - maintainers = with maintainers; [ infinidoge ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ infinidoge ]; mainProgram = "packwiz"; }; } diff --git a/pkgs/by-name/pa/pacman/package.nix b/pkgs/by-name/pa/pacman/package.nix index c81e409a94d4..e73805e5e1a9 100644 --- a/pkgs/by-name/pa/pacman/package.nix +++ b/pkgs/by-name/pa/pacman/package.nix @@ -129,13 +129,13 @@ stdenv.mkDerivation (final: { } ''; - meta = with lib; { + meta = { description = "Simple library-based package manager"; homepage = "https://archlinux.org/pacman/"; changelog = "https://gitlab.archlinux.org/pacman/pacman/-/raw/v${final.version}/NEWS"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "pacman"; - maintainers = with maintainers; [ samlukeyes123 ]; + maintainers = with lib.maintainers; [ samlukeyes123 ]; }; }) diff --git a/pkgs/by-name/pa/pacvim/package.nix b/pkgs/by-name/pa/pacvim/package.nix index a9b1aa50d514..cedf2bb48467 100644 --- a/pkgs/by-name/pa/pacvim/package.nix +++ b/pkgs/by-name/pa/pacvim/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { buildInputs = [ ncurses ]; makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jmoon018/PacVim"; description = "Game that teaches you vim commands"; mainProgram = "pacvim"; maintainers = [ ]; - license = licenses.lgpl3; - platforms = platforms.unix; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pa/padbuster/package.nix b/pkgs/by-name/pa/padbuster/package.nix index cf3edf672b58..08c511f3a33f 100644 --- a/pkgs/by-name/pa/padbuster/package.nix +++ b/pkgs/by-name/pa/padbuster/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Automated script for performing Padding Oracle attacks"; homepage = "https://www.gdssecurity.com/l/t.php"; mainProgram = "padBuster.pl"; - maintainers = with maintainers; [ emilytrau ]; - license = licenses.asl20; - platforms = platforms.all; + maintainers = with lib.maintainers; [ emilytrau ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pa/page/package.nix b/pkgs/by-name/pa/page/package.nix index 21e625a4179e..bfe1163eed5b 100644 --- a/pkgs/by-name/pa/page/package.nix +++ b/pkgs/by-name/pa/page/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion --zsh $completions_dir/_page ''; - meta = with lib; { + meta = { description = "Use neovim as pager"; homepage = "https://github.com/I60R/page"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "page"; - maintainers = [ maintainers.s1341 ]; + maintainers = [ lib.maintainers.s1341 ]; }; } diff --git a/pkgs/by-name/pa/pagmo2/package.nix b/pkgs/by-name/pa/pagmo2/package.nix index 8d603f38bf5d..bd390f7445af 100644 --- a/pkgs/by-name/pa/pagmo2/package.nix +++ b/pkgs/by-name/pa/pagmo2/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { doCheck = runTests; - meta = with lib; { + meta = { homepage = "https://esa.github.io/pagmo2/"; description = "Scientific library for massively parallel optimization"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.costrouc ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/by-name/pa/pagsuite/package.nix b/pkgs/by-name/pa/pagsuite/package.nix index 273a728c2e8d..2324ce545136 100644 --- a/pkgs/by-name/pa/pagsuite/package.nix +++ b/pkgs/by-name/pa/pagsuite/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation { # make[2]: *** No rule to make target 'lib/libpag.dylib', needed by 'bin/osr'. Stop. enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Optimization tools for the (P)MCM problem"; homepage = "https://gitlab.com/kumm/pagsuite"; - maintainers = with maintainers; [ wegank ]; - license = licenses.unfree; + maintainers = with lib.maintainers; [ wegank ]; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/pa/pahole/package.nix b/pkgs/by-name/pa/pahole/package.nix index b76ae90ed7a5..f430d699ace3 100644 --- a/pkgs/by-name/pa/pahole/package.nix +++ b/pkgs/by-name/pa/pahole/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation rec { inherit (nixosTests) bpf; }; - meta = with lib; { + meta = { homepage = "https://git.kernel.org/pub/scm/devel/pahole/pahole.git/"; description = "Shows, manipulates, and pretty-prints debugging information in DWARF, CTF, and BTF formats"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bosu martinetd ]; diff --git a/pkgs/by-name/pa/pairdrop/package.nix b/pkgs/by-name/pa/pairdrop/package.nix index 1fa983f47b26..cbdf6129014c 100644 --- a/pkgs/by-name/pa/pairdrop/package.nix +++ b/pkgs/by-name/pa/pairdrop/package.nix @@ -43,7 +43,7 @@ buildNpmPackage rec { }; }; - meta = with lib; { + meta = { description = "Local file sharing in your browser"; mainProgram = "pairdrop"; longDescription = '' @@ -51,8 +51,8 @@ buildNpmPackage rec { Send images, documents or text via peer to peer connection to devices in the same local network/Wi-Fi or to paired devices. ''; homepage = "https://github.com/schlagmichdoch/PairDrop"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ diogotcorreia dit7ya ]; diff --git a/pkgs/by-name/pa/paleta/package.nix b/pkgs/by-name/pa/paleta/package.nix index 44ff17cf0ea7..1a56a24e8fb8 100644 --- a/pkgs/by-name/pa/paleta/package.nix +++ b/pkgs/by-name/pa/paleta/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { libadwaita ]; - meta = with lib; { + meta = { description = "Extract the dominant colors from any image"; mainProgram = "paleta"; homepage = "https://github.com/nate-xyz/paleta"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/pa/palp/package.nix b/pkgs/by-name/pa/palp/package.nix index b50bfacfa477..69229b3e615d 100644 --- a/pkgs/by-name/pa/palp/package.nix +++ b/pkgs/by-name/pa/palp/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Package for Analyzing Lattice Polytopes"; longDescription = '' A Package for Analyzing Lattice Polytopes (PALP) is a set of C @@ -86,8 +86,8 @@ stdenv.mkDerivation rec { # Just a link on the website pointing to gpl -- now gplv3. When the last # version was released that pointed to gplv2 however, so thats probably # the right license. - license = licenses.gpl2; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pa/pam-honeycreds/package.nix b/pkgs/by-name/pa/pam-honeycreds/package.nix index ea0e155e3cc0..cda47380032f 100644 --- a/pkgs/by-name/pa/pam-honeycreds/package.nix +++ b/pkgs/by-name/pa/pam-honeycreds/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ pam ]; - meta = with lib; { + meta = { homepage = "https://github.com/ColumPaget/pam_honeycreds"; description = "PAM module that sends warnings when fake passwords are used"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ h7x4 ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ h7x4 ]; }; }) diff --git a/pkgs/by-name/pa/pam-reattach/package.nix b/pkgs/by-name/pa/pam-reattach/package.nix index 249ed9bcabc7..24a6cd38d18f 100644 --- a/pkgs/by-name/pa/pam-reattach/package.nix +++ b/pkgs/by-name/pa/pam-reattach/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/fabianishere/pam_reattach"; description = "Reattach to the user's GUI session on macOS during authentication (for Touch ID support in tmux)"; - license = licenses.mit; - maintainers = with maintainers; [ lockejan ]; - platforms = platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lockejan ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/pa/pam_ccreds/package.nix b/pkgs/by-name/pa/pam_ccreds/package.nix index 2a052547817e..07339cb6fab5 100644 --- a/pkgs/by-name/pa/pam_ccreds/package.nix +++ b/pkgs/by-name/pa/pam_ccreds/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { db ]; - meta = with lib; { + meta = { homepage = "https://www.padl.com/OSS/pam_ccreds.html"; description = "PAM module to locally authenticate using an enterprise identity when the network is unavailable"; mainProgram = "ccreds_chkpwd"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pam_dp9ik/package.nix b/pkgs/by-name/pa/pam_dp9ik/package.nix index c464966b0c41..d5ea469e8b66 100644 --- a/pkgs/by-name/pa/pam_dp9ik/package.nix +++ b/pkgs/by-name/pa/pam_dp9ik/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation { installFlags = [ "PREFIX=$(out)" ]; installTargets = "pam.install"; - meta = with lib; { + meta = { description = "dp9ik pam module"; longDescription = "Uses tlsclient to authenticate users against a 9front auth server"; homepage = "https://git.sr.ht/~moody/tlsclient"; - license = licenses.mit; - maintainers = with maintainers; [ moody ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moody ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pam_gnupg/package.nix b/pkgs/by-name/pa/pam_gnupg/package.nix index 9b0bc45984af..ffc791801782 100644 --- a/pkgs/by-name/pa/pam_gnupg/package.nix +++ b/pkgs/by-name/pa/pam_gnupg/package.nix @@ -29,14 +29,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Unlock GnuPG keys on login"; longDescription = '' A PAM module that hands over your login password to gpg-agent. This can be useful if you are using a GnuPG-based password manager like pass. ''; homepage = "https://github.com/cruegge/pam-gnupg"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pa/pam_krb5/package.nix b/pkgs/by-name/pa/pam_krb5/package.nix index bc82835518e4..3968dd86caf3 100644 --- a/pkgs/by-name/pa/pam_krb5/package.nix +++ b/pkgs/by-name/pa/pam_krb5/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { libkrb5 ]; - meta = with lib; { + meta = { homepage = "https://www.eyrie.org/~eagle/software/pam-krb5/"; description = "PAM module allowing PAM-aware applications to authenticate users by performing an AS exchange with a Kerberos KDC"; longDescription = '' pam_krb5 can optionally convert Kerberos 5 credentials to Kerberos IV credentials and/or use them to set up AFS tokens for a user's session. ''; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/pa/pam_mktemp/package.nix b/pkgs/by-name/pa/pam_mktemp/package.nix index 8103c0023d97..130ebd77bffc 100644 --- a/pkgs/by-name/pa/pam_mktemp/package.nix +++ b/pkgs/by-name/pa/pam_mktemp/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.openwall.com/pam/"; description = "PAM for login service to provide per-user private directories"; - license = licenses.bsd0; - maintainers = with maintainers; [ wladmis ]; - platforms = platforms.linux; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ wladmis ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pam_mount/package.nix b/pkgs/by-name/pa/pam_mount/package.nix index 950ba5ce1fd0..fa78fd1e012e 100644 --- a/pkgs/by-name/pa/pam_mount/package.nix +++ b/pkgs/by-name/pa/pam_mount/package.nix @@ -64,16 +64,16 @@ stdenv.mkDerivation rec { rm -r $out/var ''; - meta = with lib; { + meta = { description = "PAM module to mount volumes for a user session"; homepage = "https://pam-mount.sourceforge.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus gpl3 lgpl21 lgpl3 ]; - maintainers = with maintainers; [ netali ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ netali ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pam_mysql/package.nix b/pkgs/by-name/pa/pam_mysql/package.nix index d562b24c1200..15d29eb055ff 100644 --- a/pkgs/by-name/pa/pam_mysql/package.nix +++ b/pkgs/by-name/pa/pam_mysql/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) auth-mysql; }; - meta = with lib; { + meta = { description = "PAM authentication module against a MySQL database"; homepage = "https://github.com/NigelCunningham/pam-MySQL"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/by-name/pa/pam_p11/package.nix b/pkgs/by-name/pa/pam_p11/package.nix index 8532cdfec899..943800559c7d 100644 --- a/pkgs/by-name/pa/pam_p11/package.nix +++ b/pkgs/by-name/pa/pam_p11/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libintl ]; - meta = with lib; { + meta = { homepage = "https://github.com/OpenSC/pam_p11"; description = "Authentication with PKCS#11 modules"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ sb0 ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sb0 ]; }; } diff --git a/pkgs/by-name/pa/pam_pgsql/package.nix b/pkgs/by-name/pa/pam_pgsql/package.nix index e21c64af05d1..1d66101a7891 100644 --- a/pkgs/by-name/pa/pam_pgsql/package.nix +++ b/pkgs/by-name/pa/pam_pgsql/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { libxcrypt ]; - meta = with lib; { + meta = { description = "Support to authenticate against PostgreSQL for PAM-enabled appliations"; homepage = "https://github.com/pam-pgsql/pam-pgsql"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pa/pam_rssh/package.nix b/pkgs/by-name/pa/pam_rssh/package.nix index 08cc8dcc7972..7924cf482594 100644 --- a/pkgs/by-name/pa/pam_rssh/package.nix +++ b/pkgs/by-name/pa/pam_rssh/package.nix @@ -68,12 +68,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "PAM module for authenticating via ssh-agent, written in Rust"; homepage = "https://github.com/z4yx/pam_rssh"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kranzes xyenon ]; diff --git a/pkgs/by-name/pa/pam_tmpdir/package.nix b/pkgs/by-name/pa/pam_tmpdir/package.nix index 083c4eda73cc..561e0a1c3f00 100644 --- a/pkgs/by-name/pa/pam_tmpdir/package.nix +++ b/pkgs/by-name/pa/pam_tmpdir/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://tracker.debian.org/pkg/pam-tmpdir"; description = "PAM module for creating safe per-user temporary directories"; mainProgram = "pam-tmpdir-helper"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pam_ussh/package.nix b/pkgs/by-name/pa/pam_ussh/package.nix index 9ef4b1d117a1..94ac1aff3a5d 100644 --- a/pkgs/by-name/pa/pam_ussh/package.nix +++ b/pkgs/by-name/pa/pam_ussh/package.nix @@ -56,11 +56,11 @@ buildGoModule { passthru.tests = { inherit (nixosTests) pam-ussh; }; - meta = with lib; { + meta = { homepage = "https://github.com/uber/pam-ussh"; description = "PAM module to authenticate using SSH certificates"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lukegb ]; }; } diff --git a/pkgs/by-name/pa/pamixer/package.nix b/pkgs/by-name/pa/pamixer/package.nix index f629e7d5cd35..e0315f7097f3 100644 --- a/pkgs/by-name/pa/pamixer/package.nix +++ b/pkgs/by-name/pa/pamixer/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { libpulseaudio ]; - meta = with lib; { + meta = { description = "Pulseaudio command line mixer"; longDescription = '' Features: @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { - Mute or unmute a device ''; homepage = "https://github.com/cdemoulins/pamixer"; - maintainers = with maintainers; [ thiagokokada ]; - license = licenses.gpl3; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ thiagokokada ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "pamixer"; }; } diff --git a/pkgs/by-name/pa/pamtester/package.nix b/pkgs/by-name/pa/pamtester/package.nix index 4bf254808f92..56038fab10de 100644 --- a/pkgs/by-name/pa/pamtester/package.nix +++ b/pkgs/by-name/pa/pamtester/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { buildInputs = [ pam ]; - meta = with lib; { + meta = { description = "Utility program to test the PAM facility"; mainProgram = "pamtester"; homepage = "https://pamtester.sourceforge.net/"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pa/pan-bindings/package.nix b/pkgs/by-name/pa/pan-bindings/package.nix index 8d2f85ecc79e..b26acdd8a56e 100644 --- a/pkgs/by-name/pa/pan-bindings/package.nix +++ b/pkgs/by-name/pa/pan-bindings/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation { goDeps.go ]; - meta = with lib; { + meta = { description = "SCION PAN Bindings for C, C++, and Python"; homepage = "https://github.com/lschulz/pan-bindings"; - license = licenses.asl20; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "pan-bindings"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pa/panamax/package.nix b/pkgs/by-name/pa/panamax/package.nix index ef2929065f3f..ce6b79f82927 100644 --- a/pkgs/by-name/pa/panamax/package.nix +++ b/pkgs/by-name/pa/panamax/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { zlib ]; - meta = with lib; { + meta = { description = "Mirror rustup and crates.io repositories for offline Rust and cargo usage"; mainProgram = "panamax"; homepage = "https://github.com/panamax-rs/panamax"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/pa/pandoc-katex/package.nix b/pkgs/by-name/pa/pandoc-katex/package.nix index bae0ad8f607c..ee45d38f211c 100644 --- a/pkgs/by-name/pa/pandoc-katex/package.nix +++ b/pkgs/by-name/pa/pandoc-katex/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Ve8s+LLjJiP/I+A/X23CnGiRsbfz5sxFr6kySAgYTyE="; - meta = with lib; { + meta = { description = "Pandoc filter to render math equations using KaTeX"; homepage = "https://github.com/xu-cheng/pandoc-katex"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ minijackson euxane ]; diff --git a/pkgs/by-name/pa/pandoc-lua-filters/package.nix b/pkgs/by-name/pa/pandoc-lua-filters/package.nix index d44b5e94bd2e..a1b69c1fa97c 100644 --- a/pkgs/by-name/pa/pandoc-lua-filters/package.nix +++ b/pkgs/by-name/pa/pandoc-lua-filters/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Collection of lua filters for pandoc"; homepage = "https://github.com/pandoc/lua-filters"; - license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pa/pango/package.nix b/pkgs/by-name/pa/pango/package.nix index 42227dd4fc38..15951f311426 100644 --- a/pkgs/by-name/pa/pango/package.nix +++ b/pkgs/by-name/pa/pango/package.nix @@ -115,7 +115,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library for laying out and rendering of text, with an emphasis on internationalization"; longDescription = '' @@ -127,11 +127,11 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.pango.org/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ raskin ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; pkgConfigModules = [ "pango" diff --git a/pkgs/by-name/pa/panicparse/package.nix b/pkgs/by-name/pa/panicparse/package.nix index 4e23655a5309..56e3fd964b55 100644 --- a/pkgs/by-name/pa/panicparse/package.nix +++ b/pkgs/by-name/pa/panicparse/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Crash your app in style (Golang)"; homepage = "https://github.com/maruel/panicparse"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "panicparse"; }; diff --git a/pkgs/by-name/pa/panoply/package.nix b/pkgs/by-name/pa/panoply/package.nix index 3300635e22c0..82b2051379ce 100644 --- a/pkgs/by-name/pa/panoply/package.nix +++ b/pkgs/by-name/pa/panoply/package.nix @@ -33,12 +33,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "netCDF, HDF and GRIB Data Viewer"; homepage = "https://www.giss.nasa.gov/tools/panoply"; - platforms = platforms.linux; - maintainers = [ maintainers.markuskowa ]; - license = licenses.unfree; # Package does not state a license + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; + license = lib.licenses.unfree; # Package does not state a license mainProgram = "panoply"; }; } diff --git a/pkgs/by-name/pa/pantheon-tweaks/package.nix b/pkgs/by-name/pa/pantheon-tweaks/package.nix index f2b8bdc485b8..ca8291ca4640 100644 --- a/pkgs/by-name/pa/pantheon-tweaks/package.nix +++ b/pkgs/by-name/pa/pantheon-tweaks/package.nix @@ -56,16 +56,16 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Unofficial system customization app for Pantheon"; longDescription = '' Unofficial system customization app for Pantheon that lets you easily and safely customise your desktop's appearance. ''; homepage = "https://github.com/pantheon-tweaks/pantheon-tweaks"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "pantheon-tweaks"; }; } diff --git a/pkgs/by-name/pa/pantum-driver/package.nix b/pkgs/by-name/pa/pantum-driver/package.nix index e08e0dbeade9..0f13826a2644 100644 --- a/pkgs/by-name/pa/pantum-driver/package.nix +++ b/pkgs/by-name/pa/pantum-driver/package.nix @@ -56,15 +56,15 @@ stdenv.mkDerivation rec { ln -s $out/lib/libqpdf.so $out/lib/libqpdf.so.21 ''; - meta = with lib; { + meta = { description = "Pantum universal driver"; homepage = "https://global.pantum.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ deinferno ]; + maintainers = with lib.maintainers; [ deinferno ]; }; } diff --git a/pkgs/by-name/pa/paper-age/package.nix b/pkgs/by-name/pa/paper-age/package.nix index c0e6e0a3ee13..af8cd1ed3058 100644 --- a/pkgs/by-name/pa/paper-age/package.nix +++ b/pkgs/by-name/pa/paper-age/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-FO69bmUhP6S3MRbVZllxmpn1GuM8fplciAka46Dz2Yg="; - meta = with lib; { + meta = { description = "Easy and secure paper backups of secrets"; homepage = "https://github.com/matiaskorhonen/paper-age"; changelog = "https://github.com/matiaskorhonen/paper-age/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "paper-age"; }; diff --git a/pkgs/by-name/pa/paper-gtk-theme/package.nix b/pkgs/by-name/pa/paper-gtk-theme/package.nix index 70d67366707d..137aa5243d5d 100644 --- a/pkgs/by-name/pa/paper-gtk-theme/package.nix +++ b/pkgs/by-name/pa/paper-gtk-theme/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth"; homepage = "https://snwh.org/paper"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ - maintainers.simonvandel - maintainers.romildo + lib.maintainers.simonvandel + lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/pa/paper-icon-theme/package.nix b/pkgs/by-name/pa/paper-icon-theme/package.nix index 384a12b65c1d..bf8d473e08c8 100644 --- a/pkgs/by-name/pa/paper-icon-theme/package.nix +++ b/pkgs/by-name/pa/paper-icon-theme/package.nix @@ -49,15 +49,15 @@ stdenvNoCC.mkDerivation { jdupes -l -r $out/share/icons ''; - meta = with lib; { + meta = { description = "Modern icon theme designed around bold colours and simple geometric shapes"; homepage = "https://snwh.org/paper"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 lgpl3 ]; # darwin cannot deal with file names differing only in case - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/pa/paperkey/package.nix b/pkgs/by-name/pa/paperkey/package.nix index a1066a0f2fc1..e8a0f30d78c1 100644 --- a/pkgs/by-name/pa/paperkey/package.nix +++ b/pkgs/by-name/pa/paperkey/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Store OpenPGP or GnuPG on paper"; mainProgram = "paperkey"; longDescription = '' @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { are generally used to back up computer data. ''; homepage = "https://www.jabberwocky.com/software/paperkey/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ peterhoeg ]; }; diff --git a/pkgs/by-name/pa/paperless-asn-qr-codes/package.nix b/pkgs/by-name/pa/paperless-asn-qr-codes/package.nix index 5fe69a944eab..b8ab498c7b15 100644 --- a/pkgs/by-name/pa/paperless-asn-qr-codes/package.nix +++ b/pkgs/by-name/pa/paperless-asn-qr-codes/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "paperless_asn_qr_codes" ]; - meta = with lib; { + meta = { description = "Command line utility for generating ASN labels for paperless with both a human-readable representation, as well as a QR code for machine consumption"; homepage = "https://github.com/entropia/paperless-asn-qr-codes"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ xanderio ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ xanderio ]; mainProgram = "paperless-asn-qr-codes"; }; } diff --git a/pkgs/by-name/pa/papers/package.nix b/pkgs/by-name/pa/papers/package.nix index 2beebde04ec1..89362fb22feb 100644 --- a/pkgs/by-name/pa/papers/package.nix +++ b/pkgs/by-name/pa/papers/package.nix @@ -168,7 +168,7 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/papers"; changelog = "https://gitlab.gnome.org/GNOME/papers/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; description = "GNOME's document viewer"; @@ -180,9 +180,9 @@ stdenv.mkDerivation (finalAttrs: { on the GNOME Desktop with a more modern interface. ''; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "papers"; - teams = [ teams.gnome ]; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/pa/paperview/package.nix b/pkgs/by-name/pa/paperview/package.nix index c70eab899925..8330fce65dea 100644 --- a/pkgs/by-name/pa/paperview/package.nix +++ b/pkgs/by-name/pa/paperview/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "High performance X11 animated wallpaper setter"; homepage = "https://github.com/glouw/paperview"; - platforms = platforms.linux; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; mainProgram = "paperview"; }; } diff --git a/pkgs/by-name/pa/papi/package.nix b/pkgs/by-name/pa/papi/package.nix index 3e07a1c5aeee..b0105c0d0eb5 100644 --- a/pkgs/by-name/pa/papi/package.nix +++ b/pkgs/by-name/pa/papi/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; checkTarget = "test"; - meta = with lib; { + meta = { homepage = "https://icl.utk.edu/papi/"; description = "Library providing access to various hardware performance counters"; - license = licenses.bsdOriginal; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ costrouc zhaofengli ]; diff --git a/pkgs/by-name/pa/papirus-folders/package.nix b/pkgs/by-name/pa/papirus-folders/package.nix index e43337172e2a..717b07e04fce 100644 --- a/pkgs/by-name/pa/papirus-folders/package.nix +++ b/pkgs/by-name/pa/papirus-folders/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { substituteInPlace ./papirus-folders --replace "getent" "${getent}/bin/getent" ''; - meta = with lib; { + meta = { description = "Tool to change papirus icon theme color"; mainProgram = "papirus-folders"; longDescription = '' @@ -34,8 +34,8 @@ stdenv.mkDerivation rec { folders in Papirus icon theme and its forks (which based on version 20171007 and newer). ''; homepage = "https://github.com/PapirusDevelopmentTeam/papirus-folders"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.aacebedo ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.aacebedo ]; }; } diff --git a/pkgs/by-name/pa/papirus-nord/package.nix b/pkgs/by-name/pa/papirus-nord/package.nix index 326c9eb2ca3e..ccb9684c0a62 100644 --- a/pkgs/by-name/pa/papirus-nord/package.nix +++ b/pkgs/by-name/pa/papirus-nord/package.nix @@ -70,11 +70,11 @@ lib.checkListOfEnum "${pname}: accent colors" validAccents [ accent ] runHook postInstall ''; - meta = with lib; { + meta = { description = "Nord version of Papirus Icon Theme"; homepage = "https://github.com/Adapta-Projects/Papirus-Nord"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ aacebedo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aacebedo ]; }; } diff --git a/pkgs/by-name/pa/paprefs/package.nix b/pkgs/by-name/pa/paprefs/package.nix index 7308eb69a9e1..7f10ded6844e 100644 --- a/pkgs/by-name/pa/paprefs/package.nix +++ b/pkgs/by-name/pa/paprefs/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { gtkmm3 ]; - meta = with lib; { + meta = { description = "PulseAudio Preferences"; mainProgram = "paprefs"; @@ -46,9 +46,9 @@ stdenv.mkDerivation rec { homepage = "http://freedesktop.org/software/pulseaudio/paprefs/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/par/package.nix b/pkgs/by-name/pa/par/package.nix index a6167b8c5ed7..df610d4705eb 100644 --- a/pkgs/by-name/pa/par/package.nix +++ b/pkgs/by-name/pa/par/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { cp par.1 $out/share/man/man1 ''; - meta = with lib; { + meta = { homepage = "http://www.nicemice.net/par/"; description = "Paragraph reflow for email"; mainProgram = "par"; - platforms = platforms.unix; + platforms = lib.platforms.unix; # See https://fedoraproject.org/wiki/Licensing/Par for license details - license = licenses.free; + license = lib.licenses.free; }; } diff --git a/pkgs/by-name/pa/par2cmdline-turbo/package.nix b/pkgs/by-name/pa/par2cmdline-turbo/package.nix index 4ce994c9af35..9a34726ebc1e 100644 --- a/pkgs/by-name/pa/par2cmdline-turbo/package.nix +++ b/pkgs/by-name/pa/par2cmdline-turbo/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/animetosho/par2cmdline-turbo"; description = "par2cmdline × ParPar: speed focused par2cmdline fork"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.proglottis ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.proglottis ]; + platforms = lib.platforms.all; mainProgram = "par2"; }; } diff --git a/pkgs/by-name/pa/par2cmdline/package.nix b/pkgs/by-name/pa/par2cmdline/package.nix index 6f69f0e48eed..cefa528d7813 100644 --- a/pkgs/by-name/pa/par2cmdline/package.nix +++ b/pkgs/by-name/pa/par2cmdline/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/Parchive/par2cmdline"; description = "PAR 2.0 compatible file verification and repair tool"; longDescription = '' @@ -26,8 +26,8 @@ stdenv.mkDerivation rec { damage in data files and repair them if necessary. It can be used with any kind of file. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pa/parallel-disk-usage/package.nix b/pkgs/by-name/pa/parallel-disk-usage/package.nix index b0c1016f7aed..11da789fcbf4 100644 --- a/pkgs/by-name/pa/parallel-disk-usage/package.nix +++ b/pkgs/by-name/pa/parallel-disk-usage/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-r9lNOElOr4GjzaI1ZZFdc+1i2kC4YVl7n/XR05mdEJA="; - meta = with lib; { + meta = { description = "Highly parallelized, blazing fast directory tree analyzer"; homepage = "https://github.com/KSXGitHub/parallel-disk-usage"; - license = licenses.asl20; - maintainers = [ maintainers.peret ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.peret ]; mainProgram = "pdu"; }; } diff --git a/pkgs/by-name/pa/parallel-hashmap/package.nix b/pkgs/by-name/pa/parallel-hashmap/package.nix index 4aee6da9ed31..54d23c8dc6ad 100644 --- a/pkgs/by-name/pa/parallel-hashmap/package.nix +++ b/pkgs/by-name/pa/parallel-hashmap/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Family of header-only, very fast and memory-friendly hashmap and btree containers"; homepage = "https://github.com/greg7mdp/parallel-hashmap"; changelog = "https://github.com/greg7mdp/parallel-hashmap/releases/tag/v${finalAttrs.version}"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ natsukium ]; }; }) diff --git a/pkgs/by-name/pa/paralus-cli/package.nix b/pkgs/by-name/pa/paralus-cli/package.nix index 24961d715afa..556cda54731a 100644 --- a/pkgs/by-name/pa/paralus-cli/package.nix +++ b/pkgs/by-name/pa/paralus-cli/package.nix @@ -24,7 +24,7 @@ buildGoModule rec { "-X main.buildNum=${version}" ]; - meta = with lib; { + meta = { description = "Command Line Interface tool for Paralus"; longDescription = '' Paralus is a free, open source tool that enables controlled, audited access to Kubernetes infrastructure. @@ -32,8 +32,8 @@ buildGoModule rec { with your RBAC and SSO. Ships as a GUI, API, and CLI. ''; homepage = "https://www.paralus.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ kashw2 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kashw2 ]; mainProgram = "paralus"; }; } diff --git a/pkgs/by-name/pa/parastoo-fonts/package.nix b/pkgs/by-name/pa/parastoo-fonts/package.nix index 0d3c24cd1c6c..c9788cbf7ab7 100644 --- a/pkgs/by-name/pa/parastoo-fonts/package.nix +++ b/pkgs/by-name/pa/parastoo-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/parastoo-font"; description = "Persian (Farsi) Font - فونت ( قلم ) فارسی پرستو"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pa/paratype-pt-mono/package.nix b/pkgs/by-name/pa/paratype-pt-mono/package.nix index 85df4d37804f..1a95bbf38519 100644 --- a/pkgs/by-name/pa/paratype-pt-mono/package.nix +++ b/pkgs/by-name/pa/paratype-pt-mono/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.paratype.ru/public/"; description = "Open Paratype font"; @@ -35,7 +35,7 @@ stdenvNoCC.mkDerivation { # must rename on modification # http://www.paratype.ru/public/pt_openlicense.asp - platforms = platforms.all; - maintainers = with maintainers; [ raskin ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ raskin ]; }; } diff --git a/pkgs/by-name/pa/paratype-pt-sans/package.nix b/pkgs/by-name/pa/paratype-pt-sans/package.nix index cfc0811db164..f57cca833bbd 100644 --- a/pkgs/by-name/pa/paratype-pt-sans/package.nix +++ b/pkgs/by-name/pa/paratype-pt-sans/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.paratype.ru/public/"; description = "Open Paratype font"; @@ -35,7 +35,7 @@ stdenvNoCC.mkDerivation { # must rename on modification # http://www.paratype.ru/public/pt_openlicense.asp - platforms = platforms.all; - maintainers = with maintainers; [ raskin ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ raskin ]; }; } diff --git a/pkgs/by-name/pa/paratype-pt-serif/package.nix b/pkgs/by-name/pa/paratype-pt-serif/package.nix index eb20bf598f7c..b23b3804db3e 100644 --- a/pkgs/by-name/pa/paratype-pt-serif/package.nix +++ b/pkgs/by-name/pa/paratype-pt-serif/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.paratype.ru/public/"; description = "Open Paratype font"; @@ -35,7 +35,7 @@ stdenvNoCC.mkDerivation { # must rename on modification # http://www.paratype.ru/public/pt_openlicense.asp - platforms = platforms.all; - maintainers = with maintainers; [ raskin ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ raskin ]; }; } diff --git a/pkgs/by-name/pa/pari-galdata/package.nix b/pkgs/by-name/pa/pari-galdata/package.nix index d3ec40d1ce58..6a9cb735e828 100644 --- a/pkgs/by-name/pa/pari-galdata/package.nix +++ b/pkgs/by-name/pa/pari-galdata/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { cp -R * "$out/share/pari/" ''; - meta = with lib; { + meta = { description = "PARI database needed to compute Galois group in degrees 8 through 11"; homepage = "http://pari.math.u-bordeaux.fr/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - teams = [ teams.sage ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/pa/pari-seadata-small/package.nix b/pkgs/by-name/pa/pari-seadata-small/package.nix index 80890dcb81f6..6e5203997326 100644 --- a/pkgs/by-name/pa/pari-seadata-small/package.nix +++ b/pkgs/by-name/pa/pari-seadata-small/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { cp -R * "$out/share/pari/" ''; - meta = with lib; { + meta = { description = "PARI database needed by ellap for large primes"; homepage = "http://pari.math.u-bordeaux.fr/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - teams = [ teams.sage ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/pa/pari/package.nix b/pkgs/by-name/pa/pari/package.nix index 750b125c2d2b..74d700b358e0 100644 --- a/pkgs/by-name/pa/pari/package.nix +++ b/pkgs/by-name/pa/pari/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { makeFlags = [ "all" ]; - meta = with lib; { + meta = { homepage = "http://pari.math.u-bordeaux.fr"; description = "Computer algebra system for high-performance number theory computations"; longDescription = '' @@ -77,9 +77,9 @@ stdenv.mkDerivation rec { GP language. ''; downloadPage = "http://pari.math.u-bordeaux.fr/download.html"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "gp"; }; } diff --git a/pkgs/by-name/pa/parinfer-rust-emacs/package.nix b/pkgs/by-name/pa/parinfer-rust-emacs/package.nix index f48ac7b5bbb9..abbcc2c681e1 100644 --- a/pkgs/by-name/pa/parinfer-rust-emacs/package.nix +++ b/pkgs/by-name/pa/parinfer-rust-emacs/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-NUoBaaoPDpt19Avxyl6G9mmbcinm24aAvq6Z9Orb9a8="; - meta = with lib; { + meta = { description = "Emacs centric fork of parinfer-rust"; mainProgram = "parinfer-rust"; homepage = "https://github.com/justinbarclay/parinfer-rust-emacs"; - license = licenses.isc; - maintainers = with maintainers; [ brsvh ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ brsvh ]; }; } diff --git a/pkgs/by-name/pa/parinfer-rust/package.nix b/pkgs/by-name/pa/parinfer-rust/package.nix index 1c0c2b697163..0789edbe675b 100644 --- a/pkgs/by-name/pa/parinfer-rust/package.nix +++ b/pkgs/by-name/pa/parinfer-rust/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage { plugin/parinfer.vim > $rtpPath/parinfer.vim ''; - meta = with lib; { + meta = { description = "Infer parentheses for Clojure, Lisp, and Scheme"; mainProgram = "parinfer-rust"; homepage = "https://github.com/eraserhd/parinfer-rust"; - license = licenses.isc; - maintainers = with maintainers; [ eraserhd ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ eraserhd ]; }; } diff --git a/pkgs/by-name/pa/parlatype/package.nix b/pkgs/by-name/pa/parlatype/package.nix index ba1858e43e77..4eae619b4a06 100644 --- a/pkgs/by-name/pa/parlatype/package.nix +++ b/pkgs/by-name/pa/parlatype/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "GNOME audio player for transcription"; mainProgram = "parlatype"; longDescription = '' @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { transcribe audio files. ''; homepage = "https://www.parlatype.xyz/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ alexshpilkin melchips ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/parmetis/package.nix b/pkgs/by-name/pa/parmetis/package.nix index 86e83b1522d4..531951c5c510 100644 --- a/pkgs/by-name/pa/parmetis/package.nix +++ b/pkgs/by-name/pa/parmetis/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Parallel Graph Partitioning and Fill-reducing Matrix Ordering"; longDescription = '' MPI-based parallel library that implements a variety of algorithms for @@ -52,8 +52,8 @@ stdenv.mkDerivation { schemes ''; homepage = "https://github.com/KarypisLab/ParMETIS"; - platforms = platforms.all; - license = licenses.unfree; - maintainers = [ maintainers.costrouc ]; + platforms = lib.platforms.all; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/by-name/pa/parse-cli-bin/package.nix b/pkgs/by-name/pa/parse-cli-bin/package.nix index a70e398c3208..fc0ca060546a 100644 --- a/pkgs/by-name/pa/parse-cli-bin/package.nix +++ b/pkgs/by-name/pa/parse-cli-bin/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "1iyfizbbxmr87wjgqiwqds51irgw6l3vm9wn89pc3zpj2zkyvf5h"; }; - meta = with lib; { + meta = { description = "Parse Command Line Interface"; mainProgram = "parse"; homepage = "https://parse.com"; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; }; dontUnpack = true; diff --git a/pkgs/by-name/pa/parsero/package.nix b/pkgs/by-name/pa/parsero/package.nix index 02b931032a29..3ce6b213cac4 100644 --- a/pkgs/by-name/pa/parsero/package.nix +++ b/pkgs/by-name/pa/parsero/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Robots.txt audit tool"; homepage = "https://github.com/behindthefirewalls/Parsero"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ emilytrau fab ]; diff --git a/pkgs/by-name/pa/parsify/package.nix b/pkgs/by-name/pa/parsify/package.nix index 957f88e2b1ba..7542c98a6699 100644 --- a/pkgs/by-name/pa/parsify/package.nix +++ b/pkgs/by-name/pa/parsify/package.nix @@ -26,12 +26,12 @@ appimageTools.wrapType2 rec { cp -r ${contents}/usr/share/* $out/share ''; - meta = with lib; { + meta = { description = "Next generation notepad-based calculator, built with extendibility and privacy in mind"; homepage = "https://parsify.app/"; - license = licenses.unfree; - maintainers = with maintainers; [ kashw2 ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ kashw2 ]; + platforms = lib.platforms.linux; mainProgram = "parsify"; }; } diff --git a/pkgs/by-name/pa/partclone/package.nix b/pkgs/by-name/pa/partclone/package.nix index f404340d332f..238d1ed8ca9d 100644 --- a/pkgs/by-name/pa/partclone/package.nix +++ b/pkgs/by-name/pa/partclone/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Utilities to save and restore used blocks on a partition"; longDescription = '' Partclone provides utilities to save and restore used blocks on a @@ -60,8 +60,8 @@ stdenv.mkDerivation rec { ext2 partition. ''; homepage = "https://partclone.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ marcweber ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ marcweber ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/particl-core/package.nix b/pkgs/by-name/pa/particl-core/package.nix index a5ba857db4d3..1cb43d20e9ed 100644 --- a/pkgs/by-name/pa/particl-core/package.nix +++ b/pkgs/by-name/pa/particl-core/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { preCheck = "patchShebangs test"; enableParallelBuilding = true; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Privacy-Focused Marketplace & Decentralized Application Platform"; longDescription = '' @@ -72,8 +72,8 @@ stdenv.mkDerivation rec { RPC daemon and CLI client only. ''; homepage = "https://particl.io/"; - maintainers = with maintainers; [ demyanrogozhin ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ demyanrogozhin ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pa/partio/package.nix b/pkgs/by-name/pa/partio/package.nix index 8ecc6e40cbe2..6175342bda90 100644 --- a/pkgs/by-name/pa/partio/package.nix +++ b/pkgs/by-name/pa/partio/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "C++ (with python bindings) library for easily reading/writing/manipulating common animation particle formats such as PDB, BGEO, PTC"; homepage = "https://github.com/wdas/partio"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.guibou ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.guibou ]; }; } diff --git a/pkgs/by-name/pa/pasco/package.nix b/pkgs/by-name/pa/pasco/package.nix index 847af508fafb..75790ab39f23 100644 --- a/pkgs/by-name/pa/pasco/package.nix +++ b/pkgs/by-name/pa/pasco/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Examine the contents of Internet Explorer's cache files for forensic purposes"; mainProgram = "pasco"; homepage = "https://sourceforge.net/projects/fast/files/Pasco/"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = with licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = with lib.licenses; [ bsd3 ]; }; }) diff --git a/pkgs/by-name/pa/pass-git-helper/package.nix b/pkgs/by-name/pa/pass-git-helper/package.nix index 52862d874cb9..2bb5a120249a 100644 --- a/pkgs/by-name/pa/pass-git-helper/package.nix +++ b/pkgs/by-name/pa/pass-git-helper/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { pytest-mock ]; - meta = with lib; { + meta = { homepage = "https://github.com/languitar/pass-git-helper"; description = "Git credential helper interfacing with pass, the standard unix password manager"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hmenke ]; mainProgram = "pass-git-helper"; diff --git a/pkgs/by-name/pa/passage/package.nix b/pkgs/by-name/pa/passage/package.nix index b438def810d3..eba4a630afa2 100644 --- a/pkgs/by-name/pa/passage/package.nix +++ b/pkgs/by-name/pa/passage/package.nix @@ -67,15 +67,15 @@ stdenv.mkDerivation (finalAttrs: { "WITH_ALLCOMP=yes" ]; - meta = with lib; { + meta = { description = "Stores, retrieves, generates, and synchronizes passwords securely"; homepage = "https://github.com/FiloSottile/passage"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kaction ma27 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "passage"; longDescription = '' diff --git a/pkgs/by-name/pa/passerine/package.nix b/pkgs/by-name/pa/passerine/package.nix index 5ac6ec32b40c..87c97c2333ee 100644 --- a/pkgs/by-name/pa/passerine/package.nix +++ b/pkgs/by-name/pa/passerine/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-PCSwhq4VXd/Hvvcfd2gZskXVD106Zw5PVCgMdlapWRs="; - meta = with lib; { + meta = { description = "Small extensible programming language designed for concise expression with little code"; mainProgram = "passerine"; homepage = "https://www.passerine.io/"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/by-name/pa/passes/package.nix b/pkgs/by-name/pa/passes/package.nix index 60fda3dff640..922af25898a3 100644 --- a/pkgs/by-name/pa/passes/package.nix +++ b/pkgs/by-name/pa/passes/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation (finalAttrs: { libzint ]; - meta = with lib; { + meta = { description = "Digital pass manager"; mainProgram = "passes"; homepage = "https://github.com/pablo-s/passes"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # Crashes }; }) diff --git a/pkgs/by-name/pa/passff-host/package.nix b/pkgs/by-name/pa/passff-host/package.nix index 39260da44250..6fe05835489e 100644 --- a/pkgs/by-name/pa/passff-host/package.nix +++ b/pkgs/by-name/pa/passff-host/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Host app for the WebExtension PassFF"; homepage = "https://github.com/passff/passff-host"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pa/passmark-performancetest/package.nix b/pkgs/by-name/pa/passmark-performancetest/package.nix index 0f2b3b7a2c55..197c89c5df7c 100644 --- a/pkgs/by-name/pa/passmark-performancetest/package.nix +++ b/pkgs/by-name/pa/passmark-performancetest/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { description = "Software tool that allows everybody to quickly assess the performance of their computer and compare it to a number of standard 'baseline' computer systems"; homepage = "https://www.passmark.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ neverbehave ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ neverbehave ]; platforms = builtins.attrNames sources; mainProgram = "performancetest"; }; diff --git a/pkgs/by-name/pa/passphrase2pgp/package.nix b/pkgs/by-name/pa/passphrase2pgp/package.nix index eada0badb888..883f7bc19840 100644 --- a/pkgs/by-name/pa/passphrase2pgp/package.nix +++ b/pkgs/by-name/pa/passphrase2pgp/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Predictable, passphrase-based PGP key generator"; mainProgram = "passphrase2pgp"; homepage = "https://github.com/skeeto/passphrase2pgp"; - license = licenses.unlicense; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/by-name/pa/passt/package.nix b/pkgs/by-name/pa/passt/package.nix index 78da8766a4e7..064b36f21465 100644 --- a/pkgs/by-name/pa/passt/package.nix +++ b/pkgs/by-name/pa/passt/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://passt.top/passt/about/"; description = "Plug A Simple Socket Transport"; longDescription = '' @@ -58,10 +58,10 @@ stdenv.mkDerivation (finalAttrs: { privileges. ''; license = [ - licenses.bsd3 # and - licenses.gpl2Plus + lib.licenses.bsd3 # and + lib.licenses.gpl2Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "passt"; }; }) diff --git a/pkgs/by-name/pa/pastebinit/package.nix b/pkgs/by-name/pa/pastebinit/package.nix index b4f52a0c411e..75c908817b33 100644 --- a/pkgs/by-name/pa/pastebinit/package.nix +++ b/pkgs/by-name/pa/pastebinit/package.nix @@ -46,14 +46,14 @@ stdenv.mkDerivation rec { installManPage pastebinit.1 ''; - meta = with lib; { + meta = { homepage = "https://stgraber.org/category/pastebinit/"; description = "Software that lets you send anything you want directly to a pastebin from the command line"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raboof samuel-martineau ]; - license = licenses.gpl2Plus; - platforms = platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/pa/pasystray/package.nix b/pkgs/by-name/pa/pasystray/package.nix index b81ace79d922..26e344a7d3f5 100644 --- a/pkgs/by-name/pa/pasystray/package.nix +++ b/pkgs/by-name/pa/pasystray/package.nix @@ -56,15 +56,15 @@ stdenv.mkDerivation rec { gsettings-desktop-schemas ]; - meta = with lib; { + meta = { description = "PulseAudio system tray"; homepage = "https://github.com/christophgysin/pasystray"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ exlevan kamilchm ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "pasystray"; }; } diff --git a/pkgs/by-name/pa/pat/package.nix b/pkgs/by-name/pa/pat/package.nix index 6e03494e0fed..01ac664b87b6 100644 --- a/pkgs/by-name/pa/pat/package.nix +++ b/pkgs/by-name/pa/pat/package.nix @@ -37,15 +37,15 @@ buildGoModule rec { installManPage man/pat-configure.1 man/pat.1 ''; - meta = with lib; { + meta = { description = "Cross-platform Winlink client written in Go"; homepage = "https://getpat.io/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotemup sarcasticadmin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "pat"; }; } diff --git a/pkgs/by-name/pa/patatt/package.nix b/pkgs/by-name/pa/patatt/package.nix index 2f85a20adc51..9d132293825a 100644 --- a/pkgs/by-name/pa/patatt/package.nix +++ b/pkgs/by-name/pa/patatt/package.nix @@ -24,9 +24,9 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "patatt" ]; - meta = with lib; { + meta = { homepage = "https://git.kernel.org/pub/scm/utils/patatt/patatt.git/about/"; - license = licenses.mit0; + license = lib.licenses.mit0; description = "Add cryptographic attestation to patches sent via email"; mainProgram = "patatt"; longDescription = '' @@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec { DKIM email signature standard to include cryptographic signatures via the X-Developer-Signature email header. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ qyliss yoctocell ]; diff --git a/pkgs/by-name/pa/patcher9x/package.nix b/pkgs/by-name/pa/patcher9x/package.nix index f24d259aa21c..78f8abe489ad 100644 --- a/pkgs/by-name/pa/patcher9x/package.nix +++ b/pkgs/by-name/pa/patcher9x/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttr: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Patch for Windows 95/98/98 SE/Me to fix CPU issues"; mainProgram = "patcher9x"; homepage = "https://github.com/JHRobotics/patcher9x"; - license = licenses.mit; - maintainers = with maintainers; [ hughobrien ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hughobrien ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/pa/pathvector/package.nix b/pkgs/by-name/pa/pathvector/package.nix index 3f08e6f9f5e2..353b553e5744 100644 --- a/pkgs/by-name/pa/pathvector/package.nix +++ b/pkgs/by-name/pa/pathvector/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { --zsh <($out/bin/pathvector completion zsh) ''; - meta = with lib; { + meta = { description = "Declarative edge routing platform that automates route optimization and control plane configuration"; homepage = "https://pathvector.io"; - license = licenses.gpl3; - maintainers = with maintainers; [ matthewpi ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ matthewpi ]; mainProgram = "pathvector"; }; } diff --git a/pkgs/by-name/pa/patray/package.nix b/pkgs/by-name/pa/patray/package.nix index 5650cf156e5f..cf606829e29e 100644 --- a/pkgs/by-name/pa/patray/package.nix +++ b/pkgs/by-name/pa/patray/package.nix @@ -37,10 +37,10 @@ python312.pkgs.buildPythonApplication rec { wrapQtApp $out/bin/patray --prefix QT_PLUGIN_PATH : ${qt5.qtbase}/${qt5.qtbase.qtPluginPrefix} ''; - meta = with lib; { + meta = { description = "Yet another tray pulseaudio frontend"; homepage = "https://github.com/pohmelie/patray"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "patray"; }; diff --git a/pkgs/by-name/pa/pattypan/package.nix b/pkgs/by-name/pa/pattypan/package.nix index bc2e164a8ea9..62c2fba5494c 100644 --- a/pkgs/by-name/pa/pattypan/package.nix +++ b/pkgs/by-name/pa/pattypan/package.nix @@ -68,14 +68,14 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Uploader for Wikimedia Commons"; homepage = "https://commons.wikimedia.org/wiki/Commons:Pattypan"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "pattypan"; - maintainers = with maintainers; [ fee1-dead ]; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ + maintainers = with lib.maintainers; [ fee1-dead ]; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; diff --git a/pkgs/by-name/pa/paulstretch/package.nix b/pkgs/by-name/pa/paulstretch/package.nix index 756b2e99d73a..72bba54c8baf 100644 --- a/pkgs/by-name/pa/paulstretch/package.nix +++ b/pkgs/by-name/pa/paulstretch/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation { install -Dm555 ./paulstretch $out/bin/paulstretch ''; - meta = with lib; { + meta = { description = "Produces high quality extreme sound stretching"; longDescription = '' This is a program for stretching the audio. It is suitable only for @@ -67,8 +67,8 @@ stdenv.mkDerivation { It can transform any sound/music to a texture. ''; homepage = "https://github.com/paulnasca/paulstretch_cpp/"; - platforms = platforms.linux; - license = licenses.gpl2; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; mainProgram = "paulstretch"; }; } diff --git a/pkgs/by-name/pa/pax-utils/package.nix b/pkgs/by-name/pa/pax-utils/package.nix index 14835781a4ce..e93d7989ee33 100644 --- a/pkgs/by-name/pa/pax-utils/package.nix +++ b/pkgs/by-name/pa/pax-utils/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "ELF utils that can check files for security relevant properties"; longDescription = '' A suite of ELF tools to aid auditing systems. Contains @@ -59,9 +59,9 @@ stdenv.mkDerivation rec { binary files. ''; homepage = "https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice joachifm ]; diff --git a/pkgs/by-name/pa/pax/package.nix b/pkgs/by-name/pa/pax/package.nix index f3ef5f3700a7..b7888f183483 100644 --- a/pkgs/by-name/pa/pax/package.nix +++ b/pkgs/by-name/pa/pax/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { install -Dm444 mans/pax{,cpio,tar}.1 -t $out/share/man/man1/ ''; - meta = with lib; { + meta = { description = "POSIX standard archive tool from MirBSD"; homepage = "https://www.mirbsd.org/pax.htm"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pa/paxctl/package.nix b/pkgs/by-name/pa/paxctl/package.nix index 8f6741d68acb..05ea53dea8b4 100644 --- a/pkgs/by-name/pa/paxctl/package.nix +++ b/pkgs/by-name/pa/paxctl/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { "MANDIR=share/man/man1" ]; - meta = with lib; { + meta = { description = "Tool for controlling PaX flags on a per binary basis"; mainProgram = "paxctl"; homepage = "https://pax.grsecurity.net"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/pa/paxtest/package.nix b/pkgs/by-name/pa/paxtest/package.nix index 85aefd59fa36..f4819190dd8a 100644 --- a/pkgs/by-name/pa/paxtest/package.nix +++ b/pkgs/by-name/pa/paxtest/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ]; installFlags = [ "DESTDIR=\"\"" ]; - meta = with lib; { + meta = { description = "Test various memory protection measures"; mainProgram = "paxtest"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ joachifm ]; }; diff --git a/pkgs/by-name/pa/payload_dumper/package.nix b/pkgs/by-name/pa/payload_dumper/package.nix index e9973cb57b75..4a4625711e44 100644 --- a/pkgs/by-name/pa/payload_dumper/package.nix +++ b/pkgs/by-name/pa/payload_dumper/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = finalAttrs.src.meta.homepage; description = "Android OTA payload dumper"; - license = licenses.gpl3; - maintainers = with maintainers; [ DamienCassou ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ DamienCassou ]; mainProgram = "payload_dumper"; }; }) diff --git a/pkgs/by-name/pa/pazi/package.nix b/pkgs/by-name/pa/pazi/package.nix index ec3968612093..f362a35593ef 100644 --- a/pkgs/by-name/pa/pazi/package.nix +++ b/pkgs/by-name/pa/pazi/package.nix @@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec { installManPage packaging/man/pazi.1 ''; - meta = with lib; { + meta = { description = "Autojump \"zap to directory\" helper"; homepage = "https://github.com/euank/pazi"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "pazi"; }; diff --git a/pkgs/by-name/pb/pb_cli/package.nix b/pkgs/by-name/pb/pb_cli/package.nix index b89e33bb5930..a1093ef12e18 100644 --- a/pkgs/by-name/pb/pb_cli/package.nix +++ b/pkgs/by-name/pb/pb_cli/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { --prefix PATH : '${lib.makeBinPath liveDeps}' ''; - meta = with lib; { + meta = { description = "No bullshit 0x0.st client"; homepage = "https://github.com/ptpb/pb_cli"; - maintainers = [ maintainers.ar1a ]; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.ar1a ]; + license = lib.licenses.gpl3Plus; mainProgram = "pb"; }; } diff --git a/pkgs/by-name/pb/pbgopy/package.nix b/pkgs/by-name/pb/pbgopy/package.nix index 2647a80cc856..66766f18893f 100644 --- a/pkgs/by-name/pb/pbgopy/package.nix +++ b/pkgs/by-name/pb/pbgopy/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-S2X74My6wyDZOsEYTDilCFaYgV2vQzU0jOAY9cEkJ6A="; - meta = with lib; { + meta = { description = "Copy and paste between devices"; mainProgram = "pbgopy"; homepage = "https://github.com/nakabonne/pbgopy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pb/pbm/package.nix b/pkgs/by-name/pb/pbm/package.nix index fcc90639db78..ab1d9748645d 100644 --- a/pkgs/by-name/pb/pbm/package.nix +++ b/pkgs/by-name/pb/pbm/package.nix @@ -6,13 +6,13 @@ buildDotnetGlobalTool { nugetHash = "sha256-Rx7L1Bl2VwsAZMGudsFA7K++WuhJpjqlRsHMuBebo6Y="; - meta = with lib; { + meta = { description = "CLI for managing Akka.NET applications and Akka.NET Clusters"; homepage = "https://cmd.petabridge.com/index.html"; changelog = "https://cmd.petabridge.com/articles/RELEASE_NOTES.html"; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ anpin mdarocha ]; diff --git a/pkgs/by-name/pb/pbpctrl/package.nix b/pkgs/by-name/pb/pbpctrl/package.nix index 21b4001dbd01..2fd330b52df4 100644 --- a/pkgs/by-name/pb/pbpctrl/package.nix +++ b/pkgs/by-name/pb/pbpctrl/package.nix @@ -26,18 +26,18 @@ rustPlatform.buildRustPackage rec { ]; buildInputs = [ dbus ]; - meta = with lib; { + meta = { description = "Control Google Pixel Buds Pro from the Linux command line"; homepage = "https://github.com/qzed/pbpctrl"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ vanilla cafkafk ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "pbpctrl"; }; } diff --git a/pkgs/by-name/pb/pbzip2/package.nix b/pkgs/by-name/pb/pbzip2/package.nix index b1c3ca022fe1..c9748ebb0740 100644 --- a/pkgs/by-name/pb/pbzip2/package.nix +++ b/pkgs/by-name/pb/pbzip2/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "http://compression.ca/pbzip2/"; description = "Parallel implementation of bzip2 for multi-core machines"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pb/pbzx/package.nix b/pkgs/by-name/pb/pbzx/package.nix index 804946ad88e9..5076244d2e4e 100644 --- a/pkgs/by-name/pb/pbzx/package.nix +++ b/pkgs/by-name/pb/pbzx/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { mkdir -p $out/bin cp pbzx $out/bin ''; - meta = with lib; { + meta = { description = "Stream parser of Apple's pbzx compression format"; - platforms = platforms.unix; - license = licenses.gpl3; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "pbzx"; }; diff --git a/pkgs/by-name/pc/pc-ble-driver/package.nix b/pkgs/by-name/pc/pc-ble-driver/package.nix index cfa299a04036..f2b4ff953fc0 100644 --- a/pkgs/by-name/pc/pc-ble-driver/package.nix +++ b/pkgs/by-name/pc/pc-ble-driver/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { udev ]; - meta = with lib; { + meta = { description = "Desktop library for Bluetooth low energy development"; homepage = "https://github.com/NordicSemiconductor/pc-ble-driver"; - license = licenses.unfreeRedistributable; - platforms = platforms.unix; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pc/pcalc/package.nix b/pkgs/by-name/pc/pcalc/package.nix index 1c0078912467..2cecb56e3d01 100644 --- a/pkgs/by-name/pc/pcalc/package.nix +++ b/pkgs/by-name/pc/pcalc/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://vapier.github.io/pcalc/"; description = "Programmer's calculator"; mainProgram = "pcalc"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ftrvxmtrx ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ftrvxmtrx ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pc/pcapc/package.nix b/pkgs/by-name/pc/pcapc/package.nix index 2c1fd2144f45..ee22b19609cf 100644 --- a/pkgs/by-name/pc/pcapc/package.nix +++ b/pkgs/by-name/pc/pcapc/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/post-factum/pcapc"; description = "Compile libpcap filter expressions into BPF opcodes"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; mainProgram = "pcapc"; }; } diff --git a/pkgs/by-name/pc/pcapfix/package.nix b/pkgs/by-name/pc/pcapfix/package.nix index a5eeb47023aa..782e8ea760d7 100644 --- a/pkgs/by-name/pc/pcapfix/package.nix +++ b/pkgs/by-name/pc/pcapfix/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { postPatch = ''sed -i "s|/usr|$out|" Makefile''; - meta = with lib; { + meta = { homepage = "https://f00l.de/pcapfix/"; description = "Repair your broken pcap and pcapng files"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; mainProgram = "pcapfix"; }; } diff --git a/pkgs/by-name/pc/pcaudiolib/package.nix b/pkgs/by-name/pc/pcaudiolib/package.nix index 10ea21b2e38d..2b4c092eec1d 100644 --- a/pkgs/by-name/pc/pcaudiolib/package.nix +++ b/pkgs/by-name/pc/pcaudiolib/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation (finalAttrs: { ./autogen.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/espeak-ng/pcaudiolib"; description = "Provides a C API to different audio devices"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aske ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aske ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pc/pcb/package.nix b/pkgs/by-name/pc/pcb/package.nix index e81c92f9cd56..7a21f53684aa 100644 --- a/pkgs/by-name/pc/pcb/package.nix +++ b/pkgs/by-name/pc/pcb/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { "--disable-update-desktop-database" ]; - meta = with lib; { + meta = { description = "Printed Circuit Board editor"; homepage = "https://sourceforge.net/projects/pcb/"; - maintainers = with maintainers; [ mog ]; - platforms = platforms.linux; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ mog ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/pc/pcb2gcode/package.nix b/pkgs/by-name/pc/pcb2gcode/package.nix index 06ea18078fdb..0bbfe545261a 100644 --- a/pkgs/by-name/pc/pcb2gcode/package.nix +++ b/pkgs/by-name/pc/pcb2gcode/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { --replace '`git describe --dirty --always --tags`' '${version}' ''; - meta = with lib; { + meta = { description = "Command-line tool for isolation, routing and drilling of PCBs"; longDescription = '' pcb2gcode is a command-line software for the isolation, routing and drilling of PCBs. @@ -52,8 +52,8 @@ stdenv.mkDerivation rec { It also includes an Autoleveller, useful for the automatic dynamic calibration of the milling depth. ''; homepage = "https://github.com/pcb2gcode/pcb2gcode"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kritnich ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kritnich ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pc/pcem/package.nix b/pkgs/by-name/pc/pcem/package.nix index 287e7b31c952..570ec6d15cec 100644 --- a/pkgs/by-name/pc/pcem/package.nix +++ b/pkgs/by-name/pc/pcem/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { # Fix GCC 14 build env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types"; - meta = with lib; { + meta = { description = "Emulator for IBM PC computers and clones"; mainProgram = "pcem"; homepage = "https://pcem-emulator.co.uk/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.terin ]; - platforms = platforms.linux ++ platforms.windows; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.terin ]; + platforms = lib.platforms.linux ++ lib.platforms.windows; }; } diff --git a/pkgs/by-name/pc/pcimem/package.nix b/pkgs/by-name/pc/pcimem/package.nix index 8276428bd634..739c886fc439 100644 --- a/pkgs/by-name/pc/pcimem/package.nix +++ b/pkgs/by-name/pc/pcimem/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { install -D README "$doc/doc/README" ''; - meta = with lib; { + meta = { description = "Simple method of reading and writing to memory registers on a PCI card"; mainProgram = "pcimem"; homepage = "https://github.com/billfarrow/pcimem"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ mafo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mafo ]; }; } diff --git a/pkgs/by-name/pc/pciutils/package.nix b/pkgs/by-name/pc/pciutils/package.nix index b3a0d2b91357..3208be4f17dd 100644 --- a/pkgs/by-name/pc/pciutils/package.nix +++ b/pkgs/by-name/pc/pciutils/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://mj.ucw.cz/sw/pciutils/"; description = "Collection of programs for inspecting and manipulating configuration of PCI devices"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.vcunat ]; # not really, but someone should watch it mainProgram = "lspci"; }; } diff --git a/pkgs/by-name/pc/pcloud/package.nix b/pkgs/by-name/pc/pcloud/package.nix index 69fb7076ceec..0f0f637c8f12 100644 --- a/pkgs/by-name/pc/pcloud/package.nix +++ b/pkgs/by-name/pc/pcloud/package.nix @@ -118,13 +118,13 @@ stdenv.mkDerivation { ln -snf $out/share/icons/hicolor/512x512/apps/pcloud.png $out/app/pcloud.png ''; - meta = with lib; { + meta = { description = "Secure and simple to use cloud storage for your files; pCloud Drive, Electron Edition"; homepage = "https://www.pcloud.com/"; changelog = "https://www.pcloud.com/release-notes/linux.html"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ patryk27 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ patryk27 ]; platforms = [ "x86_64-linux" ]; mainProgram = "pcloud"; }; diff --git a/pkgs/by-name/pc/pcm/package.nix b/pkgs/by-name/pc/pcm/package.nix index e5cabe5e0558..f0e4010d52bb 100644 --- a/pkgs/by-name/pc/pcm/package.nix +++ b/pkgs/by-name/pc/pcm/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Processor counter monitor"; homepage = "https://www.intel.com/software/pcm"; - license = licenses.bsd3; - maintainers = with maintainers; [ roosemberth ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ roosemberth ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/pc/pcmanx-gtk2/package.nix b/pkgs/by-name/pc/pcmanx-gtk2/package.nix index 9e2bea957a66..9e21a31ae0c6 100644 --- a/pkgs/by-name/pc/pcmanx-gtk2/package.nix +++ b/pkgs/by-name/pc/pcmanx-gtk2/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { cd libltdl; autoreconf; cd .. ''; - meta = with lib; { + meta = { homepage = "https://pcman.ptt.cc"; - license = licenses.gpl2; + license = lib.licenses.gpl2; description = "Telnet BBS browser with GTK interface"; - maintainers = [ maintainers.sifmelcara ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.sifmelcara ]; + platforms = lib.platforms.linux; mainProgram = "pcmanx"; }; } diff --git a/pkgs/by-name/pc/pcmsolver/package.nix b/pkgs/by-name/pc/pcmsolver/package.nix index 2e34570f4c72..3f6b02e04247 100644 --- a/pkgs/by-name/pc/pcmsolver/package.nix +++ b/pkgs/by-name/pc/pcmsolver/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { # Requires files, that are not installed. doCheck = false; - meta = with lib; { + meta = { description = "API for the Polarizable Continuum Model"; mainProgram = "run_pcm"; homepage = "https://pcmsolver.readthedocs.io/en/stable/"; - license = licenses.lgpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/pc/pcsc-cyberjack/package.nix b/pkgs/by-name/pc/pcsc-cyberjack/package.nix index 2dad6ad25a96..7bdde5e55a4e 100644 --- a/pkgs/by-name/pc/pcsc-cyberjack/package.nix +++ b/pkgs/by-name/pc/pcsc-cyberjack/package.nix @@ -49,15 +49,15 @@ stdenv.mkDerivation rec { postInstall = "make -C tools/cjflash install"; - meta = with lib; { + meta = { description = "REINER SCT cyberJack USB chipcard reader user space driver"; mainProgram = "cjflash"; homepage = "https://www.reiner-sct.com/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ aszlig flokli ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pc/pcsc-safenet/package.nix b/pkgs/by-name/pc/pcsc-safenet/package.nix index aff69122f3a8..1feda3f27b03 100644 --- a/pkgs/by-name/pc/pcsc-safenet/package.nix +++ b/pkgs/by-name/pc/pcsc-safenet/package.nix @@ -91,12 +91,12 @@ stdenv.mkDerivation rec { done; ''; - meta = with lib; { + meta = { homepage = "https://safenet.gemalto.com/multi-factor-authentication/security-applications/authentication-client-token-management"; description = "Safenet Authentication Client"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ wldhx ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ wldhx ]; }; } diff --git a/pkgs/by-name/pc/pcsc-scm-scl011/package.nix b/pkgs/by-name/pc/pcsc-scm-scl011/package.nix index 3516a415b3b3..aedf6ddf3680 100644 --- a/pkgs/by-name/pc/pcsc-scm-scl011/package.nix +++ b/pkgs/by-name/pc/pcsc-scm-scl011/package.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation rec { $out/pcsc/drivers/SCLGENERIC.bundle/Contents/Linux/libSCLGENERIC.so.${version}; ''; - meta = with lib; { + meta = { description = "SCM Microsystems SCL011 chipcard reader user space driver"; homepage = "https://www.scm-pc-card.de/index.php?lang=en&page=product&function=show_product&product_id=630"; downloadPage = "https://support.identiv.com/scl010-scl011/"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ sephalon ]; - platforms = platforms.linux; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ sephalon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pc/pcsc-tools/package.nix b/pkgs/by-name/pc/pcsc-tools/package.nix index 1dbdcb1df6c3..833a3ede87d2 100644 --- a/pkgs/by-name/pc/pcsc-tools/package.nix +++ b/pkgs/by-name/pc/pcsc-tools/package.nix @@ -123,16 +123,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Tools used to test a PC/SC driver, card or reader"; homepage = "https://pcsc-tools.apdu.fr/"; changelog = "https://github.com/LudovicRousseau/pcsc-tools/releases/tag/${finalAttrs.version}"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "pcsc_scan"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ peterhoeg anthonyroussel ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pc/pcstat/package.nix b/pkgs/by-name/pc/pcstat/package.nix index 2b9b2ddb5c2a..211eb97b6b4b 100644 --- a/pkgs/by-name/pc/pcstat/package.nix +++ b/pkgs/by-name/pc/pcstat/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-fdfiHTE8lySfyiKKiYJsQNCY6MBfjaVYSIZXtofIz3E="; - meta = with lib; { + meta = { description = "Page Cache stat: get page cache stats for files on Linux"; homepage = "https://github.com/tobert/pcstat"; - license = licenses.asl20; - maintainers = with maintainers; [ aminechikhaoui ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aminechikhaoui ]; mainProgram = "pcstat"; }; } diff --git a/pkgs/by-name/pd/pdal/package.nix b/pkgs/by-name/pd/pdal/package.nix index 1ef086381c0a..e538e51979af 100644 --- a/pkgs/by-name/pd/pdal/package.nix +++ b/pkgs/by-name/pd/pdal/package.nix @@ -137,12 +137,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Point Data Abstraction Library. GDAL for point cloud data"; homepage = "https://pdal.io"; - license = licenses.bsd3; - teams = [ teams.geospatial ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + teams = [ lib.teams.geospatial ]; + platforms = lib.platforms.all; pkgConfigModules = [ "pdal" ]; }; }) diff --git a/pkgs/by-name/pd/pdf-quench/package.nix b/pkgs/by-name/pd/pdf-quench/package.nix index b3f396c690eb..bb682fd5b253 100644 --- a/pkgs/by-name/pd/pdf-quench/package.nix +++ b/pkgs/by-name/pd/pdf-quench/package.nix @@ -39,12 +39,12 @@ python3.pkgs.buildPythonApplication { install -D -T -m 755 src/pdf_quench.py $out/bin/pdf-quench ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxerwang/pdf-quench"; description = "Visual tool for cropping pdf files"; mainProgram = "pdf-quench"; - platforms = platforms.linux; - license = licenses.gpl2; - maintainers = with maintainers; [ flokli ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/pd/pdf2odt/package.nix b/pkgs/by-name/pd/pdf2odt/package.nix index 5a83db69f76e..17420c45a8fa 100644 --- a/pkgs/by-name/pd/pdf2odt/package.nix +++ b/pkgs/by-name/pd/pdf2odt/package.nix @@ -56,11 +56,11 @@ resholve.mkDerivation { ]; }; - meta = with lib; { + meta = { description = "PDF to ODT/ODS format converter"; homepage = "https://github.com/gutschke/pdf2odt"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/by-name/pd/pdf2svg/package.nix b/pkgs/by-name/pd/pdf2svg/package.nix index 86040410708c..b99dd94f8cbd 100644 --- a/pkgs/by-name/pd/pdf2svg/package.nix +++ b/pkgs/by-name/pd/pdf2svg/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { gtk2 ]; - meta = with lib; { + meta = { description = "PDF converter to SVG format"; homepage = "http://www.cityinthesky.co.uk/opensource/pdf2svg"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.ianwookim ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.ianwookim ]; + platforms = lib.platforms.unix; mainProgram = "pdf2svg"; }; } diff --git a/pkgs/by-name/pd/pdfannots/package.nix b/pkgs/by-name/pd/pdfannots/package.nix index 4cd56f2217c6..68eae7c483c2 100644 --- a/pkgs/by-name/pd/pdfannots/package.nix +++ b/pkgs/by-name/pd/pdfannots/package.nix @@ -28,10 +28,10 @@ python3.pkgs.buildPythonApplication rec { "pdfannots" ]; - meta = with lib; { + meta = { description = "Extracts and formats text annotations from a PDF file"; homepage = "https://github.com/0xabu/pdfannots"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "pdfannots"; }; diff --git a/pkgs/by-name/pd/pdfannots2json/package.nix b/pkgs/by-name/pd/pdfannots2json/package.nix index a75e19627a35..8605de557418 100644 --- a/pkgs/by-name/pd/pdfannots2json/package.nix +++ b/pkgs/by-name/pd/pdfannots2json/package.nix @@ -20,11 +20,11 @@ buildGoModule { vendorHash = null; - meta = with lib; { + meta = { homepage = "https://github.com/mgmeyers/pdfannots2json"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; description = "Tool to convert PDF annotations to JSON"; mainProgram = "pdfannots2json"; - maintainers = with maintainers; [ _0nyr ]; + maintainers = with lib.maintainers; [ _0nyr ]; }; } diff --git a/pkgs/by-name/pd/pdfchain/package.nix b/pkgs/by-name/pd/pdfchain/package.nix index ead2d258c08e..38572e36574f 100644 --- a/pkgs/by-name/pd/pdfchain/package.nix +++ b/pkgs/by-name/pd/pdfchain/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { --replace "/usr/share" "$out/share" ''; - meta = with lib; { + meta = { description = "Graphical user interface for the PDF Toolkit (PDFtk)"; homepage = "https://pdfchain.sourceforge.io"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hqurve ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hqurve ]; + platforms = lib.platforms.unix; mainProgram = "pdfchain"; }; } diff --git a/pkgs/by-name/pd/pdfcpu/package.nix b/pkgs/by-name/pd/pdfcpu/package.nix index e62672964b97..a43340a0d5c0 100644 --- a/pkgs/by-name/pd/pdfcpu/package.nix +++ b/pkgs/by-name/pd/pdfcpu/package.nix @@ -76,11 +76,11 @@ buildGoModule rec { subPackages = [ "cmd/pdfcpu" ]; - meta = with lib; { + meta = { description = "PDF processor written in Go"; homepage = "https://pdfcpu.io"; - license = licenses.asl20; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "pdfcpu"; }; } diff --git a/pkgs/by-name/pd/pdfcrack/package.nix b/pkgs/by-name/pd/pdfcrack/package.nix index 2ea8dd2e7f30..63ee7f130745 100644 --- a/pkgs/by-name/pd/pdfcrack/package.nix +++ b/pkgs/by-name/pd/pdfcrack/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { install -Dt $out/bin pdfcrack ''; - meta = with lib; { + meta = { homepage = "https://pdfcrack.sourceforge.net/"; description = "Small command line driven tool for recovering passwords and content from PDF files"; mainProgram = "pdfcrack"; - license = with licenses; [ gpl2Plus ]; - platforms = platforms.all; - maintainers = with maintainers; [ qoelet ]; + license = with lib.licenses; [ gpl2Plus ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ qoelet ]; }; } diff --git a/pkgs/by-name/pd/pdfdiff/package.nix b/pkgs/by-name/pd/pdfdiff/package.nix index a24d180f6493..7cdf764ff33f 100644 --- a/pkgs/by-name/pd/pdfdiff/package.nix +++ b/pkgs/by-name/pd/pdfdiff/package.nix @@ -34,10 +34,10 @@ python3Packages.buildPythonApplication rec { chmod +x $out/bin/pdfdiff ''; - meta = with lib; { + meta = { homepage = "https://github.com/cascremers/pdfdiff"; description = "Tool to view the difference between two PDF or PS files"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pd/pdfid/package.nix b/pkgs/by-name/pd/pdfid/package.nix index 18dfd9bfe582..d6d551b1716d 100644 --- a/pkgs/by-name/pd/pdfid/package.nix +++ b/pkgs/by-name/pd/pdfid/package.nix @@ -33,12 +33,12 @@ python3Packages.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Scan a file to look for certain PDF keywords"; homepage = "https://blog.didierstevens.com/programs/pdf-tools/"; - license = with licenses; [ free ]; + license = with lib.licenses; [ free ]; mainProgram = "pdfid"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pd/pdfmixtool/package.nix b/pkgs/by-name/pd/pdfmixtool/package.nix index 59c43ddb578f..489bc80c7b15 100644 --- a/pkgs/by-name/pd/pdfmixtool/package.nix +++ b/pkgs/by-name/pd/pdfmixtool/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { podofo ]; - meta = with lib; { + meta = { description = "Application to split, merge, rotate and mix PDF files"; mainProgram = "pdfmixtool"; homepage = "https://gitlab.com/scarpetta/pdfmixtool"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/pd/pdfmm/package.nix b/pkgs/by-name/pd/pdfmm/package.nix index 0afddc6f64ae..eaffafe2fa00 100644 --- a/pkgs/by-name/pd/pdfmm/package.nix +++ b/pkgs/by-name/pd/pdfmm/package.nix @@ -49,12 +49,12 @@ resholve.mkDerivation { keep."$toutLu" = true; }; - meta = with lib; { + meta = { description = "Graphical assistant to reduce the size of a PDF file"; homepage = "https://github.com/jpfleury/pdfmm"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "pdfmm"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/pd/pdfposter/package.nix b/pkgs/by-name/pd/pdfposter/package.nix index e241327cf2de..98162fdc054d 100644 --- a/pkgs/by-name/pd/pdfposter/package.nix +++ b/pkgs/by-name/pd/pdfposter/package.nix @@ -41,11 +41,11 @@ buildPythonApplication rec { "pdftools.pdfposter.cmd" ]; - meta = with lib; { + meta = { description = "Split large pages of a PDF into smaller ones for poster printing"; mainProgram = "pdfposter"; homepage = "https://pdfposter.readthedocs.io"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wamserma ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wamserma ]; }; } diff --git a/pkgs/by-name/pd/pdfsandwich/package.nix b/pkgs/by-name/pd/pdfsandwich/package.nix index 7a03b5df7ff9..be223a5dc20f 100644 --- a/pkgs/by-name/pd/pdfsandwich/package.nix +++ b/pkgs/by-name/pd/pdfsandwich/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation { cp -p pdfsandwich.1.gz $out/man/man1 ''; - meta = with lib; { + meta = { description = "OCR tool for scanned PDFs"; homepage = "http://www.tobias-elze.de/pdfsandwich/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.rps ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.rps ]; + platforms = lib.platforms.linux; mainProgram = "pdfsandwich"; }; } diff --git a/pkgs/by-name/pd/pdfslicer/package.nix b/pkgs/by-name/pd/pdfslicer/package.nix index 27ac7fb33c5d..b8b679d08a84 100644 --- a/pkgs/by-name/pd/pdfslicer/package.nix +++ b/pkgs/by-name/pd/pdfslicer/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { # Pending upstream compatibility with GCC 13 lib.optional (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "13") "-Wno-changes-meaning"; - meta = with lib; { + meta = { description = "Simple application to extract, merge, rotate and reorder pages of PDF documents"; homepage = "https://junrrein.github.io/pdfslicer/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/pd/pdftag/package.nix b/pkgs/by-name/pd/pdftag/package.nix index bb8d7e0bbbe1..008e12971582 100644 --- a/pkgs/by-name/pd/pdftag/package.nix +++ b/pkgs/by-name/pd/pdftag/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { poppler ]; - meta = with lib; { + meta = { description = "Edit metadata found in PDFs"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; mainProgram = "pdftag"; }; } diff --git a/pkgs/by-name/pd/pdftk/package.nix b/pkgs/by-name/pd/pdftk/package.nix index 54f55796473b..c8c355d29e69 100644 --- a/pkgs/by-name/pd/pdftk/package.nix +++ b/pkgs/by-name/pd/pdftk/package.nix @@ -56,19 +56,19 @@ stdenv.mkDerivation rec { cp ${src}/pdftk.1 $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Command-line tool for working with PDFs"; homepage = "https://gitlab.com/pdftk-java/pdftk"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin averelld ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "pdftk"; }; } diff --git a/pkgs/by-name/pd/pdftoipe/package.nix b/pkgs/by-name/pd/pdftoipe/package.nix index 3f4219e83d20..54593bfc433d 100644 --- a/pkgs/by-name/pd/pdftoipe/package.nix +++ b/pkgs/by-name/pd/pdftoipe/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { install -D pdftoipe $out/bin/pdftoipe ''; - meta = with lib; { + meta = { description = "Program that tries to convert arbitrary PDF documents to Ipe files"; homepage = "https://github.com/otfried/ipe-tools"; changelog = "https://github.com/otfried/ipe-tools/releases"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ yrd ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ yrd ]; mainProgram = "pdftoipe"; }; } diff --git a/pkgs/by-name/pd/pdns/package.nix b/pkgs/by-name/pd/pdns/package.nix index d6f783a5db90..e1ee413a8e2e 100644 --- a/pkgs/by-name/pd/pdns/package.nix +++ b/pkgs/by-name/pd/pdns/package.nix @@ -100,13 +100,13 @@ stdenv.mkDerivation (finalAttrs: { __structuredAttrs = true; - meta = with lib; { + meta = { description = "Authoritative DNS server"; homepage = "https://www.powerdns.com"; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mic92 disassembler nickcao diff --git a/pkgs/by-name/pd/pdnsd/package.nix b/pkgs/by-name/pd/pdnsd/package.nix index 0a09453b3b38..473a434a3901 100644 --- a/pkgs/by-name/pd/pdnsd/package.nix +++ b/pkgs/by-name/pd/pdnsd/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { # fix ipv6 on darwin CPPFLAGS = "-D__APPLE_USE_RFC_3542"; - meta = with lib; { + meta = { description = "Permanent DNS caching"; homepage = "http://members.home.nl/p.a.rombouts/pdnsd"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pd/pdpmake/package.nix b/pkgs/by-name/pd/pdpmake/package.nix index 59f7ecc23e48..303c1709da13 100644 --- a/pkgs/by-name/pd/pdpmake/package.nix +++ b/pkgs/by-name/pd/pdpmake/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/rmyorston/pdpmake"; description = "Public domain POSIX make"; - license = licenses.unlicense; - maintainers = with maintainers; [ eownerdead ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ eownerdead ]; mainProgram = "pdpmake"; - platforms = platforms.all; - badPlatforms = platforms.darwin; # Requires `uimensat` + platforms = lib.platforms.all; + badPlatforms = lib.platforms.darwin; # Requires `uimensat` }; } diff --git a/pkgs/by-name/pe/pecita/package.nix b/pkgs/by-name/pe/pecita/package.nix index a084e5bc28a1..d869f8eef266 100644 --- a/pkgs/by-name/pe/pecita/package.nix +++ b/pkgs/by-name/pe/pecita/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://pecita.eu/police-en.php"; description = "Handwritten font with connected glyphs"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/pe/peek/package.nix b/pkgs/by-name/pe/peek/package.nix index 54921269b88e..aa45314f3dcd 100644 --- a/pkgs/by-name/pe/peek/package.nix +++ b/pkgs/by-name/pe/peek/package.nix @@ -89,12 +89,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/phw/peek"; description = "Simple animated GIF screen recorder with an easy to use interface"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ puffnfresh ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ puffnfresh ]; + platforms = lib.platforms.linux; mainProgram = "peek"; }; } diff --git a/pkgs/by-name/pe/peep/package.nix b/pkgs/by-name/pe/peep/package.nix index 1f7417801a7b..70fd7dc4f9fe 100644 --- a/pkgs/by-name/pe/peep/package.nix +++ b/pkgs/by-name/pe/peep/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-9VybBzW+saOjtQiyGu2pKHm94yCPw35Y56mhayCeW/c="; - meta = with lib; { + meta = { description = "CLI text viewer tool that works like less command on small pane within the terminal window"; homepage = "https://github.com/ryochack/peep"; changelog = "https://github.com/ryochack/peep/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "peep"; }; diff --git a/pkgs/by-name/pe/peering-manager/package.nix b/pkgs/by-name/pe/peering-manager/package.nix index 16832617ce0a..8ee22ea0c81a 100644 --- a/pkgs/by-name/pe/peering-manager/package.nix +++ b/pkgs/by-name/pe/peering-manager/package.nix @@ -86,12 +86,12 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://peering-manager.net/"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "BGP sessions management tool"; mainProgram = "peering-manager"; - teams = [ teams.wdz ]; - platforms = platforms.linux; + teams = [ lib.teams.wdz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pe/peertube-viewer/package.nix b/pkgs/by-name/pe/peertube-viewer/package.nix index 6f74d4aa2b2b..7781aa29be2e 100644 --- a/pkgs/by-name/pe/peertube-viewer/package.nix +++ b/pkgs/by-name/pe/peertube-viewer/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-Pf8Jj8XGYbNOAyYEBdAysOK92S3S7bZHerQh/2UlrbQ="; - meta = with lib; { + meta = { description = "Simple CLI browser for the peertube federated video platform"; homepage = "https://gitlab.com/peertube-viewer/peertube-viewer-rs"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ haruki7049 ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ haruki7049 ]; mainProgram = "peertube-viewer-rs"; }; } diff --git a/pkgs/by-name/pe/peg/package.nix b/pkgs/by-name/pe/peg/package.nix index 924cb4019280..efdcb359de6c 100644 --- a/pkgs/by-name/pe/peg/package.nix +++ b/pkgs/by-name/pe/peg/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { preBuild = "makeFlagsArray+=( PREFIX=$out )"; - meta = with lib; { + meta = { homepage = "http://piumarta.com/software/peg/"; description = "Tools for generating recursive-descent parsers: programs that perform pattern matching on text"; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/pe/pell/package.nix b/pkgs/by-name/pe/pell/package.nix index dcd2932abea8..2a6531a90b10 100644 --- a/pkgs/by-name/pe/pell/package.nix +++ b/pkgs/by-name/pe/pell/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation { substituteInPlace $out/bin/pell --replace "/usr/share/pell/offline.mp3" "$out/share/offline.mp3" ''; - meta = with lib; { + meta = { homepage = "https://github.com/ebzzry/pell"; description = "Simple host availability monitor"; - license = licenses.mit; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; mainProgram = "pell"; }; diff --git a/pkgs/by-name/pe/pencil/package.nix b/pkgs/by-name/pe/pencil/package.nix index 35cbfbf83c17..544122a42127 100644 --- a/pkgs/by-name/pe/pencil/package.nix +++ b/pkgs/by-name/pe/pencil/package.nix @@ -123,17 +123,17 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : $out/opt/pencil ''; - meta = with lib; { + meta = { description = "GUI prototyping/mockup tool"; mainProgram = "pencil"; homepage = "https://pencil.evolus.vn/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2; # Commercial license is also available - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2; # Commercial license is also available + maintainers = with lib.maintainers; [ bjornfor prikhi mrVanDalo ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pe/penna/package.nix b/pkgs/by-name/pe/penna/package.nix index d760dd672cbd..481f6f117835 100644 --- a/pkgs/by-name/pe/penna/package.nix +++ b/pkgs/by-name/pe/penna/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/penna/"; description = "Geometric sans serif designed by Sora Sagano"; longDescription = '' @@ -34,10 +34,10 @@ stdenvNoCC.mkDerivation { with outsized counters in the uppercase and a lowercase with a small x-height. ''; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/pe/perccli/package.nix b/pkgs/by-name/pe/perccli/package.nix index 0f9ad28e5dfe..8fda19675a86 100644 --- a/pkgs/by-name/pe/perccli/package.nix +++ b/pkgs/by-name/pe/perccli/package.nix @@ -49,15 +49,15 @@ stdenvNoCC.mkDerivation rec { # Not needed because the binary is statically linked dontFixup = true; - meta = with lib; { + meta = { description = "Perccli Support for PERC RAID controllers"; # Must be updated with every release homepage = "https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=tdghn"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ panicgh ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ panicgh ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/pe/percollate/package.nix b/pkgs/by-name/pe/percollate/package.nix index 4578bbd8554d..04ffbd0f4ed2 100644 --- a/pkgs/by-name/pe/percollate/package.nix +++ b/pkgs/by-name/pe/percollate/package.nix @@ -40,11 +40,11 @@ buildNpmPackage rec { --set PUPPETEER_EXECUTABLE_PATH ${chromium}/bin/chromium ''; - meta = with lib; { + meta = { description = "Command-line tool to turn web pages into readable PDF, EPUB, HTML, or Markdown docs"; homepage = "https://github.com/danburzo/percollate"; - license = licenses.mit; - maintainers = [ maintainers.austinbutler ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.austinbutler ]; mainProgram = "percollate"; }; } diff --git a/pkgs/by-name/pe/perf-tools/package.nix b/pkgs/by-name/pe/perf-tools/package.nix index 12c62f70e5c9..0730170ac50e 100644 --- a/pkgs/by-name/pe/perf-tools/package.nix +++ b/pkgs/by-name/pe/perf-tools/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { mv $d/man $out/share/ ''; - meta = with lib; { - platforms = platforms.linux; + meta = { + platforms = lib.platforms.linux; homepage = "https://github.com/brendangregg/perf-tools"; description = "Performance analysis tools based on Linux perf_events (aka perf) and ftrace"; maintainers = [ ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/pe/perf/package.nix b/pkgs/by-name/pe/perf/package.nix index 8d48a881047e..9f7e7bfeef2e 100644 --- a/pkgs/by-name/pe/perf/package.nix +++ b/pkgs/by-name/pe/perf/package.nix @@ -163,11 +163,11 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { homepage = "https://perf.wiki.kernel.org/"; description = "Linux tools to profile with performance counters"; mainProgram = "perf"; - maintainers = with maintainers; [ tobim ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ tobim ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pe/perf_data_converter/package.nix b/pkgs/by-name/pe/perf_data_converter/package.nix index d2550d299181..d1f6e81ebe73 100644 --- a/pkgs/by-name/pe/perf_data_converter/package.nix +++ b/pkgs/by-name/pe/perf_data_converter/package.nix @@ -67,11 +67,11 @@ buildBazelPackage { ''; }; - meta = with lib; { + meta = { description = "Tool to convert Linux perf files to the profile.proto format used by pprof"; homepage = "https://github.com/google/perf_data_converter"; - license = licenses.bsd3; - maintainers = with maintainers; [ hzeller ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hzeller ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pe/perfect-hash/package.nix b/pkgs/by-name/pe/perfect-hash/package.nix index dfeb04d1c22c..e22ba5faf6f2 100644 --- a/pkgs/by-name/pe/perfect-hash/package.nix +++ b/pkgs/by-name/pe/perfect-hash/package.nix @@ -25,7 +25,7 @@ python3.pkgs.buildPythonApplication rec { cp -r examples $out/share/doc/perfect-hash ''; - meta = with lib; { + meta = { description = "Minimal perfect hash function generator"; mainProgram = "perfect-hash"; longDescription = '' @@ -34,10 +34,10 @@ python3.pkgs.buildPythonApplication rec { output is code which implements the hash function. Templates can easily be constructed for any programming language. ''; - license = licenses.bsd3; - maintainers = [ maintainers.kaction ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.kaction ]; homepage = "https://github.com/ilanschnell/perfect-hash"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pe/performous/package.nix b/pkgs/by-name/pe/performous/package.nix index aa7e045c64fd..ef77e756f91b 100644 --- a/pkgs/by-name/pe/performous/package.nix +++ b/pkgs/by-name/pe/performous/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation rec { portaudio ]; - meta = with lib; { + meta = { description = "Karaoke, band and dancing game"; mainProgram = "performous"; homepage = "https://performous.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pe/persepolis/package.nix b/pkgs/by-name/pe/persepolis/package.nix index 34c2f9325b62..38de1e4b4a93 100644 --- a/pkgs/by-name/pe/persepolis/package.nix +++ b/pkgs/by-name/pe/persepolis/package.nix @@ -54,12 +54,12 @@ python3.pkgs.buildPythonApplication rec { ]) ]; - meta = with lib; { + meta = { description = "Download manager GUI written in Python"; mainProgram = "persepolis"; homepage = "https://persepolisdm.github.io/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ iFreilicht L0L1P0P ]; diff --git a/pkgs/by-name/pe/perseus-cli/package.nix b/pkgs/by-name/pe/perseus-cli/package.nix index d0c84cd37839..f0644e26c303 100644 --- a/pkgs/by-name/pe/perseus-cli/package.nix +++ b/pkgs/by-name/pe/perseus-cli/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { --prefix PATH : "${lib.makeBinPath [ wasm-pack ]}" ''; - meta = with lib; { + meta = { homepage = "https://framesurge.sh/perseus/en-US"; description = "High-level web development framework for Rust with full support for server-side rendering and static generation"; - maintainers = with maintainers; [ max-niederman ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ max-niederman ]; + license = with lib.licenses; [ mit ]; mainProgram = "perseus"; }; } diff --git a/pkgs/by-name/pe/peru/package.nix b/pkgs/by-name/pe/peru/package.nix index 2ea88f395292..1fb1543b5e34 100644 --- a/pkgs/by-name/pe/peru/package.nix +++ b/pkgs/by-name/pe/peru/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "peru" ]; - meta = with lib; { + meta = { homepage = "https://github.com/buildinspace/peru"; description = "Tool for including other people's code in your projects"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "peru"; }; diff --git a/pkgs/by-name/pe/pest-ide-tools/package.nix b/pkgs/by-name/pe/pest-ide-tools/package.nix index 21199c001a27..72d463644e5c 100644 --- a/pkgs/by-name/pe/pest-ide-tools/package.nix +++ b/pkgs/by-name/pe/pest-ide-tools/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "IDE support for Pest, via the LSP"; homepage = "https://pest.rs"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ nickhu ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ nickhu ]; mainProgram = "pest-language-server"; }; } diff --git a/pkgs/by-name/pe/pet/package.nix b/pkgs/by-name/pe/pet/package.nix index 8686474eea0c..90c0f68607d5 100644 --- a/pkgs/by-name/pe/pet/package.nix +++ b/pkgs/by-name/pe/pet/package.nix @@ -42,12 +42,12 @@ buildGoModule rec { --zsh $src/misc/completions/zsh/_pet ''; - meta = with lib; { + meta = { description = "Simple command-line snippet manager, written in Go"; mainProgram = "pet"; homepage = "https://github.com/knqyf263/pet"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/pe/pev/package.nix b/pkgs/by-name/pe/pev/package.nix index 030c5958abea..15e8c081ed7f 100644 --- a/pkgs/by-name/pe/pev/package.nix +++ b/pkgs/by-name/pe/pev/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Full-featured, open source, multiplatform command line toolkit to work with PE (Portable Executables) binaries"; homepage = "https://pev.sourceforge.net/"; - license = licenses.gpl2; - maintainers = with maintainers; [ jeschli ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ jeschli ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pe/pew/package.nix b/pkgs/by-name/pe/pew/package.nix index 4935c4d230bd..873647ad2c3f 100644 --- a/pkgs/by-name/pe/pew/package.nix +++ b/pkgs/by-name/pe/pew/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "pew" ]; - meta = with lib; { + meta = { homepage = "https://github.com/berdario/pew"; description = "Tools to manage multiple virtualenvs written in pure python"; mainProgram = "pew"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pf/pferd/package.nix b/pkgs/by-name/pf/pferd/package.nix index acae9c345028..0f44e4de298a 100644 --- a/pkgs/by-name/pf/pferd/package.nix +++ b/pkgs/by-name/pf/pferd/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec { certifi ]; - meta = with lib; { + meta = { homepage = "https://github.com/Garmelon/PFERD"; description = "Tool for downloading course-related files from ILIAS"; - license = licenses.mit; - maintainers = with maintainers; [ _0xbe7a ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _0xbe7a ]; mainProgram = "pferd"; }; } diff --git a/pkgs/by-name/pf/pffft/package.nix b/pkgs/by-name/pf/pffft/package.nix index 1679c076425d..e56f0b55b941 100644 --- a/pkgs/by-name/pf/pffft/package.nix +++ b/pkgs/by-name/pf/pffft/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Pretty Fast FFT (PFFFT) library"; homepage = "https://github.com/marton78/pffft"; - license = licenses.bsd3; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pf/pflotran/package.nix b/pkgs/by-name/pf/pflotran/package.nix index 037df5e99e81..a68316ceb3e9 100644 --- a/pkgs/by-name/pf/pflotran/package.nix +++ b/pkgs/by-name/pf/pflotran/package.nix @@ -75,10 +75,10 @@ stdenv.mkDerivation (finalAttrs: { --subst-var-by "HDF5_FORTRAN_INCLUDE" "${lib.getDev hdf5-fortran-mpi}/include" ''; - meta = with lib; { + meta = { description = "Parallel, multi-physics simulation code for subsurface flow and transport"; homepage = "https://pflotran.org/"; - license = licenses.lgpl3Only; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.lgpl3Only; + maintainers = [ lib.maintainers.sheepforce ]; }; }) diff --git a/pkgs/by-name/pf/pfsshell/package.nix b/pkgs/by-name/pf/pfsshell/package.nix index 5ebe0684e3c8..35a269140886 100644 --- a/pkgs/by-name/pf/pfsshell/package.nix +++ b/pkgs/by-name/pf/pfsshell/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation rec { # cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security] hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "PFS (PlayStation File System) shell for POSIX-based systems"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ gpl2Only # the pfsshell software itself afl20 # APA, PFS, and iomanX libraries which are compiled together with this package ]; - maintainers = with maintainers; [ makefu ]; + maintainers = with lib.maintainers; [ makefu ]; mainProgram = "pfsshell"; }; } diff --git a/pkgs/by-name/pg/pg_activity/package.nix b/pkgs/by-name/pg/pg_activity/package.nix index 19b6431ce9a7..8244a42fb6ec 100644 --- a/pkgs/by-name/pg/pg_activity/package.nix +++ b/pkgs/by-name/pg/pg_activity/package.nix @@ -29,11 +29,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "pgactivity" ]; - meta = with lib; { + meta = { description = "Top like application for PostgreSQL server activity monitoring"; mainProgram = "pg_activity"; homepage = "https://github.com/dalibo/pg_activity"; - license = licenses.postgresql; - maintainers = with maintainers; [ mausch ]; + license = lib.licenses.postgresql; + maintainers = with lib.maintainers; [ mausch ]; }; } diff --git a/pkgs/by-name/pg/pg_checksums/package.nix b/pkgs/by-name/pg/pg_checksums/package.nix index d934d62c622b..e4e71ae8728b 100644 --- a/pkgs/by-name/pg/pg_checksums/package.nix +++ b/pkgs/by-name/pg/pg_checksums/package.nix @@ -40,12 +40,12 @@ clangStdenv.mkDerivation rec { install -Dm644 -t $out/share/man/man1 doc/man1/pg_checksums_ext.1 ''; - meta = with lib; { + meta = { description = "Activate/deactivate/verify checksums in offline PostgreSQL clusters"; homepage = "https://github.com/credativ/pg_checksums"; maintainers = [ ]; mainProgram = "pg_checksums_ext"; platforms = postgresql.meta.platforms; - license = licenses.postgresql; + license = lib.licenses.postgresql; }; } diff --git a/pkgs/by-name/pg/pg_featureserv/package.nix b/pkgs/by-name/pg/pg_featureserv/package.nix index 5079509c8e42..a9ad66e67366 100644 --- a/pkgs/by-name/pg/pg_featureserv/package.nix +++ b/pkgs/by-name/pg/pg_featureserv/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { cp config/pg_featureserv.toml.example $out/share/config/pg_featureserv.toml ''; - meta = with lib; { + meta = { description = "Lightweight RESTful Geospatial Feature Server for PostGIS in Go"; mainProgram = "pg_featureserv"; homepage = "https://github.com/CrunchyData/pg_featureserv"; - license = licenses.asl20; - teams = [ teams.geospatial ]; + license = lib.licenses.asl20; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/by-name/pg/pg_flame/package.nix b/pkgs/by-name/pg/pg_flame/package.nix index b5f32f7d0b8a..ec620aacebda 100644 --- a/pkgs/by-name/pg/pg_flame/package.nix +++ b/pkgs/by-name/pg/pg_flame/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-ReVaetR3zkLLLc3d0EQkBAyUrxwBn3iq8MZAGzkQfeY="; - meta = with lib; { + meta = { description = "Flamegraph generator for Postgres EXPLAIN ANALYZE output"; homepage = "https://github.com/mgartner/pg_flame"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "pg_flame"; }; } diff --git a/pkgs/by-name/pg/pg_tileserv/package.nix b/pkgs/by-name/pg/pg_tileserv/package.nix index de715fc57fe7..c16c9bca6323 100644 --- a/pkgs/by-name/pg/pg_tileserv/package.nix +++ b/pkgs/by-name/pg/pg_tileserv/package.nix @@ -45,11 +45,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Very thin PostGIS-only tile server in Go"; mainProgram = "pg_tileserv"; homepage = "https://github.com/CrunchyData/pg_tileserv"; - license = licenses.asl20; - teams = [ teams.geospatial ]; + license = lib.licenses.asl20; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/by-name/pg/pg_top/package.nix b/pkgs/by-name/pg/pg_top/package.nix index f9125c384d70..fe6d351c490a 100644 --- a/pkgs/by-name/pg/pg_top/package.nix +++ b/pkgs/by-name/pg/pg_top/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { docutils ]; - meta = with lib; { + meta = { description = "'top' like tool for PostgreSQL"; longDescription = '' pg_top allows you to: @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { homepage = "https://pg_top.gitlab.io"; changelog = "https://gitlab.com/pg_top/pg_top/-/blob/main/HISTORY.rst"; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; mainProgram = "pg_top"; }; } diff --git a/pkgs/by-name/pg/pgagroal/package.nix b/pkgs/by-name/pg/pgagroal/package.nix index 8357d1ebc6da..18745cb45021 100644 --- a/pkgs/by-name/pg/pgagroal/package.nix +++ b/pkgs/by-name/pg/pgagroal/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { ] ++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ]; - meta = with lib; { + meta = { description = "High-performance connection pool for PostgreSQL"; homepage = "https://agroal.github.io/pgagroal/"; changelog = "https://github.com/agroal/pgagroal/releases/tag/${finalAttrs.version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgbouncer/package.nix b/pkgs/by-name/pg/pgbouncer/package.nix index 48bf27eff184..ae9c9b08ceb7 100644 --- a/pkgs/by-name/pg/pgbouncer/package.nix +++ b/pkgs/by-name/pg/pgbouncer/package.nix @@ -40,8 +40,8 @@ stdenv.mkDerivation rec { changelog = "https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_${ replaceStrings [ "." ] [ "_" ] version }"; - license = licenses.isc; - maintainers = with maintainers; [ _1000101 ]; - platforms = platforms.all; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ _1000101 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pg/pgcat/package.nix b/pkgs/by-name/pg/pgcat/package.nix index 4f56d4a423ad..66a169808ea3 100644 --- a/pkgs/by-name/pg/pgcat/package.nix +++ b/pkgs/by-name/pg/pgcat/package.nix @@ -30,13 +30,13 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = pgcat; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/postgresml/pgcat"; description = "PostgreSQL pooler with sharding, load balancing and failover support"; changelog = "https://github.com/postgresml/pgcat/releases"; - license = with licenses; [ mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ cathalmullan ]; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ cathalmullan ]; mainProgram = "pgcat"; }; } diff --git a/pkgs/by-name/pg/pget/package.nix b/pkgs/by-name/pg/pget/package.nix index 3a7ac72df18d..5258d6d1362b 100644 --- a/pkgs/by-name/pg/pget/package.nix +++ b/pkgs/by-name/pg/pget/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-X=main.version=${version}" ]; - meta = with lib; { + meta = { description = "Fast, resumable file download client"; homepage = "https://github.com/Code-Hex/pget?tab=readme-ov-file"; - license = licenses.mit; - maintainers = with maintainers; [ Ligthiago ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Ligthiago ]; mainProgram = "pget"; }; } diff --git a/pkgs/by-name/pg/pgf-pie/package.nix b/pkgs/by-name/pg/pgf-pie/package.nix index bab0d54745d4..1469f0666ed5 100644 --- a/pkgs/by-name/pg/pgf-pie/package.nix +++ b/pkgs/by-name/pg/pgf-pie/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/pgf-tikz/pgf-pie"; description = "Some LaTeX macros for pie charts using the PGF/TikZ package"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgf-umlcd/package.nix b/pkgs/by-name/pg/pgf-umlcd/package.nix index 1958a4e84f01..83c5170d0d26 100644 --- a/pkgs/by-name/pg/pgf-umlcd/package.nix +++ b/pkgs/by-name/pg/pgf-umlcd/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/pgf-tikz/pgf-umlcd"; description = "Some LaTeX macros for UML Class Diagrams"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgf-umlsd/package.nix b/pkgs/by-name/pg/pgf-umlsd/package.nix index cbdb0b5df3ce..59258c330b81 100644 --- a/pkgs/by-name/pg/pgf-umlsd/package.nix +++ b/pkgs/by-name/pg/pgf-umlsd/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/pgf-tikz/pgf-umlsd"; description = "Some LaTeX macros for UML Sequence Diagrams"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pg/pgfplots/package.nix b/pkgs/by-name/pg/pgfplots/package.nix index 86e13f6cab11..10d340ca5d18 100644 --- a/pkgs/by-name/pg/pgfplots/package.nix +++ b/pkgs/by-name/pg/pgfplots/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://pgfplots.sourceforge.net"; description = "TeX package to draw plots directly in TeX in two and three dimensions"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgit/package.nix b/pkgs/by-name/pg/pgit/package.nix index e464b2e6a53d..887594c7c7a5 100644 --- a/pkgs/by-name/pg/pgit/package.nix +++ b/pkgs/by-name/pg/pgit/package.nix @@ -39,11 +39,11 @@ buildGoModule (finalAttrs: { touch $out ''; - meta = with lib; { + meta = { description = "static site generator for git"; homepage = "https://pgit.pico.sh/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "pgit"; - maintainers = with maintainers; [ jaculabilis ]; + maintainers = with lib.maintainers; [ jaculabilis ]; }; }) diff --git a/pkgs/by-name/pg/pgloader/package.nix b/pkgs/by-name/pg/pgloader/package.nix index 1ce03e2b5bbf..a2c806acc6a7 100644 --- a/pkgs/by-name/pg/pgloader/package.nix +++ b/pkgs/by-name/pg/pgloader/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation (finalAttrs: { installManPage source/docs/_build/man/*.1 ''; - meta = with lib; { + meta = { homepage = "https://pgloader.io/"; description = "Loads data into PostgreSQL and allows you to implement Continuous Migration from your current database to PostgreSQL"; mainProgram = "pgloader"; - maintainers = with maintainers; [ mguentner ]; - license = licenses.postgresql; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mguentner ]; + license = lib.licenses.postgresql; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/pg/pgmanage/package.nix b/pkgs/by-name/pg/pgmanage/package.nix index 5fc3468dae44..c48640fbde7c 100644 --- a/pkgs/by-name/pg/pgmanage/package.nix +++ b/pkgs/by-name/pg/pgmanage/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { passthru.tests.sign-in = nixosTests.pgmanage; - meta = with lib; { + meta = { description = "Fast replacement for PGAdmin"; longDescription = '' At the heart of pgManage is a modern, fast, event-based C-binary, built in @@ -48,8 +48,8 @@ stdenv.mkDerivation { which is no longer maintained.) ''; homepage = "https://github.com/pgManage/pgManage"; - license = licenses.postgresql; - maintainers = [ maintainers.basvandijk ]; + license = lib.licenses.postgresql; + maintainers = [ lib.maintainers.basvandijk ]; mainProgram = "pgmanage"; }; } diff --git a/pkgs/by-name/pg/pgmetrics/package.nix b/pkgs/by-name/pg/pgmetrics/package.nix index 97dd147447ed..7691c6f799b1 100644 --- a/pkgs/by-name/pg/pgmetrics/package.nix +++ b/pkgs/by-name/pg/pgmetrics/package.nix @@ -25,10 +25,10 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://pgmetrics.io/"; description = "Collect and display information and stats from a running PostgreSQL server"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "pgmetrics"; }; diff --git a/pkgs/by-name/pg/pgmodeler/package.nix b/pkgs/by-name/pg/pgmodeler/package.nix index 6d73a7096d14..99a14567c50f 100644 --- a/pkgs/by-name/pg/pgmodeler/package.nix +++ b/pkgs/by-name/pg/pgmodeler/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Database modeling tool for PostgreSQL"; homepage = "https://pgmodeler.io/"; - license = licenses.gpl3; - maintainers = [ maintainers.esclear ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.esclear ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pg/pgpdump/package.nix b/pkgs/by-name/pg/pgpdump/package.nix index cf85be6a3732..1c0d4de41615 100644 --- a/pkgs/by-name/pg/pgpdump/package.nix +++ b/pkgs/by-name/pg/pgpdump/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { bzip2 ]; - meta = with lib; { + meta = { description = "PGP packet visualizer"; mainProgram = "pgpdump"; longDescription = '' @@ -31,8 +31,8 @@ stdenv.mkDerivation rec { OpenPGP (RFC 4880) and PGP version 2 (RFC 1991). ''; homepage = "http://www.mew.org/~kazu/proj/pgpdump/en/"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pg/pgpkeyserver-lite/package.nix b/pkgs/by-name/pg/pgpkeyserver-lite/package.nix index a02f44cd6c93..cf865e08185e 100644 --- a/pkgs/by-name/pg/pgpkeyserver-lite/package.nix +++ b/pkgs/by-name/pg/pgpkeyserver-lite/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation { cp -R 404.html assets favicon.ico index.html robots.txt $out ''; - meta = with lib; { + meta = { homepage = "https://github.com/mattrude/pgpkeyserver-lite"; description = "Lightweight static front-end for a sks keyserver"; - license = licenses.gpl3; - maintainers = with maintainers; [ calbrecht ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ calbrecht ]; }; } diff --git a/pkgs/by-name/pg/pgpool/package.nix b/pkgs/by-name/pg/pgpool/package.nix index 526cb8a217cb..565416c2c579 100644 --- a/pkgs/by-name/pg/pgpool/package.nix +++ b/pkgs/by-name/pg/pgpool/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.pgpool.net/mediawiki/index.php/Main_Page"; description = "Middleware that works between PostgreSQL servers and PostgreSQL clients"; changelog = "https://www.pgpool.net/docs/latest/en/html/release-${ builtins.replaceStrings [ "." ] [ "-" ] version }.html"; - license = licenses.free; - platforms = platforms.unix; + license = lib.licenses.free; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pg/pgsync/package.nix b/pkgs/by-name/pg/pgsync/package.nix index c257c7b2b12c..ea65b9808a6f 100644 --- a/pkgs/by-name/pg/pgsync/package.nix +++ b/pkgs/by-name/pg/pgsync/package.nix @@ -11,10 +11,10 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "pgsync"; - meta = with lib; { + meta = { description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)"; homepage = "https://github.com/ankane/pgsync"; - license = with licenses; mit; - maintainers = with maintainers; [ fabianhjr ]; + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ fabianhjr ]; }; } diff --git a/pkgs/by-name/ph/phantomsocks/package.nix b/pkgs/by-name/ph/phantomsocks/package.nix index c19482e55cf9..f8a994e7005d 100644 --- a/pkgs/by-name/ph/phantomsocks/package.nix +++ b/pkgs/by-name/ph/phantomsocks/package.nix @@ -29,15 +29,15 @@ buildGoModule { buildInputs = lib.optional withPcap libpcap; tags = lib.optional withPcap "pcap" ++ lib.optional withRawsocket "rawsocket"; - meta = with lib; { + meta = { homepage = "https://github.com/macronut/phantomsocks"; description = "Cross-platform proxy client/server for Linux/Windows/macOS"; longDescription = '' A cross-platform proxy tool that could be used to modify TCP packets to implement TCB desync to bypass detection and censoring. ''; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ oluceps ]; mainProgram = "phantomsocks"; }; } diff --git a/pkgs/by-name/ph/phash/package.nix b/pkgs/by-name/ph/phash/package.nix index 3ad3419282a0..58aa8201da0d 100644 --- a/pkgs/by-name/ph/phash/package.nix +++ b/pkgs/by-name/ph/phash/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { ./0001-proper-pthread-return-value.patch ]; - meta = with lib; { + meta = { description = "Compute the perceptual hash of an image"; - license = licenses.gpl3; - maintainers = [ maintainers.imalsogreg ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.imalsogreg ]; + platforms = lib.platforms.all; homepage = "http://www.phash.org"; downloadPage = "https://github.com/clearscene/pHash"; }; diff --git a/pkgs/by-name/ph/phinger-cursors/package.nix b/pkgs/by-name/ph/phinger-cursors/package.nix index 29a310d064cb..4db5a9bb47a1 100644 --- a/pkgs/by-name/ph/phinger-cursors/package.nix +++ b/pkgs/by-name/ph/phinger-cursors/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Most over-engineered cursor theme"; homepage = "https://github.com/phisch/phinger-cursors"; - platforms = platforms.unix; - license = licenses.cc-by-sa-40; - maintainers = with maintainers; [ moni ]; + platforms = lib.platforms.unix; + license = lib.licenses.cc-by-sa-40; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/ph/phoc/package.nix b/pkgs/by-name/ph/phoc/package.nix index 84881f9fe38c..60b8fea9239a 100644 --- a/pkgs/by-name/ph/phoc/package.nix +++ b/pkgs/by-name/ph/phoc/package.nix @@ -104,15 +104,15 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Wayland compositor for mobile phones like the Librem 5"; mainProgram = "phoc"; homepage = "https://gitlab.gnome.org/World/Phosh/phoc"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ zhaofengli armelclo ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ph/phockup/package.nix b/pkgs/by-name/ph/phockup/package.nix index c749974ced48..b3eaf61f0b22 100644 --- a/pkgs/by-name/ph/phockup/package.nix +++ b/pkgs/by-name/ph/phockup/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Media sorting tool to organize photos and videos from your camera in folders by year, month and day"; homepage = "https://github.com/ivandokov/phockup"; - license = licenses.mit; - maintainers = with maintainers; [ aanderse ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aanderse ]; mainProgram = "phockup"; }; } diff --git a/pkgs/by-name/ph/phodav/package.nix b/pkgs/by-name/ph/phodav/package.nix index d99a991249b6..a5bb57ae66d0 100644 --- a/pkgs/by-name/ph/phodav/package.nix +++ b/pkgs/by-name/ph/phodav/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { install -vDt $out/lib/udev/rules.d/ data/*-spice-webdavd.rules ''; - meta = with lib; { + meta = { description = "WebDav server implementation and library using libsoup"; homepage = "https://gitlab.gnome.org/GNOME/phodav"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ph/phoronix-test-suite/package.nix b/pkgs/by-name/ph/phoronix-test-suite/package.nix index f74401c3ed8e..f455c4c9fc1c 100644 --- a/pkgs/by-name/ph/phoronix-test-suite/package.nix +++ b/pkgs/by-name/ph/phoronix-test-suite/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { simple-execution = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = "Open-Source, Automated Benchmarking"; homepage = "https://www.phoronix-test-suite.com/"; - maintainers = with maintainers; [ davidak ]; - license = licenses.gpl3; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ davidak ]; + license = lib.licenses.gpl3; + platforms = with lib.platforms; unix; mainProgram = "phoronix-test-suite"; }; } diff --git a/pkgs/by-name/ph/photofield/package.nix b/pkgs/by-name/ph/photofield/package.nix index f97c0d971d38..bb3104055c8f 100644 --- a/pkgs/by-name/ph/photofield/package.nix +++ b/pkgs/by-name/ph/photofield/package.nix @@ -77,11 +77,11 @@ buildGoModule { }; }; - meta = with lib; { + meta = { description = "Experimental fast photo viewer"; homepage = "https://github.com/SmilyOrg/photofield"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "photofield"; - maintainers = with maintainers; [ dit7ya ]; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/ph/photoflare/package.nix b/pkgs/by-name/ph/photoflare/package.nix index 694f486733db..87058a9b7476 100644 --- a/pkgs/by-name/ph/photoflare/package.nix +++ b/pkgs/by-name/ph/photoflare/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I${graphicsmagick}/include/GraphicsMagick"; - meta = with lib; { + meta = { description = "Cross-platform image editor with a powerful features and a very friendly graphical user interface"; mainProgram = "photoflare"; homepage = "https://photoflare.io"; - maintainers = [ maintainers.omgbebebe ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.omgbebebe ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ph/photon-rss/package.nix b/pkgs/by-name/ph/photon-rss/package.nix index c49cfd150096..f07b91e0cd5c 100644 --- a/pkgs/by-name/ph/photon-rss/package.nix +++ b/pkgs/by-name/ph/photon-rss/package.nix @@ -22,12 +22,12 @@ buildGoModule { vendorHash = "sha256-n9XNqXIoqn+f0xKCenJWXUYXtQhtbNBar68onWH/WV4="; - meta = with lib; { + meta = { description = "RSS/Atom reader with the focus on speed, usability and a bit of unix philosophy"; mainProgram = "photon"; homepage = "https://sr.ht/~ghost08/photon"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kmein ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kmein ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ph/photon/package.nix b/pkgs/by-name/ph/photon/package.nix index 8be4fbe6b242..13188edd8e4d 100644 --- a/pkgs/by-name/ph/photon/package.nix +++ b/pkgs/by-name/ph/photon/package.nix @@ -34,10 +34,10 @@ python3Packages.buildPythonApplication rec { --add-flags "-O $out/share/photon/photon.py" ''; - meta = with lib; { + meta = { description = "Lightning fast web crawler which extracts URLs, files, intel & endpoints from a target"; homepage = "https://github.com/s0md3v/Photon"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "photon"; }; diff --git a/pkgs/by-name/ph/photonvision/package.nix b/pkgs/by-name/ph/photonvision/package.nix index 43ec02cfa8a4..7251eec1f24a 100644 --- a/pkgs/by-name/ph/photonvision/package.nix +++ b/pkgs/by-name/ph/photonvision/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { starts-web-server = nixosTests.photonvision; }; - meta = with lib; { + meta = { description = "Free, fast, and easy-to-use computer vision solution for the FIRST Robotics Competition"; homepage = "https://photonvision.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ max-niederman ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ max-niederman ]; mainProgram = "photonvision"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/ph/photoprism/backend.nix b/pkgs/by-name/ph/photoprism/backend.nix index 057e323ed057..8d7037286779 100644 --- a/pkgs/by-name/ph/photoprism/backend.nix +++ b/pkgs/by-name/ph/photoprism/backend.nix @@ -54,10 +54,10 @@ buildGoModule { CGO_LDFLAGS = "-L${libtensorflow} -ltensorflow_framework"; - meta = with lib; { + meta = { homepage = "https://photoprism.app"; description = "Photoprism's backend"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ benesim ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ benesim ]; }; } diff --git a/pkgs/by-name/ph/photoprism/frontend.nix b/pkgs/by-name/ph/photoprism/frontend.nix index d0acfedb72b4..cd1266c89284 100644 --- a/pkgs/by-name/ph/photoprism/frontend.nix +++ b/pkgs/by-name/ph/photoprism/frontend.nix @@ -28,10 +28,10 @@ buildNpmPackage { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://photoprism.app"; description = "Photoprism's frontend"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ benesim ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ benesim ]; }; } diff --git a/pkgs/by-name/ph/photoprism/package.nix b/pkgs/by-name/ph/photoprism/package.nix index 7104628e31c4..4da0155dd5c0 100644 --- a/pkgs/by-name/ph/photoprism/package.nix +++ b/pkgs/by-name/ph/photoprism/package.nix @@ -95,11 +95,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; passthru.tests.photoprism = nixosTests.photoprism; - meta = with lib; { + meta = { homepage = "https://photoprism.app"; description = "Personal Photo Management powered by Go and Google TensorFlow"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ benesim ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ benesim ]; mainProgram = "photoprism"; }; }) diff --git a/pkgs/by-name/ph/phototonic/package.nix b/pkgs/by-name/ph/phototonic/package.nix index 360f76a387e3..e7a55e71632f 100644 --- a/pkgs/by-name/ph/phototonic/package.nix +++ b/pkgs/by-name/ph/phototonic/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { sed -i 's;/usr;$$PREFIX/;g' phototonic.pro ''; - meta = with lib; { + meta = { description = "Image viewer and organizer"; mainProgram = "phototonic"; homepage = "https://github.com/oferkv/phototonic"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ph/phrasendrescher/package.nix b/pkgs/by-name/ph/phrasendrescher/package.nix index 8cb3d0cf91aa..976115d2e83b 100644 --- a/pkgs/by-name/ph/phrasendrescher/package.nix +++ b/pkgs/by-name/ph/phrasendrescher/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-plugins" ]; - meta = with lib; { + meta = { description = "Modular and multi processing pass phrase cracking tool"; homepage = "https://leidecker.info/projects/phrasendrescher/index.shtml"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "pd"; }; } diff --git a/pkgs/by-name/ph/phylactery/package.nix b/pkgs/by-name/ph/phylactery/package.nix index 4f922cab202b..361fc5fdecfe 100644 --- a/pkgs/by-name/ph/phylactery/package.nix +++ b/pkgs/by-name/ph/phylactery/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { passthru.tests.phylactery = nixosTests.phylactery; - meta = with lib; { + meta = { description = "Old school comic web server"; mainProgram = "phylactery"; homepage = "https://trong.loang.net/phylactery/about"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ McSinyx ]; - platforms = platforms.all; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ McSinyx ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ph/physlock/package.nix b/pkgs/by-name/ph/physlock/package.nix index 20cdf5c41d40..75a789ab1af3 100644 --- a/pkgs/by-name/ph/physlock/package.nix +++ b/pkgs/by-name/ph/physlock/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { "SESSION=systemd" ]; - meta = with lib; { + meta = { description = "Secure suspend/hibernate-friendly alternative to `vlock -an`"; mainProgram = "physlock"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pi/piano-rs/package.nix b/pkgs/by-name/pi/piano-rs/package.nix index d8b0e7cb5265..867515cb0c78 100644 --- a/pkgs/by-name/pi/piano-rs/package.nix +++ b/pkgs/by-name/pi/piano-rs/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { --set ASSETS "$out"/share/piano-rs/assets ''; - meta = with lib; { + meta = { description = "Multiplayer piano using UDP sockets that can be played using computer keyboard, in the terminal"; homepage = "https://github.com/ritiek/piano-rs"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "piano-rs"; - maintainers = with maintainers; [ ritiek ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ritiek ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pi/pianotrans/package.nix b/pkgs/by-name/pi/pianotrans/package.nix index c53307ee33d3..7b2a40198e46 100644 --- a/pkgs/by-name/pi/pianotrans/package.nix +++ b/pkgs/by-name/pi/pianotrans/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { ''--prefix PATH : "${lib.makeBinPath [ ffmpeg ]}"'' ]; - meta = with lib; { + meta = { description = "Simple GUI for ByteDance's Piano Transcription with Pedals"; mainProgram = "pianotrans"; homepage = "https://github.com/azuwis/pianotrans"; - license = licenses.mit; - maintainers = with maintainers; [ azuwis ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azuwis ]; }; } diff --git a/pkgs/by-name/pi/picard-tools/package.nix b/pkgs/by-name/pi/picard-tools/package.nix index f5ddc9f38205..2a608100fac0 100644 --- a/pkgs/by-name/pi/picard-tools/package.nix +++ b/pkgs/by-name/pi/picard-tools/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { makeWrapper ${jre}/bin/java $out/bin/picard --add-flags "-jar $out/libexec/picard/picard.jar" ''; - meta = with lib; { + meta = { description = "Tools for high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://broadinstitute.github.io/picard/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ jbedo ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ jbedo ]; mainProgram = "picard"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pi/pick-colour-picker/package.nix b/pkgs/by-name/pi/pick-colour-picker/package.nix index 013fd4025f13..33e55492dc12 100644 --- a/pkgs/by-name/pi/pick-colour-picker/package.nix +++ b/pkgs/by-name/pi/pick-colour-picker/package.nix @@ -50,13 +50,13 @@ python3Packages.buildPythonPackage { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { homepage = "https://kryogenix.org/code/pick/"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; description = "Colour picker that remembers where you picked colours from"; mainProgram = "pick-colour-picker"; - maintainers = [ maintainers.mkg20001 ]; + maintainers = [ lib.maintainers.mkg20001 ]; longDescription = '' Pick lets you pick colours from anywhere on your screen. Choose the colour you want and Pick remembers it, names it, and shows you a screenshot so you can remember where you got it from. diff --git a/pkgs/by-name/pi/pick/package.nix b/pkgs/by-name/pi/pick/package.nix index 307cf5f58509..bd31862361ef 100644 --- a/pkgs/by-name/pi/pick/package.nix +++ b/pkgs/by-name/pi/pick/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { PREFIX = placeholder "out"; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Fuzzy text selection utility"; - license = licenses.mit; - maintainers = [ maintainers.womfoo ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.womfoo ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "pick"; }; diff --git a/pkgs/by-name/pi/picoc/package.nix b/pkgs/by-name/pi/picoc/package.nix index 24e6fedc9bba..2ba10f48bc8b 100644 --- a/pkgs/by-name/pi/picoc/package.nix +++ b/pkgs/by-name/pi/picoc/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Very small C interpreter for scripting"; mainProgram = "picoc"; longDescription = '' @@ -59,7 +59,7 @@ stdenv.mkDerivation { ''; homepage = "https://gitlab.com/zsaleeba/picoc"; downloadPage = "https://code.google.com/p/picoc/downloads/list"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pi/picolisp/package.nix b/pkgs/by-name/pi/picolisp/package.nix index e03b301bcd9f..0b9977d24f21 100644 --- a/pkgs/by-name/pi/picolisp/package.nix +++ b/pkgs/by-name/pi/picolisp/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { substituteInPlace $out/bin/pil --replace-fail /usr $out ''; - meta = with lib; { + meta = { description = "Pragmatic programming language"; homepage = "https://picolisp.com/"; - license = licenses.mit; - maintainers = with maintainers; [ nat-418 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nat-418 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pi/picoloop/package.nix b/pkgs/by-name/pi/picoloop/package.nix index b96de2311fca..1e5dfee818a3 100644 --- a/pkgs/by-name/pi/picoloop/package.nix +++ b/pkgs/by-name/pi/picoloop/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { cp {font.*,LICENSE} $out/share ''; - meta = with lib; { + meta = { description = "Synth and a stepsequencer (a clone of the famous nanoloop)"; homepage = "https://github.com/yoyz/picoloop"; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; mainProgram = "picoloop"; }; } diff --git a/pkgs/by-name/pi/picoprobe-udev-rules/package.nix b/pkgs/by-name/pi/picoprobe-udev-rules/package.nix index d599e186664b..114a92785de0 100644 --- a/pkgs/by-name/pi/picoprobe-udev-rules/package.nix +++ b/pkgs/by-name/pi/picoprobe-udev-rules/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://probe.rs/docs/getting-started/probe-setup/#udev-rules"; description = "Picoprobe udev rules list"; - platforms = platforms.linux; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pi/picosnitch/package.nix b/pkgs/by-name/pi/picosnitch/package.nix index 8dce35776225..a5c32caa7772 100644 --- a/pkgs/by-name/pi/picosnitch/package.nix +++ b/pkgs/by-name/pi/picosnitch/package.nix @@ -33,14 +33,14 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "picosnitch" ]; - meta = with lib; { + meta = { description = "Monitor network traffic per executable with hashing"; mainProgram = "picosnitch"; homepage = "https://github.com/elesiuta/picosnitch"; changelog = "https://github.com/elesiuta/picosnitch/releases"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.elesiuta ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.elesiuta ]; + platforms = lib.platforms.linux; knownVulnerabilities = [ "Allows an unprivileged user to write to arbitrary files as root; see https://github.com/elesiuta/picosnitch/issues/40" ]; diff --git a/pkgs/by-name/pi/pict-rs/package.nix b/pkgs/by-name/pi/pict-rs/package.nix index f1fabb8092f9..9547c099949c 100644 --- a/pkgs/by-name/pi/pict-rs/package.nix +++ b/pkgs/by-name/pi/pict-rs/package.nix @@ -44,12 +44,12 @@ rustPlatform.buildRustPackage rec { passthru.tests = { inherit (nixosTests) pict-rs; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Simple image hosting service"; mainProgram = "pict-rs"; homepage = "https://git.asonix.dog/asonix/pict-rs"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ happysalada ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/pi/pid1/package.nix b/pkgs/by-name/pi/pid1/package.nix index e6b635b37050..44bb4526c2d8 100644 --- a/pkgs/by-name/pi/pid1/package.nix +++ b/pkgs/by-name/pi/pid1/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ldHtmbLoSFVxb0B3Oj21UOFNSXwu8xAPhpE8jBqOwr4="; - meta = with lib; { + meta = { description = "Signal handling and zombie reaping for PID1 process"; homepage = "https://github.com/fpco/pid1-rs"; - license = licenses.mit; - maintainers = with maintainers; [ psibi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psibi ]; mainProgram = "pid1"; }; } diff --git a/pkgs/by-name/pi/pietrasanta-traceroute/package.nix b/pkgs/by-name/pi/pietrasanta-traceroute/package.nix index 4deb0b754009..56b06d1dce71 100644 --- a/pkgs/by-name/pi/pietrasanta-traceroute/package.nix +++ b/pkgs/by-name/pi/pietrasanta-traceroute/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "ECN-aware version of traceroute"; longDescription = '' An enhanced version of Dmitry Butskoy's traceroute, developed by Catchpoint. @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/catchpoint/Networking.traceroute/"; changelog = "https://github.com/catchpoint/Networking.traceroute/blob/${src.rev}/ChangeLog"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21Only ]; mainProgram = "traceroute"; - maintainers = with maintainers; [ nicoo ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ nicoo ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/pi/pifpaf/package.nix b/pkgs/by-name/pi/pifpaf/package.nix index 747559e09dd9..08a61b4c8e88 100644 --- a/pkgs/by-name/pi/pifpaf/package.nix +++ b/pkgs/by-name/pi/pifpaf/package.nix @@ -42,11 +42,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "pifpaf" ]; - meta = with lib; { + meta = { description = "Suite of tools and fixtures to manage daemons for testing"; mainProgram = "pifpaf"; homepage = "https://github.com/jd/pifpaf"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pi/pig/package.nix b/pkgs/by-name/pi/pig/package.nix index 9eeae0683457..1b46bb8b15a1 100644 --- a/pkgs/by-name/pi/pig/package.nix +++ b/pkgs/by-name/pi/pig/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://pig.apache.org/"; description = "High-level language for Apache Hadoop"; mainProgram = "pig"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' Apache Pig is a platform for analyzing large data sets that consists of a @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { which in turns enables them to handle very large data sets. ''; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pi/piglit/package.nix b/pkgs/by-name/pi/piglit/package.nix index d1b0d5247156..527bced7afb8 100644 --- a/pkgs/by-name/pi/piglit/package.nix +++ b/pkgs/by-name/pi/piglit/package.nix @@ -90,12 +90,12 @@ stdenv.mkDerivation { --prefix PATH : "${waffle}/bin" ''; - meta = with lib; { + meta = { description = "OpenGL test suite, and test-suite runner"; homepage = "https://gitlab.freedesktop.org/mesa/piglit"; - license = licenses.free; # custom license. See COPYING in the source repo. + license = lib.licenses.free; # custom license. See COPYING in the source repo. inherit (mesa.meta) platforms; - maintainers = with maintainers; [ Flakebi ]; + maintainers = with lib.maintainers; [ Flakebi ]; mainProgram = "piglit"; }; } diff --git a/pkgs/by-name/pi/pigz/package.nix b/pkgs/by-name/pi/pigz/package.nix index c1c390993993..2cfdcb3f7ef0 100644 --- a/pkgs/by-name/pi/pigz/package.nix +++ b/pkgs/by-name/pi/pigz/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.zlib.net/pigz/"; description = "Parallel implementation of gzip for multi-core machines"; mainProgram = "pigz"; maintainers = [ ]; - license = licenses.zlib; - platforms = platforms.unix; + license = lib.licenses.zlib; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pi/pijul/package.nix b/pkgs/by-name/pi/pijul/package.nix index 13d911712134..66c34335693d 100644 --- a/pkgs/by-name/pi/pijul/package.nix +++ b/pkgs/by-name/pi/pijul/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/pijul completion zsh) ''; - meta = with lib; { + meta = { description = "Distributed version control system"; homepage = "https://pijul.org"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ gal_bolle dywedir fabianhjr diff --git a/pkgs/by-name/pi/pika/package.nix b/pkgs/by-name/pi/pika/package.nix index 9288b69ef0a7..cb4c4907ebe0 100644 --- a/pkgs/by-name/pi/pika/package.nix +++ b/pkgs/by-name/pi/pika/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { cp -R . "$out/Applications/Pika.app" ''; - meta = with lib; { + meta = { homepage = "https://superhighfives.com/pika"; description = "Open-source colour picker app for macOS"; - platforms = platforms.darwin; - license = licenses.mit; - maintainers = with maintainers; [ arkivm ]; + platforms = lib.platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arkivm ]; }; } diff --git a/pkgs/by-name/pi/pikchr/package.nix b/pkgs/by-name/pi/pikchr/package.nix index eed0842e47cf..97a0185323a2 100644 --- a/pkgs/by-name/pi/pikchr/package.nix +++ b/pkgs/by-name/pi/pikchr/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "PIC-like markup language for diagrams in technical documentation"; homepage = "https://pikchr.org"; - license = licenses.bsd0; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = "pikchr"; }; } diff --git a/pkgs/by-name/pi/piknik/package.nix b/pkgs/by-name/pi/piknik/package.nix index e31f66f8711a..63798f4a303c 100644 --- a/pkgs/by-name/pi/piknik/package.nix +++ b/pkgs/by-name/pi/piknik/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Copy/paste anything over the network"; homepage = "https://github.com/jedisct1/piknik"; changelog = "https://github.com/jedisct1/piknik/blob/${src.rev}/ChangeLog"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "piknik"; }; diff --git a/pkgs/by-name/pi/pikopixel/package.nix b/pkgs/by-name/pi/pikopixel/package.nix index e09e17df48a9..d7d99165a8e5 100644 --- a/pkgs/by-name/pi/pikopixel/package.nix +++ b/pkgs/by-name/pi/pikopixel/package.nix @@ -36,13 +36,13 @@ clangStdenv.mkDerivation rec { PikoPixel.app/Resources/PikoPixel.desktop > $out/share/applications/PikoPixel.desktop ''; - meta = with lib; { + meta = { description = "Application for drawing and editing pixel-art images"; mainProgram = "PikoPixel"; homepage = "https://twilightedge.com/mac/pikopixel/"; downloadPage = "https://twilightedge.com/mac/pikopixel/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pi/pinball/package.nix b/pkgs/by-name/pi/pinball/package.nix index 033ff886a733..58a4618543a4 100644 --- a/pkgs/by-name/pi/pinball/package.nix +++ b/pkgs/by-name/pi/pinball/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/adoptware/pinball"; description = "Emilia Pinball simulator"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pi/pinecone/package.nix b/pkgs/by-name/pi/pinecone/package.nix index 3fb208264da5..f6090a85dfcf 100644 --- a/pkgs/by-name/pi/pinecone/package.nix +++ b/pkgs/by-name/pi/pinecone/package.nix @@ -17,11 +17,11 @@ buildGo124Module { vendorHash = "sha256-+P10K7G0UwkbCGEi6sYTQSqO7LzIf/xmaHIr7v110Ao="; - meta = with lib; { + meta = { description = "Peer-to-peer overlay routing for the Matrix ecosystem"; homepage = "https://matrix-org.github.io/pinecone/"; - license = licenses.asl20; - maintainers = with maintainers; [ networkexception ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ networkexception ]; mainProgram = "pinecone"; }; } diff --git a/pkgs/by-name/pi/pinentry-bemenu/package.nix b/pkgs/by-name/pi/pinentry-bemenu/package.nix index 6cacc5f5fb1f..399deca3abba 100644 --- a/pkgs/by-name/pi/pinentry-bemenu/package.nix +++ b/pkgs/by-name/pi/pinentry-bemenu/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { bemenu ]; - meta = with lib; { + meta = { description = "Pinentry implementation based on bemenu"; homepage = "https://github.com/t-8ch/pinentry-bemenu"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ jc ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jc ]; + platforms = with lib.platforms; linux; mainProgram = "pinentry-bemenu"; }; } diff --git a/pkgs/by-name/pi/pinentry-rofi/package.nix b/pkgs/by-name/pi/pinentry-rofi/package.nix index 4e7290f5dfd5..965c7aebdec8 100644 --- a/pkgs/by-name/pi/pinentry-rofi/package.nix +++ b/pkgs/by-name/pi/pinentry-rofi/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Rofi frontend to pinentry"; homepage = "https://github.com/plattfot/pinentry-rofi"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ seqizz ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ seqizz ]; mainProgram = "pinentry-rofi"; }; } diff --git a/pkgs/by-name/pi/pinfo/package.nix b/pkgs/by-name/pi/pinfo/package.nix index f7e46ae381f8..a24412e9ae0c 100644 --- a/pkgs/by-name/pi/pinfo/package.nix +++ b/pkgs/by-name/pi/pinfo/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { "--with-readline=${readline.dev}" ]; - meta = with lib; { + meta = { description = "Viewer for info files"; homepage = "https://github.com/baszoetekouw/pinfo"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pinfo"; }; } diff --git a/pkgs/by-name/pi/pingtunnel/package.nix b/pkgs/by-name/pi/pingtunnel/package.nix index 4f142c97a764..5f66c30347e1 100644 --- a/pkgs/by-name/pi/pingtunnel/package.nix +++ b/pkgs/by-name/pi/pingtunnel/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { mv $out/bin/cmd $out/bin/pingtunnel ''; - meta = with lib; { + meta = { description = "Tool that send TCP/UDP traffic over ICMP"; homepage = "https://github.com/esrrhs/pingtunnel"; - license = licenses.mit; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oluceps ]; mainProgram = "pingtunnel"; }; } diff --git a/pkgs/by-name/pi/pingu/package.nix b/pkgs/by-name/pi/pingu/package.nix index 5df2c28bc3bd..01487a9a3b0f 100644 --- a/pkgs/by-name/pi/pingu/package.nix +++ b/pkgs/by-name/pi/pingu/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { ldflags+=" -X main.appRevision=$(cat ldflags_revision)" ''; - meta = with lib; { + meta = { description = "Ping command implementation in Go but with colorful output and pingu ascii art"; homepage = "https://github.com/CactiChameleon9/pingu/"; - license = licenses.mit; - maintainers = with maintainers; [ CactiChameleon9 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ CactiChameleon9 ]; mainProgram = "pingu"; }; } diff --git a/pkgs/by-name/pi/pinniped/package.nix b/pkgs/by-name/pi/pinniped/package.nix index 32e058ffc74e..606f4750cf17 100644 --- a/pkgs/by-name/pi/pinniped/package.nix +++ b/pkgs/by-name/pi/pinniped/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { --zsh <($out/bin/pinniped completion zsh) ''; - meta = with lib; { + meta = { description = "Tool to securely log in to your Kubernetes clusters"; mainProgram = "pinniped"; homepage = "https://pinniped.dev/"; - license = licenses.asl20; - maintainers = with maintainers; [ bpaulin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bpaulin ]; }; } diff --git a/pkgs/by-name/pi/pinnwand/package.nix b/pkgs/by-name/pi/pinnwand/package.nix index 60574a57c7b9..ecfa9b11bb12 100644 --- a/pkgs/by-name/pi/pinnwand/package.nix +++ b/pkgs/by-name/pi/pinnwand/package.nix @@ -54,13 +54,13 @@ buildPythonApplication rec { passthru.tests = nixosTests.pinnwand; - meta = with lib; { + meta = { changelog = "https://github.com/supakeen/pinnwand/releases/tag/v${version}"; description = "Python pastebin that tries to keep it simple"; homepage = "https://github.com/supakeen/pinnwand"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "pinnwand"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pi/pinpoint/package.nix b/pkgs/by-name/pi/pinpoint/package.nix index a0afef7c6044..4ee3cb9d8dad 100644 --- a/pkgs/by-name/pi/pinpoint/package.nix +++ b/pkgs/by-name/pi/pinpoint/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { clutter-gtk ]; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/Archive/pinpoint"; description = "Tool for making hackers do excellent presentations"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "pinpoint"; }; } diff --git a/pkgs/by-name/pi/pinsel/package.nix b/pkgs/by-name/pi/pinsel/package.nix index e976ce4096de..c463ed8d91ac 100644 --- a/pkgs/by-name/pi/pinsel/package.nix +++ b/pkgs/by-name/pi/pinsel/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Minimal screenshot annotation tool with lua config"; homepage = "https://github.com/Nooo37/pinsel"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "pinsel"; }; } diff --git a/pkgs/by-name/pi/pinyin-tool/package.nix b/pkgs/by-name/pi/pinyin-tool/package.nix index 6bff727ac50f..41085555075a 100644 --- a/pkgs/by-name/pi/pinyin-tool/package.nix +++ b/pkgs/by-name/pi/pinyin-tool/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-SOeyk2uWCdO99ooQc2L1eXlV77lR4DLBK6PnV6Ur49A="; - meta = with lib; { + meta = { description = "Simple command line tool for converting Chinese characters to space-separate pinyin words"; mainProgram = "pinyin-tool"; homepage = "https://github.com/briankung/pinyin-tool"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/pi/pioasm/package.nix b/pkgs/by-name/pi/pioasm/package.nix index df372b098d48..b2f1fc751711 100644 --- a/pkgs/by-name/pi/pioasm/package.nix +++ b/pkgs/by-name/pi/pioasm/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Assemble PIO programs for Raspberry Pi Pico"; homepage = "https://github.com/raspberrypi/pico-sdk"; - license = licenses.bsd3; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; mainProgram = "pioasm"; }; }) diff --git a/pkgs/by-name/pi/pioneer/package.nix b/pkgs/by-name/pi/pioneer/package.nix index a5df5859db70..570acd4445de 100644 --- a/pkgs/by-name/pi/pioneer/package.nix +++ b/pkgs/by-name/pi/pioneer/package.nix @@ -69,10 +69,10 @@ stdenv.mkDerivation rec { "build-data" ]; - meta = with lib; { + meta = { description = "Space adventure game set in the Milky Way galaxy at the turn of the 31st century"; homepage = "https://pioneerspacesim.net"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only cc-by-sa-30 ]; diff --git a/pkgs/by-name/pi/pioneers/package.nix b/pkgs/by-name/pi/pioneers/package.nix index fe68481031ed..039d7039aaae 100644 --- a/pkgs/by-name/pi/pioneers/package.nix +++ b/pkgs/by-name/pi/pioneers/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { libxml2 ]; - meta = with lib; { + meta = { description = "Addicting game based on The Settlers of Catan"; homepage = "https://pio.sourceforge.net/"; # https does not work - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pi/pip-audit/package.nix b/pkgs/by-name/pi/pip-audit/package.nix index 2aa4d3b6d471..ea0bc7eb74b7 100644 --- a/pkgs/by-name/pi/pip-audit/package.nix +++ b/pkgs/by-name/pi/pip-audit/package.nix @@ -61,12 +61,12 @@ python3.pkgs.buildPythonApplication rec { "test_virtual_env" ]; - meta = with lib; { + meta = { description = "Tool for scanning Python environments for known vulnerabilities"; homepage = "https://github.com/trailofbits/pip-audit"; changelog = "https://github.com/pypa/pip-audit/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pip-audit"; }; } diff --git a/pkgs/by-name/pi/pipe-rename/package.nix b/pkgs/by-name/pi/pipe-rename/package.nix index a6f96488b001..0cb2fc75d38c 100644 --- a/pkgs/by-name/pi/pipe-rename/package.nix +++ b/pkgs/by-name/pi/pipe-rename/package.nix @@ -28,10 +28,10 @@ rustPlatform.buildRustPackage rec { patchShebangs tests/editors/env-editor.py ''; - meta = with lib; { + meta = { description = "Rename your files using your favorite text editor"; homepage = "https://github.com/marcusbuffett/pipe-rename"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "renamer"; }; diff --git a/pkgs/by-name/pi/pipectl/package.nix b/pkgs/by-name/pi/pipectl/package.nix index 8c3587b052c5..ad8bd958a3f9 100644 --- a/pkgs/by-name/pi/pipectl/package.nix +++ b/pkgs/by-name/pi/pipectl/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { "-DINSTALL_DOCUMENTATION=ON" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Ferdi265/pipectl"; - license = licenses.gpl3; + license = lib.licenses.gpl3; description = "Simple named pipe management utility"; - maintainers = with maintainers; [ synthetica ]; + maintainers = with lib.maintainers; [ synthetica ]; mainProgram = "pipectl"; }; } diff --git a/pkgs/by-name/pi/piper-phonemize/package.nix b/pkgs/by-name/pi/piper-phonemize/package.nix index 85d53ee78498..f89bb36cbbf6 100644 --- a/pkgs/by-name/pi/piper-phonemize/package.nix +++ b/pkgs/by-name/pi/piper-phonemize/package.nix @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { espeak-ng = espeak-ng'; }; - meta = with lib; { + meta = { description = "C++ library for converting text to phonemes for Piper"; homepage = "https://github.com/rhasspy/piper-phonemize"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pi/pipes-rs/package.nix b/pkgs/by-name/pi/pipes-rs/package.nix index 544b4bc4fc6e..27481840de5f 100644 --- a/pkgs/by-name/pi/pipes-rs/package.nix +++ b/pkgs/by-name/pi/pipes-rs/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { fi ''; - meta = with lib; { + meta = { description = "Over-engineered rewrite of pipes.sh in Rust"; mainProgram = "pipes-rs"; homepage = "https://github.com/lhvy/pipes-rs"; - license = licenses.blueOak100; - maintainers = [ maintainers.vanilla ]; + license = lib.licenses.blueOak100; + maintainers = [ lib.maintainers.vanilla ]; }; } diff --git a/pkgs/by-name/pi/pipes/package.nix b/pkgs/by-name/pi/pipes/package.nix index a2a8b951081d..3c32276b1593 100644 --- a/pkgs/by-name/pi/pipes/package.nix +++ b/pkgs/by-name/pi/pipes/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Animated pipes terminal screensaver"; homepage = "https://github.com/pipeseroni/pipes.sh"; - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; mainProgram = "pipes.sh"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pi/pipework/package.nix b/pkgs/by-name/pi/pipework/package.nix index 94b272eccdbb..5a984e6fa75c 100644 --- a/pkgs/by-name/pi/pipework/package.nix +++ b/pkgs/by-name/pi/pipework/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { ] }; ''; - meta = with lib; { + meta = { description = "Software-Defined Networking tools for LXC"; mainProgram = "pipework"; homepage = "https://github.com/jpetazzo/pipework"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pi/pipr/package.nix b/pkgs/by-name/pi/pipr/package.nix index b60057b66b27..20b38d4ea515 100644 --- a/pkgs/by-name/pi/pipr/package.nix +++ b/pkgs/by-name/pi/pipr/package.nix @@ -24,12 +24,12 @@ rustPlatform.buildRustPackage rec { wrapProgram "$out/bin/pipr" --prefix PATH : ${lib.makeBinPath [ bubblewrap ]} ''; - meta = with lib; { + meta = { description = "Commandline-tool to interactively write shell pipelines"; mainProgram = "pipr"; homepage = "https://github.com/ElKowar/pipr"; - license = licenses.mit; - maintainers = with maintainers; [ elkowar ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ elkowar ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pi/pipreqs/package.nix b/pkgs/by-name/pi/pipreqs/package.nix index 9bf0db09f054..e48473f09aa6 100644 --- a/pkgs/by-name/pi/pipreqs/package.nix +++ b/pkgs/by-name/pi/pipreqs/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "pipreqs" ]; - meta = with lib; { + meta = { description = "Generate requirements.txt file for any project based on imports"; homepage = "https://github.com/bndr/pipreqs"; - license = licenses.asl20; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ psyanticy ]; mainProgram = "pipreqs"; }; } diff --git a/pkgs/by-name/pi/pirate-get/package.nix b/pkgs/by-name/pi/pirate-get/package.nix index 1338a269282b..7ea0e6fdd9f5 100644 --- a/pkgs/by-name/pi/pirate-get/package.nix +++ b/pkgs/by-name/pi/pirate-get/package.nix @@ -26,12 +26,12 @@ buildPythonApplication rec { pythonImportsCheck = [ "pirate" ]; - meta = with lib; { + meta = { description = "Command line interface for The Pirate Bay"; mainProgram = "pirate-get"; homepage = "https://github.com/vikstrous/pirate-get"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pi/pistol/package.nix b/pkgs/by-name/pi/pistol/package.nix index 754bbef3e7c3..2c61e60f67cb 100644 --- a/pkgs/by-name/pi/pistol/package.nix +++ b/pkgs/by-name/pi/pistol/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { "-X main.Version=${version}" ]; - meta = with lib; { + meta = { description = "General purpose file previewer designed for Ranger, Lf to make scope.sh redundant"; homepage = "https://github.com/doronbehar/pistol"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "pistol"; }; } diff --git a/pkgs/by-name/pi/pitch-black/package.nix b/pkgs/by-name/pi/pitch-black/package.nix index a8f5a4f24b9c..b12dd304546e 100644 --- a/pkgs/by-name/pi/pitch-black/package.nix +++ b/pkgs/by-name/pi/pitch-black/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { mv * $out/share ''; - meta = with lib; { + meta = { description = "Dark plasma theme built with usability in mind"; homepage = "https://github.com/freefreeno/Pitch-Black"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.pasqui23 ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.pasqui23 ]; }; } diff --git a/pkgs/by-name/pi/pitivi/package.nix b/pkgs/by-name/pi/pitivi/package.nix index 1d3e38538eab..d45bb5a0accb 100644 --- a/pkgs/by-name/pi/pitivi/package.nix +++ b/pkgs/by-name/pi/pitivi/package.nix @@ -95,7 +95,7 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Non-Linear video editor utilizing the power of GStreamer"; homepage = "http://pitivi.org/"; longDescription = '' @@ -103,9 +103,9 @@ python3.pkgs.buildPythonApplication rec { It aims to be an intuitive and flexible application that can appeal to newbies and professionals alike. ''; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; mainProgram = "pitivi"; }; } diff --git a/pkgs/by-name/pi/piv-agent/package.nix b/pkgs/by-name/pi/piv-agent/package.nix index 0f257d61cfa9..7d97118e58a0 100644 --- a/pkgs/by-name/pi/piv-agent/package.nix +++ b/pkgs/by-name/pi/piv-agent/package.nix @@ -33,10 +33,10 @@ buildGoModule rec { buildInputs = lib.optionals (!stdenv.hostPlatform.isDarwin) [ pcsclite ]; - meta = with lib; { + meta = { description = "SSH and GPG agent which you can use with your PIV hardware security device (e.g. a Yubikey)"; homepage = "https://github.com/smlx/piv-agent"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "piv-agent"; }; diff --git a/pkgs/by-name/pi/pix/package.nix b/pkgs/by-name/pi/pix/package.nix index 69f2975f3144..eb329ff5f84e 100644 --- a/pkgs/by-name/pi/pix/package.nix +++ b/pkgs/by-name/pi/pix/package.nix @@ -103,12 +103,12 @@ stdenv.mkDerivation rec { }") ''; - meta = with lib; { + meta = { description = "Generic image viewer from Linux Mint"; mainProgram = "pix"; homepage = "https://github.com/linuxmint/pix"; - license = licenses.gpl2Only; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/pi/pixd/package.nix b/pkgs/by-name/pi/pixd/package.nix index 57487c9f5efe..c3bb33f1b445 100644 --- a/pkgs/by-name/pi/pixd/package.nix +++ b/pkgs/by-name/pi/pixd/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Colourful visualization tool for binary files"; homepage = "https://github.com/FireyFly/pixd"; - maintainers = [ maintainers.FireyFly ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = [ lib.maintainers.FireyFly ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "pixd"; }; } diff --git a/pkgs/by-name/pi/pixel-code/package.nix b/pkgs/by-name/pi/pixel-code/package.nix index 92b3886685e9..79bc76ddec90 100644 --- a/pkgs/by-name/pi/pixel-code/package.nix +++ b/pkgs/by-name/pi/pixel-code/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/qwerasd205/PixelCode"; description = "Pixel font designed to actually be good for programming"; - license = licenses.ofl; - maintainers = with maintainers; [ mattpolzin ]; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ mattpolzin ]; }; } diff --git a/pkgs/by-name/pi/pixelfed/package.nix b/pkgs/by-name/pi/pixelfed/package.nix index d1c7d1024fa0..beff15a82c2f 100644 --- a/pkgs/by-name/pi/pixelfed/package.nix +++ b/pkgs/by-name/pi/pixelfed/package.nix @@ -40,9 +40,9 @@ php.buildComposerProject2 (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Federated image sharing platform"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; homepage = "https://pixelfed.org/"; maintainers = [ ]; platforms = php.meta.platforms; diff --git a/pkgs/by-name/pi/pixelnuke/package.nix b/pkgs/by-name/pi/pixelnuke/package.nix index a3e6e7cfee85..92a454d22d84 100644 --- a/pkgs/by-name/pi/pixelnuke/package.nix +++ b/pkgs/by-name/pi/pixelnuke/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { install -Dm755 ./pixelnuke $out/bin/pixelnuke ''; - meta = with lib; { + meta = { description = "Multiplayer canvas (C implementation)"; homepage = "https://cccgoe.de/wiki/Pixelflut"; - license = licenses.unlicense; - platforms = platforms.linux; - maintainers = with maintainers; [ mrVanDalo ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mrVanDalo ]; mainProgram = "pixelnuke"; }; }) diff --git a/pkgs/by-name/pi/pixelorama/package.nix b/pkgs/by-name/pi/pixelorama/package.nix index 451fff2aecc4..6d3063de2812 100644 --- a/pkgs/by-name/pi/pixelorama/package.nix +++ b/pkgs/by-name/pi/pixelorama/package.nix @@ -73,17 +73,17 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://orama-interactive.itch.io/pixelorama"; description = "Free & open-source 2D sprite editor, made with the Godot Engine"; changelog = "https://github.com/Orama-Interactive/Pixelorama/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ felschr ]; + maintainers = with lib.maintainers; [ felschr ]; mainProgram = "pixelorama"; }; }) diff --git a/pkgs/by-name/pi/pixeluvo/package.nix b/pkgs/by-name/pi/pixeluvo/package.nix index 585621045bb6..4e8d08d71845 100644 --- a/pkgs/by-name/pi/pixeluvo/package.nix +++ b/pkgs/by-name/pi/pixeluvo/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Beautifully Designed Image and Photo Editor for Windows and Linux"; homepage = "http://www.pixeluvo.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; maintainers = [ ]; mainProgram = "pixeluvo"; diff --git a/pkgs/by-name/pi/pixinsight/package.nix b/pkgs/by-name/pi/pixinsight/package.nix index 4637106ffbcc..4a3b74a2eaae 100644 --- a/pkgs/by-name/pi/pixinsight/package.nix +++ b/pkgs/by-name/pi/pixinsight/package.nix @@ -39,13 +39,13 @@ }: let - meta = with lib; { + meta = { description = "Scientific image processing program for astrophotography"; homepage = "https://pixinsight.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.sheepforce ]; + maintainers = [ lib.maintainers.sheepforce ]; hydraPlatforms = [ ]; mainProgram = "PixInsight"; }; @@ -114,7 +114,7 @@ let targetPkgs = pkgs: - with pkgs; + [ # PI itself installPkg diff --git a/pkgs/by-name/pi/pixman/package.nix b/pkgs/by-name/pi/pixman/package.nix index f7e58add0a17..eb15d72e7c0d 100644 --- a/pkgs/by-name/pi/pixman/package.nix +++ b/pkgs/by-name/pi/pixman/package.nix @@ -92,11 +92,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://pixman.org"; description = "Low-level library for pixel manipulation"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; pkgConfigModules = [ "pixman-1" ]; }; }) diff --git a/pkgs/by-name/pi/pixz/package.nix b/pkgs/by-name/pi/pixz/package.nix index 50c4bd695442..2bd0c2230f38 100644 --- a/pkgs/by-name/pi/pixz/package.nix +++ b/pkgs/by-name/pi/pixz/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { description = "Parallel compressor/decompressor for xz format"; - license = licenses.bsd2; - maintainers = [ maintainers.raskin ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.unix; mainProgram = "pixz"; }; } diff --git a/pkgs/by-name/pi/pizarra/package.nix b/pkgs/by-name/pi/pizarra/package.nix index c1aeedc91358..42f7d6414388 100644 --- a/pkgs/by-name/pi/pizarra/package.nix +++ b/pkgs/by-name/pi/pizarra/package.nix @@ -47,7 +47,7 @@ rustPlatform.buildRustPackage rec { --replace "Icon=/usr/share/icons/hicolor/scalable/apps/pizarra.svg" "Icon=pizarra" ''; - meta = with lib; { + meta = { description = "Simple blackboard written in GTK"; mainProgram = "pizarra"; longDescription = '' @@ -61,7 +61,7 @@ rustPlatform.buildRustPackage rec { - Grids ''; homepage = "https://pizarra.categulario.xyz/en/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pj/pjsip/package.nix b/pkgs/by-name/pj/pjsip/package.nix index 0b4368227654..bab26d25068d 100644 --- a/pkgs/by-name/pj/pjsip/package.nix +++ b/pkgs/by-name/pj/pjsip/package.nix @@ -130,13 +130,13 @@ stdenv.mkDerivation (finalAttrs: { ${(python3.withPackages (pkgs: [ pkgs.pjsua2 ])).interpreter} -c "import pjsua2" > $out ''; - meta = with lib; { + meta = { description = "Multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE"; homepage = "https://pjsip.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ olynch ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ olynch ]; mainProgram = "pjsua"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; pkgConfigModules = [ "libpjproject" ]; }; }) diff --git a/pkgs/by-name/pk/pkcrack/package.nix b/pkgs/by-name/pk/pkcrack/package.nix index 8422fd49c17b..aed35346da63 100644 --- a/pkgs/by-name/pk/pkcrack/package.nix +++ b/pkgs/by-name/pk/pkcrack/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Breaking PkZip-encryption"; homepage = "https://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack.html"; license = { @@ -47,8 +47,8 @@ stdenv.mkDerivation (finalAttrs: { url = "https://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack/pkcrack-readme.html"; free = false; }; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.all; mainProgram = "pkcrack"; }; }) diff --git a/pkgs/by-name/pk/pkcs11-provider/package.nix b/pkgs/by-name/pk/pkcs11-provider/package.nix index fb9d3fd9b6c7..b74d2043c42d 100644 --- a/pkgs/by-name/pk/pkcs11-provider/package.nix +++ b/pkgs/by-name/pk/pkcs11-provider/package.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { homepage = "https://github.com/latchset/pkcs11-provider"; description = "OpenSSL 3.x provider to access hardware or software tokens using the PKCS#11 Cryptographic Token Interface"; - maintainers = with maintainers; [ numinit ]; - license = licenses.asl20; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ numinit ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pk/pkcs11helper/package.nix b/pkgs/by-name/pk/pkcs11helper/package.nix index f98f219145d5..91470923b694 100644 --- a/pkgs/by-name/pk/pkcs11helper/package.nix +++ b/pkgs/by-name/pk/pkcs11helper/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/OpenSC/pkcs11-helper"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 gpl2Only ]; description = "Library that simplifies the interaction with PKCS#11 providers"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pk/pkg-config-unwrapped/package.nix b/pkgs/by-name/pk/pkg-config-unwrapped/package.nix index 9a5b9191d5dd..eace0aeab444 100644 --- a/pkgs/by-name/pk/pkg-config-unwrapped/package.nix +++ b/pkgs/by-name/pk/pkg-config-unwrapped/package.nix @@ -77,11 +77,11 @@ stdenv.mkDerivation rec { postInstall = ''rm -f "$out"/bin/*-pkg-config''; # clean the duplicate file - meta = with lib; { + meta = { description = "Tool that allows packages to find out information about other packages"; homepage = "http://pkg-config.freedesktop.org/wiki/"; - platforms = platforms.all; - license = licenses.gpl2Plus; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; mainProgram = "pkg-config"; }; } diff --git a/pkgs/by-name/pk/pkg/package.nix b/pkgs/by-name/pk/pkg/package.nix index e92d1ba5e208..0ae6d4bfafb2 100644 --- a/pkgs/by-name/pk/pkg/package.nix +++ b/pkgs/by-name/pk/pkg/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/etc ''; - meta = with lib; { + meta = { homepage = "https://github.com/freebsd/pkg"; description = "Package management tool for FreeBSD"; - maintainers = with maintainers; [ qyliss ]; - platforms = with platforms; darwin ++ freebsd ++ linux ++ netbsd ++ openbsd; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = with lib.platforms; darwin ++ freebsd ++ linux ++ netbsd ++ openbsd; + license = lib.licenses.bsd2; mainProgram = "pkg"; }; }) diff --git a/pkgs/by-name/pk/pkgdiff/package.nix b/pkgs/by-name/pk/pkgdiff/package.nix index a867c83f5eb1..c77b2e44addc 100644 --- a/pkgs/by-name/pk/pkgdiff/package.nix +++ b/pkgs/by-name/pk/pkgdiff/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/pkgdiff --prefix PATH : ${lib.makeBinPath [ wdiff ]} ''; - meta = with lib; { + meta = { description = "Tool for visualizing changes in Linux software packages"; homepage = "https://lvc.github.io/pkgdiff/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ sweber ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sweber ]; + platforms = lib.platforms.unix; mainProgram = "pkgdiff"; }; } diff --git a/pkgs/by-name/pk/pktgen/package.nix b/pkgs/by-name/pk/pktgen/package.nix index 116daa69dc1f..029471e5ad00 100644 --- a/pkgs/by-name/pk/pktgen/package.nix +++ b/pkgs/by-name/pk/pktgen/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { rm -rf $out/include $out/lib ''; - meta = with lib; { + meta = { description = "Traffic generator powered by DPDK"; homepage = "http://dpdk.org/"; - license = licenses.bsdOriginal; - platforms = platforms.linux; - maintainers = [ maintainers.abuibrahim ]; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.abuibrahim ]; }; } diff --git a/pkgs/by-name/pl/planarity/package.nix b/pkgs/by-name/pl/planarity/package.nix index a1d18bc8a476..5e7fb49743c4 100644 --- a/pkgs/by-name/pl/planarity/package.nix +++ b/pkgs/by-name/pl/planarity/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/graph-algorithms/edge-addition-planarity-suite"; description = "Library for implementing graph algorithms"; mainProgram = "planarity"; - license = licenses.bsd3; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pl/planetary_annihilation/package.nix b/pkgs/by-name/pl/planetary_annihilation/package.nix index 6b43eb641d83..a7fdf350e117 100644 --- a/pkgs/by-name/pl/planetary_annihilation/package.nix +++ b/pkgs/by-name/pl/planetary_annihilation/package.nix @@ -102,11 +102,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "http://www.uberent.com/pa/"; description = "Next-generation RTS that takes the genre to a planetary scale"; license = lib.licenses.unfree; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; diff --git a/pkgs/by-name/pl/planify/package.nix b/pkgs/by-name/pl/planify/package.nix index d97e2b635a10..f995e5ae4f43 100644 --- a/pkgs/by-name/pl/planify/package.nix +++ b/pkgs/by-name/pl/planify/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { webkitgtk_6_0 ]; - meta = with lib; { + meta = { description = "Task manager with Todoist support designed for GNU/Linux"; homepage = "https://github.com/alainm23/planify"; - license = licenses.gpl3Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "io.github.alainm23.planify"; }; } diff --git a/pkgs/by-name/pl/plank/package.nix b/pkgs/by-name/pl/plank/package.nix index 553559f2f6a8..67505b1c1e62 100644 --- a/pkgs/by-name/pl/plank/package.nix +++ b/pkgs/by-name/pl/plank/package.nix @@ -80,13 +80,13 @@ stdenv.mkDerivation rec { --replace "/usr/bin/file" "${file}/bin/file" ''; - meta = with lib; { + meta = { description = "Elegant, simple, clean dock"; mainProgram = "plank"; homepage = "https://launchpad.net/plank"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ davidak ]; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ davidak ]; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/by-name/pl/plano-theme/package.nix b/pkgs/by-name/pl/plano-theme/package.nix index 7bec5cabaeef..821092aca516 100644 --- a/pkgs/by-name/pl/plano-theme/package.nix +++ b/pkgs/by-name/pl/plano-theme/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { gtk-engine-murrine ]; - meta = with lib; { + meta = { description = "Flat theme for GNOME and Xfce"; homepage = "https://github.com/lassekongo83/plano-theme"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/pl/plantuml-c4/package.nix b/pkgs/by-name/pl/plantuml-c4/package.nix index a17aedefee26..2dbe0e632d5c 100644 --- a/pkgs/by-name/pl/plantuml-c4/package.nix +++ b/pkgs/by-name/pl/plantuml-c4/package.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation { plantuml sprites.puml -o $out ''; - meta = with lib; { + meta = { description = "PlantUML bundled with C4-Plantuml and plantuml sprites library"; mainProgram = "plantuml"; homepage = "https://github.com/plantuml-stdlib/C4-PlantUML"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tfc anthonyroussel ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pl/plantuml-server/package.nix b/pkgs/by-name/pl/plantuml-server/package.nix index 1036d73e1973..af809148f375 100644 --- a/pkgs/by-name/pl/plantuml-server/package.nix +++ b/pkgs/by-name/pl/plantuml-server/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { inherit (nixosTests) plantuml-server; }; - meta = with lib; { + meta = { description = "Web application to generate UML diagrams on-the-fly"; homepage = "https://plantuml.com/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ truh anthonyroussel ]; diff --git a/pkgs/by-name/pl/plasma-overdose-kde-theme/package.nix b/pkgs/by-name/pl/plasma-overdose-kde-theme/package.nix index b5060fe40cf6..70f52d1a5e2a 100644 --- a/pkgs/by-name/pl/plasma-overdose-kde-theme/package.nix +++ b/pkgs/by-name/pl/plasma-overdose-kde-theme/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cute KDE theme inspired by the game Needy Girl Overdose"; homepage = "https://github.com/Notify-ctrl/Plasma-Overdose"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ takagiy ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ takagiy ]; }; } diff --git a/pkgs/by-name/pl/plasticity/package.nix b/pkgs/by-name/pl/plasticity/package.nix index 0176b61a98f8..eab8dbafedad 100644 --- a/pkgs/by-name/pl/plasticity/package.nix +++ b/pkgs/by-name/pl/plasticity/package.nix @@ -120,13 +120,13 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--add-flags "--use-gl=egl") ''; - meta = with lib; { + meta = { description = "CAD for artists"; homepage = "https://www.plasticity.xyz"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "Plasticity"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ imadnyc ]; + maintainers = with lib.maintainers; [ imadnyc ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/pl/platform-folders/package.nix b/pkgs/by-name/pl/platform-folders/package.nix index 7c5efe394074..cc267b2d2c59 100644 --- a/pkgs/by-name/pl/platform-folders/package.nix +++ b/pkgs/by-name/pl/platform-folders/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "C++ library to look for standard platform directories so that you do not need to write platform-specific code"; homepage = "https://github.com/sago007/PlatformFolders"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pl/platformio-chrootenv/package.nix b/pkgs/by-name/pl/platformio-chrootenv/package.nix index 870ce06d0ede..edec21cc2322 100644 --- a/pkgs/by-name/pl/platformio-chrootenv/package.nix +++ b/pkgs/by-name/pl/platformio-chrootenv/package.nix @@ -34,12 +34,12 @@ buildFHSEnv { # disabled temporarily because fastdiff no longer support 32bit # multiPkgs = pio-pkgs; - meta = with lib; { + meta = { description = "Open source ecosystem for IoT development"; homepage = "https://platformio.org"; - maintainers = with maintainers; [ mog ]; - license = licenses.asl20; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ mog ]; + license = lib.licenses.asl20; + platforms = with lib.platforms; linux; }; extraInstallCommands = '' diff --git a/pkgs/by-name/pl/platformio-core/package.nix b/pkgs/by-name/pl/platformio-core/package.nix index 9edb8ce9c8a3..27a26e46c2ed 100644 --- a/pkgs/by-name/pl/platformio-core/package.nix +++ b/pkgs/by-name/pl/platformio-core/package.nix @@ -216,13 +216,13 @@ buildPythonApplication rec { python = python3Packages.python; }; - meta = with lib; { + meta = { changelog = "https://github.com/platformio/platformio-core/releases/tag/${src.tag}"; description = "Open source ecosystem for IoT development"; downloadPage = "https://github.com/platformio/platformio-core"; homepage = "https://platformio.org"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mog makefu ]; diff --git a/pkgs/by-name/pl/platinum-searcher/package.nix b/pkgs/by-name/pl/platinum-searcher/package.nix index 76568d9482e0..50fd80576feb 100644 --- a/pkgs/by-name/pl/platinum-searcher/package.nix +++ b/pkgs/by-name/pl/platinum-searcher/package.nix @@ -31,10 +31,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/monochromegane/the_platinum_searcher"; description = "Code search tool similar to ack and the_silver_searcher(ag)"; mainProgram = "pt"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/pl/play-with-mpv/package.nix b/pkgs/by-name/pl/play-with-mpv/package.nix index acdf75416958..1740c8159264 100644 --- a/pkgs/by-name/pl/play-with-mpv/package.nix +++ b/pkgs/by-name/pl/play-with-mpv/package.nix @@ -53,11 +53,11 @@ python3Packages.buildPythonApplication { # package has no tests doCheck = false; - meta = with lib; { + meta = { description = "Chrome extension and python server that allows you to play videos in webpages with MPV instead"; homepage = "https://github.com/Thann/play-with-mpv"; - license = licenses.mit; - maintainers = with maintainers; [ dawidsowa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dawidsowa ]; mainProgram = "play-with-mpv"; }; } diff --git a/pkgs/by-name/pl/playerctl/package.nix b/pkgs/by-name/pl/playerctl/package.nix index fbeafd0e1c91..388d12d0457a 100644 --- a/pkgs/by-name/pl/playerctl/package.nix +++ b/pkgs/by-name/pl/playerctl/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { (lib.mesonBool "gtk-doc" withDocs) ]; - meta = with lib; { + meta = { description = "Command-line utility and library for controlling media players that implement MPRIS"; homepage = "https://github.com/acrisci/playerctl"; - license = licenses.lgpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ puffnfresh ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ puffnfresh ]; broken = stdenv.hostPlatform.isDarwin; mainProgram = "playerctl"; }; diff --git a/pkgs/by-name/pl/please-cli/package.nix b/pkgs/by-name/pl/please-cli/package.nix index 80f895828b2d..dfaae64ce590 100644 --- a/pkgs/by-name/pl/please-cli/package.nix +++ b/pkgs/by-name/pl/please-cli/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { version = "v${finalAttrs.version}"; }; - meta = with lib; { + meta = { description = "AI helper script to create CLI commands based on GPT prompts"; homepage = "https://github.com/TNG/please-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ _8-bit-fox ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ _8-bit-fox ]; mainProgram = "please"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/pl/please/package.nix b/pkgs/by-name/pl/please/package.nix index 0331fdb5f414..9244d66533bc 100644 --- a/pkgs/by-name/pl/please/package.nix +++ b/pkgs/by-name/pl/please/package.nix @@ -35,7 +35,7 @@ rustPlatform.buildRustPackage rec { passthru.tests = { inherit (nixosTests) please; }; - meta = with lib; { + meta = { description = "Polite regex-first sudo alternative"; longDescription = '' Delegate accurate least privilege access with ease. Express easily with a @@ -47,8 +47,8 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://www.usenix.org.uk/content/please.html"; changelog = "https://github.com/edneville/please/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pl/plecost/package.nix b/pkgs/by-name/pl/plecost/package.nix index 3be94e31681b..8aa8bb14cbf1 100644 --- a/pkgs/by-name/pl/plecost/package.nix +++ b/pkgs/by-name/pl/plecost/package.nix @@ -35,11 +35,11 @@ python3Packages.buildPythonApplication { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { description = "Vulnerability fingerprinting and vulnerability finder for Wordpress blog engine"; mainProgram = "plecost"; homepage = "https://github.com/iniqua/plecost"; - license = licenses.bsd3; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/by-name/pl/pleroma/package.nix b/pkgs/by-name/pl/pleroma/package.nix index cc163d36ed22..e9d07ffe1355 100644 --- a/pkgs/by-name/pl/pleroma/package.nix +++ b/pkgs/by-name/pl/pleroma/package.nix @@ -194,15 +194,15 @@ beamPackages.mixRelease rec { inherit mixNixDeps; }; - meta = with lib; { + meta = { description = "ActivityPub microblogging server"; homepage = "https://git.pleroma.social/pleroma/pleroma"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ picnoir kloenk yayayayaka ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pl/plexamp/package.nix b/pkgs/by-name/pl/plexamp/package.nix index d3eee3c7651e..0c26bf0f962c 100644 --- a/pkgs/by-name/pl/plexamp/package.nix +++ b/pkgs/by-name/pl/plexamp/package.nix @@ -35,12 +35,12 @@ appimageTools.wrapType2 { passthru.updateScript = ./update-plexamp.sh; - meta = with lib; { + meta = { description = "Beautiful Plex music player for audiophiles, curators, and hipsters"; homepage = "https://plexamp.com/"; changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/82"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ killercup redhawk synthetica diff --git a/pkgs/by-name/pl/plistcpp/package.nix b/pkgs/by-name/pl/plistcpp/package.nix index 7e8b60a7cfcd..015e443d7f37 100644 --- a/pkgs/by-name/pl/plistcpp/package.nix +++ b/pkgs/by-name/pl/plistcpp/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation { pugixml ]; - meta = with lib; { + meta = { maintainers = [ ]; description = "CPP bindings for Plist"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pl/plistwatch/package.nix b/pkgs/by-name/pl/plistwatch/package.nix index c80e02764e19..cf378643524e 100644 --- a/pkgs/by-name/pl/plistwatch/package.nix +++ b/pkgs/by-name/pl/plistwatch/package.nix @@ -22,11 +22,11 @@ buildGoModule { doCheck = false; - meta = with lib; { + meta = { description = "Monitors and prints changes to MacOS plists in real time"; homepage = "https://github.com/catilac/plistwatch"; - maintainers = with maintainers; [ gdinh ]; - license = licenses.mit; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ gdinh ]; + license = lib.licenses.mit; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/pl/plm/package.nix b/pkgs/by-name/pl/plm/package.nix index 4e6fad1c7035..681eccd1e33a 100644 --- a/pkgs/by-name/pl/plm/package.nix +++ b/pkgs/by-name/pl/plm/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free cross-platform programming exerciser"; mainProgram = "plm"; homepage = "https://people.irisa.fr/Martin.Quinson/Teaching/PLM/"; - license = licenses.gpl3; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; maintainers = [ ]; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/pl/plocate/package.nix b/pkgs/by-name/pl/plocate/package.nix index 5a38cd82123f..c4dcb8bff05e 100644 --- a/pkgs/by-name/pl/plocate/package.nix +++ b/pkgs/by-name/pl/plocate/package.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation rec { "-Ddbpath=locatedb" ]; - meta = with lib; { + meta = { description = "Much faster locate"; homepage = "https://plocate.sesse.net/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg SuperSandro2000 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pl/plog/package.nix b/pkgs/by-name/pl/plog/package.nix index 59d7b8456c16..ed93d41b196f 100644 --- a/pkgs/by-name/pl/plog/package.nix +++ b/pkgs/by-name/pl/plog/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { "-DPLOG_BUILD_SAMPLES=NO" ]; - meta = with lib; { + meta = { description = "Portable, simple and extensible C++ logging library"; homepage = "https://github.com/SergiusTheBest/plog"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ raphaelr erdnaxe ]; diff --git a/pkgs/by-name/pl/plotinus/package.nix b/pkgs/by-name/pl/plotinus/package.nix index 1fdc8b31177f..8d90a3d12673 100644 --- a/pkgs/by-name/pl/plotinus/package.nix +++ b/pkgs/by-name/pl/plotinus/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) plotinus; }; - meta = with lib; { + meta = { description = "Searchable command palette in every modern GTK application"; homepage = "https://github.com/p-e-w/plotinus"; - maintainers = with maintainers; [ samdroid-apps ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ samdroid-apps ]; + platforms = lib.platforms.linux; # No COPYING file, but headers in the source code - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/pl/plplot/package.nix b/pkgs/by-name/pl/plplot/package.nix index dcc8ca518051..eae33774a01e 100644 --- a/pkgs/by-name/pl/plplot/package.nix +++ b/pkgs/by-name/pl/plplot/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Cross-platform scientific graphics plotting library"; mainProgram = "pltek"; homepage = "https://plplot.org"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; - license = licenses.lgpl2; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/pl/plugin-torture/package.nix b/pkgs/by-name/pl/plugin-torture/package.nix index 5e116eb6e3ef..128db871534f 100644 --- a/pkgs/by-name/pl/plugin-torture/package.nix +++ b/pkgs/by-name/pl/plugin-torture/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { cp find-safe-plugins $out/bin/ ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "https://github.com/cth103/plugin-torture"; description = "Tool to test LADSPA and LV2 plugins"; - license = licenses.gpl2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pl/plujain-ramp/package.nix b/pkgs/by-name/pl/plujain-ramp/package.nix index f069ca260945..7f10f8ee8763 100644 --- a/pkgs/by-name/pl/plujain-ramp/package.nix +++ b/pkgs/by-name/pl/plujain-ramp/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { installFlags = [ "INSTALL_PATH=$(out)/lib/lv2" ]; - meta = with lib; { + meta = { description = "Mono rhythmic tremolo LV2 Audio Plugin"; homepage = "https://github.com/Houston4444/plujain-ramp"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.hirenashah ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.hirenashah ]; }; } diff --git a/pkgs/by-name/pl/plumber/package.nix b/pkgs/by-name/pl/plumber/package.nix index ef5fd9881c01..ff48c4e3006e 100644 --- a/pkgs/by-name/pl/plumber/package.nix +++ b/pkgs/by-name/pl/plumber/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "-X github.com/streamdal/plumber/options.VERSION=${version}" ]; - meta = with lib; { + meta = { description = "CLI devtool for interacting with data in message systems like Kafka, RabbitMQ, GCP PubSub and more"; mainProgram = "plumber"; homepage = "https://github.com/streamdal/plumber"; - license = licenses.mit; - maintainers = with maintainers; [ svrana ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ svrana ]; }; } diff --git a/pkgs/by-name/pl/plumed/package.nix b/pkgs/by-name/pl/plumed/package.nix index c1131d48cd3f..5bbeda68e847 100644 --- a/pkgs/by-name/pl/plumed/package.nix +++ b/pkgs/by-name/pl/plumed/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Molecular metadynamics library"; homepage = "https://github.com/plumed/plumed2"; - license = licenses.lgpl3Only; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.lgpl3Only; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/pl/pluto/package.nix b/pkgs/by-name/pl/pluto/package.nix index 7cbbd5c329f6..953e562e88e5 100644 --- a/pkgs/by-name/pl/pluto/package.nix +++ b/pkgs/by-name/pl/pluto/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; # for tests - meta = with lib; { + meta = { homepage = "https://github.com/FairwindsOps/pluto"; description = "Find deprecated Kubernetes apiVersions"; mainProgram = "pluto"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kashw2 ]; }; diff --git a/pkgs/by-name/pl/plymouth/package.nix b/pkgs/by-name/pl/plymouth/package.nix index 63e5f9d65f1c..89607cd1bf3a 100644 --- a/pkgs/by-name/pl/plymouth/package.nix +++ b/pkgs/by-name/pl/plymouth/package.nix @@ -122,11 +122,11 @@ stdenv.mkDerivation (finalAttrs: { # location using DESTDIR and then move it to proper one in postInstall. env.DESTDIR = "${placeholder "out"}/dest"; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/wiki/Software/Plymouth/"; description = "Boot splash and boot logger"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/pm/pmccabe/package.nix b/pkgs/by-name/pm/pmccabe/package.nix index a1d7bacca210..e0dc87dfc77b 100644 --- a/pkgs/by-name/pm/pmccabe/package.nix +++ b/pkgs/by-name/pm/pmccabe/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "McCabe-style function complexity and line counting for C and C++"; homepage = "https://people.debian.org/~bame/pmccabe/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' pmccabe calculates McCabe-style cyclomatic complexity for C and @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { trees or files; and vifn, to invoke vi given a function name rather than a file name. ''; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pm/pmd/package.nix b/pkgs/by-name/pm/pmd/package.nix index 2be5fdf1012a..b6440a56eeea 100644 --- a/pkgs/by-name/pm/pmd/package.nix +++ b/pkgs/by-name/pm/pmd/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Extensible cross-language static code analyzer"; homepage = "https://pmd.github.io/"; changelog = "https://pmd.github.io/pmd-${version}/pmd_release_notes.html"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ bsdOriginal asl20 ]; diff --git a/pkgs/by-name/pm/pmidi/package.nix b/pkgs/by-name/pm/pmidi/package.nix index e8c6212d99e1..436d809dcd62 100644 --- a/pkgs/by-name/pm/pmidi/package.nix +++ b/pkgs/by-name/pm/pmidi/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation { buildInputs = [ alsa-lib ]; - meta = with lib; { + meta = { homepage = "https://www.parabola.me.uk/alsa/pmidi.html"; description = "Straightforward command line program to play midi files through the ALSA sequencer"; maintainers = [ ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "pmidi"; }; } diff --git a/pkgs/by-name/pm/pms/package.nix b/pkgs/by-name/pm/pms/package.nix index 08205cc9fd50..4a567f89b37e 100644 --- a/pkgs/by-name/pm/pms/package.nix +++ b/pkgs/by-name/pm/pms/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-XNFzG4hGDUN0wWbpBoQWUH1bWIgoYcyP4tNRGSV4ro4="; - meta = with lib; { + meta = { description = "Interactive Vim-like console client for MPD"; homepage = "https://ambientsound.github.io/pms/"; - license = licenses.mit; - maintainers = with maintainers; [ deejayem ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ deejayem ]; mainProgram = "pms"; }; } diff --git a/pkgs/by-name/pn/pngcheck/package.nix b/pkgs/by-name/pn/pngcheck/package.nix index f6bc2a5f3e46..fb96380cf1a9 100644 --- a/pkgs/by-name/pn/pngcheck/package.nix +++ b/pkgs/by-name/pn/pngcheck/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://pmt.sourceforge.net/pngcrush"; description = "Verifies the integrity of PNG, JNG and MNG files"; - license = licenses.free; - platforms = platforms.unix; - maintainers = with maintainers; [ starcraft66 ]; + license = lib.licenses.free; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ starcraft66 ]; mainProgram = "pngcheck"; }; } diff --git a/pkgs/by-name/pn/pngloss/package.nix b/pkgs/by-name/pn/pngloss/package.nix index cbd911379799..b840fc2c50f0 100644 --- a/pkgs/by-name/pn/pngloss/package.nix +++ b/pkgs/by-name/pn/pngloss/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lossy compression of PNG images"; homepage = "https://github.com/foobaz/pngloss"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ _2gn ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ _2gn ]; mainProgram = "pngloss"; }; } diff --git a/pkgs/by-name/pn/pngnq/package.nix b/pkgs/by-name/pn/pngnq/package.nix index 23f4a6e0a248..74fc92ef8c36 100644 --- a/pkgs/by-name/pn/pngnq/package.nix +++ b/pkgs/by-name/pn/pngnq/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://pngnq.sourceforge.net/"; description = "PNG quantizer"; - license = licenses.bsd3; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pn/pngoptimizer/package.nix b/pkgs/by-name/pn/pngoptimizer/package.nix index d87379370d6a..be2220a84c45 100644 --- a/pkgs/by-name/pn/pngoptimizer/package.nix +++ b/pkgs/by-name/pn/pngoptimizer/package.nix @@ -32,16 +32,16 @@ stdenv.mkDerivation rec { rmdir $out/usr ''; - meta = with lib; { + meta = { homepage = "https://psydk.org/pngoptimizer"; description = "PNG optimizer and converter"; # https://github.com/hadrien-psydk/pngoptimizer#license-information - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21Only zlib ]; - maintainers = with maintainers; [ smitop ]; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ smitop ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/pn/pngpp/package.nix b/pkgs/by-name/pn/pngpp/package.nix index e697003b5026..b2952c80f5c5 100644 --- a/pkgs/by-name/pn/pngpp/package.nix +++ b/pkgs/by-name/pn/pngpp/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/pngpp/"; description = "C++ wrapper for libpng library"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.ramkromberg ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ramkromberg ]; }; } diff --git a/pkgs/by-name/pn/pngtools/package.nix b/pkgs/by-name/pn/pngtools/package.nix index 73acb2a8468f..308343c91daa 100644 --- a/pkgs/by-name/pn/pngtools/package.nix +++ b/pkgs/by-name/pn/pngtools/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { buildInputs = [ libpng12 ]; - meta = with lib; { + meta = { homepage = "https://github.com/mikalstill/pngtools"; description = "PNG manipulation tools"; - maintainers = with maintainers; [ zendo ]; - license = licenses.gpl2Only; - platforms = platforms.all; + maintainers = with lib.maintainers; [ zendo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pn/pnpm-shell-completion/package.nix b/pkgs/by-name/pn/pnpm-shell-completion/package.nix index 627fa46e4a62..28e1f3dd8d10 100644 --- a/pkgs/by-name/pn/pnpm-shell-completion/package.nix +++ b/pkgs/by-name/pn/pnpm-shell-completion/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { --zsh pnpm-shell-completion.plugin.zsh ''; - meta = with lib; { + meta = { homepage = "https://github.com/g-plane/pnpm-shell-completion"; description = "Complete your pnpm command fastly"; - license = licenses.mit; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "pnpm-shell-completion"; }; } diff --git a/pkgs/by-name/po/pocket-casts/package.nix b/pkgs/by-name/po/pocket-casts/package.nix index a358441430f5..4054780d4718 100644 --- a/pkgs/by-name/po/pocket-casts/package.nix +++ b/pkgs/by-name/po/pocket-casts/package.nix @@ -53,12 +53,12 @@ buildNpmPackage rec { --add-flags $out/lib/node_modules/pocket-casts/main.js ''; - meta = with lib; { + meta = { description = "Pocket Casts webapp, packaged for the Linux Desktop"; homepage = "https://github.com/felicianotech/pocket-casts-desktop-app"; - license = licenses.mit; - maintainers = with maintainers; [ yayayayaka ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yayayayaka ]; mainProgram = "pocket-casts"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/po/pocketbase/package.nix b/pkgs/by-name/po/pocketbase/package.nix index 066fbb150356..db8d30f4effb 100644 --- a/pkgs/by-name/po/pocketbase/package.nix +++ b/pkgs/by-name/po/pocketbase/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Open Source realtime backend in 1 file"; homepage = "https://github.com/pocketbase/pocketbase"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya thilobillerbeck ]; diff --git a/pkgs/by-name/po/pocketsphinx/package.nix b/pkgs/by-name/po/pocketsphinx/package.nix index e19a5d73d925..08d3510e072f 100644 --- a/pkgs/by-name/po/pocketsphinx/package.nix +++ b/pkgs/by-name/po/pocketsphinx/package.nix @@ -59,17 +59,17 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Small speech recognizer"; homepage = "https://github.com/cmusphinx/pocketsphinx"; changelog = "https://github.com/cmusphinx/pocketsphinx/blob/v${finalAttrs.version}/NEWS"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 mit ]; pkgConfigModules = [ "pocketsphinx" ]; mainProgram = "pocketsphinx"; - maintainers = with maintainers; [ jopejoe1 ]; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/po/poco/package.nix b/pkgs/by-name/po/poco/package.nix index 89ac98ee03a6..3d6dd586095f 100644 --- a/pkgs/by-name/po/poco/package.nix +++ b/pkgs/by-name/po/poco/package.nix @@ -107,13 +107,13 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://pocoproject.org/"; description = "Cross-platform C++ libraries with a network/internet focus"; - license = licenses.boost; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ tomodachi94 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/podgrab/package.nix b/pkgs/by-name/po/podgrab/package.nix index d7707e7462bd..b2eec30834b5 100644 --- a/pkgs/by-name/po/podgrab/package.nix +++ b/pkgs/by-name/po/podgrab/package.nix @@ -26,11 +26,11 @@ buildGoModule { passthru.tests = { inherit (nixosTests) podgrab; }; - meta = with lib; { + meta = { description = "Self-hosted podcast manager to download episodes as soon as they become live"; mainProgram = "podgrab"; homepage = "https://github.com/akhilrex/podgrab"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/by-name/po/podiff/package.nix b/pkgs/by-name/po/podiff/package.nix index 0c858d8e43de..0174c9608b47 100644 --- a/pkgs/by-name/po/podiff/package.nix +++ b/pkgs/by-name/po/podiff/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation { mkdir -p $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Finds differences in translations between two PO files, or revisions"; mainProgram = "podiff"; homepage = "http://puszcza.gnu.org.ua/software/podiff"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/poedit/package.nix b/pkgs/by-name/po/poedit/package.nix index 47b1d0720e4b..a95308f76988 100644 --- a/pkgs/by-name/po/poedit/package.nix +++ b/pkgs/by-name/po/poedit/package.nix @@ -77,13 +77,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Cross-platform gettext catalogs (.po files) editor"; mainProgram = "poedit"; homepage = "https://www.poedit.net/"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ dasj19 ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dasj19 ]; # configure: error: GTK+ build of wxWidgets is required broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/po/poetry/plugins/poetry-plugin-poeblix.nix b/pkgs/by-name/po/poetry/plugins/poetry-plugin-poeblix.nix index 399645532dfa..bcbc8df5825a 100644 --- a/pkgs/by-name/po/poetry/plugins/poetry-plugin-poeblix.nix +++ b/pkgs/by-name/po/poetry/plugins/poetry-plugin-poeblix.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "poeblix" ]; - meta = with lib; { + meta = { changelog = "https://github.com/spoorn/poeblix/releases/tag/${lib.removePrefix "refs/tags/" src.rev}"; description = "Poetry Plugin that adds various features that extend the poetry command such as building wheel files with locked dependencies, and validations of wheel/docker containers"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/spoorn/poeblix"; - maintainers = with maintainers; [ hennk ]; + maintainers = with lib.maintainers; [ hennk ]; }; } diff --git a/pkgs/by-name/po/poetry2conda/package.nix b/pkgs/by-name/po/poetry2conda/package.nix index f2e2c6b4b079..bf50280e7087 100644 --- a/pkgs/by-name/po/poetry2conda/package.nix +++ b/pkgs/by-name/po/poetry2conda/package.nix @@ -40,11 +40,11 @@ buildPythonApplication rec { pyyaml ]; - meta = with lib; { + meta = { description = "Script to convert a Python project declared on a pyproject.toml to a conda environment"; homepage = "https://github.com/dojeda/poetry2conda"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; mainProgram = "poetry2conda"; }; } diff --git a/pkgs/by-name/po/pokeget-rs/package.nix b/pkgs/by-name/po/pokeget-rs/package.nix index d7217b162fe0..259e59536d5a 100644 --- a/pkgs/by-name/po/pokeget-rs/package.nix +++ b/pkgs/by-name/po/pokeget-rs/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-EusvBjrtm7PAZ5exDUuCu2n300x1b1c9oks+T6cR2c8="; - meta = with lib; { + meta = { description = "Better rust version of pokeget"; homepage = "https://github.com/talwat/pokeget-rs"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "pokeget"; - maintainers = with maintainers; [ aleksana ]; + maintainers = with lib.maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/po/pokemmo-installer/package.nix b/pkgs/by-name/po/pokemmo-installer/package.nix index a4adf5a8eba1..81beed1f60a3 100644 --- a/pkgs/by-name/po/pokemmo-installer/package.nix +++ b/pkgs/by-name/po/pokemmo-installer/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Installer and Launcher for the PokeMMO emulator"; homepage = "https://pokemmo.eu"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kira-bruneau ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kira-bruneau ]; + platforms = lib.platforms.linux; mainProgram = "pokemmo-installer"; }; }) diff --git a/pkgs/by-name/po/pokemon-colorscripts-mac/package.nix b/pkgs/by-name/po/pokemon-colorscripts-mac/package.nix index 4bb318f26a71..1b4199b25d53 100644 --- a/pkgs/by-name/po/pokemon-colorscripts-mac/package.nix +++ b/pkgs/by-name/po/pokemon-colorscripts-mac/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Pokémon colorscripts for the terminal, compatible for mac"; longDescription = '' Show colored sprites of pokémons in your terminal. @@ -46,9 +46,9 @@ stdenv.mkDerivation { Inspired by DT's colorscripts. ''; homepage = "https://github.com/nuke-dash/pokemon-colorscripts-mac"; - license = licenses.mit; - maintainers = [ maintainers.wesleyjrz ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.wesleyjrz ]; + platforms = lib.platforms.unix; mainProgram = "pokemon-colorscripts"; }; } diff --git a/pkgs/by-name/po/pokemon-cursor/package.nix b/pkgs/by-name/po/pokemon-cursor/package.nix index 3a7494e70c43..6cfcda76c843 100644 --- a/pkgs/by-name/po/pokemon-cursor/package.nix +++ b/pkgs/by-name/po/pokemon-cursor/package.nix @@ -41,11 +41,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unofficial open-source Pokemon cursor theme"; homepage = "https://github.com/ful1e5/pokemon-cursor"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.getpsyched ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.getpsyched ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/po/pokemonsay/package.nix b/pkgs/by-name/po/pokemonsay/package.nix index 01abfe0bfcc8..fc6927eeae2a 100644 --- a/pkgs/by-name/po/pokemonsay/package.nix +++ b/pkgs/by-name/po/pokemonsay/package.nix @@ -69,11 +69,11 @@ stdenvNoCC.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Print pokemon in the CLI! An adaptation of the classic cowsay"; homepage = "https://github.com/HRKings/pokemonsay-newgenerations"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/by-name/po/pokete/package.nix b/pkgs/by-name/po/pokete/package.nix index 20ab91317222..13570c8de369 100644 --- a/pkgs/by-name/po/pokete/package.nix +++ b/pkgs/by-name/po/pokete/package.nix @@ -48,11 +48,11 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Terminal based Pokemon like game"; mainProgram = "pokete"; homepage = "https://lxgr-linux.github.io/pokete"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/po/polar/package.nix b/pkgs/by-name/po/polar/package.nix index 80de9a3d17ca..bc11d1f99ca8 100644 --- a/pkgs/by-name/po/polar/package.nix +++ b/pkgs/by-name/po/polar/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Command-line tools to interact with Polar watches"; longDescription = '' A set of command line tools written in Ruby to interact with Polar watches @@ -82,8 +82,8 @@ stdenv.mkDerivation { services.udev.packages = [ pkgs.polar ] ''; homepage = "https://github.com/cmaion/polar"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jluttine ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jluttine ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/po/polenum/package.nix b/pkgs/by-name/po/polenum/package.nix index 2e7cec24462a..0bd26fa5f329 100644 --- a/pkgs/by-name/po/polenum/package.nix +++ b/pkgs/by-name/po/polenum/package.nix @@ -28,11 +28,11 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to get the password policy from a windows machine"; homepage = "https://github.com/Wh1t3Fox/polenum"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ exploitoverload ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ exploitoverload ]; mainProgram = "polenum"; }; } diff --git a/pkgs/by-name/po/policycoreutils/package.nix b/pkgs/by-name/po/policycoreutils/package.nix index e5d47c202bae..e07df8b6c2c6 100644 --- a/pkgs/by-name/po/policycoreutils/package.nix +++ b/pkgs/by-name/po/policycoreutils/package.nix @@ -43,9 +43,9 @@ stdenv.mkDerivation rec { "MAN5DIR=$(out)/share/man/man5" ]; - meta = with lib; { + meta = { description = "SELinux policy core utilities"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; inherit (libsepol.meta) homepage platforms maintainers; }; } diff --git a/pkgs/by-name/po/polkadot/package.nix b/pkgs/by-name/po/polkadot/package.nix index 33600ba484ab..abdafaf9b41c 100644 --- a/pkgs/by-name/po/polkadot/package.nix +++ b/pkgs/by-name/po/polkadot/package.nix @@ -75,16 +75,16 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Implementation of a https://polkadot.network node in Rust based on the Substrate framework"; homepage = "https://github.com/paritytech/polkadot-sdk"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ akru andresilva FlorianFranzen RaghavSood ]; # See Iso::from_arch in src/isa/mod.rs in cranelift-codegen-meta. - platforms = intersectLists platforms.unix ( - platforms.aarch64 ++ platforms.s390x ++ platforms.riscv64 ++ platforms.x86 + platforms = intersectLists lib.platforms.unix ( + lib.platforms.aarch64 ++ lib.platforms.s390x ++ lib.platforms.riscv64 ++ lib.platforms.x86 ); }; } diff --git a/pkgs/by-name/po/polkit/package.nix b/pkgs/by-name/po/polkit/package.nix index 4fd41a15d018..f269b0ee61bb 100644 --- a/pkgs/by-name/po/polkit/package.nix +++ b/pkgs/by-name/po/polkit/package.nix @@ -188,15 +188,15 @@ stdenv.mkDerivation rec { ! test -e "$DESTDIR" ''; - meta = with lib; { + meta = { homepage = "https://github.com/polkit-org/polkit"; description = "Toolkit for defining and handling the policy that allows unprivileged processes to speak to privileged processes"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; badPlatforms = [ # mandatory libpolkit-gobject shared library lib.systems.inspect.platformPatterns.isStatic ]; - teams = [ teams.freedesktop ]; + teams = [ lib.teams.freedesktop ]; }; } diff --git a/pkgs/by-name/po/pololu-tic/package.nix b/pkgs/by-name/po/pololu-tic/package.nix index 1e4324362ff0..6634bf036bca 100644 --- a/pkgs/by-name/po/pololu-tic/package.nix +++ b/pkgs/by-name/po/pololu-tic/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { qt5.qtbase ]; - meta = with lib; { + meta = { homepage = "https://github.com/pololu/pololu-tic-software"; description = "Pololu Tic stepper motor controller software"; - platforms = platforms.all; - license = licenses.cc-by-sa-30; - maintainers = with maintainers; [ bzizou ]; + platforms = lib.platforms.all; + license = lib.licenses.cc-by-sa-30; + maintainers = with lib.maintainers; [ bzizou ]; }; }) diff --git a/pkgs/by-name/po/polonium/package.nix b/pkgs/by-name/po/polonium/package.nix index 0fa4d8aae0a1..3b817fa47fca 100644 --- a/pkgs/by-name/po/polonium/package.nix +++ b/pkgs/by-name/po/polonium/package.nix @@ -46,10 +46,10 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Auto-tiler that uses KWin 6.0+ tiling functionality"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg kotatsuyaki HeitorAugustoLN diff --git a/pkgs/by-name/po/poly2tri-c/package.nix b/pkgs/by-name/po/poly2tri-c/package.nix index 19d9c6af3782..6c8993c6c694 100644 --- a/pkgs/by-name/po/poly2tri-c/package.nix +++ b/pkgs/by-name/po/poly2tri-c/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { "-Wno-error" ]; - meta = with lib; { + meta = { description = "Library for generating, refining and rendering 2-Dimensional Constrained Delaunay Triangulations"; mainProgram = "p2tc"; homepage = "https://code.google.com/archive/p/poly2tri-c/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ jtojnar ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/polybar-pulseaudio-control/package.nix b/pkgs/by-name/po/polybar-pulseaudio-control/package.nix index 1aca3360c817..ad5727e1723c 100644 --- a/pkgs/by-name/po/polybar-pulseaudio-control/package.nix +++ b/pkgs/by-name/po/polybar-pulseaudio-control/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { mainProgram = "pulseaudio-control"; description = "Polybar module to control PulseAudio devices, also known as Pavolume"; homepage = "https://github.com/marioortizmanero/polybar-pulseaudio-control"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ benlemasurier wesleyjrz ]; diff --git a/pkgs/by-name/po/polybar/package.nix b/pkgs/by-name/po/polybar/package.nix index baa382045aa8..0d346aedb0a5 100644 --- a/pkgs/by-name/po/polybar/package.nix +++ b/pkgs/by-name/po/polybar/package.nix @@ -104,7 +104,7 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : "${i3}/bin" ''); - meta = with lib; { + meta = { homepage = "https://polybar.github.io/"; changelog = "https://github.com/polybar/polybar/releases/tag/${finalAttrs.version}"; description = "Fast and easy-to-use tool for creating status bars"; @@ -113,12 +113,12 @@ stdenv.mkDerivation (finalAttrs: { status bars for their desktop environment, without the need of having a black belt in shell scripting. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ afldcr moni ]; mainProgram = "polybar"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/po/polygraph/package.nix b/pkgs/by-name/po/polygraph/package.nix index 9629cf098cc2..31dddf2e20a4 100644 --- a/pkgs/by-name/po/polygraph/package.nix +++ b/pkgs/by-name/po/polygraph/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { homepage = "http://www.web-polygraph.org"; description = "Performance testing tool for caching proxies, origin server accelerators, L4/7 switches, content filters, and other Web intermediaries"; - platforms = platforms.linux; - license = licenses.asl20; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/po/polylith/package.nix b/pkgs/by-name/po/polylith/package.nix index 7a33086ce54f..d44661da525a 100644 --- a/pkgs/by-name/po/polylith/package.nix +++ b/pkgs/by-name/po/polylith/package.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Tool used to develop Polylith based architectures in Clojure"; mainProgram = "poly"; homepage = "https://github.com/polyfy/polylith"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ ericdallo jlesquembre ]; diff --git a/pkgs/by-name/po/polylux2pdfpc/package.nix b/pkgs/by-name/po/polylux2pdfpc/package.nix index 651e3b905a02..460c86cff37e 100644 --- a/pkgs/by-name/po/polylux2pdfpc/package.nix +++ b/pkgs/by-name/po/polylux2pdfpc/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Tool to make pdfpc interpret slides created by polylux correctly"; homepage = "https://github.com/polylux-typ/polylux/tree/main/pdfpc-extractor"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "polylux2pdfpc"; - maintainers = [ maintainers.diogotcorreia ]; + maintainers = [ lib.maintainers.diogotcorreia ]; }; } diff --git a/pkgs/by-name/po/polytopes_db/package.nix b/pkgs/by-name/po/polytopes_db/package.nix index da13198b5a8c..54b559d43e29 100644 --- a/pkgs/by-name/po/polytopes_db/package.nix +++ b/pkgs/by-name/po/polytopes_db/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { cp -R * "$out/share/reflexive_polytopes/" ''; - meta = with lib; { + meta = { description = "Reflexive polytopes database"; - license = licenses.gpl2; - platforms = platforms.all; - teams = [ teams.sage ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/po/pom/package.nix b/pkgs/by-name/po/pom/package.nix index 843012a86335..58954a774441 100644 --- a/pkgs/by-name/po/pom/package.nix +++ b/pkgs/by-name/po/pom/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X=main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Pomodoro timer in your terminal"; homepage = "https://github.com/maaslalani/pom"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maaslalani redyf ]; diff --git a/pkgs/by-name/po/pomerium-cli/package.nix b/pkgs/by-name/po/pomerium-cli/package.nix index f5ffc12be062..bf89b42e9c05 100644 --- a/pkgs/by-name/po/pomerium-cli/package.nix +++ b/pkgs/by-name/po/pomerium-cli/package.nix @@ -61,12 +61,12 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://pomerium.io"; description = "Client-side helper for Pomerium authenticating reverse proxy"; mainProgram = "pomerium-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ lukegb ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lukegb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/pomerium/package.nix b/pkgs/by-name/po/pomerium/package.nix index 80dd0bd31fb4..15c5c90ea85a 100644 --- a/pkgs/by-name/po/pomerium/package.nix +++ b/pkgs/by-name/po/pomerium/package.nix @@ -128,12 +128,12 @@ buildGoModule rec { updateScript = ./updater.sh; }; - meta = with lib; { + meta = { homepage = "https://pomerium.io"; description = "Authenticating reverse proxy"; mainProgram = "pomerium"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lukegb devusb ]; diff --git a/pkgs/by-name/po/pomodoro/package.nix b/pkgs/by-name/po/pomodoro/package.nix index f47518ab4238..7ff41cedd895 100644 --- a/pkgs/by-name/po/pomodoro/package.nix +++ b/pkgs/by-name/po/pomodoro/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-oXOf9G0BMSbFFAsmRaAZzaquFva1i1gJ4ISqJkqSx4k="; - meta = with lib; { + meta = { description = "Simple CLI pomodoro timer using desktop notifications written in Rust"; homepage = "https://github.com/SanderJSA/Pomodoro"; - license = licenses.mit; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ annaaurora ]; # error: redefinition of module 'ObjectiveC' broken = stdenv.hostPlatform.isDarwin; mainProgram = "pomodoro"; diff --git a/pkgs/by-name/po/pony-corral/package.nix b/pkgs/by-name/po/pony-corral/package.nix index 2e39d4c8b6b4..99abd5f40b33 100644 --- a/pkgs/by-name/po/pony-corral/package.nix +++ b/pkgs/by-name/po/pony-corral/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Corral is a dependency management tool for ponylang (ponyc)"; homepage = "https://www.ponylang.io"; changelog = "https://github.com/ponylang/corral/blob/${finalAttrs.version}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ redvers numinit ]; diff --git a/pkgs/by-name/po/ponyc/package.nix b/pkgs/by-name/po/ponyc/package.nix index 1363bb316ed8..38df1c5e43ba 100644 --- a/pkgs/by-name/po/ponyc/package.nix +++ b/pkgs/by-name/po/ponyc/package.nix @@ -162,11 +162,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Pony is an Object-oriented, actor-model, capabilities-secure, high performance programming language"; homepage = "https://www.ponylang.org"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ kamilchm redvers numinit diff --git a/pkgs/by-name/po/ponymix/package.nix b/pkgs/by-name/po/ponymix/package.nix index 6d4cfaecaeb7..003d500743ab 100644 --- a/pkgs/by-name/po/ponymix/package.nix +++ b/pkgs/by-name/po/ponymix/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { postPatch = ''substituteInPlace Makefile --replace "\$(DESTDIR)/usr" "$out"''; - meta = with lib; { + meta = { description = "CLI PulseAudio Volume Control"; homepage = "https://github.com/falconindy/ponymix"; mainProgram = "ponymix"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/po/ponysay/package.nix b/pkgs/by-name/po/ponysay/package.nix index fcbc75e18196..045d947ea93e 100644 --- a/pkgs/by-name/po/ponysay/package.nix +++ b/pkgs/by-name/po/ponysay/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cowsay reimplemention for ponies"; homepage = "https://github.com/erkin/ponysay"; - license = licenses.gpl3; - maintainers = with maintainers; [ bodil ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ bodil ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/pop-gtk-theme/package.nix b/pkgs/by-name/po/pop-gtk-theme/package.nix index da11dd534d50..1fd06b2dcb3b 100644 --- a/pkgs/by-name/po/pop-gtk-theme/package.nix +++ b/pkgs/by-name/po/pop-gtk-theme/package.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "System76 Pop GTK+ Theme"; homepage = "https://github.com/pop-os/gtk-theme"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 lgpl21 cc-by-sa-40 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/po/pop-icon-theme/package.nix b/pkgs/by-name/po/pop-icon-theme/package.nix index fd0a63376b7b..5c63faa3c794 100644 --- a/pkgs/by-name/po/pop-icon-theme/package.nix +++ b/pkgs/by-name/po/pop-icon-theme/package.nix @@ -33,14 +33,14 @@ stdenvNoCC.mkDerivation rec { dontDropIconThemeCache = true; - meta = with lib; { + meta = { description = "Icon theme for Pop!_OS with a semi-flat design and raised 3D motifs"; homepage = "https://github.com/pop-os/icon-theme"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 gpl3 ]; - platforms = platforms.linux; # hash mismatch on darwin due to file names differing only in case - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; # hash mismatch on darwin due to file names differing only in case + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/po/popcorntime/package.nix b/pkgs/by-name/po/popcorntime/package.nix index c6db6644f36c..3c108c50e007 100644 --- a/pkgs/by-name/po/popcorntime/package.nix +++ b/pkgs/by-name/po/popcorntime/package.nix @@ -94,13 +94,13 @@ stdenv.mkDerivation rec { ''${gappsWrapperArgs[@]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/popcorn-official/popcorn-desktop"; description = "Application that streams movies and TV shows from torrents"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.gpl3; - maintainers = with maintainers; [ onny ]; + maintainers = with lib.maintainers; [ onny ]; mainProgram = "popcorntime"; }; } diff --git a/pkgs/by-name/po/popl/package.nix b/pkgs/by-name/po/popl/package.nix index 023b283b670d..b565537f8d92 100644 --- a/pkgs/by-name/po/popl/package.nix +++ b/pkgs/by-name/po/popl/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Header-only C++ program options parser library"; homepage = "https://github.com/badaix/popl"; changelog = "https://github.com/badaix/popl/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/po/poppler_data/package.nix b/pkgs/by-name/po/poppler_data/package.nix index edd4824bd2f4..116b0ee437b6 100644 --- a/pkgs/by-name/po/poppler_data/package.nix +++ b/pkgs/by-name/po/poppler_data/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { ninja ]; - meta = with lib; { + meta = { homepage = "https://poppler.freedesktop.org/"; description = "Encoding files for Poppler, a PDF rendering library"; - platforms = platforms.all; - license = licenses.free; # more free licenses combined + platforms = lib.platforms.all; + license = lib.licenses.free; # more free licenses combined inherit (poppler.meta) teams maintainers; }; } diff --git a/pkgs/by-name/po/popt/package.nix b/pkgs/by-name/po/popt/package.nix index eb9e4f3685ed..dffe05a33b42 100644 --- a/pkgs/by-name/po/popt/package.nix +++ b/pkgs/by-name/po/popt/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails - meta = with lib; { + meta = { homepage = "https://github.com/rpm-software-management/popt"; description = "Command line option parsing library"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/popura/package.nix b/pkgs/by-name/po/popura/package.nix index 86fc33248c80..935d9351f6d2 100644 --- a/pkgs/by-name/po/popura/package.nix +++ b/pkgs/by-name/po/popura/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { "-X=${pkgSrc}.buildVersion=${version}" ]; - meta = with lib; { + meta = { description = "Alternative Yggdrasil network client"; homepage = "https://github.com/popura-network/popura"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "yggdrasil"; }; } diff --git a/pkgs/by-name/po/porsmo/package.nix b/pkgs/by-name/po/porsmo/package.nix index bf3b968578a8..8291db9395d7 100644 --- a/pkgs/by-name/po/porsmo/package.nix +++ b/pkgs/by-name/po/porsmo/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { package = porsmo; }; - meta = with lib; { + meta = { description = "Pomodoro cli app in rust with timer and countdown"; homepage = "https://github.com/ColorCookie-dev/porsmo"; - license = licenses.mit; - maintainers = with maintainers; [ MoritzBoehme ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MoritzBoehme ]; mainProgram = "porsmo"; }; } diff --git a/pkgs/by-name/po/portaudio/package.nix b/pkgs/by-name/po/portaudio/package.nix index f2134742f8b2..2dc2b81a0e00 100644 --- a/pkgs/by-name/po/portaudio/package.nix +++ b/pkgs/by-name/po/portaudio/package.nix @@ -59,13 +59,13 @@ stdenv.mkDerivation rec { cp include/pa_mac_core.h $out/include/pa_mac_core.h ''; - meta = with lib; { + meta = { description = "Portable cross-platform Audio API"; homepage = "https://www.portaudio.com/"; # Not exactly a bsd license, but alike - license = licenses.mit; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; }; passthru = { diff --git a/pkgs/by-name/po/portmidi/package.nix b/pkgs/by-name/po/portmidi/package.nix index 89806fc8ff0f..534b80a069ce 100644 --- a/pkgs/by-name/po/portmidi/package.nix +++ b/pkgs/by-name/po/portmidi/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://github.com/PortMidi/portmidi"; description = "Platform independent library for MIDI I/O"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/portmod/package.nix b/pkgs/by-name/po/portmod/package.nix index 7edc45a47dab..bcc405ef0c19 100644 --- a/pkgs/by-name/po/portmod/package.nix +++ b/pkgs/by-name/po/portmod/package.nix @@ -120,10 +120,10 @@ python3Packages.buildPythonApplication { "--prefix" "PATH" ":" "${lib.makeBinPath bin-programs}") ''; - meta = with lib; { + meta = { description = "Mod manager for openMW based on portage"; homepage = "https://gitlab.com/portmod/portmod"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/by-name/po/portunus/package.nix b/pkgs/by-name/po/portunus/package.nix index 45e937abfbbb..34a305a3affc 100644 --- a/pkgs/by-name/po/portunus/package.nix +++ b/pkgs/by-name/po/portunus/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) portunus; }; - meta = with lib; { + meta = { description = "Self-contained user/group management and authentication service"; homepage = "https://github.com/majewsky/portunus"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ majewsky ]; - teams = [ teams.c3d2 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ majewsky ]; + teams = [ lib.teams.c3d2 ]; }; } diff --git a/pkgs/by-name/po/poselib/package.nix b/pkgs/by-name/po/poselib/package.nix index b4478e30e8de..da1cb4a5709d 100644 --- a/pkgs/by-name/po/poselib/package.nix +++ b/pkgs/by-name/po/poselib/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (final: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "A collection of minimal solvers for camera pose estimation"; homepage = "https://github.com/PoseLib/PoseLib"; changelog = "https://github.com/PoseLib/PoseLib/releases/tag/v${final.version}"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ usertam ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ usertam ]; }; }) diff --git a/pkgs/by-name/po/positron-bin/package.nix b/pkgs/by-name/po/positron-bin/package.nix index a3f0d364c033..ddd532f8a4a2 100644 --- a/pkgs/by-name/po/positron-bin/package.nix +++ b/pkgs/by-name/po/positron-bin/package.nix @@ -130,11 +130,11 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Positron, a next-generation data science IDE"; homepage = "https://github.com/posit-dev/positron"; - license = licenses.elastic20; - maintainers = with maintainers; [ + license = lib.licenses.elastic20; + maintainers = with lib.maintainers; [ b-rodrigues detroyejr ]; @@ -143,6 +143,6 @@ stdenv.mkDerivation { "x86_64-linux" "aarch64-linux" ] - ++ platforms.darwin; + ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/po/posteid-seed-extractor/package.nix b/pkgs/by-name/po/posteid-seed-extractor/package.nix index 6838942b2e8d..f35419fd0a9a 100644 --- a/pkgs/by-name/po/posteid-seed-extractor/package.nix +++ b/pkgs/by-name/po/posteid-seed-extractor/package.nix @@ -39,11 +39,11 @@ python3Packages.buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/simone36050/PosteID-seed-extractor"; description = "Extract OTP seed instead of using PosteID app"; mainProgram = "posteid-seed-extractor"; - license = licenses.mit; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aciceri ]; }; } diff --git a/pkgs/by-name/po/postgrey/package.nix b/pkgs/by-name/po/postgrey/package.nix index 9710debf5b78..44b5e6ed32f4 100644 --- a/pkgs/by-name/po/postgrey/package.nix +++ b/pkgs/by-name/po/postgrey/package.nix @@ -34,11 +34,11 @@ runCommand name url = "https://postgrey.schweikert.ch/pub/${name}.tar.gz"; sha256 = "1xx51xih4711vrvc6d57il9ccallbljj5zhgqdb07jzmz11rakgz"; }; - meta = with lib; { + meta = { description = "Postfix policy server to provide greylisting"; homepage = "https://postgrey.schweikert.ch/"; platforms = postfix.meta.platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } '' diff --git a/pkgs/by-name/po/postiats-utilities/package.nix b/pkgs/by-name/po/postiats-utilities/package.nix index 8e00897e79cd..a2e223772517 100644 --- a/pkgs/by-name/po/postiats-utilities/package.nix +++ b/pkgs/by-name/po/postiats-utilities/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-QeBbv5lwqL2ARjB+RGyBHeuibaxugffBLhC9lYs+5tE="; }; - meta = with lib; { + meta = { homepage = "https://github.com/Hibou57/PostiATS-Utilities"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = [ maintainers.ttuegel ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.ttuegel ]; }; buildInputs = [ diff --git a/pkgs/by-name/po/postscript-lexmark/package.nix b/pkgs/by-name/po/postscript-lexmark/package.nix index 5bb559f49d5b..aafc3a786328 100644 --- a/pkgs/by-name/po/postscript-lexmark/package.nix +++ b/pkgs/by-name/po/postscript-lexmark/package.nix @@ -33,9 +33,9 @@ stdenv.mkDerivation { cp -r opt/OpenPrinting-Lexmark/doc $out/doc ''; - meta = with lib; { + meta = { homepage = "https://www.openprinting.org/driver/Postscript-Lexmark/"; description = "Lexmark Postscript Drivers"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/po/postsrsd/package.nix b/pkgs/by-name/po/postsrsd/package.nix index 18bd8f159fdc..6d0440b97384 100644 --- a/pkgs/by-name/po/postsrsd/package.nix +++ b/pkgs/by-name/po/postsrsd/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { libconfuse ]; - meta = with lib; { + meta = { homepage = "https://github.com/roehling/postsrsd"; description = "Postfix Sender Rewriting Scheme daemon"; mainProgram = "postsrsd"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/po/posy-cursors/package.nix b/pkgs/by-name/po/posy-cursors/package.nix index 1b1a384b71c6..e9ffe6b8893d 100644 --- a/pkgs/by-name/po/posy-cursors/package.nix +++ b/pkgs/by-name/po/posy-cursors/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Posy's Improved Cursors for Linux"; homepage = "https://github.com/simtrami/posy-improved-cursor-linux"; - platforms = platforms.unix; - license = licenses.cc-by-nc-40; - maintainers = with maintainers; [ mkez ]; + platforms = lib.platforms.unix; + license = lib.licenses.cc-by-nc-40; + maintainers = with lib.maintainers; [ mkez ]; }; } diff --git a/pkgs/by-name/po/potrace/package.nix b/pkgs/by-name/po/potrace/package.nix index aeaa1c93d540..122d60c641ea 100644 --- a/pkgs/by-name/po/potrace/package.nix +++ b/pkgs/by-name/po/potrace/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; doCheck = true; - meta = with lib; { + meta = { homepage = "https://potrace.sourceforge.net/"; description = "Tool for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image"; - platforms = platforms.unix; - maintainers = [ maintainers.pSub ]; - license = licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.pSub ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/po/potreeconverter/package.nix b/pkgs/by-name/po/potreeconverter/package.nix index d89b30b9ea81..29249e15fc9f 100644 --- a/pkgs/by-name/po/potreeconverter/package.nix +++ b/pkgs/by-name/po/potreeconverter/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation { ln -s $src/resources $out/bin/resources ''; - meta = with lib; { + meta = { description = "Create multi res point cloud to use with potree"; homepage = "https://github.com/potree/PotreeConverter"; - license = licenses.bsd2; - maintainers = with maintainers; [ matthewcroughan ]; - platforms = with platforms; linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ matthewcroughan ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/po/power-calibrate/package.nix b/pkgs/by-name/po/power-calibrate/package.nix index 633db9812a3f..a1c7a8f6a10b 100644 --- a/pkgs/by-name/po/power-calibrate/package.nix +++ b/pkgs/by-name/po/power-calibrate/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Tool to calibrate power consumption"; mainProgram = "power-calibrate"; homepage = "https://github.com/ColinIanKing/power-calibrate"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/by-name/po/power-profiles-daemon/package.nix b/pkgs/by-name/po/power-profiles-daemon/package.nix index 5c3a83877db6..b303721afd81 100644 --- a/pkgs/by-name/po/power-profiles-daemon/package.nix +++ b/pkgs/by-name/po/power-profiles-daemon/package.nix @@ -130,14 +130,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://gitlab.freedesktop.org/upower/power-profiles-daemon/-/releases/${finalAttrs.version}"; homepage = "https://gitlab.freedesktop.org/upower/power-profiles-daemon"; description = "Makes user-selected power profiles handling available over D-Bus"; mainProgram = "powerprofilesctl"; - platforms = platforms.linux; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz picnoir lyndeno diff --git a/pkgs/by-name/po/poweralertd/package.nix b/pkgs/by-name/po/poweralertd/package.nix index 4225bd7d74f6..da95cb22871d 100644 --- a/pkgs/by-name/po/poweralertd/package.nix +++ b/pkgs/by-name/po/poweralertd/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "UPower-powered power alerter"; homepage = "https://git.sr.ht/~kennylevinsen/poweralertd"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ thibautmarty ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thibautmarty ]; mainProgram = "poweralertd"; }; } diff --git a/pkgs/by-name/po/powercap/package.nix b/pkgs/by-name/po/powercap/package.nix index e38ea1713f39..d1a6c24a391f 100644 --- a/pkgs/by-name/po/powercap/package.nix +++ b/pkgs/by-name/po/powercap/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { "-DBUILD_SHARED_LIBS=On" ]; - meta = with lib; { + meta = { description = "Tools and library to read/write to the Linux power capping framework (sysfs interface)"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ rowanG077 ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rowanG077 ]; }; } diff --git a/pkgs/by-name/po/powerjoular/package.nix b/pkgs/by-name/po/powerjoular/package.nix index 7c4b5bda9a52..48384af59469 100644 --- a/pkgs/by-name/po/powerjoular/package.nix +++ b/pkgs/by-name/po/powerjoular/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CLI software to monitor the power consumption of software and hardware components"; homepage = "https://github.com/joular/powerjoular"; - maintainers = [ maintainers.julienmalka ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.julienmalka ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/po/powerline-fonts/package.nix b/pkgs/by-name/po/powerline-fonts/package.nix index a9f0dc164ac0..09f50ce73bb6 100644 --- a/pkgs/by-name/po/powerline-fonts/package.nix +++ b/pkgs/by-name/po/powerline-fonts/package.nix @@ -27,18 +27,18 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/powerline/fonts"; description = "Patched fonts for Powerline users"; longDescription = '' Pre-patched and adjusted fonts for usage with the Powerline plugin. ''; - license = with licenses; [ + license = with lib.licenses; [ asl20 free ofl ]; - platforms = platforms.all; - maintainers = with maintainers; [ malyn ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ malyn ]; }; } diff --git a/pkgs/by-name/po/powermanga/package.nix b/pkgs/by-name/po/powermanga/package.nix index cc050d4a3b2e..50f51acc53e7 100644 --- a/pkgs/by-name/po/powermanga/package.nix +++ b/pkgs/by-name/po/powermanga/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { "scoredir=$(TMPDIR)" ]; - meta = with lib; { + meta = { homepage = "https://linux.tlk.fr/games/Powermanga/"; downloadPage = "https://linux.tlk.fr/games/Powermanga/download/"; description = "Arcade 2D shoot-em-up game"; @@ -53,9 +53,9 @@ stdenv.mkDerivation (finalAttrs: { the levels, you will destroy enemy spaceships and bosses, collect gems to power up your ship and get special powers, helpers and weapons. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/by-name/po/powermode-indicator/package.nix b/pkgs/by-name/po/powermode-indicator/package.nix index b4d5781b5535..e0da8dc9e444 100644 --- a/pkgs/by-name/po/powermode-indicator/package.nix +++ b/pkgs/by-name/po/powermode-indicator/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { glibmm ]; - meta = with lib; { + meta = { homepage = "https://github.com/PiyushXCoder/powermode-indicator"; description = "Tray tool for power profiles management"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.aacebedo ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.aacebedo ]; mainProgram = "powermode-indicator"; }; } diff --git a/pkgs/by-name/po/powershell/package.nix b/pkgs/by-name/po/powershell/package.nix index 67937b0fb035..bba6e57f46c2 100644 --- a/pkgs/by-name/po/powershell/package.nix +++ b/pkgs/by-name/po/powershell/package.nix @@ -138,14 +138,14 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Powerful cross-platform (Windows, Linux, and macOS) shell and scripting language based on .NET"; homepage = "https://microsoft.com/PowerShell"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "pwsh"; - maintainers = with maintainers; [ wegank ]; + maintainers = with lib.maintainers; [ wegank ]; platforms = builtins.attrNames passthru.sources; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; diff --git a/pkgs/by-name/po/powerstat/package.nix b/pkgs/by-name/po/powerstat/package.nix index 33c67eec967c..8b9c2dd823ec 100644 --- a/pkgs/by-name/po/powerstat/package.nix +++ b/pkgs/by-name/po/powerstat/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Laptop power measuring tool"; mainProgram = "powerstat"; homepage = "https://github.com/ColinIanKing/powerstat"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ womfoo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ womfoo ]; }; } diff --git a/pkgs/by-name/po/powersupply/package.nix b/pkgs/by-name/po/powersupply/package.nix index 9db6d03b639a..b6f7b8c5f4e1 100644 --- a/pkgs/by-name/po/powersupply/package.nix +++ b/pkgs/by-name/po/powersupply/package.nix @@ -52,12 +52,12 @@ python3.pkgs.buildPythonApplication rec { strictDeps = true; - meta = with lib; { + meta = { description = "Graphical app to display power status of mobile Linux platforms"; homepage = "https://gitlab.postmarketos.org/postmarketOS/powersupply"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "powersupply"; - platforms = platforms.linux; - maintainers = with maintainers; [ Luflosi ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/by-name/pp/pplatex/package.nix b/pkgs/by-name/pp/pplatex/package.nix index d56f6f5d938d..675bdfe78685 100644 --- a/pkgs/by-name/pp/pplatex/package.nix +++ b/pkgs/by-name/pp/pplatex/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to reformat the output of latex and friends into readable messages"; mainProgram = "pplatex"; homepage = "https://github.com/stefanhepp/pplatex"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.doronbehar ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.doronbehar ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pp/pprof/package.nix b/pkgs/by-name/pp/pprof/package.nix index 281e8952d605..b0092287ab0b 100644 --- a/pkgs/by-name/pp/pprof/package.nix +++ b/pkgs/by-name/pp/pprof/package.nix @@ -26,10 +26,10 @@ buildGoModule { vendorHash = "sha256-oOjkjVb3OIGMwz3/85KTewXISpBZM3o1BfFG9aysFbo="; - meta = with lib; { + meta = { description = "Tool for visualization and analysis of profiling data"; homepage = "https://github.com/google/pprof"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' pprof reads a collection of profiling samples in profile.proto format and generates reports to visualize and help analyze the data. It can generate @@ -51,6 +51,6 @@ buildGoModule { This is not an official Google product. ''; mainProgram = "pprof"; - maintainers = with maintainers; [ hzeller ]; + maintainers = with lib.maintainers; [ hzeller ]; }; } diff --git a/pkgs/by-name/pp/pps-tools/package.nix b/pkgs/by-name/pp/pps-tools/package.nix index 5da54a0f02ac..625ca80279f5 100644 --- a/pkgs/by-name/pp/pps-tools/package.nix +++ b/pkgs/by-name/pp/pps-tools/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { rm -rf $out/usr/ ''; - meta = with lib; { + meta = { description = "User-space tools for LinuxPPS"; homepage = "http://linuxpps.org/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ sorki ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sorki ]; }; } diff --git a/pkgs/by-name/pp/pptp/package.nix b/pkgs/by-name/pp/pptp/package.nix index 239884dd78d4..aa17b45d675d 100644 --- a/pkgs/by-name/pp/pptp/package.nix +++ b/pkgs/by-name/pp/pptp/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { perl # in shebang of pptpsetup ]; - meta = with lib; { + meta = { description = "PPTP client for Linux"; homepage = "https://pptpclient.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/pp/pptpd/package.nix b/pkgs/by-name/pp/pptpd/package.nix index 86df1ced9c54..d86a69890e7c 100644 --- a/pkgs/by-name/pp/pptpd/package.nix +++ b/pkgs/by-name/pp/pptpd/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { substituteInPlace plugins/Makefile --replace-fail "install -o root" "install" ''; - meta = with lib; { + meta = { homepage = "https://poptop.sourceforge.net/dox/"; description = "PPTP Server for Linux"; - platforms = platforms.linux; - maintainers = with maintainers; [ obadz ]; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ obadz ]; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/pq/pql/package.nix b/pkgs/by-name/pq/pql/package.nix index df0424707dc9..64b7e4a1d921 100644 --- a/pkgs/by-name/pq/pql/package.nix +++ b/pkgs/by-name/pq/pql/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Pipelined Query Language"; homepage = "https://github.com/runreveal/pql"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "pql"; }; } diff --git a/pkgs/by-name/pq/pqos-wrapper/package.nix b/pkgs/by-name/pq/pqos-wrapper/package.nix index f89673951e28..e0a175023de5 100644 --- a/pkgs/by-name/pq/pqos-wrapper/package.nix +++ b/pkgs/by-name/pq/pqos-wrapper/package.nix @@ -23,11 +23,11 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "pqos_wrapper" ]; - meta = with lib; { + meta = { description = "Wrapper for Intel PQoS for the purpose of using it in BenchExec"; homepage = "https://gitlab.com/sosy-lab/software/pqos-wrapper"; - maintainers = with maintainers; [ lorenzleutgeb ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ lorenzleutgeb ]; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" ]; mainProgram = "pqos_wrapper"; }; diff --git a/pkgs/by-name/pq/pqrs/package.nix b/pkgs/by-name/pq/pqrs/package.nix index 287f05ae59da..9e547361a7bc 100644 --- a/pkgs/by-name/pq/pqrs/package.nix +++ b/pkgs/by-name/pq/pqrs/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-P3yTmECj0K0mjWUiWlQCwuQVbnbVR1xFV5cE8Uo3U90="; - meta = with lib; { + meta = { description = "CLI tool to inspect Parquet files"; mainProgram = "pqrs"; homepage = "https://github.com/manojkarthick/pqrs"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = [ maintainers.manojkarthick ]; + maintainers = [ lib.maintainers.manojkarthick ]; }; } diff --git a/pkgs/by-name/pr/pre-commit-hook-ensure-sops/package.nix b/pkgs/by-name/pr/pre-commit-hook-ensure-sops/package.nix index a5884897d9a2..5727f6ba9a9e 100644 --- a/pkgs/by-name/pr/pre-commit-hook-ensure-sops/package.nix +++ b/pkgs/by-name/pr/pre-commit-hook-ensure-sops/package.nix @@ -45,11 +45,11 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Pre-commit hook to ensure that files that should be encrypted with sops are"; homepage = "https://github.com/yuvipanda/pre-commit-hook-ensure-sops"; - maintainers = with maintainers; [ nialov ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ nialov ]; + license = lib.licenses.bsd3; mainProgram = "pre-commit-hook-ensure-sops"; }; } diff --git a/pkgs/by-name/pr/precice-config-visualizer/package.nix b/pkgs/by-name/pr/precice-config-visualizer/package.nix index 7fda6b45eaa6..8a4d02bbc1fa 100644 --- a/pkgs/by-name/pr/precice-config-visualizer/package.nix +++ b/pkgs/by-name/pr/precice-config-visualizer/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/precice/config-visualizer"; description = "Small python tool for visualizing the preCICE xml configuration"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Scriptkiddi ]; mainProgram = "precice-config-visualizer"; }; } diff --git a/pkgs/by-name/pr/prelink/package.nix b/pkgs/by-name/pr/prelink/package.nix index b5328d7b5d05..2c999355feea 100644 --- a/pkgs/by-name/pr/prelink/package.nix +++ b/pkgs/by-name/pr/prelink/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "ELF prelinking utility to speed up dynamic linking"; homepage = "https://wiki.yoctoproject.org/wiki/Cross-Prelink"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/by-name/pr/premid/package.nix b/pkgs/by-name/pr/premid/package.nix index 6cf748999a4d..32d24b9cb0cb 100644 --- a/pkgs/by-name/pr/premid/package.nix +++ b/pkgs/by-name/pr/premid/package.nix @@ -154,13 +154,13 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Simple, configurable utility to show your web activity as playing status on Discord"; homepage = "https://premid.app"; downloadPage = "https://premid.app/downloads"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mpl20; - maintainers = with maintainers; [ natto1784 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ natto1784 ]; platforms = [ "x86_64-linux" ]; mainProgram = "premid"; }; diff --git a/pkgs/by-name/pr/present-cli/package.nix b/pkgs/by-name/pr/present-cli/package.nix index 8dbfb50e5cef..f39b7abc3b02 100644 --- a/pkgs/by-name/pr/present-cli/package.nix +++ b/pkgs/by-name/pr/present-cli/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage { doCheck = true; - meta = with lib; { + meta = { description = "Script interpolation engine for markdown documents"; homepage = "https://github.com/terror/present/"; - license = licenses.cc0; - maintainers = with maintainers; [ cameronfyfe ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ cameronfyfe ]; mainProgram = "present"; }; } diff --git a/pkgs/by-name/pr/present/package.nix b/pkgs/by-name/pr/present/package.nix index e137fe0b50a2..1e1e2579f56b 100644 --- a/pkgs/by-name/pr/present/package.nix +++ b/pkgs/by-name/pr/present/package.nix @@ -40,10 +40,10 @@ python3Packages.buildPythonPackage rec { # TypeError: don't know how to make test from: 0.6.0 doCheck = false; - meta = with lib; { + meta = { description = "Terminal-based presentation tool with colors and effects"; homepage = "https://github.com/vinayak-mehta/present"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "present"; }; diff --git a/pkgs/by-name/pr/pretix-banktool/package.nix b/pkgs/by-name/pr/pretix-banktool/package.nix index fc91c12e97a7..9bc2a680f17c 100644 --- a/pkgs/by-name/pr/pretix-banktool/package.nix +++ b/pkgs/by-name/pr/pretix-banktool/package.nix @@ -29,11 +29,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "pretix_banktool" ]; - meta = with lib; { + meta = { description = "Automatic bank data upload tool for pretix (with FinTS client)"; homepage = "https://github.com/pretix/pretix-banktool"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "pretix-banktool"; }; } diff --git a/pkgs/by-name/pr/pretix/package.nix b/pkgs/by-name/pr/pretix/package.nix index 7a53ae82c1d0..2bf65ff43787 100644 --- a/pkgs/by-name/pr/pretix/package.nix +++ b/pkgs/by-name/pr/pretix/package.nix @@ -301,10 +301,10 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Ticketing software that cares about your event—all the way"; homepage = "https://github.com/pretix/pretix"; - license = with licenses; [ + license = with lib.licenses; [ agpl3Only # 3rd party components below src/pretix/static bsd2 @@ -315,8 +315,8 @@ python.pkgs.buildPythonApplication rec { # all other files below src/pretix/static and src/pretix/locale and aux scripts asl20 ]; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "pretix-manage"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pr/pretix/plugin-build.nix b/pkgs/by-name/pr/pretix/plugin-build.nix index 307ff4114eb7..24cfc9da7110 100644 --- a/pkgs/by-name/pr/pretix/plugin-build.nix +++ b/pkgs/by-name/pr/pretix/plugin-build.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = ""; homepage = "https://github.com/pretix/pretix-plugin-build"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/dbvat/package.nix b/pkgs/by-name/pr/pretix/plugins/dbvat/package.nix index 740449daf025..e0106872e280 100644 --- a/pkgs/by-name/pr/pretix/plugins/dbvat/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/dbvat/package.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { "pretix_dbvat" ]; - meta = with lib; { + meta = { description = "Plugin for using Deutsche Bahn (DB) Event Discount (Veranstaltungsrabatt)"; homepage = "https://github.com/pretix/pretix-dbvat"; - license = licenses.asl20; - maintainers = with maintainers; [ e1mo ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ e1mo ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/pages/package.nix b/pkgs/by-name/pr/pretix/plugins/pages/package.nix index 3e7b5eb314e7..3b2f61e8e84e 100644 --- a/pkgs/by-name/pr/pretix/plugins/pages/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/pages/package.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { "pretix_pages" ]; - meta = with lib; { + meta = { description = "Plugin to add static pages to your pretix event"; homepage = "https://github.com/pretix/pretix-pages"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/passbook/package.nix b/pkgs/by-name/pr/pretix/plugins/passbook/package.nix index f3523cce3cb4..540159166d9b 100644 --- a/pkgs/by-name/pr/pretix/plugins/passbook/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/passbook/package.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { "pretix_passbook" ]; - meta = with lib; { + meta = { description = "Support for Apple Wallet/Passbook files in pretix"; homepage = "https://github.com/pretix/pretix-passbook"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/reluctant-stripe/package.nix b/pkgs/by-name/pr/pretix/plugins/reluctant-stripe/package.nix index e77cacdbba4d..315d5ab0a327 100644 --- a/pkgs/by-name/pr/pretix/plugins/reluctant-stripe/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/reluctant-stripe/package.nix @@ -29,10 +29,10 @@ buildPythonPackage { "pretix_reluctant_stripe" ]; - meta = with lib; { + meta = { description = "Nudge users to not use Stripe as a payment provider"; homepage = "https://github.com/metarheinmain/pretix-reluctant-stripe"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix b/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix index cdcfe017b7bb..d144f137a7d3 100644 --- a/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/sepadebit/package.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { "test_call_mail_context" ]; - meta = with lib; { + meta = { description = "Plugin to receive payments via SEPA direct debit"; homepage = "https://github.com/pretix/pretix-sepadebit"; - license = licenses.asl20; - maintainers = with maintainers; [ bbenno ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bbenno ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix b/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix index 2a6d21f248cc..b01f492ac804 100644 --- a/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/servicefees/package.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretix_servicefees" ]; - meta = with lib; { + meta = { description = "Allows to charge a flat fee on all orders"; homepage = "https://github.com/pretix/pretix-servicefees"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/stretchgoals/package.nix b/pkgs/by-name/pr/pretix/plugins/stretchgoals/package.nix index 1fe4127fcdb9..e44f99a8a13a 100644 --- a/pkgs/by-name/pr/pretix/plugins/stretchgoals/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/stretchgoals/package.nix @@ -29,10 +29,10 @@ buildPythonPackage { "pretix_stretchgoals" ]; - meta = with lib; { + meta = { description = "Display the average ticket sales price over time"; homepage = "https://github.com/rixx/pretix-stretchgoals"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix b/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix index b937e809c03d..1ac076d03b3a 100644 --- a/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix +++ b/pkgs/by-name/pr/pretix/plugins/zugferd/package.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretix_zugferd" ]; - meta = with lib; { + meta = { description = "Annotate pretix' invoices with ZUGFeRD data"; homepage = "https://github.com/pretix/pretix-zugferd"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/prettyping/package.nix b/pkgs/by-name/pr/prettyping/package.nix index 4fcaf047239d..4173fb403903 100644 --- a/pkgs/by-name/pr/prettyping/package.nix +++ b/pkgs/by-name/pr/prettyping/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { install -Dt $out/bin prettyping ''; - meta = with lib; { + meta = { homepage = "https://github.com/denilsonsa/prettyping"; description = "Wrapper around the standard ping tool with the objective of making the output prettier, more colorful, more compact, and easier to read"; mainProgram = "prettyping"; - license = with licenses; [ mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ qoelet ]; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ qoelet ]; }; } diff --git a/pkgs/by-name/pr/pridecat/package.nix b/pkgs/by-name/pr/pridecat/package.nix index ca25dbaadaac..d85a0ad75fbd 100644 --- a/pkgs/by-name/pr/pridecat/package.nix +++ b/pkgs/by-name/pr/pridecat/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { # fixes the install path in the Makefile patches = [ ./fix_install.patch ]; - meta = with lib; { + meta = { description = "Like cat, but more colorful"; homepage = "https://github.com/lunasorcery/pridecat"; - license = licenses.cc-by-nc-sa-40; - maintainers = with maintainers; [ lunarequest ]; + license = lib.licenses.cc-by-nc-sa-40; + maintainers = with lib.maintainers; [ lunarequest ]; mainProgram = "pridecat"; }; } diff --git a/pkgs/by-name/pr/pridefetch/package.nix b/pkgs/by-name/pr/pridefetch/package.nix index c1b3f758caa1..301a0d8b8ff6 100644 --- a/pkgs/by-name/pr/pridefetch/package.nix +++ b/pkgs/by-name/pr/pridefetch/package.nix @@ -55,18 +55,18 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Print out system statistics with pride flags"; longDescription = '' Pridefetch prints your system statistics (similarly to neofetch, screenfetch or pfetch) along with a pride flag. The flag which is printed is configurable, as well as the width of the output. ''; homepage = "https://github.com/SpyHoodle/pridefetch"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ - maintainers.minion3665 + lib.maintainers.minion3665 ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "pridefetch"; }; } diff --git a/pkgs/by-name/pr/prime-server/package.nix b/pkgs/by-name/pr/prime-server/package.nix index 6f4d891767d8..0d4c6b28725e 100644 --- a/pkgs/by-name/pr/prime-server/package.nix +++ b/pkgs/by-name/pr/prime-server/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { # https://github.com/kevinkreiser/prime_server/issues/95 env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=unused-variable" ]; - meta = with lib; { + meta = { description = "Non-blocking (web)server API for distributed computing and SOA based on zeromq"; homepage = "https://github.com/kevinkreiser/prime_server"; - license = licenses.bsd2; - maintainers = [ maintainers.Thra11 ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.Thra11 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/pr/principia/package.nix b/pkgs/by-name/pr/principia/package.nix index 6ed8e890eca9..215ca3f423cf 100644 --- a/pkgs/by-name/pr/principia/package.nix +++ b/pkgs/by-name/pr/principia/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "CMAKE_INSTALL_BINDIR" "bin") ]; - meta = with lib; { + meta = { changelog = "https://principia-web.se/wiki/Changelog#${ lib.replaceStrings [ "." ] [ "-" ] finalAttrs.version }"; @@ -65,8 +65,8 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "principia"; homepage = "https://principia-web.se/"; downloadPage = "https://principia-web.se/download"; - license = licenses.bsd3; - maintainers = [ maintainers.fgaz ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.fgaz ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/pr/printrun/package.nix b/pkgs/by-name/pr/printrun/package.nix index b377da2e7478..50ad7ef8568e 100644 --- a/pkgs/by-name/pr/printrun/package.nix +++ b/pkgs/by-name/pr/printrun/package.nix @@ -62,10 +62,10 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Pronterface, Pronsole, and Printcore - Pure Python 3d printing host software"; homepage = "https://github.com/kliment/Printrun"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; changelog = "https://github.com/kliment/Printrun/releases/tag/${src.tag}"; }; } diff --git a/pkgs/by-name/pr/prisma-engines/package.nix b/pkgs/by-name/pr/prisma-engines/package.nix index 94be72fc5897..4cc6faae054a 100644 --- a/pkgs/by-name/pr/prisma-engines/package.nix +++ b/pkgs/by-name/pr/prisma-engines/package.nix @@ -64,13 +64,13 @@ rustPlatform.buildRustPackage rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Collection of engines that power the core stack for Prisma"; homepage = "https://www.prisma.io/"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "prisma"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tomhoule aqrln ]; diff --git a/pkgs/by-name/pr/prisma/package.nix b/pkgs/by-name/pr/prisma/package.nix index f30a54c35336..3b43d32fd54e 100644 --- a/pkgs/by-name/pr/prisma/package.nix +++ b/pkgs/by-name/pr/prisma/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation (finalAttrs: { cli = callPackage ./test-cli.nix { }; }; - meta = with lib; { + meta = { description = "Next-generation ORM for Node.js and TypeScript"; homepage = "https://www.prisma.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ aqrln ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aqrln ]; mainProgram = "prisma"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pr/pritunl-client/package.nix b/pkgs/by-name/pr/pritunl-client/package.nix index 62ef1d7c6624..025c708667c8 100644 --- a/pkgs/by-name/pr/pritunl-client/package.nix +++ b/pkgs/by-name/pr/pritunl-client/package.nix @@ -161,11 +161,11 @@ stdenv.mkDerivation { ''; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Pritunl OpenVPN client"; homepage = "https://client.pritunl.com/"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ minizilla andrevmatos ]; diff --git a/pkgs/by-name/pr/pritunl-ssh/package.nix b/pkgs/by-name/pr/pritunl-ssh/package.nix index 31c41e894a0b..b79b724ede14 100644 --- a/pkgs/by-name/pr/pritunl-ssh/package.nix +++ b/pkgs/by-name/pr/pritunl-ssh/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { install ssh_host_client.py $out/bin/pritunl-ssh-host ''; - meta = with lib; { + meta = { description = "Pritunl Zero SSH client"; homepage = "https://github.com/pritunl/pritunl-zero-client"; - license = licenses.unfree; - maintainers = with maintainers; [ Thunderbottom ]; - platforms = platforms.unix; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ Thunderbottom ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pr/prl-tools/package.nix b/pkgs/by-name/pr/prl-tools/package.nix index 49bb154dd71c..eae7737c5ebb 100644 --- a/pkgs/by-name/pr/prl-tools/package.nix +++ b/pkgs/by-name/pr/prl-tools/package.nix @@ -159,14 +159,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Parallels Tools for Linux guests"; homepage = "https://parallels.com"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ wegank codgician ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/pr/procdump/package.nix b/pkgs/by-name/pr/procdump/package.nix index a547f7f69f35..7cfe672ec757 100644 --- a/pkgs/by-name/pr/procdump/package.nix +++ b/pkgs/by-name/pr/procdump/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Linux version of the ProcDump Sysinternals tool"; mainProgram = "procdump"; homepage = "https://github.com/Microsoft/ProcDump-for-Linux"; - license = licenses.mit; - maintainers = with maintainers; [ c0bw3b ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ c0bw3b ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pr/process-viewer/package.nix b/pkgs/by-name/pr/process-viewer/package.nix index ed2b78b81ed1..2fd8ed832a5d 100644 --- a/pkgs/by-name/pr/process-viewer/package.nix +++ b/pkgs/by-name/pr/process-viewer/package.nix @@ -27,10 +27,10 @@ rustPlatform.buildRustPackage rec { install -Dm644 assets/fr.guillaume_gomez.ProcessViewer.metainfo.xml -t $out/share/metainfo ''; - meta = with lib; { + meta = { description = "Process viewer GUI in rust"; homepage = "https://github.com/guillaumegomez/process-viewer"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "process_viewer"; }; diff --git a/pkgs/by-name/pr/processing/package.nix b/pkgs/by-name/pr/processing/package.nix index 7a9f8c77931b..e3aa53946440 100644 --- a/pkgs/by-name/pr/processing/package.nix +++ b/pkgs/by-name/pr/processing/package.nix @@ -141,14 +141,14 @@ stdenv.mkDerivation rec { --prefix _JAVA_OPTIONS " " "-Dawt.useSystemAAFontSettings=gasp" ''; - meta = with lib; { + meta = { description = "Language and IDE for electronic arts"; homepage = "https://processing.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ evan-goode ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ evan-goode ]; }; } diff --git a/pkgs/by-name/pr/procmail/package.nix b/pkgs/by-name/pr/procmail/package.nix index 9460d4add541..0e24cc7c1ac8 100644 --- a/pkgs/by-name/pr/procmail/package.nix +++ b/pkgs/by-name/pr/procmail/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { "install.bin" ]; - meta = with lib; { + meta = { description = "Mail processing and filtering utility"; homepage = "https://github.com/BuGlessRB/procmail/"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/procodile/package.nix b/pkgs/by-name/pr/procodile/package.nix index 45a17384e6db..3524d743a8de 100644 --- a/pkgs/by-name/pr/procodile/package.nix +++ b/pkgs/by-name/pr/procodile/package.nix @@ -11,15 +11,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "procodile"; - meta = with lib; { + meta = { description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)"; homepage = "https://github.com/adamcooke/procodile"; - license = with licenses; mit; - maintainers = with maintainers; [ + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "procodile"; }; } diff --git a/pkgs/by-name/pr/procyon/package.nix b/pkgs/by-name/pr/procyon/package.nix index 23cfab49b1e8..f143df9d3f23 100644 --- a/pkgs/by-name/pr/procyon/package.nix +++ b/pkgs/by-name/pr/procyon/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { chmod +x $out/bin/procyon ''; - meta = with lib; { + meta = { description = "Suite of Java metaprogramming tools including a Java decompiler"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; homepage = "https://github.com/mstrobel/procyon/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "procyon"; }; diff --git a/pkgs/by-name/pr/prodigal/package.nix b/pkgs/by-name/pr/prodigal/package.nix index 616ce2f6c5f8..818d00989dae 100644 --- a/pkgs/by-name/pr/prodigal/package.nix +++ b/pkgs/by-name/pr/prodigal/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { "INSTALLDIR=$(out)/bin" ]; - meta = with lib; { + meta = { description = "Fast, reliable protein-coding gene prediction for prokaryotic genomes"; mainProgram = "prodigal"; homepage = "https://github.com/hyattpd/Prodigal"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ luispedro ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ luispedro ]; }; } diff --git a/pkgs/by-name/pr/professor/package.nix b/pkgs/by-name/pr/professor/package.nix index 97cfa9044212..aaafc6e02a3f 100644 --- a/pkgs/by-name/pr/professor/package.nix +++ b/pkgs/by-name/pr/professor/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation { doInstallCheck = true; installCheckTarget = "check"; - meta = with lib; { + meta = { description = "Tuning tool for Monte Carlo event generators"; homepage = "https://professor.hepforge.org/"; - license = licenses.gpl3Only; - maintainers = [ maintainers.veprbl ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.veprbl ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pr/profetch/package.nix b/pkgs/by-name/pr/profetch/package.nix index 3c7c259f9eb8..1847951f5d88 100644 --- a/pkgs/by-name/pr/profetch/package.nix +++ b/pkgs/by-name/pr/profetch/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "System Information Fetcher Written in GNU/Prolog"; homepage = "https://github.com/RustemB/profetch"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = [ maintainers.vel ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.vel ]; mainProgram = "profetch"; }; } diff --git a/pkgs/by-name/pr/profile-sync-daemon/package.nix b/pkgs/by-name/pr/profile-sync-daemon/package.nix index 100848d523ab..4e7745cb23a3 100644 --- a/pkgs/by-name/pr/profile-sync-daemon/package.nix +++ b/pkgs/by-name/pr/profile-sync-daemon/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { --replace "sudo " "/run/wrappers/bin/sudo " ''; - meta = with lib; { + meta = { description = "Syncs browser profile dirs to RAM"; longDescription = '' Profile-sync-daemon (psd) is a tiny pseudo-daemon designed to manage your @@ -41,8 +41,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/graysky2/profile-sync-daemon"; downloadPage = "https://github.com/graysky2/profile-sync-daemon/releases"; - license = licenses.mit; - maintainers = [ maintainers.prikhi ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.prikhi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pr/profont/package.nix b/pkgs/by-name/pr/profont/package.nix index 146baa6231d4..92cc650efcf9 100644 --- a/pkgs/by-name/pr/profont/package.nix +++ b/pkgs/by-name/pr/profont/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { mkfontdir "$out/share/fonts/misc" ''; - meta = with lib; { + meta = { homepage = "https://tobiasjung.name/profont/"; description = "Monospaced font created to be a most readable font for programming"; - maintainers = with maintainers; [ myrl ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ myrl ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pr/proggyfonts/package.nix b/pkgs/by-name/pr/proggyfonts/package.nix index 4f78c8f9cef7..209adc7312c1 100644 --- a/pkgs/by-name/pr/proggyfonts/package.nix +++ b/pkgs/by-name/pr/proggyfonts/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/bluescan/proggyfonts"; description = "Set of fixed-width screen fonts that are designed for code listings"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.myrl ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.myrl ]; }; } diff --git a/pkgs/by-name/pr/progress/package.nix b/pkgs/by-name/pr/progress/package.nix index ec6d2916fdd6..4917a581e85d 100644 --- a/pkgs/by-name/pr/progress/package.nix +++ b/pkgs/by-name/pr/progress/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Xfennec/progress"; description = "Tool that shows the progress of coreutils programs"; - license = licenses.gpl3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "progress"; }; } diff --git a/pkgs/by-name/pr/proj-datumgrid/package.nix b/pkgs/by-name/pr/proj-datumgrid/package.nix index a1c7121f017c..d802aa21a950 100644 --- a/pkgs/by-name/pr/proj-datumgrid/package.nix +++ b/pkgs/by-name/pr/proj-datumgrid/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { cp nad2bin $out/bin/ ''; - meta = with lib; { + meta = { description = "Repository for proj datum grids"; homepage = "https://proj4.org"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "nad2bin"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/pr/proj/package.nix b/pkgs/by-name/pr/proj/package.nix index 4421c831e585..610fcb26d9bf 100644 --- a/pkgs/by-name/pr/proj/package.nix +++ b/pkgs/by-name/pr/proj/package.nix @@ -81,13 +81,13 @@ stdenv.mkDerivation (finalAttrs: { proj = callPackage ./tests.nix { proj = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { changelog = "https://github.com/OSGeo/PROJ/blob/${finalAttrs.src.tag}/NEWS.md"; description = "Cartographic Projections Library"; homepage = "https://proj.org/"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; - teams = [ teams.geospatial ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; + teams = [ lib.teams.geospatial ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pr/projectable/package.nix b/pkgs/by-name/pr/projectable/package.nix index 92ddd7cc55d9..bde3024789c7 100644 --- a/pkgs/by-name/pr/projectable/package.nix +++ b/pkgs/by-name/pr/projectable/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { OPENSSL_NO_VENDOR = true; }; - meta = with lib; { + meta = { description = "TUI file manager built for projects"; homepage = "https://github.com/dzfrias/projectable"; changelog = "https://github.com/dzfrias/projectable/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "prj"; }; diff --git a/pkgs/by-name/pr/prometheus-alertmanager/package.nix b/pkgs/by-name/pr/prometheus-alertmanager/package.nix index 297ccdaf93b3..58178eee3b6c 100644 --- a/pkgs/by-name/pr/prometheus-alertmanager/package.nix +++ b/pkgs/by-name/pr/prometheus-alertmanager/package.nix @@ -55,13 +55,13 @@ buildGoModule (finalAttrs: { ]; doInstallCheck = true; - meta = with lib; { + meta = { description = "Alert dispatcher for the Prometheus monitoring system"; homepage = "https://github.com/prometheus/alertmanager"; changelog = "https://github.com/prometheus/alertmanager/blob/v${finalAttrs.version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "alertmanager"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ benley fpletz globin diff --git a/pkgs/by-name/pr/prometheus-pushgateway/package.nix b/pkgs/by-name/pr/prometheus-pushgateway/package.nix index 8144d6ca2b96..6a4fde312dfb 100644 --- a/pkgs/by-name/pr/prometheus-pushgateway/package.nix +++ b/pkgs/by-name/pr/prometheus-pushgateway/package.nix @@ -38,12 +38,12 @@ buildGoModule (finalAttrs: { ]; doInstallCheck = true; - meta = with lib; { + meta = { description = "Allows ephemeral and batch jobs to expose metrics to Prometheus"; mainProgram = "pushgateway"; homepage = "https://github.com/prometheus/pushgateway"; changelog = "https://github.com/prometheus/pushgateway/releases/tag/v${finalAttrs.version}"; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benley ]; }; }) diff --git a/pkgs/by-name/pr/promexplorer/package.nix b/pkgs/by-name/pr/promexplorer/package.nix index 7515412585fd..697e6af95225 100644 --- a/pkgs/by-name/pr/promexplorer/package.nix +++ b/pkgs/by-name/pr/promexplorer/package.nix @@ -15,12 +15,12 @@ buildNimPackage (finalAttrs: { lockFile = ./lock.json; - meta = with lib; { + meta = { description = "Simple tool to explore prometheus exporter metrics"; homepage = "https://github.com/marcusramberg/promexplorer"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ marcusramberg ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ marcusramberg ]; mainProgram = "promexplorer"; }; }) diff --git a/pkgs/by-name/pr/promql-cli/package.nix b/pkgs/by-name/pr/promql-cli/package.nix index 941ce9a1131b..f95476552051 100644 --- a/pkgs/by-name/pr/promql-cli/package.nix +++ b/pkgs/by-name/pr/promql-cli/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { mv -v $out/bin/promql-cli $out/bin/promql ''; - meta = with lib; { + meta = { description = "Command-line tool to query a Prometheus server with PromQL and visualize the output"; homepage = "https://github.com/nalbury/promql-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "promql"; }; } diff --git a/pkgs/by-name/pr/proot/package.nix b/pkgs/by-name/pr/proot/package.nix index 5d0ab0d04402..02766094fbf8 100644 --- a/pkgs/by-name/pr/proot/package.nix +++ b/pkgs/by-name/pr/proot/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { # proot provides tests with `make -C test` however they do not run in the sandbox doCheck = false; - meta = with lib; { + meta = { homepage = "https://proot-me.github.io"; description = "User-space implementation of chroot, mount --bind and binfmt_misc"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ianwookim makefu veprbl diff --git a/pkgs/by-name/pr/properties-cpp/package.nix b/pkgs/by-name/pr/properties-cpp/package.nix index 9bf4adab7d9b..c368d27ecd27 100644 --- a/pkgs/by-name/pr/properties-cpp/package.nix +++ b/pkgs/by-name/pr/properties-cpp/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.com/ubports/development/core/lib-cpp/properties-cpp"; description = "Very simple convenience library for handling properties and signals in C++11"; - license = licenses.lgpl3Only; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.linux; pkgConfigModules = [ "properties-cpp" ]; diff --git a/pkgs/by-name/pr/prosody-filer/package.nix b/pkgs/by-name/pr/prosody-filer/package.nix index a4901bb7e7b3..b50dab453604 100644 --- a/pkgs/by-name/pr/prosody-filer/package.nix +++ b/pkgs/by-name/pr/prosody-filer/package.nix @@ -19,11 +19,11 @@ buildGoModule { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/ThomasLeister/prosody-filer"; maintainers = [ ]; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; description = "Simple file server for handling XMPP http_upload requests"; mainProgram = "prosody-filer"; }; diff --git a/pkgs/by-name/pr/protege-distribution/package.nix b/pkgs/by-name/pr/protege-distribution/package.nix index b01313b4cddc..1b2c2fc5d7ed 100644 --- a/pkgs/by-name/pr/protege-distribution/package.nix +++ b/pkgs/by-name/pr/protege-distribution/package.nix @@ -72,18 +72,18 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "OWL2 ontology editor from Stanford, with third-party plugins included"; homepage = "https://protege.stanford.edu/"; downloadPage = "https://protege.stanford.edu/products.php#desktop-protege"; - maintainers = with maintainers; [ nessdoor ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ nessdoor ]; + license = with lib.licenses; [ asl20 bsd2 epl10 lgpl3 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "run-protege"; }; } diff --git a/pkgs/by-name/pr/proteus/package.nix b/pkgs/by-name/pr/proteus/package.nix index 02144ddc306a..5c967aba8760 100644 --- a/pkgs/by-name/pr/proteus/package.nix +++ b/pkgs/by-name/pr/proteus/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Guitar amp and pedal capture plugin using neural networks"; homepage = "https://github.com/GuitarML/Proteus"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "Proteus"; }; diff --git a/pkgs/by-name/pr/proto-contrib/package.nix b/pkgs/by-name/pr/proto-contrib/package.nix index 1a8ad389ea5e..7ff77ef09394 100644 --- a/pkgs/by-name/pr/proto-contrib/package.nix +++ b/pkgs/by-name/pr/proto-contrib/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Contributed tools and other packages on top of the Go proto package"; homepage = "https://github.com/emicklei/proto-contrib"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/pr/protobufc/package.nix b/pkgs/by-name/pr/protobufc/package.nix index 8531f723018e..a0dac4db6ca9 100644 --- a/pkgs/by-name/pr/protobufc/package.nix +++ b/pkgs/by-name/pr/protobufc/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { env.PROTOC = lib.getExe buildPackages.protobuf_25; - meta = with lib; { + meta = { homepage = "https://github.com/protobuf-c/protobuf-c/"; description = "C bindings for Google's Protocol Buffers"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-doc/package.nix b/pkgs/by-name/pr/protoc-gen-doc/package.nix index 0b9d1bc03165..f72818b3bede 100644 --- a/pkgs/by-name/pr/protoc-gen-doc/package.nix +++ b/pkgs/by-name/pr/protoc-gen-doc/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = "sha256-K0rZBERSKob5ubZW28QpbcPhgFKOOASkd9UyC9f8gyQ="; - meta = with lib; { + meta = { description = "Documentation generator plugin for Google Protocol Buffers"; mainProgram = "protoc-gen-doc"; longDescription = '' @@ -29,7 +29,7 @@ buildGoModule rec { context. ''; homepage = "https://github.com/pseudomuto/protoc-gen-doc"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-entgrpc/package.nix b/pkgs/by-name/pr/protoc-gen-entgrpc/package.nix index 14d9cce6540a..3bb205726f13 100644 --- a/pkgs/by-name/pr/protoc-gen-entgrpc/package.nix +++ b/pkgs/by-name/pr/protoc-gen-entgrpc/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Generator of an implementation of the service interface for ent protobuff"; mainProgram = "protoc-gen-entgrpc"; downloadPage = "https://github.com/ent/contrib/"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://entgo.io/"; maintainers = [ ]; }; diff --git a/pkgs/by-name/pr/protoc-gen-go-vtproto/package.nix b/pkgs/by-name/pr/protoc-gen-go-vtproto/package.nix index 0c39bb857a4f..b7f5392b9c46 100644 --- a/pkgs/by-name/pr/protoc-gen-go-vtproto/package.nix +++ b/pkgs/by-name/pr/protoc-gen-go-vtproto/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { excludedPackages = [ "conformance" ]; - meta = with lib; { + meta = { description = "Protocol Buffers compiler that generates optimized marshaling & unmarshaling Go code for ProtoBuf APIv2"; mainProgram = "protoc-gen-go-vtproto"; homepage = "https://github.com/planetscale/vtprotobuf"; - license = licenses.bsd3; - maintainers = [ maintainers.zane ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.zane ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-go/package.nix b/pkgs/by-name/pr/protoc-gen-go/package.nix index c2f6e28ace10..611212a92f91 100644 --- a/pkgs/by-name/pr/protoc-gen-go/package.nix +++ b/pkgs/by-name/pr/protoc-gen-go/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "cmd/protoc-gen-go" ]; - meta = with lib; { + meta = { description = "Go support for Google's protocol buffers"; mainProgram = "protoc-gen-go"; homepage = "https://google.golang.org/protobuf"; - license = licenses.bsd3; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-js/package.nix b/pkgs/by-name/pr/protoc-gen-js/package.nix index 2dc507f78eab..d2cf00a12afd 100644 --- a/pkgs/by-name/pr/protoc-gen-js/package.nix +++ b/pkgs/by-name/pr/protoc-gen-js/package.nix @@ -44,16 +44,16 @@ buildBazelPackage rec { install -Dm755 bazel-bin/generator/protoc-gen-js $out/bin/ ''; - meta = with lib; { + meta = { description = "Protobuf plugin for generating JavaScript code"; mainProgram = "protoc-gen-js"; homepage = "https://github.com/protocolbuffers/protobuf-javascript"; - platforms = platforms.linux ++ platforms.darwin; - license = with licenses; [ + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = with lib.licenses; [ asl20 bsd3 ]; - sourceProvenance = [ sourceTypes.fromSource ]; + sourceProvenance = [ lib.sourceTypes.fromSource ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-prost-crate/package.nix b/pkgs/by-name/pr/protoc-gen-prost-crate/package.nix index 8e2386991c76..7736011210ef 100644 --- a/pkgs/by-name/pr/protoc-gen-prost-crate/package.nix +++ b/pkgs/by-name/pr/protoc-gen-prost-crate/package.nix @@ -18,13 +18,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Protoc plugin that generates Cargo crates and include files for `protoc-gen-prost`"; mainProgram = "protoc-gen-prost-crate"; homepage = "https://github.com/neoeinstein/protoc-gen-prost"; changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ felschr sitaaax ]; diff --git a/pkgs/by-name/pr/protoc-gen-prost-serde/package.nix b/pkgs/by-name/pr/protoc-gen-prost-serde/package.nix index fc417d085b25..d7fd89f0acb9 100644 --- a/pkgs/by-name/pr/protoc-gen-prost-serde/package.nix +++ b/pkgs/by-name/pr/protoc-gen-prost-serde/package.nix @@ -18,13 +18,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Protoc plugin that generates serde serialization implementations for `protoc-gen-prost`"; mainProgram = "protoc-gen-prost-serde"; homepage = "https://github.com/neoeinstein/protoc-gen-prost"; changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ felschr sitaaax ]; diff --git a/pkgs/by-name/pr/protoc-gen-prost/package.nix b/pkgs/by-name/pr/protoc-gen-prost/package.nix index 8beeef3a73c1..14fb7da88428 100644 --- a/pkgs/by-name/pr/protoc-gen-prost/package.nix +++ b/pkgs/by-name/pr/protoc-gen-prost/package.nix @@ -18,13 +18,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Protocol Buffers compiler plugin powered by Prost"; mainProgram = "protoc-gen-prost"; homepage = "https://github.com/neoeinstein/protoc-gen-prost"; changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ felschr sitaaax ]; diff --git a/pkgs/by-name/pr/protoc-gen-rust-grpc/package.nix b/pkgs/by-name/pr/protoc-gen-rust-grpc/package.nix index 8346f854d3e8..d023ddb6adc7 100644 --- a/pkgs/by-name/pr/protoc-gen-rust-grpc/package.nix +++ b/pkgs/by-name/pr/protoc-gen-rust-grpc/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-7PTe7popLS0zYYKv+K4629GkNG1wR/fhGi14a/4pkS0="; - meta = with lib; { + meta = { description = "Protobuf plugin for generating Rust code for gRPC"; homepage = "https://github.com/stepancheg/grpc-rust"; - license = licenses.mit; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucperkins ]; mainProgram = "protoc-gen-rust-grpc"; }; } diff --git a/pkgs/by-name/pr/protoc-gen-rust/package.nix b/pkgs/by-name/pr/protoc-gen-rust/package.nix index aa3ed87a2257..f8714b6f6b3f 100644 --- a/pkgs/by-name/pr/protoc-gen-rust/package.nix +++ b/pkgs/by-name/pr/protoc-gen-rust/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ protobuf ]; - meta = with lib; { + meta = { description = "Protobuf plugin for generating Rust code"; mainProgram = "protoc-gen-rust"; homepage = "https://github.com/stepancheg/rust-protobuf"; - license = licenses.mit; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-tonic/package.nix b/pkgs/by-name/pr/protoc-gen-tonic/package.nix index e45fb6433acd..6d57929cd83e 100644 --- a/pkgs/by-name/pr/protoc-gen-tonic/package.nix +++ b/pkgs/by-name/pr/protoc-gen-tonic/package.nix @@ -18,13 +18,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Protoc plugin that generates Tonic gRPC server and client code using the Prost code generation engine"; mainProgram = "protoc-gen-tonic"; homepage = "https://github.com/neoeinstein/protoc-gen-prost"; changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ felschr sitaaax ]; diff --git a/pkgs/by-name/pr/protoc-gen-twirp/package.nix b/pkgs/by-name/pr/protoc-gen-twirp/package.nix index 7a0eb8620e68..4e5fe532f04e 100644 --- a/pkgs/by-name/pr/protoc-gen-twirp/package.nix +++ b/pkgs/by-name/pr/protoc-gen-twirp/package.nix @@ -25,13 +25,13 @@ buildGoModule rec { "protoc-gen-twirp" ]; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = "Simple RPC framework with protobuf service definitions"; mainProgram = "protoc-gen-twirp"; homepage = "https://github.com/twitchtv/twirp"; - license = licenses.asl20; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-twirp_php/package.nix b/pkgs/by-name/pr/protoc-gen-twirp_php/package.nix index 077d7bcc3deb..47d519004fdb 100644 --- a/pkgs/by-name/pr/protoc-gen-twirp_php/package.nix +++ b/pkgs/by-name/pr/protoc-gen-twirp_php/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "PHP port of Twitch's Twirp RPC framework"; mainProgram = "protoc-gen-twirp_php"; homepage = "https://github.com/twirphp/twirp"; - license = licenses.mit; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-twirp_swagger/package.nix b/pkgs/by-name/pr/protoc-gen-twirp_swagger/package.nix index 87e1e8e36f3d..41ca963090f1 100644 --- a/pkgs/by-name/pr/protoc-gen-twirp_swagger/package.nix +++ b/pkgs/by-name/pr/protoc-gen-twirp_swagger/package.nix @@ -19,11 +19,11 @@ buildGoModule { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Swagger generator for twirp"; mainProgram = "protoc-gen-twirp_swagger"; homepage = "https://github.com/elliots/protoc-gen-twirp_swagger"; - license = licenses.bsd3; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-twirp_typescript/package.nix b/pkgs/by-name/pr/protoc-gen-twirp_typescript/package.nix index 40009944185c..5699036e768b 100644 --- a/pkgs/by-name/pr/protoc-gen-twirp_typescript/package.nix +++ b/pkgs/by-name/pr/protoc-gen-twirp_typescript/package.nix @@ -20,12 +20,12 @@ buildGoModule { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Protobuf Plugin for Generating a Twirp Typescript Client"; mainProgram = "protoc-gen-twirp_typescript"; homepage = "https://github.com/larrymyers/protoc-gen-twirp_typescript"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jojosch dgollings ]; diff --git a/pkgs/by-name/pr/protoc-gen-validate/package.nix b/pkgs/by-name/pr/protoc-gen-validate/package.nix index ef920b6351ce..e27739d6e056 100644 --- a/pkgs/by-name/pr/protoc-gen-validate/package.nix +++ b/pkgs/by-name/pr/protoc-gen-validate/package.nix @@ -19,10 +19,10 @@ buildGoModule rec { excludedPackages = [ "tests" ]; - meta = with lib; { + meta = { description = "Protobuf plugin for generating polyglot message validators"; homepage = "https://github.com/envoyproxy/protoc-gen-validate"; - license = licenses.asl20; - maintainers = with maintainers; [ matthewpi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthewpi ]; }; } diff --git a/pkgs/by-name/pr/protoc-go-inject-tag/package.nix b/pkgs/by-name/pr/protoc-go-inject-tag/package.nix index 5d6d1cc8330d..018840b34355 100644 --- a/pkgs/by-name/pr/protoc-go-inject-tag/package.nix +++ b/pkgs/by-name/pr/protoc-go-inject-tag/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { vendorHash = "sha256-tMpcJ37yGr7i91Kwz57FmJ+u2x0CAus0+yWOR10fJLo="; - meta = with lib; { + meta = { description = "Inject custom tags to protobuf golang struct"; homepage = "https://github.com/favadi/protoc-go-inject-tag/tree/v1.4.0"; - license = licenses.bsd2; - maintainers = with maintainers; [ elrohirgt ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ elrohirgt ]; mainProgram = "protoc-go-inject-tag"; }; } diff --git a/pkgs/by-name/pr/protocol/package.nix b/pkgs/by-name/pr/protocol/package.nix index 2b36bc99b192..af25af72ae84 100644 --- a/pkgs/by-name/pr/protocol/package.nix +++ b/pkgs/by-name/pr/protocol/package.nix @@ -23,11 +23,11 @@ python3.pkgs.buildPythonApplication { build-system = with python3.pkgs; [ setuptools ]; - meta = with lib; { + meta = { description = "ASCII Header Generator for Network Protocols"; homepage = "https://github.com/luismartingarcia/protocol"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ teto ]; mainProgram = "protocol"; }; } diff --git a/pkgs/by-name/pr/protolint/package.nix b/pkgs/by-name/pr/protolint/package.nix index a63522616cd2..7a027ce9847f 100644 --- a/pkgs/by-name/pr/protolint/package.nix +++ b/pkgs/by-name/pr/protolint/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { "-X github.com/yoheimuta/protolint/internal/cmd/protocgenprotolint.revision=${rev}" ]; - meta = with lib; { + meta = { description = "Pluggable linter and fixer to enforce Protocol Buffer style and conventions"; homepage = "https://github.com/yoheimuta/protolint"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "protolint"; }; diff --git a/pkgs/by-name/pr/protolock/package.nix b/pkgs/by-name/pr/protolock/package.nix index 663219e3e719..6abfb5e6f2bb 100644 --- a/pkgs/by-name/pr/protolock/package.nix +++ b/pkgs/by-name/pr/protolock/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { rm $out/bin/plugin* ''; - meta = with lib; { + meta = { description = "Protocol Buffer companion tool. Track your .proto files and prevent changes to messages and services which impact API compatibility. https://protolock.dev"; mainProgram = "protolock"; homepage = "https://github.com/nilslice/protolock"; - license = licenses.bsd3; - maintainers = with maintainers; [ groodt ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ groodt ]; }; } diff --git a/pkgs/by-name/pr/prototool/package.nix b/pkgs/by-name/pr/prototool/package.nix index 9b9fc2017063..c4cfa8960914 100644 --- a/pkgs/by-name/pr/prototool/package.nix +++ b/pkgs/by-name/pr/prototool/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { subPackages = [ "cmd/prototool" ]; - meta = with lib; { + meta = { homepage = "https://github.com/uber/prototool"; description = "Your Swiss Army Knife for Protocol Buffers"; mainProgram = "prototool"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/pr/prototypejs/package.nix b/pkgs/by-name/pr/prototypejs/package.nix index 7f6257aeb404..9ac7a68943b3 100644 --- a/pkgs/by-name/pr/prototypejs/package.nix +++ b/pkgs/by-name/pr/prototypejs/package.nix @@ -7,7 +7,7 @@ fetchurl { url = "https://ajax.googleapis.com/ajax/libs/prototype/${version}/prototype.js"; sha256 = "0q43vvrsb22h4jvavs1gk3v4ps61yx9k85b5n6q9mxivhmxprg26"; - meta = with lib; { + meta = { description = "Foundation for ambitious web user interfaces"; longDescription = '' Prototype takes the complexity out of client-side web @@ -18,7 +18,7 @@ fetchurl { ''; homepage = "http://prototypejs.org/"; downloadPage = "http://prototypejs.org/download/"; - license = licenses.mit; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/pr/prowler/package.nix b/pkgs/by-name/pr/prowler/package.nix index 06138fe29724..8edf17fd10c6 100644 --- a/pkgs/by-name/pr/prowler/package.nix +++ b/pkgs/by-name/pr/prowler/package.nix @@ -95,12 +95,12 @@ py.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "prowler" ]; - meta = with lib; { + meta = { description = "Security tool for AWS, Azure and GCP to perform Cloud Security best practices assessments"; homepage = "https://github.com/prowler-cloud/prowler"; changelog = "https://github.com/prowler-cloud/prowler/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "prowler"; }; } diff --git a/pkgs/by-name/pr/prox/package.nix b/pkgs/by-name/pr/prox/package.nix index 408cc8b2f651..cf63894c3130 100644 --- a/pkgs/by-name/pr/prox/package.nix +++ b/pkgs/by-name/pr/prox/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { --replace '0.0.0-unknown' '${version}' ''; - meta = with lib; { + meta = { homepage = "https://github.com/fgrosse/prox"; description = "Process runner for Procfile-based applications"; mainProgram = "prox"; - license = licenses.bsd2; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/pr/proximity-sort/package.nix b/pkgs/by-name/pr/proximity-sort/package.nix index f812a071bdd7..69d488d8c862 100644 --- a/pkgs/by-name/pr/proximity-sort/package.nix +++ b/pkgs/by-name/pr/proximity-sort/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rlxNvIYtVdWth5ZEdbmxOf3GKXIBpHnGDcSO883Ldjg="; - meta = with lib; { + meta = { description = "Simple command-line utility for sorting inputs by proximity to a path argument"; homepage = "https://github.com/jonhoo/proximity-sort"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/pr/proxmove/package.nix b/pkgs/by-name/pr/proxmove/package.nix index 53a081fff346..e50047684ad7 100644 --- a/pkgs/by-name/pr/proxmove/package.nix +++ b/pkgs/by-name/pr/proxmove/package.nix @@ -37,12 +37,12 @@ python3.pkgs.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Proxmox VM migrator: migrates VMs between different Proxmox VE clusters"; mainProgram = "proxmove"; homepage = "https://github.com/ossobv/proxmove"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ AngryAnt ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ AngryAnt ]; }; } diff --git a/pkgs/by-name/pr/proxmox-backup-client/package.nix b/pkgs/by-name/pr/proxmox-backup-client/package.nix index 0157174765c2..46461df67457 100644 --- a/pkgs/by-name/pr/proxmox-backup-client/package.nix +++ b/pkgs/by-name/pr/proxmox-backup-client/package.nix @@ -150,16 +150,16 @@ rustPlatform.buildRustPackage { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "version"; - meta = with lib; { + meta = { description = "Command line client for Proxmox Backup Server"; homepage = "https://pbs.proxmox.com/docs/backup-client.html"; changelog = "https://git.proxmox.com/?p=proxmox-backup.git;a=blob;f=debian/changelog;hb=${proxmox-backup_src.rev}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ cofob christoph-heiss ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "proxmox-backup-client"; }; } diff --git a/pkgs/by-name/pr/proxychains-ng/package.nix b/pkgs/by-name/pr/proxychains-ng/package.nix index 6644ecdf4103..51bec90d5f7d 100644 --- a/pkgs/by-name/pr/proxychains-ng/package.nix +++ b/pkgs/by-name/pr/proxychains-ng/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation rec { "install-zsh-completion" ]; - meta = with lib; { + meta = { description = "Preloader which hooks calls to sockets in dynamically linked programs and redirects it through one or more socks/http proxies"; homepage = "https://github.com/rofl0r/proxychains-ng"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ zenithal usertam ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "proxychains4"; }; } diff --git a/pkgs/by-name/pr/proxychains/package.nix b/pkgs/by-name/pr/proxychains/package.nix index 25cd04743f39..91cc960b0866 100644 --- a/pkgs/by-name/pr/proxychains/package.nix +++ b/pkgs/by-name/pr/proxychains/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { "install-config" ]; - meta = with lib; { + meta = { description = "Proxifier for SOCKS proxies"; homepage = "https://proxychains.sourceforge.net"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; mainProgram = "proxychains4"; }; } diff --git a/pkgs/by-name/pr/proxysql/package.nix b/pkgs/by-name/pr/proxysql/package.nix index 6efeb676bec4..1e05c1408633 100644 --- a/pkgs/by-name/pr/proxysql/package.nix +++ b/pkgs/by-name/pr/proxysql/package.nix @@ -221,13 +221,13 @@ stdenv.mkDerivation (finalAttrs: { sed -i s_/usr/bin/proxysql_$out/bin/proxysql_ $out/lib/systemd/system/*.service ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "High-performance MySQL proxy"; mainProgram = "proxysql"; homepage = "https://proxysql.com/"; - license = with licenses; [ gpl3Only ]; - teams = [ teams.helsinki-systems ]; - platforms = platforms.unix; + license = with lib.licenses; [ gpl3Only ]; + teams = [ lib.teams.helsinki-systems ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pr/proycon-wayout/package.nix b/pkgs/by-name/pr/proycon-wayout/package.nix index 94f66bda4ad8..26f341eb82d1 100644 --- a/pkgs/by-name/pr/proycon-wayout/package.nix +++ b/pkgs/by-name/pr/proycon-wayout/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { pango ]; - meta = with lib; { + meta = { description = "Takes text from standard input and outputs it to a desktop-widget on Wayland desktops"; homepage = "https://git.sr.ht/~proycon/wayout"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ wentam ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wentam ]; mainProgram = "proycon-wayout"; }; } diff --git a/pkgs/by-name/pr/prqlc/package.nix b/pkgs/by-name/pr/prqlc/package.nix index 00780a903eaf..8bae52076728 100644 --- a/pkgs/by-name/pr/prqlc/package.nix +++ b/pkgs/by-name/pr/prqlc/package.nix @@ -42,11 +42,11 @@ rustPlatform.buildRustPackage rec { rm -r $out/bin/compile-files $out/bin/mdbook-prql $out/lib ''; - meta = with lib; { + meta = { description = "CLI for the PRQL compiler - a simple, powerful, pipelined SQL replacement"; homepage = "https://github.com/prql/prql"; changelog = "https://github.com/prql/prql/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/pr/prr/package.nix b/pkgs/by-name/pr/prr/package.nix index a4226f819beb..d4c4f94281fb 100644 --- a/pkgs/by-name/pr/prr/package.nix +++ b/pkgs/by-name/pr/prr/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt"; checkInputs = [ cacert ]; - meta = with lib; { + meta = { description = "Tool that brings mailing list style code reviews to Github PRs"; homepage = "https://github.com/danobi/prr"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "prr"; - maintainers = with maintainers; [ evalexpr ]; + maintainers = with lib.maintainers; [ evalexpr ]; }; } diff --git a/pkgs/by-name/pr/pry/package.nix b/pkgs/by-name/pr/pry/package.nix index 678f58b8fe9a..357a8ef0c434 100644 --- a/pkgs/by-name/pr/pry/package.nix +++ b/pkgs/by-name/pr/pry/package.nix @@ -11,11 +11,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "pry"; - meta = with lib; { + meta = { description = "Ruby runtime developer console and IRB alternative"; homepage = "https://pryrepl.org"; - license = licenses.mit; - maintainers = [ maintainers.tckmn ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.tckmn ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ps/ps2client/package.nix b/pkgs/by-name/ps/ps2client/package.nix index e090a3d0e838..90aba329fa6e 100644 --- a/pkgs/by-name/ps/ps2client/package.nix +++ b/pkgs/by-name/ps/ps2client/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { make PREFIX=$out install ''; - meta = with lib; { + meta = { description = "Desktop clients to interact with ps2link and ps2netfs"; homepage = "https://github.com/ps2dev/ps2client"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ps/ps2eps/package.nix b/pkgs/by-name/ps/ps2eps/package.nix index a5132909375a..c726413f2896 100644 --- a/pkgs/by-name/ps/ps2eps/package.nix +++ b/pkgs/by-name/ps/ps2eps/package.nix @@ -61,11 +61,11 @@ perlPackages.buildPerlPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Calculate correct bounding boxes for PostScript and PDF files"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.doronbehar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.doronbehar ]; }; } diff --git a/pkgs/by-name/ps/ps3iso-utils/package.nix b/pkgs/by-name/ps/ps3iso-utils/package.nix index ea54787523ad..918897abdb73 100644 --- a/pkgs/by-name/ps/ps3iso-utils/package.nix +++ b/pkgs/by-name/ps/ps3iso-utils/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Estwald's PS3ISO utilities"; homepage = "https://github.com/bucanero/ps3iso-utils"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ soupglasses ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ soupglasses ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ps/psc-package/package.nix b/pkgs/by-name/ps/psc-package/package.nix index d40b058aed59..35f22e93036c 100644 --- a/pkgs/by-name/ps/psc-package/package.nix +++ b/pkgs/by-name/ps/psc-package/package.nix @@ -65,10 +65,10 @@ stdenv.mkDerivation rec { --zsh <($PSC_PACKAGE --zsh-completion-script $PSC_PACKAGE) ''; - meta = with lib; { + meta = { description = "Package manager for PureScript based on package sets"; mainProgram = "psc-package"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; platforms = [ "x86_64-darwin" diff --git a/pkgs/by-name/ps/pscircle/package.nix b/pkgs/by-name/ps/pscircle/package.nix index 29e7ec26bd39..ac7320fb2cb2 100644 --- a/pkgs/by-name/ps/pscircle/package.nix +++ b/pkgs/by-name/ps/pscircle/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { cairo ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/mildlyparallel/pscircle"; description = "Visualize Linux processes in a form of a radial tree"; mainProgram = "pscircle"; - license = licenses.gpl2Only; - maintainers = [ maintainers.ldesgoui ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.ldesgoui ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ps/psftools/package.nix b/pkgs/by-name/ps/psftools/package.nix index 23316365b9a9..6158832454c0 100644 --- a/pkgs/by-name/ps/psftools/package.nix +++ b/pkgs/by-name/ps/psftools/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { "lib" ]; - meta = with lib; { + meta = { homepage = "https://www.seasip.info/Unix/PSF"; description = "Conversion tools for .PSF fonts"; longDescription = '' @@ -26,8 +26,8 @@ stdenv.mkDerivation rec { and PSF2 (any width) formats are supported; the default output format is PSF2. ''; - platforms = platforms.unix; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ kaction ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/by-name/ps/psi-notify/package.nix b/pkgs/by-name/ps/psi-notify/package.nix index 42ce2fb267be..00865b372e2e 100644 --- a/pkgs/by-name/ps/psi-notify/package.nix +++ b/pkgs/by-name/ps/psi-notify/package.nix @@ -34,17 +34,17 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Alert on system resource saturation"; longDescription = '' psi-notify can alert you when resources on your machine are becoming oversaturated, and allow you to take action before your system slows to a crawl. ''; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/cdown/psi-notify"; - platforms = platforms.linux; - maintainers = with maintainers; [ eduarrrd ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ eduarrrd ]; mainProgram = "psi-notify"; }; } diff --git a/pkgs/by-name/ps/psitop/package.nix b/pkgs/by-name/ps/psitop/package.nix index a4ecd0fb858d..c64e2fad7844 100644 --- a/pkgs/by-name/ps/psitop/package.nix +++ b/pkgs/by-name/ps/psitop/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Top for /proc/pressure"; homepage = "https://github.com/jamespwilliams/psitop"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "psitop"; }; diff --git a/pkgs/by-name/ps/pslib/package.nix b/pkgs/by-name/ps/pslib/package.nix index 81bf538df8d9..9cb615e223a6 100644 --- a/pkgs/by-name/ps/pslib/package.nix +++ b/pkgs/by-name/ps/pslib/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { cp -r ../doc/. $doc/share/doc/${pname} ''; - meta = with lib; { + meta = { description = "C-library for generating multi page PostScript documents"; homepage = "https://pslib.sourceforge.net/"; changelog = "https://sourceforge.net/p/pslib/git/ci/master/tree/pslib/ChangeLog"; - license = licenses.gpl2; - maintainers = with maintainers; [ ShamrockLee ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ ShamrockLee ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ps/psmisc/package.nix b/pkgs/by-name/ps/psmisc/package.nix index e8aaff467f92..02cff9463d16 100644 --- a/pkgs/by-name/ps/psmisc/package.nix +++ b/pkgs/by-name/ps/psmisc/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/psmisc/psmisc"; description = "Set of small useful utilities that use the proc filesystem (such as fuser, killall and pstree)"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ryantm ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ryantm ]; }; } diff --git a/pkgs/by-name/ps/psol/package.nix b/pkgs/by-name/ps/psol/package.nix index 9b6a6d05ed06..ad9325e71031 100644 --- a/pkgs/by-name/ps/psol/package.nix +++ b/pkgs/by-name/ps/psol/package.nix @@ -22,13 +22,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "PageSpeed Optimization Libraries"; homepage = "https://developers.google.com/speed/pagespeed/psol"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # WARNING: This only works with Linux because the pre-built PSOL binary is only supplied for Linux. # TODO: Build PSOL from source to support more platforms. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ps/pspg/package.nix b/pkgs/by-name/ps/pspg/package.nix index 3e362be08577..35be9314d32d 100644 --- a/pkgs/by-name/ps/pspg/package.nix +++ b/pkgs/by-name/ps/pspg/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { installShellCompletion --bash --cmd pspg bash-completion.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/okbob/pspg"; description = "Postgres Pager"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.jlesquembre ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.jlesquembre ]; mainProgram = "pspg"; }; } diff --git a/pkgs/by-name/ps/psql2csv/package.nix b/pkgs/by-name/ps/psql2csv/package.nix index aaef5311a9ce..3571562a545b 100644 --- a/pkgs/by-name/ps/psql2csv/package.nix +++ b/pkgs/by-name/ps/psql2csv/package.nix @@ -40,10 +40,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to run a PostreSQL query and output the result as CSV"; homepage = "https://github.com/fphilipe/psql2csv"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; inherit (postgresql.meta) platforms; mainProgram = "psql2csv"; diff --git a/pkgs/by-name/ps/pssh/package.nix b/pkgs/by-name/ps/pssh/package.nix index bfda57dba17a..dbaf9f230029 100644 --- a/pkgs/by-name/ps/pssh/package.nix +++ b/pkgs/by-name/ps/pssh/package.nix @@ -32,7 +32,7 @@ python3Packages.buildPythonApplication rec { # Tests do not run with python3: https://github.com/lilydjwg/pssh/issues/126 doCheck = false; - meta = with lib; { + meta = { description = "Parallel SSH Tools"; longDescription = '' PSSH provides parallel versions of OpenSSH and related tools, @@ -40,8 +40,8 @@ python3Packages.buildPythonApplication rec { ''; inherit (src.meta) homepage; changelog = "https://github.com/lilydjwg/pssh/blob/${src.tag}/ChangeLog"; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ chris-martin ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ chris-martin ]; }; } diff --git a/pkgs/by-name/ps/pstoedit/package.nix b/pkgs/by-name/ps/pstoedit/package.nix index 0f269ec8f099..55d6e5ed724f 100644 --- a/pkgs/by-name/ps/pstoedit/package.nix +++ b/pkgs/by-name/ps/pstoedit/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ ghostscript ]} ''; - meta = with lib; { + meta = { description = "Translates PostScript and PDF graphics into other vector formats"; homepage = "https://sourceforge.net/projects/pstoedit/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.unix; mainProgram = "pstoedit"; }; } diff --git a/pkgs/by-name/ps/pstreams/package.nix b/pkgs/by-name/ps/pstreams/package.nix index eace6957c088..7d317026ee98 100644 --- a/pkgs/by-name/ps/pstreams/package.nix +++ b/pkgs/by-name/ps/pstreams/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { # `make install` fails on case-insensitive file systems (e.g. APFS by # default) because this target exists - meta = with lib; { + meta = { description = "POSIX Process Control in C++"; longDescription = '' PStreams allows you to run another program from your C++ application and @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://pstreams.sourceforge.net/"; downloadPage = "https://pstreams.sourceforge.net/download/"; - maintainers = with maintainers; [ arthur ]; - license = licenses.boost; - platforms = platforms.all; + maintainers = with lib.maintainers; [ arthur ]; + license = lib.licenses.boost; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ps/pstree/package.nix b/pkgs/by-name/ps/pstree/package.nix index ded439f93cc1..e48e06e94643 100644 --- a/pkgs/by-name/ps/pstree/package.nix +++ b/pkgs/by-name/ps/pstree/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Show the set of running processes as a tree"; homepage = "http://www.thp.uni-duisburg.de/pstree/"; - license = licenses.gpl2; - maintainers = [ maintainers.c0bw3b ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.c0bw3b ]; + platforms = lib.platforms.unix; priority = 5; # Lower than psmisc also providing pstree on Linux platforms mainProgram = "pstree"; }; diff --git a/pkgs/by-name/ps/psw/package.nix b/pkgs/by-name/ps/psw/package.nix index 3090ed078d83..1a4867d8283c 100644 --- a/pkgs/by-name/ps/psw/package.nix +++ b/pkgs/by-name/ps/psw/package.nix @@ -17,13 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-dfHcyGQYkjEAhrNRlD5BTbMwaZaO/E0KwqZJ8TjelGw="; - meta = with lib; { + meta = { description = "Command line tool to write random bytes to stdout"; homepage = "https://github.com/Wulfsta/psw"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ wulfsta ]; + maintainers = with lib.maintainers; [ wulfsta ]; }; } diff --git a/pkgs/by-name/pt/pt/package.nix b/pkgs/by-name/pt/pt/package.nix index f549ab2e23a5..21fb9ee12ac4 100644 --- a/pkgs/by-name/pt/pt/package.nix +++ b/pkgs/by-name/pt/pt/package.nix @@ -11,16 +11,16 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "pt"; - meta = with lib; { + meta = { description = "Minimalist command-line Pivotal Tracker client"; homepage = "http://www.github.com/raul/pt"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ebzzry manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "pt"; }; } diff --git a/pkgs/by-name/pt/pt2-clone/package.nix b/pkgs/by-name/pt/pt2-clone/package.nix index d667a66f6e23..2c712efcaf53 100644 --- a/pkgs/by-name/pt/pt2-clone/package.nix +++ b/pkgs/by-name/pt/pt2-clone/package.nix @@ -37,14 +37,14 @@ stdenv.mkDerivation (finalAttrs: { pt2-clone-opens = nixosTests.pt2-clone; }; - meta = with lib; { + meta = { description = "Highly accurate clone of the classic ProTracker 2.3D software for Amiga"; homepage = "https://16-bits.org/pt2.php"; - license = licenses.bsd3; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fgaz ]; # From HOW-TO-COMPILE.txt: # > This code is NOT big-endian compatible - platforms = platforms.littleEndian; + platforms = lib.platforms.littleEndian; mainProgram = "pt2-clone"; }; }) diff --git a/pkgs/by-name/pt/ptags/package.nix b/pkgs/by-name/pt/ptags/package.nix index d8f75c439fb8..99b603b3f44d 100644 --- a/pkgs/by-name/pt/ptags/package.nix +++ b/pkgs/by-name/pt/ptags/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { $releaseDir/ptags --help > /dev/null ''; - meta = with lib; { + meta = { description = "Parallel universal-ctags wrapper for git repository"; mainProgram = "ptags"; homepage = "https://github.com/dalance/ptags"; - maintainers = with maintainers; [ pamplemousse ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ pamplemousse ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/pt/ptcollab/package.nix b/pkgs/by-name/pt/ptcollab/package.nix index 474faa94c122..fbfc772bffea 100644 --- a/pkgs/by-name/pt/ptcollab/package.nix +++ b/pkgs/by-name/pt/ptcollab/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Experimental pxtone editor where you can collaborate with friends"; mainProgram = "ptcollab"; homepage = "https://yuxshao.github.io/ptcollab/"; changelog = "https://github.com/yuxshao/ptcollab/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/pt/pterm/package.nix b/pkgs/by-name/pt/pterm/package.nix index e890df62b76e..6bebf9a4ccac 100644 --- a/pkgs/by-name/pt/pterm/package.nix +++ b/pkgs/by-name/pt/pterm/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Terminal emulator for the Cyber1 mainframe-based CYBIS system"; homepage = "https://www.cyber1.org/"; - license = licenses.zlib; - maintainers = with maintainers; [ sarcasticadmin ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ sarcasticadmin ]; mainProgram = "pterm"; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/pt/ptex/package.nix b/pkgs/by-name/pt/ptex/package.nix index 4887e0ab4f67..95f084e59067 100644 --- a/pkgs/by-name/pt/ptex/package.nix +++ b/pkgs/by-name/pt/ptex/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Per-Face Texture Mapping for Production Rendering"; mainProgram = "ptxinfo"; homepage = "http://ptex.us/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = [ maintainers.guibou ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.guibou ]; }; } diff --git a/pkgs/by-name/pt/ptouch-print/package.nix b/pkgs/by-name/pt/ptouch-print/package.nix index be7a5665491c..00e999ca6a48 100644 --- a/pkgs/by-name/pt/ptouch-print/package.nix +++ b/pkgs/by-name/pt/ptouch-print/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line tool to print labels on Brother P-Touch printers on Linux"; homepage = "https://dominic.familie-radermacher.ch/projekte/ptouch-print/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "ptouch-print"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pt/ptunnel/package.nix b/pkgs/by-name/pt/ptunnel/package.nix index 1a3e180b876b..e0202288717d 100644 --- a/pkgs/by-name/pt/ptunnel/package.nix +++ b/pkgs/by-name/pt/ptunnel/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { libpcap ]; - meta = with lib; { + meta = { description = "Tool for reliably tunneling TCP connections over ICMP echo request and reply packets"; homepage = "https://www.cs.uit.no/~daniels/PingTunnel"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "ptunnel"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pu/publicsuffix-list/package.nix b/pkgs/by-name/pu/publicsuffix-list/package.nix index 1edfa926dd47..09df1b471010 100644 --- a/pkgs/by-name/pu/publicsuffix-list/package.nix +++ b/pkgs/by-name/pu/publicsuffix-list/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://publicsuffix.org/"; description = "Cross-vendor public domain suffix database"; - platforms = platforms.all; - license = licenses.mpl20; - maintainers = [ maintainers.c0bw3b ]; + platforms = lib.platforms.all; + license = lib.licenses.mpl20; + maintainers = [ lib.maintainers.c0bw3b ]; }; } diff --git a/pkgs/by-name/pu/pufferpanel/package.nix b/pkgs/by-name/pu/pufferpanel/package.nix index 590e622c3cc4..eca9974399ad 100644 --- a/pkgs/by-name/pu/pufferpanel/package.nix +++ b/pkgs/by-name/pu/pufferpanel/package.nix @@ -104,11 +104,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Free, open source game management panel"; homepage = "https://www.pufferpanel.com/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ tie ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ tie ]; mainProgram = "pufferpanel"; }; } diff --git a/pkgs/by-name/pu/pulsarctl/package.nix b/pkgs/by-name/pu/pulsarctl/package.nix index 224c3ecbed67..b3bbf6bb5a10 100644 --- a/pkgs/by-name/pu/pulsarctl/package.nix +++ b/pkgs/by-name/pu/pulsarctl/package.nix @@ -67,12 +67,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "CLI for Apache Pulsar written in Go"; homepage = "https://github.com/streamnative/pulsarctl"; - license = with licenses; [ asl20 ]; - platforms = platforms.unix; - maintainers = with maintainers; [ gaelreyrol ]; + license = with lib.licenses; [ asl20 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "pulsarctl"; }; } diff --git a/pkgs/by-name/pu/pulseaudio-ctl/package.nix b/pkgs/by-name/pu/pulseaudio-ctl/package.nix index 03a40c350078..4be0aa54f8c7 100644 --- a/pkgs/by-name/pu/pulseaudio-ctl/package.nix +++ b/pkgs/by-name/pu/pulseaudio-ctl/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${path} ''; - meta = with lib; { + meta = { description = "Control pulseaudio volume from the shell or mapped to keyboard shortcuts. No need for alsa-utils"; mainProgram = "pulseaudio-ctl"; homepage = "https://bbs.archlinux.org/viewtopic.php?id=124513"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pu/pulseaudio-dlna/package.nix b/pkgs/by-name/pu/pulseaudio-dlna/package.nix index 5b7cbb03f1be..2b995bacd9a9 100644 --- a/pkgs/by-name/pu/pulseaudio-dlna/package.nix +++ b/pkgs/by-name/pu/pulseaudio-dlna/package.nix @@ -69,12 +69,12 @@ python3Packages.buildPythonApplication { $out/bin/pulseaudio-dlna --help > /dev/null ''; - meta = with lib; { + meta = { description = "Lightweight streaming server which brings DLNA / UPNP and Chromecast support to PulseAudio and Linux"; mainProgram = "pulseaudio-dlna"; homepage = "https://github.com/Cygn/pulseaudio-dlna"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mog ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mog ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix b/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix index 59277b7cb925..59af7c6c7f1c 100644 --- a/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix +++ b/pkgs/by-name/pu/pulseaudio-module-xrdp/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "xrdp sink/source pulseaudio modules"; homepage = "https://github.com/neutrinolabs/pulseaudio-module-xrdp"; - license = licenses.lgpl21; - maintainers = with maintainers; [ lucasew ]; - platforms = platforms.linux; - sourceProvenance = [ sourceTypes.fromSource ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ lucasew ]; + platforms = lib.platforms.linux; + sourceProvenance = [ lib.sourceTypes.fromSource ]; }; } diff --git a/pkgs/by-name/pu/pulseeffects-legacy/package.nix b/pkgs/by-name/pu/pulseeffects-legacy/package.nix index ed4ea7cd6bbf..9e9c88885247 100644 --- a/pkgs/by-name/pu/pulseeffects-legacy/package.nix +++ b/pkgs/by-name/pu/pulseeffects-legacy/package.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation { ) ''; - meta = with lib; { + meta = { description = "Limiter, compressor, reverberation, equalizer and auto volume effects for Pulseaudio applications"; mainProgram = "pulseeffects"; homepage = "https://github.com/wwmm/pulseeffects"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pu/pulsemixer/package.nix b/pkgs/by-name/pu/pulsemixer/package.nix index 7a54c6a17483..901e254a0fc6 100644 --- a/pkgs/by-name/pu/pulsemixer/package.nix +++ b/pkgs/by-name/pu/pulsemixer/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { --replace-fail "libpulse.so.0" "$libpulseaudio/lib/libpulse${stdenv.hostPlatform.extensions.sharedLibrary}" ''; - meta = with lib; { + meta = { description = "Cli and curses mixer for pulseaudio"; homepage = "https://github.com/GeorgeFilipkin/pulsemixer"; - license = licenses.mit; - maintainers = [ maintainers.woffs ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.woffs ]; + platforms = lib.platforms.all; mainProgram = "pulsemixer"; }; } diff --git a/pkgs/by-name/pu/pulumi-esc/package.nix b/pkgs/by-name/pu/pulumi-esc/package.nix index 56802bc73c62..3f714a6c7680 100644 --- a/pkgs/by-name/pu/pulumi-esc/package.nix +++ b/pkgs/by-name/pu/pulumi-esc/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X=github.com/pulumi/esc/cmd/esc/cli/version.Version=${src.rev}" ]; - meta = with lib; { + meta = { description = "Pulumi ESC (Environments, Secrets, and Configuration) for cloud applications and infrastructure"; homepage = "https://github.com/pulumi/esc/tree/main"; changelog = "https://github.com/pulumi/esc/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "esc"; }; } diff --git a/pkgs/by-name/pu/pulumi/plugins/pulumi-aws-native/package.nix b/pkgs/by-name/pu/pulumi/plugins/pulumi-aws-native/package.nix index 38f8b999164f..2254ec1fcc04 100644 --- a/pkgs/by-name/pu/pulumi/plugins/pulumi-aws-native/package.nix +++ b/pkgs/by-name/pu/pulumi/plugins/pulumi-aws-native/package.nix @@ -26,12 +26,12 @@ mkPulumiPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Native AWS Pulumi Provider"; mainProgram = "pulumi-resource-aws-native"; homepage = "https://github.com/pulumi/pulumi-aws-native"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; }; diff --git a/pkgs/by-name/pu/pulumi/plugins/pulumi-azure-native/package.nix b/pkgs/by-name/pu/pulumi/plugins/pulumi-azure-native/package.nix index 9d8798999e50..a85f967b43d1 100644 --- a/pkgs/by-name/pu/pulumi/plugins/pulumi-azure-native/package.nix +++ b/pkgs/by-name/pu/pulumi/plugins/pulumi-azure-native/package.nix @@ -31,12 +31,12 @@ mkPulumiPackage rec { ''; fetchSubmodules = true; __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Native Azure Pulumi Provider"; mainProgram = "pulumi-resource-azure-native"; homepage = "https://github.com/pulumi/pulumi-azure-native"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; }; diff --git a/pkgs/by-name/pu/pulumi/plugins/pulumi-command/package.nix b/pkgs/by-name/pu/pulumi/plugins/pulumi-command/package.nix index 8e6c919b3e46..271e656cc5ad 100644 --- a/pkgs/by-name/pu/pulumi/plugins/pulumi-command/package.nix +++ b/pkgs/by-name/pu/pulumi/plugins/pulumi-command/package.nix @@ -25,12 +25,12 @@ mkPulumiPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Pulumi provider to execute commands and scripts either locally or remotely as part of the Pulumi resource model"; mainProgram = "pulumi-resource-command"; homepage = "https://github.com/pulumi/pulumi-command"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; }; diff --git a/pkgs/by-name/pu/pulumi/plugins/pulumi-hcloud/package.nix b/pkgs/by-name/pu/pulumi/plugins/pulumi-hcloud/package.nix index c55187240826..a35890303cca 100644 --- a/pkgs/by-name/pu/pulumi/plugins/pulumi-hcloud/package.nix +++ b/pkgs/by-name/pu/pulumi/plugins/pulumi-hcloud/package.nix @@ -15,11 +15,11 @@ mkPulumiPackage rec { "-X=github.com/pulumi/${repo}/provider/pkg/version.Version=v${version}" ]; __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Hetzner Cloud Pulumi resource package, providing multi-language access to Hetzner Cloud"; mainProgram = "pulumi-resource-hcloud"; homepage = "https://github.com/pulumi/pulumi-hcloud"; - license = licenses.asl20; - maintainers = with maintainers; [ tie ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tie ]; }; } diff --git a/pkgs/by-name/pu/pulumi/plugins/pulumi-random/package.nix b/pkgs/by-name/pu/pulumi/plugins/pulumi-random/package.nix index 1180c64ee6b7..3ac89d33710f 100644 --- a/pkgs/by-name/pu/pulumi/plugins/pulumi-random/package.nix +++ b/pkgs/by-name/pu/pulumi/plugins/pulumi-random/package.nix @@ -15,12 +15,12 @@ mkPulumiPackage rec { "-X github.com/pulumi/${repo}/provider/v4/pkg/version.Version=v${version}" ]; __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Pulumi provider that safely enables randomness for resources"; mainProgram = "pulumi-resource-random"; homepage = "https://github.com/pulumi/pulumi-random"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; }; diff --git a/pkgs/by-name/pu/pulumi/plugins/pulumi-yandex-unofficial/package.nix b/pkgs/by-name/pu/pulumi/plugins/pulumi-yandex-unofficial/package.nix index 11729d2e29f2..0fae24b1a49c 100644 --- a/pkgs/by-name/pu/pulumi/plugins/pulumi-yandex-unofficial/package.nix +++ b/pkgs/by-name/pu/pulumi/plugins/pulumi-yandex-unofficial/package.nix @@ -18,11 +18,11 @@ mkPulumiPackage rec { ]; __darwinAllowLocalNetworking = true; env.GOWORK = "off"; - meta = with lib; { + meta = { description = "Unofficial Yandex Cloud Resource Provider"; homepage = "https://github.com/Regrau/pulumi-yandex"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tie veehaitch ]; diff --git a/pkgs/by-name/pu/pulumictl/package.nix b/pkgs/by-name/pu/pulumictl/package.nix index 1eb3431cb7a3..584740274258 100644 --- a/pkgs/by-name/pu/pulumictl/package.nix +++ b/pkgs/by-name/pu/pulumictl/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "cmd/pulumictl" ]; - meta = with lib; { + meta = { description = "Swiss Army Knife for Pulumi Development"; mainProgram = "pulumictl"; homepage = "https://github.com/pulumi/pulumictl"; - license = licenses.asl20; - maintainers = with maintainers; [ vincentbernat ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vincentbernat ]; }; } diff --git a/pkgs/by-name/pu/puncia/package.nix b/pkgs/by-name/pu/puncia/package.nix index 05af38dc4c36..a383138867bd 100644 --- a/pkgs/by-name/pu/puncia/package.nix +++ b/pkgs/by-name/pu/puncia/package.nix @@ -25,12 +25,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "puncia" ]; - meta = with lib; { + meta = { description = "CLI utility for Subdomain Center & Exploit Observer"; homepage = "https://github.com/ARPSyndicate/puncia"; changelog = "https://github.com/ARPSyndicate/puncia/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "puncia"; }; } diff --git a/pkgs/by-name/pu/pup/package.nix b/pkgs/by-name/pu/pup/package.nix index 90d8f6e07e66..bd9868d7178d 100644 --- a/pkgs/by-name/pu/pup/package.nix +++ b/pkgs/by-name/pu/pup/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-/MDSWIuSYNxKbTslqIooI2qKA8Pye0yJF2dY8g8qbWI="; - meta = with lib; { + meta = { description = "Parsing HTML at the command line"; mainProgram = "pup"; homepage = "https://github.com/ericchiang/pup"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pu/pupdate/package.nix b/pkgs/by-name/pu/pupdate/package.nix index 66ac56b52271..b33a17e6a5cf 100644 --- a/pkgs/by-name/pu/pupdate/package.nix +++ b/pkgs/by-name/pu/pupdate/package.nix @@ -52,12 +52,12 @@ buildDotnetModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/mattpannella/pupdate"; description = "Update utility for the openFPGA cores, firmware, and other stuff on your Analogue Pocket"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ p-rintz ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ p-rintz ]; mainProgram = "pupdate"; }; } diff --git a/pkgs/by-name/pu/pure-ftpd/package.nix b/pkgs/by-name/pu/pure-ftpd/package.nix index 1167bb654bfd..9c107d7c10ed 100644 --- a/pkgs/by-name/pu/pure-ftpd/package.nix +++ b/pkgs/by-name/pu/pure-ftpd/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-tls" ]; - meta = with lib; { + meta = { description = "Free, secure, production-quality and standard-conformant FTP server"; homepage = "https://www.pureftpd.org"; - license = licenses.isc; # with some parts covered by BSD3(?) + license = lib.licenses.isc; # with some parts covered by BSD3(?) maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pu/pure-prompt/package.nix b/pkgs/by-name/pu/pure-prompt/package.nix index 292a3d70400d..3dd4961c1f02 100644 --- a/pkgs/by-name/pu/pure-prompt/package.nix +++ b/pkgs/by-name/pu/pure-prompt/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { cp async.zsh "$OUTDIR/async" ''; - meta = with lib; { + meta = { description = "Pretty, minimal and fast ZSH prompt"; homepage = "https://github.com/sindresorhus/pure"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ euxane pablovsky ]; diff --git a/pkgs/by-name/pu/puredata/package.nix b/pkgs/by-name/pu/puredata/package.nix index ed397e2a936f..461da99484a9 100644 --- a/pkgs/by-name/pu/puredata/package.nix +++ b/pkgs/by-name/pu/puredata/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/pd-gui --prefix PATH : ${lib.makeBinPath [ tk ]} ''; - meta = with lib; { + meta = { description = ''Real-time graphical programming environment for audio, video, and graphical processing''; homepage = "http://puredata.info"; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ carlthome ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ carlthome ]; mainProgram = "pd"; changelog = "https://msp.puredata.info/Pd_documentation/x5.htm#s1"; }; diff --git a/pkgs/by-name/pu/pureref/package.nix b/pkgs/by-name/pu/pureref/package.nix index 28f7cb01b497..bf496ec80d32 100644 --- a/pkgs/by-name/pu/pureref/package.nix +++ b/pkgs/by-name/pu/pureref/package.nix @@ -43,11 +43,11 @@ appimageTools.wrapType1 { wrapProgram $out/bin/PureRef --set QT_QPA_PLATFORM xcb ''; - meta = with lib; { + meta = { description = "Reference Image Viewer"; homepage = "https://www.pureref.com"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ elnudev husjon ]; diff --git a/pkgs/by-name/pu/purpur/package.nix b/pkgs/by-name/pu/purpur/package.nix index 72ce9190bc43..3b3146e7f71b 100644 --- a/pkgs/by-name/pu/purpur/package.nix +++ b/pkgs/by-name/pu/purpur/package.nix @@ -36,16 +36,16 @@ stdenv.mkDerivation rec { tests = { inherit (nixosTests) minecraft-server; }; }; - meta = with lib; { + meta = { description = "Drop-in replacement for Minecraft Paper servers"; longDescription = '' Purpur is a drop-in replacement for Minecraft Paper servers designed for configurability, new fun and exciting gameplay features, and performance built on top of Airplane. ''; homepage = "https://purpurmc.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - platforms = platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "minecraft-server"; }; diff --git a/pkgs/by-name/pu/pushup/package.nix b/pkgs/by-name/pu/pushup/package.nix index 6432fa558cc3..c900469ffa23 100644 --- a/pkgs/by-name/pu/pushup/package.nix +++ b/pkgs/by-name/pu/pushup/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { wrapProgram $out/bin/${meta.mainProgram} --prefix PATH : ${lib.makeBinPath [ go ]} ''; - meta = with lib; { + meta = { description = "Web framework for Go"; homepage = "https://pushup.adhoc.dev/"; - license = licenses.mit; + license = lib.licenses.mit; changelog = "https://github.com/adhocteam/pushup/blob/${src.rev}/CHANGELOG.md"; mainProgram = "pushup"; - maintainers = with maintainers; [ paulsmith ]; + maintainers = with lib.maintainers; [ paulsmith ]; }; } diff --git a/pkgs/by-name/pw/pw-viz/package.nix b/pkgs/by-name/pw/pw-viz/package.nix index 435ee7d03fb6..0ec5f14bec1d 100644 --- a/pkgs/by-name/pw/pw-viz/package.nix +++ b/pkgs/by-name/pw/pw-viz/package.nix @@ -58,11 +58,11 @@ rustPlatform.buildRustPackage rec { # fixes error caused by https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/issues/55 env.NIX_CFLAGS_COMPILE = toString [ "-DPW_ENABLE_DEPRECATED" ]; - meta = with lib; { + meta = { description = "Simple and elegant pipewire graph editor"; homepage = "https://github.com/ax9d/pw-viz"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pw/pwgen-secure/package.nix b/pkgs/by-name/pw/pwgen-secure/package.nix index b489f8afe028..96dc197d6783 100644 --- a/pkgs/by-name/pw/pwgen-secure/package.nix +++ b/pkgs/by-name/pw/pwgen-secure/package.nix @@ -49,11 +49,11 @@ buildPythonApplication rec { pythonImportsCheck = [ "pwgen_secure" ]; - meta = with lib; { + meta = { description = "Secure password generation library to replace pwgen"; homepage = "https://github.com/mjmunger/pwgen_secure/"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "spwgen"; }; } diff --git a/pkgs/by-name/pw/pwgen/package.nix b/pkgs/by-name/pw/pwgen/package.nix index f11f58a489dd..f245964b790f 100644 --- a/pkgs/by-name/pw/pwgen/package.nix +++ b/pkgs/by-name/pw/pwgen/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Password generator which creates passwords which can be easily memorized by a human"; homepage = "https://github.com/tytso/pwgen"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pwgen"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pw/pwnat/package.nix b/pkgs/by-name/pw/pwnat/package.nix index 5ff57a05fa45..b0b75a64969b 100644 --- a/pkgs/by-name/pw/pwnat/package.nix +++ b/pkgs/by-name/pw/pwnat/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://samy.pl/pwnat/"; description = "ICMP NAT to NAT client-server communication"; license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; mainProgram = "pwnat"; }; } diff --git a/pkgs/by-name/pw/pwru/package.nix b/pkgs/by-name/pw/pwru/package.nix index 42b8745f50e8..60ec6aa6dbcd 100644 --- a/pkgs/by-name/pw/pwru/package.nix +++ b/pkgs/by-name/pw/pwru/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { TARGET_GOARCH="$GOARCH" GOOS= GOARCH= go generate ''; - meta = with lib; { + meta = { description = "eBPF-based Linux kernel networking debugger"; homepage = "https://github.com/cilium/pwru"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; + platforms = lib.platforms.linux; mainProgram = "pwru"; }; } diff --git a/pkgs/by-name/pw/pws/package.nix b/pkgs/by-name/pw/pws/package.nix index 9486166946a8..0b857aaee739 100644 --- a/pkgs/by-name/pw/pws/package.nix +++ b/pkgs/by-name/pw/pws/package.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation rec { passthru.updateScript = bundlerUpdateScript "pws"; - meta = with lib; { + meta = { description = "Command-line password safe"; homepage = "https://github.com/janlelis/pws"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ swistak35 nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "pws"; }; } diff --git a/pkgs/by-name/pw/pwsafe/package.nix b/pkgs/by-name/pw/pwsafe/package.nix index d0c29c13d75a..2a62abad8930 100644 --- a/pkgs/by-name/pw/pwsafe/package.nix +++ b/pkgs/by-name/pw/pwsafe/package.nix @@ -100,7 +100,7 @@ stdenv.mkDerivation rec { url = src.gitRepoUrl; }; - meta = with lib; { + meta = { description = "Password database utility"; longDescription = '' Password Safe is a password database utility. Like many other @@ -110,11 +110,11 @@ stdenv.mkDerivation rec { username/password combinations that you use. ''; homepage = "https://pwsafe.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ c0bw3b pjones ]; - platforms = platforms.unix; - license = licenses.artistic2; + platforms = lib.platforms.unix; + license = lib.licenses.artistic2; }; } diff --git a/pkgs/by-name/px/pxz/package.nix b/pkgs/by-name/px/pxz/package.nix index 9f860b986e09..166554f05a10 100644 --- a/pkgs/by-name/px/pxz/package.nix +++ b/pkgs/by-name/px/pxz/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation { package = pxz; }; - meta = with lib; { + meta = { homepage = "https://jnovy.fedorapeople.org/pxz/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pashev ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pashev ]; description = "Compression utility that runs LZMA compression of different parts on multiple cores simultaneously"; longDescription = '' Parallel XZ is a compression utility that takes advantage of @@ -52,6 +52,6 @@ stdenv.mkDerivation { on compression ratio ''; mainProgram = "pxz"; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/py/py3c/package.nix b/pkgs/by-name/py/py3c/package.nix index 7ddef7728128..df4d6f52f9b0 100644 --- a/pkgs/by-name/py/py3c/package.nix +++ b/pkgs/by-name/py/py3c/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { checkTarget = "test-python"; - meta = with lib; { + meta = { homepage = "https://github.com/encukou/py3c"; description = "Python 2/3 compatibility layer for C extensions"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/py/pyCA/package.nix b/pkgs/by-name/py/pyCA/package.nix index 491175e03036..98b1f62c0e8d 100644 --- a/pkgs/by-name/py/pyCA/package.nix +++ b/pkgs/by-name/py/pyCA/package.nix @@ -81,12 +81,12 @@ python3.pkgs.buildPythonApplication rec { inherit frontend; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Fully functional Opencast capture agent written in Python"; mainProgram = "pyca"; homepage = "https://github.com/opencast/pyCA"; - license = licenses.lgpl3; - maintainers = with maintainers; [ pmiddend ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ pmiddend ]; }; } diff --git a/pkgs/by-name/py/pydf/package.nix b/pkgs/by-name/py/pydf/package.nix index e01c5629b2bd..361e58101c18 100644 --- a/pkgs/by-name/py/pydf/package.nix +++ b/pkgs/by-name/py/pydf/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonPackage rec { install -t $out/share/man/man1 -m 444 pydf.1 ''; - meta = with lib; { + meta = { description = "Colourised df(1)-clone"; homepage = "http://kassiopeia.juls.savba.sk/~garabik/software/pydf/"; mainProgram = "pydf"; - license = licenses.publicDomain; - maintainers = with maintainers; [ monsieurp ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ monsieurp ]; }; } diff --git a/pkgs/by-name/py/pyenv/package.nix b/pkgs/by-name/py/pyenv/package.nix index b2765ada8ccb..7ccda48d2900 100644 --- a/pkgs/by-name/py/pyenv/package.nix +++ b/pkgs/by-name/py/pyenv/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { installShellCompletion completions/pyenv.{bash,fish,zsh} ''; - meta = with lib; { + meta = { description = "Simple Python version management"; homepage = "https://github.com/pyenv/pyenv"; changelog = "https://github.com/pyenv/pyenv/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "pyenv"; }; } diff --git a/pkgs/by-name/py/pykms/package.nix b/pkgs/by-name/py/pykms/package.nix index 46fa64fb1d49..4c41b6050e5d 100644 --- a/pkgs/by-name/py/pykms/package.nix +++ b/pkgs/by-name/py/pykms/package.nix @@ -92,11 +92,11 @@ pypkgs.buildPythonApplication rec { passthru.tests = { inherit (nixosTests) pykms; }; - meta = with lib; { + meta = { description = "Windows KMS (Key Management Service) server written in Python"; homepage = "https://github.com/Py-KMS-Organization/py-kms"; - license = licenses.unlicense; - maintainers = with maintainers; [ + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ peterhoeg zopieux ]; diff --git a/pkgs/by-name/py/pylint-exit/package.nix b/pkgs/by-name/py/pylint-exit/package.nix index 02f36b9a03fd..62aa1fe9a2c0 100644 --- a/pkgs/by-name/py/pylint-exit/package.nix +++ b/pkgs/by-name/py/pylint-exit/package.nix @@ -33,10 +33,10 @@ buildPythonApplication rec { ${python.interpreter} -m doctest pylint_exit.py ''; - meta = with lib; { + meta = { description = "Utility to handle pylint exit codes in an OS-friendly way"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jongracecox/pylint-exit"; - maintainers = [ maintainers.fabiangd ]; + maintainers = [ lib.maintainers.fabiangd ]; }; } diff --git a/pkgs/by-name/py/pylode/package.nix b/pkgs/by-name/py/pylode/package.nix index d36e6939f145..7356f3b5b987 100644 --- a/pkgs/by-name/py/pylode/package.nix +++ b/pkgs/by-name/py/pylode/package.nix @@ -39,12 +39,12 @@ python3.pkgs.buildPythonApplication rec { "pylode" ]; - meta = with lib; { + meta = { description = "OWL ontology documentation tool using Python and templating, based on LODE"; homepage = "https://github.com/RDFLib/pyLODE"; # Next release will move to BSD3 - license = licenses.gpl3Only; - maintainers = with maintainers; [ koslambrou ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ koslambrou ]; mainProgram = "pylode"; }; } diff --git a/pkgs/by-name/py/pypi-mirror/package.nix b/pkgs/by-name/py/pypi-mirror/package.nix index b5a1645451f9..fa317c50997d 100644 --- a/pkgs/by-name/py/pypi-mirror/package.nix +++ b/pkgs/by-name/py/pypi-mirror/package.nix @@ -19,11 +19,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "pypi_mirror" ]; - meta = with lib; { + meta = { description = "Script to create a partial PyPI mirror"; mainProgram = "pypi-mirror"; homepage = "https://github.com/montag451/pypi-mirror"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/by-name/py/pyradio/package.nix b/pkgs/by-name/py/pyradio/package.nix index 2c6592de1d24..cc2895a956a7 100644 --- a/pkgs/by-name/py/pyradio/package.nix +++ b/pkgs/by-name/py/pyradio/package.nix @@ -46,13 +46,13 @@ python3Packages.buildPythonApplication rec { installManPage *.1 ''; - meta = with lib; { + meta = { homepage = "http://www.coderholic.com/pyradio/"; description = "Curses based internet radio player"; mainProgram = "pyradio"; changelog = "https://github.com/coderholic/pyradio/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ contrun yayayayaka ]; diff --git a/pkgs/by-name/py/pysentation/package.nix b/pkgs/by-name/py/pysentation/package.nix index 128160dcceac..b38ff79413f4 100644 --- a/pkgs/by-name/py/pysentation/package.nix +++ b/pkgs/by-name/py/pysentation/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "pysentation" ]; - meta = with lib; { + meta = { description = "CLI for displaying Python presentations"; homepage = "https://github.com/mimseyedi/pysentation"; changelog = "https://github.com/mimseyedi/pysentation/releases/tag/${src.rev}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "pysentation"; }; diff --git a/pkgs/by-name/py/pysolfc/package.nix b/pkgs/by-name/py/pysolfc/package.nix index 8351380cde95..38b6787cae30 100644 --- a/pkgs/by-name/py/pysolfc/package.nix +++ b/pkgs/by-name/py/pysolfc/package.nix @@ -98,11 +98,11 @@ python3Packages.buildPythonApplication rec { ] ); - meta = with lib; { + meta = { description = "Collection of more than 1000 solitaire card games"; mainProgram = "pysol.py"; homepage = "https://pysolfc.sourceforge.io"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/py/pystring/package.nix b/pkgs/by-name/py/pystring/package.nix index fd76f2780a1f..1e65ec0efaca 100644 --- a/pkgs/by-name/py/pystring/package.nix +++ b/pkgs/by-name/py/pystring/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/imageworks/pystring/"; description = "Collection of C++ functions which match the interface and behavior of python's string class methods using std::string"; - license = licenses.bsd3; - maintainers = [ maintainers.rytone ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.rytone ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/py/python-cosmopolitan/package.nix b/pkgs/by-name/py/python-cosmopolitan/package.nix index 7869e44446f8..0227d0c5658b 100644 --- a/pkgs/by-name/py/python-cosmopolitan/package.nix +++ b/pkgs/by-name/py/python-cosmopolitan/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://justine.lol/cosmopolitan/"; description = "Actually Portable Python using Cosmopolitan"; - platforms = platforms.x86_64; - badPlatforms = platforms.darwin; - license = licenses.isc; - teams = [ teams.cosmopolitan ]; + platforms = lib.platforms.x86_64; + badPlatforms = lib.platforms.darwin; + license = lib.licenses.isc; + teams = [ lib.teams.cosmopolitan ]; mainProgram = "python.com"; }; } diff --git a/pkgs/by-name/py/pytrainer/package.nix b/pkgs/by-name/py/pytrainer/package.nix index 8af97702b335..a128b4bdc42b 100644 --- a/pkgs/by-name/py/pytrainer/package.nix +++ b/pkgs/by-name/py/pytrainer/package.nix @@ -116,15 +116,15 @@ python.pkgs.buildPythonApplication rec { ${python.interpreter} -m unittest ''; - meta = with lib; { + meta = { homepage = "https://github.com/pytrainer/pytrainer"; description = "Application for logging and graphing sporting excursions"; mainProgram = "pytrainer"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rycee dotlambda ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/py/pywalfox-native/package.nix b/pkgs/by-name/py/pywalfox-native/package.nix index aab3269eb136..5d95fc013fef 100644 --- a/pkgs/by-name/py/pywalfox-native/package.nix +++ b/pkgs/by-name/py/pywalfox-native/package.nix @@ -19,11 +19,11 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "pywalfox" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Frewacom/pywalfox-native"; description = "Native app used alongside the Pywalfox addon"; mainProgram = "pywalfox"; - license = licenses.mpl20; - maintainers = with maintainers; [ tsandrini ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ tsandrini ]; }; } diff --git a/pkgs/by-name/py/pyzy/package.nix b/pkgs/by-name/py/pyzy/package.nix index e9e5d392ccf1..4d545d325c7a 100644 --- a/pkgs/by-name/py/pyzy/package.nix +++ b/pkgs/by-name/py/pyzy/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { ]; }; - meta = with lib; { + meta = { description = "Chinese PinYin and Bopomofo conversion library"; homepage = "https://github.com/openSUSE/pyzy"; - license = licenses.lgpl21; - maintainers = with maintainers; [ azuwis ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ azuwis ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pz/pzip/package.nix b/pkgs/by-name/pz/pzip/package.nix index ccac8c059a98..c82bc1f182bb 100644 --- a/pkgs/by-name/pz/pzip/package.nix +++ b/pkgs/by-name/pz/pzip/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Fast concurrent zip archiver and extractor"; homepage = "https://github.com/ybirader/pzip"; changelog = "https://github.com/ybirader/pzip/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "pzip"; }; diff --git a/pkgs/by-name/q-/q-text-as-data/package.nix b/pkgs/by-name/q-/q-text-as-data/package.nix index 4c4386b602ce..61802a718e23 100644 --- a/pkgs/by-name/q-/q-text-as-data/package.nix +++ b/pkgs/by-name/q-/q-text-as-data/package.nix @@ -34,7 +34,7 @@ python3Packages.buildPythonApplication rec { substituteInPlace setup.py --replace-fail 'six==' 'six>=' ''; - meta = with lib; { + meta = { description = "Run SQL directly on CSV or TSV files"; longDescription = '' q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files). @@ -42,9 +42,9 @@ python3Packages.buildPythonApplication rec { q treats ordinary files as database tables, and supports all SQL constructs, such as WHERE, GROUP BY, JOINs etc. It supports automatic column name and column type detection, and provides full support for multiple encodings. ''; homepage = "http://harelba.github.io/q/"; - license = licenses.gpl3; - maintainers = [ maintainers.taneb ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.taneb ]; + platforms = lib.platforms.all; mainProgram = "q"; }; } diff --git a/pkgs/by-name/qa/qalculate-gtk/package.nix b/pkgs/by-name/qa/qalculate-gtk/package.nix index a243257b5ef7..5b3eedf60d68 100644 --- a/pkgs/by-name/qa/qalculate-gtk/package.nix +++ b/pkgs/by-name/qa/qalculate-gtk/package.nix @@ -39,16 +39,16 @@ stdenv.mkDerivation (finalAttrs: { ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Ultimate desktop calculator"; homepage = "http://qalculate.github.io"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ doronbehar pentane aleksana ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "qalculate-gtk"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/qa/qalculate-qt/package.nix b/pkgs/by-name/qa/qalculate-qt/package.nix index eee2f4f8706a..9e2c4b24d028 100644 --- a/pkgs/by-name/qa/qalculate-qt/package.nix +++ b/pkgs/by-name/qa/qalculate-qt/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation (finalAttrs: { makeWrapper $out/{Applications/qalculate-qt.app/Contents/MacOS,bin}/qalculate-qt ''; - meta = with lib; { + meta = { description = "Ultimate desktop calculator"; homepage = "http://qalculate.github.io"; maintainers = [ ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "qalculate-qt"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/qa/qastools/package.nix b/pkgs/by-name/qa/qastools/package.nix index dbdb43bf8cf8..d979cc07ecea 100644 --- a/pkgs/by-name/qa/qastools/package.nix +++ b/pkgs/by-name/qa/qastools/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { qttools ]); - meta = with lib; { + meta = { description = "Collection of desktop applications for ALSA configuration"; homepage = "https://gitlab.com/sebholt/qastools"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ avnik ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/qb/qbe/package.nix b/pkgs/by-name/qb/qbe/package.nix index 194b374e4faf..3f9faf258dde 100644 --- a/pkgs/by-name/qb/qbe/package.nix +++ b/pkgs/by-name/qb/qbe/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix { }; }; - meta = with lib; { + meta = { homepage = "https://c9x.me/compile/"; description = "Small compiler backend written in C"; - maintainers = with maintainers; [ fgaz ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "qbe"; }; }) diff --git a/pkgs/by-name/qb/qbec/package.nix b/pkgs/by-name/qb/qbec/package.nix index d7a5fc24da15..c6c375155b04 100644 --- a/pkgs/by-name/qb/qbec/package.nix +++ b/pkgs/by-name/qb/qbec/package.nix @@ -28,10 +28,10 @@ buildGoModule rec { "-X github.com/splunk/qbec/internal/commands.goVersion=${lib.getVersion go}" ]; - meta = with lib; { + meta = { description = "Configure kubernetes objects on multiple clusters using jsonnet https://qbec.io"; homepage = "https://github.com/splunk/qbec"; - license = licenses.asl20; - maintainers = with maintainers; [ groodt ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ groodt ]; }; } diff --git a/pkgs/by-name/qc/qc/package.nix b/pkgs/by-name/qc/qc/package.nix index 59f99d96c705..5031ee183190 100644 --- a/pkgs/by-name/qc/qc/package.nix +++ b/pkgs/by-name/qc/qc/package.nix @@ -42,12 +42,12 @@ buildGoModule rec { --zsh <($out/bin/qc completion zsh) ''; - meta = with lib; { + meta = { description = "QOwnNotes command-line snippet manager"; mainProgram = "qc"; homepage = "https://github.com/qownnotes/qc"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbek totoroot ]; diff --git a/pkgs/by-name/qc/qcal/package.nix b/pkgs/by-name/qc/qcal/package.nix index 3dfc62ce4f40..8618d159b1df 100644 --- a/pkgs/by-name/qc/qcal/package.nix +++ b/pkgs/by-name/qc/qcal/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { cp config-sample.json $out/share/qcal/ ''; - meta = with lib; { + meta = { description = "CLI calendar application for CalDAV servers written in Go"; homepage = "https://git.sr.ht/~psic4t/qcal"; changelog = "https://git.sr.ht/~psic4t/qcal/refs/${version}"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "qcal"; - maintainers = with maintainers; [ antonmosich ]; + maintainers = with lib.maintainers; [ antonmosich ]; }; } diff --git a/pkgs/by-name/qc/qcomicbook/package.nix b/pkgs/by-name/qc/qcomicbook/package.nix index 946905c34f0b..293097a56af8 100644 --- a/pkgs/by-name/qc/qcomicbook/package.nix +++ b/pkgs/by-name/qc/qcomicbook/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { --replace "Exec=qcomicbook" "Exec=$out/bin/qcomicbook" ''; - meta = with lib; { + meta = { homepage = "https://github.com/stolowski/QComicBook"; description = "Comic book reader in Qt5"; mainProgram = "qcomicbook"; - license = licenses.gpl2; + license = lib.licenses.gpl2; longDescription = '' QComicBook is a viewer for PDF files and comic book archives containing @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { mouse or keyboard navigation etc. ''; - platforms = platforms.linux; - maintainers = with maintainers; [ greydot ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ greydot ]; }; } diff --git a/pkgs/by-name/qd/qdigidoc/package.nix b/pkgs/by-name/qd/qdigidoc/package.nix index 7403fda998f5..84544041ec30 100644 --- a/pkgs/by-name/qd/qdigidoc/package.nix +++ b/pkgs/by-name/qd/qdigidoc/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation rec { "--prefix LD_LIBRARY_PATH : ${opensc}/lib/pkcs11/" ]; - meta = with lib; { + meta = { description = "Qt-based UI for signing and verifying DigiDoc documents"; mainProgram = "qdigidoc4"; homepage = "https://www.id.ee/"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ flokli mmahut ]; diff --git a/pkgs/by-name/qd/qdirstat/package.nix b/pkgs/by-name/qd/qdirstat/package.nix index 970d0b71928c..488b55963aa0 100644 --- a/pkgs/by-name/qd/qdirstat/package.nix +++ b/pkgs/by-name/qd/qdirstat/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { --set PERL5LIB "${perlPackages.makePerlPath [ perlPackages.URI ]}" ''; - meta = with lib; { + meta = { description = "Graphical disk usage analyzer"; homepage = "https://github.com/shundhammer/qdirstat"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ donovanglover ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ donovanglover ]; + platforms = lib.platforms.linux; mainProgram = "qdirstat"; }; } diff --git a/pkgs/by-name/qe/qemacs/package.nix b/pkgs/by-name/qe/qemacs/package.nix index dc225bf3087f..62f841ea1b03 100644 --- a/pkgs/by-name/qe/qemacs/package.nix +++ b/pkgs/by-name/qe/qemacs/package.nix @@ -59,10 +59,10 @@ stdenv.mkDerivation { mkdir -p $out/bin $out/man ''; - meta = with lib; { + meta = { homepage = "https://bellard.org/qemacs/"; description = "Very small but powerful UNIX editor"; - license = licenses.mit; - maintainers = with maintainers; [ iblech ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ iblech ]; }; } diff --git a/pkgs/by-name/qe/qes/package.nix b/pkgs/by-name/qe/qes/package.nix index cf6702b92c53..c5449b06a1aa 100644 --- a/pkgs/by-name/qe/qes/package.nix +++ b/pkgs/by-name/qe/qes/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation { makeFlags = [ "BUILD_PATH=$(out)/bin" ]; - meta = with lib; { + meta = { description = "Quartz Event Synthesizer"; homepage = "https://github.com/koekeishiya/qes"; - platforms = platforms.darwin; - maintainers = with maintainers; [ lnl7 ]; - license = licenses.mit; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ lnl7 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/qg/qgrep/package.nix b/pkgs/by-name/qg/qgrep/package.nix index dfc875ef2c5f..6038d609749b 100644 --- a/pkgs/by-name/qg/qgrep/package.nix +++ b/pkgs/by-name/qg/qgrep/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fast regular expression grep for source code with incremental index updates"; mainProgram = "qgrep"; homepage = "https://github.com/zeux/qgrep"; - license = licenses.mit; - maintainers = [ maintainers.yrashk ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.yrashk ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qh/qhull/package.nix b/pkgs/by-name/qh/qhull/package.nix index 1cdbdfe4ed0a..4d552f5934e8 100644 --- a/pkgs/by-name/qh/qhull/package.nix +++ b/pkgs/by-name/qh/qhull/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 3.5...4.0)' ''; - meta = with lib; { + meta = { homepage = "http://www.qhull.org/"; description = "Compute the convex hull, Delaunay triangulation, Voronoi diagram and more"; - license = licenses.qhull; - platforms = platforms.unix; + license = lib.licenses.qhull; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/qi/qimgv/package.nix b/pkgs/by-name/qi/qimgv/package.nix index 6c6ac5feaac6..bd763d3c4f20 100644 --- a/pkgs/by-name/qi/qimgv/package.nix +++ b/pkgs/by-name/qi/qimgv/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation { "--prefix LD_LIBRARY_PATH : ${placeholder "out"}/lib" ]; - meta = with lib; { + meta = { description = "Qt5 image viewer with optional video support"; mainProgram = "qimgv"; homepage = "https://github.com/easymodo/qimgv"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ cole-h ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cole-h ]; }; } diff --git a/pkgs/by-name/qj/qjournalctl/package.nix b/pkgs/by-name/qj/qjournalctl/package.nix index 85fd6af3fe6d..46c49939f155 100644 --- a/pkgs/by-name/qj/qjournalctl/package.nix +++ b/pkgs/by-name/qj/qjournalctl/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { libsForQt5.qtbase ]; - meta = with lib; { + meta = { description = "Qt-based graphical user interface for systemd's journalctl command"; mainProgram = "qjournalctl"; homepage = "https://github.com/pentix/qjournalctl"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/qm/qm-dsp/package.nix b/pkgs/by-name/qm/qm-dsp/package.nix index f30c433e13d5..84edf328a77f 100644 --- a/pkgs/by-name/qm/qm-dsp/package.nix +++ b/pkgs/by-name/qm/qm-dsp/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I${lib.getInclude kissfft}/include/kissfft"; - meta = with lib; { + meta = { description = "C++ library of functions for DSP and Music Informatics purposes"; homepage = "https://code.soundsoftware.ac.uk/projects/qm-dsp"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/qm/qmic/package.nix b/pkgs/by-name/qm/qmic/package.nix index 16c8d6b7bcd0..9b374ba22854 100644 --- a/pkgs/by-name/qm/qmic/package.nix +++ b/pkgs/by-name/qm/qmic/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { - maintainers = with maintainers; [ matthewcroughan ]; + meta = { + maintainers = with lib.maintainers; [ matthewcroughan ]; description = "QMI IDL compiler"; homepage = "https://github.com/andersson/qmic"; - license = licenses.bsd3; - platforms = platforms.aarch64; + license = lib.licenses.bsd3; + platforms = lib.platforms.aarch64; }; }) diff --git a/pkgs/by-name/qm/qmidiarp/package.nix b/pkgs/by-name/qm/qmidiarp/package.nix index ec9dcc7a7173..44cf84e0dd8c 100644 --- a/pkgs/by-name/qm/qmidiarp/package.nix +++ b/pkgs/by-name/qm/qmidiarp/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { qttools ]); - meta = with lib; { + meta = { description = "Advanced MIDI arpeggiator"; mainProgram = "qmidiarp"; longDescription = '' @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://qmidiarp.sourceforge.net"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ sjfloat ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sjfloat ]; }; } diff --git a/pkgs/by-name/qm/qmk/package.nix b/pkgs/by-name/qm/qmk/package.nix index bb55ca9ae9c2..79c4a37f2c56 100644 --- a/pkgs/by-name/qm/qmk/package.nix +++ b/pkgs/by-name/qm/qmk/package.nix @@ -59,7 +59,7 @@ python3.pkgs.buildPythonApplication rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/qmk/qmk_cli"; description = "Program to help users work with QMK Firmware"; longDescription = '' @@ -76,7 +76,7 @@ python3.pkgs.buildPythonApplication rec { - qmk lint - ... and many more! ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "qmk"; }; diff --git a/pkgs/by-name/qm/qmk_hid/package.nix b/pkgs/by-name/qm/qmk_hid/package.nix index bad868dceecc..5f494815560e 100644 --- a/pkgs/by-name/qm/qmk_hid/package.nix +++ b/pkgs/by-name/qm/qmk_hid/package.nix @@ -32,10 +32,10 @@ rustPlatform.buildRustPackage rec { "--skip=src/lib.rs" ]; - meta = with lib; { + meta = { description = "Commandline tool for interactng with QMK devices over HID"; homepage = "https://github.com/FrameworkComputer/qmk_hid"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; mainProgram = "qmk_hid"; }; diff --git a/pkgs/by-name/qm/qmqtt/package.nix b/pkgs/by-name/qm/qmqtt/package.nix index 45789db4a2bf..f9e2c138e6a5 100644 --- a/pkgs/by-name/qm/qmqtt/package.nix +++ b/pkgs/by-name/qm/qmqtt/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { qt5.qtbase ]; - meta = with lib; { + meta = { description = "MQTT client for Qt"; homepage = "https://github.com/emqx/qmqtt"; - license = licenses.epl10; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.all; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qo/qogir-icon-theme/package.nix b/pkgs/by-name/qo/qogir-icon-theme/package.nix index 653f73c5dad4..d4cd55b0324f 100644 --- a/pkgs/by-name/qo/qogir-icon-theme/package.nix +++ b/pkgs/by-name/qo/qogir-icon-theme/package.nix @@ -66,11 +66,11 @@ lib.checkListOfEnum "${pname}: color variants" [ "standard" "dark" "all" ] color passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Flat colorful design icon theme"; homepage = "https://github.com/vinceliuice/Qogir-icon-theme"; - license = with licenses; [ gpl3Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + license = with lib.licenses; [ gpl3Only ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/qo/qogir-theme/package.nix b/pkgs/by-name/qo/qogir-theme/package.nix index 00532e9d574e..75c745d05691 100644 --- a/pkgs/by-name/qo/qogir-theme/package.nix +++ b/pkgs/by-name/qo/qogir-theme/package.nix @@ -84,11 +84,11 @@ lib.checkListOfEnum "${pname}: theme variants" [ "default" "manjaro" "ubuntu" "a passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Flat Design theme for GTK based desktop environments"; homepage = "https://github.com/vinceliuice/Qogir-theme"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/qo/qoi/package.nix b/pkgs/by-name/qo/qoi/package.nix index 1e60aa9d8179..a95fd712eb1d 100644 --- a/pkgs/by-name/qo/qoi/package.nix +++ b/pkgs/by-name/qo/qoi/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "'Quite OK Image Format' for fast, lossless image compression"; mainProgram = "qoiconv"; homepage = "https://qoiformat.org/"; - license = licenses.mit; - maintainers = with maintainers; [ hzeller ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hzeller ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/qo/qosmic/package.nix b/pkgs/by-name/qo/qosmic/package.nix index 40e6dbc5330b..f82563299276 100644 --- a/pkgs/by-name/qo/qosmic/package.nix +++ b/pkgs/by-name/qo/qosmic/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { mv qosmic.app $out/Applications ''; - meta = with lib; { + meta = { description = "Cosmic recursive flame fractal editor"; mainProgram = "qosmic"; homepage = "https://github.com/bitsed/qosmic"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.raboof ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.raboof ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/qp/qperf/package.nix b/pkgs/by-name/qp/qperf/package.nix index 162b546d2589..20d13c7af3d9 100644 --- a/pkgs/by-name/qp/qperf/package.nix +++ b/pkgs/by-name/qp/qperf/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Measure RDMA and IP performance"; mainProgram = "qperf"; homepage = "https://github.com/linux-rdma/qperf"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/qp/qpid-cpp/package.nix b/pkgs/by-name/qp/qpid-cpp/package.nix index 53e52140f2ae..a4ee2ff694ad 100644 --- a/pkgs/by-name/qp/qpid-cpp/package.nix +++ b/pkgs/by-name/qp/qpid-cpp/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { ] ); - meta = with lib; { + meta = { homepage = "https://qpid.apache.org"; description = "AMQP message broker and a C++ messaging API"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/qp/qpoases/package.nix b/pkgs/by-name/qp/qpoases/package.nix index 07356f081843..a55d795c62b8 100644 --- a/pkgs/by-name/qp/qpoases/package.nix +++ b/pkgs/by-name/qp/qpoases/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Open-source C++ implementation of the recently proposed online active set strategy"; homepage = "https://github.com/coin-or/qpOASES"; changelog = "https://github.com/coin-or/qpOASES/blob/${finalAttrs.src.tag}/VERSIONS.txt"; - license = licenses.lgpl21; - maintainers = with maintainers; [ nim65s ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ nim65s ]; }; }) diff --git a/pkgs/by-name/qr/qrcode/package.nix b/pkgs/by-name/qr/qrcode/package.nix index e15f7ca636cb..e434447b055a 100644 --- a/pkgs/by-name/qr/qrcode/package.nix +++ b/pkgs/by-name/qr/qrcode/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Small QR-code tool"; homepage = "https://github.com/qsantos/qrcode"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin lucasew ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; mainProgram = "qrcode"; }; } diff --git a/pkgs/by-name/qr/qrrs/package.nix b/pkgs/by-name/qr/qrrs/package.nix index 189e039e3e0e..5aec1bfd279f 100644 --- a/pkgs/by-name/qr/qrrs/package.nix +++ b/pkgs/by-name/qr/qrrs/package.nix @@ -29,10 +29,10 @@ rustPlatform.buildRustPackage rec { --zsh <(cat ./completions/_qrrs) ''; - meta = with lib; { - maintainers = with maintainers; [ lenivaya ]; + meta = { + maintainers = with lib.maintainers; [ lenivaya ]; description = "CLI QR code generator and reader written in rust"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Lenivaya/qrrs"; mainProgram = "qrrs"; }; diff --git a/pkgs/by-name/qr/qrtr/package.nix b/pkgs/by-name/qr/qrtr/package.nix index 1aa8317260e9..355b8ce4fbc8 100644 --- a/pkgs/by-name/qr/qrtr/package.nix +++ b/pkgs/by-name/qr/qrtr/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { - maintainers = with maintainers; [ matthewcroughan ]; + meta = { + maintainers = with lib.maintainers; [ matthewcroughan ]; description = "QMI IDL compiler"; homepage = "https://github.com/linux-msm/qrtr"; - license = licenses.bsd3; - platforms = platforms.aarch64; + license = lib.licenses.bsd3; + platforms = lib.platforms.aarch64; }; }) diff --git a/pkgs/by-name/qr/qrupdate/package.nix b/pkgs/by-name/qr/qrupdate/package.nix index 030ec7af99c5..ed7974a8be76 100644 --- a/pkgs/by-name/qr/qrupdate/package.nix +++ b/pkgs/by-name/qr/qrupdate/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation (finalAttrs: { lapack ]; - meta = with lib; { + meta = { description = "Library for fast updating of qr and cholesky decompositions"; homepage = "https://github.com/mpimd-csc/qrupdate-ng"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/qs/qscreenshot/package.nix b/pkgs/by-name/qs/qscreenshot/package.nix index 41d0c52cd6c5..4bbd06750c85 100644 --- a/pkgs/by-name/qs/qscreenshot/package.nix +++ b/pkgs/by-name/qs/qscreenshot/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required( VERSION 3.2.0 )" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Simple creation and editing of screenshots"; mainProgram = "qScreenshot"; homepage = "https://sourceforge.net/projects/qscreenshot/"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; # last successful hydra build on darwin was in 2019 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/qs/qsreplace/package.nix b/pkgs/by-name/qs/qsreplace/package.nix index bc0e71483ed7..9a19f6436a1e 100644 --- a/pkgs/by-name/qs/qsreplace/package.nix +++ b/pkgs/by-name/qs/qsreplace/package.nix @@ -22,13 +22,13 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tomnomnom/qsreplace"; description = "Accept URLs on stdin, replace all query string values with a user-supplied value"; mainProgram = "qsreplace"; - maintainers = with maintainers; [ averagebit ]; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ fromSource ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ averagebit ]; + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/qt/qtikz/package.nix b/pkgs/by-name/qt/qtikz/package.nix index 52d43879186f..87636d9df9ea 100644 --- a/pkgs/by-name/qt/qtikz/package.nix +++ b/pkgs/by-name/qt/qtikz/package.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation rec { version = "0.12"; pname = "qtikz"; - meta = with lib; { + meta = { description = "Editor for the TikZ language"; mainProgram = "qtikz"; homepage = "https://github.com/fhackenberger/ktikz"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.layus ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.layus ]; longDescription = '' You will also need a working *tex installation in your PATH, containing at least `preview` and `pgf`. ''; diff --git a/pkgs/by-name/qt/qtox/package.nix b/pkgs/by-name/qt/qtox/package.nix index 68f4663a632a..a252e2321217 100644 --- a/pkgs/by-name/qt/qtox/package.nix +++ b/pkgs/by-name/qt/qtox/package.nix @@ -67,16 +67,16 @@ stdenv.mkDerivation rec { "-DTIMESTAMP=1" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Qt Tox client"; mainProgram = "qtox"; homepage = "https://tox.chat"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ akaWolf peterhoeg ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qt/qtrvsim/package.nix b/pkgs/by-name/qt/qtrvsim/package.nix index 52f3379e2057..a818776564d1 100644 --- a/pkgs/by-name/qt/qtrvsim/package.nix +++ b/pkgs/by-name/qt/qtrvsim/package.nix @@ -24,16 +24,16 @@ stdenv.mkDerivation rec { buildInputs = [ libsForQt5.qtbase ]; - meta = with lib; { + meta = { description = "RISC-V CPU simulator for education purposes"; longDescription = '' RISC-V CPU simulator for education purposes with pipeline and cache visualization. Developed at FEE CTU for computer architecture classes. ''; homepage = "https://github.com/cvut/qtrvsim"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ jdupak ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ jdupak ]; mainProgram = "qtrvsim_gui"; }; } diff --git a/pkgs/by-name/qu/QuadProgpp/package.nix b/pkgs/by-name/qu/QuadProgpp/package.nix index 35bab2a1eec9..3ec83d2b3765 100644 --- a/pkgs/by-name/qu/QuadProgpp/package.nix +++ b/pkgs/by-name/qu/QuadProgpp/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation { 'cmake_minimum_required(VERSION 3.10)' ''; - meta = with lib; { + meta = { description = "C++ library for Quadratic Programming"; longDescription = '' QuadProg++ is a C++ library for Quadratic Programming which implements the Goldfarb-Idnani active-set dual method. ''; homepage = "https://github.com/liuq/QuadProgpp"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qu/quadrafuzz/package.nix b/pkgs/by-name/qu/quadrafuzz/package.nix index 2b3193413c3f..c79cf0cff795 100644 --- a/pkgs/by-name/qu/quadrafuzz/package.nix +++ b/pkgs/by-name/qu/quadrafuzz/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "https://github.com/jpcima/quadrafuzz"; description = "Multi-band fuzz distortion plugin"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/qu/quake3e/package.nix b/pkgs/by-name/qu/quake3e/package.nix index 5c2b26273e4a..60d99d7b5643 100644 --- a/pkgs/by-name/qu/quake3e/package.nix +++ b/pkgs/by-name/qu/quake3e/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/ec-/Quake3e"; description = "Improved Quake III Arena engine"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pmiddend alx ]; diff --git a/pkgs/by-name/qu/quantlib/package.nix b/pkgs/by-name/qu/quantlib/package.nix index 865eb860f44c..5428c36e19cf 100644 --- a/pkgs/by-name/qu/quantlib/package.nix +++ b/pkgs/by-name/qu/quantlib/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Free/open-source library for quantitative finance"; homepage = "https://quantlib.org"; changelog = "https://github.com/lballabio/QuantLib/releases/tag/v${finalAttrs.version}"; - platforms = platforms.unix; - license = licenses.bsd3; - maintainers = [ maintainers.kupac ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.kupac ]; }; }) diff --git a/pkgs/by-name/qu/quantomatic/package.nix b/pkgs/by-name/qu/quantomatic/package.nix index 2f531c5e0e8d..cfda62774a97 100644 --- a/pkgs/by-name/qu/quantomatic/package.nix +++ b/pkgs/by-name/qu/quantomatic/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { makeWrapper ${jre}/bin/java $out/bin/quantomatic --add-flags "-jar $out/libexec/quantomatic/quantomatic.jar" ''; - meta = with lib; { + meta = { description = "Piece of software for reasoning about monoidal theories; in particular, quantum information processing"; mainProgram = "quantomatic"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://quantomatic.github.io/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ nickhu ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ nickhu ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qu/quantumminigolf/package.nix b/pkgs/by-name/qu/quantumminigolf/package.nix index 1a1674d46206..9f067e500756 100644 --- a/pkgs/by-name/qu/quantumminigolf/package.nix +++ b/pkgs/by-name/qu/quantumminigolf/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { cp quantumminigolf "$out/bin" ''; - meta = with lib; { + meta = { description = "Quantum mechanics-based minigolf-like game"; mainProgram = "quantumminigolf"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; # never built on aarch64-linux since first introduction in nixpkgs broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/qu/quark-engine/package.nix b/pkgs/by-name/qu/quark-engine/package.nix index 82488e27ccc5..9896b7bae9fb 100644 --- a/pkgs/by-name/qu/quark-engine/package.nix +++ b/pkgs/by-name/qu/quark-engine/package.nix @@ -45,11 +45,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "quark" ]; - meta = with lib; { + meta = { description = "Android malware (analysis and scoring) system"; homepage = "https://quark-engine.readthedocs.io/"; changelog = "https://github.com/quark-engine/quark-engine/releases/tag/${src.tag}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/qu/quark/package.nix b/pkgs/by-name/qu/quark/package.nix index 0bed34218181..3518ff551b47 100644 --- a/pkgs/by-name/qu/quark/package.nix +++ b/pkgs/by-name/qu/quark/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Extremely small and simple HTTP GET/HEAD-only web server for static content"; mainProgram = "quark"; homepage = "http://tools.suckless.org/quark"; - license = licenses.isc; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/qu/quarkus/package.nix b/pkgs/by-name/qu/quarkus/package.nix index e2496d6f5a96..1668d507bd60 100644 --- a/pkgs/by-name/qu/quarkus/package.nix +++ b/pkgs/by-name/qu/quarkus/package.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Kubernetes-native Java framework tailored for GraalVM and HotSpot, crafted from best-of-breed Java libraries and standards"; homepage = "https://quarkus.io"; changelog = "https://github.com/quarkusio/quarkus/releases/tag/${finalAttrs.version}"; - license = licenses.asl20; - maintainers = [ maintainers.vinetos ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.vinetos ]; + platforms = lib.platforms.all; mainProgram = "quarkus"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/qu/quartus-prime-lite/quartus.nix b/pkgs/by-name/qu/quartus-prime-lite/quartus.nix index 68121d1a14ce..26590c6caac8 100644 --- a/pkgs/by-name/qu/quartus-prime-lite/quartus.nix +++ b/pkgs/by-name/qu/quartus-prime-lite/quartus.nix @@ -122,13 +122,13 @@ stdenv.mkDerivation { --replace-fail 'grep sse /proc/cpuinfo > /dev/null 2>&1' ':' ''; - meta = with lib; { + meta = { homepage = "https://fpgasoftware.intel.com"; description = "FPGA design and simulation software"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bjornfor kwohlfahrt zainkergaye diff --git a/pkgs/by-name/qu/quattrocento-sans/package.nix b/pkgs/by-name/qu/quattrocento-sans/package.nix index 6493e7511ba8..41fe9a6964c9 100644 --- a/pkgs/by-name/qu/quattrocento-sans/package.nix +++ b/pkgs/by-name/qu/quattrocento-sans/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.impallari.com/quattrocentosans/"; description = "Classic, elegant and sober sans-serif typeface"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/qu/quattrocento/package.nix b/pkgs/by-name/qu/quattrocento/package.nix index 7404d720736d..6963945f65eb 100644 --- a/pkgs/by-name/qu/quattrocento/package.nix +++ b/pkgs/by-name/qu/quattrocento/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.impallari.com/quattrocento/"; description = "Classic, elegant, sober and strong serif typeface"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/qu/quich/package.nix b/pkgs/by-name/qu/quich/package.nix index 37f058376349..116c5eb481b8 100644 --- a/pkgs/by-name/qu/quich/package.nix +++ b/pkgs/by-name/qu/quich/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = with lib; { + meta = { description = "Advanced terminal calculator"; longDescription = '' Quich is a compact, fast, powerful and useful calculator for your terminal @@ -31,9 +31,9 @@ stdenv.mkDerivation rec { written in ANSI C. ''; homepage = "https://github.com/Usbac/quich"; - license = licenses.mit; - maintainers = [ maintainers.xdhampus ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.xdhampus ]; + platforms = lib.platforms.all; mainProgram = "quich"; }; } diff --git a/pkgs/by-name/qu/quickder/package.nix b/pkgs/by-name/qu/quickder/package.nix index 053f3e89f38c..40c4b61a8832 100644 --- a/pkgs/by-name/qu/quickder/package.nix +++ b/pkgs/by-name/qu/quickder/package.nix @@ -72,10 +72,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Quick (and Easy) DER, a Library for parsing ASN.1"; homepage = "https://gitlab.com/arpa2/quick-der/"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/qu/quickfix/package.nix b/pkgs/by-name/qu/quickfix/package.nix index 6cb9c1b0c3ff..799dda16c7b0 100644 --- a/pkgs/by-name/qu/quickfix/package.nix +++ b/pkgs/by-name/qu/quickfix/package.nix @@ -50,10 +50,10 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace 'UnitTest++' ' ' ''; - meta = with lib; { + meta = { description = "C++ Fix Engine Library"; homepage = "http://www.quickfixengine.org"; - license = licenses.free; # similar to BSD 4-clause + license = lib.licenses.free; # similar to BSD 4-clause broken = stdenv.hostPlatform.isAarch64; }; } diff --git a/pkgs/by-name/qu/quickgui/package.nix b/pkgs/by-name/qu/quickgui/package.nix index e8a91a6d31f7..5f7a5defe457 100644 --- a/pkgs/by-name/qu/quickgui/package.nix +++ b/pkgs/by-name/qu/quickgui/package.nix @@ -52,12 +52,12 @@ flutter332.buildFlutterApplication rec { }) ]; - meta = with lib; { + meta = { description = "Elegant virtual machine manager for the desktop"; homepage = "https://github.com/quickemu-project/quickgui"; changelog = "https://github.com/quickemu-project/quickgui/releases/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flexiondotorg heyimnova ]; diff --git a/pkgs/by-name/qu/quickmem/package.nix b/pkgs/by-name/qu/quickmem/package.nix index 54ada1f9aff3..26060b60a041 100644 --- a/pkgs/by-name/qu/quickmem/package.nix +++ b/pkgs/by-name/qu/quickmem/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Memory pooling for ARPA2 projects"; homepage = "https://gitlab.com/arpa2/Quick-MEM/"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ leungbk ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ leungbk ]; }; } diff --git a/pkgs/by-name/qu/quicktemplate/package.nix b/pkgs/by-name/qu/quicktemplate/package.nix index 68409b3e7314..3573f2a92534 100644 --- a/pkgs/by-name/qu/quicktemplate/package.nix +++ b/pkgs/by-name/qu/quicktemplate/package.nix @@ -16,10 +16,10 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { homepage = "https://github.com/valyala/quicktemplate"; description = "Fast, powerful, yet easy to use template engine for Go"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "qtc"; }; } diff --git a/pkgs/by-name/qu/quicktun/package.nix b/pkgs/by-name/qu/quicktun/package.nix index ca215dfff275..996c5c28653e 100644 --- a/pkgs/by-name/qu/quicktun/package.nix +++ b/pkgs/by-name/qu/quicktun/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { passthru.tests.quicktun = nixosTests.quicktun; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Very simple, yet secure VPN software"; homepage = "http://wiki.ucis.nl/QuickTun"; - maintainers = with maintainers; [ h7x4 ]; - platforms = platforms.unix; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ h7x4 ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/qu/quicktype/package.nix b/pkgs/by-name/qu/quicktype/package.nix index 1bbf69aa63b6..8748012ccd02 100644 --- a/pkgs/by-name/qu/quicktype/package.nix +++ b/pkgs/by-name/qu/quicktype/package.nix @@ -32,10 +32,10 @@ buildNpmPackage rec { version = testers.testVersion { package = quicktype; }; }; - meta = with lib; { + meta = { description = "Generate types and converters from JSON, Schema, and GraphQL"; homepage = "https://quicktype.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "quicktype"; }; diff --git a/pkgs/by-name/qu/quickwit/package.nix b/pkgs/by-name/qu/quickwit/package.nix index fdcb038d5515..b4b122211a09 100644 --- a/pkgs/by-name/qu/quickwit/package.nix +++ b/pkgs/by-name/qu/quickwit/package.nix @@ -139,13 +139,13 @@ rustPlatform.buildRustPackage rec { "--skip=io::tests::test_controlled_writer_limited_sync" ]; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = "Sub-second search & analytics engine on cloud storage"; homepage = "https://quickwit.io/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.all; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qu/quill-qr/package.nix b/pkgs/by-name/qu/quill-qr/package.nix index 32c0e15ffbb1..023a7fd97404 100644 --- a/pkgs/by-name/qu/quill-qr/package.nix +++ b/pkgs/by-name/qu/quill-qr/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Print QR codes for use with https://p5deo-6aaaa-aaaab-aaaxq-cai.raw.ic0.app"; mainProgram = "quill-qr.sh"; homepage = "https://github.com/IvanMalison/quill-qr"; - maintainers = with maintainers; [ imalison ]; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ imalison ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/qu/quilt/package.nix b/pkgs/by-name/qu/quilt/package.nix index ae47ede35406..8277b7fa1f55 100644 --- a/pkgs/by-name/qu/quilt/package.nix +++ b/pkgs/by-name/qu/quilt/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/quilt --prefix PATH : ${lib.makeBinPath buildInputs} ''; - meta = with lib; { + meta = { homepage = "https://savannah.nongnu.org/projects/quilt"; description = "Easily manage large numbers of patches"; @@ -66,9 +66,9 @@ stdenv.mkDerivation rec { and more. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ smancill ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ smancill ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qu/quintom-cursor-theme/package.nix b/pkgs/by-name/qu/quintom-cursor-theme/package.nix index 037cbc749888..9ba6e8588fdc 100644 --- a/pkgs/by-name/qu/quintom-cursor-theme/package.nix +++ b/pkgs/by-name/qu/quintom-cursor-theme/package.nix @@ -22,14 +22,14 @@ stdenvNoCC.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Cursor theme designed to look decent"; homepage = "https://gitlab.com/Burning_Cube/quintom-cursor-theme"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ cc-by-sa-40 gpl3Only ]; - maintainers = with maintainers; [ frogamic ]; + maintainers = with lib.maintainers; [ frogamic ]; }; } diff --git a/pkgs/by-name/qu/quinze/package.nix b/pkgs/by-name/qu/quinze/package.nix index 1a3739994043..2f1c64d82cfa 100644 --- a/pkgs/by-name/qu/quinze/package.nix +++ b/pkgs/by-name/qu/quinze/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Narrow monospaced font, designed to fit a fifteen pixel bitmap"; homepage = "https://fontlibrary.org/en/font/quinze"; - license = licenses.ofl; - maintainers = with maintainers; [ phunehehe ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ phunehehe ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/qu/quisk/package.nix b/pkgs/by-name/qu/quisk/package.nix index a57fc5cbea80..2b303b16c3b8 100644 --- a/pkgs/by-name/qu/quisk/package.nix +++ b/pkgs/by-name/qu/quisk/package.nix @@ -36,7 +36,7 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "quisk" ]; - meta = with lib; { + meta = { description = "SDR transceiver for radios that use the Hermes protocol"; longDescription = '' QUISK is a Software Defined Radio (SDR) transceiver. You supply radio @@ -51,12 +51,12 @@ python3.pkgs.buildPythonApplication rec { programs like Fldigi and WSJT-X. Quisk can be connected to other software like N1MM+ and software that uses Hamlib. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://james.ahlstrom.name/quisk/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ pulsation kashw2 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/qw/qwerty-fr/package.nix b/pkgs/by-name/qw/qwerty-fr/package.nix index 31728c89588e..496c31807e2b 100644 --- a/pkgs/by-name/qw/qwerty-fr/package.nix +++ b/pkgs/by-name/qw/qwerty-fr/package.nix @@ -20,11 +20,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { cp $src/linux/us_qwerty-fr $out/share/X11/xkb/symbols ''; - meta = with lib; { + meta = { description = "Qwerty keyboard layout with French accents"; changelog = "https://github.com/qwerty-fr/qwerty-fr/blob/v${finalAttrs.version}/linux/debian/changelog"; homepage = "https://github.com/qwerty-fr/qwerty-fr"; - license = licenses.mit; - maintainers = with maintainers; [ potb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ potb ]; }; }) diff --git a/pkgs/by-name/r0/r0vm/package.nix b/pkgs/by-name/r0/r0vm/package.nix index 662188fcf29f..7740dbec0e0a 100644 --- a/pkgs/by-name/r0/r0vm/package.nix +++ b/pkgs/by-name/r0/r0vm/package.nix @@ -46,12 +46,12 @@ rustPlatform.buildRustPackage rec { ln -sf ${recursionZkr} ./risc0/circuit/recursion/src/recursion_zkr.zip ''; - meta = with lib; { + meta = { description = "RISC Zero zero-knowledge VM"; homepage = "https://github.com/risc0/risc0"; changelog = "https://github.com/risc0/risc0/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ marijanp ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ marijanp ]; mainProgram = "r0vm"; }; } diff --git a/pkgs/by-name/r1/r128gain/package.nix b/pkgs/by-name/r1/r128gain/package.nix index f487be2b4cfd..08811620d064 100644 --- a/pkgs/by-name/r1/r128gain/package.nix +++ b/pkgs/by-name/r1/r128gain/package.nix @@ -48,12 +48,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Fast audio loudness scanner & tagger (ReplayGain v2 / R128)"; mainProgram = "r128gain"; homepage = "https://github.com/desbma/r128gain"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/r2/r2mod_cli/package.nix b/pkgs/by-name/r2/r2mod_cli/package.nix index bc8090c09349..49fba2aedb72 100644 --- a/pkgs/by-name/r2/r2mod_cli/package.nix +++ b/pkgs/by-name/r2/r2mod_cli/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { }"; ''; - meta = with lib; { + meta = { description = "Risk of Rain 2 Mod Manager in Bash"; homepage = "https://github.com/foldex/r2mod_cli"; - license = licenses.gpl3Only; - maintainers = [ maintainers.reedrw ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.reedrw ]; mainProgram = "r2mod"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/r5/r53-ddns/package.nix b/pkgs/by-name/r5/r53-ddns/package.nix index 7689d1b02417..73710233aa58 100644 --- a/pkgs/by-name/r5/r53-ddns/package.nix +++ b/pkgs/by-name/r5/r53-ddns/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-ImV/jxCYIWObN+jCSbXhuzR4TuRc/EgQ8SIV6x+wEpA="; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://github.com/fleaz/r53-ddns"; description = "DIY DynDNS tool based on Route53"; - maintainers = with maintainers; [ fleaz ]; + maintainers = with lib.maintainers; [ fleaz ]; mainProgram = "r53-ddns"; }; } diff --git a/pkgs/by-name/ra/rabbitmq-c/package.nix b/pkgs/by-name/ra/rabbitmq-c/package.nix index 925653d66f82..3d82563c6ae2 100644 --- a/pkgs/by-name/ra/rabbitmq-c/package.nix +++ b/pkgs/by-name/ra/rabbitmq-c/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "RabbitMQ C AMQP client library"; homepage = "https://github.com/alanxz/rabbitmq-c"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; pkgConfigModules = [ "librabbitmq" ]; }; diff --git a/pkgs/by-name/ra/rabtap/package.nix b/pkgs/by-name/ra/rabtap/package.nix index 1fdb26d34746..c7789b4f32f0 100644 --- a/pkgs/by-name/ra/rabtap/package.nix +++ b/pkgs/by-name/ra/rabtap/package.nix @@ -21,10 +21,10 @@ buildGoModule rec { "-X main.BuildVersion=v${version}" ]; - meta = with lib; { + meta = { description = "RabbitMQ wire tap and swiss army knife"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; homepage = "https://github.com/jandelgado/rabtap"; - maintainers = with maintainers; [ eigengrau ]; + maintainers = with lib.maintainers; [ eigengrau ]; }; } diff --git a/pkgs/by-name/ra/radeontools/package.nix b/pkgs/by-name/ra/radeontools/package.nix index 5dce7e17cfc5..4fa12b3ceb61 100644 --- a/pkgs/by-name/ra/radeontools/package.nix +++ b/pkgs/by-name/ra/radeontools/package.nix @@ -23,9 +23,9 @@ stdenv.mkDerivation rec { ]; buildInputs = [ xorg.libpciaccess ]; - meta = with lib; { + meta = { description = "Lowlevel tools to tweak register and dump state on radeon GPUs"; homepage = "https://airlied.livejournal.com/"; - license = licenses.zlib; + license = lib.licenses.zlib; }; } diff --git a/pkgs/by-name/ra/radeontop/package.nix b/pkgs/by-name/ra/radeontop/package.nix index 2f766860a520..9e1cc20d0f3d 100644 --- a/pkgs/by-name/ra/radeontop/package.nix +++ b/pkgs/by-name/ra/radeontop/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : $out/lib ''; - meta = with lib; { + meta = { description = "Top-like tool for viewing AMD Radeon GPU utilization"; mainProgram = "radeontop"; longDescription = '' @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { loads. ''; homepage = "https://github.com/clbr/radeontop"; - platforms = platforms.linux; - license = licenses.gpl3; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/ra/radioboat/package.nix b/pkgs/by-name/ra/radioboat/package.nix index 3f220a662434..42e4601b9963 100644 --- a/pkgs/by-name/ra/radioboat/package.nix +++ b/pkgs/by-name/ra/radioboat/package.nix @@ -54,12 +54,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Terminal web radio client"; mainProgram = "radioboat"; homepage = "https://github.com/slashformotion/radioboat"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/ra/radvd/package.nix b/pkgs/by-name/ra/radvd/package.nix index c65f95b634a2..68acad3af7f5 100644 --- a/pkgs/by-name/ra/radvd/package.nix +++ b/pkgs/by-name/ra/radvd/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation (finalAttrs: { privacy_networkd = nixosTests.networking.networkd.privacy; }; - meta = with lib; { + meta = { homepage = "http://www.litech.org/radvd/"; changelog = "https://github.com/radvd-project/radvd/blob/${finalAttrs.src.rev}/CHANGES"; description = "IPv6 Router Advertisement Daemon"; downloadPage = "https://github.com/radvd-project/radvd"; - platforms = platforms.linux; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ fpletz ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ fpletz ]; }; }) diff --git a/pkgs/by-name/ra/raft-cowsql/package.nix b/pkgs/by-name/ra/raft-cowsql/package.nix index 6796d5288367..574f3730801a 100644 --- a/pkgs/by-name/ra/raft-cowsql/package.nix +++ b/pkgs/by-name/ra/raft-cowsql/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Asynchronous C implementation of the Raft consensus protocol"; homepage = "https://github.com/cowsql/raft"; - license = licenses.lgpl3Only; - platforms = platforms.linux; - teams = [ teams.lxc ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxc ]; }; } diff --git a/pkgs/by-name/ra/rain/package.nix b/pkgs/by-name/ra/rain/package.nix index b9d97dda17ee..34bb6fa045b6 100644 --- a/pkgs/by-name/ra/rain/package.nix +++ b/pkgs/by-name/ra/rain/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Development workflow tool for working with AWS CloudFormation"; mainProgram = "rain"; homepage = "https://github.com/aws-cloudformation/rain"; - license = licenses.asl20; - maintainers = with maintainers; [ jiegec ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jiegec ]; }; } diff --git a/pkgs/by-name/ra/raiseorlaunch/package.nix b/pkgs/by-name/ra/raiseorlaunch/package.nix index f1a8a9d51bab..12b232269bc7 100644 --- a/pkgs/by-name/ra/raiseorlaunch/package.nix +++ b/pkgs/by-name/ra/raiseorlaunch/package.nix @@ -22,12 +22,12 @@ python3Packages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "raiseorlaunch" ]; - meta = with lib; { - maintainers = with maintainers; [ winpat ]; + meta = { + maintainers = with lib.maintainers; [ winpat ]; description = "Run-or-raise-application-launcher for i3 window manager"; mainProgram = "raiseorlaunch"; homepage = "https://github.com/open-dynaMIX/raiseorlaunch"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ra/rake/package.nix b/pkgs/by-name/ra/rake/package.nix index 73dbe5bea416..56037ee6555b 100644 --- a/pkgs/by-name/ra/rake/package.nix +++ b/pkgs/by-name/ra/rake/package.nix @@ -11,15 +11,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "rake"; - meta = with lib; { + meta = { description = "Software task management and build automation tool"; homepage = "https://github.com/ruby/rake"; - license = with licenses; mit; - maintainers = with maintainers; [ + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "rake"; }; } diff --git a/pkgs/by-name/ra/rambox/package.nix b/pkgs/by-name/ra/rambox/package.nix index d32a266ad748..c7be7bc13afa 100644 --- a/pkgs/by-name/ra/rambox/package.nix +++ b/pkgs/by-name/ra/rambox/package.nix @@ -39,12 +39,12 @@ appimageTools.wrapType2 { extraPkgs = pkgs: [ pkgs.procps ]; - meta = with lib; { + meta = { description = "Workspace Simplifier - a cross-platform application organizing web services into Workspaces similar to browser profiles"; homepage = "https://rambox.app"; - license = licenses.unfree; - maintainers = with maintainers; [ nazarewk ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ nazarewk ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ra/ran/package.nix b/pkgs/by-name/ra/ran/package.nix index 4f1a747b733d..4e535355fa8a 100644 --- a/pkgs/by-name/ra/ran/package.nix +++ b/pkgs/by-name/ra/ran/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { ''; }; - meta = with lib; { + meta = { homepage = "https://github.com/m3ng9i/ran"; description = "Simple web server for serving static files"; mainProgram = "ran"; - license = licenses.mit; - maintainers = with maintainers; [ tomberek ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomberek ]; }; } diff --git a/pkgs/by-name/ra/rancher/package.nix b/pkgs/by-name/ra/rancher/package.nix index d7204ead5335..a50370754b71 100644 --- a/pkgs/by-name/ra/rancher/package.nix +++ b/pkgs/by-name/ra/rancher/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { $out/bin/rancher | grep ${version} > /dev/null ''; - meta = with lib; { + meta = { description = "CLI tool for interacting with your Rancher Server"; mainProgram = "rancher"; homepage = "https://github.com/rancher/cli"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ra/rancid/package.nix b/pkgs/by-name/ra/rancid/package.nix index a6ed377ebc29..1eea19d67fcb 100644 --- a/pkgs/by-name/ra/rancid/package.nix +++ b/pkgs/by-name/ra/rancid/package.nix @@ -132,15 +132,15 @@ stdenv.mkDerivation (finalAttrs: { '') needsBin ); - meta = with lib; { + meta = { description = "Really Awesome New Cisco confIg Differ"; longDescription = '' RANCID monitors a device's configuration, including software and hardware and uses a VCS to maintain history of changes. ''; homepage = "https://shrubbery.net/rancid/"; - license = licenses.bsd3; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ra/randomx/package.nix b/pkgs/by-name/ra/randomx/package.nix index 07291efc01e6..16846d48dd20 100644 --- a/pkgs/by-name/ra/randomx/package.nix +++ b/pkgs/by-name/ra/randomx/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-dfImzwbEfJQcaPZCoWypHiI6dishVRdqS/r+n3tfjvM="; }; - meta = with lib; { + meta = { description = "Proof of work algorithm based on random code execution"; homepage = "https://github.com/tevador/RandomX"; - license = licenses.bsd3; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ra/randoop/package.nix b/pkgs/by-name/ra/randoop/package.nix index 874494e71b6b..da8f6180a61b 100644 --- a/pkgs/by-name/ra/randoop/package.nix +++ b/pkgs/by-name/ra/randoop/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { cp README.txt $out/doc ''; - meta = with lib; { + meta = { description = "Automatic test generation for Java"; homepage = "https://randoop.github.io/randoop/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ra/randtype/package.nix b/pkgs/by-name/ra/randtype/package.nix index 3d218c5f3289..c5de287cfb76 100644 --- a/pkgs/by-name/ra/randtype/package.nix +++ b/pkgs/by-name/ra/randtype/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Semi-random text typer"; mainProgram = "randtype"; homepage = "https://benkibbey.wordpress.com/randtype/"; - maintainers = with maintainers; [ dandellion ]; - license = licenses.gpl2Only; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/randtype.x86_64-darwin }; } diff --git a/pkgs/by-name/ra/rankwidth/package.nix b/pkgs/by-name/ra/rankwidth/package.nix index ed773ba35891..2ed82dea108e 100644 --- a/pkgs/by-name/ra/rankwidth/package.nix +++ b/pkgs/by-name/ra/rankwidth/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { # check phase is empty for now (as of version 0.9) doCheck = true; - meta = with lib; { + meta = { description = "Calculates rank-width and rank-decompositions"; - license = with licenses; [ gpl2Plus ]; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = with lib.licenses; [ gpl2Plus ]; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ra/rapidcheck/package.nix b/pkgs/by-name/ra/rapidcheck/package.nix index aefe46093b0e..880630fa6bd6 100644 --- a/pkgs/by-name/ra/rapidcheck/package.nix +++ b/pkgs/by-name/ra/rapidcheck/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "C++ framework for property based testing inspired by QuickCheck"; inherit (finalAttrs.src.meta) homepage; maintainers = [ ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; pkgConfigModules = [ "rapidcheck" # Extras @@ -49,6 +49,6 @@ stdenv.mkDerivation (finalAttrs: { "rapidcheck_doctest" "rapidcheck_gtest" ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ra/rapidxml/package.nix b/pkgs/by-name/ra/rapidxml/package.nix index 7d695b8b60c9..03b0f267261e 100644 --- a/pkgs/by-name/ra/rapidxml/package.nix +++ b/pkgs/by-name/ra/rapidxml/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { cp * $out/include/${pname} ''; - meta = with lib; { + meta = { description = "Fast XML DOM-style parser in C++"; homepage = "https://rapidxml.sourceforge.net/"; - license = licenses.boost; - platforms = platforms.unix; + license = lib.licenses.boost; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ra/rapidyaml/package.nix b/pkgs/by-name/ra/rapidyaml/package.nix index da05c8034151..77ee130962e0 100644 --- a/pkgs/by-name/ra/rapidyaml/package.nix +++ b/pkgs/by-name/ra/rapidyaml/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { git ]; - meta = with lib; { + meta = { description = "Library to parse and emit YAML, and do it fast"; homepage = "https://github.com/biojppm/rapidyaml"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ra/rar/package.nix b/pkgs/by-name/ra/rar/package.nix index c8ff6a36e996..769ebf44265f 100644 --- a/pkgs/by-name/ra/rar/package.nix +++ b/pkgs/by-name/ra/rar/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Utility for RAR archives"; homepage = "https://www.rarlab.com/"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "rar"; - maintainers = with maintainers; [ thiagokokada ]; + maintainers = with lib.maintainers; [ thiagokokada ]; platforms = lib.attrNames srcs; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ra/rar2fs/package.nix b/pkgs/by-name/ra/rar2fs/package.nix index 4ee0edc640a4..ad84f6f2699c 100644 --- a/pkgs/by-name/ra/rar2fs/package.nix +++ b/pkgs/by-name/ra/rar2fs/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { "--disable-static-unrar" ]; - meta = with lib; { + meta = { description = "FUSE file system for reading RAR archives"; homepage = "https://hasse69.github.io/rar2fs/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kraem wegank ]; - platforms = with platforms; linux ++ freebsd; + platforms = with lib.platforms; linux ++ freebsd; }; } diff --git a/pkgs/by-name/ra/rarcrack/package.nix b/pkgs/by-name/ra/rarcrack/package.nix index 31a10c9531c4..655abf31b7ea 100644 --- a/pkgs/by-name/ra/rarcrack/package.nix +++ b/pkgs/by-name/ra/rarcrack/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "This program can crack zip,7z and rar file passwords"; longDescription = '' If you forget your password for compressed archive (rar, 7z, zip), this program is the solution. @@ -46,8 +46,8 @@ stdenv.mkDerivation { Warning: Please don't use this program for any illegal things! ''; homepage = "https://github.com/jaredsburrows/Rarcrack"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ davidak ]; - platforms = with platforms; unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ davidak ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/ra/rars/package.nix b/pkgs/by-name/ra/rars/package.nix index e136a3123992..3a4cc114166b 100644 --- a/pkgs/by-name/ra/rars/package.nix +++ b/pkgs/by-name/ra/rars/package.nix @@ -28,13 +28,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "RISC-V Assembler and Runtime Simulator"; mainProgram = "rars"; homepage = "https://github.com/TheThirdOne/rars"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - maintainers = with maintainers; [ athas ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ athas ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ra/raspa/package.nix b/pkgs/by-name/ra/raspa/package.nix index 088bc1ef4840..e7ca7ef1605b 100644 --- a/pkgs/by-name/ra/raspa/package.nix +++ b/pkgs/by-name/ra/raspa/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { touch "$out" ''; - meta = with lib; { + meta = { description = "General purpose classical molecular simulation package"; homepage = "https://iraspa.org/raspa/"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ ShamrockLee ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ShamrockLee ]; mainProgram = "simulate"; }; } diff --git a/pkgs/by-name/ra/raspberrypi-eeprom/package.nix b/pkgs/by-name/ra/raspberrypi-eeprom/package.nix index d66a418bf9ca..7e4299c5fc90 100644 --- a/pkgs/by-name/ra/raspberrypi-eeprom/package.nix +++ b/pkgs/by-name/ra/raspberrypi-eeprom/package.nix @@ -70,17 +70,17 @@ stdenvNoCC.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "Installation scripts and binaries for the closed sourced Raspberry Pi 4 and 5 bootloader EEPROMs"; homepage = "https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-4-boot-eeprom"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 unfreeRedistributableFirmware ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ das_j Luflosi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ra/ratman/package.nix b/pkgs/by-name/ra/ratman/package.nix index ddb3289d9a32..741f1e709016 100644 --- a/pkgs/by-name/ra/ratman/package.nix +++ b/pkgs/by-name/ra/ratman/package.nix @@ -69,11 +69,11 @@ rustPlatform.buildRustPackage rec { cp -r ${dashboard} ratman/dashboard/dist ''; - meta = with lib; { + meta = { description = "Modular decentralised peer-to-peer packet router and associated tools"; homepage = "https://git.irde.st/we/irdest"; - platforms = platforms.unix; - license = licenses.agpl3Only; - maintainers = with maintainers; [ spacekookie ]; + platforms = lib.platforms.unix; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ spacekookie ]; }; } diff --git a/pkgs/by-name/ra/ratmen/package.nix b/pkgs/by-name/ra/ratmen/package.nix index 736b0971e4ed..f4c1ac637b51 100644 --- a/pkgs/by-name/ra/ratmen/package.nix +++ b/pkgs/by-name/ra/ratmen/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Minimalistic X11 menu creator"; - license = licenses.free; # 9menu derivative with 9menu license - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.free; # 9menu derivative with 9menu license + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "http://www.update.uu.se/~zrajm/programs/"; downloadPage = "http://www.update.uu.se/~zrajm/programs/ratmen/"; mainProgram = "ratmen"; diff --git a/pkgs/by-name/ra/ratools/package.nix b/pkgs/by-name/ra/ratools/package.nix index 9bfb9b38bba6..2a823ea75d8f 100644 --- a/pkgs/by-name/ra/ratools/package.nix +++ b/pkgs/by-name/ra/ratools/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { install -vD man/* -t $out/share/man/man8 ''; - meta = with lib; { + meta = { description = "Fast, dynamic, multi-threading framework for IPv6 Router Advertisements"; homepage = "https://github.com/danrl/ratools"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = [ maintainers.fpletz ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.fpletz ]; }; } diff --git a/pkgs/by-name/ra/ratox/package.nix b/pkgs/by-name/ra/ratox/package.nix index f6c8e3d1d2bb..499b5e788b06 100644 --- a/pkgs/by-name/ra/ratox/package.nix +++ b/pkgs/by-name/ra/ratox/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "FIFO based tox client"; mainProgram = "ratox"; homepage = "http://ratox.2f30.org/"; - license = licenses.isc; - platforms = platforms.linux; + license = lib.licenses.isc; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ra/ratslap/package.nix b/pkgs/by-name/ra/ratslap/package.nix index 748063896d36..4af04a4bc6fd 100644 --- a/pkgs/by-name/ra/ratslap/package.nix +++ b/pkgs/by-name/ra/ratslap/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Configure G300 and G300s Logitech mice"; longDescription = '' A tool to configure Logitech mice on Linux. Supports remapping @@ -64,8 +64,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://github.com/krayon/ratslap"; changelog = "https://github.com/krayon/ratslap/releases/tag/${finalAttrs.version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ zebreus ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ zebreus ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ra/ratt/package.nix b/pkgs/by-name/ra/ratt/package.nix index d572a044a789..8229f445d5dc 100644 --- a/pkgs/by-name/ra/ratt/package.nix +++ b/pkgs/by-name/ra/ratt/package.nix @@ -35,11 +35,11 @@ buildGoModule { installManPage doc/ratt.5 ''; - meta = with lib; { + meta = { description = "Tool for converting websites to rss/atom feeds"; homepage = "https://git.sr.ht/~ghost08/ratt"; - license = licenses.mit; - maintainers = with maintainers; [ kmein ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kmein ]; mainProgram = "ratt"; }; } diff --git a/pkgs/by-name/ra/ravedude/package.nix b/pkgs/by-name/ra/ravedude/package.nix index 3a19616ec8cd..b4e794660286 100644 --- a/pkgs/by-name/ra/ravedude/package.nix +++ b/pkgs/by-name/ra/ravedude/package.nix @@ -41,15 +41,15 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Tool to easily flash code onto an AVR microcontroller with avrdude"; homepage = "https://crates.io/crates/ravedude"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rvarago liff ]; diff --git a/pkgs/by-name/ra/raven-reader/package.nix b/pkgs/by-name/ra/raven-reader/package.nix index c011ddb80999..f8eea38f80f4 100644 --- a/pkgs/by-name/ra/raven-reader/package.nix +++ b/pkgs/by-name/ra/raven-reader/package.nix @@ -30,11 +30,11 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=raven-reader' ''; - meta = with lib; { + meta = { description = "Open source desktop news reader with flexible settings to optimize your experience"; mainProgram = "raven-reader"; homepage = "https://ravenreader.app/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ra/raxml/package.nix b/pkgs/by-name/ra/raxml/package.nix index 74090f0d1fad..f07f9836e0d1 100644 --- a/pkgs/by-name/ra/raxml/package.nix +++ b/pkgs/by-name/ra/raxml/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin && cp raxmlHPC-PTHREADS-SSE3 $out/bin ''; - meta = with lib; { + meta = { description = "Tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://sco.h-its.org/exelixis/web/software/raxml/"; - maintainers = [ maintainers.unode ]; + maintainers = [ lib.maintainers.unode ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/ra/raylib-games/package.nix b/pkgs/by-name/ra/raylib-games/package.nix index d9066fc7322e..8f4c6a144360 100644 --- a/pkgs/by-name/ra/raylib-games/package.nix +++ b/pkgs/by-name/ra/raylib-games/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Collection of games made with raylib"; homepage = "https://www.raylib.com/games.html"; - license = licenses.zlib; + license = lib.licenses.zlib; inherit (raylib.meta) platforms; }; } diff --git a/pkgs/by-name/rb/rbdoom-3-bfg/package.nix b/pkgs/by-name/rb/rbdoom-3-bfg/package.nix index aebd1a7925ae..a82b725c6cc9 100644 --- a/pkgs/by-name/rb/rbdoom-3-bfg/package.nix +++ b/pkgs/by-name/rb/rbdoom-3-bfg/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/RobertBeckebans/RBDOOM-3-BFG"; description = "Doom 3 BFG Edition with modern engine features"; mainProgram = "RBDoom3BFG"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ Zaechus ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ Zaechus ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/rb/rblake2sum/package.nix b/pkgs/by-name/rb/rblake2sum/package.nix index e61562ccde94..ca1d0ba0762e 100644 --- a/pkgs/by-name/rb/rblake2sum/package.nix +++ b/pkgs/by-name/rb/rblake2sum/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-wIJWwU4D0OeVa2RMgmpN512TIvNdcBdorXU8KfFRTIg="; - meta = with lib; { + meta = { description = "Recursive blake2 digest (hash) of a file-system path"; homepage = "https://github.com/crev-dev/rblake2sum"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ dpc ]; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ dpc ]; mainProgram = "rblake2sum"; }; } diff --git a/pkgs/by-name/rb/rblake3sum/package.nix b/pkgs/by-name/rb/rblake3sum/package.nix index ba1181f7b9c4..041e24adfa2b 100644 --- a/pkgs/by-name/rb/rblake3sum/package.nix +++ b/pkgs/by-name/rb/rblake3sum/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-cxPNqUVNMkNY9Ov7/ajTAwnBd2j/gKDHVLXPtd1aPVA="; - meta = with lib; { + meta = { description = "Recursive blake3 digest (hash) of a file-system path"; homepage = "https://github.com/rustshop/rblake3sum"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ dpc ]; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ dpc ]; mainProgram = "rblake3sum"; }; } diff --git a/pkgs/by-name/rc/rcm/package.nix b/pkgs/by-name/rc/rcm/package.nix index eccbec7bbf88..2d69d794e10e 100644 --- a/pkgs/by-name/rc/rcm/package.nix +++ b/pkgs/by-name/rc/rcm/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/thoughtbot/rcm"; description = "Management Suite for Dotfiles"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ malyn ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/rc/rcon/package.nix b/pkgs/by-name/rc/rcon/package.nix index 813c63b646e0..32f7fc0a63d9 100644 --- a/pkgs/by-name/rc/rcon/package.nix +++ b/pkgs/by-name/rc/rcon/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 3.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://github.com/n0la/rcon"; description = "Source RCON client for command line"; - maintainers = with maintainers; [ f4814n ]; - platforms = with platforms; linux ++ darwin; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ f4814n ]; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.bsd2; mainProgram = "rcon"; }; } diff --git a/pkgs/by-name/rc/rconc/package.nix b/pkgs/by-name/rc/rconc/package.nix index 0cc8ca11dd22..122e52e7a6f5 100644 --- a/pkgs/by-name/rc/rconc/package.nix +++ b/pkgs/by-name/rc/rconc/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-fkGSIPaq3SvbA9iP10sVb7gtBxo7XmHw+fz0Gt8AMXo="; - meta = with lib; { + meta = { description = "Simple cross-platform RCON client written in rust"; homepage = "https://github.com/klemens/rconc"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "rconc"; }; } diff --git a/pkgs/by-name/rd/rdap/package.nix b/pkgs/by-name/rd/rdap/package.nix index a5fefe708662..88c7b05b581f 100644 --- a/pkgs/by-name/rd/rdap/package.nix +++ b/pkgs/by-name/rd/rdap/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X \"github.com/openrdap/rdap.version=OpenRDAP ${version}\"" ]; - meta = with lib; { + meta = { homepage = "https://www.openrdap.org/"; description = "Command line client for the Registration Data Access Protocol (RDAP)"; - license = licenses.mit; - maintainers = with maintainers; [ sebastianblunt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sebastianblunt ]; mainProgram = "rdap"; }; } diff --git a/pkgs/by-name/rd/rdedup/package.nix b/pkgs/by-name/rd/rdedup/package.nix index 6321fa3c5d04..7a1f948da0f5 100644 --- a/pkgs/by-name/rd/rdedup/package.nix +++ b/pkgs/by-name/rd/rdedup/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { xz ]; - meta = with lib; { + meta = { description = "Data deduplication with compression and public key encryption"; mainProgram = "rdedup"; homepage = "https://github.com/dpc/rdedup"; - license = licenses.mpl20; - maintainers = with maintainers; [ dywedir ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ dywedir ]; }; } diff --git a/pkgs/by-name/rd/rdfind/package.nix b/pkgs/by-name/rd/rdfind/package.nix index 77b9c4c9e07e..ca20b372d92a 100644 --- a/pkgs/by-name/rd/rdfind/package.nix +++ b/pkgs/by-name/rd/rdfind/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { buildInputs = [ nettle ]; - meta = with lib; { + meta = { homepage = "https://rdfind.pauldreik.se/"; description = "Removes or hardlinks duplicate files very swiftly"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.wmertens ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.wmertens ]; + platforms = lib.platforms.all; mainProgram = "rdfind"; }; } diff --git a/pkgs/by-name/rd/rdiff-backup/package.nix b/pkgs/by-name/rd/rdiff-backup/package.nix index facc5b257e8e..9edc27cd690d 100644 --- a/pkgs/by-name/rd/rdiff-backup/package.nix +++ b/pkgs/by-name/rd/rdiff-backup/package.nix @@ -33,12 +33,12 @@ pypkgs.buildPythonApplication rec { pythonImportsCheck = [ "rdiff_backup" ]; - meta = with lib; { + meta = { description = "Backup system trying to combine best a mirror and an incremental backup system"; homepage = "https://rdiff-backup.net"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "rdiff-backup"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rd/rdkafka/package.nix b/pkgs/by-name/rd/rdkafka/package.nix index 536fa62d66a4..7a9b56a64b41 100644 --- a/pkgs/by-name/rd/rdkafka/package.nix +++ b/pkgs/by-name/rd/rdkafka/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Apache Kafka C/C++ client library"; homepage = "https://github.com/confluentinc/librdkafka"; - license = licenses.bsd2; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ commandodev ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ commandodev ]; }; }) diff --git a/pkgs/by-name/rd/rdocker/package.nix b/pkgs/by-name/rd/rdocker/package.nix index e8e58b3dbf18..1e31d37f0b09 100644 --- a/pkgs/by-name/rd/rdocker/package.nix +++ b/pkgs/by-name/rd/rdocker/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { --prefix PATH : ${lib.makeBinPath [ openssh ]} ''; - meta = with lib; { + meta = { description = "Securely control a remote docker daemon CLI using ssh forwarding, no SSL setup needed"; mainProgram = "rdocker"; homepage = "https://github.com/dvddarias/rdocker"; maintainers = [ lib.maintainers.pneumaticat ]; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/rd/rdrview/package.nix b/pkgs/by-name/rd/rdrview/package.nix index 7622fcfdb3af..158b095abdcc 100644 --- a/pkgs/by-name/rd/rdrview/package.nix +++ b/pkgs/by-name/rd/rdrview/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Command line tool to extract main content from a webpage"; homepage = "https://github.com/eafer/rdrview"; - license = licenses.asl20; - maintainers = with maintainers; [ djanatyn ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ djanatyn ]; mainProgram = "rdrview"; }; diff --git a/pkgs/by-name/rd/rdwatool/package.nix b/pkgs/by-name/rd/rdwatool/package.nix index b3de73c515fb..fdc720c38c98 100644 --- a/pkgs/by-name/rd/rdwatool/package.nix +++ b/pkgs/by-name/rd/rdwatool/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication { "rdwatool" ]; - meta = with lib; { + meta = { description = "Tool to extract information from a Microsoft Remote Desktop Web Access (RDWA) application"; homepage = "https://github.com/p0dalirius/RDWAtool"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "rdwatool"; }; } diff --git a/pkgs/by-name/re/re-flex/package.nix b/pkgs/by-name/re/re-flex/package.nix index d4518b48a1b9..1955bf3f5713 100644 --- a/pkgs/by-name/re/re-flex/package.nix +++ b/pkgs/by-name/re/re-flex/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cmake ]; - meta = with lib; { + meta = { homepage = "https://www.genivia.com/doc/reflex/html"; description = "Regex-centric, fast lexical analyzer generator for C++ with full Unicode support"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; maintainers = with lib.maintainers; [ prrlvr ]; mainProgram = "reflex"; }; diff --git a/pkgs/by-name/re/re2/package.nix b/pkgs/by-name/re/re2/package.nix index faa843290e1c..cdbc130d70f1 100644 --- a/pkgs/by-name/re/re2/package.nix +++ b/pkgs/by-name/re/re2/package.nix @@ -60,19 +60,19 @@ stdenv.mkDerivation (finalAttrs: { haskell-re2 = haskellPackages.re2; }; - meta = with lib; { + meta = { description = "Regular expression library"; longDescription = '' RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/google/re2"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ azahi networkexception ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/re/re2c/package.nix b/pkgs/by-name/re/re2c/package.nix index e9d5c449ddd9..ea0ae6fe3fdb 100644 --- a/pkgs/by-name/re/re2c/package.nix +++ b/pkgs/by-name/re/re2c/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Tool for writing very fast and very flexible scanners"; homepage = "https://re2c.org"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/re/react-native-debugger/package.nix b/pkgs/by-name/re/react-native-debugger/package.nix index c1f87200b292..56afb1b73ee2 100644 --- a/pkgs/by-name/re/react-native-debugger/package.nix +++ b/pkgs/by-name/re/react-native-debugger/package.nix @@ -112,10 +112,10 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { homepage = "https://github.com/jhen0409/react-native-debugger"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; description = "Standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools"; mainProgram = "react-native-debugger"; maintainers = [ ]; diff --git a/pkgs/by-name/re/reactphysics3d/package.nix b/pkgs/by-name/re/reactphysics3d/package.nix index b91c49b1f5ee..553d2bb46a36 100644 --- a/pkgs/by-name/re/reactphysics3d/package.nix +++ b/pkgs/by-name/re/reactphysics3d/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Open source C++ physics engine library"; homepage = "https://www.reactphysics3d.com"; changelog = "https://github.com/DanielChappuis/reactphysics3d/releases/tag/${finalAttrs.src.rev}"; - maintainers = with maintainers; [ rexxDigital ]; - license = licenses.zlib; - platforms = platforms.all; + maintainers = with lib.maintainers; [ rexxDigital ]; + license = lib.licenses.zlib; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/re/read-edid/package.nix b/pkgs/by-name/re/read-edid/package.nix index a1aa288b72d2..75bb6f4a3e28 100644 --- a/pkgs/by-name/re/read-edid/package.nix +++ b/pkgs/by-name/re/read-edid/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DCLASSICBUILD=${if stdenv.hostPlatform.isx86 then "ON" else "OFF"}" ]; - meta = with lib; { + meta = { description = "Tool for reading and parsing EDID data from monitors"; homepage = "http://www.polypux.org/projects/read-edid/"; - license = licenses.bsd2; # Quoted: "This is an unofficial license. Let's call it BSD-like." - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; # Quoted: "This is an unofficial license. Let's call it BSD-like." + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/re/readability-extractor/package.nix b/pkgs/by-name/re/readability-extractor/package.nix index f884c2491388..94152e28e0a8 100644 --- a/pkgs/by-name/re/readability-extractor/package.nix +++ b/pkgs/by-name/re/readability-extractor/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { npmDepsHash = "sha256-F5lOGkhFlFVB8zTxrebWsPWRNfHgZ4Y2DqKED/z5riw="; - meta = with lib; { + meta = { homepage = "https://github.com/ArchiveBox/readability-extractor"; description = "Javascript wrapper around Mozilla Readability for ArchiveBox to call as a oneshot CLI to extract article text"; - license = licenses.mit; - maintainers = with maintainers; [ viraptor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ viraptor ]; mainProgram = "readability-extractor"; }; } diff --git a/pkgs/by-name/re/readexe/package.nix b/pkgs/by-name/re/readexe/package.nix index f60449fddb55..8deb79594ad3 100644 --- a/pkgs/by-name/re/readexe/package.nix +++ b/pkgs/by-name/re/readexe/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Reads out structural information on Microsoft .exe formats"; homepage = "https://github.com/segin/readexe"; - license = with licenses; [ + license = with lib.licenses; [ isc bsd3 ]; diff --git a/pkgs/by-name/re/readosm/package.nix b/pkgs/by-name/re/readosm/package.nix index a97e21d8f4ef..300e0af2e314 100644 --- a/pkgs/by-name/re/readosm/package.nix +++ b/pkgs/by-name/re/readosm/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Open source library to extract valid data from within an Open Street Map input file"; homepage = "https://www.gaia-gis.it/fossil/readosm"; - license = with licenses; [ + license = with lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/re/real_time_config_quick_scan/package.nix b/pkgs/by-name/re/real_time_config_quick_scan/package.nix index 84a5d8f76949..bb101a34b38c 100644 --- a/pkgs/by-name/re/real_time_config_quick_scan/package.nix +++ b/pkgs/by-name/re/real_time_config_quick_scan/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { --set PERL5LIB "$out/share/$pname:${with perlPackages; makePerlPath [ Tk ]}" ''; - meta = with lib; { + meta = { description = "Linux configuration checker for systems to be used for real-time audio"; homepage = "https://github.com/raboof/realtimeconfigquickscan"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/re/realcugan-ncnn-vulkan/package.nix b/pkgs/by-name/re/realcugan-ncnn-vulkan/package.nix index 34a5583cfa5d..33fdd691dfbc 100644 --- a/pkgs/by-name/re/realcugan-ncnn-vulkan/package.nix +++ b/pkgs/by-name/re/realcugan-ncnn-vulkan/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Real-cugan converter ncnn version, runs fast on intel / amd / nvidia / apple-silicon GPU with vulkan"; homepage = "https://github.com/nihui/realcugan-ncnn-vulkan"; - license = licenses.mit; - maintainers = with maintainers; [ iynaix ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ iynaix ]; mainProgram = "realcugan-ncnn-vulkan"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/realesrgan-ncnn-vulkan/package.nix b/pkgs/by-name/re/realesrgan-ncnn-vulkan/package.nix index 919abf1b5480..b1e7af59767e 100644 --- a/pkgs/by-name/re/realesrgan-ncnn-vulkan/package.nix +++ b/pkgs/by-name/re/realesrgan-ncnn-vulkan/package.nix @@ -66,15 +66,15 @@ stdenv.mkDerivation rec { patchelf $out/bin/realesrgan-ncnn-vulkan --add-needed libvulkan.so ''; - meta = with lib; { + meta = { description = "NCNN implementation of Real-ESRGAN. Real-ESRGAN aims at developing Practical Algorithms for General Image Restoration"; homepage = "https://github.com/xinntao/Real-ESRGAN-ncnn-vulkan"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tilcreator iynaix ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "realesrgan-ncnn-vulkan"; }; } diff --git a/pkgs/by-name/re/realm/package.nix b/pkgs/by-name/re/realm/package.nix index b4acd0893253..897747e2598c 100644 --- a/pkgs/by-name/re/realm/package.nix +++ b/pkgs/by-name/re/realm/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { tests = { inherit (nixosTests) realm; }; }; - meta = with lib; { + meta = { description = "Simple, high performance relay server written in rust"; homepage = "https://github.com/zhboner/realm"; mainProgram = "realm"; - license = licenses.mit; - maintainers = with maintainers; [ ocfox ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ocfox ]; }; } diff --git a/pkgs/by-name/re/reap/package.nix b/pkgs/by-name/re/reap/package.nix index c20bef256445..3417e3babf53 100644 --- a/pkgs/by-name/re/reap/package.nix +++ b/pkgs/by-name/re/reap/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { install -dm755 "$out/share/licenses/reap/" ''; - meta = with lib; { + meta = { homepage = "https://github.com/leahneukirchen/reap"; description = "Run process until all its spawned processes are dead"; mainProgram = "reap"; - license = with licenses; [ publicDomain ]; - platforms = platforms.linux; - maintainers = [ maintainers.leahneukirchen ]; + license = with lib.licenses; [ publicDomain ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.leahneukirchen ]; }; } diff --git a/pkgs/by-name/re/reason-shell/package.nix b/pkgs/by-name/re/reason-shell/package.nix index 37b9b3a1b7ed..e8e000b45f50 100644 --- a/pkgs/by-name/re/reason-shell/package.nix +++ b/pkgs/by-name/re/reason-shell/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Shell for research papers"; mainProgram = "reason"; homepage = "https://github.com/jaywonchung/reason"; changelog = "https://github.com/jaywonchung/reason/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/re/reaverwps-t6x/package.nix b/pkgs/by-name/re/reaverwps-t6x/package.nix index 880d33b773d4..2102c0684703 100644 --- a/pkgs/by-name/re/reaverwps-t6x/package.nix +++ b/pkgs/by-name/re/reaverwps-t6x/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { sourceRoot = "${src.name}/src"; - meta = with lib; { + meta = { description = "Online and offline brute force attack against WPS"; homepage = "https://github.com/t6x/reaver-wps-fork-t6x"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nico202 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nico202 ]; }; } diff --git a/pkgs/by-name/re/reaverwps/package.nix b/pkgs/by-name/re/reaverwps/package.nix index ee4e491d7219..3e8913810bdc 100644 --- a/pkgs/by-name/re/reaverwps/package.nix +++ b/pkgs/by-name/re/reaverwps/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { patches = [ ./parallel-build.patch ]; - meta = with lib; { + meta = { description = "Brute force attack against Wifi Protected Setup"; homepage = "https://code.google.com/archive/p/reaver-wps/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nico202 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nico202 ]; }; } diff --git a/pkgs/by-name/re/recapp/package.nix b/pkgs/by-name/re/recapp/package.nix index 0852d24fba54..e0026932750e 100644 --- a/pkgs/by-name/re/recapp/package.nix +++ b/pkgs/by-name/re/recapp/package.nix @@ -78,11 +78,11 @@ python3.pkgs.buildPythonApplication rec { ) ''; - meta = with lib; { + meta = { description = "User friendly Open Source screencaster for Linux written in GTK"; homepage = "https://github.com/amikha1lov/RecApp"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "recapp"; }; } diff --git a/pkgs/by-name/re/reckon/package.nix b/pkgs/by-name/re/reckon/package.nix index a1dc52c8fe8a..1f1277e6603e 100644 --- a/pkgs/by-name/re/reckon/package.nix +++ b/pkgs/by-name/re/reckon/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { updateScript = bundlerUpdateScript "reckon"; }; - meta = with lib; { + meta = { description = "Flexibly import bank account CSV files into Ledger for command line accounting"; mainProgram = "reckon"; - license = licenses.mit; - maintainers = with maintainers; [ nicknovitski ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski ]; + platforms = lib.platforms.unix; changelog = "https://github.com/cantino/reckon/blob/v${version}/CHANGELOG.md"; }; } diff --git a/pkgs/by-name/re/recoverdm/package.nix b/pkgs/by-name/re/recoverdm/package.nix index 497be05b4c6b..d0f483cce617 100644 --- a/pkgs/by-name/re/recoverdm/package.nix +++ b/pkgs/by-name/re/recoverdm/package.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation (finalAttrs: { installManPage recoverdm.1 ''; - meta = with lib; { + meta = { description = "Recover damaged CD DVD and disks with bad sectors"; mainProgram = "recoverdm"; homepage = "https://salsa.debian.org/pkg-security-team/recoverdm"; changelog = "https://salsa.debian.org/pkg-security-team/recoverdm/-/blob/debian/master/debian/changelog"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl1Only; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl1Only; }; }) diff --git a/pkgs/by-name/re/recoverjpeg/package.nix b/pkgs/by-name/re/recoverjpeg/package.nix index a4b28e3bc834..c9a005f52c65 100644 --- a/pkgs/by-name/re/recoverjpeg/package.nix +++ b/pkgs/by-name/re/recoverjpeg/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://rfc1149.net/devel/recoverjpeg.html"; description = "Recover lost JPEGs and MOV files on a bogus memory card or disk"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dotlambda ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/re/recursive/package.nix b/pkgs/by-name/re/recursive/package.nix index 4327759425c8..bf96afe9d4ed 100644 --- a/pkgs/by-name/re/recursive/package.nix +++ b/pkgs/by-name/re/recursive/package.nix @@ -18,11 +18,11 @@ stdenvNoCC.mkDerivation rec { install -D -t $out/share/fonts/truetype/ $(find $src -type f -name '*.ttf') ''; - meta = with lib; { + meta = { homepage = "https://recursive.design/"; description = "Variable font family for code & UI"; - license = licenses.ofl; - maintainers = [ maintainers.eadwu ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.eadwu ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/recutils/package.nix b/pkgs/by-name/re/recutils/package.nix index 10ade56994b6..25b0971775a8 100644 --- a/pkgs/by-name/re/recutils/package.nix +++ b/pkgs/by-name/re/recutils/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/recutils/"; description = "Tools and libraries to access human-editable, text-based databases"; longDescription = '' @@ -80,8 +80,8 @@ stdenv.mkDerivation rec { text-based databases called recfiles. The data is stored as a sequence of records, each record containing an arbitrary number of named fields. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/red/package.nix b/pkgs/by-name/re/red/package.nix index 38b84f4f1699..43b7340b0ce8 100644 --- a/pkgs/by-name/re/red/package.nix +++ b/pkgs/by-name/re/red/package.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { ''; - meta = with lib; { + meta = { description = '' New programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system @@ -95,12 +95,12 @@ stdenv.mkDerivation rec { concurrency and multi-core CPUs ''; mainProgram = "red"; - maintainers = with maintainers; [ uralbash ]; + maintainers = with lib.maintainers; [ uralbash ]; platforms = [ "i686-linux" "x86_64-linux" ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://www.red-lang.org/"; }; } diff --git a/pkgs/by-name/re/reddsaver/package.nix b/pkgs/by-name/re/reddsaver/package.nix index 90b310bfe322..7eb67bccda5c 100644 --- a/pkgs/by-name/re/reddsaver/package.nix +++ b/pkgs/by-name/re/reddsaver/package.nix @@ -25,14 +25,14 @@ rustPlatform.buildRustPackage rec { # package does not contain tests as of v0.3.3 docCheck = false; - meta = with lib; { + meta = { description = "CLI tool to download saved media from Reddit"; homepage = "https://github.com/manojkarthick/reddsaver"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = [ maintainers.manojkarthick ]; + maintainers = [ lib.maintainers.manojkarthick ]; mainProgram = "reddsaver"; }; diff --git a/pkgs/by-name/re/redeclipse/package.nix b/pkgs/by-name/re/redeclipse/package.nix index 797c5a659ee7..1d541dbce89f 100644 --- a/pkgs/by-name/re/redeclipse/package.nix +++ b/pkgs/by-name/re/redeclipse/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { cp -R -t $out/share/redeclipse/data/ data/* ''; - meta = with lib; { + meta = { description = "First person arena shooter, featuring parkour, impulse boosts, and more"; longDescription = '' Red Eclipse is a fun-filled new take on the first person arena shooter, @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { environments. ''; homepage = "https://www.redeclipse.net"; - license = with licenses; [ - licenses.zlib + license = with lib.licenses; [ + lib.licenses.zlib cc-by-sa-30 ]; - maintainers = with maintainers; [ lambda-11235 ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lambda-11235 ]; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/re/redhat-official-fonts/package.nix b/pkgs/by-name/re/redhat-official-fonts/package.nix index 5460860d712c..b545a6b3e014 100644 --- a/pkgs/by-name/re/redhat-official-fonts/package.nix +++ b/pkgs/by-name/re/redhat-official-fonts/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/RedHatOfficial/RedHatFont"; description = "Red Hat's Open Source Fonts - Red Hat Display and Red Hat Text"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/re/redis-dump/package.nix b/pkgs/by-name/re/redis-dump/package.nix index d40f2247acd9..0e29ae1c00a9 100644 --- a/pkgs/by-name/re/redis-dump/package.nix +++ b/pkgs/by-name/re/redis-dump/package.nix @@ -14,15 +14,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "redis-dump"; - meta = with lib; { + meta = { description = "Backup and restore your Redis data to and from JSON"; homepage = "https://delanotes.com/redis-dump/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ offline manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/re/redis-plus-plus/package.nix b/pkgs/by-name/re/redis-plus-plus/package.nix index 984524d34a43..ff8e5cae6bdf 100644 --- a/pkgs/by-name/re/redis-plus-plus/package.nix +++ b/pkgs/by-name/re/redis-plus-plus/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { "-DREDIS_PLUS_PLUS_BUILD_STATIC=OFF" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sewenew/redis-plus-plus"; description = "Redis client written in C++"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ wheelsandmetal ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ wheelsandmetal ]; }; } diff --git a/pkgs/by-name/re/redmine/package.nix b/pkgs/by-name/re/redmine/package.nix index c8a2e797a606..a00290ae42b8 100644 --- a/pkgs/by-name/re/redmine/package.nix +++ b/pkgs/by-name/re/redmine/package.nix @@ -64,15 +64,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.tests.redmine = nixosTests.redmine; - meta = with lib; { + meta = { homepage = "https://www.redmine.org/"; changelog = "https://www.redmine.org/projects/redmine/wiki/changelog"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aanderse felixsinger megheaiulian ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; }) diff --git a/pkgs/by-name/re/redo-apenwarr/package.nix b/pkgs/by-name/re/redo-apenwarr/package.nix index ac8ff3f8c097..d146fb7c30cf 100644 --- a/pkgs/by-name/re/redo-apenwarr/package.nix +++ b/pkgs/by-name/re/redo-apenwarr/package.nix @@ -79,13 +79,13 @@ stdenv.mkDerivation rec { installShellCompletion --bash contrib/bash_completion.d/redo ''; - meta = with lib; { + meta = { description = "Smaller, easier, more powerful, and more reliable than make. An implementation of djb's redo"; homepage = "https://github.com/apenwarr/redo"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ck3d ]; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = python3.meta.platforms; }; } diff --git a/pkgs/by-name/re/redo-c/package.nix b/pkgs/by-name/re/redo-c/package.nix index 4ec7c4de6195..6b4c9329154e 100644 --- a/pkgs/by-name/re/redo-c/package.nix +++ b/pkgs/by-name/re/redo-c/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { cp '${./Makefile}' Makefile ''; - meta = with lib; { + meta = { description = "Implementation of the redo build system in portable C with zero dependencies"; homepage = "https://github.com/leahneukirchen/redo-c"; - license = licenses.cc0; - platforms = platforms.all; - maintainers = with maintainers; [ ck3d ]; + license = lib.licenses.cc0; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ck3d ]; }; } diff --git a/pkgs/by-name/re/redoflacs/package.nix b/pkgs/by-name/re/redoflacs/package.nix index 6dc5e5e15536..7e7b26342ccf 100644 --- a/pkgs/by-name/re/redoflacs/package.nix +++ b/pkgs/by-name/re/redoflacs/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Parallel BASH commandline FLAC compressor, verifier, organizer, analyzer, and retagger"; mainProgram = "redoflacs"; homepage = src.meta.homepage; - license = licenses.gpl2; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/redpanda-client/package.nix b/pkgs/by-name/re/redpanda-client/package.nix index 00c89d44a33a..1fca7e83bbb7 100644 --- a/pkgs/by-name/re/redpanda-client/package.nix +++ b/pkgs/by-name/re/redpanda-client/package.nix @@ -37,15 +37,15 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "Redpanda client"; homepage = "https://redpanda.com/"; - license = licenses.bsl11; - maintainers = with maintainers; [ + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ avakhrenev happysalada ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "rpk"; }; } diff --git a/pkgs/by-name/re/redprl/package.nix b/pkgs/by-name/re/redprl/package.nix index fbe1b8051078..e7323cc39053 100644 --- a/pkgs/by-name/re/redprl/package.nix +++ b/pkgs/by-name/re/redprl/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { mv ./bin/redprl $out/bin ''; - meta = with lib; { + meta = { description = "Proof assistant for Nominal Computational Type Theory"; mainProgram = "redprl"; homepage = "http://www.redprl.org/"; - license = licenses.mit; - maintainers = with maintainers; [ acowley ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ acowley ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/re/redshift_jdbc/package.nix b/pkgs/by-name/re/redshift_jdbc/package.nix index 98a73424f9ca..d42c5a914089 100644 --- a/pkgs/by-name/re/redshift_jdbc/package.nix +++ b/pkgs/by-name/re/redshift_jdbc/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/aws/amazon-redshift-jdbc-driver/"; description = "JDBC 4.2 driver for Amazon Redshift allowing Java programs to connect to a Redshift database"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ sir4ur0n ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sir4ur0n ]; }; } diff --git a/pkgs/by-name/re/redux/package.nix b/pkgs/by-name/re/redux/package.nix index 898ab2d94097..b5d2a9c19265 100644 --- a/pkgs/by-name/re/redux/package.nix +++ b/pkgs/by-name/re/redux/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { update-source-version redux "$new_version" --system="x86_64-linux" ''; - meta = with lib; { + meta = { description = "Sample-based instrument, with a powerful phrase sequencer"; homepage = "https://www.renoise.com/products/redux"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ mihnea-s ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mihnea-s ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/re/redwax-tool/package.nix b/pkgs/by-name/re/redwax-tool/package.nix index 7c8ceea3c008..5b2bd16ca61d 100644 --- a/pkgs/by-name/re/redwax-tool/package.nix +++ b/pkgs/by-name/re/redwax-tool/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { "--with-bash-completion-dir=yes" ]; - meta = with lib; { + meta = { homepage = "https://redwax.eu/rt/"; description = "Universal certificate conversion tool"; mainProgram = "redwax-tool"; @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { certificates and keys you're interested in, write those certificates and keys to the destinations of your choice. ''; - license = licenses.asl20; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ astro ]; }; } diff --git a/pkgs/by-name/re/refind/package.nix b/pkgs/by-name/re/refind/package.nix index 3340cdac8b09..ba6e214f863c 100644 --- a/pkgs/by-name/re/refind/package.nix +++ b/pkgs/by-name/re/refind/package.nix @@ -166,7 +166,7 @@ stdenv.mkDerivation rec { inherit (nixosTests) refind; }; - meta = with lib; { + meta = { description = "Graphical {,U}EFI boot manager"; longDescription = '' rEFInd is a graphical boot manager for EFI- and UEFI-based @@ -184,7 +184,7 @@ stdenv.mkDerivation rec { Linux kernels that provide EFI stub support. ''; homepage = "http://refind.sourceforge.net/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ johnrtitor RossComputerGuy ]; @@ -193,7 +193,7 @@ stdenv.mkDerivation rec { "x86_64-linux" "aarch64-linux" ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/re/reflex/package.nix b/pkgs/by-name/re/reflex/package.nix index 36c9487c6516..79980f7d0871 100644 --- a/pkgs/by-name/re/reflex/package.nix +++ b/pkgs/by-name/re/reflex/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Small tool to watch a directory and rerun a command when certain files change"; mainProgram = "reflex"; homepage = "https://github.com/cespare/reflex"; - license = licenses.mit; - maintainers = with maintainers; [ nicknovitski ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski ]; }; } diff --git a/pkgs/by-name/re/refmt/package.nix b/pkgs/by-name/re/refmt/package.nix index 74ae4397f4f5..d5a4ed521742 100644 --- a/pkgs/by-name/re/refmt/package.nix +++ b/pkgs/by-name/re/refmt/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-MiYUDEF9W0VAiOX6uE8doXtGAekIrA1cfA8A2a7xd2I="; - meta = with lib; { + meta = { description = "Reformat HCL <-> JSON <-> YAML"; mainProgram = "refmt"; homepage = "https://github.com/rjeczalik/refmt"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = with lib.maintainers; [ deemp ]; }; } diff --git a/pkgs/by-name/re/reftools/package.nix b/pkgs/by-name/re/reftools/package.nix index b0a814c31326..d10d691379ce 100644 --- a/pkgs/by-name/re/reftools/package.nix +++ b/pkgs/by-name/re/reftools/package.nix @@ -21,10 +21,10 @@ buildGoModule { excludedPackages = "cmd/fillswitch/test-fixtures"; - meta = with lib; { + meta = { description = "Refactoring tools for Go"; homepage = "https://github.com/davidrjenni/reftools"; - license = licenses.bsd2; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/re/refurb/package.nix b/pkgs/by-name/re/refurb/package.nix index 6e0d4da5a6f0..7304037ae84a 100644 --- a/pkgs/by-name/re/refurb/package.nix +++ b/pkgs/by-name/re/refurb/package.nix @@ -52,11 +52,11 @@ python3Packages.buildPythonApplication rec { "refurb" ]; - meta = with lib; { + meta = { description = "Tool for refurbishing and modernizing Python codebases"; mainProgram = "refurb"; homepage = "https://github.com/dosisod/refurb"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ knl ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ knl ]; }; } diff --git a/pkgs/by-name/re/reg/package.nix b/pkgs/by-name/re/reg/package.nix index 9669e621aab0..d52d4663b0d3 100644 --- a/pkgs/by-name/re/reg/package.nix +++ b/pkgs/by-name/re/reg/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { vendorHash = null; doCheck = false; - meta = with lib; { + meta = { description = "Docker registry v2 command line client and repo listing generator with security checks"; homepage = "https://github.com/genuinetools/reg"; - license = licenses.mit; - maintainers = with maintainers; [ ereslibre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ereslibre ]; mainProgram = "reg"; }; } diff --git a/pkgs/by-name/re/regal/package.nix b/pkgs/by-name/re/regal/package.nix index 0ff3de418003..656340a378d1 100644 --- a/pkgs/by-name/re/regal/package.nix +++ b/pkgs/by-name/re/regal/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-X github.com/styrainc/regal/pkg/version.Commit=${version}" ]; - meta = with lib; { + meta = { description = "Linter and language server for Rego"; mainProgram = "regal"; homepage = "https://github.com/StyraInc/regal"; changelog = "https://github.com/StyraInc/regal/releases/tag/${src.rev}"; - license = licenses.asl20; - maintainers = with maintainers; [ rinx ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rinx ]; }; } diff --git a/pkgs/by-name/re/regclient/package.nix b/pkgs/by-name/re/regclient/package.nix index 012d0361db4b..a7cb8b739369 100644 --- a/pkgs/by-name/re/regclient/package.nix +++ b/pkgs/by-name/re/regclient/package.nix @@ -76,10 +76,10 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Docker and OCI Registry Client in Go and tooling using those libraries"; homepage = "https://github.com/regclient/regclient"; - license = licenses.asl20; - maintainers = with maintainers; [ maxbrunet ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ maxbrunet ]; }; } diff --git a/pkgs/by-name/re/regenkfs/package.nix b/pkgs/by-name/re/regenkfs/package.nix index e73d87513d6a..5bf42092dabb 100644 --- a/pkgs/by-name/re/regenkfs/package.nix +++ b/pkgs/by-name/re/regenkfs/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage { buildFeatures = [ "c-undef" ]; - meta = with lib; { + meta = { description = "Reimplementation of genkfs in Rust"; homepage = "https://github.com/siraben/regenkfs"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "regenkfs"; }; } diff --git a/pkgs/by-name/re/regex-cli/package.nix b/pkgs/by-name/re/regex-cli/package.nix index 69f421f491a7..52cd85274791 100644 --- a/pkgs/by-name/re/regex-cli/package.nix +++ b/pkgs/by-name/re/regex-cli/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Command line tool for debugging, ad hoc benchmarking and generating regular expressions"; mainProgram = "regex-cli"; homepage = "https://github.com/rust-lang/regex/tree/master/regex-cli"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/re/regexploit/package.nix b/pkgs/by-name/re/regexploit/package.nix index 8e9ecc549f05..b51ccfa456cd 100644 --- a/pkgs/by-name/re/regexploit/package.nix +++ b/pkgs/by-name/re/regexploit/package.nix @@ -32,10 +32,10 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "regexploit" ]; - meta = with lib; { + meta = { description = "Tool to find regular expressions which are vulnerable to ReDoS"; homepage = "https://github.com/doyensec/regexploit"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/re/regextester/package.nix b/pkgs/by-name/re/regextester/package.nix index 8ca42ead79a6..7a037994ac5f 100644 --- a/pkgs/by-name/re/regextester/package.nix +++ b/pkgs/by-name/re/regextester/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { ${glib.dev}/bin/glib-compile-schemas $out/share/glib-2.0/schemas ''; - meta = with lib; { + meta = { description = "Desktop application to test regular expressions interactively"; mainProgram = "com.github.artemanufrij.regextester"; homepage = "https://github.com/artemanufrij/regextester"; - maintainers = with maintainers; [ samdroid-apps ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ samdroid-apps ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/re/regina/package.nix b/pkgs/by-name/re/regina/package.nix index d6efe32269ca..43b9516a800d 100644 --- a/pkgs/by-name/re/regina/package.nix +++ b/pkgs/by-name/re/regina/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { "--libdir=$(out)/lib" ]; - meta = with lib; { + meta = { description = "REXX interpreter"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.unix; - license = licenses.lgpl2; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/re/regionset/package.nix b/pkgs/by-name/re/regionset/package.nix index cd21a3f23873..1c366fde1e2e 100644 --- a/pkgs/by-name/re/regionset/package.nix +++ b/pkgs/by-name/re/regionset/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { install -Dm644 {.,$out/share/doc/regionset}/README ''; - meta = with lib; { + meta = { inherit version; homepage = "http://linvdr.org/projects/regionset/"; description = "Tool for changing the region code setting of DVD players"; mainProgram = "regionset"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/re/regols/package.nix b/pkgs/by-name/re/regols/package.nix index 847162030ed3..e1adaabf9f34 100644 --- a/pkgs/by-name/re/regols/package.nix +++ b/pkgs/by-name/re/regols/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-yJYWVQq6pbLPdmK4BVse6moMkurlmt6TBd6/vYM1xcU="; - meta = with lib; { + meta = { description = "OPA Rego language server"; mainProgram = "regols"; homepage = "https://github.com/kitagry/regols"; changelog = "https://github.com/kitagry/regols/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ alias-dev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alias-dev ]; }; } diff --git a/pkgs/by-name/re/regpg/package.nix b/pkgs/by-name/re/regpg/package.nix index 690ae917b2f2..76fa7ed313c7 100644 --- a/pkgs/by-name/re/regpg/package.nix +++ b/pkgs/by-name/re/regpg/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "${lib.makeBinPath [ gnupg ]}" ''; - meta = with lib; { + meta = { description = "GPG wrapper utility for storing secrets in VCS"; mainProgram = "regpg"; homepage = "https://dotat.at/prog/regpg"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ _0xC45 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ _0xC45 ]; }; } diff --git a/pkgs/by-name/re/regripper/package.nix b/pkgs/by-name/re/regripper/package.nix index 982a34d6ee52..dee3efcc219b 100644 --- a/pkgs/by-name/re/regripper/package.nix +++ b/pkgs/by-name/re/regripper/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source forensic software used as a Windows Registry data extraction command line"; mainProgram = "regripper"; homepage = "https://github.com/keydet89/RegRipper3.0"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/re/reindeer/package.nix b/pkgs/by-name/re/reindeer/package.nix index 12cc20805eee..8e1fce30cb82 100644 --- a/pkgs/by-name/re/reindeer/package.nix +++ b/pkgs/by-name/re/reindeer/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Generate Buck build rules from Rust Cargo dependencies"; mainProgram = "reindeer"; homepage = "https://github.com/facebookincubator/reindeer"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ nickgerace ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ nickgerace ]; }; } diff --git a/pkgs/by-name/re/reiser4progs/package.nix b/pkgs/by-name/re/reiser4progs/package.nix index da46037d21be..3337dfab47cd 100644 --- a/pkgs/by-name/re/reiser4progs/package.nix +++ b/pkgs/by-name/re/reiser4progs/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { cp ./libmisc/.libs/libmisc.a $out/lib/libreiser4misc.a.la ''; - meta = with lib; { + meta = { inherit version; homepage = "https://sourceforge.net/projects/reiser4/"; description = "Reiser4 utilities"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; # error: initialization of # 'int (*)(uint64_t *, uint64_t, uint32_t, int, int)' {aka 'int (*)(long unsigned int *, long unsigned int, unsigned int, int, int)'} diff --git a/pkgs/by-name/re/relic/package.nix b/pkgs/by-name/re/relic/package.nix index 31dc67b2e2ea..f7a78cf3722a 100644 --- a/pkgs/by-name/re/relic/package.nix +++ b/pkgs/by-name/re/relic/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { # https://github.com/NixOS/nixpkgs/pull/374824 __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { homepage = "https://github.com/sassoftware/relic"; description = "Service and a tool for adding digital signatures to operating system packages for Linux and Windows"; mainProgram = "relic"; - license = licenses.asl20; - maintainers = with maintainers; [ strager ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ strager ]; }; } diff --git a/pkgs/by-name/re/remarkable-toolchain/package.nix b/pkgs/by-name/re/remarkable-toolchain/package.nix index 98c995585e59..ba029d3196bc 100644 --- a/pkgs/by-name/re/remarkable-toolchain/package.nix +++ b/pkgs/by-name/re/remarkable-toolchain/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { ENVCLEANED=1 $src -y -d $out ''; - meta = with lib; { + meta = { description = "Toolchain for cross-compiling to reMarkable tablets"; homepage = "https://remarkable.engineering/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ nickhu siraben ]; diff --git a/pkgs/by-name/re/remarkable2-toolchain/package.nix b/pkgs/by-name/re/remarkable2-toolchain/package.nix index 9c8ea70e815b..1b5d7125e9aa 100644 --- a/pkgs/by-name/re/remarkable2-toolchain/package.nix +++ b/pkgs/by-name/re/remarkable2-toolchain/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { ENVCLEANED=1 $src -y -d $out ''; - meta = with lib; { + meta = { description = "Toolchain for cross-compiling to reMarkable 2 tablets"; homepage = "https://remarkable.engineering/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ tadfisher ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ tadfisher ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/re/remctl/package.nix b/pkgs/by-name/re/remctl/package.nix index 4387ed5bdfb2..de7ba2db61a4 100644 --- a/pkgs/by-name/re/remctl/package.nix +++ b/pkgs/by-name/re/remctl/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation (finalAttrs: { checkTarget = "check-local"; - meta = with lib; { + meta = { description = "Remote execution tool"; homepage = "https://www.eyrie.org/~eagle/software/remctl"; mainProgram = "remctl"; - license = licenses.mit; - teams = [ teams.deshaw ]; + license = lib.licenses.mit; + teams = [ lib.teams.deshaw ]; }; }) diff --git a/pkgs/by-name/re/remind/package.nix b/pkgs/by-name/re/remind/package.nix index 8aa302b99f8a..a7869b76f8da 100644 --- a/pkgs/by-name/re/remind/package.nix +++ b/pkgs/by-name/re/remind/package.nix @@ -54,16 +54,16 @@ tcl.mkTclDerivation rec { ignoredVersions = "-BETA"; }; - meta = with lib; { + meta = { homepage = "https://dianne.skoll.ca/projects/remind/"; description = "Sophisticated calendar and alarm program for the console"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ afh raskin kovirobi ]; mainProgram = "remind"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/re/remkrom/package.nix b/pkgs/by-name/re/remkrom/package.nix index f7e8f0952ef2..99a8de876a39 100644 --- a/pkgs/by-name/re/remkrom/package.nix +++ b/pkgs/by-name/re/remkrom/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-H+SZ+aUQReFJiN2MQHxaI0/bM1sXaSFVlIhedCKBQ0M="; - meta = with lib; { + meta = { description = "Reimplementation of mkrom in Rust"; homepage = "https://github.com/siraben/remkrom"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "remkrom"; }; } diff --git a/pkgs/by-name/re/remmina/package.nix b/pkgs/by-name/re/remmina/package.nix index 936987f3024a..7f40f0f8d9b3 100644 --- a/pkgs/by-name/re/remmina/package.nix +++ b/pkgs/by-name/re/remmina/package.nix @@ -141,19 +141,19 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = with lib; { - license = licenses.gpl2Plus; + meta = { + license = lib.licenses.gpl2Plus; homepage = "https://gitlab.com/Remmina/Remmina"; changelog = "https://gitlab.com/Remmina/Remmina/-/blob/master/CHANGELOG.md#${ lib.replaceStrings [ "." ] [ "" ] finalAttrs.src.rev }"; description = "Remote desktop client written in GTK"; mainProgram = "remmina"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bbigras melsigl ryantm ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/re/remnote/package.nix b/pkgs/by-name/re/remnote/package.nix index a574bab6d61e..b46b79bb0b2e 100644 --- a/pkgs/by-name/re/remnote/package.nix +++ b/pkgs/by-name/re/remnote/package.nix @@ -36,11 +36,11 @@ appimageTools.wrapType2 { fi ''; - meta = with lib; { + meta = { description = "Note-taking application focused on learning and productivity"; homepage = "https://remnote.com/"; - maintainers = with maintainers; [ chewblacka ]; - license = licenses.unfree; + maintainers = with lib.maintainers; [ chewblacka ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; mainProgram = "remnote"; }; diff --git a/pkgs/by-name/re/remontoire/package.nix b/pkgs/by-name/re/remontoire/package.nix index d04d0e23ec11..42102376e874 100644 --- a/pkgs/by-name/re/remontoire/package.nix +++ b/pkgs/by-name/re/remontoire/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs build-aux/meson/postinstall.py ''; - meta = with lib; { + meta = { description = "Small GTK app for presenting keybinding hints"; mainProgram = "remontoire"; homepage = "https://github.com/regolith-linux/remontoire"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ aacebedo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aacebedo ]; }; }) diff --git a/pkgs/by-name/re/remote-touchpad/package.nix b/pkgs/by-name/re/remote-touchpad/package.nix index fc2c683ecf79..4c75c1017f1f 100644 --- a/pkgs/by-name/re/remote-touchpad/package.nix +++ b/pkgs/by-name/re/remote-touchpad/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { vendorHash = "sha256-d2kKF13ESntZ0pRTYs5eFpkCTuOhei/bTyTmdYWvvRY="; - meta = with lib; { + meta = { description = "Control mouse and keyboard from the web browser of a smartphone"; mainProgram = "remote-touchpad"; homepage = "https://github.com/unrud/remote-touchpad"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ schnusch ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ schnusch ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/re/ren-find/package.nix b/pkgs/by-name/re/ren-find/package.nix index f29671272097..ce70c4e207f7 100644 --- a/pkgs/by-name/re/ren-find/package.nix +++ b/pkgs/by-name/re/ren-find/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-lSeO/GaJPZ8zosOIJRXVIEuPXaBg1GBvKBIuXtu1xZg="; - meta = with lib; { + meta = { description = "Command-line utility that takes find-formatted lines and batch renames them"; homepage = "https://github.com/robenkleene/ren-find"; - license = licenses.mit; - maintainers = with maintainers; [ philiptaron ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ philiptaron ]; mainProgram = "ren"; }; } diff --git a/pkgs/by-name/re/rename/package.nix b/pkgs/by-name/re/rename/package.nix index 38aa50b2028d..be43b399c644 100644 --- a/pkgs/by-name/re/rename/package.nix +++ b/pkgs/by-name/re/rename/package.nix @@ -14,15 +14,15 @@ perlPackages.buildPerlPackage rec { rev = "v${version}"; sha256 = "KQsBO94fsa4CbTHNyJxOD96AwUfKNLa9p44odlNgQao="; }; - meta = with lib; { + meta = { description = "Rename files according to a Perl rewrite expression"; homepage = "https://github.com/pstray/rename"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mkg cyplo cfouche ]; - license = with licenses; [ gpl1Plus ]; + license = with lib.licenses; [ gpl1Plus ]; mainProgram = "rename"; }; } diff --git a/pkgs/by-name/re/renderizer/package.nix b/pkgs/by-name/re/renderizer/package.nix index 043ca33ef1b3..0c84dceb2286 100644 --- a/pkgs/by-name/re/renderizer/package.nix +++ b/pkgs/by-name/re/renderizer/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "CLI to render Go template text files"; mainProgram = "renderizer"; inherit (src.meta) homepage; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/re/renode-dts2repl/package.nix b/pkgs/by-name/re/renode-dts2repl/package.nix index 9de66537169f..7845502b53ec 100644 --- a/pkgs/by-name/re/renode-dts2repl/package.nix +++ b/pkgs/by-name/re/renode-dts2repl/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Tool for converting device tree sources into Renode's .repl files"; homepage = "https://github.com/antmicro/dts2repl"; - license = licenses.asl20; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ otavio ]; mainProgram = "dts2repl"; }; } diff --git a/pkgs/by-name/re/rep-grep/package.nix b/pkgs/by-name/re/rep-grep/package.nix index b371506d75ee..ce66bb6b3bd2 100644 --- a/pkgs/by-name/re/rep-grep/package.nix +++ b/pkgs/by-name/re/rep-grep/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-t4tfQaFq4EV4ZWeU+IestSFiSAIeVQslTZhLbpKVoO4="; - meta = with lib; { + meta = { description = "Command-line utility that takes grep-formatted lines and performs a find-and-replace on them"; homepage = "https://github.com/robenkleene/rep-grep"; - license = licenses.mit; - maintainers = with maintainers; [ philiptaron ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ philiptaron ]; mainProgram = "rep"; }; } diff --git a/pkgs/by-name/re/rep/package.nix b/pkgs/by-name/re/rep/package.nix index 3af0896b304f..96d50d92800f 100644 --- a/pkgs/by-name/re/rep/package.nix +++ b/pkgs/by-name/re/rep/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { ''; makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Single-shot nREPL client"; mainProgram = "rep"; homepage = "https://github.com/eraserhd/rep"; - license = licenses.epl10; - platforms = platforms.all; - maintainers = [ maintainers.eraserhd ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.eraserhd ]; }; } diff --git a/pkgs/by-name/re/repgrep/package.nix b/pkgs/by-name/re/repgrep/package.nix index 9c21d0c4a40f..346de29472ef 100644 --- a/pkgs/by-name/re/repgrep/package.nix +++ b/pkgs/by-name/re/repgrep/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { --fish <(${lib.getExe ripgrep} --generate complete-fish | sed 's/-c rg/-c rgr/') ''; - meta = with lib; { + meta = { description = "Interactive replacer for ripgrep that makes it easy to find and replace across files on the command line"; homepage = "https://github.com/acheronfail/repgrep"; changelog = "https://github.com/acheronfail/repgrep/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 unlicense diff --git a/pkgs/by-name/re/replacement/package.nix b/pkgs/by-name/re/replacement/package.nix index 60443b2d2400..bd0100e81b94 100644 --- a/pkgs/by-name/re/replacement/package.nix +++ b/pkgs/by-name/re/replacement/package.nix @@ -31,7 +31,7 @@ python3Packages.buildPythonApplication rec { sh ]; - meta = with lib; { + meta = { homepage = "https://github.com/siriobalmelli/replacement"; description = "Tool to execute yaml templates and output text"; mainProgram = "replacement"; @@ -47,7 +47,7 @@ python3Packages.buildPythonApplication rec { This tool is useful in generating configuration files, static websites and the like. ''; - license = licenses.asl20; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/by-name/re/replibyte/package.nix b/pkgs/by-name/re/replibyte/package.nix index bfda85cc1a59..1b387d071b27 100644 --- a/pkgs/by-name/re/replibyte/package.nix +++ b/pkgs/by-name/re/replibyte/package.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { doCheck = false; # requires multiple dbs to be installed - meta = with lib; { + meta = { description = "Seed your development database with real data"; mainProgram = "replibyte"; homepage = "https://github.com/Qovery/replibyte"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/re/replxx/package.nix b/pkgs/by-name/re/replxx/package.nix index b94936bb3c9d..ff011ed890ee 100644 --- a/pkgs/by-name/re/replxx/package.nix +++ b/pkgs/by-name/re/replxx/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if enableStatic then "OFF" else "ON"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/AmokHuginnsson/replxx"; changelog = "https://github.com/AmokHuginnsson/replxx/releases/tag/release-${finalAttrs.version}"; description = "Readline and libedit replacement that supports UTF-8, syntax highlighting, hints and Windows and is BSD licensed"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/re/repocheck/package.nix b/pkgs/by-name/re/repocheck/package.nix index da0bd687ef75..9ec1a6ce69ac 100644 --- a/pkgs/by-name/re/repocheck/package.nix +++ b/pkgs/by-name/re/repocheck/package.nix @@ -23,10 +23,10 @@ python3Packages.buildPythonApplication rec { # no tests doCheck = false; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Check the status of code repositories under a root directory"; mainProgram = "repocheck"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/re/repro-get/package.nix b/pkgs/by-name/re/repro-get/package.nix index 1c6f49ac083a..4ab17e776b9a 100644 --- a/pkgs/by-name/re/repro-get/package.nix +++ b/pkgs/by-name/re/repro-get/package.nix @@ -68,11 +68,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Reproducible apt/dnf/apk/pacman, with content-addressing"; homepage = "https://github.com/reproducible-containers/repro-get"; - license = licenses.asl20; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "repro-get"; }; } diff --git a/pkgs/by-name/re/reproc/package.nix b/pkgs/by-name/re/reproc/package.nix index d00a691ff636..bc5b2437c449 100644 --- a/pkgs/by-name/re/reproc/package.nix +++ b/pkgs/by-name/re/reproc/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { homepage = "https://github.com/DaanDeMeyer/reproc"; description = "Cross-platform (C99/C++11) process library"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/requestly/package.nix b/pkgs/by-name/re/requestly/package.nix index 8f033c4f4ed3..0f41985cb108 100644 --- a/pkgs/by-name/re/requestly/package.nix +++ b/pkgs/by-name/re/requestly/package.nix @@ -23,12 +23,12 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Intercept & Modify HTTP Requests"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; homepage = "https://requestly.io"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "requestly"; }; } diff --git a/pkgs/by-name/re/reredirect/package.nix b/pkgs/by-name/re/reredirect/package.nix index afe82bddc0a2..b0fe3430743e 100644 --- a/pkgs/by-name/re/reredirect/package.nix +++ b/pkgs/by-name/re/reredirect/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { --replace "reredirect" "${placeholder "out"}/bin/reredirect" ''; - meta = with lib; { + meta = { description = "Tool to dynamicly redirect outputs of a running process"; homepage = "https://github.com/jerome-pouiller/reredirect"; - license = licenses.mit; - maintainers = [ maintainers.tobim ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.tobim ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/re/rescrobbled/package.nix b/pkgs/by-name/re/rescrobbled/package.nix index 036ce79dc2ff..c631f63e4f81 100644 --- a/pkgs/by-name/re/rescrobbled/package.nix +++ b/pkgs/by-name/re/rescrobbled/package.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { install -Dm644 rescrobbled.service -t "$out/share/systemd/user" ''; - meta = with lib; { + meta = { description = "MPRIS music scrobbler daemon"; homepage = "https://github.com/InputUsername/rescrobbled"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "rescrobbled"; - platforms = platforms.unix; - maintainers = with maintainers; [ negatethis ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ negatethis ]; }; } diff --git a/pkgs/by-name/re/resgate/package.nix b/pkgs/by-name/re/resgate/package.nix index 1dc4cfaf9f9c..3ab68a688fb7 100644 --- a/pkgs/by-name/re/resgate/package.nix +++ b/pkgs/by-name/re/resgate/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-1yQScWjlqYvFmuqG4TLmImlCjFPrLcYcmZ1a3QUnSXY="; - meta = with lib; { + meta = { description = "Realtime API Gateway used with NATS to build REST, real time, and RPC APIs"; homepage = "https://resgate.io"; - license = licenses.mit; - maintainers = with maintainers; [ farcaller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ farcaller ]; mainProgram = "resgate"; }; } diff --git a/pkgs/by-name/re/resilio-sync/package.nix b/pkgs/by-name/re/resilio-sync/package.nix index 6520c5033f4a..b865161047b6 100644 --- a/pkgs/by-name/re/resilio-sync/package.nix +++ b/pkgs/by-name/re/resilio-sync/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation rec { install -D rslsync "$out/bin/rslsync" ''; - meta = with lib; { + meta = { description = "Automatically sync files via secure, distributed technology"; homepage = "https://www.resilio.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; - platforms = platforms.linux; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice cwoac ]; diff --git a/pkgs/by-name/re/resolv_wrapper/package.nix b/pkgs/by-name/re/resolv_wrapper/package.nix index 197978a47b7c..e75d94762730 100644 --- a/pkgs/by-name/re/resolv_wrapper/package.nix +++ b/pkgs/by-name/re/resolv_wrapper/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Wrapper for the user, group and hosts NSS API"; homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/re/resolve-march-native/package.nix b/pkgs/by-name/re/resolve-march-native/package.nix index 0c0bd4ee1765..d6793a641509 100644 --- a/pkgs/by-name/re/resolve-march-native/package.nix +++ b/pkgs/by-name/re/resolve-march-native/package.nix @@ -22,12 +22,12 @@ python3Packages.buildPythonApplication rec { doCheck = true; - meta = with lib; { + meta = { description = "Tool to determine what GCC flags -march=native would resolve into"; mainProgram = "resolve-march-native"; homepage = "https://github.com/hartwork/resolve-march-native"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lovesegfault ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lovesegfault ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/re/resonance/package.nix b/pkgs/by-name/re/resonance/package.nix index 2a9537fef555..eb5d1fe8a4c9 100644 --- a/pkgs/by-name/re/resonance/package.nix +++ b/pkgs/by-name/re/resonance/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Intuitive GTK4/LibAdwaita music player"; homepage = "https://github.com/nate-xyz/resonance"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "resonance"; - maintainers = with maintainers; [ Guanran928 ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ Guanran928 ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/re/restic-integrity/package.nix b/pkgs/by-name/re/restic-integrity/package.nix index cd8551bb2a01..43531b495383 100644 --- a/pkgs/by-name/re/restic-integrity/package.nix +++ b/pkgs/by-name/re/restic-integrity/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Hnr003TbG0y/Ry4yOAs6t6rhc5yEJkc+TDAuxGePb0Y="; - meta = with lib; { + meta = { description = "CLI tool to check the integrity of a restic repository without unlocking it"; homepage = "https://git.nwex.de/networkException/restic-integrity"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ networkexception ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ networkexception ]; mainProgram = "restic-integrity"; }; } diff --git a/pkgs/by-name/re/restic-rest-server/package.nix b/pkgs/by-name/re/restic-rest-server/package.nix index 980a8241681f..6cf9d669ea35 100644 --- a/pkgs/by-name/re/restic-rest-server/package.nix +++ b/pkgs/by-name/re/restic-rest-server/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { passthru.tests.restic = nixosTests.restic-rest-server; - meta = with lib; { + meta = { changelog = "https://github.com/restic/rest-server/blob/${src.rev}/CHANGELOG.md"; description = "High performance HTTP server that implements restic's REST backend API"; mainProgram = "rest-server"; homepage = "https://github.com/restic/rest-server"; - license = licenses.bsd2; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/re/restinio/package.nix b/pkgs/by-name/re/restinio/package.nix index 4bf8302a89cf..ea21ec4a5fea 100644 --- a/pkgs/by-name/re/restinio/package.nix +++ b/pkgs/by-name/re/restinio/package.nix @@ -104,12 +104,12 @@ stdenv.mkDerivation (finalAttrs: { checkFlagsArray+=(ARGS="--exclude-regex '${excludeRegex}'") ''; - meta = with lib; { + meta = { description = "Cross-platform, efficient, customizable, and robust asynchronous HTTP(S)/WebSocket server C++ library"; homepage = "https://github.com/Stiffstream/restinio"; changelog = "https://github.com/Stiffstream/restinio/releases/tag/${finalAttrs.src.rev}"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ tobim ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ tobim ]; }; }) diff --git a/pkgs/by-name/re/restls/package.nix b/pkgs/by-name/re/restls/package.nix index 46218915f4cf..352a0a3c3de7 100644 --- a/pkgs/by-name/re/restls/package.nix +++ b/pkgs/by-name/re/restls/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-hub64iZNVw/BJjibtDnJ3boIU27DEbYSlMLhFFVJ9ps="; - meta = with lib; { + meta = { homepage = "https://github.com/3andne/restls"; changelog = "https://github.com/3andne/restls/releases/tag/${src.rev}"; description = "Perfect Impersonation of TLS"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "restls"; - maintainers = with maintainers; [ oluceps ]; + maintainers = with lib.maintainers; [ oluceps ]; }; } diff --git a/pkgs/by-name/re/restool/package.nix b/pkgs/by-name/re/restool/package.nix index 09a18b327a57..a874d0518b1f 100644 --- a/pkgs/by-name/re/restool/package.nix +++ b/pkgs/by-name/re/restool/package.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "DPAA2 Resource Management Tool"; longDescription = '' restool is a user space application providing the ability to dynamically create and manage DPAA2 containers and objects from Linux. ''; homepage = "https://github.com/nxp-qoriq/restool"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/re/restream/package.nix b/pkgs/by-name/re/restream/package.nix index 436caa754b45..1ca0d51d0a72 100644 --- a/pkgs/by-name/re/restream/package.nix +++ b/pkgs/by-name/re/restream/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { "$out/bin/restream" ''; - meta = with lib; { + meta = { description = "reMarkable screen sharing over SSH"; mainProgram = "restream"; homepage = "https://github.com/rien/reStream"; - license = licenses.mit; - maintainers = [ maintainers.cpcloud ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.cpcloud ]; }; } diff --git a/pkgs/by-name/re/resumed/package.nix b/pkgs/by-name/re/resumed/package.nix index bc1d5ade1ed9..23793b2156c8 100644 --- a/pkgs/by-name/re/resumed/package.nix +++ b/pkgs/by-name/re/resumed/package.nix @@ -17,11 +17,11 @@ buildNpmPackage rec { npmDepsHash = "sha256-7Wdf8NaizgIExeX+Kc8wn5f20al0bnxRpFoPy6p40jw="; - meta = with lib; { + meta = { description = "Lightweight JSON Resume builder, no-frills alternative to resume-cli"; homepage = "https://github.com/rbardini/resumed"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; mainProgram = "resumed"; }; } diff --git a/pkgs/by-name/re/retdec/package.nix b/pkgs/by-name/re/retdec/package.nix index 9b442ca081ae..4b0609cf87f9 100644 --- a/pkgs/by-name/re/retdec/package.nix +++ b/pkgs/by-name/re/retdec/package.nix @@ -225,11 +225,11 @@ stdenv.mkDerivation (self: { rm -rf $out/bin/__pycache__ ''; - meta = with lib; { + meta = { description = "Retargetable machine-code decompiler based on LLVM"; homepage = "https://retdec.com"; - license = licenses.mit; - maintainers = with maintainers; [ katrinafyi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ katrinafyi ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/re/retool/package.nix b/pkgs/by-name/re/retool/package.nix index 126d02ceea82..de942afff097 100644 --- a/pkgs/by-name/re/retool/package.nix +++ b/pkgs/by-name/re/retool/package.nix @@ -47,11 +47,11 @@ python3.pkgs.buildPythonApplication rec { # Upstream has no tests doCheck = false; - meta = with lib; { + meta = { description = "Better filter tool for Redump and No-Intro dats"; homepage = "https://github.com/unexpectedpanda/retool"; changelog = "https://github.com/unexpectedpanda/retool/blob/${src.tag}/changelog.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ thiagokokada ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/by-name/re/retro-gtk/package.nix b/pkgs/by-name/re/retro-gtk/package.nix index 29ff180ad15c..de7c1cc7a1bc 100644 --- a/pkgs/by-name/re/retro-gtk/package.nix +++ b/pkgs/by-name/re/retro-gtk/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { libsamplerate ]; - meta = with lib; { + meta = { description = "GTK Libretro frontend framework"; mainProgram = "retro-demo"; longDescription = '' @@ -70,9 +70,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://gitlab.gnome.org/GNOME/retro-gtk"; changelog = "https://gitlab.gnome.org/GNOME/retro-gtk/-/blob/master/NEWS"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.DamienCassou ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.DamienCassou ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/retro-gtk.x86_64-darwin }; } diff --git a/pkgs/by-name/re/retroarch-assets/package.nix b/pkgs/by-name/re/retroarch-assets/package.nix index e4cf51cfc25b..f1c637868d6a 100644 --- a/pkgs/by-name/re/retroarch-assets/package.nix +++ b/pkgs/by-name/re/retroarch-assets/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Assets needed for RetroArch"; homepage = "https://libretro.com"; - license = licenses.mit; - teams = [ teams.libretro ]; - platforms = platforms.all; + license = lib.licenses.mit; + teams = [ lib.teams.libretro ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/retroarch-joypad-autoconfig/package.nix b/pkgs/by-name/re/retroarch-joypad-autoconfig/package.nix index b64778b58dd4..7abbf0e36fd0 100644 --- a/pkgs/by-name/re/retroarch-joypad-autoconfig/package.nix +++ b/pkgs/by-name/re/retroarch-joypad-autoconfig/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Joypad autoconfig files"; homepage = "https://www.libretro.com/"; - license = licenses.mit; - teams = [ teams.libretro ]; - platforms = platforms.all; + license = lib.licenses.mit; + teams = [ lib.teams.libretro ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/retrofe/package.nix b/pkgs/by-name/re/retrofe/package.nix index 44792f40125f..39953bac869c 100644 --- a/pkgs/by-name/re/retrofe/package.nix +++ b/pkgs/by-name/re/retrofe/package.nix @@ -102,10 +102,10 @@ stdenv.mkDerivation { --run 'export RETROFE_PATH=''${RETROFE_PATH:-$PWD}' ''; - meta = with lib; { + meta = { description = "Frontend for arcade cabinets and media PCs"; homepage = "http://retrofe.nl/"; - license = licenses.gpl3Plus; - platforms = with platforms; linux; + license = lib.licenses.gpl3Plus; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/re/retry/package.nix b/pkgs/by-name/re/retry/package.nix index de747e78a4d3..d32ab430dd39 100644 --- a/pkgs/by-name/re/retry/package.nix +++ b/pkgs/by-name/re/retry/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { which ]; - meta = with lib; { + meta = { homepage = "https://github.com/minfrin/retry"; description = "Command wrapper that retries until the command succeeds"; - license = licenses.asl20; - maintainers = with maintainers; [ gfrascadorio ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gfrascadorio ]; + platforms = lib.platforms.all; mainProgram = "retry"; }; } diff --git a/pkgs/by-name/re/revanced-cli/package.nix b/pkgs/by-name/re/revanced-cli/package.nix index 6867588a848d..44752dd5e55c 100644 --- a/pkgs/by-name/re/revanced-cli/package.nix +++ b/pkgs/by-name/re/revanced-cli/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line application as an alternative to the ReVanced Manager"; homepage = "https://github.com/revanced/revanced-cli"; - license = licenses.gpl3Only; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ jopejoe1 ]; + license = lib.licenses.gpl3Only; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ jopejoe1 ]; mainProgram = "revanced-cli"; }; } diff --git a/pkgs/by-name/re/reversal-icon-theme/package.nix b/pkgs/by-name/re/reversal-icon-theme/package.nix index 8e81f62658c9..20b293771e6d 100644 --- a/pkgs/by-name/re/reversal-icon-theme/package.nix +++ b/pkgs/by-name/re/reversal-icon-theme/package.nix @@ -85,11 +85,11 @@ lib.checkListOfEnum "${pname}: color variants" passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Colorful Design Rectangle icon theme"; homepage = "https://github.com/yeyushengfan258/Reversal-icon-theme"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/re/revive/package.nix b/pkgs/by-name/re/revive/package.nix index f2f56b8e946e..033bf06de470 100644 --- a/pkgs/by-name/re/revive/package.nix +++ b/pkgs/by-name/re/revive/package.nix @@ -48,11 +48,11 @@ buildGoModule rec { --prefix PATH : ${lib.makeBinPath [ go ]} ''; - meta = with lib; { + meta = { description = "Fast, configurable, extensible, flexible, and beautiful linter for Go"; mainProgram = "revive"; homepage = "https://revive.run"; - license = licenses.mit; - maintainers = with maintainers; [ maaslalani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maaslalani ]; }; } diff --git a/pkgs/by-name/re/rewritefs/package.nix b/pkgs/by-name/re/rewritefs/package.nix index 5408cd435027..7818d0ab7acc 100644 --- a/pkgs/by-name/re/rewritefs/package.nix +++ b/pkgs/by-name/re/rewritefs/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { preConfigure = "substituteInPlace Makefile --replace /usr/local $out"; - meta = with lib; { + meta = { description = "FUSE filesystem intended to be used like Apache mod_rewrite"; homepage = "https://github.com/sloonz/rewritefs"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/rf/rfc-bibtex/package.nix b/pkgs/by-name/rf/rfc-bibtex/package.nix index 3ca11ac923cf..745c9992ddbb 100644 --- a/pkgs/by-name/rf/rfc-bibtex/package.nix +++ b/pkgs/by-name/rf/rfc-bibtex/package.nix @@ -27,11 +27,11 @@ python3.pkgs.buildPythonApplication rec { "rfc_bibtex" ]; - meta = with lib; { + meta = { homepage = "https://github.com/iluxonchik/rfc-bibtex/"; description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts"; - license = licenses.mit; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ teto ]; mainProgram = "rfcbibtex"; }; } diff --git a/pkgs/by-name/rf/rfc/package.nix b/pkgs/by-name/rf/rfc/package.nix index 815dbc08d4d3..b8abd94abe97 100644 --- a/pkgs/by-name/rf/rfc/package.nix +++ b/pkgs/by-name/rf/rfc/package.nix @@ -37,7 +37,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to read RFCs from the command line"; longDescription = '' rfc is a little tool written in Bash to read RFCs from the command-line. @@ -45,9 +45,9 @@ stdenvNoCC.mkDerivation rec { ''; homepage = "https://github.com/bfontaine/rfc"; changelog = "https://github.com/bfontaine/rfc/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.all; mainProgram = "rfc"; }; } diff --git a/pkgs/by-name/rg/rgbds/package.nix b/pkgs/by-name/rg/rgbds/package.nix index fdf6c673334a..3d6a7c8a551f 100644 --- a/pkgs/by-name/rg/rgbds/package.nix +++ b/pkgs/by-name/rg/rgbds/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { ''; installFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://rgbds.gbdev.io/"; description = "Free assembler/linker package for the Game Boy and Game Boy Color"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' RGBDS (Rednex Game Boy Development System) is a free assembler/linker package for the Game Boy and Game Boy Color. It consists of: @@ -42,9 +42,9 @@ stdenv.mkDerivation rec { This is a fork of the original RGBDS which aims to make the programs more like other UNIX tools. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ NieDzejkob ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rg/rgxg/package.nix b/pkgs/by-name/rg/rgxg/package.nix index eac1b2d99c52..49fff3ab5d9d 100644 --- a/pkgs/by-name/rg/rgxg/package.nix +++ b/pkgs/by-name/rg/rgxg/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "050jxc3qhfrm9fdbzd67hlsqlp4qk1fa20q1g2v919sh7s6v77si"; }; - meta = with lib; { + meta = { description = "C library and a command-line tool to generate (extended) regular expressions"; mainProgram = "rgxg"; - license = licenses.zlib; - maintainers = with maintainers; [ hloeffler ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ hloeffler ]; homepage = "https://rgxg.github.io/"; }; } diff --git a/pkgs/by-name/rh/rHttp/package.nix b/pkgs/by-name/rh/rHttp/package.nix index 715a444ee1ea..71b4e9c3e46b 100644 --- a/pkgs/by-name/rh/rHttp/package.nix +++ b/pkgs/by-name/rh/rHttp/package.nix @@ -16,11 +16,11 @@ buildGoModule { vendorHash = "sha256-NR1q44IUSME+x1EOcnXXRoIXw8Av0uH7iXhD+cdd99I="; - meta = with lib; { + meta = { description = "Go REPL for HTTP"; homepage = "https://github.com/1buran/rHttp"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ luftmensch-luftmensch ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; mainProgram = "rhttp"; }; } diff --git a/pkgs/by-name/rh/rhack/package.nix b/pkgs/by-name/rh/rhack/package.nix index 68d39d9b040a..23be07cde288 100644 --- a/pkgs/by-name/rh/rhack/package.nix +++ b/pkgs/by-name/rh/rhack/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-84dVBNvo45zG7s/tMY3O0Zv69CdcvjZCZX8siie6QnI="; - meta = with lib; { + meta = { description = "Temporary edit external crates that your project depends on"; mainProgram = "rhack"; homepage = "https://github.com/nakabonne/rhack"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/rh/rhai-doc/package.nix b/pkgs/by-name/rh/rhai-doc/package.nix index c2dd992624e0..58c9c69516a2 100644 --- a/pkgs/by-name/rh/rhai-doc/package.nix +++ b/pkgs/by-name/rh/rhai-doc/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Lk/vbYxBcK676qusl6mWO38RAkCuiyHwZLcJpcHrdO4="; - meta = with lib; { + meta = { description = "Tool to auto-generate documentation for Rhai source code"; homepage = "https://github.com/rhaiscript/rhai-doc"; changelog = "https://github.com/rhaiscript/rhai-doc/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/rh/rhash/package.nix b/pkgs/by-name/rh/rhash/package.nix index cc6a36edb14d..9849fea3ac1b 100644 --- a/pkgs/by-name/rh/rhash/package.nix +++ b/pkgs/by-name/rh/rhash/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { "install-lib-so-link" ]; - meta = with lib; { + meta = { homepage = "https://rhash.sourceforge.net/"; description = "Console utility and library for computing and verifying hash sums of files"; - license = licenses.bsd0; - platforms = platforms.all; - maintainers = with maintainers; [ andrewrk ]; + license = lib.licenses.bsd0; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ andrewrk ]; }; } diff --git a/pkgs/by-name/rh/rhino/package.nix b/pkgs/by-name/rh/rhino/package.nix index e30171351537..73d4134f7a6d 100644 --- a/pkgs/by-name/rh/rhino/package.nix +++ b/pkgs/by-name/rh/rhino/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: { ln -s "js-$pkgver.jar" "$out/share/java/js.jar" ''; - meta = with lib; { + meta = { description = "Implementation of JavaScript written in Java"; longDescription = '' @@ -40,10 +40,10 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://rhino.github.io/"; - license = with licenses; [ + license = with lib.licenses; [ mpl11 # or gpl2Plus ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/rh/rhodium-libre/package.nix b/pkgs/by-name/rh/rhodium-libre/package.nix index ea6c6d893507..20e27c0945bc 100644 --- a/pkgs/by-name/rh/rhodium-libre/package.nix +++ b/pkgs/by-name/rh/rhodium-libre/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "F/OSS/Libre font for Latin and Devanagari"; homepage = "https://github.com/DunwichType/RhodiumLibre"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/rh/rhythmbox/package.nix b/pkgs/by-name/rh/rhythmbox/package.nix index 99a9b70dd0cc..d14c80f3f0af 100644 --- a/pkgs/by-name/rh/rhythmbox/package.nix +++ b/pkgs/by-name/rh/rhythmbox/package.nix @@ -122,11 +122,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/rhythmbox"; description = "Music playing application for GNOME"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ri/richgo/package.nix b/pkgs/by-name/ri/richgo/package.nix index 04e4a6b689b7..65ef16f63e86 100644 --- a/pkgs/by-name/ri/richgo/package.nix +++ b/pkgs/by-name/ri/richgo/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-jIzBN5T5+eTFCYOdS5hj3yTGOfU8NTrFmnIu+dDjVeU="; - meta = with lib; { + meta = { description = "Enrich `go test` outputs with text decorations"; mainProgram = "richgo"; homepage = "https://github.com/kyoh86/richgo"; - license = licenses.mit; - maintainers = with maintainers; [ rvolosatovs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvolosatovs ]; }; } diff --git a/pkgs/by-name/ri/ricty/package.nix b/pkgs/by-name/ri/ricty/package.nix index edd07a226950..92e68970b69c 100644 --- a/pkgs/by-name/ri/ricty/package.nix +++ b/pkgs/by-name/ri/ricty/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { install -m644 --target $out/share/fonts/truetype/ricty -D Ricty-*.ttf ''; - meta = with lib; { + meta = { description = "High-quality Japanese font based on Inconsolata and Migu 1M"; homepage = "https://rictyfonts.github.io"; - license = licenses.unfree; - maintainers = [ maintainers.mikoim ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.mikoim ]; }; } diff --git a/pkgs/by-name/ri/rictydiminished-with-firacode/package.nix b/pkgs/by-name/ri/rictydiminished-with-firacode/package.nix index 2dad3c3a590e..613557e32271 100644 --- a/pkgs/by-name/ri/rictydiminished-with-firacode/package.nix +++ b/pkgs/by-name/ri/rictydiminished-with-firacode/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { ])) ]; - meta = with lib; { + meta = { homepage = "https://github.com/hakatashi/RictyDiminished-with-FiraCode"; description = "Best Japanese programming font meets the awesome ligatures of Firacode"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ mt-caret ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mt-caret ]; }; } diff --git a/pkgs/by-name/ri/riemann-dash/package.nix b/pkgs/by-name/ri/riemann-dash/package.nix index 5c3133df6036..b61da9ca97b7 100644 --- a/pkgs/by-name/ri/riemann-dash/package.nix +++ b/pkgs/by-name/ri/riemann-dash/package.nix @@ -11,14 +11,14 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "riemann-dash"; - meta = with lib; { + meta = { description = "Javascript, websockets-powered dashboard for Riemann"; homepage = "https://github.com/riemann/riemann-dash"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ri/riemann-tools/package.nix b/pkgs/by-name/ri/riemann-tools/package.nix index b864e407c8ae..2a0d47172b78 100644 --- a/pkgs/by-name/ri/riemann-tools/package.nix +++ b/pkgs/by-name/ri/riemann-tools/package.nix @@ -32,13 +32,13 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "riemann-tools"; - meta = with lib; { + meta = { description = "Tools to submit data to Riemann"; homepage = "https://riemann.io"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ manveru nicknovitski ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ri/riemann/package.nix b/pkgs/by-name/ri/riemann/package.nix index 41edbb42a50b..14856acdf3f2 100644 --- a/pkgs/by-name/ri/riemann/package.nix +++ b/pkgs/by-name/ri/riemann/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/riemann" --prefix PATH : "${jre}/bin" ''; - meta = with lib; { + meta = { homepage = "http://riemann.io/"; description = "Network monitoring system"; mainProgram = "riemann"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; - platforms = platforms.all; - maintainers = with maintainers; [ crimeminister ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ crimeminister ]; }; } diff --git a/pkgs/by-name/ri/riemann_c_client/package.nix b/pkgs/by-name/ri/riemann_c_client/package.nix index 703d3301a7a5..3220829f8498 100644 --- a/pkgs/by-name/ri/riemann_c_client/package.nix +++ b/pkgs/by-name/ri/riemann_c_client/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { doCheck = true; enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://git.madhouse-project.org/algernon/riemann-c-client"; description = "C client library for the Riemann monitoring system"; mainProgram = "riemann-client"; - license = licenses.eupl12; - platforms = platforms.linux; + license = lib.licenses.eupl12; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ri/ries/package.nix b/pkgs/by-name/ri/ries/package.nix index fe6a93b02826..d94835916aa3 100644 --- a/pkgs/by-name/ri/ries/package.nix +++ b/pkgs/by-name/ri/ries/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://mrob.com/pub/ries/"; description = "Tool to produce a list of equations that approximately solve to a given number"; mainProgram = "ries"; - platforms = platforms.all; - maintainers = with maintainers; [ symphorien ]; - license = licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ symphorien ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/ri/rifiuti/package.nix b/pkgs/by-name/ri/rifiuti/package.nix index 459ea2da6b08..806015e793ed 100644 --- a/pkgs/by-name/ri/rifiuti/package.nix +++ b/pkgs/by-name/ri/rifiuti/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Analyze Windows Recycle Bin INFO2 file"; mainProgram = "rifiuti"; homepage = "https://sourceforge.net/projects/odessa/files/Rifiuti"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/ri/rigsofrods-bin/package.nix b/pkgs/by-name/ri/rigsofrods-bin/package.nix index a6ec5384cfbf..31a0701f7f82 100644 --- a/pkgs/by-name/ri/rigsofrods-bin/package.nix +++ b/pkgs/by-name/ri/rigsofrods-bin/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free/libre soft-body physics simulator mainly targeted at simulating vehicle physics"; homepage = "https://www.rigsofrods.org"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin wegank ]; diff --git a/pkgs/by-name/ri/rime-data/package.nix b/pkgs/by-name/ri/rime-data/package.nix index fc19f47b490a..be4088f13434 100644 --- a/pkgs/by-name/ri/rime-data/package.nix +++ b/pkgs/by-name/ri/rime-data/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation { sed -i /fetch_or_update_package$/d scripts/install-packages.sh ''; - meta = with lib; { + meta = { description = "Schema data of Rime Input Method Engine"; longDescription = '' Rime-data provides schema data for Rime Input Method Engine. ''; homepage = "https://rime.im"; - license = with licenses; [ + license = with lib.licenses; [ # rime-array # rime-combo-pinyin # rime-double-pinyin @@ -66,6 +66,6 @@ stdenv.mkDerivation { # rime-cantonese cc-by-40 ]; - maintainers = with maintainers; [ pmy ]; + maintainers = with lib.maintainers; [ pmy ]; }; } diff --git a/pkgs/by-name/ri/rimgo/package.nix b/pkgs/by-name/ri/rimgo/package.nix index f28667bbe7db..e153ee5ee582 100644 --- a/pkgs/by-name/ri/rimgo/package.nix +++ b/pkgs/by-name/ri/rimgo/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "-X codeberg.org/rimgo/rimgo/pages.VersionInfo=${version}" ]; - meta = with lib; { + meta = { description = "Alternative frontend for Imgur"; homepage = "https://codeberg.org/rimgo/rimgo"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "rimgo"; - maintainers = with maintainers; [ quantenzitrone ]; + maintainers = with lib.maintainers; [ quantenzitrone ]; }; } diff --git a/pkgs/by-name/ri/rinetd/package.nix b/pkgs/by-name/ri/rinetd/package.nix index 8e90ce6628b8..7f8b1a3f6f5a 100644 --- a/pkgs/by-name/ri/rinetd/package.nix +++ b/pkgs/by-name/ri/rinetd/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { command = "rinetd --version"; }; - meta = with lib; { + meta = { description = "TCP/UDP port redirector"; homepage = "https://github.com/samhocevar/rinetd"; changelog = "https://github.com/samhocevar/rinetd/blob/${src.rev}/CHANGES.md"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "rinetd"; }; diff --git a/pkgs/by-name/ri/rink/package.nix b/pkgs/by-name/ri/rink/package.nix index 1a872ed47d2c..da0c2ba6a2e3 100644 --- a/pkgs/by-name/ri/rink/package.nix +++ b/pkgs/by-name/ri/rink/package.nix @@ -54,15 +54,15 @@ rustPlatform.buildRustPackage rec { installManPage build/* ''; - meta = with lib; { + meta = { description = "Unit-aware calculator"; mainProgram = "rink"; homepage = "https://rinkcalc.app"; - license = with licenses; [ + license = with lib.licenses; [ mpl20 gpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sb0 ]; }; diff --git a/pkgs/by-name/ri/riot-redis/package.nix b/pkgs/by-name/ri/riot-redis/package.nix index 5832e916c581..1eacee3f216d 100644 --- a/pkgs/by-name/ri/riot-redis/package.nix +++ b/pkgs/by-name/ri/riot-redis/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/redis-developer/riot"; description = "Get data in and out of Redis"; mainProgram = "riot-redis"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ wesnel ]; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ wesnel ]; }; } diff --git a/pkgs/by-name/ri/ripdrag/package.nix b/pkgs/by-name/ri/ripdrag/package.nix index 747a8b2274c0..452f9a169e87 100644 --- a/pkgs/by-name/ri/ripdrag/package.nix +++ b/pkgs/by-name/ri/ripdrag/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ gtk4 ]; - meta = with lib; { + meta = { description = "Application that lets you drag and drop files from and to the terminal"; homepage = "https://github.com/nik012003/ripdrag"; changelog = "https://github.com/nik012003/ripdrag/releases/tag/${src.rev}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "ripdrag"; }; diff --git a/pkgs/by-name/ri/ripes/package.nix b/pkgs/by-name/ri/ripes/package.nix index b5a537e03fa0..73fee5e3ea6e 100644 --- a/pkgs/by-name/ri/ripes/package.nix +++ b/pkgs/by-name/ri/ripes/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Graphical processor simulator and assembly editor for the RISC-V ISA"; homepage = "https://github.com/mortbopet/Ripes"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "Ripes"; - maintainers = with maintainers; [ wineee ]; + maintainers = with lib.maintainers; [ wineee ]; }; } diff --git a/pkgs/by-name/ri/ripgrep-all/package.nix b/pkgs/by-name/ri/ripgrep-all/package.nix index 0aacb8e47b23..cbcdffaecdff 100644 --- a/pkgs/by-name/ri/ripgrep-all/package.nix +++ b/pkgs/by-name/ri/ripgrep-all/package.nix @@ -51,7 +51,7 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { changelog = "https://github.com/phiresky/ripgrep-all/blob/${src.rev}/CHANGELOG.md"; description = "Ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, and more"; longDescription = '' @@ -62,8 +62,8 @@ rustPlatform.buildRustPackage rec { to search in pdf, docx, sqlite, jpg, movie subtitles (mkv, mp4), etc. ''; homepage = "https://github.com/phiresky/ripgrep-all"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ zaninime ma27 ]; diff --git a/pkgs/by-name/ri/ripmime/package.nix b/pkgs/by-name/ri/ripmime/package.nix index 704860cbf903..c815d2a6d8f1 100644 --- a/pkgs/by-name/ri/ripmime/package.nix +++ b/pkgs/by-name/ri/ripmime/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-liconv"; }; - meta = with lib; { + meta = { description = "Attachment extractor for MIME messages"; - maintainers = with maintainers; [ raskin ]; + maintainers = with lib.maintainers; [ raskin ]; homepage = "https://pldaniels.com/ripmime/"; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "ripmime"; }; diff --git a/pkgs/by-name/ri/ripsecrets/package.nix b/pkgs/by-name/ri/ripsecrets/package.nix index b4388cfd3b68..56dfd451df8f 100644 --- a/pkgs/by-name/ri/ripsecrets/package.nix +++ b/pkgs/by-name/ri/ripsecrets/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-2HsUNN3lyGb/eOUEN/vTOQbAy59DQSzIaOqdk9+KhfU="; - meta = with lib; { + meta = { description = "Command-line tool to prevent committing secret keys into your source code"; homepage = "https://github.com/sirwart/ripsecrets"; changelog = "https://github.com/sirwart/ripsecrets/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "ripsecrets"; }; diff --git a/pkgs/by-name/ri/ripunzip/package.nix b/pkgs/by-name/ri/ripunzip/package.nix index a180294b039a..0408ece796db 100644 --- a/pkgs/by-name/ri/ripunzip/package.nix +++ b/pkgs/by-name/ri/ripunzip/package.nix @@ -54,7 +54,7 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Tool to unzip files in parallel"; mainProgram = "ripunzip"; homepage = "https://github.com/google/ripunzip"; @@ -62,6 +62,6 @@ rustPlatform.buildRustPackage rec { mit asl20 ]; - maintainers = [ maintainers.lesuisse ]; + maintainers = [ lib.maintainers.lesuisse ]; }; } diff --git a/pkgs/by-name/ri/risor/package.nix b/pkgs/by-name/ri/risor/package.nix index bd56015dc760..bd866e2fa92e 100644 --- a/pkgs/by-name/ri/risor/package.nix +++ b/pkgs/by-name/ri/risor/package.nix @@ -37,12 +37,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Fast and flexible scripting for Go developers and DevOps"; mainProgram = "risor"; homepage = "https://github.com/risor-io/risor"; changelog = "https://github.com/risor-io/risor/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ri/ristate/package.nix b/pkgs/by-name/ri/ristate/package.nix index d65385b54e92..c7ca287a581c 100644 --- a/pkgs/by-name/ri/ristate/package.nix +++ b/pkgs/by-name/ri/ristate/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "River-status client written in Rust"; homepage = "https://gitlab.com/snakedye/ristate"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; mainProgram = "ristate"; }; } diff --git a/pkgs/by-name/ri/rivalcfg/package.nix b/pkgs/by-name/ri/rivalcfg/package.nix index 7618d7e3a65e..dd926f41af52 100644 --- a/pkgs/by-name/ri/rivalcfg/package.nix +++ b/pkgs/by-name/ri/rivalcfg/package.nix @@ -43,11 +43,11 @@ python3Packages.buildPythonPackage rec { pythonImportsCheck = [ "rivalcfg" ]; - meta = with lib; { + meta = { description = "Utility program that allows you to configure SteelSeries Rival gaming mice"; homepage = "https://github.com/flozz/rivalcfg"; - license = licenses.wtfpl; - maintainers = with maintainers; [ ornxka ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ ornxka ]; mainProgram = "rivalcfg"; }; } diff --git a/pkgs/by-name/ri/river-filtile/package.nix b/pkgs/by-name/ri/river-filtile/package.nix index 2ae8eec84e05..7909cd26440b 100644 --- a/pkgs/by-name/ri/river-filtile/package.nix +++ b/pkgs/by-name/ri/river-filtile/package.nix @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage rec { pkg-config ]; - meta = with lib; { + meta = { description = "Layout manager for the River window manager"; homepage = "https://github.com/pkulak/filtile"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ pkulak ]; mainProgram = "filtile"; }; diff --git a/pkgs/by-name/ri/river-luatile/package.nix b/pkgs/by-name/ri/river-luatile/package.nix index d5d9aae57080..9dd99efcec0c 100644 --- a/pkgs/by-name/ri/river-luatile/package.nix +++ b/pkgs/by-name/ri/river-luatile/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { luajit ]; - meta = with lib; { + meta = { description = "Write your own river layout generator in lua"; homepage = "https://github.com/MaxVerevkin/river-luatile"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ pinpox ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pinpox ]; mainProgram = "river-luatile"; }; } diff --git a/pkgs/by-name/ri/river-tag-overlay/package.nix b/pkgs/by-name/ri/river-tag-overlay/package.nix index 2754bb813d49..e6aeb86d4867 100644 --- a/pkgs/by-name/ri/river-tag-overlay/package.nix +++ b/pkgs/by-name/ri/river-tag-overlay/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = with lib; { + meta = { description = "Pop-up showing tag status"; homepage = "https://sr.ht/~leon_plickat/river-tag-overlay"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ edrex ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ edrex ]; + platforms = lib.platforms.linux; mainProgram = "river-tag-overlay"; }; } diff --git a/pkgs/by-name/rk/rkbin/package.nix b/pkgs/by-name/rk/rkbin/package.nix index f327753bd774..922b699b1aa6 100644 --- a/pkgs/by-name/rk/rkbin/package.nix +++ b/pkgs/by-name/rk/rkbin/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation { TPL_RK3588 = "${rkbin}/bin/rk35/rk3588_ddr_lp4_2112MHz_lp5_2400MHz_v1.18.bin"; }; - meta = with lib; { + meta = { description = "Rockchip proprietary bootloader blobs"; homepage = "https://github.com/rockchip-linux/rkbin"; - license = licenses.unfreeRedistributableFirmware; - maintainers = with maintainers; [ thefossguy ]; + license = lib.licenses.unfreeRedistributableFirmware; + maintainers = with lib.maintainers; [ thefossguy ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rk/rkboot/package.nix b/pkgs/by-name/rk/rkboot/package.nix index 2d30a55f5498..b52b0bc14b68 100644 --- a/pkgs/by-name/rk/rkboot/package.nix +++ b/pkgs/by-name/rk/rkboot/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { fi ''; - meta = with lib; { + meta = { description = "Rockchip proprietary SPL bootloader blobs"; homepage = "https://github.com/rockchip-linux/rkbin"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ matthewcroughan ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/rk/rkdeveloptool/package.nix b/pkgs/by-name/rk/rkdeveloptool/package.nix index 4b9047484665..2439b6136eb3 100644 --- a/pkgs/by-name/rk/rkdeveloptool/package.nix +++ b/pkgs/by-name/rk/rkdeveloptool/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { lib.optionals stdenv.cc.isGNU [ "-Wno-error=format-truncation" ] ++ lib.optionals stdenv.isDarwin [ "-Wno-error=vla-cxx-extension" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rockchip-linux/rkdeveloptool"; description = "Tool from Rockchip to communicate with Rockusb devices"; - license = licenses.gpl2Only; - maintainers = [ maintainers.lopsided98 ]; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.lopsided98 ]; mainProgram = "rkdeveloptool"; }; } diff --git a/pkgs/by-name/rl/rlaunch/package.nix b/pkgs/by-name/rl/rlaunch/package.nix index 7039df64fa2f..ec3db0778c74 100644 --- a/pkgs/by-name/rl/rlaunch/package.nix +++ b/pkgs/by-name/rl/rlaunch/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { } $out/bin/rlaunch ''; - meta = with lib; { + meta = { description = "Lightweight application launcher for X11"; homepage = "https://github.com/PonasKovas/rlaunch"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ danc86 ]; mainProgram = "rlaunch"; }; } diff --git a/pkgs/by-name/rl/rlci/package.nix b/pkgs/by-name/rl/rlci/package.nix index e16eaf314df3..81e9bcff92e6 100644 --- a/pkgs/by-name/rl/rlci/package.nix +++ b/pkgs/by-name/rl/rlci/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-ckHwg7jEXZV0hjZFeR5dbqrt9APcyRV95LikwCFw/fM="; - meta = with lib; { + meta = { description = "Lambda calculus interpreter"; mainProgram = "rlci"; homepage = "https://github.com/orsinium-labs/rlci"; changelog = "https://github.com/orsinium-labs/rlci/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/rl/rlottie/package.nix b/pkgs/by-name/rl/rlottie/package.nix index 54c0ac6a5d88..a6df6d169045 100644 --- a/pkgs/by-name/rl/rlottie/package.nix +++ b/pkgs/by-name/rl/rlottie/package.nix @@ -29,16 +29,16 @@ stdenv.mkDerivation { stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 ) "-U__ARM_NEON__"; - meta = with lib; { + meta = { homepage = "https://github.com/Samsung/rlottie"; description = "Platform independent standalone c++ library for rendering vector based animations and art in realtime"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd3 mpl11 ftl ]; - platforms = platforms.all; - maintainers = with maintainers; [ CRTified ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ CRTified ]; }; } diff --git a/pkgs/by-name/rl/rlwrap/package.nix b/pkgs/by-name/rl/rlwrap/package.nix index 83757a61cb5f..22187c8cd2ff 100644 --- a/pkgs/by-name/rl/rlwrap/package.nix +++ b/pkgs/by-name/rl/rlwrap/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-error=implicit-function-declaration"; - meta = with lib; { + meta = { description = "Readline wrapper for console programs"; homepage = "https://github.com/hanslub42/rlwrap"; changelog = "https://github.com/hanslub42/rlwrap/raw/refs/tags/v${finalAttrs.version}/NEWS"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ jlesquembre ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jlesquembre ]; mainProgram = "rlwrap"; }; }) diff --git a/pkgs/by-name/rm/rm-improved/package.nix b/pkgs/by-name/rm/rm-improved/package.nix index 0ce10b66a899..40b4b8734162 100644 --- a/pkgs/by-name/rm/rm-improved/package.nix +++ b/pkgs/by-name/rm/rm-improved/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { ./Cargo.lock.patch ]; - meta = with lib; { + meta = { description = "Replacement for rm with focus on safety, ergonomics and performance"; homepage = "https://github.com/nivekuil/rip"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nils-degroot ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nils-degroot ]; mainProgram = "rip"; }; } diff --git a/pkgs/by-name/rm/rmate-sh/package.nix b/pkgs/by-name/rm/rmate-sh/package.nix index 6b20d61484bf..462852d41087 100644 --- a/pkgs/by-name/rm/rmate-sh/package.nix +++ b/pkgs/by-name/rm/rmate-sh/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Remote TextMate 2 implemented as shell script"; longDescription = '' TextMate 2 has a nice feature where it is possible to edit @@ -52,9 +52,9 @@ stdenv.mkDerivation rec { This is a rmate implementation in shell! ''; homepage = "https://github.com/aurora/rmate"; - platforms = platforms.linux; - license = licenses.gpl3; - maintainers = with maintainers; [ pbsds ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pbsds ]; mainProgram = "rmate"; }; } diff --git a/pkgs/by-name/rm/rmfakecloud/package.nix b/pkgs/by-name/rm/rmfakecloud/package.nix index bc5a4b9dc389..4e595ee530b6 100644 --- a/pkgs/by-name/rm/rmfakecloud/package.nix +++ b/pkgs/by-name/rm/rmfakecloud/package.nix @@ -58,11 +58,11 @@ buildGoModule rec { passthru.tests.rmfakecloud = nixosTests.rmfakecloud; - meta = with lib; { + meta = { description = "Host your own cloud for the Remarkable"; homepage = "https://ddvk.github.io/rmfakecloud/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ euxane martinetd ]; diff --git a/pkgs/by-name/rm/rmount/package.nix b/pkgs/by-name/rm/rmount/package.nix index 30d2d86942e1..4a2ffea04bc2 100644 --- a/pkgs/by-name/rm/rmount/package.nix +++ b/pkgs/by-name/rm/rmount/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/Luis-Hebendanz/rmount"; description = "Remote mount utility which parses a json file"; - license = licenses.mit; - maintainers = [ maintainers.qubasa ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.qubasa ]; + platforms = lib.platforms.linux; mainProgram = "rmount"; }; } diff --git a/pkgs/by-name/rm/rmtfs/package.nix b/pkgs/by-name/rm/rmtfs/package.nix index d5044dcb999a..b19d2fc4ffb7 100644 --- a/pkgs/by-name/rm/rmtfs/package.nix +++ b/pkgs/by-name/rm/rmtfs/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { - maintainers = with maintainers; [ matthewcroughan ]; + meta = { + maintainers = with lib.maintainers; [ matthewcroughan ]; description = "Qualcomm Remote Filesystem Service"; homepage = "https://github.com/linux-msm/rmtfs"; - license = licenses.bsd3; - platforms = platforms.aarch64; + license = lib.licenses.bsd3; + platforms = lib.platforms.aarch64; mainProgram = "rmtfs"; }; }) diff --git a/pkgs/by-name/rm/rmtrash/package.nix b/pkgs/by-name/rm/rmtrash/package.nix index 272e1c4eada1..33513229669d 100644 --- a/pkgs/by-name/rm/rmtrash/package.nix +++ b/pkgs/by-name/rm/rmtrash/package.nix @@ -37,7 +37,7 @@ stdenvNoCC.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/PhrozenByte/rmtrash"; description = "Trash-put made compatible with GNUs rm and rmdir"; longDescription = '' @@ -45,8 +45,8 @@ stdenvNoCC.mkDerivation rec { way that is, otherwise as `trash-put` itself, compatible to GNUs `rm` and `rmdir`. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ peelz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ peelz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rm/rmview/package.nix b/pkgs/by-name/rm/rmview/package.nix index 028ecc47bcee..c3dcc10cebc7 100644 --- a/pkgs/by-name/rm/rmview/package.nix +++ b/pkgs/by-name/rm/rmview/package.nix @@ -40,11 +40,11 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Fast live viewer for reMarkable 1 and 2"; mainProgram = "rmview"; homepage = "https://github.com/bordaigorl/rmview"; - license = licenses.gpl3Only; - maintainers = [ maintainers.nickhu ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.nickhu ]; }; } diff --git a/pkgs/by-name/rm/rmw/package.nix b/pkgs/by-name/rm/rmw/package.nix index 70d76cfe6463..f502134f6728 100644 --- a/pkgs/by-name/rm/rmw/package.nix +++ b/pkgs/by-name/rm/rmw/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { "-Dcanfigger:b_sanitize=none" ]; - meta = with lib; { + meta = { description = "Trashcan/ recycle bin utility for the command line"; homepage = "https://github.com/theimpossibleastronaut/rmw"; changelog = "https://github.com/theimpossibleastronaut/rmw/blob/${src.rev}/ChangeLog"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "rmw"; }; } diff --git a/pkgs/by-name/rn/rnnoise-plugin/package.nix b/pkgs/by-name/rn/rnnoise-plugin/package.nix index 5884b50b1f37..04224a747f7e 100644 --- a/pkgs/by-name/rn/rnnoise-plugin/package.nix +++ b/pkgs/by-name/rn/rnnoise-plugin/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Real-time noise suppression plugin for voice based on Xiph's RNNoise"; homepage = "https://github.com/werman/noise-suppression-for-voice"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ panaeon henrikolsson sciencentistguy diff --git a/pkgs/by-name/rn/rnp/package.nix b/pkgs/by-name/rn/rnp/package.nix index 770f2573d27f..360c0f591da4 100644 --- a/pkgs/by-name/rn/rnp/package.nix +++ b/pkgs/by-name/rn/rnp/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation (finalAttrs: { echo "v${finalAttrs.version}" > version.txt ''; - meta = with lib; { + meta = { homepage = "https://github.com/rnpgp/rnp"; description = "High performance C++ OpenPGP library, fully compliant to RFC 4880"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ ribose-jeffreylau ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ribose-jeffreylau ]; }; }) diff --git a/pkgs/by-name/rn/rnv/package.nix b/pkgs/by-name/rn/rnv/package.nix index 80e53c99370f..e875b8ee542f 100644 --- a/pkgs/by-name/rn/rnv/package.nix +++ b/pkgs/by-name/rn/rnv/package.nix @@ -16,10 +16,10 @@ stdenv.mkDerivation rec { buildInputs = [ expat ]; - meta = with lib; { + meta = { description = "Relax NG Compact Syntax validator"; homepage = "http://www.davidashen.net/rnv.html"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ro/roam-research/darwin.nix b/pkgs/by-name/ro/roam-research/darwin.nix index b7b2f5663f6f..b11afb88e8f4 100644 --- a/pkgs/by-name/ro/roam-research/darwin.nix +++ b/pkgs/by-name/ro/roam-research/darwin.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Note-taking tool for networked thought"; homepage = "https://roamresearch.com/"; maintainers = with lib.maintainers; [ dbalan ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-darwin" "aarch64-darwin" diff --git a/pkgs/by-name/ro/roam-research/linux.nix b/pkgs/by-name/ro/roam-research/linux.nix index bbf5274010c8..48a2f9aee6cc 100644 --- a/pkgs/by-name/ro/roam-research/linux.nix +++ b/pkgs/by-name/ro/roam-research/linux.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation rec { # autoPatchelfHook/patchelf are not used because they cause the binary to coredump. dontPatchELF = true; - meta = with lib; { + meta = { description = "Note-taking tool for networked thought"; homepage = "https://roamresearch.com/"; maintainers = with lib.maintainers; [ dbalan ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; mainProgram = "roam-research"; }; diff --git a/pkgs/by-name/ro/roapi-http/package.nix b/pkgs/by-name/ro/roapi-http/package.nix index 7ad954a2d343..97364da05734 100644 --- a/pkgs/by-name/ro/roapi-http/package.nix +++ b/pkgs/by-name/ro/roapi-http/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { cp roapi-http $out/bin ''; - meta = with lib; { + meta = { description = "Create full-fledged APIs for static datasets without writing a single line of code"; homepage = "https://roapi.github.io/docs/"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.darwin; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ro/robo3t/package.nix b/pkgs/by-name/ro/robo3t/package.nix index 784ecf6cb244..908532859156 100644 --- a/pkgs/by-name/ro/robo3t/package.nix +++ b/pkgs/by-name/ro/robo3t/package.nix @@ -91,13 +91,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://robomongo.org/"; description = "Query GUI for mongodb. Formerly called Robomongo"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl3Only; - maintainers = with maintainers; [ eperuffo ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ eperuffo ]; mainProgram = "robo3t"; }; } diff --git a/pkgs/by-name/ro/roboto-serif/package.nix b/pkgs/by-name/ro/roboto-serif/package.nix index 7a4bc9a186e9..d56d902adf47 100644 --- a/pkgs/by-name/ro/roboto-serif/package.nix +++ b/pkgs/by-name/ro/roboto-serif/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Roboto family of fonts"; longDescription = '' Google’s signature family of fonts, the default font on Android and @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation rec { Material Design. ''; homepage = "https://github.com/googlefonts/roboto-serif"; - license = licenses.ofl; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ro/roboto-slab/package.nix b/pkgs/by-name/ro/roboto-slab/package.nix index cd5c62bd4a7b..616e7d483d2a 100644 --- a/pkgs/by-name/ro/roboto-slab/package.nix +++ b/pkgs/by-name/ro/roboto-slab/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { outputHashMode = "recursive"; outputHash = "0g663npi5lkvwcqafd4cjrm90ph0nv1lig7d19xzfymnj47qpj8x"; - meta = with lib; { + meta = { homepage = "https://www.google.com/fonts/specimen/Roboto+Slab"; description = "Roboto Slab Typeface by Google"; longDescription = '' @@ -38,8 +38,8 @@ stdenv.mkDerivation { This is the Roboto Slab family, which can be used alongside the normal Roboto family and the Roboto Condensed family. ''; - license = licenses.asl20; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ro/robustirc-bridge/package.nix b/pkgs/by-name/ro/robustirc-bridge/package.nix index 32907b1894af..ecf30a33e49d 100644 --- a/pkgs/by-name/ro/robustirc-bridge/package.nix +++ b/pkgs/by-name/ro/robustirc-bridge/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { passthru.tests.robustirc-bridge = nixosTests.robustirc-bridge; - meta = with lib; { + meta = { description = "Bridge to robustirc.net-IRC-Network"; mainProgram = "robustirc-bridge"; homepage = "https://robustirc.net/"; - license = licenses.bsd3; - maintainers = [ maintainers.hax404 ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.hax404 ]; }; } diff --git a/pkgs/by-name/ro/roc-toolkit/package.nix b/pkgs/by-name/ro/roc-toolkit/package.nix index 0308cea3aa6b..c710c774bcdc 100644 --- a/pkgs/by-name/ro/roc-toolkit/package.nix +++ b/pkgs/by-name/ro/roc-toolkit/package.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lpthread"; }; - meta = with lib; { + meta = { description = "Roc is a toolkit for real-time audio streaming over the network"; homepage = "https://github.com/roc-streaming/roc-toolkit"; - license = licenses.mpl20; - maintainers = with maintainers; [ bgamari ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ bgamari ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ro/rockbox-utility/package.nix b/pkgs/by-name/ro/rockbox-utility/package.nix index bfec85d51546..78588f173249 100644 --- a/pkgs/by-name/ro/rockbox-utility/package.nix +++ b/pkgs/by-name/ro/rockbox-utility/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.rockbox.org"; description = "Open source firmware for digital music players"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ozkutuk ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ozkutuk ]; mainProgram = "RockboxUtility"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/rocketchat-desktop/package.nix b/pkgs/by-name/ro/rocketchat-desktop/package.nix index 9e2bd1b17046..3a8d10e7a6d0 100644 --- a/pkgs/by-name/ro/rocketchat-desktop/package.nix +++ b/pkgs/by-name/ro/rocketchat-desktop/package.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation rec { sed -i -e "s|Exec=.*$|Exec=$out/bin/rocketchat-desktop|" $out/share/applications/rocketchat-desktop.desktop ''; - meta = with lib; { + meta = { description = "Official Desktop client for Rocket.Chat"; mainProgram = "rocketchat-desktop"; homepage = "https://github.com/RocketChat/Rocket.Chat.Electron"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ro/rocksdb/package.nix b/pkgs/by-name/ro/rocksdb/package.nix index afe4605818ea..895d4bae952d 100644 --- a/pkgs/by-name/ro/rocksdb/package.nix +++ b/pkgs/by-name/ro/rocksdb/package.nix @@ -115,13 +115,13 @@ stdenv.mkDerivation (finalAttrs: { fi ''; - meta = with lib; { + meta = { homepage = "https://rocksdb.org"; description = "Library that provides an embeddable, persistent key-value store for fast storage"; changelog = "https://github.com/facebook/rocksdb/raw/v${finalAttrs.version}/HISTORY.md"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ adev ]; }; diff --git a/pkgs/by-name/ro/rofi-blezz/package.nix b/pkgs/by-name/ro/rofi-blezz/package.nix index 65908a2fe9c1..9e2fc32da9c4 100644 --- a/pkgs/by-name/ro/rofi-blezz/package.nix +++ b/pkgs/by-name/ro/rofi-blezz/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { rofi-unwrapped ]; - meta = with lib; { + meta = { description = "Plugin for rofi that emulates blezz behaviour"; homepage = "https://github.com/davatorium/rofi-blezz"; - license = licenses.mit; - maintainers = with maintainers; [ johnjohnstone ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ johnjohnstone ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/rofi-calc/package.nix b/pkgs/by-name/ro/rofi-calc/package.nix index be8e7838038c..0e95bea10435 100644 --- a/pkgs/by-name/ro/rofi-calc/package.nix +++ b/pkgs/by-name/ro/rofi-calc/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { "'$out/lib/rofi'" ''; - meta = with lib; { + meta = { description = "Do live calculations in rofi"; homepage = "https://github.com/svenstaro/rofi-calc"; - license = licenses.mit; - maintainers = with maintainers; [ albakham ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ albakham ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ro/rofi-file-browser/package.nix b/pkgs/by-name/ro/rofi-file-browser/package.nix index 280af2b819d5..a11e376845ec 100644 --- a/pkgs/by-name/ro/rofi-file-browser/package.nix +++ b/pkgs/by-name/ro/rofi-file-browser/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { dontUseCmakeBuildDir = true; - meta = with lib; { + meta = { description = "Use rofi to quickly open files"; homepage = "https://github.com/marvinkreis/rofi-file-browser-extended"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bew jluttine ]; diff --git a/pkgs/by-name/ro/rofi-menugen/package.nix b/pkgs/by-name/ro/rofi-menugen/package.nix index 46e4f52b88a0..2b5ac7ed0281 100644 --- a/pkgs/by-name/ro/rofi-menugen/package.nix +++ b/pkgs/by-name/ro/rofi-menugen/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation { cp menugenbase $out/bin/rofi-menugenbase ''; - meta = with lib; { + meta = { description = "Generates menu based applications using rofi"; homepage = "https://github.com/octotep/menugen"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ro/rofi-mpd/package.nix b/pkgs/by-name/ro/rofi-mpd/package.nix index 7fa82ef3b53a..fa2e3181d656 100644 --- a/pkgs/by-name/ro/rofi-mpd/package.nix +++ b/pkgs/by-name/ro/rofi-mpd/package.nix @@ -28,12 +28,12 @@ python3Packages.buildPythonApplication rec { # upstream doesn't contain a test suite doCheck = false; - meta = with lib; { + meta = { description = "Rofi menu for interacting with MPD written in Python"; mainProgram = "rofi-mpd"; homepage = "https://github.com/JakeStanger/Rofi_MPD"; - license = licenses.mit; - maintainers = with maintainers; [ jakestanger ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakestanger ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ro/rofi-power-menu/package.nix b/pkgs/by-name/ro/rofi-power-menu/package.nix index 6746cfdbf4ca..ef79772cdbba 100644 --- a/pkgs/by-name/ro/rofi-power-menu/package.nix +++ b/pkgs/by-name/ro/rofi-power-menu/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { cp dmenu-power-menu $out/bin/dmenu-power-menu ''; - meta = with lib; { + meta = { description = "Shows a Power/Lock menu with Rofi"; homepage = "https://github.com/jluttine/rofi-power-menu"; - maintainers = with maintainers; [ ikervagyok ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ikervagyok ]; + platforms = lib.platforms.linux; mainProgram = "rofi-power-menu"; }; } diff --git a/pkgs/by-name/ro/rofi-pulse-select/package.nix b/pkgs/by-name/ro/rofi-pulse-select/package.nix index 977675a3c5dd..5068665b48b1 100644 --- a/pkgs/by-name/ro/rofi-pulse-select/package.nix +++ b/pkgs/by-name/ro/rofi-pulse-select/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; - meta = with lib; { + meta = { description = "Rofi-based interface to select source/sink (aka input/output) with PulseAudio"; mainProgram = "rofi-pulse-select"; homepage = "https://gitlab.com/DamienCassou/rofi-pulse-select"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ DamienCassou ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ DamienCassou ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/rofi-top/package.nix b/pkgs/by-name/ro/rofi-top/package.nix index d9566115aa63..1b25e706961c 100644 --- a/pkgs/by-name/ro/rofi-top/package.nix +++ b/pkgs/by-name/ro/rofi-top/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { rofi-unwrapped ]; - meta = with lib; { + meta = { description = "Plugin for rofi that emulates top behaviour"; homepage = "https://github.com/davatorium/rofi-top"; - license = licenses.mit; - maintainers = with maintainers; [ aacebedo ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aacebedo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/rofi-vpn/package.nix b/pkgs/by-name/ro/rofi-vpn/package.nix index 28f3dd6ae167..cce0532f4a21 100644 --- a/pkgs/by-name/ro/rofi-vpn/package.nix +++ b/pkgs/by-name/ro/rofi-vpn/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; - meta = with lib; { + meta = { description = "Rofi-based interface to enable VPN connections with NetworkManager"; homepage = "https://gitlab.com/DamienCassou/rofi-vpn"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ DamienCassou ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ DamienCassou ]; + platforms = lib.platforms.linux; mainProgram = "rofi-vpn"; }; } diff --git a/pkgs/by-name/ro/rolespec/package.nix b/pkgs/by-name/ro/rolespec/package.nix index 9960940f7a21..946c26d67008 100644 --- a/pkgs/by-name/ro/rolespec/package.nix +++ b/pkgs/by-name/ro/rolespec/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { dontPatchELF = true; dontStrip = true; - meta = with lib; { + meta = { homepage = "https://github.com/nickjj/rolespec"; description = "Test library for testing Ansible roles"; mainProgram = "rolespec"; @@ -45,8 +45,8 @@ stdenv.mkDerivation { Travis-CI. ''; downloadPage = "https://github.com/nickjj/rolespec"; - license = licenses.gpl3; - maintainers = [ maintainers.dochang ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.dochang ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ro/romdirfs/package.nix b/pkgs/by-name/ro/romdirfs/package.nix index 11ef69a039e6..444b70accec6 100644 --- a/pkgs/by-name/ro/romdirfs/package.nix +++ b/pkgs/by-name/ro/romdirfs/package.nix @@ -29,11 +29,11 @@ gccStdenv.mkDerivation rec { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "FUSE for access Playstation 2 IOP IOPRP images and BIOS dumps"; homepage = "https://github.com/mlafeldt/romdirfs"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "romdirfs"; }; diff --git a/pkgs/by-name/ro/ronin/package.nix b/pkgs/by-name/ro/ronin/package.nix index de85e6926b3e..e19c0ac95b84 100644 --- a/pkgs/by-name/ro/ronin/package.nix +++ b/pkgs/by-name/ro/ronin/package.nix @@ -37,10 +37,10 @@ bundlerEnv rec { version = "ronin ${version}"; }; - meta = with lib; { + meta = { description = "Free and Open Source Ruby toolkit for security research and development"; homepage = "https://ronin-rb.dev"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ Ch1keen ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ Ch1keen ]; }; } diff --git a/pkgs/by-name/ro/ronn/package.nix b/pkgs/by-name/ro/ronn/package.nix index 4a2fae465f53..86c1660e8bb7 100644 --- a/pkgs/by-name/ro/ronn/package.nix +++ b/pkgs/by-name/ro/ronn/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { passthru.tests.reproducible-html-manpage = callPackage ./test-reproducible-html.nix { }; - meta = with lib; { + meta = { description = "Markdown-based tool for building manpages"; mainProgram = "ronn"; homepage = "https://github.com/apjanke/ronn-ng"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm nicknovitski ]; diff --git a/pkgs/by-name/ro/roogle/package.nix b/pkgs/by-name/ro/roogle/package.nix index ccc528f98baf..71093d77692a 100644 --- a/pkgs/by-name/ro/roogle/package.nix +++ b/pkgs/by-name/ro/roogle/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-lmRo6Q67hJ3hv0jQt6epiNOckRv0rA0a0DNEKIdDoUE="; - meta = with lib; { + meta = { description = "Rust API search engine which allows you to search functions by names and type signatures"; mainProgram = "roogle"; homepage = "https://github.com/hkmatsumoto/roogle"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/ro/roomeqwizard/package.nix b/pkgs/by-name/ro/roomeqwizard/package.nix index ed8e32743db7..7b1a63fb7685 100644 --- a/pkgs/by-name/ro/roomeqwizard/package.nix +++ b/pkgs/by-name/ro/roomeqwizard/package.nix @@ -113,11 +113,11 @@ stdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { homepage = "https://www.roomeqwizard.com/"; - license = licenses.unfree; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zaninime ]; description = "Room Acoustics Software"; diff --git a/pkgs/by-name/ro/roon-bridge/package.nix b/pkgs/by-name/ro/roon-bridge/package.nix index 3e34874f0399..5f90d35812f8 100644 --- a/pkgs/by-name/ro/roon-bridge/package.nix +++ b/pkgs/by-name/ro/roon-bridge/package.nix @@ -93,13 +93,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Music player for music lovers"; changelog = "https://community.roonlabs.com/c/roon/software-release-notes/18"; homepage = "https://roonlabs.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ lovesegfault ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ lovesegfault ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/ro/roon-server/package.nix b/pkgs/by-name/ro/roon-server/package.nix index efbbe77a34d8..800755bfd397 100644 --- a/pkgs/by-name/ro/roon-server/package.nix +++ b/pkgs/by-name/ro/roon-server/package.nix @@ -105,13 +105,13 @@ stdenv.mkDerivation { ''; passthru.updateScript = ./update.py; - meta = with lib; { + meta = { description = "Music player for music lovers"; changelog = "https://community.roonlabs.com/c/roon/software-release-notes/18"; homepage = "https://roonlabs.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ lovesegfault steell ramblurr diff --git a/pkgs/by-name/ro/root/package.nix b/pkgs/by-name/ro/root/package.nix index a4d71596b5b9..554884b99602 100644 --- a/pkgs/by-name/ro/root/package.nix +++ b/pkgs/by-name/ro/root/package.nix @@ -226,14 +226,14 @@ stdenv.mkDerivation (finalAttrs: { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { homepage = "https://root.cern/"; description = "Data analysis framework"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ - maintainers.guitargeek - maintainers.veprbl + lib.maintainers.guitargeek + lib.maintainers.veprbl ]; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; }) diff --git a/pkgs/by-name/ro/root/tests/test-thisroot.nix b/pkgs/by-name/ro/root/tests/test-thisroot.nix index 9927d312d90d..9a7b7446d5ec 100644 --- a/pkgs/by-name/ro/root/tests/test-thisroot.nix +++ b/pkgs/by-name/ro/root/tests/test-thisroot.nix @@ -11,7 +11,7 @@ runCommand "test-thisroot" { meta = with lib; { description = "Test for root thisroot.* sourcing"; - maintainers = unique ((with maintainers; [ ShamrockLee ]) ++ root.meta.maintainers); + maintainers = unique ((with lib.maintainers; [ ShamrockLee ]) ++ root.meta.maintainers); }; } '' diff --git a/pkgs/by-name/ro/rootbar/package.nix b/pkgs/by-name/ro/rootbar/package.nix index ffb12d18df47..9b0fc884bef4 100644 --- a/pkgs/by-name/ro/rootbar/package.nix +++ b/pkgs/by-name/ro/rootbar/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { wayland ]; - meta = with lib; { + meta = { homepage = "https://hg.sr.ht/~scoopta/rootbar"; description = "Bar for Wayland WMs"; mainProgram = "rootbar"; @@ -44,9 +44,9 @@ stdenv.mkDerivation { Root Bar is a bar for wlroots based wayland compositors such as sway and was designed to address the lack of good bars for wayland. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/ro/rootlesskit/package.nix b/pkgs/by-name/ro/rootlesskit/package.nix index bdf7759140c9..b8e8376aaf41 100644 --- a/pkgs/by-name/ro/rootlesskit/package.nix +++ b/pkgs/by-name/ro/rootlesskit/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { tests = nixosTests.docker-rootless; }; - meta = with lib; { + meta = { homepage = "https://github.com/rootless-containers/rootlesskit"; description = ''Kind of Linux-native "fake root" utility, made for mainly running Docker and Kubernetes as an unprivileged user''; - license = licenses.asl20; - maintainers = with maintainers; [ offline ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/rosa/package.nix b/pkgs/by-name/ro/rosa/package.nix index b93e0f83ebc2..9ae4e0dcb08c 100644 --- a/pkgs/by-name/ro/rosa/package.nix +++ b/pkgs/by-name/ro/rosa/package.nix @@ -58,10 +58,10 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "CLI for the Red Hat OpenShift Service on AWS"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/openshift/rosa"; - maintainers = with maintainers; [ jfchevrette ]; + maintainers = with lib.maintainers; [ jfchevrette ]; }; } diff --git a/pkgs/by-name/ro/rose-pine-cursor/package.nix b/pkgs/by-name/ro/rose-pine-cursor/package.nix index d29bbc9888d6..9978ec5e3a94 100644 --- a/pkgs/by-name/ro/rose-pine-cursor/package.nix +++ b/pkgs/by-name/ro/rose-pine-cursor/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Soho vibes for Cursors"; downloadPage = "https://github.com/rose-pine/cursor/releases"; homepage = "https://rosepinetheme.com/"; - license = licenses.gpl3; - maintainers = with maintainers; [ aikooo7 ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ aikooo7 ]; }; }) diff --git a/pkgs/by-name/ro/rose-pine-gtk-theme/package.nix b/pkgs/by-name/ro/rose-pine-gtk-theme/package.nix index bdc2a459b3c2..257d53272766 100644 --- a/pkgs/by-name/ro/rose-pine-gtk-theme/package.nix +++ b/pkgs/by-name/ro/rose-pine-gtk-theme/package.nix @@ -44,12 +44,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Rosé Pine theme for GTK"; homepage = "https://github.com/rose-pine/gtk"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo the-argus ]; diff --git a/pkgs/by-name/ro/rose-pine-icon-theme/package.nix b/pkgs/by-name/ro/rose-pine-icon-theme/package.nix index 45ea47cff29a..1319ad938193 100644 --- a/pkgs/by-name/ro/rose-pine-icon-theme/package.nix +++ b/pkgs/by-name/ro/rose-pine-icon-theme/package.nix @@ -38,12 +38,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Rosé Pine icon theme for GTK"; homepage = "https://github.com/rose-pine/gtk"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo the-argus ]; diff --git a/pkgs/by-name/ro/rosegarden/package.nix b/pkgs/by-name/ro/rosegarden/package.nix index eea5928db436..7ebd6ac1b668 100644 --- a/pkgs/by-name/ro/rosegarden/package.nix +++ b/pkgs/by-name/ro/rosegarden/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { "-DLILV_INCLUDE_DIR=${lilv.dev}/include/lilv-0" ]; - meta = with lib; { + meta = { homepage = "https://www.rosegardenmusic.com/"; description = "Music composition and editing environment"; mainProgram = "rosegarden"; @@ -92,8 +92,8 @@ stdenv.mkDerivation rec { ideal for composers, musicians, music students, and small studio or home recording environments. ''; - maintainers = with maintainers; [ lebastr ]; - license = licenses.lgpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lebastr ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/rosie/package.nix b/pkgs/by-name/ro/rosie/package.nix index 5330b757686e..48aaf35dfb68 100644 --- a/pkgs/by-name/ro/rosie/package.nix +++ b/pkgs/by-name/ro/rosie/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { readline ]; - meta = with lib; { + meta = { homepage = "https://rosie-lang.org"; description = "Tools for searching using parsing expression grammars"; mainProgram = "rosie"; - license = licenses.mit; - maintainers = with maintainers; [ kovirobi ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kovirobi ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/ro/roslyn/package.nix b/pkgs/by-name/ro/roslyn/package.nix index 032b9c68fe01..f4cb2dce61ba 100644 --- a/pkgs/by-name/ro/roslyn/package.nix +++ b/pkgs/by-name/ro/roslyn/package.nix @@ -78,11 +78,11 @@ buildDotnetModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = ".NET C# and Visual Basic compiler"; homepage = "https://github.com/dotnet/roslyn"; mainProgram = "csc"; - license = licenses.mit; - maintainers = with maintainers; [ corngood ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ corngood ]; }; } diff --git a/pkgs/by-name/ro/rot8/package.nix b/pkgs/by-name/ro/rot8/package.nix index 1c424d7a0f90..2fd36fb2f4a4 100644 --- a/pkgs/by-name/ro/rot8/package.nix +++ b/pkgs/by-name/ro/rot8/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-MZz8IZDux9VEDDLQjkT96smNsygY1vYG2QBw3Q09hqw="; - meta = with lib; { + meta = { description = "Screen rotation daemon for X11 and wlroots"; homepage = "https://github.com/efernau/rot8"; - license = licenses.mit; - maintainers = [ maintainers.smona ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.smona ]; mainProgram = "rot8"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/rotate-backups/package.nix b/pkgs/by-name/ro/rotate-backups/package.nix index 83b25bba211d..83a735823516 100644 --- a/pkgs/by-name/ro/rotate-backups/package.nix +++ b/pkgs/by-name/ro/rotate-backups/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication rec { "test_removal_command" ]; - meta = with lib; { + meta = { description = "Simple command line interface for backup rotation"; mainProgram = "rotate-backups"; homepage = "https://github.com/xolox/python-rotate-backups"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/by-name/ro/rotp/package.nix b/pkgs/by-name/ro/rotp/package.nix index 8240ec58fd11..171eb688bdcc 100644 --- a/pkgs/by-name/ro/rotp/package.nix +++ b/pkgs/by-name/ro/rotp/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = ''Open-source modernization of the 1993 classic "Master of Orion", written in Java''; homepage = "https://www.remnantsoftheprecursors.com/"; # See LICENSE file in source repo for more details. - license = with licenses; [ + license = with lib.licenses; [ # All java files created by Ray Fowler: gpl3Only @@ -91,7 +91,7 @@ stdenv.mkDerivation { cc-by-nc-nd-40 ]; - maintainers = with maintainers; [ jtrees ]; + maintainers = with lib.maintainers; [ jtrees ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ro/round/package.nix b/pkgs/by-name/ro/round/package.nix index 8e14274f264a..c174633fd86d 100644 --- a/pkgs/by-name/ro/round/package.nix +++ b/pkgs/by-name/ro/round/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "CLI tool for rounding images"; homepage = "https://github.com/mingrammer/round"; - license = licenses.mit; - maintainers = with maintainers; [ addict3d ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ addict3d ]; mainProgram = "round"; }; } diff --git a/pkgs/by-name/ro/rounded-mgenplus/package.nix b/pkgs/by-name/ro/rounded-mgenplus/package.nix index 4fa521cf7987..0d3d6f55119f 100644 --- a/pkgs/by-name/ro/rounded-mgenplus/package.nix +++ b/pkgs/by-name/ro/rounded-mgenplus/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Japanese font based on Rounded M+ and Noto Sans Japanese"; homepage = "http://jikasei.me/font/rounded-mgenplus/"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ mnacamura ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mnacamura ]; }; } diff --git a/pkgs/by-name/ro/roundup/package.nix b/pkgs/by-name/ro/roundup/package.nix index 743b224c07fa..0a6b079bfa54 100644 --- a/pkgs/by-name/ro/roundup/package.nix +++ b/pkgs/by-name/ro/roundup/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Unit testing tool for running test plans which are written in any POSIX shell"; homepage = "http://bmizerany.github.io/roundup/"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.all; mainProgram = "roundup"; }; } diff --git a/pkgs/by-name/ro/route159/package.nix b/pkgs/by-name/ro/route159/package.nix index 21b3d4c374c0..a95a02085b06 100644 --- a/pkgs/by-name/ro/route159/package.nix +++ b/pkgs/by-name/ro/route159/package.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/route159/"; description = "Weighted sans serif font"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.ofl; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/ro/routedns/package.nix b/pkgs/by-name/ro/routedns/package.nix index 434491ae88be..e744b20c5cbc 100644 --- a/pkgs/by-name/ro/routedns/package.nix +++ b/pkgs/by-name/ro/routedns/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/folbricht/routedns"; description = "DNS stub resolver, proxy and router"; - license = licenses.bsd3; - maintainers = with maintainers; [ jsimonetti ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jsimonetti ]; mainProgram = "routedns"; }; } diff --git a/pkgs/by-name/ro/router/package.nix b/pkgs/by-name/ro/router/package.nix index 6a7205b293b0..34820633cdc7 100644 --- a/pkgs/by-name/ro/router/package.nix +++ b/pkgs/by-name/ro/router/package.nix @@ -48,10 +48,10 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = router; }; }; - meta = with lib; { + meta = { description = "Configurable, high-performance routing runtime for Apollo Federation"; homepage = "https://www.apollographql.com/docs/router/"; - license = licenses.elastic20; - maintainers = [ maintainers.bbigras ]; + license = lib.licenses.elastic20; + maintainers = [ lib.maintainers.bbigras ]; }; } diff --git a/pkgs/by-name/ro/routino/package.nix b/pkgs/by-name/ro/routino/package.nix index a40a2397f8a7..be17d1137b3e 100644 --- a/pkgs/by-name/ro/routino/package.nix +++ b/pkgs/by-name/ro/routino/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { homepage = "http://www.routino.org/"; changelog = "http://routino.org/software/NEWS.txt"; description = "OpenStreetMap Routing Software"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ dotlambda ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/ro/rover/package.nix b/pkgs/by-name/ro/rover/package.nix index 45cce26e5cf6..1c720a0c5449 100644 --- a/pkgs/by-name/ro/rover/package.nix +++ b/pkgs/by-name/ro/rover/package.nix @@ -47,14 +47,14 @@ rustPlatform.buildRustPackage rec { export APOLLO_CONFIG_HOME="$PWD" ''; - meta = with lib; { + meta = { description = "CLI for interacting with ApolloGraphQL's developer tooling, including managing self-hosted and GraphOS graphs"; mainProgram = "rover"; homepage = "https://www.apollographql.com/docs/rover"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ - maintainers.ivanbrennan - maintainers.aaronarinder + lib.maintainers.ivanbrennan + lib.maintainers.aaronarinder ]; }; } diff --git a/pkgs/by-name/ro/rowhammer-test/package.nix b/pkgs/by-name/ro/rowhammer-test/package.nix index f822442f04f1..a12d081392ef 100644 --- a/pkgs/by-name/ro/rowhammer-test/package.nix +++ b/pkgs/by-name/ro/rowhammer-test/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation { cp rowhammer_test double_sided_rowhammer $out/bin ''; - meta = with lib; { + meta = { description = "Test DRAM for bit flips caused by the rowhammer problem"; homepage = "https://github.com/google/rowhammer-test"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/ro/rox-filer/package.nix b/pkgs/by-name/ro/rox-filer/package.nix index 841e70157316..e79eaa30b111 100644 --- a/pkgs/by-name/ro/rox-filer/package.nix +++ b/pkgs/by-name/ro/rox-filer/package.nix @@ -94,15 +94,15 @@ stdenv.mkDerivation rec { ln -sv application-{msword,rtf}.png ''; - meta = with lib; { + meta = { description = "Fast, lightweight, gtk2 file manager"; mainProgram = "rox"; homepage = "http://rox.sourceforge.net/desktop"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl2 ]; - platforms = platforms.linux; - maintainers = [ maintainers.eleanor ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.eleanor ]; }; } diff --git a/pkgs/by-name/ro/roxctl/package.nix b/pkgs/by-name/ro/roxctl/package.nix index cb02941414bb..1169004bbe51 100644 --- a/pkgs/by-name/ro/roxctl/package.nix +++ b/pkgs/by-name/ro/roxctl/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { command = "roxctl version"; }; - meta = with lib; { + meta = { description = "Command-line client of the StackRox Kubernetes Security Platform"; mainProgram = "roxctl"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://www.stackrox.io"; - maintainers = with maintainers; [ stehessel ]; + maintainers = with lib.maintainers; [ stehessel ]; }; } diff --git a/pkgs/by-name/rp/rp/package.nix b/pkgs/by-name/rp/rp/package.nix index f9c0e9e61989..a27e0680a4bc 100644 --- a/pkgs/by-name/rp/rp/package.nix +++ b/pkgs/by-name/rp/rp/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { cp rp-${if stdenv.hostPlatform.isDarwin then "osx" else "lin"} $out/bin/rp ''; - meta = with lib; { + meta = { description = "Fast C++ ROP gadget finder for PE/ELF/Mach-O x86/x64/ARM/ARM64 binaries"; homepage = "https://github.com/0vercl0k/rp"; - license = licenses.mit; - maintainers = with maintainers; [ sportshead ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sportshead ]; + platforms = lib.platforms.all; mainProgram = "rp"; }; } diff --git a/pkgs/by-name/rp/rpPPPoE/package.nix b/pkgs/by-name/rp/rpPPPoE/package.nix index 398fd919c80a..926a19acb160 100644 --- a/pkgs/by-name/rp/rpPPPoE/package.nix +++ b/pkgs/by-name/rp/rpPPPoE/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { makeFlags = [ "AR:=$(AR)" ]; - meta = with lib; { + meta = { description = "Roaring Penguin Point-to-Point over Ethernet tool"; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "https://github.com/dfskoll/rp-pppoe"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ DictXiong ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ DictXiong ]; }; } diff --git a/pkgs/by-name/rp/rpcbind/package.nix b/pkgs/by-name/rp/rpcbind/package.nix index 41cf39e44269..4ecf858d9e16 100644 --- a/pkgs/by-name/rp/rpcbind/package.nix +++ b/pkgs/by-name/rp/rpcbind/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { description = "ONC RPC portmapper"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; homepage = "https://linux-nfs.org/"; maintainers = [ ]; longDescription = '' diff --git a/pkgs/by-name/rp/rpcs3/package.nix b/pkgs/by-name/rp/rpcs3/package.nix index 4fea7834c994..850b25968ca2 100644 --- a/pkgs/by-name/rp/rpcs3/package.nix +++ b/pkgs/by-name/rp/rpcs3/package.nix @@ -170,13 +170,13 @@ stdenv.mkDerivation (finalAttrs: { install -D ${./99-dualsense-controllers.rules} $out/etc/udev/rules.d/99-dualsense-controllers.rules ''; - meta = with lib; { + meta = { description = "PS3 emulator/debugger"; homepage = "https://rpcs3.net/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ilian ]; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/rp/rpcsvc-proto/package.nix b/pkgs/by-name/rp/rpcsvc-proto/package.nix index f94f31eb3e4a..1fd700d039d7 100644 --- a/pkgs/by-name/rp/rpcsvc-proto/package.nix +++ b/pkgs/by-name/rp/rpcsvc-proto/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { --replace '$(top_builddir)/rpcgen/rpcgen' '${buildPackages.rpcsvc-proto}/bin/rpcgen' ''; - meta = with lib; { + meta = { homepage = "https://github.com/thkukuk/rpcsvc-proto"; description = "This package contains rpcsvc proto.x files from glibc, which are missing in libtirpc"; longDescription = '' @@ -57,8 +57,8 @@ stdenv.mkDerivation rec { (https://sourceware.org/pipermail/libc-announce/2020/000029.html) recommend to use `libtirpc` and this package instead. ''; - license = licenses.mit; - maintainers = with maintainers; [ ma27 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ma27 ]; mainProgram = "rpcgen"; }; } diff --git a/pkgs/by-name/rp/rpg-cli/package.nix b/pkgs/by-name/rp/rpg-cli/package.nix index 1708a41c5515..99ebdeaece1f 100644 --- a/pkgs/by-name/rp/rpg-cli/package.nix +++ b/pkgs/by-name/rp/rpg-cli/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { # tests assume the authors macbook, and thus fail doCheck = false; - meta = with lib; { + meta = { description = "Your filesystem as a dungeon"; mainProgram = "rpg-cli"; homepage = "https://github.com/facundoolano/rpg-cli"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/rp/rpiplay/package.nix b/pkgs/by-name/rp/rpiplay/package.nix index 9080106042e9..afc6189da9b4 100644 --- a/pkgs/by-name/rp/rpiplay/package.nix +++ b/pkgs/by-name/rp/rpiplay/package.nix @@ -57,13 +57,13 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 3.4.1)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/FD-/RPiPlay"; description = "Open-source implementation of an AirPlay mirroring server"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "rpiplay"; }; } diff --git a/pkgs/by-name/rp/rpl/package.nix b/pkgs/by-name/rp/rpl/package.nix index fda6bca8cf2e..c6509b854014 100644 --- a/pkgs/by-name/rp/rpl/package.nix +++ b/pkgs/by-name/rp/rpl/package.nix @@ -31,11 +31,11 @@ python3Packages.buildPythonApplication rec { python3Packages.regex ]; - meta = with lib; { + meta = { description = "Replace strings in files"; mainProgram = "rpl"; homepage = "https://github.com/rrthomas/rpl"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ cbley ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ cbley ]; }; } diff --git a/pkgs/by-name/rp/rpm-ostree/package.nix b/pkgs/by-name/rp/rpm-ostree/package.nix index 6296b13f56db..8f6e7d9e940d 100644 --- a/pkgs/by-name/rp/rpm-ostree/package.nix +++ b/pkgs/by-name/rp/rpm-ostree/package.nix @@ -121,12 +121,12 @@ stdenv.mkDerivation rec { env NOCONFIGURE=1 ./autogen.sh ''; - meta = with lib; { + meta = { description = "Hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; homepage = "https://coreos.github.io/rpm-ostree/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "rpm-ostree"; }; } diff --git a/pkgs/by-name/rp/rpm2targz/package.nix b/pkgs/by-name/rp/rpm2targz/package.nix index 9914bc433dbe..81b247b0cca0 100644 --- a/pkgs/by-name/rp/rpm2targz/package.nix +++ b/pkgs/by-name/rp/rpm2targz/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Convert a .rpm file to a .tar.gz archive"; homepage = "http://slackware.com/config/packages.php"; - license = licenses.bsd1; + license = lib.licenses.bsd1; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rp/rpmextract/package.nix b/pkgs/by-name/rp/rpmextract/package.nix index e728473e5df4..d161f6f55c7a 100644 --- a/pkgs/by-name/rp/rpmextract/package.nix +++ b/pkgs/by-name/rp/rpmextract/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Script to extract RPM archives"; - platforms = platforms.all; - license = licenses.gpl2Only; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; maintainers = [ ]; mainProgram = "rpmextract"; }; diff --git a/pkgs/by-name/rr/rrdtool/package.nix b/pkgs/by-name/rr/rrdtool/package.nix index cf4440cc624a..a01fa89b7436 100644 --- a/pkgs/by-name/rr/rrdtool/package.nix +++ b/pkgs/by-name/rr/rrdtool/package.nix @@ -55,12 +55,12 @@ perl.pkgs.toPerlModule ( mv $out/lib/perl/5* $out/${perl.libPrefix} ''; - meta = with lib; { + meta = { homepage = "https://oss.oetiker.ch/rrdtool/"; description = "High performance logging in Round Robin Databases"; - license = licenses.gpl2Only; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ pSub ]; }; } ) diff --git a/pkgs/by-name/rr/rrootage/package.nix b/pkgs/by-name/rr/rrootage/package.nix index 7d0813df2e37..a3962c06b48c 100644 --- a/pkgs/by-name/rr/rrootage/package.nix +++ b/pkgs/by-name/rr/rrootage/package.nix @@ -77,11 +77,11 @@ stdenv.mkDerivation { install -m 644 readme_linux "$out"/share/doc/rrootage/README ''; - meta = with lib; { + meta = { description = "Abstract shooter created by Kenta Cho"; mainProgram = "rrootage"; homepage = "https://rrootage.sourceforge.net/"; - license = licenses.bsd2; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/rs/rs-tftpd/package.nix b/pkgs/by-name/rs/rs-tftpd/package.nix index 470144126d92..8e3786f84fc5 100644 --- a/pkgs/by-name/rs/rs-tftpd/package.nix +++ b/pkgs/by-name/rs/rs-tftpd/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "TFTP Server Daemon implemented in Rust"; homepage = "https://github.com/altugbakan/rs-tftpd"; changelog = "https://github.com/altugbakan/rs-tftpd/releases/tag/${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ adamcstephens matthewcroughan ]; diff --git a/pkgs/by-name/rs/rsbep/package.nix b/pkgs/by-name/rs/rsbep/package.nix index 0327871f807e..ada9a9991005 100644 --- a/pkgs/by-name/rs/rsbep/package.nix +++ b/pkgs/by-name/rs/rsbep/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { diff -u input output ''; - meta = with lib; { + meta = { description = "Create resilient backups with Reed-Solomon error correction and byte-spreading"; homepage = "https://www.thanassis.space/rsbep.html"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.erikarvstedt ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.erikarvstedt ]; }; } diff --git a/pkgs/by-name/rs/rsclock/package.nix b/pkgs/by-name/rs/rsclock/package.nix index c852ab1d0c76..75972f5e4810 100644 --- a/pkgs/by-name/rs/rsclock/package.nix +++ b/pkgs/by-name/rs/rsclock/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Bnec98FEG2aWUa2IoBOLy0K6mqggcSwOBL3S5+0mSkU="; - meta = with lib; { + meta = { description = "Simple terminal clock written in Rust"; homepage = "https://github.com/valebes/rsClock"; - license = licenses.mit; - maintainers = with maintainers; [ valebes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ valebes ]; mainProgram = "rsclock"; }; } diff --git a/pkgs/by-name/rs/rscw/package.nix b/pkgs/by-name/rs/rscw/package.nix index 1945db62b917..916e0360df23 100644 --- a/pkgs/by-name/rs/rscw/package.nix +++ b/pkgs/by-name/rs/rscw/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { install -D -m 0755 rscwx $out/bin/rscwx ''; - meta = with lib; { + meta = { description = "Receive CW through the soundcard"; homepage = "https://www.pa3fwm.nl/software/rscw/"; - license = licenses.gpl2; - maintainers = with maintainers; [ earldouglas ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ earldouglas ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/rs/rshijack/package.nix b/pkgs/by-name/rs/rshijack/package.nix index 67f72234c951..480f00138014 100644 --- a/pkgs/by-name/rs/rshijack/package.nix +++ b/pkgs/by-name/rs/rshijack/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-wRy+bSi6XxbbvxqE5PFWs4xW1zfkvTHyyGgRZCOU7cY="; - meta = with lib; { + meta = { description = "TCP connection hijacker"; homepage = "https://github.com/kpcyrd/rshijack"; - license = licenses.gpl3; - maintainers = with maintainers; [ xrelkd ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ xrelkd ]; + platforms = lib.platforms.unix; mainProgram = "rshijack"; }; } diff --git a/pkgs/by-name/rs/rshim-user-space/package.nix b/pkgs/by-name/rs/rshim-user-space/package.nix index 7f83843ff003..bf6aa8541f39 100644 --- a/pkgs/by-name/rs/rshim-user-space/package.nix +++ b/pkgs/by-name/rs/rshim-user-space/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "User-space rshim driver for the BlueField SoC"; longDescription = '' The rshim driver provides a way to access the rshim resources on the @@ -102,9 +102,9 @@ stdenv.mkDerivation rec { target and provides a way to access the internal rshim registers. ''; homepage = "https://github.com/Mellanox/rshim-user-space"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thillux ]; }; diff --git a/pkgs/by-name/rs/rsign2/package.nix b/pkgs/by-name/rs/rsign2/package.nix index 20c8ec331bf4..97e3d174c71a 100644 --- a/pkgs/by-name/rs/rsign2/package.nix +++ b/pkgs/by-name/rs/rsign2/package.nix @@ -15,10 +15,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pVEv7FST/jm4YNoU8T48/an2MsqboHXc+PMPYf13pKQ="; - meta = with lib; { + meta = { description = "Command-line tool to sign files and verify signatures"; homepage = "https://github.com/jedisct1/rsign2"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "rsign"; }; diff --git a/pkgs/by-name/rs/rslint/package.nix b/pkgs/by-name/rs/rslint/package.nix index bb0d7306b430..faa284c94b3e 100644 --- a/pkgs/by-name/rs/rslint/package.nix +++ b/pkgs/by-name/rs/rslint/package.nix @@ -29,10 +29,10 @@ rustPlatform.buildRustPackage rec { ./fix-rustc-1.89-compatibility.patch ]; - meta = with lib; { + meta = { description = "Fast, customizable, and easy to use JavaScript and TypeScript linter"; homepage = "https://rslint.org"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/rs/rsmangler/package.nix b/pkgs/by-name/rs/rsmangler/package.nix index 32b0e65677ed..31aa87e7c445 100644 --- a/pkgs/by-name/rs/rsmangler/package.nix +++ b/pkgs/by-name/rs/rsmangler/package.nix @@ -35,12 +35,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { version = "rsmangler v ${lib.versions.majorMinor finalAttrs.version}"; }; - meta = with lib; { + meta = { description = "Perform various manipulations on the wordlists"; homepage = "https://github.com/digininja/RSMangler"; - license = licenses.cc-by-sa-20; + license = lib.licenses.cc-by-sa-20; mainProgram = "rsmangler"; - maintainers = with maintainers; [ d3vil0p3r ]; + maintainers = with lib.maintainers; [ d3vil0p3r ]; platforms = ruby.meta.platforms; }; }) diff --git a/pkgs/by-name/rs/rspamd/package.nix b/pkgs/by-name/rs/rspamd/package.nix index 98d94aabdf7e..d45b0c864922 100644 --- a/pkgs/by-name/rs/rspamd/package.nix +++ b/pkgs/by-name/rs/rspamd/package.nix @@ -109,15 +109,15 @@ stdenv.mkDerivation rec { passthru.tests.rspamd = nixosTests.rspamd; - meta = with lib; { + meta = { homepage = "https://rspamd.com"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Advanced spam filtering system"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ avnik fpletz lewo ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/rs/rss-bridge-cli/package.nix b/pkgs/by-name/rs/rss-bridge-cli/package.nix index ba427f367ab3..33dcc91e3ef7 100644 --- a/pkgs/by-name/rs/rss-bridge-cli/package.nix +++ b/pkgs/by-name/rs/rss-bridge-cli/package.nix @@ -29,11 +29,11 @@ in (oldAttrs: { version = rss-bridge.version; - meta = with lib; { + meta = { description = "Command-line interface for RSS-Bridge"; homepage = "https://github.com/RSS-Bridge/rss-bridge"; - license = licenses.unlicense; - maintainers = with maintainers; [ ymeister ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ ymeister ]; mainProgram = "rss-bridge-cli"; }; }) diff --git a/pkgs/by-name/rs/rss-bridge/package.nix b/pkgs/by-name/rs/rss-bridge/package.nix index 2155dd07b3ab..df2f6f67cc8b 100644 --- a/pkgs/by-name/rs/rss-bridge/package.nix +++ b/pkgs/by-name/rs/rss-bridge/package.nix @@ -29,14 +29,14 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "RSS feed for websites missing it"; homepage = "https://github.com/RSS-Bridge/rss-bridge"; - license = licenses.unlicense; - maintainers = with maintainers; [ + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ dawidsowa mynacol ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rs/rss2email/package.nix b/pkgs/by-name/rs/rss2email/package.nix index 5e31a86deb2d..7f9b1bef72b8 100644 --- a/pkgs/by-name/rs/rss2email/package.nix +++ b/pkgs/by-name/rs/rss2email/package.nix @@ -71,10 +71,10 @@ python3Packages.buildPythonApplication rec { "test" ]; - meta = with lib; { + meta = { description = "Tool that converts RSS/Atom newsfeeds to email"; homepage = "https://pypi.python.org/pypi/rss2email"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "r2e"; }; passthru.tests = { diff --git a/pkgs/by-name/rs/rsstail/package.nix b/pkgs/by-name/rs/rsstail/package.nix index a2c7d2d2e704..0f1a76fd5401 100644 --- a/pkgs/by-name/rs/rsstail/package.nix +++ b/pkgs/by-name/rs/rsstail/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation (final: { # just runs cppcheck linter doCheck = false; - meta = with lib; { + meta = { description = "Monitor RSS feeds for new entries"; mainProgram = "rsstail"; longDescription = '' @@ -36,8 +36,8 @@ stdenv.mkDerivation (final: { detects a new entry it'll emit only that new entry. ''; homepage = "https://www.vanheusden.com/rsstail/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.Necior ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.Necior ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/rs/rst2html5/package.nix b/pkgs/by-name/rs/rst2html5/package.nix index cdac3c9fd915..ce9edf243128 100644 --- a/pkgs/by-name/rs/rst2html5/package.nix +++ b/pkgs/by-name/rs/rst2html5/package.nix @@ -28,10 +28,10 @@ python3.pkgs.buildPythonPackage rec { pythonImportsCheck = [ "rst2html5" ]; - meta = with lib; { + meta = { description = "Converts ReSTructuredText to (X)HTML5"; homepage = "https://rst2html5.readthedocs.io/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "rst2html5"; }; diff --git a/pkgs/by-name/rt/rt-tests/package.nix b/pkgs/by-name/rt/rt-tests/package.nix index c8f430119cc6..c9f78c1fe6bd 100644 --- a/pkgs/by-name/rt/rt-tests/package.nix +++ b/pkgs/by-name/rt/rt-tests/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/determine_maximum_mpps.sh" --prefix PATH : $out/bin ''; - meta = with lib; { + meta = { homepage = "https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git"; description = "Suite of real-time tests - cyclictest, hwlatdetect, pip_stress, pi_stress, pmqtest, ptsematest, rt-migrate-test, sendme, signaltest, sigwaittest, svsematest"; - platforms = platforms.linux; - maintainers = with maintainers; [ poelzi ]; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ poelzi ]; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/rt/rtfm/package.nix b/pkgs/by-name/rt/rtfm/package.nix index dfde3149aa92..1b8215b8db59 100644 --- a/pkgs/by-name/rt/rtfm/package.nix +++ b/pkgs/by-name/rt/rtfm/package.nix @@ -115,12 +115,12 @@ crystal.buildCrystalPackage { ''; }; - meta = with lib; { + meta = { description = "Dash/docset reader with built in documentation for Crystal and GTK APIs"; homepage = "https://github.com/hugopl/rtfm/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "rtfm"; - maintainers = with maintainers; [ sund3RRR ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ sund3RRR ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/rt/rtkit/package.nix b/pkgs/by-name/rt/rtkit/package.nix index e78a2dba0053..350f6ccdd18a 100644 --- a/pkgs/by-name/rt/rtkit/package.nix +++ b/pkgs/by-name/rt/rtkit/package.nix @@ -52,14 +52,14 @@ stdenv.mkDerivation { "-Dsystemd_systemunitdir=${placeholder "out"}/etc/systemd/system" ]; - meta = with lib; { + meta = { homepage = "https://github.com/heftig/rtkit"; description = "Daemon that hands out real-time priority to processes"; mainProgram = "rtkitctl"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 bsd0 ]; # lib is bsd license - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/rt/rtl-ais/package.nix b/pkgs/by-name/rt/rtl-ais/package.nix index 87a6ccfc9e7c..573f4cdd000c 100644 --- a/pkgs/by-name/rt/rtl-ais/package.nix +++ b/pkgs/by-name/rt/rtl-ais/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple AIS tuner and generic dual-frequency FM demodulator"; homepage = "https://github.com/dgiardini/rtl-ais"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ mgdm ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ mgdm ]; mainProgram = "rtl_ais"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/rt/rtl_433/package.nix b/pkgs/by-name/rt/rtl_433/package.nix index 59238ee0b166..8d0d40dddacb 100644 --- a/pkgs/by-name/rt/rtl_433/package.nix +++ b/pkgs/by-name/rt/rtl_433/package.nix @@ -39,15 +39,15 @@ stdenv.mkDerivation rec { "cmake_minimum_required(VERSION 2.6...3.10)" ''; - meta = with lib; { + meta = { description = "Decode traffic from devices that broadcast on 433.9 MHz, 868 MHz, 315 MHz, 345 MHz and 915 MHz"; homepage = "https://github.com/merbanan/rtl_433"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ earldouglas markuskowa ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "rtl_433"; }; } diff --git a/pkgs/by-name/rt/rtlcss/package.nix b/pkgs/by-name/rt/rtlcss/package.nix index 43c1cc0fac72..9bec84c85389 100644 --- a/pkgs/by-name/rt/rtlcss/package.nix +++ b/pkgs/by-name/rt/rtlcss/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = with lib; { + meta = { description = "Framework for converting Left-To-Right (LTR) Cascading Style Sheets(CSS) to Right-To-Left (RTL)"; mainProgram = "rtlcss"; homepage = "https://rtlcss.com"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/rt/rtmpdump/package.nix b/pkgs/by-name/rt/rtmpdump/package.nix index e87b76e8f1c9..a8687b2d838d 100644 --- a/pkgs/by-name/rt/rtmpdump/package.nix +++ b/pkgs/by-name/rt/rtmpdump/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation { separateDebugInfo = true; - meta = with lib; { + meta = { description = "Toolkit for RTMP streams"; homepage = "https://rtmpdump.mplayerhq.hu/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ codyopel ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ codyopel ]; }; } diff --git a/pkgs/by-name/rt/rtrlib/package.nix b/pkgs/by-name/rt/rtrlib/package.nix index a0e4864079b4..9cdc18e1a38b 100644 --- a/pkgs/by-name/rt/rtrlib/package.nix +++ b/pkgs/by-name/rt/rtrlib/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { --replace '=''${prefix}//' '=/' ''; - meta = with lib; { + meta = { description = "Open-source C implementation of the RPKI/Router Protocol client"; homepage = "https://github.com/rtrlib/rtrlib"; - license = licenses.mit; - maintainers = with maintainers; [ Anillc ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Anillc ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rt/rtss/package.nix b/pkgs/by-name/rt/rtss/package.nix index de818836362e..cfdab4ffb4f6 100644 --- a/pkgs/by-name/rt/rtss/package.nix +++ b/pkgs/by-name/rt/rtss/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-7+58CMm9nPg9tVXphUcIufFGONOxjAlSWBseq5fbM44="; - meta = with lib; { + meta = { description = "Annotate output with relative durations between lines"; mainProgram = "rtss"; homepage = "https://github.com/Freaky/rtss"; - license = licenses.mit; - maintainers = with maintainers; [ djanatyn ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ djanatyn ]; }; } diff --git a/pkgs/by-name/rt/rttr/package.nix b/pkgs/by-name/rt/rttr/package.nix index da0822946ccc..587802081912 100644 --- a/pkgs/by-name/rt/rttr/package.nix +++ b/pkgs/by-name/rt/rttr/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required (VERSION 3.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "C++ Reflection Library"; homepage = "https://www.rttr.org"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/rt/rtz/package.nix b/pkgs/by-name/rt/rtz/package.nix index 19267444a5e8..4e12b7f9ce23 100644 --- a/pkgs/by-name/rt/rtz/package.nix +++ b/pkgs/by-name/rt/rtz/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { buildFeatures = [ "web" ]; - meta = with lib; { + meta = { description = "Tool to easily work with timezone lookups via a binary, a library, or a server"; homepage = "https://github.com/twitchax/rtz"; changelog = "https://github.com/twitchax/rtz/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "rtz"; }; diff --git a/pkgs/by-name/ru/rubber/package.nix b/pkgs/by-name/ru/rubber/package.nix index e2febe3d0b93..fda0d10765dd 100644 --- a/pkgs/by-name/ru/rubber/package.nix +++ b/pkgs/by-name/ru/rubber/package.nix @@ -44,7 +44,7 @@ pypkgs.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Wrapper for LaTeX and friends"; longDescription = '' Rubber is a program whose purpose is to handle all tasks related @@ -55,13 +55,13 @@ pypkgs.buildPythonApplication rec { produce PostScript documents is also included, as well as usage of pdfLaTeX to produce PDF documents. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://gitlab.com/latex-rubber/rubber"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ttuegel peterhoeg ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "rubber"; }; } diff --git a/pkgs/by-name/ru/rubberband/package.nix b/pkgs/by-name/ru/rubberband/package.nix index f64817adec84..d10f562ca04b 100644 --- a/pkgs/by-name/ru/rubberband/package.nix +++ b/pkgs/by-name/ru/rubberband/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { mesonFlags = [ "-Dtests=disabled" ]; doCheck = false; - meta = with lib; { + meta = { description = "High quality software library for audio time-stretching and pitch-shifting"; homepage = "https://breakfastquay.com/rubberband/"; # commercial license available as well, see homepage. You'll get some more optimized routines - license = licenses.gpl2Plus; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ru/rubik/package.nix b/pkgs/by-name/ru/rubik/package.nix index 5528829d28ad..71b933042a9f 100644 --- a/pkgs/by-name/ru/rubik/package.nix +++ b/pkgs/by-name/ru/rubik/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation { cp -a *.ttf $out/share/fonts/truetype/ ''; - meta = with lib; { + meta = { homepage = "https://fonts.google.com/specimen/Rubik"; description = "Rubik Font - is a 5 weight Roman + Italic family"; longDescription = '' @@ -102,6 +102,6 @@ stdenv.mkDerivation { expanded by Cyreal Fonts Team (Alexei Vanyashin and Nikita Kanarev). Existing glyphs were improved, and glyph set was expanded to GF Cyrillic Plus. ''; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ru/rubiks/package.nix b/pkgs/by-name/ru/rubiks/package.nix index 965265c56e02..1ffc36f1ada9 100644 --- a/pkgs/by-name/ru/rubiks/package.nix +++ b/pkgs/by-name/ru/rubiks/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://wiki.sagemath.org/spkg/rubiks"; description = "Several programs for working with Rubik's cubes"; # The individual websites are no longer available @@ -104,11 +104,11 @@ stdenv.mkDerivation rec { cubex - A fast, non-optimal 3x3x3 solver mcube - A fast, non-optimal 4x4x4 solver ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2 # Michael Reid's and Eric Dietz software mit # Dik T. Winter's software ]; - teams = [ teams.sage ]; - platforms = platforms.unix; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ru/rubyripper/package.nix b/pkgs/by-name/ru/rubyripper/package.nix index 30882350ab21..92d7c0e5455b 100644 --- a/pkgs/by-name/ru/rubyripper/package.nix +++ b/pkgs/by-name/ru/rubyripper/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "High quality CD audio ripper"; mainProgram = "rrip_cli"; - platforms = platforms.linux; - license = licenses.gpl3Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/bleskodev/rubyripper"; }; } diff --git a/pkgs/by-name/ru/rucredstash/package.nix b/pkgs/by-name/ru/rucredstash/package.nix index fadb3d4226e7..38460eed6145 100644 --- a/pkgs/by-name/ru/rucredstash/package.nix +++ b/pkgs/by-name/ru/rucredstash/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { # presence of certain AWS infrastructure doCheck = false; - meta = with lib; { + meta = { description = "Utility for managing credentials securely in AWS cloud"; homepage = "https://github.com/psibi/rucredstash"; - license = licenses.mit; - maintainers = with maintainers; [ psibi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psibi ]; mainProgram = "rucredstash"; }; } diff --git a/pkgs/by-name/ru/rufo/package.nix b/pkgs/by-name/ru/rufo/package.nix index ebd32f78be7b..319f9af025ef 100644 --- a/pkgs/by-name/ru/rufo/package.nix +++ b/pkgs/by-name/ru/rufo/package.nix @@ -11,11 +11,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "rufo"; - meta = with lib; { + meta = { description = "Ruby formatter"; homepage = "https://github.com/ruby-formatter/rufo"; - license = licenses.mit; - maintainers = with maintainers; [ andersk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ andersk ]; mainProgram = "rufo"; }; } diff --git a/pkgs/by-name/ru/run/package.nix b/pkgs/by-name/ru/run/package.nix index 438826b60a05..cc4df04a520c 100644 --- a/pkgs/by-name/ru/run/package.nix +++ b/pkgs/by-name/ru/run/package.nix @@ -18,12 +18,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Easily manage and invoke small scripts and wrappers"; mainProgram = "run"; homepage = "https://github.com/TekWizely/run"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rawkode ]; }; diff --git a/pkgs/by-name/ru/runc/package.nix b/pkgs/by-name/ru/runc/package.nix index 8a25c21eeec4..e9398f5a93e0 100644 --- a/pkgs/by-name/ru/runc/package.nix +++ b/pkgs/by-name/ru/runc/package.nix @@ -68,13 +68,13 @@ buildGoModule (finalAttrs: { passthru.tests = { inherit (nixosTests) cri-o docker podman; }; - meta = with lib; { + meta = { homepage = "https://github.com/opencontainers/runc"; description = "CLI tool for spawning and running containers according to the OCI specification"; - license = licenses.asl20; - maintainers = with maintainers; [ offline ]; - teams = [ teams.podman ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline ]; + teams = [ lib.teams.podman ]; + platforms = lib.platforms.linux; mainProgram = "runc"; }; }) diff --git a/pkgs/by-name/ru/rund/package.nix b/pkgs/by-name/ru/rund/package.nix index f2f18716e7bc..e56afa8a2d10 100644 --- a/pkgs/by-name/ru/rund/package.nix +++ b/pkgs/by-name/ru/rund/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { mv $NIX_BUILD_TOP/rund $out/bin ''; - meta = with lib; { + meta = { description = "Compiler-wrapper that runs and caches D programs"; mainProgram = "rund"; homepage = "https://github.com/dragon-lang/rund"; license = lib.licenses.boost; - maintainers = with maintainers; [ jonathanmarler ]; + maintainers = with lib.maintainers; [ jonathanmarler ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ru/runescape/package.nix b/pkgs/by-name/ru/runescape/package.nix index f7231fd44cf4..f0f6751701f3 100644 --- a/pkgs/by-name/ru/runescape/package.nix +++ b/pkgs/by-name/ru/runescape/package.nix @@ -94,12 +94,12 @@ let rm -r $out/usr ''; - meta = with lib; { + meta = { description = "Launcher for RuneScape 3, the current main RuneScape"; homepage = "https://www.runescape.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ grburst ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ grburst ]; platforms = [ "x86_64-linux" ]; }; }; @@ -145,11 +145,11 @@ buildFHSEnv { --replace "/usr/bin/runescape-launcher" "RuneScape" ''; - meta = with lib; { + meta = { description = "RuneScape Game Client (NXT) - Launcher for RuneScape 3"; homepage = "https://www.runescape.com/"; - license = licenses.unfree; - maintainers = with maintainers; [ grburst ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ grburst ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ru/runiq/package.nix b/pkgs/by-name/ru/runiq/package.nix index c85b8ed4b46a..710f3c6c802f 100644 --- a/pkgs/by-name/ru/runiq/package.nix +++ b/pkgs/by-name/ru/runiq/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage { ln -s ${./Cargo.lock} Cargo.lock ''; - meta = with lib; { + meta = { description = "Efficient way to filter duplicate lines from input, à la uniq"; mainProgram = "runiq"; homepage = "https://github.com/whitfin/runiq"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ru/runit/package.nix b/pkgs/by-name/ru/runit/package.nix index 1f61b7ee402d..ac2bb0d73097 100644 --- a/pkgs/by-name/ru/runit/package.nix +++ b/pkgs/by-name/ru/runit/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { cp -r ../man $man/share/man/man8 ''; - meta = with lib; { + meta = { description = "UNIX init scheme with service supervision"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "http://smarden.org/runit"; - maintainers = with maintainers; [ joachifm ]; - platforms = platforms.linux ++ platforms.darwin; + maintainers = with lib.maintainers; [ joachifm ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ru/runitor/package.nix b/pkgs/by-name/ru/runitor/package.nix index 69459985a09d..6f7a6f9a9308 100644 --- a/pkgs/by-name/ru/runitor/package.nix +++ b/pkgs/by-name/ru/runitor/package.nix @@ -33,7 +33,7 @@ buildGoModule rec { # Unit tests require binding to local addresses for listening sockets. __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { homepage = "https://bdd.fi/x/runitor"; description = "Command runner with healthchecks.io integration"; longDescription = '' @@ -45,8 +45,8 @@ buildGoModule rec { dead man's switch for your cron jobs. You get alerted if they don't run on time or terminate with a failure. ''; - license = licenses.bsd0; - maintainers = with maintainers; [ bdd ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ bdd ]; mainProgram = "runitor"; }; } diff --git a/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix b/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix index afa7463a77cb..328b824fa2c2 100644 --- a/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix +++ b/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix @@ -69,14 +69,14 @@ rustPlatform.buildRustPackage rec { # tests.neovim-lsp = callPackage ./test-neovim-lsp.nix { }; }; - meta = with lib; { + meta = { description = "Language server for the Rust language"; homepage = "https://rust-analyzer.github.io"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ oxalica ]; + maintainers = with lib.maintainers; [ oxalica ]; mainProgram = "rust-analyzer"; }; } diff --git a/pkgs/by-name/ru/rust-audit-info/package.nix b/pkgs/by-name/ru/rust-audit-info/package.nix index f9571cc03743..12c128bbd980 100644 --- a/pkgs/by-name/ru/rust-audit-info/package.nix +++ b/pkgs/by-name/ru/rust-audit-info/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-TvbFhFtdQ6fBNjIMgzQDVnK+IZThUJmht7r2zSmcllE="; - meta = with lib; { + meta = { description = "Command-line tool to extract the dependency trees embedded in binaries by cargo-auditable"; mainProgram = "rust-audit-info"; homepage = "https://github.com/rust-secure-code/cargo-auditable/tree/master/rust-audit-info"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/ru/rust-code-analysis/package.nix b/pkgs/by-name/ru/rust-code-analysis/package.nix index f614b87f20a2..f568e9709554 100644 --- a/pkgs/by-name/ru/rust-code-analysis/package.nix +++ b/pkgs/by-name/ru/rust-code-analysis/package.nix @@ -16,10 +16,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-HirLjKkfZfc9UmUcUF5WW7xAJuCu7ftJDH8+zTSYlxs="; - meta = with lib; { + meta = { description = "Analyze and collect metrics on source code"; homepage = "https://github.com/mozilla/rust-code-analysis"; - license = with licenses; [ + license = with lib.licenses; [ mit # grammars mpl20 # code ]; diff --git a/pkgs/by-name/ru/rust-synapse-compress-state/package.nix b/pkgs/by-name/ru/rust-synapse-compress-state/package.nix index 7ad18677baeb..4013857dc487 100644 --- a/pkgs/by-name/ru/rust-synapse-compress-state/package.nix +++ b/pkgs/by-name/ru/rust-synapse-compress-state/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Tool to compress some state in a Synapse instance's database"; homepage = "https://github.com/matrix-org/rust-synapse-compress-state"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa maralorn ]; diff --git a/pkgs/by-name/ru/rust-traverse/package.nix b/pkgs/by-name/ru/rust-traverse/package.nix index bcf9d76e7b35..4fe3d6750e8c 100644 --- a/pkgs/by-name/ru/rust-traverse/package.nix +++ b/pkgs/by-name/ru/rust-traverse/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { ZSTD_SYS_USE_PKG_CONFIG = true; }; - meta = with lib; { + meta = { description = "Terminal based file explorer"; homepage = "https://github.com/dmcg310/Rust-Traverse"; changelog = "https://github.com/dmcg310/Rust-Traverse/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "rt"; }; diff --git a/pkgs/by-name/ru/rusti-cal/package.nix b/pkgs/by-name/ru/rusti-cal/package.nix index c232c06763f3..8fcd2af5ce8e 100644 --- a/pkgs/by-name/ru/rusti-cal/package.nix +++ b/pkgs/by-name/ru/rusti-cal/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-9nd8xm3jAFouRYKSFpx3vQQaI/2wQzTaaehXjqljIfw="; - meta = with lib; { + meta = { description = "Minimal command line calendar, similar to cal"; mainProgram = "rusti-cal"; homepage = "https://github.com/arthurhenrique/rusti-cal"; - license = [ licenses.mit ]; - maintainers = [ maintainers.detegr ]; + license = [ lib.licenses.mit ]; + maintainers = [ lib.maintainers.detegr ]; }; } diff --git a/pkgs/by-name/ru/rustls-ffi/package.nix b/pkgs/by-name/ru/rustls-ffi/package.nix index b3b78948696c..dd918af7ca30 100644 --- a/pkgs/by-name/ru/rustls-ffi/package.nix +++ b/pkgs/by-name/ru/rustls-ffi/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation (finalAttrs: { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "C-to-rustls bindings"; homepage = "https://github.com/rustls/rustls-ffi/"; pkgConfigModules = [ "rustls" ]; @@ -76,6 +76,6 @@ stdenv.mkDerivation (finalAttrs: { asl20 isc ]; - maintainers = [ maintainers.lesuisse ]; + maintainers = [ lib.maintainers.lesuisse ]; }; }) diff --git a/pkgs/by-name/ru/rustplayer/package.nix b/pkgs/by-name/ru/rustplayer/package.nix index 9e4fb7fb932f..254c5511f965 100644 --- a/pkgs/by-name/ru/rustplayer/package.nix +++ b/pkgs/by-name/ru/rustplayer/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage { "--skip=fetch_and_play" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Kingtous/RustPlayer"; description = "Local audio player and network m3u8 radio player using a terminal interface"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ oluceps ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ oluceps ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ru/rustypaste-cli/package.nix b/pkgs/by-name/ru/rustypaste-cli/package.nix index a62165a66d25..722a6ff67ddf 100644 --- a/pkgs/by-name/ru/rustypaste-cli/package.nix +++ b/pkgs/by-name/ru/rustypaste-cli/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Z8rybofRp4hzTbn3iT0X50fcJCn2tT3HTYTLLWTJBek="; - meta = with lib; { + meta = { description = "CLI tool for rustypaste"; homepage = "https://github.com/orhun/rustypaste-cli"; changelog = "https://github.com/orhun/rustypaste-cli/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "rpaste"; }; diff --git a/pkgs/by-name/ru/rustywind/package.nix b/pkgs/by-name/ru/rustywind/package.nix index ac04fdbffa0a..9d312230985f 100644 --- a/pkgs/by-name/ru/rustywind/package.nix +++ b/pkgs/by-name/ru/rustywind/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eXTdPtcsWhsABZU6kRzZ6eF1VaabouZwLAFI9KpAx98="; - meta = with lib; { + meta = { description = "CLI for organizing Tailwind CSS classes"; mainProgram = "rustywind"; homepage = "https://github.com/avencera/rustywind"; changelog = "https://github.com/avencera/rustywind/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ru/rutabaga_gfx/package.nix b/pkgs/by-name/ru/rutabaga_gfx/package.nix index 742b38ec4f68..bbd6c3ef1512 100644 --- a/pkgs/by-name/ru/rutabaga_gfx/package.nix +++ b/pkgs/by-name/ru/rutabaga_gfx/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail '"$BUILDTYPE"/"$SHARED_LIB"' '${stdenv.hostPlatform.rust.cargoShortTarget}/"$BUILDTYPE"/"$SHARED_LIB"' ''; - meta = with lib; { + meta = { homepage = "https://crosvm.dev/book/appendix/rutabaga_gfx.html"; description = "Cross-platform abstraction for GPU and display virtualization"; - license = licenses.bsd3; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ qyliss ]; platforms = [ # src/generated/virgl_debug_callback_bindings.rs "aarch64-darwin" diff --git a/pkgs/by-name/ru/ruwudu/package.nix b/pkgs/by-name/ru/ruwudu/package.nix index e4decd04df99..5ae35b820981 100644 --- a/pkgs/by-name/ru/ruwudu/package.nix +++ b/pkgs/by-name/ru/ruwudu/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/ruwudu/"; description = "Arabic script font for a style of writing used in Niger, West Africa"; - license = licenses.ofl; - maintainers = [ maintainers.vbgl ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.vbgl ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rv/rvvm/package.nix b/pkgs/by-name/rv/rvvm/package.nix index d57267485766..ebc981f56965 100644 --- a/pkgs/by-name/rv/rvvm/package.nix +++ b/pkgs/by-name/rv/rvvm/package.nix @@ -56,15 +56,15 @@ stdenv.mkDerivation rec { ++ lib.optional enableSDL "USE_SDL=2" # Use SDL2 instead of SDL1 ++ lib.optional (!enableSDL && !enableX11) "USE_FB=0"; - meta = with lib; { + meta = { homepage = "https://github.com/LekKit/RVVM"; description = "RISC-V Virtual Machine"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 # or mpl20 ]; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ kamillaova ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ kamillaova ]; mainProgram = "rvvm"; }; } diff --git a/pkgs/by-name/rw/rw/package.nix b/pkgs/by-name/rw/rw/package.nix index 70372c31894e..d4fc0abff623 100644 --- a/pkgs/by-name/rw/rw/package.nix +++ b/pkgs/by-name/rw/rw/package.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://sortix.org/rw"; description = "Block device and byte copying program similar to dd"; longDescription = '' @@ -24,8 +24,8 @@ stdenv.mkDerivation rec { or byte streams. The rw command is designed to be a replacement for dd with standard style command line flags. ''; - license = licenses.isc; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "rw"; }; } diff --git a/pkgs/by-name/rw/rwc/package.nix b/pkgs/by-name/rw/rwc/package.nix index caf6b4401fa5..557a6d5d63c9 100644 --- a/pkgs/by-name/rw/rwc/package.nix +++ b/pkgs/by-name/rw/rwc/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Report when files are changed"; - license = licenses.publicDomain; - platforms = platforms.linux; - maintainers = with maintainers; [ somasis ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ somasis ]; mainProgram = "rwc"; }; } diff --git a/pkgs/by-name/rw/rwedid/package.nix b/pkgs/by-name/rw/rwedid/package.nix index 4211b855212c..fff8bdfb429c 100644 --- a/pkgs/by-name/rw/rwedid/package.nix +++ b/pkgs/by-name/rw/rwedid/package.nix @@ -37,7 +37,7 @@ rustPlatform.buildRustPackage rec { echo 'SUBSYSTEM=="i2c-dev",KERNEL=="i2c-[0-9]*", ATTRS{class}=="0x030000", TAG+="uaccess"' > $out/etc/udev/rules.d/60-rwedid.rules ''; - meta = with lib; { + meta = { description = "Read and write EDID data over an I2C bus"; longDescription = '' To install udev rules, you also have to add `services.udev.packages = [ pkgs.rwedid ]` into your configuration. @@ -45,8 +45,8 @@ rustPlatform.buildRustPackage rec { And you will have to load i2c-dev kernel module, for that add `boot.initrd.availableKernelModules = [ i2c-dev ] to your config. ''; homepage = "https://codeberg.org/ral/rwedid"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/rx/rx/package.nix b/pkgs/by-name/rx/rx/package.nix index 44ec141ac8c8..73a0a9de8053 100644 --- a/pkgs/by-name/rx/rx/package.nix +++ b/pkgs/by-name/rx/rx/package.nix @@ -51,12 +51,12 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/rx --prefix LD_LIBRARY_PATH : ${libGL}/lib ''; - meta = with lib; { + meta = { description = "Modern and extensible pixel editor implemented in Rust"; mainProgram = "rx"; homepage = "https://rx.cloudhead.io/"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ minijackson ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/rx/rxvt/package.nix b/pkgs/by-name/rx/rxvt/package.nix index 7d2315713994..38f4bd66b926 100644 --- a/pkgs/by-name/rx/rxvt/package.nix +++ b/pkgs/by-name/rx/rxvt/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { LIBTOOL=${libtool}/bin/libtool ./configure --prefix=$out --enable-everything --enable-smart-resize --enable-256-color ''; - meta = with lib; { + meta = { homepage = "https://rxvt.sourceforge.net/"; description = "Colour vt102 terminal emulator with less features and lower memory consumption"; longDescription = '' @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { emulation and toolkit-style configurability. ''; maintainers = [ ]; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; knownVulnerabilities = [ "Usage of ANSI escape sequences causes unexpected newline-termination, leading to unexpected command execution (https://www.openwall.com/lists/oss-security/2021/05/17/1)" ]; diff --git a/pkgs/by-name/ry/rygel/package.nix b/pkgs/by-name/ry/rygel/package.nix index d1b8b42e588e..f854150b842f 100644 --- a/pkgs/by-name/ry/rygel/package.nix +++ b/pkgs/by-name/ry/rygel/package.nix @@ -121,12 +121,12 @@ stdenv.mkDerivation (finalAttrs: { noGtk = rygel.override { withGtk = false; }; }; - meta = with lib; { + meta = { description = "Home media solution (UPnP AV MediaServer) that allows you to easily share audio, video and pictures to other devices"; homepage = "https://gitlab.gnome.org/GNOME/rygel"; changelog = "https://gitlab.gnome.org/GNOME/rygel/-/blob/rygel-${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ry/rymcast/package.nix b/pkgs/by-name/ry/rymcast/package.nix index 8ba351fafe1a..e87b73ca44ec 100644 --- a/pkgs/by-name/ry/rymcast/package.nix +++ b/pkgs/by-name/ry/rymcast/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { --set PATH "${lib.makeBinPath [ zenity ]}" ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Player for Mega Drive/Genesis VGM files"; homepage = "https://www.inphonik.com/products/rymcast-genesis-vgm-player/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ry/ryubing/package.nix b/pkgs/by-name/ry/ryubing/package.nix index d84777c5ee3e..25f193b56a88 100644 --- a/pkgs/by-name/ry/ryubing/package.nix +++ b/pkgs/by-name/ry/ryubing/package.nix @@ -133,7 +133,7 @@ buildDotnetModule rec { passthru.updateScript = ./updater.sh; - meta = with lib; { + meta = { homepage = "https://ryujinx.app"; changelog = "https://git.ryujinx.app/ryubing/ryujinx/-/wikis/changelog"; description = "Experimental Nintendo Switch Emulator written in C# (community fork of Ryujinx)"; @@ -145,8 +145,8 @@ buildDotnetModule rec { 2017. The project has since been abandoned on October 1st 2024 and QoL updates are now managed under a fork. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jk artemist willow diff --git a/pkgs/by-name/ry/ryzen-monitor-ng/package.nix b/pkgs/by-name/ry/ryzen-monitor-ng/package.nix index 044331da9e47..7a90bf59b362 100644 --- a/pkgs/by-name/ry/ryzen-monitor-ng/package.nix +++ b/pkgs/by-name/ry/ryzen-monitor-ng/package.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Access Ryzen SMU information exposed by the ryzen_smu driver"; homepage = "https://github.com/plasmin/ryzen_monitor_ng"; changelog = "https://github.com/plasmin/ryzen_monitor_ng/blob/master/CHANGELOG.md"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ phdyellow ]; + maintainers = with lib.maintainers; [ phdyellow ]; mainProgram = "ryzen_monitor"; }; } diff --git a/pkgs/by-name/ry/ryzenadj/package.nix b/pkgs/by-name/ry/ryzenadj/package.nix index 2476ab3019bb..167649c5932d 100644 --- a/pkgs/by-name/ry/ryzenadj/package.nix +++ b/pkgs/by-name/ry/ryzenadj/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { install -D ryzenadj $out/bin/ryzenadj ''; - meta = with lib; { + meta = { description = "Adjust power management settings for Ryzen Mobile Processors"; mainProgram = "ryzenadj"; homepage = "https://github.com/FlyGoat/RyzenAdj"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ rhendric ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ rhendric ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/rz/rzip/package.nix b/pkgs/by-name/rz/rzip/package.nix index b1bb25c7fb24..f6f65efcb15e 100644 --- a/pkgs/by-name/rz/rzip/package.nix +++ b/pkgs/by-name/rz/rzip/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://rzip.samba.org/"; description = "Compression program"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "rzip"; }; } diff --git a/pkgs/by-name/s-/s-tui/package.nix b/pkgs/by-name/s-/s-tui/package.nix index 4ff7501d7482..13bf0474af85 100644 --- a/pkgs/by-name/s-/s-tui/package.nix +++ b/pkgs/by-name/s-/s-tui/package.nix @@ -32,11 +32,11 @@ python3Packages.buildPythonPackage rec { tests = testers.testVersion { package = s-tui; }; }; - meta = with lib; { + meta = { homepage = "https://amanusk.github.io/s-tui/"; description = "Stress-Terminal UI monitoring tool"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lilacious ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lilacious ]; broken = stdenv.hostPlatform.isDarwin; # https://github.com/amanusk/s-tui/issues/49 mainProgram = "s-tui"; }; diff --git a/pkgs/by-name/s0/s0ix-selftest-tool/package.nix b/pkgs/by-name/s0/s0ix-selftest-tool/package.nix index a5a6071900a6..92f8fca93469 100644 --- a/pkgs/by-name/s0/s0ix-selftest-tool/package.nix +++ b/pkgs/by-name/s0/s0ix-selftest-tool/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/intel/S0ixSelftestTool"; description = "Tool for testing the S2idle path CPU Package C-state and S0ix failures"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ adamcstephens ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ adamcstephens ]; mainProgram = "s0ix-selftest-tool"; }; } diff --git a/pkgs/by-name/s2/s2geometry/package.nix b/pkgs/by-name/s2/s2geometry/package.nix index 1a3c0b2bd395..feb287ecd6f4 100644 --- a/pkgs/by-name/s2/s2geometry/package.nix +++ b/pkgs/by-name/s2/s2geometry/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { (abseil-cpp_202407.override { inherit cxxStandard; }) ]; - meta = with lib; { + meta = { changelog = "https://github.com/google/s2geometry/releases/tag/v${finalAttrs.version}"; description = "Computational geometry and spatial indexing on the sphere"; homepage = "http://s2geometry.io/"; - license = licenses.asl20; - maintainers = [ maintainers.Thra11 ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.Thra11 ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/s2/s2n-tls/package.nix b/pkgs/by-name/s2/s2n-tls/package.nix index f9d701b5dbb8..5843929f3edb 100644 --- a/pkgs/by-name/s2/s2n-tls/package.nix +++ b/pkgs/by-name/s2/s2n-tls/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { inherit nix; }; - meta = with lib; { + meta = { description = "C99 implementation of the TLS/SSL protocols"; homepage = "https://github.com/aws/s2n-tls"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/s3/s3backer/package.nix b/pkgs/by-name/s3/s3backer/package.nix index eb4312c0b7bc..f70d8a181476 100644 --- a/pkgs/by-name/s3/s3backer/package.nix +++ b/pkgs/by-name/s3/s3backer/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { 'AC_CHECK_DECLS(fdatasync)' "" ''; - meta = with lib; { + meta = { homepage = "https://github.com/archiecobbs/s3backer"; description = "FUSE-based single file backing store via Amazon S3"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "s3backer"; }; } diff --git a/pkgs/by-name/s3/s3bro/package.nix b/pkgs/by-name/s3/s3bro/package.nix index d2e91571abbf..43ba091c7354 100644 --- a/pkgs/by-name/s3/s3bro/package.nix +++ b/pkgs/by-name/s3/s3bro/package.nix @@ -35,11 +35,11 @@ python3.pkgs.buildPythonApplication rec { "s3bro" ]; - meta = with lib; { + meta = { description = "S3 CLI tool"; mainProgram = "s3bro"; homepage = "https://github.com/rsavordelli/s3bro"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/by-name/s3/s3rs/package.nix b/pkgs/by-name/s3/s3rs/package.nix index e06c611a7a26..5911af76f8f5 100644 --- a/pkgs/by-name/s3/s3rs/package.nix +++ b/pkgs/by-name/s3/s3rs/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "S3 cli client with multi configs with diffent provider"; homepage = "https://github.com/yanganto/s3rs"; - license = licenses.mit; - maintainers = with maintainers; [ yanganto ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yanganto ]; mainProgram = "s3rs"; }; } diff --git a/pkgs/by-name/s3/s3scanner/package.nix b/pkgs/by-name/s3/s3scanner/package.nix index 96ab22cdfd80..884fe45995ea 100644 --- a/pkgs/by-name/s3/s3scanner/package.nix +++ b/pkgs/by-name/s3/s3scanner/package.nix @@ -22,13 +22,13 @@ buildGoModule rec { # Requires networking doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/sa7mon/S3Scanner/releases/tag/${src.rev}"; description = "Scan for misconfigured S3 buckets across S3-compatible APIs"; downloadPage = "https://github.com/sa7mon/S3Scanner/releases/tag/v${version}"; homepage = "https://github.com/sa7mon/s3scanner"; - license = licenses.mit; - maintainers = with maintainers; [ lavafroth ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lavafroth ]; mainProgram = "s3scanner"; }; } diff --git a/pkgs/by-name/s4/s4cmd/package.nix b/pkgs/by-name/s4/s4cmd/package.nix index 89f3f479ec32..9cd9dfeb5c6e 100644 --- a/pkgs/by-name/s4/s4cmd/package.nix +++ b/pkgs/by-name/s4/s4cmd/package.nix @@ -38,9 +38,9 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "s4cmd" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bloomreach/s4cmd"; description = "Super S3 command line tool"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/s5/s5/package.nix b/pkgs/by-name/s5/s5/package.nix index e8e5c46a11cc..a50126e9bd4c 100644 --- a/pkgs/by-name/s5/s5/package.nix +++ b/pkgs/by-name/s5/s5/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "Cipher/decipher text within a file"; mainProgram = "s5"; homepage = "https://github.com/mvisonneau/s5"; - license = licenses.asl20; - platforms = platforms.unix ++ platforms.darwin; - maintainers = with maintainers; [ mvisonneau ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ mvisonneau ]; }; } diff --git a/pkgs/by-name/s5/s5cmd/package.nix b/pkgs/by-name/s5/s5cmd/package.nix index c89e914ab8b5..d3a0d3c4b6ba 100644 --- a/pkgs/by-name/s5/s5cmd/package.nix +++ b/pkgs/by-name/s5/s5cmd/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # Skip e2e tests requiring network access excludedPackages = [ "./e2e" ]; - meta = with lib; { + meta = { homepage = "https://github.com/peak/s5cmd"; description = "Parallel S3 and local filesystem execution tool"; - license = licenses.mit; - maintainers = with maintainers; [ tomberek ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomberek ]; mainProgram = "s5cmd"; }; } diff --git a/pkgs/by-name/s9/s9fes/package.nix b/pkgs/by-name/s9/s9fes/package.nix index 464bb51eb7a1..2c68995682f3 100644 --- a/pkgs/by-name/s9/s9fes/package.nix +++ b/pkgs/by-name/s9/s9fes/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { # make: *** [Makefile:157: install-util] Error 1 enableParallelInstalling = false; - meta = with lib; { + meta = { description = "Scheme 9 From Empty Space, an interpreter for R4RS Scheme"; homepage = "http://www.t3x.org/s9fes/index.html"; - license = licenses.publicDomain; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sa/sabnzbd/package.nix b/pkgs/by-name/sa/sabnzbd/package.nix index a2b0b35dd538..beb1d0e3f71e 100644 --- a/pkgs/by-name/sa/sabnzbd/package.nix +++ b/pkgs/by-name/sa/sabnzbd/package.nix @@ -104,11 +104,11 @@ stdenv.mkDerivation rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Usenet NZB downloader, par2 repairer and auto extracting server"; homepage = "https://sabnzbd.org"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ jojosch adamcstephens diff --git a/pkgs/by-name/sa/sacad/package.nix b/pkgs/by-name/sa/sacad/package.nix index 34e63477af2d..e069ba7a9001 100644 --- a/pkgs/by-name/sa/sacad/package.nix +++ b/pkgs/by-name/sa/sacad/package.nix @@ -37,10 +37,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "sacad" ]; - meta = with lib; { + meta = { description = "Smart Automatic Cover Art Downloader"; homepage = "https://github.com/desbma/sacad"; - license = licenses.mpl20; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/sa/sacc/package.nix b/pkgs/by-name/sa/sacc/package.nix index edea63ac742c..0ff053d51719 100644 --- a/pkgs/by-name/sa/sacc/package.nix +++ b/pkgs/by-name/sa/sacc/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { --replace "/usr/local" "$out" ''; - meta = with lib; { + meta = { description = "Terminal gopher client"; mainProgram = "sacc"; homepage = "gopher://bitreich.org/1/scm/sacc"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sa/sacd/package.nix b/pkgs/by-name/sa/sacd/package.nix index 59b9d9e96e7d..c1dee3232211 100644 --- a/pkgs/by-name/sa/sacd/package.nix +++ b/pkgs/by-name/sa/sacd/package.nix @@ -30,15 +30,15 @@ stdenv.mkDerivation (finalAttrs: { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Converts SACD image files, Philips DSDIFF and Sony DSF files to 24-bit high resolution wave files. Handles both DST and DSD streams"; longDescription = '' Super Audio CD decoder. Converts SACD image files, Philips DSDIFF and Sony DSF files to 24-bit high resolution wave files. Handles both DST and DSD streams. ''; homepage = "https://github.com/Sound-Linux-More/sacd"; - license = licenses.gpl3; - maintainers = [ maintainers.doronbehar ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.doronbehar ]; platforms = [ "x86_64-linux" ]; mainProgram = "sacd"; }; diff --git a/pkgs/by-name/sa/safe-rm/package.nix b/pkgs/by-name/sa/safe-rm/package.nix index c2e582fd5724..0919260d494b 100644 --- a/pkgs/by-name/sa/safe-rm/package.nix +++ b/pkgs/by-name/sa/safe-rm/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { installManPage safe-rm.1 ''; - meta = with lib; { + meta = { description = "Tool intended to prevent the accidental deletion of important files"; homepage = "https://launchpad.net/safe-rm"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "safe-rm"; }; } diff --git a/pkgs/by-name/sa/safe/package.nix b/pkgs/by-name/sa/safe/package.nix index 70bade379cd7..a3ea0053cf83 100644 --- a/pkgs/by-name/sa/safe/package.nix +++ b/pkgs/by-name/sa/safe/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Vault CLI"; mainProgram = "safe"; homepage = "https://github.com/starkandwayne/safe"; - license = licenses.mit; - maintainers = with maintainers; [ eonpatapon ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eonpatapon ]; }; } diff --git a/pkgs/by-name/sa/safecloset/package.nix b/pkgs/by-name/sa/safecloset/package.nix index 60c45f766988..d4fefc1961f3 100644 --- a/pkgs/by-name/sa/safecloset/package.nix +++ b/pkgs/by-name/sa/safecloset/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { "--skip=timer::timer_tests::test_timer_reset" ]; - meta = with lib; { + meta = { description = "Cross-platform secure TUI secret locker"; homepage = "https://github.com/Canop/safecloset"; changelog = "https://github.com/Canop/safecloset/blob/${src.rev}/CHANGELOG.md"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; mainProgram = "safecloset"; }; diff --git a/pkgs/by-name/sa/safeeyes/package.nix b/pkgs/by-name/sa/safeeyes/package.nix index fab52609c849..8192162159f8 100644 --- a/pkgs/by-name/sa/safeeyes/package.nix +++ b/pkgs/by-name/sa/safeeyes/package.nix @@ -77,11 +77,11 @@ python3.pkgs.buildPythonApplication rec { passthru.tests.version = testers.testVersion { package = safeeyes; }; - meta = with lib; { + meta = { homepage = "http://slgobinath.github.io/SafeEyes"; description = "Protect your eyes from eye strain using this simple and beautiful, yet extensible break reminder. A Free and Open Source Linux alternative to EyeLeo"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "safeeyes"; }; } diff --git a/pkgs/by-name/sa/safefile/package.nix b/pkgs/by-name/sa/safefile/package.nix index 507f1bbcdd45..4542a4585aa7 100644 --- a/pkgs/by-name/sa/safefile/package.nix +++ b/pkgs/by-name/sa/safefile/package.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { sha256 = "1y0gikds2nr8jk8smhrl617njk23ymmpxyjb2j1xbj0k82xspv78"; }; - meta = with lib; { + meta = { description = "File open routines to safely open a file when in the presence of an attack"; - license = licenses.asl20; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.all; homepage = "https://research.cs.wisc.edu/mist/safefile/"; }; } diff --git a/pkgs/by-name/sa/sage/python-modules/sage-docbuild.nix b/pkgs/by-name/sa/sage/python-modules/sage-docbuild.nix index a8e86d173b19..ecb810a358f9 100644 --- a/pkgs/by-name/sa/sage/python-modules/sage-docbuild.nix +++ b/pkgs/by-name/sa/sage/python-modules/sage-docbuild.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { doCheck = false; # we will run tests in sagedoc.nix - meta = with lib; { + meta = { description = "Build system of the Sage documentation"; homepage = "https://www.sagemath.org"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/sa/sage/python-modules/sage-setup.nix b/pkgs/by-name/sa/sage/python-modules/sage-setup.nix index 66f87dea438c..e44ee8317b35 100644 --- a/pkgs/by-name/sa/sage/python-modules/sage-setup.nix +++ b/pkgs/by-name/sa/sage/python-modules/sage-setup.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; # sagelib depends on sage-setup, but sage-setup's tests depend on sagelib - meta = with lib; { + meta = { description = "Build system of the Sage library"; homepage = "https://www.sagemath.org"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/by-name/sa/sage/sage.nix b/pkgs/by-name/sa/sage/sage.nix index 0f232414ccbc..e0c99bd9e265 100644 --- a/pkgs/by-name/sa/sage/sage.nix +++ b/pkgs/by-name/sa/sage/sage.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { doc = sagedoc; }; - meta = with lib; { + meta = { description = "Open Source Mathematics Software, free alternative to Magma, Maple, Mathematica, and Matlab"; mainProgram = "sage"; homepage = "https://www.sagemath.org"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; - platforms = platforms.linux ++ [ "aarch64-darwin" ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.linux ++ [ "aarch64-darwin" ]; }; } diff --git a/pkgs/by-name/sa/sagetex/package.nix b/pkgs/by-name/sa/sagetex/package.nix index ed31393e365e..b593a23efc60 100644 --- a/pkgs/by-name/sa/sagetex/package.nix +++ b/pkgs/by-name/sa/sagetex/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cp -va *.sty *.cfg *.def "$path/" ''; - meta = with lib; { + meta = { description = "Embed code, results of computations, and plots from Sage into LaTeX documents"; homepage = "https://github.com/sagemath/sagetex"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ alexnortung ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ alexnortung ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sa/sagittarius-scheme/package.nix b/pkgs/by-name/sa/sagittarius-scheme/package.nix index d464eb494a06..aa13447f2208 100644 --- a/pkgs/by-name/sa/sagittarius-scheme/package.nix +++ b/pkgs/by-name/sa/sagittarius-scheme/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { ] ); - meta = with lib; { + meta = { description = "R6RS/R7RS Scheme system"; longDescription = '' Sagittarius Scheme is a free Scheme implementation supporting @@ -77,8 +77,8 @@ stdenv.mkDerivation rec { - Replaceable reader ''; homepage = "https://bitbucket.org/ktakashi/sagittarius-scheme"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ abbe ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbe ]; }; } diff --git a/pkgs/by-name/sa/sahel-fonts/package.nix b/pkgs/by-name/sa/sahel-fonts/package.nix index 30d09d2fa36f..ea644339f943 100644 --- a/pkgs/by-name/sa/sahel-fonts/package.nix +++ b/pkgs/by-name/sa/sahel-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/sahel-font"; description = "Persian (farsi) Font - فونت (قلم) فارسی ساحل"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sa/sailsd/package.nix b/pkgs/by-name/sa/sailsd/package.nix index 62e2da16fe4c..a678cf047390 100644 --- a/pkgs/by-name/sa/sailsd/package.nix +++ b/pkgs/by-name/sa/sailsd/package.nix @@ -43,16 +43,16 @@ stdenv.mkDerivation rec { --replace gcc cc ''; - meta = with lib; { + meta = { description = "Simulator daemon for autonomous sailing boats"; homepage = "https://github.com/sails-simulator/sailsd"; - license = licenses.gpl3; + license = lib.licenses.gpl3; longDescription = '' Sails is a simulator designed to test the AI of autonomous sailing robots. It emulates the basic physics of sailing a small single sail boat''; - maintainers = with maintainers; [ kragniz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ kragniz ]; + platforms = lib.platforms.all; mainProgram = "sailsd"; }; } diff --git a/pkgs/by-name/sa/saldl/package.nix b/pkgs/by-name/sa/saldl/package.nix index e91076d9747e..60454f32a45d 100644 --- a/pkgs/by-name/sa/saldl/package.nix +++ b/pkgs/by-name/sa/saldl/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { description = "CLI downloader optimized for speed and early preview"; homepage = "https://saldl.github.io"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ zowoq ]; - platforms = platforms.all; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ zowoq ]; + platforms = lib.platforms.all; mainProgram = "saldl"; }; } diff --git a/pkgs/by-name/sa/saldo/package.nix b/pkgs/by-name/sa/saldo/package.nix index 05b55a42914f..d745890b300b 100644 --- a/pkgs/by-name/sa/saldo/package.nix +++ b/pkgs/by-name/sa/saldo/package.nix @@ -64,11 +64,11 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Banking application for small screens"; homepage = "https://www.tabos.org/projects/saldo/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "org.tabos.saldo"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/sa/saleae-logic-2/package.nix b/pkgs/by-name/sa/saleae-logic-2/package.nix index 1d37f2594d2b..ba28e7f0bb61 100644 --- a/pkgs/by-name/sa/saleae-logic-2/package.nix +++ b/pkgs/by-name/sa/saleae-logic-2/package.nix @@ -68,13 +68,13 @@ appimageTools.wrapType2 { libxcrypt-legacy ]; - meta = with lib; { + meta = { homepage = "https://www.saleae.com/"; changelog = "https://ideas.saleae.com/f/changelog/"; description = "Software for Saleae logic analyzers"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ j-hui newam ]; diff --git a/pkgs/by-name/sa/saleae-logic/package.nix b/pkgs/by-name/sa/saleae-logic/package.nix index 96c624ab3dc1..09bd65981b32 100644 --- a/pkgs/by-name/sa/saleae-logic/package.nix +++ b/pkgs/by-name/sa/saleae-logic/package.nix @@ -129,9 +129,9 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Software for Saleae logic analyzers"; homepage = "https://www.saleae.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = intersectLists platforms.x86_64 platforms.linux; - maintainers = [ maintainers.bjornfor ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = intersectLists lib.platforms.x86_64 lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/sa/sam-ba/package.nix b/pkgs/by-name/sa/sam-ba/package.nix index 26122689315c..d8f9d9f31937 100644 --- a/pkgs/by-name/sa/sam-ba/package.nix +++ b/pkgs/by-name/sa/sam-ba/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Programming tools for Atmel SAM3/7/9 ARM-based microcontrollers"; longDescription = '' Atmel SAM-BA software provides an open set of tools for programming the @@ -48,9 +48,9 @@ stdenv.mkDerivation rec { ''; # Alternatively: https://www.microchip.com/en-us/development-tool/SAM-BA-In-system-Programmer homepage = "http://www.at91.com/linux4sam/bin/view/Linux4SAM/SoftwareTools"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.bjornfor ]; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/sa/sambamba/package.nix b/pkgs/by-name/sa/sambamba/package.nix index 57dee8f5ca56..a35f48ac0be9 100644 --- a/pkgs/by-name/sa/sambamba/package.nix +++ b/pkgs/by-name/sa/sambamba/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "SAM/BAM processing tool"; mainProgram = "sambamba"; homepage = "https://lomereiter.github.io/sambamba/"; - maintainers = with maintainers; [ jbedo ]; - license = with licenses; gpl2; - platforms = platforms.x86_64; + maintainers = with lib.maintainers; [ jbedo ]; + license = with lib.licenses; gpl2; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/sa/samblaster/package.nix b/pkgs/by-name/sa/samblaster/package.nix index fba9560557c3..aa45b3f7a573 100644 --- a/pkgs/by-name/sa/samblaster/package.nix +++ b/pkgs/by-name/sa/samblaster/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp samblaster $out/bin ''; - meta = with lib; { + meta = { description = "Tool for marking duplicates and extracting discordant/split reads from SAM/BAM files"; mainProgram = "samblaster"; - maintainers = with maintainers; [ jbedo ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ jbedo ]; + license = lib.licenses.mit; homepage = "https://github.com/GregoryFaust/samblaster"; - platforms = platforms.x86_64; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/sa/samdump2/package.nix b/pkgs/by-name/sa/samdump2/package.nix index 0489423d9fef..c232c1fe3fdb 100644 --- a/pkgs/by-name/sa/samdump2/package.nix +++ b/pkgs/by-name/sa/samdump2/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { "CC=cc" ]; - meta = with lib; { + meta = { description = "Dump password hashes from a Windows NT/2k/XP installation"; mainProgram = "samdump2"; homepage = "https://sourceforge.net/projects/ophcrack/files/samdump2"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sa/samim-fonts/package.nix b/pkgs/by-name/sa/samim-fonts/package.nix index b5df4039595f..d495c7331785 100644 --- a/pkgs/by-name/sa/samim-fonts/package.nix +++ b/pkgs/by-name/sa/samim-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/samim-font"; description = "Persian (Farsi) Font - فونت (قلم) فارسی صمیم"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sa/saml2aws/package.nix b/pkgs/by-name/sa/saml2aws/package.nix index 5a698ee06811..630ac8fdb941 100644 --- a/pkgs/by-name/sa/saml2aws/package.nix +++ b/pkgs/by-name/sa/saml2aws/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { --zsh <($out/bin/saml2aws --completion-script-zsh) ''; - meta = with lib; { + meta = { description = "CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP"; mainProgram = "saml2aws"; homepage = "https://github.com/Versent/saml2aws"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.pmyjavec ]; }; } diff --git a/pkgs/by-name/sa/sammler/package.nix b/pkgs/by-name/sa/sammler/package.nix index 1b65d1a61b60..80d9cfc1c93a 100644 --- a/pkgs/by-name/sa/sammler/package.nix +++ b/pkgs/by-name/sa/sammler/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Tool to extract useful data from documents"; mainProgram = "sammler"; homepage = "https://github.com/redcode-labs/Sammler"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; - teams = [ teams.redcodelabs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; + teams = [ lib.teams.redcodelabs ]; }; } diff --git a/pkgs/by-name/sa/sampler/package.nix b/pkgs/by-name/sa/sampler/package.nix index b08787ce5ab6..f116fcaca3b0 100644 --- a/pkgs/by-name/sa/sampler/package.nix +++ b/pkgs/by-name/sa/sampler/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { buildInputs = lib.optional stdenv.hostPlatform.isLinux alsa-lib; - meta = with lib; { + meta = { description = "Tool for shell commands execution, visualization and alerting"; homepage = "https://sampler.dev"; - license = licenses.gpl3; - maintainers = with maintainers; [ uvnikita ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ uvnikita ]; mainProgram = "sampler"; }; } diff --git a/pkgs/by-name/sa/sampradaya/package.nix b/pkgs/by-name/sa/sampradaya/package.nix index 6149f13578a0..df30de46a75d 100644 --- a/pkgs/by-name/sa/sampradaya/package.nix +++ b/pkgs/by-name/sa/sampradaya/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/deepestblue/sampradaya"; description = "Unicode-compliant Grantha font"; - maintainers = with maintainers; [ mathnerd314 ]; - license = licenses.ofl; # See font metadata - platforms = platforms.all; + maintainers = with lib.maintainers; [ mathnerd314 ]; + license = lib.licenses.ofl; # See font metadata + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sa/samtools/package.nix b/pkgs/by-name/sa/samtools/package.nix index 8de9ffe80a1b..5ec5202dd596 100644 --- a/pkgs/by-name/sa/samtools/package.nix +++ b/pkgs/by-name/sa/samtools/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tools for manipulating SAM/BAM/CRAM format"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "http://www.htslib.org/"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mimame unode ]; diff --git a/pkgs/by-name/sa/samurai/package.nix b/pkgs/by-name/sa/samurai/package.nix index b2223eb9a45b..37a879be2e56 100644 --- a/pkgs/by-name/sa/samurai/package.nix +++ b/pkgs/by-name/sa/samurai/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Ninja-compatible build tool written in C"; longDescription = '' samurai is a ninja-compatible build tool with a focus on simplicity, @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { respectively. ''; homepage = "https://github.com/michaelforney/samurai"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; # see LICENSE - maintainers = with maintainers; [ dtzWill ]; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "samu"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sa/sanctity/package.nix b/pkgs/by-name/sa/sanctity/package.nix index 0eabd6ca2dc4..2e822be03a07 100644 --- a/pkgs/by-name/sa/sanctity/package.nix +++ b/pkgs/by-name/sa/sanctity/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-r+0Qd88slA4ke90U1urVjdoiXwGWv42AViUpRCTucxs="; - meta = with lib; { + meta = { description = "Test the 16 terminal colors in all combinations"; homepage = "https://codeberg.org/annaaurora/sanctity"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "sanctity"; }; } diff --git a/pkgs/by-name/sa/sandbar/package.nix b/pkgs/by-name/sa/sandbar/package.nix index b5918209a6e8..711bc79994b9 100644 --- a/pkgs/by-name/sa/sandbar/package.nix +++ b/pkgs/by-name/sa/sandbar/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/kolunmi/sandbar"; description = "DWM-like bar for the river wayland compositor"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fccapria ]; - platforms = platforms.all; - badPlatforms = platforms.darwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fccapria ]; + platforms = lib.platforms.all; + badPlatforms = lib.platforms.darwin; mainProgram = "sandbar"; }; }) diff --git a/pkgs/by-name/sa/sane-airscan/package.nix b/pkgs/by-name/sa/sane-airscan/package.nix index 398ea6f01a37..3ec28ebf9d60 100644 --- a/pkgs/by-name/sa/sane-airscan/package.nix +++ b/pkgs/by-name/sa/sane-airscan/package.nix @@ -39,15 +39,15 @@ stdenv.mkDerivation rec { sha256 = "sha256-vpTUZVD5ONcQeDnjPmQDY9Qf/bmDqZMnxA+I8ALOB7Y="; }; - meta = with lib; { + meta = { homepage = "https://github.com/alexpevzner/sane-airscan"; description = "Scanner Access Now Easy - Apple AirScan (eSCL) driver"; mainProgram = "airscan-discover"; longDescription = '' sane-airscan: Linux support of Apple AirScan (eSCL) compatible document scanners. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ zaninime ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zaninime ]; }; } diff --git a/pkgs/by-name/sa/sanoid/package.nix b/pkgs/by-name/sa/sanoid/package.nix index cb1f55a8c123..005e4beff922 100644 --- a/pkgs/by-name/sa/sanoid/package.nix +++ b/pkgs/by-name/sa/sanoid/package.nix @@ -91,14 +91,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Policy-driven snapshot management tool for ZFS filesystems"; homepage = "https://github.com/jimsalterjrs/sanoid"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lopsided98 Frostman ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sa/sapling/package.nix b/pkgs/by-name/sa/sapling/package.nix index b47d8078a512..4b1d39d22140 100644 --- a/pkgs/by-name/sa/sapling/package.nix +++ b/pkgs/by-name/sa/sapling/package.nix @@ -183,15 +183,15 @@ python311Packages.buildPythonApplication { # Expose isl to nix repl as sapling.isl. passthru.isl = isl; - meta = with lib; { + meta = { description = "Scalable, User-Friendly Source Control System"; homepage = "https://sapling-scm.com"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pbar thoughtpolice ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "sl"; }; } diff --git a/pkgs/by-name/sa/sass/package.nix b/pkgs/by-name/sa/sass/package.nix index 2c81f7fdf181..1b2e3d58992f 100644 --- a/pkgs/by-name/sa/sass/package.nix +++ b/pkgs/by-name/sa/sass/package.nix @@ -15,15 +15,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "sass"; - meta = with lib; { + meta = { description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS"; homepage = "https://sass-lang.com"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ romildo manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sa/sassc/package.nix b/pkgs/by-name/sa/sassc/package.nix index c719bf0efd9a..3a7f86c64c81 100644 --- a/pkgs/by-name/sa/sassc/package.nix +++ b/pkgs/by-name/sa/sassc/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Front-end for libsass"; homepage = "https://github.com/sass/sassc/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "sassc"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ codyopel pjones ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sa/sasutils/package.nix b/pkgs/by-name/sa/sasutils/package.nix index 3d97ef3a1c9f..3573add0344b 100644 --- a/pkgs/by-name/sa/sasutils/package.nix +++ b/pkgs/by-name/sa/sasutils/package.nix @@ -26,10 +26,10 @@ python3Packages.buildPythonApplication rec { installManPage doc/man/man1/*.1 ''; - meta = with lib; { + meta = { homepage = "https://github.com/stanford-rc/sasutils"; description = "Set of command-line tools to ease the administration of Serial Attached SCSI (SAS) fabrics"; - license = licenses.asl20; - maintainers = with maintainers; [ aij ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aij ]; }; } diff --git a/pkgs/by-name/sa/satty/package.nix b/pkgs/by-name/sa/satty/package.nix index 3ca9de3f53b6..8d9a955064b7 100644 --- a/pkgs/by-name/sa/satty/package.nix +++ b/pkgs/by-name/sa/satty/package.nix @@ -55,11 +55,11 @@ rustPlatform.buildRustPackage rec { desktopItems = [ "satty.desktop" ]; - meta = with lib; { + meta = { description = "Screenshot annotation tool inspired by Swappy and Flameshot"; homepage = "https://github.com/gabm/Satty"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ pinpox donovanglover ]; diff --git a/pkgs/by-name/sa/saunafs/package.nix b/pkgs/by-name/sa/saunafs/package.nix index e4fbf89cdffe..68b2c37b8747 100644 --- a/pkgs/by-name/sa/saunafs/package.nix +++ b/pkgs/by-name/sa/saunafs/package.nix @@ -80,11 +80,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = nixosTests.saunafs; - meta = with lib; { + meta = { description = "Distributed POSIX file system"; homepage = "https://saunafs.com"; - platforms = platforms.linux; - license = licenses.gpl3Only; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.markuskowa ]; }; }) diff --git a/pkgs/by-name/sa/savepagenow/package.nix b/pkgs/by-name/sa/savepagenow/package.nix index 1dd2ad43edd9..b2687794190b 100644 --- a/pkgs/by-name/sa/savepagenow/package.nix +++ b/pkgs/by-name/sa/savepagenow/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "savepagenow" ]; - meta = with lib; { + meta = { description = "Simple Python wrapper for archive.org's \"Save Page Now\" capturing service"; homepage = "https://github.com/pastpages/savepagenow"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "savepagenow"; }; } diff --git a/pkgs/by-name/sb/sbc/package.nix b/pkgs/by-name/sb/sbc/package.nix index 41d6eefdab66..c1fd05bb7423 100644 --- a/pkgs/by-name/sb/sbc/package.nix +++ b/pkgs/by-name/sb/sbc/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libsndfile ]; - meta = with lib; { + meta = { description = "SubBand Codec Library"; homepage = "https://www.bluez.org/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sb/sblim-sfcc/package.nix b/pkgs/by-name/sb/sblim-sfcc/package.nix index 21f7467a1c0e..3013bb600e97 100644 --- a/pkgs/by-name/sb/sblim-sfcc/package.nix +++ b/pkgs/by-name/sb/sblim-sfcc/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Small Footprint CIM Client Library"; homepage = "https://sourceforge.net/projects/sblim/"; - license = licenses.cpl10; - maintainers = with maintainers; [ deepfire ]; - platforms = platforms.unix; + license = lib.licenses.cpl10; + maintainers = with lib.maintainers; [ deepfire ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sb/sbomnix/package.nix b/pkgs/by-name/sb/sbomnix/package.nix index 1ff605248c1f..c5dde3a7d84d 100644 --- a/pkgs/by-name/sb/sbomnix/package.nix +++ b/pkgs/by-name/sb/sbomnix/package.nix @@ -83,15 +83,15 @@ python.pkgs.buildPythonApplication rec { # Tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Utilities to help with software supply chain challenges on nix targets"; homepage = "https://github.com/tiiuae/sbomnix"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 cc-by-30 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ henrirosten jk ]; diff --git a/pkgs/by-name/sb/sbs/package.nix b/pkgs/by-name/sb/sbs/package.nix index 5e2b33cb6a78..9fa22dc475b4 100644 --- a/pkgs/by-name/sb/sbs/package.nix +++ b/pkgs/by-name/sb/sbs/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple background setter with 200 lines of code"; homepage = "https://github.com/onur-ozkan/sbs"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ onur-ozkan ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ onur-ozkan ]; mainProgram = "sbs"; }; } diff --git a/pkgs/by-name/sb/sbsigntool/package.nix b/pkgs/by-name/sb/sbsigntool/package.nix index b0e1abf98df4..6dcb4fd79b3d 100644 --- a/pkgs/by-name/sb/sbsigntool/package.nix +++ b/pkgs/by-name/sb/sbsigntool/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Tools for maintaining UEFI signature databases"; homepage = "http://jk.ozlabs.org/docs/sbkeysync-maintaing-uefi-key-databases"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hmenke raitobezarius ]; @@ -71,6 +71,6 @@ stdenv.mkDerivation rec { "x86_64-linux" "aarch64-linux" ]; # Broken on i686 - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/sc/sc-im/package.nix b/pkgs/by-name/sc/sc-im/package.nix index 203b45737eda..85be1b7cc149 100644 --- a/pkgs/by-name/sc/sc-im/package.nix +++ b/pkgs/by-name/sc/sc-im/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/sc-im" --prefix PATH : "${lib.makeBinPath [ gnuplot ]}" ''; - meta = with lib; { + meta = { changelog = "https://github.com/andmarti1424/sc-im/blob/${src.rev}/CHANGES"; homepage = "https://github.com/andmarti1424/sc-im"; description = "Ncurses spreadsheet program for terminal"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.unix; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sc/sc68/package.nix b/pkgs/by-name/sc/sc68/package.nix index 6c83875c9fd2..ace1c3e81a2e 100644 --- a/pkgs/by-name/sc/sc68/package.nix +++ b/pkgs/by-name/sc/sc68/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "Atari ST and Amiga music player"; homepage = "http://sc68.atari.org/project.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sc/scala-cli/package.nix b/pkgs/by-name/sc/scala-cli/package.nix index 406670f00451..328185e77d2b 100644 --- a/pkgs/by-name/sc/scala-cli/package.nix +++ b/pkgs/by-name/sc/scala-cli/package.nix @@ -80,14 +80,14 @@ stdenv.mkDerivation { --zsh <(scala-cli completions zsh) ''; - meta = with lib; { + meta = { homepage = "https://scala-cli.virtuslab.org"; downloadPage = "https://github.com/VirtusLab/scala-cli/releases/v${version}"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; description = "Command-line tool to interact with the Scala language"; mainProgram = "scala-cli"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kubukoz agilesteel ]; diff --git a/pkgs/by-name/sc/scalafix/package.nix b/pkgs/by-name/sc/scalafix/package.nix index 9aa101f331de..bf20fa4ecfaa 100644 --- a/pkgs/by-name/sc/scalafix/package.nix +++ b/pkgs/by-name/sc/scalafix/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Refactoring and linting tool for Scala"; mainProgram = "scalafix"; homepage = "https://scalacenter.github.io/scalafix/"; - license = licenses.bsd3; - maintainers = [ maintainers.tomahna ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.tomahna ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/sc/scaleft/package.nix b/pkgs/by-name/sc/scaleft/package.nix index 9922319516eb..5f30f67148fe 100644 --- a/pkgs/by-name/sc/scaleft/package.nix +++ b/pkgs/by-name/sc/scaleft/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { version = "sft version ${version}"; }; - meta = with lib; { + meta = { description = "Zero Trust software which you can use to secure your internal servers and services"; homepage = "https://www.scaleft.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ jloyet ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jloyet ]; platforms = [ "x86_64-linux" ]; mainProgram = "sft"; }; diff --git a/pkgs/by-name/sc/scalingo/package.nix b/pkgs/by-name/sc/scalingo/package.nix index 9753e2f8b913..4ca6fd97f9bf 100644 --- a/pkgs/by-name/sc/scalingo/package.nix +++ b/pkgs/by-name/sc/scalingo/package.nix @@ -30,13 +30,13 @@ buildGoModule rec { --zsh cmd/autocomplete/scripts/scalingo_complete.zsh ''; - meta = with lib; { + meta = { description = "Command line client for the Scalingo PaaS"; mainProgram = "scalingo"; homepage = "https://doc.scalingo.com/platform/cli/start"; changelog = "https://github.com/Scalingo/cli/blob/master/CHANGELOG.md"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ cimm ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ cimm ]; platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/sc/scalpel/package.nix b/pkgs/by-name/sc/scalpel/package.nix index 7cbdd41caa4f..4b2400011cb5 100644 --- a/pkgs/by-name/sc/scalpel/package.nix +++ b/pkgs/by-name/sc/scalpel/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { install -Dm644 scalpel.conf -t $out/share/scalpel/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/sleuthkit/scalpel"; description = "Recover files based on their headers, footers and internal data structures, based on Foremost"; mainProgram = "scalpel"; - maintainers = with maintainers; [ shard7 ]; - platforms = platforms.unix; - license = with licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ shard7 ]; + platforms = lib.platforms.unix; + license = with lib.licenses; [ asl20 ]; }; }) diff --git a/pkgs/by-name/sc/scanbd/package.nix b/pkgs/by-name/sc/scanbd/package.nix index b80f271d225c..df42333377a0 100644 --- a/pkgs/by-name/sc/scanbd/package.nix +++ b/pkgs/by-name/sc/scanbd/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Scanner button daemon"; longDescription = '' scanbd polls a scanner's buttons, looking for button presses, function @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { ''; homepage = "http://scanbd.sourceforge.net/"; downloadPage = "https://sourceforge.net/projects/scanbd/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sc/scaphandre/package.nix b/pkgs/by-name/sc/scaphandre/package.nix index b904dc9260ed..4eae3bc9d723 100644 --- a/pkgs/by-name/sc/scaphandre/package.nix +++ b/pkgs/by-name/sc/scaphandre/package.nix @@ -65,12 +65,12 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Electrical power consumption metrology agent"; homepage = "https://github.com/hubblo-org/scaphandre"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ gaelreyrol ]; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "scaphandre"; # Upstream needs to decide what to do about a broken dependency # https://github.com/hubblo-org/scaphandre/issues/403 diff --git a/pkgs/by-name/sc/scc/package.nix b/pkgs/by-name/sc/scc/package.nix index 2ff8e4b17d07..ba44ba9c6a75 100644 --- a/pkgs/by-name/sc/scc/package.nix +++ b/pkgs/by-name/sc/scc/package.nix @@ -19,13 +19,13 @@ buildGoModule rec { # scc has a scripts/ sub-package that's for testing. excludedPackages = [ "scripts" ]; - meta = with lib; { + meta = { homepage = "https://github.com/boyter/scc"; description = "Very fast accurate code counter with complexity calculations and COCOMO estimates written in pure Go"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sigma ]; - license = with licenses; [ + license = with lib.licenses; [ mit ]; }; diff --git a/pkgs/by-name/sc/scd2html/package.nix b/pkgs/by-name/sc/scd2html/package.nix index f84d35929832..a1da25c536b2 100644 --- a/pkgs/by-name/sc/scd2html/package.nix +++ b/pkgs/by-name/sc/scd2html/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Generates HTML from scdoc source files"; homepage = "https://git.sr.ht/~bitfehler/scd2html"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "scd2html"; }; } diff --git a/pkgs/by-name/sc/scdl/package.nix b/pkgs/by-name/sc/scdl/package.nix index 38e2c25dc41c..0edd41eb17a1 100644 --- a/pkgs/by-name/sc/scdl/package.nix +++ b/pkgs/by-name/sc/scdl/package.nix @@ -42,10 +42,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "scdl" ]; - meta = with lib; { + meta = { description = "Download Music from Soundcloud"; homepage = "https://github.com/flyingrub/scdl"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; mainProgram = "scdl"; }; diff --git a/pkgs/by-name/sc/scenebuilder/package.nix b/pkgs/by-name/sc/scenebuilder/package.nix index 3dd1354f8c9f..13417d717b9d 100644 --- a/pkgs/by-name/sc/scenebuilder/package.nix +++ b/pkgs/by-name/sc/scenebuilder/package.nix @@ -90,15 +90,15 @@ maven.buildMavenPackage rec { }) ]; - meta = with lib; { + meta = { changelog = "https://github.com/gluonhq/scenebuilder/releases/tag/${src.rev}"; description = "Visual, drag'n'drop, layout tool for designing JavaFX application user interfaces"; homepage = "https://gluonhq.com/products/scene-builder/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "scenebuilder"; - maintainers = with maintainers; [ wirew0rm ]; + maintainers = with lib.maintainers; [ wirew0rm ]; platforms = jdk.meta.platforms; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; diff --git a/pkgs/by-name/sc/scenic-view/package.nix b/pkgs/by-name/sc/scenic-view/package.nix index 4a2d5bf17e3b..9ebf9942785a 100644 --- a/pkgs/by-name/sc/scenic-view/package.nix +++ b/pkgs/by-name/sc/scenic-view/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { desktopItems = [ desktopItem ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "JavaFx application to visualize and modify the scenegraph of running JavaFx applications"; mainProgram = "scenic-view"; @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { This lets you find bugs and get things pixel perfect without having to do the compile-check-compile dance. ''; homepage = "https://github.com/JonathanGiles/scenic-view/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wirew0rm ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wirew0rm ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sc/scheherazade/package.nix b/pkgs/by-name/sc/scheherazade/package.nix index 944c00a78a4c..463ce8a01ff4 100644 --- a/pkgs/by-name/sc/scheherazade/package.nix +++ b/pkgs/by-name/sc/scheherazade/package.nix @@ -36,7 +36,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://software.sil.org/scheherazade/"; description = "Font designed in a similar style to traditional Naskh typefaces"; longDescription = '' @@ -57,7 +57,7 @@ stdenvNoCC.mkDerivation rec { font family, along with documentation. ''; downloadPage = "https://software.sil.org/scheherazade/download/"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sc/schema2ldif/package.nix b/pkgs/by-name/sc/schema2ldif/package.nix index 3fe969008dca..e93d12b9c197 100644 --- a/pkgs/by-name/sc/schema2ldif/package.nix +++ b/pkgs/by-name/sc/schema2ldif/package.nix @@ -38,11 +38,11 @@ stdenvNoCC.mkDerivation rec { --prefix PERL5PATH : "${perlPackages.makePerlPath [ perlPackages.GetoptLong ]}" ''; - meta = with lib; { + meta = { description = "Utilities to manage schema in .schema and .ldif format"; homepage = "https://www.fusiondirectory.org/schema2ldif-project-and-components/"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/sc/schemacrawler/package.nix b/pkgs/by-name/sc/schemacrawler/package.nix index db471c979688..2f12f2d3e5e8 100644 --- a/pkgs/by-name/sc/schemacrawler/package.nix +++ b/pkgs/by-name/sc/schemacrawler/package.nix @@ -32,17 +32,17 @@ stdenv.mkDerivation (finalAttrs: { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Database schema discovery and comprehension tool"; mainProgram = "schemacrawler"; homepage = "https://www.schemacrawler.com/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = with licenses; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = with lib.licenses; [ epl10 gpl3Only lgpl3Only ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/sc/scheme-bytestructures/package.nix b/pkgs/by-name/sc/scheme-bytestructures/package.nix index a1d670b79fb2..3edcbdb45186 100644 --- a/pkgs/by-name/sc/scheme-bytestructures/package.nix +++ b/pkgs/by-name/sc/scheme-bytestructures/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { # In procedure bytevector-u8-ref: Argument 2 out of range dontStrip = stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Structured access to bytevector contents"; homepage = "https://github.com/TaylanUB/scheme-bytestructures"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ethancedwards8 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ethancedwards8 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sc/scheme-manpages/package.nix b/pkgs/by-name/sc/scheme-manpages/package.nix index a71097cbdf05..e7fa597a64b8 100644 --- a/pkgs/by-name/sc/scheme-manpages/package.nix +++ b/pkgs/by-name/sc/scheme-manpages/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Unix manual pages for R6RS and R7RS"; homepage = "https://github.com/schemedoc/manpages"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sc/scheme48/package.nix b/pkgs/by-name/sc/scheme48/package.nix index e7a993354470..e220d3bc0f50 100644 --- a/pkgs/by-name/sc/scheme48/package.nix +++ b/pkgs/by-name/sc/scheme48/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { ''; installTargets = "install-no-doc"; - meta = with lib; { + meta = { homepage = "https://s48.org/"; description = "Scheme 48 interpreter for R5RS"; - platforms = platforms.unix; - license = licenses.bsd3; - maintainers = [ maintainers.siraben ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.siraben ]; }; } diff --git a/pkgs/by-name/sc/schemes/package.nix b/pkgs/by-name/sc/schemes/package.nix index 7b1b887a8c3a..ef9ed41bf55f 100644 --- a/pkgs/by-name/sc/schemes/package.nix +++ b/pkgs/by-name/sc/schemes/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { libpanel ]; - meta = with lib; { + meta = { description = "Edit GtkSourceView style-schemes for an application or platform"; mainProgram = "schemes"; homepage = "https://gitlab.gnome.org/chergert/schemes"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ _0xMRTT ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ _0xMRTT ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sc/schleuder-cli/package.nix b/pkgs/by-name/sc/schleuder-cli/package.nix index c65c16d40905..7d799dedd149 100644 --- a/pkgs/by-name/sc/schleuder-cli/package.nix +++ b/pkgs/by-name/sc/schleuder-cli/package.nix @@ -20,7 +20,7 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "schleuder-cli"; - meta = with lib; { + meta = { description = "Command line tool to create and manage schleuder-lists"; longDescription = '' Schleuder-cli enables creating, configuring, and deleting lists, @@ -29,7 +29,7 @@ bundlerApp { ''; homepage = "https://schleuder.org"; changelog = "https://0xacab.org/schleuder/schleuder-cli/-/blob/main/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/sc/schleuder/package.nix b/pkgs/by-name/sc/schleuder/package.nix index 67dd09d8b6c6..9b1110446c4b 100644 --- a/pkgs/by-name/sc/schleuder/package.nix +++ b/pkgs/by-name/sc/schleuder/package.nix @@ -24,7 +24,7 @@ bundlerApp { inherit (nixosTests) schleuder; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Encrypting mailing list manager with remailing-capabilities"; longDescription = '' @@ -34,7 +34,7 @@ bundlerApp { ''; homepage = "https://schleuder.org"; changelog = "https://0xacab.org/schleuder/schleuder/blob/main/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/sc/schroedinger/package.nix b/pkgs/by-name/sc/schroedinger/package.nix index fe0458917d82..56a563991ff7 100644 --- a/pkgs/by-name/sc/schroedinger/package.nix +++ b/pkgs/by-name/sc/schroedinger/package.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Implementation of the Dirac video codec in ANSI C"; homepage = "https://sourceforge.net/projects/schrodinger/"; maintainers = [ ]; license = [ - licenses.mpl11 - licenses.lgpl2 - licenses.mit + lib.licenses.mpl11 + lib.licenses.lgpl2 + lib.licenses.mit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sc/scid-vs-pc/package.nix b/pkgs/by-name/sc/scid-vs-pc/package.nix index 78d96761773f..3790501a5580 100644 --- a/pkgs/by-name/sc/scid-vs-pc/package.nix +++ b/pkgs/by-name/sc/scid-vs-pc/package.nix @@ -60,12 +60,12 @@ tcl.mkTclDerivation rec { ]; }; - meta = with lib; { + meta = { description = "Chess database with play and training functionality"; homepage = "https://scidvspc.sourceforge.net/"; license = lib.licenses.gpl2Only; mainProgram = "scid"; - maintainers = [ maintainers.paraseba ]; + maintainers = [ lib.maintainers.paraseba ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sc/scientifica/package.nix b/pkgs/by-name/sc/scientifica/package.nix index 5f09ddb0eefd..4bdc4a029c57 100644 --- a/pkgs/by-name/sc/scientifica/package.nix +++ b/pkgs/by-name/sc/scientifica/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tall and condensed bitmap font for geeks"; homepage = "https://github.com/oppiliappan/scientifica"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/sc/scion-apps/package.nix b/pkgs/by-name/sc/scion-apps/package.nix index 6e2b16471092..2be8d1b1ec98 100644 --- a/pkgs/by-name/sc/scion-apps/package.nix +++ b/pkgs/by-name/sc/scion-apps/package.nix @@ -48,11 +48,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Public repository for SCION applications"; homepage = "https://github.com/netsec-ethz/scion-apps"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthewcroughan sarcasticadmin ]; diff --git a/pkgs/by-name/sc/scip-go/package.nix b/pkgs/by-name/sc/scip-go/package.nix index 22e07287513b..ac92bf73886c 100644 --- a/pkgs/by-name/sc/scip-go/package.nix +++ b/pkgs/by-name/sc/scip-go/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "SCIP (SCIP Code Intelligence Protocol) indexer for Golang"; homepage = "https://github.com/sourcegraph/scip-go/tree/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "scip-go"; }; } diff --git a/pkgs/by-name/sc/scitokens-cpp/package.nix b/pkgs/by-name/sc/scitokens-cpp/package.nix index 6f390abeac71..edefd93b6b20 100644 --- a/pkgs/by-name/sc/scitokens-cpp/package.nix +++ b/pkgs/by-name/sc/scitokens-cpp/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { sqlite ]; - meta = with lib; { + meta = { homepage = "https://github.com/scitokens/scitokens-cpp/"; description = "C++ implementation of the SciTokens library with a C library interface"; - platforms = platforms.unix; - license = licenses.asl20; - maintainers = with maintainers; [ evey ]; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ evey ]; }; } diff --git a/pkgs/by-name/sc/scli/package.nix b/pkgs/by-name/sc/scli/package.nix index 05b7fbbcc9fd..d3b76edce4c8 100644 --- a/pkgs/by-name/sc/scli/package.nix +++ b/pkgs/by-name/sc/scli/package.nix @@ -57,11 +57,11 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Simple terminal user interface for Signal"; mainProgram = "scli"; homepage = "https://github.com/isamert/scli"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sc/scmpuff/package.nix b/pkgs/by-name/sc/scmpuff/package.nix index 563b839475bf..05ba1d72b1b7 100644 --- a/pkgs/by-name/sc/scmpuff/package.nix +++ b/pkgs/by-name/sc/scmpuff/package.nix @@ -35,12 +35,12 @@ buildGoModule (finalAttrs: { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "Numeric file shortcuts for common git commands"; homepage = "https://github.com/mroth/scmpuff"; changelog = "https://github.com/mroth/scmpuff/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud christoph-heiss ]; diff --git a/pkgs/by-name/sc/scorched3d/package.nix b/pkgs/by-name/sc/scorched3d/package.nix index c0a08fd5ca43..2d838bbbb789 100644 --- a/pkgs/by-name/sc/scorched3d/package.nix +++ b/pkgs/by-name/sc/scorched3d/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lopenal"; - meta = with lib; { + meta = { homepage = "http://scorched3d.co.uk/"; description = "3D Clone of the classic Scorched Earth"; - license = licenses.gpl2Plus; - platforms = platforms.linux; # maybe more + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; # maybe more maintainers = [ ]; }; } diff --git a/pkgs/by-name/sc/scout/package.nix b/pkgs/by-name/sc/scout/package.nix index ccb5aeaec7df..5035c697846c 100644 --- a/pkgs/by-name/sc/scout/package.nix +++ b/pkgs/by-name/sc/scout/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-reoE3WNgulREwxoeGFEN1QONZ2q1LHmQF7+iGx0SGTY="; - meta = with lib; { + meta = { description = "Lightweight URL fuzzer and spider: Discover a web server's undisclosed files, directories and VHOSTs"; mainProgram = "scout"; homepage = "https://github.com/liamg/scout"; - platforms = platforms.unix; - license = licenses.unlicense; - maintainers = with maintainers; [ totoroot ]; + platforms = lib.platforms.unix; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ totoroot ]; }; } diff --git a/pkgs/by-name/sc/scponly/package.nix b/pkgs/by-name/sc/scponly/package.nix index ad8cb9d4a65a..df2434dfc50f 100644 --- a/pkgs/by-name/sc/scponly/package.nix +++ b/pkgs/by-name/sc/scponly/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { passthru.shellPath = "/bin/scponly"; - meta = with lib; { + meta = { description = "Shell that only permits scp and sftp-server"; mainProgram = "scponly"; homepage = "https://github.com/scponly/scponly"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ wmertens ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ wmertens ]; }; } diff --git a/pkgs/by-name/sc/scream/package.nix b/pkgs/by-name/sc/scream/package.nix index acb863fe0fa3..0ee05bc91698 100644 --- a/pkgs/by-name/sc/scream/package.nix +++ b/pkgs/by-name/sc/scream/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { $out/bin/scream -h 2>&1 | grep -q Usage: ''; - meta = with lib; { + meta = { description = "Audio receiver for the Scream virtual network sound card"; homepage = "https://github.com/duncanthrax/scream"; - license = licenses.mspl; - platforms = platforms.linux; + license = lib.licenses.mspl; + platforms = lib.platforms.linux; mainProgram = "scream"; - maintainers = with maintainers; [ arcnmx ]; + maintainers = with lib.maintainers; [ arcnmx ]; }; } diff --git a/pkgs/by-name/sc/screego/package.nix b/pkgs/by-name/sc/screego/package.nix index 9947d7d3d32c..c598953d2b21 100644 --- a/pkgs/by-name/sc/screego/package.nix +++ b/pkgs/by-name/sc/screego/package.nix @@ -74,11 +74,11 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Screen sharing for developers"; homepage = "https://screego.net"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ pinpox ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ pinpox ]; mainProgram = "screego"; }; } diff --git a/pkgs/by-name/sc/screen-pipe/package.nix b/pkgs/by-name/sc/screen-pipe/package.nix index a145114e8443..e67a07584be4 100644 --- a/pkgs/by-name/sc/screen-pipe/package.nix +++ b/pkgs/by-name/sc/screen-pipe/package.nix @@ -60,13 +60,13 @@ rustPlatform.buildRustPackage rec { doCheck = false; # Tests fail to build - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = "Personalized AI powered by what you've seen, said, or heard"; homepage = "https://github.com/louis030195/screen-pipe"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "screen-pipe"; }; } diff --git a/pkgs/by-name/sc/screen/package.nix b/pkgs/by-name/sc/screen/package.nix index 67ee278ccb13..adb4ec1ec482 100644 --- a/pkgs/by-name/sc/screen/package.nix +++ b/pkgs/by-name/sc/screen/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { pam ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/screen/"; description = "Window manager that multiplexes a physical terminal"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' GNU Screen is a full-screen window manager that multiplexes a physical @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { terminal. ''; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sc/screenfetch/package.nix b/pkgs/by-name/sc/screenfetch/package.nix index 12185ee31bd1..8aaef982dcfb 100644 --- a/pkgs/by-name/sc/screenfetch/package.nix +++ b/pkgs/by-name/sc/screenfetch/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { --prefix PATH : ${path} ''; - meta = with lib; { + meta = { description = "Fetches system/theme information in terminal for Linux desktop screenshots"; longDescription = '' screenFetch is a "Bash Screenshot Information Tool". This handy Bash @@ -82,10 +82,10 @@ stdenv.mkDerivation rec { screenshot upon displaying info, and even customizing the screenshot command! This script is very easy to add to and can easily be extended. ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/KittyKatt/screenFetch"; - maintainers = with maintainers; [ relrod ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ relrod ]; + platforms = lib.platforms.all; mainProgram = "screenfetch"; }; } diff --git a/pkgs/by-name/sc/screenkey/package.nix b/pkgs/by-name/sc/screenkey/package.nix index fca3e6dec892..0fbb9d3d2d49 100644 --- a/pkgs/by-name/sc/screenkey/package.nix +++ b/pkgs/by-name/sc/screenkey/package.nix @@ -64,11 +64,11 @@ python3.pkgs.buildPythonApplication rec { --replace-fail libXtst.so.6 ${lib.getLib xorg.libXtst}/lib/libXtst.so.6 ''; - meta = with lib; { + meta = { homepage = "https://www.thregr.org/~wavexx/software/screenkey/"; description = "Screencast tool to display your keys inspired by Screenflick"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "screenkey"; }; diff --git a/pkgs/by-name/sc/scriptaculous/package.nix b/pkgs/by-name/sc/scriptaculous/package.nix index caec81d4cf05..1ce5cebff52a 100644 --- a/pkgs/by-name/sc/scriptaculous/package.nix +++ b/pkgs/by-name/sc/scriptaculous/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { cp src/*.js $out ''; - meta = with lib; { + meta = { description = "Set of JavaScript libraries to enhance the user interface of web sites"; longDescription = '' script.aculo.us provides you with @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://script.aculo.us/"; downloadPage = "https://script.aculo.us/dist/"; - license = licenses.mit; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/sc/scripthaus/package.nix b/pkgs/by-name/sc/scripthaus/package.nix index fd70bab54a16..ae1d01b44791 100644 --- a/pkgs/by-name/sc/scripthaus/package.nix +++ b/pkgs/by-name/sc/scripthaus/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { ]; }; - meta = with lib; { + meta = { description = "Run bash, Python, and JS snippets from your Markdown files directly from the command-line"; homepage = "https://github.com/scripthaus-dev/scripthaus"; - license = licenses.mpl20; - maintainers = with maintainers; [ raspher ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ raspher ]; mainProgram = "scripthaus"; }; } diff --git a/pkgs/by-name/sc/scriptisto/package.nix b/pkgs/by-name/sc/scriptisto/package.nix index 3058e94cf36a..4b714b1ad5a1 100644 --- a/pkgs/by-name/sc/scriptisto/package.nix +++ b/pkgs/by-name/sc/scriptisto/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { installManPage man/* ''; - meta = with lib; { + meta = { description = "Language-agnostic \"shebang interpreter\" that enables you to write scripts in compiled languages"; mainProgram = "scriptisto"; homepage = "https://github.com/igor-petruk/scriptisto"; changelog = "https://github.com/igor-petruk/scriptisto/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sc/scrot/package.nix b/pkgs/by-name/sc/scrot/package.nix index 236899adab11..16421fcc8a52 100644 --- a/pkgs/by-name/sc/scrot/package.nix +++ b/pkgs/by-name/sc/scrot/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { libbsd ]; - meta = with lib; { + meta = { homepage = "https://github.com/resurrecting-open-source-projects/scrot"; description = "Command-line screen capture utility"; mainProgram = "scrot"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; - license = licenses.mitAdvertising; + license = lib.licenses.mitAdvertising; }; } diff --git a/pkgs/by-name/sc/scrounge-ntfs/package.nix b/pkgs/by-name/sc/scrounge-ntfs/package.nix index 0a3b9d094493..25baefbd1fc3 100644 --- a/pkgs/by-name/sc/scrounge-ntfs/package.nix +++ b/pkgs/by-name/sc/scrounge-ntfs/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation (finalAttrs: { ./darwin.diff ]; - meta = with lib; { + meta = { description = "Data recovery program for NTFS file systems"; mainProgram = "scrounge-ntfs"; homepage = "http://thewalter.net/stef/software/scrounge/"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; }) diff --git a/pkgs/by-name/sc/scrub/package.nix b/pkgs/by-name/sc/scrub/package.nix index b65e9bfb65b4..7f5223a31672 100644 --- a/pkgs/by-name/sc/scrub/package.nix +++ b/pkgs/by-name/sc/scrub/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = with lib; { + meta = { description = "Disk overwrite utility"; homepage = "https://github.com/chaos/scrub"; changelog = "https://raw.githubusercontent.com/chaos/scrub/master/NEWS"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ j0hax ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ j0hax ]; + platforms = lib.platforms.unix; mainProgram = "scrub"; }; } diff --git a/pkgs/by-name/sc/scryer-prolog/package.nix b/pkgs/by-name/sc/scryer-prolog/package.nix index 19c26ecc0674..bd12c18a5d06 100644 --- a/pkgs/by-name/sc/scryer-prolog/package.nix +++ b/pkgs/by-name/sc/scryer-prolog/package.nix @@ -25,12 +25,12 @@ rustPlatform.buildRustPackage rec { CARGO_FEATURE_USE_SYSTEM_LIBS = true; - meta = with lib; { + meta = { description = "Modern Prolog implementation written mostly in Rust"; mainProgram = "scryer-prolog"; homepage = "https://github.com/mthom/scryer-prolog"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ malbarbo wkral ]; diff --git a/pkgs/by-name/sc/scrypt/package.nix b/pkgs/by-name/sc/scrypt/package.nix index e34984aa5c30..1be571f6749f 100644 --- a/pkgs/by-name/sc/scrypt/package.nix +++ b/pkgs/by-name/sc/scrypt/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { checkTarget = "test"; nativeCheckInputs = lib.optionals stdenv.hostPlatform.isLinux [ util-linux ]; - meta = with lib; { + meta = { description = "Encryption utility"; mainProgram = "scrypt"; homepage = "https://www.tarsnap.com/scrypt.html"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/sc/scsh/package.nix b/pkgs/by-name/sc/scsh/package.nix index 6d4c81da43be..6b0ae0957141 100644 --- a/pkgs/by-name/sc/scsh/package.nix +++ b/pkgs/by-name/sc/scsh/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Scheme shell"; homepage = "http://www.scsh.net/"; - license = licenses.bsd3; - maintainers = with maintainers; [ joachifm ]; - platforms = with platforms; unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ joachifm ]; + platforms = with lib.platforms; unix; mainProgram = "scsh"; }; } diff --git a/pkgs/by-name/sc/scss-lint/package.nix b/pkgs/by-name/sc/scss-lint/package.nix index 4d5cbab9945f..9957fe44cfcd 100644 --- a/pkgs/by-name/sc/scss-lint/package.nix +++ b/pkgs/by-name/sc/scss-lint/package.nix @@ -11,14 +11,14 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "scss-lint"; - meta = with lib; { + meta = { description = "Tool to help keep your SCSS files clean and readable"; homepage = "https://github.com/brigade/scss-lint"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovek323 nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sc/sct/package.nix b/pkgs/by-name/sc/sct/package.nix index 4be102d0eb93..610e06da919b 100644 --- a/pkgs/by-name/sc/sct/package.nix +++ b/pkgs/by-name/sc/sct/package.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://www.umaxx.net/"; description = "Minimal utility to set display colour temperature"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin somasis ]; - license = licenses.isc; - platforms = with platforms; linux ++ freebsd ++ openbsd; + license = lib.licenses.isc; + platforms = with lib.platforms; linux ++ freebsd ++ openbsd; }; } diff --git a/pkgs/by-name/sc/scummvm/games.nix b/pkgs/by-name/sc/scummvm/games.nix index 0275b50039da..682d10283031 100644 --- a/pkgs/by-name/sc/scummvm/games.nix +++ b/pkgs/by-name/sc/scummvm/games.nix @@ -88,10 +88,10 @@ let runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.scummvm.org"; - license = licenses.free; # refer to the readme for exact wording - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.free; # refer to the readme for exact wording + maintainers = with lib.maintainers; [ peterhoeg ]; inherit description; inherit (scummvm.meta) platforms; }; diff --git a/pkgs/by-name/sd/sd-local/package.nix b/pkgs/by-name/sd/sd-local/package.nix index db01176c90d2..9fb77248878f 100644 --- a/pkgs/by-name/sd/sd-local/package.nix +++ b/pkgs/by-name/sd/sd-local/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "screwdriver.cd local mode"; mainProgram = "sd-local"; homepage = "https://github.com/screwdriver-cd/sd-local"; - license = licenses.bsd3; - maintainers = with maintainers; [ midchildan ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ midchildan ]; }; } diff --git a/pkgs/by-name/sd/sd-mux-ctrl/package.nix b/pkgs/by-name/sd/sd-mux-ctrl/package.nix index 1cd7dbb0f171..ae11a7b078d5 100644 --- a/pkgs/by-name/sd/sd-mux-ctrl/package.nix +++ b/pkgs/by-name/sd/sd-mux-ctrl/package.nix @@ -43,15 +43,15 @@ stdenv.mkDerivation { --bash ../etc/bash_completion.d/sd-mux-ctrl ''; - meta = with lib; { + meta = { description = "Tool for controlling multiple sd-mux devices"; homepage = "https://git.tizen.org/cgit/tools/testlab/sd-mux"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ newam sarcasticadmin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "sd-mux-ctrl"; }; } diff --git a/pkgs/by-name/sd/sdate/package.nix b/pkgs/by-name/sd/sdate/package.nix index dea6aa1ed3ee..1cac34651800 100644 --- a/pkgs/by-name/sd/sdate/package.nix +++ b/pkgs/by-name/sd/sdate/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://www.df7cb.de/projects/sdate"; description = "Eternal september version of the date program"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ edef ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ edef ]; + platforms = lib.platforms.all; mainProgram = "sdate"; }; } diff --git a/pkgs/by-name/sd/sdcv/package.nix b/pkgs/by-name/sd/sdcv/package.nix index e1773891ed8d..9f4781dfbbca 100644 --- a/pkgs/by-name/sd/sdcv/package.nix +++ b/pkgs/by-name/sd/sdcv/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-D__GNU_LIBRARY__"; - meta = with lib; { + meta = { homepage = "https://dushistov.github.io/sdcv/"; description = "Console version of StarDict"; - maintainers = with maintainers; [ lovek323 ]; - license = licenses.gpl2; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ lovek323 ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; mainProgram = "sdcv"; }; } diff --git a/pkgs/by-name/sd/sddm-chili-theme/package.nix b/pkgs/by-name/sd/sddm-chili-theme/package.nix index a08e87b6982e..1708ec5ee2e4 100644 --- a/pkgs/by-name/sd/sddm-chili-theme/package.nix +++ b/pkgs/by-name/sd/sddm-chili-theme/package.nix @@ -48,8 +48,8 @@ stdenv.mkDerivation { echo ${libsForQt5.qtgraphicaleffects} >> $out/nix-support/propagated-user-env-packages ''; - meta = with lib; { - license = licenses.gpl3; + meta = { + license = lib.licenses.gpl3; maintainers = with lib.maintainers; [ sents ]; homepage = "https://github.com/MarianArlt/sddm-chili"; description = "Chili login theme for SDDM"; diff --git a/pkgs/by-name/sd/sdlookup/package.nix b/pkgs/by-name/sd/sdlookup/package.nix index 264631b054d4..b567ea34960e 100644 --- a/pkgs/by-name/sd/sdlookup/package.nix +++ b/pkgs/by-name/sd/sdlookup/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-j0UzucZ6kDwM+6U0ZyIW9u8XG/Bn+VUCO2vV1BbnQo0="; - meta = with lib; { + meta = { description = "IP lookups for open ports and vulnerabilities from internetdb.shodan.io"; mainProgram = "sdlookup"; homepage = "https://github.com/j3ssie/sdlookup"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/sd/sdparm/package.nix b/pkgs/by-name/sd/sdparm/package.nix index e6908ff96fad..50b24c0cc4ca 100644 --- a/pkgs/by-name/sd/sdparm/package.nix +++ b/pkgs/by-name/sd/sdparm/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-xMnvr9vrZi4vlxJwfsSQkyvU0BC7ESmueplSZUburb4="; }; - meta = with lib; { + meta = { homepage = "http://sg.danny.cz/sg/sdparm.html"; description = "Utility to access SCSI device parameters"; - license = licenses.bsd3; - platforms = with platforms; linux; + license = lib.licenses.bsd3; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/sd/sdrplay/package.nix b/pkgs/by-name/sd/sdrplay/package.nix index 5e0803478891..93a762cb0058 100644 --- a/pkgs/by-name/sd/sdrplay/package.nix +++ b/pkgs/by-name/sd/sdrplay/package.nix @@ -45,7 +45,7 @@ callPackage package { in fetchurl source; - meta = with lib; { + meta = { inherit platforms; description = "SDRplay API"; @@ -55,9 +55,9 @@ callPackage package { ''; homepage = "https://www.sdrplay.com/downloads/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ pmenke zaninime ]; diff --git a/pkgs/by-name/sd/sdrpp/package.nix b/pkgs/by-name/sd/sdrpp/package.nix index dd5fe6b7024f..a23af7e65b96 100644 --- a/pkgs/by-name/sd/sdrpp/package.nix +++ b/pkgs/by-name/sd/sdrpp/package.nix @@ -196,13 +196,13 @@ stdenv.mkDerivation (finalAttrs: { hardeningDisable = lib.optional stdenv.cc.isClang "format"; - meta = with lib; { + meta = { description = "Cross-Platform SDR Software"; homepage = "https://github.com/AlexandreRouma/SDRPlusPlus"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; # The DAB decoder is broken upstream. See: https://github.com/AlexandreRouma/SDRPlusPlus/issues/1511 broken = dab_decoder; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sikmir zaninime ]; diff --git a/pkgs/by-name/se/seabird/package.nix b/pkgs/by-name/se/seabird/package.nix index 3b77a686083f..b19a17185880 100644 --- a/pkgs/by-name/se/seabird/package.nix +++ b/pkgs/by-name/se/seabird/package.nix @@ -62,11 +62,11 @@ buildGoModule rec { desktopItems = [ "dev.skynomads.Seabird.desktop" ]; - meta = with lib; { + meta = { description = "Native Kubernetes desktop client"; homepage = "https://getseabird.github.io"; - license = licenses.mpl20; - maintainers = with maintainers; [ nicolas-goudry ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nicolas-goudry ]; mainProgram = "seabird"; }; } diff --git a/pkgs/by-name/se/seafile-client/package.nix b/pkgs/by-name/se/seafile-client/package.nix index ad7d29ff1629..da54eda7264a 100644 --- a/pkgs/by-name/se/seafile-client/package.nix +++ b/pkgs/by-name/se/seafile-client/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { "--suffix PATH : ${lib.makeBinPath [ seafile-shared ]}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/haiwen/seafile-client"; changelog = "https://github.com/haiwen/seafile-client/releases/tag/${src.tag}"; description = "Desktop client for Seafile, the Next-generation Open Source Cloud Storage"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ schmittlauch ]; mainProgram = "seafile-applet"; diff --git a/pkgs/by-name/se/seahorse/package.nix b/pkgs/by-name/se/seahorse/package.nix index a109960b7f12..4d39408085c7 100644 --- a/pkgs/by-name/se/seahorse/package.nix +++ b/pkgs/by-name/se/seahorse/package.nix @@ -105,12 +105,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/seahorse"; description = "Application for managing encryption keys and passwords in the GnomeKeyring"; mainProgram = "seahorse"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/searxng/package.nix b/pkgs/by-name/se/searxng/package.nix index 3a8eb085e8b2..22a2e45f124b 100644 --- a/pkgs/by-name/se/searxng/package.nix +++ b/pkgs/by-name/se/searxng/package.nix @@ -106,12 +106,12 @@ python.pkgs.toPythonModule ( updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/searxng/searxng"; description = "Fork of Searx, a privacy-respecting, hackable metasearch engine"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; mainProgram = "searxng-run"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ SuperSandro2000 _999eagle ]; diff --git a/pkgs/by-name/se/seashells/package.nix b/pkgs/by-name/se/seashells/package.nix index d4c6e663166a..30b4b75356df 100644 --- a/pkgs/by-name/se/seashells/package.nix +++ b/pkgs/by-name/se/seashells/package.nix @@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec { doCheck = false; # there are no tests pythonImportsCheck = [ "seashells" ]; - meta = with lib; { + meta = { homepage = "https://seashells.io/"; description = "Pipe command-line programs to seashells.io"; mainProgram = "seashells"; @@ -27,7 +27,7 @@ python3Packages.buildPythonApplication rec { Official cient for seashells.io, which allows you to view command-line output on the web, in real-time. ''; - license = licenses.mit; - maintainers = with maintainers; [ deejayem ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ deejayem ]; }; } diff --git a/pkgs/by-name/se/seasocks/package.nix b/pkgs/by-name/se/seasocks/package.nix index 2e72fee8bf51..6dd9101aff56 100644 --- a/pkgs/by-name/se/seasocks/package.nix +++ b/pkgs/by-name/se/seasocks/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/mattgodbolt/seasocks"; description = "Tiny embeddable C++ HTTP and WebSocket server"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ fredeb ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fredeb ]; }; } diff --git a/pkgs/by-name/se/seaview/package.nix b/pkgs/by-name/se/seaview/package.nix index 0b878abb8d41..c940c7555f12 100644 --- a/pkgs/by-name/se/seaview/package.nix +++ b/pkgs/by-name/se/seaview/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { patchPhase = "sed -i 's#PATH=/bin:/usr/bin rm#'${coreutils}/bin/rm'#' seaview.cxx"; installPhase = "mkdir -p $out/bin; cp seaview $out/bin"; - meta = with lib; { + meta = { description = "GUI for molecular phylogeny"; mainProgram = "seaview"; longDescription = '' @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { Gouy M., Guindon S. & Gascuel O. (2010) SeaView version 4 : a multiplatform graphical user interface for sequence alignment and phylogenetic tree building. Molecular Biology and Evolution 27(2):221-224. ''; homepage = "https://doua.prabi.fr/software/seaview"; - license = licenses.gpl3; - maintainers = [ maintainers.iimog ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.iimog ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/seclists/package.nix b/pkgs/by-name/se/seclists/package.nix index 2d03962e831a..bc205ace8cc3 100644 --- a/pkgs/by-name/se/seclists/package.nix +++ b/pkgs/by-name/se/seclists/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Collection of multiple types of lists used during security assessments, collected in one place"; homepage = "https://github.com/danielmiessler/seclists"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tochiaha pamplemousse ]; diff --git a/pkgs/by-name/se/secp256k1/package.nix b/pkgs/by-name/se/secp256k1/package.nix index 5af874711902..9f8b070b1e8d 100644 --- a/pkgs/by-name/se/secp256k1/package.nix +++ b/pkgs/by-name/se/secp256k1/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Optimized C library for EC operations on curve secp256k1"; longDescription = '' Optimized C library for EC operations on curve secp256k1. Part of @@ -34,8 +34,8 @@ stdenv.mkDerivation rec { to research best practices. Use at your own risk. ''; homepage = "https://github.com/bitcoin-core/secp256k1"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; - platforms = with platforms; all; + platforms = with lib.platforms; all; }; } diff --git a/pkgs/by-name/se/secrets-extractor/package.nix b/pkgs/by-name/se/secrets-extractor/package.nix index b2c5ac868c24..186aea873ab1 100644 --- a/pkgs/by-name/se/secrets-extractor/package.nix +++ b/pkgs/by-name/se/secrets-extractor/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { buildInputs = [ libpcap ]; - meta = with lib; { + meta = { description = "Tool to check packets for secrets"; homepage = "https://github.com/Xenios91/Secrets-Extractor"; # https://github.com/Xenios91/Secrets-Extractor/issues/1 - license = licenses.unfree; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/se/seehecht/package.nix b/pkgs/by-name/se/seehecht/package.nix index 1b0b5cabec78..c68d29816bfd 100644 --- a/pkgs/by-name/se/seehecht/package.nix +++ b/pkgs/by-name/se/seehecht/package.nix @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage rec { ln -s $out/bin/seh $out/bin/seehecht ''; - meta = with lib; { + meta = { description = "Tool to quickly open a markdown document with already filled out frontmatter"; - license = licenses.lgpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ annaaurora ]; }; } diff --git a/pkgs/by-name/se/segger-jlink/qt4-bundled.nix b/pkgs/by-name/se/segger-jlink/qt4-bundled.nix index a26145cc5f1f..1afaf09c4358 100644 --- a/pkgs/by-name/se/segger-jlink/qt4-bundled.nix +++ b/pkgs/by-name/se/segger-jlink/qt4-bundled.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Bundled QT4 libraries for the J-Link Software and Documentation pack"; homepage = "https://www.segger.com/downloads/jlink/#J-LinkSoftwareAndDocumentationPack"; - license = licenses.lgpl21; - maintainers = with maintainers; [ stargate01 ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ stargate01 ]; knownVulnerabilities = [ "This bundled version of Qt 4 has reached its end of life after 2015. See https://github.com/NixOS/nixpkgs/pull/174634" "CVE-2023-43114" diff --git a/pkgs/by-name/se/selectdefaultapplication/package.nix b/pkgs/by-name/se/selectdefaultapplication/package.nix index 8670d4949d2c..1e813fde9264 100644 --- a/pkgs/by-name/se/selectdefaultapplication/package.nix +++ b/pkgs/by-name/se/selectdefaultapplication/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Very simple application that lets you define default applications on Linux in a sane way"; mainProgram = "selectdefaultapplication"; homepage = "https://github.com/sandsmark/selectdefaultapplication"; - maintainers = with maintainers; [ nsnelson ]; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ nsnelson ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/selendroid/package.nix b/pkgs/by-name/se/selendroid/package.nix index c8bf6602a6d6..254c7c610f65 100644 --- a/pkgs/by-name/se/selendroid/package.nix +++ b/pkgs/by-name/se/selendroid/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { --add-flags "-capabilityMatcher io.selendroid.grid.SelendroidCapabilityMatcher" ''; - meta = with lib; { + meta = { homepage = "https://selendroid.io/"; description = "Test automation for native or hybrid Android apps and the mobile web"; - maintainers = with maintainers; [ offline ]; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/se/selenium-manager/package.nix b/pkgs/by-name/se/selenium-manager/package.nix index 71ad8fe47e89..50bb4e7d82c8 100644 --- a/pkgs/by-name/se/selenium-manager/package.nix +++ b/pkgs/by-name/se/selenium-manager/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { # check the Gentoo package for inspiration doCheck = false; - meta = with lib; { + meta = { description = "Browser automation framework and ecosystem"; homepage = "https://github.com/SeleniumHQ/selenium"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "selenium-manager"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/se/selenium-server-standalone/package.nix b/pkgs/by-name/se/selenium-server-standalone/package.nix index 9c8ff8ecbc67..121bcac0d112 100644 --- a/pkgs/by-name/se/selenium-server-standalone/package.nix +++ b/pkgs/by-name/se/selenium-server-standalone/package.nix @@ -37,16 +37,16 @@ stdenv.mkDerivation rec { --add-flags "org.openqa.grid.selenium.GridLauncherV3" ''; - meta = with lib; { + meta = { homepage = "http://www.seleniumhq.org/"; description = "Selenium Server for remote WebDriver"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ coconnor offline ]; mainProgram = "selenium-server"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/se/selfoss/package.nix b/pkgs/by-name/se/selfoss/package.nix index 11542c6ddfbc..395825f3e20f 100644 --- a/pkgs/by-name/se/selfoss/package.nix +++ b/pkgs/by-name/se/selfoss/package.nix @@ -31,14 +31,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Web-based news feed (RSS/Atom) aggregator"; homepage = "https://selfoss.aditu.de"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jtojnar regnat ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/se/selinux-python/package.nix b/pkgs/by-name/se/selinux-python/package.nix index 2d05e602d171..a792b7136e5b 100644 --- a/pkgs/by-name/se/selinux-python/package.nix +++ b/pkgs/by-name/se/selinux-python/package.nix @@ -98,14 +98,14 @@ stdenv.mkDerivation (finalAttrs: { { $out/bin/sepolgen-ifgen-attr-helper test /dev/null 2>&1 || true; } | grep -Fm1 'error(s) encountered' >/dev/null ''; - meta = with lib; { + meta = { description = "SELinux policy core utilities written in Python"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://selinuxproject.org"; maintainers = with lib.maintainers; [ RossComputerGuy numinit ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/se/selinux-sandbox/package.nix b/pkgs/by-name/se/selinux-sandbox/package.nix index ec786c08040b..c6202e84ffea 100644 --- a/pkgs/by-name/se/selinux-sandbox/package.nix +++ b/pkgs/by-name/se/selinux-sandbox/package.nix @@ -77,11 +77,11 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "SELinux sandbox utility"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "https://selinuxproject.org"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ RossComputerGuy ]; }; } diff --git a/pkgs/by-name/se/semodule-utils/package.nix b/pkgs/by-name/se/semodule-utils/package.nix index a46ac60c370a..d06a21e38904 100644 --- a/pkgs/by-name/se/semodule-utils/package.nix +++ b/pkgs/by-name/se/semodule-utils/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { "LIBSEPOLA=${lib.getLib libsepol}/lib/libsepol.a" ]; - meta = with lib; { + meta = { description = "SELinux policy core utilities (packaging additions)"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; inherit (libsepol.meta) homepage platforms; - maintainers = with maintainers; [ RossComputerGuy ]; + maintainers = with lib.maintainers; [ RossComputerGuy ]; }; } diff --git a/pkgs/by-name/se/semver-tool/package.nix b/pkgs/by-name/se/semver-tool/package.nix index de770d994c3f..650f23b14638 100644 --- a/pkgs/by-name/se/semver-tool/package.nix +++ b/pkgs/by-name/se/semver-tool/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/fsaintjacques/semver-tool"; description = "Semver bash implementation"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.qyliss ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.qyliss ]; mainProgram = "semver"; }; } diff --git a/pkgs/by-name/se/semver/package.nix b/pkgs/by-name/se/semver/package.nix index a73fea385575..225736cacbf5 100644 --- a/pkgs/by-name/se/semver/package.nix +++ b/pkgs/by-name/se/semver/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { vendorHash = null; nativeBuildInputs = [ git ]; - meta = with lib; { + meta = { homepage = "https://github.com/catouc/semver-go"; description = "Small CLI to fish out the current or next semver version from a git repository"; - maintainers = with maintainers; [ catouc ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ catouc ]; + license = lib.licenses.mit; mainProgram = "semver"; }; } diff --git a/pkgs/by-name/se/sendme/package.nix b/pkgs/by-name/se/sendme/package.nix index 1c4775c0363b..10b9345050b7 100644 --- a/pkgs/by-name/se/sendme/package.nix +++ b/pkgs/by-name/se/sendme/package.nix @@ -20,14 +20,14 @@ rustPlatform.buildRustPackage rec { # The tests require contacting external servers. doCheck = false; - meta = with lib; { + meta = { description = "Tool to send files and directories, based on iroh"; homepage = "https://iroh.computer/sendme"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ cameronfyfe ]; + maintainers = with lib.maintainers; [ cameronfyfe ]; mainProgram = "sendme"; }; } diff --git a/pkgs/by-name/se/sensible-side-buttons/package.nix b/pkgs/by-name/se/sensible-side-buttons/package.nix index 8e9f0cb0ad40..972d34c247aa 100644 --- a/pkgs/by-name/se/sensible-side-buttons/package.nix +++ b/pkgs/by-name/se/sensible-side-buttons/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Utilize mouse side navigation buttons"; homepage = "https://sensible-side-buttons.archagon.net"; - license = licenses.unfree; - maintainers = with maintainers; [ yamashitax ]; - platforms = platforms.darwin; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ yamashitax ]; + platforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/se/sensible-utils/package.nix b/pkgs/by-name/se/sensible-utils/package.nix index 7bdd988ad087..151c401c0517 100644 --- a/pkgs/by-name/se/sensible-utils/package.nix +++ b/pkgs/by-name/se/sensible-utils/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { cp sensible-browser sensible-editor sensible-pager sensible-terminal $out/bin/ ''; - meta = with lib; { + meta = { description = "Collection of utilities used by programs to sensibly select and spawn an appropriate browser, editor, or pager"; longDescription = '' The specific utilities included are: @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://salsa.debian.org/debian/sensible-utils"; changelog = "https://salsa.debian.org/debian/sensible-utils/-/tags"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pbek ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pbek ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/se/sent/package.nix b/pkgs/by-name/se/sent/package.nix index ab46ecbc6e47..1c061378a1db 100644 --- a/pkgs/by-name/se/sent/package.nix +++ b/pkgs/by-name/se/sent/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/sent" --prefix PATH : "${farbfeld}/bin" ''; - meta = with lib; { + meta = { description = "Simple plaintext presentation tool"; mainProgram = "sent"; homepage = "https://tools.suckless.org/sent/"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/se/sentencepiece/package.nix b/pkgs/by-name/se/sentencepiece/package.nix index 7ee04afe12c1..81639b46879e 100644 --- a/pkgs/by-name/se/sentencepiece/package.nix +++ b/pkgs/by-name/se/sentencepiece/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { --replace '\$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR} ''; - meta = with lib; { + meta = { homepage = "https://github.com/google/sentencepiece"; description = "Unsupervised text tokenizer for Neural Network-based text generation"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ pashashocky ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pashashocky ]; # sentencepiece 0.2.1 segfaults on darwin when instantiated # See https://github.com/NixOS/nixpkgs/issues/466092 badPlatforms = [ lib.systems.inspect.patterns.isDarwin ]; diff --git a/pkgs/by-name/se/senv/package.nix b/pkgs/by-name/se/senv/package.nix index 55d836885367..7517826cb4da 100644 --- a/pkgs/by-name/se/senv/package.nix +++ b/pkgs/by-name/se/senv/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Friends don't let friends leak secrets on their terminal window"; homepage = "https://github.com/SpectralOps/senv"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; broken = stdenv.hostPlatform.isDarwin; # needs golang.org/x/sys bump mainProgram = "senv"; }; diff --git a/pkgs/by-name/se/seq24/package.nix b/pkgs/by-name/se/seq24/package.nix index 53f6c2acd53b..aad2b998f147 100644 --- a/pkgs/by-name/se/seq24/package.nix +++ b/pkgs/by-name/se/seq24/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Minimal loop based midi sequencer"; homepage = "http://www.filter24.org/seq24"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "seq24"; }; diff --git a/pkgs/by-name/se/seqkit/package.nix b/pkgs/by-name/se/seqkit/package.nix index 2a86510beffd..c1c39e0e536e 100644 --- a/pkgs/by-name/se/seqkit/package.nix +++ b/pkgs/by-name/se/seqkit/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-TsL7iYZoxCGR2gl2YlNCnmssVui8TLKN8JTtLAzgvH4="; - meta = with lib; { + meta = { description = "Cross-platform and ultrafast toolkit for FASTA/Q file manipulation"; homepage = "https://github.com/shenwei356/seqkit"; - license = licenses.mit; - maintainers = with maintainers; [ bzizou ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bzizou ]; }; } diff --git a/pkgs/by-name/se/sequeler/package.nix b/pkgs/by-name/se/sequeler/package.nix index 456b4d5a3412..7083159764a5 100644 --- a/pkgs/by-name/se/sequeler/package.nix +++ b/pkgs/by-name/se/sequeler/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Friendly SQL Client"; longDescription = '' Sequeler is a native Linux SQL client built in Vala and Gtk. It allows you @@ -81,9 +81,9 @@ stdenv.mkDerivation rec { Gtk.Grid Widget. ''; homepage = "https://github.com/Alecaddd/sequeler"; - license = licenses.gpl3; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "com.github.alecaddd.sequeler"; }; } diff --git a/pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix b/pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix index 8f515bd96a36..25ea9c1591a8 100644 --- a/pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix +++ b/pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { # gpgconf: error creating socket directory doCheck = false; - meta = with lib; { + meta = { description = "Sequoia's reimplementation of the GnuPG interface"; homepage = "https://gitlab.com/sequoia-pgp/sequoia-chameleon-gnupg"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "gpg-sq"; }; } diff --git a/pkgs/by-name/se/ser2net/package.nix b/pkgs/by-name/se/ser2net/package.nix index a44e9141344e..b81e92f5bc95 100644 --- a/pkgs/by-name/se/ser2net/package.nix +++ b/pkgs/by-name/se/ser2net/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { libyaml ]; - meta = with lib; { + meta = { description = "Serial to network connection server"; homepage = "https://github.com/cminyard/ser2net"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ emantor ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ emantor ]; + platforms = with lib.platforms; linux; mainProgram = "ser2net"; }; } diff --git a/pkgs/by-name/se/seren/package.nix b/pkgs/by-name/se/seren/package.nix index 23033872d848..cd4db9e9773f 100644 --- a/pkgs/by-name/se/seren/package.nix +++ b/pkgs/by-name/se/seren/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { sha256 = "sha256-adI365McrJkvTexvnWjMzpHcJkLY3S/uWfE8u4yuqho="; }; - meta = with lib; { + meta = { description = "Simple ncurses VoIP program based on the Opus codec"; mainProgram = "seren"; longDescription = '' @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { ''; homepage = "http://holdenc.altervista.org/seren/"; changelog = "http://holdenc.altervista.org/seren/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ matthewcroughan nixinator ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/serf/package.nix b/pkgs/by-name/se/serf/package.nix index a67efdfe08d8..4eee10a08540 100644 --- a/pkgs/by-name/se/serf/package.nix +++ b/pkgs/by-name/se/serf/package.nix @@ -59,13 +59,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "HTTP client library based on APR"; homepage = "https://serf.apache.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/se/serfdom/package.nix b/pkgs/by-name/se/serfdom/package.nix index d587a397362d..ce703cbe35b0 100644 --- a/pkgs/by-name/se/serfdom/package.nix +++ b/pkgs/by-name/se/serfdom/package.nix @@ -31,7 +31,7 @@ buildGoModule rec { # There are no tests for cmd/serf. doCheck = false; - meta = with lib; { + meta = { description = "Service orchestration and management tool"; mainProgram = "serf"; longDescription = '' @@ -39,6 +39,6 @@ buildGoModule rec { that is lightweight, highly available, and fault tolerant. ''; homepage = "https://www.serf.io"; - license = licenses.mpl20; + license = lib.licenses.mpl20; }; } diff --git a/pkgs/by-name/se/serialdv/package.nix b/pkgs/by-name/se/serialdv/package.nix index 56f954feedb4..d146f8c68ff6 100644 --- a/pkgs/by-name/se/serialdv/package.nix +++ b/pkgs/by-name/se/serialdv/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "C++ Minimal interface to encode and decode audio with AMBE3000 based devices in packet mode over a serial link"; mainProgram = "dvtest"; homepage = "https://github.com/f4exb/serialdv"; - platforms = platforms.unix; - maintainers = with maintainers; [ alkeryn ]; - license = licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ alkeryn ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/se/serie/package.nix b/pkgs/by-name/se/serie/package.nix index 8a0f9b3887dc..9b32ff770357 100644 --- a/pkgs/by-name/se/serie/package.nix +++ b/pkgs/by-name/se/serie/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = serie; }; - meta = with lib; { + meta = { description = "Rich git commit graph in your terminal, like magic"; homepage = "https://github.com/lusingander/serie"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ matthiasbeyer ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "serie"; }; } diff --git a/pkgs/by-name/se/serpent/package.nix b/pkgs/by-name/se/serpent/package.nix index a002ca38ab50..d33389150004 100644 --- a/pkgs/by-name/se/serpent/package.nix +++ b/pkgs/by-name/se/serpent/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { mv serpent $out/bin ''; - meta = with lib; { + meta = { description = "Compiler for the Serpent language for Ethereum"; mainProgram = "serpent"; longDescription = '' @@ -40,8 +40,8 @@ stdenv.mkDerivation { features for contract programming. ''; homepage = "https://github.com/ethereum/wiki/wiki/Serpent"; - license = with licenses; [ wtfpl ]; + license = with lib.licenses; [ wtfpl ]; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/se/serverspec/package.nix b/pkgs/by-name/se/serverspec/package.nix index 8c9e405bcecd..8b735ef8138a 100644 --- a/pkgs/by-name/se/serverspec/package.nix +++ b/pkgs/by-name/se/serverspec/package.nix @@ -15,11 +15,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "serverspec"; - meta = with lib; { + meta = { description = "RSpec tests for your servers configured by CFEngine, Puppet, Ansible, Itamae or anything else"; homepage = "https://serverspec.org/"; - license = licenses.mit; - maintainers = with maintainers; [ dylanmtaylor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dylanmtaylor ]; mainProgram = "serverspec-init"; }; } diff --git a/pkgs/by-name/se/service-wrapper/package.nix b/pkgs/by-name/se/service-wrapper/package.nix index 31e272b7edae..8a32f5406216 100644 --- a/pkgs/by-name/se/service-wrapper/package.nix +++ b/pkgs/by-name/se/service-wrapper/package.nix @@ -21,12 +21,12 @@ runCommand name }; }; - meta = with lib; { + meta = { description = "Convenient wrapper for the systemctl commands, borrow from Ubuntu"; mainProgram = "service"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ DerTim1 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ DerTim1 ]; # Shellscript has been modified but upstream source is: https://git.launchpad.net/ubuntu/+source/init-system-helpers }; } diff --git a/pkgs/by-name/se/serviio/package.nix b/pkgs/by-name/se/serviio/package.nix index 122eb602072b..28aee79715b8 100644 --- a/pkgs/by-name/se/serviio/package.nix +++ b/pkgs/by-name/se/serviio/package.nix @@ -18,15 +18,15 @@ stdenv.mkDerivation rec { cp -R config legal lib library plugins LICENCE.txt NOTICE.txt README.txt RELEASE_NOTES.txt $out ''; - meta = with lib; { + meta = { homepage = "https://serviio.org"; description = "UPnP Media Streaming Server"; longDescription = '' Serviio is a free media server. It allows you to stream your media files (music, video or images) to any DLNA-certified renderer device (e.g. a TV set, Bluray player, games console) on your home network. ''; - license = licenses.unfree; - maintainers = [ maintainers.thpham ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.thpham ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/seshat/package.nix b/pkgs/by-name/se/seshat/package.nix index ac16668402ca..35bdda26f313 100644 --- a/pkgs/by-name/se/seshat/package.nix +++ b/pkgs/by-name/se/seshat/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/seshat/"; description = "Roman body font designed for main text by Sora Sagano"; longDescription = '' @@ -39,10 +39,10 @@ stdenvNoCC.mkDerivation { It incorporates symbols and ligatures used in the European region. ''; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/se/setroot/package.nix b/pkgs/by-name/se/setroot/package.nix index a4fd8f94f10f..f88b53bbce2d 100644 --- a/pkgs/by-name/se/setroot/package.nix +++ b/pkgs/by-name/se/setroot/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple X background setter inspired by imlibsetroot and feh"; homepage = "https://github.com/ttzhou/setroot"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "setroot"; }; } diff --git a/pkgs/by-name/se/setup-envtest/package.nix b/pkgs/by-name/se/setup-envtest/package.nix index 93b289f261d3..273acc0d7571 100644 --- a/pkgs/by-name/se/setup-envtest/package.nix +++ b/pkgs/by-name/se/setup-envtest/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Tool that manages binaries for envtest, allowing the download of new binaries, listing installed and available ones, and cleaning up versions"; homepage = "https://github.com/kubernetes-sigs/controller-runtime/tree/v${version}/tools/setup-envtest"; - license = licenses.asl20; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "setup-envtest"; }; } diff --git a/pkgs/by-name/se/seturgent/package.nix b/pkgs/by-name/se/seturgent/package.nix index 1b3dbbc647bc..bd335a5d64dc 100644 --- a/pkgs/by-name/se/seturgent/package.nix +++ b/pkgs/by-name/se/seturgent/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { mv seturgent $out/bin ''; - meta = with lib; { - platforms = platforms.linux; + meta = { + platforms = lib.platforms.linux; description = "Set an application's urgency hint (or not)"; mainProgram = "seturgent"; - maintainers = with maintainers; [ yarr ]; + maintainers = with lib.maintainers; [ yarr ]; homepage = "https://codemadness.org/seturgent-set-urgency-hints-for-x-applications.html"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/se/seventeenlands/package.nix b/pkgs/by-name/se/seventeenlands/package.nix index 0691a82035ee..cfc95b20901b 100644 --- a/pkgs/by-name/se/seventeenlands/package.nix +++ b/pkgs/by-name/se/seventeenlands/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication rec { tkinter ]; - meta = with lib; { + meta = { description = "Client for passing relevant events from MTG Arena logs to the 17Lands REST endpoint, also known as mtga-log-client"; homepage = "https://www.17lands.com/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ sephi ]; mainProgram = "seventeenlands"; }; } diff --git a/pkgs/by-name/se/sewer/package.nix b/pkgs/by-name/se/sewer/package.nix index d2a6240f48fe..652bef764af5 100644 --- a/pkgs/by-name/se/sewer/package.nix +++ b/pkgs/by-name/se/sewer/package.nix @@ -24,10 +24,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "sewer" ]; - meta = with lib; { + meta = { homepage = "https://github.com/komuw/sewer"; description = "ACME client"; - license = licenses.mit; - maintainers = with maintainers; [ kevincox ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kevincox ]; }; } diff --git a/pkgs/by-name/se/sexpp/package.nix b/pkgs/by-name/se/sexpp/package.nix index de3cbb1cda87..93469b073041 100644 --- a/pkgs/by-name/se/sexpp/package.nix +++ b/pkgs/by-name/se/sexpp/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { echo "v${finalAttrs.version}" > version.txt ''; - meta = with lib; { + meta = { homepage = "https://github.com/rnpgp/sexp"; description = "S-expressions parser and generator C++ library, fully compliant to [https://people.csail.mit.edu/rivest/Sexp.txt]"; mainProgram = "sexpp"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ ribose-jeffreylau ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ribose-jeffreylau ]; }; }) diff --git a/pkgs/by-name/se/seyren/package.nix b/pkgs/by-name/se/seyren/package.nix index a9a1e114d225..4ecb0925b1af 100644 --- a/pkgs/by-name/se/seyren/package.nix +++ b/pkgs/by-name/se/seyren/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { makeWrapper "${jre}/bin/java" "$out"/bin/seyren --add-flags "-jar $src" ''; - meta = with lib; { + meta = { description = "Alerting dashboard for Graphite"; mainProgram = "seyren"; homepage = "https://github.com/scobal/seyren"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = [ maintainers.offline ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.offline ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sf/sfm/package.nix b/pkgs/by-name/sf/sfm/package.nix index 37d16a8244fa..288dec7b9f12 100644 --- a/pkgs/by-name/sf/sfm/package.nix +++ b/pkgs/by-name/sf/sfm/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple file manager"; homepage = "https://github.com/afify/sfm"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "sfm"; }; } diff --git a/pkgs/by-name/sf/sfsexp/package.nix b/pkgs/by-name/sf/sfsexp/package.nix index 9106e785e005..3891ef3f0bec 100644 --- a/pkgs/by-name/sf/sfsexp/package.nix +++ b/pkgs/by-name/sf/sfsexp/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Small Fast S-Expression Library"; homepage = "https://github.com/mjsottile/sfsexp"; - maintainers = with maintainers; [ jb55 ]; - license = licenses.lgpl21Plus; - platforms = platforms.all; + maintainers = with lib.maintainers; [ jb55 ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sf/sftpman/package.nix b/pkgs/by-name/sf/sftpman/package.nix index be66f44fe6c4..6eefb3ad3bdc 100644 --- a/pkgs/by-name/sf/sftpman/package.nix +++ b/pkgs/by-name/sf/sftpman/package.nix @@ -20,12 +20,12 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-TltizTFKrMvHNQcSoow9fuNLy6appYq9Y4LicEQrfRE="; - meta = with lib; { + meta = { homepage = "https://github.com/spantaleev/sftpman-rs"; description = "Application that handles sshfs/sftp file systems mounting"; - license = licenses.agpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ contrun fugi ]; diff --git a/pkgs/by-name/sf/sfxr/package.nix b/pkgs/by-name/sf/sfxr/package.nix index 5f2fe5e75d87..9fdf777c8165 100644 --- a/pkgs/by-name/sf/sfxr/package.nix +++ b/pkgs/by-name/sf/sfxr/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "http://www.drpetter.se/project_sfxr.html"; description = "Videogame sound effect generator"; mainProgram = "sfxr"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sf/sfz/package.nix b/pkgs/by-name/sf/sfz/package.nix index d0003fe8ebba..34ba4bd97c69 100644 --- a/pkgs/by-name/sf/sfz/package.nix +++ b/pkgs/by-name/sf/sfz/package.nix @@ -20,14 +20,14 @@ rustPlatform.buildRustPackage rec { # error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context doCheck = false; - meta = with lib; { + meta = { description = "Simple static file serving command-line tool written in Rust"; homepage = "https://github.com/weihanglo/sfz"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ dit7ya ]; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "sfz"; }; } diff --git a/pkgs/by-name/sg/sg3_utils/package.nix b/pkgs/by-name/sg/sg3_utils/package.nix index a5951ab87eaf..deb2d0c029d5 100644 --- a/pkgs/by-name/sg/sg3_utils/package.nix +++ b/pkgs/by-name/sg/sg3_utils/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-1itsPPIDkPpzVwRDkAhBZtJfHZMqETXEULaf5cKD13M="; }; - meta = with lib; { + meta = { homepage = "https://sg.danny.cz/sg/"; description = "Utilities that send SCSI commands to devices"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ bsd2 gpl2Plus ]; diff --git a/pkgs/by-name/sg/sgfutils/package.nix b/pkgs/by-name/sg/sgfutils/package.nix index 106dfb788e82..2658be5957fd 100644 --- a/pkgs/by-name/sg/sgfutils/package.nix +++ b/pkgs/by-name/sg/sgfutils/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation { --prefix PATH : ${lib.makeBinPath [ imagemagick ]} \ --set-default FONTCONFIG_FILE ${makeFontsConf { fontDirectories = [ ]; }} ''; - meta = with lib; { + meta = { homepage = "https://homepages.cwi.nl/~aeb/go/sgfutils/html/sgfutils.html"; description = "Command line utilities that help working with SGF files"; longDescription = '' The package sgfutils is a collection of command line utilities that help working with SGF files, especially when they describe go (igo, weiqi, baduk) games. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ggpeti ]; - platforms = platforms.all; # tested on x86_64-linux and aarch64-darwin + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ggpeti ]; + platforms = lib.platforms.all; # tested on x86_64-linux and aarch64-darwin }; } diff --git a/pkgs/by-name/sg/sgp4/package.nix b/pkgs/by-name/sg/sgp4/package.nix index be069dead65b..7010591f5271 100644 --- a/pkgs/by-name/sg/sgp4/package.nix +++ b/pkgs/by-name/sg/sgp4/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Simplified perturbations models library"; homepage = "https://github.com/dnwrnr/sgp4"; - license = licenses.asl20; - maintainers = with maintainers; [ alexwinter ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ alexwinter ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sh/sha1collisiondetection/package.nix b/pkgs/by-name/sh/sha1collisiondetection/package.nix index e737e6e7a0d8..a07ec16e491a 100644 --- a/pkgs/by-name/sh/sha1collisiondetection/package.nix +++ b/pkgs/by-name/sh/sha1collisiondetection/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { which ]; - meta = with lib; { + meta = { description = "Library and command line tool to detect SHA-1 collision"; longDescription = '' This library and command line tool were designed as near drop-in @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { each file. It is very fast and takes less than twice the amount of time as regular SHA-1. ''; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; mainProgram = "sha1dcsum"; }; } diff --git a/pkgs/by-name/sh/sha2wordlist/package.nix b/pkgs/by-name/sh/sha2wordlist/package.nix index fa7eeeb23e28..89a79652d495 100644 --- a/pkgs/by-name/sh/sha2wordlist/package.nix +++ b/pkgs/by-name/sh/sha2wordlist/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { install -m 755 sha2wordlist $out/bin ''; - meta = with lib; { + meta = { description = "Display SHA-256 as PGP words"; homepage = "https://github.com/kirei/sha2wordlist"; - maintainers = with maintainers; [ baloo ]; - license = [ licenses.bsd2 ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ baloo ]; + license = [ lib.licenses.bsd2 ]; + platforms = lib.platforms.all; mainProgram = "sha2wordlist"; }; } diff --git a/pkgs/by-name/sh/shaarli/package.nix b/pkgs/by-name/sh/shaarli/package.nix index eb53d982aa02..33a73693af60 100644 --- a/pkgs/by-name/sh/shaarli/package.nix +++ b/pkgs/by-name/sh/shaarli/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { cp -R ./* $out ''; - meta = with lib; { + meta = { description = "Personal, minimalist, super-fast, database free, bookmarking service"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/shaarli/Shaarli"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sh/shab/package.nix b/pkgs/by-name/sh/shab/package.nix index ee4fca701e4b..c793df638327 100644 --- a/pkgs/by-name/sh/shab/package.nix +++ b/pkgs/by-name/sh/shab/package.nix @@ -46,12 +46,12 @@ let inherit render renderText; }; - meta = with lib; { + meta = { description = "Bash templating language"; mainProgram = "shab"; homepage = "https://github.com/zimbatm/shab"; - license = licenses.unlicense; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ zimbatm ]; platforms = bash.meta.platforms; }; }; diff --git a/pkgs/by-name/sh/shabnam-fonts/package.nix b/pkgs/by-name/sh/shabnam-fonts/package.nix index 8676e7310ffa..2e85acf12fbe 100644 --- a/pkgs/by-name/sh/shabnam-fonts/package.nix +++ b/pkgs/by-name/sh/shabnam-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/shabnam-font"; description = "Persian (Farsi) Font - فونت (قلم) فارسی شبنم"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sh/shadershark/package.nix b/pkgs/by-name/sh/shadershark/package.nix index a9fc8bb1384d..76967ac90caf 100644 --- a/pkgs/by-name/sh/shadershark/package.nix +++ b/pkgs/by-name/sh/shadershark/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { mainProgram = "shader-shark"; description = "OpenGL/X11 application for GNU/Linux consisting of a single window that shows simple 3D scene of a textured rectangle with applied vertex and fragment shaders (GLSL)"; homepage = "https://graphics.globalcode.info/v_0/shader-shark.xhtml"; - license = licenses.gpl3; - maintainers = [ maintainers.lucasew ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.lucasew ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/sh/shades-of-gray-theme/package.nix b/pkgs/by-name/sh/shades-of-gray-theme/package.nix index 692dd3c43044..58bad3698352 100644 --- a/pkgs/by-name/sh/shades-of-gray-theme/package.nix +++ b/pkgs/by-name/sh/shades-of-gray-theme/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp -a Shades-of-gray* $out/share/themes/ ''; - meta = with lib; { + meta = { description = "Flat dark GTK theme with ergonomic contrasts"; homepage = "https://github.com/WernerFP/Shades-of-gray-theme"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/sh/shadow-tls/package.nix b/pkgs/by-name/sh/shadow-tls/package.nix index e69060d546c1..960372fdf6b5 100644 --- a/pkgs/by-name/sh/shadow-tls/package.nix +++ b/pkgs/by-name/sh/shadow-tls/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { # network required doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/ihciah/shadow-tls"; description = "Proxy to expose real tls handshake to the firewall"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "shadow-tls"; - maintainers = with maintainers; [ oluceps ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ oluceps ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sh/shadow/package.nix b/pkgs/by-name/sh/shadow/package.nix index 72681d81eae0..028576075fdc 100644 --- a/pkgs/by-name/sh/shadow/package.nix +++ b/pkgs/by-name/sh/shadow/package.nix @@ -116,11 +116,11 @@ stdenv.mkDerivation rec { stdenv.buildPlatform != stdenv.hostPlatform ) stdenv.shellPackage; - meta = with lib; { + meta = { homepage = "https://github.com/shadow-maint/shadow"; description = "Suite containing authentication-related tools such as passwd and su"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; passthru = { diff --git a/pkgs/by-name/sh/shadowenv/package.nix b/pkgs/by-name/sh/shadowenv/package.nix index ed9a7370732c..7a45187ad6fa 100644 --- a/pkgs/by-name/sh/shadowenv/package.nix +++ b/pkgs/by-name/sh/shadowenv/package.nix @@ -32,10 +32,10 @@ rustPlatform.buildRustPackage rec { HOME=$TMPDIR ''; - meta = with lib; { + meta = { homepage = "https://shopify.github.io/shadowenv/"; description = "Reversible directory-local environment variable manipulations"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "shadowenv"; }; diff --git a/pkgs/by-name/sh/shadowfox/package.nix b/pkgs/by-name/sh/shadowfox/package.nix index 3fb2b145bff5..201f7536d797 100644 --- a/pkgs/by-name/sh/shadowfox/package.nix +++ b/pkgs/by-name/sh/shadowfox/package.nix @@ -35,10 +35,10 @@ buildGoModule rec { "-X main.tag=v${version}" ]; - meta = with lib; { + meta = { description = "Universal dark theme for Firefox while adhering to the modern design principles set by Mozilla"; homepage = "https://overdodactyl.github.io/ShadowFox/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "shadowfox-updater"; }; diff --git a/pkgs/by-name/sh/shanggu-fonts/package.nix b/pkgs/by-name/sh/shanggu-fonts/package.nix index 4f00cea3079d..ff9a66926c31 100644 --- a/pkgs/by-name/sh/shanggu-fonts/package.nix +++ b/pkgs/by-name/sh/shanggu-fonts/package.nix @@ -61,11 +61,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/GuiWonder/Shanggu"; description = "Heritage glyph (old glyph) font based on Siyuan"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ Cryolitia ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ Cryolitia ]; }; } diff --git a/pkgs/by-name/sh/shapelib/package.nix b/pkgs/by-name/sh/shapelib/package.nix index 6ed9914ff6c1..6c363af98835 100644 --- a/pkgs/by-name/sh/shapelib/package.nix +++ b/pkgs/by-name/sh/shapelib/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { patchShebangs tests contrib/tests ''; - meta = with lib; { + meta = { description = "C Library for reading, writing and updating ESRI Shapefiles"; homepage = "http://shapelib.maptools.org/"; - license = licenses.gpl2; - teams = [ teams.geospatial ]; + license = lib.licenses.gpl2; + teams = [ lib.teams.geospatial ]; changelog = "http://shapelib.maptools.org/release.html"; }; } diff --git a/pkgs/by-name/sh/shaq/package.nix b/pkgs/by-name/sh/shaq/package.nix index bb6eba78b650..a0e63adb9e46 100644 --- a/pkgs/by-name/sh/shaq/package.nix +++ b/pkgs/by-name/sh/shaq/package.nix @@ -54,12 +54,12 @@ python3.pkgs.buildPythonApplication rec { (lib.makeBinPath [ ffmpeg ]) ]; - meta = with lib; { + meta = { description = "CLI client for Shazam"; homepage = "https://github.com/woodruffw/shaq"; changelog = "https://github.com/woodruffw/shaq/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mig4ng ]; mainProgram = "shaq"; diff --git a/pkgs/by-name/sh/shards/package.nix b/pkgs/by-name/sh/shards/package.nix index 697dbd38b4a2..53b7a1b54c7f 100644 --- a/pkgs/by-name/sh/shards/package.nix +++ b/pkgs/by-name/sh/shards/package.nix @@ -23,11 +23,11 @@ crystal.buildCrystalPackage rec { # tries to execute git which fails spectacularly doCheck = false; - meta = with lib; { + meta = { description = "Dependency manager for the Crystal language"; mainProgram = "shards"; - license = licenses.asl20; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ peterhoeg ]; inherit (crystal.meta) homepage platforms; }; } diff --git a/pkgs/by-name/sh/shared-mime-info/package.nix b/pkgs/by-name/sh/shared-mime-info/package.nix index 1704f2a7912d..396742594ec9 100644 --- a/pkgs/by-name/sh/shared-mime-info/package.nix +++ b/pkgs/by-name/sh/shared-mime-info/package.nix @@ -48,13 +48,13 @@ stdenv.mkDerivation rec { "-Dupdate-mimedb=true" ]; - meta = with lib; { + meta = { description = "Database of common MIME types"; homepage = "http://freedesktop.org/wiki/Software/shared-mime-info"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.mimame ]; - teams = [ teams.freedesktop ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.mimame ]; + teams = [ lib.teams.freedesktop ]; mainProgram = "update-mime-database"; }; } diff --git a/pkgs/by-name/sh/sharing/package.nix b/pkgs/by-name/sh/sharing/package.nix index 45462eac5beb..dcad6dd71b16 100644 --- a/pkgs/by-name/sh/sharing/package.nix +++ b/pkgs/by-name/sh/sharing/package.nix @@ -24,10 +24,10 @@ buildNpmPackage rec { NODE_OPTIONS = "--openssl-legacy-provider"; - meta = with lib; { + meta = { description = "Command-line tool to share directories and files to mobile devices"; homepage = "https://github.com/parvardegr/sharing"; - license = licenses.mit; - maintainers = with maintainers; [ ChaosAttractor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ChaosAttractor ]; }; } diff --git a/pkgs/by-name/sh/sharness/package.nix b/pkgs/by-name/sh/sharness/package.nix index df23130742fc..52cfab5e28f3 100644 --- a/pkgs/by-name/sh/sharness/package.nix +++ b/pkgs/by-name/sh/sharness/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.SHARNESS_TEST_SRCDIR = finalAttrs.finalPackage + "/share/sharness"; - meta = with lib; { + meta = { description = "Portable shell library to write, run and analyze automated tests adhering to Test Anything Protocol (TAP)"; homepage = "https://github.com/chriscool/sharness"; - license = licenses.gpl2Only; - maintainers = [ maintainers.spacefrogg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.spacefrogg ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sh/sharutils/package.nix b/pkgs/by-name/sh/sharutils/package.nix index bc0bd331f4d3..959940b27672 100644 --- a/pkgs/by-name/sh/sharutils/package.nix +++ b/pkgs/by-name/sh/sharutils/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tools for remote synchronization and `shell archives'"; longDescription = '' GNU shar makes so-called shell archives out of many files, preparing @@ -96,8 +96,8 @@ stdenv.mkDerivation rec { concatenated shell archives. ''; homepage = "https://www.gnu.org/software/sharutils/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sh/shattered-pixel-dungeon/generic.nix b/pkgs/by-name/sh/shattered-pixel-dungeon/generic.nix index 39ffc40c1df3..9c2a4b12d5c9 100644 --- a/pkgs/by-name/sh/shattered-pixel-dungeon/generic.nix +++ b/pkgs/by-name/sh/shattered-pixel-dungeon/generic.nix @@ -127,15 +127,15 @@ stdenv.mkDerivation ( ''; meta = - with lib; + { - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = pname; } // meta; diff --git a/pkgs/by-name/sh/shc/package.nix b/pkgs/by-name/sh/shc/package.nix index a56a282f716f..bc2c656e4911 100644 --- a/pkgs/by-name/sh/shc/package.nix +++ b/pkgs/by-name/sh/shc/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { sha256 = "0bfn404plsssa14q89k9l3s5lxq3df0sny5lis4j2w75qrkqx694"; }; - meta = with lib; { + meta = { homepage = "https://neurobin.org/projects/softwares/unix/shc/"; description = "Shell Script Compiler"; mainProgram = "shc"; platforms = lib.platforms.all; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/sh/sheldon/package.nix b/pkgs/by-name/sh/sheldon/package.nix index bb98389d33c8..43af10bad1e3 100644 --- a/pkgs/by-name/sh/sheldon/package.nix +++ b/pkgs/by-name/sh/sheldon/package.nix @@ -64,12 +64,12 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/sheldon completions --shell zsh) ''; - meta = with lib; { + meta = { description = "Fast and configurable shell plugin manager"; homepage = "https://github.com/rossmacarthur/sheldon"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ seqizz ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ seqizz ]; + platforms = lib.platforms.unix; mainProgram = "sheldon"; }; } diff --git a/pkgs/by-name/sh/shell-genie/package.nix b/pkgs/by-name/sh/shell-genie/package.nix index bc02cbabbf53..ffec70d754f8 100644 --- a/pkgs/by-name/sh/shell-genie/package.nix +++ b/pkgs/by-name/sh/shell-genie/package.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { "shell_genie" ]; - meta = with lib; { + meta = { description = "Describe your shell commands in natural language"; homepage = "https://github.com/dylanjcastillo/shell-genie"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; mainProgram = "shell-genie"; }; } diff --git a/pkgs/by-name/sh/shell2http/package.nix b/pkgs/by-name/sh/shell2http/package.nix index da316d17d282..bb9604208fc9 100644 --- a/pkgs/by-name/sh/shell2http/package.nix +++ b/pkgs/by-name/sh/shell2http/package.nix @@ -42,12 +42,12 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Executing shell commands via HTTP server"; mainProgram = "shell2http"; homepage = "https://github.com/msoap/shell2http"; changelog = "https://github.com/msoap/shell2http/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sh/shellharden/package.nix b/pkgs/by-name/sh/shellharden/package.nix index 9f30217250ef..fa9f6f76d136 100644 --- a/pkgs/by-name/sh/shellharden/package.nix +++ b/pkgs/by-name/sh/shellharden/package.nix @@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec { postPatch = "patchShebangs moduletests/run"; - meta = with lib; { + meta = { description = "Corrective bash syntax highlighter"; mainProgram = "shellharden"; longDescription = '' @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage rec { rewriting of scripts to ShellCheck conformance, mainly focused on quoting. ''; homepage = "https://github.com/anordal/shellharden"; - license = licenses.mpl20; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/sh/shellhub-agent/package.nix b/pkgs/by-name/sh/shellhub-agent/package.nix index 9e98f469ec91..bceea0e2e084 100644 --- a/pkgs/by-name/sh/shellhub-agent/package.nix +++ b/pkgs/by-name/sh/shellhub-agent/package.nix @@ -48,7 +48,7 @@ buildGoModule rec { wrapProgram $out/bin/agent --prefix PATH : ${lib.makeBinPath [ openssh ]} ''; - meta = with lib; { + meta = { description = "Enables easy access any Linux device behind firewall and NAT"; longDescription = '' ShellHub is a modern SSH server for remotely accessing Linux devices via @@ -57,9 +57,9 @@ buildGoModule rec { edge and cloud computing. ''; homepage = "https://shellhub.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ otavio ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ otavio ]; + platforms = lib.platforms.linux; mainProgram = "agent"; }; } diff --git a/pkgs/by-name/sh/shellnoob/package.nix b/pkgs/by-name/sh/shellnoob/package.nix index 2ffd089acc0f..0987c6844485 100644 --- a/pkgs/by-name/sh/shellnoob/package.nix +++ b/pkgs/by-name/sh/shellnoob/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Shellcode writing toolkit"; homepage = "https://github.com/reyammer/shellnoob"; mainProgram = "snoob"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/by-name/sh/shellz/package.nix b/pkgs/by-name/sh/shellz/package.nix index 7a85730c3ab3..a2237d8786a5 100644 --- a/pkgs/by-name/sh/shellz/package.nix +++ b/pkgs/by-name/sh/shellz/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Utility to manage your SSH, telnet, kubernetes, winrm, web or any custom shell"; homepage = "https://github.com/evilsocket/shellz"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "shellz"; }; } diff --git a/pkgs/by-name/sh/shfm/package.nix b/pkgs/by-name/sh/shfm/package.nix index 56d226eb95a2..bbadca6dd4be 100644 --- a/pkgs/by-name/sh/shfm/package.nix +++ b/pkgs/by-name/sh/shfm/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/dylanaraps/shfm"; description = "POSIX-shell based file manager"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "shfm"; }; } diff --git a/pkgs/by-name/sh/shfmt/package.nix b/pkgs/by-name/sh/shfmt/package.nix index a95bf270afa7..12be9eaf6b69 100644 --- a/pkgs/by-name/sh/shfmt/package.nix +++ b/pkgs/by-name/sh/shfmt/package.nix @@ -37,15 +37,15 @@ buildGoModule rec { installManPage shfmt.1 ''; - meta = with lib; { + meta = { homepage = "https://github.com/mvdan/sh"; description = "Shell parser and formatter"; longDescription = '' shfmt formats shell programs. It can use tabs or any number of spaces to indent. You can feed it standard input, any number of files or any number of directories to recurse into. ''; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ zowoq SuperSandro2000 ]; diff --git a/pkgs/by-name/sh/shhmsg/package.nix b/pkgs/by-name/sh/shhmsg/package.nix index a58723db25f9..89e598aee916 100644 --- a/pkgs/by-name/sh/shhmsg/package.nix +++ b/pkgs/by-name/sh/shhmsg/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { installFlags = [ "INSTBASEDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Library for displaying messages"; homepage = "https://shh.thathost.com/pub-unix/"; - license = licenses.artistic1; - platforms = platforms.all; + license = lib.licenses.artistic1; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sh/shhopt/package.nix b/pkgs/by-name/sh/shhopt/package.nix index 0b36bfc8cd8c..4cdf2e4c9dd0 100644 --- a/pkgs/by-name/sh/shhopt/package.nix +++ b/pkgs/by-name/sh/shhopt/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { installFlags = [ "INSTBASEDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Library for parsing command line options"; homepage = "https://shh.thathost.com/pub-unix/"; - license = licenses.artistic1; - platforms = platforms.all; + license = lib.licenses.artistic1; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sh/shibboleth-sp/package.nix b/pkgs/by-name/sh/shibboleth-sp/package.nix index f591d69d726d..85ac2fc242ef 100644 --- a/pkgs/by-name/sh/shibboleth-sp/package.nix +++ b/pkgs/by-name/sh/shibboleth-sp/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://shibboleth.net/products/service-provider.html"; description = "Enables SSO and Federation web applications written with any programming language or framework"; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sh/shim-unsigned/package.nix b/pkgs/by-name/sh/shim-unsigned/package.nix index 37646180c9b9..bfff7fa6314c 100644 --- a/pkgs/by-name/sh/shim-unsigned/package.nix +++ b/pkgs/by-name/sh/shim-unsigned/package.nix @@ -54,15 +54,15 @@ stdenv.mkDerivation rec { fallbackTarget = "fb${archSuffix}.efi"; }; - meta = with lib; { + meta = { description = "UEFI shim loader"; homepage = "https://github.com/rhboot/shim"; - license = licenses.bsd1; + license = lib.licenses.bsd1; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ baloo raitobezarius ]; diff --git a/pkgs/by-name/sh/shine/package.nix b/pkgs/by-name/sh/shine/package.nix index c9107390d575..903fd51e4edf 100644 --- a/pkgs/by-name/sh/shine/package.nix +++ b/pkgs/by-name/sh/shine/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Fast fixed-point mp3 encoding library"; mainProgram = "shineenc"; homepage = "https://github.com/toots/shine"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/by-name/sh/shiori/package.nix b/pkgs/by-name/sh/shiori/package.nix index 08bedc9538f3..9f6952d1ca39 100644 --- a/pkgs/by-name/sh/shiori/package.nix +++ b/pkgs/by-name/sh/shiori/package.nix @@ -37,12 +37,12 @@ buildGoModule rec { passthru.tests.smoke-test = nixosTests.shiori; - meta = with lib; { + meta = { description = "Simple bookmark manager built with Go"; mainProgram = "shiori"; homepage = "https://github.com/go-shiori/shiori"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ minijackson CaptainJawZ ]; diff --git a/pkgs/by-name/sh/shisho/package.nix b/pkgs/by-name/sh/shisho/package.nix index b7289b7bac7e..44e7fe2b6aa0 100644 --- a/pkgs/by-name/sh/shisho/package.nix +++ b/pkgs/by-name/sh/shisho/package.nix @@ -44,7 +44,7 @@ rustPlatform.buildRustPackage rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://docs.shisho.dev/shisho/"; changelog = "https://docs.shisho.dev/changelog/"; description = "Lightweight static analyzer for several programming languages"; @@ -57,7 +57,7 @@ rustPlatform.buildRustPackage rec { and integration capabilities, the rules will help you find and fix issues semiautomatically. ''; - license = licenses.agpl3Only; - maintainers = with maintainers; [ jk ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ jk ]; }; } diff --git a/pkgs/by-name/sh/shmig/package.nix b/pkgs/by-name/sh/shmig/package.nix index 3f57bed763cf..ab1e66873696 100644 --- a/pkgs/by-name/sh/shmig/package.nix +++ b/pkgs/by-name/sh/shmig/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Minimalistic database migration tool with MySQL, PostgreSQL and SQLite support"; mainProgram = "shmig"; homepage = "https://github.com/mbucc/shmig"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sh/shncpd/package.nix b/pkgs/by-name/sh/shncpd/package.nix index 248421cc4454..c5c237a1e2cb 100644 --- a/pkgs/by-name/sh/shncpd/package.nix +++ b/pkgs/by-name/sh/shncpd/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation { makeFlags=( "PREFIX=$out" ) ''; - meta = with lib; { + meta = { description = "Simple, stupid and slow HNCP daemon"; homepage = "https://www.irif.univ-paris-diderot.fr/~jch/software/homenet/shncpd.html"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.fpletz ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.fpletz ]; mainProgram = "shncpd"; }; } diff --git a/pkgs/by-name/sh/shocco/package.nix b/pkgs/by-name/sh/shocco/package.nix index 63ce139be600..c2579ab20d22 100644 --- a/pkgs/by-name/sh/shocco/package.nix +++ b/pkgs/by-name/sh/shocco/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { python3.pkgs.pygments ]; - meta = with lib; { + meta = { description = "Quick-and-dirty, literate-programming-style documentation generator for / in POSIX shell"; mainProgram = "shocco"; homepage = "https://rtomayko.github.io/shocco/"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/sh/shod/package.nix b/pkgs/by-name/sh/shod/package.nix index 8686767a3a8c..9014ca63bc45 100644 --- a/pkgs/by-name/sh/shod/package.nix +++ b/pkgs/by-name/sh/shod/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Mouse-based window manager that can tile windows inside floating containers"; longDescription = '' shod is a multi-monitor floating reparenting X11 window manager that @@ -51,8 +51,8 @@ stdenv.mkDerivation rec { (shod's remote controller). ''; homepage = "https://github.com/phillbush/shod"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sh/shopify-themekit/package.nix b/pkgs/by-name/sh/shopify-themekit/package.nix index 23dbdd89a1a3..9c972e307909 100644 --- a/pkgs/by-name/sh/shopify-themekit/package.nix +++ b/pkgs/by-name/sh/shopify-themekit/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { rm -f $out/bin/{cmd,tkrelease} ''; - meta = with lib; { + meta = { description = "Command line tool for shopify themes"; mainProgram = "theme"; homepage = "https://shopify.github.io/themekit/"; - license = licenses.mit; - maintainers = with maintainers; [ _1000101 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _1000101 ]; }; } diff --git a/pkgs/by-name/sh/shortcat/package.nix b/pkgs/by-name/sh/shortcat/package.nix index c2a9e1008a77..581709130581 100644 --- a/pkgs/by-name/sh/shortcat/package.nix +++ b/pkgs/by-name/sh/shortcat/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp -R . $out/Applications/Shortcat.app ''; - meta = with lib; { + meta = { description = "Manipulate macOS masterfully, minus the mouse"; homepage = "https://shortcat.app/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.darwin; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.darwin; maintainers = with lib.maintainers; [ t-monaghan ]; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; }; } diff --git a/pkgs/by-name/sh/shot-scraper/package.nix b/pkgs/by-name/sh/shot-scraper/package.nix index 5f3ff70cf52f..5052334b68ed 100644 --- a/pkgs/by-name/sh/shot-scraper/package.nix +++ b/pkgs/by-name/sh/shot-scraper/package.nix @@ -34,12 +34,12 @@ python3.pkgs.buildPythonApplication rec { "shot_scraper" ]; - meta = with lib; { + meta = { description = "Command-line utility for taking automated screenshots of websites"; homepage = "https://github.com/simonw/shot-scraper"; changelog = "https://github.com/simonw/shot-scraper/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ techknowlogick ]; mainProgram = "shot-scraper"; }; } diff --git a/pkgs/by-name/sh/shotgun/package.nix b/pkgs/by-name/sh/shotgun/package.nix index 7a2d82e35e3f..48a147895f62 100644 --- a/pkgs/by-name/sh/shotgun/package.nix +++ b/pkgs/by-name/sh/shotgun/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Hv/lQhxRJvvMB5LC5K7k9SmuUCfaVZJynWIz8QOeL9A="; - meta = with lib; { + meta = { description = "Minimal X screenshot utility"; homepage = "https://github.com/neXromancers/shotgun"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ lumi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "shotgun"; }; } diff --git a/pkgs/by-name/sh/shotman/package.nix b/pkgs/by-name/sh/shotman/package.nix index 255f30406a51..3821528368c6 100644 --- a/pkgs/by-name/sh/shotman/package.nix +++ b/pkgs/by-name/sh/shotman/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH ":" "${lib.makeBinPath [ slurp ]}"; ''; - meta = with lib; { + meta = { description = "Uncompromising screenshot GUI for Wayland compositors"; homepage = "https://git.sr.ht/~whynothugo/shotman"; - license = licenses.isc; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.isc; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo fpletz ]; diff --git a/pkgs/by-name/sh/shotwell/package.nix b/pkgs/by-name/sh/shotwell/package.nix index 1839555c19c0..360524b729ce 100644 --- a/pkgs/by-name/sh/shotwell/package.nix +++ b/pkgs/by-name/sh/shotwell/package.nix @@ -105,12 +105,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Popular photo organizer for the GNOME desktop"; mainProgram = "shotwell"; homepage = "https://gitlab.gnome.org/GNOME/shotwell"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ bobby285271 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ bobby285271 ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/sh/show-midi/package.nix b/pkgs/by-name/sh/show-midi/package.nix index 14f23b78edf9..188c40e5a1cb 100644 --- a/pkgs/by-name/sh/show-midi/package.nix +++ b/pkgs/by-name/sh/show-midi/package.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation (finalAttrs: { "-lXrandr" ]; - meta = with lib; { + meta = { description = "Multi-platform GUI application to effortlessly visualize MIDI activity"; homepage = "https://github.com/gbevin/ShowMIDI"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ minijackson ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ minijackson ]; mainProgram = "ShowMIDI"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/sh/showoff/package.nix b/pkgs/by-name/sh/showoff/package.nix index 9c94b43b77d6..058a1f09844d 100644 --- a/pkgs/by-name/sh/showoff/package.nix +++ b/pkgs/by-name/sh/showoff/package.nix @@ -11,13 +11,13 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "showoff"; - meta = with lib; { + meta = { description = "Slideshow presentation tool with a twist"; longDescription = "It runs as a web application, with audience interactivity features. This means that your audience can follow along in their own browsers, can download supplemental materials, can participate in quizzes or polls, post questions for the presenter, etc. By default, their slideshows will synchronize with the presenter, but they can switch to self-navigation mode"; homepage = "https://puppetlabs.github.io/showoff/"; - license = with licenses; mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = with lib.licenses; mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ maxwilson nicknovitski ]; diff --git a/pkgs/by-name/sh/shrikhand/package.nix b/pkgs/by-name/sh/shrikhand/package.nix index 585f7303bc8c..1e99ebad76ff 100644 --- a/pkgs/by-name/sh/shrikhand/package.nix +++ b/pkgs/by-name/sh/shrikhand/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://jonpinhorn.github.io/shrikhand/"; description = "Vibrant and playful typeface for both Latin and Gujarati writing systems"; - maintainers = with maintainers; [ sternenseemann ]; - platforms = platforms.all; - license = licenses.ofl; + maintainers = with lib.maintainers; [ sternenseemann ]; + platforms = lib.platforms.all; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/sh/shticker-book-unwritten/package.nix b/pkgs/by-name/sh/shticker-book-unwritten/package.nix index 426b4e93cf37..786e7fc1bff8 100644 --- a/pkgs/by-name/sh/shticker-book-unwritten/package.nix +++ b/pkgs/by-name/sh/shticker-book-unwritten/package.nix @@ -23,12 +23,12 @@ buildFHSEnv { ]; runScript = "shticker_book_unwritten"; - meta = with lib; { + meta = { description = "Minimal CLI launcher for the Toontown Rewritten MMORPG"; mainProgram = "shticker_book_unwritten"; homepage = "https://github.com/JonathanHelianthicusDoe/shticker_book_unwritten"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.reedrw ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.reedrw ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sh/shtns/package.nix b/pkgs/by-name/sh/shtns/package.nix index 1b9e10619e44..34a5e6fd84fd 100644 --- a/pkgs/by-name/sh/shtns/package.nix +++ b/pkgs/by-name/sh/shtns/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { buildInputs = [ fftw ]; - meta = with lib; { + meta = { description = "High performance library for Spherical Harmonic Transform"; homepage = "https://nschaeff.bitbucket.io/shtns/"; - license = licenses.cecill21; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.linux; + license = lib.licenses.cecill21; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sh/shunit2/package.nix b/pkgs/by-name/sh/shunit2/package.nix index 577ca5a6a79f..ad4619f63c69 100644 --- a/pkgs/by-name/sh/shunit2/package.nix +++ b/pkgs/by-name/sh/shunit2/package.nix @@ -91,15 +91,15 @@ resholve.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/kward/shunit2"; description = "XUnit based unit test framework for Bourne based shell scripts"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ abathur utdemir ]; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "shunit2"; }; } diff --git a/pkgs/by-name/sh/shutter/package.nix b/pkgs/by-name/sh/shutter/package.nix index 699b4aac399d..00c9fdf1c01b 100644 --- a/pkgs/by-name/sh/shutter/package.nix +++ b/pkgs/by-name/sh/shutter/package.nix @@ -102,12 +102,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Screenshot and annotation tool"; mainProgram = "shutter"; homepage = "https://shutter-project.org/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/si/sickgear/package.nix b/pkgs/by-name/si/sickgear/package.nix index 2589b6f97c28..250fc5ff1ac1 100644 --- a/pkgs/by-name/si/sickgear/package.nix +++ b/pkgs/by-name/si/sickgear/package.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { --suffix PATH : ${lib.makeBinPath [ libarchive ]} ''; - meta = with lib; { + meta = { description = "Most reliable stable TV fork of the great Sick-Beard to fully automate TV enjoyment with innovation"; mainProgram = "sickgear"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/SickGear/SickGear"; maintainers = with lib.maintainers; [ rembo10 ]; }; diff --git a/pkgs/by-name/si/sienna/package.nix b/pkgs/by-name/si/sienna/package.nix index 967e93ea55a1..00e2c2647ab4 100644 --- a/pkgs/by-name/si/sienna/package.nix +++ b/pkgs/by-name/si/sienna/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fast-paced one button platformer"; mainProgram = "sienna"; homepage = "https://tangramgames.dk/games/sienna"; - platforms = platforms.linux; - license = licenses.free; + platforms = lib.platforms.linux; + license = lib.licenses.free; }; } diff --git a/pkgs/by-name/si/sierra-gtk-theme/package.nix b/pkgs/by-name/si/sierra-gtk-theme/package.nix index e044f0c5176c..877f05723c95 100644 --- a/pkgs/by-name/si/sierra-gtk-theme/package.nix +++ b/pkgs/by-name/si/sierra-gtk-theme/package.nix @@ -75,11 +75,11 @@ lib.checkListOfEnum "${pname}: button variants" [ "standard" "alt" ] buttonVaria runHook postInstall ''; - meta = with lib; { + meta = { description = "Mac OSX like theme for GTK based desktop environments"; homepage = "https://github.com/vinceliuice/Sierra-gtk-theme"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/si/sieve-connect/package.nix b/pkgs/by-name/si/sieve-connect/package.nix index 8a576bd7be3f..ca4e11bd13f8 100644 --- a/pkgs/by-name/si/sieve-connect/package.nix +++ b/pkgs/by-name/si/sieve-connect/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Client for the MANAGESIEVE Protocol"; longDescription = '' This is sieve-connect. A client for the ManageSieve protocol, @@ -67,9 +67,9 @@ stdenv.mkDerivation rec { implemented by timsieved in Cyrus IMAP. ''; homepage = "https://github.com/philpennock/sieve-connect"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ das_j ]; mainProgram = "sieve-connect"; }; } diff --git a/pkgs/by-name/si/sift/package.nix b/pkgs/by-name/si/sift/package.nix index 0fe1069b7020..4cef60276af5 100644 --- a/pkgs/by-name/si/sift/package.nix +++ b/pkgs/by-name/si/sift/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { installShellCompletion --cmd sift --bash sift-completion.bash ''; - meta = with lib; { + meta = { description = "Fast and powerful alternative to grep"; mainProgram = "sift"; homepage = "https://sift-tool.org"; - maintainers = with maintainers; [ viraptor ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ viraptor ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/si/sigal/package.nix b/pkgs/by-name/si/sigal/package.nix index caecff95ecb1..336de6ed020e 100644 --- a/pkgs/by-name/si/sigal/package.nix +++ b/pkgs/by-name/si/sigal/package.nix @@ -51,12 +51,12 @@ python3.pkgs.buildPythonApplication rec { "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ]; - meta = with lib; { + meta = { description = "Yet another simple static gallery generator"; mainProgram = "sigal"; homepage = "http://sigal.saimon.org/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/si/sigi/package.nix b/pkgs/by-name/si/sigi/package.nix index c5e355f385ce..c1fa1fdf8d68 100644 --- a/pkgs/by-name/si/sigi/package.nix +++ b/pkgs/by-name/si/sigi/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = sigi; }; - meta = with lib; { + meta = { description = "Organizing CLI for people who don't love organizing"; homepage = "https://github.com/sigi-cli/sigi"; - license = licenses.gpl2; - maintainers = with maintainers; [ booniepepper ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ booniepepper ]; mainProgram = "sigi"; }; } diff --git a/pkgs/by-name/si/sigma-cli/package.nix b/pkgs/by-name/si/sigma-cli/package.nix index 1d2ccb3a1fe0..8392ae7cd718 100644 --- a/pkgs/by-name/si/sigma-cli/package.nix +++ b/pkgs/by-name/si/sigma-cli/package.nix @@ -72,12 +72,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "sigma.cli" ]; - meta = with lib; { + meta = { description = "Sigma command line interface"; homepage = "https://github.com/SigmaHQ/sigma-cli"; changelog = "https://github.com/SigmaHQ/sigma-cli/releases/tag/${src.tag}"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "sigma"; }; } diff --git a/pkgs/by-name/si/signal-export/package.nix b/pkgs/by-name/si/signal-export/package.nix index e6d39fd7223a..88a762fa6096 100644 --- a/pkgs/by-name/si/signal-export/package.nix +++ b/pkgs/by-name/si/signal-export/package.nix @@ -31,13 +31,13 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { mainProgram = "sigexport"; homepage = "https://github.com/carderne/signal-export"; description = "Export your Signal chats to markdown files with attachments"; - platforms = platforms.unix; - license = licenses.mit; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ phaer picnoir ]; diff --git a/pkgs/by-name/si/signalbackup-tools/package.nix b/pkgs/by-name/si/signalbackup-tools/package.nix index d8818583355b..1fc20e13800e 100644 --- a/pkgs/by-name/si/signalbackup-tools/package.nix +++ b/pkgs/by-name/si/signalbackup-tools/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to work with Signal Backup files"; mainProgram = "signalbackup-tools"; homepage = "https://github.com/bepaald/signalbackup-tools"; - license = licenses.gpl3Only; - maintainers = [ maintainers.malo ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.malo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/si/signify/package.nix b/pkgs/by-name/si/signify/package.nix index 33b188a92261..fb1f8f6cc99f 100644 --- a/pkgs/by-name/si/signify/package.nix +++ b/pkgs/by-name/si/signify/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "OpenBSD signing tool"; mainProgram = "signify"; longDescription = '' @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { for fast signing and verification of messages using small public keys. ''; homepage = "https://www.tedunangst.com/flak/post/signify"; - license = licenses.isc; - maintainers = [ maintainers.rlupton20 ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.rlupton20 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/si/signing-party/package.nix b/pkgs/by-name/si/signing-party/package.nix index 76b3bac178bc..e67171bf673e 100644 --- a/pkgs/by-name/si/signing-party/package.nix +++ b/pkgs/by-name/si/signing-party/package.nix @@ -277,7 +277,7 @@ stdenv.mkDerivation rec { ${with perlPackages; makePerlPath [ GD ]} ''; - meta = with lib; { + meta = { homepage = "https://salsa.debian.org/signing-party-team/signing-party"; description = "Collection of several projects relating to OpenPGP"; longDescription = '' @@ -300,7 +300,7 @@ stdenv.mkDerivation rec { * keyart: creates a random ASCII art of a PGP key file * gpg-key2latex: generate LaTeX file with fingerprint paper slips ''; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 gpl2Only @@ -308,6 +308,6 @@ stdenv.mkDerivation rec { gpl3Plus ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/si/signwriting/package.nix b/pkgs/by-name/si/signwriting/package.nix index 46a92e045409..8be44d199ce1 100644 --- a/pkgs/by-name/si/signwriting/package.nix +++ b/pkgs/by-name/si/signwriting/package.nix @@ -22,12 +22,12 @@ runCommand "signwriting-1.1.4" outputHashMode = "recursive"; outputHash = "0cn37s3lc7gbr8036l7ia2869qmxglkmgllh3r9q5j54g3sfjc7q"; - meta = with lib; { + meta = { homepage = "https://github.com/Slevinski/signwriting_2010_fonts"; description = "Typeface for written sign languages"; - maintainers = with maintainers; [ mathnerd314 ]; - license = licenses.ofl; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mathnerd314 ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } '' diff --git a/pkgs/by-name/si/sigrok-cli/package.nix b/pkgs/by-name/si/sigrok-cli/package.nix index 058f22e7e4fb..102f6a985396 100644 --- a/pkgs/by-name/si/sigrok-cli/package.nix +++ b/pkgs/by-name/si/sigrok-cli/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation { libsigrokdecode ]; - meta = with lib; { + meta = { description = "Command-line frontend for the sigrok signal analysis software suite"; mainProgram = "sigrok-cli"; homepage = "https://sigrok.org/"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor vifino ]; diff --git a/pkgs/by-name/si/sigrok-firmware-fx2lafw/package.nix b/pkgs/by-name/si/sigrok-firmware-fx2lafw/package.nix index 8662d32e07be..1428d77b4313 100644 --- a/pkgs/by-name/si/sigrok-firmware-fx2lafw/package.nix +++ b/pkgs/by-name/si/sigrok-firmware-fx2lafw/package.nix @@ -23,20 +23,20 @@ stdenv.mkDerivation { sdcc ]; - meta = with lib; { + meta = { description = "Firmware for FX2 logic analyzers"; homepage = "https://sigrok.org/"; # licensing details explained in: # https://sigrok.org/gitweb/?p=sigrok-firmware-fx2lafw.git;a=blob;f=README;hb=HEAD#l122 - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus # overall lgpl21Plus # fx2lib, Hantek 6022BE, Sainsmart DDS120 firmwares ]; - sourceProvenance = with sourceTypes; [ fromSource ]; - platforms = platforms.all; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ panicgh vifino ]; diff --git a/pkgs/by-name/si/sigslot/package.nix b/pkgs/by-name/si/sigslot/package.nix index c1965ab37e3f..7b8a3b1e586c 100644 --- a/pkgs/by-name/si/sigslot/package.nix +++ b/pkgs/by-name/si/sigslot/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { dontBuild = true; - meta = with lib; { + meta = { description = "Header-only, thread safe implementation of signal-slots for C++"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/palacaze/sigslot"; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/si/sigtop/package.nix b/pkgs/by-name/si/sigtop/package.nix index c17b86face6c..8bfb19c9507d 100644 --- a/pkgs/by-name/si/sigtop/package.nix +++ b/pkgs/by-name/si/sigtop/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "PREFIX=\${out}" ]; - meta = with lib; { + meta = { description = "Utility to export messages, attachments and other data from Signal Desktop"; mainProgram = "sigtop"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ fricklerhandwerk ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fricklerhandwerk ]; }; } diff --git a/pkgs/by-name/si/sigutils/package.nix b/pkgs/by-name/si/sigutils/package.nix index e5cf30fdfdd9..48f6d85ce580 100644 --- a/pkgs/by-name/si/sigutils/package.nix +++ b/pkgs/by-name/si/sigutils/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { volk ]; - meta = with lib; { + meta = { description = "Small signal processing utility library"; homepage = "https://github.com/BatchDrake/sigutils"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ polygon oxapentane ]; diff --git a/pkgs/by-name/si/siji/package.nix b/pkgs/by-name/si/siji/package.nix index ea3cba7eef04..ce144d22d0e8 100644 --- a/pkgs/by-name/si/siji/package.nix +++ b/pkgs/by-name/si/siji/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { "bdf" ]; - meta = with lib; { + meta = { homepage = "https://github.com/stark/siji"; description = "Iconic bitmap font based on Stlarch with additional glyphs"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = [ maintainers.asymmetric ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.asymmetric ]; }; } diff --git a/pkgs/by-name/si/siketyan-ghr/package.nix b/pkgs/by-name/si/siketyan-ghr/package.nix index 3693f447b3b4..6d56884242b1 100644 --- a/pkgs/by-name/si/siketyan-ghr/package.nix +++ b/pkgs/by-name/si/siketyan-ghr/package.nix @@ -52,11 +52,11 @@ rustPlatform.buildRustPackage rec { ZSTD_SYS_USE_PKG_CONFIG = true; }; - meta = with lib; { + meta = { description = "Yet another repository management with auto-attaching profiles"; homepage = "https://github.com/siketyan/ghr"; - license = licenses.mit; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sei40kr ]; mainProgram = "ghr"; }; } diff --git a/pkgs/by-name/si/sil-abyssinica/package.nix b/pkgs/by-name/si/sil-abyssinica/package.nix index 4f323d7544aa..3a46d3456d3c 100644 --- a/pkgs/by-name/si/sil-abyssinica/package.nix +++ b/pkgs/by-name/si/sil-abyssinica/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode font for Ethiopian and Erythrean scripts (Amharic et al.)"; homepage = "https://software.sil.org/abyssinica/"; - license = licenses.ofl; - maintainers = with maintainers; [ serge ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ serge ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/si/sil-padauk/package.nix b/pkgs/by-name/si/sil-padauk/package.nix index 71a439856068..d77733d52b91 100644 --- a/pkgs/by-name/si/sil-padauk/package.nix +++ b/pkgs/by-name/si/sil-padauk/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode-based font family with broad support for writing systems that use the Myanmar script"; homepage = "https://software.sil.org/padauk"; - license = licenses.ofl; - maintainers = with maintainers; [ serge ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ serge ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/si/silenthound/package.nix b/pkgs/by-name/si/silenthound/package.nix index 35cc5ec32b56..849ddade882e 100644 --- a/pkgs/by-name/si/silenthound/package.nix +++ b/pkgs/by-name/si/silenthound/package.nix @@ -34,11 +34,11 @@ python3.pkgs.buildPythonApplication { # Only script available doCheck = false; - meta = with lib; { + meta = { description = "Tool to enumerate an Active Directory Domain"; homepage = "https://github.com/layer8secure/SilentHound"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "silenthound"; }; } diff --git a/pkgs/by-name/si/silicon/package.nix b/pkgs/by-name/si/silicon/package.nix index 5bb79bd97168..1b650c7d5bcf 100644 --- a/pkgs/by-name/si/silicon/package.nix +++ b/pkgs/by-name/si/silicon/package.nix @@ -51,14 +51,14 @@ rustPlatform.buildRustPackage rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { description = "Create beautiful image of your source code"; homepage = "https://github.com/Aloxaf/silicon"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ evanjs _0x4A6F ]; diff --git a/pkgs/by-name/si/silver-platter/package.nix b/pkgs/by-name/si/silver-platter/package.nix index 4834f13ab601..7118b7bc9558 100644 --- a/pkgs/by-name/si/silver-platter/package.nix +++ b/pkgs/by-name/si/silver-platter/package.nix @@ -49,11 +49,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "silver_platter" ]; - meta = with lib; { + meta = { description = "Automate the creation of merge proposals for scriptable changes"; homepage = "https://jelmer.uk/code/silver-platter"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lukegb ]; mainProgram = "svp"; }; } diff --git a/pkgs/by-name/si/silver-searcher/package.nix b/pkgs/by-name/si/silver-searcher/package.nix index 2c225bdd585f..3545925c2362 100644 --- a/pkgs/by-name/si/silver-searcher/package.nix +++ b/pkgs/by-name/si/silver-searcher/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { xz ]; - meta = with lib; { + meta = { homepage = "https://github.com/ggreer/the_silver_searcher/"; description = "Code-searching tool similar to ack, but faster"; - maintainers = with maintainers; [ madjar ]; + maintainers = with lib.maintainers; [ madjar ]; mainProgram = "ag"; - platforms = platforms.all; - license = licenses.asl20; + platforms = lib.platforms.all; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/si/simde/package.nix b/pkgs/by-name/si/simde/package.nix index 894a02de384e..fd143c46533e 100644 --- a/pkgs/by-name/si/simde/package.nix +++ b/pkgs/by-name/si/simde/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://simd-everywhere.github.io"; description = "Implementations of SIMD instruction sets for systems which don't natively support them"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ whiteley ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ whiteley ]; platforms = flatten ( - with platforms; + with lib.platforms; [ arm armv7 diff --git a/pkgs/by-name/si/simdutf/package.nix b/pkgs/by-name/si/simdutf/package.nix index 05a2a15e1b6b..288c816bf86c 100644 --- a/pkgs/by-name/si/simdutf/package.nix +++ b/pkgs/by-name/si/simdutf/package.nix @@ -30,15 +30,15 @@ stdenv.mkDerivation (finalAttrs: { libiconv ]; - meta = with lib; { + meta = { description = "Unicode routines validation and transcoding at billions of characters per second"; homepage = "https://github.com/simdutf/simdutf"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ wineee ]; + maintainers = with lib.maintainers; [ wineee ]; mainProgram = "simdutf"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/si/simg2img/package.nix b/pkgs/by-name/si/simg2img/package.nix index 2e4ee18646d7..b270bfc71695 100644 --- a/pkgs/by-name/si/simg2img/package.nix +++ b/pkgs/by-name/si/simg2img/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { "DEP_CXX:=$(CXX)" ]; - meta = with lib; { + meta = { description = "Tool to convert Android sparse images to raw images"; homepage = "https://github.com/anestisb/android-simg2img"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dezgeg arkivm ]; diff --git a/pkgs/by-name/si/simgear/package.nix b/pkgs/by-name/si/simgear/package.nix index 04b1651841dc..21183bb8f83c 100644 --- a/pkgs/by-name/si/simgear/package.nix +++ b/pkgs/by-name/si/simgear/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { xz ]; - meta = with lib; { + meta = { description = "Simulation construction toolkit"; homepage = "https://wiki.flightgear.org/SimGear"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.lgpl2; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/si/simgrid/package.nix b/pkgs/by-name/si/simgrid/package.nix index a430252abcd3..2f5cdac9be5a 100644 --- a/pkgs/by-name/si/simgrid/package.nix +++ b/pkgs/by-name/si/simgrid/package.nix @@ -131,7 +131,7 @@ stdenv.mkDerivation rec { hardeningDisable = lib.optionals debug [ "fortify" ]; dontStrip = debug; - meta = with lib; { + meta = { description = "Framework for the simulation of distributed applications"; longDescription = '' SimGrid is a toolkit that provides core functionalities for the @@ -142,12 +142,12 @@ stdenv.mkDerivation rec { network of workstations to Computational Grids. ''; homepage = "https://simgrid.org/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ mickours mpoquet ]; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/si/simh/package.nix b/pkgs/by-name/si/simh/package.nix index a4e696c1ee69..14d5e2d7457e 100644 --- a/pkgs/by-name/si/simh/package.nix +++ b/pkgs/by-name/si/simh/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { (cd $out/bin; for i in *; do ln -s $i simh-$i; done) ''; - meta = with lib; { + meta = { homepage = "http://simh.trailing-edge.com/"; description = "Collection of simulators of historic hardware"; longDescription = '' @@ -71,9 +71,9 @@ stdenv.mkDerivation rec { simulators and to publish them as freeware on the Internet, with freely available copies of significant or representative software. ''; - license = with licenses; mit; + license = with lib.licenses; mit; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } # TODO: install documentation diff --git a/pkgs/by-name/si/simp_le/package.nix b/pkgs/by-name/si/simp_le/package.nix index 5a6aa32393ad..f5716920ec3e 100644 --- a/pkgs/by-name/si/simp_le/package.nix +++ b/pkgs/by-name/si/simp_le/package.nix @@ -75,13 +75,13 @@ python.pkgs.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/zenhack/simp_le"; description = "Simple Let's Encrypt client"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ makefu ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/si/simple-mtpfs/package.nix b/pkgs/by-name/si/simple-mtpfs/package.nix index 567bef907b18..3bb880d024f2 100644 --- a/pkgs/by-name/si/simple-mtpfs/package.nix +++ b/pkgs/by-name/si/simple-mtpfs/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { libmtp ]; - meta = with lib; { + meta = { description = "Simple MTP fuse filesystem driver"; homepage = "https://github.com/phatina/simple-mtpfs"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ laalsaas ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ laalsaas ]; mainProgram = "simple-mtpfs"; }; } diff --git a/pkgs/by-name/si/simpleBluez/package.nix b/pkgs/by-name/si/simpleBluez/package.nix index ab5b5f74b072..97ad1fe35b7d 100644 --- a/pkgs/by-name/si/simpleBluez/package.nix +++ b/pkgs/by-name/si/simpleBluez/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { dbus ]; - meta = with lib; { + meta = { description = "C++ abstraction layer for BlueZ over DBus"; homepage = "https://github.com/OpenBluetoothToolbox/SimpleBLE"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aciceri ]; }; }) diff --git a/pkgs/by-name/si/simpleDBus/package.nix b/pkgs/by-name/si/simpleDBus/package.nix index 08128bd96c01..7357a3754a92 100644 --- a/pkgs/by-name/si/simpleDBus/package.nix +++ b/pkgs/by-name/si/simpleDBus/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { dbus ]; - meta = with lib; { + meta = { description = "C++ wrapper for libdbus-1"; homepage = "https://github.com/OpenBluetoothToolbox/SimpleBLE"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aciceri ]; }; }) diff --git a/pkgs/by-name/si/simpleTpmPk11/package.nix b/pkgs/by-name/si/simpleTpmPk11/package.nix index 263df9fe399f..1cf508ac2405 100644 --- a/pkgs/by-name/si/simpleTpmPk11/package.nix +++ b/pkgs/by-name/si/simpleTpmPk11/package.nix @@ -32,14 +32,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Simple PKCS11 provider for TPM chips"; longDescription = '' A simple library for using the TPM chip to secure SSH keys. ''; homepage = "https://github.com/ThomasHabets/simple-tpm-pk11"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/si/simplehttp2server/package.nix b/pkgs/by-name/si/simplehttp2server/package.nix index 190257b16e92..8ab9f14a5ba2 100644 --- a/pkgs/by-name/si/simplehttp2server/package.nix +++ b/pkgs/by-name/si/simplehttp2server/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { vendorHash = "sha256-PcDy+46Pz6xOxxwkSjojsbKZyR1yHdbWAJT+HFAEKkA="; proxyVendor = true; - meta = with lib; { + meta = { homepage = "https://github.com/GoogleChromeLabs/simplehttp2server"; description = "HTTP/2 server for development purposes"; - license = licenses.asl20; - maintainers = with maintainers; [ yrashk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ yrashk ]; mainProgram = "simplehttp2server"; }; } diff --git a/pkgs/by-name/si/simpleproxy/package.nix b/pkgs/by-name/si/simpleproxy/package.nix index cee75129e72b..91fa50f8aa7f 100644 --- a/pkgs/by-name/si/simpleproxy/package.nix +++ b/pkgs/by-name/si/simpleproxy/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/vzaliva/simpleproxy"; description = "Simple TCP proxy"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.montag451 ]; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.montag451 ]; mainProgram = "simpleproxy"; }; } diff --git a/pkgs/by-name/si/sing-geoip/package.nix b/pkgs/by-name/si/sing-geoip/package.nix index 42992cf1b9cd..d2153b81c280 100644 --- a/pkgs/by-name/si/sing-geoip/package.nix +++ b/pkgs/by-name/si/sing-geoip/package.nix @@ -25,11 +25,11 @@ let cat ${./main.go} >> main.go ''; - meta = with lib; { + meta = { description = "GeoIP data for sing-box"; homepage = "https://github.com/SagerNet/sing-geoip"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ linsui ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ linsui ]; mainProgram = "sing-geoip"; }; }; diff --git a/pkgs/by-name/si/singular/package.nix b/pkgs/by-name/si/singular/package.nix index 4278033373f2..d731ae09168f 100644 --- a/pkgs/by-name/si/singular/package.nix +++ b/pkgs/by-name/si/singular/package.nix @@ -192,11 +192,11 @@ stdenv.mkDerivation rec { meta = with lib; { description = "CAS for polynomial computations"; - teams = [ teams.sage ]; + teams = [ lib.teams.sage ]; # 32 bit x86 fails with some link error: `undefined reference to `__divmoddi4@GCC_7.0.0'` # https://www.singular.uni-kl.de:8002/trac/ticket/837 - platforms = subtractLists platforms.i686 platforms.unix; - license = licenses.gpl3; # Or GPLv2 at your option - but not GPLv4 + platforms = subtractLists lib.platforms.i686 lib.platforms.unix; + license = lib.licenses.gpl3; # Or GPLv2 at your option - but not GPLv4 homepage = "https://www.singular.uni-kl.de"; downloadPage = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/"; mainProgram = "Singular"; diff --git a/pkgs/by-name/si/sink-rotate/package.nix b/pkgs/by-name/si/sink-rotate/package.nix index 31a780eeaec5..fd0b11e6abe1 100644 --- a/pkgs/by-name/si/sink-rotate/package.nix +++ b/pkgs/by-name/si/sink-rotate/package.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage { --prefix PATH : ${wireplumber}/bin/wpctl ''; - meta = with lib; { + meta = { description = "Command that rotates the default PipeWire audio sink"; homepage = "https://github.com/mightyiam/sink-rotate"; - license = licenses.mit; - maintainers = with maintainers; [ mightyiam ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mightyiam ]; mainProgram = "sink-rotate"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/si/sioyek/package.nix b/pkgs/by-name/si/sioyek/package.nix index 98f4178e6a33..b5d52713e4ae 100644 --- a/pkgs/by-name/si/sioyek/package.nix +++ b/pkgs/by-name/si/sioyek/package.nix @@ -78,17 +78,17 @@ stdenv.mkDerivation (finalAttrs: { tagPrefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://sioyek.info/"; description = "PDF viewer designed for research papers and technical books"; mainProgram = "sioyek"; changelog = "https://github.com/ahrm/sioyek/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ podocarp stephen-huan xyven1 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/si/sipcalc/package.nix b/pkgs/by-name/si/sipcalc/package.nix index 3c17aabd32d8..17ea8f37cc89 100644 --- a/pkgs/by-name/si/sipcalc/package.nix +++ b/pkgs/by-name/si/sipcalc/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "cfd476c667f7a119e49eb5fe8adcfb9d2339bc2e0d4d01a1d64b7c229be56357"; }; - meta = with lib; { + meta = { description = "Advanced console ip subnet calculator"; homepage = "http://www.routemeister.net/projects/sipcalc/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = [ maintainers.globin ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.globin ]; mainProgram = "sipcalc"; }; } diff --git a/pkgs/by-name/si/sirikali/package.nix b/pkgs/by-name/si/sirikali/package.nix index 785eebfb341d..4e082f346d9d 100644 --- a/pkgs/by-name/si/sirikali/package.nix +++ b/pkgs/by-name/si/sirikali/package.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation rec { "-DBUILD_WITH_QT6=true" ]; - meta = with lib; { + meta = { description = "Qt/C++ GUI front end to sshfs, ecryptfs-simple, cryfs, gocryptfs, securefs, fscrypt and encfs"; homepage = "https://github.com/mhogomchungu/sirikali"; changelog = "https://github.com/mhogomchungu/sirikali/blob/${src.rev}/changelog"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ linuxissuper ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ linuxissuper ]; mainProgram = "sirikali"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/si/sirius/package.nix b/pkgs/by-name/si/sirius/package.nix index ff4c82bd92a5..8075deacb417 100644 --- a/pkgs/by-name/si/sirius/package.nix +++ b/pkgs/by-name/si/sirius/package.nix @@ -175,11 +175,11 @@ stdenv.mkDerivation (finalAttrs: { ctestCheckHook ]; - meta = with lib; { + meta = { description = "Domain specific library for electronic structure calculations"; homepage = "https://github.com/electronic-structure/SIRIUS"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; }) diff --git a/pkgs/by-name/si/sispmctl/package.nix b/pkgs/by-name/si/sispmctl/package.nix index 921850dfe86d..5346ba0cba77 100644 --- a/pkgs/by-name/si/sispmctl/package.nix +++ b/pkgs/by-name/si/sispmctl/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { libusb-compat-0_1 ]; - meta = with lib; { + meta = { homepage = "https://sispmctl.sourceforge.net/"; description = "USB controlled powerstrips management software"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "sispmctl"; - maintainers = [ maintainers._9R ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers._9R ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/si/sitelen-seli-kiwen/package.nix b/pkgs/by-name/si/sitelen-seli-kiwen/package.nix index efedefed67b1..6e7eb83c0476 100644 --- a/pkgs/by-name/si/sitelen-seli-kiwen/package.nix +++ b/pkgs/by-name/si/sitelen-seli-kiwen/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Handwritten sitelen pona font supporting UCSUR"; homepage = "https://www.kreativekorp.com/software/fonts/sitelenselikiwen/"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ somasis ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ somasis ]; }; }) diff --git a/pkgs/by-name/sk/skate/package.nix b/pkgs/by-name/sk/skate/package.nix index 22c5e980390d..46de50c92884 100644 --- a/pkgs/by-name/sk/skate/package.nix +++ b/pkgs/by-name/sk/skate/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X=main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Personal multi-machine syncable key value store"; homepage = "https://github.com/charmbracelet/skate"; changelog = "https://github.com/charmbracelet/skate/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "skate"; }; diff --git a/pkgs/by-name/sk/skeu/package.nix b/pkgs/by-name/sk/skeu/package.nix index 4bcf5bca826a..a49af348a5ab 100644 --- a/pkgs/by-name/sk/skeu/package.nix +++ b/pkgs/by-name/sk/skeu/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "GTK theme with skeuomorphism design"; homepage = "https://www.pling.com/p/1363834/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/sk/skimpdf/package.nix b/pkgs/by-name/sk/skimpdf/package.nix index bcd40fd12376..eb0e7c9c5606 100644 --- a/pkgs/by-name/sk/skimpdf/package.nix +++ b/pkgs/by-name/sk/skimpdf/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "PDF reader and note-taker for macOS"; homepage = "https://skim-app.sourceforge.io/"; - license = licenses.bsd0; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.bsd0; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "Skim.app"; - maintainers = with maintainers; [ YvesStraten ]; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ YvesStraten ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/sk/skopeo/package.nix b/pkgs/by-name/sk/skopeo/package.nix index 83fa704adfb0..46c2772b31f2 100644 --- a/pkgs/by-name/sk/skopeo/package.nix +++ b/pkgs/by-name/sk/skopeo/package.nix @@ -94,17 +94,17 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/containers/skopeo/releases/tag/${src.rev}"; description = "Command line utility for various operations on container images and image repositories"; mainProgram = "skopeo"; homepage = "https://github.com/containers/skopeo"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lewo developer-guy ryan4yin ]; - teams = [ teams.podman ]; - license = licenses.asl20; + teams = [ lib.teams.podman ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/sk/skrooge/package.nix b/pkgs/by-name/sk/skrooge/package.nix index 631cfa06e1af..4edc713ca9f2 100644 --- a/pkgs/by-name/sk/skrooge/package.nix +++ b/pkgs/by-name/sk/skrooge/package.nix @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { "-DBUILD_TESTS=ON" ]; - meta = with lib; { + meta = { description = "Personal finances manager, powered by KDE"; - license = with licenses; [ gpl3 ]; - maintainers = with maintainers; [ joko ]; + license = with lib.licenses; [ gpl3 ]; + maintainers = with lib.maintainers; [ joko ]; homepage = "https://skrooge.org/"; }; } diff --git a/pkgs/by-name/sk/skytemple/package.nix b/pkgs/by-name/sk/skytemple/package.nix index 9f8bdfb98c2d..c22b6feb25be 100644 --- a/pkgs/by-name/sk/skytemple/package.nix +++ b/pkgs/by-name/sk/skytemple/package.nix @@ -67,11 +67,11 @@ python3Packages.buildPythonApplication rec { install -Dm444 installer/skytemple.ico $out/share/icons/hicolor/256x256/apps/org.skytemple.SkyTemple.ico ''; - meta = with lib; { + meta = { homepage = "https://github.com/SkyTemple/skytemple"; description = "ROM hacking tool for Pokémon Mystery Dungeon Explorers of Sky"; mainProgram = "skytemple"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/by-name/sl/sl/package.nix b/pkgs/by-name/sl/sl/package.nix index a4b14dab2db3..26ca88312452 100644 --- a/pkgs/by-name/sl/sl/package.nix +++ b/pkgs/by-name/sl/sl/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Steam Locomotive runs across your terminal when you type 'sl'"; homepage = "http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html"; license = rec { @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { fullName = shortName; url = "https://github.com/eyJhb/sl/blob/master/LICENSE"; }; - maintainers = with maintainers; [ eyjhb ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ eyjhb ]; + platforms = lib.platforms.unix; mainProgram = "sl"; }; } diff --git a/pkgs/by-name/sl/sl1-to-photon/package.nix b/pkgs/by-name/sl/sl1-to-photon/package.nix index 826b994e9b4e..7658446a7f1f 100644 --- a/pkgs/by-name/sl/sl1-to-photon/package.nix +++ b/pkgs/by-name/sl/sl1-to-photon/package.nix @@ -31,9 +31,9 @@ python312Packages.buildPythonApplication rec { install -D -m 0755 SL1_to_Photon.py $out/bin/${pname} ''; - meta = with lib; { - maintainers = [ maintainers.cab404 ]; - license = licenses.gpl3Plus; + meta = { + maintainers = [ lib.maintainers.cab404 ]; + license = lib.licenses.gpl3Plus; description = "Tool for converting Slic3r PE's SL1 files to Photon files for the Anycubic Photon 3D-Printer"; homepage = "https://github.com/cab404/SL1toPhoton"; mainProgram = "sl1-to-photon"; diff --git a/pkgs/by-name/sl/slack-term/package.nix b/pkgs/by-name/sl/slack-term/package.nix index 8d2e09808bea..9459e59d511d 100644 --- a/pkgs/by-name/sl/slack-term/package.nix +++ b/pkgs/by-name/sl/slack-term/package.nix @@ -16,10 +16,10 @@ buildGoModule rec { }; vendorHash = null; - meta = with lib; { + meta = { description = "Slack client for your terminal"; homepage = "https://github.com/erroneousboat/slack-term"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "slack-term"; }; diff --git a/pkgs/by-name/sl/slang/package.nix b/pkgs/by-name/sl/slang/package.nix index 30fcd56620c9..fe263b6b09ea 100644 --- a/pkgs/by-name/sl/slang/package.nix +++ b/pkgs/by-name/sl/slang/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Small, embeddable multi-platform programming library"; longDescription = '' S-Lang is an interpreted language that was designed from the start to be @@ -101,9 +101,9 @@ stdenv.mkDerivation rec { Guide. ''; homepage = "http://www.jedsoft.org/slang/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "slsh"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sl/sleek/package.nix b/pkgs/by-name/sl/sleek/package.nix index 5d5dc64b9770..3aa41d403b5b 100644 --- a/pkgs/by-name/sl/sleek/package.nix +++ b/pkgs/by-name/sl/sleek/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-0AB2Z++WnOQ06CkKIHBydgV4VlLGqhlKGAQ0blPOFPo="; - meta = with lib; { + meta = { description = "CLI tool for formatting SQL"; homepage = "https://github.com/nrempel/sleek"; - license = licenses.mit; - maintainers = with maintainers; [ xrelkd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xrelkd ]; mainProgram = "sleek"; }; } diff --git a/pkgs/by-name/sl/sleep-on-lan/package.nix b/pkgs/by-name/sl/sleep-on-lan/package.nix index 10801694eef1..5a9ce69ac495 100644 --- a/pkgs/by-name/sl/sleep-on-lan/package.nix +++ b/pkgs/by-name/sl/sleep-on-lan/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { "-X main.BuildVersionLabel=nixpkgs" ]; - meta = with lib; { + meta = { homepage = "https://github.com/SR-G/sleep-on-lan"; description = "Multi-platform process allowing to sleep on LAN a Linux or Windows computer, through wake-on-lan (reversed) magic packets or through HTTP REST requests"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ devusb ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ devusb ]; mainProgram = "sleep-on-lan"; }; } diff --git a/pkgs/by-name/sl/sleuthkit/package.nix b/pkgs/by-name/sl/sleuthkit/package.nix index 9b62bea0fc7d..eead5b157658 100644 --- a/pkgs/by-name/sl/sleuthkit/package.nix +++ b/pkgs/by-name/sl/sleuthkit/package.nix @@ -101,19 +101,19 @@ stdenv.mkDerivation (finalAttrs: { rm -rf */.libs ''; - meta = with lib; { + meta = { description = "Forensic/data recovery tool"; homepage = "https://www.sleuthkit.org/"; changelog = "https://github.com/sleuthkit/sleuthkit/blob/${finalAttrs.src.rev}/NEWS.txt"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin gfrascadorio ]; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # dependencies ]; - license = licenses.ipl10; + license = lib.licenses.ipl10; }; }) diff --git a/pkgs/by-name/sl/slimserver/package.nix b/pkgs/by-name/sl/slimserver/package.nix index 2572dac47353..1241c5717bc7 100644 --- a/pkgs/by-name/sl/slimserver/package.nix +++ b/pkgs/by-name/sl/slimserver/package.nix @@ -169,19 +169,19 @@ perlPackages.buildPerlPackage rec { updateScript = ./update.nu; }; - meta = with lib; { + meta = { homepage = "https://lyrion.org/"; changelog = "https://lyrion.org/getting-started/changelog-lms${lib.versions.major version}"; description = "Lyrion Music Server (formerly Logitech Media Server) is open-source server software which controls a wide range of Squeezebox audio players"; # the firmware is not under a free license, so we do not include firmware in the default package # https://github.com/LMS-Community/slimserver/blob/public/8.3/License.txt - license = if enableUnfreeFirmware then licenses.unfree else licenses.gpl2Only; + license = if enableUnfreeFirmware then lib.licenses.unfree else lib.licenses.gpl2Only; mainProgram = "slimserver"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ adamcstephens jecaro ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/sl/slingshot/package.nix b/pkgs/by-name/sl/slingshot/package.nix index 6be7d0ace34b..90ee82c9472d 100644 --- a/pkgs/by-name/sl/slingshot/package.nix +++ b/pkgs/by-name/sl/slingshot/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Xf5lSwnD6ChpHaM7RQ/eti40iRZrNPpBsUn2QRzxecg="; - meta = with lib; { + meta = { description = "Lightweight command line tool to quickly navigate across folders"; homepage = "https://github.com/caio-ishikawa/slingshot"; changelog = "https://github.com/caio-ishikawa/slingshot/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "slingshot"; }; diff --git a/pkgs/by-name/sl/slippy/package.nix b/pkgs/by-name/sl/slippy/package.nix index 0bbe1997e9ce..5a659fabf54a 100644 --- a/pkgs/by-name/sl/slippy/package.nix +++ b/pkgs/by-name/sl/slippy/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Markdown slideshows in Rust"; homepage = "https://github.com/axodotdev/slippy"; changelog = "https://github.com/axodotdev/slippy/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/sl/slipstream/package.nix b/pkgs/by-name/sl/slipstream/package.nix index 2911890df5aa..86d17244d752 100644 --- a/pkgs/by-name/sl/slipstream/package.nix +++ b/pkgs/by-name/sl/slipstream/package.nix @@ -46,11 +46,11 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mod manager for FTL: Faster Than Light"; homepage = "https://github.com/Vhati/Slipstream-Mod-Manager"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ mib ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mib ]; mainProgram = "slipstream"; }; } diff --git a/pkgs/by-name/sl/slirp4netns/package.nix b/pkgs/by-name/sl/slirp4netns/package.nix index 7a29795d02d8..bf0b1f1111dd 100644 --- a/pkgs/by-name/sl/slirp4netns/package.nix +++ b/pkgs/by-name/sl/slirp4netns/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) podman; }; - meta = with lib; { + meta = { homepage = "https://github.com/rootless-containers/slirp4netns"; description = "User-mode networking for unprivileged network namespaces"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - teams = [ teams.podman ]; - platforms = platforms.linux; + teams = [ lib.teams.podman ]; + platforms = lib.platforms.linux; mainProgram = "slirp4netns"; }; } diff --git a/pkgs/by-name/sl/slowhttptest/package.nix b/pkgs/by-name/sl/slowhttptest/package.nix index 3eadcc232a03..f4577f359c1f 100644 --- a/pkgs/by-name/sl/slowhttptest/package.nix +++ b/pkgs/by-name/sl/slowhttptest/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Application Layer DoS attack simulator"; homepage = "https://github.com/shekyan/slowhttptest"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "slowhttptest"; }; } diff --git a/pkgs/by-name/sl/slurm-nm/package.nix b/pkgs/by-name/sl/slurm-nm/package.nix index 13c617d79cd2..f7706830ed35 100644 --- a/pkgs/by-name/sl/slurm-nm/package.nix +++ b/pkgs/by-name/sl/slurm-nm/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Generic network load monitor"; homepage = "https://github.com/mattthias/slurm"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ mikaelfangel ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mikaelfangel ]; mainProgram = "slurm"; }; } diff --git a/pkgs/by-name/sl/slurm-spank-stunnel/package.nix b/pkgs/by-name/sl/slurm-spank-stunnel/package.nix index 0dc9c42d4b8c..21c8d77b67ea 100644 --- a/pkgs/by-name/sl/slurm-spank-stunnel/package.nix +++ b/pkgs/by-name/sl/slurm-spank-stunnel/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { install -m 644 plugstack.conf $out/etc/slurm/plugstack.conf.d/stunnel.conf.example ''; - meta = with lib; { + meta = { homepage = "https://github.com/stanford-rc/slurm-spank-stunnel"; description = "Plugin for SLURM for SSH tunneling and port forwarding support"; - platforms = platforms.linux; - license = licenses.gpl3Only; - maintainers = with maintainers; [ markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ markuskowa ]; }; } diff --git a/pkgs/by-name/sl/slurm-spank-x11/package.nix b/pkgs/by-name/sl/slurm-spank-x11/package.nix index bd3ff6f9ae82..f2840a47794b 100644 --- a/pkgs/by-name/sl/slurm-spank-x11/package.nix +++ b/pkgs/by-name/sl/slurm-spank-x11/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { install -m 755 x11.so $out/lib ''; - meta = with lib; { + meta = { homepage = "https://github.com/hautreux/slurm-spank-x11"; description = "Plugin for SLURM to allow for interactive X11 sessions"; mainProgram = "slurm-spank-x11"; - platforms = platforms.linux; - license = licenses.gpl3Only; - maintainers = with maintainers; [ markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ markuskowa ]; }; } diff --git a/pkgs/by-name/sm/smart-wallpaper/package.nix b/pkgs/by-name/sm/smart-wallpaper/package.nix index e341a550999b..468df2ea0e37 100644 --- a/pkgs/by-name/sm/smart-wallpaper/package.nix +++ b/pkgs/by-name/sm/smart-wallpaper/package.nix @@ -37,12 +37,12 @@ stdenvNoCC.mkDerivation { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/Baitinq/smart-wallpaper"; description = "Simple bash script that automatically changes your wallpaper depending on if its daytime or nighttime"; - license = licenses.bsd2; - maintainers = with maintainers; [ baitinq ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ baitinq ]; + platforms = lib.platforms.linux; mainProgram = "smart-wallpaper"; }; } diff --git a/pkgs/by-name/sm/smartcrop/package.nix b/pkgs/by-name/sm/smartcrop/package.nix index 3473ed094a90..2acf8353c04a 100644 --- a/pkgs/by-name/sm/smartcrop/package.nix +++ b/pkgs/by-name/sm/smartcrop/package.nix @@ -22,10 +22,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Find good image crops for arbitrary crop sizes"; homepage = "https://github.com/muesli/smartcrop"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "smartcrop"; }; diff --git a/pkgs/by-name/sm/smartdeblur/package.nix b/pkgs/by-name/sm/smartdeblur/package.nix index 702636b676ca..c8a363b3598f 100644 --- a/pkgs/by-name/sm/smartdeblur/package.nix +++ b/pkgs/by-name/sm/smartdeblur/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/Y-Vladimir/SmartDeblur"; description = "Tool for restoring blurry and defocused images"; mainProgram = "SmartDeblur"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sm/smartdns/package.nix b/pkgs/by-name/sm/smartdns/package.nix index 44f3fe7ad31c..5a6de79256ab 100644 --- a/pkgs/by-name/sm/smartdns/package.nix +++ b/pkgs/by-name/sm/smartdns/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Local DNS server to obtain the fastest website IP for the best Internet experience"; longDescription = '' SmartDNS is a local DNS server. SmartDNS accepts DNS query requests from local clients, obtains DNS query results from multiple upstream DNS servers, and returns the fastest access results to clients. @@ -45,9 +45,9 @@ stdenv.mkDerivation rec { Unlike dnsmasq's all-servers, smartdns returns the fastest access resolution. ''; homepage = "https://github.com/pymumu/smartdns"; - maintainers = [ maintainers.lexuge ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.lexuge ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "smartdns"; }; } diff --git a/pkgs/by-name/sm/smartmontools/package.nix b/pkgs/by-name/sm/smartmontools/package.nix index dbb319ff8d5c..80b1f2feeca7 100644 --- a/pkgs/by-name/sm/smartmontools/package.nix +++ b/pkgs/by-name/sm/smartmontools/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { buildInputs = lib.optionals (lib.meta.availableOn stdenv.hostPlatform systemdLibs) [ systemdLibs ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Tools for monitoring the health of hard drives"; homepage = "https://www.smartmontools.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ Frostman ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Frostman ]; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "smartctl"; }; } diff --git a/pkgs/by-name/sm/smarty3-i18n/package.nix b/pkgs/by-name/sm/smarty3-i18n/package.nix index 579b1f7e5083..74c673529c61 100644 --- a/pkgs/by-name/sm/smarty3-i18n/package.nix +++ b/pkgs/by-name/sm/smarty3-i18n/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp block.t.php $out ''; - meta = with lib; { + meta = { description = "gettext for the smarty3 framework"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; homepage = "https://github.com/kikimosha/smarty3-i18n"; - maintainers = with maintainers; [ das_j ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ das_j ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sm/smarty3/package.nix b/pkgs/by-name/sm/smarty3/package.nix index c4fd8f175901..ca1dec8f9b06 100644 --- a/pkgs/by-name/sm/smarty3/package.nix +++ b/pkgs/by-name/sm/smarty3/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { cp -r libs/* $out ''; - meta = with lib; { + meta = { description = "Smarty 3 template engine"; longDescription = '' Smarty is a template engine for PHP, facilitating the @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { logic, and is separated from the presentation. ''; homepage = "https://www.smarty.net"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/sm/smassh/package.nix b/pkgs/by-name/sm/smassh/package.nix index 59acf59f0741..d6a9277eeb74 100644 --- a/pkgs/by-name/sm/smassh/package.nix +++ b/pkgs/by-name/sm/smassh/package.nix @@ -41,12 +41,12 @@ python3.pkgs.buildPythonApplication rec { version = "smassh - v${version}"; }; - meta = with lib; { + meta = { description = "TUI based typing test application inspired by MonkeyType"; homepage = "https://github.com/kraanzu/smassh"; changelog = "https://github.com/kraanzu/smassh/blob/main/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aimpizza kraanzu ]; diff --git a/pkgs/by-name/sm/smbnetfs/package.nix b/pkgs/by-name/sm/smbnetfs/package.nix index f1f40f0f5439..321a93600796 100644 --- a/pkgs/by-name/sm/smbnetfs/package.nix +++ b/pkgs/by-name/sm/smbnetfs/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { libsecret ]; - meta = with lib; { + meta = { description = "FUSE FS for mounting Samba shares"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs"; homepage = "https://sourceforge.net/projects/smbnetfs/"; mainProgram = "smbnetfs"; diff --git a/pkgs/by-name/sm/smbscan/package.nix b/pkgs/by-name/sm/smbscan/package.nix index 9674b4d11033..448bf86d403b 100644 --- a/pkgs/by-name/sm/smbscan/package.nix +++ b/pkgs/by-name/sm/smbscan/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to enumerate file shares"; homepage = "https://github.com/jeffhacks/smbscan"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "smbscan"; }; } diff --git a/pkgs/by-name/sm/smc-chilanka/package.nix b/pkgs/by-name/sm/smc-chilanka/package.nix index 17a0d5685b7e..d959b9740b55 100644 --- a/pkgs/by-name/sm/smc-chilanka/package.nix +++ b/pkgs/by-name/sm/smc-chilanka/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://smc.org.in/fonts/chilanka"; description = "Chilanka Malayalam Typeface"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ adtya ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ adtya ]; }; } diff --git a/pkgs/by-name/sm/smc/package.nix b/pkgs/by-name/sm/smc/package.nix index b1a0060e0e64..42d066c08c35 100644 --- a/pkgs/by-name/sm/smc/package.nix +++ b/pkgs/by-name/sm/smc/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/smc" ''; - meta = with lib; { + meta = { description = "Generate state machine code from text input (state diagram)"; longDescription = '' SMC (State Machine Compiler) takes a text input file describing states, @@ -51,10 +51,10 @@ stdenv.mkDerivation rec { SMC can also generate GraphViz state diagrams from the input file. ''; homepage = "https://smc.sourceforge.net/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mpl11; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mpl11; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "smc"; }; } diff --git a/pkgs/by-name/sm/smcroute/package.nix b/pkgs/by-name/sm/smcroute/package.nix index 8b1dd8420ca1..379b6dd69cb6 100644 --- a/pkgs/by-name/sm/smcroute/package.nix +++ b/pkgs/by-name/sm/smcroute/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { "--with-systemd=\$(out)/lib/systemd/system" ]; - meta = with lib; { + meta = { description = "Static multicast routing daemon"; homepage = "https://troglobit.com/smcroute.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fpletz ]; - platforms = with platforms; (linux ++ freebsd ++ netbsd ++ openbsd); + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = with lib.platforms; (linux ++ freebsd ++ netbsd ++ openbsd); }; } diff --git a/pkgs/by-name/sm/smemstat/package.nix b/pkgs/by-name/sm/smemstat/package.nix index 3e86ef40b277..afc09c25ef3f 100644 --- a/pkgs/by-name/sm/smemstat/package.nix +++ b/pkgs/by-name/sm/smemstat/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { "BASHDIR=${placeholder "out"}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Memory usage monitoring tool"; mainProgram = "smemstat"; homepage = "https://github.com/ColinIanKing/smemstat"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ womfoo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ womfoo ]; }; } diff --git a/pkgs/by-name/sm/smenu/package.nix b/pkgs/by-name/sm/smenu/package.nix index 050bf021d522..aaa25a7dcc73 100644 --- a/pkgs/by-name/sm/smenu/package.nix +++ b/pkgs/by-name/sm/smenu/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { homepage = "https://github.com/p-gen/smenu"; description = "Terminal selection utility"; longDescription = '' @@ -26,9 +26,9 @@ stdenv.mkDerivation rec { input to create a nice selection window just below the cursor. Once done, your selection will be sent to standard output. ''; - license = licenses.gpl2Only; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.unix; mainProgram = "smenu"; }; } diff --git a/pkgs/by-name/sm/smiley-sans/package.nix b/pkgs/by-name/sm/smiley-sans/package.nix index 2b7d6ffc3812..e792dd2d2ef8 100644 --- a/pkgs/by-name/sm/smiley-sans/package.nix +++ b/pkgs/by-name/sm/smiley-sans/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Condensed and oblique Chinese typeface seeking a visual balance between the humanist and the geometric"; homepage = "https://atelier-anchor.com/typefaces/smiley-sans/"; changelog = "https://github.com/atelier-anchor/smiley-sans/blob/main/CHANGELOG.md"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sm/smimesign/package.nix b/pkgs/by-name/sm/smimesign/package.nix index 59c468ccc111..33d71c20946c 100644 --- a/pkgs/by-name/sm/smimesign/package.nix +++ b/pkgs/by-name/sm/smimesign/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { # Fails in sandbox doCheck = false; - meta = with lib; { + meta = { description = "S/MIME signing utility for macOS and Windows that is compatible with Git"; homepage = "https://github.com/github/smimesign"; - license = licenses.mit; - platforms = platforms.darwin ++ platforms.windows; - maintainers = [ maintainers.enorris ]; + license = lib.licenses.mit; + platforms = lib.platforms.darwin ++ lib.platforms.windows; + maintainers = [ lib.maintainers.enorris ]; }; } diff --git a/pkgs/by-name/sm/smlfut/package.nix b/pkgs/by-name/sm/smlfut/package.nix index 323f3ca6c3f3..b8d1b07c4785 100644 --- a/pkgs/by-name/sm/smlfut/package.nix +++ b/pkgs/by-name/sm/smlfut/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { checkTarget = "run_test"; - meta = with lib; { + meta = { description = "Allow SML programs to call Futhark programs"; homepage = "https://github.com/diku-dk/smlfut"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = mlton.meta.platforms; - maintainers = with maintainers; [ athas ]; + maintainers = with lib.maintainers; [ athas ]; mainProgram = "smlfut"; }; }) diff --git a/pkgs/by-name/sm/smlpkg/package.nix b/pkgs/by-name/sm/smlpkg/package.nix index add914f285b0..73b268231294 100644 --- a/pkgs/by-name/sm/smlpkg/package.nix +++ b/pkgs/by-name/sm/smlpkg/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Generic package manager for Standard ML libraries and programs"; homepage = "https://github.com/diku-dk/smlpkg"; - license = licenses.mit; + license = lib.licenses.mit; platforms = mlton.meta.platforms; - maintainers = with maintainers; [ athas ]; + maintainers = with lib.maintainers; [ athas ]; mainProgram = "smlpkg"; }; } diff --git a/pkgs/by-name/sm/smooth/package.nix b/pkgs/by-name/sm/smooth/package.nix index 7b0ebcf3cbec..cc36156718f2 100644 --- a/pkgs/by-name/sm/smooth/package.nix +++ b/pkgs/by-name/sm/smooth/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Object-oriented class library for C++ application development"; mainProgram = "smooth-translator"; - license = licenses.artistic2; + license = lib.licenses.artistic2; homepage = "http://www.smooth-project.org/"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sm/smpeg2/package.nix b/pkgs/by-name/sm/smpeg2/package.nix index acd13baee025..d0747e2c9abe 100644 --- a/pkgs/by-name/sm/smpeg2/package.nix +++ b/pkgs/by-name/sm/smpeg2/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://icculus.org/smpeg/"; description = "SDL2 MPEG Player Library"; - license = licenses.lgpl2; - platforms = platforms.unix; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sm/smu/package.nix b/pkgs/by-name/sm/smu/package.nix index e328335b63ed..04b9df550040 100644 --- a/pkgs/by-name/sm/smu/package.nix +++ b/pkgs/by-name/sm/smu/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Simple markup - markdown like syntax"; mainProgram = "smu"; homepage = "https://github.com/Gottox/smu"; - license = licenses.mit; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/sm/smug/package.nix b/pkgs/by-name/sm/smug/package.nix index 5011db7e2430..ff79bfce3f80 100644 --- a/pkgs/by-name/sm/smug/package.nix +++ b/pkgs/by-name/sm/smug/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { installShellCompletion completion/smug.{bash,fish} ''; - meta = with lib; { + meta = { homepage = "https://github.com/ivaaaan/smug"; description = "tmux session manager"; - license = licenses.mit; - maintainers = with maintainers; [ juboba ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ juboba ]; mainProgram = "smug"; }; } diff --git a/pkgs/by-name/sm/smuview/package.nix b/pkgs/by-name/sm/smuview/package.nix index 6bfedfac5d09..be9d0d71195e 100644 --- a/pkgs/by-name/sm/smuview/package.nix +++ b/pkgs/by-name/sm/smuview/package.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 2.8.12)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Qt based source measure unit GUI for sigrok"; mainProgram = "smuview"; longDescription = "SmuView is a GUI for sigrok that supports power supplies, electronic loads and all sorts of measurement devices like multimeters, LCR meters and so on"; homepage = "https://github.com/knarfS/smuview"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vifino ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vifino ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sn/sn-pro/package.nix b/pkgs/by-name/sn/sn-pro/package.nix index cc830a3f8939..d5508158bf96 100644 --- a/pkgs/by-name/sn/sn-pro/package.nix +++ b/pkgs/by-name/sn/sn-pro/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "SN Pro Font Family"; homepage = "https://github.com/supernotes/sn-pro"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sn/snabb/package.nix b/pkgs/by-name/sn/snabb/package.nix index 2adae8cc4dd8..f9a8fa47bb51 100644 --- a/pkgs/by-name/sn/snabb/package.nix +++ b/pkgs/by-name/sn/snabb/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { cp src/snabb $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/SnabbCo/snabbswitch"; description = "Simple and fast packet networking toolkit"; longDescription = '' @@ -32,8 +32,8 @@ stdenv.mkDerivation rec { It is especially intended for ISPs and other network operators. ''; platforms = [ "x86_64-linux" ]; - license = licenses.asl20; - maintainers = [ maintainers.lukego ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.lukego ]; mainProgram = "snabb"; }; } diff --git a/pkgs/by-name/sn/snake4/package.nix b/pkgs/by-name/sn/snake4/package.nix index 0d3856a9d5b5..6b5d948edb2a 100644 --- a/pkgs/by-name/sn/snake4/package.nix +++ b/pkgs/by-name/sn/snake4/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { "INSTMANDIR=$(out)/man" ]; - meta = with lib; { + meta = { description = "Game starring a fruit-eating snake"; homepage = "https://shh.thathost.com/pub-unix/html/snake4.html"; - license = licenses.artistic1; - platforms = platforms.linux; + license = lib.licenses.artistic1; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sn/snallygaster/package.nix b/pkgs/by-name/sn/snallygaster/package.nix index 0d2470e16f71..8cbbe6b5e4e0 100644 --- a/pkgs/by-name/sn/snallygaster/package.nix +++ b/pkgs/by-name/sn/snallygaster/package.nix @@ -29,12 +29,12 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Tool to scan for secret files on HTTP servers"; homepage = "https://github.com/hannob/snallygaster"; changelog = "https://github.com/hannob/snallygaster/releases/tag/${src.tag}"; - license = licenses.bsd0; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "snallygaster"; }; } diff --git a/pkgs/by-name/sn/snap7/package.nix b/pkgs/by-name/sn/snap7/package.nix index 3951d80df17a..b7b4c1f432db 100644 --- a/pkgs/by-name/sn/snap7/package.nix +++ b/pkgs/by-name/sn/snap7/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cp -r $src/doc $doc/share/ ''; - meta = with lib; { + meta = { homepage = "https://snap7.sourceforge.net/"; description = "Step7 Open Source Ethernet Communication Suite"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sn/snapdragon-profiler/package.nix b/pkgs/by-name/sn/snapdragon-profiler/package.nix index 13febc9a2cd4..bbb2e57c4ba8 100644 --- a/pkgs/by-name/sn/snapdragon-profiler/package.nix +++ b/pkgs/by-name/sn/snapdragon-profiler/package.nix @@ -91,10 +91,10 @@ stdenv.mkDerivation rec { dontStrip = true; # Always needed on Mono dontPatchELF = true; # Certain libraries are to be deployed to the remote device, they should not be patched - meta = with lib; { + meta = { homepage = "https://developer.qualcomm.com/software/snapdragon-profiler"; description = "Profiler for Android devices running Snapdragon chips"; - license = licenses.unfree; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/sn/snapper-gui/package.nix b/pkgs/by-name/sn/snapper-gui/package.nix index 370cbe9fb920..c7cc77490222 100644 --- a/pkgs/by-name/sn/snapper-gui/package.nix +++ b/pkgs/by-name/sn/snapper-gui/package.nix @@ -49,7 +49,7 @@ python3Packages.buildPythonApplication { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Graphical interface for snapper"; mainProgram = "snapper-gui"; longDescription = '' @@ -59,8 +59,8 @@ python3Packages.buildPythonApplication { and revert changes. Currently works with btrfs, ext4 and thin-provisioned LVM volumes. ''; homepage = "https://github.com/ricardomv/snapper-gui"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ahuzik ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ahuzik ]; }; } diff --git a/pkgs/by-name/sn/snappy/package.nix b/pkgs/by-name/sn/snappy/package.nix index 40b0eba2f88a..33dd32991729 100644 --- a/pkgs/by-name/sn/snappy/package.nix +++ b/pkgs/by-name/sn/snappy/package.nix @@ -70,10 +70,10 @@ stdenv.mkDerivation rec { # requires gbenchmark and gtest but it also installs them out $dev doCheck = false; - meta = with lib; { + meta = { homepage = "https://google.github.io/snappy/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "Compression/decompression library for very high speeds"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sn/snapshot/package.nix b/pkgs/by-name/sn/snapshot/package.nix index 8c8a480bfeb1..bf00d1a567b6 100644 --- a/pkgs/by-name/sn/snapshot/package.nix +++ b/pkgs/by-name/sn/snapshot/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation (finalAttrs: { packageName = "snapshot"; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/snapshot"; description = "Take pictures and videos on your computer, tablet, or phone"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "snapshot"; }; }) diff --git a/pkgs/by-name/sn/snapweb/package.nix b/pkgs/by-name/sn/snapweb/package.nix index 7cd686fd14b9..df765e4d373d 100644 --- a/pkgs/by-name/sn/snapweb/package.nix +++ b/pkgs/by-name/sn/snapweb/package.nix @@ -31,10 +31,10 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Web client for Snapcast"; homepage = "https://github.com/badaix/snapweb"; - maintainers = with maintainers; [ ettom ]; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ettom ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/sn/snarkos/package.nix b/pkgs/by-name/sn/snarkos/package.nix index 3e0a26dc880a..89841d77db3b 100644 --- a/pkgs/by-name/sn/snarkos/package.nix +++ b/pkgs/by-name/sn/snarkos/package.nix @@ -52,14 +52,14 @@ rustPlatform.buildRustPackage rec { # "--skip=helpers::block_requests::tests::test_block_requests_case_2ca" # ]; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; description = "Decentralized Operating System for Zero-Knowledge Applications"; homepage = "https://snarkos.org"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.unix; mainProgram = "snarkos"; }; } diff --git a/pkgs/by-name/sn/snazy/package.nix b/pkgs/by-name/sn/snazy/package.nix index 3778a54bb5a2..1f6c827625ed 100644 --- a/pkgs/by-name/sn/snazy/package.nix +++ b/pkgs/by-name/sn/snazy/package.nix @@ -36,7 +36,7 @@ rustPlatform.buildRustPackage rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Snazzy json log viewer"; mainProgram = "snazy"; longDescription = '' @@ -45,8 +45,8 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/chmouel/snazy/"; changelog = "https://github.com/chmouel/snazy/releases/tag/${src.rev}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk ]; }; diff --git a/pkgs/by-name/sn/snd/package.nix b/pkgs/by-name/sn/snd/package.nix index f4c30e3d0381..781af960372a 100644 --- a/pkgs/by-name/sn/snd/package.nix +++ b/pkgs/by-name/sn/snd/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Sound editor"; homepage = "https://ccrma.stanford.edu/software/snd/"; - platforms = platforms.unix; - license = licenses.free; + platforms = lib.platforms.unix; + license = lib.licenses.free; maintainers = [ ]; mainProgram = "snd"; }; diff --git a/pkgs/by-name/sn/sndpeek/package.nix b/pkgs/by-name/sn/sndpeek/package.nix index e54024a8ec2e..b92fc1c562b3 100644 --- a/pkgs/by-name/sn/sndpeek/package.nix +++ b/pkgs/by-name/sn/sndpeek/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { mv sndpeek $out/bin ''; - meta = with lib; { + meta = { description = "Real-time 3D animated audio display/playback"; longDescription = '' sndpeek is just what it sounds (and looks) like: @@ -62,8 +62,8 @@ stdenv.mkDerivation rec { * part of the sndtools distribution. ''; homepage = "https://soundlab.cs.princeton.edu/software/sndpeek/"; - license = licenses.gpl2; - maintainers = [ maintainers.laikq ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.laikq ]; mainProgram = "sndpeek"; }; } diff --git a/pkgs/by-name/sn/sngrep/package.nix b/pkgs/by-name/sn/sngrep/package.nix index 44639ea1d8e5..e8e6bf103d04 100644 --- a/pkgs/by-name/sn/sngrep/package.nix +++ b/pkgs/by-name/sn/sngrep/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tool for displaying SIP calls message flows from terminal"; mainProgram = "sngrep"; homepage = "https://github.com/irontec/sngrep"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ jorise ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jorise ]; }; } diff --git a/pkgs/by-name/sn/snicat/package.nix b/pkgs/by-name/sn/snicat/package.nix index 38316a5dcfc7..c182776bb2ac 100644 --- a/pkgs/by-name/sn/snicat/package.nix +++ b/pkgs/by-name/sn/snicat/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { mv $out/bin/snicat $out/bin/sc ''; - meta = with lib; { + meta = { description = "TLS & SNI aware netcat"; homepage = "https://github.com/CTFd/snicat"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "sc"; - maintainers = with maintainers; [ felixalbrigtsen ]; + maintainers = with lib.maintainers; [ felixalbrigtsen ]; }; } diff --git a/pkgs/by-name/sn/sniffglue/package.nix b/pkgs/by-name/sn/sniffglue/package.nix index d3b95dc428c8..652b50caf5cb 100644 --- a/pkgs/by-name/sn/sniffglue/package.nix +++ b/pkgs/by-name/sn/sniffglue/package.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage rec { libseccomp ]; - meta = with lib; { + meta = { description = "Secure multithreaded packet sniffer"; homepage = "https://github.com/kpcyrd/sniffglue"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ xrelkd ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ xrelkd ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "sniffglue"; }; } diff --git a/pkgs/by-name/sn/snipes/package.nix b/pkgs/by-name/sn/snipes/package.nix index 6b927ac17e24..bd60b0c61d38 100644 --- a/pkgs/by-name/sn/snipes/package.nix +++ b/pkgs/by-name/sn/snipes/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Modern port of the classic 1982 text-mode game Snipes"; mainProgram = "snipes"; homepage = "https://www.vogons.org/viewtopic.php?f=7&t=49073"; - license = licenses.free; # This reverse-engineered source code is released with the original authors' permission. - maintainers = with maintainers; [ + license = lib.licenses.free; # This reverse-engineered source code is released with the original authors' permission. + maintainers = with lib.maintainers; [ peterhoeg cybershadow ]; diff --git a/pkgs/by-name/sn/snippetpixie/package.nix b/pkgs/by-name/sn/snippetpixie/package.nix index 2d6666446513..68ed6474a69c 100644 --- a/pkgs/by-name/sn/snippetpixie/package.nix +++ b/pkgs/by-name/sn/snippetpixie/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Your little expandable text snippet helper"; longDescription = '' Your little expandable text snippet helper. @@ -83,9 +83,9 @@ stdenv.mkDerivation rec { For non-accessible applications such as browsers and Electron apps, there's a shortcut (default is Ctrl+`) for opening a search window that pastes the selected snippet. ''; homepage = "https://www.snippetpixie.com"; - license = licenses.gpl2Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "com.github.bytepixie.snippetpixie"; }; } diff --git a/pkgs/by-name/sn/sniproxy/package.nix b/pkgs/by-name/sn/sniproxy/package.nix index 0dd200f690d5..1c0b2462dbf1 100644 --- a/pkgs/by-name/sn/sniproxy/package.nix +++ b/pkgs/by-name/sn/sniproxy/package.nix @@ -45,15 +45,15 @@ stdenv.mkDerivation rec { udns ]; - meta = with lib; { + meta = { homepage = "https://github.com/dlundquist/sniproxy"; description = "Transparent TLS and HTTP layer 4 proxy with SNI support"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ womfoo raitobezarius ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "sniproxy"; }; diff --git a/pkgs/by-name/sn/snis-unwrapped/package.nix b/pkgs/by-name/sn/snis-unwrapped/package.nix index d274737370d3..966e48993eeb 100644 --- a/pkgs/by-name/sn/snis-unwrapped/package.nix +++ b/pkgs/by-name/sn/snis-unwrapped/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Space Nerds In Space, a multi-player spaceship bridge simulator"; homepage = "https://smcameron.github.io/space-nerds-in-space/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pentane ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pentane ]; + platforms = lib.platforms.linux; mainProgram = "snis_launcher"; }; }) diff --git a/pkgs/by-name/sn/snmpcheck/package.nix b/pkgs/by-name/sn/snmpcheck/package.nix index c02787b68f0f..3834b96dd421 100644 --- a/pkgs/by-name/sn/snmpcheck/package.nix +++ b/pkgs/by-name/sn/snmpcheck/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { cp $src $out/bin/snmp-check ''; - meta = with lib; { + meta = { description = "SNMP enumerator"; homepage = "http://www.nothink.org/codes/snmpcheck/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "snmp-check"; }; } diff --git a/pkgs/by-name/sn/snobol4/package.nix b/pkgs/by-name/sn/snobol4/package.nix index 9af2ea6112c9..0fbd618f3a1d 100644 --- a/pkgs/by-name/sn/snobol4/package.nix +++ b/pkgs/by-name/sn/snobol4/package.nix @@ -67,15 +67,15 @@ stdenv.mkDerivation rec { prependToVar configureFlags --mandir="$man"/share/man ''; - meta = with lib; { + meta = { description = "Macro Implementation of SNOBOL4 in C"; longDescription = '' An open source port of Macro SNOBOL4 (The original Bell Telephone Labs implementation, written in SIL macros) by Phil Budne. Supports full SNOBOL4 language plus SPITBOL, [Blocks](https://www.regressive.org/snobol4/blocks/) and other extensions. ''; homepage = "https://www.regressive.org/snobol4/csnobol4/"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ xworld21 ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ xworld21 ]; }; } diff --git a/pkgs/by-name/sn/snooze/package.nix b/pkgs/by-name/sn/snooze/package.nix index 05e2a9dc4f6c..6ae458cbf08b 100644 --- a/pkgs/by-name/sn/snooze/package.nix +++ b/pkgs/by-name/sn/snooze/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { "PREFIX=/" ]; - meta = with lib; { + meta = { description = "Tool for waiting until a particular time and then running a command"; - maintainers = with maintainers; [ kaction ]; - license = licenses.cc0; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ kaction ]; + license = lib.licenses.cc0; + platforms = lib.platforms.unix; mainProgram = "snooze"; }; } diff --git a/pkgs/by-name/sn/snore/package.nix b/pkgs/by-name/sn/snore/package.nix index 87f085628d0b..255c3a82a907 100644 --- a/pkgs/by-name/sn/snore/package.nix +++ b/pkgs/by-name/sn/snore/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "'sleep' with feedback"; homepage = "https://github.com/clamiax/snore"; - license = licenses.mit; - maintainers = with maintainers; [ cafkafk ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cafkafk ]; + platforms = lib.platforms.unix; mainProgram = "snore"; }; } diff --git a/pkgs/by-name/sn/snow/package.nix b/pkgs/by-name/sn/snow/package.nix index 2bb684d10e8d..9c1babda2aac 100644 --- a/pkgs/by-name/sn/snow/package.nix +++ b/pkgs/by-name/sn/snow/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { install -Dm755 snow -t $out/bin ''; - meta = with lib; { + meta = { description = "Conceal messages in ASCII text by appending whitespace to the end of lines"; mainProgram = "snow"; homepage = "http://www.darkside.com.au/snow/"; - license = licenses.asl20; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sn/snowblind/package.nix b/pkgs/by-name/sn/snowblind/package.nix index 1e3056928232..8a69add792e4 100644 --- a/pkgs/by-name/sn/snowblind/package.nix +++ b/pkgs/by-name/sn/snowblind/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { rm $out/share/themes/*/{COPYING,CREDITS} ''; - meta = with lib; { + meta = { description = "Smooth blue theme based on Materia Design"; homepage = "https://www.opencode.net/ju1464/Snowblind"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/sn/snowcrash/package.nix b/pkgs/by-name/sn/snowcrash/package.nix index b8521f0e2147..2a2de3416d7a 100644 --- a/pkgs/by-name/sn/snowcrash/package.nix +++ b/pkgs/by-name/sn/snowcrash/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { mv $out/bin/SNOWCRASH $out/bin/${pname} ''; - meta = with lib; { + meta = { description = "Polyglot payload generator"; homepage = "https://github.com/redcode-labs/SNOWCRASH"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; - teams = [ teams.redcodelabs ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; + teams = [ lib.teams.redcodelabs ]; mainProgram = "SNOWCRASH"; }; } diff --git a/pkgs/by-name/sn/snowmachine/package.nix b/pkgs/by-name/sn/snowmachine/package.nix index 3001cacf8262..0938545db5d0 100644 --- a/pkgs/by-name/sn/snowmachine/package.nix +++ b/pkgs/by-name/sn/snowmachine/package.nix @@ -23,12 +23,12 @@ python3Packages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "snowmachine" ]; - meta = with lib; { + meta = { description = "Python script that will make your terminal snow"; homepage = "https://github.com/sontek/snowmachine"; mainProgram = "snowmachine"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ djanatyn sontek ]; diff --git a/pkgs/by-name/sn/snowsql/package.nix b/pkgs/by-name/sn/snowsql/package.nix index 46a84bacf27c..ebcb08dd514a 100644 --- a/pkgs/by-name/sn/snowsql/package.nix +++ b/pkgs/by-name/sn/snowsql/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { --set LD_LIBRARY_PATH "${libPath}":"${placeholder "out"}"/lib64/snowflake/snowsql \ ''; - meta = with lib; { + meta = { description = "Command line client for the Snowflake database"; homepage = "https://www.snowflake.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ andehen ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ andehen ]; platforms = [ "x86_64-linux" ]; mainProgram = "snowsql"; }; diff --git a/pkgs/by-name/sn/snpeff/package.nix b/pkgs/by-name/sn/snpeff/package.nix index 554c517fd2f1..4a3357e69c19 100644 --- a/pkgs/by-name/sn/snpeff/package.nix +++ b/pkgs/by-name/sn/snpeff/package.nix @@ -38,13 +38,13 @@ stdenv.mkDerivation rec { ln -s $out/bin/snpsift $out/bin/snpSift ''; - meta = with lib; { + meta = { description = "Genetic variant annotation and effect prediction toolbox"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; homepage = "https://snpeff.sourceforge.net/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sn/snzip/package.nix b/pkgs/by-name/sn/snzip/package.nix index 8010d22eb06f..590a965ace6b 100644 --- a/pkgs/by-name/sn/snzip/package.nix +++ b/pkgs/by-name/sn/snzip/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { snappy ]; - meta = with lib; { + meta = { description = "Compression/decompression tool based on snappy"; homepage = "https://github.com/kubo/snzip"; - maintainers = with maintainers; [ doronbehar ]; - license = licenses.bsd2; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/so/soapui/package.nix b/pkgs/by-name/so/soapui/package.nix index 31add3917376..6ee3650bfa7b 100644 --- a/pkgs/by-name/so/soapui/package.nix +++ b/pkgs/by-name/so/soapui/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) soapui; }; - meta = with lib; { + meta = { description = "Most Advanced REST & SOAP Testing Tool in the World"; homepage = "https://www.soapui.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.eupl11; - maintainers = with maintainers; [ gerschtli ]; - platforms = platforms.linux; # we don't fetch the dmg yet + maintainers = with lib.maintainers; [ gerschtli ]; + platforms = lib.platforms.linux; # we don't fetch the dmg yet mainProgram = "soapui"; }; } diff --git a/pkgs/by-name/so/soapyairspy/package.nix b/pkgs/by-name/so/soapyairspy/package.nix index 51ac737875f6..2b8289a7879f 100644 --- a/pkgs/by-name/so/soapyairspy/package.nix +++ b/pkgs/by-name/so/soapyairspy/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyAirspy"; description = "SoapySDR plugin for Airspy devices"; - license = licenses.mit; - maintainers = with maintainers; [ markuskowa ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ markuskowa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/soapyaudio/package.nix b/pkgs/by-name/so/soapyaudio/package.nix index 63822a3dcb86..fdc31102196d 100644 --- a/pkgs/by-name/so/soapyaudio/package.nix +++ b/pkgs/by-name/so/soapyaudio/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { "-DUSE_HAMLIB=ON" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyAudio"; description = "SoapySDR plugin for amateur radio and audio devices"; - license = licenses.mit; - maintainers = with maintainers; [ numinit ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ numinit ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/soapybladerf/package.nix b/pkgs/by-name/so/soapybladerf/package.nix index 2c9136e6c76d..2228bfc01b69 100644 --- a/pkgs/by-name/so/soapybladerf/package.nix +++ b/pkgs/by-name/so/soapybladerf/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyBladeRF"; description = "SoapySDR plugin for BladeRF devices"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ markuskowa ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ markuskowa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/soapyhackrf/package.nix b/pkgs/by-name/so/soapyhackrf/package.nix index 1164fd0a9f02..c54f9c27fe04 100644 --- a/pkgs/by-name/so/soapyhackrf/package.nix +++ b/pkgs/by-name/so/soapyhackrf/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyHackRF"; description = "SoapySDR plugin for HackRF devices"; - license = licenses.mit; - maintainers = with maintainers; [ markuskowa ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ markuskowa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/soapyplutosdr/package.nix b/pkgs/by-name/so/soapyplutosdr/package.nix index 3baa2dea9f0c..7b730ff9fb46 100644 --- a/pkgs/by-name/so/soapyplutosdr/package.nix +++ b/pkgs/by-name/so/soapyplutosdr/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyPlutoSDR"; changelog = "https://github.com/pothosware/SoapyPlutoSDR/blob/soapy-plutosdr-${finalAttrs.version}/Changelog.txt"; description = "SoapySDR plugin for Pluto SDR devices"; - license = licenses.lgpl21; - maintainers = with maintainers; [ wucke13 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ wucke13 ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/so/soapyremote/package.nix b/pkgs/by-name/so/soapyremote/package.nix index 3c592da07d6a..5137b98af1b5 100644 --- a/pkgs/by-name/so/soapyremote/package.nix +++ b/pkgs/by-name/so/soapyremote/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { lib.optionals stdenv.hostPlatform.isDarwin [ "-include sys/select.h" ] ); - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyRemote"; description = "SoapySDR plugin for remote access to SDRs"; - license = licenses.boost; - maintainers = with maintainers; [ markuskowa ]; - platforms = platforms.unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ markuskowa ]; + platforms = lib.platforms.unix; mainProgram = "SoapySDRServer"; }; } diff --git a/pkgs/by-name/so/soapyrtlsdr/package.nix b/pkgs/by-name/so/soapyrtlsdr/package.nix index 2dbc572ae08f..dba34af52c28 100644 --- a/pkgs/by-name/so/soapyrtlsdr/package.nix +++ b/pkgs/by-name/so/soapyrtlsdr/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyRTLSDR"; description = "SoapySDR plugin for RTL-SDR devices"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ragge luizribeiro ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/so/soapysdrplay/package.nix b/pkgs/by-name/so/soapysdrplay/package.nix index bd462c61069b..26613cb26d42 100644 --- a/pkgs/by-name/so/soapysdrplay/package.nix +++ b/pkgs/by-name/so/soapysdrplay/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ]; - meta = with lib; { + meta = { description = "Soapy SDR module for SDRplay"; homepage = "https://github.com/pothosware/SoapySDRPlay3"; - license = licenses.mit; - maintainers = [ maintainers.pmenke ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.pmenke ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/soapyuhd/package.nix b/pkgs/by-name/so/soapyuhd/package.nix index 444707bf320a..d104a71165a0 100644 --- a/pkgs/by-name/so/soapyuhd/package.nix +++ b/pkgs/by-name/so/soapyuhd/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { sed -i "s:DESTINATION .*uhd/modules:DESTINATION $out/lib/uhd/modules:" CMakeLists.txt ''; - meta = with lib; { + meta = { homepage = "https://github.com/pothosware/SoapyAirspy"; description = "SoapySDR plugin for UHD devices"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ markuskowa ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ markuskowa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/socat/package.nix b/pkgs/by-name/so/socat/package.nix index f3e1774f6c48..05ac16205293 100644 --- a/pkgs/by-name/so/socat/package.nix +++ b/pkgs/by-name/so/socat/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { musl = buildPackages.pkgsMusl.socat; }; - meta = with lib; { + meta = { description = "Utility for bidirectional data transfer between two independent data channels"; homepage = "http://www.dest-unreach.org/socat/"; - platforms = platforms.unix; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ ryan4yin ]; + platforms = lib.platforms.unix; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ ryan4yin ]; mainProgram = "socat"; }; } diff --git a/pkgs/by-name/so/social-engineer-toolkit/package.nix b/pkgs/by-name/so/social-engineer-toolkit/package.nix index 85bbb4c31773..5e88bbc6fd80 100644 --- a/pkgs/by-name/so/social-engineer-toolkit/package.nix +++ b/pkgs/by-name/so/social-engineer-toolkit/package.nix @@ -61,7 +61,7 @@ python3Packages.buildPythonApplication rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Open-source penetration testing framework designed for social engineering"; longDescription = '' The Social-Engineer Toolkit is an open-source penetration testing framework @@ -70,7 +70,7 @@ python3Packages.buildPythonApplication rec { ''; homepage = "https://github.com/trustedsec/social-engineer-toolkit"; mainProgram = "setoolkit"; - license = licenses.bsd3; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/by-name/so/socket_wrapper/package.nix b/pkgs/by-name/so/socket_wrapper/package.nix index a52765c63908..1ed965501a12 100644 --- a/pkgs/by-name/so/socket_wrapper/package.nix +++ b/pkgs/by-name/so/socket_wrapper/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Library passing all socket communications through unix sockets"; homepage = "https://git.samba.org/?p=socket_wrapper.git;a=summary;"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/so/sockperf/package.nix b/pkgs/by-name/so/sockperf/package.nix index f9a77af542a3..ca481a31d1c7 100644 --- a/pkgs/by-name/so/sockperf/package.nix +++ b/pkgs/by-name/so/sockperf/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Network Benchmarking Utility"; homepage = "https://github.com/Mellanox/sockperf"; - license = licenses.bsd3; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.all; mainProgram = "sockperf"; }; } diff --git a/pkgs/by-name/so/sof-tools/package.nix b/pkgs/by-name/so/sof-tools/package.nix index a48693df45c2..515025434022 100644 --- a/pkgs/by-name/so/sof-tools/package.nix +++ b/pkgs/by-name/so/sof-tools/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { buildInputs = [ alsa-lib ]; sourceRoot = "${src.name}/tools"; - meta = with lib; { + meta = { description = "Tools to develop, test and debug SoF (Sund Open Firmware)"; homepage = "https://thesofproject.github.io"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.johnazoidberg ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.johnazoidberg ]; mainProgram = "sof-ctl"; }; } diff --git a/pkgs/by-name/so/softhsm/package.nix b/pkgs/by-name/so/softhsm/package.nix index ee272c7f5d1f..a048dff80619 100644 --- a/pkgs/by-name/so/softhsm/package.nix +++ b/pkgs/by-name/so/softhsm/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { postInstall = "rm -rf $out/var"; - meta = with lib; { + meta = { homepage = "https://www.softhsm.org/"; description = "Cryptographic store accessible through a PKCS #11 interface"; longDescription = " @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { able to work with many cryptographic products. SoftHSM is a programme of The Commons Conservancy. "; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/softnet/package.nix b/pkgs/by-name/so/softnet/package.nix index 2604e32fd8c0..11c5395db2a5 100644 --- a/pkgs/by-name/so/softnet/package.nix +++ b/pkgs/by-name/so/softnet/package.nix @@ -22,14 +22,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Software networking with isolation for Tart"; homepage = "https://github.com/cirruslabs/softnet"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ emilytrau ]; platforms = [ "aarch64-darwin" ]; # Source build will be possible after darwin SDK 12.0 bump # https://github.com/NixOS/nixpkgs/pull/229210 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/so/sogo/package.nix b/pkgs/by-name/so/sogo/package.nix index 955724f9d660..747b54b52412 100644 --- a/pkgs/by-name/so/sogo/package.nix +++ b/pkgs/by-name/so/sogo/package.nix @@ -108,14 +108,14 @@ clangStdenv.mkDerivation rec { passthru.tests.sogo = nixosTests.sogo; - meta = with lib; { + meta = { description = "Very fast and scalable modern collaboration suite (groupware)"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21Only ]; homepage = "https://sogo.nu/"; - platforms = platforms.linux; - maintainers = with maintainers; [ jceb ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jceb ]; }; } diff --git a/pkgs/by-name/so/soil/package.nix b/pkgs/by-name/so/soil/package.nix index bed06c618693..183a1fec6e57 100644 --- a/pkgs/by-name/so/soil/package.nix +++ b/pkgs/by-name/so/soil/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation { cp SOIL.h $out/include/SOIL/ ''; - meta = with lib; { + meta = { description = "Simple OpenGL Image Library"; longDescription = '' SOIL is a tiny C library used primarily for uploading textures into OpenGL. ''; homepage = "https://www.lonesock.net/soil.html"; - license = licenses.publicDomain; - platforms = platforms.unix; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/so/soju/package.nix b/pkgs/by-name/so/soju/package.nix index ab9c9e1212b5..65a843a46826 100644 --- a/pkgs/by-name/so/soju/package.nix +++ b/pkgs/by-name/so/soju/package.nix @@ -45,7 +45,7 @@ buildGoModule rec { passthru.tests.soju = nixosTests.soju; - meta = with lib; { + meta = { description = "User-friendly IRC bouncer"; longDescription = '' soju is a user-friendly IRC bouncer. soju connects to upstream IRC servers @@ -56,8 +56,8 @@ buildGoModule rec { ''; homepage = "https://soju.im"; changelog = "https://codeberg.org/emersion/soju/releases/tag/${src.rev}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ azahi malte-v ]; diff --git a/pkgs/by-name/so/sokol/package.nix b/pkgs/by-name/so/sokol/package.nix index 22d84ceaa478..a17a98cf6c20 100644 --- a/pkgs/by-name/so/sokol/package.nix +++ b/pkgs/by-name/so/sokol/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Minimal cross-platform standalone C headers"; homepage = "https://github.com/floooh/sokol"; - license = licenses.zlib; - platforms = platforms.all; - maintainers = with maintainers; [ jonnybolton ]; + license = lib.licenses.zlib; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jonnybolton ]; }; } diff --git a/pkgs/by-name/so/sol2/package.nix b/pkgs/by-name/so/sol2/package.nix index 39db15ee2354..4f25786ce367 100644 --- a/pkgs/by-name/so/sol2/package.nix +++ b/pkgs/by-name/so/sol2/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { "-DSOL2_BUILD_LUA=FALSE" ]; - meta = with lib; { + meta = { description = "Lua API wrapper with advanced features and top notch performance"; longDescription = '' sol2 is a C++ library binding to Lua. @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { The library is header-only for easy integration with projects, and a single header can be used for drag-and-drop start up. ''; homepage = "https://github.com/ThePhD/sol2"; - license = licenses.mit; - maintainers = with maintainers; [ mrcjkb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mrcjkb ]; }; }) diff --git a/pkgs/by-name/so/solaar/package.nix b/pkgs/by-name/so/solaar/package.nix index 62f0dd26178b..24be0133862d 100644 --- a/pkgs/by-name/so/solaar/package.nix +++ b/pkgs/by-name/so/solaar/package.nix @@ -89,7 +89,7 @@ python3Packages.buildPythonApplication rec { "solaar.gtk" ]; - meta = with lib; { + meta = { description = "Linux devices manager for the Logitech Unifying Receiver"; longDescription = '' Solaar is a Linux manager for many Logitech keyboards, mice, and trackpads that @@ -102,13 +102,13 @@ python3Packages.buildPythonApplication rec { This tool requires either to be run with root/sudo or alternatively to have the udev rules files installed. On NixOS this can be achieved by setting `hardware.logitech.wireless.enable`. ''; homepage = "https://pwr-solaar.github.io/Solaar/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "solaar"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ spinus ysndr oxalica ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/solana-cli/package.nix b/pkgs/by-name/so/solana-cli/package.nix index f42fd64de891..283024e6a55b 100644 --- a/pkgs/by-name/so/solana-cli/package.nix +++ b/pkgs/by-name/so/solana-cli/package.nix @@ -108,17 +108,17 @@ rustPlatform.buildRustPackage rec { # If set, always finds OpenSSL in the system, even if the vendored feature is enabled. OPENSSL_NO_VENDOR = 1; - meta = with lib; { + meta = { description = "Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces"; homepage = "https://solana.com"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ netfox happysalada aikooo7 JacoMalan1 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/by-name/so/solanum/package.nix b/pkgs/by-name/so/solanum/package.nix index 3a56b9282291..b7b49f128975 100644 --- a/pkgs/by-name/so/solanum/package.nix +++ b/pkgs/by-name/so/solanum/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "IRCd for unified networks"; homepage = "https://github.com/solanum-ircd/solanum"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/solarc-gtk-theme/package.nix b/pkgs/by-name/so/solarc-gtk-theme/package.nix index 04ae6fd25046..3062aedc3d0e 100644 --- a/pkgs/by-name/so/solarc-gtk-theme/package.nix +++ b/pkgs/by-name/so/solarc-gtk-theme/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { ./autogen.sh --prefix=$out ''; - meta = with lib; { + meta = { description = "Solarized version of the Arc theme"; homepage = "https://github.com/schemar/solarc-theme"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/solfege/package.nix b/pkgs/by-name/so/solfege/package.nix index 44cdd4109d63..0e3c338721be 100644 --- a/pkgs/by-name/so/solfege/package.nix +++ b/pkgs/by-name/so/solfege/package.nix @@ -102,12 +102,12 @@ python3Packages.buildPythonApplication rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Ear training program"; homepage = "https://www.gnu.org/software/solfege/"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bjornfor anthonyroussel ]; diff --git a/pkgs/by-name/so/solicurses/package.nix b/pkgs/by-name/so/solicurses/package.nix index 01191499585d..20f948965ff6 100644 --- a/pkgs/by-name/so/solicurses/package.nix +++ b/pkgs/by-name/so/solicurses/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { install -D SoliCurses.out $out/bin/solicurses ''; - meta = with lib; { + meta = { description = "Version of Solitaire written in C++ using the ncurses library"; mainProgram = "solicurses"; homepage = "https://github.com/KaylaPP/SoliCurses"; - maintainers = with maintainers; [ laalsaas ]; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ laalsaas ]; + license = lib.licenses.gpl3Only; inherit (ncurses.meta) platforms; }; } diff --git a/pkgs/by-name/so/solitaire-tui/package.nix b/pkgs/by-name/so/solitaire-tui/package.nix index b7756af73687..b79ed1d4c5d5 100644 --- a/pkgs/by-name/so/solitaire-tui/package.nix +++ b/pkgs/by-name/so/solitaire-tui/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/brianstrauch/solitaire-tui"; description = "Klondike solitaire for the terminal"; mainProgram = "solitaire-tui"; - maintainers = with maintainers; [ nyadiia ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ nyadiia ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/so/sollya/package.nix b/pkgs/by-name/so/sollya/package.nix index e1c3a9868cc5..f944966ba790 100644 --- a/pkgs/by-name/so/sollya/package.nix +++ b/pkgs/by-name/so/sollya/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tool environment for safe floating-point code development"; mainProgram = "sollya"; homepage = "https://www.sollya.org/"; - license = licenses.cecill-c; - platforms = platforms.unix; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.cecill-c; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/so/solo2-cli/package.nix b/pkgs/by-name/so/solo2-cli/package.nix index 7800479bb874..9dfddf361add 100644 --- a/pkgs/by-name/so/solo2-cli/package.nix +++ b/pkgs/by-name/so/solo2-cli/package.nix @@ -47,14 +47,14 @@ rustPlatform.buildRustPackage rec { buildFeatures = [ "cli" ]; - meta = with lib; { + meta = { description = "CLI tool for managing SoloKeys' Solo2 USB security keys"; homepage = "https://github.com/solokeys/solo2-cli"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; # either at your option - maintainers = with maintainers; [ lukegb ]; + maintainers = with lib.maintainers; [ lukegb ]; mainProgram = "solo2"; }; } diff --git a/pkgs/by-name/so/solo5/package.nix b/pkgs/by-name/so/solo5/package.nix index dc8f60578612..746ac6dfc8df 100644 --- a/pkgs/by-name/so/solo5/package.nix +++ b/pkgs/by-name/so/solo5/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation { meta = with lib; { description = "Sandboxed execution environment"; homepage = "https://github.com/solo5/solo5"; - license = licenses.isc; + license = lib.licenses.isc; platforms = mapCartesianProduct ({ arch, os }: "${arch}-${os}") { arch = [ "aarch64" diff --git a/pkgs/by-name/so/somafm-cli/package.nix b/pkgs/by-name/so/somafm-cli/package.nix index 7a9042b6836b..79bbb6a1feb1 100644 --- a/pkgs/by-name/so/somafm-cli/package.nix +++ b/pkgs/by-name/so/somafm-cli/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { }"; ''; - meta = with lib; { + meta = { description = "Listen to SomaFM in your terminal via pure bash"; homepage = "https://github.com/rockymadden/somafm-cli"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "somafm"; }; } diff --git a/pkgs/by-name/so/somebar/package.nix b/pkgs/by-name/so/somebar/package.nix index 95436d5547b6..484cf1a296b7 100644 --- a/pkgs/by-name/so/somebar/package.nix +++ b/pkgs/by-name/so/somebar/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { cp ${configFile} src/config.hpp ''; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~raphi/somebar"; description = "dwm-like bar for dwl"; - license = licenses.mit; - maintainers = with maintainers; [ magnouvean ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ magnouvean ]; + platforms = lib.platforms.linux; mainProgram = "somebar"; }; } diff --git a/pkgs/by-name/so/sommelier/package.nix b/pkgs/by-name/so/sommelier/package.nix index 48515ad2dbec..21bf11036ed5 100644 --- a/pkgs/by-name/so/sommelier/package.nix +++ b/pkgs/by-name/so/sommelier/package.nix @@ -56,14 +56,14 @@ stdenv.mkDerivation { passthru.updateScript = ./update.py; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; homepage = "https://chromium.googlesource.com/chromiumos/platform2/+/refs/heads/main/vm_tools/sommelier/"; description = "Nested Wayland compositor with support for X11 forwarding"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.bsd3; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; mainProgram = "sommelier"; }; } diff --git a/pkgs/by-name/so/songrec/package.nix b/pkgs/by-name/so/songrec/package.nix index 414fbe180a68..7561f4291c34 100644 --- a/pkgs/by-name/so/songrec/package.nix +++ b/pkgs/by-name/so/songrec/package.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { mv packaging/rootfs/usr/share $out/share ''; - meta = with lib; { + meta = { description = "Open-source Shazam client for Linux, written in Rust"; homepage = "https://github.com/marin-m/SongRec"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ tcbravo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tcbravo ]; mainProgram = "songrec"; }; } diff --git a/pkgs/by-name/so/sonic/package.nix b/pkgs/by-name/so/sonic/package.nix index 9c656eb04436..359abc6b037f 100644 --- a/pkgs/by-name/so/sonic/package.nix +++ b/pkgs/by-name/so/sonic/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation { install_name_tool -id $out/lib/libsonic.so.0.3.0 $out/lib/libsonic.so.0.3.0 ''; - meta = with lib; { + meta = { description = "Simple library to speed up or slow down speech"; mainProgram = "sonic"; homepage = "https://github.com/waywardgeek/sonic"; - license = licenses.asl20; - maintainers = with maintainers; [ aske ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aske ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/so/sonivox/package.nix b/pkgs/by-name/so/sonivox/package.nix index 2ab260f90723..417c45281473 100644 --- a/pkgs/by-name/so/sonivox/package.nix +++ b/pkgs/by-name/so/sonivox/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/pedrolcl/sonivox"; description = "MIDI synthesizer library"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/sonixd/package.nix b/pkgs/by-name/so/sonixd/package.nix index 1d991ef38405..839bea79ef46 100644 --- a/pkgs/by-name/so/sonixd/package.nix +++ b/pkgs/by-name/so/sonixd/package.nix @@ -23,11 +23,11 @@ appimageTools.wrapType2 rec { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Full-featured Subsonic/Jellyfin compatible desktop music player"; homepage = "https://github.com/jeffvli/sonixd"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; platforms = [ "x86_64-linux" ]; mainProgram = "sonixd"; }; diff --git a/pkgs/by-name/so/sonota/package.nix b/pkgs/by-name/so/sonota/package.nix index 5bc4e99a1c6e..e0e22511dbf0 100644 --- a/pkgs/by-name/so/sonota/package.nix +++ b/pkgs/by-name/so/sonota/package.nix @@ -55,11 +55,11 @@ buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Flash Itead Sonoff devices with custom firmware via original OTA mechanism"; homepage = src.meta.homepage; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "sonota"; }; } diff --git a/pkgs/by-name/so/sony-headphones-client/package.nix b/pkgs/by-name/so/sony-headphones-client/package.nix index 96f02252e08e..c0e6b8f0b084 100644 --- a/pkgs/by-name/so/sony-headphones-client/package.nix +++ b/pkgs/by-name/so/sony-headphones-client/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Client recreating the functionality of the Sony Headphones app"; homepage = "https://github.com/Plutoberth/SonyHeadphonesClient"; - license = licenses.mit; - maintainers = with maintainers; [ stunkymonkey ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ stunkymonkey ]; + platforms = lib.platforms.linux; mainProgram = "SonyHeadphonesClient"; }; } diff --git a/pkgs/by-name/so/sopwith/package.nix b/pkgs/by-name/so/sopwith/package.nix index 965ee151b7dc..c24ec4e48704 100644 --- a/pkgs/by-name/so/sopwith/package.nix +++ b/pkgs/by-name/so/sopwith/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { libGL ]; - meta = with lib; { + meta = { homepage = "https://github.com/fragglet/sdl-sopwith"; description = "Classic biplane shoot ‘em-up game"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "sopwith"; - maintainers = with maintainers; [ evilbulgarian ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ evilbulgarian ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/sorcer/package.nix b/pkgs/by-name/so/sorcer/package.nix index d9a31a060864..e0f739c01175 100644 --- a/pkgs/by-name/so/sorcer/package.nix +++ b/pkgs/by-name/so/sorcer/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { cp -a ../presets/* "$out/lib/lv2" ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "http://openavproductions.com/sorcer/"; description = "Wavetable LV2 plugin synth, targeted at the electronic / dubstep genre"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/sord/package.nix b/pkgs/by-name/so/sord/package.nix index 3575d79cf8b5..18d112657ae1 100644 --- a/pkgs/by-name/so/sord/package.nix +++ b/pkgs/by-name/so/sord/package.nix @@ -46,14 +46,14 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "http://drobilla.net/software/sord"; description = "Lightweight C library for storing RDF data in memory"; - license = with licenses; [ + license = with lib.licenses; [ bsd0 isc ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/sorted-grep/package.nix b/pkgs/by-name/so/sorted-grep/package.nix index e744793eb6b2..ef3da0ccc89f 100644 --- a/pkgs/by-name/so/sorted-grep/package.nix +++ b/pkgs/by-name/so/sorted-grep/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://sgrep.sourceforge.net/"; description = "Sgrep (sorted grep) searches sorted input files for lines that match a search key"; mainProgram = "sgrep"; @@ -54,8 +54,8 @@ stdenv.mkDerivation rec { key and outputs the matching lines. When searching large files sgrep is much faster than traditional Unix grep, but with significant restrictions. ''; - platforms = platforms.unix; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ivan ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ivan ]; }; } diff --git a/pkgs/by-name/so/souffle/package.nix b/pkgs/by-name/so/souffle/package.nix index 7e15221d6856..fe8a1b828c44 100644 --- a/pkgs/by-name/so/souffle/package.nix +++ b/pkgs/by-name/so/souffle/package.nix @@ -97,15 +97,15 @@ stdenv.mkDerivation rec { passthru.tests = callPackage ./tests.nix { }; - meta = with lib; { + meta = { description = "Translator of declarative Datalog programs into the C++ language"; homepage = "https://souffle-lang.github.io/"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice wchresta markusscherer ]; - license = licenses.upl; + license = lib.licenses.upl; }; } diff --git a/pkgs/by-name/so/sound-juicer/package.nix b/pkgs/by-name/so/sound-juicer/package.nix index b949fdf00fa0..1c171a50d258 100644 --- a/pkgs/by-name/so/sound-juicer/package.nix +++ b/pkgs/by-name/so/sound-juicer/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Gnome CD Ripper"; mainProgram = "sound-juicer"; homepage = "https://gitlab.gnome.org/GNOME/sound-juicer"; - maintainers = [ maintainers.bdimcheff ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.bdimcheff ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/sound-theme-freedesktop/package.nix b/pkgs/by-name/so/sound-theme-freedesktop/package.nix index 58882f5291bb..43263a9e5c54 100644 --- a/pkgs/by-name/so/sound-theme-freedesktop/package.nix +++ b/pkgs/by-name/so/sound-theme-freedesktop/package.nix @@ -16,16 +16,16 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ intltool ]; - meta = with lib; { + meta = { description = "Freedesktop reference sound theme"; homepage = "http://freedesktop.org/wiki/Specifications/sound-theme-spec"; # See http://cgit.freedesktop.org/sound-theme-freedesktop/tree/CREDITS: - license = with licenses; [ + license = with lib.licenses; [ cc-by-30 cc-by-sa-25 gpl2 gpl2Plus ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/so/soundfont-arachno/package.nix b/pkgs/by-name/so/soundfont-arachno/package.nix index b92990e07b25..7c28074bced8 100644 --- a/pkgs/by-name/so/soundfont-arachno/package.nix +++ b/pkgs/by-name/so/soundfont-arachno/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "General MIDI-compliant bank, aimed at enhancing the realism of your MIDI files and arrangements"; homepage = "http://www.arachnosoft.com/main/soundfont.php"; - license = licenses.unfree; - platforms = platforms.all; - maintainers = with maintainers; [ mrtnvgr ]; + license = lib.licenses.unfree; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mrtnvgr ]; }; } diff --git a/pkgs/by-name/so/soundfont-fluid/package.nix b/pkgs/by-name/so/soundfont-fluid/package.nix index eb9b3941ccd2..f128f2522801 100644 --- a/pkgs/by-name/so/soundfont-fluid/package.nix +++ b/pkgs/by-name/so/soundfont-fluid/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { install -Dm644 "FluidR3 GM2-2.SF2" $out/share/soundfonts/FluidR3_GM2-2.sf2 ''; - meta = with lib; { + meta = { description = "Frank Wen's pro-quality GM/GS soundfont"; homepage = "http://www.hammersound.net/"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/so/soundfont-ydp-grand/package.nix b/pkgs/by-name/so/soundfont-ydp-grand/package.nix index d0f8833873ff..79d171957b1d 100644 --- a/pkgs/by-name/so/soundfont-ydp-grand/package.nix +++ b/pkgs/by-name/so/soundfont-ydp-grand/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation { install -Dm644 YDP-GrandPiano-*.sf2 $out/share/soundfonts/YDP-GrandPiano.sf2 ''; - meta = with lib; { + meta = { description = "Acoustic grand piano soundfont"; homepage = "https://freepats.zenvoid.org/Piano/acoustic-grand-piano.html"; - license = licenses.cc-by-30; - platforms = platforms.all; + license = lib.licenses.cc-by-30; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/so/soundmodem/package.nix b/pkgs/by-name/so/soundmodem/package.nix index 041de6679593..63bdfebc6ec2 100644 --- a/pkgs/by-name/so/soundmodem/package.nix +++ b/pkgs/by-name/so/soundmodem/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Audio based modem for ham radio supporting ax.25"; longDescription = '' This software allows a standard PC soundcard to be used as a packet radio "modem". The whole processing is done on the main processor CPU. @@ -58,8 +58,8 @@ stdenv.mkDerivation rec { #homepage = "http://gna.org/projects/soundmodem"; # official, but "Connection refused" homepage = "http://soundmodem.vk4msl.id.au/"; downloadPage = "https://archive.org/download/${pname}-${version}/${pname}-${version}.tar.gz"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ ymarkus ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ymarkus ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/so/soundtouch/package.nix b/pkgs/by-name/so/soundtouch/package.nix index b463a55ebd9f..2fb380a97d17 100644 --- a/pkgs/by-name/so/soundtouch/package.nix +++ b/pkgs/by-name/so/soundtouch/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Program and library for changing the tempo, pitch and playback rate of audio"; homepage = "https://www.surina.net/soundtouch/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; mainProgram = "soundstretch"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/so/soundwireserver/package.nix b/pkgs/by-name/so/soundwireserver/package.nix index 06a93d90af00..9ed7be89ea0a 100644 --- a/pkgs/by-name/so/soundwireserver/package.nix +++ b/pkgs/by-name/so/soundwireserver/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation { install -D sw-icon.xpm $out/share/icons/hicolor/256x256/apps/sw-icon.xpm ''; - meta = with lib; { + meta = { description = "Turn your Android device into wireless headphones / wireless speaker"; homepage = "https://georgielabs.net/"; - maintainers = with maintainers; [ mkg20001 ]; + maintainers = with lib.maintainers; [ mkg20001 ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/so/source-sans-pro/package.nix b/pkgs/by-name/so/source-sans-pro/package.nix index b31466ba924b..c5c930ef598d 100644 --- a/pkgs/by-name/so/source-sans-pro/package.nix +++ b/pkgs/by-name/so/source-sans-pro/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://adobe-fonts.github.io/source-sans/"; description = "Sans serif font family for user interface environments (version of Source Sans before being renamed)"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/by-name/so/source-sans/package.nix b/pkgs/by-name/so/source-sans/package.nix index 64c28e7a4e05..4164f6a45cb9 100644 --- a/pkgs/by-name/so/source-sans/package.nix +++ b/pkgs/by-name/so/source-sans/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://adobe-fonts.github.io/source-sans/"; description = "Sans serif font family for user interface environments"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/by-name/so/source-serif-pro/package.nix b/pkgs/by-name/so/source-serif-pro/package.nix index 1a12a8d2fcd4..761430c55b49 100644 --- a/pkgs/by-name/so/source-serif-pro/package.nix +++ b/pkgs/by-name/so/source-serif-pro/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://adobe-fonts.github.io/source-serif/"; description = "Typeface for setting text in many sizes, weights, and languages. Designed to complement Source Sans"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/by-name/so/source-serif/package.nix b/pkgs/by-name/so/source-serif/package.nix index fbbe7f40865d..10d5173a4e99 100644 --- a/pkgs/by-name/so/source-serif/package.nix +++ b/pkgs/by-name/so/source-serif/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://adobe-fonts.github.io/source-serif/"; description = "Typeface for setting text in many sizes, weights, and languages. Designed to complement Source Sans"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/by-name/so/sourceHighlight/package.nix b/pkgs/by-name/so/sourceHighlight/package.nix index df0c538610f2..116386f55463 100644 --- a/pkgs/by-name/so/sourceHighlight/package.nix +++ b/pkgs/by-name/so/sourceHighlight/package.nix @@ -80,16 +80,16 @@ stdenv.mkDerivation rec { # them in parallel by make will eventually break one or more tests. enableParallelChecking = false; - meta = with lib; { + meta = { description = "Source code renderer with syntax highlighting"; longDescription = '' GNU Source-highlight, given a source file, produces a document with syntax highlighting. ''; homepage = "https://www.gnu.org/software/src-highlite/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } // lib.optionalAttrs (stdenv.targetPlatform.useLLVM or false) { diff --git a/pkgs/by-name/so/sox/package.nix b/pkgs/by-name/so/sox/package.nix index 1a7f6081b301..f30063b4e102 100644 --- a/pkgs/by-name/so/sox/package.nix +++ b/pkgs/by-name/so/sox/package.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Sample Rate Converter for audio"; homepage = "https://sox.sourceforge.net/"; - maintainers = with maintainers; [ marcweber ]; - license = if enableAMR then licenses.unfree else licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ marcweber ]; + license = if enableAMR then lib.licenses.unfree else lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/so/soxr/package.nix b/pkgs/by-name/so/soxr/package.nix index 88563e32ec21..962e3ccff578 100644 --- a/pkgs/by-name/so/soxr/package.nix +++ b/pkgs/by-name/so/soxr/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { 'cmake_minimum_required (VERSION 3.10 FATAL_ERROR)' ''; - meta = with lib; { + meta = { description = "Audio resampling library"; homepage = "https://soxr.sourceforge.net"; - license = licenses.lgpl21Plus; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix ++ lib.platforms.windows; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sp/space-station-14-launcher/package.nix b/pkgs/by-name/sp/space-station-14-launcher/package.nix index df453041091d..6cc82e3cba81 100644 --- a/pkgs/by-name/sp/space-station-14-launcher/package.nix +++ b/pkgs/by-name/sp/space-station-14-launcher/package.nix @@ -173,10 +173,10 @@ buildDotnetModule rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Launcher for Space Station 14, a multiplayer game about paranoia and disaster"; homepage = "https://spacestation14.io"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "SS14.Launcher"; diff --git a/pkgs/by-name/sp/spaceFM/package.nix b/pkgs/by-name/sp/spaceFM/package.nix index d9e22a949530..6e25e5f9de5f 100644 --- a/pkgs/by-name/sp/spaceFM/package.nix +++ b/pkgs/by-name/sp/spaceFM/package.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation rec { # Introduced because ifuse doesn't build due to CVEs in libplist # Revert when libplist builds again… - meta = with lib; { + meta = { description = "Multi-panel tabbed file manager"; longDescription = '' Multi-panel tabbed file and desktop manager for Linux @@ -94,9 +94,9 @@ stdenv.mkDerivation rec { customizable menu system, and bash integration ''; homepage = "http://ignorantguru.github.io/spacefm/"; - platforms = platforms.linux; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ obadz ]; }; diff --git a/pkgs/by-name/sp/spacebar/package.nix b/pkgs/by-name/sp/spacebar/package.nix index 2fcb62b97851..a75a090546fb 100644 --- a/pkgs/by-name/sp/spacebar/package.nix +++ b/pkgs/by-name/sp/spacebar/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { cp ./doc/spacebar.1 $out/share/man/man1/spacebar.1 ''; - meta = with lib; { + meta = { description = "Minimal status bar for macOS"; homepage = "https://github.com/cmacrae/spacebar"; - platforms = platforms.darwin; - maintainers = [ maintainers.cmacrae ]; - license = licenses.mit; + platforms = lib.platforms.darwin; + maintainers = [ lib.maintainers.cmacrae ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/sp/spacenav-cube-example/package.nix b/pkgs/by-name/sp/spacenav-cube-example/package.nix index a0262defe9ae..abcda7c2dc3f 100644 --- a/pkgs/by-name/sp/spacenav-cube-example/package.nix +++ b/pkgs/by-name/sp/spacenav-cube-example/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://spacenav.sourceforge.net/"; description = "Example application to test the spacenavd driver"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ sohalt ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sohalt ]; mainProgram = "spacenav-cube-example"; }; } diff --git a/pkgs/by-name/sp/spacenavd/package.nix b/pkgs/by-name/sp/spacenavd/package.nix index 0914c8898cec..3adb51aac023 100644 --- a/pkgs/by-name/sp/spacenavd/package.nix +++ b/pkgs/by-name/sp/spacenavd/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "/usr/local/bin/spacenavd" "$out/bin/spacenavd" ''; - meta = with lib; { + meta = { homepage = "https://spacenav.sourceforge.net/"; description = "Device driver and SDK for 3Dconnexion 3D input devices"; longDescription = "A free, compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 3D input devices (called 'space navigator', 'space pilot', 'space traveller', etc)"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ sohalt ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sohalt ]; }; }) diff --git a/pkgs/by-name/sp/spacer/package.nix b/pkgs/by-name/sp/spacer/package.nix index c860633900f4..4d6774c728a8 100644 --- a/pkgs/by-name/sp/spacer/package.nix +++ b/pkgs/by-name/sp/spacer/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-sFsERAvR99BZm7SmaL/5cmCrwVZIKGRiFYcBtSryFaw="; - meta = with lib; { + meta = { description = "CLI tool to insert spacers when command output stops"; homepage = "https://github.com/samwho/spacer"; changelog = "https://github.com/samwho/spacer/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "spacer"; }; diff --git a/pkgs/by-name/sp/spade/package.nix b/pkgs/by-name/sp/spade/package.nix index 145c1faf3470..f431abb2de03 100644 --- a/pkgs/by-name/sp/spade/package.nix +++ b/pkgs/by-name/sp/spade/package.nix @@ -62,17 +62,17 @@ rustPlatform.buildRustPackage rec { inherit swim; }; - meta = with lib; { + meta = { description = "Better hardware description language"; homepage = "https://gitlab.com/spade-lang/spade"; changelog = "https://gitlab.com/spade-lang/spade/-/blob/${src.rev}/CHANGELOG.md"; # compiler is eupl12, spade-lang stdlib is both asl20 and mit - license = with licenses; [ + license = with lib.licenses; [ eupl12 asl20 mit ]; - maintainers = with maintainers; [ pbsds ]; + maintainers = with lib.maintainers; [ pbsds ]; mainProgram = "spade"; }; } diff --git a/pkgs/by-name/sp/sparrow/package.nix b/pkgs/by-name/sp/sparrow/package.nix index c31e9efeed4f..eac6f9890d0d 100644 --- a/pkgs/by-name/sp/sparrow/package.nix +++ b/pkgs/by-name/sp/sparrow/package.nix @@ -292,15 +292,15 @@ stdenvNoCC.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Modern desktop Bitcoin wallet application supporting most hardware wallets and built on common standards such as PSBT, with an emphasis on transparency and usability"; homepage = "https://sparrowwallet.com"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ msgilligan _1000101 ]; diff --git a/pkgs/by-name/sp/sparse/package.nix b/pkgs/by-name/sp/sparse/package.nix index 86718b6ee95f..38200f5c4330 100644 --- a/pkgs/by-name/sp/sparse/package.nix +++ b/pkgs/by-name/sp/sparse/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation { simple-execution = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = "Semantic parser for C"; homepage = "https://git.kernel.org/pub/scm/devel/sparse/sparse.git/"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice jkarlson ]; diff --git a/pkgs/by-name/sp/sparsehash/package.nix b/pkgs/by-name/sp/sparsehash/package.nix index 413884e6017e..029ca2e6f88d 100644 --- a/pkgs/by-name/sp/sparsehash/package.nix +++ b/pkgs/by-name/sp/sparsehash/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { sha256 = "1pf1cjvcjdmb9cd6gcazz64x0cd2ndpwh6ql2hqpypjv725xwxy7"; }; - meta = with lib; { + meta = { homepage = "https://github.com/sparsehash/sparsehash"; description = "Extremely memory-efficient hash_map implementation"; - platforms = platforms.all; - license = licenses.bsd3; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/sp/spasm-ng/package.nix b/pkgs/by-name/sp/spasm-ng/package.nix index 046dda2790c5..ec1d010d78de 100644 --- a/pkgs/by-name/sp/spasm-ng/package.nix +++ b/pkgs/by-name/sp/spasm-ng/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { wrapProgram $out/bin/spasm --add-flags "-I $out/include" ''; - meta = with lib; { + meta = { homepage = "https://github.com/alberthdev/spasm-ng"; description = "Z80 assembler with extra features to support development for TI calculators"; mainProgram = "spasm"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sp/spass/package.nix b/pkgs/by-name/sp/spass/package.nix index 2d98238a14ae..b629b8efe518 100644 --- a/pkgs/by-name/sp/spass/package.nix +++ b/pkgs/by-name/sp/spass/package.nix @@ -39,13 +39,13 @@ gccStdenv.mkDerivation { install -m0755 SPASS ${extraTools} $out/bin/ ''; - meta = with lib; { + meta = { description = "Automated theorem prover for first-order logic"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.bsd2; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; downloadPage = "http://www.spass-prover.org/download/index.html"; }; } diff --git a/pkgs/by-name/sp/spawn_fcgi/package.nix b/pkgs/by-name/sp/spawn_fcgi/package.nix index c20d8f39db53..ef328d08741b 100644 --- a/pkgs/by-name/sp/spawn_fcgi/package.nix +++ b/pkgs/by-name/sp/spawn_fcgi/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-implicit-function-declaration"; - meta = with lib; { + meta = { homepage = "https://redmine.lighttpd.net/projects/spawn-fcgi"; description = "Provides an interface to external programs that support the FastCGI interface"; mainProgram = "spawn-fcgi"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; }) diff --git a/pkgs/by-name/sp/spdk/package.nix b/pkgs/by-name/sp/spdk/package.nix index f5abd71a7694..8a495a3e5dc7 100644 --- a/pkgs/by-name/sp/spdk/package.nix +++ b/pkgs/by-name/sp/spdk/package.nix @@ -168,10 +168,10 @@ stdenv.mkDerivation rec { passthru.dpdk = dpdk'; - meta = with lib; { + meta = { description = "Set of libraries for fast user-mode storage"; homepage = "https://spdk.io/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; maintainers = [ ]; }; diff --git a/pkgs/by-name/sp/spdx-license-list-data/package.nix b/pkgs/by-name/sp/spdx-license-list-data/package.nix index 84d0f164eb8a..d6dba6e518dc 100644 --- a/pkgs/by-name/sp/spdx-license-list-data/package.nix +++ b/pkgs/by-name/sp/spdx-license-list-data/package.nix @@ -50,14 +50,14 @@ stdenvNoCC.mkDerivation rec { dontFixup = true; - meta = with lib; { + meta = { description = "Various data formats for the SPDX License List"; homepage = "https://github.com/spdx/license-list-data"; - license = licenses.cc0; - maintainers = with maintainers; [ + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ oxzi c0bw3b ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sp/specr-transpile/package.nix b/pkgs/by-name/sp/specr-transpile/package.nix index a7026c6dcac6..85b9dcb5a4b3 100644 --- a/pkgs/by-name/sp/specr-transpile/package.nix +++ b/pkgs/by-name/sp/specr-transpile/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pMkvyMGfvLdj406xH/1+ZHE33iZDcmUUBjeSiIro0xY="; - meta = with lib; { + meta = { description = "Converts Specr lang code to Rust"; mainProgram = "specr-transpile"; homepage = "https://github.com/RalfJung/minirust-tooling"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/sp/spectmorph/package.nix b/pkgs/by-name/sp/spectmorph/package.nix index 2ba089063922..0281d9c3623a 100644 --- a/pkgs/by-name/sp/spectmorph/package.nix +++ b/pkgs/by-name/sp/spectmorph/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Allows to analyze samples of musical instruments, and to combine them (morphing) to construct hybrid sounds"; homepage = "https://spectmorph.org"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ maintainers.magnetophon ]; + maintainers = [ lib.maintainers.magnetophon ]; }; } diff --git a/pkgs/by-name/sp/spectra/package.nix b/pkgs/by-name/sp/spectra/package.nix index b426f0b6eea7..fff116fa16b9 100644 --- a/pkgs/by-name/sp/spectra/package.nix +++ b/pkgs/by-name/sp/spectra/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ eigen ]; - meta = with lib; { + meta = { homepage = "https://spectralib.org/"; description = "C++ library for large scale eigenvalue problems, built on top of Eigen"; - license = licenses.mpl20; - maintainers = with maintainers; [ vonfry ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ vonfry ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sp/spectral-language-server/package.nix b/pkgs/by-name/sp/spectral-language-server/package.nix index 4e3dd64755e0..df7410f77def 100644 --- a/pkgs/by-name/sp/spectral-language-server/package.nix +++ b/pkgs/by-name/sp/spectral-language-server/package.nix @@ -55,10 +55,10 @@ let runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/stoplightio/vscode-spectral"; description = "VS Code extension bringing the awesome Spectral JSON/YAML linter with OpenAPI/AsyncAPI support"; - license = licenses.asl20; + license = lib.licenses.asl20; }; }); in @@ -99,11 +99,11 @@ buildNpmPackage { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/luizcorreia/spectral-language-server"; description = "Awesome Spectral JSON/YAML linter with OpenAPI/AsyncAPI support"; - maintainers = with maintainers; [ momeemt ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ momeemt ]; + license = lib.licenses.mit; mainProgram = "spectral-language-server"; }; } diff --git a/pkgs/by-name/sp/spectre-cli/package.nix b/pkgs/by-name/sp/spectre-cli/package.nix index 9999de9b1111..3b188a1e72aa 100644 --- a/pkgs/by-name/sp/spectre-cli/package.nix +++ b/pkgs/by-name/sp/spectre-cli/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { mv spectre $out/bin ''; - meta = with lib; { + meta = { description = "Stateless cryptographic identity algorithm"; homepage = "https://spectre.app"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ emmabastas ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ emmabastas ]; mainProgram = "spectre"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sp/speech-denoiser/package.nix b/pkgs/by-name/sp/speech-denoiser/package.nix index 859318e5fe13..18fae30b1450 100644 --- a/pkgs/by-name/sp/speech-denoiser/package.nix +++ b/pkgs/by-name/sp/speech-denoiser/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation { --replace "cc.find_library('rnnoise-nu',dirs: meson.current_source_dir() + '/rnnoise/.libs/',required : true)" "cc.find_library('rnnoise-nu', required : true)" ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Speech denoise lv2 plugin based on RNNoise library"; homepage = "https://github.com/lucianodato/speech-denoiser"; - license = licenses.lgpl3; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sp/speech-tools/package.nix b/pkgs/by-name/sp/speech-tools/package.nix index 262c2b406e3e..5c11f21d2f51 100644 --- a/pkgs/by-name/sp/speech-tools/package.nix +++ b/pkgs/by-name/sp/speech-tools/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { checkTarget = "test"; - meta = with lib; { + meta = { description = "Text-to-speech engine"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.free; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.free; }; passthru = { diff --git a/pkgs/by-name/sp/speechd/package.nix b/pkgs/by-name/sp/speechd/package.nix index 6155290c6ceb..1768b139638d 100644 --- a/pkgs/by-name/sp/speechd/package.nix +++ b/pkgs/by-name/sp/speechd/package.nix @@ -141,17 +141,17 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Common interface to speech synthesis" + lib.optionalString libsOnly " - client libraries only"; homepage = "https://devel.freebsoft.org/speechd"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ berce jtojnar ]; # TODO: remove checks for `withPico` once PR #375450 is merged - platforms = if withAlsa || withPico then platforms.linux else platforms.unix; + platforms = if withAlsa || withPico then lib.platforms.linux else lib.platforms.unix; mainProgram = "speech-dispatcher"; }; }) diff --git a/pkgs/by-name/sp/speedcrunch/package.nix b/pkgs/by-name/sp/speedcrunch/package.nix index 5bfe19feb52a..5a5ceaacb6a9 100644 --- a/pkgs/by-name/sp/speedcrunch/package.nix +++ b/pkgs/by-name/sp/speedcrunch/package.nix @@ -31,9 +31,9 @@ stdenv.mkDerivation { libsForQt5.wrapQtAppsHook ]; - meta = with lib; { + meta = { homepage = "https://speedcrunch.org"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "Fast power user calculator"; mainProgram = "speedcrunch"; longDescription = '' @@ -42,7 +42,7 @@ stdenv.mkDerivation { precisions, unlimited variable storage, intelligent automatic completion full keyboard-friendly and more than 15 built-in math function. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ j0hax ]; inherit (libsForQt5.qtbase.meta) platforms; diff --git a/pkgs/by-name/sp/speedread/package.nix b/pkgs/by-name/sp/speedread/package.nix index ac277bdf09b6..4bd4b43884f0 100644 --- a/pkgs/by-name/sp/speedread/package.nix +++ b/pkgs/by-name/sp/speedread/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { install -m755 -D speedread $out/bin/speedread ''; - meta = with lib; { + meta = { description = "Simple terminal-based open source Spritz-alike"; longDescription = '' Speedread is a command line filter that shows input text as a @@ -31,9 +31,9 @@ stdenv.mkDerivation rec { pace than usual as the eye can stay fixed on a single place. ''; homepage = src.meta.homepage; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.oxij ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.oxij ]; mainProgram = "speedread"; }; } diff --git a/pkgs/by-name/sp/spfft/package.nix b/pkgs/by-name/sp/spfft/package.nix index bc0618b78aa8..f7023ec931be 100644 --- a/pkgs/by-name/sp/spfft/package.nix +++ b/pkgs/by-name/sp/spfft/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { "-DHIP_ROOT_DIR=${rocmPackages.clr}" ]; - meta = with lib; { + meta = { description = "Sparse 3D FFT library with MPI, OpenMP, CUDA and ROCm support"; homepage = "https://github.com/eth-cscs/SpFFT"; - license = licenses.bsd3; - maintainers = [ maintainers.sheepforce ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.sheepforce ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sp/spice-gtk/package.nix b/pkgs/by-name/sp/spice-gtk/package.nix index c1b17dc0ee05..301162b9c6ab 100644 --- a/pkgs/by-name/sp/spice-gtk/package.nix +++ b/pkgs/by-name/sp/spice-gtk/package.nix @@ -170,7 +170,7 @@ stdenv.mkDerivation rec { --replace-fail ",--version-script=@0@'.format(spice_client_glib_syms_path)" "'" ''; - meta = with lib; { + meta = { description = "GTK 3 SPICE widget"; longDescription = '' spice-gtk is a GTK 3 SPICE widget. It features glib-based @@ -180,8 +180,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.spice-space.org/"; - license = licenses.lgpl21; - maintainers = [ maintainers.xeji ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.xeji ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sp/spice-protocol/package.nix b/pkgs/by-name/sp/spice-protocol/package.nix index 7abb0ab672c0..605a7ab259ff 100644 --- a/pkgs/by-name/sp/spice-protocol/package.nix +++ b/pkgs/by-name/sp/spice-protocol/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { ln -sv ../share/pkgconfig $out/lib/pkgconfig ''; - meta = with lib; { + meta = { description = "Protocol headers for the SPICE protocol"; homepage = "https://www.spice-space.org/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sp/spice-up/package.nix b/pkgs/by-name/sp/spice-up/package.nix index 26cc660d25ce..52ae9f68a666 100644 --- a/pkgs/by-name/sp/spice-up/package.nix +++ b/pkgs/by-name/sp/spice-up/package.nix @@ -59,17 +59,17 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Create simple and beautiful presentations"; homepage = "https://github.com/Philip-Scott/Spice-up"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ samdroid-apps xiorcale ]; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; # The COPYING file has GPLv3; some files have GPLv2+ and some have GPLv3+ - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "com.github.philip_scott.spice-up"; }; } diff --git a/pkgs/by-name/sp/spice/package.nix b/pkgs/by-name/sp/spice/package.nix index 28367a3a649f..b4e9b1d41d21 100644 --- a/pkgs/by-name/sp/spice/package.nix +++ b/pkgs/by-name/sp/spice/package.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation rec { ln -s spice-server $out/include/spice ''; - meta = with lib; { + meta = { description = "Complete open source solution for interaction with virtualized desktop devices"; longDescription = '' The Spice project aims to provide a complete open source solution for interaction @@ -100,11 +100,11 @@ stdenv.mkDerivation rec { utilized by a third-party component. ''; homepage = "https://www.spice-space.org/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ atemu ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/sp/spicedb-zed/package.nix b/pkgs/by-name/sp/spicedb-zed/package.nix index cadd00eb9710..25665a2a5857 100644 --- a/pkgs/by-name/sp/spicedb-zed/package.nix +++ b/pkgs/by-name/sp/spicedb-zed/package.nix @@ -34,7 +34,7 @@ buildGoModule rec { --zsh <($out/bin/zed completion zsh) ''; - meta = with lib; { + meta = { changelog = "https://github.com/authzed/zed/releases/tag/${src.tag}"; description = "Command line for managing SpiceDB"; mainProgram = "zed"; @@ -43,8 +43,8 @@ buildGoModule rec { Google Zanzibar. zed is the command line client for SpiceDB. ''; homepage = "https://authzed.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ squat thoughtpolice ]; diff --git a/pkgs/by-name/sp/spicedb/package.nix b/pkgs/by-name/sp/spicedb/package.nix index 7cfa8fe35985..76a1a83a7773 100644 --- a/pkgs/by-name/sp/spicedb/package.nix +++ b/pkgs/by-name/sp/spicedb/package.nix @@ -34,7 +34,7 @@ buildGoModule rec { --zsh <($out/bin/spicedb completion zsh) ''; - meta = with lib; { + meta = { changelog = "https://github.com/authzed/spicedb/releases/tag/${src.tag}"; description = "Open source permission database"; longDescription = '' @@ -42,8 +42,8 @@ buildGoModule rec { Google Zanzibar. ''; homepage = "https://authzed.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ squat thoughtpolice ]; diff --git a/pkgs/by-name/sp/spicy-parser-generator/package.nix b/pkgs/by-name/sp/spicy-parser-generator/package.nix index f1282a3542fc..c1c9196b3a17 100644 --- a/pkgs/by-name/sp/spicy-parser-generator/package.nix +++ b/pkgs/by-name/sp/spicy-parser-generator/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/zeek/spicy"; description = "C++ parser generator for dissecting protocols & files"; longDescription = '' @@ -68,8 +68,8 @@ stdenv.mkDerivation rec { unified language. Think of Spicy as a domain-specific scripting language for all your parsing needs. ''; - license = licenses.bsd3; - maintainers = with maintainers; [ tobim ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ tobim ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sp/spicy/package.nix b/pkgs/by-name/sp/spicy/package.nix index 76db75020481..b6372b2054f8 100644 --- a/pkgs/by-name/sp/spicy/package.nix +++ b/pkgs/by-name/sp/spicy/package.nix @@ -22,14 +22,14 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Nintendo 64 segment assembler"; longDescription = '' An open-source version of the Nintendo64 sdk's mild.exe. Assembles segments into an n64-compatible rom. ''; homepage = "https://github.com/trhodeos/spicy"; - license = licenses.mit; - maintainers = with maintainers; [ _414owen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _414owen ]; }; } diff --git a/pkgs/by-name/sp/spike/package.nix b/pkgs/by-name/sp/spike/package.nix index e6692b628eb8..a540d303a9aa 100644 --- a/pkgs/by-name/sp/spike/package.nix +++ b/pkgs/by-name/sp/spike/package.nix @@ -43,14 +43,14 @@ stdenv.mkDerivation { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "RISC-V ISA Simulator"; homepage = "https://github.com/riscv/riscv-isa-sim"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ blitz ]; + maintainers = with lib.maintainers; [ blitz ]; }; } diff --git a/pkgs/by-name/sp/spin/package.nix b/pkgs/by-name/sp/spin/package.nix index c0952a504d39..0f3b483b3cff 100644 --- a/pkgs/by-name/sp/spin/package.nix +++ b/pkgs/by-name/sp/spin/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { --prefix PATH : $out/bin:${binPath} ''; - meta = with lib; { + meta = { description = "Formal verification tool for distributed software systems"; homepage = "https://spinroot.com/"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub siraben ]; diff --git a/pkgs/by-name/sp/spip/package.nix b/pkgs/by-name/sp/spip/package.nix index 3673254a71f2..f68e627114d3 100644 --- a/pkgs/by-name/sp/spip/package.nix +++ b/pkgs/by-name/sp/spip/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Random forest model for splice prediction in genomics"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/raphaelleman/SPiP"; - maintainers = with maintainers; [ apraga ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ apraga ]; + platforms = lib.platforms.unix; mainProgram = "spip"; }; } diff --git a/pkgs/by-name/sp/spirv-cross/package.nix b/pkgs/by-name/sp/spirv-cross/package.nix index ecc7dd1219fe..afb3bf7411c7 100644 --- a/pkgs/by-name/sp/spirv-cross/package.nix +++ b/pkgs/by-name/sp/spirv-cross/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation (finalAttrs: { --replace '=''${prefix}//' '=/' ''; - meta = with lib; { + meta = { description = "Tool designed for parsing and converting SPIR-V to other shader languages"; homepage = "https://github.com/KhronosGroup/SPIRV-Cross"; changelog = "https://github.com/KhronosGroup/SPIRV-Cross/releases/tag/${finalAttrs.version}"; - platforms = platforms.all; - license = licenses.asl20; - maintainers = with maintainers; [ Flakebi ]; + platforms = lib.platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Flakebi ]; mainProgram = "spirv-cross"; }; }) diff --git a/pkgs/by-name/sp/spirv-headers/package.nix b/pkgs/by-name/sp/spirv-headers/package.nix index 400c8244a344..c6861fa3453f 100644 --- a/pkgs/by-name/sp/spirv-headers/package.nix +++ b/pkgs/by-name/sp/spirv-headers/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Machine-readable components of the Khronos SPIR-V Registry"; homepage = "https://github.com/KhronosGroup/SPIRV-Headers"; - license = licenses.mit; - maintainers = [ maintainers.ralith ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ralith ]; }; }) diff --git a/pkgs/by-name/sp/spirv-llvm-translator/package.nix b/pkgs/by-name/sp/spirv-llvm-translator/package.nix index f6e7a42116d8..ce8f31de261d 100644 --- a/pkgs/by-name/sp/spirv-llvm-translator/package.nix +++ b/pkgs/by-name/sp/spirv-llvm-translator/package.nix @@ -105,13 +105,13 @@ stdenv.mkDerivation { version: pkgs.spirv-llvm-translator.override { llvm = pkgs."llvm_${version}"; } ); - meta = with lib; { + meta = { homepage = "https://github.com/KhronosGroup/SPIRV-LLVM-Translator"; description = "Tool and a library for bi-directional translation between SPIR-V and LLVM IR"; mainProgram = "llvm-spirv"; - license = licenses.ncsa; - platforms = platforms.unix; - maintainers = with maintainers; [ gloaming ]; + license = lib.licenses.ncsa; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ gloaming ]; broken = !(versions ? ${llvmMajor}); }; } diff --git a/pkgs/by-name/sp/spirv-tools/package.nix b/pkgs/by-name/sp/spirv-tools/package.nix index 03b10d0abcd9..0a79caa40efe 100644 --- a/pkgs/by-name/sp/spirv-tools/package.nix +++ b/pkgs/by-name/sp/spirv-tools/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { description = "SPIR-V Tools project provides an API and commands for processing SPIR-V modules"; homepage = "https://github.com/KhronosGroup/SPIRV-Tools"; - license = licenses.asl20; - platforms = with platforms; unix ++ windows; - maintainers = [ maintainers.ralith ]; + license = lib.licenses.asl20; + platforms = with lib.platforms; unix ++ windows; + maintainers = [ lib.maintainers.ralith ]; }; }) diff --git a/pkgs/by-name/sp/spla/package.nix b/pkgs/by-name/sp/spla/package.nix index 936ba7aff806..32b29bd6ff9c 100644 --- a/pkgs/by-name/sp/spla/package.nix +++ b/pkgs/by-name/sp/spla/package.nix @@ -79,10 +79,10 @@ stdenv.mkDerivation rec { --replace-fail "\''${_IMPORT_PREFIX}" "$out" ''; - meta = with lib; { + meta = { description = "Specialized Parallel Linear Algebra, providing distributed GEMM functionality for specific matrix distributions with optional GPU acceleration"; homepage = "https://github.com/eth-cscs/spla"; - license = licenses.bsd3; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/sp/splat/package.nix b/pkgs/by-name/sp/splat/package.nix index 11bb9b3a39aa..d73d02f010e0 100644 --- a/pkgs/by-name/sp/splat/package.nix +++ b/pkgs/by-name/sp/splat/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "RF Signal Propagation, Loss, And Terrain analysis tool for the electromagnetic spectrum between 20 MHz and 20 GHz"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "https://www.qsl.net/kd2bd/splat.html"; - platforms = platforms.x86_64; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/sp/spleen/package.nix b/pkgs/by-name/sp/spleen/package.nix index c2b7afe24f1a..eadf8cfa3791 100644 --- a/pkgs/by-name/sp/spleen/package.nix +++ b/pkgs/by-name/sp/spleen/package.nix @@ -32,10 +32,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monospaced bitmap fonts"; homepage = "https://www.cambus.net/spleen-monospaced-bitmap-fonts"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sp/splix/package.nix b/pkgs/by-name/sp/splix/package.nix index 47f8f2d24c7e..dbf889ce677f 100644 --- a/pkgs/by-name/sp/splix/package.nix +++ b/pkgs/by-name/sp/splix/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { jbigkit ]; - meta = with lib; { + meta = { description = "CUPS drivers for SPL (Samsung Printer Language) printers"; homepage = "http://splix.ap2c.org"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sp/spooftooph/package.nix b/pkgs/by-name/sp/spooftooph/package.nix index 91af880da0be..34f2341b7138 100644 --- a/pkgs/by-name/sp/spooftooph/package.nix +++ b/pkgs/by-name/sp/spooftooph/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/spooftooph"; description = "Automate spoofing or clone Bluetooth device Name, Class, and Address"; mainProgram = "spooftooph"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ d3vil0p3r ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ d3vil0p3r ]; }; }) diff --git a/pkgs/by-name/sp/spooles/package.nix b/pkgs/by-name/sp/spooles/package.nix index 2a810d70d161..d36fd7bd9e60 100644 --- a/pkgs/by-name/sp/spooles/package.nix +++ b/pkgs/by-name/sp/spooles/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ perl ]; - meta = with lib; { + meta = { homepage = "http://www.netlib.org/linalg/spooles/"; description = "Library for solving sparse real and complex linear systems of equations"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sp/spoolman/common.nix b/pkgs/by-name/sp/spoolman/common.nix index 2985fb71551b..a6c8908b81b1 100644 --- a/pkgs/by-name/sp/spoolman/common.nix +++ b/pkgs/by-name/sp/spoolman/common.nix @@ -12,11 +12,11 @@ in hash = "sha256-EVGpwcjEh4u8Vtgu2LypqMqArYLZe7oh1qYhGZpgjh0="; }; - meta = with lib; { + meta = { description = "Keep track of your inventory of 3D-printer filament spools"; homepage = "https://github.com/Donkie/Spoolman"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MayNiklas pinpox ]; diff --git a/pkgs/by-name/sp/spotify-cli-linux/package.nix b/pkgs/by-name/sp/spotify-cli-linux/package.nix index e918631b92a1..a10c8fce1e91 100644 --- a/pkgs/by-name/sp/spotify-cli-linux/package.nix +++ b/pkgs/by-name/sp/spotify-cli-linux/package.nix @@ -31,12 +31,12 @@ python3Packages.buildPythonApplication rec { # upstream has no code tests, but uses its "tests" for linting and formatting checks doCheck = false; - meta = with lib; { + meta = { homepage = "https://pwittchen.github.io/spotify-cli-linux/"; - maintainers = [ maintainers.kmein ]; + maintainers = [ lib.maintainers.kmein ]; description = "Command line interface to Spotify on Linux"; mainProgram = "spotifycli"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sp/spotify-tray/package.nix b/pkgs/by-name/sp/spotify-tray/package.nix index 60c1d1eb8d10..ed4a9cd7c6ec 100644 --- a/pkgs/by-name/sp/spotify-tray/package.nix +++ b/pkgs/by-name/sp/spotify-tray/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/spotify-tray --set GDK_BACKEND x11 ''; - meta = with lib; { + meta = { homepage = "https://github.com/tsmetana/spotify-tray"; description = "Adds a tray icon to the Spotify Linux client application"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "spotify-tray"; }; diff --git a/pkgs/by-name/sp/spotify/package.nix b/pkgs/by-name/sp/spotify/package.nix index f9771e12201f..1a788cf71047 100644 --- a/pkgs/by-name/sp/spotify/package.nix +++ b/pkgs/by-name/sp/spotify/package.nix @@ -12,11 +12,11 @@ let updateScript = ./update.sh; - meta = with lib; { + meta = { homepage = "https://www.spotify.com/"; description = "Play music from the Spotify music service"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/sp/spr/package.nix b/pkgs/by-name/sp/spr/package.nix index 9d32e9c54e48..0bee8f388093 100644 --- a/pkgs/by-name/sp/spr/package.nix +++ b/pkgs/by-name/sp/spr/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Submit pull requests for individual, amendable, rebaseable commits to GitHub"; mainProgram = "spr"; homepage = "https://github.com/spacedentist/spr"; - license = licenses.mit; - maintainers = with maintainers; [ spacedentist ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ spacedentist ]; }; } diff --git a/pkgs/by-name/sp/spring-boot-cli/package.nix b/pkgs/by-name/sp/spring-boot-cli/package.nix index 9533614b7b77..79b57f6abd64 100644 --- a/pkgs/by-name/sp/spring-boot-cli/package.nix +++ b/pkgs/by-name/sp/spring-boot-cli/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = '' CLI which makes it easy to create spring-based applications ''; @@ -67,10 +67,10 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://spring.io/projects/spring-boot"; changelog = "https://github.com/spring-projects/spring-boot/releases/tag/v${finalAttrs.version}"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; mainProgram = "spring"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ moaxcp ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moaxcp ]; }; }) diff --git a/pkgs/by-name/sp/spruce/package.nix b/pkgs/by-name/sp/spruce/package.nix index a04ecd0e2c72..28f9cab2ad26 100644 --- a/pkgs/by-name/sp/spruce/package.nix +++ b/pkgs/by-name/sp/spruce/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "BOSH template merge tool"; mainProgram = "spruce"; homepage = "https://github.com/geofffranks/spruce"; - license = licenses.mit; - maintainers = with maintainers; [ risson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ risson ]; }; } diff --git a/pkgs/by-name/sp/spyre/package.nix b/pkgs/by-name/sp/spyre/package.nix index c2d7786f88f4..77ffb720e92f 100644 --- a/pkgs/by-name/sp/spyre/package.nix +++ b/pkgs/by-name/sp/spyre/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { yara ]; - meta = with lib; { + meta = { description = "YARA-based IOC scanner"; mainProgram = "spyre"; homepage = "https://github.com/spyre-project/spyre"; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/sq/sq/package.nix b/pkgs/by-name/sq/sq/package.nix index fcbb65d9590a..ca1a20c8c75e 100644 --- a/pkgs/by-name/sq/sq/package.nix +++ b/pkgs/by-name/sq/sq/package.nix @@ -48,12 +48,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Swiss army knife for data"; mainProgram = "sq"; homepage = "https://sq.io/"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/by-name/sq/sqlboiler-crdb/package.nix b/pkgs/by-name/sq/sqlboiler-crdb/package.nix index e9707bac12bd..e3fdb1e00d7a 100644 --- a/pkgs/by-name/sq/sqlboiler-crdb/package.nix +++ b/pkgs/by-name/sq/sqlboiler-crdb/package.nix @@ -19,11 +19,11 @@ buildGoModule { doCheck = false; # requires a running testdb - meta = with lib; { + meta = { description = "CockroachDB generator for usage with SQLBoiler"; mainProgram = "sqlboiler-crdb"; homepage = "https://github.com/glerchundi/sqlboiler-crdb/"; - maintainers = with maintainers; [ dgollings ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ dgollings ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sq/sqlcheck/package.nix b/pkgs/by-name/sq/sqlcheck/package.nix index eb392e230012..3a1395895607 100644 --- a/pkgs/by-name/sq/sqlcheck/package.nix +++ b/pkgs/by-name/sq/sqlcheck/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Automatically identify anti-patterns in SQL queries"; mainProgram = "sqlcheck"; - license = licenses.asl20; - platforms = with platforms; unix ++ windows; + license = lib.licenses.asl20; + platforms = with lib.platforms; unix ++ windows; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ h7x4 ]; + maintainers = with lib.maintainers; [ h7x4 ]; }; } diff --git a/pkgs/by-name/sq/sqlcl/package.nix b/pkgs/by-name/sq/sqlcl/package.nix index 7252b94f43ed..3261295e4e12 100644 --- a/pkgs/by-name/sq/sqlcl/package.nix +++ b/pkgs/by-name/sq/sqlcl/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: { --chdir "$out/libexec/bin" ''; - meta = with lib; { + meta = { description = "Oracle's Oracle DB CLI client"; longDescription = '' Oracle SQL Developer Command Line (SQLcl) is a free command line @@ -42,8 +42,8 @@ stdenv.mkDerivation (finalAttrs: { also supporting your previously written SQL*Plus scripts. ''; homepage = "https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ misterio77 ]; + maintainers = with lib.maintainers; [ misterio77 ]; }; }) diff --git a/pkgs/by-name/sq/sqlint/package.nix b/pkgs/by-name/sq/sqlint/package.nix index a78c35ac1ecb..8c0d754ce960 100644 --- a/pkgs/by-name/sq/sqlint/package.nix +++ b/pkgs/by-name/sq/sqlint/package.nix @@ -12,15 +12,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "sqlint"; - meta = with lib; { + meta = { description = "Simple SQL linter"; homepage = "https://github.com/purcell/sqlint"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ariutta nicknovitski purcell ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sq/sqlite-vec/package.nix b/pkgs/by-name/sq/sqlite-vec/package.nix index b2e465096dcd..97817b03cc21 100644 --- a/pkgs/by-name/sq/sqlite-vec/package.nix +++ b/pkgs/by-name/sq/sqlite-vec/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Vector search SQLite extension that runs anywhere"; homepage = "https://github.com/asg017/sqlite-vec"; changelog = "https://github.com/asg017/sqlite-vec/releases/tag/${finalAttrs.src.rev}"; - license = licenses.mit; - maintainers = [ maintainers.anmonteiro ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.anmonteiro ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sq/sqlite-vss/package.nix b/pkgs/by-name/sq/sqlite-vss/package.nix index 7c466c1af7d9..efb677e4fe0d 100644 --- a/pkgs/by-name/sq/sqlite-vss/package.nix +++ b/pkgs/by-name/sq/sqlite-vss/package.nix @@ -47,14 +47,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { # Low maintenance mode, doesn't support up-to-date faiss # https://github.com/NixOS/nixpkgs/pull/330191#issuecomment-2252965866 broken = lib.versionAtLeast faiss.version "1.8.0"; description = "SQLite extension for efficient vector search based on Faiss"; homepage = "https://github.com/asg017/sqlite-vss"; changelog = "https://github.com/asg017/sqlite-vss/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sq/sqlite-web/package.nix b/pkgs/by-name/sq/sqlite-web/package.nix index eaf4e3a0ea4d..f8a8dd43f838 100644 --- a/pkgs/by-name/sq/sqlite-web/package.nix +++ b/pkgs/by-name/sq/sqlite-web/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "sqlite_web" ]; - meta = with lib; { + meta = { description = "Web-based SQLite database browser"; mainProgram = "sqlite_web"; homepage = "https://github.com/coleifer/sqlite-web"; - license = licenses.mit; - maintainers = [ maintainers.costrouc ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/by-name/sq/sqlite_orm/package.nix b/pkgs/by-name/sq/sqlite_orm/package.nix index 2c5151d9f7f5..0d77b9fb7148 100644 --- a/pkgs/by-name/sq/sqlite_orm/package.nix +++ b/pkgs/by-name/sq/sqlite_orm/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = with lib; { + meta = { description = "Light header only SQLite ORM"; homepage = "https://sqliteorm.com/"; - license = licenses.agpl3Only; # MIT license is commercial - maintainers = with maintainers; [ ambroisie ]; - platforms = platforms.all; + license = lib.licenses.agpl3Only; # MIT license is commercial + maintainers = with lib.maintainers; [ ambroisie ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/sq/sqlitecpp/package.nix b/pkgs/by-name/sq/sqlitecpp/package.nix index acc141ffb42b..d571eabf5609 100644 --- a/pkgs/by-name/sq/sqlitecpp/package.nix +++ b/pkgs/by-name/sq/sqlitecpp/package.nix @@ -32,14 +32,14 @@ stdenv.mkDerivation (finalAttrs: { "-DSQLITECPP_BUILD_TESTS=ON" ]; - meta = with lib; { + meta = { homepage = "https://srombauts.github.io/SQLiteCpp/"; description = "C++ SQLite3 wrapper"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ - maintainers.jbedo - maintainers.doronbehar + lib.maintainers.jbedo + lib.maintainers.doronbehar ]; }; }) diff --git a/pkgs/by-name/sq/sqls/package.nix b/pkgs/by-name/sq/sqls/package.nix index 473beadb4be0..13d3e55ad6cc 100644 --- a/pkgs/by-name/sq/sqls/package.nix +++ b/pkgs/by-name/sq/sqls/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/sqls-server/sqls"; description = "SQL language server written in Go"; mainProgram = "sqls"; - license = licenses.mit; - maintainers = with maintainers; [ vinnymeller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vinnymeller ]; }; } diff --git a/pkgs/by-name/sq/sqlx-cli/package.nix b/pkgs/by-name/sq/sqlx-cli/package.nix index 52c3e1f2ca5b..919787131d9d 100644 --- a/pkgs/by-name/sq/sqlx-cli/package.nix +++ b/pkgs/by-name/sq/sqlx-cli/package.nix @@ -64,11 +64,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "CLI for managing databases, migrations, and enabling offline mode with `sqlx::query!()` and friends"; homepage = "https://github.com/launchbadge/sqlx"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ greizgh xrelkd fd diff --git a/pkgs/by-name/sq/sqsh/package.nix b/pkgs/by-name/sq/sqsh/package.nix index 564d554cbed5..3844af614d31 100644 --- a/pkgs/by-name/sq/sqsh/package.nix +++ b/pkgs/by-name/sq/sqsh/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { patchFlags = [ "-p0" ]; - meta = with lib; { + meta = { description = "Command line tool for querying Sybase/MSSQL databases"; mainProgram = "sqsh"; longDescription = '' @@ -57,8 +57,8 @@ stdenv.mkDerivation rec { it is intended as a replacement for the venerable 'isql' program supplied by Sybase. ''; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://sourceforge.net/projects/sqsh/"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sq/squashfs-tools-ng/package.nix b/pkgs/by-name/sq/squashfs-tools-ng/package.nix index 5e8625f3f535..ec03bb270700 100644 --- a/pkgs/by-name/sq/squashfs-tools-ng/package.nix +++ b/pkgs/by-name/sq/squashfs-tools-ng/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/AgentD/squashfs-tools-ng"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sq/squashfsTools/package.nix b/pkgs/by-name/sq/squashfsTools/package.nix index 5039d9079bcc..cf7ce417b987 100644 --- a/pkgs/by-name/sq/squashfsTools/package.nix +++ b/pkgs/by-name/sq/squashfsTools/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { nixos-iso-boots-and-verifies = nixosTests.boot.biosCdrom; }; - meta = with lib; { + meta = { homepage = "https://github.com/plougher/squashfs-tools"; description = "Tool for creating and unpacking squashfs filesystems"; - platforms = platforms.unix; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ruuda ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ruuda ]; mainProgram = "mksquashfs"; }; } diff --git a/pkgs/by-name/sq/squeekboard/package.nix b/pkgs/by-name/sq/squeekboard/package.nix index 8f02879d91a5..0b1bda31391c 100644 --- a/pkgs/by-name/sq/squeekboard/package.nix +++ b/pkgs/by-name/sq/squeekboard/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { passthru.tests.phosh = nixosTests.phosh; - meta = with lib; { + meta = { description = "Virtual keyboard supporting Wayland"; homepage = "https://gitlab.gnome.org/World/Phosh/squeekboard"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ artturin ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ artturin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sq/squeezelite/package.nix b/pkgs/by-name/sq/squeezelite/package.nix index 08d036e30081..7914973fba8e 100644 --- a/pkgs/by-name/sq/squeezelite/package.nix +++ b/pkgs/by-name/sq/squeezelite/package.nix @@ -104,13 +104,16 @@ stdenv.mkDerivation { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Lightweight headless squeezebox client emulator"; homepage = "https://github.com/ralph-irving/squeezelite"; - license = with licenses; [ gpl3Plus ] ++ optional dsdSupport bsd2; + license = with lib.licenses; [ gpl3Plus ] ++ optional dsdSupport bsd2; mainProgram = binName; - maintainers = with maintainers; [ adamcstephens ]; + maintainers = with lib.maintainers; [ adamcstephens ]; platforms = - if (audioBackend == "pulse") then platforms.linux else platforms.linux ++ platforms.darwin; + if (audioBackend == "pulse") then + lib.platforms.linux + else + lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/sq/squid/package.nix b/pkgs/by-name/sq/squid/package.nix index ed953ff47fbf..f91683a9229d 100644 --- a/pkgs/by-name/sq/squid/package.nix +++ b/pkgs/by-name/sq/squid/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.squid = nixosTests.squid; - meta = with lib; { + meta = { description = "Caching proxy for the Web supporting HTTP, HTTPS, FTP, and more"; homepage = "http://www.squid-cache.org"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ raskin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; # In the past, it has been brought up that Squid had many security vulnerabilities # (see https://megamansec.github.io/Squid-Security-Audit/). As of version 7.0, # all of them have been solved, as tracked in their GitHub Security page: diff --git a/pkgs/by-name/sq/squirreldisk/package.nix b/pkgs/by-name/sq/squirreldisk/package.nix index 3624e7e84cb1..fe0811878726 100644 --- a/pkgs/by-name/sq/squirreldisk/package.nix +++ b/pkgs/by-name/sq/squirreldisk/package.nix @@ -100,13 +100,13 @@ rustPlatform.buildRustPackage rec { makeWrapper "$out/Applications/SquirrelDisk.app/Contents/MacOS/SquirrelDisk" "$out/bin/squirrel-disk" ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Cross-platform disk usage analysis tool"; homepage = "https://www.squirreldisk.com/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ peret ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ peret ]; mainProgram = "squirrel-disk"; }; } diff --git a/pkgs/by-name/sr/sr2t/package.nix b/pkgs/by-name/sr/sr2t/package.nix index e49303258a16..6d270415f509 100644 --- a/pkgs/by-name/sr/sr2t/package.nix +++ b/pkgs/by-name/sr/sr2t/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "sr2t" ]; - meta = with lib; { + meta = { description = "Tool to convert scanning reports to a tabular format"; homepage = "https://gitlab.com/0bs1d1an/sr2t"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "sr2t"; }; } diff --git a/pkgs/by-name/sr/srain/package.nix b/pkgs/by-name/sr/srain/package.nix index 3ed7dea7163b..97ea8bd6eb02 100644 --- a/pkgs/by-name/sr/srain/package.nix +++ b/pkgs/by-name/sr/srain/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "Modern IRC client written in GTK"; mainProgram = "srain"; homepage = "https://srain.silverrainz.me"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; }; } diff --git a/pkgs/by-name/sr/srandrd/package.nix b/pkgs/by-name/sr/srandrd/package.nix index 28f2136486af..1a8e2145becf 100644 --- a/pkgs/by-name/sr/srandrd/package.nix +++ b/pkgs/by-name/sr/srandrd/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jceb/srandrd"; description = "Simple randr daemon"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.utdemir ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.utdemir ]; mainProgram = "srandrd"; }; diff --git a/pkgs/by-name/sr/sratom/package.nix b/pkgs/by-name/sr/sratom/package.nix index b55a15c1785a..72e707f5ce34 100644 --- a/pkgs/by-name/sr/sratom/package.nix +++ b/pkgs/by-name/sr/sratom/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { homepage = "https://drobilla.net/software/sratom"; description = "Library for serialising LV2 atoms to/from RDF"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sr/srb2/package.nix b/pkgs/by-name/sr/srb2/package.nix index 855ad6be86bb..92989db0bccf 100644 --- a/pkgs/by-name/sr/srb2/package.nix +++ b/pkgs/by-name/sr/srb2/package.nix @@ -107,12 +107,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Sonic Robo Blast 2 is a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy"; homepage = "https://www.srb2.org/"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ zeratax donovanglover ]; diff --git a/pkgs/by-name/sr/srb2kart/package.nix b/pkgs/by-name/sr/srb2kart/package.nix index 42e00c935189..8015e5c39b21 100644 --- a/pkgs/by-name/sr/srb2kart/package.nix +++ b/pkgs/by-name/sr/srb2kart/package.nix @@ -88,12 +88,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Classic styled kart racer"; homepage = "https://mb.srb2.org/threads/srb2kart.25868/"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ donovanglover ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "srb2kart"; }; }) diff --git a/pkgs/by-name/sr/src-cli/package.nix b/pkgs/by-name/sr/src-cli/package.nix index 4f4d59175a2b..716a8d0b5033 100644 --- a/pkgs/by-name/sr/src-cli/package.nix +++ b/pkgs/by-name/sr/src-cli/package.nix @@ -38,12 +38,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Sourcegraph CLI"; homepage = "https://github.com/sourcegraph/src-cli"; changelog = "https://github.com/sourcegraph/src-cli/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ keegancsmith ]; mainProgram = "src"; diff --git a/pkgs/by-name/sr/srecord/package.nix b/pkgs/by-name/sr/srecord/package.nix index 153c8003d257..f6d9ea8bb236 100644 --- a/pkgs/by-name/sr/srecord/package.nix +++ b/pkgs/by-name/sr/srecord/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { configureFlags = lib.optional (libgcrypt == null) "--without-gcrypt"; - meta = with lib; { + meta = { description = "Collection of powerful tools for manipulating EPROM load files"; homepage = "https://srecord.sourceforge.net/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.bjornfor ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sr/sregex/package.nix b/pkgs/by-name/sr/sregex/package.nix index 8472743e5336..3f1f414528c6 100644 --- a/pkgs/by-name/sr/sregex/package.nix +++ b/pkgs/by-name/sr/sregex/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { "CC:=$(CC)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/openresty/sregex"; description = "Non-backtracking NFA/DFA-based Perl-compatible regex engine matching on large data streams"; mainProgram = "sregex-cli"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sr/srgn/package.nix b/pkgs/by-name/sr/srgn/package.nix index dc85c213101e..84b285d724c9 100644 --- a/pkgs/by-name/sr/srgn/package.nix +++ b/pkgs/by-name/sr/srgn/package.nix @@ -26,10 +26,10 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Code surgeon for precise text and code transplantation"; - license = licenses.mit; - maintainers = with maintainers; [ magistau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ magistau ]; mainProgram = "srgn"; homepage = "https://github.com/${src.owner}/${src.repo}/"; downloadPage = "https://github.com/${src.owner}/${src.repo}/releases/tag/${src.rev}"; diff --git a/pkgs/by-name/sr/srm/package.nix b/pkgs/by-name/sr/srm/package.nix index 05738dc6b7bd..859b3993af30 100644 --- a/pkgs/by-name/sr/srm/package.nix +++ b/pkgs/by-name/sr/srm/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { patches = [ ./fix-output-in-verbose-mode.patch ]; nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Delete files securely"; longDescription = '' srm (secure rm) is a command-line compatible rm(1) which @@ -27,7 +27,7 @@ stdenv.mkDerivation { of deleted information, even if the machine is compromised. ''; homepage = "https://srm.sourceforge.net"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sr/srsran/package.nix b/pkgs/by-name/sr/srsran/package.nix index 98d930b6c24d..7d2193c219f2 100644 --- a/pkgs/by-name/sr/srsran/package.nix +++ b/pkgs/by-name/sr/srsran/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { rm $out/lib/*.a ''; - meta = with lib; { + meta = { homepage = "https://www.srslte.com/"; description = "Open-source 4G and 5G software radio suite"; - license = licenses.agpl3Plus; - platforms = with platforms; linux; - maintainers = with maintainers; [ hexagonal-sun ]; + license = lib.licenses.agpl3Plus; + platforms = with lib.platforms; linux; + maintainers = with lib.maintainers; [ hexagonal-sun ]; }; } diff --git a/pkgs/by-name/sr/srt-live-server/package.nix b/pkgs/by-name/sr/srt-live-server/package.nix index ddf5afeedcde..bd12eb63c5e1 100644 --- a/pkgs/by-name/sr/srt-live-server/package.nix +++ b/pkgs/by-name/sr/srt-live-server/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Open-source low latency livestreaming server, based on Secure Reliable Tranport (SRT)"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Edward-Wu/srt-live-server"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sr/srt-to-vtt-cl/package.nix b/pkgs/by-name/sr/srt-to-vtt-cl/package.nix index 6a9f2feda465..805e2b0d0071 100644 --- a/pkgs/by-name/sr/srt-to-vtt-cl/package.nix +++ b/pkgs/by-name/sr/srt-to-vtt-cl/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { cp bin/srt-vtt $out/bin ''; - meta = with lib; { + meta = { description = "Convert SRT files to VTT"; - license = licenses.mit; - maintainers = with maintainers; [ ericdallo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ericdallo ]; homepage = "https://github.com/nwoltman/srt-to-vtt-cl"; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "srt-vtt"; }; } diff --git a/pkgs/by-name/sr/srt/package.nix b/pkgs/by-name/sr/srt/package.nix index f406fa154543..0cedd00ee71e 100644 --- a/pkgs/by-name/sr/srt/package.nix +++ b/pkgs/by-name/sr/srt/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { "-UCMAKE_INSTALL_LIBDIR" ]; - meta = with lib; { + meta = { description = "Secure, Reliable, Transport"; homepage = "https://github.com/Haivision/srt"; - license = licenses.mpl20; - maintainers = with maintainers; [ nh2 ]; - platforms = platforms.all; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nh2 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sr/srtp/package.nix b/pkgs/by-name/sr/srtp/package.nix index 5ca74ed721c1..d402242e5200 100644 --- a/pkgs/by-name/sr/srtp/package.nix +++ b/pkgs/by-name/sr/srtp/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/cisco/libsrtp"; description = "Secure RTP (SRTP) Reference Implementation"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/by-name/sr/srtrelay/package.nix b/pkgs/by-name/sr/srtrelay/package.nix index 0c0a7c324093..9e547a1b1dde 100644 --- a/pkgs/by-name/sr/srtrelay/package.nix +++ b/pkgs/by-name/sr/srtrelay/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { buildInputs = [ srt ]; nativeCheckInputs = [ ffmpeg ]; - meta = with lib; { + meta = { description = "Streaming-Relay for the SRT-protocol"; homepage = "https://github.com/voc/srtrelay"; - license = licenses.mit; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz ]; mainProgram = "srtrelay"; }; } diff --git a/pkgs/by-name/ss/ssb-patchwork/package.nix b/pkgs/by-name/ss/ssb-patchwork/package.nix index 806af21e4f07..c907e29b3ed9 100644 --- a/pkgs/by-name/ss/ssb-patchwork/package.nix +++ b/pkgs/by-name/ss/ssb-patchwork/package.nix @@ -45,14 +45,14 @@ symlinkJoin { cp ${desktopItem}/share/applications/* $out/share/applications/ ''; - meta = with lib; { + meta = { description = "Decentralized messaging and sharing app built on top of Secure Scuttlebutt (SSB)"; longDescription = '' sea-slang for gossip - a scuttlebutt is basically a watercooler on a ship. ''; homepage = "https://www.scuttlebutt.nz/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ asymmetric picnoir cyplo diff --git a/pkgs/by-name/ss/ssdfs-utils/package.nix b/pkgs/by-name/ss/ssdfs-utils/package.nix index 50481524faf8..4ad02dbf5829 100644 --- a/pkgs/by-name/ss/ssdfs-utils/package.nix +++ b/pkgs/by-name/ss/ssdfs-utils/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "SSDFS file system utilities"; homepage = "https://github.com/dubeyko/ssdfs-tools"; - license = licenses.bsd3Clear; - maintainers = with maintainers; [ ners ]; - platforms = platforms.linux; + license = lib.licenses.bsd3Clear; + maintainers = with lib.maintainers; [ ners ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ss/ssh-agents/package.nix b/pkgs/by-name/ss/ssh-agents/package.nix index 9dda59d4bb0c..fd4be0e82cc7 100644 --- a/pkgs/by-name/ss/ssh-agents/package.nix +++ b/pkgs/by-name/ss/ssh-agents/package.nix @@ -17,7 +17,7 @@ stdenvNoCC.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Spawn and maintain multiple ssh-agents across terminals"; longDescription = '' The SSH agent is usually spawned by running eval $(ssh-agent), however this @@ -37,9 +37,9 @@ stdenvNoCC.mkDerivation rec { keys to include in the agent. ''; homepage = "https://github.com/kalbasit/ssh-agents"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; + platforms = lib.platforms.unix; mainProgram = "ssh-agents"; }; } diff --git a/pkgs/by-name/ss/ssh-chat/package.nix b/pkgs/by-name/ss/ssh-chat/package.nix index 510cb510839a..9c37deded195 100644 --- a/pkgs/by-name/ss/ssh-chat/package.nix +++ b/pkgs/by-name/ss/ssh-chat/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-QTUBorUAsWDOpNP3E/Y6ht7ZXZViWBbrMPtLl7lHtgE="; - meta = with lib; { + meta = { description = "Chat over SSH"; mainProgram = "ssh-chat"; homepage = "https://github.com/shazow/ssh-chat"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ss/ssh-ident/package.nix b/pkgs/by-name/ss/ssh-ident/package.nix index 9fad4154a6bc..4234e8da4e67 100644 --- a/pkgs/by-name/ss/ssh-ident/package.nix +++ b/pkgs/by-name/ss/ssh-ident/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation { install -m 755 ssh-ident $out/bin/ssh-ident ''; - meta = with lib; { + meta = { homepage = "https://github.com/ccontavalli/ssh-ident"; description = "Start and use ssh-agent and load identities as necessary"; - license = licenses.bsd2; - maintainers = with maintainers; [ telotortium ]; - platforms = with platforms; unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ telotortium ]; + platforms = with lib.platforms; unix; mainProgram = "ssh-ident"; }; } diff --git a/pkgs/by-name/ss/ssh-import-id/package.nix b/pkgs/by-name/ss/ssh-import-id/package.nix index b371c8792990..282f4a36a875 100644 --- a/pkgs/by-name/ss/ssh-import-id/package.nix +++ b/pkgs/by-name/ss/ssh-import-id/package.nix @@ -49,15 +49,15 @@ python3Packages.buildPythonApplication rec { "$out/bin" ]; - meta = with lib; { + meta = { description = "Retrieves an SSH public key and installs it locally"; homepage = "https://launchpad.net/ssh-import-id"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mkg20001 viraptor ]; mainProgram = "ssh-import-id"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ss/ssh-key-confirmer/package.nix b/pkgs/by-name/ss/ssh-key-confirmer/package.nix index 7a9add923ca0..7b9293b41b54 100644 --- a/pkgs/by-name/ss/ssh-key-confirmer/package.nix +++ b/pkgs/by-name/ss/ssh-key-confirmer/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Test ssh login key acceptance without having the private key"; homepage = "https://github.com/benjojo/ssh-key-confirmer"; - license = licenses.mit; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxzi ]; mainProgram = "ssh-key-confirmer"; }; } diff --git a/pkgs/by-name/ss/ssh-openpgp-auth/generic.nix b/pkgs/by-name/ss/ssh-openpgp-auth/generic.nix index c1f8b8473b80..6b6aeacbbf05 100644 --- a/pkgs/by-name/ss/ssh-openpgp-auth/generic.nix +++ b/pkgs/by-name/ss/ssh-openpgp-auth/generic.nix @@ -69,14 +69,14 @@ rustPlatform.buildRustPackage { openssh ]; - meta = with lib; { + meta = { description = metaDescription; homepage = "https://codeberg.org/wiktor/ssh-openpgp-auth"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ doronbehar ]; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = pname; }; } diff --git a/pkgs/by-name/ss/ssh-to-age/package.nix b/pkgs/by-name/ss/ssh-to-age/package.nix index c687ed3e3cbd..e8d135a3dfa6 100644 --- a/pkgs/by-name/ss/ssh-to-age/package.nix +++ b/pkgs/by-name/ss/ssh-to-age/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "Convert ssh private keys in ed25519 format to age keys"; homepage = "https://github.com/Mic92/ssh-to-age"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; mainProgram = "ssh-to-age"; }; } diff --git a/pkgs/by-name/ss/ssh-to-pgp/package.nix b/pkgs/by-name/ss/ssh-to-pgp/package.nix index 2d7d8f3db54e..2250130bbb9f 100644 --- a/pkgs/by-name/ss/ssh-to-pgp/package.nix +++ b/pkgs/by-name/ss/ssh-to-pgp/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "Convert ssh private keys to PGP"; mainProgram = "ssh-to-pgp"; homepage = "https://github.com/Mic92/ssh-to-pgp"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/by-name/ss/ssh-tools/package.nix b/pkgs/by-name/ss/ssh-tools/package.nix index dc83804f6d71..b6e7ad60e011 100644 --- a/pkgs/by-name/ss/ssh-tools/package.nix +++ b/pkgs/by-name/ss/ssh-tools/package.nix @@ -34,10 +34,10 @@ buildGoModule rec { installManPage man/*.1 ''; - meta = with lib; { + meta = { description = "Making SSH more convenient"; homepage = "https://codeberg.org/vaporup/ssh-tools"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/ss/ssh-tpm-agent/package.nix b/pkgs/by-name/ss/ssh-tpm-agent/package.nix index 61b24993e3b6..cf375870d36a 100644 --- a/pkgs/by-name/ss/ssh-tpm-agent/package.nix +++ b/pkgs/by-name/ss/ssh-tpm-agent/package.nix @@ -39,12 +39,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "SSH agent with support for TPM sealed keys for public key authentication"; homepage = "https://github.com/Foxboron/ssh-tpm-agent"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ sgo ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sgo ]; mainProgram = "ssh-tpm-agent"; }; } diff --git a/pkgs/by-name/ss/sshchecker/package.nix b/pkgs/by-name/ss/sshchecker/package.nix index 58a82acd63ee..ae9e2dfbef93 100644 --- a/pkgs/by-name/ss/sshchecker/package.nix +++ b/pkgs/by-name/ss/sshchecker/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = "sha256-U5nZbo2iSKP3BnxT4lkR75QutcxZB5YLzXxT045TDaY="; - meta = with lib; { + meta = { description = "Dedicated SSH brute-forcing tool"; mainProgram = "sshchecker"; longDescription = '' @@ -25,7 +25,7 @@ buildGoModule rec { SSH login on the giving IP list. ''; homepage = "https://github.com/lazytools/sshchecker"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ss/sshed/package.nix b/pkgs/by-name/ss/sshed/package.nix index 4ab40cc6cad9..4d0b4992f078 100644 --- a/pkgs/by-name/ss/sshed/package.nix +++ b/pkgs/by-name/ss/sshed/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/cmd $out/bin/sshed ''; - meta = with lib; { + meta = { description = "ssh config editor and bookmarks manager"; homepage = "https://github.com/trntv/sshed"; - license = licenses.asl20; - maintainers = with maintainers; [ ocfox ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ocfox ]; mainProgram = "sshed"; }; } diff --git a/pkgs/by-name/ss/sshfs-fuse/common.nix b/pkgs/by-name/ss/sshfs-fuse/common.nix index de9cee568a63..404d9c5e3768 100644 --- a/pkgs/by-name/ss/sshfs-fuse/common.nix +++ b/pkgs/by-name/ss/sshfs-fuse/common.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation rec { ${python3Packages.python.interpreter} -m pytest test/ ''; - meta = with lib; { + meta = { inherit platforms; description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH"; longDescription = macfuse-stubs.warning; homepage = "https://github.com/libfuse/sshfs"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "sshfs"; maintainers = [ ]; }; diff --git a/pkgs/by-name/ss/sshguard/package.nix b/pkgs/by-name/ss/sshguard/package.nix index 62f6f23f0505..8c0a62b123d2 100644 --- a/pkgs/by-name/ss/sshguard/package.nix +++ b/pkgs/by-name/ss/sshguard/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--sysconfdir=/etc" ]; - meta = with lib; { + meta = { description = "Protects hosts from brute-force attacks"; mainProgram = "sshguard"; longDescription = '' @@ -34,8 +34,8 @@ stdenv.mkDerivation rec { If an attack, such as several login failures within a few seconds, is detected, the offending IP is blocked. ''; homepage = "https://sshguard.net"; - license = licenses.bsd3; - maintainers = with maintainers; [ sargon ]; - platforms = with platforms; linux ++ darwin ++ freebsd ++ netbsd ++ openbsd; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sargon ]; + platforms = with lib.platforms; linux ++ darwin ++ freebsd ++ netbsd ++ openbsd; }; } diff --git a/pkgs/by-name/ss/sshlatex/package.nix b/pkgs/by-name/ss/sshlatex/package.nix index 2b5da221ea76..a7683ab90835 100644 --- a/pkgs/by-name/ss/sshlatex/package.nix +++ b/pkgs/by-name/ss/sshlatex/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/sshlatex --prefix PATH : "${binPath}" ''; - meta = with lib; { + meta = { description = "Collection of hacks to efficiently run LaTeX via ssh"; longDescription = '' sshlatex is a tool which uploads LaTeX source files to a remote, runs @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/iblech/sshlatex"; license = lib.licenses.gpl3Plus; # actually dual-licensed gpl3Plus | lppl13cplus platforms = lib.platforms.all; - maintainers = [ maintainers.iblech ]; + maintainers = [ lib.maintainers.iblech ]; mainProgram = "sshlatex"; }; } diff --git a/pkgs/by-name/ss/sshoogr/package.nix b/pkgs/by-name/ss/sshoogr/package.nix index a10bc9b21633..1e08fd389ddc 100644 --- a/pkgs/by-name/ss/sshoogr/package.nix +++ b/pkgs/by-name/ss/sshoogr/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { --prefix JAVA_HOME : ${jdk} ''; - meta = with lib; { + meta = { description = '' A Groovy-based DSL for working with remote SSH servers ''; @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { simple and concise way. ''; homepage = "https://github.com/aestasit/sshoogr"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ moaxcp ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moaxcp ]; }; } diff --git a/pkgs/by-name/ss/sshpass/package.nix b/pkgs/by-name/ss/sshpass/package.nix index 11ff5b8cd9ff..dcb0a5c884b1 100644 --- a/pkgs/by-name/ss/sshpass/package.nix +++ b/pkgs/by-name/ss/sshpass/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-rREGwgPLtWGFyjutjGzK/KO0BkaWGU2oefgcjXvf7to="; }; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/sshpass/"; description = "Non-interactive ssh password auth"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.madjar ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.madjar ]; + platforms = lib.platforms.unix; mainProgram = "sshpass"; }; } diff --git a/pkgs/by-name/ss/sshping/package.nix b/pkgs/by-name/ss/sshping/package.nix index 0a9eb06350bc..09d6b318a618 100644 --- a/pkgs/by-name/ss/sshping/package.nix +++ b/pkgs/by-name/ss/sshping/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { install -Dm755 bin/sshping $out/bin/sshping ''; - meta = with lib; { + meta = { homepage = "https://github.com/spook/sshping"; description = "Measure character-echo latency and bandwidth for an interactive ssh session"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ jqueiroz ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jqueiroz ]; mainProgram = "sshping"; }; } diff --git a/pkgs/by-name/ss/sshportal/package.nix b/pkgs/by-name/ss/sshportal/package.nix index 850a7739eb66..2b3f2f1feec8 100644 --- a/pkgs/by-name/ss/sshportal/package.nix +++ b/pkgs/by-name/ss/sshportal/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { vendorHash = "sha256-4dMZwkLHS14OGQVPq5VaT/aEpHEJ/4b2P6q3/WiDicM="; - meta = with lib; { + meta = { description = "Simple, fun and transparent SSH (and telnet) bastion server"; homepage = "https://manfred.life/sshportal"; - license = licenses.asl20; - maintainers = with maintainers; [ zaninime ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zaninime ]; mainProgram = "sshportal"; }; } diff --git a/pkgs/by-name/ss/ssimulacra2/package.nix b/pkgs/by-name/ss/ssimulacra2/package.nix index c06e6308c273..7c40ee7d485e 100644 --- a/pkgs/by-name/ss/ssimulacra2/package.nix +++ b/pkgs/by-name/ss/ssimulacra2/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/cloudinary/ssimulacra2"; - maintainers = [ maintainers.viraptor ]; - license = licenses.bsd3; + maintainers = [ lib.maintainers.viraptor ]; + license = lib.licenses.bsd3; description = "Perceptual image comparison tool"; }; }) diff --git a/pkgs/by-name/ss/ssl-cert-check/package.nix b/pkgs/by-name/ss/ssl-cert-check/package.nix index 28ac331872ce..f7c9b53b7ac1 100644 --- a/pkgs/by-name/ss/ssl-cert-check/package.nix +++ b/pkgs/by-name/ss/ssl-cert-check/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { --set PATH "${lib.makeBinPath buildInputs}" ''; - meta = with lib; { + meta = { description = "Bourne shell script that can be used to report on expiring SSL certificates"; mainProgram = "ssl-cert-check"; homepage = "https://github.com/Matty9191/ssl-cert-check"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ryantm ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ryantm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ss/ssl-proxy/package.nix b/pkgs/by-name/ss/ssl-proxy/package.nix index 302ad404127c..0177143881ed 100644 --- a/pkgs/by-name/ss/ssl-proxy/package.nix +++ b/pkgs/by-name/ss/ssl-proxy/package.nix @@ -19,7 +19,7 @@ buildGoModule { checkTarget = "test"; - meta = with lib; { + meta = { homepage = "https://github.com/suyashkumar/ssl-proxy"; description = "Simple single-command SSL reverse proxy with autogenerated certificates (LetsEncrypt, self-signed)"; longDescription = '' @@ -27,9 +27,9 @@ buildGoModule { notebook or your team jenkins instance. ssl-proxy autogenerates SSL certs and proxies HTTPS traffic to an existing HTTP server in a single command. ''; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "ssl-proxy"; - maintainers = [ maintainers.konst-aa ]; - platforms = platforms.linux ++ platforms.darwin ++ platforms.windows; + maintainers = [ lib.maintainers.konst-aa ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.windows; }; } diff --git a/pkgs/by-name/ss/ssldump/package.nix b/pkgs/by-name/ss/ssldump/package.nix index 179895dda9e9..50e44a9c7011 100644 --- a/pkgs/by-name/ss/ssldump/package.nix +++ b/pkgs/by-name/ss/ssldump/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation { openssl ]; - meta = with lib; { + meta = { description = "SSLv3/TLS network protocol analyzer"; homepage = "https://ssldump.sourceforge.net"; license = with lib.licenses; [ bsdOriginal bsdOriginalShortened ]; - maintainers = with maintainers; [ aycanirican ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ aycanirican ]; + platforms = lib.platforms.unix; mainProgram = "ssldump"; }; } diff --git a/pkgs/by-name/ss/sslh/package.nix b/pkgs/by-name/ss/sslh/package.nix index 7ab12dfa5357..9ad8fcd9f46d 100644 --- a/pkgs/by-name/ss/sslh/package.nix +++ b/pkgs/by-name/ss/sslh/package.nix @@ -56,14 +56,14 @@ stdenv.mkDerivation rec { inherit (nixosTests) sslh; }; - meta = with lib; { + meta = { description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.rutschle.net/tech/sslh/README.html"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ koral fpletz ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ss/sslmate-agent/package.nix b/pkgs/by-name/ss/sslmate-agent/package.nix index f9001d176650..52226ca896d2 100644 --- a/pkgs/by-name/ss/sslmate-agent/package.nix +++ b/pkgs/by-name/ss/sslmate-agent/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Daemon for managing SSL/TLS certificates on a server"; homepage = "https://sslmate.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ss/sslmate/package.nix b/pkgs/by-name/ss/sslmate/package.nix index d6640e9e7234..122983ca725f 100644 --- a/pkgs/by-name/ss/sslmate/package.nix +++ b/pkgs/by-name/ss/sslmate/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { --prefix PATH : "${openssl.bin}/bin" ''; - meta = with lib; { + meta = { homepage = "https://sslmate.com"; maintainers = [ ]; description = "Easy to buy, deploy, and manage your SSL certs"; mainProgram = "sslmate"; - platforms = platforms.unix; - license = licenses.mit; # X11 + platforms = lib.platforms.unix; + license = lib.licenses.mit; # X11 }; } diff --git a/pkgs/by-name/ss/sslsplit/package.nix b/pkgs/by-name/ss/sslsplit/package.nix index 96101e75313e..b51cb2f51620 100644 --- a/pkgs/by-name/ss/sslsplit/package.nix +++ b/pkgs/by-name/ss/sslsplit/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { "LIBNET_BASE=${lib.getDev libnet}" ]; - meta = with lib; { + meta = { description = "Transparent SSL/TLS interception"; homepage = "https://www.roe.ch/SSLsplit"; - platforms = platforms.all; - maintainers = with maintainers; [ contrun ]; - license = with licenses; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ contrun ]; + license = with lib.licenses; [ bsd2 mit unlicense diff --git a/pkgs/by-name/ss/ssmsh/package.nix b/pkgs/by-name/ss/ssmsh/package.nix index c0d7c1ff74d3..80136c5070a6 100644 --- a/pkgs/by-name/ss/ssmsh/package.nix +++ b/pkgs/by-name/ss/ssmsh/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { version = "Version ${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/bwhaley/ssmsh"; description = "Interactive shell for AWS Parameter Store"; - license = licenses.mit; - maintainers = with maintainers; [ dbirks ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dbirks ]; mainProgram = "ssmsh"; }; } diff --git a/pkgs/by-name/ss/ssocr/package.nix b/pkgs/by-name/ss/ssocr/package.nix index 033704c3aa79..5ed51f3b3483 100644 --- a/pkgs/by-name/ss/ssocr/package.nix +++ b/pkgs/by-name/ss/ssocr/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Seven Segment Optical Character Recognition"; homepage = "https://github.com/auerswal/ssocr"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "ssocr"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ss/ssrc/package.nix b/pkgs/by-name/ss/ssrc/package.nix index 1781cb672ff3..f675e5901bfe 100644 --- a/pkgs/by-name/ss/ssrc/package.nix +++ b/pkgs/by-name/ss/ssrc/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { cp ssrc ssrc_hp $out/bin ''; - meta = with lib; { + meta = { description = "High quality audio sampling rate converter"; longDescription = '' This program converts sampling rates of PCM wav files. This @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { version = version; homepage = "https://shibatch.sourceforge.net/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ss/sss-cli/package.nix b/pkgs/by-name/ss/sss-cli/package.nix index a511c934d2f5..bed07223d94b 100644 --- a/pkgs/by-name/ss/sss-cli/package.nix +++ b/pkgs/by-name/ss/sss-cli/package.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-yutjlaqLf8R8KmdeKF+CHz/s/b6T+GB9bOl2liMBmMQ="; - meta = with lib; { + meta = { homepage = "https://github.com/dsprenkels/sss-cli"; description = "Command line program for secret-sharing strings"; - license = licenses.mit; - maintainers = with maintainers; [ laalsaas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ laalsaas ]; }; } diff --git a/pkgs/by-name/ss/sss_code/package.nix b/pkgs/by-name/ss/sss_code/package.nix index 57ee5a5bf068..edec80a89816 100644 --- a/pkgs/by-name/ss/sss_code/package.nix +++ b/pkgs/by-name/ss/sss_code/package.nix @@ -36,14 +36,14 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Libraries and tools for building screenshots in a high-performance image format"; mainProgram = "sss_code"; homepage = "https://github.com/SergioRibera/sss"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ krovuxdev ]; + maintainers = with lib.maintainers; [ krovuxdev ]; }; } diff --git a/pkgs/by-name/ss/sssnake/package.nix b/pkgs/by-name/ss/sssnake/package.nix index 9c6a24a43aa6..bd126154caf2 100644 --- a/pkgs/by-name/ss/sssnake/package.nix +++ b/pkgs/by-name/ss/sssnake/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Cli snake game that plays itself"; mainProgram = "sssnake"; homepage = "https://github.com/angeljumbo/sssnake"; - license = with licenses; [ mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ quantenzitrone ]; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ quantenzitrone ]; }; } diff --git a/pkgs/by-name/ss/ssss/package.nix b/pkgs/by-name/ss/ssss/package.nix index ad7c7cb69069..1ab48035419f 100644 --- a/pkgs/by-name/ss/ssss/package.nix +++ b/pkgs/by-name/ss/ssss/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { installManPage ssss.1 ''; - meta = with lib; { + meta = { description = "Shamir Secret Sharing Scheme"; homepage = "http://point-at-infinity.org/ssss/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ss/sstp/package.nix b/pkgs/by-name/ss/sstp/package.nix index 5a76d5cf4046..cb13899797cc 100644 --- a/pkgs/by-name/ss/sstp/package.nix +++ b/pkgs/by-name/ss/sstp/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { ppp ]; - meta = with lib; { + meta = { description = "SSTP client for Linux"; homepage = "https://sstp-client.sourceforge.net/"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "sstpc"; }; } diff --git a/pkgs/by-name/ss/ssw/package.nix b/pkgs/by-name/ss/ssw/package.nix index 17376013b34c..5d377c32417b 100644 --- a/pkgs/by-name/ss/ssw/package.nix +++ b/pkgs/by-name/ss/ssw/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ gtk3 ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/ssw/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; description = "GNU Spread Sheet Widget"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/st/sta/package.nix b/pkgs/by-name/st/sta/package.nix index 77f6282e89d9..0474c68a26b1 100644 --- a/pkgs/by-name/st/sta/package.nix +++ b/pkgs/by-name/st/sta/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { runHook postCheck ''; - meta = with lib; { + meta = { description = "Simple statistics from the command line interface (CLI), fast"; longDescription = '' This is a lightweight, fast tool for calculating basic descriptive @@ -48,10 +48,10 @@ stdenv.mkDerivation { in C++, allowing for faster computation of statistics given larger non-trivial data sets. ''; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/simonccarter/sta"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "sta"; }; } diff --git a/pkgs/by-name/st/stabber/package.nix b/pkgs/by-name/st/stabber/package.nix index 5c269a2e8606..1980a6d426f5 100644 --- a/pkgs/by-name/st/stabber/package.nix +++ b/pkgs/by-name/st/stabber/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { libmicrohttpd ]; - meta = with lib; { + meta = { description = "Stubbed XMPP Server"; mainProgram = "stabber"; homepage = "https://github.com/profanity-im/stabber"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ hschaeidt ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ hschaeidt ]; }; } diff --git a/pkgs/by-name/st/stagit/package.nix b/pkgs/by-name/st/stagit/package.nix index b889f0484630..8b186932771a 100644 --- a/pkgs/by-name/st/stagit/package.nix +++ b/pkgs/by-name/st/stagit/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { buildInputs = [ libgit2 ]; - meta = with lib; { + meta = { description = "Git static site generator"; homepage = "https://git.codemadness.org/stagit/file/README.html"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jb55 sikmir ]; diff --git a/pkgs/by-name/st/stalonetray/package.nix b/pkgs/by-name/st/stalonetray/package.nix index f86096c4ba9b..7e1f47db9945 100644 --- a/pkgs/by-name/st/stalonetray/package.nix +++ b/pkgs/by-name/st/stalonetray/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Stand alone tray"; homepage = "https://github.com/kolbusa/stalonetray"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ raskin ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; mainProgram = "stalonetray"; }; } diff --git a/pkgs/by-name/st/stanc/package.nix b/pkgs/by-name/st/stanc/package.nix index a456773dfbc0..7007f0aa5792 100644 --- a/pkgs/by-name/st/stanc/package.nix +++ b/pkgs/by-name/st/stanc/package.nix @@ -29,11 +29,11 @@ ocamlPackages.buildDunePackage rec { cmdliner ]; - meta = with lib; { + meta = { homepage = "https://github.com/stan-dev/stanc3"; description = "Stan compiler and utilities"; - license = licenses.bsd3; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/st/standardnotes/package.nix b/pkgs/by-name/st/standardnotes/package.nix index defcd6b87446..50d9fc34cc42 100644 --- a/pkgs/by-name/st/standardnotes/package.nix +++ b/pkgs/by-name/st/standardnotes/package.nix @@ -78,20 +78,20 @@ stdenv.mkDerivation { passthru.updateScript = callPackage ./update.nix { }; - meta = with lib; { + meta = { description = "Simple and private notes app"; longDescription = '' Standard Notes is a private notes app that features unmatched simplicity, end-to-end encryption, powerful extensions, and open-source applications. ''; homepage = "https://standardnotes.org"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ mgregoire chuangzhu squalus ]; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; platforms = builtins.attrNames srcjson.deb; mainProgram = "standardnotes"; }; diff --git a/pkgs/by-name/st/star-history/package.nix b/pkgs/by-name/st/star-history/package.nix index 733ad0ca3a8e..7f55aed20d30 100644 --- a/pkgs/by-name/st/star-history/package.nix +++ b/pkgs/by-name/st/star-history/package.nix @@ -21,10 +21,10 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Command line program to generate a graph showing number of GitHub stars of a user, org or repo over time"; homepage = "https://github.com/dtolnay/star-history"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; diff --git a/pkgs/by-name/st/star/package.nix b/pkgs/by-name/st/star/package.nix index e5e701b9b496..94775b0de9be 100644 --- a/pkgs/by-name/st/star/package.nix +++ b/pkgs/by-name/st/star/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Spliced Transcripts Alignment to a Reference"; longDescription = '' STAR (Spliced Transcripts Alignment to a Reference) is a fast RNA-seq @@ -64,8 +64,8 @@ stdenv.mkDerivation rec { ''; mainProgram = "STAR"; homepage = "https://github.com/alexdobin/STAR"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.arcadio ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.arcadio ]; }; } diff --git a/pkgs/by-name/st/starcharts/package.nix b/pkgs/by-name/st/starcharts/package.nix index 8647ecd27e76..0f7624470fef 100644 --- a/pkgs/by-name/st/starcharts/package.nix +++ b/pkgs/by-name/st/starcharts/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Plot your repository stars over time"; mainProgram = "starcharts"; homepage = "https://github.com/caarlos0/starcharts"; changelog = "https://github.com/caarlos0/starcharts/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/st/starfetch/package.nix b/pkgs/by-name/st/starfetch/package.nix index bbdd6db4aad8..a59b28da2360 100644 --- a/pkgs/by-name/st/starfetch/package.nix +++ b/pkgs/by-name/st/starfetch/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "CLI star constellations displayer"; homepage = "https://github.com/Haruno19/starfetch"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "starfetch"; }; } diff --git a/pkgs/by-name/st/stargate-libcds/package.nix b/pkgs/by-name/st/stargate-libcds/package.nix index 829a20604c4f..450d1985b2e9 100644 --- a/pkgs/by-name/st/stargate-libcds/package.nix +++ b/pkgs/by-name/st/stargate-libcds/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "C data structure library"; homepage = "https://github.com/stargateaudio/libcds"; maintainers = [ ]; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; }; } diff --git a/pkgs/by-name/st/starry/package.nix b/pkgs/by-name/st/starry/package.nix index 2fb47599e5f0..e477e6c6464b 100644 --- a/pkgs/by-name/st/starry/package.nix +++ b/pkgs/by-name/st/starry/package.nix @@ -25,10 +25,10 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Current stars history tells only half the story"; homepage = "https://github.com/Canop/starry"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; mainProgram = "starry"; }; diff --git a/pkgs/by-name/st/starsector/package.nix b/pkgs/by-name/st/starsector/package.nix index 1f3eceec9c58..9a48fdd40c80 100644 --- a/pkgs/by-name/st/starsector/package.nix +++ b/pkgs/by-name/st/starsector/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation rec { update-source-version ${pname} "$version" --file=./pkgs/by-name/st/starsector/package.nix ''; - meta = with lib; { + meta = { description = "Open-world single-player space-combat, roleplaying, exploration, and economic game"; homepage = "https://fractalsoftworks.com"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ bbigras rafaelrc ]; diff --git a/pkgs/by-name/st/static-server/package.nix b/pkgs/by-name/st/static-server/package.nix index 70a14a5f77f7..8b4fda638cbb 100644 --- a/pkgs/by-name/st/static-server/package.nix +++ b/pkgs/by-name/st/static-server/package.nix @@ -49,10 +49,10 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Simple, zero-configuration HTTP server CLI for serving static files"; homepage = "https://github.com/eliben/static-server"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; mainProgram = "static-server"; }; diff --git a/pkgs/by-name/st/statifier/package.nix b/pkgs/by-name/st/statifier/package.nix index 763e1f6a759f..0cdc195d7fda 100644 --- a/pkgs/by-name/st/statifier/package.nix +++ b/pkgs/by-name/st/statifier/package.nix @@ -23,10 +23,10 @@ multiStdenv.mkDerivation rec { sed -e s@/bin/bash@"${multiStdenv.shell}"@g -i src/*.sh ''; - meta = with lib; { + meta = { description = "Tool for creating static Linux binaries"; mainProgram = "statifier"; - platforms = platforms.linux; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/st/statik/package.nix b/pkgs/by-name/st/statik/package.nix index ac3db0c0f565..40da9694222e 100644 --- a/pkgs/by-name/st/statik/package.nix +++ b/pkgs/by-name/st/statik/package.nix @@ -27,10 +27,10 @@ buildGoModule rec { # which is not the case once entered the nix store doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/rakyll/statik"; description = "Embed files into a Go executable"; mainProgram = "statik"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/st/statserial/package.nix b/pkgs/by-name/st/statserial/package.nix index 47246ec03bf3..b1e23e532d53 100644 --- a/pkgs/by-name/st/statserial/package.nix +++ b/pkgs/by-name/st/statserial/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { cp statserial.1 $out/share/man/man1 ''; - meta = with lib; { + meta = { homepage = "https://sites.google.com/site/tranter/software"; description = "Display serial port modem status lines"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' Statserial displays a table of the signals on a standard 9-pin or @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { can be useful for debugging problems with serial ports or modems. ''; - platforms = platforms.unix; - maintainers = with maintainers; [ rps ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ rps ]; mainProgram = "statserial"; }; } diff --git a/pkgs/by-name/st/status-im/package.nix b/pkgs/by-name/st/status-im/package.nix index e027265882df..f3e09bce7f96 100644 --- a/pkgs/by-name/st/status-im/package.nix +++ b/pkgs/by-name/st/status-im/package.nix @@ -41,10 +41,10 @@ appimageTools.wrapType2 { install -m 444 -D ${desktopEntry}/share/applications/status.desktop $out/share/applications/status.desktop install -m 444 -D ${icon} $out/share/icons/hicolor/512x512/apps/status.png ''; - meta = with lib; { + meta = { description = "Desktop client for the Status Network"; - license = licenses.mpl20; - maintainers = with maintainers; [ a-kenji ]; - platforms = platforms.linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ a-kenji ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/st/stb/package.nix b/pkgs/by-name/st/stb/package.nix index 70eb6e5cc450..ed409d4cd45d 100644 --- a/pkgs/by-name/st/stb/package.nix +++ b/pkgs/by-name/st/stb/package.nix @@ -42,15 +42,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Single-file public domain libraries for C/C++"; homepage = "https://github.com/nothings/stb"; - license = with licenses; [ + license = with lib.licenses; [ mit # OR unlicense ]; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/st/stderred/package.nix b/pkgs/by-name/st/stderred/package.nix index f8447a2409f9..651adff5f532 100644 --- a/pkgs/by-name/st/stderred/package.nix +++ b/pkgs/by-name/st/stderred/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { sourceRoot = "${src.name}/src"; - meta = with lib; { + meta = { description = "Colorize all stderr output that goes to terminal, making it distinguishable from stdout"; homepage = "https://github.com/sickill/stderred"; - license = licenses.mit; - maintainers = with maintainers; [ vojta001 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vojta001 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/st/stdman/package.nix b/pkgs/by-name/st/stdman/package.nix index 56b1bcd5a7b2..00fb7a3ec5e7 100644 --- a/pkgs/by-name/st/stdman/package.nix +++ b/pkgs/by-name/st/stdman/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation rec { buildInputs = [ curl ]; - meta = with lib; { + meta = { description = "Formatted C++17 stdlib man pages (cppreference)"; longDescription = "stdman is a tool that parses archived HTML files from cppreference and generates groff-formatted manual pages for Unix-based systems. The goal is to provide excellent formatting for easy readability."; homepage = "https://github.com/jeaye/stdman"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.twey ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.twey ]; }; } diff --git a/pkgs/by-name/st/stdmanpages/package.nix b/pkgs/by-name/st/stdmanpages/package.nix index 812c71f5c68e..8f7ac38a168d 100644 --- a/pkgs/by-name/st/stdmanpages/package.nix +++ b/pkgs/by-name/st/stdmanpages/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { cp -R * $out/share/man ''; - meta = with lib; { + meta = { description = "GCC C++ STD manual pages"; homepage = "https://gcc.gnu.org/"; - license = with licenses; [ fdl13Plus ]; - platforms = platforms.unix; + license = with lib.licenses; [ fdl13Plus ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/st/steam-acf/package.nix b/pkgs/by-name/st/steam-acf/package.nix index efb2b4f05cab..ab92935e42b6 100644 --- a/pkgs/by-name/st/steam-acf/package.nix +++ b/pkgs/by-name/st/steam-acf/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-3BbSTzFcQju0n7pwFqvrJB2sU8RM47Svi4lndlhkYmE="; - meta = with lib; { + meta = { description = "Tool to convert Steam .acf files to JSON"; homepage = "https://github.com/chisui/acf"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ chisui ]; + maintainers = with lib.maintainers; [ chisui ]; mainProgram = "acf"; }; } diff --git a/pkgs/by-name/st/steam-devices-udev-rules/package.nix b/pkgs/by-name/st/steam-devices-udev-rules/package.nix index d0e429dac3b9..8cbada2aa9ef 100644 --- a/pkgs/by-name/st/steam-devices-udev-rules/package.nix +++ b/pkgs/by-name/st/steam-devices-udev-rules/package.nix @@ -36,11 +36,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Udev rules list for gaming devices"; homepage = "https://github.com/ValveSoftware/steam-devices"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ azuwis ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ azuwis ]; }; } diff --git a/pkgs/by-name/st/steam-rom-manager/package.nix b/pkgs/by-name/st/steam-rom-manager/package.nix index 52ac6e6e5c27..8859854f64d0 100644 --- a/pkgs/by-name/st/steam-rom-manager/package.nix +++ b/pkgs/by-name/st/steam-rom-manager/package.nix @@ -24,11 +24,11 @@ appimageTools.wrapType2 rec { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "App for managing ROMs in Steam"; homepage = "https://github.com/SteamGridDB/steam-rom-manager"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ squarepear ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ squarepear ]; platforms = [ "x86_64-linux" ]; mainProgram = "steam-rom-manager"; }; diff --git a/pkgs/by-name/st/steam-tui/package.nix b/pkgs/by-name/st/steam-tui/package.nix index 375e4ba3cfea..75d3523eb37e 100644 --- a/pkgs/by-name/st/steam-tui/package.nix +++ b/pkgs/by-name/st/steam-tui/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { PKG_CONFIG_PATH = "${openssl.dev}/lib/pkgconfig"; - meta = with lib; { + meta = { description = "Rust TUI client for steamcmd"; homepage = "https://github.com/dmadisetti/steam-tui"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dmadisetti ]; # steam only supports that platform diff --git a/pkgs/by-name/st/steamcmd/package.nix b/pkgs/by-name/st/steamcmd/package.nix index 5eda455f61ed..25bcd8353f3d 100644 --- a/pkgs/by-name/st/steamcmd/package.nix +++ b/pkgs/by-name/st/steamcmd/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { chmod 0755 $out/bin/steamcmd ''; - meta = with lib; { + meta = { homepage = "https://developer.valvesoftware.com/wiki/SteamCMD"; description = "Steam command-line tools"; mainProgram = "steamcmd"; - platforms = platforms.linux; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ tadfisher ]; + platforms = lib.platforms.linux; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ tadfisher ]; }; } diff --git a/pkgs/by-name/st/steamos-devkit/package.nix b/pkgs/by-name/st/steamos-devkit/package.nix index a07321bd5dfa..6019fc719764 100644 --- a/pkgs/by-name/st/steamos-devkit/package.nix +++ b/pkgs/by-name/st/steamos-devkit/package.nix @@ -128,11 +128,11 @@ python3.pkgs.buildPythonPackage rec { }) ]; - meta = with lib; { + meta = { description = "SteamOS Devkit Client"; mainProgram = "steamos-devkit"; homepage = "https://gitlab.steamos.cloud/devkit/steamos-devkit"; - license = licenses.mit; - maintainers = with maintainers; [ myaats ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ myaats ]; }; } diff --git a/pkgs/by-name/st/steamtinkerlaunch/package.nix b/pkgs/by-name/st/steamtinkerlaunch/package.nix index 1eb594dcbe2b..edaf53e99a1e 100644 --- a/pkgs/by-name/st/steamtinkerlaunch/package.nix +++ b/pkgs/by-name/st/steamtinkerlaunch/package.nix @@ -106,12 +106,12 @@ stdenvNoCC.mkDerivation { ln -sfn $out/bin/steamtinkerlaunch $steamcompattool/ ''; - meta = with lib; { + meta = { description = "Linux wrapper tool for use with the Steam client for custom launch options and 3rd party programs"; mainProgram = "steamtinkerlaunch"; homepage = "https://github.com/sonic2kk/steamtinkerlaunch"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ urandom surfaceflinger ]; diff --git a/pkgs/by-name/st/steghide/package.nix b/pkgs/by-name/st/steghide/package.nix index 3a1083fa62b1..c2cfe781d84e 100644 --- a/pkgs/by-name/st/steghide/package.nix +++ b/pkgs/by-name/st/steghide/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { "CXXFLAGS=-D_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION" ]; - meta = with lib; { + meta = { homepage = "https://github.com/museoa/steghide"; description = "Open source steganography program"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; mainProgram = "steghide"; }; }) diff --git a/pkgs/by-name/st/stegseek/package.nix b/pkgs/by-name/st/stegseek/package.nix index 1418d2001100..b8c6ac19a36d 100644 --- a/pkgs/by-name/st/stegseek/package.nix +++ b/pkgs/by-name/st/stegseek/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { # tests get stuck on aarch64-linux doCheck = stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isLinux; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Tool to crack steganography"; longDescription = '' @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { used to extract hidden data from files. ''; homepage = "https://github.com/RickdeJager/stegseek"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "stegseek"; }; } diff --git a/pkgs/by-name/st/stegsolve/package.nix b/pkgs/by-name/st/stegsolve/package.nix index 7d24479d9256..bd03768e4dea 100644 --- a/pkgs/by-name/st/stegsolve/package.nix +++ b/pkgs/by-name/st/stegsolve/package.nix @@ -47,18 +47,18 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Steganographic image analyzer, solver and data extractor for challanges"; homepage = "https://www.wechall.net/forum/show/thread/527/Stegsolve_1.3/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = { fullName = "Cronos License"; url = "http://www.caesum.com/legal.php"; free = false; redistributable = true; }; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.all; mainProgram = "stegsolve"; }; }) diff --git a/pkgs/by-name/st/stellarsolver/package.nix b/pkgs/by-name/st/stellarsolver/package.nix index e8732dc65a01..8122a1908393 100644 --- a/pkgs/by-name/st/stellarsolver/package.nix +++ b/pkgs/by-name/st/stellarsolver/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation (finalAttrs: { (lib.strings.cmakeBool "USE_QT5" false) ]; - meta = with lib; { + meta = { homepage = "https://github.com/rlancaste/stellarsolver"; description = "Astrometric plate solving library"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ returntoreality ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/st/step-kms-plugin/package.nix b/pkgs/by-name/st/step-kms-plugin/package.nix index 0a2aaf10ec6e..be82774d78e0 100644 --- a/pkgs/by-name/st/step-kms-plugin/package.nix +++ b/pkgs/by-name/st/step-kms-plugin/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { CGO_CFLAGS = "-I${lib.getDev pcsclite}/include/PCSC/"; - meta = with lib; { + meta = { description = "Step plugin to manage keys and certificates on cloud KMSs and HSMs"; homepage = "https://smallstep.com/cli/"; - license = licenses.asl20; - maintainers = with maintainers; [ qbit ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qbit ]; mainProgram = "step-kms-plugin"; }; } diff --git a/pkgs/by-name/st/stepreduce/package.nix b/pkgs/by-name/st/stepreduce/package.nix index 3e1b0b9f6553..50cf9d3979ef 100644 --- a/pkgs/by-name/st/stepreduce/package.nix +++ b/pkgs/by-name/st/stepreduce/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Reduces STEP file size by removing redundancy"; homepage = "https://gitlab.com/sethhillbrand/stepreduce"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "stepreduce"; }; diff --git a/pkgs/by-name/st/stereotool/package.nix b/pkgs/by-name/st/stereotool/package.nix index ae514189b79b..df231d256fda 100644 --- a/pkgs/by-name/st/stereotool/package.nix +++ b/pkgs/by-name/st/stereotool/package.nix @@ -171,10 +171,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.thimeo.com/stereo-tool/"; description = "Stereo Tool is a software-based audio processor which offers outstanding audio quality and comes with many unique features"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "stereo_tool_gui"; platforms = [ "aarch64-linux" @@ -182,7 +182,7 @@ stdenv.mkDerivation rec { "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ RudiOnTheAir ]; + maintainers = with lib.maintainers; [ RudiOnTheAir ]; }; } diff --git a/pkgs/by-name/st/stevenblack-blocklist/package.nix b/pkgs/by-name/st/stevenblack-blocklist/package.nix index e675d9bb96fc..f320d4743e40 100644 --- a/pkgs/by-name/st/stevenblack-blocklist/package.nix +++ b/pkgs/by-name/st/stevenblack-blocklist/package.nix @@ -56,11 +56,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Unified hosts file with base extensions"; homepage = "https://github.com/StevenBlack/hosts"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moni Guanran928 frontear diff --git a/pkgs/by-name/st/stgit/package.nix b/pkgs/by-name/st/stgit/package.nix index 695788549d8d..0a0decc2fb61 100644 --- a/pkgs/by-name/st/stgit/package.nix +++ b/pkgs/by-name/st/stgit/package.nix @@ -93,12 +93,12 @@ rustPlatform.buildRustPackage rec { --zsh completion/stgit.zsh ''; - meta = with lib; { + meta = { description = "Patch manager implemented on top of Git"; homepage = "https://stacked-git.github.io/"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ jshholland ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jshholland ]; mainProgram = "stg"; }; } diff --git a/pkgs/by-name/st/sticky/package.nix b/pkgs/by-name/st/sticky/package.nix index 666d6e24563a..6171cc90d2b7 100644 --- a/pkgs/by-name/st/sticky/package.nix +++ b/pkgs/by-name/st/sticky/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Sticky notes app for the Linux desktop"; mainProgram = "sticky"; homepage = "https://github.com/linuxmint/sticky"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ linsui bobby285271 ]; diff --git a/pkgs/by-name/st/stilo-themes/package.nix b/pkgs/by-name/st/stilo-themes/package.nix index e3dde8a7de62..88bb362e302b 100644 --- a/pkgs/by-name/st/stilo-themes/package.nix +++ b/pkgs/by-name/st/stilo-themes/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gtk-engine-murrine ]; - meta = with lib; { + meta = { description = "Minimalistic GTK, gnome shell and Xfce themes"; homepage = "https://github.com/lassekongo83/stilo-themes"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/st/stix-otf/package.nix b/pkgs/by-name/st/stix-otf/package.nix index b9a1b795ce19..26e308768f06 100644 --- a/pkgs/by-name/st/stix-otf/package.nix +++ b/pkgs/by-name/st/stix-otf/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.stixfonts.org/"; description = "Fonts for Scientific and Technical Information eXchange"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/st/stix-two/package.nix b/pkgs/by-name/st/stix-two/package.nix index 729518d97171..791edc6df848 100644 --- a/pkgs/by-name/st/stix-two/package.nix +++ b/pkgs/by-name/st/stix-two/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.stixfonts.org/"; description = "Fonts for Scientific and Technical Information eXchange"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/st/stlink-tool/package.nix b/pkgs/by-name/st/stlink-tool/package.nix index b3b1ea303ab7..d55d18c4b60f 100644 --- a/pkgs/by-name/st/stlink-tool/package.nix +++ b/pkgs/by-name/st/stlink-tool/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "libusb tool for flashing chinese ST-Link dongles"; homepage = "https://github.com/jeanthom/stlink-tool"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.wucke13 ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.wucke13 ]; mainProgram = "stlink-tool"; }; } diff --git a/pkgs/by-name/st/stlink/package.nix b/pkgs/by-name/st/stlink/package.nix index a02ae13a68f0..27dfb87b1176 100644 --- a/pkgs/by-name/st/stlink/package.nix +++ b/pkgs/by-name/st/stlink/package.nix @@ -61,14 +61,14 @@ stdenv.mkDerivation rec { "-DSTLINK_UDEV_RULES_DIR=${placeholder "out"}/lib/udev/rules.d" ]; - meta = with lib; { + meta = { description = "In-circuit debug and programming for ST-Link devices"; - license = licenses.bsd3; - platforms = platforms.unix; - badPlatforms = platforms.darwin; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.darwin; maintainers = [ - maintainers.bjornfor - maintainers.rongcuid + lib.maintainers.bjornfor + lib.maintainers.rongcuid ]; }; } diff --git a/pkgs/by-name/st/stm32cubemx/package.nix b/pkgs/by-name/st/stm32cubemx/package.nix index 1e79086142a7..ac6dca9e4e36 100644 --- a/pkgs/by-name/st/stm32cubemx/package.nix +++ b/pkgs/by-name/st/stm32cubemx/package.nix @@ -84,7 +84,7 @@ let fi ''; - meta = with lib; { + meta = { description = "Graphical tool for configuring STM32 microcontrollers and microprocessors"; longDescription = '' A graphical tool that allows a very easy configuration of STM32 @@ -94,9 +94,9 @@ let step-by-step process. ''; homepage = "https://www.st.com/en/development-tools/stm32cubemx.html"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ angaz wucke13 ]; diff --git a/pkgs/by-name/st/stm32flash/package.nix b/pkgs/by-name/st/stm32flash/package.nix index 7787dc9c05f4..04bd951034aa 100644 --- a/pkgs/by-name/st/stm32flash/package.nix +++ b/pkgs/by-name/st/stm32flash/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { cp stm32flash $out/bin/ ''; - meta = with lib; { + meta = { description = "Open source flash program for the STM32 ARM processors using the ST bootloader"; mainProgram = "stm32flash"; homepage = "https://sourceforge.net/projects/stm32flash/"; license = lib.licenses.gpl2; - platforms = platforms.all; # Should work on all platforms - maintainers = with maintainers; [ elitak ]; + platforms = lib.platforms.all; # Should work on all platforms + maintainers = with lib.maintainers; [ elitak ]; }; } diff --git a/pkgs/by-name/st/stm8flash/package.nix b/pkgs/by-name/st/stm8flash/package.nix index 4c55857b02f1..cf24162d58d3 100644 --- a/pkgs/by-name/st/stm8flash/package.nix +++ b/pkgs/by-name/st/stm8flash/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libusb1 ]; - meta = with lib; { + meta = { homepage = "https://github.com/vdudouyt/stm8flash"; description = "Tool for flashing STM8 MCUs via ST-LINK (V1 and V2)"; mainProgram = "stm8flash"; - maintainers = with maintainers; [ pkharvey ]; - license = licenses.gpl2; - platforms = platforms.all; + maintainers = with lib.maintainers; [ pkharvey ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/st/stochas/package.nix b/pkgs/by-name/st/stochas/package.nix index 6ad06b890180..56c37bac6678 100644 --- a/pkgs/by-name/st/stochas/package.nix +++ b/pkgs/by-name/st/stochas/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { cp -r stochas_artefacts/Release/VST3/Stochas.vst3 $out/lib/vst3 ''; - meta = with lib; { + meta = { description = "Probabilistic polyrhythmic sequencer plugin"; homepage = "https://stochas.org/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/st/stockfish/package.nix b/pkgs/by-name/st/stockfish/package.nix index 6e4b9ee9312c..9a8a1422e060 100644 --- a/pkgs/by-name/st/stockfish/package.nix +++ b/pkgs/by-name/st/stockfish/package.nix @@ -102,7 +102,7 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { homepage = "https://stockfishchess.org/"; description = "Strong open source chess engine"; mainProgram = "stockfish"; @@ -110,7 +110,7 @@ stdenv.mkDerivation rec { Stockfish is one of the strongest chess engines in the world. It is also much stronger than the best human chess grandmasters. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ luispedro siraben thibaultd @@ -122,7 +122,7 @@ stdenv.mkDerivation rec { "aarch64-linux" "aarch64-darwin" ]; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/by-name/st/stone-kingdoms/package.nix b/pkgs/by-name/st/stone-kingdoms/package.nix index 4aba7cfb2fa7..50896d2cf1e1 100644 --- a/pkgs/by-name/st/stone-kingdoms/package.nix +++ b/pkgs/by-name/st/stone-kingdoms/package.nix @@ -51,14 +51,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Real-time strategy game made with LÖVE based on the original Stronghold by Firefly studios"; homepage = "https://gitlab.com/stone-kingdoms/stone-kingdoms"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ asl20 # engine unfree # game assets ]; - maintainers = with maintainers; [ hulr ]; + maintainers = with lib.maintainers; [ hulr ]; }; } diff --git a/pkgs/by-name/st/stone-phaser/package.nix b/pkgs/by-name/st/stone-phaser/package.nix index 74f2fdfc9441..7dbadf290a6c 100644 --- a/pkgs/by-name/st/stone-phaser/package.nix +++ b/pkgs/by-name/st/stone-phaser/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); homepage = "https://github.com/jpcima/stone-phaser"; description = "Classic analog phaser effect, made with DPF and Faust"; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.boost; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.boost; }; } diff --git a/pkgs/by-name/st/stone/package.nix b/pkgs/by-name/st/stone/package.nix index d93eaebf3c75..db0aa64276e0 100644 --- a/pkgs/by-name/st/stone/package.nix +++ b/pkgs/by-name/st/stone/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "TCP/IP repeater in the application layer"; homepage = "http://www.gcd.org/sengoku/stone/"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ corngood ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ corngood ]; mainProgram = "stone"; }; } diff --git a/pkgs/by-name/st/stopmotion/package.nix b/pkgs/by-name/st/stopmotion/package.nix index 4915d9aada97..f3fe0d1c5a62 100644 --- a/pkgs/by-name/st/stopmotion/package.nix +++ b/pkgs/by-name/st/stopmotion/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { libxml2 ]; - meta = with lib; { + meta = { description = "Create stop-motion animation movies"; homepage = "http://linuxstopmotion.org/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "stopmotion"; }; } diff --git a/pkgs/by-name/st/storcli/package.nix b/pkgs/by-name/st/storcli/package.nix index c04db3df2e8d..9624db54d7ba 100644 --- a/pkgs/by-name/st/storcli/package.nix +++ b/pkgs/by-name/st/storcli/package.nix @@ -49,15 +49,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { version = "00${finalAttrs.version}00.0000"; }; - meta = with lib; { + meta = { # Unfortunately there is no better page for this. # Filter for downloads, set 100 items per page. Sort by newest does not work. # Then search manually for the latest version. homepage = "https://www.broadcom.com/support/download-search?pg=&pf=Host+Bus+Adapters&pn=&pa=&po=&dk=storcli&pl=&l=false"; description = "Storage Command Line Tool"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ panicgh ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ panicgh ]; mainProgram = "storcli"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/st/storcli2/package.nix b/pkgs/by-name/st/storcli2/package.nix index 5797ce75e42a..1ed23684e46f 100644 --- a/pkgs/by-name/st/storcli2/package.nix +++ b/pkgs/by-name/st/storcli2/package.nix @@ -54,14 +54,14 @@ stdenvNoCC.mkDerivation ( version = verCode; }; - meta = with lib; { + meta = { # Unfortunately there is no better page for this. # Filter for downloads, set 100 items per page. Sort by newest does not work. # Then search manually for the latest version. homepage = "https://www.broadcom.com/support/download-search?pg=&pf=Host+Bus+Adapters&pn=&pa=&po=&dk=storcli2&pl=&l=false"; description = "Storage Command Line Tool"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; mainProgram = "storcli2"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/st/storm/package.nix b/pkgs/by-name/st/storm/package.nix index d8e04f914114..5b21d67d1ab1 100644 --- a/pkgs/by-name/st/storm/package.nix +++ b/pkgs/by-name/st/storm/package.nix @@ -74,14 +74,14 @@ stdenv.mkDerivation (finalAttrs: { command = "storm version"; }; - meta = with lib; { + meta = { homepage = "https://storm.apache.org/"; description = "Distributed realtime computation system"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vizanto ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; }) diff --git a/pkgs/by-name/st/storrent/package.nix b/pkgs/by-name/st/storrent/package.nix index 92d1a5aad087..c2ca35ca631b 100644 --- a/pkgs/by-name/st/storrent/package.nix +++ b/pkgs/by-name/st/storrent/package.nix @@ -22,12 +22,12 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jech/storrent"; description = "Implementation of the BitTorrent protocol that is optimised for streaming media"; mainProgram = "storrent"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/st/stow/package.nix b/pkgs/by-name/st/stow/package.nix index 96e98afa4842..f44a8d193213 100644 --- a/pkgs/by-name/st/stow/package.nix +++ b/pkgs/by-name/st/stow/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Tool for managing the installation of multiple software packages in the same run-time directory tree"; longDescription = '' @@ -36,9 +36,9 @@ stdenv.mkDerivation (finalAttrs: { as .../share, .../man, and so on. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://www.gnu.org/software/stow/"; - maintainers = with maintainers; [ sarcasticadmin ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ sarcasticadmin ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/st/strace-analyzer/package.nix b/pkgs/by-name/st/strace-analyzer/package.nix index d4fa0f7bd7d0..8edf924afb10 100644 --- a/pkgs/by-name/st/strace-analyzer/package.nix +++ b/pkgs/by-name/st/strace-analyzer/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { "--skip=analysis::tests::analyze_dd" ]; - meta = with lib; { + meta = { description = "Analyzes strace output"; mainProgram = "strace-analyzer"; homepage = "https://github.com/wookietreiber/strace-analyzer"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/st/strace/package.nix b/pkgs/by-name/st/strace/package.nix index 2bb0ca714f6e..06db8954cfcf 100644 --- a/pkgs/by-name/st/strace/package.nix +++ b/pkgs/by-name/st/strace/package.nix @@ -50,15 +50,15 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://strace.io/"; description = "System call tracer for Linux"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus gpl2Plus ]; # gpl2Plus is for the test suite - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ globin ma27 qyliss diff --git a/pkgs/by-name/st/stratis-cli/package.nix b/pkgs/by-name/st/stratis-cli/package.nix index 39d024528dc9..4e8d51b39226 100644 --- a/pkgs/by-name/st/stratis-cli/package.nix +++ b/pkgs/by-name/st/stratis-cli/package.nix @@ -46,11 +46,11 @@ python3Packages.buildPythonApplication rec { passthru.tests = nixosTests.stratis; - meta = with lib; { + meta = { description = "CLI for the Stratis project"; homepage = "https://stratis-storage.github.io"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "stratis"; }; } diff --git a/pkgs/by-name/st/stratisd/package.nix b/pkgs/by-name/st/stratisd/package.nix index ab27e0fb73d8..2fc8840d0b7d 100644 --- a/pkgs/by-name/st/stratisd/package.nix +++ b/pkgs/by-name/st/stratisd/package.nix @@ -130,11 +130,11 @@ stdenv.mkDerivation rec { inherit (nixosTests.installer-systemd-stage-1) stratisRoot; }; - meta = with lib; { + meta = { description = "Easy to use local storage management for Linux"; homepage = "https://stratis-storage.github.io"; - license = licenses.mpl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nickcao ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/st/stratovirt/package.nix b/pkgs/by-name/st/stratovirt/package.nix index 1b5583cb9257..a4e6d79fa20e 100644 --- a/pkgs/by-name/st/stratovirt/package.nix +++ b/pkgs/by-name/st/stratovirt/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec { libseccomp ]; - meta = with lib; { + meta = { homepage = "https://gitee.com/openeuler/stratovirt"; description = "Virtual Machine Manager from Huawei"; - license = licenses.mulan-psl2; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.mulan-psl2; + maintainers = with lib.maintainers; [ astro ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/st/streamcontroller/package.nix b/pkgs/by-name/st/streamcontroller/package.nix index d8eee3b7cfdf..b8137979170c 100644 --- a/pkgs/by-name/st/streamcontroller/package.nix +++ b/pkgs/by-name/st/streamcontroller/package.nix @@ -197,12 +197,12 @@ stdenv.mkDerivation { doInstallCheck = true; - meta = with lib; { + meta = { description = "Elegant Linux app for the Elgato Stream Deck with support for plugins"; homepage = "https://core447.com/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "streamcontroller"; - maintainers = with maintainers; [ sifmelcara ]; + maintainers = with lib.maintainers; [ sifmelcara ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/st/streamrip/package.nix b/pkgs/by-name/st/streamrip/package.nix index b728592bfac3..2f89ee3514b4 100644 --- a/pkgs/by-name/st/streamrip/package.nix +++ b/pkgs/by-name/st/streamrip/package.nix @@ -62,10 +62,10 @@ python3Packages.buildPythonApplication rec { export HOME=$(mktemp -d) ''; - meta = with lib; { + meta = { description = "Scriptable music downloader for Qobuz, Tidal, SoundCloud, and Deezer"; homepage = "https://github.com/nathom/streamrip"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "rip"; }; diff --git a/pkgs/by-name/st/streamripper/package.nix b/pkgs/by-name/st/streamripper/package.nix index 22ee95b0e381..92ae81268f2f 100644 --- a/pkgs/by-name/st/streamripper/package.nix +++ b/pkgs/by-name/st/streamripper/package.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { libmad ]; - meta = with lib; { + meta = { homepage = "https://streamripper.sourceforge.net/"; description = "Application that lets you record streaming mp3 to your hard drive"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "streamripper"; }; } diff --git a/pkgs/by-name/st/string-machine/package.nix b/pkgs/by-name/st/string-machine/package.nix index bc18c722c825..dafbf697a4d9 100644 --- a/pkgs/by-name/st/string-machine/package.nix +++ b/pkgs/by-name/st/string-machine/package.nix @@ -52,8 +52,8 @@ stdenv.mkDerivation { meta = with lib; { homepage = "https://github.com/jpcima/string-machine"; description = "Digital model of electronic string ensemble instrument"; - maintainers = [ maintainers.magnetophon ]; - platforms = intersectLists platforms.linux platforms.x86; - license = licenses.boost; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = intersectLists lib.platforms.linux lib.platforms.x86; + license = lib.licenses.boost; }; } diff --git a/pkgs/by-name/st/structorizer/package.nix b/pkgs/by-name/st/structorizer/package.nix index 8f582d43bb14..1a911d653df8 100644 --- a/pkgs/by-name/st/structorizer/package.nix +++ b/pkgs/by-name/st/structorizer/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Create Nassi-Shneiderman diagrams (NSD)"; homepage = "https://structorizer.fisch.lu"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "structorizer"; }; } diff --git a/pkgs/by-name/st/stt/package.nix b/pkgs/by-name/st/stt/package.nix index b39a3922fdbf..5d046a85d0ce 100644 --- a/pkgs/by-name/st/stt/package.nix +++ b/pkgs/by-name/st/stt/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { install -D libstt.so $out/lib/libstt.so ''; - meta = with lib; { + meta = { homepage = "https://github.com/coqui-ai/STT"; description = "Deep learning toolkit for Speech-to-Text, battle-tested in research and production"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mpl20; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mpl20; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ rvolosatovs ]; + maintainers = with lib.maintainers; [ rvolosatovs ]; mainProgram = "stt"; }; } diff --git a/pkgs/by-name/st/stumpish/package.nix b/pkgs/by-name/st/stumpish/package.nix index 519d02ea597a..09d1b906c146 100644 --- a/pkgs/by-name/st/stumpish/package.nix +++ b/pkgs/by-name/st/stumpish/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation { cp util/stumpish/stumpish $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/stumpwm/stumpwm-contrib"; description = "STUMPwm Interactive SHell"; - license = licenses.gpl2; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; mainProgram = "stumpish"; }; } diff --git a/pkgs/by-name/st/stun/package.nix b/pkgs/by-name/st/stun/package.nix index 01e36817f2b2..acd949e384f5 100644 --- a/pkgs/by-name/st/stun/package.nix +++ b/pkgs/by-name/st/stun/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation rec { cp -v debian/manpages/stund.8.gz $server/man/man8 ''; - meta = with lib; { + meta = { description = "Stun server and test client"; homepage = "https://sourceforge.net/projects/stun/"; - license = licenses.vsl10; - maintainers = with maintainers; [ + license = lib.licenses.vsl10; + maintainers = with lib.maintainers; [ marcweber obadz ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "stun"; }; } diff --git a/pkgs/by-name/st/stuntman/package.nix b/pkgs/by-name/st/stuntman/package.nix index 411d164cab60..c9b31e498358 100644 --- a/pkgs/by-name/st/stuntman/package.nix +++ b/pkgs/by-name/st/stuntman/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { runHook postCheck ''; - meta = with lib; { + meta = { description = "Open source STUN server and client"; homepage = "https://www.stunprotocol.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ mattchrist ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mattchrist ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/st/stupidterm/package.nix b/pkgs/by-name/st/stupidterm/package.nix index c39e182127ab..749ffdb8c2eb 100644 --- a/pkgs/by-name/st/stupidterm/package.nix +++ b/pkgs/by-name/st/stupidterm/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation { passthru.tests.test = nixosTests.terminal-emulators.stupidterm; - meta = with lib; { + meta = { description = "Simple wrapper around the VTE terminal emulator widget for GTK"; homepage = "https://github.com/esmil/stupidterm"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "stupidterm"; }; } diff --git a/pkgs/by-name/st/stw/package.nix b/pkgs/by-name/st/stw/package.nix index befe804242f1..fee513ab3afc 100644 --- a/pkgs/by-name/st/stw/package.nix +++ b/pkgs/by-name/st/stw/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple text widget for X resembling the watch(1) command"; - license = licenses.mit; - maintainers = with maintainers; [ somasis ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ somasis ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; mainProgram = "stw"; }; diff --git a/pkgs/by-name/st/stxxl/package.nix b/pkgs/by-name/st/stxxl/package.nix index 324e0c76115b..0613e6850ce5 100644 --- a/pkgs/by-name/st/stxxl/package.nix +++ b/pkgs/by-name/st/stxxl/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Implementation of the C++ standard template library STL for external memory (out-of-core) computations"; homepage = "https://github.com/stxxl/stxxl"; - license = licenses.boost; + license = lib.licenses.boost; maintainers = [ ]; mainProgram = "stxxl_tool"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/st/stylish/package.nix b/pkgs/by-name/st/stylish/package.nix index 36f63008ba46..814f150f6855 100644 --- a/pkgs/by-name/st/stylish/package.nix +++ b/pkgs/by-name/st/stylish/package.nix @@ -44,7 +44,7 @@ stdenvNoCC.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/thevinter/styli.sh"; description = "Shell script to manage wallpapers"; mainProgram = "styli.sh"; @@ -56,7 +56,7 @@ stdenvNoCC.mkDerivation rec { a random image from the specified subreddits. If you have pywal it also can set automatically your terminal colors. ''; - license = licenses.mit; - maintainers = with maintainers; [ tchab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tchab ]; }; } diff --git a/pkgs/by-name/st/styluslabs-write-bin/package.nix b/pkgs/by-name/st/styluslabs-write-bin/package.nix index 3e5f19a5f05b..c6aba59ae85d 100644 --- a/pkgs/by-name/st/styluslabs-write-bin/package.nix +++ b/pkgs/by-name/st/styluslabs-write-bin/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation rec { $out/Write/Write ''; - meta = with lib; { + meta = { homepage = "http://www.styluslabs.com/"; description = "Write is a word processor for handwriting"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.linux; license = lib.licenses.unfree; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ oyren lukts30 atemu diff --git a/pkgs/by-name/st/styx/package.nix b/pkgs/by-name/st/styx/package.nix index 6be5fae6cb14..138f2d849205 100644 --- a/pkgs/by-name/st/styx/package.nix +++ b/pkgs/by-name/st/styx/package.nix @@ -75,13 +75,13 @@ stdenv.mkDerivation rec { cp -r themes/* $themes ''; - meta = with lib; { + meta = { description = "Nix based static site generator"; maintainers = [ ]; homepage = "https://styx-static.github.io/styx-site/"; downloadPage = "https://github.com/styx-static/styx/"; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; mainProgram = "styx"; }; } diff --git a/pkgs/by-name/su/su-exec/package.nix b/pkgs/by-name/su/su-exec/package.nix index c020b12cfe3f..109ff9bf13a4 100644 --- a/pkgs/by-name/su/su-exec/package.nix +++ b/pkgs/by-name/su/su-exec/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { cp -a su-exec $out/bin/su-exec ''; - meta = with lib; { + meta = { description = "Switch user and group id and exec"; mainProgram = "su-exec"; homepage = "https://github.com/ncopa/su-exec"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/su/sub-batch/package.nix b/pkgs/by-name/su/sub-batch/package.nix index 471338354ca8..6fcb0e9dc282 100644 --- a/pkgs/by-name/su/sub-batch/package.nix +++ b/pkgs/by-name/su/sub-batch/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eT4u/IHj+yqeLQZ7E4cWAJFMT503zHq7HYyIhsoaj6s="; - meta = with lib; { + meta = { description = "Match and rename subtitle files to video files and perform other batch operations on subtitle files"; homepage = "https://github.com/kl/sub-batch"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; broken = stdenv.hostPlatform.isDarwin; mainProgram = "sub-batch"; }; diff --git a/pkgs/by-name/su/subedit/package.nix b/pkgs/by-name/su/subedit/package.nix index 6537bc913e32..78d8ed3b1827 100644 --- a/pkgs/by-name/su/subedit/package.nix +++ b/pkgs/by-name/su/subedit/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { }" ''; - meta = with lib; { + meta = { homepage = "https://github.com/helixarch/subedit"; description = "Command-line subtitle editor written in BASH"; mainProgram = "subedit"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ppom ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ppom ]; }; } diff --git a/pkgs/by-name/su/subfinder/package.nix b/pkgs/by-name/su/subfinder/package.nix index f86702603d39..ed68cf8adb4b 100644 --- a/pkgs/by-name/su/subfinder/package.nix +++ b/pkgs/by-name/su/subfinder/package.nix @@ -31,7 +31,7 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Subdomain discovery tool"; longDescription = '' SubFinder is a subdomain discovery tool that discovers valid @@ -40,8 +40,8 @@ buildGoModule rec { ''; homepage = "https://github.com/projectdiscovery/subfinder"; changelog = "https://github.com/projectdiscovery/subfinder/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz Misaka13514 ]; diff --git a/pkgs/by-name/su/subjs/package.nix b/pkgs/by-name/su/subjs/package.nix index b2ad1e60feaf..4318eff2a395 100644 --- a/pkgs/by-name/su/subjs/package.nix +++ b/pkgs/by-name/su/subjs/package.nix @@ -23,7 +23,7 @@ buildGoModule rec { "-X main.AppVersion=${version}" ]; - meta = with lib; { + meta = { description = "Fetcher for Javascript files"; mainProgram = "subjs"; longDescription = '' @@ -32,7 +32,7 @@ buildGoModule rec { secrets and more. ''; homepage = "https://github.com/lc/subjs"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/su/subread/package.nix b/pkgs/by-name/su/subread/package.nix index 164defc6deee..15aeb4183a36 100644 --- a/pkgs/by-name/su/subread/package.nix +++ b/pkgs/by-name/su/subread/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { cp -r ../bin $out ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "High-performance read alignment, quantification and mutation discovery"; - license = licenses.gpl3; - maintainers = with maintainers; [ jbedo ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ jbedo ]; platforms = [ "x86_64-darwin" "x86_64-linux" diff --git a/pkgs/by-name/su/subsonic/package.nix b/pkgs/by-name/su/subsonic/package.nix index a24f96ad735c..d273a00ab860 100644 --- a/pkgs/by-name/su/subsonic/package.nix +++ b/pkgs/by-name/su/subsonic/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://subsonic.org"; description = "Personal media streamer"; - license = licenses.unfree; - maintainers = with maintainers; [ telotortium ]; - platforms = platforms.unix; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ telotortium ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/su/substudy/package.nix b/pkgs/by-name/su/substudy/package.nix index 292357b53eaf..895298438a03 100644 --- a/pkgs/by-name/su/substudy/package.nix +++ b/pkgs/by-name/su/substudy/package.nix @@ -37,10 +37,10 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} ''; - meta = with lib; { + meta = { description = "Learn foreign languages using audio and subtitles extracted from video files"; homepage = "https://www.randomhacks.net/substudy"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "substudy"; maintainers = [ ]; }; diff --git a/pkgs/by-name/su/subtitlecomposer/package.nix b/pkgs/by-name/su/subtitlecomposer/package.nix index 15cd03f1854a..d926a2ca7696 100644 --- a/pkgs/by-name/su/subtitlecomposer/package.nix +++ b/pkgs/by-name/su/subtitlecomposer/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { sonnet ]); - meta = with lib; { + meta = { homepage = "https://apps.kde.org/subtitlecomposer"; description = "Open source text-based subtitle editor"; longDescription = '' @@ -52,9 +52,9 @@ stdenv.mkDerivation rec { Subtitle Workshop for every platform supported by Plasma Frameworks. ''; changelog = "https://invent.kde.org/multimedia/subtitlecomposer/-/blob/master/ChangeLog"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ kugland ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kugland ]; mainProgram = "subtitlecomposer"; - platforms = with platforms; linux ++ freebsd ++ windows; + platforms = with lib.platforms; linux ++ freebsd ++ windows; }; } diff --git a/pkgs/by-name/su/subtitleedit/package.nix b/pkgs/by-name/su/subtitleedit/package.nix index d39573299161..135a4515c245 100644 --- a/pkgs/by-name/su/subtitleedit/package.nix +++ b/pkgs/by-name/su/subtitleedit/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Subtitle editor"; longDescription = '' With Subtitle Edit you can easily adjust a subtitle if it is out of sync with @@ -92,9 +92,9 @@ stdenv.mkDerivation rec { or for translating subtitles. ''; homepage = "https://nikse.dk/subtitleedit"; - license = licenses.gpl3Plus; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/su/subtitlr/package.nix b/pkgs/by-name/su/subtitlr/package.nix index 225d8c313924..f1b49fae2dd4 100644 --- a/pkgs/by-name/su/subtitlr/package.nix +++ b/pkgs/by-name/su/subtitlr/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { --zsh <($out/bin/Subtitlr completion zsh) ''; - meta = with lib; { + meta = { description = "This application, a subtitle generator for YouTube, utilizes OpenAI's Whisper API"; homepage = "https://github.com/yoanbernabeu/Subtitlr/"; - license = licenses.mit; - maintainers = with maintainers; [ qjoly ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ qjoly ]; mainProgram = "Subtitlr"; }; } diff --git a/pkgs/by-name/su/subxt/package.nix b/pkgs/by-name/su/subxt/package.nix index b36424f3e907..f0c69289e153 100644 --- a/pkgs/by-name/su/subxt/package.nix +++ b/pkgs/by-name/su/subxt/package.nix @@ -30,14 +30,14 @@ rustPlatform.buildRustPackage rec { # Requires a running substrate node doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/paritytech/subxt"; description = "Submit transactions to a substrate node via RPC"; mainProgram = "subxt"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus asl20 ]; - maintainers = [ maintainers.FlorianFranzen ]; + maintainers = [ lib.maintainers.FlorianFranzen ]; }; } diff --git a/pkgs/by-name/su/suckit/package.nix b/pkgs/by-name/su/suckit/package.nix index 15cc97e8831f..e15eafc44762 100644 --- a/pkgs/by-name/su/suckit/package.nix +++ b/pkgs/by-name/su/suckit/package.nix @@ -29,10 +29,10 @@ rustPlatform.buildRustPackage rec { "--skip=test_external_download" ]; - meta = with lib; { + meta = { description = "Recursively visit and download a website's content to your disk"; homepage = "https://github.com/skallwar/suckit"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; diff --git a/pkgs/by-name/su/sudachi-rs/package.nix b/pkgs/by-name/su/sudachi-rs/package.nix index baf5d30effe6..e7f8ad7081eb 100644 --- a/pkgs/by-name/su/sudachi-rs/package.nix +++ b/pkgs/by-name/su/sudachi-rs/package.nix @@ -55,12 +55,12 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Japanese morphological analyzer"; homepage = "https://github.com/WorksApplications/sudachi.rs"; changelog = "https://github.com/WorksApplications/sudachi.rs/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; mainProgram = "sudachi"; }; } diff --git a/pkgs/by-name/su/sudo/package.nix b/pkgs/by-name/su/sudo/package.nix index 7343218bae33..f916f8d53377 100644 --- a/pkgs/by-name/su/sudo/package.nix +++ b/pkgs/by-name/su/sudo/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Command to run commands as root"; longDescription = '' Sudo (su "do") allows a system administrator to delegate @@ -94,14 +94,14 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.sudo.ws/"; # From https://www.sudo.ws/about/license/ - license = with licenses; [ + license = with lib.licenses; [ sudo bsd2 bsd3 zlib ]; - maintainers = with maintainers; [ rhendric ]; - platforms = platforms.linux ++ platforms.freebsd ++ platforms.openbsd; + maintainers = with lib.maintainers; [ rhendric ]; + platforms = lib.platforms.linux ++ lib.platforms.freebsd ++ lib.platforms.openbsd; mainProgram = "sudo"; }; }) diff --git a/pkgs/by-name/su/suil/package.nix b/pkgs/by-name/su/suil/package.nix index 0ab5468346c3..ba869d6982ea 100644 --- a/pkgs/by-name/su/suil/package.nix +++ b/pkgs/by-name/su/suil/package.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "http://drobilla.net/software/suil"; description = "Lightweight C library for loading and wrapping LV2 plugin UIs"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/su/suitesparse-graphblas/package.nix b/pkgs/by-name/su/suitesparse-graphblas/package.nix index 497bb4c37840..4838ccffdfbc 100644 --- a/pkgs/by-name/su/suitesparse-graphblas/package.nix +++ b/pkgs/by-name/su/suitesparse-graphblas/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { )) ]; - meta = with lib; { + meta = { description = "Graph algorithms in the language of linear algebra"; homepage = "https://people.engr.tamu.edu/davis/GraphBLAS.html"; - license = licenses.asl20; - maintainers = with maintainers; [ wegank ]; - platforms = with platforms; unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ wegank ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/su/summon/package.nix b/pkgs/by-name/su/summon/package.nix index 041dd754c170..b28f1cb97b1a 100644 --- a/pkgs/by-name/su/summon/package.nix +++ b/pkgs/by-name/su/summon/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { mv $out/bin/cmd $out/bin/summon ''; - meta = with lib; { + meta = { description = "CLI that provides on-demand secrets access for common DevOps tools"; mainProgram = "summon"; homepage = "https://cyberark.github.io/summon"; license = lib.licenses.mit; - maintainers = with maintainers; [ quentini ]; + maintainers = with lib.maintainers; [ quentini ]; }; } diff --git a/pkgs/by-name/su/sumo/package.nix b/pkgs/by-name/su/sumo/package.nix index 77501269288d..47fb21c962ea 100644 --- a/pkgs/by-name/su/sumo/package.nix +++ b/pkgs/by-name/su/sumo/package.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { libXrender ]); - meta = with lib; { + meta = { description = "SUMO traffic simulator"; longDescription = '' Eclipse SUMO is an open source, highly @@ -91,7 +91,7 @@ stdenv.mkDerivation rec { tools for scenario creation. ''; homepage = "https://github.com/eclipse/sumo"; - license = licenses.epl20; + license = lib.licenses.epl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/su/sundtek/package.nix b/pkgs/by-name/su/sundtek/package.nix index b560a975c0d9..733b36702a35 100644 --- a/pkgs/by-name/su/sundtek/package.nix +++ b/pkgs/by-name/su/sundtek/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Sundtek MediaTV driver"; - maintainers = [ maintainers.simonvandel ]; + maintainers = [ lib.maintainers.simonvandel ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - platforms = platforms.unix; - license = licenses.unfree; + platforms = lib.platforms.unix; + license = lib.licenses.unfree; homepage = "https://support.sundtek.com/index.php/topic,1573.0.html"; }; } diff --git a/pkgs/by-name/su/sunvox/package.nix b/pkgs/by-name/su/sunvox/package.nix index e9038772f230..78e1e0ad9382 100644 --- a/pkgs/by-name/su/sunvox/package.nix +++ b/pkgs/by-name/su/sunvox/package.nix @@ -141,12 +141,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Small, fast and powerful modular synthesizer with pattern-based sequencer"; - license = licenses.unfreeRedistributable; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; homepage = "https://www.warmplace.ru/soft/sunvox/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ puffnfresh OPNA2608 ]; diff --git a/pkgs/by-name/su/supabase-cli/package.nix b/pkgs/by-name/su/supabase-cli/package.nix index 9013400b9900..98e3745f071a 100644 --- a/pkgs/by-name/su/supabase-cli/package.nix +++ b/pkgs/by-name/su/supabase-cli/package.nix @@ -53,11 +53,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "CLI for interacting with supabase"; homepage = "https://github.com/supabase/cli"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gerschtli kashw2 ]; diff --git a/pkgs/by-name/su/super-tiny-icons/package.nix b/pkgs/by-name/su/super-tiny-icons/package.nix index d1dd4eca5722..3a924f8d6da2 100644 --- a/pkgs/by-name/su/super-tiny-icons/package.nix +++ b/pkgs/by-name/su/super-tiny-icons/package.nix @@ -25,15 +25,15 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Miniscule SVG versions of common logos"; longDescription = '' Super Tiny Web Icons are minuscule SVG versions of your favourite logos. The average size is under 568 bytes! ''; homepage = "https://github.com/edent/SuperTinyIcons"; - license = licenses.mit; - maintainers = [ maintainers.h7x4 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.h7x4 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/su/superTux/package.nix b/pkgs/by-name/su/superTux/package.nix index 1fb3137615f7..5e73328624f7 100644 --- a/pkgs/by-name/su/superTux/package.nix +++ b/pkgs/by-name/su/superTux/package.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { ln -s $out/games/supertux2 $out/bin ''; - meta = with lib; { + meta = { description = "Classic 2D jump'n run sidescroller game"; homepage = "https://supertux.github.io/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; linux; mainProgram = "supertux2"; }; } diff --git a/pkgs/by-name/su/supercronic/package.nix b/pkgs/by-name/su/supercronic/package.nix index 6e8741544101..6f80ee672935 100644 --- a/pkgs/by-name/su/supercronic/package.nix +++ b/pkgs/by-name/su/supercronic/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { ldflags = [ "-X main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Cron tool designed for use in containers"; homepage = "https://github.com/aptible/supercronic"; - license = licenses.mit; - maintainers = with maintainers; [ nasageek ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nasageek ]; mainProgram = "supercronic"; }; } diff --git a/pkgs/by-name/su/superd/package.nix b/pkgs/by-name/su/superd/package.nix index 95773ac0e43f..6a66e9df9d74 100644 --- a/pkgs/by-name/su/superd/package.nix +++ b/pkgs/by-name/su/superd/package.nix @@ -34,12 +34,12 @@ buildGoModule rec { installShellCompletion --zsh completions/zsh/superctl ''; - meta = with lib; { + meta = { description = "Unprivileged user service supervisor"; homepage = "https://sr.ht/~craftyguy/superd/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ chuangzhu wentam ]; diff --git a/pkgs/by-name/su/supergfxctl/package.nix b/pkgs/by-name/su/supergfxctl/package.nix index 26d5e3665fb1..fafe02c69c83 100644 --- a/pkgs/by-name/su/supergfxctl/package.nix +++ b/pkgs/by-name/su/supergfxctl/package.nix @@ -42,11 +42,11 @@ rustPlatform.buildRustPackage rec { install -Dm444 -t $out/lib/systemd/system/ data/supergfxd.service ''; - meta = with lib; { + meta = { description = "GPU switching utility, mostly for ASUS laptops"; homepage = "https://gitlab.com/asus-linux/supergfxctl"; - license = licenses.mpl20; + license = lib.licenses.mpl20; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.k900 ]; + maintainers = [ lib.maintainers.k900 ]; }; } diff --git a/pkgs/by-name/su/supervise/package.nix b/pkgs/by-name/su/supervise/package.nix index fdc54aac4c13..1966e77f8d88 100644 --- a/pkgs/by-name/su/supervise/package.nix +++ b/pkgs/by-name/su/supervise/package.nix @@ -14,10 +14,10 @@ stdenv.mkDerivation rec { sha256 = "0jk6q2f67pfs18ah040lmsbvbrnjap7w04jjddsfn1j5bcrvs13x"; }; - meta = with lib; { + meta = { homepage = "https://github.com/catern/supervise"; description = "Minimal unprivileged process supervisor making use of modern Linux features"; - platforms = platforms.linux; - license = licenses.gpl3; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/su/surf-display/package.nix b/pkgs/by-name/su/surf-display/package.nix index ca70c40a4347..82abc8d1a26e 100644 --- a/pkgs/by-name/su/surf-display/package.nix +++ b/pkgs/by-name/su/surf-display/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { providedSessions = [ "surf-display" ]; }; - meta = with lib; { + meta = { description = "Kiosk browser session manager based on the surf browser"; mainProgram = "surf-display"; homepage = "https://code.it-zukunft-schule.de/cgit/surf-display/"; maintainers = [ ]; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/su/surf/package.nix b/pkgs/by-name/su/surf/package.nix index fe1c29899ae5..471e69f60623 100644 --- a/pkgs/by-name/su/surf/package.nix +++ b/pkgs/by-name/su/surf/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed. master is supposed to support 4.1 # but it crashes with BadWindow X Error broken = true; @@ -88,8 +88,8 @@ stdenv.mkDerivation rec { surf to another URI by setting its XProperties. ''; homepage = "https://surf.suckless.org"; - license = licenses.mit; + license = lib.licenses.mit; platforms = webkitgtk_4_1.meta.platforms; - maintainers = with maintainers; [ joachifm ]; + maintainers = with lib.maintainers; [ joachifm ]; }; } diff --git a/pkgs/by-name/su/surge-cli/package.nix b/pkgs/by-name/su/surge-cli/package.nix index 0431c69f04d7..dec1b1f29089 100644 --- a/pkgs/by-name/su/surge-cli/package.nix +++ b/pkgs/by-name/su/surge-cli/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = with lib; { + meta = { mainProgram = "surge"; description = "CLI for the surge.sh CDN"; homepage = "https://surge.sh"; - license = licenses.mit; - maintainers = with maintainers; [ MoritzBoehme ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MoritzBoehme ]; }; } diff --git a/pkgs/by-name/su/suricata/package.nix b/pkgs/by-name/su/suricata/package.nix index 4c9e62277e50..c6df3153bb46 100644 --- a/pkgs/by-name/su/suricata/package.nix +++ b/pkgs/by-name/su/suricata/package.nix @@ -169,10 +169,10 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) suricata; }; - meta = with lib; { + meta = { description = "Free and open source, mature, fast and robust network threat detection engine"; homepage = "https://suricata.io"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/su/surreal-engine/package.nix b/pkgs/by-name/su/surreal-engine/package.nix index 4a6766060d3d..f12e5b6e2afc 100644 --- a/pkgs/by-name/su/surreal-engine/package.nix +++ b/pkgs/by-name/su/surreal-engine/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "Reimplementation of the original Unreal Engine"; mainProgram = "SurrealEngine"; homepage = "https://github.com/dpjudas/SurrealEngine"; - license = licenses.zlib; - maintainers = with maintainers; [ hughobrien ]; - platforms = platforms.linux; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ hughobrien ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/su/surrealdb-migrations/package.nix b/pkgs/by-name/su/surrealdb-migrations/package.nix index b1047590fd11..025b8b6c1ea3 100644 --- a/pkgs/by-name/su/surrealdb-migrations/package.nix +++ b/pkgs/by-name/su/surrealdb-migrations/package.nix @@ -52,11 +52,11 @@ rustPlatform.buildRustPackage { }; }; - meta = with lib; { + meta = { description = "Awesome SurrealDB migration tool, with a user-friendly CLI and a versatile Rust library that enables seamless integration into any project"; homepage = "https://crates.io/crates/surrealdb-migrations"; mainProgram = "surrealdb-migrations"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/su/surrealist/package.nix b/pkgs/by-name/su/surrealist/package.nix index 152fc712125c..fb28a4b024d6 100644 --- a/pkgs/by-name/su/surrealist/package.nix +++ b/pkgs/by-name/su/surrealist/package.nix @@ -166,15 +166,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Visual management of your SurrealDB database"; homepage = "https://surrealdb.com/surrealist"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "surrealist"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ frankp dmitriiStepanidenko ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/su/suscan/package.nix b/pkgs/by-name/su/suscan/package.nix index 0c052705cc26..55956ed45755 100644 --- a/pkgs/by-name/su/suscan/package.nix +++ b/pkgs/by-name/su/suscan/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Channel scanner based on sigutils library"; homepage = "https://github.com/BatchDrake/suscan"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ polygon oxapentane ]; diff --git a/pkgs/by-name/su/suwayomi-server/package.nix b/pkgs/by-name/su/suwayomi-server/package.nix index c88cd902cba2..777933a88149 100644 --- a/pkgs/by-name/su/suwayomi-server/package.nix +++ b/pkgs/by-name/su/suwayomi-server/package.nix @@ -40,7 +40,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { suwayomi-server-without-auth = nixosTests.suwayomi-server.without-auth; }; - meta = with lib; { + meta = { description = "Free and open source manga reader server that runs extensions built for Mihon (Tachiyomi)"; longDescription = '' Suwayomi is an independent Mihon (Tachiyomi) compatible software and is not a Fork of Mihon (Tachiyomi). @@ -50,10 +50,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/Suwayomi/Suwayomi-Server"; downloadPage = "https://github.com/Suwayomi/Suwayomi-Server/releases"; changelog = "https://github.com/Suwayomi/Suwayomi-Server/releases/tag/v${finalAttrs.version}"; - license = licenses.mpl20; + license = lib.licenses.mpl20; platforms = jdk.meta.platforms; - sourceProvenance = [ sourceTypes.binaryBytecode ]; - maintainers = with maintainers; [ ratcornu ]; + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; + maintainers = with lib.maintainers; [ ratcornu ]; mainProgram = "tachidesk-server"; }; }) diff --git a/pkgs/by-name/sv/sv-lang/package.nix b/pkgs/by-name/sv/sv-lang/package.nix index ee4ef1d3c843..8ab3836fc923 100644 --- a/pkgs/by-name/sv/sv-lang/package.nix +++ b/pkgs/by-name/sv/sv-lang/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation (finalAttrs: { # The error occurs when using catch2_3 in nixpkgs, not when fetching catch2_3 using CMake doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "SystemVerilog compiler and language services"; homepage = "https://github.com/MikePopoloski/slang"; - license = licenses.mit; - maintainers = with maintainers; [ sharzy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sharzy ]; mainProgram = "slang"; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/by-name/sv/svaba/package.nix b/pkgs/by-name/sv/svaba/package.nix index 97ed8268121b..84be387a2e82 100644 --- a/pkgs/by-name/sv/svaba/package.nix +++ b/pkgs/by-name/sv/svaba/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Structural variant and INDEL caller for DNA sequencing data, using genome-wide local assembly"; mainProgram = "svaba"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/walaj/svaba"; - platforms = platforms.linux; + platforms = lib.platforms.linux; longDescription = '' SvABA is a method for detecting structural variants in sequencing data using genome-wide local assembly. Under the hood, SvABA uses a custom diff --git a/pkgs/by-name/sv/svg2pdf/package.nix b/pkgs/by-name/sv/svg2pdf/package.nix index dafbaa95d41c..7f804bb1c697 100644 --- a/pkgs/by-name/sv/svg2pdf/package.nix +++ b/pkgs/by-name/sv/svg2pdf/package.nix @@ -21,15 +21,15 @@ rustPlatform.buildRustPackage rec { "-p=svg2pdf-cli" ]; - meta = with lib; { + meta = { description = "Convert SVG files to PDFs"; homepage = "https://github.com/typst/svg2pdf"; changelog = "https://github.com/typst/svg2pdf/releases/tag/${src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "svg2pdf"; diff --git a/pkgs/by-name/sv/svgcleaner/package.nix b/pkgs/by-name/sv/svgcleaner/package.nix index 0b4f13f14e8d..e57195004c96 100644 --- a/pkgs/by-name/sv/svgcleaner/package.nix +++ b/pkgs/by-name/sv/svgcleaner/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-5HRhKW1VbecUdc+iad3hOKsR82JI2Pgtio3z/8pqZIg="; - meta = with lib; { + meta = { description = "Clean and optimize SVG files from unnecessary data"; homepage = "https://github.com/RazrFalcon/SVGCleaner"; changelog = "https://github.com/RazrFalcon/svgcleaner/releases"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "svgcleaner"; }; diff --git a/pkgs/by-name/sv/sview/package.nix b/pkgs/by-name/sv/sview/package.nix index 7f62b2195278..2604ba7ed0ce 100644 --- a/pkgs/by-name/sv/sview/package.nix +++ b/pkgs/by-name/sv/sview/package.nix @@ -70,16 +70,16 @@ stdenv.mkDerivation rec { --set FONTCONFIG_FILE $out/share/sView/fonts/fonts.conf ''; - meta = with lib; { + meta = { description = "Viewer for 3D stereoscopic videos and images"; homepage = "https://www.sview.ru/en/"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-40 gpl3Only asl20 ]; - maintainers = with maintainers; [ mx2uller ]; + maintainers = with lib.maintainers; [ mx2uller ]; mainProgram = "sView"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sv/svix-cli/package.nix b/pkgs/by-name/sv/svix-cli/package.nix index 27072fe6708b..8815e66b3ac7 100644 --- a/pkgs/by-name/sv/svix-cli/package.nix +++ b/pkgs/by-name/sv/svix-cli/package.nix @@ -38,10 +38,10 @@ buildGoModule rec { "-X github.com/svix/svix-cli/version.Version=v${version}" ]; - meta = with lib; { + meta = { description = "CLI for interacting with the Svix API"; homepage = "https://github.com/svix/svix-cli/"; - license = licenses.gpl3; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/by-name/sv/svls/package.nix b/pkgs/by-name/sv/svls/package.nix index 7ec20148fd15..1ab6c70971cc 100644 --- a/pkgs/by-name/sv/svls/package.nix +++ b/pkgs/by-name/sv/svls/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-2SOCv8xeaRVlpJrBd9po5KgNY7ZSraw4UNsE0gRTbLs="; - meta = with lib; { + meta = { description = "SystemVerilog language server"; mainProgram = "svls"; homepage = "https://github.com/dalance/svls"; - license = licenses.mit; - maintainers = with maintainers; [ trepetti ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ trepetti ]; }; } diff --git a/pkgs/by-name/sv/svndumpsanitizer/package.nix b/pkgs/by-name/sv/svndumpsanitizer/package.nix index 486bcf53f6e3..43c75f801e4b 100644 --- a/pkgs/by-name/sv/svndumpsanitizer/package.nix +++ b/pkgs/by-name/sv/svndumpsanitizer/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation { install -Dm555 svndumpsanitizer -t $out/bin runHook postInstall ''; - meta = with lib; { + meta = { description = "Alternative to svndumpfilter that discovers which nodes should actually be kept"; homepage = "https://miria.homelinuxserver.org/svndumpsanitizer"; downloadPage = "https://github.com/dsuni/svndumpsanitizer"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ lafrenierejm ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lafrenierejm ]; mainProgram = "svndumpsanitizer"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sv/svox/package.nix b/pkgs/by-name/sv/svox/package.nix index b859234e612a..dcd3e554d653 100644 --- a/pkgs/by-name/sv/svox/package.nix +++ b/pkgs/by-name/sv/svox/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Text-to-speech engine"; homepage = "https://android.googlesource.com/platform/external/svox"; - platforms = platforms.linux; - license = licenses.asl20; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "pico2wave"; }; diff --git a/pkgs/by-name/sv/svp/package.nix b/pkgs/by-name/sv/svp/package.nix index da8f22499b6c..d2d30a4d7d03 100644 --- a/pkgs/by-name/sv/svp/package.nix +++ b/pkgs/by-name/sv/svp/package.nix @@ -149,13 +149,13 @@ stdenv.mkDerivation { }) ]; - meta = with lib; { + meta = { mainProgram = "SVPManager"; description = "SmoothVideo Project 4 (SVP4) converts any video to 60 fps (and even higher) and performs this in real time right in your favorite video player"; homepage = "https://www.svp-team.com/wiki/SVP:Linux"; platforms = [ "x86_64-linux" ]; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; maintainers = with lib.maintainers; [ xddxdd ]; }; } diff --git a/pkgs/by-name/sv/svrcore/package.nix b/pkgs/by-name/sv/svrcore/package.nix index f78f7f918e60..cc702b200130 100644 --- a/pkgs/by-name/sv/svrcore/package.nix +++ b/pkgs/by-name/sv/svrcore/package.nix @@ -22,9 +22,9 @@ stdenv.mkDerivation rec { nspr ]; - meta = with lib; { + meta = { description = "Secure PIN handling using NSS crypto"; - license = licenses.mpl11; - platforms = platforms.all; + license = lib.licenses.mpl11; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sv/svt-av1/package.nix b/pkgs/by-name/sv/svt-av1/package.nix index 8c8f1db2be33..23c007f26a50 100644 --- a/pkgs/by-name/sv/svt-av1/package.nix +++ b/pkgs/by-name/sv/svt-av1/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.com/AOMediaCodec/SVT-AV1"; description = "AV1-compliant encoder/decoder library core"; @@ -55,11 +55,11 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/v${finalAttrs.version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ aom bsd3 ]; mainProgram = "SvtAv1EncApp"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sv/svu/package.nix b/pkgs/by-name/sv/svu/package.nix index 33a7edcff906..81e09d06f760 100644 --- a/pkgs/by-name/sv/svu/package.nix +++ b/pkgs/by-name/sv/svu/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { passthru.tests.version = testers.testVersion { package = svu; }; - meta = with lib; { + meta = { description = "Semantic Version Util"; homepage = "https://github.com/caarlos0/svu"; - maintainers = with maintainers; [ caarlos0 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ caarlos0 ]; + license = lib.licenses.mit; mainProgram = "svu"; }; } diff --git a/pkgs/by-name/sw/swagger-cli/package.nix b/pkgs/by-name/sw/swagger-cli/package.nix index 5b72e1e8d5d4..6edc192d6741 100644 --- a/pkgs/by-name/sw/swagger-cli/package.nix +++ b/pkgs/by-name/sw/swagger-cli/package.nix @@ -25,11 +25,11 @@ buildNpmPackage rec { find $out/lib/node_modules -xtype l -delete ''; - meta = with lib; { + meta = { description = "Swagger 2.0 and OpenAPI 3.0 command-line tool"; homepage = "https://apitools.dev/swagger-cli/"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "swagger-cli"; }; } diff --git a/pkgs/by-name/sw/swagger-codegen/package.nix b/pkgs/by-name/sw/swagger-codegen/package.nix index f973f4e9fcff..de579b4f15cf 100644 --- a/pkgs/by-name/sw/swagger-codegen/package.nix +++ b/pkgs/by-name/sw/swagger-codegen/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { --add-flags "-jar $out/share/java/${jarfilename}" ''; - meta = with lib; { + meta = { description = "Allows generation of API client libraries (SDK generation), server stubs and documentation automatically given an OpenAPI Spec"; homepage = "https://github.com/swagger-api/swagger-codegen"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = [ maintainers.jraygauthier ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.jraygauthier ]; mainProgram = "swagger-codegen"; }; } diff --git a/pkgs/by-name/sw/swagger-codegen3/package.nix b/pkgs/by-name/sw/swagger-codegen3/package.nix index 39c994df36cd..ff946a588eae 100644 --- a/pkgs/by-name/sw/swagger-codegen3/package.nix +++ b/pkgs/by-name/sw/swagger-codegen3/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation rec { command = "swagger-codegen3 version"; }; - meta = with lib; { + meta = { description = "Allows generation of API client libraries (SDK generation), server stubs and documentation automatically given an OpenAPI Spec"; homepage = "https://github.com/swagger-api/swagger-codegen/tree/3.0.0"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = [ maintainers._1000101 ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers._1000101 ]; mainProgram = "swagger-codegen3"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sw/swaggerhole/package.nix b/pkgs/by-name/sw/swaggerhole/package.nix index a6d6868ff1c0..207d7ebc8571 100644 --- a/pkgs/by-name/sw/swaggerhole/package.nix +++ b/pkgs/by-name/sw/swaggerhole/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication { "swaggerhole" ]; - meta = with lib; { + meta = { description = "Tool to searching for secret on swaggerhub"; mainProgram = "swaggerhole"; homepage = "https://github.com/Liodeus/swaggerHole"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/sw/swaglyrics/package.nix b/pkgs/by-name/sw/swaglyrics/package.nix index 694df9581774..9f4d2026f85e 100644 --- a/pkgs/by-name/sw/swaglyrics/package.nix +++ b/pkgs/by-name/sw/swaglyrics/package.nix @@ -63,11 +63,11 @@ python3.pkgs.buildPythonApplication { "swaglyrics" ]; - meta = with lib; { + meta = { description = "Lyrics fetcher for currently playing Spotify song"; homepage = "https://github.com/SwagLyrics/SwagLyrics-For-Spotify"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "swaglyrics"; }; } diff --git a/pkgs/by-name/sw/swaks/package.nix b/pkgs/by-name/sw/swaks/package.nix index 7e31e49cef11..f4d8510d0e57 100644 --- a/pkgs/by-name/sw/swaks/package.nix +++ b/pkgs/by-name/sw/swaks/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { homepage = "http://www.jetmore.org/john/code/swaks/"; description = "Featureful, flexible, scriptable, transaction-oriented SMTP test tool"; mainProgram = "swaks"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sw/swappy/package.nix b/pkgs/by-name/sw/swappy/package.nix index b7aafe64ea14..a1387ad5d74e 100644 --- a/pkgs/by-name/sw/swappy/package.nix +++ b/pkgs/by-name/sw/swappy/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { "-Dc_args=-I${glib.dev}/include/gio-unix-2.0" ]; - meta = with lib; { + meta = { description = "Wayland native snapshot editing tool, inspired by Snappy on macOS"; homepage = "https://github.com/jtheoof/swappy"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "swappy"; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/swapview/package.nix b/pkgs/by-name/sw/swapview/package.nix index 1295d415d43d..339d8e3a883f 100644 --- a/pkgs/by-name/sw/swapview/package.nix +++ b/pkgs/by-name/sw/swapview/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-kLWd8dg63oA4sPMPPkRn+HsU+v+gQAiniBWI0i7JszM="; - meta = with lib; { + meta = { description = "Simple program to view processes' swap usage on Linux"; mainProgram = "swapview"; homepage = "https://github.com/lilydjwg/swapview"; - platforms = platforms.linux; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ oxalica ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ oxalica ]; }; } diff --git a/pkgs/by-name/sw/swarm/package.nix b/pkgs/by-name/sw/swarm/package.nix index b4432ace0953..7ae9e838e2d3 100644 --- a/pkgs/by-name/sw/swarm/package.nix +++ b/pkgs/by-name/sw/swarm/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation { install -Dm644 Doc/swarm.1 $out/share/man/man1/swarm.1 ''; - meta = with lib; { + meta = { description = "Verification script generator for Spin"; mainProgram = "swarm"; homepage = "http://spinroot.com/"; - license = licenses.free; - platforms = platforms.unix; + license = lib.licenses.free; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sw/sway-assign-cgroups/package.nix b/pkgs/by-name/sw/sway-assign-cgroups/package.nix index 31479315cd0d..ea0e52cf2796 100644 --- a/pkgs/by-name/sw/sway-assign-cgroups/package.nix +++ b/pkgs/by-name/sw/sway-assign-cgroups/package.nix @@ -30,7 +30,7 @@ python3Packages.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Place GUI applications into systemd scopes for systemd-oomd compatibility"; mainProgram = "assign-cgroups.py"; longDescription = '' @@ -44,8 +44,8 @@ python3Packages.buildPythonApplication rec { Therefore it's recommended to supplement the script with use of systemd user services for such background apps. ''; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ nickhu ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nickhu ]; }; } diff --git a/pkgs/by-name/sw/sway-audio-idle-inhibit/package.nix b/pkgs/by-name/sw/sway-audio-idle-inhibit/package.nix index f30cfb5f98c1..63bd0529ed38 100644 --- a/pkgs/by-name/sw/sway-audio-idle-inhibit/package.nix +++ b/pkgs/by-name/sw/sway-audio-idle-inhibit/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { systemd ]; - meta = with lib; { + meta = { description = "Prevents swayidle from sleeping while any application is outputting or receiving audio"; homepage = "https://github.com/ErikReider/SwayAudioIdleInhibit"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ rafaelrc ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rafaelrc ]; mainProgram = "sway-audio-idle-inhibit"; }; }) diff --git a/pkgs/by-name/sw/sway-new-workspace/package.nix b/pkgs/by-name/sw/sway-new-workspace/package.nix index 3c5887d40fa8..de2e4ae5d503 100644 --- a/pkgs/by-name/sw/sway-new-workspace/package.nix +++ b/pkgs/by-name/sw/sway-new-workspace/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Gxqg0FqIU7e1oZ1inCe/xN3IXyQkMAt3yfbAfhfxy1o="; - meta = with lib; { + meta = { description = "Command to create new Sway workpaces"; homepage = "https://github.com/nzig/sway-new-workspace"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "sway-new-workspace"; - maintainers = with maintainers; [ bbenno ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ bbenno ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/sway-overfocus/package.nix b/pkgs/by-name/sw/sway-overfocus/package.nix index 1d15c5cdc2a4..15467dee8a1d 100644 --- a/pkgs/by-name/sw/sway-overfocus/package.nix +++ b/pkgs/by-name/sw/sway-overfocus/package.nix @@ -23,12 +23,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Better focus navigation for sway and i3"; homepage = "https://github.com/korreman/sway-overfocus"; changelog = "https://github.com/korreman/sway-overfocus/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = [ maintainers.ivan770 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ivan770 ]; mainProgram = "sway-overfocus"; }; } diff --git a/pkgs/by-name/sw/sway-scratch/package.nix b/pkgs/by-name/sw/sway-scratch/package.nix index cedbcc7bacbf..f80b47582986 100644 --- a/pkgs/by-name/sw/sway-scratch/package.nix +++ b/pkgs/by-name/sw/sway-scratch/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Automatically starting named scratchpads for sway"; homepage = "https://github.com/aokellermann/sway-scratch"; - license = licenses.mit; - maintainers = with maintainers; [ LilleAila ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ LilleAila ]; mainProgram = "sway-scratch"; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/sw/swaybg/package.nix b/pkgs/by-name/sw/swaybg/package.nix index b019b1411c8a..5dc16829e4f8 100644 --- a/pkgs/by-name/sw/swaybg/package.nix +++ b/pkgs/by-name/sw/swaybg/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Wallpaper tool for Wayland compositors"; inherit (src.meta) homepage; longDescription = '' @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { Wayland compositor which implements the following Wayland protocols: wlr-layer-shell, xdg-output, and xdg-shell. ''; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "swaybg"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ryan4yin ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/swaycons/package.nix b/pkgs/by-name/sw/swaycons/package.nix index 988ebdf007ef..77ea42527bee 100644 --- a/pkgs/by-name/sw/swaycons/package.nix +++ b/pkgs/by-name/sw/swaycons/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-LE+YEFmkB4EBQcuxbExN9Td5LWpI4AZgyVHXdTyq7gU="; - meta = with lib; { + meta = { description = "Window Icons in Sway with Nerd Fonts"; mainProgram = "swaycons"; homepage = "https://github.com/allie-wake-up/swaycons"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ aacebedo ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aacebedo ]; }; } diff --git a/pkgs/by-name/sw/swaycwd/package.nix b/pkgs/by-name/sw/swaycwd/package.nix index 50f30c1c73cf..74af50647077 100644 --- a/pkgs/by-name/sw/swaycwd/package.nix +++ b/pkgs/by-name/sw/swaycwd/package.nix @@ -32,12 +32,12 @@ buildNimPackage (finalAttrs: { nimFlags = [ "--opt:speed" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/cab404/swaycwd"; description = "Returns cwd for shell in currently focused sway window, or home directory if cannot find shell"; - maintainers = with maintainers; [ cab404 ]; - platforms = platforms.linux; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ cab404 ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; mainProgram = "swaycwd"; }; }) diff --git a/pkgs/by-name/sw/swayidle/package.nix b/pkgs/by-name/sw/swayidle/package.nix index 72ca93e7d2b0..073cf79caf82 100644 --- a/pkgs/by-name/sw/swayidle/package.nix +++ b/pkgs/by-name/sw/swayidle/package.nix @@ -50,16 +50,16 @@ stdenv.mkDerivation rec { --replace '"sh"' '"${runtimeShell}"' ''; - meta = with lib; { + meta = { description = "Idle management daemon for Wayland"; inherit (src.meta) homepage; longDescription = '' Sway's idle management daemon. It is compatible with any Wayland compositor which implements the KDE idle protocol. ''; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "swayidle"; - maintainers = with maintainers; [ wineee ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/swaykbdd/package.nix b/pkgs/by-name/sw/swaykbdd/package.nix index 07d73adb07cd..f8939ab1e22d 100644 --- a/pkgs/by-name/sw/swaykbdd/package.nix +++ b/pkgs/by-name/sw/swaykbdd/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ json_c ]; - meta = with lib; { + meta = { description = "Per-window keyboard layout for Sway"; homepage = "https://github.com/artemsen/swaykbdd"; - license = licenses.mit; - maintainers = with maintainers; [ ivankovnatsky ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ivankovnatsky ]; + platforms = lib.platforms.linux; mainProgram = "swaykbdd"; }; } diff --git a/pkgs/by-name/sw/swaylock-effects/package.nix b/pkgs/by-name/sw/swaylock-effects/package.nix index 42c59876ecb1..6f9c023b06dc 100644 --- a/pkgs/by-name/sw/swaylock-effects/package.nix +++ b/pkgs/by-name/sw/swaylock-effects/package.nix @@ -54,15 +54,15 @@ stdenv.mkDerivation rec { "-Dman-pages=enabled" ]; - meta = with lib; { + meta = { description = "Screen locker for Wayland"; longDescription = '' Swaylock, with fancy effects ''; mainProgram = "swaylock"; inherit (src.meta) homepage; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ gnxlxnxx ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ gnxlxnxx ]; }; } diff --git a/pkgs/by-name/sw/swaylock-fancy/package.nix b/pkgs/by-name/sw/swaylock-fancy/package.nix index eae17cde4c1e..a63cf6232ee7 100644 --- a/pkgs/by-name/sw/swaylock-fancy/package.nix +++ b/pkgs/by-name/sw/swaylock-fancy/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation { --prefix PATH : "${depsPath}" ''; - meta = with lib; { + meta = { description = "swaylock bash script that takes a screenshot of the desktop, blurs the background and adds a lock icon and text"; homepage = "https://github.com/Big-B/swaylock-fancy"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ frogamic ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ frogamic ]; inherit mainProgram; }; } diff --git a/pkgs/by-name/sw/swaylock/package.nix b/pkgs/by-name/sw/swaylock/package.nix index 95c55943e525..b81d4da16319 100644 --- a/pkgs/by-name/sw/swaylock/package.nix +++ b/pkgs/by-name/sw/swaylock/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { "-Dman-pages=enabled" ]; - meta = with lib; { + meta = { description = "Screen locker for Wayland"; longDescription = '' swaylock is a screen locking utility for Wayland compositors. @@ -64,8 +64,8 @@ stdenv.mkDerivation rec { ''; inherit (src.meta) homepage; mainProgram = "swaylock"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; }; } diff --git a/pkgs/by-name/sw/swaymux/package.nix b/pkgs/by-name/sw/swaymux/package.nix index 47b075aa16b3..e2e3443a5cb3 100644 --- a/pkgs/by-name/sw/swaymux/package.nix +++ b/pkgs/by-name/sw/swaymux/package.nix @@ -30,16 +30,16 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { changelog = "https://git.grimmauld.de/Grimmauld/swaymux/commits/branch/main"; description = "Program to quickly navigate sway"; homepage = "https://git.grimmauld.de/Grimmauld/swaymux"; - license = licenses.bsd3; + license = lib.licenses.bsd3; longDescription = '' Swaymux allows the user to quickly navigate and administrate outputs, workspaces and containers in a tmux-style approach. ''; mainProgram = "swaymux"; - maintainers = with maintainers; [ grimmauld ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ grimmauld ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/sw/swaynag-battery/package.nix b/pkgs/by-name/sw/swaynag-battery/package.nix index b9223980ecef..9f0384f18fa7 100644 --- a/pkgs/by-name/sw/swaynag-battery/package.nix +++ b/pkgs/by-name/sw/swaynag-battery/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-h9Zj3zmQ0Xpili5Pl6CXh1L0bb2uL1//B79I4/ron08="; - meta = with lib; { + meta = { homepage = "https://github.com/m00qek/swaynag-battery"; description = "Shows a message when your battery is discharging"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "swaynag-battery"; }; } diff --git a/pkgs/by-name/sw/swayosd/package.nix b/pkgs/by-name/sw/swayosd/package.nix index fb47cb9a7612..f57f154898ae 100644 --- a/pkgs/by-name/sw/swayosd/package.nix +++ b/pkgs/by-name/sw/swayosd/package.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "GTK based on screen display for keyboard shortcuts"; homepage = "https://github.com/ErikReider/SwayOSD"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aleksana barab-i sergioribera ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/swayrbar/package.nix b/pkgs/by-name/sw/swayrbar/package.nix index 55d38175bbce..56c0e094af3a 100644 --- a/pkgs/by-name/sw/swayrbar/package.nix +++ b/pkgs/by-name/sw/swayrbar/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { --prefix PATH : "$out/bin:${lib.makeBinPath [ pulseaudio ]}" ''; - meta = with lib; { + meta = { description = "Status command for sway's swaybar implementing the swaybar-protocol"; homepage = "https://git.sr.ht/~tsdh/swayr#a-idswayrbarswayrbara"; - license = with licenses; [ gpl3Plus ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3Plus ]; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "swayrbar"; }; diff --git a/pkgs/by-name/sw/swaywsr/package.nix b/pkgs/by-name/sw/swaywsr/package.nix index 00b5eb5ae552..c475976d6765 100644 --- a/pkgs/by-name/sw/swaywsr/package.nix +++ b/pkgs/by-name/sw/swaywsr/package.nix @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage { # has not tests doCheck = false; - meta = with lib; { + meta = { description = "Automatically change sway workspace names based on their contents"; mainProgram = "swaywsr"; longDescription = '' @@ -34,7 +34,7 @@ rustPlatform.buildRustPackage { window property for each window in a workspace. ''; homepage = "https://github.com/pedroscaff/swaywsr"; - license = licenses.mit; - maintainers = [ maintainers.sebbadk ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sebbadk ]; }; } diff --git a/pkgs/by-name/sw/sweet-folders/package.nix b/pkgs/by-name/sw/sweet-folders/package.nix index d33df2bd2eb3..bf36f3f1f789 100644 --- a/pkgs/by-name/sw/sweet-folders/package.nix +++ b/pkgs/by-name/sw/sweet-folders/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Folders icons for Sweet GTK theme"; homepage = "https://github.com/EliverLara/Sweet-folders"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/sw/sweet-nova/package.nix b/pkgs/by-name/sw/sweet-nova/package.nix index 6b99c8769c3b..17ef294c93a6 100644 --- a/pkgs/by-name/sw/sweet-nova/package.nix +++ b/pkgs/by-name/sw/sweet-nova/package.nix @@ -42,11 +42,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Dark and colorful, blurry theme for the KDE Plasma desktop"; homepage = "https://github.com/EliverLara/Sweet"; - license = licenses.gpl3Only; - maintainers = [ maintainers.dr460nf1r3 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.dr460nf1r3 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sw/sweet/package.nix b/pkgs/by-name/sw/sweet/package.nix index 77dc46c06e07..807c2e473525 100644 --- a/pkgs/by-name/sw/sweet/package.nix +++ b/pkgs/by-name/sw/sweet/package.nix @@ -98,14 +98,14 @@ lib.checkListOfEnum "${pname}: color variants" colorVariantList colorVariants runHook postInstall ''; - meta = with lib; { + meta = { description = "Light and dark colorful Gtk3.20+ theme"; homepage = "https://github.com/EliverLara/Sweet"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fuzen d3vil0p3r ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sw/swego/package.nix b/pkgs/by-name/sw/swego/package.nix index 0d7b69bdf048..f339c40bf21c 100644 --- a/pkgs/by-name/sw/swego/package.nix +++ b/pkgs/by-name/sw/swego/package.nix @@ -27,7 +27,7 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Simple Webserver"; longDescription = '' Swiss army knife Webserver in Golang. Similar to the Python @@ -35,8 +35,8 @@ buildGoModule rec { ''; homepage = "https://github.com/nodauf/Swego"; changelog = "https://github.com/nodauf/Swego/releases/tag/${src.tag}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; # darwin crashes with: # src/controllers/parsingArgs.go:130:4: undefined: PrintEmbeddedFiles broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/sw/swell-foop/package.nix b/pkgs/by-name/sw/swell-foop/package.nix index d22ac90d4e7b..5d5d8cc70f1e 100644 --- a/pkgs/by-name/sw/swell-foop/package.nix +++ b/pkgs/by-name/sw/swell-foop/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/swell-foop"; changelog = "https://gitlab.gnome.org/GNOME/swell-foop/-/tree/${finalAttrs.version}?ref_type=tags"; description = "Puzzle game, previously known as Same GNOME"; mainProgram = "swell-foop"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/sw/swh_lv2/package.nix b/pkgs/by-name/sw/swh_lv2/package.nix index 6e74700ef624..8ad6c4ce19ee 100644 --- a/pkgs/by-name/sw/swh_lv2/package.nix +++ b/pkgs/by-name/sw/swh_lv2/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { installPhase = "make install-system"; - meta = with lib; { + meta = { homepage = "http://plugin.org.uk"; description = "LV2 version of Steve Harris' SWH plugins"; longDescription = '' @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { chorus, flanger, decimater, oscillator, gverb, phasers, harmonic generators, surround encoders and more. ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/swiftdefaultapps/package.nix b/pkgs/by-name/sw/swiftdefaultapps/package.nix index b929684511f9..022f31cbdfde 100644 --- a/pkgs/by-name/sw/swiftdefaultapps/package.nix +++ b/pkgs/by-name/sw/swiftdefaultapps/package.nix @@ -22,12 +22,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "View and change the default application for url schemes and UTIs"; homepage = "https://github.com/Lord-Kamina/SwiftDefaultApps"; - license = licenses.beerware; - maintainers = [ maintainers.malo ]; - platforms = platforms.darwin; + license = lib.licenses.beerware; + maintainers = [ lib.maintainers.malo ]; + platforms = lib.platforms.darwin; mainProgram = "swda"; }; } diff --git a/pkgs/by-name/sw/swiften/package.nix b/pkgs/by-name/sw/swiften/package.nix index dc9dc93e167a..1a313927acd6 100644 --- a/pkgs/by-name/sw/swiften/package.nix +++ b/pkgs/by-name/sw/swiften/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "XMPP library for C++, used by the Swift client"; mainProgram = "swiften-config"; homepage = "http://swift.im/swiften.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.twey ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.twey ]; }; } diff --git a/pkgs/by-name/sw/swingsane/package.nix b/pkgs/by-name/sw/swingsane/package.nix index 7d52e49d5899..06e02f8e0a35 100644 --- a/pkgs/by-name/sw/swingsane/package.nix +++ b/pkgs/by-name/sw/swingsane/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { cp -v -r ${desktopItem}/share/applications $out/share ''; - meta = with lib; { + meta = { description = "Java GUI for SANE scanner servers (saned)"; longDescription = '' SwingSane is a powerful, cross platform, open source Java front-end for @@ -65,9 +65,9 @@ stdenv.mkDerivation rec { crop, etc), PDF and PNG output. ''; homepage = "http://swingsane.com/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; mainProgram = "swingsane"; }; } diff --git a/pkgs/by-name/sw/swtpm/package.nix b/pkgs/by-name/sw/swtpm/package.nix index cf431cc7971c..8f75456b72e7 100644 --- a/pkgs/by-name/sw/swtpm/package.nix +++ b/pkgs/by-name/sw/swtpm/package.nix @@ -138,12 +138,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = { inherit (nixosTests) systemd-cryptenroll; }; - meta = with lib; { + meta = { description = "Libtpms-based TPM emulator"; homepage = "https://github.com/stefanberger/swtpm"; - license = licenses.bsd3; - maintainers = [ maintainers.baloo ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.baloo ]; mainProgram = "swtpm"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/sx/sx-go/package.nix b/pkgs/by-name/sx/sx-go/package.nix index 18679532f617..393f07a6477d 100644 --- a/pkgs/by-name/sx/sx-go/package.nix +++ b/pkgs/by-name/sx/sx-go/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { mv $out/bin/sx $out/bin/${pname} ''; - meta = with lib; { + meta = { description = "Command-line network scanner"; homepage = "https://github.com/v-byte-cpu/sx"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "sx-go"; }; } diff --git a/pkgs/by-name/sy/sycl-info/package.nix b/pkgs/by-name/sy/sycl-info/package.nix index 5393add533ae..676cbb2bee94 100644 --- a/pkgs/by-name/sy/sycl-info/package.nix +++ b/pkgs/by-name/sy/sycl-info/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation { # Required for ronn to compile the manpage. RUBYOPT = "-KU -E utf-8:utf-8"; - meta = with lib; { + meta = { homepage = "https://github.com/codeplaysoftware/sycl-info"; description = "Tool to show information about available SYCL implementations"; mainProgram = "sycl-info"; - platforms = platforms.linux; - license = licenses.asl20; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sy/sylpheed/package.nix b/pkgs/by-name/sy/sylpheed/package.nix index 846ad5369a71..f6149e7e9b6f 100644 --- a/pkgs/by-name/sy/sylpheed/package.nix +++ b/pkgs/by-name/sy/sylpheed/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { # Undefined symbols for architecture arm64: "_OBJC_CLASS_$_NSAutoreleasePool" NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-framework Foundation"; - meta = with lib; { + meta = { homepage = "https://sylpheed.sraoss.jp/en/"; description = "Lightweight and user-friendly e-mail client"; mainProgram = "sylpheed"; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.gpl2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/sy/symbolic-preview/package.nix b/pkgs/by-name/sy/symbolic-preview/package.nix index e49a98c02864..af4ea9f2abbd 100644 --- a/pkgs/by-name/sy/symbolic-preview/package.nix +++ b/pkgs/by-name/sy/symbolic-preview/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation rec { libxml2 ]; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/design/symbolic-preview"; description = "Symbolics made easy"; mainProgram = "symbolic-preview"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/sy/symbolicator/package.nix b/pkgs/by-name/sy/symbolicator/package.nix index 6e84b2c50cf9..07d8d6359dfd 100644 --- a/pkgs/by-name/sy/symbolicator/package.nix +++ b/pkgs/by-name/sy/symbolicator/package.nix @@ -42,11 +42,11 @@ rustPlatform.buildRustPackage rec { # tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Native Symbolication as a Service"; homepage = "https://getsentry.github.io/symbolicator/"; changelog = "https://github.com/getsentry/symbolicator/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "symbolicator"; }; diff --git a/pkgs/by-name/sy/symfpu/package.nix b/pkgs/by-name/sy/symfpu/package.nix index 7d7e2f7b9f73..b8753ef0d800 100644 --- a/pkgs/by-name/sy/symfpu/package.nix +++ b/pkgs/by-name/sy/symfpu/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Implementation of SMT-LIB / IEEE-754 operations in terms of bit-vector operations"; homepage = "https://github.com/martin-cs/symfpu"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ shadaj ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ shadaj ]; }; } diff --git a/pkgs/by-name/sy/symlinks/package.nix b/pkgs/by-name/sy/symlinks/package.nix index c5709e86c110..3ad9d9ce6e8b 100644 --- a/pkgs/by-name/sy/symlinks/package.nix +++ b/pkgs/by-name/sy/symlinks/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { cp symlinks.8 $out/share/man/man8 ''; - meta = with lib; { + meta = { description = "Find and remedy problematic symbolic links on a system"; homepage = "https://github.com/brandt/symlinks"; - license = licenses.mit; - maintainers = with maintainers; [ ckauhaus ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ckauhaus ]; + platforms = lib.platforms.unix; mainProgram = "symlinks"; }; } diff --git a/pkgs/by-name/sy/sympa/package.nix b/pkgs/by-name/sy/sympa/package.nix index ff0767ca46b8..6b69898e9c64 100644 --- a/pkgs/by-name/sy/sympa/package.nix +++ b/pkgs/by-name/sy/sympa/package.nix @@ -118,13 +118,13 @@ stdenv.mkDerivation rec { inherit (nixosTests) sympa; }; - meta = with lib; { + meta = { description = "Open source mailing list manager"; homepage = "https://www.sympa.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sorki ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sy/synadm/package.nix b/pkgs/by-name/sy/synadm/package.nix index 6cfcd2bcc48d..5a3cede9f356 100644 --- a/pkgs/by-name/sy/synadm/package.nix +++ b/pkgs/by-name/sy/synadm/package.nix @@ -39,7 +39,7 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Command line admin tool for Synapse"; mainProgram = "synadm"; longDescription = '' @@ -50,7 +50,7 @@ python3Packages.buildPythonApplication rec { changelog = "https://codeberg.org/synadm/synadm/releases/tag/${src.tag}"; downloadPage = "https://codeberg.org/synadm/synadm"; homepage = "https://synadm.readthedocs.io/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/sy/synapse-bt/package.nix b/pkgs/by-name/sy/synapse-bt/package.nix index d64e37341278..4d0c63eb0290 100644 --- a/pkgs/by-name/sy/synapse-bt/package.nix +++ b/pkgs/by-name/sy/synapse-bt/package.nix @@ -24,10 +24,10 @@ rustPlatform.buildRustPackage { cargoBuildFlags = [ "--all" ]; - meta = with lib; { + meta = { description = "Flexible and fast BitTorrent daemon"; homepage = "https://synapse-bt.org/"; - license = licenses.isc; - maintainers = with maintainers; [ dywedir ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ dywedir ]; }; } diff --git a/pkgs/by-name/sy/synapse/package.nix b/pkgs/by-name/sy/synapse/package.nix index 0ab4e2326c5c..61d0f8509f91 100644 --- a/pkgs/by-name/sy/synapse/package.nix +++ b/pkgs/by-name/sy/synapse/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { zeitgeist ]; - meta = with lib; { + meta = { longDescription = '' Semantic launcher written in Vala that you can use to start applications as well as find and access relevant documents and files by making use of @@ -52,9 +52,9 @@ stdenv.mkDerivation rec { ''; description = "Semantic launcher to start applications and find relevant files"; homepage = "https://launchpad.net/synapse-project"; - license = licenses.gpl3; - maintainers = with maintainers; [ mahe ]; - platforms = with platforms; all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ mahe ]; + platforms = with lib.platforms; all; mainProgram = "synapse"; }; } diff --git a/pkgs/by-name/sy/syncrclone/package.nix b/pkgs/by-name/sy/syncrclone/package.nix index 3c7fec225c7f..ac258e48a4b1 100644 --- a/pkgs/by-name/sy/syncrclone/package.nix +++ b/pkgs/by-name/sy/syncrclone/package.nix @@ -22,13 +22,13 @@ python3.pkgs.buildPythonApplication rec { "syncrclone" ]; - meta = with lib; { + meta = { description = "Bidirectional sync tool for rclone"; homepage = "https://github.com/Jwink3101/syncrclone"; changelog = "https://github.com/Jwink3101/syncrclone/blob/${src.rev}/docs/changelog.md"; - sourceProvenance = with sourceTypes; [ fromSource ]; - license = licenses.mit; - maintainers = with maintainers; [ prominentretail ]; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prominentretail ]; mainProgram = "syncrclone"; }; } diff --git a/pkgs/by-name/sy/synfigstudio/package.nix b/pkgs/by-name/sy/synfigstudio/package.nix index ca1b26f38029..622b7c3b7c87 100644 --- a/pkgs/by-name/sy/synfigstudio/package.nix +++ b/pkgs/by-name/sy/synfigstudio/package.nix @@ -145,11 +145,11 @@ stdenv.mkDerivation { inherit ETL synfig; }; - meta = with lib; { + meta = { description = "2D animation program"; homepage = "https://www.synfig.org"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/sy/synology-cloud-sync-decryption-tool/package.nix b/pkgs/by-name/sy/synology-cloud-sync-decryption-tool/package.nix index 62db0dfe9650..4727880c67bb 100644 --- a/pkgs/by-name/sy/synology-cloud-sync-decryption-tool/package.nix +++ b/pkgs/by-name/sy/synology-cloud-sync-decryption-tool/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { update-source-version synology-cloud-sync-decryption-tool "$version" ''; - meta = with lib; { + meta = { description = "Desktop tool to decrypt data encrypted by Cloud Sync"; homepage = "https://kb.synology.com/en-global/DSM/help/SynologyCloudSyncDecryptionTool/synologycloudsyncdecryptiontool"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ kalbasit ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ kalbasit ]; platforms = [ "x86_64-linux" ]; mainProgram = "SynologyCloudSyncDecryptionTool"; }; diff --git a/pkgs/by-name/sy/synology-drive-client/package.nix b/pkgs/by-name/sy/synology-drive-client/package.nix index dcf40bf80a67..6e0d223348db 100644 --- a/pkgs/by-name/sy/synology-drive-client/package.nix +++ b/pkgs/by-name/sy/synology-drive-client/package.nix @@ -19,12 +19,12 @@ let baseUrl = "https://global.synologydownload.com/download/Utility/SynologyDriveClient"; version = "3.5.1-16101"; buildNumber = lib.last (lib.splitString "-" version); - meta = with lib; { + meta = { description = "Desktop application to synchronize files and folders between the computer and the Synology Drive server"; homepage = "https://www.synology.com/en-global/dsm/feature/drive"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jcouyang MoritzBoehme ]; diff --git a/pkgs/by-name/sy/syntax/package.nix b/pkgs/by-name/sy/syntax/package.nix index 9ba12dfae705..026b2a025e42 100644 --- a/pkgs/by-name/sy/syntax/package.nix +++ b/pkgs/by-name/sy/syntax/package.nix @@ -22,11 +22,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/DmitrySoshnikov/syntax"; description = "Syntactic analysis toolkit, language-agnostic parser generator"; - license = licenses.mit; - maintainers = with maintainers; [ h7x4 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ h7x4 ]; mainProgram = "syntax-cli"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/sy/synthesia/package.nix b/pkgs/by-name/sy/synthesia/package.nix index a4a8b5a573d9..c55a6540c328 100644 --- a/pkgs/by-name/sy/synthesia/package.nix +++ b/pkgs/by-name/sy/synthesia/package.nix @@ -68,13 +68,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fun way to learn how to play the piano"; homepage = "https://synthesiagame.com/"; downloadPage = "https://synthesiagame.com/download"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ ners ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ ners ]; platforms = wineWowPackages.stable.meta.platforms; }; } diff --git a/pkgs/by-name/sy/syscall_limiter/package.nix b/pkgs/by-name/sy/syscall_limiter/package.nix index 97a279431df4..bfd98efece8f 100644 --- a/pkgs/by-name/sy/syscall_limiter/package.nix +++ b/pkgs/by-name/sy/syscall_limiter/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { --replace which ${which}/bin/which ''; - meta = with lib; { + meta = { description = "Start Linux programs with only selected syscalls enabled"; homepage = "https://github.com/vi/syscall_limiter"; - license = licenses.mit; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sy/sysdig-cli-scanner/package.nix b/pkgs/by-name/sy/sysdig-cli-scanner/package.nix index ca6d26eda280..c3881324572d 100644 --- a/pkgs/by-name/sy/sysdig-cli-scanner/package.nix +++ b/pkgs/by-name/sy/sysdig-cli-scanner/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Tool for scanning container images and directories using Sysdig"; longDescription = '' The Sysdig Vulnerability CLI Scanner, sysdig-cli-scanner, is a versatile tool designed to @@ -54,14 +54,14 @@ stdenv.mkDerivation { ''; homepage = "https://docs.sysdig.com/en/docs/installation/sysdig-secure/install-vulnerability-cli-scanner/"; mainProgram = "sysdig-cli-scanner"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ tembleking ]; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ tembleking ]; platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/sy/syslinux/package.nix b/pkgs/by-name/sy/syslinux/package.nix index abc948ed3321..7ef818dc2283 100644 --- a/pkgs/by-name/sy/syslinux/package.nix +++ b/pkgs/by-name/sy/syslinux/package.nix @@ -135,10 +135,10 @@ stdenv.mkDerivation { passthru.tests.biosCdrom = nixosTests.boot.biosCdrom; - meta = with lib; { + meta = { homepage = "https://www.syslinux.org/"; description = "Lightweight bootloader"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; platforms = [ "i686-linux" diff --git a/pkgs/by-name/sy/system-syzygy/package.nix b/pkgs/by-name/sy/system-syzygy/package.nix index 4a3469319075..1071381010c0 100644 --- a/pkgs/by-name/sy/system-syzygy/package.nix +++ b/pkgs/by-name/sy/system-syzygy/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { substituteAll ${desktopFile}/share/applications/system-syzygy.desktop $out/share/applications/system-syzygy.desktop ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Story and a puzzle game, where you solve a variety of puzzle"; mainProgram = "syzygy"; homepage = "https://mdsteele.games/syzygy"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.marius851000 ]; }; } diff --git a/pkgs/by-name/sy/system76-firmware/package.nix b/pkgs/by-name/sy/system76-firmware/package.nix index 8a9eea086b3c..844ea7d7d4e5 100644 --- a/pkgs/by-name/sy/system76-firmware/package.nix +++ b/pkgs/by-name/sy/system76-firmware/package.nix @@ -46,11 +46,11 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Tools for managing firmware updates for system76 devices"; homepage = "https://github.com/pop-os/system76-firmware"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ shlevy ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ shlevy ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/sy/system76-keyboard-configurator/package.nix b/pkgs/by-name/sy/system76-keyboard-configurator/package.nix index 90544b3159f6..1122ae44223c 100644 --- a/pkgs/by-name/sy/system76-keyboard-configurator/package.nix +++ b/pkgs/by-name/sy/system76-keyboard-configurator/package.nix @@ -46,12 +46,12 @@ rustPlatform.buildRustPackage rec { cp -r data/icons $out/share ''; - meta = with lib; { + meta = { description = "Keyboard configuration application for System76 keyboards and laptops"; mainProgram = "system76-keyboard-configurator"; homepage = "https://github.com/pop-os/keyboard-configurator"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ mirrexagon ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ mirrexagon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sy/system76-scheduler/package.nix b/pkgs/by-name/sy/system76-scheduler/package.nix index e7c438c82b6d..4224eacf2d87 100644 --- a/pkgs/by-name/sy/system76-scheduler/package.nix +++ b/pkgs/by-name/sy/system76-scheduler/package.nix @@ -43,16 +43,16 @@ rustPlatform.buildRustPackage { install -D -m 0644 data/*.kdl $out/data/ ''; - meta = with lib; { + meta = { description = "System76 Scheduler"; mainProgram = "system76-scheduler"; homepage = "https://github.com/pop-os/system76-scheduler"; - license = licenses.mpl20; + license = lib.licenses.mpl20; platforms = [ "x86_64-linux" "x86-linux" "aarch64-linux" ]; - maintainers = [ maintainers.cmm ]; + maintainers = [ lib.maintainers.cmm ]; }; } diff --git a/pkgs/by-name/sy/systembus-notify/package.nix b/pkgs/by-name/sy/systembus-notify/package.nix index ce599973c572..821eeeaf3e59 100644 --- a/pkgs/by-name/sy/systembus-notify/package.nix +++ b/pkgs/by-name/sy/systembus-notify/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { # requires a running dbus instance doCheck = false; - meta = with lib; { + meta = { description = "System bus notification daemon"; homepage = "https://github.com/rfjakob/systembus-notify"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; mainProgram = "systembus-notify"; }; } diff --git a/pkgs/by-name/sy/systemc/package.nix b/pkgs/by-name/sy/systemc/package.nix index 5e78ee093f12..19c55f980088 100644 --- a/pkgs/by-name/sy/systemc/package.nix +++ b/pkgs/by-name/sy/systemc/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; - meta = with lib; { + meta = { description = "Language for System-level design, modeling and verification"; homepage = "https://systemc.org/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ amiloradovsky ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ amiloradovsky ]; }; } diff --git a/pkgs/by-name/sy/systemd-journal2gelf/package.nix b/pkgs/by-name/sy/systemd-journal2gelf/package.nix index da4d9c8bbf42..4601265a82cc 100644 --- a/pkgs/by-name/sy/systemd-journal2gelf/package.nix +++ b/pkgs/by-name/sy/systemd-journal2gelf/package.nix @@ -24,11 +24,11 @@ buildGoModule { doCheck = false; - meta = with lib; { + meta = { description = "Export entries from systemd's journal and send them to a graylog server using gelf"; homepage = "https://github.com/parse-nl/SystemdJournal2Gelf"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fpletz ]; mainProgram = "SystemdJournal2Gelf"; diff --git a/pkgs/by-name/sy/systemd-lock-handler/package.nix b/pkgs/by-name/sy/systemd-lock-handler/package.nix index edb4a9028c5b..79fbce5a0699 100644 --- a/pkgs/by-name/sy/systemd-lock-handler/package.nix +++ b/pkgs/by-name/sy/systemd-lock-handler/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~whynothugo/systemd-lock-handler"; description = "Translates systemd-system lock/sleep signals into systemd-user target activations"; - license = licenses.isc; - maintainers = with maintainers; [ liff ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ liff ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sy/systeroid/package.nix b/pkgs/by-name/sy/systeroid/package.nix index 7e7c312944d4..6a934a616e64 100644 --- a/pkgs/by-name/sy/systeroid/package.nix +++ b/pkgs/by-name/sy/systeroid/package.nix @@ -31,15 +31,15 @@ rustPlatform.buildRustPackage rec { # tries to access /sys/ doCheck = false; - meta = with lib; { + meta = { description = "More powerful alternative to sysctl(8) with a terminal user interface"; homepage = "https://github.com/orhun/systeroid"; changelog = "https://github.com/orhun/systeroid/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/sy/systrayhelper/package.nix b/pkgs/by-name/sy/systrayhelper/package.nix index 2bf9e9e99b7c..2e940e34fc60 100644 --- a/pkgs/by-name/sy/systrayhelper/package.nix +++ b/pkgs/by-name/sy/systrayhelper/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { doCheck = false; # Display required - meta = with lib; { + meta = { description = "Systray utility written in go, using json over stdio for control and events"; homepage = "https://github.com/ssbc/systrayhelper"; - maintainers = with maintainers; [ cryptix ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ cryptix ]; + license = lib.licenses.mit; # It depends on the inputs, i guess? not sure about solaris, for instance. go supports it though # I hope nix can figure this out?! ¯\\_(ツ)_/¯ mainProgram = "systrayhelper"; diff --git a/pkgs/by-name/sz/szyszka/package.nix b/pkgs/by-name/sz/szyszka/package.nix index 1674a70f5e85..b3318743902b 100644 --- a/pkgs/by-name/sz/szyszka/package.nix +++ b/pkgs/by-name/sz/szyszka/package.nix @@ -51,11 +51,11 @@ rustPlatform.buildRustPackage rec { -t $out/share/icons/hicolor/scalable/apps ''; - meta = with lib; { + meta = { description = "Simple but powerful and fast bulk file renamer"; homepage = "https://github.com/qarmin/szyszka"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; mainProgram = "szyszka"; }; } diff --git a/pkgs/by-name/t/t/package.nix b/pkgs/by-name/t/t/package.nix index 2662a072b7ec..ca029d36effe 100644 --- a/pkgs/by-name/t/t/package.nix +++ b/pkgs/by-name/t/t/package.nix @@ -11,16 +11,16 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "t"; - meta = with lib; { + meta = { description = "Command-line power tool for Twitter"; homepage = "http://sferik.github.io/t/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "t"; }; } diff --git a/pkgs/by-name/t1/t1utils/package.nix b/pkgs/by-name/t1/t1utils/package.nix index 243e35d8c908..2d6b761af141 100644 --- a/pkgs/by-name/t1/t1utils/package.nix +++ b/pkgs/by-name/t1/t1utils/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "YYd5NbGYcETd/0u5CgUgDKcWRnijVeFwv18aVVbMnyk="; }; - meta = with lib; { + meta = { description = "Collection of simple Type 1 font manipulation programs"; longDescription = '' t1utils is a collection of simple type-1 font manipulation programs. @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { free = true; redistributable = true; }; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/t4/t4kcommon/package.nix b/pkgs/by-name/t4/t4kcommon/package.nix index f59e0309260d..e5da52b7e3fa 100644 --- a/pkgs/by-name/t4/t4kcommon/package.nix +++ b/pkgs/by-name/t4/t4kcommon/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Library of code shared between tuxmath and tuxtype"; homepage = "https://github.com/tux4kids/t4kcommon"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ta/ta-lib/package.nix b/pkgs/by-name/ta/ta-lib/package.nix index 156beab9e3c3..6f7933a3913b 100644 --- a/pkgs/by-name/ta/ta-lib/package.nix +++ b/pkgs/by-name/ta/ta-lib/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { ]; hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Add technical analysis to your own financial market trading applications"; mainProgram = "ta-lib-config"; homepage = "https://ta-lib.org/"; license = lib.licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ rafael ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rafael ]; }; } diff --git a/pkgs/by-name/ta/tab-rs/package.nix b/pkgs/by-name/ta/tab-rs/package.nix index 07ddf39ec89a..7378edad8b84 100644 --- a/pkgs/by-name/ta/tab-rs/package.nix +++ b/pkgs/by-name/ta/tab-rs/package.nix @@ -21,10 +21,10 @@ rustPlatform.buildRustPackage rec { # many tests are failing doCheck = false; - meta = with lib; { + meta = { description = "Intuitive, config-driven terminal multiplexer designed for software & systems engineers"; homepage = "https://github.com/austinjones/tab-rs"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "tab"; broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); # Added 2023-11-13 diff --git a/pkgs/by-name/ta/tab/package.nix b/pkgs/by-name/ta/tab/package.nix index 9bd7719ae29c..1e780fe7ff64 100644 --- a/pkgs/by-name/ta/tab/package.nix +++ b/pkgs/by-name/ta/tab/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Programming language/shell calculator"; mainProgram = "tab"; homepage = "https://tab-lang.xyz"; - license = licenses.boost; - maintainers = with maintainers; [ mstarzyk ]; - platforms = with platforms; unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ mstarzyk ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/ta/tableplus/package.nix b/pkgs/by-name/ta/tableplus/package.nix index 53c7e5c18752..3326898505e0 100644 --- a/pkgs/by-name/ta/tableplus/package.nix +++ b/pkgs/by-name/ta/tableplus/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Database management made easy"; homepage = "https://tableplus.com"; - license = licenses.unfree; - maintainers = with maintainers; [ yamashitax ]; - platforms = platforms.darwin; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ yamashitax ]; + platforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/ta/tabnine/package.nix b/pkgs/by-name/ta/tabnine/package.nix index d93c951272f4..52074f76ef45 100644 --- a/pkgs/by-name/ta/tabnine/package.nix +++ b/pkgs/by-name/ta/tabnine/package.nix @@ -46,8 +46,8 @@ stdenv.mkDerivation { meta = with lib; { homepage = "https://tabnine.com"; description = "Smart Compose for code that uses deep learning to help you write code faster"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = attrNames sources.platforms; - maintainers = with maintainers; [ lovesegfault ]; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/by-name/ta/tabula-java/package.nix b/pkgs/by-name/ta/tabula-java/package.nix index c0ec2ee26bee..7bac5951d1d7 100644 --- a/pkgs/by-name/ta/tabula-java/package.nix +++ b/pkgs/by-name/ta/tabula-java/package.nix @@ -35,7 +35,7 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Library for extracting tables from PDF files"; longDescription = '' tabula-java is the table extraction engine that powers @@ -43,9 +43,9 @@ maven.buildMavenPackage rec { programmatically extract tables from PDFs. ''; homepage = "https://tabula.technology/"; - license = licenses.mit; - maintainers = [ maintainers.jakewaksbaum ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jakewaksbaum ]; + platforms = lib.platforms.all; mainProgram = "tabula-java"; }; } diff --git a/pkgs/by-name/ta/tacacsplus/package.nix b/pkgs/by-name/ta/tacacsplus/package.nix index 64fdee724675..b41918328815 100644 --- a/pkgs/by-name/ta/tacacsplus/package.nix +++ b/pkgs/by-name/ta/tacacsplus/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { "--with-libwrap=no" ]; - meta = with lib; { + meta = { description = "Protocol for authentication, authorization and accounting (AAA) services for routers and network devices"; homepage = "http://www.shrubbery.net/tac_plus/"; - license = licenses.free; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = with platforms; linux; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ta/tagger/package.nix b/pkgs/by-name/ta/tagger/package.nix index d093812a5ce7..3be96ad86788 100644 --- a/pkgs/by-name/ta/tagger/package.nix +++ b/pkgs/by-name/ta/tagger/package.nix @@ -54,13 +54,13 @@ buildDotnetModule rec { install -Dm444 NickvisionTagger.Shared/Linux/org.nickvision.tagger.desktop.in -T $out/share/applications/org.nickvision.tagger.desktop ''; - meta = with lib; { + meta = { description = "Easy-to-use music tag (metadata) editor"; homepage = "https://github.com/NickvisionApps/Tagger"; mainProgram = "NickvisionTagger.GNOME"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo ratcornu ]; diff --git a/pkgs/by-name/ta/taglib-sharp/package.nix b/pkgs/by-name/ta/taglib-sharp/package.nix index 2f44619d21b4..a456ac860814 100644 --- a/pkgs/by-name/ta/taglib-sharp/package.nix +++ b/pkgs/by-name/ta/taglib-sharp/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-docs" ]; - meta = with lib; { + meta = { description = "Library for reading and writing metadata in media files"; homepage = "https://github.com/mono/taglib-sharp"; - platforms = platforms.linux; - license = licenses.lgpl21; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/ta/taglib_extras/package.nix b/pkgs/by-name/ta/taglib_extras/package.nix index 96c8b22f1826..65c558733c48 100644 --- a/pkgs/by-name/ta/taglib_extras/package.nix +++ b/pkgs/by-name/ta/taglib_extras/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake ''; - meta = with lib; { + meta = { description = "Additional taglib plugins"; mainProgram = "taglib-extras-config"; - platforms = platforms.unix; - license = licenses.lgpl2; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/ta/tagparser/package.nix b/pkgs/by-name/ta/tagparser/package.nix index 5b92b2fd9774..f19d5fde2a21 100644 --- a/pkgs/by-name/ta/tagparser/package.nix +++ b/pkgs/by-name/ta/tagparser/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "-DLANGUAGE_FILE_ISO_639_2=${isocodes}/share/iso-codes/json/iso_639-2.json" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Martchus/tagparser"; description = "C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags"; - license = licenses.gpl2; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ta/tagref/package.nix b/pkgs/by-name/ta/tagref/package.nix index 4eb4b47b591a..f60ba7aa0dfe 100644 --- a/pkgs/by-name/ta/tagref/package.nix +++ b/pkgs/by-name/ta/tagref/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-XQ0/J8o9yqEGWH1Cy5VDkpsK60SS6JhYxMNsI08uI6U="; - meta = with lib; { + meta = { description = "Manage cross-references in your code"; homepage = "https://github.com/stepchowfun/tagref"; - license = licenses.mit; - maintainers = [ maintainers.yusdacra ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.yusdacra ]; + platforms = lib.platforms.unix; mainProgram = "tagref"; }; } diff --git a/pkgs/by-name/ta/tagutil/package.nix b/pkgs/by-name/ta/tagutil/package.nix index b39aaeecde2e..dd7e56e5bcec 100644 --- a/pkgs/by-name/ta/tagutil/package.nix +++ b/pkgs/by-name/ta/tagutil/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { --replace "-o aslr" "" ''; - meta = with lib; { + meta = { description = "Scriptable music files tags tool and editor"; homepage = "https://github.com/kaworu/tagutil"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "tagutil"; }; } diff --git a/pkgs/by-name/ta/tai-ahom/package.nix b/pkgs/by-name/ta/tai-ahom/package.nix index b588cadc1292..31d61829a534 100644 --- a/pkgs/by-name/ta/tai-ahom/package.nix +++ b/pkgs/by-name/ta/tai-ahom/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/enabling-languages/tai-languages"; description = "Unicode-compliant Tai Ahom font"; - maintainers = with maintainers; [ mathnerd314 ]; - license = licenses.ofl; # See font metadata - platforms = platforms.all; + maintainers = with lib.maintainers; [ mathnerd314 ]; + license = lib.licenses.ofl; # See font metadata + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ta/tailor-gui/package.nix b/pkgs/by-name/ta/tailor-gui/package.nix index 32efee34d46e..2370a71f85b7 100644 --- a/pkgs/by-name/ta/tailor-gui/package.nix +++ b/pkgs/by-name/ta/tailor-gui/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation { gtk4 ]; - meta = with lib; { + meta = { description = "Rust GUI for interacting with hardware from TUXEDO Computers"; mainProgram = "tailor_gui"; longDescription = '' @@ -64,11 +64,11 @@ stdenv.mkDerivation { written in Rust. ''; homepage = "https://github.com/AaronErhardt/tuxedo-rs"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ mrcjkb xaverdh ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ta/tailscale-systray/package.nix b/pkgs/by-name/ta/tailscale-systray/package.nix index a40e95b64603..c2edae598a73 100644 --- a/pkgs/by-name/ta/tailscale-systray/package.nix +++ b/pkgs/by-name/ta/tailscale-systray/package.nix @@ -27,11 +27,11 @@ buildGoModule { proxyVendor = true; - meta = with lib; { + meta = { description = "Tailscale systray"; homepage = "https://github.com/mattn/tailscale-systray"; - license = licenses.mit; - maintainers = with maintainers; [ qbit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ qbit ]; mainProgram = "tailscale-systray"; }; } diff --git a/pkgs/by-name/ta/tailwindcss_3/package.nix b/pkgs/by-name/ta/tailwindcss_3/package.nix index 2f43e836ff9a..21d4a03103a3 100644 --- a/pkgs/by-name/ta/tailwindcss_3/package.nix +++ b/pkgs/by-name/ta/tailwindcss_3/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation (finalAttrs: { ''; passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Command-line tool for the CSS framework with composable CSS classes, standalone CLI"; homepage = "https://tailwindcss.com/blog/standalone-cli"; - license = licenses.mit; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; - maintainers = [ maintainers.adamcstephens ]; + license = lib.licenses.mit; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + maintainers = [ lib.maintainers.adamcstephens ]; mainProgram = "tailwindcss"; - platforms = platforms.darwin ++ platforms.linux; + platforms = lib.platforms.darwin ++ lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ta/takao/package.nix b/pkgs/by-name/ta/takao/package.nix index 6b9a13961dad..98455a392919 100644 --- a/pkgs/by-name/ta/takao/package.nix +++ b/pkgs/by-name/ta/takao/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Japanese TrueType Gothic, P Gothic, Mincho, P Mincho fonts"; homepage = "https://launchpad.net/takao-fonts"; - license = licenses.ipa; + license = lib.licenses.ipa; maintainers = with lib.maintainers; [ serge ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ta/talentedhack/package.nix b/pkgs/by-name/ta/talentedhack/package.nix index 648d5e3b4864..2dd21484405a 100644 --- a/pkgs/by-name/ta/talentedhack/package.nix +++ b/pkgs/by-name/ta/talentedhack/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { cp *.so *.ttl $d ''; - meta = with lib; { + meta = { homepage = "https://github.com/jeremysalwen/TalentedHack"; description = "LV2 port of Autotalent pitch correction plugin"; - license = licenses.gpl3; - maintainers = [ maintainers.michalrus ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.michalrus ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ta/talloc/package.nix b/pkgs/by-name/ta/talloc/package.nix index f76588c4d1b1..ac7cd1b5d6ba 100644 --- a/pkgs/by-name/ta/talloc/package.nix +++ b/pkgs/by-name/ta/talloc/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { ${stdenv.cc.targetPrefix}ar q $out/lib/libtalloc.a bin/default/talloc.c.[0-9]*.o ''; - meta = with lib; { + meta = { description = "Hierarchical pool based memory allocator with destructors"; homepage = "https://tdb.samba.org/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = [ maintainers.matthiasbeyer ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.matthiasbeyer ]; }; } diff --git a/pkgs/by-name/ta/talosctl/package.nix b/pkgs/by-name/ta/talosctl/package.nix index d541c606c802..838591f41aa2 100644 --- a/pkgs/by-name/ta/talosctl/package.nix +++ b/pkgs/by-name/ta/talosctl/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "version"; - meta = with lib; { + meta = { description = "CLI for out-of-band management of Kubernetes nodes created by Talos"; mainProgram = "talosctl"; homepage = "https://www.talos.dev/"; - license = licenses.mpl20; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/ta/tamatool/package.nix b/pkgs/by-name/ta/tamatool/package.nix index d3d696807a20..53ef7bf144fd 100644 --- a/pkgs/by-name/ta/tamatool/package.nix +++ b/pkgs/by-name/ta/tamatool/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cross-platform Tamagotchi P1 explorer"; homepage = "https://github.com/jcrona/tamatool"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = "tamatool"; }; }) diff --git a/pkgs/by-name/ta/tambura/package.nix b/pkgs/by-name/ta/tambura/package.nix index 5f5123ad4237..c91eb513603f 100644 --- a/pkgs/by-name/ta/tambura/package.nix +++ b/pkgs/by-name/ta/tambura/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { cp -r Tambura.lv2/ $out/lib/lv2 ''; - meta = with lib; { + meta = { description = "FAUST patch inspired by the Indian Tambura/Tanpura - a four string drone instrument, known for its unique rich harmonic timbre"; homepage = "https://github.com/olilarkin/Tambura"; - license = licenses.gpl2; - maintainers = [ maintainers.magnetophon ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.magnetophon ]; }; } diff --git a/pkgs/by-name/ta/tamgamp-lv2/package.nix b/pkgs/by-name/ta/tamgamp-lv2/package.nix index b0e503db8fba..9afcf0dd810b 100644 --- a/pkgs/by-name/ta/tamgamp-lv2/package.nix +++ b/pkgs/by-name/ta/tamgamp-lv2/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/sadko4u/tamgamp.lv2"; description = "Guitar amplifier simulator"; longDescription = '' @@ -56,8 +56,8 @@ stdenv.mkDerivation { - VOX AC-30 Brilliant channel - VOX AC-30 normal channel ''; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; - license = licenses.lgpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/by-name/ta/tamsyn/package.nix b/pkgs/by-name/ta/tamsyn/package.nix index 32b2bb91bfeb..a8019b47d0de 100644 --- a/pkgs/by-name/ta/tamsyn/package.nix +++ b/pkgs/by-name/ta/tamsyn/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation { mkfontdir "$out/share/fonts/misc" ''; - meta = with lib; { + meta = { description = "Monospace bitmap font aimed at programmers"; longDescription = '' Tamsyn is a monospace bitmap font, primarily aimed at @@ -54,7 +54,7 @@ stdenv.mkDerivation { ''; homepage = "http://www.fial.com/~scott/tamsyn-font/"; downloadPage = "http://www.fial.com/~scott/tamsyn-font/download"; - license = licenses.free; - maintainers = [ maintainers.rps ]; + license = lib.licenses.free; + maintainers = [ lib.maintainers.rps ]; }; } diff --git a/pkgs/by-name/ta/tamzen/package.nix b/pkgs/by-name/ta/tamzen/package.nix index 632054b9e4d7..dbec84fbc981 100644 --- a/pkgs/by-name/ta/tamzen/package.nix +++ b/pkgs/by-name/ta/tamzen/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { mkfontdir "$out/share/fonts/misc" ''; - meta = with lib; { + meta = { description = "Bitmapped programming font based on Tamsyn"; longDescription = '' Tamzen is a monospace bitmap font. It is programmatically forked @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { symbols. ''; homepage = "https://github.com/sunaku/tamzen-font"; - license = licenses.free; - maintainers = with maintainers; [ wishfort36 ]; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ wishfort36 ]; }; } diff --git a/pkgs/by-name/ta/tana/package.nix b/pkgs/by-name/ta/tana/package.nix index 049126417b23..2159a2d98c30 100644 --- a/pkgs/by-name/ta/tana/package.nix +++ b/pkgs/by-name/ta/tana/package.nix @@ -100,7 +100,7 @@ stdenv.mkDerivation { --replace "Name=tana" "Name=Tana" ''; - meta = with lib; { + meta = { description = "Intelligent all-in-one workspace"; longDescription = '' At its core, Tana is an outline editor which can be extended to @@ -113,9 +113,9 @@ stdenv.mkDerivation { ''; homepage = "https://tana.inc"; changelog = "https://tana.inc/releases"; - license = licenses.unfree; - maintainers = [ maintainers.massimogengarelli ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.massimogengarelli ]; + platforms = lib.platforms.linux; mainProgram = "tana"; }; } diff --git a/pkgs/by-name/ta/tangerine/package.nix b/pkgs/by-name/ta/tangerine/package.nix index 98d324d770b3..293382bd6031 100644 --- a/pkgs/by-name/ta/tangerine/package.nix +++ b/pkgs/by-name/ta/tangerine/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { --replace-fail "cmake_policy(VERSION 3.2)" "cmake_policy(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "System for creating 3D models procedurally from a set of Signed Distance Function (SDF) primitive shapes and combining operators"; homepage = "https://github.com/Aeva/tangerine"; - license = licenses.asl20; - maintainers = [ maintainers.viraptor ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.viraptor ]; broken = stdenv.hostPlatform.isDarwin; # third_party/naive-surface-nets doesn't find std::execution }; } diff --git a/pkgs/by-name/ta/tango/package.nix b/pkgs/by-name/ta/tango/package.nix index 3fb877a9a9a7..15cf5da03b55 100644 --- a/pkgs/by-name/ta/tango/package.nix +++ b/pkgs/by-name/ta/tango/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-83nKtiEy1na1HgAQcbTEfl+0vGg6BkCLBK1REN9fP+k="; - meta = with lib; { + meta = { description = "Local command-line Japanese dictionary tool using yomichan's dictionary files"; homepage = "https://github.com/masakichi/tango"; - license = licenses.mit; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "tango"; }; } diff --git a/pkgs/by-name/ta/tangram/package.nix b/pkgs/by-name/ta/tangram/package.nix index 8df7f88ee292..2ec1bac118f5 100644 --- a/pkgs/by-name/ta/tangram/package.nix +++ b/pkgs/by-name/ta/tangram/package.nix @@ -87,13 +87,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Run web apps on your desktop"; mainProgram = "re.sonny.Tangram"; homepage = "https://github.com/sonnyp/Tangram"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ austinbutler chuangzhu ]; diff --git a/pkgs/by-name/ta/tanka/package.nix b/pkgs/by-name/ta/tanka/package.nix index c2597f3e1c58..3356ebbcda3b 100644 --- a/pkgs/by-name/ta/tanka/package.nix +++ b/pkgs/by-name/ta/tanka/package.nix @@ -61,11 +61,11 @@ buildGoModule rec { --zsh tk.zsh ''; - meta = with lib; { + meta = { description = "Flexible, reusable and concise configuration for Kubernetes"; homepage = "https://tanka.dev"; - license = licenses.asl20; - maintainers = with maintainers; [ mikefaille ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mikefaille ]; mainProgram = "tk"; }; } diff --git a/pkgs/by-name/ta/taproot-assets/package.nix b/pkgs/by-name/ta/taproot-assets/package.nix index fae7473b88c3..37c3482215a9 100644 --- a/pkgs/by-name/ta/taproot-assets/package.nix +++ b/pkgs/by-name/ta/taproot-assets/package.nix @@ -27,10 +27,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Daemon for the Taproot Assets protocol specification"; homepage = "https://github.com/lightninglabs/taproot-assets"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/by-name/ta/tar2ext4/package.nix b/pkgs/by-name/ta/tar2ext4/package.nix index 7ca56319f4f4..fab0ac952e58 100644 --- a/pkgs/by-name/ta/tar2ext4/package.nix +++ b/pkgs/by-name/ta/tar2ext4/package.nix @@ -18,10 +18,10 @@ buildGoModule rec { sourceRoot = "${src.name}/cmd/tar2ext4"; vendorHash = null; - meta = with lib; { + meta = { description = "Convert a tar archive to an ext4 image"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.mit; mainProgram = "tar2ext4"; }; } diff --git a/pkgs/by-name/ta/target-isns/package.nix b/pkgs/by-name/ta/target-isns/package.nix index 0f83d59425bc..b89f9ed63754 100644 --- a/pkgs/by-name/ta/target-isns/package.nix +++ b/pkgs/by-name/ta/target-isns/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "iSNS client for the Linux LIO iSCSI target"; mainProgram = "target-isns"; homepage = "https://github.com/open-iscsi/target-isns"; - maintainers = [ maintainers.markuskowa ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ta/tarlz/package.nix b/pkgs/by-name/ta/tarlz/package.nix index 71cc5647a814..6aa7e151360d 100644 --- a/pkgs/by-name/ta/tarlz/package.nix +++ b/pkgs/by-name/ta/tarlz/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = false; # system clock issues doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/lzip/tarlz.html"; description = "Massively parallel combined implementation of the tar archiver and the lzip compressor"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; mainProgram = "tarlz"; }; }) diff --git a/pkgs/by-name/ta/tarsnapper/package.nix b/pkgs/by-name/ta/tarsnapper/package.nix index bca32fd20cd3..e1f819f74a9c 100644 --- a/pkgs/by-name/ta/tarsnapper/package.nix +++ b/pkgs/by-name/ta/tarsnapper/package.nix @@ -52,11 +52,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "tarsnapper" ]; - meta = with lib; { + meta = { description = "Wrapper which expires backups using a gfs-scheme"; homepage = "https://github.com/miracle2k/tarsnapper"; - license = licenses.bsd2; - maintainers = with maintainers; [ gmacon ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ gmacon ]; mainProgram = "tarsnapper"; }; } diff --git a/pkgs/by-name/ta/tarssh/package.nix b/pkgs/by-name/ta/tarssh/package.nix index 04919f60f9e2..eff809715a46 100644 --- a/pkgs/by-name/ta/tarssh/package.nix +++ b/pkgs/by-name/ta/tarssh/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-r1WwAL24Ohmf4L7UXUwmecRiMmthjpzoWOVv33bMkDk="; - meta = with lib; { + meta = { description = "Simple SSH tarpit inspired by endlessh"; homepage = "https://github.com/Freaky/tarssh"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ sohalt ]; - platforms = platforms.unix; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ sohalt ]; + platforms = lib.platforms.unix; mainProgram = "tarssh"; }; } diff --git a/pkgs/by-name/ta/tart/package.nix b/pkgs/by-name/ta/tart/package.nix index a207bf40819a..a03d578ac0cc 100644 --- a/pkgs/by-name/ta/tart/package.nix +++ b/pkgs/by-name/ta/tart/package.nix @@ -45,16 +45,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { doInstallCheck = true; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "macOS and Linux VMs on Apple Silicon to use in CI and other automations"; homepage = "https://tart.run"; - license = licenses.fairsource09; - maintainers = with maintainers; [ + license = lib.licenses.fairsource09; + maintainers = with lib.maintainers; [ emilytrau aduh95 ]; mainProgram = "tart"; - platforms = platforms.darwin; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.darwin; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ta/tartan/package.nix b/pkgs/by-name/ta/tartan/package.nix index d4e2a4f03286..ba1bfcb20ee1 100644 --- a/pkgs/by-name/ta/tartan/package.nix +++ b/pkgs/by-name/ta/tartan/package.nix @@ -43,13 +43,13 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Tools and Clang plugins for developing code with GLib"; homepage = "https://gitlab.freedesktop.org/tartan/tartan"; changelog = "https://gitlab.freedesktop.org/tartan/tartan/-/blob/main/NEWS"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ jtojnar ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jtojnar ]; }; } diff --git a/pkgs/by-name/ta/taschenrechner/package.nix b/pkgs/by-name/ta/taschenrechner/package.nix index c3f0656b211c..773c90feddfb 100644 --- a/pkgs/by-name/ta/taschenrechner/package.nix +++ b/pkgs/by-name/ta/taschenrechner/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-29gqkJe/8ghAgAeioQ2r+AYgOI6lzMnDut4WF0Q59Xg="; - meta = with lib; { + meta = { description = "Cli-calculator written in Rust"; homepage = "https://gitlab.fem-net.de/mabl/taschenrechner"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ netali ]; mainProgram = "taschenrechner"; }; } diff --git a/pkgs/by-name/ta/task-master-ai/package.nix b/pkgs/by-name/ta/task-master-ai/package.nix index 23643f7f4a89..de5dd29aebef 100644 --- a/pkgs/by-name/ta/task-master-ai/package.nix +++ b/pkgs/by-name/ta/task-master-ai/package.nix @@ -42,13 +42,13 @@ buildNpmPackage (finalAttrs: { versionCheckProgram = "${placeholder "out"}/bin/task-master"; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "Node.js agentic AI workflow orchestrator"; homepage = "https://task-master.dev"; changelog = "https://github.com/eyaltoledano/claude-task-master/blob/${finalAttrs.src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "task-master-ai"; - maintainers = [ maintainers.repparw ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.repparw ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ta/taskjuggler/package.nix b/pkgs/by-name/ta/taskjuggler/package.nix index 32c5ab91ede4..abddd388f617 100644 --- a/pkgs/by-name/ta/taskjuggler/package.nix +++ b/pkgs/by-name/ta/taskjuggler/package.nix @@ -23,12 +23,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "taskjuggler"; - meta = with lib; { + meta = { description = "Modern and powerful project management tool"; homepage = "https://taskjuggler.org/"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; diff --git a/pkgs/by-name/ta/tasknc/package.nix b/pkgs/by-name/ta/tasknc/package.nix index 37c5f5b0bc2c..12c3b63d7981 100644 --- a/pkgs/by-name/ta/tasknc/package.nix +++ b/pkgs/by-name/ta/tasknc/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/tasknc --prefix PATH : ${taskwarrior2}/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/lharding/tasknc"; description = "Ncurses wrapper around taskwarrior"; mainProgram = "tasknc"; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.linux; # Cannot test others - license = licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.linux; # Cannot test others + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ta/taskopen/package.nix b/pkgs/by-name/ta/taskopen/package.nix index a44e9b46942f..0952e5f0505a 100644 --- a/pkgs/by-name/ta/taskopen/package.nix +++ b/pkgs/by-name/ta/taskopen/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { --set PERL5LIB "$PERL5LIB" ''; - meta = with lib; { + meta = { description = "Script for taking notes and open urls with taskwarrior"; mainProgram = "taskopen"; homepage = "https://github.com/ValiValpas/taskopen"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = [ maintainers.winpat ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.winpat ]; }; } diff --git a/pkgs/by-name/ta/tasksh/package.nix b/pkgs/by-name/ta/tasksh/package.nix index 9d0e252df021..3637c001e056 100644 --- a/pkgs/by-name/ta/tasksh/package.nix +++ b/pkgs/by-name/ta/tasksh/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { description = "REPL for taskwarrior"; homepage = "http://tasktools.org"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.unix; mainProgram = "tasksh"; }; } diff --git a/pkgs/by-name/ta/taskspooler/package.nix b/pkgs/by-name/ta/taskspooler/package.nix index 240cebbe1463..1837be5c53e2 100644 --- a/pkgs/by-name/ta/taskspooler/package.nix +++ b/pkgs/by-name/ta/taskspooler/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { --set-default TS_SLOTS "$(${coreutils}/bin/nproc --all)" ''; - meta = with lib; { + meta = { description = "Simple single node task scheduler"; homepage = "https://vicerveza.homeunix.net/~viric/wsgi-bin/hgweb.wsgi/ts"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.sheepforce ]; mainProgram = "ts"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ta/tasktimer/package.nix b/pkgs/by-name/ta/tasktimer/package.nix index 2143d317b53a..1f2b01079d9a 100644 --- a/pkgs/by-name/ta/tasktimer/package.nix +++ b/pkgs/by-name/ta/tasktimer/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/tasktimer $out/bin/tt ''; - meta = with lib; { + meta = { description = "Task Timer (tt) is a dead simple TUI task timer"; homepage = "https://github.com/caarlos0/tasktimer"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbe caarlos0 ]; diff --git a/pkgs/by-name/ta/taskwarrior-tui/package.nix b/pkgs/by-name/ta/taskwarrior-tui/package.nix index 9ca19b9b21d2..805006f36c5b 100644 --- a/pkgs/by-name/ta/taskwarrior-tui/package.nix +++ b/pkgs/by-name/ta/taskwarrior-tui/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion completions/taskwarrior-tui.{bash,fish} --zsh completions/_taskwarrior-tui ''; - meta = with lib; { + meta = { description = "Terminal user interface for taskwarrior"; homepage = "https://github.com/kdheepak/taskwarrior-tui"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ matthiasbeyer ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "taskwarrior-tui"; }; } diff --git a/pkgs/by-name/ta/taskwarrior2/package.nix b/pkgs/by-name/ta/taskwarrior2/package.nix index 7d14bac00104..c5401cb6b6ca 100644 --- a/pkgs/by-name/ta/taskwarrior2/package.nix +++ b/pkgs/by-name/ta/taskwarrior2/package.nix @@ -61,16 +61,16 @@ stdenv.mkDerivation rec { ln -s $out/share/vim-plugins/task $out/share/nvim/site ''; - meta = with lib; { + meta = { description = "Highly flexible command-line tool to manage TODO lists"; homepage = "https://taskwarrior.org"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marcweber oxalica Necior ]; mainProgram = "task"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ta/tau-hydrogen/package.nix b/pkgs/by-name/ta/tau-hydrogen/package.nix index 745d7638e5ba..dcbb912ca118 100644 --- a/pkgs/by-name/ta/tau-hydrogen/package.nix +++ b/pkgs/by-name/ta/tau-hydrogen/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { xorg.xcursorgen ]; - meta = with lib; { + meta = { description = "GTK icon theme for tauOS"; homepage = "https://github.com/tau-OS/tau-hydrogen"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ta/taxi/package.nix b/pkgs/by-name/ta/taxi/package.nix index 42f2c7646bc6..74353a314abb 100644 --- a/pkgs/by-name/ta/taxi/package.nix +++ b/pkgs/by-name/ta/taxi/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { ]; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/ellie-commons/taxi"; description = "FTP Client that drives you anywhere"; - license = licenses.lgpl3Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "io.github.ellie_commons.taxi"; }; } diff --git a/pkgs/by-name/ta/tayga/package.nix b/pkgs/by-name/ta/tayga/package.nix index b665e0ff2ed3..c5301a0d33fe 100644 --- a/pkgs/by-name/ta/tayga/package.nix +++ b/pkgs/by-name/ta/tayga/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.tayga = nixosTests.tayga; - meta = with lib; { + meta = { description = "Userland stateless NAT64 daemon"; longDescription = '' TAYGA is an out-of-kernel stateless NAT64 implementation @@ -46,9 +46,9 @@ stdenv.mkDerivation (finalAttrs: { for networks where dedicated NAT64 hardware would be overkill. ''; homepage = "https://github.com/apalrd/tayga"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = lib.platforms.linux; mainProgram = "tayga"; }; }) diff --git a/pkgs/by-name/tb/tbox/package.nix b/pkgs/by-name/tb/tbox/package.nix index d3cc9a8bf172..50d7d7400c4c 100644 --- a/pkgs/by-name/tb/tbox/package.nix +++ b/pkgs/by-name/tb/tbox/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { substituteAll ${./libtbox.pc.in} $out/lib/pkgconfig/libtbox.pc ''; - meta = with lib; { + meta = { description = "Glib-like multi-platform c library"; homepage = "https://docs.tboox.org"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; }; } diff --git a/pkgs/by-name/tc/tcat/package.nix b/pkgs/by-name/tc/tcat/package.nix index c27e3faa13d3..efc28577f938 100644 --- a/pkgs/by-name/tc/tcat/package.nix +++ b/pkgs/by-name/tc/tcat/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { vendorHash = null; subPackages = "."; - meta = with lib; { + meta = { description = "Table cat"; homepage = "https://github.com/rsc/tcat"; - maintainers = with maintainers; [ mmlb ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ mmlb ]; + license = lib.licenses.bsd3; mainProgram = "tcat"; }; } diff --git a/pkgs/by-name/tc/tcb/package.nix b/pkgs/by-name/tc/tcb/package.nix index efef365b159b..366c5b4c1617 100644 --- a/pkgs/by-name/tc/tcb/package.nix +++ b/pkgs/by-name/tc/tcb/package.nix @@ -60,8 +60,8 @@ stdenv.mkDerivation { by user management tools on Owl due to our shadow suite patches. ''; homepage = "https://www.openwall.com/tcb/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = systems.inspect.patterns.isGnu; - maintainers = with maintainers; [ izorkin ]; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/by-name/tc/tcpcrypt/package.nix b/pkgs/by-name/tc/tcpcrypt/package.nix index 242522e17640..fb2c42be14ba 100644 --- a/pkgs/by-name/tc/tcpcrypt/package.nix +++ b/pkgs/by-name/tc/tcpcrypt/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "http://tcpcrypt.org/"; description = "Fast TCP encryption"; - platforms = platforms.all; - license = licenses.bsd2; + platforms = lib.platforms.all; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/tc/tcpdirect/package.nix b/pkgs/by-name/tc/tcpdirect/package.nix index ca476ac23bb9..67ee5ead68ae 100644 --- a/pkgs/by-name/tc/tcpdirect/package.nix +++ b/pkgs/by-name/tc/tcpdirect/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Ultra low latency kernel bypass TCP and UDP implementation for AMD Solarflare network adapters"; homepage = "https://www.openonload.org"; license = lib.licenses.mit; - maintainers = with maintainers; [ YorikSar ]; + maintainers = with lib.maintainers; [ YorikSar ]; # ARM64 build fails, see https://github.com/Xilinx-CNS/onload/issues/253 platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/tc/tcpdump/package.nix b/pkgs/by-name/tc/tcpdump/package.nix index a52df1bb054d..9ad88b6d7a4f 100644 --- a/pkgs/by-name/tc/tcpdump/package.nix +++ b/pkgs/by-name/tc/tcpdump/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { configureFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "ac_cv_linux_vers=2"; - meta = with lib; { + meta = { description = "Network sniffer"; homepage = "https://www.tcpdump.org/"; - license = licenses.bsd3; - maintainers = with maintainers; [ globin ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ globin ]; + platforms = lib.platforms.unix; mainProgram = "tcpdump"; }; } diff --git a/pkgs/by-name/tc/tcpflow/package.nix b/pkgs/by-name/tc/tcpflow/package.nix index b151d557e42e..a528342719b1 100644 --- a/pkgs/by-name/tc/tcpflow/package.nix +++ b/pkgs/by-name/tc/tcpflow/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { preConfigure = "bash ./bootstrap.sh"; - meta = with lib; { + meta = { description = "TCP stream extractor"; longDescription = '' tcpflow is a program that captures data transmitted as part of TCP @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { protocol analysis and debugging. ''; inherit (src.meta) homepage; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ raskin obadz ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "tcpflow"; }; } diff --git a/pkgs/by-name/tc/tcping-go/package.nix b/pkgs/by-name/tc/tcping-go/package.nix index 47628d34656e..d1c8366e460a 100644 --- a/pkgs/by-name/tc/tcping-go/package.nix +++ b/pkgs/by-name/tc/tcping-go/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-Q+aFgi7GCAn3AxDuGtRG4DdPhI7gQKEo7A9iu1YcTsQ="; - meta = with lib; { + meta = { description = "Ping over TCP instead of ICMP, written in Go"; homepage = "https://github.com/cloverstd/tcping"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; mainProgram = "tcping"; }; } diff --git a/pkgs/by-name/tc/tcpreplay/package.nix b/pkgs/by-name/tc/tcpreplay/package.nix index c0b7755beb2f..d7165c5c6369 100644 --- a/pkgs/by-name/tc/tcpreplay/package.nix +++ b/pkgs/by-name/tc/tcpreplay/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { "--with-tcpdump=${tcpdump}/bin/tcpdump" ]; - meta = with lib; { + meta = { description = "Suite of utilities for editing and replaying network traffic"; homepage = "https://tcpreplay.appneta.com/"; - license = with licenses; [ + license = with lib.licenses; [ bsdOriginalUC gpl3Only ]; - maintainers = with maintainers; [ eleanor ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ eleanor ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tc/tcptrack/package.nix b/pkgs/by-name/tc/tcptrack/package.nix index 2c54223cc75c..319cd056e6e9 100644 --- a/pkgs/by-name/tc/tcptrack/package.nix +++ b/pkgs/by-name/tc/tcptrack/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "libpcap based program for live TCP connection monitoring"; mainProgram = "tcptrack"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/td/td/package.nix b/pkgs/by-name/td/td/package.nix index 9d7edd8f2b88..94a237a6c5da 100644 --- a/pkgs/by-name/td/td/package.nix +++ b/pkgs/by-name/td/td/package.nix @@ -11,15 +11,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "td"; - meta = with lib; { + meta = { description = "CLI to manage data on Treasure Data, the Hadoop-based cloud data warehousing"; homepage = "https://github.com/treasure-data/td"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ groodt nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "td"; }; } diff --git a/pkgs/by-name/td/tdb/package.nix b/pkgs/by-name/td/tdb/package.nix index c8134d45c859..81b296c62786 100644 --- a/pkgs/by-name/td/tdb/package.nix +++ b/pkgs/by-name/td/tdb/package.nix @@ -93,7 +93,7 @@ stdenv.mkDerivation rec { stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17" ) "--undefined-version"; - meta = with lib; { + meta = { description = "Trivial database"; longDescription = '' TDB is a Trivial Database. In concept, it is very much like GDBM, @@ -102,7 +102,7 @@ stdenv.mkDerivation rec { other. TDB is also extremely small. ''; homepage = "https://tdb.samba.org/"; - license = licenses.lgpl3Plus; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/td/tdfgo/package.nix b/pkgs/by-name/td/tdfgo/package.nix index ab2032424eb4..d9841c72fb2b 100644 --- a/pkgs/by-name/td/tdfgo/package.nix +++ b/pkgs/by-name/td/tdfgo/package.nix @@ -17,13 +17,13 @@ buildGoModule { vendorHash = "sha256-T6PSs5NfXSXvzlq67rIDbzURyA+25df3nMMfufo0fow="; - meta = with lib; { + meta = { description = "TheDraw font parser and console text renderer"; longDescription = "Supports more fonts than `tdfiglet`, and packs more features."; homepage = "https://github.com/digitallyserviced/tdfgo"; - license = licenses.cc0; - platforms = platforms.linux; - maintainers = with maintainers; [ crinklywrappr ]; + license = lib.licenses.cc0; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ crinklywrappr ]; mainProgram = "tdfgo"; }; } diff --git a/pkgs/by-name/td/tdl/package.nix b/pkgs/by-name/td/tdl/package.nix index b173f40f90d5..cb2bfd75a8de 100644 --- a/pkgs/by-name/td/tdl/package.nix +++ b/pkgs/by-name/td/tdl/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { # Requires network access doCheck = false; - meta = with lib; { + meta = { description = "Telegram downloader/tools written in Golang"; homepage = "https://github.com/iyear/tdl"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ Ligthiago ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ Ligthiago ]; mainProgram = "tdl"; }; } diff --git a/pkgs/by-name/td/tdlib/package.nix b/pkgs/by-name/td/tdlib/package.nix index 906af6013a8d..09ad238082a9 100644 --- a/pkgs/by-name/td/tdlib/package.nix +++ b/pkgs/by-name/td/tdlib/package.nix @@ -94,14 +94,14 @@ stdenv.mkDerivation { passthru.updateScript = lib.getExe updateScript; - meta = with lib; { + meta = { description = "Cross-platform library for building Telegram clients"; homepage = "https://core.telegram.org/tdlib/"; - license = [ licenses.boost ]; - platforms = platforms.unix; + license = [ lib.licenses.boost ]; + platforms = lib.platforms.unix; maintainers = [ - maintainers.vyorkin - maintainers.vonfry + lib.maintainers.vyorkin + lib.maintainers.vonfry ]; }; } diff --git a/pkgs/by-name/td/tdns-cli/package.nix b/pkgs/by-name/td/tdns-cli/package.nix index b0a436c0f5ed..e16e62e323bc 100644 --- a/pkgs/by-name/td/tdns-cli/package.nix +++ b/pkgs/by-name/td/tdns-cli/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-KDZGTGLHLuZgFtzIp+lL0VIiQcYspvxAivp7hVE9V/A="; - meta = with lib; { + meta = { description = "DNS tool that aims to replace dig and nsupdate"; homepage = "https://github.com/rotty/tdns-cli"; - license = licenses.gpl3; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ astro ]; mainProgram = "tdns"; }; } diff --git a/pkgs/by-name/td/tdrop/package.nix b/pkgs/by-name/td/tdrop/package.nix index 017f72e44fac..9f5a23e8ec56 100644 --- a/pkgs/by-name/td/tdrop/package.nix +++ b/pkgs/by-name/td/tdrop/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; - meta = with lib; { + meta = { description = "Glorified WM-Independent Dropdown Creator"; mainProgram = "tdrop"; homepage = "https://github.com/noctuid/tdrop"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/tea/package.nix b/pkgs/by-name/te/tea/package.nix index ad6a1ff7de00..6df7b3ecd11f 100644 --- a/pkgs/by-name/te/tea/package.nix +++ b/pkgs/by-name/te/tea/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { $out/bin/tea man --out $out/share/man/man1/tea.1 ''; - meta = with lib; { + meta = { description = "Gitea official CLI client"; homepage = "https://gitea.com/gitea/tea"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j4m3s techknowlogick ]; diff --git a/pkgs/by-name/te/tealdeer/package.nix b/pkgs/by-name/te/tealdeer/package.nix index 38f7b49826ca..d3efd5775369 100644 --- a/pkgs/by-name/te/tealdeer/package.nix +++ b/pkgs/by-name/te/tealdeer/package.nix @@ -32,17 +32,17 @@ rustPlatform.buildRustPackage rec { # tealdeer requires --test-threads=1 dontUseCargoParallelTests = true; - meta = with lib; { + meta = { description = "Very fast implementation of tldr in Rust"; homepage = "https://github.com/tealdeer-rs/tealdeer"; changelog = "https://github.com/tealdeer-rs/tealdeer/blob/v${version}/CHANGELOG.md"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ davidak newam mfrw ryan4yin ]; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/te/teamocil/package.nix b/pkgs/by-name/te/teamocil/package.nix index 8dd13b640cca..e7232fd32b37 100644 --- a/pkgs/by-name/te/teamocil/package.nix +++ b/pkgs/by-name/te/teamocil/package.nix @@ -12,12 +12,12 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "teamocil"; - meta = with lib; { + meta = { description = "Simple tool used to automatically create windows and panes in tmux with YAML files"; homepage = "https://github.com/remiprev/teamocil"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zachcoyle nicknovitski ]; diff --git a/pkgs/by-name/te/teams/package.nix b/pkgs/by-name/te/teams/package.nix index 27519e341b62..686d91d6f473 100644 --- a/pkgs/by-name/te/teams/package.nix +++ b/pkgs/by-name/te/teams/package.nix @@ -15,13 +15,13 @@ let hashes = { darwin = "sha256-p9tAvOJxoIO0d8z0qdfc4sokUNfaYKq2NtBHKOWYBM4="; }; - meta = with lib; { + meta = { description = "Microsoft Teams"; homepage = "https://teams.microsoft.com"; downloadPage = "https://teams.microsoft.com/downloads"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ tricktron ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ tricktron ]; platforms = [ "x86_64-darwin" "aarch64-darwin" diff --git a/pkgs/by-name/te/teamspeak_server/package.nix b/pkgs/by-name/te/teamspeak_server/package.nix index 59ca189f6725..0660372a4161 100644 --- a/pkgs/by-name/te/teamspeak_server/package.nix +++ b/pkgs/by-name/te/teamspeak_server/package.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation rec { update-source-version teamspeak_server "$version" --system=x86_64-linux ''; - meta = with lib; { + meta = { description = "TeamSpeak voice communication server"; homepage = "https://teamspeak.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.teamspeak; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.teamspeak; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ arobyn gerschtli ]; diff --git a/pkgs/by-name/te/teavpn2/package.nix b/pkgs/by-name/te/teavpn2/package.nix index 98c35cc2fcba..487ab7cf1cfe 100644 --- a/pkgs/by-name/te/teavpn2/package.nix +++ b/pkgs/by-name/te/teavpn2/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source VPN Software"; homepage = "https://github.com/TeaInside/teavpn2"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "teavpn2"; - maintainers = with maintainers; [ ludovicopiero ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ludovicopiero ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/te/techmino/ccloader.nix b/pkgs/by-name/te/techmino/ccloader.nix index ff312555d791..010ecf59e6db 100644 --- a/pkgs/by-name/te/techmino/ccloader.nix +++ b/pkgs/by-name/te/techmino/ccloader.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Luajit wrapper for Cold Clear, a Tetris AI"; homepage = "https://github.com/26F-Studio/cold_clear_ai_love2d_wrapper"; - license = licenses.mpl20; - maintainers = with maintainers; [ chayleaf ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ chayleaf ]; }; } diff --git a/pkgs/by-name/te/techmino/libcoldclear.nix b/pkgs/by-name/te/techmino/libcoldclear.nix index 9b97740337a2..fd805ef21d50 100644 --- a/pkgs/by-name/te/techmino/libcoldclear.nix +++ b/pkgs/by-name/te/techmino/libcoldclear.nix @@ -42,10 +42,10 @@ rustPlatform.buildRustPackage { cp coldclear.h $out/include ''; - meta = with lib; { + meta = { description = "Tetris AI"; homepage = "https://github.com/26F-Studio/cold-clear"; - license = licenses.mpl20; - maintainers = with maintainers; [ chayleaf ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ chayleaf ]; }; } diff --git a/pkgs/by-name/te/techmino/package.nix b/pkgs/by-name/te/techmino/package.nix index af876861ea53..57688306d715 100644 --- a/pkgs/by-name/te/techmino/package.nix +++ b/pkgs/by-name/te/techmino/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { inherit description; downloadPage = "https://github.com/26F-Studio/Techmino/releases"; homepage = "https://github.com/26F-Studio/Techmino/"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; mainProgram = "techmino"; - maintainers = with maintainers; [ chayleaf ]; + maintainers = with lib.maintainers; [ chayleaf ]; }; } diff --git a/pkgs/by-name/te/tecnoballz/package.nix b/pkgs/by-name/te/tecnoballz/package.nix index 82ca81b83293..a8df434d8aa2 100644 --- a/pkgs/by-name/te/tecnoballz/package.nix +++ b/pkgs/by-name/te/tecnoballz/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { "scoredir=$(TMPDIR)" ]; - meta = with lib; { + meta = { homepage = "https://linux.tlk.fr/games/TecnoballZ/"; downloadPage = "https://linux.tlk.fr/games/TecnoballZ/download/"; description = "Brick breaker game with a sophisticated system of weapons and bonuses"; @@ -63,9 +63,9 @@ stdenv.mkDerivation (finalAttrs: { by gaining bonuses. Numerous decors, musics and sounds complete this great game. This game was ported from the Commodore Amiga. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/by-name/te/teehee/package.nix b/pkgs/by-name/te/teehee/package.nix index b1e46c54a1a0..aa0b8be6c238 100644 --- a/pkgs/by-name/te/teehee/package.nix +++ b/pkgs/by-name/te/teehee/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-PebwLIFBA6NdEXCQoEZzPFsSTMz8o2s+yOMyElrR4TM="; - meta = with lib; { + meta = { description = "Modal terminal hex editor"; homepage = "https://github.com/Gskartwii/teehee"; changelog = "https://github.com/Gskartwii/teehee/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "teehee"; }; diff --git a/pkgs/by-name/te/teensy-cmake-macros/package.nix b/pkgs/by-name/te/teensy-cmake-macros/package.nix index 0461db32c00f..4f4e21ef73ee 100644 --- a/pkgs/by-name/te/teensy-cmake-macros/package.nix +++ b/pkgs/by-name/te/teensy-cmake-macros/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "cmake_minimum_required(VERSION 3.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "CMake macros for building teensy projects"; - platforms = platforms.all; + platforms = lib.platforms.all; homepage = "https://github.com/newdigate/teensy-cmake-macros"; - license = licenses.mit; - maintainers = [ maintainers.michaeldonovan ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.michaeldonovan ]; }; }) diff --git a/pkgs/by-name/te/teensy-loader-cli/package.nix b/pkgs/by-name/te/teensy-loader-cli/package.nix index ab668e7527d6..9288d335dfec 100644 --- a/pkgs/by-name/te/teensy-loader-cli/package.nix +++ b/pkgs/by-name/te/teensy-loader-cli/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Firmware uploader for the Teensy microcontroller boards"; mainProgram = "teensy-loader-cli"; homepage = "https://www.pjrc.com/teensy/"; - license = licenses.gpl3Only; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/te/teensy-udev-rules/package.nix b/pkgs/by-name/te/teensy-udev-rules/package.nix index 650eacc81a00..78a7d415246b 100644 --- a/pkgs/by-name/te/teensy-udev-rules/package.nix +++ b/pkgs/by-name/te/teensy-udev-rules/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { --replace "/bin/stty" "${coreutils}/bin/stty" ''; - meta = with lib; { + meta = { homepage = "https://www.pjrc.com/teensy/00-teensy.rules"; description = "udev rules for the Teensy microcontrollers"; longDescription = '' @@ -32,7 +32,7 @@ stdenv.mkDerivation { devices, which includes the Teensy. See comments in the .rules file (or this package's homepage) for possible workarounds. ''; - platforms = platforms.linux; - license = licenses.unfree; # No license specified. + platforms = lib.platforms.linux; + license = lib.licenses.unfree; # No license specified. }; } diff --git a/pkgs/by-name/te/tela-icon-theme/package.nix b/pkgs/by-name/te/tela-icon-theme/package.nix index bb8a1ef8ee4f..9d652a537255 100644 --- a/pkgs/by-name/te/tela-icon-theme/package.nix +++ b/pkgs/by-name/te/tela-icon-theme/package.nix @@ -53,9 +53,9 @@ stdenvNoCC.mkDerivation rec { description = "Flat colorful Design icon theme"; homepage = "https://github.com/vinceliuice/tela-icon-theme"; changelog = "https://github.com/vinceliuice/Tela-icon-theme/releases/tag/${src.rev}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; # darwin systems use case-insensitive filesystems that cause hash mismatches - platforms = subtractLists platforms.darwin platforms.unix; + platforms = subtractLists lib.platforms.darwin lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/telegraf/package.nix b/pkgs/by-name/te/telegraf/package.nix index ef580514aec6..bdb13e704307 100644 --- a/pkgs/by-name/te/telegraf/package.nix +++ b/pkgs/by-name/te/telegraf/package.nix @@ -40,13 +40,13 @@ buildGoModule rec { inherit (nixosTests) telegraf; }; - meta = with lib; { + meta = { description = "Plugin-driven server agent for collecting & reporting metrics"; mainProgram = "telegraf"; homepage = "https://www.influxdata.com/time-series-platform/telegraf/"; changelog = "https://github.com/influxdata/telegraf/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 roblabla timstott diff --git a/pkgs/by-name/te/telegraph/package.nix b/pkgs/by-name/te/telegraph/package.nix index 0cdeede94e22..da808a909cc2 100644 --- a/pkgs/by-name/te/telegraph/package.nix +++ b/pkgs/by-name/te/telegraph/package.nix @@ -43,13 +43,13 @@ stdenv.mkDerivation (finalAttrs: { )) ]; - meta = with lib; { + meta = { changelog = "https://github.com/fkinoshita/Telegraph/releases/v${finalAttrs.version}"; description = "Write and decode Morse"; homepage = "https://github.com/fkinoshita/Telegraph"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "telegraph"; - maintainers = with maintainers; [ michaelgrahamevans ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ michaelgrahamevans ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/te/telepathy-farstream/package.nix b/pkgs/by-name/te/telepathy-farstream/package.nix index e011327e6755..4ef90c492e84 100644 --- a/pkgs/by-name/te/telepathy-farstream/package.nix +++ b/pkgs/by-name/te/telepathy-farstream/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { farstream ]; - meta = with lib; { + meta = { description = "GObject-based C library that uses Telepathy GLib, Farstream and GStreamer to handle the media streaming part of channels of type Call"; homepage = "https://telepathy.freedesktop.org/wiki/Components/Telepathy-Farstream/"; - platforms = platforms.unix; - license = licenses.lgpl21Only; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Only; }; } diff --git a/pkgs/by-name/te/telepathy-glib/package.nix b/pkgs/by-name/te/telepathy-glib/package.nix index a04cf25b7bcd..d369a952b22a 100644 --- a/pkgs/by-name/te/telepathy-glib/package.nix +++ b/pkgs/by-name/te/telepathy-glib/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://telepathy.freedesktop.org"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ bsd2 bsd3 lgpl21Plus diff --git a/pkgs/by-name/te/telepathy-mission-control/package.nix b/pkgs/by-name/te/telepathy-mission-control/package.nix index 0e460038debe..76fd2abc5635 100644 --- a/pkgs/by-name/te/telepathy-mission-control/package.nix +++ b/pkgs/by-name/te/telepathy-mission-control/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; - meta = with lib; { + meta = { description = "Account manager and channel dispatcher for the Telepathy framework"; homepage = "https://telepathy.freedesktop.org/components/telepathy-mission-control/"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # The last successful Darwin Hydra build was in 2024 broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64; }; diff --git a/pkgs/by-name/te/telepresence2/package.nix b/pkgs/by-name/te/telepresence2/package.nix index 216fc379a228..0e971c6c038b 100644 --- a/pkgs/by-name/te/telepresence2/package.nix +++ b/pkgs/by-name/te/telepresence2/package.nix @@ -61,11 +61,11 @@ buildGoModule rec { subPackages = [ "cmd/telepresence" ]; - meta = with lib; { + meta = { description = "Local development against a remote Kubernetes or OpenShift cluster"; homepage = "https://telepresence.io"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mausch vilsol wrbbz diff --git a/pkgs/by-name/te/teller/package.nix b/pkgs/by-name/te/teller/package.nix index 78cd3355df35..1b403d0f0535 100644 --- a/pkgs/by-name/te/teller/package.nix +++ b/pkgs/by-name/te/teller/package.nix @@ -42,12 +42,12 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/tellerops/teller/"; description = "Cloud native secrets management for developers"; mainProgram = "teller"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cameronraysmith wahtique ]; diff --git a/pkgs/by-name/te/template-glib/package.nix b/pkgs/by-name/te/template-glib/package.nix index 454149b612f8..ca2f39059656 100644 --- a/pkgs/by-name/te/template-glib/package.nix +++ b/pkgs/by-name/te/template-glib/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library for template expansion which supports calling into GObject Introspection from templates"; homepage = "https://gitlab.gnome.org/GNOME/template-glib"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/te/temporal_capi/package.nix b/pkgs/by-name/te/temporal_capi/package.nix index 2ef74966e4b7..7b7c7c4bc96d 100644 --- a/pkgs/by-name/te/temporal_capi/package.nix +++ b/pkgs/by-name/te/temporal_capi/package.nix @@ -89,14 +89,14 @@ rustPlatform.buildRustPackage (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "A Rust implementation of ECMAScript's Temporal API"; homepage = "https://github.com/boa-dev/temporal"; changelog = "https://github.com/boa-dev/temporal/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ aduh95 ]; + maintainers = with lib.maintainers; [ aduh95 ]; }; }) diff --git a/pkgs/by-name/te/tendermint/package.nix b/pkgs/by-name/te/tendermint/package.nix index 77d9f8510a26..75b90189e6b1 100644 --- a/pkgs/by-name/te/tendermint/package.nix +++ b/pkgs/by-name/te/tendermint/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { ) ''; - meta = with lib; { + meta = { description = "Byzantine-Fault Tolerant State Machines. Or Blockchain, for short"; homepage = "https://tendermint.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ alexfmpe ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ alexfmpe ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "tendermint"; }; } diff --git a/pkgs/by-name/te/tenderness/package.nix b/pkgs/by-name/te/tenderness/package.nix index 96d80399b2c0..9097a600c7b9 100644 --- a/pkgs/by-name/te/tenderness/package.nix +++ b/pkgs/by-name/te/tenderness/package.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/font/tenderness/"; description = "Serif font designed by Sora Sagano with old-style figures"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ minijackson ]; - license = licenses.ofl; + license = lib.licenses.ofl; }; } diff --git a/pkgs/by-name/te/tenki/package.nix b/pkgs/by-name/te/tenki/package.nix index dbc98bfd417a..9b717667efc9 100644 --- a/pkgs/by-name/te/tenki/package.nix +++ b/pkgs/by-name/te/tenki/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jV+KHHAPpsFxNnBaMPE5XYDG4Fhn3a89NBUpZg++YUE="; - meta = with lib; { + meta = { description = "tty-clock with weather effect"; homepage = "https://github.com/ckaznable/tenki"; - license = licenses.mit; - maintainers = with maintainers; [ iynaix ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ iynaix ]; mainProgram = "tenki"; }; } diff --git a/pkgs/by-name/te/tensorflow-lite/package.nix b/pkgs/by-name/te/tensorflow-lite/package.nix index f81420f1e847..692537fba7b7 100644 --- a/pkgs/by-name/te/tensorflow-lite/package.nix +++ b/pkgs/by-name/te/tensorflow-lite/package.nix @@ -109,11 +109,11 @@ buildBazelPackage rec { dontAddPrefix = true; configurePlatforms = [ ]; - meta = with lib; { + meta = { description = "Open source deep learning framework for on-device inference"; homepage = "https://www.tensorflow.org/lite"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mschwaig cpcloud ]; diff --git a/pkgs/by-name/te/tensorman/package.nix b/pkgs/by-name/te/tensorman/package.nix index 0e7cf94213e0..7be004c695fe 100644 --- a/pkgs/by-name/te/tensorman/package.nix +++ b/pkgs/by-name/te/tensorman/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-/Ul8+5MmTntQ0OprfG4QhUNjc3PktCandzTTWn4FD0Y="; - meta = with lib; { + meta = { description = "Utility for easy management of Tensorflow containers"; homepage = "https://github.com/pop-os/tensorman"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ thefenriswolf ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ thefenriswolf ]; mainProgram = "tensorman"; }; } diff --git a/pkgs/by-name/te/tere/package.nix b/pkgs/by-name/te/tere/package.nix index 3c41dbc6e3aa..12af1703c19c 100644 --- a/pkgs/by-name/te/tere/package.nix +++ b/pkgs/by-name/te/tere/package.nix @@ -56,11 +56,11 @@ rustPlatform.buildRustPackage { in "${python-with-toml}/bin/python3 ${script}"; - meta = with lib; { + meta = { description = "Faster alternative to cd + ls"; homepage = "https://github.com/mgunyho/tere"; - license = licenses.eupl12; - maintainers = with maintainers; [ ProducerMatt ]; + license = lib.licenses.eupl12; + maintainers = with lib.maintainers; [ ProducerMatt ]; mainProgram = "tere"; }; } diff --git a/pkgs/by-name/te/termbench-pro/package.nix b/pkgs/by-name/te/termbench-pro/package.nix index c5782c59e6ed..6ac6f19f1848 100644 --- a/pkgs/by-name/te/termbench-pro/package.nix +++ b/pkgs/by-name/te/termbench-pro/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Terminal Benchmarking as CLI and library"; mainProgram = "tb"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/te/termbox/package.nix b/pkgs/by-name/te/termbox/package.nix index f0f797b75f54..2c6e0943419e 100644 --- a/pkgs/by-name/te/termbox/package.nix +++ b/pkgs/by-name/te/termbox/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Library for writing text-based user interfaces"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/termbox/termbox#readme"; downloadPage = "https://github.com/termbox/termbox/releases"; - maintainers = with maintainers; [ fgaz ]; + maintainers = with lib.maintainers; [ fgaz ]; }; }) diff --git a/pkgs/by-name/te/termcolor/package.nix b/pkgs/by-name/te/termcolor/package.nix index 2f2078a59c6d..1990ab7fa8a9 100644 --- a/pkgs/by-name/te/termcolor/package.nix +++ b/pkgs/by-name/te/termcolor/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Header-only C++ library for printing colored messages"; homepage = "https://github.com/ikalnytskyi/termcolor"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/by-name/te/termdbms/package.nix b/pkgs/by-name/te/termdbms/package.nix index 342781555a54..4bf12bf902c1 100644 --- a/pkgs/by-name/te/termdbms/package.nix +++ b/pkgs/by-name/te/termdbms/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X=main.Version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mathaou/termdbms/"; description = "TUI for viewing and editing database files"; - license = licenses.mit; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ izorkin ]; mainProgram = "sqlite3-viewer"; }; } diff --git a/pkgs/by-name/te/terminal-colors/package.nix b/pkgs/by-name/te/terminal-colors/package.nix index 7dd498833053..9692ffa735c1 100644 --- a/pkgs/by-name/te/terminal-colors/package.nix +++ b/pkgs/by-name/te/terminal-colors/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Script displaying terminal colors in various formats"; homepage = "https://github.com/eikenb/terminal-colors"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kaction ]; mainProgram = "terminal-colors"; }; } diff --git a/pkgs/by-name/te/terminal-notifier/package.nix b/pkgs/by-name/te/terminal-notifier/package.nix index 60853bfc4098..1f4e97ec2715 100644 --- a/pkgs/by-name/te/terminal-notifier/package.nix +++ b/pkgs/by-name/te/terminal-notifier/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { chmod +x $out/bin/terminal-notifier ''; - meta = with lib; { + meta = { maintainers = [ ]; homepage = "https://github.com/julienXX/terminal-notifier"; - license = licenses.mit; - platforms = platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/te/terminal-parrot/package.nix b/pkgs/by-name/te/terminal-parrot/package.nix index 7dfe33d93288..4aa38da632fa 100644 --- a/pkgs/by-name/te/terminal-parrot/package.nix +++ b/pkgs/by-name/te/terminal-parrot/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Shows colorful, animated party parrot in your terminial"; homepage = "https://github.com/jmhobbs/terminal-parrot"; - license = licenses.mit; - maintainers = [ maintainers.heel ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.heel ]; mainProgram = "terminal-parrot"; }; } diff --git a/pkgs/by-name/te/terminal-stocks/package.nix b/pkgs/by-name/te/terminal-stocks/package.nix index 238bdef27ef6..4fd786347f66 100644 --- a/pkgs/by-name/te/terminal-stocks/package.nix +++ b/pkgs/by-name/te/terminal-stocks/package.nix @@ -21,11 +21,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Terminal based application that provides stock price information"; homepage = "https://github.com/shweshi/terminal-stocks"; - maintainers = with maintainers; [ mislavzanic ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ mislavzanic ]; + license = lib.licenses.mit; mainProgram = "terminal-stocks"; }; } diff --git a/pkgs/by-name/te/terminator/package.nix b/pkgs/by-name/te/terminator/package.nix index 22c84eb5d36e..7ad8b566a9c2 100644 --- a/pkgs/by-name/te/terminator/package.nix +++ b/pkgs/by-name/te/terminator/package.nix @@ -75,7 +75,7 @@ python3.pkgs.buildPythonApplication rec { passthru.tests.test = nixosTests.terminal-emulators.terminator; - meta = with lib; { + meta = { description = "Terminal emulator with support for tiling and tabs"; longDescription = '' The goal of this project is to produce a useful tool for arranging @@ -85,8 +85,8 @@ python3.pkgs.buildPythonApplication rec { ''; changelog = "https://github.com/gnome-terminator/terminator/releases/tag/${src.tag}"; homepage = "https://github.com/gnome-terminator/terminator"; - license = licenses.gpl2; - maintainers = with maintainers; [ bjornfor ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ bjornfor ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/te/termius/package.nix b/pkgs/by-name/te/termius/package.nix index 5ab08c77ef11..e198820a62e9 100644 --- a/pkgs/by-name/te/termius/package.nix +++ b/pkgs/by-name/te/termius/package.nix @@ -109,13 +109,13 @@ stdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { description = "Cross-platform SSH client with cloud data sync and more"; homepage = "https://termius.com/"; downloadPage = "https://termius.com/linux/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ th0rgal Rishik-Y ]; diff --git a/pkgs/by-name/te/termshark/package.nix b/pkgs/by-name/te/termshark/package.nix index 4e8439fa0329..3e14bd7b83eb 100644 --- a/pkgs/by-name/te/termshark/package.nix +++ b/pkgs/by-name/te/termshark/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { "-X github.com/gcla/termshark.Version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://termshark.io/"; description = "Terminal UI for wireshark-cli, inspired by Wireshark"; mainProgram = "termshark"; - license = licenses.mit; - maintainers = with maintainers; [ winpat ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ winpat ]; }; } diff --git a/pkgs/by-name/te/termsnap/package.nix b/pkgs/by-name/te/termsnap/package.nix index 31c8f1bb4fc6..95a8fad473ae 100644 --- a/pkgs/by-name/te/termsnap/package.nix +++ b/pkgs/by-name/te/termsnap/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-lfWQ7VzFYhbEjrhKxPT8quhxbL+5pTzIPUVjBBHRk7Q="; - meta = with lib; { + meta = { description = "Create SVGs from terminal output"; homepage = "https://github.com/tomcur/termsnap"; - license = licenses.mit; - maintainers = with maintainers; [ yash-garg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yash-garg ]; mainProgram = "termsnap"; }; } diff --git a/pkgs/by-name/te/termsonic/package.nix b/pkgs/by-name/te/termsonic/package.nix index c3374e668119..ff6607ccfbaf 100644 --- a/pkgs/by-name/te/termsonic/package.nix +++ b/pkgs/by-name/te/termsonic/package.nix @@ -22,12 +22,12 @@ buildGoModule { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://git.sixfoisneuf.fr/termsonic"; description = "Subsonic client running in your terminal"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "termsonic"; - maintainers = with maintainers; [ mksafavi ]; + maintainers = with lib.maintainers; [ mksafavi ]; }; } diff --git a/pkgs/by-name/te/termsvg/package.nix b/pkgs/by-name/te/termsvg/package.nix index be9e5a4ea63e..b1d86bc036d5 100644 --- a/pkgs/by-name/te/termsvg/package.nix +++ b/pkgs/by-name/te/termsvg/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X=main.date=1970-01-01T00:00:00Z" ]; - meta = with lib; { + meta = { description = "Record, share and export your terminal as a animated SVG image"; homepage = "https://github.com/MrMarble/termsvg"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ pbsds ]; mainProgram = "termsvg"; }; } diff --git a/pkgs/by-name/te/termsyn/package.nix b/pkgs/by-name/te/termsyn/package.nix index 5ab5b9b2907a..dbac95f96fb8 100644 --- a/pkgs/by-name/te/termsyn/package.nix +++ b/pkgs/by-name/te/termsyn/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { mkfontdir "$out/share/fonts" ''; - meta = with lib; { + meta = { description = "Monospaced font based on terminus and tamsyn"; homepage = "https://sourceforge.net/projects/termsyn/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ sophrosyne ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sophrosyne ]; }; } diff --git a/pkgs/by-name/te/termtekst/package.nix b/pkgs/by-name/te/termtekst/package.nix index b87111db4cf7..77f9bfe15b68 100644 --- a/pkgs/by-name/te/termtekst/package.nix +++ b/pkgs/by-name/te/termtekst/package.nix @@ -29,7 +29,7 @@ python3Packages.buildPythonApplication rec { --replace "locale.setlocale" "#locale.setlocale" ''; - meta = with lib; { + meta = { description = "Console NOS Teletekst viewer in Python"; mainProgram = "tt"; longDescription = '' @@ -39,7 +39,7 @@ python3Packages.buildPythonApplication rec { as a workaround the braille set is abused to approximate the graphics. ''; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/te/termtosvg/package.nix b/pkgs/by-name/te/termtosvg/package.nix index 5b30ecef9a4e..143959bcfe99 100644 --- a/pkgs/by-name/te/termtosvg/package.nix +++ b/pkgs/by-name/te/termtosvg/package.nix @@ -24,10 +24,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "termtosvg" ]; - meta = with lib; { + meta = { homepage = "https://nbedos.github.io/termtosvg/"; description = "Record terminal sessions as SVG animations"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; mainProgram = "termtosvg"; }; diff --git a/pkgs/by-name/te/terra-station/package.nix b/pkgs/by-name/te/terra-station/package.nix index 9cc16d1e198f..a5244c96ce06 100644 --- a/pkgs/by-name/te/terra-station/package.nix +++ b/pkgs/by-name/te/terra-station/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation rec { --add-flags $out/share/${pname}/resources/app.aasar ''; - meta = with lib; { + meta = { description = "Terra station is the official wallet of the Terra blockchain"; homepage = "https://station.money/"; - license = licenses.isc; - maintainers = [ maintainers.peterwilli ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.peterwilli ]; platforms = [ "x86_64-linux" ]; mainProgram = "terra-station"; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; diff --git a/pkgs/by-name/te/terra/package.nix b/pkgs/by-name/te/terra/package.nix index ec78ab0a881a..df2baaec6fae 100644 --- a/pkgs/by-name/te/terra/package.nix +++ b/pkgs/by-name/te/terra/package.nix @@ -108,17 +108,17 @@ stdenv.mkDerivation rec { cp -rv include/terra $dev/include ''; - meta = with lib; { + meta = { description = "Low-level counterpart to Lua"; homepage = "https://terralang.org/"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jb55 seylerius thoughtpolice elliottslaughter ]; - license = licenses.mit; + license = lib.licenses.mit; # never built on aarch64-darwin since first introduction in nixpkgs # Linux Aarch64 broken above LLVM11 # https://github.com/terralang/terra/issues/597 diff --git a/pkgs/by-name/te/terraform-backend-git/package.nix b/pkgs/by-name/te/terraform-backend-git/package.nix index 3e89b864fea5..ac14ecb56c0f 100644 --- a/pkgs/by-name/te/terraform-backend-git/package.nix +++ b/pkgs/by-name/te/terraform-backend-git/package.nix @@ -36,12 +36,12 @@ buildGoModule rec { --zsh <($out/bin/terraform-backend-git completion zsh) ''; - meta = with lib; { + meta = { description = "Terraform HTTP Backend implementation that uses Git repository as storage"; mainProgram = "terraform-backend-git"; homepage = "https://github.com/plumber-cd/terraform-backend-git"; changelog = "https://github.com/plumber-cd/terraform-backend-git/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/terraform-compliance/package.nix b/pkgs/by-name/te/terraform-compliance/package.nix index 81d81a92363c..ece213921ad0 100644 --- a/pkgs/by-name/te/terraform-compliance/package.nix +++ b/pkgs/by-name/te/terraform-compliance/package.nix @@ -51,13 +51,13 @@ python3.pkgs.buildPythonApplication rec { "terraform_compliance" ]; - meta = with lib; { + meta = { description = "BDD test framework for terraform"; mainProgram = "terraform-compliance"; homepage = "https://github.com/terraform-compliance/cli"; changelog = "https://github.com/terraform-compliance/cli/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit kashw2 ]; diff --git a/pkgs/by-name/te/terraform-docs/package.nix b/pkgs/by-name/te/terraform-docs/package.nix index 6877d5786fe4..28972086e8a4 100644 --- a/pkgs/by-name/te/terraform-docs/package.nix +++ b/pkgs/by-name/te/terraform-docs/package.nix @@ -46,12 +46,12 @@ buildGo124Module (finalAttrs: { version = "v${finalAttrs.version}"; }; - meta = with lib; { + meta = { description = "Utility to generate documentation from Terraform modules in various output formats"; mainProgram = "terraform-docs"; homepage = "https://github.com/terraform-docs/terraform-docs/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm anthonyroussel ]; diff --git a/pkgs/by-name/te/terraform-inventory/package.nix b/pkgs/by-name/te/terraform-inventory/package.nix index aeec2b66e1f5..6c61f93067c1 100644 --- a/pkgs/by-name/te/terraform-inventory/package.nix +++ b/pkgs/by-name/te/terraform-inventory/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { package = terraform-inventory; }; - meta = with lib; { + meta = { homepage = "https://github.com/adammck/terraform-inventory"; description = "Terraform state to ansible inventory adapter"; mainProgram = "terraform-inventory"; - license = licenses.mit; - maintainers = with maintainers; [ htr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ htr ]; }; } diff --git a/pkgs/by-name/te/terraform-landscape/package.nix b/pkgs/by-name/te/terraform-landscape/package.nix index 637a5d526230..87313745ff82 100644 --- a/pkgs/by-name/te/terraform-landscape/package.nix +++ b/pkgs/by-name/te/terraform-landscape/package.nix @@ -12,15 +12,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "terraform-landscape"; - meta = with lib; { + meta = { description = "Improve Terraform's plan output to be easier to read and understand"; homepage = "https://github.com/coinbase/terraform-landscape"; - license = with licenses; asl20; - maintainers = with maintainers; [ + license = with lib.licenses; asl20; + maintainers = with lib.maintainers; [ mbode manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/te/terraform-local/package.nix b/pkgs/by-name/te/terraform-local/package.nix index 1348c89ce956..f1c31aec3f7c 100644 --- a/pkgs/by-name/te/terraform-local/package.nix +++ b/pkgs/by-name/te/terraform-local/package.nix @@ -27,10 +27,10 @@ python3Packages.buildPythonApplication rec { # There is no `pythonImportsCheck` because the package only outputs a binary: tflocal dontUsePythonImportsCheck = true; - meta = with lib; { + meta = { description = "Terraform CLI wrapper to deploy your Terraform applications directly to LocalStack"; homepage = "https://github.com/localstack/terraform-local"; - license = licenses.asl20; - maintainers = with maintainers; [ shivaraj-bh ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ shivaraj-bh ]; }; } diff --git a/pkgs/by-name/te/terraform-lsp/package.nix b/pkgs/by-name/te/terraform-lsp/package.nix index f1f6b372b96e..4ac89a3b3070 100644 --- a/pkgs/by-name/te/terraform-lsp/package.nix +++ b/pkgs/by-name/te/terraform-lsp/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X main.GitCommit=${src.rev}" ]; - meta = with lib; { + meta = { description = "Language Server Protocol for Terraform"; mainProgram = "terraform-lsp"; homepage = "https://github.com/juliosueiras/terraform-lsp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/terraformer/package.nix b/pkgs/by-name/te/terraformer/package.nix index 478685a30813..0ae89ef98988 100644 --- a/pkgs/by-name/te/terraformer/package.nix +++ b/pkgs/by-name/te/terraformer/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code"; mainProgram = "terraformer"; homepage = "https://github.com/GoogleCloudPlatform/terraformer"; - license = licenses.asl20; - maintainers = with maintainers; [ ryan4yin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ryan4yin ]; }; } diff --git a/pkgs/by-name/te/terraforming/package.nix b/pkgs/by-name/te/terraforming/package.nix index 68fa21239f53..fecb9e1c0370 100644 --- a/pkgs/by-name/te/terraforming/package.nix +++ b/pkgs/by-name/te/terraforming/package.nix @@ -14,12 +14,12 @@ bundlerApp rec { passthru.updateScript = bundlerUpdateScript "terraforming"; - meta = with lib; { + meta = { inherit (ruby.meta) platforms; description = "Export existing AWS resources to Terraform style (tf, tfstate)"; homepage = "https://github.com/dtan4/terraforming"; - license = with licenses; mit; - maintainers = with maintainers; [ kalbasit ]; + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/te/terragrunt/package.nix b/pkgs/by-name/te/terragrunt/package.nix index 293342cea560..159ae854e740 100644 --- a/pkgs/by-name/te/terragrunt/package.nix +++ b/pkgs/by-name/te/terragrunt/package.nix @@ -38,13 +38,13 @@ buildGo125Module (finalAttrs: { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://terragrunt.gruntwork.io"; changelog = "https://github.com/gruntwork-io/terragrunt/releases/tag/v${finalAttrs.version}"; description = "Thin wrapper for Terraform that supports locking for Terraform state and enforces best practices"; mainProgram = "terragrunt"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jk qjoly kashw2 diff --git a/pkgs/by-name/te/terranix/package.nix b/pkgs/by-name/te/terranix/package.nix index bdac8d56c672..e3c82ea6da6e 100644 --- a/pkgs/by-name/te/terranix/package.nix +++ b/pkgs/by-name/te/terranix/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "NixOS like terraform-json generator"; homepage = "https://terranix.org"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mrVanDalo sshine ]; diff --git a/pkgs/by-name/te/terrapin-scanner/package.nix b/pkgs/by-name/te/terrapin-scanner/package.nix index ab4e3cf6d4cd..89cea4412043 100644 --- a/pkgs/by-name/te/terrapin-scanner/package.nix +++ b/pkgs/by-name/te/terrapin-scanner/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Vulnerability scanner for the Terrapin attack"; homepage = "https://github.com/RUB-NDS/Terrapin-Scanner"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "Terrapin-Scanner"; }; } diff --git a/pkgs/by-name/te/terraria-server/package.nix b/pkgs/by-name/te/terraria-server/package.nix index babfa76a6051..5129241700cd 100644 --- a/pkgs/by-name/te/terraria-server/package.nix +++ b/pkgs/by-name/te/terraria-server/package.nix @@ -38,13 +38,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://terraria.org"; description = "Dedicated server for Terraria, a 2D action-adventure sandbox"; platforms = [ "x86_64-linux" ]; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "TerrariaServer"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ncfavier tomasajt ]; diff --git a/pkgs/by-name/te/terraspace/package.nix b/pkgs/by-name/te/terraspace/package.nix index b849f4b10665..f5fd008ae94b 100644 --- a/pkgs/by-name/te/terraspace/package.nix +++ b/pkgs/by-name/te/terraspace/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { passthru.updateScript = bundlerUpdateScript "terraspace"; - meta = with lib; { + meta = { description = "Terraform framework that provides an organized structure, and keeps your code DRY"; mainProgram = "terraspace"; homepage = "https://github.com/boltops-tools/terraspace"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = ruby.meta.platforms; - maintainers = with maintainers; [ mislavzanic ]; + maintainers = with lib.maintainers; [ mislavzanic ]; }; } diff --git a/pkgs/by-name/te/terser/package.nix b/pkgs/by-name/te/terser/package.nix index 87c3ec5602a0..df6fb3fe9ddd 100644 --- a/pkgs/by-name/te/terser/package.nix +++ b/pkgs/by-name/te/terser/package.nix @@ -17,11 +17,11 @@ buildNpmPackage rec { npmDepsHash = "sha256-jec/XyYDGhvl3fngG/HGJMI1G5JtYuZi/pJFrZuir+A="; - meta = with lib; { + meta = { description = "JavaScript parser, mangler and compressor toolkit for ES6+"; mainProgram = "terser"; homepage = "https://terser.org"; - license = licenses.bsd2; - maintainers = with maintainers; [ talyz ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ talyz ]; }; } diff --git a/pkgs/by-name/te/tes3cmd/package.nix b/pkgs/by-name/te/tes3cmd/package.nix index 46799c7175e2..c05bc7577af4 100644 --- a/pkgs/by-name/te/tes3cmd/package.nix +++ b/pkgs/by-name/te/tes3cmd/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { cp tes3cmd $out/bin/tes3cmd ''; - meta = with lib; { + meta = { description = "Command line tool for examining and modifying plugins for the Elder Scrolls game Morrowind by Bethesda Softworks"; mainProgram = "tes3cmd"; homepage = "https://github.com/john-moonsugar/tes3cmd"; - license = licenses.mit; - maintainers = [ maintainers.marius851000 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.marius851000 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/te/tessen/package.nix b/pkgs/by-name/te/tessen/package.nix index e660bfa23e3d..ad6f72fa5d89 100644 --- a/pkgs/by-name/te/tessen/package.nix +++ b/pkgs/by-name/te/tessen/package.nix @@ -54,12 +54,12 @@ stdenvNoCC.mkDerivation rec { install -Dm644 config $out/share/tessen/config ''; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~ayushnix/tessen"; description = "Interactive menu to autotype and copy Pass and GoPass data"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ monaaraj ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ monaaraj ]; mainProgram = "tessen"; }; } diff --git a/pkgs/by-name/te/tessera/package.nix b/pkgs/by-name/te/tessera/package.nix index 77a5bff8c88b..cfbcadced15b 100644 --- a/pkgs/by-name/te/tessera/package.nix +++ b/pkgs/by-name/te/tessera/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { makeWrapper ${jre}/bin/java $out/bin/tessera --add-flags "-jar $src" ''; - meta = with lib; { + meta = { description = "Enterprise Implementation of Quorum's transaction manager"; homepage = "https://github.com/jpmorganchase/tessera"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ mmahut ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mmahut ]; mainProgram = "tessera"; }; } diff --git a/pkgs/by-name/te/test-drive/package.nix b/pkgs/by-name/te/test-drive/package.nix index 4d70c4ea0629..fbb1b020cb3c 100644 --- a/pkgs/by-name/te/test-drive/package.nix +++ b/pkgs/by-name/te/test-drive/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation rec { mesonAutoFeatures = "auto"; - meta = with lib; { + meta = { description = "Procedural Fortran testing framework"; homepage = "https://github.com/fortran-lang/test-drive"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/te/testssl/package.nix b/pkgs/by-name/te/testssl/package.nix index 1847e52b2fc2..80dba1198a19 100644 --- a/pkgs/by-name/te/testssl/package.nix +++ b/pkgs/by-name/te/testssl/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/testssl.sh --prefix PATH ':' ${lib.makeBinPath buildInputs} ''; - meta = with lib; { + meta = { description = "CLI tool to check a server's TLS/SSL capabilities"; longDescription = '' CLI tool which checks a server's service on any port for the support of TLS/SSL ciphers, protocols as well as recent cryptographic flaws and more. ''; homepage = "https://testssl.sh/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; mainProgram = "testssl.sh"; }; diff --git a/pkgs/by-name/te/tetraproc/package.nix b/pkgs/by-name/te/tetraproc/package.nix index 3aa5b042a571..c1462b81e838 100644 --- a/pkgs/by-name/te/tetraproc/package.nix +++ b/pkgs/by-name/te/tetraproc/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/tetraproc --prefix PATH : "${jack2}/bin" ''; - meta = with lib; { + meta = { description = "Converts the A-format signals from a tetrahedral Ambisonic microphone into B-format signals ready for recording"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/"; - license = licenses.gpl2; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/te/tetrd/package.nix b/pkgs/by-name/te/tetrd/package.nix index d716e7f3fa71..e7694d7ec5f4 100644 --- a/pkgs/by-name/te/tetrd/package.nix +++ b/pkgs/by-name/te/tetrd/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { substituteInPlace $out/share/applications/tetrd.desktop --replace /opt $out/opt ''; - meta = with lib; { + meta = { description = "Share your internet connection from your device to your PC and vice versa through a USB cable"; homepage = "https://tetrd.app"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/te/tevent/package.nix b/pkgs/by-name/te/tevent/package.nix index 4fef1491564c..7f3d282a72a0 100644 --- a/pkgs/by-name/te/tevent/package.nix +++ b/pkgs/by-name/te/tevent/package.nix @@ -71,10 +71,10 @@ stdenv.mkDerivation rec { stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17" ) "--undefined-version"; - meta = with lib; { + meta = { description = "Event system based on the talloc memory management library"; homepage = "https://tevent.samba.org/"; - license = licenses.lgpl3Plus; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/te/tewi-font/package.nix b/pkgs/by-name/te/tewi-font/package.nix index 61b72b3249ef..62fe79d4b7fe 100644 --- a/pkgs/by-name/te/tewi-font/package.nix +++ b/pkgs/by-name/te/tewi-font/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { mkfontdir "$fontDir" ''; - meta = with lib; { + meta = { description = "Nice bitmap font, readable even at small sizes"; longDescription = '' Tewi is a bitmap font, readable even at very small font sizes. This is @@ -62,6 +62,6 @@ stdenv.mkDerivation rec { fullName = "GNU General Public License with a font exception"; url = "https://www.gnu.org/licenses/gpl-faq.html#FontException"; }; - maintainers = [ maintainers.fro_ozen ]; + maintainers = [ lib.maintainers.fro_ozen ]; }; } diff --git a/pkgs/by-name/te/tewisay/package.nix b/pkgs/by-name/te/tewisay/package.nix index 50a5fa78a04a..db1402554eb3 100644 --- a/pkgs/by-name/te/tewisay/package.nix +++ b/pkgs/by-name/te/tewisay/package.nix @@ -32,10 +32,10 @@ buildGoModule { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/raymond-w-ko/tewisay"; description = "Cowsay replacement with unicode and partial ansi escape support"; - license = with licenses; [ cc0 ]; + license = with lib.licenses; [ cc0 ]; mainProgram = "tewisay"; }; } diff --git a/pkgs/by-name/te/texi2mdoc/package.nix b/pkgs/by-name/te/texi2mdoc/package.nix index fc91d6dd0b26..07245c442aaf 100644 --- a/pkgs/by-name/te/texi2mdoc/package.nix +++ b/pkgs/by-name/te/texi2mdoc/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "http://mdocml.bsd.lv/"; description = "Converter from Texinfo into mdoc"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ ramkromberg ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ramkromberg ]; mainProgram = "texi2mdoc"; }; } diff --git a/pkgs/by-name/te/texstudio/package.nix b/pkgs/by-name/te/texstudio/package.nix index 73214d143c3f..23629170282c 100644 --- a/pkgs/by-name/te/texstudio/package.nix +++ b/pkgs/by-name/te/texstudio/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { rm -d "$out/bin" ''; - meta = with lib; { + meta = { description = "TeX and LaTeX editor"; longDescription = '' Fork of TeXMaker, this editor is a full fledged IDE for @@ -55,9 +55,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://texstudio.org"; changelog = "https://github.com/texstudio-org/texstudio/blob/${finalAttrs.version}/utilities/manual/source/CHANGELOG.md"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ajs124 cfouche ]; diff --git a/pkgs/by-name/te/textplots/package.nix b/pkgs/by-name/te/textplots/package.nix index b1f608802112..e0954ba32f9f 100644 --- a/pkgs/by-name/te/textplots/package.nix +++ b/pkgs/by-name/te/textplots/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { buildFeatures = [ "tool" ]; - meta = with lib; { + meta = { description = "Terminal plotting written in Rust"; homepage = "https://github.com/loony-bean/textplots-rs"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "textplots"; }; diff --git a/pkgs/by-name/te/textql/package.nix b/pkgs/by-name/te/textql/package.nix index 5fd051922ed7..a08950a086a7 100644 --- a/pkgs/by-name/te/textql/package.nix +++ b/pkgs/by-name/te/textql/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { description = "Execute SQL against structured text like CSV or TSV"; mainProgram = "textql"; homepage = "https://github.com/dinedal/textql"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/textsnatcher/package.nix b/pkgs/by-name/te/textsnatcher/package.nix index 2d6c1bd04a17..73155570ea88 100644 --- a/pkgs/by-name/te/textsnatcher/package.nix +++ b/pkgs/by-name/te/textsnatcher/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = with lib; { + meta = { description = "Copy Text from Images with ease, Perform OCR operations in seconds"; homepage = "https://textsnatcher.rf.gd/"; changelog = "https://github.com/RajSolai/TextSnatcher/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "com.github.rajsolai.textsnatcher"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/te/texture-synthesis/package.nix b/pkgs/by-name/te/texture-synthesis/package.nix index 55e1499fac85..27567e548968 100644 --- a/pkgs/by-name/te/texture-synthesis/package.nix +++ b/pkgs/by-name/te/texture-synthesis/package.nix @@ -28,10 +28,10 @@ rustPlatform.buildRustPackage rec { # tests fail for unknown reasons on aarch64-darwin doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); - meta = with lib; { + meta = { description = "Example-based texture synthesis written in Rust"; homepage = "https://github.com/embarkstudios/texture-synthesis"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/tf/tf-summarize/package.nix b/pkgs/by-name/tf/tf-summarize/package.nix index 29da31f6e66b..3e5f2536eba1 100644 --- a/pkgs/by-name/tf/tf-summarize/package.nix +++ b/pkgs/by-name/tf/tf-summarize/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { inherit version; }; - meta = with lib; { + meta = { description = "Command-line utility to print the summary of the terraform plan"; mainProgram = "tf-summarize"; homepage = "https://github.com/dineshba/tf-summarize"; - license = licenses.mit; - maintainers = with maintainers; [ pjrm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pjrm ]; }; } diff --git a/pkgs/by-name/tf/tf2pulumi/package.nix b/pkgs/by-name/tf/tf2pulumi/package.nix index 37b1ac9bfe2e..4d8237951d94 100644 --- a/pkgs/by-name/tf/tf2pulumi/package.nix +++ b/pkgs/by-name/tf/tf2pulumi/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Convert Terraform projects to Pulumi TypeScript programs"; mainProgram = "tf2pulumi"; homepage = "https://www.pulumi.com/tf2pulumi/"; - license = licenses.asl20; - maintainers = with maintainers; [ mausch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mausch ]; }; } diff --git a/pkgs/by-name/tf/tfautomv/package.nix b/pkgs/by-name/tf/tfautomv/package.nix index 2f8732233263..9b0d48ab6434 100644 --- a/pkgs/by-name/tf/tfautomv/package.nix +++ b/pkgs/by-name/tf/tfautomv/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/busser/tfautomv"; description = "When refactoring a Terraform codebase, you often need to write moved blocks. This can be tedious. Let tfautomv do it for you"; mainProgram = "tfautomv"; - license = licenses.asl20; - maintainers = with maintainers; [ qjoly ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qjoly ]; }; } diff --git a/pkgs/by-name/tf/tfk8s/package.nix b/pkgs/by-name/tf/tfk8s/package.nix index f50247362bf3..741011835ac5 100644 --- a/pkgs/by-name/tf/tfk8s/package.nix +++ b/pkgs/by-name/tf/tfk8s/package.nix @@ -37,9 +37,9 @@ buildGoModule rec { sample1 = callPackage ./tests/sample1 { }; }; - meta = with lib; { + meta = { description = "Utility to convert Kubernetes YAML manifests to Terraform's HCL format"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' tfk8s is a tool that makes it easier to work with the Terraform Kubernetes Provider. If you want to copy examples from the Kubernetes documentation or migrate existing YAML manifests and use them with Terraform without having to convert YAML to HCL by hand, this tool is for you. diff --git a/pkgs/by-name/tf/tfproviderdocs/package.nix b/pkgs/by-name/tf/tfproviderdocs/package.nix index bf6a8db3482e..462edc99e7d6 100644 --- a/pkgs/by-name/tf/tfproviderdocs/package.nix +++ b/pkgs/by-name/tf/tfproviderdocs/package.nix @@ -31,16 +31,16 @@ buildGoModule rec { doInstallCheck = true; versionCheckProgramArg = "version"; - meta = with lib; { + meta = { description = "Terraform Provider Documentation Tool"; - license = licenses.mpl20; + license = lib.licenses.mpl20; longDescription = '' tfproviderdocs is an open-source tool for validating the documentation of Terraform providers. It automates the checking of documentation based on the provider's code specifications and configurations. This helps developers maintain consistent and up-to-date documentation. ''; homepage = "https://github.com/bflad/tfproviderdocs"; - maintainers = with maintainers; [ tembleking ]; + maintainers = with lib.maintainers; [ tembleking ]; mainProgram = "tfproviderdocs"; }; } diff --git a/pkgs/by-name/tf/tfswitch/package.nix b/pkgs/by-name/tf/tfswitch/package.nix index fc7acf712c5d..f055d1383f2b 100644 --- a/pkgs/by-name/tf/tfswitch/package.nix +++ b/pkgs/by-name/tf/tfswitch/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { mv $out/bin/terraform-switcher $out/bin/tfswitch ''; - meta = with lib; { + meta = { description = "Command line tool to switch between different versions of terraform"; mainProgram = "tfswitch"; homepage = "https://github.com/warrensbox/terraform-switcher"; - license = licenses.mit; - maintainers = with maintainers; [ psibi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psibi ]; }; } diff --git a/pkgs/by-name/tf/tftp-hpa/package.nix b/pkgs/by-name/tf/tftp-hpa/package.nix index 55b1dd5f7c5a..93a1fe5cc4d9 100644 --- a/pkgs/by-name/tf/tftp-hpa/package.nix +++ b/pkgs/by-name/tf/tftp-hpa/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { automake ]; - meta = with lib; { + meta = { description = "TFTP tools - a lot of fixes on top of BSD TFTP"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; homepage = "https://www.kernel.org/pub/software/network/tftp/"; }; diff --git a/pkgs/by-name/tf/tfupdate/package.nix b/pkgs/by-name/tf/tfupdate/package.nix index a0b0f557aa72..24e91e68543d 100644 --- a/pkgs/by-name/tf/tfupdate/package.nix +++ b/pkgs/by-name/tf/tfupdate/package.nix @@ -21,13 +21,13 @@ buildGoModule rec { # panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Update version constraints in your Terraform configurations"; mainProgram = "tfupdate"; homepage = "https://github.com/minamijoyo/tfupdate"; changelog = "https://github.com/minamijoyo/tfupdate/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Intuinewin qjoly ]; diff --git a/pkgs/by-name/tg/tgswitch/package.nix b/pkgs/by-name/tg/tgswitch/package.nix index bfa533b26815..2c9b30b35852 100644 --- a/pkgs/by-name/tg/tgswitch/package.nix +++ b/pkgs/by-name/tg/tgswitch/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { # 2. Operation on `/var/empty` not permitted on macOS doCheck = false; - meta = with lib; { + meta = { description = "Command line tool to switch between different versions of terragrunt"; mainProgram = "tgswitch"; homepage = "https://github.com/warrensbox/tgswitch"; - license = licenses.mit; - maintainers = with maintainers; [ psibi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psibi ]; }; } diff --git a/pkgs/by-name/tg/tgt/package.nix b/pkgs/by-name/tg/tgt/package.nix index 525a882ed0c0..15a84511ab9e 100644 --- a/pkgs/by-name/tg/tgt/package.nix +++ b/pkgs/by-name/tg/tgt/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "iSCSI Target daemon with RDMA support"; homepage = "https://github.com/fujita/tgt"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ johnazoidberg ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ johnazoidberg ]; }; } diff --git a/pkgs/by-name/th/thc-ipv6/package.nix b/pkgs/by-name/th/thc-ipv6/package.nix index d2ba60af7177..c00eabd2e9a7 100644 --- a/pkgs/by-name/th/thc-ipv6/package.nix +++ b/pkgs/by-name/th/thc-ipv6/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "IPv6 attack toolkit"; homepage = "https://github.com/vanhauser-thc/thc-ipv6"; - maintainers = with maintainers; [ ajs124 ]; - platforms = platforms.linux; - license = licenses.agpl3Only; + maintainers = with lib.maintainers; [ ajs124 ]; + platforms = lib.platforms.linux; + license = lib.licenses.agpl3Only; }; } diff --git a/pkgs/by-name/th/thc-secure-delete/package.nix b/pkgs/by-name/th/thc-secure-delete/package.nix index b8555efe3b51..b33a080d3121 100644 --- a/pkgs/by-name/th/thc-secure-delete/package.nix +++ b/pkgs/by-name/th/thc-secure-delete/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "THC's Secure Delete tools"; homepage = "https://github.com/gordrs/thc-secure-delete"; changelog = "https://github.com/gordrs/thc-secure-delete/blob/v${finalAttrs.version}/CHANGES"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ tochiaha ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ tochiaha ]; mainProgram = "srm"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/th/the-powder-toy/package.nix b/pkgs/by-name/th/the-powder-toy/package.nix index b34ba4b17444..2a7120027f35 100644 --- a/pkgs/by-name/th/the-powder-toy/package.nix +++ b/pkgs/by-name/th/the-powder-toy/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { desktopItems = [ "resources/powder.desktop" ]; - meta = with lib; { + meta = { description = "Free 2D physics sandbox game"; homepage = "https://powdertoy.co.uk/"; - platforms = platforms.unix; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "powder"; diff --git a/pkgs/by-name/th/theano/package.nix b/pkgs/by-name/th/theano/package.nix index f3050f15c260..972924099bf8 100644 --- a/pkgs/by-name/th/theano/package.nix +++ b/pkgs/by-name/th/theano/package.nix @@ -25,14 +25,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/akryukov/theano"; description = "Old-style font designed from historic samples"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin rycee ]; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/th/theft/package.nix b/pkgs/by-name/th/theft/package.nix index f5dc0b03932b..6677b23daebd 100644 --- a/pkgs/by-name/th/theft/package.nix +++ b/pkgs/by-name/th/theft/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { --replace "/usr/local" "$out" ''; - meta = with lib; { + meta = { description = "C library for property-based testing"; homepage = "https://github.com/silentbicycle/theft/"; - platforms = platforms.unix; - license = licenses.isc; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ kquick thoughtpolice ]; diff --git a/pkgs/by-name/th/thelounge/package.nix b/pkgs/by-name/th/thelounge/package.nix index 1038b2bb0d97..951215bde679 100644 --- a/pkgs/by-name/th/thelounge/package.nix +++ b/pkgs/by-name/th/thelounge/package.nix @@ -91,15 +91,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = nixosTests.thelounge; - meta = with lib; { + meta = { description = "Modern, responsive, cross-platform, self-hosted web IRC client"; homepage = "https://thelounge.chat"; changelog = "https://github.com/thelounge/thelounge/releases/tag/v${finalAttrs.version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ winter raitobezarius ]; - license = licenses.mit; + license = lib.licenses.mit; inherit (nodejs.meta) platforms; mainProgram = "thelounge"; }; diff --git a/pkgs/by-name/th/theme-jade1/package.nix b/pkgs/by-name/th/theme-jade1/package.nix index 9486940a6046..eb4483b777bc 100644 --- a/pkgs/by-name/th/theme-jade1/package.nix +++ b/pkgs/by-name/th/theme-jade1/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Based on Linux Mint theme with dark menus and more intensive green"; homepage = "https://github.com/madmaxms/theme-jade-1"; - license = with licenses; [ gpl3Only ]; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = with lib.licenses; [ gpl3Only ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/th/theme-obsidian2/package.nix b/pkgs/by-name/th/theme-obsidian2/package.nix index 7813f74ec001..26b45b64c8aa 100644 --- a/pkgs/by-name/th/theme-obsidian2/package.nix +++ b/pkgs/by-name/th/theme-obsidian2/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Gnome theme based upon Adwaita-Maia dark skin"; homepage = "https://github.com/madmaxms/theme-obsidian-2"; - license = with licenses; [ gpl3Only ]; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = with lib.licenses; [ gpl3Only ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/th/theme-sh/package.nix b/pkgs/by-name/th/theme-sh/package.nix index c1a9249f0a92..694bfd895f38 100644 --- a/pkgs/by-name/th/theme-sh/package.nix +++ b/pkgs/by-name/th/theme-sh/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Script which lets you set your $terminal theme"; homepage = "https://github.com/lemnos/theme.sh"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "theme.sh"; }; diff --git a/pkgs/by-name/th/theme-vertex/package.nix b/pkgs/by-name/th/theme-vertex/package.nix index 7ff73b4cbe8c..85674ea45398 100644 --- a/pkgs/by-name/th/theme-vertex/package.nix +++ b/pkgs/by-name/th/theme-vertex/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cp AUTHORS README.md $out/share/doc/$pname/ ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/th/themechanger/package.nix b/pkgs/by-name/th/themechanger/package.nix index 8d1f483c3f82..8859bd27e7d4 100644 --- a/pkgs/by-name/th/themechanger/package.nix +++ b/pkgs/by-name/th/themechanger/package.nix @@ -58,7 +58,7 @@ python3Packages.buildPythonApplication rec { patchShebangs postinstall.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/ALEX11BR/ThemeChanger"; description = "Theme changing utility for Linux"; mainProgram = "themechanger"; @@ -67,8 +67,8 @@ python3Packages.buildPythonApplication rec { It lets the user change GTK 2/3/4, Kvantum, icon and cursor themes, edit GTK CSS with live preview, and set some related options. It also lets the user install icon and widget theme archives. ''; - maintainers = with maintainers; [ ALEX11BR ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ALEX11BR ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/th/thermald/package.nix b/pkgs/by-name/th/thermald/package.nix index 1f218981af0b..4253b8c17cff 100644 --- a/pkgs/by-name/th/thermald/package.nix +++ b/pkgs/by-name/th/thermald/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { cp ./data/thermal-conf.xml $out/etc/thermald/ ''; - meta = with lib; { + meta = { description = "Thermal Daemon"; homepage = "https://github.com/intel/thermal_daemon"; changelog = "https://github.com/intel/thermal_daemon/blob/master/README.txt"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/th/thicket/package.nix b/pkgs/by-name/th/thicket/package.nix index 85f5be3617fa..0d7b8e632baf 100644 --- a/pkgs/by-name/th/thicket/package.nix +++ b/pkgs/by-name/th/thicket/package.nix @@ -22,10 +22,10 @@ crystal.buildCrystalPackage rec { # there is one test that tries to clone a repo doCheck = false; - meta = with lib; { + meta = { description = "Better one-line git log"; homepage = "https://github.com/taylorthurlow/thicket"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "thicket"; }; } diff --git a/pkgs/by-name/th/thin-provisioning-tools/package.nix b/pkgs/by-name/th/thin-provisioning-tools/package.nix index 8a6e1def88de..5766f607bdd4 100644 --- a/pkgs/by-name/th/thin-provisioning-tools/package.nix +++ b/pkgs/by-name/th/thin-provisioning-tools/package.nix @@ -66,11 +66,11 @@ rustPlatform.buildRustPackage rec { ln -s $out/bin/pdata_tools $out/bin/thin_trim ''; - meta = with lib; { + meta = { homepage = "https://github.com/jthornber/thin-provisioning-tools/"; description = "Suite of tools for manipulating the metadata of the dm-thin device-mapper target"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/th/thinkingRock/package.nix b/pkgs/by-name/th/thinkingRock/package.nix index 608e59c20f78..33555f5ccf30 100644 --- a/pkgs/by-name/th/thinkingRock/package.nix +++ b/pkgs/by-name/th/thinkingRock/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { dontInstall = true; - meta = with lib; { + meta = { description = "Task management system"; mainProgram = "thinkingrock"; homepage = "http://www.thinkingrock.com.au/"; - license = licenses.cddl; - platforms = platforms.unix; + license = lib.licenses.cddl; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/th/thokr/package.nix b/pkgs/by-name/th/thokr/package.nix index 6aae0ef9990e..31c3d13259d8 100644 --- a/pkgs/by-name/th/thokr/package.nix +++ b/pkgs/by-name/th/thokr/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-BjUPXsErdLGmZaDIMaY+iV3XcoQHGNZbRmFJb/fblwU="; - meta = with lib; { + meta = { description = "Typing tui with visualized results and historical logging"; homepage = "https://github.com/thatvegandev/thokr"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "thokr"; }; diff --git a/pkgs/by-name/th/threema-desktop/package.nix b/pkgs/by-name/th/threema-desktop/package.nix index 622440923f15..9f328cd0beef 100644 --- a/pkgs/by-name/th/threema-desktop/package.nix +++ b/pkgs/by-name/th/threema-desktop/package.nix @@ -118,10 +118,10 @@ buildNpmPackage rec { --add-flags $out/opt/threema/dist/src/main.js ''; - meta = with lib; { + meta = { description = "Desktop client for Threema, a privacy-focused end-to-end encrypted mobile messenger"; homepage = "https://threema.ch"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "threema"; maintainers = [ lib.maintainers.jonhermansen ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/th/thrift/package.nix b/pkgs/by-name/th/thrift/package.nix index ac0a73247061..6dde051b8890 100644 --- a/pkgs/by-name/th/thrift/package.nix +++ b/pkgs/by-name/th/thrift/package.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelChecking = false; - meta = with lib; { + meta = { description = "Library for scalable cross-language services"; mainProgram = "thrift"; homepage = "https://thrift.apache.org/"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor ]; }; }) diff --git a/pkgs/by-name/th/throttled/package.nix b/pkgs/by-name/th/throttled/package.nix index 61bb31de5862..a82aae3949ea 100644 --- a/pkgs/by-name/th/throttled/package.nix +++ b/pkgs/by-name/th/throttled/package.nix @@ -55,10 +55,10 @@ stdenv.mkDerivation rec { postFixup = "wrapPythonPrograms"; - meta = with lib; { + meta = { description = "Fix for Intel CPU throttling issues"; homepage = "https://github.com/erpalma/throttled"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; maintainers = [ ]; }; diff --git a/pkgs/by-name/th/thud/package.nix b/pkgs/by-name/th/thud/package.nix index 7b5eb6a10d02..3ece23c7eac2 100644 --- a/pkgs/by-name/th/thud/package.nix +++ b/pkgs/by-name/th/thud/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Generate directory thumbnails for GTK-based file browsers from images inside them"; homepage = "https://github.com/donovanglover/thud"; - license = licenses.mit; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "thud"; }; } diff --git a/pkgs/by-name/th/thumbdrives/package.nix b/pkgs/by-name/th/thumbdrives/package.nix index f8ad4e9c0827..9e41a3c7f4e3 100644 --- a/pkgs/by-name/th/thumbdrives/package.nix +++ b/pkgs/by-name/th/thumbdrives/package.nix @@ -53,14 +53,14 @@ python3.pkgs.buildPythonApplication rec { pyxdg ]; - meta = with lib; { + meta = { description = "USB mass storage emulator for Linux handhelds"; homepage = "https://sr.ht/~martijnbraam/thumbdrives/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chuangzhu Luflosi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/th/thumbs/package.nix b/pkgs/by-name/th/thumbs/package.nix index ad4c211f1f0a..95e01a9984ec 100644 --- a/pkgs/by-name/th/thumbs/package.nix +++ b/pkgs/by-name/th/thumbs/package.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { patches = [ ./fix.patch ]; - meta = with lib; { + meta = { homepage = "https://github.com/fcsonline/tmux-thumbs"; description = "Lightning fast version of tmux-fingers written in Rust, copy/pasting tmux like vimium/vimperator"; - license = licenses.mit; - maintainers = with maintainers; [ ghostbuster91 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ghostbuster91 ]; }; } diff --git a/pkgs/by-name/ti/tibetan-machine/package.nix b/pkgs/by-name/ti/tibetan-machine/package.nix index c95dd5d670a5..50f8b2be618b 100644 --- a/pkgs/by-name/ti/tibetan-machine/package.nix +++ b/pkgs/by-name/ti/tibetan-machine/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tibetan Machine - an OpenType Tibetan, Dzongkha and Ladakhi font"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ serge ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ti/ticcutils/package.nix b/pkgs/by-name/ti/ticcutils/package.nix index 25b2c031e57c..d75c8de73d65 100644 --- a/pkgs/by-name/ti/ticcutils/package.nix +++ b/pkgs/by-name/ti/ticcutils/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "This module contains useful functions for general use in the TiCC software stack and beyond"; homepage = "https://github.com/LanguageMachines/ticcutils"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; }; }) diff --git a/pkgs/by-name/ti/ticktick/package.nix b/pkgs/by-name/ti/ticktick/package.nix index 4e2ccea2e30d..0fcb03e8e300 100644 --- a/pkgs/by-name/ti/ticktick/package.nix +++ b/pkgs/by-name/ti/ticktick/package.nix @@ -77,11 +77,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Powerful to-do & task management app with seamless cloud synchronization across all your devices"; homepage = "https://ticktick.com/home/"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ hbjydev jonocodes ]; @@ -89,6 +89,6 @@ stdenv.mkDerivation (finalAttrs: { "x86_64-linux" "aarch64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ti/tidb/package.nix b/pkgs/by-name/ti/tidb/package.nix index 6b89742c5fd3..5498aea95c45 100644 --- a/pkgs/by-name/ti/tidb/package.nix +++ b/pkgs/by-name/ti/tidb/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { subPackages = [ "cmd/tidb-server" ]; - meta = with lib; { + meta = { description = "Open-source, cloud-native, distributed, MySQL-Compatible database for elastic scale and real-time analytics"; homepage = "https://pingcap.com"; - license = licenses.asl20; - maintainers = with maintainers; [ Makuru ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Makuru ]; mainProgram = "tidb-server"; }; } diff --git a/pkgs/by-name/ti/tideways-cli/package.nix b/pkgs/by-name/ti/tideways-cli/package.nix index 742878db7449..69112b6ca643 100644 --- a/pkgs/by-name/ti/tideways-cli/package.nix +++ b/pkgs/by-name/ti/tideways-cli/package.nix @@ -78,13 +78,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { }/bin/update-tideways-cli"; }; - meta = with lib; { + meta = { description = "Tideways Profiler CLI"; homepage = "https://tideways.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "tideways"; - license = licenses.unfree; - maintainers = with maintainers; [ shyim ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ shyim ]; platforms = lib.attrNames finalAttrs.passthru.sources; }; }) diff --git a/pkgs/by-name/ti/tideways-daemon/package.nix b/pkgs/by-name/ti/tideways-daemon/package.nix index 37f2ef718a4f..ba8884422630 100644 --- a/pkgs/by-name/ti/tideways-daemon/package.nix +++ b/pkgs/by-name/ti/tideways-daemon/package.nix @@ -63,13 +63,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { }/bin/update-tideways-daemon"; }; - meta = with lib; { + meta = { description = "Tideways Daemon"; homepage = "https://tideways.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "tideways-daemon"; - license = licenses.unfree; - maintainers = with maintainers; [ shyim ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ shyim ]; platforms = lib.attrNames finalAttrs.passthru.sources; }; }) diff --git a/pkgs/by-name/ti/tidyp/package.nix b/pkgs/by-name/ti/tidyp/package.nix index 0bcc6af535ab..36b63cdcfdd2 100644 --- a/pkgs/by-name/ti/tidyp/package.nix +++ b/pkgs/by-name/ti/tidyp/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Program that can validate your HTML, as well as modify it to be more clean and standard"; mainProgram = "tidyp"; homepage = "http://tidyp.com/"; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; - license = licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/ti/tie/package.nix b/pkgs/by-name/ti/tie/package.nix index f3a7f06dca1d..3dad83a45948 100644 --- a/pkgs/by-name/ti/tie/package.nix +++ b/pkgs/by-name/ti/tie/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp tie $out/bin ''; - meta = with lib; { + meta = { homepage = "https://www.ctan.org/tex-archive/web/tie"; description = "Allow multiple web change files"; mainProgram = "tie"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; - license = licenses.abstyles; + license = lib.licenses.abstyles; }; } diff --git a/pkgs/by-name/ti/tig/package.nix b/pkgs/by-name/ti/tig/package.nix index 35bcc8c71764..bae80381289d 100644 --- a/pkgs/by-name/ti/tig/package.nix +++ b/pkgs/by-name/ti/tig/package.nix @@ -77,17 +77,17 @@ stdenv.mkDerivation rec { --prefix PATH ':' "${git}/bin" ''; - meta = with lib; { + meta = { homepage = "https://jonas.github.io/tig/"; description = "Text-mode interface for git"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bjornfor qknight globin ma27 ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "tig"; }; } diff --git a/pkgs/by-name/ti/tilem/package.nix b/pkgs/by-name/ti/tilem/package.nix index 9fee7818b287..45dbcae83410 100644 --- a/pkgs/by-name/ti/tilem/package.nix +++ b/pkgs/by-name/ti/tilem/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { ]; patches = [ ./gcc14-fix.patch ]; env.NIX_CFLAGS_COMPILE = toString [ "-lm" ]; - meta = with lib; { + meta = { homepage = "http://lpg.ticalc.org/prj_tilem/"; description = "Emulator and debugger for Texas Instruments Z80-based graphing calculators"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "tilem2"; }; } diff --git a/pkgs/by-name/ti/tilemaker/package.nix b/pkgs/by-name/ti/tilemaker/package.nix index 6a3a6b0ee26c..82e7840c5c4f 100644 --- a/pkgs/by-name/ti/tilemaker/package.nix +++ b/pkgs/by-name/ti/tilemaker/package.nix @@ -75,13 +75,13 @@ stdenv.mkDerivation (finalAttrs: { command = "tilemaker --help"; }; - meta = with lib; { + meta = { description = "Make OpenStreetMap vector tiles without the stack"; homepage = "https://tilemaker.org/"; changelog = "https://github.com/systemed/tilemaker/blob/v${finalAttrs.version}/CHANGELOG.md"; - license = licenses.free; # FTWPL - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.free; # FTWPL + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; mainProgram = "tilemaker"; }; }) diff --git a/pkgs/by-name/ti/tilix/package.nix b/pkgs/by-name/ti/tilix/package.nix index 6c971a655f8a..d6062973e4a4 100644 --- a/pkgs/by-name/ti/tilix/package.nix +++ b/pkgs/by-name/ti/tilix/package.nix @@ -67,15 +67,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.test = nixosTests.terminal-emulators.tilix; - meta = with lib; { + meta = { description = "Tiling terminal emulator following the Gnome Human Interface Guidelines"; homepage = "https://gnunn1.github.io/tilix-web"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ midchildan jtbx ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "tilix"; }; }) diff --git a/pkgs/by-name/ti/tilt/assets.nix b/pkgs/by-name/ti/tilt/assets.nix index 7ef54abef59c..7f8dd15391bb 100644 --- a/pkgs/by-name/ti/tilt/assets.nix +++ b/pkgs/by-name/ti/tilt/assets.nix @@ -98,11 +98,11 @@ stdenvNoCC.mkDerivation { cp -r build/. $out/ ''; - meta = with lib; { + meta = { description = "Assets needed for Tilt"; homepage = "https://tilt.dev/"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ anton-dessiatov ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ti/timbl/package.nix b/pkgs/by-name/ti/timbl/package.nix index 31af88147d0e..e3147266c307 100644 --- a/pkgs/by-name/ti/timbl/package.nix +++ b/pkgs/by-name/ti/timbl/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "TiMBL implements several memory-based learning algorithms"; mainProgram = "timbl"; homepage = "https://github.com/LanguageMachines/timbl/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; longDescription = '' TiMBL is an open source software package implementing several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification with feature weighting suitable for symbolic feature spaces, and IGTree, a decision-tree approximation of IB1-IG. All implemented algorithms have in common that they store some representation of the training set explicitly in memory. During testing, new cases are classified by extrapolation from the most similar stored cases. diff --git a/pkgs/by-name/ti/timblserver/package.nix b/pkgs/by-name/ti/timblserver/package.nix index 99424ef8a2bf..3f0ef7c9344f 100644 --- a/pkgs/by-name/ti/timblserver/package.nix +++ b/pkgs/by-name/ti/timblserver/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "This server for TiMBL implements several memory-based learning algorithms"; homepage = "https://github.com/LanguageMachines/timblserver/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; longDescription = '' This implements a server for TiMBL. TiMBL is an open source software package implementing several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification with feature weighting suitable for symbolic feature spaces, and IGTree, a decision-tree approximation of IB1-IG. All implemented algorithms have in common that they store some representation of the training set explicitly in memory. During testing, new cases are classified by extrapolation from the most similar stored cases. diff --git a/pkgs/by-name/ti/time-ghc-modules/package.nix b/pkgs/by-name/ti/time-ghc-modules/package.nix index e4dbe40b46cd..a0a55a789562 100644 --- a/pkgs/by-name/ti/time-ghc-modules/package.nix +++ b/pkgs/by-name/ti/time-ghc-modules/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Analyze GHC .dump-timings files"; mainProgram = "time-ghc-modules"; homepage = "https://github.com/codedownio/time-ghc-modules"; - license = licenses.mit; - maintainers = [ maintainers.thomasjm ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.thomasjm ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ti/timelapse-deflicker/package.nix b/pkgs/by-name/ti/timelapse-deflicker/package.nix index 091ad288ddc2..df8cdcbf7b75 100644 --- a/pkgs/by-name/ti/timelapse-deflicker/package.nix +++ b/pkgs/by-name/ti/timelapse-deflicker/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { ClassMethodMaker ]; - meta = with lib; { + meta = { description = "Simple script to deflicker images taken for timelapses"; mainProgram = "timelapse-deflicker"; homepage = "https://github.com/cyberang3l/timelapse-deflicker"; - license = licenses.gpl3; - maintainers = with maintainers; [ valeriangalliat ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ valeriangalliat ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ti/timelimit/package.nix b/pkgs/by-name/ti/timelimit/package.nix index d4af294c7e8f..f93de022bb76 100644 --- a/pkgs/by-name/ti/timelimit/package.nix +++ b/pkgs/by-name/ti/timelimit/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { INSTALL_PROGRAM = "install -m755"; INSTALL_DATA = "install -m644"; - meta = with lib; { + meta = { description = "Execute a command and terminates the spawned process after a given time with a given signal"; homepage = "https://devel.ringlet.net/sysutils/timelimit/"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "timelimit"; }; diff --git a/pkgs/by-name/ti/timeloop/package.nix b/pkgs/by-name/ti/timeloop/package.nix index a8c83a5f1283..59fb29962c78 100644 --- a/pkgs/by-name/ti/timeloop/package.nix +++ b/pkgs/by-name/ti/timeloop/package.nix @@ -91,11 +91,11 @@ stdenv.mkDerivation rec { cp -r ./problem-shapes ./configs $out/data ''; - meta = with lib; { + meta = { description = "Chip modeling/mapping benchmarking framework"; homepage = "https://timeloop.csail.mit.edu"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ gdinh ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ gdinh ]; }; } diff --git a/pkgs/by-name/ti/timer/package.nix b/pkgs/by-name/ti/timer/package.nix index c19a23e153ad..37533e7dbd09 100644 --- a/pkgs/by-name/ti/timer/package.nix +++ b/pkgs/by-name/ti/timer/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { passthru.tests.version = testers.testVersion { package = timer; }; - meta = with lib; { + meta = { description = "`sleep` with progress"; homepage = "https://github.com/caarlos0/timer"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zowoq caarlos0 ]; diff --git a/pkgs/by-name/ti/times-newer-roman/package.nix b/pkgs/by-name/ti/times-newer-roman/package.nix index f30b25165dac..6424001b4a81 100644 --- a/pkgs/by-name/ti/times-newer-roman/package.nix +++ b/pkgs/by-name/ti/times-newer-roman/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Font that looks just like Times New Roman, except each character is 5-10% wider"; homepage = "https://timesnewerroman.com/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ti/timescaledb-tune/package.nix b/pkgs/by-name/ti/timescaledb-tune/package.nix index 76da1c33a448..acbf7678c181 100644 --- a/pkgs/by-name/ti/timescaledb-tune/package.nix +++ b/pkgs/by-name/ti/timescaledb-tune/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tool for tuning your TimescaleDB for better performance"; mainProgram = "timescaledb-tune"; homepage = "https://github.com/timescale/timescaledb-tune"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ti/timetagger_cli/package.nix b/pkgs/by-name/ti/timetagger_cli/package.nix index a3edce502af7..ee6b05e7ea06 100644 --- a/pkgs/by-name/ti/timetagger_cli/package.nix +++ b/pkgs/by-name/ti/timetagger_cli/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "timetagger_cli" ]; - meta = with lib; { + meta = { description = "Track your time from the command-line"; homepage = "https://github.com/almarklein/timetagger_cli"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ matthiasbeyer ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "timetagger"; }; } diff --git a/pkgs/by-name/ti/timetrap/package.nix b/pkgs/by-name/ti/timetrap/package.nix index 25b5ef5c76bc..89c858219778 100644 --- a/pkgs/by-name/ti/timetrap/package.nix +++ b/pkgs/by-name/ti/timetrap/package.nix @@ -49,16 +49,16 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Simple command line time tracker written in ruby"; homepage = "https://github.com/samg/timetrap"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jerith666 manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; passthru = { diff --git a/pkgs/by-name/ti/timeular/package.nix b/pkgs/by-name/ti/timeular/package.nix index 1d7f493b3806..56030cabfc59 100644 --- a/pkgs/by-name/ti/timeular/package.nix +++ b/pkgs/by-name/ti/timeular/package.nix @@ -29,7 +29,7 @@ appimageTools.wrapType2 rec { --replace "Exec=AppRun --no-sandbox %U" "Exec=$out/bin/${pname}" ''; - meta = with lib; { + meta = { description = "Timetracking by flipping 8-sided dice"; longDescription = '' The Timeular Tracker is an 8-sided dice that sits on your desk. @@ -37,8 +37,8 @@ appimageTools.wrapType2 rec { The desktop app tell you where every minute of your day is spent. ''; homepage = "https://timeular.com"; - license = licenses.unfree; - maintainers = with maintainers; [ ktor ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ ktor ]; platforms = [ "x86_64-linux" ]; mainProgram = "timeular"; }; diff --git a/pkgs/by-name/ti/timew-sync-server/package.nix b/pkgs/by-name/ti/timew-sync-server/package.nix index 12050685de5f..ed2950489870 100644 --- a/pkgs/by-name/ti/timew-sync-server/package.nix +++ b/pkgs/by-name/ti/timew-sync-server/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-w7I8PDQQeICDPln2Naf6whOg9qqOniTH/xs1/9luIVc="; - meta = with lib; { + meta = { homepage = "https://github.com/timewarrior-synchronize/timew-sync-server"; description = "Server component of timewarrior synchronization application"; - license = licenses.mit; - maintainers = [ maintainers.joachimschmidt557 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.joachimschmidt557 ]; + platforms = lib.platforms.linux; mainProgram = "timew-sync-server"; }; } diff --git a/pkgs/by-name/ti/timewarrior/package.nix b/pkgs/by-name/ti/timewarrior/package.nix index fc9d0eb223d7..75f3e2d9ca97 100644 --- a/pkgs/by-name/ti/timewarrior/package.nix +++ b/pkgs/by-name/ti/timewarrior/package.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation rec { --zsh completion/timew.zsh ''; - meta = with lib; { + meta = { description = "Command-line time tracker"; homepage = "https://timewarrior.net"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer mrVanDalo ]; mainProgram = "timew"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ti/timezonemap/package.nix b/pkgs/by-name/ti/timezonemap/package.nix index f8dc8af47ea4..b5746fadd4d0 100644 --- a/pkgs/by-name/ti/timezonemap/package.nix +++ b/pkgs/by-name/ti/timezonemap/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation { sed "s|/usr/share/libtimezonemap|$out/share/libtimezonemap|g" -i ./src/tz.h ''; - meta = with lib; { + meta = { homepage = "https://launchpad.net/timezonemap"; description = "GTK+3 Timezone Map Widget"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.mkg20001 ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.mkg20001 ]; }; } diff --git a/pkgs/by-name/ti/timidity/package.nix b/pkgs/by-name/ti/timidity/package.nix index 00e00b5558ce..73300dfa3cd5 100644 --- a/pkgs/by-name/ti/timidity/package.nix +++ b/pkgs/by-name/ti/timidity/package.nix @@ -112,12 +112,12 @@ stdenv.mkDerivation rec { passthru.tests = nixosTests.timidity; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/timidity/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "Software MIDI renderer"; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.unix; mainProgram = "timidity"; }; } diff --git a/pkgs/by-name/ti/tini/package.nix b/pkgs/by-name/ti/tini/package.nix index 8ec27ff2b298..e9e225bed90c 100644 --- a/pkgs/by-name/ti/tini/package.nix +++ b/pkgs/by-name/ti/tini/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Tiny but valid init for containers"; homepage = "https://github.com/krallin/tini"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "tini"; }; } diff --git a/pkgs/by-name/ti/tintin/package.nix b/pkgs/by-name/ti/tintin/package.nix index 79e308f5415c..e2fcb3546cdd 100644 --- a/pkgs/by-name/ti/tintin/package.nix +++ b/pkgs/by-name/ti/tintin/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { cd src ''; - meta = with lib; { + meta = { description = "Free MUD client for macOS, Linux and Windows"; homepage = "https://tintin.mudhalla.net/index.php"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ abathur ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ abathur ]; mainProgram = "tt++"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ti/tiny-dfr/package.nix b/pkgs/by-name/ti/tiny-dfr/package.nix index 8fa90c7c3254..317e5afb74dd 100644 --- a/pkgs/by-name/ti/tiny-dfr/package.nix +++ b/pkgs/by-name/ti/tiny-dfr/package.nix @@ -55,15 +55,15 @@ rustPlatform.buildRustPackage rec { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/AsahiLinux/tiny-dfr"; description = "Most basic dynamic function row daemon possible"; license = [ - licenses.asl20 - licenses.mit + lib.licenses.asl20 + lib.licenses.mit ]; mainProgram = "tiny-dfr"; - maintainers = [ maintainers.qyliss ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.qyliss ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ti/tiny8086/package.nix b/pkgs/by-name/ti/tiny8086/package.nix index c3eb5540776b..adcd151d3125 100644 --- a/pkgs/by-name/ti/tiny8086/package.nix +++ b/pkgs/by-name/ti/tiny8086/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/adriancable/8086tiny"; description = "Open-source small 8086 emulator"; longDescription = '' @@ -61,9 +61,9 @@ stdenv.mkDerivation { 8086tiny is based on an IOCCC 2013 winning entry. In fact that is the "unobfuscated" version :) ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "8086tiny"; }; } diff --git a/pkgs/by-name/ti/tinyalsa/package.nix b/pkgs/by-name/ti/tinyalsa/package.nix index 2f911bc7014e..f90680f8f41b 100644 --- a/pkgs/by-name/ti/tinyalsa/package.nix +++ b/pkgs/by-name/ti/tinyalsa/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 3.1)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://github.com/tinyalsa/tinyalsa"; description = "Tiny library to interface with ALSA in the Linux kernel"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ti/tinycbor/package.nix b/pkgs/by-name/ti/tinycbor/package.nix index 597e6f01f56d..9b0b1c0d6fbe 100644 --- a/pkgs/by-name/ti/tinycbor/package.nix +++ b/pkgs/by-name/ti/tinycbor/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Concise Binary Object Representation (CBOR) Library"; mainProgram = "cbordump"; homepage = "https://github.com/intel/tinycbor"; - license = licenses.mit; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/ti/tinycompress/package.nix b/pkgs/by-name/ti/tinycompress/package.nix index 39398fb79c6b..d04b63cdcb35 100644 --- a/pkgs/by-name/ti/tinycompress/package.nix +++ b/pkgs/by-name/ti/tinycompress/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { hash = "sha256-Dv5svXv/MZg+DUFt8ENnZ2ZcxM1w0njAbODoPg7qtds="; }; - meta = with lib; { + meta = { homepage = "http://www.alsa-project.org/"; description = "Userspace library for anyone who wants to use the ALSA compressed APIs"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ k900 ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ k900 ]; }; } diff --git a/pkgs/by-name/ti/tinyfecvpn/package.nix b/pkgs/by-name/ti/tinyfecvpn/package.nix index 04077328094d..62a2aa06a5a0 100644 --- a/pkgs/by-name/ti/tinyfecvpn/package.nix +++ b/pkgs/by-name/ti/tinyfecvpn/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/wangyu-/tinyfecVPN"; description = "VPN Designed for Lossy Links, with Build-in Forward Error Correction(FEC) Support"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "tinyvpn"; }; diff --git a/pkgs/by-name/ti/tinygo/package.nix b/pkgs/by-name/ti/tinygo/package.nix index 7c09a99dba2b..f927e2da6c99 100644 --- a/pkgs/by-name/ti/tinygo/package.nix +++ b/pkgs/by-name/ti/tinygo/package.nix @@ -139,11 +139,11 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://tinygo.org/"; description = "Go compiler for small places"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ muscaln ]; }; diff --git a/pkgs/by-name/ti/tinymembench/package.nix b/pkgs/by-name/ti/tinymembench/package.nix index 2273809280d0..1095164d203b 100644 --- a/pkgs/by-name/ti/tinymembench/package.nix +++ b/pkgs/by-name/ti/tinymembench/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/ssvb/tinymembench"; description = "Simple benchmark for memory throughput and latency"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "tinymembench"; - maintainers = with maintainers; [ lorenz ]; + maintainers = with lib.maintainers; [ lorenz ]; }; } diff --git a/pkgs/by-name/ti/tinyobjloader/package.nix b/pkgs/by-name/ti/tinyobjloader/package.nix index 2a14104854b9..5c987c1100c4 100644 --- a/pkgs/by-name/ti/tinyobjloader/package.nix +++ b/pkgs/by-name/ti/tinyobjloader/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@TINYOBJLOADER_INCLUDE_DIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { homepage = "https://github.com/tinyobjloader/tinyobjloader"; description = "Tiny but powerful single file wavefront obj loader"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ti/tinyprog/package.nix b/pkgs/by-name/ti/tinyprog/package.nix index a0d7cf880a40..cc245e523cce 100644 --- a/pkgs/by-name/ti/tinyprog/package.nix +++ b/pkgs/by-name/ti/tinyprog/package.nix @@ -36,11 +36,11 @@ buildPythonApplication rec { pyusb ]; - meta = with lib; { + meta = { homepage = "https://github.com/tinyfpga/TinyFPGA-Bootloader/tree/master/programmer"; description = "Programmer for FPGA boards using the TinyFPGA USB Bootloader"; mainProgram = "tinyprog"; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/ti/tinyproxy/package.nix b/pkgs/by-name/ti/tinyproxy/package.nix index 01c1382afd86..5e7f29489d81 100644 --- a/pkgs/by-name/ti/tinyproxy/package.nix +++ b/pkgs/by-name/ti/tinyproxy/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { configureFlags = lib.optionals withDebug [ "--enable-debug" ]; # Enable debugging support code and methods. passthru.tests = { inherit (nixosTests) tinyproxy; }; - meta = with lib; { + meta = { homepage = "https://tinyproxy.github.io/"; description = "Light-weight HTTP/HTTPS proxy daemon for POSIX operating systems"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = [ maintainers.carlosdagos ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.carlosdagos ]; mainProgram = "tinyproxy"; }; } diff --git a/pkgs/by-name/ti/tinyscheme/package.nix b/pkgs/by-name/ti/tinyscheme/package.nix index fede5fde791c..56264b3cc651 100644 --- a/pkgs/by-name/ti/tinyscheme/package.nix +++ b/pkgs/by-name/ti/tinyscheme/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Lightweight Scheme implementation"; longDescription = '' TinyScheme is a lightweight Scheme interpreter that implements as large a @@ -76,9 +76,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://tinyscheme.sourceforge.net/"; changelog = "https://tinyscheme.sourceforge.net/CHANGES"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; mainProgram = "tinyscheme"; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ti/tinysparql/package.nix b/pkgs/by-name/ti/tinysparql/package.nix index fbe6f91e9348..88d9f88f13f3 100644 --- a/pkgs/by-name/ti/tinysparql/package.nix +++ b/pkgs/by-name/ti/tinysparql/package.nix @@ -169,13 +169,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://tracker.gnome.org/"; description = "Desktop-neutral user information store, search tool and indexer"; mainProgram = "tinysparql"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; pkgConfigModules = [ "tracker-sparql-3.0" "tinysparql-3.0" diff --git a/pkgs/by-name/ti/tio/package.nix b/pkgs/by-name/ti/tio/package.nix index e8ea395f5a9a..b8bfd1fbd08f 100644 --- a/pkgs/by-name/ti/tio/package.nix +++ b/pkgs/by-name/ti/tio/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { pkg-config ]; - meta = with lib; { + meta = { description = "Serial console TTY"; homepage = "https://tio.github.io/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "tio"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ti/tiptop/package.nix b/pkgs/by-name/ti/tiptop/package.nix index 6ebb32523288..91d51ce370ac 100644 --- a/pkgs/by-name/ti/tiptop/package.nix +++ b/pkgs/by-name/ti/tiptop/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2"; - meta = with lib; { + meta = { description = "Performance monitoring tool for Linux"; homepage = "http://tiptop.gforge.inria.fr"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ti/tiscamera/package.nix b/pkgs/by-name/ti/tiscamera/package.nix index c6703b03e00b..007b3fbe45d3 100644 --- a/pkgs/by-name/ti/tiscamera/package.nix +++ b/pkgs/by-name/ti/tiscamera/package.nix @@ -134,11 +134,11 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Linux sources and UVC firmwares for The Imaging Source cameras"; homepage = "https://github.com/TheImagingSource/tiscamera"; - license = with licenses; [ asl20 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ jraygauthier ]; + license = with lib.licenses; [ asl20 ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/by-name/ti/tivodecode/package.nix b/pkgs/by-name/ti/tivodecode/package.nix index 0d794b27ae77..93c4fcdce621 100644 --- a/pkgs/by-name/ti/tivodecode/package.nix +++ b/pkgs/by-name/ti/tivodecode/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation { sha256 = "1pww5r2iygscqn20a1cz9xbfh18p84a6a5ifg4h5nvyn9b63k23q"; }; - meta = with lib; { + meta = { description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file"; homepage = "https://tivodecode.sourceforge.net"; - platforms = platforms.unix; - license = licenses.bsd3; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/tk/tkey-ssh-agent/package.nix b/pkgs/by-name/tk/tkey-ssh-agent/package.nix index b6cb3b4b9c56..eff6a1b22bbb 100644 --- a/pkgs/by-name/tk/tkey-ssh-agent/package.nix +++ b/pkgs/by-name/tk/tkey-ssh-agent/package.nix @@ -37,13 +37,13 @@ buildGoModule (finalAttrs: { ]; doInstallCheck = true; - meta = with lib; { + meta = { description = "SSH Agent for TKey, the flexible open hardware/software USB security key"; homepage = "https://tillitis.se/app/tkey-ssh-agent/"; changelog = "https://github.com/tillitis/tkey-ssh-agent/releases/tag/v${finalAttrs.version}"; - license = licenses.gpl2; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ bbigras ]; mainProgram = "tkey-ssh-agent"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/tk/tkman/package.nix b/pkgs/by-name/tk/tkman/package.nix index 8515ee91a567..c39c1b0fa6fa 100644 --- a/pkgs/by-name/tk/tkman/package.nix +++ b/pkgs/by-name/tk/tkman/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Graphical, hypertext manual page and Texinfo browser for UNIX"; mainProgram = "tkman"; longDescription = '' @@ -86,8 +86,8 @@ stdenv.mkDerivation (finalAttrs: { Preferences panel, and man page versioning support, among many other features. ''; homepage = "https://tkman.sourceforge.net/index.html"; - license = licenses.artistic1; - platforms = platforms.unix; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.artistic1; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fgaz ]; }; }) diff --git a/pkgs/by-name/tk/tkrzw/package.nix b/pkgs/by-name/tk/tkrzw/package.nix index 0172a5f489c5..e2467b0bda69 100644 --- a/pkgs/by-name/tk/tkrzw/package.nix +++ b/pkgs/by-name/tk/tkrzw/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { doCheck = false; # memory intensive - meta = with lib; { + meta = { description = "Set of implementations of DBM"; homepage = "https://dbmx.net/tkrzw/"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tl/tl-expected/package.nix b/pkgs/by-name/tl/tl-expected/package.nix index 1beac87e9267..977dc531dab9 100644 --- a/pkgs/by-name/tl/tl-expected/package.nix +++ b/pkgs/by-name/tl/tl-expected/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "C++11/14/17 std::expected with functional-style extensions"; homepage = "https://tl.tartanllama.xyz/en/latest/api/expected.html"; - license = licenses.cc0; - platforms = platforms.all; + license = lib.licenses.cc0; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/tl/tlf/package.nix b/pkgs/by-name/tl/tlf/package.nix index 457feff8b625..56aaffff557d 100644 --- a/pkgs/by-name/tl/tlf/package.nix +++ b/pkgs/by-name/tl/tlf/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { ln -s ${ncurses5.out}/lib/libtinfo.so.5 $out/lib/libtinfo.so.5 ''; - meta = with lib; { + meta = { description = "Advanced ham radio logging and contest program"; longDescription = '' TLF is a curses based console mode general logging and contest program for @@ -72,8 +72,8 @@ stdenv.mkDerivation rec { contests, general QSO and DXpedition mode. ''; homepage = "https://tlf.github.io/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tl/tllist/package.nix b/pkgs/by-name/tl/tllist/package.nix index 33b89b6f186c..e55db46383f0 100644 --- a/pkgs/by-name/tl/tllist/package.nix +++ b/pkgs/by-name/tl/tllist/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://codeberg.org/dnkl/tllist"; changelog = "https://codeberg.org/dnkl/tllist/releases/tag/${finalAttrs.version}"; description = "C header file only implementation of a typed linked list"; @@ -42,8 +42,8 @@ stdenv.mkDerivation (finalAttrs: { primitive data types are supported as well as aggregated ones such as structs, enums and unions. ''; - license = licenses.mit; - maintainers = with maintainers; [ fionera ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fionera ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/tl/tlmi-auth/package.nix b/pkgs/by-name/tl/tlmi-auth/package.nix index 8ae56a545fc5..0e3c70a58161 100644 --- a/pkgs/by-name/tl/tlmi-auth/package.nix +++ b/pkgs/by-name/tl/tlmi-auth/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { openssl ]; - meta = with lib; { + meta = { homepage = "https://github.com/lenovo/tlmi-auth"; - maintainers = with maintainers; [ snpschaaf ]; + maintainers = with lib.maintainers; [ snpschaaf ]; description = "Utility for creating signature strings needed for thinklmi certificate based authentication"; mainProgram = "tlmi-auth"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/tl/tlsclient/package.nix b/pkgs/by-name/tl/tlsclient/package.nix index 2d829c518a68..b3e57569868d 100644 --- a/pkgs/by-name/tl/tlsclient/package.nix +++ b/pkgs/by-name/tl/tlsclient/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "tlsclient command line utility"; longDescription = "unix port of 9front's tlsclient(1) and rcpu(1)"; homepage = "https://git.sr.ht/~moody/tlsclient"; - license = licenses.mit; - maintainers = with maintainers; [ moody ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moody ]; mainProgram = "tlsclient"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/tl/tlwg/package.nix b/pkgs/by-name/tl/tlwg/package.nix index d0e7e6c77655..87af4fe72f48 100644 --- a/pkgs/by-name/tl/tlwg/package.nix +++ b/pkgs/by-name/tl/tlwg/package.nix @@ -25,15 +25,15 @@ stdenv.mkDerivation rec { buildInputs = [ fontforge ]; - meta = with lib; { + meta = { description = "Collection of Thai scalable fonts available under free licenses"; homepage = "https://linux.thai.net/projects/fonts-tlwg"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 publicDomain lppl13c free ]; - maintainers = [ maintainers.yrashk ]; + maintainers = [ lib.maintainers.yrashk ]; }; } diff --git a/pkgs/by-name/tm/tmate-ssh-server/package.nix b/pkgs/by-name/tm/tmate-ssh-server/package.nix index 9023cb1a48c9..02bf6c785064 100644 --- a/pkgs/by-name/tm/tmate-ssh-server/package.nix +++ b/pkgs/by-name/tm/tmate-ssh-server/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation { passthru.tests.tmate-ssh-server = nixosTests.tmate-ssh-server; - meta = with lib; { + meta = { homepage = "https://tmate.io/"; description = "tmate SSH Server"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ ck3d ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ck3d ]; mainProgram = "tmate-ssh-server"; }; } diff --git a/pkgs/by-name/tm/tmate/package.nix b/pkgs/by-name/tm/tmate/package.nix index 6966b5072a66..06dcbdb1d7fc 100644 --- a/pkgs/by-name/tm/tmate/package.nix +++ b/pkgs/by-name/tm/tmate/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation { dontUseCmakeConfigure = true; - meta = with lib; { + meta = { homepage = "https://tmate.io/"; description = "Instant Terminal Sharing"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ ck3d ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ck3d ]; mainProgram = "tmate"; }; } diff --git a/pkgs/by-name/tm/tmatrix/package.nix b/pkgs/by-name/tm/tmatrix/package.nix index 785ee27433ad..e7bb012b041b 100644 --- a/pkgs/by-name/tm/tmatrix/package.nix +++ b/pkgs/by-name/tm/tmatrix/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { installManPage ../tmatrix.6 ''; - meta = with lib; { + meta = { description = "Terminal based replica of the digital rain from The Matrix"; longDescription = '' TMatrix is a program that simulates the digital rain form The Matrix. @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { performant. ''; homepage = "https://github.com/M4444/TMatrix"; - license = licenses.gpl2; - platforms = platforms.all; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; mainProgram = "tmatrix"; }; } diff --git a/pkgs/by-name/tm/tmpmail/package.nix b/pkgs/by-name/tm/tmpmail/package.nix index 43e97972f72b..2ad2af3f6cd6 100644 --- a/pkgs/by-name/tm/tmpmail/package.nix +++ b/pkgs/by-name/tm/tmpmail/package.nix @@ -44,10 +44,10 @@ stdenvNoCC.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/sdushantha/tmpmail"; description = "Temporary email right from your terminal written in POSIX sh"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "tmpmail"; }; diff --git a/pkgs/by-name/tm/tmpwatch/package.nix b/pkgs/by-name/tm/tmpwatch/package.nix index f871cc50ae49..964cfff7c513 100644 --- a/pkgs/by-name/tm/tmpwatch/package.nix +++ b/pkgs/by-name/tm/tmpwatch/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-fuser=${psmisc}/bin/fuser" ]; - meta = with lib; { + meta = { homepage = "https://pagure.io/tmpwatch"; description = "Recursively searches through specified directories and removes files which have not been accessed in a specified period of time"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ vlstill ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ vlstill ]; + platforms = lib.platforms.unix; mainProgram = "tmpwatch"; }; } diff --git a/pkgs/by-name/tm/tmux-mem-cpu-load/package.nix b/pkgs/by-name/tm/tmux-mem-cpu-load/package.nix index 9de391ab6e8c..94eab2c5fb92 100644 --- a/pkgs/by-name/tm/tmux-mem-cpu-load/package.nix +++ b/pkgs/by-name/tm/tmux-mem-cpu-load/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "CPU, RAM, and load monitor for use with tmux"; homepage = "https://github.com/thewtex/tmux-mem-cpu-load"; - license = licenses.asl20; - maintainers = with maintainers; [ thomasjm ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thomasjm ]; + platforms = lib.platforms.all; mainProgram = "tmux-mem-cpu-load"; }; } diff --git a/pkgs/by-name/tm/tmux-sessionizer/package.nix b/pkgs/by-name/tm/tmux-sessionizer/package.nix index 725c8e0a430f..2d0068284bf7 100644 --- a/pkgs/by-name/tm/tmux-sessionizer/package.nix +++ b/pkgs/by-name/tm/tmux-sessionizer/package.nix @@ -39,11 +39,11 @@ rustPlatform.buildRustPackage (finalAttrs: { --zsh <(COMPLETE=zsh $out/bin/tms) ''; - meta = with lib; { + meta = { description = "Fastest way to manage projects as tmux sessions"; homepage = "https://github.com/jrmoulton/tmux-sessionizer"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vinnymeller mrcjkb ]; diff --git a/pkgs/by-name/tm/tmux-xpanes/package.nix b/pkgs/by-name/tm/tmux-xpanes/package.nix index 562e00167e15..165461b8ede7 100644 --- a/pkgs/by-name/tm/tmux-xpanes/package.nix +++ b/pkgs/by-name/tm/tmux-xpanes/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { install -m 644 man/*.1 $out/share/man/man1/ ''; - meta = with lib; { + meta = { description = "tmux-based terminal divider"; homepage = "https://github.com/greymd/tmux-xpanes"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ monsieurp ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ monsieurp ]; }; } diff --git a/pkgs/by-name/tm/tmuxifier/package.nix b/pkgs/by-name/tm/tmuxifier/package.nix index a92d54c7e92b..f564b9e9e994 100644 --- a/pkgs/by-name/tm/tmuxifier/package.nix +++ b/pkgs/by-name/tm/tmuxifier/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Powerful session, window & pane management for Tmux"; homepage = "https://github.com/jimeh/tmuxifier"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "tmuxifier"; - maintainers = with maintainers; [ wigust ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ wigust ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tm/tmuxinator/package.nix b/pkgs/by-name/tm/tmuxinator/package.nix index 4bdf64a35444..2cbd21f2d15d 100644 --- a/pkgs/by-name/tm/tmuxinator/package.nix +++ b/pkgs/by-name/tm/tmuxinator/package.nix @@ -52,14 +52,14 @@ buildRubyGem rec { installShellCompletion $GEM_HOME/gems/${gemName}-${version}/completion/tmuxinator.{bash,zsh,fish} ''; - meta = with lib; { + meta = { description = "Manage complex tmux sessions easily"; homepage = "https://github.com/tmuxinator/tmuxinator"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ auntie ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "tmuxinator"; }; } diff --git a/pkgs/by-name/tn/tnat64/package.nix b/pkgs/by-name/tn/tnat64/package.nix index 8eb2ae23e3a9..063670d9ce75 100644 --- a/pkgs/by-name/tn/tnat64/package.nix +++ b/pkgs/by-name/tn/tnat64/package.nix @@ -19,19 +19,19 @@ stdenv.mkDerivation rec { configureFlags = [ "--libdir=$(out)/lib" ]; nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "IPv4 to IPv6 interceptor"; homepage = "https://github.com/andrewshadura/tnat64"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' TNAT64 is an interceptor which redirects outgoing TCPv4 connections through NAT64, thus enabling an application running on an IPv6-only host to communicate with the IPv4 world, even if that application does not support IPv6 at all. ''; - platforms = platforms.unix; - badPlatforms = platforms.darwin; - maintainers = [ maintainers.rnhmjoj ]; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.darwin; + maintainers = [ lib.maintainers.rnhmjoj ]; }; } diff --git a/pkgs/by-name/tn/tncattach/package.nix b/pkgs/by-name/tn/tncattach/package.nix index bc46515c44d0..0c5df0849902 100644 --- a/pkgs/by-name/tn/tncattach/package.nix +++ b/pkgs/by-name/tn/tncattach/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Attach KISS TNC devices as network interfaces"; homepage = "https://github.com/markqvist/tncattach"; - license = licenses.mit; - maintainers = with maintainers; [ sarcasticadmin ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sarcasticadmin ]; + platforms = lib.platforms.linux; mainProgram = "tncattach"; }; } diff --git a/pkgs/by-name/tn/tnef/package.nix b/pkgs/by-name/tn/tnef/package.nix index 699887888bb9..e8322268836c 100644 --- a/pkgs/by-name/tn/tnef/package.nix +++ b/pkgs/by-name/tn/tnef/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Unpacks MIME attachments of type application/ms-tnef"; longDescription = '' TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment. @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { The TNEF program allows one to unpack the attachments which were encapsulated into the TNEF attachment. Thus alleviating the need to use Microsoft Outlook to view the attachment. ''; homepage = "https://github.com/verdammelt/tnef"; - license = licenses.gpl2; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; mainProgram = "tnef"; }; } diff --git a/pkgs/by-name/tn/tntdb/package.nix b/pkgs/by-name/tn/tntdb/package.nix index 19602b64fa58..e7037ae0c77e 100644 --- a/pkgs/by-name/tn/tntdb/package.nix +++ b/pkgs/by-name/tn/tntdb/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.tntnet.org/tntdb.html"; description = "C++ library which makes accessing SQL databases easy and robust"; - platforms = platforms.linux; - license = licenses.lgpl21; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/tn/tntnet/package.nix b/pkgs/by-name/tn/tntnet/package.nix index 2e69aca6bf2a..fdef0a329a65 100644 --- a/pkgs/by-name/tn/tntnet/package.nix +++ b/pkgs/by-name/tn/tntnet/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.tntnet.org/tntnet.html"; description = "Web server which allows users to develop web applications using C++"; - platforms = platforms.linux; - license = licenses.lgpl21; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/to/toast/package.nix b/pkgs/by-name/to/toast/package.nix index c55c927d83e5..0eb5b8965e1f 100644 --- a/pkgs/by-name/to/toast/package.nix +++ b/pkgs/by-name/to/toast/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { checkFlags = [ "--skip=format::tests::code_str_display" ]; # fails - meta = with lib; { + meta = { description = "Containerize your development and continuous integration environments"; mainProgram = "toast"; homepage = "https://github.com/stepchowfun/toast"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/to/toastify/package.nix b/pkgs/by-name/to/toastify/package.nix index e067f8b96797..1141f33faeba 100644 --- a/pkgs/by-name/to/toastify/package.nix +++ b/pkgs/by-name/to/toastify/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { export HOME=$(mktemp -d) ''; - meta = with lib; { + meta = { description = "Commandline tool that shows desktop notifications using notify-rust"; homepage = "https://github.com/hoodie/toastify"; changelog = "https://github.com/hoodie/toastify/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ colemickens ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ colemickens ]; mainProgram = "toastify"; }; } diff --git a/pkgs/by-name/to/todo/package.nix b/pkgs/by-name/to/todo/package.nix index fb27016be9bb..7cdcc1de2e56 100644 --- a/pkgs/by-name/to/todo/package.nix +++ b/pkgs/by-name/to/todo/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Simple todo cli program written in rust"; homepage = "https://github.com/sioodmy/todo"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ sioodmy ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ sioodmy ]; mainProgram = "todo"; }; } diff --git a/pkgs/by-name/to/todofi-sh/package.nix b/pkgs/by-name/to/todofi-sh/package.nix index b00b94bfcd08..9efc5fc846ac 100644 --- a/pkgs/by-name/to/todofi-sh/package.nix +++ b/pkgs/by-name/to/todofi-sh/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Todo-txt + Rofi = Todofi.sh"; mainProgram = "todofi.sh"; homepage = "https://github.com/hugokernel/todofi.sh"; - license = licenses.mit; - maintainers = with maintainers; [ ewok ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ewok ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/to/tofi/package.nix b/pkgs/by-name/to/tofi/package.nix index 8bfb589dcf08..adae7d11e673 100644 --- a/pkgs/by-name/to/tofi/package.nix +++ b/pkgs/by-name/to/tofi/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { libxkbcommon ]; - meta = with lib; { + meta = { description = "Tiny dynamic menu for Wayland"; homepage = "https://github.com/philj56/tofi"; - license = licenses.mit; - maintainers = with maintainers; [ fbergroth ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fbergroth ]; + platforms = lib.platforms.linux; mainProgram = "tofi"; }; } diff --git a/pkgs/by-name/to/toilet/package.nix b/pkgs/by-name/to/toilet/package.nix index 42d0b343a69d..55de424cc74b 100644 --- a/pkgs/by-name/to/toilet/package.nix +++ b/pkgs/by-name/to/toilet/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { package = toilet; }; - meta = with lib; { + meta = { description = "Display large colourful characters in text mode"; homepage = "http://caca.zoy.org/wiki/toilet"; - license = licenses.wtfpl; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.all; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.all; mainProgram = "toilet"; }; } diff --git a/pkgs/by-name/to/toipe/package.nix b/pkgs/by-name/to/toipe/package.nix index cea9da10f33d..8b3269d6bf22 100644 --- a/pkgs/by-name/to/toipe/package.nix +++ b/pkgs/by-name/to/toipe/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-bBkHqcPWE6jkqvUZ28ukUidET9XkRQ9t9bfTpHC5Jyo="; - meta = with lib; { + meta = { description = "Trusty terminal typing tester"; homepage = "https://github.com/Samyak2/toipe"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ loicreynier samyak ]; diff --git a/pkgs/by-name/to/tokio-console/package.nix b/pkgs/by-name/to/tokio-console/package.nix index 0a2ffe98f742..daafce25d061 100644 --- a/pkgs/by-name/to/tokio-console/package.nix +++ b/pkgs/by-name/to/tokio-console/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/tokio-console --log-dir $(mktemp -d) gen-completion zsh) ''; - meta = with lib; { + meta = { description = "Debugger for asynchronous Rust code"; homepage = "https://github.com/tokio-rs/console"; mainProgram = "tokio-console"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ max-niederman ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ max-niederman ]; }; } diff --git a/pkgs/by-name/to/tome2/package.nix b/pkgs/by-name/to/tome2/package.nix index 914055c95436..6686399c3d71 100644 --- a/pkgs/by-name/to/tome2/package.nix +++ b/pkgs/by-name/to/tome2/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation { cp ${desktopItem}/share/applications/*.desktop $out/share/applications ''; - meta = with lib; { + meta = { inherit description; - license = licenses.unfree; - maintainers = with maintainers; [ cizra ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ cizra ]; + platforms = lib.platforms.all; homepage = "https://github.com/tome2/tome2"; }; } diff --git a/pkgs/by-name/to/toml-f/package.nix b/pkgs/by-name/to/toml-f/package.nix index aef8af6711b4..3b97ff41ccbd 100644 --- a/pkgs/by-name/to/toml-f/package.nix +++ b/pkgs/by-name/to/toml-f/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { # tftest-build fails on aarch64-linux doCheck = !stdenv.hostPlatform.isAarch64; - meta = with lib; { + meta = { description = "TOML parser implementation for data serialization and deserialization in Fortran"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; homepage = "https://github.com/toml-f/toml-f"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/to/toml2json/package.nix b/pkgs/by-name/to/toml2json/package.nix index 51ab212c8676..94aebce35b5b 100644 --- a/pkgs/by-name/to/toml2json/package.nix +++ b/pkgs/by-name/to/toml2json/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6HMaKak3YI8kH9Wp1/e4dt276B4QyfyZMve1wl5mucQ="; - meta = with lib; { + meta = { description = "Very small CLI for converting TOML to JSON"; mainProgram = "toml2json"; homepage = "https://github.com/woodruffw/toml2json"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ rvarago ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ rvarago ]; }; } diff --git a/pkgs/by-name/to/toml2nix/package.nix b/pkgs/by-name/to/toml2nix/package.nix index 3d4d84439aa5..796bee262e08 100644 --- a/pkgs/by-name/to/toml2nix/package.nix +++ b/pkgs/by-name/to/toml2nix/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { ln -s ${./Cargo.lock} Cargo.lock ''; - meta = with lib; { + meta = { description = "Tool to convert TOML files to Nix expressions"; mainProgram = "toml2nix"; homepage = "https://crates.io/crates/toml2nix"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; diff --git a/pkgs/by-name/to/tomlc99/package.nix b/pkgs/by-name/to/tomlc99/package.nix index 78f82708c302..cad6612bcaa7 100644 --- a/pkgs/by-name/to/tomlc99/package.nix +++ b/pkgs/by-name/to/tomlc99/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/cktan/tomlc99"; description = "TOML v1.0.0-compliant library written in C99"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/to/tomlplusplus/package.nix b/pkgs/by-name/to/tomlplusplus/package.nix index 1dbdf62c90c6..7d8286454fad 100644 --- a/pkgs/by-name/to/tomlplusplus/package.nix +++ b/pkgs/by-name/to/tomlplusplus/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/marzer/tomlplusplus"; description = "Header-only TOML config file parser and serializer for C++17"; - license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex ]; pkgConfigModules = [ "tomlplusplus" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/to/tonelib-gfx/package.nix b/pkgs/by-name/to/tonelib-gfx/package.nix index 5f9b105f6d4a..cdd5f2ed209f 100644 --- a/pkgs/by-name/to/tonelib-gfx/package.nix +++ b/pkgs/by-name/to/tonelib-gfx/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { substituteInPlace $out/share/applications/ToneLib-GFX.desktop --replace /usr/ $out/ ''; - meta = with lib; { + meta = { description = "Tonelib GFX is an amp and effects modeling software for electric guitar and bass"; homepage = "https://tonelib.net/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ husjon ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/to/tonelib-zoom/package.nix b/pkgs/by-name/to/tonelib-zoom/package.nix index 2d2e9d62fcf8..69adb3fc012b 100644 --- a/pkgs/by-name/to/tonelib-zoom/package.nix +++ b/pkgs/by-name/to/tonelib-zoom/package.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation rec { substituteInPlace $out/share/applications/ToneLib-Zoom.desktop --replace /usr/ $out/ ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "ToneLib Zoom – change and save all the settings in your Zoom(r) guitar pedal"; homepage = "https://tonelib.net/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "ToneLib-Zoom"; diff --git a/pkgs/by-name/to/top-git/package.nix b/pkgs/by-name/to/top-git/package.nix index 77d981b36c87..89efc6908f7f 100644 --- a/pkgs/by-name/to/top-git/package.nix +++ b/pkgs/by-name/to/top-git/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { install -Dm755 contrib/tg-completion.bash -t "$out/share/bash-completion/completions/" ''; - meta = with lib; { + meta = { description = "TopGit manages large amount of interdependent topic branches"; mainProgram = "tg"; homepage = "https://github.com/mackyle/topgit"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ marcweber ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ marcweber ]; }; } diff --git a/pkgs/by-name/to/topicctl/package.nix b/pkgs/by-name/to/topicctl/package.nix index 008934e94fdf..1ec61ba1762b 100644 --- a/pkgs/by-name/to/topicctl/package.nix +++ b/pkgs/by-name/to/topicctl/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { # needs a kafka server doCheck = false; - meta = with lib; { + meta = { description = "Tool for easy, declarative management of Kafka topics"; inherit (src.meta) homepage; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eskytthe srhb ]; diff --git a/pkgs/by-name/to/topydo/package.nix b/pkgs/by-name/to/topydo/package.nix index 082b52844ed3..bc97e1909c8f 100644 --- a/pkgs/by-name/to/topydo/package.nix +++ b/pkgs/by-name/to/topydo/package.nix @@ -49,12 +49,12 @@ python3.pkgs.buildPythonApplication rec { LC_ALL = "en_US.UTF-8"; - meta = with lib; { + meta = { description = "Cli todo application compatible with the todo.txt format"; mainProgram = "topydo"; homepage = "https://github.com/topydo/topydo"; changelog = "https://github.com/topydo/topydo/blob/${src.rev}/CHANGES.md"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/to/torctl/package.nix b/pkgs/by-name/to/torctl/package.nix index d184953e8560..a06ac455af79 100644 --- a/pkgs/by-name/to/torctl/package.nix +++ b/pkgs/by-name/to/torctl/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp -R service $out/etc/systemd/ ''; - meta = with lib; { + meta = { description = "Script to redirect all traffic through tor network including dns queries for anonymizing entire system"; homepage = "https://github.com/BlackArch/torctl"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ tochiaha ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ tochiaha ]; mainProgram = "torctl"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/to/torque/package.nix b/pkgs/by-name/to/torque/package.nix index 55162d324708..92d6ac3dd395 100644 --- a/pkgs/by-name/to/torque/package.nix +++ b/pkgs/by-name/to/torque/package.nix @@ -90,10 +90,10 @@ stdenv.mkDerivation { install -Dm755 torque.setup buildutils/pbs_mkdirs -t $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/adaptivecomputing/torque"; description = "Resource management system for submitting and controlling jobs on supercomputers, clusters, and grids"; - platforms = platforms.linux; + platforms = lib.platforms.linux; license = lib.licenses.torque11; }; } diff --git a/pkgs/by-name/to/torrent7z/package.nix b/pkgs/by-name/to/torrent7z/package.nix index 054b48e630a9..9fa29ae1acac 100644 --- a/pkgs/by-name/to/torrent7z/package.nix +++ b/pkgs/by-name/to/torrent7z/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation rec { cp ../../../../bin/t7z $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/BubblesInTheTub/torrent7z"; description = "Fork of torrent7z, viz a derivative of 7zip that produces invariant .7z archives for torrenting"; - platforms = platforms.linux; - maintainers = with maintainers; [ cirno-999 ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ cirno-999 ]; mainProgram = "t7z"; # RAR code is under non-free UnRAR license, but we remove it - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/by-name/to/torus-trooper/package.nix b/pkgs/by-name/to/torus-trooper/package.nix index b9b72b6cd274..d09f919e57f4 100644 --- a/pkgs/by-name/to/torus-trooper/package.nix +++ b/pkgs/by-name/to/torus-trooper/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation (finalAttrs: { cp -r barrage sounds images $out/share/games/torus-trooper/ ''; - meta = with lib; { + meta = { homepage = "http://www.asahi-net.or.jp/~cs8k-cyu/windows/tt_e.html"; description = "Fast-paced abstract scrolling shooter game"; mainProgram = "torus-trooper"; - license = licenses.bsd2; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/to/toss/package.nix b/pkgs/by-name/to/toss/package.nix index a35dad1a1301..228ff20dc444 100644 --- a/pkgs/by-name/to/toss/package.nix +++ b/pkgs/by-name/to/toss/package.nix @@ -15,11 +15,10 @@ stdenv.mkDerivation rec { }; preInstall = "export DESTDIR=$out/bin"; meta = - with lib; - src.meta - // { + + src.meta // { description = "Dead simple LAN file transfers from the command line"; - license = with licenses; [ mit ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/to/totem-pl-parser/package.nix b/pkgs/by-name/to/totem-pl-parser/package.nix index 547ca6d58ecd..8bf13fbf2fd4 100644 --- a/pkgs/by-name/to/totem-pl-parser/package.nix +++ b/pkgs/by-name/to/totem-pl-parser/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { "-Dintrospection=false" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/totem-pl-parser"; description = "Simple GObject-based library to parse and save a host of playlist formats"; - teams = [ teams.gnome ]; - license = licenses.lgpl2; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/to/touchosc/package.nix b/pkgs/by-name/to/touchosc/package.nix index 8344a56a4449..ff1072178e77 100644 --- a/pkgs/by-name/to/touchosc/package.nix +++ b/pkgs/by-name/to/touchosc/package.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { homepage = "https://hexler.net/touchosc"; description = "Next generation modular control surface"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "aarch64-linux" diff --git a/pkgs/by-name/to/tox-node/package.nix b/pkgs/by-name/to/tox-node/package.nix index 2108eded9060..e40546b45086 100644 --- a/pkgs/by-name/to/tox-node/package.nix +++ b/pkgs/by-name/to/tox-node/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Server application to run tox node written in pure Rust"; homepage = "https://github.com/tox-rs/tox"; - license = [ licenses.gpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = [ lib.licenses.gpl3Plus ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ suhr kurnevsky ]; diff --git a/pkgs/by-name/to/toxvpn/package.nix b/pkgs/by-name/to/toxvpn/package.nix index 60cab8acab30..922f55df6d12 100644 --- a/pkgs/by-name/to/toxvpn/package.nix +++ b/pkgs/by-name/to/toxvpn/package.nix @@ -47,16 +47,16 @@ stdenv.mkDerivation { installCheckPhase = "$out/bin/toxvpn -h"; doInstallCheck = true; - meta = with lib; { + meta = { description = "Powerful tool that allows one to make tunneled point to point connections over Tox"; homepage = "https://github.com/cleverca22/toxvpn"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ cleverca22 craigem obadz toonn ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/to/toybox/package.nix b/pkgs/by-name/to/toybox/package.nix index 2d6570e0baa8..18b8d3041b8d 100644 --- a/pkgs/by-name/to/toybox/package.nix +++ b/pkgs/by-name/to/toybox/package.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error"; - meta = with lib; { + meta = { description = "Lightweight implementation of some Unix command line utilities"; homepage = "https://landley.net/toybox/"; - license = licenses.bsd0; - platforms = with platforms; linux ++ darwin ++ freebsd; - maintainers = with maintainers; [ hhm ]; + license = lib.licenses.bsd0; + platforms = with lib.platforms; linux ++ darwin ++ freebsd; + maintainers = with lib.maintainers; [ hhm ]; priority = 10; }; } diff --git a/pkgs/by-name/tp/tp-auto-kbbl/package.nix b/pkgs/by-name/tp/tp-auto-kbbl/package.nix index 61745dfde768..0a506106d935 100644 --- a/pkgs/by-name/tp/tp-auto-kbbl/package.nix +++ b/pkgs/by-name/tp/tp-auto-kbbl/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Auto toggle keyboard back-lighting on Thinkpads (and maybe other laptops) for Linux"; homepage = "https://github.com/saibotd/tp-auto-kbbl"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "tp-auto-kbbl"; }; } diff --git a/pkgs/by-name/tp/tpm-luks/package.nix b/pkgs/by-name/tp/tpm-luks/package.nix index 185d33fccdf3..6e43ef8a8d45 100644 --- a/pkgs/by-name/tp/tpm-luks/package.nix +++ b/pkgs/by-name/tp/tpm-luks/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { rm -r $out/nix ''; - meta = with lib; { + meta = { description = "LUKS key storage in TPM NVRAM"; homepage = "https://github.com/shpedoikal/tpm-luks/"; maintainers = [ ]; - license = with licenses; [ gpl2Only ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl2Only ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tp/tpm-quote-tools/package.nix b/pkgs/by-name/tp/tpm-quote-tools/package.nix index dbaa37f5047d..4f87a2526875 100644 --- a/pkgs/by-name/tp/tpm-quote-tools/package.nix +++ b/pkgs/by-name/tp/tpm-quote-tools/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { $out/bin/tpm_mkaik ''; - meta = with lib; { + meta = { description = "Collection of programs that provide support for TPM based attestation using the TPM quote mechanism"; longDescription = '' The TPM Quote Tools is a collection of programs that provide support @@ -34,8 +34,8 @@ stdenv.mkDerivation rec { page for tpm_quote_tools provides a usage overview. ''; homepage = "http://tpmquotetools.sourceforge.net/"; - license = licenses.bsd3; - maintainers = with maintainers; [ ak ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ak ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tp/tpm2-abrmd/package.nix b/pkgs/by-name/tp/tpm2-abrmd/package.nix index 9b1275ab4f59..ebfc37621029 100644 --- a/pkgs/by-name/tp/tpm2-abrmd/package.nix +++ b/pkgs/by-name/tp/tpm2-abrmd/package.nix @@ -59,13 +59,13 @@ stdenv.mkDerivation rec { --suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ tpm2-tss ]}" ''; - meta = with lib; { + meta = { description = "TPM2 resource manager, accessible via D-Bus"; mainProgram = "tpm2-abrmd"; homepage = "https://github.com/tpm2-software/tpm2-tools"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ matthiasbeyer scottstephens ]; diff --git a/pkgs/by-name/tp/tpm2-openssl/package.nix b/pkgs/by-name/tp/tpm2-openssl/package.nix index a3a36bf24a3e..3664e5e968dd 100644 --- a/pkgs/by-name/tp/tpm2-openssl/package.nix +++ b/pkgs/by-name/tp/tpm2-openssl/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "OpenSSL Provider for TPM2 integration"; homepage = "https://github.com/tpm2-software/tpm2-openssl"; - license = licenses.bsd3; - maintainers = with maintainers; [ stv0g ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ stv0g ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/tp/tpm2-tools/package.nix b/pkgs/by-name/tp/tpm2-tools/package.nix index 9c19a654a637..11211b418be7 100644 --- a/pkgs/by-name/tp/tpm2-tools/package.nix +++ b/pkgs/by-name/tp/tpm2-tools/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { #configureFlags = [ "--enable-unit" ]; doCheck = false; - meta = with lib; { + meta = { description = "Command line tools that provide access to a TPM 2.0 compatible device"; homepage = "https://github.com/tpm2-software/tpm2-tools"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ scottstephens ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ scottstephens ]; }; } diff --git a/pkgs/by-name/tp/tpm2-totp/package.nix b/pkgs/by-name/tp/tpm2-totp/package.nix index d792d4a8e03f..bfad56141344 100644 --- a/pkgs/by-name/tp/tpm2-totp/package.nix +++ b/pkgs/by-name/tp/tpm2-totp/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation rec { ] ++ lib.optional withPlymouth plymouth; - meta = with lib; { + meta = { description = "Attest the trustworthiness of a device against a human using time-based one-time passwords"; homepage = "https://github.com/tpm2-software/tpm2-totp"; changelog = "https://github.com/tpm2-software/tpm2-totp/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "tpm2-totp"; - platforms = platforms.all; - maintainers = with maintainers; [ raitobezarius ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/by-name/tp/tptp/package.nix b/pkgs/by-name/tp/tptp/package.nix index ae55bdc6d057..facf3819f4a9 100644 --- a/pkgs/by-name/tp/tptp/package.nix +++ b/pkgs/by-name/tp/tptp/package.nix @@ -52,18 +52,18 @@ stdenv.mkDerivation rec { ln -s $sharedir/Scripts/tptp4X $out/bin ''; - meta = with lib; { + meta = { description = "Thousands of problems for theorem provers and tools"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; # 6.3 GiB of data. Installation is unpacking and editing a few files. # No sense in letting Hydra build it. # Also, it is unclear what is covered by "verbatim" - we will edit configs hydraPlatforms = [ ]; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; homepage = "https://tptp.org/TPTP/"; }; } diff --git a/pkgs/by-name/tq/tqftpserv/package.nix b/pkgs/by-name/tq/tqftpserv/package.nix index 774d25b3af5a..7f737644e687 100644 --- a/pkgs/by-name/tq/tqftpserv/package.nix +++ b/pkgs/by-name/tq/tqftpserv/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "prefix=$(out)" ]; - meta = with lib; { - maintainers = with maintainers; [ matthewcroughan ]; + meta = { + maintainers = with lib.maintainers; [ matthewcroughan ]; description = "Trivial File Transfer Protocol server over AF_QIPCRTR"; homepage = "https://github.com/andersson/tqftpserv"; - license = licenses.bsd3; - platforms = platforms.aarch64; + license = lib.licenses.bsd3; + platforms = lib.platforms.aarch64; mainProgram = "tqftpserv"; }; }) diff --git a/pkgs/by-name/tq/tqsl/package.nix b/pkgs/by-name/tq/tqsl/package.nix index 45246c5ec43e..604c49c9b6c8 100644 --- a/pkgs/by-name/tq/tqsl/package.nix +++ b/pkgs/by-name/tq/tqsl/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { wxGTK32 ]; - meta = with lib; { + meta = { description = "Software for using the ARRL Logbook of the World"; mainProgram = "tqsl"; homepage = "https://www.arrl.org/tqsl-download"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/tr/tr-patcher/package.nix b/pkgs/by-name/tr/tr-patcher/package.nix index 0ce33e50ecf7..8304dacfe9ab 100644 --- a/pkgs/by-name/tr/tr-patcher/package.nix +++ b/pkgs/by-name/tr/tr-patcher/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation { --add-flags "-jar $out/lib/tr-patcher.jar" ''; - meta = with lib; { + meta = { description = "Allow to update dependancies of the Tamriel-Data mod for morrowind"; mainProgram = "tr-patcher"; homepage = "https://gitlab.com/bmwinger/tr-patcher"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3; - maintainers = [ maintainers.marius851000 ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.marius851000 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/traccar/package.nix b/pkgs/by-name/tr/traccar/package.nix index a341868bf407..ee4be825df21 100644 --- a/pkgs/by-name/tr/traccar/package.nix +++ b/pkgs/by-name/tr/traccar/package.nix @@ -32,12 +32,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source GPS tracking system"; homepage = "https://www.traccar.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; mainProgram = "traccar"; - maintainers = with maintainers; [ frederictobiasc ]; + maintainers = with lib.maintainers; [ frederictobiasc ]; }; } diff --git a/pkgs/by-name/tr/tracebox/package.nix b/pkgs/by-name/tr/tracebox/package.nix index 2b5dd819bd89..5a37e8b63c80 100644 --- a/pkgs/by-name/tr/tracebox/package.nix +++ b/pkgs/by-name/tr/tracebox/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { command = "tracebox -V"; }; - meta = with lib; { + meta = { homepage = "http://www.tracebox.org/"; description = "Middlebox detection tool"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ ck3d ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ck3d ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/tracee/package.nix b/pkgs/by-name/tr/tracee/package.nix index 078ea2874ace..743e2ae47e3b 100644 --- a/pkgs/by-name/tr/tracee/package.nix +++ b/pkgs/by-name/tr/tracee/package.nix @@ -100,7 +100,7 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { homepage = "https://aquasecurity.github.io/tracee/latest/"; changelog = "https://github.com/aquasecurity/tracee/releases/tag/v${version}"; description = "Linux Runtime Security and Forensics using eBPF"; @@ -112,13 +112,13 @@ buildGoModule rec { is delivered as a Docker image that monitors the OS and detects suspicious behavior based on a pre-defined set of behavioral patterns. ''; - license = with licenses; [ + license = with lib.licenses; [ # general license asl20 # pkg/ebpf/c/* gpl2Plus ]; - maintainers = with maintainers; [ jk ]; + maintainers = with lib.maintainers; [ jk ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/tr/tracefilegen/package.nix b/pkgs/by-name/tr/tracefilegen/package.nix index d67b26451c2a..f3e5ebe816b5 100644 --- a/pkgs/by-name/tr/tracefilegen/package.nix +++ b/pkgs/by-name/tr/tracefilegen/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 3.2)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Automatically generate all types of basic memory management operations and write into trace files"; mainProgram = "TraceFileGen"; homepage = "https://github.com/GarCoSim"; - maintainers = [ maintainers.cmcdragonkai ]; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = [ lib.maintainers.cmcdragonkai ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/tracefilesim/package.nix b/pkgs/by-name/tr/tracefilesim/package.nix index 0e135186ace2..faff0616911a 100644 --- a/pkgs/by-name/tr/tracefilesim/package.nix +++ b/pkgs/by-name/tr/tracefilesim/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation { cp ./traceFileSim "$out/bin" ''; - meta = with lib; { + meta = { description = "Ease the analysis of existing memory management techniques, as well as the prototyping of new memory management techniques"; mainProgram = "traceFileSim"; homepage = "https://github.com/GarCoSim"; - maintainers = [ maintainers.cmcdragonkai ]; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = [ lib.maintainers.cmcdragonkai ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/trackma/package.nix b/pkgs/by-name/tr/trackma/package.nix index 1a41238f89c5..179b1de3eae8 100644 --- a/pkgs/by-name/tr/trackma/package.nix +++ b/pkgs/by-name/tr/trackma/package.nix @@ -108,11 +108,11 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { homepage = "https://github.com/z411/trackma"; description = "Open multi-site list manager for Unix-like systems (ex-wMAL)"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/tr/tracy/package.nix b/pkgs/by-name/tr/tracy/package.nix index 8277793d3b25..8ea21dd241ca 100644 --- a/pkgs/by-name/tr/tracy/package.nix +++ b/pkgs/by-name/tr/tracy/package.nix @@ -116,15 +116,15 @@ stdenv.mkDerivation rec { install -D -m 0444 icon/icon.svg $out/share/icons/hicolor/scalable/apps/tracy.svg ''; - meta = with lib; { + meta = { description = "Real time, nanosecond resolution, remote telemetry frame profiler for games and other applications"; homepage = "https://github.com/wolfpld/tracy"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "tracy"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mpickering nagisa ]; - platforms = platforms.linux ++ lib.optionals (!withWayland) platforms.darwin; + platforms = lib.platforms.linux ++ lib.optionals (!withWayland) lib.platforms.darwin; }; } diff --git a/pkgs/by-name/tr/traefik-certs-dumper/package.nix b/pkgs/by-name/tr/traefik-certs-dumper/package.nix index 83facd673902..3cd1f133d421 100644 --- a/pkgs/by-name/tr/traefik-certs-dumper/package.nix +++ b/pkgs/by-name/tr/traefik-certs-dumper/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-WpYxI+7qBYibojPtYlWmDrmJYlRlVwTaqCMI5Vzh1RI="; excludedPackages = "integrationtest"; - meta = with lib; { + meta = { description = "Dump ACME data from traefik to certificates"; homepage = "https://github.com/ldez/traefik-certs-dumper"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "traefik-certs-dumper"; }; } diff --git a/pkgs/by-name/tr/traitor/package.nix b/pkgs/by-name/tr/traitor/package.nix index 2db704d6e2d3..728745aec450 100644 --- a/pkgs/by-name/tr/traitor/package.nix +++ b/pkgs/by-name/tr/traitor/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Automatic Linux privilege escalation"; longDescription = '' Automatically exploit low-hanging fruit to pop a root shell. Traitor packages @@ -25,8 +25,8 @@ buildGoModule rec { (including most of GTFOBins) in order to pop a root shell. ''; homepage = "https://github.com/liamg/traitor"; - platforms = platforms.linux; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/tr/tran/package.nix b/pkgs/by-name/tr/tran/package.nix index cc6c4f91e1ff..69c4f427c477 100644 --- a/pkgs/by-name/tr/tran/package.nix +++ b/pkgs/by-name/tr/tran/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Securely transfer and send anything between computers with TUI"; homepage = "https://github.com/abdfnx/tran"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "tran"; }; } diff --git a/pkgs/by-name/tr/transcribe/package.nix b/pkgs/by-name/tr/transcribe/package.nix index 724e2ea55549..c4fea9cf164b 100644 --- a/pkgs/by-name/tr/transcribe/package.nix +++ b/pkgs/by-name/tr/transcribe/package.nix @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { ln -s $out/libexec/transcribe $out/bin/ ''; - meta = with lib; { + meta = { description = "Software to help transcribe recorded music"; longDescription = '' The Transcribe! application is an assistant for people who want @@ -110,10 +110,10 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.seventhstring.com/xscribe/"; changelog = "https://www.seventhstring.com/xscribe/history.html"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ iwanb ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ iwanb ]; + platforms = lib.platforms.linux; mainProgram = "transcribe"; }; } diff --git a/pkgs/by-name/tr/transcrypt/package.nix b/pkgs/by-name/tr/transcrypt/package.nix index 2a1e10b1822a..90ff85719756 100644 --- a/pkgs/by-name/tr/transcrypt/package.nix +++ b/pkgs/by-name/tr/transcrypt/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { version = "transcrypt ${version}"; }; - meta = with lib; { + meta = { description = "Transparently encrypt files within a Git repository"; longDescription = '' A script to configure transparent encryption of sensitive files stored in @@ -86,8 +86,8 @@ stdenv.mkDerivation rec { non-encrypted files. ''; homepage = "https://github.com/elasticdog/transcrypt"; - license = licenses.mit; - maintainers = [ maintainers.elasticdog ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.elasticdog ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tr/transfer-sh/package.nix b/pkgs/by-name/tr/transfer-sh/package.nix index 360621b97433..1816430c7d6c 100644 --- a/pkgs/by-name/tr/transfer-sh/package.nix +++ b/pkgs/by-name/tr/transfer-sh/package.nix @@ -26,13 +26,13 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Easy and fast file sharing and pastebin server with access from the command-line"; homepage = "https://github.com/dutchcoders/transfer.sh"; changelog = "https://github.com/dutchcoders/transfer.sh/releases"; mainProgram = "transfer.sh"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ocfox pinpox ]; diff --git a/pkgs/by-name/tr/transifex-cli/package.nix b/pkgs/by-name/tr/transifex-cli/package.nix index 0a46be3e71b3..bdead3e102e1 100644 --- a/pkgs/by-name/tr/transifex-cli/package.nix +++ b/pkgs/by-name/tr/transifex-cli/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { # Tests contain network calls doCheck = false; - meta = with lib; { + meta = { description = "Transifex command-line client"; homepage = "https://github.com/transifex/cli"; - license = licenses.asl20; - maintainers = with maintainers; [ thornycrackers ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thornycrackers ]; mainProgram = "tx"; }; } diff --git a/pkgs/by-name/tr/transito/package.nix b/pkgs/by-name/tr/transito/package.nix index 6104811a22df..f9f6842447fe 100644 --- a/pkgs/by-name/tr/transito/package.nix +++ b/pkgs/by-name/tr/transito/package.nix @@ -52,7 +52,7 @@ buildGoModule rec { doCheck = false; # no test - meta = with lib; { + meta = { description = "Data-provider-agnostic (GTFS) public transportation app"; longDescription = '' Transito is a data-provider-agnostic public transportation app @@ -69,10 +69,10 @@ buildGoModule rec { ''; homepage = "https://git.sr.ht/~mil/transito"; changelog = "https://git.sr.ht/~mil/transito/refs/v${version}"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; mainProgram = "transito"; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.isDarwin; }; } diff --git a/pkgs/by-name/tr/translate-shell/package.nix b/pkgs/by-name/tr/translate-shell/package.nix index 132ce92697eb..36bb37c3b6a7 100644 --- a/pkgs/by-name/tr/translate-shell/package.nix +++ b/pkgs/by-name/tr/translate-shell/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://www.soimort.org/translate-shell"; description = "Command-line translator using Google Translate, Bing Translator, Yandex.Translate, and Apertium"; - license = licenses.unlicense; - maintainers = with maintainers; [ ebzzry ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ ebzzry ]; mainProgram = "trans"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tr/translatelocally/package.nix b/pkgs/by-name/tr/translatelocally/package.nix index 5e4344db5744..14725b44a0e2 100644 --- a/pkgs/by-name/tr/translatelocally/package.nix +++ b/pkgs/by-name/tr/translatelocally/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { mainProgram = "translateLocally"; homepage = "https://translatelocally.com/"; description = "Fast and secure translation on your local machine, powered by marian and Bergamot"; - license = licenses.mit; - maintainers = with maintainers; [ euxane ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ euxane ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/tr/transmission-rss/package.nix b/pkgs/by-name/tr/transmission-rss/package.nix index 11b053d742c8..787ef634ee25 100644 --- a/pkgs/by-name/tr/transmission-rss/package.nix +++ b/pkgs/by-name/tr/transmission-rss/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage { OPENSSL_NO_VENDOR = 1; - meta = with lib; { + meta = { description = "Add torrents to transmission based on RSS list"; homepage = "https://github.com/herlon214/transmission-rss"; - maintainers = with maintainers; [ icewind1991 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ icewind1991 ]; + license = lib.licenses.mit; mainProgram = "transmission-rss"; }; } diff --git a/pkgs/by-name/tr/trash-cli/package.nix b/pkgs/by-name/tr/trash-cli/package.nix index f8420c82a270..41bb76f6e8ec 100644 --- a/pkgs/by-name/tr/trash-cli/package.nix +++ b/pkgs/by-name/tr/trash-cli/package.nix @@ -76,12 +76,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/andreafrancia/trash-cli"; description = "Command line interface to the freedesktop.org trashcan"; - maintainers = [ maintainers.rycee ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.rycee ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "trash"; }; } diff --git a/pkgs/by-name/tr/trayer/package.nix b/pkgs/by-name/tr/trayer/package.nix index b48ed167fa6a..e1e3ce54a3a4 100644 --- a/pkgs/by-name/tr/trayer/package.nix +++ b/pkgs/by-name/tr/trayer/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sargon/trayer-srg"; - license = licenses.mit; + license = lib.licenses.mit; description = "Lightweight GTK2-based systray for UNIX desktop"; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "trayer"; }; } diff --git a/pkgs/by-name/tr/tre-command/package.nix b/pkgs/by-name/tr/tre-command/package.nix index 8ad6c590f44a..1bcab60f729e 100644 --- a/pkgs/by-name/tr/tre-command/package.nix +++ b/pkgs/by-name/tr/tre-command/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { "respect_git_ignore" ]; - meta = with lib; { + meta = { description = "Tree command, improved"; homepage = "https://github.com/dduan/tre"; - license = licenses.mit; - maintainers = [ maintainers.dduan ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.dduan ]; mainProgram = "tre"; }; } diff --git a/pkgs/by-name/tr/tree/package.nix b/pkgs/by-name/tr/tree/package.nix index 4ddf8f397263..26a5fa08f18f 100644 --- a/pkgs/by-name/tr/tree/package.nix +++ b/pkgs/by-name/tr/tree/package.nix @@ -43,17 +43,17 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://oldmanprogrammer.net/source.php?dir=projects/tree"; description = "Command to produce a depth indented directory listing"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' Tree is a recursive directory listing command that produces a depth indented listing of files, which is colorized ala dircolors if the LS_COLORS environment variable is set and output is to tty. ''; - platforms = platforms.all; - maintainers = with maintainers; [ nickcao ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "tree"; }; } diff --git a/pkgs/by-name/tr/treemix/package.nix b/pkgs/by-name/tr/treemix/package.nix index f9a0fe9adcb1..a3a29c708bb1 100644 --- a/pkgs/by-name/tr/treemix/package.nix +++ b/pkgs/by-name/tr/treemix/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { description = "Inference of patterns of population splitting and mixing from genome-wide allele frequency data"; homepage = "https://bitbucket.org/nygcresearch/treemix/wiki/Home"; - license = licenses.gpl3Only; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/treesheets/package.nix b/pkgs/by-name/tr/treesheets/package.nix index ab8fdf64b06b..2ebaaa003374 100644 --- a/pkgs/by-name/tr/treesheets/package.nix +++ b/pkgs/by-name/tr/treesheets/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Free Form Data Organizer"; mainProgram = "TreeSheets"; @@ -62,8 +62,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://strlen.com/treesheets/"; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.unix; - license = licenses.zlib; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.unix; + license = lib.licenses.zlib; }; } diff --git a/pkgs/by-name/tr/trellis/package.nix b/pkgs/by-name/tr/trellis/package.nix index bafd30b83657..303a6594383a 100644 --- a/pkgs/by-name/tr/trellis/package.nix +++ b/pkgs/by-name/tr/trellis/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation { $out/bin/ecppack $out/share/trellis/misc/basecfgs/empty_lfe5u-85f.config /tmp/test.bin ''; - meta = with lib; { + meta = { description = "Documentation and bitstream tools for Lattice ECP5 FPGAs"; longDescription = '' Project Trellis documents the Lattice ECP5 architecture @@ -77,12 +77,12 @@ stdenv.mkDerivation { open Verilog to bitstream toolchain for these devices. ''; homepage = "https://github.com/YosysHQ/prjtrellis"; - license = licenses.isc; - maintainers = with maintainers; [ + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ q3k thoughtpolice rowanG077 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tr/trexio/package.nix b/pkgs/by-name/tr/trexio/package.nix index d470db516727..e6b876f40d75 100644 --- a/pkgs/by-name/tr/trexio/package.nix +++ b/pkgs/by-name/tr/trexio/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "File format and library for the storage of quantum chemical wave functions"; homepage = "https://trex-coe.github.io/trexio/"; downloadPage = "https://github.com/TREX-CoE/trexio"; - license = licenses.bsd3; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/tr/trezor-udev-rules/package.nix b/pkgs/by-name/tr/trezor-udev-rules/package.nix index b30d43fa9d94..8ef70a23eaa8 100644 --- a/pkgs/by-name/tr/trezor-udev-rules/package.nix +++ b/pkgs/by-name/tr/trezor-udev-rules/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) trezord; }; - meta = with lib; { + meta = { description = "Udev rules for Trezor"; - license = licenses.gpl3; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.linux; homepage = "https://github.com/trezor/trezor-firmware/tree/master/common/udev"; }; } diff --git a/pkgs/by-name/tr/trezord/package.nix b/pkgs/by-name/tr/trezord/package.nix index 11e573f66763..8aea98c09b48 100644 --- a/pkgs/by-name/tr/trezord/package.nix +++ b/pkgs/by-name/tr/trezord/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) trezord; }; - meta = with lib; { + meta = { description = "Trezor Communication Daemon aka Trezor Bridge"; homepage = "https://trezor.io"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ canndrew jb55 prusnak diff --git a/pkgs/by-name/tr/trf/package.nix b/pkgs/by-name/tr/trf/package.nix index 3bd1f19bbec6..61c91ce0be8a 100644 --- a/pkgs/by-name/tr/trf/package.nix +++ b/pkgs/by-name/tr/trf/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-73LypVqBdlRdDCblf9JNZQmS5Za8xpId4ha5GjTJHDo="; }; - meta = with lib; { + meta = { description = "Tandem Repeats Finder: a program to analyze DNA sequences"; homepage = "https://tandem.bu.edu/trf/trf.html"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tr/trickster/package.nix b/pkgs/by-name/tr/trickster/package.nix index cc41ad0c49cb..f081362273a3 100644 --- a/pkgs/by-name/tr/trickster/package.nix +++ b/pkgs/by-name/tr/trickster/package.nix @@ -39,7 +39,7 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) trickster; }; - meta = with lib; { + meta = { description = "Reverse proxy cache and time series dashboard accelerator"; mainProgram = "trickster"; longDescription = '' @@ -47,8 +47,8 @@ buildGoModule rec { applications like static file servers and web APIs. ''; homepage = "https://trickstercache.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ _1000101 ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ _1000101 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/tridactyl-native/package.nix b/pkgs/by-name/tr/tridactyl-native/package.nix index c97b8cad3365..06420474bd6f 100644 --- a/pkgs/by-name/tr/tridactyl-native/package.nix +++ b/pkgs/by-name/tr/tridactyl-native/package.nix @@ -22,13 +22,13 @@ buildNimPackage { cp tridactyl.json "$out/lib/mozilla/native-messaging-hosts/" ''; - meta = with lib; { + meta = { description = "Native messenger for Tridactyl, a vim-like Firefox webextension"; mainProgram = "native_main"; homepage = "https://github.com/tridactyl/native_messenger"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ timokau dit7ya kiike diff --git a/pkgs/by-name/tr/triehash/package.nix b/pkgs/by-name/tr/triehash/package.nix index 21c85bb660ce..25a2f2d3bcea 100644 --- a/pkgs/by-name/tr/triehash/package.nix +++ b/pkgs/by-name/tr/triehash/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/julian-klode/triehash"; description = "Order-preserving minimal perfect hash function generator"; - license = with licenses; mit; + license = with lib.licenses; mit; maintainers = [ ]; platforms = perlPackages.perl.meta.platforms; mainProgram = "triehash"; diff --git a/pkgs/by-name/tr/trigger-control/package.nix b/pkgs/by-name/tr/trigger-control/package.nix index fb8bb60ed385..55ab0b1ddbd8 100644 --- a/pkgs/by-name/tr/trigger-control/package.nix +++ b/pkgs/by-name/tr/trigger-control/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Control the dualsense's triggers on Linux (and Windows) with a gui and C++ api"; homepage = "https://github.com/Etaash-mathamsetty/trigger-control"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "trigger-control"; - maintainers = with maintainers; [ azuwis ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ azuwis ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/tr/triggerhappy/package.nix b/pkgs/by-name/tr/triggerhappy/package.nix index a70060e36e6a..94d31c36868a 100644 --- a/pkgs/by-name/tr/triggerhappy/package.nix +++ b/pkgs/by-name/tr/triggerhappy/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { install -D -m 644 -t "$out/etc/triggerhappy/triggers.d" "triggerhappy.conf.examples" ''; - meta = with lib; { + meta = { description = "Lightweight hotkey daemon"; longDescription = '' Triggerhappy is a hotkey daemon developed with small and embedded systems in @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { configuration. ''; homepage = "https://github.com/wertarbyte/triggerhappy/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ taha ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ taha ]; }; } diff --git a/pkgs/by-name/tr/trilinos/package.nix b/pkgs/by-name/tr/trilinos/package.nix index 062ed1ef2561..eae532e226ad 100644 --- a/pkgs/by-name/tr/trilinos/package.nix +++ b/pkgs/by-name/tr/trilinos/package.nix @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { inherit withMPI; }; - meta = with lib; { + meta = { description = "Engineering and scientific problems algorithms"; mainProgram = "nvcc_wrapper"; longDescription = '' @@ -107,8 +107,8 @@ stdenv.mkDerivation rec { problems. ''; homepage = "https://trilinos.org"; - license = licenses.bsd3; - maintainers = with maintainers; [ fbeffa ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fbeffa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tr/trillian-im/package.nix b/pkgs/by-name/tr/trillian-im/package.nix index 22e3143a372d..cdb45ac0fd0d 100644 --- a/pkgs/by-name/tr/trillian-im/package.nix +++ b/pkgs/by-name/tr/trillian-im/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Modern instant messaging for home and work that prioritizes chat interoperability and security"; homepage = "https://www.trillian.im/"; - license = licenses.unfree; - maintainers = with maintainers; [ majiir ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ majiir ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/tr/trillian/package.nix b/pkgs/by-name/tr/trillian/package.nix index 29114681f358..0f5bacb373bb 100644 --- a/pkgs/by-name/tr/trillian/package.nix +++ b/pkgs/by-name/tr/trillian/package.nix @@ -24,10 +24,10 @@ buildGoModule rec { "cmd/updatetree" ]; - meta = with lib; { + meta = { homepage = "https://github.com/google/trillian"; description = "Transparent, highly scalable and cryptographically verifiable data store"; - license = [ licenses.asl20 ]; + license = [ lib.licenses.asl20 ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/tr/trimal/package.nix b/pkgs/by-name/tr/trimal/package.nix index bc1445909c1d..5e1d2ce5aba6 100644 --- a/pkgs/by-name/tr/trimal/package.nix +++ b/pkgs/by-name/tr/trimal/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { cp -a trimal readal statal $out/bin ''; - meta = with lib; { + meta = { description = "Tool for the automated removal of spurious sequences or poorly aligned regions from a multiple sequence alignment"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; homepage = "http://trimal.cgenomics.org"; - maintainers = [ maintainers.bzizou ]; + maintainers = [ lib.maintainers.bzizou ]; }; } diff --git a/pkgs/by-name/tr/trino-cli/package.nix b/pkgs/by-name/tr/trino-cli/package.nix index 810b07362edc..6bf706c5207c 100644 --- a/pkgs/by-name/tr/trino-cli/package.nix +++ b/pkgs/by-name/tr/trino-cli/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Trino CLI provides a terminal-based, interactive shell for running queries"; mainProgram = "trino"; homepage = "https://github.com/trinodb/trino"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ regadas cpcloud ]; diff --git a/pkgs/by-name/tr/trinsic-cli/package.nix b/pkgs/by-name/tr/trinsic-cli/package.nix index 0ac76ace16bf..99b8fb2b0db8 100644 --- a/pkgs/by-name/tr/trinsic-cli/package.nix +++ b/pkgs/by-name/tr/trinsic-cli/package.nix @@ -16,14 +16,14 @@ rustPlatform.buildRustPackage rec { cargoVendorDir = "vendor"; doCheck = false; - meta = with lib; { + meta = { description = "Trinsic CLI"; longDescription = '' Command line interface for Trinsic Ecosystems ''; homepage = "https://trinsic.id/"; - license = licenses.asl20; - maintainers = with maintainers; [ tmarkovski ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tmarkovski ]; mainProgram = "trinsic"; }; } diff --git a/pkgs/by-name/tr/trippy/package.nix b/pkgs/by-name/tr/trippy/package.nix index 1f060203854d..34dcc10c8f3a 100644 --- a/pkgs/by-name/tr/trippy/package.nix +++ b/pkgs/by-name/tr/trippy/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/trip --generate zsh) ''; - meta = with lib; { + meta = { description = "Network diagnostic tool"; homepage = "https://trippy.cli.rs"; changelog = "https://github.com/fujiapple852/trippy/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "trip"; }; diff --git a/pkgs/by-name/tr/triton/package.nix b/pkgs/by-name/tr/triton/package.nix index 3d3a383bfda0..8a06f443d5b6 100644 --- a/pkgs/by-name/tr/triton/package.nix +++ b/pkgs/by-name/tr/triton/package.nix @@ -36,11 +36,11 @@ buildNpmPackage rec { }; }; - meta = with lib; { + meta = { description = "TritonDataCenter Client CLI and Node.js SDK"; homepage = "https://github.com/TritonDataCenter/node-triton"; - license = licenses.mpl20; - maintainers = with maintainers; [ teutat3s ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ teutat3s ]; mainProgram = "triton"; }; } diff --git a/pkgs/by-name/tr/trompeloeil/package.nix b/pkgs/by-name/tr/trompeloeil/package.nix index 09098810b63e..2052a278168f 100644 --- a/pkgs/by-name/tr/trompeloeil/package.nix +++ b/pkgs/by-name/tr/trompeloeil/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Header only C++14 mocking framework"; homepage = "https://github.com/rollbear/trompeloeil"; - license = licenses.boost; - maintainers = [ maintainers.bjornfor ]; - platforms = platforms.unix; + license = lib.licenses.boost; + maintainers = [ lib.maintainers.bjornfor ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tr/troubadix/package.nix b/pkgs/by-name/tr/troubadix/package.nix index 2a287ee07860..a4dd0c521764 100644 --- a/pkgs/by-name/tr/troubadix/package.nix +++ b/pkgs/by-name/tr/troubadix/package.nix @@ -52,12 +52,12 @@ python3.pkgs.buildPythonApplication rec { "testgit" ]; - meta = with lib; { + meta = { description = "Linting tool for NASL files"; homepage = "https://github.com/greenbone/troubadix"; changelog = "https://github.com/greenbone/troubadix/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "troubadix"; }; } diff --git a/pkgs/by-name/tr/trousers/package.nix b/pkgs/by-name/tr/trousers/package.nix index 0cff55be007d..9876479a11a5 100644 --- a/pkgs/by-name/tr/trousers/package.nix +++ b/pkgs/by-name/tr/trousers/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = toString [ "-DALLOW_NON_TSS_CONFIG_FILE" ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Trusted computing software stack"; mainProgram = "tcsd"; homepage = "https://trousers.sourceforge.net/"; - license = licenses.bsd3; - maintainers = [ maintainers.ak ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ak ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/trrntzip/package.nix b/pkgs/by-name/tr/trrntzip/package.nix index 34ba31f9b9bd..e0b13dd70179 100644 --- a/pkgs/by-name/tr/trrntzip/package.nix +++ b/pkgs/by-name/tr/trrntzip/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Goal of the program is to use standard values when creating zips to create identical files over multiple systems"; longDescription = '' Torrentzip converts zip archives to a standard format with some @@ -42,13 +42,13 @@ stdenv.mkDerivation (finalAttrs: { This is a revival of https://sourceforge.net/projects/trrntzip. ''; homepage = "https://github.com/0-wiz-0/trrntzip"; - license = with licenses; [ + license = with lib.licenses; [ # "This software includes code from minizip, which is part of zlib" - licenses.zlib + lib.licenses.zlib gpl2Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/tr/trufflehog/package.nix b/pkgs/by-name/tr/trufflehog/package.nix index a213d14ca0f5..5eac77c6f48d 100644 --- a/pkgs/by-name/tr/trufflehog/package.nix +++ b/pkgs/by-name/tr/trufflehog/package.nix @@ -44,12 +44,12 @@ buildGoModule rec { versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "Find credentials all over the place"; homepage = "https://github.com/trufflesecurity/trufflehog"; changelog = "https://github.com/trufflesecurity/trufflehog/releases/tag/v${version}"; - license = with licenses; [ agpl3Only ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ agpl3Only ]; + maintainers = with lib.maintainers; [ fab sarcasticadmin ]; diff --git a/pkgs/by-name/tr/trunk-ng/package.nix b/pkgs/by-name/tr/trunk-ng/package.nix index 324b1797c525..c34bf7c39980 100644 --- a/pkgs/by-name/tr/trunk-ng/package.nix +++ b/pkgs/by-name/tr/trunk-ng/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jDewjDm7Nh09CkRdPG0/ELn4odz/aaRNg8GegDxK6f8="; - meta = with lib; { + meta = { homepage = "https://github.com/ctron/trunk"; description = "Build, bundle & ship your Rust WASM application to the web"; mainProgram = "trunk-ng"; - maintainers = with maintainers; [ ctron ]; - license = with licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ ctron ]; + license = with lib.licenses; [ asl20 ]; }; } diff --git a/pkgs/by-name/tr/trunk/package.nix b/pkgs/by-name/tr/trunk/package.nix index 7d5b231f9ab0..29c76a0a96a9 100644 --- a/pkgs/by-name/tr/trunk/package.nix +++ b/pkgs/by-name/tr/trunk/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/5zvbSlMzZHxnAwuu0Jd6WVVjxJtIAQpRwZZHgYyPbs="; - meta = with lib; { + meta = { homepage = "https://github.com/trunk-rs/trunk"; description = "Build, bundle & ship your Rust WASM application to the web"; mainProgram = "trunk"; - maintainers = with maintainers; [ ctron ]; - license = with licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ ctron ]; + license = with lib.licenses; [ asl20 ]; }; } diff --git a/pkgs/by-name/tr/trustymail/package.nix b/pkgs/by-name/tr/trustymail/package.nix index 68b670ba5935..2661c37fc27a 100644 --- a/pkgs/by-name/tr/trustymail/package.nix +++ b/pkgs/by-name/tr/trustymail/package.nix @@ -37,12 +37,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "trustymail" ]; - meta = with lib; { + meta = { description = "Tool to scan domains and return data based on trustworthy email best practices"; homepage = "https://github.com/cisagov/trustymail"; changelog = "https://github.com/cisagov/trustymail/releases/tag/${src.tag}"; - license = with licenses; [ cc0 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ cc0 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "trustymail"; }; } diff --git a/pkgs/by-name/tr/truvari/package.nix b/pkgs/by-name/tr/truvari/package.nix index 054aa851baa7..f11b4f8a4607 100644 --- a/pkgs/by-name/tr/truvari/package.nix +++ b/pkgs/by-name/tr/truvari/package.nix @@ -80,12 +80,12 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Structural variant comparison tool for VCFs"; homepage = "https://github.com/ACEnglish/truvari"; changelog = "https://github.com/ACEnglish/truvari/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; longDescription = '' diff --git a/pkgs/by-name/tr/trx/package.nix b/pkgs/by-name/tr/trx/package.nix index 2dcde72a0f6b..dc97ca9c26bb 100644 --- a/pkgs/by-name/tr/trx/package.nix +++ b/pkgs/by-name/tr/trx/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { ]; makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple toolset for broadcasting live audio using RTP/UDP and Opus"; homepage = "http://www.pogo.org.uk/~mark/trx/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.hansjoergschurr ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.hansjoergschurr ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/tryton/package.nix b/pkgs/by-name/tr/tryton/package.nix index 3b77a3aaa661..88461e1ca578 100644 --- a/pkgs/by-name/tr/tryton/package.nix +++ b/pkgs/by-name/tr/tryton/package.nix @@ -69,7 +69,7 @@ python3Packages.buildPythonApplication rec { doCheck = false; - meta = with lib; { + meta = { description = "Client of the Tryton application platform"; mainProgram = "tryton"; longDescription = '' @@ -81,8 +81,8 @@ python3Packages.buildPythonApplication rec { modularity, scalability and security. ''; homepage = "http://www.tryton.org/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ johbo udono ]; diff --git a/pkgs/by-name/ts/ts/package.nix b/pkgs/by-name/ts/ts/package.nix index fa1fc15ada52..98a08d3ed3b1 100644 --- a/pkgs/by-name/ts/ts/package.nix +++ b/pkgs/by-name/ts/ts/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-+oMzEVQ9xTW2DLerg8ZKte4xEo26qqE93jQZhOVCtCg="; }; - meta = with lib; { + meta = { homepage = "http://vicerveza.homeunix.net/~viric/soft/ts"; description = "Task spooler - batch queue"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "ts"; }; } diff --git a/pkgs/by-name/ts/tshock/package.nix b/pkgs/by-name/ts/tshock/package.nix index 97fe24692726..f2ef29ef899b 100644 --- a/pkgs/by-name/ts/tshock/package.nix +++ b/pkgs/by-name/ts/tshock/package.nix @@ -34,11 +34,11 @@ buildDotnetModule rec { nugetSource = "https://api.nuget.org/v3/index.json"; nugetDeps = ./deps.json; - meta = with lib; { + meta = { homepage = "https://github.com/Pryaxis/TShock"; description = "Modded server software for Terraria, providing a plugin system and inbuilt tools such as anti-cheat, server-side characters, groups, permissions, and item bans"; - license = licenses.gpl3Only; - maintainers = [ maintainers.proggerx ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.proggerx ]; mainProgram = "TShock.Server"; }; } diff --git a/pkgs/by-name/ts/tsocks/package.nix b/pkgs/by-name/ts/tsocks/package.nix index 4bd4c1f44ec5..0b0328b51bc0 100644 --- a/pkgs/by-name/ts/tsocks/package.nix +++ b/pkgs/by-name/ts/tsocks/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { -e "/SAVE/d" Makefile ''; - meta = with lib; { + meta = { description = "Transparent SOCKS v4 proxying library"; mainProgram = "tsocks"; homepage = "https://tsocks.sourceforge.net/"; license = lib.licenses.gpl2; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/ts/tsukae/package.nix b/pkgs/by-name/ts/tsukae/package.nix index b10b1702851e..05e797247aed 100644 --- a/pkgs/by-name/ts/tsukae/package.nix +++ b/pkgs/by-name/ts/tsukae/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-Q0WOzyJGnTXTmj7ZPKyVSnWuWb4bbDjDpgftQ1Opf/I="; - meta = with lib; { + meta = { description = "Show off your most used shell commands"; homepage = "https://github.com/irevenko/tsukae"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "tsukae"; - maintainers = with maintainers; [ l3af ]; + maintainers = with lib.maintainers; [ l3af ]; }; } diff --git a/pkgs/by-name/tt/tt-rss-plugin-auth-ldap/package.nix b/pkgs/by-name/tt/tt-rss-plugin-auth-ldap/package.nix index 713fd3978416..be383398ec8d 100644 --- a/pkgs/by-name/tt/tt-rss-plugin-auth-ldap/package.nix +++ b/pkgs/by-name/tt/tt-rss-plugin-auth-ldap/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { tests = { inherit (nixosTests) tt-rss; }; }; - meta = with lib; { + meta = { description = "Plugin for TT-RSS to authenticate users via ldap"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/hydrian/TTRSS-Auth-LDAP"; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tt/tt-rss-plugin-feediron/package.nix b/pkgs/by-name/tt/tt-rss-plugin-feediron/package.nix index 8e92d249f6f4..50c2d0863b43 100644 --- a/pkgs/by-name/tt/tt-rss-plugin-feediron/package.nix +++ b/pkgs/by-name/tt/tt-rss-plugin-feediron/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { cp -r bin filters init.php preftab recipes $out/feediron/ ''; - meta = with lib; { + meta = { description = "Evolution of ttrss_plugin-af_feedmod"; longDescription = '' This is a plugin for Tiny Tiny RSS (tt-rss). @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { i.e. create a "full feed". ''; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/feediron/ttrss_plugin-feediron"; - maintainers = with maintainers; [ milogert ]; + maintainers = with lib.maintainers; [ milogert ]; inherit (tt-rss.meta) platforms; }; } diff --git a/pkgs/by-name/tt/tt-rss-plugin-ff-instagram/package.nix b/pkgs/by-name/tt/tt-rss-plugin-ff-instagram/package.nix index cdae35b9baff..f5808d117d2a 100644 --- a/pkgs/by-name/tt/tt-rss-plugin-ff-instagram/package.nix +++ b/pkgs/by-name/tt/tt-rss-plugin-ff-instagram/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { cp *.php $out/ff_instagram ''; - meta = with lib; { + meta = { broken = true; # Plugin code does not conform to plugin API changes. See https://github.com/wltb/ff_instagram/issues/13 description = "Plugin for Tiny Tiny RSS that allows to fetch posts from Instagram user sites"; longDescription = '' @@ -29,9 +29,9 @@ stdenv.mkDerivation { The name of the plugin in TT-RSS is 'ff_instagram'. ''; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; homepage = "https://github.com/wltb/ff_instagram"; - maintainers = with maintainers; [ gileri ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ gileri ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tt/tt-rss-theme-feedly/package.nix b/pkgs/by-name/tt/tt-rss-theme-feedly/package.nix index b211d25c17a5..53a11bef9ba2 100644 --- a/pkgs/by-name/tt/tt-rss-theme-feedly/package.nix +++ b/pkgs/by-name/tt/tt-rss-theme-feedly/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { tests = { inherit (nixosTests) tt-rss; }; }; - meta = with lib; { + meta = { description = "Feedly theme for Tiny Tiny RSS"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/levito/tt-rss-feedly-theme"; - maintainers = with maintainers; [ das_j ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ das_j ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tt/tt-rss/package.nix b/pkgs/by-name/tt/tt-rss/package.nix index aed3e6f154b2..bbbbf5607294 100644 --- a/pkgs/by-name/tt/tt-rss/package.nix +++ b/pkgs/by-name/tt/tt-rss/package.nix @@ -35,15 +35,15 @@ stdenv.mkDerivation rec { updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = with lib; { + meta = { description = "Web-based news feed (RSS/Atom) aggregator"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://tt-rss.org"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ gileri globin zohl ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tt/tt2020/package.nix b/pkgs/by-name/tt/tt2020/package.nix index 94872dd6b8ec..3115e225b49e 100644 --- a/pkgs/by-name/tt/tt2020/package.nix +++ b/pkgs/by-name/tt/tt2020/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Advanced, open source, hyperrealistic, multilingual typewriter font for a new decade"; homepage = "https://ctrlcctrlv.github.io/TT2020"; - license = licenses.ofl; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tt/ttags/package.nix b/pkgs/by-name/tt/ttags/package.nix index a65cfd1ba4a5..764751b1a619 100644 --- a/pkgs/by-name/tt/ttags/package.nix +++ b/pkgs/by-name/tt/ttags/package.nix @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage { version = version; }; - meta = with lib; { + meta = { description = "Generate tags using tree-sitter"; mainProgram = "ttags"; longDescription = '' @@ -46,8 +46,8 @@ rustPlatform.buildRustPackage { - Swift ''; homepage = "https://github.com/npezza93/ttags"; - license = licenses.mit; - maintainers = with maintainers; [ mrcjkb ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mrcjkb ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tt/ttchat/package.nix b/pkgs/by-name/tt/ttchat/package.nix index 893abb63c4f0..bc4484797ef7 100644 --- a/pkgs/by-name/tt/ttchat/package.nix +++ b/pkgs/by-name/tt/ttchat/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-6GcbEGC1O+lcTO+GsaVXOO69yIHMPywXJy7OFX15/eI="; - meta = with lib; { + meta = { description = "Connect to a Twitch channel's chat from your terminal"; homepage = "https://github.com/atye/ttchat"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "ttchat"; }; diff --git a/pkgs/by-name/tt/ttf-envy-code-r/package.nix b/pkgs/by-name/tt/ttf-envy-code-r/package.nix index 2f3765f8a3b5..9aaaf06e81d6 100644 --- a/pkgs/by-name/tt/ttf-envy-code-r/package.nix +++ b/pkgs/by-name/tt/ttf-envy-code-r/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://damieng.com/blog/tag/envy-code-r"; description = "Free scalable coding font by DamienG"; - license = licenses.unfree; + license = lib.licenses.unfree; maintainers = [ ]; }; } diff --git a/pkgs/by-name/tt/ttf-tw-moe/package.nix b/pkgs/by-name/tt/ttf-tw-moe/package.nix index b0ddf0af18b9..6d9964d0581c 100644 --- a/pkgs/by-name/tt/ttf-tw-moe/package.nix +++ b/pkgs/by-name/tt/ttf-tw-moe/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.moe.gov.tw/"; description = "Set of KAI and SONG fonts from the Ministry of Education of Taiwan"; version = version; @@ -30,8 +30,8 @@ stdenvNoCC.mkDerivation rec { Both are provided by the Ministry of Education of Taiwan; each character's shape closely follows the official recommendation, and can be used as for teaching purposes. ''; - license = licenses.cc-by-nd-30; - maintainers = [ maintainers.jiehong ]; - platforms = platforms.all; + license = lib.licenses.cc-by-nd-30; + maintainers = [ lib.maintainers.jiehong ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tt/tthsum/package.nix b/pkgs/by-name/tt/tthsum/package.nix index 743501fb31e0..4e82a0f777fa 100644 --- a/pkgs/by-name/tt/tthsum/package.nix +++ b/pkgs/by-name/tt/tthsum/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Md5sum-alike program that works with Tiger/THEX hashes"; longDescription = '' @@ -39,9 +39,9 @@ stdenv.mkDerivation rec { http://adc.sourceforge.net/draft-jchapweske-thex-02.html ''; homepage = "http://tthsum.devs.nu/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; mainProgram = "tthsum"; }; } diff --git a/pkgs/by-name/tt/ttop/package.nix b/pkgs/by-name/tt/ttop/package.nix index f160bd9ec15a..ce0c9571a1dc 100644 --- a/pkgs/by-name/tt/ttop/package.nix +++ b/pkgs/by-name/tt/ttop/package.nix @@ -28,13 +28,13 @@ buildNimPackage (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Top-like system monitoring tool"; homepage = "https://github.com/inv2004/ttop"; changelog = "https://github.com/inv2004/ttop/releases/tag/${finalAttrs.src.rev}"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "ttop"; diff --git a/pkgs/by-name/tt/tts/package.nix b/pkgs/by-name/tt/tts/package.nix index e803495f3e37..4c3553f63c9e 100644 --- a/pkgs/by-name/tt/tts/package.nix +++ b/pkgs/by-name/tt/tts/package.nix @@ -183,11 +183,11 @@ python3.pkgs.buildPythonApplication rec { inherit python3; }; - meta = with lib; { + meta = { homepage = "https://github.com/idiap/coqui-ai-TTS"; changelog = "https://github.com/idiap/coqui-ai-TTS/releases/tag/${src.tag}"; description = "Deep learning toolkit for Text-to-Speech, battle-tested in research and production"; - license = licenses.mpl20; - teams = [ teams.tts ]; + license = lib.licenses.mpl20; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/by-name/tt/ttwatch/package.nix b/pkgs/by-name/tt/ttwatch/package.nix index 1fce9718389f..b5447e647e2a 100644 --- a/pkgs/by-name/tt/ttwatch/package.nix +++ b/pkgs/by-name/tt/ttwatch/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required (VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://github.com/ryanbinns/ttwatch"; description = "Linux TomTom GPS Watch Utilities"; - maintainers = with maintainers; [ dotlambda ]; - license = licenses.mit; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ dotlambda ]; + license = lib.licenses.mit; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/tt/tty-clock/package.nix b/pkgs/by-name/tt/tty-clock/package.nix index b284a7137cb9..0562f5b3ff84 100644 --- a/pkgs/by-name/tt/tty-clock/package.nix +++ b/pkgs/by-name/tt/tty-clock/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/xorg62/tty-clock"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "Digital clock in ncurses"; - platforms = platforms.all; - maintainers = [ maintainers.koral ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.koral ]; mainProgram = "tty-clock"; }; } diff --git a/pkgs/by-name/tt/tty-share/package.nix b/pkgs/by-name/tt/tty-share/package.nix index 1847050236b1..51942d35eff2 100644 --- a/pkgs/by-name/tt/tty-share/package.nix +++ b/pkgs/by-name/tt/tty-share/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://tty-share.com"; description = "Share terminal via browser for remote work or shared sessions"; - license = licenses.mit; - maintainers = with maintainers; [ andys8 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ andys8 ]; mainProgram = "tty-share"; }; } diff --git a/pkgs/by-name/tt/ttygif/package.nix b/pkgs/by-name/tt/ttygif/package.nix index e2446e2a687b..81b76298d728 100644 --- a/pkgs/by-name/tt/ttygif/package.nix +++ b/pkgs/by-name/tt/ttygif/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/icholy/ttygif"; description = "Convert terminal recordings to animated gifs"; - platforms = platforms.unix; - license = licenses.mit; - maintainers = with maintainers; [ moaxcp ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moaxcp ]; mainProgram = "ttygif"; }; } diff --git a/pkgs/by-name/tt/ttylog/package.nix b/pkgs/by-name/tt/ttylog/package.nix index 44d08f59c4a0..1a6b6bf40f1d 100644 --- a/pkgs/by-name/tt/ttylog/package.nix +++ b/pkgs/by-name/tt/ttylog/package.nix @@ -23,15 +23,15 @@ stdenv.mkDerivation rec { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://ttylog.sourceforge.net"; description = "Simple serial port logger"; longDescription = '' A serial port logger which can be used to print everything to stdout that comes from a serial device. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "ttylog"; }; } diff --git a/pkgs/by-name/tt/ttyper/package.nix b/pkgs/by-name/tt/ttyper/package.nix index a3645548774c..2e607c40b2dc 100644 --- a/pkgs/by-name/tt/ttyper/package.nix +++ b/pkgs/by-name/tt/ttyper/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-M8LG/rZLFRUztniCmUuyj5mdzH3qUKoj02uUQ2zlq8M="; - meta = with lib; { + meta = { description = "Terminal-based typing test"; homepage = "https://github.com/max-niederman/ttyper"; changelog = "https://github.com/max-niederman/ttyper/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ max-niederman ]; mainProgram = "ttyper"; diff --git a/pkgs/by-name/tt/ttyplot/package.nix b/pkgs/by-name/tt/ttyplot/package.nix index 74c37dbd0e1c..84c73aae19a7 100644 --- a/pkgs/by-name/tt/ttyplot/package.nix +++ b/pkgs/by-name/tt/ttyplot/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple general purpose plotting utility for tty with data input from stdin"; homepage = "https://github.com/tenox7/ttyplot"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ lassulus ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ lassulus ]; mainProgram = "ttyplot"; }; } diff --git a/pkgs/by-name/tu/tubekit-unwrapped/package.nix b/pkgs/by-name/tu/tubekit-unwrapped/package.nix index 7a20bfe64543..a317c75ce586 100644 --- a/pkgs/by-name/tu/tubekit-unwrapped/package.nix +++ b/pkgs/by-name/tu/tubekit-unwrapped/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-qAmkUV5l5g8/w8ZTYFGYvd9I8NUk8rMYjutenHvTRnw="; - meta = with lib; { + meta = { description = "Kubectl alternative with quick context switching"; mainProgram = "tubectl"; homepage = "https://github.com/reconquest/tubekit"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ farcaller ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ farcaller ]; }; } diff --git a/pkgs/by-name/tu/tuc/package.nix b/pkgs/by-name/tu/tuc/package.nix index 2276b5686c2a..d55528647495 100644 --- a/pkgs/by-name/tu/tuc/package.nix +++ b/pkgs/by-name/tu/tuc/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Ry7S/Pqo3AoUKCyGFfV9RNWOguBwajJ8rOqRg+LFReY="; - meta = with lib; { + meta = { description = "When cut doesn't cut it"; mainProgram = "tuc"; homepage = "https://github.com/riquito/tuc"; - license = licenses.gpl3; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/tu/tudu/package.nix b/pkgs/by-name/tu/tudu/package.nix index 856d1222d177..18ba90f3041b 100644 --- a/pkgs/by-name/tu/tudu/package.nix +++ b/pkgs/by-name/tu/tudu/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { --replace 'echo "main()' 'echo "int main()' ''; - meta = with lib; { + meta = { description = "ncurses-based hierarchical todo list manager with vim-like keybindings"; homepage = "https://code.meskio.net/tudu/"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; mainProgram = "tudu"; }; } diff --git a/pkgs/by-name/tu/tuhi/package.nix b/pkgs/by-name/tu/tuhi/package.nix index fa0fb7097139..a81e6eac154f 100644 --- a/pkgs/by-name/tu/tuhi/package.nix +++ b/pkgs/by-name/tu/tuhi/package.nix @@ -65,12 +65,12 @@ python3Packages.buildPythonApplication rec { wrapPythonProgramsIn $out/libexec "$out $pythonPath" ''; - meta = with lib; { + meta = { description = "DBus daemon to access Wacom SmartPad devices"; mainProgram = "tuhi"; homepage = "https://github.com/tuhiproject/tuhi"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ lammermann ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lammermann ]; }; } diff --git a/pkgs/by-name/tu/tuifeed/package.nix b/pkgs/by-name/tu/tuifeed/package.nix index cd900860738f..04f1f2bde729 100644 --- a/pkgs/by-name/tu/tuifeed/package.nix +++ b/pkgs/by-name/tu/tuifeed/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Terminal feed reader with a fancy UI"; mainProgram = "tuifeed"; homepage = "https://github.com/veeso/tuifeed"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ devhell ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ devhell ]; }; } diff --git a/pkgs/by-name/tu/tuir/package.nix b/pkgs/by-name/tu/tuir/package.nix index 57cfa5874d72..f0956a77ba55 100644 --- a/pkgs/by-name/tu/tuir/package.nix +++ b/pkgs/by-name/tu/tuir/package.nix @@ -49,12 +49,12 @@ buildPythonApplication rec { pythonImportsCheck = [ "tuir" ]; - meta = with lib; { + meta = { description = "Browse Reddit from your Terminal (fork of rtv)"; mainProgram = "tuir"; homepage = "https://gitlab.com/Chocimier/tuir"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer brokenpip3 ]; diff --git a/pkgs/by-name/tu/tumiki-fighters/package.nix b/pkgs/by-name/tu/tumiki-fighters/package.nix index 403e5d44e9fb..ab654b0aac17 100644 --- a/pkgs/by-name/tu/tumiki-fighters/package.nix +++ b/pkgs/by-name/tu/tumiki-fighters/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { cp -r barrage sounds enemy field stage tumiki $out/share/games/tumiki-fighters/ ''; - meta = with lib; { + meta = { homepage = "http://www.asahi-net.or.jp/~cs8k-cyu/windows/tf_e.html"; description = "Sticky 2D shooter"; mainProgram = "tumiki-fighters"; - license = licenses.bsd2; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/tu/tuna/package.nix b/pkgs/by-name/tu/tuna/package.nix index 18b907aacb13..c229d964c802 100644 --- a/pkgs/by-name/tu/tuna/package.nix +++ b/pkgs/by-name/tu/tuna/package.nix @@ -54,11 +54,11 @@ python3.pkgs.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "tuna" ]; - meta = with lib; { + meta = { description = "Thread and IRQ affinity setting GUI and cmd line tool"; mainProgram = "tuna"; homepage = "https://git.kernel.org/pub/scm/utils/tuna/tuna.git"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tu/tunnelto/package.nix b/pkgs/by-name/tu/tunnelto/package.nix index 0ba494736559..3c797fd4d878 100644 --- a/pkgs/by-name/tu/tunnelto/package.nix +++ b/pkgs/by-name/tu/tunnelto/package.nix @@ -23,9 +23,9 @@ rustPlatform.buildRustPackage { nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]; - meta = with lib; { + meta = { description = "Expose your local web server to the internet with a public URL"; homepage = "https://tunnelto.dev"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/tu/tunwg/package.nix b/pkgs/by-name/tu/tunwg/package.nix index 637ea2321748..d14635f65632 100644 --- a/pkgs/by-name/tu/tunwg/package.nix +++ b/pkgs/by-name/tu/tunwg/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Secure private tunnel to your local servers"; homepage = "https://github.com/ntnj/tunwg"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "tunwg"; }; } diff --git a/pkgs/by-name/tu/tup/package.nix b/pkgs/by-name/tu/tup/package.nix index 348f706bf1fb..598e980ec19b 100644 --- a/pkgs/by-name/tu/tup/package.nix +++ b/pkgs/by-name/tu/tup/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Fast, file-based build system"; mainProgram = "tup"; longDescription = '' @@ -96,8 +96,8 @@ stdenv.mkDerivation rec { your project rather than on your build system. ''; homepage = "https://gittup.org/tup/"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/tu/tuptime/package.nix b/pkgs/by-name/tu/tuptime/package.nix index a4c936cda23e..ae41111a81b3 100644 --- a/pkgs/by-name/tu/tuptime/package.nix +++ b/pkgs/by-name/tu/tuptime/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { passthru.tests = nixosTests.tuptime; - meta = with lib; { + meta = { description = "Total uptime & downtime statistics utility"; homepage = "https://github.com/rfrail3/tuptime"; changelog = "https://github.com/rfrail3/tuptime/blob/master/CHANGELOG"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "tuptime"; }; diff --git a/pkgs/by-name/tu/turso-cli/package.nix b/pkgs/by-name/tu/turso-cli/package.nix index b51755c4b0fb..e81f5aa76dad 100644 --- a/pkgs/by-name/tu/turso-cli/package.nix +++ b/pkgs/by-name/tu/turso-cli/package.nix @@ -38,12 +38,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "CLI for Turso"; homepage = "https://turso.tech"; mainProgram = "turso"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zestsystem kashw2 fryuni diff --git a/pkgs/by-name/tu/turtle-build/package.nix b/pkgs/by-name/tu/turtle-build/package.nix index 577f7d1acef9..bee9d784990f 100644 --- a/pkgs/by-name/tu/turtle-build/package.nix +++ b/pkgs/by-name/tu/turtle-build/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-JZU0Xam4NPiOHdXDtJsTBjOQnaDWReSZMD33sQxeUzQ="; - meta = with lib; { + meta = { description = "Ninja-compatible build system for high-level programming languages written in Rust"; homepage = "https://github.com/raviqqe/turtle-build"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/tu/tusc-sh/package.nix b/pkgs/by-name/tu/tusc-sh/package.nix index 08fe5eb9a895..bae2c754f351 100644 --- a/pkgs/by-name/tu/tusc-sh/package.nix +++ b/pkgs/by-name/tu/tusc-sh/package.nix @@ -44,13 +44,13 @@ writeShellApplication { text = '' tusc.sh "$@" ''; - meta = with lib; { + meta = { description = "Tus 1.0.0 client protocol implementation for bash"; homepage = "https://github.com/adhocore/tusc.sh"; changelog = "https://github.com/adhocore/tusc.sh/blob/${tusc.version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "tusc"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tu/tusk/package.nix b/pkgs/by-name/tu/tusk/package.nix index 2dc7e6290f60..862dde5bb5d2 100644 --- a/pkgs/by-name/tu/tusk/package.nix +++ b/pkgs/by-name/tu/tusk/package.nix @@ -41,14 +41,14 @@ appimageTools.wrapType2 rec { ln -s "${desktopItem}/share/applications" "$out/share/" ''; - meta = with lib; { + meta = { description = "Refined Evernote desktop app"; longDescription = '' Tusk is an unofficial, featureful, open source, community-driven, free Evernote app used by people in more than 140 countries. Tusk is indicated by Evernote as an alternative client for Linux environments trusted by the open source community. ''; homepage = "https://klaussinani.github.io/tusk/"; - license = licenses.mit; - maintainers = with maintainers; [ tbenst ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tbenst ]; platforms = [ "x86_64-linux" ]; mainProgram = "tusk"; }; diff --git a/pkgs/by-name/tu/tut/package.nix b/pkgs/by-name/tu/tut/package.nix index aca4fb4051ed..fd16cb8a2e31 100644 --- a/pkgs/by-name/tu/tut/package.nix +++ b/pkgs/by-name/tu/tut/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-gPF4XrUqDDJCCY1zrUr3AXDG0uoADR8LBxRP4yolcug="; - meta = with lib; { + meta = { description = "TUI for Mastodon with vim inspired keys"; homepage = "https://github.com/RasmusLindroth/tut"; - license = licenses.mit; - maintainers = with maintainers; [ equirosa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ equirosa ]; mainProgram = "tut"; }; } diff --git a/pkgs/by-name/tu/tuxedo-rs/package.nix b/pkgs/by-name/tu/tuxedo-rs/package.nix index d784b3541422..df15a1f91d29 100644 --- a/pkgs/by-name/tu/tuxedo-rs/package.nix +++ b/pkgs/by-name/tu/tuxedo-rs/package.nix @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage (finalAttrs: { install -Dm444 tailord/com.tux.Tailor.conf -t $out/share/dbus-1/system.d ''; - meta = with lib; { + meta = { description = "Rust utilities for interacting with hardware from TUXEDO Computers"; longDescription = '' An alternative to the TUXEDO Control Center daemon. @@ -42,12 +42,12 @@ rustPlatform.buildRustPackage (finalAttrs: { - tailor: CLI ''; homepage = "https://github.com/AaronErhardt/tuxedo-rs"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ mrcjkb xaverdh ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "tailor"; }; }) diff --git a/pkgs/by-name/tu/tuxmux/package.nix b/pkgs/by-name/tu/tuxmux/package.nix index b794277c78a0..4322e2ebc662 100644 --- a/pkgs/by-name/tu/tuxmux/package.nix +++ b/pkgs/by-name/tu/tuxmux/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { installManPage $releaseDir/../man/* ''; - meta = with lib; { + meta = { description = "Tmux session manager"; homepage = "https://github.com/edeneast/tuxmux"; - license = licenses.asl20; - maintainers = with maintainers; [ edeneast ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ edeneast ]; mainProgram = "tux"; }; } diff --git a/pkgs/by-name/tu/tuxtype/package.nix b/pkgs/by-name/tu/tuxtype/package.nix index b1edbe82bcce..56fe035c15f6 100644 --- a/pkgs/by-name/tu/tuxtype/package.nix +++ b/pkgs/by-name/tu/tuxtype/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--without-sdlpango" ]; - meta = with lib; { + meta = { description = "Educational Typing Tutor Game Starring Tux, the Linux Penguin"; mainProgram = "tuxtype"; homepage = "https://github.com/tux4kids/tuxtype"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tv/tvbrowser/package.nix b/pkgs/by-name/tv/tvbrowser/package.nix index 2d3319736193..b937906a798f 100644 --- a/pkgs/by-name/tv/tvbrowser/package.nix +++ b/pkgs/by-name/tv/tvbrowser/package.nix @@ -74,19 +74,19 @@ stdenv.mkDerivation rec { passthru.tests.startwindow = callPackage ./test.nix { }; - meta = with lib; { + meta = { description = "Electronic TV Program Guide"; downloadPage = "https://www.tvbrowser.org/index.php?id=tv-browser"; homepage = "https://www.tvbrowser.org/"; changelog = "https://www.tvbrowser.org/index.php?id=news"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode fromSource ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "tvbrowser"; - maintainers = with maintainers; [ yarny ]; + maintainers = with lib.maintainers; [ yarny ]; longDescription = '' TV-Browser shows TV program data arranged like in printed TV programs after downloading it from the internet. diff --git a/pkgs/by-name/tv/tvm/package.nix b/pkgs/by-name/tv/tvm/package.nix index 29bdd9ae8902..69532e905532 100644 --- a/pkgs/by-name/tv/tvm/package.nix +++ b/pkgs/by-name/tv/tvm/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://tvm.apache.org/"; description = "End to End Deep Learning Compiler Stack for CPUs, GPUs and accelerators"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ adelbertc ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ adelbertc ]; }; } diff --git a/pkgs/by-name/tv/tvnamer/package.nix b/pkgs/by-name/tv/tvnamer/package.nix index c5e83e3ab788..5e5e3e8a940a 100644 --- a/pkgs/by-name/tv/tvnamer/package.nix +++ b/pkgs/by-name/tv/tvnamer/package.nix @@ -50,11 +50,11 @@ pypkgs.buildPythonApplication rec { pythonImportsCheck = [ "tvnamer" ]; - meta = with lib; { + meta = { description = "Automatic TV episode file renamer, uses data from thetvdb.com via tvdb_api"; homepage = "https://github.com/dbr/tvnamer"; - license = licenses.unlicense; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "tvnamer"; }; } diff --git a/pkgs/by-name/tw/twa/package.nix b/pkgs/by-name/tw/twa/package.nix index 02e9dea8eeaf..584f4802f36c 100644 --- a/pkgs/by-name/tw/twa/package.nix +++ b/pkgs/by-name/tw/twa/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tiny web auditor with strong opinions"; homepage = "https://github.com/trailofbits/twa"; - license = licenses.mit; - maintainers = with maintainers; [ avaq ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ avaq ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tw/tweak/package.nix b/pkgs/by-name/tw/tweak/package.nix index a974d8467d6b..5d82117ee99b 100644 --- a/pkgs/by-name/tw/tweak/package.nix +++ b/pkgs/by-name/tw/tweak/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { "LINK:=$(CC)" ]; - meta = with lib; { + meta = { description = "Efficient hex editor"; homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "tweak"; }; } diff --git a/pkgs/by-name/tw/tweeny/package.nix b/pkgs/by-name/tw/tweeny/package.nix index 0ab9a342374a..32348b504596 100644 --- a/pkgs/by-name/tw/tweeny/package.nix +++ b/pkgs/by-name/tw/tweeny/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Modern C++ tweening library"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "http://mobius3.github.io/tweeny"; - maintainers = [ maintainers.doronbehar ]; - platforms = with platforms; darwin ++ linux; + maintainers = [ lib.maintainers.doronbehar ]; + platforms = with lib.platforms; darwin ++ linux; }; }) diff --git a/pkgs/by-name/tw/twiggy/package.nix b/pkgs/by-name/tw/twiggy/package.nix index 5d21638c9606..8e05be8b3294 100644 --- a/pkgs/by-name/tw/twiggy/package.nix +++ b/pkgs/by-name/tw/twiggy/package.nix @@ -15,14 +15,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-FaoEqCdMb3h93zGvc+EZ8LfYgMPY3dT/fScpRgGVeAo="; - meta = with lib; { + meta = { homepage = "https://rustwasm.github.io/twiggy/"; description = "Code size profiler for Wasm"; mainProgram = "twiggy"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ lucperkins ]; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/tw/twilio-cli/package.nix b/pkgs/by-name/tw/twilio-cli/package.nix index f71c89defe3c..837484a9dd2b 100644 --- a/pkgs/by-name/tw/twilio-cli/package.nix +++ b/pkgs/by-name/tw/twilio-cli/package.nix @@ -31,11 +31,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Unleash the power of Twilio from your command prompt"; homepage = "https://github.com/twilio/twilio-cli"; changelog = "https://github.com/twilio/twilio-cli/blob/${finalAttrs.version}/CHANGES.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = nodejs-slim.meta.platforms; mainProgram = "twilio"; diff --git a/pkgs/by-name/tw/twingate/package.nix b/pkgs/by-name/tw/twingate/package.nix index 1a3ec5cbd7db..1bab8cce0607 100644 --- a/pkgs/by-name/tw/twingate/package.nix +++ b/pkgs/by-name/tw/twingate/package.nix @@ -53,10 +53,10 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) twingate; }; - meta = with lib; { + meta = { description = "Twingate Client"; homepage = "https://twingate.com"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/tw/twitch-cli/package.nix b/pkgs/by-name/tw/twitch-cli/package.nix index 6619393d7451..40f4bac9a3c1 100644 --- a/pkgs/by-name/tw/twitch-cli/package.nix +++ b/pkgs/by-name/tw/twitch-cli/package.nix @@ -55,11 +55,11 @@ buildGoModule rec { version = "twitch-cli/${version}"; }; - meta = with lib; { + meta = { description = "Official Twitch CLI to make developing on Twitch easier"; mainProgram = "twitch-cli"; homepage = "https://github.com/twitchdev/twitch-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ benediktbroich ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benediktbroich ]; }; } diff --git a/pkgs/by-name/tw/twitch-dl/package.nix b/pkgs/by-name/tw/twitch-dl/package.nix index c73f9924ff82..25545487754b 100644 --- a/pkgs/by-name/tw/twitch-dl/package.nix +++ b/pkgs/by-name/tw/twitch-dl/package.nix @@ -70,12 +70,12 @@ python3Packages.buildPythonApplication rec { installManPage twitch-dl.1 ''; - meta = with lib; { + meta = { description = "CLI tool for downloading videos from Twitch"; homepage = "https://github.com/ihabunek/twitch-dl"; changelog = "https://github.com/ihabunek/twitch-dl/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ pbsds hausken ]; diff --git a/pkgs/by-name/tw/twitch-hls-client/package.nix b/pkgs/by-name/tw/twitch-hls-client/package.nix index 417b757c0b88..69976f49fdb0 100644 --- a/pkgs/by-name/tw/twitch-hls-client/package.nix +++ b/pkgs/by-name/tw/twitch-hls-client/package.nix @@ -17,13 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-MYuDQMxUqKbgGVC/vFRcYJhjL5e8v+5zA0SYRaBlJaw="; - meta = with lib; { + meta = { description = "Minimal CLI client for watching/recording Twitch streams"; homepage = "https://github.com/2bc4/twitch-hls-client.git"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ lenivaya ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ lenivaya ]; mainProgram = "twitch-hls-client"; sourceProvenance = with lib.sourceTypes; [ fromSource ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tw/twitter-color-emoji/package.nix b/pkgs/by-name/tw/twitter-color-emoji/package.nix index 94a3972183a2..af20f1ed186b 100644 --- a/pkgs/by-name/tw/twitter-color-emoji/package.nix +++ b/pkgs/by-name/tw/twitter-color-emoji/package.nix @@ -76,7 +76,7 @@ stdenvNoCC.mkDerivation rec { install -Dm644 TwitterColorEmoji.ttf $out/share/fonts/truetype/TwitterColorEmoji.ttf ''; - meta = with lib; { + meta = { description = "Color emoji font with a flat visual style, designed and used by Twitter"; longDescription = '' A bitmap color emoji font built from Twitter's Twemoji emoji set @@ -95,12 +95,12 @@ stdenvNoCC.mkDerivation rec { ## Non-artwork is MIT # In Fedora twitter-twemoji-fonts source ## spec files are MIT: https://fedoraproject.org/wiki/Licensing:Main#License_of_Fedora_SPEC_Files - license = with licenses; [ + license = with lib.licenses; [ asl20 ofl cc-by-40 mit ]; - maintainers = with maintainers; [ emily ]; + maintainers = with lib.maintainers; [ emily ]; }; } diff --git a/pkgs/by-name/tw/twolame/package.nix b/pkgs/by-name/tw/twolame/package.nix index c897d891b4fa..3f4b9dc077c2 100644 --- a/pkgs/by-name/tw/twolame/package.nix +++ b/pkgs/by-name/tw/twolame/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { doCheck = false; # fails with "../build-scripts/test-driver: line 107: -Mstrict: command not found" - meta = with lib; { + meta = { description = "MP2 encoder"; mainProgram = "twolame"; longDescription = '' @@ -36,8 +36,8 @@ stdenv.mkDerivation { code and portions of LAME. ''; homepage = "https://www.twolame.org/"; - license = with licenses; [ lgpl2Plus ]; - platforms = with platforms; unix; + license = with lib.licenses; [ lgpl2Plus ]; + platforms = with lib.platforms; unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/tw/twspace-crawler/package.nix b/pkgs/by-name/tw/twspace-crawler/package.nix index 53d936faf81a..de6fd0f27da5 100644 --- a/pkgs/by-name/tw/twspace-crawler/package.nix +++ b/pkgs/by-name/tw/twspace-crawler/package.nix @@ -17,11 +17,11 @@ buildNpmPackage rec { npmDepsHash = "sha256-2fsYeSZYzadLmikUJbuHE4XMAp38jTZvtRo9xgaZVzg="; - meta = with lib; { + meta = { description = "Script to monitor & download Twitter Spaces 24/7"; homepage = "https://github.com/HitomaruKonpaku/twspace-crawler"; changelog = "https://github.com/HitomaruKonpaku/twspace-crawler/blob/${src.rev}/CHANGELOG.md"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; mainProgram = "twspace-crawler"; }; diff --git a/pkgs/by-name/tw/twurl/package.nix b/pkgs/by-name/tw/twurl/package.nix index dbaa518bd2cf..7a6988527d7f 100644 --- a/pkgs/by-name/tw/twurl/package.nix +++ b/pkgs/by-name/tw/twurl/package.nix @@ -11,12 +11,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "twurl"; - meta = with lib; { + meta = { description = "OAuth-enabled curl for the Twitter API"; homepage = "https://github.com/twitter/twurl"; license = lib.licenses.mit; - maintainers = with maintainers; [ brecht ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ brecht ]; + platforms = lib.platforms.unix; mainProgram = "twurl"; }; } diff --git a/pkgs/by-name/tx/txt2man/package.nix b/pkgs/by-name/tx/txt2man/package.nix index 9e80d8226491..e603b0730d75 100644 --- a/pkgs/by-name/tx/txt2man/package.nix +++ b/pkgs/by-name/tx/txt2man/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { sh -c 'unset PATH; printf hello | ./txt2man' ''; - meta = with lib; { + meta = { description = "Convert flat ASCII text to man page format"; homepage = "http://mvertes.free.fr/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/by-name/tx/txtw/package.nix b/pkgs/by-name/tx/txtw/package.nix index 0268c7b708fb..72444e4cd8ec 100644 --- a/pkgs/by-name/tx/txtw/package.nix +++ b/pkgs/by-name/tx/txtw/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { prePatch = ''sed -i "s@/usr/local@$out@" Makefile''; - meta = with lib; { + meta = { description = "Compute text widths"; homepage = "https://github.com/baskerville/txtw"; - maintainers = with maintainers; [ lihop ]; - license = licenses.unlicense; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lihop ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; mainProgram = "txtw"; }; } diff --git a/pkgs/by-name/ty/tydra/package.nix b/pkgs/by-name/ty/tydra/package.nix index 9abd872e1c9e..2a3c0a4018ba 100644 --- a/pkgs/by-name/ty/tydra/package.nix +++ b/pkgs/by-name/ty/tydra/package.nix @@ -30,10 +30,10 @@ rustPlatform.buildRustPackage rec { installShellCompletion tydra.{bash,fish} _tydra ''; - meta = with lib; { + meta = { description = "Shortcut menu-based task runner, inspired by Emacs Hydra"; homepage = "https://github.com/Mange/tydra"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "tydra"; }; } diff --git a/pkgs/by-name/ty/tym/package.nix b/pkgs/by-name/ty/tym/package.nix index a63dff1c6e73..c58905155d98 100644 --- a/pkgs/by-name/ty/tym/package.nix +++ b/pkgs/by-name/ty/tym/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation rec { pcre2 ]; - meta = with lib; { + meta = { description = "Lua-configurable terminal emulator"; homepage = "https://github.com/endaaman/tym"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wesleyjrz kashw2 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "tym"; }; } diff --git a/pkgs/by-name/ty/typer/package.nix b/pkgs/by-name/ty/typer/package.nix index 5ae829b443a0..65fd1a6bec3d 100644 --- a/pkgs/by-name/ty/typer/package.nix +++ b/pkgs/by-name/ty/typer/package.nix @@ -22,10 +22,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Typing test in your terminal"; homepage = "https://github.com/maaslalani/typer"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "typer"; }; diff --git a/pkgs/by-name/ty/typesense/package.nix b/pkgs/by-name/ty/typesense/package.nix index 0c8d8895e3b7..67853b965009 100644 --- a/pkgs/by-name/ty/typesense/package.nix +++ b/pkgs/by-name/ty/typesense/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { updateScript = ./update.sh; }; - meta = with lib; { + meta = { homepage = "https://typesense.org"; description = "Fast, typo-tolerant search engine for building delightful search experiences"; mainProgram = "typesense-server"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # There has been an attempt at building this from source, which were deemed # unfeasible at the time of writing this (July 2023) for the following reasons. # - Pre 0.25 would have been possible, but typesense has switched to bazel for 0.25+, @@ -59,8 +59,8 @@ stdenv.mkDerivation { # try to download stuff via cmake again, which is not possible in the sandbox. # This is where I stopped trying for now. # XXX: retry once typesense has officially released their bazel based build. - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with maintainers; [ oddlama ]; + maintainers = with lib.maintainers; [ oddlama ]; }; } diff --git a/pkgs/by-name/ty/typespeed/package.nix b/pkgs/by-name/ty/typespeed/package.nix index 385a80165bab..cb9eb5f16e35 100644 --- a/pkgs/by-name/ty/typespeed/package.nix +++ b/pkgs/by-name/ty/typespeed/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--datadir=\${out}/share/" ]; makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = with lib; { + meta = { description = "Curses based typing game"; mainProgram = "typespeed"; homepage = "https://typespeed.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.auntie ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.auntie ]; }; } diff --git a/pkgs/by-name/ty/typical/package.nix b/pkgs/by-name/ty/typical/package.nix index c9fba03465ce..abe9fb66ef00 100644 --- a/pkgs/by-name/ty/typical/package.nix +++ b/pkgs/by-name/ty/typical/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/typical shell-completion zsh) ''; - meta = with lib; { + meta = { description = "Data interchange with algebraic data types"; mainProgram = "typical"; homepage = "https://github.com/stepchowfun/typical"; changelog = "https://github.com/stepchowfun/typical/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ty/typos-lsp/package.nix b/pkgs/by-name/ty/typos-lsp/package.nix index d4c04b90833e..dcd1cf531e4e 100644 --- a/pkgs/by-name/ty/typos-lsp/package.nix +++ b/pkgs/by-name/ty/typos-lsp/package.nix @@ -24,12 +24,12 @@ rustPlatform.buildRustPackage rec { rm .cargo/config.toml ''; - meta = with lib; { + meta = { description = "Source code spell checker"; homepage = "https://github.com/tekumara/typos-lsp"; changelog = "https://github.com/tekumara/typos-lsp/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ tarantoj ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tarantoj ]; mainProgram = "typos-lsp"; }; } diff --git a/pkgs/by-name/ty/typst-live/package.nix b/pkgs/by-name/ty/typst-live/package.nix index 1fce6af1bb64..fd7b6400c7c8 100644 --- a/pkgs/by-name/ty/typst-live/package.nix +++ b/pkgs/by-name/ty/typst-live/package.nix @@ -26,10 +26,10 @@ rustPlatform.buildRustPackage rec { --suffix PATH : ${lib.makeBinPath [ typst ]} ''; - meta = with lib; { + meta = { description = "Hot reloading for your typst files"; homepage = "https://github.com/ItsEthra/typst-live"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "typst-live"; }; diff --git a/pkgs/by-name/ty/tyson/package.nix b/pkgs/by-name/ty/tyson/package.nix index 14a2bf2ed790..cbeb06d0ecd2 100644 --- a/pkgs/by-name/ty/tyson/package.nix +++ b/pkgs/by-name/ty/tyson/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { --zsh <($out/bin/tyson completion zsh) ''; - meta = with lib; { + meta = { description = "TypeScript as a configuration language"; mainProgram = "tyson"; homepage = "https://github.com/jetify-com/tyson"; changelog = "https://github.com/jetify-com/tyson/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/tz/tz/package.nix b/pkgs/by-name/tz/tz/package.nix index 7c8caa485dd0..db1bcbb22048 100644 --- a/pkgs/by-name/tz/tz/package.nix +++ b/pkgs/by-name/tz/tz/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-Mdp2bcqTawbeqdu06QfB4atLaPpPDoE/eisTytxCnj4="; - meta = with lib; { + meta = { description = "Time zone helper"; homepage = "https://github.com/oz/tz"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "tz"; }; } diff --git a/pkgs/by-name/tz/tzdata/package.nix b/pkgs/by-name/tz/tzdata/package.nix index d88381cd0ab7..773419da35cb 100644 --- a/pkgs/by-name/tz/tzdata/package.nix +++ b/pkgs/by-name/tz/tzdata/package.nix @@ -94,16 +94,16 @@ stdenv.mkDerivation (finalAttrs: { # minor releases. passthru.tests = postgresql; - meta = with lib; { + meta = { homepage = "http://www.iana.org/time-zones"; description = "Database of current and historical time zones"; changelog = "https://github.com/eggert/tz/blob/${finalAttrs.version}/NEWS"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 # tzcode publicDomain # tzdata ]; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ajs124 fpletz ]; diff --git a/pkgs/by-name/u0/u001-font/package.nix b/pkgs/by-name/u0/u001-font/package.nix index 5680cf6aff7a..0c85c432d4f8 100644 --- a/pkgs/by-name/u0/u001-font/package.nix +++ b/pkgs/by-name/u0/u001-font/package.nix @@ -37,11 +37,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Univers-like typeface that comes with GhostPDL made by URW++"; homepage = "https://fontlibrary.org/en/font/u001"; - license = licenses.aladdin; - platforms = platforms.all; - maintainers = with maintainers; [ toastal ]; + license = lib.licenses.aladdin; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ toastal ]; }; } diff --git a/pkgs/by-name/u2/u2ps/package.nix b/pkgs/by-name/u2/u2ps/package.nix index 6c3089dbf74f..d54d224b1eab 100644 --- a/pkgs/by-name/u2/u2ps/package.nix +++ b/pkgs/by-name/u2/u2ps/package.nix @@ -18,16 +18,16 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ ghostscript_headless ]; - meta = with lib; { + meta = { description = "Unicode text to postscript converter"; homepage = "https://github.com/arsv/u2ps"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' U2ps is a text to postscript converter similar to a2ps, with emphasis on Unicode support. ''; mainProgram = "u2ps"; - maintainers = [ maintainers.athas ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.athas ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/u9/u9fs/package.nix b/pkgs/by-name/u9/u9fs/package.nix index 9e1f843e6e86..dc9f8ee159d8 100644 --- a/pkgs/by-name/u9/u9fs/package.nix +++ b/pkgs/by-name/u9/u9fs/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { install -Dm755 u9fs -t "$out/bin" ''; - meta = with lib; { + meta = { description = "Serve 9P from Unix"; homepage = "http://p9f.org/magic/man2html?man=u9fs§=4"; - license = licenses.dtoa; - platforms = platforms.unix; + license = lib.licenses.dtoa; + platforms = lib.platforms.unix; mainProgram = "u9fs"; }; } diff --git a/pkgs/by-name/ua/ua/package.nix b/pkgs/by-name/ua/ua/package.nix index eccaf2b27747..e2a3340cc2ab 100644 --- a/pkgs/by-name/ua/ua/package.nix +++ b/pkgs/by-name/ua/ua/package.nix @@ -31,10 +31,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sloonz/ua"; - license = licenses.isc; + license = lib.licenses.isc; description = "Universal Aggregator"; - maintainers = with maintainers; [ ttuegel ]; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/by-name/ua/uacme/package.nix b/pkgs/by-name/ua/uacme/package.nix index 1769fc8ba77e..7770212279f8 100644 --- a/pkgs/by-name/ua/uacme/package.nix +++ b/pkgs/by-name/ua/uacme/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "ACMEv2 client written in plain C with minimal dependencies"; homepage = "https://github.com/ndilieto/uacme"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ malte-v ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ malte-v ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/ua/uair/package.nix b/pkgs/by-name/ua/uair/package.nix index a7e32ac74b78..2b68d2405452 100644 --- a/pkgs/by-name/ua/uair/package.nix +++ b/pkgs/by-name/ua/uair/package.nix @@ -32,10 +32,10 @@ rustPlatform.buildRustPackage rec { installManPage docs/*.[1-9] ''; - meta = with lib; { + meta = { description = "Extensible pomodoro timer"; homepage = "https://github.com/metent/uair"; - license = licenses.mit; - maintainers = with maintainers; [ thled ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thled ]; }; } diff --git a/pkgs/by-name/ua/uarmsolver/package.nix b/pkgs/by-name/ua/uarmsolver/package.nix index 389c751d7f1f..16bcea28e35a 100644 --- a/pkgs/by-name/ua/uarmsolver/package.nix +++ b/pkgs/by-name/ua/uarmsolver/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { install -D -t $out/bin uARMSolver ''; - meta = with lib; { + meta = { description = "Universal Association Rule Mining Solver"; mainProgram = "uARMSolver"; homepage = "https://github.com/firefly-cpp/uARMSolver"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/by-name/ua/uasm/package.nix b/pkgs/by-name/ua/uasm/package.nix index 920603457e5a..0cf93bfc5dd1 100644 --- a/pkgs/by-name/ua/uasm/package.nix +++ b/pkgs/by-name/ua/uasm/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { version = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://www.terraspace.co.uk/uasm.html"; description = "Free MASM-compatible assembler based on JWasm"; mainProgram = "uasm"; - platforms = platforms.unix; - maintainers = with maintainers; [ thiagokokada ]; - license = licenses.watcom; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thiagokokada ]; + license = lib.licenses.watcom; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/ub/ubertooth/package.nix b/pkgs/by-name/ub/ubertooth/package.nix index 294d772515b4..b0288ee6f994 100644 --- a/pkgs/by-name/ub/ubertooth/package.nix +++ b/pkgs/by-name/ub/ubertooth/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Open source wireless development platform suitable for Bluetooth experimentation"; homepage = "https://github.com/greatscottgadgets/ubertooth"; - license = licenses.gpl2; - maintainers = with maintainers; [ oxzi ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ oxzi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ub/ubidump/package.nix b/pkgs/by-name/ub/ubidump/package.nix index 72ef56fa47f8..6bd8d3cfe44e 100644 --- a/pkgs/by-name/ub/ubidump/package.nix +++ b/pkgs/by-name/ub/ubidump/package.nix @@ -24,11 +24,11 @@ python3.pkgs.buildPythonApplication { crcmod ]; - meta = with lib; { + meta = { description = "View or extract the contents of UBIFS images"; homepage = "https://github.com/nlitsme/ubidump"; - license = licenses.mit; - maintainers = with maintainers; [ sgo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sgo ]; mainProgram = "ubidump"; }; } diff --git a/pkgs/by-name/ub/ubuntu-classic/package.nix b/pkgs/by-name/ub/ubuntu-classic/package.nix index edb10821d771..7752660ac3b7 100644 --- a/pkgs/by-name/ub/ubuntu-classic/package.nix +++ b/pkgs/by-name/ub/ubuntu-classic/package.nix @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "import/"; }; - meta = with lib; { + meta = { description = "Ubuntu Classic font"; longDescription = "The Ubuntu typeface has been specially created to complement the Ubuntu tone of voice. It has a @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { the Ubuntu brand that convey a precise, reliable and free attitude."; homepage = "https://design.ubuntu.com/font"; changelog = "https://git.launchpad.net/ubuntu/+source/fonts-ubuntu-classic/tree/FONTLOG.txt?h=${finalAttrs.src.rev}"; - license = licenses.ufl; - platforms = platforms.all; - maintainers = with maintainers; [ bobby285271 ]; + license = lib.licenses.ufl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bobby285271 ]; }; }) diff --git a/pkgs/by-name/ub/ubuntu-sans-mono/package.nix b/pkgs/by-name/ub/ubuntu-sans-mono/package.nix index c74bc57395a5..59ddf9255242 100644 --- a/pkgs/by-name/ub/ubuntu-sans-mono/package.nix +++ b/pkgs/by-name/ub/ubuntu-sans-mono/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Ubuntu Font Family (Mono)"; longDescription = "The Ubuntu Font Family are a set of matching libre/open fonts. The fonts were originally developed in 2010–2011, @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { and expanded again in 2022–2023 when variable fonts were added."; homepage = "https://design.ubuntu.com/font"; changelog = "https://github.com/canonical/Ubuntu-Sans-Mono-fonts/blob/${finalAttrs.src.rev}/FONTLOG.txt"; - license = licenses.ufl; - platforms = platforms.all; - maintainers = with maintainers; [ jopejoe1 ]; + license = lib.licenses.ufl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/ub/ubuntu-sans/package.nix b/pkgs/by-name/ub/ubuntu-sans/package.nix index a9e00422dff0..2c43cf7b34e4 100644 --- a/pkgs/by-name/ub/ubuntu-sans/package.nix +++ b/pkgs/by-name/ub/ubuntu-sans/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Ubuntu Font Family"; longDescription = "The Ubuntu Font Family are a set of matching libre/open fonts. The fonts were originally developed in 2010–2011, @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { and expanded again in 2022–2023 when variable fonts were added."; homepage = "https://design.ubuntu.com/font"; changelog = "https://github.com/canonical/Ubuntu-Sans-fonts/blob/${finalAttrs.src.rev}/FONTLOG.txt"; - license = licenses.ufl; - platforms = platforms.all; - maintainers = with maintainers; [ jopejoe1 ]; + license = lib.licenses.ufl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/ub/ubus/package.nix b/pkgs/by-name/ub/ubus/package.nix index ae59682cff6f..387d362ee93c 100644 --- a/pkgs/by-name/ub/ubus/package.nix +++ b/pkgs/by-name/ub/ubus/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { ] ); - meta = with lib; { + meta = { description = "OpenWrt system message/RPC bus"; homepage = "https://git.openwrt.org/?p=project/ubus.git;a=summary"; - license = licenses.lgpl21Only; - platforms = platforms.all; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/uc/ucarp/package.nix b/pkgs/by-name/uc/ucarp/package.nix index 4423e0051314..63992e0080d0 100644 --- a/pkgs/by-name/uc/ucarp/package.nix +++ b/pkgs/by-name/uc/ucarp/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) ucarp; }; - meta = with lib; { + meta = { description = "Userspace implementation of CARP"; longDescription = '' UCARP allows a couple of hosts to share common virtual IP addresses in @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { Warning: This package has not received any upstream updates for a long time and can be considered as unmaintained. ''; - license = with licenses; [ + license = with lib.licenses; [ isc bsdOriginal bsd2 gpl2Plus ]; - maintainers = with maintainers; [ oxzi ]; + maintainers = with lib.maintainers; [ oxzi ]; mainProgram = "ucarp"; }; } diff --git a/pkgs/by-name/uc/ucblogo/package.nix b/pkgs/by-name/uc/ucblogo/package.nix index 0bf3a7de28da..d4cb1520e63c 100644 --- a/pkgs/by-name/uc/ucblogo/package.nix +++ b/pkgs/by-name/uc/ucblogo/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation (finalAttrs: { wxGTK32 ]; - meta = with lib; { + meta = { description = "Berkeley Logo interpreter"; homepage = "https://github.com/jrincayc/ucblogo-code"; changelog = "https://github.com/jrincayc/ucblogo-code/blob/${finalAttrs.src.rev}/changes.txt"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "ucblogo-code"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/uc/ucc/package.nix b/pkgs/by-name/uc/ucc/package.nix index fc43ddc832d4..f43f435015f3 100644 --- a/pkgs/by-name/uc/ucc/package.nix +++ b/pkgs/by-name/uc/ucc/package.nix @@ -114,12 +114,12 @@ effectiveStdenv.mkDerivation (finalAttrs: { moveToOutput bin/ucc_info "$dev" ''; - meta = with lib; { + meta = { description = "Collective communication operations API"; homepage = "https://openucx.github.io/ucc/"; mainProgram = "ucc_info"; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/uc/uchess/package.nix b/pkgs/by-name/uc/uchess/package.nix index 232262a17a20..aa1ca85ea13a 100644 --- a/pkgs/by-name/uc/uchess/package.nix +++ b/pkgs/by-name/uc/uchess/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { wrapProgram $out/bin/uchess --suffix PATH : ${stockfish}/bin ''; - meta = with lib; { + meta = { description = "Play chess against UCI engines in your terminal"; mainProgram = "uchess"; homepage = "https://tmountain.github.io/uchess/"; - maintainers = with maintainers; [ tmountain ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ tmountain ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/uc/uci/package.nix b/pkgs/by-name/uc/uci/package.nix index 1e7eaf22700b..520351f5f9ab 100644 --- a/pkgs/by-name/uc/uci/package.nix +++ b/pkgs/by-name/uc/uci/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { description = "OpenWrt Unified Configuration Interface"; mainProgram = "uci"; homepage = "https://git.openwrt.org/?p=project/uci.git;a=summary"; - license = licenses.lgpl21Only; - platforms = platforms.all; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/uc/uclient/package.nix b/pkgs/by-name/uc/uclient/package.nix index af69a84ab72e..15679dbd68f1 100644 --- a/pkgs/by-name/uc/uclient/package.nix +++ b/pkgs/by-name/uc/uclient/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation { -i CMakeLists.txt ''; - meta = with lib; { + meta = { description = "Tiny OpenWrt fork of libnl"; homepage = "https://git.openwrt.org/?p=project/uclient.git;a=summary"; - license = licenses.isc; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ mkg20001 ]; mainProgram = "uclient-fetch"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/uc/ucode/package.nix b/pkgs/by-name/uc/ucode/package.nix index 30fb32cbcb2f..db6a3daa9262 100644 --- a/pkgs/by-name/uc/ucode/package.nix +++ b/pkgs/by-name/uc/ucode/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "JavaScript-like language with optional templating"; homepage = "https://github.com/jow-/ucode"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/uc/ucs-fonts/package.nix b/pkgs/by-name/uc/ucs-fonts/package.nix index 6058f6e92eeb..f1908ed4c39c 100644 --- a/pkgs/by-name/uc/ucs-fonts/package.nix +++ b/pkgs/by-name/uc/ucs-fonts/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation { "bdf" ]; - meta = with lib; { + meta = { homepage = "https://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html"; description = "Unicode bitmap fonts"; - license = licenses.publicDomain; - maintainers = [ maintainers.raskin ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/uc/ucspi-tcp/package.nix b/pkgs/by-name/uc/ucspi-tcp/package.nix index 971f85f8eff0..d12828e15847 100644 --- a/pkgs/by-name/uc/ucspi-tcp/package.nix +++ b/pkgs/by-name/uc/ucspi-tcp/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { cp $debian/ucspi-tcp-man/*.1 "$out/share/man/man1" ''; - meta = with lib; { + meta = { description = "Command-line tools for building TCP client-server applications"; longDescription = '' tcpserver waits for incoming connections and, for each connection, runs a @@ -87,8 +87,8 @@ stdenv.mkDerivation rec { different networks. ''; homepage = "http://cr.yp.to/ucspi-tcp.html"; - license = licenses.publicDomain; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/uc/ucto/package.nix b/pkgs/by-name/uc/ucto/package.nix index 297c054c1e03..73bd0ffaa319 100644 --- a/pkgs/by-name/uc/ucto/package.nix +++ b/pkgs/by-name/uc/ucto/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Rule-based tokenizer for natural language"; mainProgram = "ucto"; homepage = "https://languagemachines.github.io/ucto/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; longDescription = '' Ucto tokenizes text files: it separates words from punctuation, and splits sentences. It offers several other basic preprocessing steps such as changing case that you can all use to make your text suited for further processing such as indexing, part-of-speech tagging, or machine translation. diff --git a/pkgs/by-name/uc/uctodata/package.nix b/pkgs/by-name/uc/uctodata/package.nix index 2f3347f794a6..326c55d0e6d5 100644 --- a/pkgs/by-name/uc/uctodata/package.nix +++ b/pkgs/by-name/uc/uctodata/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Rule-based tokenizer for natural language"; homepage = "https://languagemachines.github.io/ucto/"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ roberth ]; longDescription = '' Ucto tokenizes text files: it separates words from punctuation, and splits sentences. It offers several other basic preprocessing steps such as changing case that you can all use to make your text suited for further processing such as indexing, part-of-speech tagging, or machine translation. diff --git a/pkgs/by-name/ud/uddup/package.nix b/pkgs/by-name/ud/uddup/package.nix index 1975e0d73274..50be2c4eea35 100644 --- a/pkgs/by-name/ud/uddup/package.nix +++ b/pkgs/by-name/ud/uddup/package.nix @@ -32,11 +32,11 @@ python3.pkgs.buildPythonApplication rec { "uddup" ]; - meta = with lib; { + meta = { description = "Tool for de-duplication URLs"; mainProgram = "uddup"; homepage = "https://github.com/rotemreiss/uddup"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ud/udebug/package.nix b/pkgs/by-name/ud/udebug/package.nix index ab8f9c99bb8a..1c65aea8fd76 100644 --- a/pkgs/by-name/ud/udebug/package.nix +++ b/pkgs/by-name/ud/udebug/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { pkg-config ]; - meta = with lib; { + meta = { description = "OpenWrt debugging helper library/service"; mainProgram = "udebugd"; homepage = "https://git.openwrt.org/?p=project/udebug.git;a=summary"; - license = licenses.free; - platforms = platforms.unix; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.free; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/ud/udev-gothic-nf/package.nix b/pkgs/by-name/ud/udev-gothic-nf/package.nix index 0d454cb339a6..0e38bbd0c145 100644 --- a/pkgs/by-name/ud/udev-gothic-nf/package.nix +++ b/pkgs/by-name/ud/udev-gothic-nf/package.nix @@ -19,11 +19,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Programming font that combines BIZ UD Gothic, JetBrains Mono and nerd-fonts"; homepage = "https://github.com/yuru7/udev-gothic"; - license = licenses.ofl; - maintainers = with maintainers; [ haruki7049 ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ haruki7049 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ud/udev-gothic/package.nix b/pkgs/by-name/ud/udev-gothic/package.nix index e325ce5e39db..2dac51afe262 100644 --- a/pkgs/by-name/ud/udev-gothic/package.nix +++ b/pkgs/by-name/ud/udev-gothic/package.nix @@ -19,11 +19,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Programming font that combines BIZ UD Gothic and JetBrains Mono"; homepage = "https://github.com/yuru7/udev-gothic"; - license = licenses.ofl; - maintainers = with maintainers; [ haruki7049 ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ haruki7049 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ud/udevil/package.nix b/pkgs/by-name/ud/udevil/package.nix index 2f7e13849f6e..7b4bc1706682 100644 --- a/pkgs/by-name/ud/udevil/package.nix +++ b/pkgs/by-name/ud/udevil/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { ./device-info-sys-stat.patch ]; - meta = with lib; { + meta = { homepage = "https://ignorantguru.github.io/udevil/"; description = "Mount without password"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ud/udict/package.nix b/pkgs/by-name/ud/udict/package.nix index bbf7be3fb89b..c12ac02927c9 100644 --- a/pkgs/by-name/ud/udict/package.nix +++ b/pkgs/by-name/ud/udict/package.nix @@ -31,10 +31,10 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Urban Dictionary CLI - written in Rust"; homepage = "https://github.com/lsmb/udict"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "udict"; }; diff --git a/pkgs/by-name/ud/udig/package.nix b/pkgs/by-name/ud/udig/package.nix index 4837f9fa4eae..11986834ee11 100644 --- a/pkgs/by-name/ud/udig/package.nix +++ b/pkgs/by-name/ud/udig/package.nix @@ -25,15 +25,15 @@ let src = srcs.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}"); - meta = with lib; { + meta = { description = "User-friendly Desktop Internet GIS"; homepage = "http://udig.refractions.net/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = with licenses; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with lib.licenses; [ epl10 bsd3 ]; - maintainers = with maintainers; [ sikmir ]; + maintainers = with lib.maintainers; [ sikmir ]; platforms = builtins.attrNames srcs; mainProgram = "udig"; }; diff --git a/pkgs/by-name/ud/udis86/package.nix b/pkgs/by-name/ud/udis86/package.nix index 5c3dbf862887..46f422c241fb 100644 --- a/pkgs/by-name/ud/udis86/package.nix +++ b/pkgs/by-name/ud/udis86/package.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation { "lib" ]; - meta = with lib; { + meta = { homepage = "https://udis86.sourceforge.net"; - license = licenses.bsd2; - maintainers = with maintainers; [ timor ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ timor ]; mainProgram = "udcli"; description = '' Easy-to-use, minimalistic x86 disassembler library (libudis86) ''; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ud/udiskie/package.nix b/pkgs/by-name/ud/udiskie/package.nix index eeb66d548513..bf4f93244bd0 100644 --- a/pkgs/by-name/ud/udiskie/package.nix +++ b/pkgs/by-name/ud/udiskie/package.nix @@ -88,7 +88,7 @@ python3Packages.buildPythonApplication rec { package = udiskie; }; - meta = with lib; { + meta = { homepage = "https://github.com/coldfix/udiskie"; changelog = "https://github.com/coldfix/udiskie/blob/${src.rev}/CHANGES.rst"; description = "Removable disk automounter for udisks"; @@ -106,7 +106,7 @@ python3Packages.buildPythonApplication rec { - loop devices (mounting iso archives) - password caching (requires python keyutils 0.3) ''; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/ud/udns/package.nix b/pkgs/by-name/ud/udns/package.nix index abc1d21d27f4..be9458bbeb12 100644 --- a/pkgs/by-name/ud/udns/package.nix +++ b/pkgs/by-name/ud/udns/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { # keep man3 outputDevdoc = "out"; - meta = with lib; { + meta = { homepage = "http://www.corpit.ru/mjt/udns.html"; description = "Async-capable DNS stub resolver library"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.womfoo ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.womfoo ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ud/udpreplay/package.nix b/pkgs/by-name/ud/udpreplay/package.nix index 766b180082f8..6c8a07582db9 100644 --- a/pkgs/by-name/ud/udpreplay/package.nix +++ b/pkgs/by-name/ud/udpreplay/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Replay UDP packets from a pcap file"; longDescription = '' udpreplay is a lightweight alternative to tcpreplay for replaying UDP unicast and multicast streams from a pcap file. ''; homepage = "https://github.com/rigtorp/udpreplay"; - license = licenses.mit; - maintainers = [ maintainers.considerate ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.considerate ]; + platforms = lib.platforms.linux; mainProgram = "udpreplay"; }; } diff --git a/pkgs/by-name/ud/udunits/package.nix b/pkgs/by-name/ud/udunits/package.nix index ae4c542ae0f9..1356976271fc 100644 --- a/pkgs/by-name/ud/udunits/package.nix +++ b/pkgs/by-name/ud/udunits/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { expat ]; - meta = with lib; { + meta = { homepage = "https://www.unidata.ucar.edu/software/udunits/"; description = "C-based package for the programatic handling of units of physical quantities"; longDescription = '' @@ -43,9 +43,9 @@ stdenv.mkDerivation { also contains a command-line utility for investigating units and converting values. ''; - license = licenses.asl20; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.all; mainProgram = "udunits2"; }; } diff --git a/pkgs/by-name/ue/uefi-run/package.nix b/pkgs/by-name/ue/uefi-run/package.nix index 565f8bbc26c7..60d331ecdd99 100644 --- a/pkgs/by-name/ue/uefi-run/package.nix +++ b/pkgs/by-name/ue/uefi-run/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-c9aooU60zN58/m8q4G/f8VOjq7oXUTqxqSUMp47YOcA="; - meta = with lib; { + meta = { description = "Directly run UEFI applications in qemu"; homepage = "https://github.com/Richard-W/uefi-run"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "uefi-run"; }; diff --git a/pkgs/by-name/ue/uefisettings/package.nix b/pkgs/by-name/ue/uefisettings/package.nix index 873239cfbb22..e5f2af9d32a5 100644 --- a/pkgs/by-name/ue/uefisettings/package.nix +++ b/pkgs/by-name/ue/uefisettings/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage { "--skip=ilorest::chif::IloRestChif" ]; - meta = with lib; { + meta = { description = "CLI tool to read/get/extract and write/change/modify BIOS/UEFI settings"; homepage = "https://github.com/linuxboot/uefisettings"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; mainProgram = "uefisettings"; - maintainers = with maintainers; [ surfaceflinger ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ surfaceflinger ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ue/uemacs/package.nix b/pkgs/by-name/ue/uemacs/package.nix index b665aece99d6..2dc8d2641b65 100644 --- a/pkgs/by-name/ue/uemacs/package.nix +++ b/pkgs/by-name/ue/uemacs/package.nix @@ -36,16 +36,16 @@ gccStdenv.mkDerivation { make install ''; - meta = with lib; { + meta = { description = "Linus Torvalds's random version of microemacs with his personal modifications"; homepage = "https://git.kernel.org/pub/scm/editors/uemacs/uemacs.git/about/"; - platforms = platforms.all; - maintainers = with maintainers; [ networkexception ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ networkexception ]; mainProgram = "em"; # MicroEMACS 3.9 can be copied and distributed freely for any # non-commercial purposes. MicroEMACS 3.9 can only be incorporated # into commercial software with the permission of the current author # [Daniel M. Lawrence]. - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/ue/ueviewer/package.nix b/pkgs/by-name/ue/ueviewer/package.nix index 629a7cd64b62..4c2e0c29a6bf 100644 --- a/pkgs/by-name/ue/ueviewer/package.nix +++ b/pkgs/by-name/ue/ueviewer/package.nix @@ -91,13 +91,13 @@ gccStdenv.mkDerivation (finalAttrs: { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { description = "Viewer and exporter for Unreal Engine 1-4 assets (aka umodel)"; homepage = "https://www.gildor.org/en/projects/umodel"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "umodel"; - maintainers = with maintainers; [ OPNA2608 ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; # Hardcoded usage of SSE2 - platforms = platforms.x86; + platforms = lib.platforms.x86; }; }) diff --git a/pkgs/by-name/uf/ufiformat/package.nix b/pkgs/by-name/uf/ufiformat/package.nix index c830b3ac9dfb..8af9d3a4b612 100644 --- a/pkgs/by-name/uf/ufiformat/package.nix +++ b/pkgs/by-name/uf/ufiformat/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { sha256 = "heFETZj9migz2s9kvmw0ZQ1ieNpU4V4Lwfp91ek2cS4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/tedigh/ufiformat"; description = "Low-level disk formatting utility for USB floppy drives"; - maintainers = [ maintainers.amarshall ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.amarshall ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; mainProgram = "ufiformat"; }; } diff --git a/pkgs/by-name/uf/uftpd/package.nix b/pkgs/by-name/uf/uftpd/package.nix index a4b6c318aae0..71ef70583463 100644 --- a/pkgs/by-name/uf/uftpd/package.nix +++ b/pkgs/by-name/uf/uftpd/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { libite ]; - meta = with lib; { + meta = { description = "FTP/TFTP server for Linux that just works"; homepage = "https://troglobit.com/projects/uftpd/"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ vifino ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vifino ]; }; } diff --git a/pkgs/by-name/ug/uget-integrator/package.nix b/pkgs/by-name/ug/uget-integrator/package.nix index 507e4c45c886..2418ac79b3ae 100644 --- a/pkgs/by-name/ug/uget-integrator/package.nix +++ b/pkgs/by-name/ug/uget-integrator/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Native messaging host to integrate uGet Download Manager with web browsers"; mainProgram = "uget-integrator"; homepage = "https://github.com/ugetdm/uget-integrator"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ug/uget/package.nix b/pkgs/by-name/ug/uget/package.nix index addbf6e1278e..d78dfbfe13f9 100644 --- a/pkgs/by-name/ug/uget/package.nix +++ b/pkgs/by-name/ug/uget/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { preFixup = lib.optionalString aria2Support ''gappsWrapperArgs+=(--suffix PATH : "${aria2}/bin")''; - meta = with lib; { + meta = { description = "Download manager using GTK and libcurl"; longDescription = '' uGet is a VERY Powerful download manager application with a large @@ -68,9 +68,9 @@ stdenv.mkDerivation rec { and lightweight power is uGet! ''; homepage = "http://www.ugetdm.com"; - license = licenses.lgpl21; - platforms = platforms.unix; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "uget-gtk"; }; } diff --git a/pkgs/by-name/ug/ugrep-indexer/package.nix b/pkgs/by-name/ug/ugrep-indexer/package.nix index 2ee64420e663..e6fb84c0bcf5 100644 --- a/pkgs/by-name/ug/ugrep-indexer/package.nix +++ b/pkgs/by-name/ug/ugrep-indexer/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { xz ]; - meta = with lib; { + meta = { description = "Utility that recursively indexes files to speed up recursive grepping"; homepage = "https://github.com/Genivia/ugrep-indexer"; changelog = "https://github.com/Genivia/ugrep-indexer/releases/tag/v${finalAttrs.version}"; - maintainers = with maintainers; [ mikaelfangel ]; - license = licenses.bsd3; - platforms = platforms.all; + maintainers = with lib.maintainers; [ mikaelfangel ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ug/ugrep/package.nix b/pkgs/by-name/ug/ugrep/package.nix index 14880464bb59..d61df9afbe2a 100644 --- a/pkgs/by-name/ug/ugrep/package.nix +++ b/pkgs/by-name/ug/ugrep/package.nix @@ -111,12 +111,12 @@ stdenv.mkDerivation (finalAttrs: { description = "Ultra fast grep with interactive query UI"; homepage = "https://github.com/Genivia/ugrep"; changelog = "https://github.com/Genivia/ugrep/releases/tag/v${finalAttrs.version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ numkem mikaelfangel ]; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; mainProgram = "ug"; } # Needed to ensure that the grep replacements take precedence over diff --git a/pkgs/by-name/ug/ugs/package.nix b/pkgs/by-name/ug/ugs/package.nix index 840a831d362b..24cbc7baf0ab 100644 --- a/pkgs/by-name/ug/ugs/package.nix +++ b/pkgs/by-name/ug/ugs/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { desktopItems = [ desktopItem ]; - meta = with lib; { + meta = { description = "Cross-platform G-Code sender for GRBL, Smoothieware, TinyG and G2core"; homepage = "https://github.com/winder/Universal-G-Code-Sender"; - maintainers = with maintainers; [ matthewcroughan ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3; - platforms = platforms.all; + maintainers = with lib.maintainers; [ matthewcroughan ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; mainProgram = "ugs"; }; } diff --git a/pkgs/by-name/ug/ugtrain/package.nix b/pkgs/by-name/ug/ugtrain/package.nix index c355dfbb30f1..8e9b55be005c 100644 --- a/pkgs/by-name/ug/ugtrain/package.nix +++ b/pkgs/by-name/ug/ugtrain/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { scanmem ]; - meta = with lib; { + meta = { homepage = "https://github.com/ugtrain/ugtrain"; description = "Universal Elite Game Trainer for CLI (Linux game trainer research project)"; - maintainers = with maintainers; [ mtrsk ]; - platforms = platforms.linux; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ mtrsk ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/by-name/uh/uhd/package.nix b/pkgs/by-name/uh/uhd/package.nix index 2150d13c1787..91fe583eaa04 100644 --- a/pkgs/by-name/uh/uhd/package.nix +++ b/pkgs/by-name/uh/uhd/package.nix @@ -222,7 +222,7 @@ stdenv.mkDerivation (finalAttrs: { python3 ]; - meta = with lib; { + meta = { description = "USRP Hardware Driver (for Software Defined Radio)"; longDescription = '' The USRP Hardware Driver (UHD) software is the hardware driver for all @@ -232,9 +232,9 @@ stdenv.mkDerivation (finalAttrs: { company, National Instruments. ''; homepage = "https://uhd.ettus.com/"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor fpletz tomberek diff --git a/pkgs/by-name/uh/uhexen2/package.nix b/pkgs/by-name/uh/uhexen2/package.nix index d8bdb19ea2d8..94532049a226 100644 --- a/pkgs/by-name/uh/uhexen2/package.nix +++ b/pkgs/by-name/uh/uhexen2/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Cross-platform port of Hexen II game"; longDescription = '' @@ -79,8 +79,8 @@ stdenv.mkDerivation { support for many operating systems and architectures, and documentation among many others. ''; homepage = "https://uhexen2.sourceforge.net/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ xdhampus ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ xdhampus ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/uh/uhk-agent/package.nix b/pkgs/by-name/uh/uhk-agent/package.nix index 9299511a3be3..194a9a382cf9 100644 --- a/pkgs/by-name/uh/uhk-agent/package.nix +++ b/pkgs/by-name/uh/uhk-agent/package.nix @@ -69,11 +69,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Configuration application of the Ultimate Hacking Keyboard"; homepage = "https://github.com/UltimateHackingKeyboard/agent"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ nickcao ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/uh/uhttpmock/package.nix b/pkgs/by-name/uh/uhttpmock/package.nix index 92d4fa62a5ac..d52050bb6cdc 100644 --- a/pkgs/by-name/uh/uhttpmock/package.nix +++ b/pkgs/by-name/uh/uhttpmock/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { libsoup_2_4 ]; - meta = with lib; { + meta = { description = "Project for mocking web service APIs which use HTTP or HTTPS"; homepage = "https://gitlab.freedesktop.org/pwithnall/uhttpmock/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/uh/uhttpmock_1_0/package.nix b/pkgs/by-name/uh/uhttpmock_1_0/package.nix index 48ccc86d5690..8e75049d775c 100644 --- a/pkgs/by-name/uh/uhttpmock_1_0/package.nix +++ b/pkgs/by-name/uh/uhttpmock_1_0/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation (finalAttrs: { libsoup_3 ]; - meta = with lib; { + meta = { description = "Project for mocking web service APIs which use HTTP or HTTPS"; homepage = "https://gitlab.freedesktop.org/pwithnall/uhttpmock/"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/uh/uhub/package.nix b/pkgs/by-name/uh/uhub/package.nix index 9ad62b6accde..35669fcfc11d 100644 --- a/pkgs/by-name/uh/uhub/package.nix +++ b/pkgs/by-name/uh/uhub/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation { "-DSSL_SUPPORT=${if tlsSupport then "ON" else "OFF"}" ]; - meta = with lib; { + meta = { description = "High performance peer-to-peer hub for the ADC network"; homepage = "https://www.uhub.org/"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/uh/uhubctl/package.nix b/pkgs/by-name/uh/uhubctl/package.nix index bd4ce7a1be24..e33866652cf8 100644 --- a/pkgs/by-name/uh/uhubctl/package.nix +++ b/pkgs/by-name/uh/uhubctl/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { installFlags = [ "prefix=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mvp/uhubctl"; description = "Utility to control USB power per-port on smart USB hubs"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ prusnak carlossless ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "uhubctl"; }; } diff --git a/pkgs/by-name/ui/uid_wrapper/package.nix b/pkgs/by-name/ui/uid_wrapper/package.nix index 1bfa6b1f8e34..13465db19542 100644 --- a/pkgs/by-name/ui/uid_wrapper/package.nix +++ b/pkgs/by-name/ui/uid_wrapper/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Wrapper for the user, group and hosts NSS API"; homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ui/uivonim/package.nix b/pkgs/by-name/ui/uivonim/package.nix index 32fdfac9741d..dc1a5197e89d 100644 --- a/pkgs/by-name/ui/uivonim/package.nix +++ b/pkgs/by-name/ui/uivonim/package.nix @@ -34,12 +34,12 @@ buildNpmPackage rec { --add-flags $out/lib/node_modules/uivonim/build/main/main.js ''; - meta = with lib; { + meta = { homepage = "https://github.com/smolck/uivonim"; description = "Cross-platform GUI for neovim based on electron"; maintainers = [ ]; - platforms = platforms.unix; - license = licenses.agpl3Only; + platforms = lib.platforms.unix; + license = lib.licenses.agpl3Only; mainProgram = "uivonim"; }; } diff --git a/pkgs/by-name/uk/ukmm/package.nix b/pkgs/by-name/uk/ukmm/package.nix index 75b7ad3f58fd..82c41d1b884f 100644 --- a/pkgs/by-name/uk/ukmm/package.nix +++ b/pkgs/by-name/uk/ukmm/package.nix @@ -91,13 +91,13 @@ rustPlatform.buildRustPackage (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "New mod manager for The Legend of Zelda: Breath of the Wild"; homepage = "https://github.com/NiceneNerd/ukmm"; changelog = "https://github.com/NiceneNerd/ukmm/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kira-bruneau ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kira-bruneau ]; + platforms = lib.platforms.linux; broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; mainProgram = "ukmm"; }; diff --git a/pkgs/by-name/ul/ulauncher/package.nix b/pkgs/by-name/ul/ulauncher/package.nix index 55af94f2b4b4..921dbea50b16 100644 --- a/pkgs/by-name/ul/ulauncher/package.nix +++ b/pkgs/by-name/ul/ulauncher/package.nix @@ -142,13 +142,13 @@ python3Packages.buildPythonApplication rec { }) ]; - meta = with lib; { + meta = { description = "Fast application launcher for Linux, written in Python, using GTK"; homepage = "https://ulauncher.io/"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "ulauncher"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aaronjanse ]; }; diff --git a/pkgs/by-name/ul/ultimate-oldschool-pc-font-pack/package.nix b/pkgs/by-name/ul/ultimate-oldschool-pc-font-pack/package.nix index 559fd4adfbb1..451b0e5d255c 100644 --- a/pkgs/by-name/ul/ultimate-oldschool-pc-font-pack/package.nix +++ b/pkgs/by-name/ul/ultimate-oldschool-pc-font-pack/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Ultimate Oldschool PC Font Pack (TTF Fonts)"; homepage = "https://int10h.org/oldschool-pc-fonts/"; changelog = "https://int10h.org/oldschool-pc-fonts/readme/#history"; - license = licenses.cc-by-sa-40; - maintainers = [ maintainers.endgame ]; + license = lib.licenses.cc-by-sa-40; + maintainers = [ lib.maintainers.endgame ]; }; } diff --git a/pkgs/by-name/ul/ultrablue-server/package.nix b/pkgs/by-name/ul/ultrablue-server/package.nix index 522601052787..cb345bc50e86 100644 --- a/pkgs/by-name/ul/ultrablue-server/package.nix +++ b/pkgs/by-name/ul/ultrablue-server/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { vendorHash = "sha256-249LWguTHIF0HNIo8CsE/HWpAtBw4P46VPvlTARLTpw="; doCheck = false; - meta = with lib; { + meta = { description = "User-friendly Lightweight TPM Remote Attestation over Bluetooth"; mainProgram = "ultrablue-server"; homepage = "https://github.com/ANSSI-FR/ultrablue"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/by-name/ul/ultralist/package.nix b/pkgs/by-name/ul/ultralist/package.nix index c95ca2ec1db6..eeb5867b1765 100644 --- a/pkgs/by-name/ul/ultralist/package.nix +++ b/pkgs/by-name/ul/ultralist/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Simple GTD-style todo list for the command line"; homepage = "https://ultralist.io"; - license = licenses.mit; - maintainers = with maintainers; [ uvnikita ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; mainProgram = "ultralist"; }; } diff --git a/pkgs/by-name/ul/ultrastardx/package.nix b/pkgs/by-name/ul/ultrastardx/package.nix index 6ccf3f767494..e2a02d4e371f 100644 --- a/pkgs/by-name/ul/ultrastardx/package.nix +++ b/pkgs/by-name/ul/ultrastardx/package.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { # dlopened libgcc requires the rpath not to be shrinked dontPatchELF = true; - meta = with lib; { + meta = { homepage = "https://usdx.eu/"; description = "Free and open source karaoke game"; mainProgram = "ultrastardx"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ diogotcorreia Profpatsch ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/um/umami/package.nix b/pkgs/by-name/um/umami/package.nix index 4c26d891c322..9df179d015a1 100644 --- a/pkgs/by-name/um/umami/package.nix +++ b/pkgs/by-name/um/umami/package.nix @@ -182,7 +182,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = with lib; { + meta = { changelog = "https://github.com/umami-software/umami/releases/tag/v${finalAttrs.version}"; description = "Simple, easy to use, self-hosted web analytics solution"; homepage = "https://umami.is/"; @@ -192,6 +192,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { ]; platforms = lib.platforms.linux; mainProgram = "umami-server"; - maintainers = with maintainers; [ diogotcorreia ]; + maintainers = with lib.maintainers; [ diogotcorreia ]; }; }) diff --git a/pkgs/by-name/um/umlet/package.nix b/pkgs/by-name/um/umlet/package.nix index 9ef125fcfdd7..3a8ccc4097da 100644 --- a/pkgs/by-name/um/umlet/package.nix +++ b/pkgs/by-name/um/umlet/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { chmod a+x "$out/bin/umlet" ''; - meta = with lib; { + meta = { description = "Free, open-source UML tool with a simple user interface"; longDescription = '' UMLet is a free, open-source UML tool with a simple user interface: @@ -53,10 +53,10 @@ stdenv.mkDerivation { Linux. ''; homepage = "https://www.umlet.com"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl3; - maintainers = with maintainers; [ oxzi ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ oxzi ]; + platforms = lib.platforms.all; mainProgram = "umlet"; }; } diff --git a/pkgs/by-name/um/umoci/package.nix b/pkgs/by-name/um/umoci/package.nix index c6fe63b520ab..1295d915ed8c 100644 --- a/pkgs/by-name/um/umoci/package.nix +++ b/pkgs/by-name/um/umoci/package.nix @@ -37,10 +37,10 @@ buildGoModule rec { installManPage doc/man/*.[1-9] ''; - meta = with lib; { + meta = { description = "Modifies Open Container images"; homepage = "https://umo.ci"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "umoci"; }; } diff --git a/pkgs/by-name/um/umockdev/package.nix b/pkgs/by-name/um/umockdev/package.nix index 56e38d2cc91e..96484e269461 100644 --- a/pkgs/by-name/um/umockdev/package.nix +++ b/pkgs/by-name/um/umockdev/package.nix @@ -114,12 +114,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/martinpitt/umockdev"; changelog = "https://github.com/martinpitt/umockdev/releases/tag/${finalAttrs.version}"; description = "Mock hardware devices for creating unit tests"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ flokli ]; - platforms = with platforms; linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ flokli ]; + platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/by-name/um/umoria/package.nix b/pkgs/by-name/um/umoria/package.nix index 9e56a85f1d42..dd00c66074ef 100644 --- a/pkgs/by-name/um/umoria/package.nix +++ b/pkgs/by-name/um/umoria/package.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://umoria.org/"; description = "Dungeons of Moria - the original roguelike"; mainProgram = "umoria"; @@ -105,12 +105,12 @@ stdenv.mkDerivation rec { The game was originally developed using VMS Pascal before being ported to the C language by James E. Wilson in 1988, and released a Umoria. ''; - platforms = platforms.unix; + platforms = lib.platforms.unix; badPlatforms = [ "aarch64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aciceri kenran ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/um/umr/package.nix b/pkgs/by-name/um/umr/package.nix index 5f612bb93438..fcd742b19e85 100644 --- a/pkgs/by-name/um/umr/package.nix +++ b/pkgs/by-name/um/umr/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Userspace debugging and diagnostic tool for AMD GPUs"; homepage = "https://gitlab.freedesktop.org/tomstdenis/umr"; - license = licenses.mit; - maintainers = with maintainers; [ Flakebi ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Flakebi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/un/unbook/package.nix b/pkgs/by-name/un/unbook/package.nix index ae235ef10c12..aad116d281e1 100644 --- a/pkgs/by-name/un/unbook/package.nix +++ b/pkgs/by-name/un/unbook/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Ebook to self-contained-HTML converter"; homepage = "https://unbook.ludios.org"; - license = licenses.cc0; - maintainers = with maintainers; [ jmbaur ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ jmbaur ]; mainProgram = "unbook"; }; } diff --git a/pkgs/by-name/un/unciv/package.nix b/pkgs/by-name/un/unciv/package.nix index e29a96c41624..93e954eaf113 100644 --- a/pkgs/by-name/un/unciv/package.nix +++ b/pkgs/by-name/un/unciv/package.nix @@ -69,13 +69,13 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Open-source Android/Desktop remake of Civ V"; mainProgram = "unciv"; homepage = "https://github.com/yairm210/Unciv"; maintainers = [ ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mpl20; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/unclutter/package.nix b/pkgs/by-name/un/unclutter/package.nix index 850f9362955a..19c7dfa4ea91 100644 --- a/pkgs/by-name/un/unclutter/package.nix +++ b/pkgs/by-name/un/unclutter/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { mkdir -pv "$out"/{bin,share/man/man1} ''; - meta = with lib; { + meta = { description = "Hides mouse pointer while not in use"; longDescription = '' Unclutter hides your X mouse cursor when you do not need it, to prevent @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { unclutter -idle 1 & ''; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; license = lib.licenses.publicDomain; mainProgram = "unclutter"; }; diff --git a/pkgs/by-name/un/unconvert/package.nix b/pkgs/by-name/un/unconvert/package.nix index e9575aa4a48f..5b9069265250 100644 --- a/pkgs/by-name/un/unconvert/package.nix +++ b/pkgs/by-name/un/unconvert/package.nix @@ -25,11 +25,11 @@ buildGoModule { passthru.updateScript = nix-update-script { extraArgs = lib.singleton "--version=branch"; }; - meta = with lib; { + meta = { description = "Remove unnecessary type conversions from Go source"; mainProgram = "unconvert"; homepage = "https://github.com/mdempsky/unconvert"; - license = licenses.bsd3; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/un/uncrustify/package.nix b/pkgs/by-name/un/uncrustify/package.nix index c77b74d7bb74..2e72f11cc654 100644 --- a/pkgs/by-name/un/uncrustify/package.nix +++ b/pkgs/by-name/un/uncrustify/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA"; mainProgram = "uncrustify"; homepage = "https://uncrustify.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/un/undbx/package.nix b/pkgs/by-name/un/undbx/package.nix index 6eef53d3b98b..82541764edb8 100644 --- a/pkgs/by-name/un/undbx/package.nix +++ b/pkgs/by-name/un/undbx/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "-Werror" "" \ --replace-fail "bin_SCRIPTS" "#bin_SCRIPTS" ''; - meta = with lib; { + meta = { description = "Extract e-mail messages from Outlook Express DBX files"; homepage = "https://github.com/ZungBang/undbx"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; mainProgram = "undbx"; }; }) diff --git a/pkgs/by-name/un/undefined-medium/package.nix b/pkgs/by-name/un/undefined-medium/package.nix index 452a0d612fce..872a258c8323 100644 --- a/pkgs/by-name/un/undefined-medium/package.nix +++ b/pkgs/by-name/un/undefined-medium/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://undefined-medium.com/"; description = "Pixel grid-based monospace typeface"; longDescription = '' @@ -29,7 +29,7 @@ stdenvNoCC.mkDerivation { monospace typeface suitable for programming, writing, and whatever else you can think of … it’s pretty undefined. ''; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/undervolt/package.nix b/pkgs/by-name/un/undervolt/package.nix index b00041ba1124..0bc7acc6b511 100644 --- a/pkgs/by-name/un/undervolt/package.nix +++ b/pkgs/by-name/un/undervolt/package.nix @@ -20,7 +20,7 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "undervolt" ]; - meta = with lib; { + meta = { homepage = "https://github.com/georgewhewell/undervolt/"; description = "Program for undervolting Intel CPUs on Linux"; mainProgram = "undervolt"; @@ -31,7 +31,7 @@ python3Packages.buildPythonApplication rec { voltage offset to one of 5 voltage planes, and override your systems temperature target (CPU will throttle when this temperature is reached). ''; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/un/undistract-me/package.nix b/pkgs/by-name/un/undistract-me/package.nix index fc94e656e29c..74a3065740c4 100644 --- a/pkgs/by-name/un/undistract-me/package.nix +++ b/pkgs/by-name/un/undistract-me/package.nix @@ -73,10 +73,10 @@ stdenvNoCC.mkDerivation { cp LICENSE "$out/share/licenses/undistract-me" ''; - meta = with lib; { + meta = { description = "Notifies you when long-running terminal commands complete"; homepage = "https://github.com/jml/undistract-me"; - license = licenses.mit; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kira-bruneau ]; }; } diff --git a/pkgs/by-name/un/undocker/package.nix b/pkgs/by-name/un/undocker/package.nix index 47d58a552366..133a969d21c8 100644 --- a/pkgs/by-name/un/undocker/package.nix +++ b/pkgs/by-name/un/undocker/package.nix @@ -27,11 +27,11 @@ buildGoModule { vendorHash = null; - meta = with lib; { + meta = { homepage = "https://git.jakstys.lt/motiejus/undocker"; description = "CLI tool to convert a Docker image to a flattened rootfs tarball"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jordanisaacs motiejus ]; diff --git a/pkgs/by-name/un/unflac/package.nix b/pkgs/by-name/un/unflac/package.nix index 067dd072f448..1b631300113d 100644 --- a/pkgs/by-name/un/unflac/package.nix +++ b/pkgs/by-name/un/unflac/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { wrapProgram $out/bin/unflac --prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" ''; - meta = with lib; { + meta = { description = "Command line tool for fast frame accurate audio image + cue sheet splitting"; homepage = "https://sr.ht/~ft/unflac/"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ felipeqq2 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ felipeqq2 ]; mainProgram = "unflac"; }; } diff --git a/pkgs/by-name/un/unfonts-core/package.nix b/pkgs/by-name/un/unfonts-core/package.nix index 3ff4171f0bb7..92630d2c4960 100644 --- a/pkgs/by-name/un/unfonts-core/package.nix +++ b/pkgs/by-name/un/unfonts-core/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://kldp.net/unfonts/"; description = "Korean Hangul typeface collection"; longDescription = '' @@ -29,7 +29,7 @@ stdenvNoCC.mkDerivation rec { They were converted to TrueType with the FontForge (PfaEdit) by Won-kyu Park in 2003. ''; - license = licenses.gpl2; - platforms = platforms.all; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/unfurl/package.nix b/pkgs/by-name/un/unfurl/package.nix index 2f4e31f2bd57..f6e161a07198 100644 --- a/pkgs/by-name/un/unfurl/package.nix +++ b/pkgs/by-name/un/unfurl/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { echo com > /tmp/.tlds ''; - meta = with lib; { + meta = { description = "Pull out bits of URLs provided on stdin"; mainProgram = "unfurl"; homepage = "https://github.com/tomnomnom/unfurl"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/un/uni-algo/package.nix b/pkgs/by-name/un/uni-algo/package.nix index fcb105180de9..28fd1be95fe5 100644 --- a/pkgs/by-name/un/uni-algo/package.nix +++ b/pkgs/by-name/un/uni-algo/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Unicode Algorithms Implementation for C/C++"; homepage = "https://github.com/uni-algo/uni-algo"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ typedrat ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ typedrat ]; }; }) diff --git a/pkgs/by-name/un/uni-sync/package.nix b/pkgs/by-name/un/uni-sync/package.nix index b9a6c724c785..4d967b9617e9 100644 --- a/pkgs/by-name/un/uni-sync/package.nix +++ b/pkgs/by-name/un/uni-sync/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-ot2pbCddvw3njsz36WbFFJ9AAtmojUnRxlUbym1RcgU="; - meta = with lib; { + meta = { description = "Synchronization tool for Lian Li Uni Controllers"; homepage = "https://github.com/EightB1ts/uni-sync"; - license = licenses.mit; - maintainers = with maintainers; [ yunfachi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yunfachi ]; mainProgram = "uni-sync"; }; }) diff --git a/pkgs/by-name/un/uni-vga/package.nix b/pkgs/by-name/un/uni-vga/package.nix index ee7a3d7a55e6..021ed73ccc3a 100644 --- a/pkgs/by-name/un/uni-vga/package.nix +++ b/pkgs/by-name/un/uni-vga/package.nix @@ -65,10 +65,10 @@ stdenv.mkDerivation { "bdf" ]; - meta = with lib; { + meta = { description = "Unicode VGA font"; - maintainers = [ maintainers.ftrvxmtrx ]; + maintainers = [ lib.maintainers.ftrvxmtrx ]; homepage = "http://www.inp.nsk.su/~bolkhov/files/fonts/univga/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/un/unibilium/package.nix b/pkgs/by-name/un/unibilium/package.nix index 2932306e1a85..a77bb2cdd01a 100644 --- a/pkgs/by-name/un/unibilium/package.nix +++ b/pkgs/by-name/un/unibilium/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ ncurses ]; - meta = with lib; { + meta = { homepage = "https://github.com/neovim/unibilium"; description = "Very basic terminfo library"; - license = licenses.lgpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/un/unicode-character-database/package.nix b/pkgs/by-name/un/unicode-character-database/package.nix index a2237aa121dc..a4e2fe9eef8b 100644 --- a/pkgs/by-name/un/unicode-character-database/package.nix +++ b/pkgs/by-name/un/unicode-character-database/package.nix @@ -30,10 +30,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode Character Database"; homepage = "https://www.unicode.org/"; - license = licenses.unicode-dfs-2016; - platforms = platforms.all; + license = lib.licenses.unicode-dfs-2016; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/unicorn-angr/package.nix b/pkgs/by-name/un/unicorn-angr/package.nix index 1153f0aad872..197d2a588ad4 100644 --- a/pkgs/by-name/un/unicorn-angr/package.nix +++ b/pkgs/by-name/un/unicorn-angr/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 3.1)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Lightweight multi-platform CPU emulator library"; homepage = "https://www.unicorn-engine.org"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/un/unicorn/package.nix b/pkgs/by-name/un/unicorn/package.nix index 99f74db91dc6..a9bcfb52604b 100644 --- a/pkgs/by-name/un/unicorn/package.nix +++ b/pkgs/by-name/un/unicorn/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Lightweight multi-platform CPU emulator library"; homepage = "https://www.unicorn-engine.org"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; diff --git a/pkgs/by-name/un/unifi/package.nix b/pkgs/by-name/un/unifi/package.nix index fb1e960a252e..c3f8ae6ae097 100644 --- a/pkgs/by-name/un/unifi/package.nix +++ b/pkgs/by-name/un/unifi/package.nix @@ -38,16 +38,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.tests = { inherit (nixosTests) unifi; }; - meta = with lib; { + meta = { homepage = "https://www.ui.com"; description = "Controller for Ubiquiti UniFi access points"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ globin patryk27 ]; diff --git a/pkgs/by-name/un/unifiedpush-common-proxies/package.nix b/pkgs/by-name/un/unifiedpush-common-proxies/package.nix index 14952cad6566..531f18548324 100644 --- a/pkgs/by-name/un/unifiedpush-common-proxies/package.nix +++ b/pkgs/by-name/un/unifiedpush-common-proxies/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-wVZR/h0AtwZ1eo7EoRKNzaS2Wp0X01e2u3Ugmsnj644="; - meta = with lib; { + meta = { description = "Set of rewrite proxies and gateways for UnifiedPush"; homepage = "https://github.com/UnifiedPush/common-proxies"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "up_rewrite"; }; diff --git a/pkgs/by-name/un/unifont/package.nix b/pkgs/by-name/un/unifont/package.nix index 5e4f8b6f4070..c8d96f349836 100644 --- a/pkgs/by-name/un/unifont/package.nix +++ b/pkgs/by-name/un/unifont/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode font for Base Multilingual Plane"; homepage = "https://unifoundry.com/unifont/"; @@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { gpl2Plus fontException ]; - maintainers = [ maintainers.rycee ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.rycee ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/un/unifont_upper/package.nix b/pkgs/by-name/un/unifont_upper/package.nix index ef2185843d8e..6a9c2fd49a3e 100644 --- a/pkgs/by-name/un/unifont_upper/package.nix +++ b/pkgs/by-name/un/unifont_upper/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane"; homepage = "https://unifoundry.com/unifont/"; @@ -32,7 +32,7 @@ stdenvNoCC.mkDerivation rec { gpl2Plus fontException ]; - maintainers = [ maintainers.mathnerd314 ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.mathnerd314 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/unihan-database/package.nix b/pkgs/by-name/un/unihan-database/package.nix index 9e0a0937d10f..2b31006e6e31 100644 --- a/pkgs/by-name/un/unihan-database/package.nix +++ b/pkgs/by-name/un/unihan-database/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unicode Han Database"; homepage = "https://www.unicode.org/"; - license = licenses.unicode-dfs-2016; - platforms = platforms.all; + license = lib.licenses.unicode-dfs-2016; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/unimap/package.nix b/pkgs/by-name/un/unimap/package.nix index 112e1ac04d7c..edb7c0f68743 100644 --- a/pkgs/by-name/un/unimap/package.nix +++ b/pkgs/by-name/un/unimap/package.nix @@ -46,11 +46,11 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ nmap ]} ''; - meta = with lib; { + meta = { description = "Scan only once by IP address and reduce scan times with Nmap for large amounts of data"; homepage = "https://github.com/Edu4rdSHL/unimap"; changelog = "https://github.com/Edu4rdSHL/unimap/releases/tag/${src.rev}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "unimap"; }; diff --git a/pkgs/by-name/un/unimatrix/package.nix b/pkgs/by-name/un/unimatrix/package.nix index 73879c31fd7b..4059dbab5cdb 100644 --- a/pkgs/by-name/un/unimatrix/package.nix +++ b/pkgs/by-name/un/unimatrix/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication { dontConfigure = true; dontBuild = true; - meta = with lib; { + meta = { description = ''Python script to simulate the display from "The Matrix" in terminal''; homepage = "https://github.com/will8211/unimatrix"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ anomalocaris ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ anomalocaris ]; mainProgram = "unimatrix"; }; } diff --git a/pkgs/by-name/un/unison-ucm/package.nix b/pkgs/by-name/un/unison-ucm/package.nix index d36e7f469878..632b63287077 100644 --- a/pkgs/by-name/un/unison-ucm/package.nix +++ b/pkgs/by-name/un/unison-ucm/package.nix @@ -69,15 +69,15 @@ stdenv.mkDerivation (finalAttrs: { --set UCM_WEB_UI "$out/ui" ''; - meta = with lib; { + meta = { description = "Modern, statically-typed purely functional language"; homepage = "https://unisonweb.org/"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd3 ]; mainProgram = "ucm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ceedubs sellout virusdave @@ -88,6 +88,6 @@ stdenv.mkDerivation (finalAttrs: { "aarch64-darwin" "aarch64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/un/unit/package.nix b/pkgs/by-name/un/unit/package.nix index 7262caef8a9a..16a0d2af1904 100644 --- a/pkgs/by-name/un/unit/package.nix +++ b/pkgs/by-name/un/unit/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation rec { unit-php = nixosTests.unit-php; }; - meta = with lib; { + meta = { description = "Dynamic web and application server, designed to run applications in multiple languages"; mainProgram = "unitd"; homepage = "https://unit.nginx.org/"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/by-name/un/universal-ctags/package.nix b/pkgs/by-name/un/universal-ctags/package.nix index 484317717d18..66b2839921a8 100644 --- a/pkgs/by-name/un/universal-ctags/package.nix +++ b/pkgs/by-name/un/universal-ctags/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation (finalAttrs: { "units" ]; - meta = with lib; { + meta = { homepage = "https://docs.ctags.io/en/latest/"; description = "Maintained ctags implementation"; longDescription = '' @@ -85,9 +85,9 @@ stdenv.mkDerivation (finalAttrs: { source files for programming languages. This index makes it easy for text editors and other tools to locate the indexed items. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "ctags"; priority = 1; # over the emacs implementation }; diff --git a/pkgs/by-name/un/unix-privesc-check/package.nix b/pkgs/by-name/un/unix-privesc-check/package.nix index a20adcd41ce0..e13ddd931252 100644 --- a/pkgs/by-name/un/unix-privesc-check/package.nix +++ b/pkgs/by-name/un/unix-privesc-check/package.nix @@ -77,12 +77,12 @@ resholve.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Find misconfigurations that could allow local unprivilged users to escalate privileges to other users or to access local apps"; mainProgram = "unix-privesc-check"; homepage = "https://pentestmonkey.net/tools/audit/unix-privesc-check"; - maintainers = with maintainers; [ d3vil0p3r ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ d3vil0p3r ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/un/unixODBC/package.nix b/pkgs/by-name/un/unixODBC/package.nix index 62787cb2228b..15393de858d5 100644 --- a/pkgs/by-name/un/unixODBC/package.nix +++ b/pkgs/by-name/un/unixODBC/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation rec { "--sysconfdir=/etc" ]; - meta = with lib; { + meta = { description = "ODBC driver manager for Unix"; homepage = "https://www.unixodbc.org/"; - license = licenses.lgpl2; - platforms = platforms.unix; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/un/unixbench/package.nix b/pkgs/by-name/un/unixbench/package.nix index 851aab3eb7bc..e625fc800cea 100644 --- a/pkgs/by-name/un/unixbench/package.nix +++ b/pkgs/by-name/un/unixbench/package.nix @@ -105,12 +105,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath runtimeDependencies} ''; - meta = with lib; { + meta = { description = "Basic indicator of the performance of a Unix-like system"; homepage = "https://github.com/kdlucas/byte-unixbench"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "ubench"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/un/unnaturalscrollwheels/package.nix b/pkgs/by-name/un/unnaturalscrollwheels/package.nix index 99645317ce23..5516714dc498 100644 --- a/pkgs/by-name/un/unnaturalscrollwheels/package.nix +++ b/pkgs/by-name/un/unnaturalscrollwheels/package.nix @@ -26,12 +26,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Invert scroll direction for physical scroll wheels"; homepage = "https://github.com/ther0n/UnnaturalScrollWheels"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/un/unoconv/package.nix b/pkgs/by-name/un/unoconv/package.nix index e77a62c7f741..fe979220cee4 100644 --- a/pkgs/by-name/un/unoconv/package.nix +++ b/pkgs/by-name/un/unoconv/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { make install-links prefix="$out" ''; - meta = with lib; { + meta = { description = "Convert between any document format supported by LibreOffice/OpenOffice"; homepage = "http://dag.wieers.com/home-made/unoconv/"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "unoconv"; }; } diff --git a/pkgs/by-name/un/unpackerr/package.nix b/pkgs/by-name/un/unpackerr/package.nix index 7211058f3146..05497a929d52 100644 --- a/pkgs/by-name/un/unpackerr/package.nix +++ b/pkgs/by-name/un/unpackerr/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X golift.io/version.Version=${version}" ]; - meta = with lib; { + meta = { description = "Extracts downloads for Radarr, Sonarr, Lidarr - Deletes extracted files after import"; homepage = "https://github.com/davidnewhall/unpackerr"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "unpackerr"; }; } diff --git a/pkgs/by-name/un/unparam/package.nix b/pkgs/by-name/un/unparam/package.nix index f3c39840e674..67ef180c6456 100644 --- a/pkgs/by-name/un/unparam/package.nix +++ b/pkgs/by-name/un/unparam/package.nix @@ -19,11 +19,11 @@ buildGoModule { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Find unused parameters in Go"; homepage = "https://github.com/mvdan/unparam"; - license = licenses.bsd3; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "unparam"; }; } diff --git a/pkgs/by-name/un/unpfs/package.nix b/pkgs/by-name/un/unpfs/package.nix index 55d1d8f7925b..4cf96dbdd0de 100644 --- a/pkgs/by-name/un/unpfs/package.nix +++ b/pkgs/by-name/un/unpfs/package.nix @@ -26,14 +26,14 @@ rustPlatform.buildRustPackage rec { install -D -m 0444 ../../LICEN* -t "$out/share/doc/${pname}" ''; - meta = with lib; { + meta = { description = "9P2000.L server implementation in Rust"; homepage = "https://github.com/pfpacket/rust-9p"; - license = licenses.bsd3; - maintainers = with maintainers; [ raskin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ raskin ]; # macOS build fails: https://github.com/pfpacket/rust-9p/issues/7 - platforms = with platforms; linux; + platforms = with lib.platforms; linux; mainProgram = "unpfs"; }; } diff --git a/pkgs/by-name/un/unrar/package.nix b/pkgs/by-name/un/unrar/package.nix index bde37a3e14c0..0e73007fe75e 100644 --- a/pkgs/by-name/un/unrar/package.nix +++ b/pkgs/by-name/un/unrar/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Utility for RAR archives"; homepage = "https://www.rarlab.com/"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; mainProgram = "unrar"; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/un/unrtf/package.nix b/pkgs/by-name/un/unrtf/package.nix index 0359448a9c60..ec986657c241 100644 --- a/pkgs/by-name/un/unrtf/package.nix +++ b/pkgs/by-name/un/unrtf/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { description = "Converter from Rich Text Format to other formats"; mainProgram = "unrtf"; longDescription = '' @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { formats, including HTML, LaTeX, and RTF itself. ''; homepage = "https://www.gnu.org/software/unrtf/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ joachifm ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ joachifm ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/un/unscd/package.nix b/pkgs/by-name/un/unscd/package.nix index 422f9e9d3199..d0dc26fe72dd 100644 --- a/pkgs/by-name/un/unscd/package.nix +++ b/pkgs/by-name/un/unscd/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://busybox.net/~vda/unscd/"; description = "Less buggy replacement for the glibc name service cache daemon"; mainProgram = "nscd"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/un/unshield/package.nix b/pkgs/by-name/un/unshield/package.nix index cbcfe71b52d0..d60891224542 100644 --- a/pkgs/by-name/un/unshield/package.nix +++ b/pkgs/by-name/un/unshield/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "Tool and library to extract CAB files from InstallShield installers"; homepage = "https://github.com/twogood/unshield"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "unshield"; }; } diff --git a/pkgs/by-name/un/unsilence/package.nix b/pkgs/by-name/un/unsilence/package.nix index 4b7a8077bc70..94b9364d1515 100644 --- a/pkgs/by-name/un/unsilence/package.nix +++ b/pkgs/by-name/un/unsilence/package.nix @@ -33,11 +33,11 @@ python3Packages.buildPythonPackage rec { pythonRelaxDeps = [ "rich" ]; - meta = with lib; { + meta = { homepage = "https://github.com/lagmoellertim/unsilence"; description = "Console Interface and Library to remove silent parts of a media file"; mainProgram = "unsilence"; - license = licenses.mit; - maintainers = with maintainers; [ esau79p ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ esau79p ]; }; } diff --git a/pkgs/by-name/un/untex/package.nix b/pkgs/by-name/un/untex/package.nix index 282c5e13eb35..c30e4b779a5a 100644 --- a/pkgs/by-name/un/untex/package.nix +++ b/pkgs/by-name/un/untex/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Utility which removes LaTeX commands from input"; mainProgram = "untex"; homepage = "https://www.ctan.org/pkg/untex"; - license = licenses.gpl1Only; - maintainers = with maintainers; [ joachifm ]; - platforms = platforms.all; + license = lib.licenses.gpl1Only; + maintainers = with lib.maintainers; [ joachifm ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/untrunc-anthwlock/package.nix b/pkgs/by-name/un/untrunc-anthwlock/package.nix index 547dc69cb65e..bd9dd27c9868 100644 --- a/pkgs/by-name/un/untrunc-anthwlock/package.nix +++ b/pkgs/by-name/un/untrunc-anthwlock/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { description = "Restore a truncated mp4/mov (improved version of ponchio/untrunc)"; homepage = "https://github.com/anthwlock/untrunc"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/un/unused/package.nix b/pkgs/by-name/un/unused/package.nix index 19438478b714..1ec83048f6e1 100644 --- a/pkgs/by-name/un/unused/package.nix +++ b/pkgs/by-name/un/unused/package.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-YOTTwkmYLU9+7FHw3EhIWFK2oDOwm+pGqCAqa4Ywuew="; - meta = with lib; { + meta = { description = "Tool to identify potentially unused code"; homepage = "https://unused.codes"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/un/unzrip/package.nix b/pkgs/by-name/un/unzrip/package.nix index 7e592bfce66c..1c63832c7a37 100644 --- a/pkgs/by-name/un/unzrip/package.nix +++ b/pkgs/by-name/un/unzrip/package.nix @@ -27,10 +27,10 @@ rustPlatform.buildRustPackage { zstd ]; - meta = with lib; { + meta = { description = "Unzip implementation, support for parallel decompression, automatic detection encoding"; homepage = "https://github.com/quininer/unzrip"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "unzrip"; }; diff --git a/pkgs/by-name/up/up/package.nix b/pkgs/by-name/up/up/package.nix index a25f1406e436..cc99407ee1af 100644 --- a/pkgs/by-name/up/up/package.nix +++ b/pkgs/by-name/up/up/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-PbOMUrKigCUuu5Hv3h0ZYSYezS+64DIZSubnQZ12HOE="; - meta = with lib; { + meta = { description = "Ultimate Plumber is a tool for writing Linux pipes with instant live preview"; homepage = "https://github.com/akavel/up"; - maintainers = with maintainers; [ ma27 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ ma27 ]; + license = lib.licenses.asl20; mainProgram = "up"; }; } diff --git a/pkgs/by-name/up/updatecli/package.nix b/pkgs/by-name/up/updatecli/package.nix index b5c7aca9835b..132763442366 100644 --- a/pkgs/by-name/up/updatecli/package.nix +++ b/pkgs/by-name/up/updatecli/package.nix @@ -56,16 +56,16 @@ buildGoModule rec { installManPage updatecli.1 ''; - meta = with lib; { + meta = { description = "Declarative Dependency Management tool"; longDescription = '' Updatecli is a command-line tool used to define and apply update strategies. ''; homepage = "https://www.updatecli.io"; changelog = "https://github.com/updatecli/updatecli/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "updatecli"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ croissong lpostula ]; diff --git a/pkgs/by-name/up/updfparser/package.nix b/pkgs/by-name/up/updfparser/package.nix index d90095be538b..46701af4d0f0 100644 --- a/pkgs/by-name/up/updfparser/package.nix +++ b/pkgs/by-name/up/updfparser/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Very simple PDF parser"; homepage = "https://forge.soutade.fr/soutade/updfparser"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ autumnal ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ autumnal ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/up/upiano/package.nix b/pkgs/by-name/up/upiano/package.nix index 5d210f2f0b67..8dd435d14c75 100644 --- a/pkgs/by-name/up/upiano/package.nix +++ b/pkgs/by-name/up/upiano/package.nix @@ -35,10 +35,10 @@ python3.pkgs.buildPythonApplication rec { "upiano" ]; - meta = with lib; { + meta = { description = "Piano in your terminal"; homepage = "https://github.com/eliasdorneles/upiano"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "upiano"; }; diff --git a/pkgs/by-name/up/upower-notify/package.nix b/pkgs/by-name/up/upower-notify/package.nix index 8ba52be4e321..e634e0268f70 100644 --- a/pkgs/by-name/up/upower-notify/package.nix +++ b/pkgs/by-name/up/upower-notify/package.nix @@ -24,10 +24,10 @@ buildGoModule { vendorHash = "sha256-58zK6t3rb+19ilaQaNgsMVFQBYKPIV40ww8klrGbpnw="; proxyVendor = true; - meta = with lib; { + meta = { description = "Simple tool to give you Desktop Notifications about your battery"; mainProgram = "upower-notify"; homepage = "https://github.com/omeid/upower-notify"; - maintainers = with maintainers; [ kamilchm ]; + maintainers = with lib.maintainers; [ kamilchm ]; }; } diff --git a/pkgs/by-name/up/upower/package.nix b/pkgs/by-name/up/upower/package.nix index 2042988e5104..cd8b8c27f487 100644 --- a/pkgs/by-name/up/upower/package.nix +++ b/pkgs/by-name/up/upower/package.nix @@ -235,13 +235,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://upower.freedesktop.org/"; changelog = "https://gitlab.freedesktop.org/upower/upower/-/blob/v${finalAttrs.version}/NEWS"; description = "D-Bus service for power management"; mainProgram = "upower"; - teams = [ teams.freedesktop ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + teams = [ lib.teams.freedesktop ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/up/uppaal/package.nix b/pkgs/by-name/up/uppaal/package.nix index f3770437f843..a2ef8f764987 100644 --- a/pkgs/by-name/up/uppaal/package.nix +++ b/pkgs/by-name/up/uppaal/package.nix @@ -69,13 +69,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Integrated tool environment for modeling, validation and verification of real-time systems"; homepage = "https://uppaal.org/"; - license = licenses.unfreeRedistributable; - platforms = with platforms; linux ++ darwin ++ windows; + license = lib.licenses.unfreeRedistributable; + platforms = with lib.platforms; linux ++ darwin ++ windows; broken = !(stdenvNoCC.hostPlatform.isLinux && stdenvNoCC.hostPlatform.isx86_64); - maintainers = with maintainers; [ mortenmunk ]; + maintainers = with lib.maintainers; [ mortenmunk ]; mainProgram = "uppaal"; }; } diff --git a/pkgs/by-name/up/ups/package.nix b/pkgs/by-name/up/ups/package.nix index f563ea93a170..191b525e107f 100644 --- a/pkgs/by-name/up/ups/package.nix +++ b/pkgs/by-name/up/ups/package.nix @@ -16,10 +16,10 @@ buildGoModule rec { vendorHash = "sha256-c6aE6iD6yCnnuSEDhhr3v1ArcfLmSP8QhS7Cz7rtVHs="; - meta = with lib; { + meta = { description = "Command line tool for creating and applying UPS patch files"; homepage = "https://github.com/rameshvarun/ups"; - license = licenses.mit; - maintainers = with maintainers; [ ruby0b ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ruby0b ]; }; } diff --git a/pkgs/by-name/up/upspin/package.nix b/pkgs/by-name/up/upspin/package.nix index 5824ea403b54..cc0908818cfe 100644 --- a/pkgs/by-name/up/upspin/package.nix +++ b/pkgs/by-name/up/upspin/package.nix @@ -20,11 +20,11 @@ buildGoModule { # No upstream tests doCheck = false; - meta = with lib; { + meta = { description = "Global name space for storing data akin to a filesystem"; homepage = "https://upspin.io"; - license = licenses.bsd3; - maintainers = with maintainers; [ orthros ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ orthros ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/up/upterm/package.nix b/pkgs/by-name/up/upterm/package.nix index 2159a45c160a..f80971196cf0 100644 --- a/pkgs/by-name/up/upterm/package.nix +++ b/pkgs/by-name/up/upterm/package.nix @@ -40,10 +40,10 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Secure terminal-session sharing"; homepage = "https://upterm.dev"; - license = licenses.asl20; - maintainers = with maintainers; [ hax404 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hax404 ]; }; } diff --git a/pkgs/by-name/up/uptimed/package.nix b/pkgs/by-name/up/uptimed/package.nix index adfdb5b0e334..c1833fcdbb1d 100644 --- a/pkgs/by-name/up/uptimed/package.nix +++ b/pkgs/by-name/up/uptimed/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { --replace /var/spool /var/lib ''; - meta = with lib; { + meta = { description = "Uptime record daemon"; longDescription = '' An uptime record daemon keeping track of the highest uptimes a computer @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { which can also easily be used to show your records on a web page. ''; homepage = "https://github.com/rpodgorny/uptimed/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21Plus ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/up/upwork/package.nix b/pkgs/by-name/up/upwork/package.nix index 345520b0684d..aaabeb07d765 100644 --- a/pkgs/by-name/up/upwork/package.nix +++ b/pkgs/by-name/up/upwork/package.nix @@ -124,12 +124,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Online freelancing platform desktop application for time tracking"; homepage = "https://www.upwork.com/ab/downloads/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ zakkor ]; + maintainers = with lib.maintainers; [ zakkor ]; }; } diff --git a/pkgs/by-name/up/upx/package.nix b/pkgs/by-name/up/upx/package.nix index e0ff6b40e1e6..fbaa3e41108b 100644 --- a/pkgs/by-name/up/upx/package.nix +++ b/pkgs/by-name/up/upx/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { homepage = "https://upx.github.io/"; description = "Ultimate Packer for eXecutables"; changelog = "https://github.com/upx/upx/blob/${finalAttrs.src.rev}/NEWS"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "upx"; }; }) diff --git a/pkgs/by-name/uq/uqmi/package.nix b/pkgs/by-name/uq/uqmi/package.nix index f4706afbf70d..c945d0fbb50e 100644 --- a/pkgs/by-name/uq/uqmi/package.nix +++ b/pkgs/by-name/uq/uqmi/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation { ] ); - meta = with lib; { + meta = { description = "Tiny QMI command line utility"; homepage = "https://git.openwrt.org/?p=project/uqmi.git;a=summary"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fpletz mkg20001 ]; diff --git a/pkgs/by-name/ur/urbackup-client/package.nix b/pkgs/by-name/ur/urbackup-client/package.nix index 6ba24343cee2..17c34cec6a6d 100644 --- a/pkgs/by-name/ur/urbackup-client/package.nix +++ b/pkgs/by-name/ur/urbackup-client/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Easy to setup Open Source client/server backup system"; longDescription = "An easy to setup Open Source client/server backup system, that through a combination of image and file backups accomplishes both data safety and a fast restoration time"; homepage = "https://www.urbackup.org/index.html"; - license = licenses.agpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.mgttlinger ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.mgttlinger ]; }; } diff --git a/pkgs/by-name/ur/urbit/package.nix b/pkgs/by-name/ur/urbit/package.nix index 00ba4c46a3e1..5c2790978fcb 100644 --- a/pkgs/by-name/ur/urbit/package.nix +++ b/pkgs/by-name/ur/urbit/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update-bin.sh; - meta = with lib; { + meta = { homepage = "https://urbit.org"; description = "Operating function"; platforms = [ @@ -40,9 +40,9 @@ stdenv.mkDerivation rec { "x86_64-darwin" "aarch64-darwin" ]; - maintainers = [ maintainers.matthew-levan ]; - license = licenses.mit; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = [ lib.maintainers.matthew-levan ]; + license = lib.licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "urbit"; }; } diff --git a/pkgs/by-name/ur/urjtag/package.nix b/pkgs/by-name/ur/urjtag/package.nix index 81c78a8b2664..9f6ba088633b 100644 --- a/pkgs/by-name/ur/urjtag/package.nix +++ b/pkgs/by-name/ur/urjtag/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation rec { (lib.enableFeature svfSupport "svf") ]; - meta = with lib; { + meta = { homepage = "http://urjtag.org/"; description = "Universal JTAG library, server and tools"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ur/urlencode/package.nix b/pkgs/by-name/ur/urlencode/package.nix index d69d98aab2e9..dcdc26002b9f 100644 --- a/pkgs/by-name/ur/urlencode/package.nix +++ b/pkgs/by-name/ur/urlencode/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rHoqBrDFQ31jIHFZbHwjKHPDgMzM7gUCIhew03OYN6M="; - meta = with lib; { + meta = { description = "CLI utility for URL-encoding or -decoding strings"; homepage = "https://github.com/dead10ck/urlencode"; - license = licenses.mit; - maintainers = with maintainers; [ l0b0 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ l0b0 ]; mainProgram = "urlencode"; }; } diff --git a/pkgs/by-name/ur/urlhunter/package.nix b/pkgs/by-name/ur/urlhunter/package.nix index 758c7ed937b1..cf6a7810caea 100644 --- a/pkgs/by-name/ur/urlhunter/package.nix +++ b/pkgs/by-name/ur/urlhunter/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = "sha256-tlFCovCzqgaLcxcGmWXLYUjaAvFG0o11ei8uMzWJs6Q="; - meta = with lib; { + meta = { description = "Recon tool that allows searching shortened URLs"; mainProgram = "urlhunter"; longDescription = '' @@ -25,7 +25,7 @@ buildGoModule rec { exposed via shortener services such as bit.ly and goo.gl. ''; homepage = "https://github.com/utkusen/urlhunter"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ur/urlscan/package.nix b/pkgs/by-name/ur/urlscan/package.nix index 3d586251f197..550b8f8d0ac1 100644 --- a/pkgs/by-name/ur/urlscan/package.nix +++ b/pkgs/by-name/ur/urlscan/package.nix @@ -28,12 +28,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "urlscan" ]; - meta = with lib; { + meta = { description = "Mutt and terminal url selector (similar to urlview)"; homepage = "https://github.com/firecat53/urlscan"; changelog = "https://github.com/firecat53/urlscan/releases/tag/${src.tag}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dpaetzel ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dpaetzel ]; mainProgram = "urlscan"; }; } diff --git a/pkgs/by-name/ur/urlwatch/package.nix b/pkgs/by-name/ur/urlwatch/package.nix index 73429bad880c..baf9d2cb953e 100644 --- a/pkgs/by-name/ur/urlwatch/package.nix +++ b/pkgs/by-name/ur/urlwatch/package.nix @@ -43,12 +43,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "urlwatch" ]; - meta = with lib; { + meta = { description = "Tool for monitoring webpages for updates"; homepage = "https://thp.io/2008/urlwatch/"; changelog = "https://github.com/thp/urlwatch/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kmein tv ]; diff --git a/pkgs/by-name/ur/urn-timer/package.nix b/pkgs/by-name/ur/urn-timer/package.nix index f8e23e4da99a..6ed09a4b14e8 100644 --- a/pkgs/by-name/ur/urn-timer/package.nix +++ b/pkgs/by-name/ur/urn-timer/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { passthru.tests.nixosTest = nixosTests.urn-timer; - meta = with lib; { + meta = { homepage = "https://github.com/paoloose/urn"; description = "Split tracker / timer for speedrunning with GTK+ frontend"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "urn-gtk"; }; } diff --git a/pkgs/by-name/ur/urn/package.nix b/pkgs/by-name/ur/urn/package.nix index 409de4471f2e..e8240a44650c 100644 --- a/pkgs/by-name/ur/urn/package.nix +++ b/pkgs/by-name/ur/urn/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation { --prefix LD_LIBRARY_PATH : ${urn-rt}/lib/ ''; - meta = with lib; { + meta = { homepage = "https://urn-lang.com"; description = "Yet another Lisp variant which compiles to Lua"; mainProgram = "urn"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; passthru = { diff --git a/pkgs/by-name/ur/uroboros/package.nix b/pkgs/by-name/ur/uroboros/package.nix index 49297f84248e..c5f15f61b015 100644 --- a/pkgs/by-name/ur/uroboros/package.nix +++ b/pkgs/by-name/ur/uroboros/package.nix @@ -18,10 +18,10 @@ buildGoModule rec { vendorHash = "sha256-FJTmnkPMXolNijRc4ZqCsi/ykReTE2WOC5LP/wHog9Y="; - meta = with lib; { + meta = { description = "Tool for monitoring and profiling single processes"; homepage = "https://github.com/evilsocket/uroboros"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ur/ursadb/package.nix b/pkgs/by-name/ur/ursadb/package.nix index ec3f808df0ee..0e9d33fac29f 100644 --- a/pkgs/by-name/ur/ursadb/package.nix +++ b/pkgs/by-name/ur/ursadb/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/CERT-Polska/ursadb"; description = "Trigram database written in C++, suited for malware indexing"; - license = licenses.bsd3; - maintainers = with maintainers; [ msm ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ msm ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.isAarch64; }; }) diff --git a/pkgs/by-name/us/usb-blaster-udev-rules/package.nix b/pkgs/by-name/us/usb-blaster-udev-rules/package.nix index 8267fb3e23bd..6e1741869220 100644 --- a/pkgs/by-name/us/usb-blaster-udev-rules/package.nix +++ b/pkgs/by-name/us/usb-blaster-udev-rules/package.nix @@ -20,7 +20,7 @@ stdenvNoCC.mkDerivation rec { install -Dm 644 "${udevRules}" "$out/lib/udev/rules.d/51-usbblaster.rules" ''; - meta = with lib; { + meta = { description = "udev rules that give NixOS permission to communicate with usb blasters"; longDescription = '' udev rules that give NixOS permission to communicate with usb blasters. @@ -30,7 +30,7 @@ stdenvNoCC.mkDerivation rec { to the system configuration. ''; - license = licenses.free; - platforms = platforms.linux; + license = lib.licenses.free; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/us/usb-modeswitch/package.nix b/pkgs/by-name/us/usb-modeswitch/package.nix index 64b80c039216..c16acb517d11 100644 --- a/pkgs/by-name/us/usb-modeswitch/package.nix +++ b/pkgs/by-name/us/usb-modeswitch/package.nix @@ -62,14 +62,14 @@ stdenv.mkDerivation rec { makeWrapper ]; - meta = with lib; { + meta = { description = "Mode switching tool for controlling 'multi-mode' USB devices"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ marcweber peterhoeg ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "usb_modeswitch"; }; } diff --git a/pkgs/by-name/us/usb-reset/package.nix b/pkgs/by-name/us/usb-reset/package.nix index 509cb1ee2a06..d15e9248f65d 100644 --- a/pkgs/by-name/us/usb-reset/package.nix +++ b/pkgs/by-name/us/usb-reset/package.nix @@ -31,14 +31,14 @@ stdenv.mkDerivation { "prefix=" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Perform a bus reset on a USB device using its vendor and product ID"; homepage = "https://github.com/ralight/usb-reset"; changelog = "https://github.com/ralight/usb-reset/blob/master/ChangeLog.txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "usb-reset"; }; } diff --git a/pkgs/by-name/us/usbimager/package.nix b/pkgs/by-name/us/usbimager/package.nix index 04eb470bcefd..ac1dea030b93 100644 --- a/pkgs/by-name/us/usbimager/package.nix +++ b/pkgs/by-name/us/usbimager/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { ++ lib.optional withLibui "USE_LIBUI=yes" ++ lib.optional withUdisks "USE_UDISKS2=yes"; - meta = with lib; { + meta = { description = "Very minimal GUI app that can write compressed disk images to USB drives"; homepage = "https://gitlab.com/bztsrc/usbimager"; - license = licenses.mit; - maintainers = with maintainers; [ vdot0x23 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vdot0x23 ]; # windows and darwin could work, but untested # feel free add them if you have a machine to test - platforms = with platforms; linux; + platforms = with lib.platforms; linux; # never built on aarch64-linux since first introduction in nixpkgs broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; mainProgram = "usbimager"; diff --git a/pkgs/by-name/us/usbmuxd/package.nix b/pkgs/by-name/us/usbmuxd/package.nix index fd8523ad367e..e60862e35ae7 100644 --- a/pkgs/by-name/us/usbmuxd/package.nix +++ b/pkgs/by-name/us/usbmuxd/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/libimobiledevice/usbmuxd"; description = "Socket daemon to multiplex connections from and to iOS devices"; longDescription = '' @@ -52,8 +52,8 @@ stdenv.mkDerivation rec { a virtual network device. Multiple connections to different TCP ports can happen in parallel. The higher-level layers are handled by libimobiledevice. ''; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "usbmuxd"; }; diff --git a/pkgs/by-name/us/usbredir/package.nix b/pkgs/by-name/us/usbredir/package.nix index 9b20fd2a678a..3ac5a524c3b5 100644 --- a/pkgs/by-name/us/usbredir/package.nix +++ b/pkgs/by-name/us/usbredir/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "USB traffic redirection protocol"; mainProgram = "usbredirect"; homepage = "https://www.spice-space.org/usbredir.html"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/us/usbrip/package.nix b/pkgs/by-name/us/usbrip/package.nix index ed62cf7e9833..9ec88c6d4cad 100644 --- a/pkgs/by-name/us/usbrip/package.nix +++ b/pkgs/by-name/us/usbrip/package.nix @@ -38,12 +38,12 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "usbrip" ]; - meta = with lib; { + meta = { description = "Tool to track the history of USB events"; mainProgram = "usbrip"; homepage = "https://github.com/snovvcrash/usbrip"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/us/usbview/package.nix b/pkgs/by-name/us/usbview/package.nix index 2fa506a18b82..6e9d69fe1238 100644 --- a/pkgs/by-name/us/usbview/package.nix +++ b/pkgs/by-name/us/usbview/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation rec { gtk3 ]; - meta = with lib; { + meta = { description = "USB viewer for Linux"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "http://www.kroah.com/linux-usb/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ shamilton h7x4 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "usbview"; }; } diff --git a/pkgs/by-name/us/userhosts/package.nix b/pkgs/by-name/us/userhosts/package.nix index bf6c1b58f8db..342f282e538c 100644 --- a/pkgs/by-name/us/userhosts/package.nix +++ b/pkgs/by-name/us/userhosts/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Libc wrapper providing per-user hosts file"; homepage = "https://github.com/figiel/hosts"; - maintainers = [ maintainers.bobvanderlinden ]; - license = licenses.cc0; - platforms = platforms.linux; + maintainers = [ lib.maintainers.bobvanderlinden ]; + license = lib.licenses.cc0; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/us/username-anarchy/package.nix b/pkgs/by-name/us/username-anarchy/package.nix index 79f0a455ad21..e134114ecfbe 100644 --- a/pkgs/by-name/us/username-anarchy/package.nix +++ b/pkgs/by-name/us/username-anarchy/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation { install -Dm 555 username-anarchy $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/urbanadventurer/username-anarchy/"; description = "Username generator tool for penetration testing"; - license = licenses.mit; - maintainers = [ maintainers.akechishiro ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.akechishiro ]; + platforms = lib.platforms.unix; mainProgram = "username-anarchy"; }; } diff --git a/pkgs/by-name/us/usrsctp/package.nix b/pkgs/by-name/us/usrsctp/package.nix index 5d3ee93d9670..e0d7d8b515d9 100644 --- a/pkgs/by-name/us/usrsctp/package.nix +++ b/pkgs/by-name/us/usrsctp/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR} ''; - meta = with lib; { + meta = { homepage = "https://github.com/sctplab/usrsctp"; description = "Portable SCTP userland stack"; - maintainers = with maintainers; [ misuzu ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ misuzu ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/us/ustreamer/package.nix b/pkgs/by-name/us/ustreamer/package.nix index e9402ec14d9c..d10d2c9a7446 100644 --- a/pkgs/by-name/us/ustreamer/package.nix +++ b/pkgs/by-name/us/ustreamer/package.nix @@ -85,7 +85,7 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) ustreamer; }; - meta = with lib; { + meta = { homepage = "https://github.com/pikvm/ustreamer"; description = "Lightweight and fast MJPG-HTTP streamer"; longDescription = '' @@ -95,12 +95,12 @@ stdenv.mkDerivation rec { µStreamer is a part of the Pi-KVM project designed to stream VGA and HDMI screencast hardware data with the highest resolution and FPS possible. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ tfc matthewcroughan ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ustreamer"; }; } diff --git a/pkgs/by-name/us/usync/package.nix b/pkgs/by-name/us/usync/package.nix index 570d9d20d731..977941a39c70 100644 --- a/pkgs/by-name/us/usync/package.nix +++ b/pkgs/by-name/us/usync/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { substituteInPlace $out/bin/$pname --replace "(unison " "(${unison}/bin/unison " ''; - meta = with lib; { + meta = { homepage = "https://github.com/ebzzry/usync"; description = "Simple site-to-site synchronization tool"; - license = licenses.mit; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; mainProgram = "usync"; }; diff --git a/pkgs/by-name/ut/ut/package.nix b/pkgs/by-name/ut/ut/package.nix index 71b2060995a9..693a26c55fa7 100644 --- a/pkgs/by-name/ut/ut/package.nix +++ b/pkgs/by-name/ut/ut/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation (finalAttrs: { ninja ]; - meta = with lib; { + meta = { description = "C++20 μ(micro)/Unit Testing Framework"; homepage = "https://github.com/boost-ext/ut"; - license = licenses.boost; - maintainers = with maintainers; [ matthewcroughan ]; - platforms = platforms.all; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ matthewcroughan ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ut/ut1999/package.nix b/pkgs/by-name/ut/ut1999/package.nix index bf31f52bcea0..fe6b947c92dd 100644 --- a/pkgs/by-name/ut/ut1999/package.nix +++ b/pkgs/by-name/ut/ut1999/package.nix @@ -199,13 +199,13 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Unreal Tournament GOTY (1999) with the OldUnreal patch"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = attrNames srcs; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ eliandoran dwt ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "ut1999"; }; }) diff --git a/pkgs/by-name/ut/utf8proc/package.nix b/pkgs/by-name/ut/utf8proc/package.nix index 28577b96d663..861a16faf1f3 100644 --- a/pkgs/by-name/ut/utf8proc/package.nix +++ b/pkgs/by-name/ut/utf8proc/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation rec { inherit fcft tmux arrow-cpp; }; - meta = with lib; { + meta = { description = "Clean C library for processing UTF-8 Unicode data"; homepage = "https://juliastrings.github.io/utf8proc/"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ - maintainers.ftrvxmtrx - maintainers.sternenseemann + lib.maintainers.ftrvxmtrx + lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/by-name/ut/uthash/package.nix b/pkgs/by-name/ut/uthash/package.nix index d0487a764472..6442910ef85f 100644 --- a/pkgs/by-name/ut/uthash/package.nix +++ b/pkgs/by-name/ut/uthash/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { install -Dm644 $src/include/*.h -t $out/include ''; - meta = with lib; { + meta = { description = "Hash table for C structures"; homepage = "http://troydhanson.github.io/uthash"; - license = licenses.bsd2; # it's one-clause, actually, as it's source-only - platforms = platforms.all; + license = lib.licenses.bsd2; # it's one-clause, actually, as it's source-only + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ut/uthenticode/package.nix b/pkgs/by-name/ut/uthenticode/package.nix index 85e1e65086b8..17197c75cc34 100644 --- a/pkgs/by-name/ut/uthenticode/package.nix +++ b/pkgs/by-name/ut/uthenticode/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { doCheck = true; checkPhase = "test/uthenticode_test"; - meta = with lib; { + meta = { description = "Small cross-platform library for verifying Authenticode digital signatures"; homepage = "https://github.com/trailofbits/uthenticode"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ arturcygan ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ arturcygan ]; }; } diff --git a/pkgs/by-name/ut/utox/package.nix b/pkgs/by-name/ut/utox/package.nix index ac77e70d798f..a345c3fd4be7 100644 --- a/pkgs/by-name/ut/utox/package.nix +++ b/pkgs/by-name/ut/utox/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; nativeCheckInputs = [ check ]; - meta = with lib; { + meta = { description = "Lightweight Tox client"; mainProgram = "utox"; homepage = "https://github.com/uTox/uTox"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ut/utsushi-networkscan/package.nix b/pkgs/by-name/ut/utsushi-networkscan/package.nix index 377f32d50ff3..2a9e882def4c 100644 --- a/pkgs/by-name/ut/utsushi-networkscan/package.nix +++ b/pkgs/by-name/ut/utsushi-networkscan/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { $out/libexec/utsushi/networkscan ''; - meta = with lib; { + meta = { homepage = "https://support.epson.net/linux/en/imagescanv3.php"; description = "Network scan plugin for ImageScan v3"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ut/utsushi/package.nix b/pkgs/by-name/ut/utsushi/package.nix index 22c6f722db32..9e3037959080 100644 --- a/pkgs/by-name/ut/utsushi/package.nix +++ b/pkgs/by-name/ut/utsushi/package.nix @@ -118,7 +118,7 @@ stdenv.mkDerivation rec { ln -s ${utsushi-networkscan}/libexec/utsushi/networkscan $out/libexec/utsushi ''; - meta = with lib; { + meta = { description = "SANE utsushi backend for some Epson scanners"; mainProgram = "utsushi"; longDescription = '' @@ -187,11 +187,11 @@ stdenv.mkDerivation rec { XP-970 Series ''; homepage = "https://gitlab.com/utsushi/imagescan"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wucke13 maxwilson ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ut/utterly-round-plasma-style/package.nix b/pkgs/by-name/ut/utterly-round-plasma-style/package.nix index ccb50b1359a3..4c483ef113e4 100644 --- a/pkgs/by-name/ut/utterly-round-plasma-style/package.nix +++ b/pkgs/by-name/ut/utterly-round-plasma-style/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Rounded desktop theme and window borders for Plasma 5 that follows any color scheme"; homepage = "https://himdek.com/Utterly-Round-Plasma-Style/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/uu/uuu/package.nix b/pkgs/by-name/uu/uuu/package.nix index 58104e1c39f8..ab274b08ac93 100644 --- a/pkgs/by-name/uu/uuu/package.nix +++ b/pkgs/by-name/uu/uuu/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { doInstallCheck = true; - meta = with lib; { + meta = { description = "Freescale/NXP I.MX Chip image deploy tools"; homepage = "https://github.com/nxp-imx/mfgtools"; - license = licenses.bsd3; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ otavio ]; mainProgram = "uuu"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/uv/uvccapture/package.nix b/pkgs/by-name/uv/uvccapture/package.nix index 8d2132a762c8..317893cd6af0 100644 --- a/pkgs/by-name/uv/uvccapture/package.nix +++ b/pkgs/by-name/uv/uvccapture/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { cp -v debian/uvccapture.1 "$out/share/man/man1/" ''; - meta = with lib; { + meta = { description = "Capture image from USB webcam at a specified interval"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "uvccapture"; }; } diff --git a/pkgs/by-name/uv/uvcdynctrl/package.nix b/pkgs/by-name/uv/uvcdynctrl/package.nix index 33afb27143e7..d242fd1f37a6 100644 --- a/pkgs/by-name/uv/uvcdynctrl/package.nix +++ b/pkgs/by-name/uv/uvcdynctrl/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation { doInstallCheck = true; - meta = with lib; { + meta = { description = "Simple interface for devices supported by the linux UVC driver"; homepage = "https://guvcview.sourceforge.net"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.puffnfresh ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.puffnfresh ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/uw/uw-ttyp0/package.nix b/pkgs/by-name/uw/uw-ttyp0/package.nix index 94161e2aae90..18405b0b978e 100644 --- a/pkgs/by-name/uw/uw-ttyp0/package.nix +++ b/pkgs/by-name/uw/uw-ttyp0/package.nix @@ -67,14 +67,14 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Monospace bitmap screen fonts for X11"; homepage = "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/"; - license = with licenses; [ + license = with lib.licenses; [ free mit ]; - maintainers = with maintainers; [ rnhmjoj ]; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/uw/uwc/package.nix b/pkgs/by-name/uw/uwc/package.nix index 724502534fa3..7024895fb164 100644 --- a/pkgs/by-name/uw/uwc/package.nix +++ b/pkgs/by-name/uw/uwc/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Like wc, but unicode-aware, and with per-line mode"; mainProgram = "uwc"; homepage = "https://github.com/dead10ck/uwc"; - license = licenses.mit; - maintainers = with maintainers; [ ShamrockLee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; } diff --git a/pkgs/by-name/uw/uwimap/package.nix b/pkgs/by-name/uw/uwimap/package.nix index 71a8ce555bd1..060080383181 100644 --- a/pkgs/by-name/uw/uwimap/package.nix +++ b/pkgs/by-name/uw/uwimap/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { tools/{an,ua} $out/bin ''; - meta = with lib; { + meta = { homepage = "https://www.washington.edu/imap/"; description = "UW IMAP toolkit - IMAP-supporting software developed by the UW"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; passthru = { diff --git a/pkgs/by-name/uw/uwufetch/package.nix b/pkgs/by-name/uw/uwufetch/package.nix index efabc63e005a..0bafdc321ba1 100644 --- a/pkgs/by-name/uw/uwufetch/package.nix +++ b/pkgs/by-name/uw/uwufetch/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { --prefix PATH ":" ${lib.makeBinPath [ viu ]} ''; - meta = with lib; { + meta = { description = "Meme system info tool for Linux"; homepage = "https://github.com/TheDarkBug/uwufetch"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ bbjubjub ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bbjubjub ]; mainProgram = "uwufetch"; }; } diff --git a/pkgs/by-name/uw/uwuify/package.nix b/pkgs/by-name/uw/uwuify/package.nix index ad6f4d6c53d0..fcd958afaef4 100644 --- a/pkgs/by-name/uw/uwuify/package.nix +++ b/pkgs/by-name/uw/uwuify/package.nix @@ -20,12 +20,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-gR3FL1GeD9Dx5TKeThmPScMCRJQ2THlO4pBViXlI9XM="; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ]; - meta = with lib; { + meta = { description = "Fast text uwuifier"; homepage = "https://github.com/Daniel-Liu-c0deb0t/uwu"; - license = licenses.mit; + license = lib.licenses.mit; platforms = lib.platforms.x86; # uses SSE instructions - maintainers = with maintainers; [ siraben ]; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "uwuify"; }; } diff --git a/pkgs/by-name/v2/v2ray-domain-list-community/package.nix b/pkgs/by-name/v2/v2ray-domain-list-community/package.nix index 87ec49f17afe..ed86f0050130 100644 --- a/pkgs/by-name/v2/v2ray-domain-list-community/package.nix +++ b/pkgs/by-name/v2/v2ray-domain-list-community/package.nix @@ -17,11 +17,11 @@ let hash = "sha256-BinlmP+tiXThq38ye9tCOLp170j3ZLie7EL3/hFHaxo="; }; vendorHash = "sha256-HmIXpF7P3J+lPXpmWWoFpSYAu5zbBQSDrj6S88LgWSU="; - meta = with lib; { + meta = { description = "Community managed domain list"; homepage = "https://github.com/v2fly/domain-list-community"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; }; in diff --git a/pkgs/by-name/v4/v4l-utils/package.nix b/pkgs/by-name/v4/v4l-utils/package.nix index b8adda9766ac..6879cf04b862 100644 --- a/pkgs/by-name/v4/v4l-utils/package.nix +++ b/pkgs/by-name/v4/v4l-utils/package.nix @@ -120,18 +120,18 @@ stdenv.mkDerivation (finalAttrs: { doInstallCheck = true; - meta = with lib; { + meta = { description = "V4L utils and libv4l, provide common image formats regardless of the v4l device"; homepage = "https://linuxtv.org/projects.php"; changelog = "https://git.linuxtv.org/v4l-utils.git/plain/ChangeLog?h=v4l-utils-${finalAttrs.version}"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus gpl2Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ codyopel yarny ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/v4/v4l2-to-ndi/package.nix b/pkgs/by-name/v4/v4l2-to-ndi/package.nix index 4912c362692b..9e7bceca7f80 100644 --- a/pkgs/by-name/v4/v4l2-to-ndi/package.nix +++ b/pkgs/by-name/v4/v4l2-to-ndi/package.nix @@ -47,15 +47,15 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Video input (V4L2) to NDI converter"; homepage = "https://github.com/lplassman/V4L2-to-NDI"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pinpox MayNiklas ]; mainProgram = "v4l2ndi"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/va/vaapi-intel-hybrid/package.nix b/pkgs/by-name/va/vaapi-intel-hybrid/package.nix index 564460b104bc..3bd0ae01e10c 100644 --- a/pkgs/by-name/va/vaapi-intel-hybrid/package.nix +++ b/pkgs/by-name/va/vaapi-intel-hybrid/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure ''; - meta = with lib; { + meta = { homepage = "https://01.org/linuxmedia"; description = "Intel driver for the VAAPI library with partial HW acceleration"; - license = licenses.mit; - maintainers = with maintainers; [ tadfisher ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tadfisher ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/va/vagrant/package.nix b/pkgs/by-name/va/vagrant/package.nix index b7c3fb89c1ef..ff48d0027ee6 100644 --- a/pkgs/by-name/va/vagrant/package.nix +++ b/pkgs/by-name/va/vagrant/package.nix @@ -136,11 +136,11 @@ buildRubyGem rec { inherit ruby deps; }; - meta = with lib; { + meta = { description = "Tool for building complete development environments"; homepage = "https://www.vagrantup.com/"; - license = licenses.bsl11; - maintainers = with maintainers; [ tylerjl ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ tylerjl ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/va/vala-language-server/package.nix b/pkgs/by-name/va/vala-language-server/package.nix index 2912f7db2146..ba2a21349c74 100644 --- a/pkgs/by-name/va/vala-language-server/package.nix +++ b/pkgs/by-name/va/vala-language-server/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { vala ]; - meta = with lib; { + meta = { description = "Code Intelligence for Vala & Genie"; mainProgram = "vala-language-server"; homepage = "https://github.com/vala-lang/vala-language-server"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ andreasfelix ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ andreasfelix ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/va/vala-lint/package.nix b/pkgs/by-name/va/vala-lint/package.nix index 4a7e0450194c..cc8d84a97415 100644 --- a/pkgs/by-name/va/vala-lint/package.nix +++ b/pkgs/by-name/va/vala-lint/package.nix @@ -47,16 +47,16 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/vala-lang/vala-lint"; description = "Check Vala code files for code-style errors"; longDescription = '' Small command line tool and library for checking Vala code files for code-style errors. Based on the elementary Code-Style guidelines. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.vala-lint"; }; } diff --git a/pkgs/by-name/va/valijson/package.nix b/pkgs/by-name/va/valijson/package.nix index ec2cddb512c9..a5845f3b617e 100644 --- a/pkgs/by-name/va/valijson/package.nix +++ b/pkgs/by-name/va/valijson/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { cmake ]; - meta = with lib; { + meta = { description = "Header-only C++ library for JSON Schema validation, with support for many popular parsers"; homepage = "https://github.com/tristanpenman/valijson"; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/va/valkey/package.nix b/pkgs/by-name/va/valkey/package.nix index 9f8d6098eaa0..bfa1a3a01e25 100644 --- a/pkgs/by-name/va/valkey/package.nix +++ b/pkgs/by-name/va/valkey/package.nix @@ -112,11 +112,11 @@ stdenv.mkDerivation (finalAttrs: { serverBin = "valkey-server"; }; - meta = with lib; { + meta = { homepage = "https://valkey.io/"; description = "High-performance data structure server that primarily serves key/value workloads"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; maintainers = [ ]; changelog = "https://github.com/valkey-io/valkey/releases/tag/${finalAttrs.version}"; mainProgram = "valkey-cli"; diff --git a/pkgs/by-name/va/valuta/package.nix b/pkgs/by-name/va/valuta/package.nix index 366bdc07e61a..cc84e79d163a 100644 --- a/pkgs/by-name/va/valuta/package.nix +++ b/pkgs/by-name/va/valuta/package.nix @@ -61,13 +61,13 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple application for converting currencies, with support for various APIs"; homepage = "https://github.com/ideveCore/Valuta"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ arthsmn ]; - teams = [ teams.gnome-circle ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ arthsmn ]; + teams = [ lib.teams.gnome-circle ]; mainProgram = "currencyconverter"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/va/vamp-plugin-sdk/package.nix b/pkgs/by-name/va/vamp-plugin-sdk/package.nix index 8ac7959d4669..0dc9743fac6a 100644 --- a/pkgs/by-name/va/vamp-plugin-sdk/package.nix +++ b/pkgs/by-name/va/vamp-plugin-sdk/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { ] ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "-o test"; - meta = with lib; { + meta = { description = "Audio processing plugin system for plugins that extract descriptive information from audio data"; homepage = "https://vamp-plugins.org/"; - license = licenses.bsd3; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/va/vanilla-dmz/package.nix b/pkgs/by-name/va/vanilla-dmz/package.nix index b6ff58b83557..eb728e3877df 100644 --- a/pkgs/by-name/va/vanilla-dmz/package.nix +++ b/pkgs/by-name/va/vanilla-dmz/package.nix @@ -52,11 +52,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://jimmac.musichall.cz"; description = "Style neutral scalable cursor theme"; - platforms = platforms.all; - license = licenses.cc-by-sa-30; + platforms = lib.platforms.all; + license = lib.licenses.cc-by-sa-30; maintainers = [ ]; }; } diff --git a/pkgs/by-name/va/vapoursynth-mvtools/package.nix b/pkgs/by-name/va/vapoursynth-mvtools/package.nix index 41ae1a11ccee..cb4ee66667e8 100644 --- a/pkgs/by-name/va/vapoursynth-mvtools/package.nix +++ b/pkgs/by-name/va/vapoursynth-mvtools/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ]; - meta = with lib; { + meta = { description = "Set of filters for motion estimation and compensation"; homepage = "https://github.com/dubhater/vapoursynth-mvtools"; - license = licenses.gpl2; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/va/vapoursynth/editor.nix b/pkgs/by-name/va/vapoursynth/editor.nix index 816250d63826..163ce819051e 100644 --- a/pkgs/by-name/va/vapoursynth/editor.nix +++ b/pkgs/by-name/va/vapoursynth/editor.nix @@ -63,12 +63,12 @@ let inherit withPlugins; }; - meta = with lib; { + meta = { description = "Cross-platform editor for VapourSynth scripts"; homepage = "https://github.com/YomikoR/VapourSynth-Editor"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; diff --git a/pkgs/by-name/va/vapoursynth/package.nix b/pkgs/by-name/va/vapoursynth/package.nix index 1396767e3f7b..5607743660a3 100644 --- a/pkgs/by-name/va/vapoursynth/package.nix +++ b/pkgs/by-name/va/vapoursynth/package.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Video processing framework with the future in mind"; homepage = "http://www.vapoursynth.com/"; - license = licenses.lgpl21; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ rnhmjoj sbruder snaki diff --git a/pkgs/by-name/va/varscan/package.nix b/pkgs/by-name/va/varscan/package.nix index 6532d60820e4..d748f75bfaad 100644 --- a/pkgs/by-name/va/varscan/package.nix +++ b/pkgs/by-name/va/varscan/package.nix @@ -27,18 +27,18 @@ stdenv.mkDerivation rec { makeWrapper ${jre}/bin/java $out/bin/varscan --add-flags "-jar $out/libexec/varscan/varscan.jar" ''; - meta = with lib; { + meta = { description = "Variant calling and somatic mutation/CNV detection for next-generation sequencing data"; # VarScan 2 is free for non-commercial use by academic, # government, and non-profit/not-for-profit institutions. A # commercial version of the software is available, and licensed # through the Office of Technology Management at Washington # University School of Medicine. - license = licenses.unfree; + license = lib.licenses.unfree; homepage = "https://github.com/dkoboldt/varscan"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/va/vassal/package.nix b/pkgs/by-name/va/vassal/package.nix index cc8effc37674..0d782f78ce65 100644 --- a/pkgs/by-name/va/vassal/package.nix +++ b/pkgs/by-name/va/vassal/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { versionCheckProgram = "${placeholder "out"}/bin/vassal"; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "Free, open-source boardgame engine"; homepage = "https://vassalengine.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ tvestelind ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ tvestelind ]; platforms = with lib.platforms; unix ++ windows; mainProgram = "vassal"; }; diff --git a/pkgs/by-name/va/vault-bin/package.nix b/pkgs/by-name/va/vault-bin/package.nix index d9ea8d8c3d15..81b6c38fca7d 100644 --- a/pkgs/by-name/va/vault-bin/package.nix +++ b/pkgs/by-name/va/vault-bin/package.nix @@ -56,18 +56,18 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update-bin.sh; - meta = with lib; { + meta = { description = "Tool for managing secrets, this binary includes the UI"; homepage = "https://www.vaultproject.io"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.bsl11; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ offline psyanticy Chili-Man techknowlogick ]; - teams = [ teams.serokell ]; + teams = [ lib.teams.serokell ]; mainProgram = "vault"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/va/vault-medusa/package.nix b/pkgs/by-name/va/vault-medusa/package.nix index 9697eb60bcfa..e333dda9c257 100644 --- a/pkgs/by-name/va/vault-medusa/package.nix +++ b/pkgs/by-name/va/vault-medusa/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-+bGuWOFmglvW/qB+6VlOPeoB9lwkikksQPuDKE/2kXw="; - meta = with lib; { + meta = { description = "Cli tool for importing and exporting Hashicorp Vault secrets"; mainProgram = "medusa"; homepage = "https://github.com/jonasvinther/medusa"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/va/vazir-code-font/package.nix b/pkgs/by-name/va/vazir-code-font/package.nix index 5b81c36426b3..2d1ac5467d54 100644 --- a/pkgs/by-name/va/vazir-code-font/package.nix +++ b/pkgs/by-name/va/vazir-code-font/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/vazir-code-font"; description = "Persian (farsi) Monospaced Font for coding"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = [ maintainers.dearrude ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.dearrude ]; }; } diff --git a/pkgs/by-name/va/vazir-fonts/package.nix b/pkgs/by-name/va/vazir-fonts/package.nix index 3aa6170f57b1..a5b32ddb5dd0 100644 --- a/pkgs/by-name/va/vazir-fonts/package.nix +++ b/pkgs/by-name/va/vazir-fonts/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/rastikerdar/vazir-font"; description = "Persian (Farsi) Font - قلم (فونت) فارسی وزیر"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vc/vc/package.nix b/pkgs/by-name/vc/vc/package.nix index 4bf520a6c55c..01d20a690e58 100644 --- a/pkgs/by-name/vc/vc/package.nix +++ b/pkgs/by-name/vc/vc/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake ''; - meta = with lib; { + meta = { description = "Library for multiprecision complex arithmetic with exact rounding"; homepage = "https://github.com/VcDevel/Vc"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vc/vcal/package.nix b/pkgs/by-name/vc/vcal/package.nix index 1efc9ee6af6b..0facbd56be48 100644 --- a/pkgs/by-name/vc/vcal/package.nix +++ b/pkgs/by-name/vc/vcal/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { # There are no tests doCheck = false; - meta = with lib; { + meta = { description = "Parser for VCalendar and ICalendar files, usable from the command line"; homepage = "https://waynemorrison.com/software/"; - license = licenses.asl20; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "vcal"; }; } diff --git a/pkgs/by-name/vc/vcdimager/package.nix b/pkgs/by-name/vc/vcdimager/package.nix index 25667a078ebd..4b5a9dfbb10d 100644 --- a/pkgs/by-name/vc/vcdimager/package.nix +++ b/pkgs/by-name/vc/vcdimager/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libcdio ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/vcdimager/"; description = "Full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs"; - platforms = platforms.unix; - license = licenses.gpl2; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/vc/vcftools/package.nix b/pkgs/by-name/vc/vcftools/package.nix index edd1fa4e5a7f..1a5e4168bcbf 100644 --- a/pkgs/by-name/vc/vcftools/package.nix +++ b/pkgs/by-name/vc/vcftools/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { perl ]; - meta = with lib; { + meta = { description = "Set of tools written in Perl and C++ for working with VCF files, such as those generated by the 1000 Genomes Project"; - license = licenses.lgpl3; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; homepage = "https://vcftools.github.io/index.html"; - maintainers = [ maintainers.rybern ]; + maintainers = [ lib.maintainers.rybern ]; }; } diff --git a/pkgs/by-name/vc/vcprompt/package.nix b/pkgs/by-name/vc/vcprompt/package.nix index 693ac5c9d628..0d55a76b4219 100644 --- a/pkgs/by-name/vc/vcprompt/package.nix +++ b/pkgs/by-name/vc/vcprompt/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Program that prints barebones information about the current working directory for various version control systems"; homepage = "https://github.com/powerman/vcprompt"; maintainers = [ ]; - platforms = with platforms; linux ++ darwin; - license = licenses.gpl2Plus; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; mainProgram = "vcprompt"; }; } diff --git a/pkgs/by-name/vc/vcs/package.nix b/pkgs/by-name/vc/vcs/package.nix index 0536fbe8e956..28a27164dbe2 100644 --- a/pkgs/by-name/vc/vcs/package.nix +++ b/pkgs/by-name/vc/vcs/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation { wrapProgram $out/bin/vcs --argv0 vcs --set PATH "${lib.makeBinPath runtimeDeps}" ''; - meta = with lib; { + meta = { description = "Generates contact sheets from video files"; homepage = "http://p.outlyer.net/vcs"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ elitak ]; - platforms = with platforms; unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ elitak ]; + platforms = with lib.platforms; unix; mainProgram = "vcs"; }; } diff --git a/pkgs/by-name/vc/vcs_query/package.nix b/pkgs/by-name/vc/vcs_query/package.nix index f3dbc2b031fb..4411838d0158 100644 --- a/pkgs/by-name/vc/vcs_query/package.nix +++ b/pkgs/by-name/vc/vcs_query/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { patchPythonScript $out/bin/vcs_query ''; - meta = with lib; { + meta = { homepage = "https://github.com/mageta/vcs_query"; description = "Email query-command to use vCards in mutt and Vim"; - license = licenses.mit; - maintainers = with maintainers; [ ma27 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ma27 ]; mainProgram = "vcs_query"; }; } diff --git a/pkgs/by-name/vc/vcstool/package.nix b/pkgs/by-name/vc/vcstool/package.nix index d014089090a6..3b3b5befaa3f 100644 --- a/pkgs/by-name/vc/vcstool/package.nix +++ b/pkgs/by-name/vc/vcstool/package.nix @@ -41,10 +41,10 @@ buildPythonApplication rec { pythonImportsCheck = [ "vcstool" ]; - meta = with lib; { + meta = { description = "Provides a command line tool to invoke vcs commands on multiple repositories"; homepage = "https://github.com/dirk-thomas/vcstool"; - license = licenses.asl20; - maintainers = with maintainers; [ sivteck ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sivteck ]; }; } diff --git a/pkgs/by-name/vc/vcv-rack/package.nix b/pkgs/by-name/vc/vcv-rack/package.nix index 692c88ab0e3a..761a00c43949 100644 --- a/pkgs/by-name/vc/vcv-rack/package.nix +++ b/pkgs/by-name/vc/vcv-rack/package.nix @@ -348,22 +348,22 @@ stdenv.mkDerivation (finalAttrs: { --add-flags "-s $out/Applications/'VCV Rack ${lib.versions.major finalAttrs.version} Free.app'/Contents/Resources" ''; - meta = with lib; { + meta = { description = "Open-source virtual modular synthesizer"; homepage = "https://vcvrack.com/"; # The source is GPL3+ licensed, some of the art is CC-BY-NC 4.0 or under a # no-derivatives clause - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-nc-40 unfreeRedistributable ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nathyong jpotier ddelabru ]; mainProgram = "Rack"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/vd/vde2/package.nix b/pkgs/by-name/vd/vde2/package.nix index 695940bee37e..15b9a1961849 100644 --- a/pkgs/by-name/vd/vde2/package.nix +++ b/pkgs/by-name/vd/vde2/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { wolfssl ]; - meta = with lib; { + meta = { homepage = "https://github.com/virtualsquare/vde-2"; description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network"; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/vd/vdhcoapp/filepicker.nix b/pkgs/by-name/vd/vdhcoapp/filepicker.nix index dd5b992e73df..16f02454d81b 100644 --- a/pkgs/by-name/vd/vdhcoapp/filepicker.nix +++ b/pkgs/by-name/vd/vdhcoapp/filepicker.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { pkg-config ]; - meta = with lib; { + meta = { description = "File picker used by VDHCoApp"; homepage = "https://github.com/paulrouget/static-filepicker"; - license = licenses.gpl2; + license = lib.licenses.gpl2; mainProgram = "filepicker"; - maintainers = with maintainers; [ hannesgith ]; + maintainers = with lib.maintainers; [ hannesgith ]; }; } diff --git a/pkgs/by-name/vd/vdhcoapp/package.nix b/pkgs/by-name/vd/vdhcoapp/package.nix index d4cad21ba302..8fdb802f1d75 100644 --- a/pkgs/by-name/vd/vdhcoapp/package.nix +++ b/pkgs/by-name/vd/vdhcoapp/package.nix @@ -72,12 +72,12 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Companion application for the Video DownloadHelper browser add-on"; homepage = "https://www.downloadhelper.net/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; platforms = lib.platforms.linux; - maintainers = with maintainers; [ hannesgith ]; + maintainers = with lib.maintainers; [ hannesgith ]; mainProgram = "vdhcoapp"; }; } diff --git a/pkgs/by-name/vd/vdmfec/package.nix b/pkgs/by-name/vd/vdmfec/package.nix index 2815e5ae92df..8658a997ca53 100644 --- a/pkgs/by-name/vd/vdmfec/package.nix +++ b/pkgs/by-name/vd/vdmfec/package.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Program that adds error correction blocks"; homepage = "http://members.tripod.com/professor_tom/archives/index.html"; - maintainers = [ maintainers.ar1a ]; - license = with licenses; [ + maintainers = [ lib.maintainers.ar1a ]; + license = with lib.licenses; [ gpl2 # for vdmfec bsd2 # for fec ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vd/vdo/package.nix b/pkgs/by-name/vd/vdo/package.nix index 4f143f3a7c12..f2252a025d83 100644 --- a/pkgs/by-name/vd/vdo/package.nix +++ b/pkgs/by-name/vd/vdo/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { homepage = "https://github.com/dm-vdo/vdo"; description = "Set of userspace tools for managing pools of deduplicated and/or compressed block storage"; # platforms are defined in https://github.com/dm-vdo/vdo/blob/master/utils/uds/atomicDefs.h @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { "powerpc64-linux" "powerpc64le-linux" ]; - license = with licenses; [ gpl2Plus ]; + license = with lib.licenses; [ gpl2Plus ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vd/vdpauinfo/package.nix b/pkgs/by-name/vd/vdpauinfo/package.nix index 0fd03c29d68f..129c4e611c4a 100644 --- a/pkgs/by-name/vd/vdpauinfo/package.nix +++ b/pkgs/by-name/vd/vdpauinfo/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { buildInputs = [ libvdpau ]; - meta = with lib; { + meta = { homepage = "https://people.freedesktop.org/~aplattner/vdpau/"; description = "Tool to query the Video Decode and Presentation API for Unix (VDPAU) abilities of the system"; - license = licenses.mit; # expat version - platforms = platforms.unix; - maintainers = with maintainers; [ vcunat ]; + license = lib.licenses.mit; # expat version + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vcunat ]; mainProgram = "vdpauinfo"; }; } diff --git a/pkgs/by-name/vd/vdrsymbols/package.nix b/pkgs/by-name/vd/vdrsymbols/package.nix index 253d8fa96291..cb765e2be130 100644 --- a/pkgs/by-name/vd/vdrsymbols/package.nix +++ b/pkgs/by-name/vd/vdrsymbols/package.nix @@ -21,17 +21,17 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "DejaVu fonts with additional symbols used by VDR"; homepage = "http://andreas.vdr-developer.org/fonts/"; - platforms = platforms.all; - maintainers = with maintainers; [ ck3d ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ck3d ]; # Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. # Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. # DejaVu changes are in public domain # See https://dejavu-fonts.github.io/License.html for details - license = with licenses; [ + license = with lib.licenses; [ bitstreamVera publicDomain ]; diff --git a/pkgs/by-name/ve/vector/package.nix b/pkgs/by-name/ve/vector/package.nix index 02361a3dd717..36f5a85f4da3 100644 --- a/pkgs/by-name/ve/vector/package.nix +++ b/pkgs/by-name/ve/vector/package.nix @@ -125,16 +125,16 @@ rustPlatform.buildRustPackage (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "High-performance observability data pipeline"; homepage = "https://github.com/vectordotdev/vector"; changelog = "https://github.com/vectordotdev/vector/releases/tag/v${finalAttrs.version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ thoughtpolice happysalada ]; - platforms = with platforms; all; + platforms = with lib.platforms; all; mainProgram = "vector"; }; }) diff --git a/pkgs/by-name/ve/vectorscan/package.nix b/pkgs/by-name/ve/vectorscan/package.nix index 8b174dc5feec..ed517d8a88bb 100644 --- a/pkgs/by-name/ve/vectorscan/package.nix +++ b/pkgs/by-name/ve/vectorscan/package.nix @@ -101,7 +101,7 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Portable fork of the high-performance regular expression matching library"; longDescription = '' A fork of Intel's Hyperscan, modified to run on more platforms. Currently @@ -117,13 +117,13 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.vectorcamp.gr/vectorscan/"; changelog = "https://github.com/VectorCamp/vectorscan/blob/${src.rev}/CHANGELOG-vectorscan.md"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ bsd3 # and bsd2 # and - licenses.boost + lib.licenses.boost ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tnias vlaci ]; diff --git a/pkgs/by-name/ve/vegeta/package.nix b/pkgs/by-name/ve/vegeta/package.nix index 303e0dd95251..c91cad3af46e 100644 --- a/pkgs/by-name/ve/vegeta/package.nix +++ b/pkgs/by-name/ve/vegeta/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { "-extldflags '-static'" ]; - meta = with lib; { + meta = { description = "Versatile HTTP load testing tool"; longDescription = '' Vegeta is a versatile HTTP load testing tool built out of a need to drill @@ -41,8 +41,8 @@ buildGoModule rec { ''; homepage = "https://github.com/tsenart/vegeta/"; changelog = "https://github.com/tsenart/vegeta/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmahut ]; mainProgram = "vegeta"; }; } diff --git a/pkgs/by-name/ve/vegur/package.nix b/pkgs/by-name/ve/vegur/package.nix index 850d274f707d..0d801ebdd3b7 100644 --- a/pkgs/by-name/ve/vegur/package.nix +++ b/pkgs/by-name/ve/vegur/package.nix @@ -24,14 +24,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://dotcolon.net/fonts/vegur/"; description = "Humanist sans serif font"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ djacu minijackson ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; }) diff --git a/pkgs/by-name/ve/veilid/package.nix b/pkgs/by-name/ve/veilid/package.nix index 1fb0b4a7671d..3e6f80b4e028 100644 --- a/pkgs/by-name/ve/veilid/package.nix +++ b/pkgs/by-name/ve/veilid/package.nix @@ -56,12 +56,12 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Open-source, peer-to-peer, mobile-first, networked application framework"; mainProgram = "veilid-server"; homepage = "https://veilid.com"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ bbigras qbit ]; diff --git a/pkgs/by-name/ve/vendir/package.nix b/pkgs/by-name/ve/vendir/package.nix index f1624c93d307..2b2705771688 100644 --- a/pkgs/by-name/ve/vendir/package.nix +++ b/pkgs/by-name/ve/vendir/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X carvel.dev/vendir/pkg/vendir/version.Version=${version}" ]; - meta = with lib; { + meta = { description = "CLI tool to vendor portions of git repos, github releases, helm charts, docker image contents, etc. declaratively"; mainProgram = "vendir"; homepage = "https://carvel.dev/vendir/"; - license = licenses.asl20; - maintainers = with maintainers; [ russell ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ russell ]; }; } diff --git a/pkgs/by-name/ve/vengi-tools/package.nix b/pkgs/by-name/ve/vengi-tools/package.nix index d42c9af1dad4..1efef3bad90c 100644 --- a/pkgs/by-name/ve/vengi-tools/package.nix +++ b/pkgs/by-name/ve/vengi-tools/package.nix @@ -115,7 +115,7 @@ stdenv.mkDerivation (finalAttrs: { run-voxedit = nixosTests.vengi-tools; }; - meta = with lib; { + meta = { description = "Tools from the vengi voxel engine, including a thumbnailer, a converter, and the VoxEdit voxel editor"; longDescription = '' Tools from the vengi C++ voxel game engine. It includes a voxel editor @@ -127,10 +127,10 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://vengi-voxel.github.io/vengi/"; downloadPage = "https://github.com/vengi-voxel/vengi/releases"; license = [ - licenses.mit - licenses.cc-by-sa-30 + lib.licenses.mit + lib.licenses.cc-by-sa-30 ]; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ve/venta/package.nix b/pkgs/by-name/ve/venta/package.nix index 1dfe7ed911e2..1546ed42b84c 100644 --- a/pkgs/by-name/ve/venta/package.nix +++ b/pkgs/by-name/ve/venta/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Gtk theme based on windows 10 style"; homepage = "https://www.pling.com/p/1386774/"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ve/verco/package.nix b/pkgs/by-name/ve/verco/package.nix index 27d99631c2eb..79923127e526 100644 --- a/pkgs/by-name/ve/verco/package.nix +++ b/pkgs/by-name/ve/verco/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-cpPEIFoEqc/4Md+/5e09B/ZQ+7cflLE+PY4ATAgWUvo="; - meta = with lib; { + meta = { description = "Simple Git/Mercurial/PlasticSCM tui client based on keyboard shortcuts"; homepage = "https://vamolessa.github.io/verco"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "verco"; }; diff --git a/pkgs/by-name/ve/verdict/package.nix b/pkgs/by-name/ve/verdict/package.nix index 535425a79df6..96eba1249fa2 100644 --- a/pkgs/by-name/ve/verdict/package.nix +++ b/pkgs/by-name/ve/verdict/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "Compute functions of 2- and 3-dimensional regions"; homepage = "https://github.com/sandialabs/verdict"; - license = licenses.bsd3; + license = lib.licenses.bsd3; changelog = "https://github.com/sandialabs/verdict/releases/tag/${finalAttrs.version}"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ve/verilator/package.nix b/pkgs/by-name/ve/verilator/package.nix index 2ea13942aee8..bafc727b0215 100644 --- a/pkgs/by-name/ve/verilator/package.nix +++ b/pkgs/by-name/ve/verilator/package.nix @@ -101,16 +101,16 @@ stdenv.mkDerivation rec { SYSTEMC_LIBDIR = "${lib.getLib systemc}/lib"; }; - meta = with lib; { + meta = { changelog = "https://github.com/verilator/verilator/blob/${src.tag}/Changes"; description = "Fast and robust (System)Verilog simulator/compiler and linter"; homepage = "https://www.veripool.org/verilator"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only artistic2 ]; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice amiloradovsky ]; diff --git a/pkgs/by-name/ve/verit/package.nix b/pkgs/by-name/ve/verit/package.nix index 66608bddbc10..72d82b4c9250 100644 --- a/pkgs/by-name/ve/verit/package.nix +++ b/pkgs/by-name/ve/verit/package.nix @@ -33,11 +33,11 @@ gccStdenv.mkDerivation { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Open, trustable and efficient SMT-solver"; homepage = "https://verit.loria.fr/"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ve/versus/package.nix b/pkgs/by-name/ve/versus/package.nix index 1345f44e1433..9f5a9507d0a4 100644 --- a/pkgs/by-name/ve/versus/package.nix +++ b/pkgs/by-name/ve/versus/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-e116ZXofSnD7+5f8xdBjpMYdeUhGPVTLfaxnhhqTIrQ="; - meta = with lib; { + meta = { description = "Benchmark multiple API endpoints against each other"; homepage = "https://github.com/INFURA/versus"; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmahut ]; mainProgram = "versus"; }; } diff --git a/pkgs/by-name/vg/vgmplay-libvgm/package.nix b/pkgs/by-name/vg/vgmplay-libvgm/package.nix index 76ffc613df76..cd92f44f6276 100644 --- a/pkgs/by-name/vg/vgmplay-libvgm/package.nix +++ b/pkgs/by-name/vg/vgmplay-libvgm/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { url = "https://github.com/ValleyBell/vgmplay-libvgm.git"; }; - meta = with lib; { + meta = { mainProgram = "vgmplay"; homepage = "https://github.com/ValleyBell/vgmplay-libvgm"; description = "New VGMPlay, based on libvgm"; - license = licenses.unfree; # no licensing text anywhere yet - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.unfree; # no licensing text anywhere yet + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vg/vgmstream/package.nix b/pkgs/by-name/vg/vgmstream/package.nix index f1c3ef1a0447..441419ea5872 100644 --- a/pkgs/by-name/vg/vgmstream/package.nix +++ b/pkgs/by-name/vg/vgmstream/package.nix @@ -104,14 +104,14 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Library for playback of various streamed audio formats used in video games"; homepage = "https://vgmstream.org"; - maintainers = with maintainers; [ zane ]; + maintainers = with lib.maintainers; [ zane ]; license = - with licenses; + with lib.licenses; [ isc # vgmstream itself mit # atrac9 ] ++ optional (stdenv.system == "x86_64-linux") bsd2; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; }) diff --git a/pkgs/by-name/vg/vgrep/package.nix b/pkgs/by-name/vg/vgrep/package.nix index 1e20565bd69e..5979af3b299a 100644 --- a/pkgs/by-name/vg/vgrep/package.nix +++ b/pkgs/by-name/vg/vgrep/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { installManPage docs/*.[1-9] ''; - meta = with lib; { + meta = { description = "User-friendly pager for grep/git-grep/ripgrep"; mainProgram = "vgrep"; homepage = "https://github.com/vrothberg/vgrep"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/by-name/vh/vhd2vl/package.nix b/pkgs/by-name/vh/vhd2vl/package.nix index 652c674de8de..f4edf6b4291d 100644 --- a/pkgs/by-name/vh/vhd2vl/package.nix +++ b/pkgs/by-name/vh/vhd2vl/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "VHDL to Verilog converter"; mainProgram = "vhd2vl"; homepage = "https://github.com/ldoolitt/vhd2vl"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ matthuszagh ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ matthuszagh ]; }; } diff --git a/pkgs/by-name/vi/via/package.nix b/pkgs/by-name/vi/via/package.nix index 04e624a6395b..2e47cda3afc1 100644 --- a/pkgs/by-name/vi/via/package.nix +++ b/pkgs/by-name/vi/via/package.nix @@ -33,12 +33,12 @@ appimageTools.wrapType2 { echo 'KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0666", TAG+="uaccess", TAG+="udev-acl"' > $out/etc/udev/rules.d/92-viia.rules ''; - meta = with lib; { + meta = { description = "Yet another keyboard configurator"; homepage = "https://caniusevia.com/"; # Upstream claims to be GPL-3 but doesn't release source code - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ emilytrau ]; platforms = [ "x86_64-linux" ]; mainProgram = "via"; }; diff --git a/pkgs/by-name/vi/vibrantlinux/package.nix b/pkgs/by-name/vi/vibrantlinux/package.nix index 40821c700d63..84be8c2ed8fb 100644 --- a/pkgs/by-name/vi/vibrantlinux/package.nix +++ b/pkgs/by-name/vi/vibrantlinux/package.nix @@ -35,15 +35,15 @@ stdenv.mkDerivation (finalAttrs: { qt6.qttools ]; - meta = with lib; { + meta = { description = "Tool to automate managing your screen's saturation depending on what programs are running"; homepage = "https://github.com/libvibrant/vibrantLinux"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ Scrumplex unclamped ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "vibrantLinux"; }; }) diff --git a/pkgs/by-name/vi/viceroy/package.nix b/pkgs/by-name/vi/viceroy/package.nix index dd1952c05fa5..0c2d0a2528d5 100644 --- a/pkgs/by-name/vi/viceroy/package.nix +++ b/pkgs/by-name/vi/viceroy/package.nix @@ -21,14 +21,14 @@ rustPlatform.buildRustPackage rec { "--package viceroy-lib" ]; - meta = with lib; { + meta = { description = "Provides local testing for developers working with Compute@Edge"; mainProgram = "viceroy"; homepage = "https://github.com/fastly/Viceroy"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ereslibre ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/vi/victor-mono/package.nix b/pkgs/by-name/vi/victor-mono/package.nix index 9ae2a77db05c..7702c81cb644 100644 --- a/pkgs/by-name/vi/victor-mono/package.nix +++ b/pkgs/by-name/vi/victor-mono/package.nix @@ -32,11 +32,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free programming font with cursive italics and ligatures"; homepage = "https://rubjo.github.io/victor-mono"; - license = licenses.ofl; - maintainers = with maintainers; [ jpotier ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ jpotier ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vi/viewnior/package.nix b/pkgs/by-name/vi/viewnior/package.nix index c27a79bd70a9..bea5bd52d1f1 100644 --- a/pkgs/by-name/vi/viewnior/package.nix +++ b/pkgs/by-name/vi/viewnior/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation { ) ''; - meta = with lib; { + meta = { description = "Fast and simple image viewer"; longDescription = '' Viewnior is insipred by big projects like Eye of Gnome, because of it's @@ -83,13 +83,13 @@ stdenv.mkDerivation { with the quality of it's functions. The program is made with better integration in mind (follows Gnome HIG2). ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://siyanpanayotov.com/project/viewnior/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ smironov artturin ]; - platforms = platforms.gnu ++ platforms.linux; + platforms = lib.platforms.gnu ++ lib.platforms.linux; mainProgram = "viewnior"; }; } diff --git a/pkgs/by-name/vi/viking/package.nix b/pkgs/by-name/vi/viking/package.nix index 19ea89fef086..be02ff45ee77 100644 --- a/pkgs/by-name/vi/viking/package.nix +++ b/pkgs/by-name/vi/viking/package.nix @@ -102,7 +102,7 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "GPS data editor and analyzer"; mainProgram = "viking"; longDescription = '' @@ -113,11 +113,11 @@ stdenv.mkDerivation rec { position, etc. ''; homepage = "https://sourceforge.net/projects/viking/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub sikmir ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/vi/vim-startuptime/package.nix b/pkgs/by-name/vi/vim-startuptime/package.nix index e3b58b92316d..7cd1cf1dcdf0 100644 --- a/pkgs/by-name/vi/vim-startuptime/package.nix +++ b/pkgs/by-name/vi/vim-startuptime/package.nix @@ -29,11 +29,11 @@ buildGoModule { vendorHash = null; - meta = with lib; { + meta = { homepage = "https://github.com/rhysd/vim-startuptime"; description = "Small Go program for better `vim --startuptime` alternative"; - maintainers = with maintainers; [ _9yokuro ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ _9yokuro ]; + license = lib.licenses.mit; mainProgram = "vim-startuptime"; }; } diff --git a/pkgs/by-name/vi/vimcats/package.nix b/pkgs/by-name/vi/vimcats/package.nix index 878aba5311de..4123f1b03628 100644 --- a/pkgs/by-name/vi/vimcats/package.nix +++ b/pkgs/by-name/vi/vimcats/package.nix @@ -23,7 +23,7 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = vimcats; }; - meta = with lib; { + meta = { description = "CLI to generate vim/nvim help doc from LuaCATS. Forked from lemmy-help"; longDescription = '' `vimcats` is a LuaCATS parser as well as a CLI which takes that parsed tree and converts it into vim help docs. @@ -31,8 +31,8 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/mrcjkb/vimcats"; changelog = "https://github.com/mrcjkb/vimcats/CHANGELOG.md"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ mrcjkb ]; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ mrcjkb ]; mainProgram = "vimcats"; }; } diff --git a/pkgs/by-name/vi/vimer/package.nix b/pkgs/by-name/vi/vimer/package.nix index e131eb0e044f..61929aba1577 100644 --- a/pkgs/by-name/vi/vimer/package.nix +++ b/pkgs/by-name/vi/vimer/package.nix @@ -21,15 +21,15 @@ stdenv.mkDerivation rec { chmod +x $out/bin/vimer ''; - meta = with lib; { + meta = { homepage = "https://github.com/susam/vimer"; description = '' A convenience wrapper for gvim/mvim --remote(-tab)-silent to open files in an existing instance of GVim or MacVim. ''; - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.all; mainProgram = "vimer"; }; diff --git a/pkgs/by-name/vi/vimgolf/package.nix b/pkgs/by-name/vi/vimgolf/package.nix index f2e6c5075f14..5d4ac5ce13db 100644 --- a/pkgs/by-name/vi/vimgolf/package.nix +++ b/pkgs/by-name/vi/vimgolf/package.nix @@ -11,11 +11,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "vimgolf"; - meta = with lib; { + meta = { description = "Game that tests Vim efficiency"; homepage = "https://vimgolf.com"; - license = licenses.mit; - maintainers = with maintainers; [ leungbk ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leungbk ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/vi/vimiv-qt/package.nix b/pkgs/by-name/vi/vimiv-qt/package.nix index e7f69c62da0b..260094abb205 100644 --- a/pkgs/by-name/vi/vimiv-qt/package.nix +++ b/pkgs/by-name/vi/vimiv-qt/package.nix @@ -53,12 +53,12 @@ python3.pkgs.buildPythonApplication rec { wrapQtApp $out/bin/vimiv ''; - meta = with lib; { + meta = { description = "Image viewer with Vim-like keybindings (Qt port)"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/karlch/vimiv-qt"; - maintainers = with maintainers; [ dschrempf ]; + maintainers = with lib.maintainers; [ dschrempf ]; mainProgram = "vimiv"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vi/vimix-cursors/package.nix b/pkgs/by-name/vi/vimix-cursors/package.nix index b55a999ec03e..fc331a52ded4 100644 --- a/pkgs/by-name/vi/vimix-cursors/package.nix +++ b/pkgs/by-name/vi/vimix-cursors/package.nix @@ -46,11 +46,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "X cursor theme inspired by Materia design"; homepage = "https://github.com/vinceliuice/Vimix-cursors"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ambroisie ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ambroisie ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vi/vimix-gtk-themes/package.nix b/pkgs/by-name/vi/vimix-gtk-themes/package.nix index 72f667148a5f..5e1de05e5672 100644 --- a/pkgs/by-name/vi/vimix-gtk-themes/package.nix +++ b/pkgs/by-name/vi/vimix-gtk-themes/package.nix @@ -88,11 +88,11 @@ lib.checkListOfEnum "${pname}: theme variants" passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Flat Material Design theme for GTK based desktop environments"; homepage = "https://github.com/vinceliuice/vimix-gtk-themes"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/vi/vimix-icon-theme/package.nix b/pkgs/by-name/vi/vimix-icon-theme/package.nix index 5d39400df9c4..f9c293c953d2 100644 --- a/pkgs/by-name/vi/vimix-icon-theme/package.nix +++ b/pkgs/by-name/vi/vimix-icon-theme/package.nix @@ -72,11 +72,11 @@ lib.checkListOfEnum "${pname}: color variants" passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Material Design icon theme based on Paper icon theme"; homepage = "https://github.com/vinceliuice/vimix-icon-theme"; - license = with licenses; [ cc-by-sa-40 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + license = with lib.licenses; [ cc-by-sa-40 ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/vi/vimpc/package.nix b/pkgs/by-name/vi/vimpc/package.nix index 3a546b764f97..f18fc98310e1 100644 --- a/pkgs/by-name/vi/vimpc/package.nix +++ b/pkgs/by-name/vi/vimpc/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { cp doc/vimpcrc.example $out/etc ''; - meta = with lib; { + meta = { description = "Vi/vim inspired client for the Music Player Daemon (mpd)"; homepage = "https://github.com/boysetsfrog/vimpc"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "vimpc"; }; } diff --git a/pkgs/by-name/vi/vimv-rs/package.nix b/pkgs/by-name/vi/vimv-rs/package.nix index 75803cff0109..20c21c141360 100644 --- a/pkgs/by-name/vi/vimv-rs/package.nix +++ b/pkgs/by-name/vi/vimv-rs/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-A+Ba3OWQDAramwin1Yc1YDOyabuEEaZGhE1gel2tFoM="; - meta = with lib; { + meta = { description = "Command line utility for batch-renaming files"; homepage = "https://www.dmulholl.com/dev/vimv.html"; - license = licenses.bsd0; + license = lib.licenses.bsd0; mainProgram = "vimv"; - maintainers = with maintainers; [ zowoq ]; + maintainers = with lib.maintainers; [ zowoq ]; }; } diff --git a/pkgs/by-name/vi/vimv/package.nix b/pkgs/by-name/vi/vimv/package.nix index 105e74942232..724b36f5db31 100644 --- a/pkgs/by-name/vi/vimv/package.nix +++ b/pkgs/by-name/vi/vimv/package.nix @@ -21,12 +21,12 @@ stdenvNoCC.mkDerivation { patchShebangs $out/bin/vimv ''; - meta = with lib; { + meta = { homepage = "https://github.com/thameera/vimv"; description = "Batch-rename files using Vim"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ kmein ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kmein ]; mainProgram = "vimv"; }; } diff --git a/pkgs/by-name/vi/virt-manager/package.nix b/pkgs/by-name/vi/virt-manager/package.nix index 6ea45f71cac9..94ff866c48e5 100644 --- a/pkgs/by-name/vi/virt-manager/package.nix +++ b/pkgs/by-name/vi/virt-manager/package.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation rec { patchShebangs $out/bin ''; - meta = with lib; { + meta = { homepage = "https://virt-manager.org"; description = "Desktop user interface for managing virtual machines"; longDescription = '' @@ -103,10 +103,10 @@ stdenv.mkDerivation rec { virtual machines through libvirt. It primarily targets KVM VMs, but also manages Xen and LXC (linux containers). ''; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; mainProgram = "virt-manager"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fpletz ]; }; diff --git a/pkgs/by-name/vi/virt-viewer/package.nix b/pkgs/by-name/vi/virt-viewer/package.nix index 4f08bc08e0fd..02bf0f2062c1 100644 --- a/pkgs/by-name/vi/virt-viewer/package.nix +++ b/pkgs/by-name/vi/virt-viewer/package.nix @@ -102,15 +102,15 @@ stdenv.mkDerivation rec { patchShebangs build-aux/post_install.py ''; - meta = with lib; { + meta = { homepage = "https://virt-manager.org/"; description = "Viewer for remote virtual machines"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin atemu ]; - platforms = with platforms; linux ++ darwin; - license = licenses.gpl2; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.gpl2; mainProgram = "virt-viewer"; }; passthru = { diff --git a/pkgs/by-name/vi/virt-what/package.nix b/pkgs/by-name/vi/virt-what/package.nix index b06b0761a24b..e5d69872b0fb 100644 --- a/pkgs/by-name/vi/virt-what/package.nix +++ b/pkgs/by-name/vi/virt-what/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-1Nm9nUrlkJVZdEP6xmNJUxXH60MwuHKqXwYt84rGm/E="; }; - meta = with lib; { + meta = { description = "Detect if running in a virtual machine and prints its type"; homepage = "https://people.redhat.com/~rjones/virt-what/"; - maintainers = with maintainers; [ fpletz ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ fpletz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "virt-what"; }; } diff --git a/pkgs/by-name/vi/virtio-win/package.nix b/pkgs/by-name/vi/virtio-win/package.nix index 139599f7166c..b84263e98a22 100644 --- a/pkgs/by-name/vi/virtio-win/package.nix +++ b/pkgs/by-name/vi/virtio-win/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Windows VirtIO Drivers"; homepage = "https://docs.fedoraproject.org/en-US/quick-docs/creating-windows-virtual-machines-using-virtio-drivers/index.html"; changelog = "https://fedorapeople.org/groups/virt/virtio-win/CHANGELOG"; - license = [ licenses.bsd3 ]; - maintainers = with maintainers; [ anthonyroussel ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.linux; + license = [ lib.licenses.bsd3 ]; + maintainers = with lib.maintainers; [ anthonyroussel ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vi/virtiofsd/package.nix b/pkgs/by-name/vi/virtiofsd/package.nix index a9bf7b47ca1e..19b607a1aab7 100644 --- a/pkgs/by-name/vi/virtiofsd/package.nix +++ b/pkgs/by-name/vi/virtiofsd/package.nix @@ -44,17 +44,17 @@ rustPlatform.buildRustPackage (finalAttrs: { ]; doInstallCheck = true; - meta = with lib; { + meta = { homepage = "https://gitlab.com/virtio-fs/virtiofsd"; changelog = "https://gitlab.com/virtio-fs/virtiofsd/-/releases/v${finalAttrs.version}"; description = "vhost-user virtio-fs device backend written in Rust"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ qyliss astro ]; mainProgram = "virtiofsd"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ asl20 # and bsd3 ]; diff --git a/pkgs/by-name/vi/virtual-ans/package.nix b/pkgs/by-name/vi/virtual-ans/package.nix index 88a6c1bd858e..47063e9cd9b0 100644 --- a/pkgs/by-name/vi/virtual-ans/package.nix +++ b/pkgs/by-name/vi/virtual-ans/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { else ""; - meta = with lib; { + meta = { description = "Photoelectronic microtonal/spectral musical instrument"; longDescription = '' Virtual ANS is a software simulator of the unique Russian synthesizer ANS @@ -90,14 +90,14 @@ stdenv.mkDerivation rec { + supported sound systems: ASIO, DirectSound, MME, ALSA, OSS, JACK, Audiobus, IAA. ''; homepage = "https://warmplace.ru/soft/ans/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfreeRedistributable; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfreeRedistributable; # I cannot test the Darwin version, so I'll leave it disabled platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ jacg ]; + maintainers = with lib.maintainers; [ jacg ]; }; } diff --git a/pkgs/by-name/vi/virtualpg/package.nix b/pkgs/by-name/vi/virtualpg/package.nix index 094d74e3f5d2..5bd5c48cec59 100644 --- a/pkgs/by-name/vi/virtualpg/package.nix +++ b/pkgs/by-name/vi/virtualpg/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation rec { sqlite ]; - meta = with lib; { + meta = { description = "Loadable dynamic extension to both SQLite and SpatiaLite"; homepage = "https://www.gaia-gis.it/fossil/virtualpg"; - license = with licenses; [ + license = with lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/vi/vis/package.nix b/pkgs/by-name/vi/vis/package.nix index c848797dac0d..ec242273647b 100644 --- a/pkgs/by-name/vi/vis/package.nix +++ b/pkgs/by-name/vi/vis/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Vim like editor"; homepage = "https://github.com/martanne/vis"; - license = licenses.isc; - maintainers = with maintainers; [ ramkromberg ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ramkromberg ]; + platforms = lib.platforms.unix; mainProgram = "vis"; }; } diff --git a/pkgs/by-name/vi/visual-hexdiff/package.nix b/pkgs/by-name/vi/visual-hexdiff/package.nix index e9f92df7adb9..403be822cf03 100644 --- a/pkgs/by-name/vi/visual-hexdiff/package.nix +++ b/pkgs/by-name/vi/visual-hexdiff/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Visual hexadecimal difference editor"; homepage = "http://tboudet.free.fr/hexdiff/"; - license = licenses.wtfpl; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ erictapen ]; mainProgram = "hexdiff"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/vi/visualvm/package.nix b/pkgs/by-name/vi/visualvm/package.nix index 74e940a72963..97b902ee08f1 100644 --- a/pkgs/by-name/vi/visualvm/package.nix +++ b/pkgs/by-name/vi/visualvm/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { cp -r . $out ''; - meta = with lib; { + meta = { description = "Visual interface for viewing information about Java applications"; mainProgram = "visualvm"; longDescription = '' @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { SE platform. ''; homepage = "https://visualvm.github.io"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus classpathException20 ]; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ michalrus moaxcp ]; diff --git a/pkgs/by-name/vi/vit/package.nix b/pkgs/by-name/vi/vit/package.nix index 88ab07958ba4..d96f7c300efa 100644 --- a/pkgs/by-name/vi/vit/package.nix +++ b/pkgs/by-name/vi/vit/package.nix @@ -41,12 +41,12 @@ buildPythonApplication rec { pythonImportsCheck = [ "vit" ]; - meta = with lib; { + meta = { homepage = "https://github.com/scottkosty/vit"; description = "Visual Interactive Taskwarrior"; mainProgram = "vit"; - maintainers = with maintainers; [ arcnmx ]; - platforms = platforms.all; - license = licenses.mit; + maintainers = with lib.maintainers; [ arcnmx ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/vi/vivaldi-ffmpeg-codecs/package.nix b/pkgs/by-name/vi/vivaldi-ffmpeg-codecs/package.nix index 1997b977c8f5..a23079b6c140 100644 --- a/pkgs/by-name/vi/vivaldi-ffmpeg-codecs/package.nix +++ b/pkgs/by-name/vi/vivaldi-ffmpeg-codecs/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Additional support for proprietary codecs for Vivaldi and other chromium based tools"; homepage = "https://ffmpeg.org/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.lgpl21; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ betaboon cawilliamson fptje diff --git a/pkgs/by-name/vi/vivid/package.nix b/pkgs/by-name/vi/vivid/package.nix index 2fc7f5847f9a..ea7fe8db1a41 100644 --- a/pkgs/by-name/vi/vivid/package.nix +++ b/pkgs/by-name/vi/vivid/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-oP5/G/PSkwn4JruLQOGtM8M2uPt4Q88bU3kNmXUK4JE="; - meta = with lib; { + meta = { description = "Generator for LS_COLORS with support for multiple color themes"; homepage = "https://github.com/sharkdp/vivid"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = [ maintainers.dtzWill ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.dtzWill ]; + platforms = lib.platforms.unix; mainProgram = "vivid"; }; } diff --git a/pkgs/by-name/vi/viw/package.nix b/pkgs/by-name/vi/viw/package.nix index 32241d679446..98dfb077f257 100644 --- a/pkgs/by-name/vi/viw/package.nix +++ b/pkgs/by-name/vi/viw/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation { install -Dm 644 -t $out/share/doc/viw README.md ''; - meta = with lib; { + meta = { description = "VI Worsened, a fun and light clone of VI"; homepage = "https://github.com/lpan/viw"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "viw"; }; diff --git a/pkgs/by-name/vi/vix/package.nix b/pkgs/by-name/vi/vix/package.nix index 80f7e2307633..123963dee9f0 100644 --- a/pkgs/by-name/vi/vix/package.nix +++ b/pkgs/by-name/vi/vix/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation { buildInputs = [ SDL ]; - meta = with lib; { + meta = { description = "Visual Interface heXadecimal dump"; homepage = "http://actinid.org/vix/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "vix"; # sys/io.h missing on other platforms platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/vk/vk-bootstrap/package.nix b/pkgs/by-name/vk/vk-bootstrap/package.nix index 15ba18a3f10c..f5d6a5c18581 100644 --- a/pkgs/by-name/vk/vk-bootstrap/package.nix +++ b/pkgs/by-name/vk/vk-bootstrap/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { "-DVK_BOOTSTRAP_VULKAN_HEADER_DIR=${vulkan-headers}/include" ]; - meta = with lib; { + meta = { description = "Vulkan Bootstrapping Library"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/charles-lunarg/vk-bootstrap"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vk/vk-cli/package.nix b/pkgs/by-name/vk/vk-cli/package.nix index f66d08709a33..e5e800e1a3fb 100644 --- a/pkgs/by-name/vk/vk-cli/package.nix +++ b/pkgs/by-name/vk/vk-cli/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Console (ncurses) client for vk.com written in D"; mainProgram = "vk-cli"; homepage = "https://github.com/vk-cli/vk"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/vk/vk-messenger/package.nix b/pkgs/by-name/vk/vk-messenger/package.nix index c63aaf1527e3..750d270dad2b 100644 --- a/pkgs/by-name/vk/vk-messenger/package.nix +++ b/pkgs/by-name/vk/vk-messenger/package.nix @@ -35,11 +35,11 @@ let } .${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); - meta = with lib; { + meta = { description = "Simple and Convenient Messaging App for VK"; homepage = "https://vk.com/messenger"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "i686-linux" diff --git a/pkgs/by-name/vk/vkbasalt-cli/package.nix b/pkgs/by-name/vk/vkbasalt-cli/package.nix index c5e32ac4f5b8..1580f3d4c47e 100644 --- a/pkgs/by-name/vk/vkbasalt-cli/package.nix +++ b/pkgs/by-name/vk/vkbasalt-cli/package.nix @@ -26,10 +26,10 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "vkbasalt.lib" ]; - meta = with lib; { + meta = { description = "Command-line utility for vkBasalt"; homepage = "https://gitlab.com/TheEvilSkeleton/vkbasalt-cli"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only gpl3Only ]; diff --git a/pkgs/by-name/vk/vkdisplayinfo/package.nix b/pkgs/by-name/vk/vkdisplayinfo/package.nix index 85047758ca29..cb6ea5239dd7 100644 --- a/pkgs/by-name/vk/vkdisplayinfo/package.nix +++ b/pkgs/by-name/vk/vkdisplayinfo/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { vulkan-headers ]; - meta = with lib; { + meta = { description = "Print displays and modes enumerated with the Vulkan function vkGetPhysicalDeviceDisplayPropertiesKHR"; homepage = "https://github.com/ChristophHaag/vkdisplayinfo"; - platforms = platforms.linux; - license = licenses.boost; - maintainers = [ maintainers.LunNova ]; + platforms = lib.platforms.linux; + license = lib.licenses.boost; + maintainers = [ lib.maintainers.LunNova ]; mainProgram = "vkdisplayinfo"; }; } diff --git a/pkgs/by-name/vk/vkdt/package.nix b/pkgs/by-name/vk/vkdt/package.nix index 7ed563605a0d..2cbfa162f489 100644 --- a/pkgs/by-name/vk/vkdt/package.nix +++ b/pkgs/by-name/vk/vkdt/package.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation rec { package = vkdt; }; - meta = with lib; { + meta = { description = "Vulkan-powered raw image processor"; homepage = "https://github.com/hanatos/vkdt"; - license = licenses.bsd2; - maintainers = with maintainers; [ paperdigits ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ paperdigits ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vk/vkeybd/package.nix b/pkgs/by-name/vk/vkeybd/package.nix index b37b4c943439..2064d2cc5e64 100644 --- a/pkgs/by-name/vk/vkeybd/package.nix +++ b/pkgs/by-name/vk/vkeybd/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { "TCLLIB=-l${tcl.libPrefix}" ]; - meta = with lib; { + meta = { description = "Virtual MIDI keyboard"; homepage = "https://www.alsa-project.org/~tiwai/alsa.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vl/vlan/package.nix b/pkgs/by-name/vl/vlan/package.nix index 9a090459fd6f..e4b5d29c0c1b 100644 --- a/pkgs/by-name/vl/vlan/package.nix +++ b/pkgs/by-name/vl/vlan/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { cp vconfig.8 $out/share/man/man8/ ''; - meta = with lib; { + meta = { description = "User mode programs to enable VLANs on Ethernet devices"; homepage = "https://www.candelatech.com/~greear/vlan.html"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; mainProgram = "vconfig"; }; } diff --git a/pkgs/by-name/vl/vlang/package.nix b/pkgs/by-name/vl/vlang/package.nix index f61d8d4fd8bd..58580035c7ac 100644 --- a/pkgs/by-name/vl/vlang/package.nix +++ b/pkgs/by-name/vl/vlang/package.nix @@ -115,14 +115,14 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://vlang.io/"; description = "Simple, fast, safe, compiled language for developing maintainable software"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ delta231 ]; mainProgram = "v"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vl/vlc-bittorrent/package.nix b/pkgs/by-name/vl/vlc-bittorrent/package.nix index 40081ec71fd7..631b275befa9 100644 --- a/pkgs/by-name/vl/vlc-bittorrent/package.nix +++ b/pkgs/by-name/vl/vlc-bittorrent/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { rm -r $out/share/ ''; - meta = with lib; { + meta = { description = "Bittorrent plugin for VLC"; homepage = "https://github.com/johang/vlc-bittorrent"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.kintrix ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.kintrix ]; }; }) diff --git a/pkgs/by-name/vl/vlock/package.nix b/pkgs/by-name/vl/vlock/package.nix index a0d13df609a3..ac82ccaec579 100644 --- a/pkgs/by-name/vl/vlock/package.nix +++ b/pkgs/by-name/vl/vlock/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { buildInputs = [ pam ]; - meta = with lib; { + meta = { description = "Virtual console locking program"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "vlock"; }; } diff --git a/pkgs/by-name/vm/vmfs-tools/package.nix b/pkgs/by-name/vm/vmfs-tools/package.nix index 6f7806172332..01c442d7f4ae 100644 --- a/pkgs/by-name/vm/vmfs-tools/package.nix +++ b/pkgs/by-name/vm/vmfs-tools/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/doc/vmfs-tools AUTHORS LICENSE README TODO ''; - meta = with lib; { + meta = { description = "FUSE-based VMFS (vmware) file system tools"; - maintainers = with maintainers; [ peterhoeg ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; inherit (src.meta) homepage; }; } diff --git a/pkgs/by-name/vm/vmmlib/package.nix b/pkgs/by-name/vm/vmmlib/package.nix index 426a4c04fd80..26d6cc59b1ce 100644 --- a/pkgs/by-name/vm/vmmlib/package.nix +++ b/pkgs/by-name/vm/vmmlib/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { checkTarget = "test"; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Vector and matrix math library implemented using C++ templates"; @@ -60,9 +60,9 @@ stdenv.mkDerivation rec { computations and frustum culling classes, and spatial data structures ''; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://github.com/VMML/vmmlib/"; - maintainers = [ maintainers.adev ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.adev ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vm/vmpk/package.nix b/pkgs/by-name/vm/vmpk/package.nix index e690b3197e3c..77d8427c0bf7 100644 --- a/pkgs/by-name/vm/vmpk/package.nix +++ b/pkgs/by-name/vm/vmpk/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { ln -s ${qt6Packages.drumstick}/share/drumstick $out/share/ ''; - meta = with lib; { + meta = { description = "Virtual MIDI Piano Keyboard"; mainProgram = "vmpk"; homepage = "http://vmpk.sourceforge.net/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vn/vnstat/package.nix b/pkgs/by-name/vn/vnstat/package.nix index 2e3d1cae0a00..16a816bb6f80 100644 --- a/pkgs/by-name/vn/vnstat/package.nix +++ b/pkgs/by-name/vn/vnstat/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Console-based network statistics utility for Linux"; longDescription = '' vnStat is a console-based network traffic monitor for Linux and BSD that @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { ensures light use of system resources. ''; homepage = "https://humdi.net/vnstat/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vo/vo-aacenc/package.nix b/pkgs/by-name/vo/vo-aacenc/package.nix index 62560180785f..f5d7b9589966 100644 --- a/pkgs/by-name/vo/vo-aacenc/package.nix +++ b/pkgs/by-name/vo/vo-aacenc/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-5Rp0d6NZ8Y33xPgtGV2rThTnQUy9SM95zBlfxEaFDzY="; }; - meta = with lib; { + meta = { description = "VisualOn AAC encoder library"; homepage = "https://sourceforge.net/projects/opencore-amr/"; - license = licenses.asl20; - maintainers = [ maintainers.baloo ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.baloo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vo/vocproc/package.nix b/pkgs/by-name/vo/vocproc/package.nix index 2bc9e4db4f12..7c0094da3dfc 100644 --- a/pkgs/by-name/vo/vocproc/package.nix +++ b/pkgs/by-name/vo/vocproc/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "INSTALL_DIR=$(out)/lib/lv2" ]; - meta = with lib; { + meta = { homepage = "https://hyperglitch.com/dev/VocProc"; description = "LV2 plugin for pitch shifting (with or without formant correction), vocoding, automatic pitch correction and harmonizing of singing voice (harmonizer)"; - license = licenses.gpl2; - maintainers = [ maintainers.michalrus ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.michalrus ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vo/volantes-cursors/package.nix b/pkgs/by-name/vo/volantes-cursors/package.nix index 026d4bf3ae93..85fc0f90678a 100644 --- a/pkgs/by-name/vo/volantes-cursors/package.nix +++ b/pkgs/by-name/vo/volantes-cursors/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { "PREFIX=" ]; - meta = with lib; { + meta = { homepage = "https://www.pling.com/p/1356095/"; description = "Classic cursor theme with a flying style"; - license = licenses.gpl2; - maintainers = with maintainers; [ jordanisaacs ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ jordanisaacs ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; # build timeout }; } diff --git a/pkgs/by-name/vo/volatility2-bin/package.nix b/pkgs/by-name/vo/volatility2-bin/package.nix index 971b4425b671..facd93842e85 100644 --- a/pkgs/by-name/vo/volatility2-bin/package.nix +++ b/pkgs/by-name/vo/volatility2-bin/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://volatilityfoundation.org/"; mainProgram = "volatility2"; description = "Advanced memory forensics framework"; diff --git a/pkgs/by-name/vo/volatility3/package.nix b/pkgs/by-name/vo/volatility3/package.nix index 750892fc96ce..eed8f8d6f479 100644 --- a/pkgs/by-name/vo/volatility3/package.nix +++ b/pkgs/by-name/vo/volatility3/package.nix @@ -39,7 +39,7 @@ python3.pkgs.buildPythonApplication rec { "volatility3" ]; - meta = with lib; { + meta = { description = "Volatile memory extraction frameworks"; homepage = "https://www.volatilityfoundation.org/"; changelog = "https://github.com/volatilityfoundation/volatility3/releases/tag/${src.tag}"; @@ -48,6 +48,6 @@ python3.pkgs.buildPythonApplication rec { free = false; url = "https://www.volatilityfoundation.org/license/vsl-v1.0"; }; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/vo/volctl/package.nix b/pkgs/by-name/vo/volctl/package.nix index a1578720bd0d..cb0bc1c98c37 100644 --- a/pkgs/by-name/vo/volctl/package.nix +++ b/pkgs/by-name/vo/volctl/package.nix @@ -63,12 +63,12 @@ python3Packages.buildPythonApplication rec { gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${libpulseaudio}/lib") ''; - meta = with lib; { + meta = { description = "PulseAudio enabled volume control featuring per-app sliders"; homepage = "https://buzz.github.io/volctl/"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; mainProgram = "volctl"; }; } diff --git a/pkgs/by-name/vo/volk/package.nix b/pkgs/by-name/vo/volk/package.nix index 97a962fbf738..ec9c48351f4a 100644 --- a/pkgs/by-name/vo/volk/package.nix +++ b/pkgs/by-name/vo/volk/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "http://libvolk.org/"; description = "Vector Optimized Library of Kernels"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/vo/vollkorn/package.nix b/pkgs/by-name/vo/vollkorn/package.nix index d0c780d687ba..ca464aa40d00 100644 --- a/pkgs/by-name/vo/vollkorn/package.nix +++ b/pkgs/by-name/vo/vollkorn/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://vollkorn-typeface.com/"; description = "Free and healthy typeface for bread and butter use"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.schmittlauch ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.schmittlauch ]; }; } diff --git a/pkgs/by-name/vo/volume_key/package.nix b/pkgs/by-name/vo/volume_key/package.nix index b798445a71ba..30a8cf0146be 100644 --- a/pkgs/by-name/vo/volume_key/package.nix +++ b/pkgs/by-name/vo/volume_key/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { doCheck = false; # fails 1 out of 1 tests, needs `certutil` - meta = with lib; { + meta = { description = "Library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases, and the associated command-line tool"; mainProgram = "volume_key"; homepage = "https://pagure.io/volume_key/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vo/volumeicon/package.nix b/pkgs/by-name/vo/volumeicon/package.nix index 6e8302d58f59..323572e392ed 100644 --- a/pkgs/by-name/vo/volumeicon/package.nix +++ b/pkgs/by-name/vo/volumeicon/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { # gettext >= 0.25 and autoconf (2.72 at the time of writing). env.ACLOCAL = "aclocal -I ${gettext}/share/gettext/m4"; - meta = with lib; { + meta = { description = "Lightweight volume control that sits in your systray"; homepage = "https://nullwise.com/pages/volumeicon/volumeicon.html"; - platforms = platforms.linux; - maintainers = with maintainers; [ bobvanderlinden ]; - license = licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bobvanderlinden ]; + license = lib.licenses.gpl3; mainProgram = "volumeicon"; }; } diff --git a/pkgs/by-name/vo/voms/package.nix b/pkgs/by-name/vo/voms/package.nix index 8bbcea533031..7746c13ff1b4 100644 --- a/pkgs/by-name/vo/voms/package.nix +++ b/pkgs/by-name/vo/voms/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation (finalAttrs: { ln -s ${lib.escapeShellArg externalEtc} "$out/etc" ''; - meta = with lib; { + meta = { description = "C/C++ VOMS server, client and APIs v2.x"; homepage = "https://italiangrid.github.io/voms/"; changelog = "https://github.com/italiangrid/voms/blob/master/ChangeLog"; - license = licenses.asl20; - platforms = platforms.linux; # gsoap is currently Linux-only in Nixpkgs - maintainers = with maintainers; [ ShamrockLee ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; # gsoap is currently Linux-only in Nixpkgs + maintainers = with lib.maintainers; [ ShamrockLee ]; }; }) diff --git a/pkgs/by-name/vo/vopono/package.nix b/pkgs/by-name/vo/vopono/package.nix index cc0f669b0203..193ea8e1951d 100644 --- a/pkgs/by-name/vo/vopono/package.nix +++ b/pkgs/by-name/vo/vopono/package.nix @@ -15,12 +15,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-2CeaDoDl8QyDXN8FHfHm6WRsJOfRiq6yRCKHsXXUV0w="; - meta = with lib; { + meta = { description = "Run applications through VPN connections in network namespaces"; homepage = "https://github.com/jamesmcm/vopono"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; mainProgram = "vopono"; }; } diff --git a/pkgs/by-name/vo/vorbis-tools/package.nix b/pkgs/by-name/vo/vorbis-tools/package.nix index e6a31ab4af21..29f432e400ae 100644 --- a/pkgs/by-name/vo/vorbis-tools/package.nix +++ b/pkgs/by-name/vo/vorbis-tools/package.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation rec { ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ]; - meta = with lib; { + meta = { description = "Extra tools for Ogg-Vorbis audio codec"; longDescription = '' A set of command-line tools to manipulate Ogg Vorbis audio files, notably the `ogg123' player and the `oggenc' encoder. ''; homepage = "https://xiph.org/vorbis/"; - license = licenses.gpl2; - platforms = platforms.all; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vo/vorbisgain/package.nix b/pkgs/by-name/vo/vorbisgain/package.nix index 6775b8d500fd..66d7125dde03 100644 --- a/pkgs/by-name/vo/vorbisgain/package.nix +++ b/pkgs/by-name/vo/vorbisgain/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { libvorbis ]; - meta = with lib; { + meta = { homepage = "https://sjeng.org/vorbisgain.html"; description = "Utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "vorbisgain"; }; } diff --git a/pkgs/by-name/vp/vpcs/package.nix b/pkgs/by-name/vp/vpcs/package.nix index fc2930c2c928..f70cba5ea043 100644 --- a/pkgs/by-name/vp/vpcs/package.nix +++ b/pkgs/by-name/vp/vpcs/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { command = "vpcs -v"; }; - meta = with lib; { + meta = { description = "Simple virtual PC simulator"; longDescription = '' The VPCS (Virtual PC Simulator) can simulate up to 9 PCs. You can @@ -47,9 +47,9 @@ stdenv.mkDerivation (finalAttrs: { VPCS when you study the Cisco routers in the dynamips. ''; inherit (finalAttrs.src.meta) homepage; - license = licenses.bsd2; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "vpcs"; - maintainers = with maintainers; [ anthonyroussel ]; + maintainers = with lib.maintainers; [ anthonyroussel ]; }; }) diff --git a/pkgs/by-name/vp/vpnc-scripts/package.nix b/pkgs/by-name/vp/vpnc-scripts/package.nix index 01f8f8ef2850..ef15c3834c9b 100644 --- a/pkgs/by-name/vp/vpnc-scripts/package.nix +++ b/pkgs/by-name/vp/vpnc-scripts/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { }" ''; - meta = with lib; { + meta = { homepage = "https://www.infradead.org/openconnect/"; description = "Script for vpnc to configure the network routing and name service"; mainProgram = "vpnc-script"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ jerith666 ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jerith666 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/vp/vpnc/package.nix b/pkgs/by-name/vp/vpnc/package.nix index cf905d6e76b3..a3d93d276643 100644 --- a/pkgs/by-name/vp/vpnc/package.nix +++ b/pkgs/by-name/vp/vpnc/package.nix @@ -68,10 +68,10 @@ stdenv.mkDerivation { enableParallelInstalling = false; strictDeps = true; - meta = with lib; { + meta = { homepage = "https://davidepucci.it/doc/vpnc/"; description = "Virtual private network (VPN) client for Cisco's VPN concentrators"; - license = if opensslSupport then licenses.unfree else licenses.gpl2Plus; - platforms = platforms.linux; + license = if opensslSupport then lib.licenses.unfree else lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vp/vpsfree-client/package.nix b/pkgs/by-name/vp/vpsfree-client/package.nix index 65da8d4c0318..88ead7a02f76 100644 --- a/pkgs/by-name/vp/vpsfree-client/package.nix +++ b/pkgs/by-name/vp/vpsfree-client/package.nix @@ -11,15 +11,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "vpsfree-client"; - meta = with lib; { + meta = { description = "Ruby API and CLI for the vpsFree.cz API"; homepage = "https://github.com/vpsfreecz/vpsfree-client"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aither64 zimbatm ]; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; mainProgram = "vpsfreectl"; }; } diff --git a/pkgs/by-name/vr/vrb/package.nix b/pkgs/by-name/vr/vrb/package.nix index 4f24c8cd9d25..b826f998d216 100644 --- a/pkgs/by-name/vr/vrb/package.nix +++ b/pkgs/by-name/vr/vrb/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { cp -p vrb/man/man3/*.3 $out/share/man/man3/ ''; - meta = with lib; { + meta = { description = "Virtual ring buffer library written in C"; mainProgram = "vbuf"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; homepage = "http://vrb.sourceforge.net/"; - maintainers = [ maintainers.bobvanderlinden ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.bobvanderlinden ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/vr/vrc-get/package.nix b/pkgs/by-name/vr/vrc-get/package.nix index f5438b66c9ae..8ac6ee897fb4 100644 --- a/pkgs/by-name/vr/vrc-get/package.nix +++ b/pkgs/by-name/vr/vrc-get/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { --zsh <(${vrc-get} completion zsh) ''; - meta = with lib; { + meta = { description = "Command line client of VRChat Package Manager, the main feature of VRChat Creator Companion (VCC)"; homepage = "https://github.com/vrc-get/vrc-get"; - license = licenses.mit; - maintainers = with maintainers; [ bddvlpr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bddvlpr ]; mainProgram = "vrc-get"; }; } diff --git a/pkgs/by-name/vr/vrpn/package.nix b/pkgs/by-name/vr/vrpn/package.nix index 44ba9f09ee6e..23f2ef0a54eb 100644 --- a/pkgs/by-name/vr/vrpn/package.nix +++ b/pkgs/by-name/vr/vrpn/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { libGL ]; - meta = with lib; { + meta = { description = "Virtual Reality Peripheral Network"; longDescription = '' The Virtual-Reality Peripheral Network (VRPN) is a set of classes @@ -39,8 +39,8 @@ stdenv.mkDerivation rec { (VR) system. ''; homepage = "https://github.com/vrpn/vrpn"; - license = licenses.boost; # see https://github.com/vrpn/vrpn/wiki/License - platforms = platforms.darwin ++ platforms.linux; - maintainers = with maintainers; [ ludo ]; + license = lib.licenses.boost; # see https://github.com/vrpn/vrpn/wiki/License + platforms = lib.platforms.darwin ++ lib.platforms.linux; + maintainers = with lib.maintainers; [ ludo ]; }; } diff --git a/pkgs/by-name/vr/vrrtest/package.nix b/pkgs/by-name/vr/vrrtest/package.nix index c1ee21a55e7e..8f2fa61f44a6 100644 --- a/pkgs/by-name/vr/vrrtest/package.nix +++ b/pkgs/by-name/vr/vrrtest/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool testing variable refresh rates"; homepage = "https://github.com/Nixola/VRRTest"; - license = licenses.zlib; + license = lib.licenses.zlib; mainProgram = "vrrtest"; - maintainers = with maintainers; [ justinlime ]; + maintainers = with lib.maintainers; [ justinlime ]; inherit (love.meta) platforms; }; }) diff --git a/pkgs/by-name/vs/vsc-leetcode-cli/package.nix b/pkgs/by-name/vs/vsc-leetcode-cli/package.nix index cdbfdfd4d512..c76fa9091f78 100644 --- a/pkgs/by-name/vs/vsc-leetcode-cli/package.nix +++ b/pkgs/by-name/vs/vsc-leetcode-cli/package.nix @@ -21,11 +21,11 @@ buildNpmPackage { dontCheckForBrokenSymlinks = true; - meta = with lib; { + meta = { description = "CLI tool for leetcode.com"; homepage = "https://github.com/leetcode-tools/leetcode-cli"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; mainProgram = "leetcode"; }; } diff --git a/pkgs/by-name/vs/vscode-langservers-extracted/package.nix b/pkgs/by-name/vs/vscode-langservers-extracted/package.nix index 228cf96966a4..dc9909dce825 100644 --- a/pkgs/by-name/vs/vscode-langservers-extracted/package.nix +++ b/pkgs/by-name/vs/vscode-langservers-extracted/package.nix @@ -47,10 +47,10 @@ buildNpmPackage rec { lib/eslint-language-server ''; - meta = with lib; { + meta = { description = "HTML/CSS/JSON/ESLint language servers extracted from vscode"; homepage = "https://github.com/hrsh7th/vscode-langservers-extracted"; - license = licenses.mit; - maintainers = with maintainers; [ lord-valen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lord-valen ]; }; } diff --git a/pkgs/by-name/vs/vsh/package.nix b/pkgs/by-name/vs/vsh/package.nix index af82e1a872d0..5359b1915923 100644 --- a/pkgs/by-name/vs/vsh/package.nix +++ b/pkgs/by-name/vs/vsh/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X main.vshVersion=v${version}" ]; - meta = with lib; { + meta = { description = "HashiCorp Vault interactive shell"; homepage = "https://github.com/fishi0x01/vsh"; - license = licenses.mit; - maintainers = with maintainers; [ fishi0x01 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fishi0x01 ]; mainProgram = "vsh"; }; } diff --git a/pkgs/by-name/vs/vsqlite/package.nix b/pkgs/by-name/vs/vsqlite/package.nix index 79c85ed7b03c..1ed1dcfc05f2 100644 --- a/pkgs/by-name/vs/vsqlite/package.nix +++ b/pkgs/by-name/vs/vsqlite/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { "-Wl,-install_name,$out/lib/libvsqlitepp.3.dylib" ''; - meta = with lib; { + meta = { homepage = "https://vsqlite.virtuosic-bytes.com/"; description = "C++ wrapper library for sqlite"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/vt/vtable-dumper/package.nix b/pkgs/by-name/vt/vtable-dumper/package.nix index dfa523430ddf..47f6e2e1c187 100644 --- a/pkgs/by-name/vt/vtable-dumper/package.nix +++ b/pkgs/by-name/vt/vtable-dumper/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { buildInputs = [ libelf ]; makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/lvc/vtable-dumper"; description = "Tool to list content of virtual tables in a C++ shared library"; mainProgram = "vtable-dumper"; - license = licenses.lgpl21; - platforms = platforms.all; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vt/vte/package.nix b/pkgs/by-name/vt/vte/package.nix index 5ea4aab814da..9282bb97366b 100644 --- a/pkgs/by-name/vt/vte/package.nix +++ b/pkgs/by-name/vt/vte/package.nix @@ -170,7 +170,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://www.gnome.org/"; description = "Library implementing a terminal emulator widget for GTK"; longDescription = '' @@ -181,11 +181,11 @@ stdenv.mkDerivation (finalAttrs: { character set conversion, as well as emulating any terminal known to the system's terminfo database. ''; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ antono ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/vt/vttest/package.nix b/pkgs/by-name/vt/vttest/package.nix index f1e4132c494b..ae713db4afe2 100644 --- a/pkgs/by-name/vt/vttest/package.nix +++ b/pkgs/by-name/vt/vttest/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-j+47rH6H1KpKIXvSs4q5kQw7jPmmBbRQx2zMCtKmUZ0="; }; - meta = with lib; { + meta = { description = "Tests the compatibility of so-called 'VT100-compatible' terminals"; homepage = "https://invisible-island.net/vttest/"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "vttest"; }; } diff --git a/pkgs/by-name/vu/vul/package.nix b/pkgs/by-name/vu/vul/package.nix index abfcd08d0ef9..39fd55d1e10f 100644 --- a/pkgs/by-name/vu/vul/package.nix +++ b/pkgs/by-name/vu/vul/package.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Latin Vulgate Bible on the Command Line"; homepage = "https://github.com/LukeSmithxyz/vul"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; maintainers = [ - maintainers.j0hax - maintainers.cafkafk + lib.maintainers.j0hax + lib.maintainers.cafkafk ]; mainProgram = "vul"; }; diff --git a/pkgs/by-name/vu/vulkan-cts/package.nix b/pkgs/by-name/vu/vulkan-cts/package.nix index 6d9d7b5615d1..d3651d783e18 100644 --- a/pkgs/by-name/vu/vulkan-cts/package.nix +++ b/pkgs/by-name/vu/vulkan-cts/package.nix @@ -143,11 +143,11 @@ stdenv.mkDerivation (finalAttrs: { touch $out ''; - meta = with lib; { + meta = { description = "Khronos Vulkan Conformance Tests"; homepage = "https://github.com/KhronosGroup/VK-GL-CTS/blob/main/external/vulkancts/README.md"; changelog = "https://github.com/KhronosGroup/VK-GL-CTS/releases/tag/vulkan-cts-${finalAttrs.version}"; - license = licenses.asl20; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Flakebi ]; }; }) diff --git a/pkgs/by-name/vu/vulkan-extension-layer/package.nix b/pkgs/by-name/vu/vulkan-extension-layer/package.nix index 057589a9a18c..9d1561c00027 100644 --- a/pkgs/by-name/vu/vulkan-extension-layer/package.nix +++ b/pkgs/by-name/vu/vulkan-extension-layer/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Layers providing Vulkan features when native support is unavailable"; homepage = "https://github.com/KhronosGroup/Vulkan-ExtensionLayer/"; - platforms = platforms.linux; - license = licenses.asl20; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vu/vulkan-headers/package.nix b/pkgs/by-name/vu/vulkan-headers/package.nix index cd719a2021ce..dad0deb6d48f 100644 --- a/pkgs/by-name/vu/vulkan-headers/package.nix +++ b/pkgs/by-name/vu/vulkan-headers/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Vulkan Header files and API registry"; homepage = "https://www.lunarg.com"; - platforms = platforms.unix ++ platforms.windows; - license = licenses.asl20; - maintainers = [ maintainers.ralith ]; + platforms = lib.platforms.unix ++ lib.platforms.windows; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.ralith ]; }; } diff --git a/pkgs/by-name/vu/vulkan-helper/package.nix b/pkgs/by-name/vu/vulkan-helper/package.nix index d44a89e616f3..6325074ff560 100644 --- a/pkgs/by-name/vu/vulkan-helper/package.nix +++ b/pkgs/by-name/vu/vulkan-helper/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage { addDriverRunpath $out/bin/vulkan-helper ''; - meta = with lib; { + meta = { description = "Simple CLI app used to interface with basic Vulkan APIs"; homepage = "https://github.com/imLinguin/vulkan-helper-rs"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "vulkan-helper"; }; } diff --git a/pkgs/by-name/vu/vulkan-loader/package.nix b/pkgs/by-name/vu/vulkan-loader/package.nix index 97cfc1168acf..8043d3832e15 100644 --- a/pkgs/by-name/vu/vulkan-loader/package.nix +++ b/pkgs/by-name/vu/vulkan-loader/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "LunarG Vulkan loader"; homepage = "https://www.lunarg.com"; - platforms = platforms.unix ++ platforms.windows; - license = licenses.asl20; - maintainers = [ maintainers.ralith ]; + platforms = lib.platforms.unix ++ lib.platforms.windows; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.ralith ]; broken = finalAttrs.version != vulkan-headers.version; pkgConfigModules = [ "vulkan" ]; }; diff --git a/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix b/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix index b4ec722ca336..81fa934a8b35 100644 --- a/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix +++ b/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix @@ -86,15 +86,15 @@ stdenv.mkDerivation rec { export XDG_CONFIG_DIRS=@out@/etc''${XDG_CONFIG_DIRS:+:''${XDG_CONFIG_DIRS}} ''; - meta = with lib; { + meta = { description = "LunarG Vulkan Tools and Utilities"; longDescription = '' Tools to aid in Vulkan development including useful layers, trace and replay, and tests. ''; homepage = "https://github.com/LunarG/VulkanTools"; - platforms = platforms.linux; - license = licenses.asl20; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vu/vulkan-tools/package.nix b/pkgs/by-name/vu/vulkan-tools/package.nix index 122e75d0e40b..b94aa794915f 100644 --- a/pkgs/by-name/vu/vulkan-tools/package.nix +++ b/pkgs/by-name/vu/vulkan-tools/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation rec { "-DBUILD_CUBE=OFF" ]; - meta = with lib; { + meta = { description = "Khronos official Vulkan Tools and Utilities"; longDescription = '' This project provides Vulkan tools and utilities that can assist @@ -92,8 +92,8 @@ stdenv.mkDerivation rec { use of the Vulkan API. ''; homepage = "https://github.com/KhronosGroup/Vulkan-Tools"; - platforms = platforms.unix; - license = licenses.asl20; - maintainers = [ maintainers.ralith ]; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.ralith ]; }; } diff --git a/pkgs/by-name/vu/vulkan-utility-libraries/package.nix b/pkgs/by-name/vu/vulkan-utility-libraries/package.nix index 03066b567ef5..e63ae5c80887 100644 --- a/pkgs/by-name/vu/vulkan-utility-libraries/package.nix +++ b/pkgs/by-name/vu/vulkan-utility-libraries/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { ]; buildInputs = [ vulkan-headers ]; - meta = with lib; { + meta = { description = "Set of utility libraries for Vulkan"; homepage = "https://github.com/KhronosGroup/Vulkan-Utility-Libraries"; - platforms = platforms.all; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + platforms = lib.platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; }; }) diff --git a/pkgs/by-name/vu/vulkan-validation-layers/package.nix b/pkgs/by-name/vu/vulkan-validation-layers/package.nix index 9a363aacc58d..e62d1e94e4c7 100644 --- a/pkgs/by-name/vu/vulkan-validation-layers/package.nix +++ b/pkgs/by-name/vu/vulkan-validation-layers/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Official Khronos Vulkan validation layers"; homepage = "https://github.com/KhronosGroup/Vulkan-ValidationLayers"; - platforms = platforms.all; - license = licenses.asl20; - maintainers = [ maintainers.ralith ]; + platforms = lib.platforms.all; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.ralith ]; }; } diff --git a/pkgs/by-name/vu/vulkan-validation-layers/robin-hood-hashing.nix b/pkgs/by-name/vu/vulkan-validation-layers/robin-hood-hashing.nix index a384fad8199e..1885afee0022 100644 --- a/pkgs/by-name/vu/vulkan-validation-layers/robin-hood-hashing.nix +++ b/pkgs/by-name/vu/vulkan-validation-layers/robin-hood-hashing.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { "-DRH_STANDALONE_PROJECT=OFF" ]; - meta = with lib; { + meta = { description = "Faster, more efficient replacement for std::unordered_map / std::unordered_set"; homepage = "https://github.com/martinus/robin-hood-hashing"; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vu/vulkan-volk/package.nix b/pkgs/by-name/vu/vulkan-volk/package.nix index 5168ba77f452..63d7c341d303 100644 --- a/pkgs/by-name/vu/vulkan-volk/package.nix +++ b/pkgs/by-name/vu/vulkan-volk/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DVOLK_INSTALL=1" ]; - meta = with lib; { + meta = { description = "Meta loader for Vulkan API"; homepage = "https://github.com/zeux/volk"; - platforms = platforms.all; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; }; }) diff --git a/pkgs/by-name/vu/vulnix/package.nix b/pkgs/by-name/vu/vulnix/package.nix index 4ba030e97b36..8f4100dc81a6 100644 --- a/pkgs/by-name/vu/vulnix/package.nix +++ b/pkgs/by-name/vu/vulnix/package.nix @@ -59,11 +59,11 @@ python3Packages.buildPythonApplication rec { dontStrip = true; - meta = with lib; { + meta = { description = "NixOS vulnerability scanner"; mainProgram = "vulnix"; homepage = "https://github.com/nix-community/vulnix"; - license = licenses.bsd3; - maintainers = with maintainers; [ henrirosten ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ henrirosten ]; }; } diff --git a/pkgs/by-name/vu/vultr/package.nix b/pkgs/by-name/vu/vultr/package.nix index 06a9dd2e5641..a27cb839e33b 100644 --- a/pkgs/by-name/vu/vultr/package.nix +++ b/pkgs/by-name/vu/vultr/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { # There are not test files doCheck = false; - meta = with lib; { + meta = { description = "CLI and API client library"; mainProgram = "vultr"; homepage = "https://jamesclonk.github.io/vultr"; changelog = "https://github.com/JamesClonk/vultr/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ zauberpony ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zauberpony ]; }; } diff --git a/pkgs/by-name/vv/vvvvvv/package.nix b/pkgs/by-name/vv/vvvvvv/package.nix index cfc62c6b25ff..5ebedb3fc7d7 100644 --- a/pkgs/by-name/vv/vvvvvv/package.nix +++ b/pkgs/by-name/vv/vvvvvv/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "A retro-styled platform game" + lib.optionalString makeAndPlay " (redistributable, without original levels)"; @@ -95,8 +95,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://thelettervsixtim.es"; changelog = "https://github.com/TerryCavanagh/VVVVVV/releases/tag/${src.rev}"; - license = licenses.unfree; + license = lib.licenses.unfree; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wa/wabt/package.nix b/pkgs/by-name/wa/wabt/package.nix index 83b1fb8beb8a..70a7df0120b5 100644 --- a/pkgs/by-name/wa/wabt/package.nix +++ b/pkgs/by-name/wa/wabt/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { "-DCMAKE_PROJECT_VERSION=${version}" ]; - meta = with lib; { + meta = { description = "WebAssembly Binary Toolkit"; longDescription = '' WABT (pronounced "wabbit") is a suite of tools for WebAssembly, including: @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { * wasm2c: convert a WebAssembly binary file to a C source and header ''; homepage = "https://github.com/WebAssembly/wabt"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wa/wad/package.nix b/pkgs/by-name/wa/wad/package.nix index 231c197832ea..09468b13cce0 100644 --- a/pkgs/by-name/wa/wad/package.nix +++ b/pkgs/by-name/wa/wad/package.nix @@ -31,7 +31,7 @@ python3.pkgs.buildPythonApplication rec { "wad" ]; - meta = with lib; { + meta = { description = "Tool for detecting technologies used by web applications"; mainProgram = "wad"; longDescription = '' @@ -42,10 +42,10 @@ python3.pkgs.buildPythonApplication rec { ''; homepage = "https://github.com/CERN-CERT/WAD"; # wad is GPLv3+, wappalyzer source is MIT - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/wa/waffle/package.nix b/pkgs/by-name/wa/waffle/package.nix index d16f2412583f..f2bc46f65d83 100644 --- a/pkgs/by-name/wa/waffle/package.nix +++ b/pkgs/by-name/wa/waffle/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Cross-platform C library that allows one to defer selection of an OpenGL API and window system until runtime"; mainProgram = "wflinfo"; homepage = "https://www.waffle-gl.org/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; inherit (libgbm.meta) platforms; - maintainers = with maintainers; [ Flakebi ]; + maintainers = with lib.maintainers; [ Flakebi ]; }; } diff --git a/pkgs/by-name/wa/wagyu/package.nix b/pkgs/by-name/wa/wagyu/package.nix index 4bb340661f4e..dce2f7693132 100644 --- a/pkgs/by-name/wa/wagyu/package.nix +++ b/pkgs/by-name/wa/wagyu/package.nix @@ -19,14 +19,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-vtNxRW/b8kvy21YQezCUiZNtLnlMSkdTRr/OkGy6UAw="; - meta = with lib; { + meta = { description = "Rust library for generating cryptocurrency wallets"; homepage = "https://github.com/AleoHQ/wagyu"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = [ maintainers.offline ]; + maintainers = [ lib.maintainers.offline ]; mainProgram = "wagyu"; }; } diff --git a/pkgs/by-name/wa/wait4x/package.nix b/pkgs/by-name/wa/wait4x/package.nix index da5e3e2c3c76..6b57d5f8b8b4 100644 --- a/pkgs/by-name/wa/wait4x/package.nix +++ b/pkgs/by-name/wa/wait4x/package.nix @@ -22,11 +22,11 @@ buildGoModule { # Tests make network access doCheck = false; - meta = with lib; { + meta = { description = "Allows you to wait for a port or a service to enter the requested state"; homepage = "https://github.com/wait4x/wait4x"; - license = licenses.asl20; - maintainers = with maintainers; [ jfvillablanca ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jfvillablanca ]; mainProgram = "wait4x"; }; } diff --git a/pkgs/by-name/wa/wakeonlan/package.nix b/pkgs/by-name/wa/wakeonlan/package.nix index 4bc1b65674fd..7434dca4f4ec 100644 --- a/pkgs/by-name/wa/wakeonlan/package.nix +++ b/pkgs/by-name/wa/wakeonlan/package.nix @@ -43,11 +43,11 @@ perlPackages.buildPerlPackage rec { shortenPerlShebang $out/bin/wakeonlan ''; - meta = with lib; { + meta = { description = "Perl script for waking up computers via Wake-On-LAN magic packets"; homepage = "https://github.com/jpoliv/wakeonlan"; - license = licenses.artistic1; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.artistic1; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "wakeonlan"; }; } diff --git a/pkgs/by-name/wa/wal-g/package.nix b/pkgs/by-name/wa/wal-g/package.nix index 4ec7c1bb571d..439f952c12e0 100644 --- a/pkgs/by-name/wa/wal-g/package.nix +++ b/pkgs/by-name/wa/wal-g/package.nix @@ -51,9 +51,9 @@ buildGoModule rec { --zsh <($out/bin/wal-g completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/wal-g/wal-g"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Archival restoration tool for PostgreSQL"; mainProgram = "wal-g"; maintainers = [ ]; diff --git a/pkgs/by-name/wa/walk/package.nix b/pkgs/by-name/wa/walk/package.nix index 60a429de0fe1..020a91fd34ad 100644 --- a/pkgs/by-name/wa/walk/package.nix +++ b/pkgs/by-name/wa/walk/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-a66vA6eFzckxBpVtHaX0PBtulTBPbh7c6HY3dIZAym8="; - meta = with lib; { + meta = { description = "Terminal file manager"; homepage = "https://github.com/antonmedv/walk"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ portothree surfaceflinger ]; diff --git a/pkgs/by-name/wa/walker/package.nix b/pkgs/by-name/wa/walker/package.nix index 9317933de3ab..627edf836e9f 100644 --- a/pkgs/by-name/wa/walker/package.nix +++ b/pkgs/by-name/wa/walker/package.nix @@ -41,12 +41,12 @@ buildGoModule rec { libqalculate ]; - meta = with lib; { + meta = { description = "Wayland-native application runner"; homepage = "https://github.com/abenz1267/walker"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ donovanglover ]; mainProgram = "walker"; }; } diff --git a/pkgs/by-name/wa/wally-cli/package.nix b/pkgs/by-name/wa/wally-cli/package.nix index 6d65c6c5ea4c..a55bef9d5a90 100644 --- a/pkgs/by-name/wa/wally-cli/package.nix +++ b/pkgs/by-name/wa/wally-cli/package.nix @@ -25,13 +25,13 @@ buildGoModule rec { vendorHash = "sha256-HffgkuKmaOjTYi+jQ6vBlC50JqqbYiikURT6TCqL7e0="; - meta = with lib; { + meta = { description = "Tool to flash firmware to mechanical keyboards"; mainProgram = "wally-cli"; homepage = "https://ergodox-ez.com/pages/wally-planck"; - platforms = with platforms; linux ++ darwin; - license = licenses.mit; - maintainers = with maintainers; [ + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ spacekookie r-burns ]; diff --git a/pkgs/by-name/wa/wamr/package.nix b/pkgs/by-name/wa/wamr/package.nix index 90db2a2e0373..a000e298ac75 100644 --- a/pkgs/by-name/wa/wamr/package.nix +++ b/pkgs/by-name/wa/wamr/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation (finalAttrs: { cd ${sourceDir} ''; - meta = with lib; { + meta = { description = "WebAssembly Micro Runtime"; homepage = "https://github.com/bytecodealliance/wasm-micro-runtime"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "iwasm"; - maintainers = with maintainers; [ ereslibre ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ereslibre ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/wa/wander/package.nix b/pkgs/by-name/wa/wander/package.nix index 7c24a72b82a2..f1fd965270db 100644 --- a/pkgs/by-name/wa/wander/package.nix +++ b/pkgs/by-name/wa/wander/package.nix @@ -33,9 +33,9 @@ buildGoModule rec { --zsh <($out/bin/wander completion zsh) ''; - meta = with lib; { + meta = { description = "Terminal app/TUI for HashiCorp Nomad"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/robinovitch61/wander"; mainProgram = "wander"; }; diff --git a/pkgs/by-name/wa/wannier90/package.nix b/pkgs/by-name/wa/wannier90/package.nix index 5c76e480009a..1c1b0136802b 100644 --- a/pkgs/by-name/wa/wannier90/package.nix +++ b/pkgs/by-name/wa/wannier90/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Calculation of maximally localised Wannier functions"; homepage = "https://github.com/wannier-developers/wannier90"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.sheepforce ]; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/wa/waon/package.nix b/pkgs/by-name/wa/waon/package.nix index 96a67bb1302a..c165ba05ce54 100644 --- a/pkgs/by-name/wa/waon/package.nix +++ b/pkgs/by-name/wa/waon/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { install -Dt $out/bin waon pv gwaon ''; - meta = with lib; { + meta = { description = "Wave-to-Notes transcriber"; homepage = "https://kichiki.github.io/WaoN/"; - license = licenses.gpl2; - maintainers = [ maintainers.puckipedia ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.puckipedia ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/wa/wapm/package.nix b/pkgs/by-name/wa/wapm/package.nix index b5efceae0b71..577d49363b59 100644 --- a/pkgs/by-name/wa/wapm/package.nix +++ b/pkgs/by-name/wa/wapm/package.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Package manager for WebAssembly modules"; mainProgram = "wapm"; homepage = "https://docs.wasmer.io/ecosystem/wapm"; - license = with licenses; [ mit ]; - maintainers = [ maintainers.lucperkins ]; + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.lucperkins ]; }; } diff --git a/pkgs/by-name/wa/wargus/package.nix b/pkgs/by-name/wa/wargus/package.nix index 7618dff32643..1b7af59b63c0 100644 --- a/pkgs/by-name/wa/wargus/package.nix +++ b/pkgs/by-name/wa/wargus/package.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { ln -s $out/share/games/stratagus/wargus/{contrib/black_title.png,graphics/ui/black_title.png} ''; - meta = with lib; { + meta = { description = "Importer and scripts for Warcraft II: Tides of Darkness, the expansion Beyond the Dark Portal, and Aleonas Tales"; homepage = "https://wargus.github.io/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.astro ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.astro ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wa/wargus/stratagus.nix b/pkgs/by-name/wa/wargus/stratagus.nix index 1bb30ab2db10..2d30f69e808d 100644 --- a/pkgs/by-name/wa/wargus/stratagus.nix +++ b/pkgs/by-name/wa/wargus/stratagus.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { "-DCMAKE_CXX_FLAGS=-Wno-error=format-overflow" ]; - meta = with lib; { + meta = { description = "Strategy game engine"; homepage = "https://wargus.github.io/stratagus.html"; - license = licenses.gpl2Only; - maintainers = [ maintainers.astro ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.astro ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wa/warp-terminal/package.nix b/pkgs/by-name/wa/warp-terminal/package.nix index 2b6f63153651..7687eb10141b 100644 --- a/pkgs/by-name/wa/warp-terminal/package.nix +++ b/pkgs/by-name/wa/warp-terminal/package.nix @@ -114,18 +114,18 @@ let ''; }); - meta = with lib; { + meta = { description = "Rust-based terminal"; homepage = "https://www.warp.dev"; - license = licenses.unfree; + license = lib.licenses.unfree; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ imadnyc FlameFlag johnrtitor logger ]; - platforms = platforms.darwin ++ [ + platforms = lib.platforms.darwin ++ [ "x86_64-linux" "aarch64-linux" ]; diff --git a/pkgs/by-name/wa/warpd/package.nix b/pkgs/by-name/wa/warpd/package.nix index ca201891b71b..fd6b074f6cc1 100644 --- a/pkgs/by-name/wa/warpd/package.nix +++ b/pkgs/by-name/wa/warpd/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { --replace 'bin/warpd $(DESTDIR)' 'bin/warpd -t $(DESTDIR)' ''; - meta = with lib; { + meta = { description = "Modal keyboard driven interface for mouse manipulation"; homepage = "https://github.com/rvaiya/warpd"; changelog = "https://github.com/rvaiya/warpd/blob/${src.rev}/CHANGELOG.md"; - maintainers = with maintainers; [ hhydraa ]; - license = licenses.mit; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ hhydraa ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "warpd"; }; } diff --git a/pkgs/by-name/wa/warpinator/package.nix b/pkgs/by-name/wa/warpinator/package.nix index 9c98fd41d2a8..b14378a4a3ca 100644 --- a/pkgs/by-name/wa/warpinator/package.nix +++ b/pkgs/by-name/wa/warpinator/package.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation rec { ignoredVersions = "^master.*"; }; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/warpinator"; description = "Share files across the LAN"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/wa/warzone2100/package.nix b/pkgs/by-name/wa/warzone2100/package.nix index 6a30c62856ba..5db194848747 100644 --- a/pkgs/by-name/wa/warzone2100/package.nix +++ b/pkgs/by-name/wa/warzone2100/package.nix @@ -130,7 +130,7 @@ stdenv.mkDerivation (finalAttrs: { url = "https://github.com/Warzone2100/warzone2100"; }; - meta = with lib; { + meta = { description = "Free RTS game, originally developed by Pumpkin Studios"; mainProgram = "warzone2100"; longDescription = '' @@ -145,11 +145,11 @@ stdenv.mkDerivation (finalAttrs: { variety of possible units and tactics. ''; homepage = "https://wz2100.net"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fgaz ]; - platforms = platforms.all; + platforms = lib.platforms.all; # configure_mac.cmake tries to download stuff # https://github.com/Warzone2100/warzone2100/blob/master/macosx/README.md broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/wa/wasabiwallet/package.nix b/pkgs/by-name/wa/wasabiwallet/package.nix index 77795b1e3194..9142a698c3e0 100644 --- a/pkgs/by-name/wa/wasabiwallet/package.nix +++ b/pkgs/by-name/wa/wasabiwallet/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { cp -v $desktopItem/share/applications/* $out/share/applications ''; - meta = with lib; { + meta = { description = "Privacy focused Bitcoin wallet"; homepage = "https://wasabiwallet.io/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ mmahut ]; + maintainers = with lib.maintainers; [ mmahut ]; }; } diff --git a/pkgs/by-name/wa/wasilibc/package.nix b/pkgs/by-name/wa/wasilibc/package.nix index a8497237a871..884de0d7ed7b 100644 --- a/pkgs/by-name/wa/wasilibc/package.nix +++ b/pkgs/by-name/wa/wasilibc/package.nix @@ -64,16 +64,16 @@ stdenvNoLibc.mkDerivation (finalAttrs: { inherit firefox-unwrapped firefox-esr-unwrapped; }; - meta = with lib; { + meta = { changelog = "https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-${finalAttrs.version}"; description = "WASI libc implementation for WebAssembly"; homepage = "https://wasi.dev"; - platforms = platforms.wasi; - maintainers = with maintainers; [ + platforms = lib.platforms.wasi; + maintainers = with lib.maintainers; [ rvolosatovs wucke13 ]; - license = with licenses; [ + license = with lib.licenses; [ asl20 llvm-exception mit diff --git a/pkgs/by-name/wa/wasm-pack/package.nix b/pkgs/by-name/wa/wasm-pack/package.nix index 60812a377385..985f577e628d 100644 --- a/pkgs/by-name/wa/wasm-pack/package.nix +++ b/pkgs/by-name/wa/wasm-pack/package.nix @@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec { # Disabling check here to work with build sandboxing. doCheck = false; - meta = with lib; { + meta = { description = "Utility that builds rust-generated WebAssembly package"; mainProgram = "wasm-pack"; homepage = "https://github.com/rustwasm/wasm-pack"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = [ maintainers.dhkl ]; + maintainers = [ lib.maintainers.dhkl ]; }; } diff --git a/pkgs/by-name/wa/wasm-tools/package.nix b/pkgs/by-name/wa/wasm-tools/package.nix index ee35c3a137e9..16d65dfddd66 100644 --- a/pkgs/by-name/wa/wasm-tools/package.nix +++ b/pkgs/by-name/wa/wasm-tools/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { "--test-threads=1" ]; - meta = with lib; { + meta = { description = "Low level tooling for WebAssembly in Rust"; homepage = "https://github.com/bytecodealliance/wasm-tools"; - license = licenses.asl20; - maintainers = with maintainers; [ ereslibre ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ereslibre ]; mainProgram = "wasm-tools"; }; } diff --git a/pkgs/by-name/wa/wasm3/package.nix b/pkgs/by-name/wa/wasm3/package.nix index 0f820505e78a..7342011a21aa 100644 --- a/pkgs/by-name/wa/wasm3/package.nix +++ b/pkgs/by-name/wa/wasm3/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/wasm3/wasm3"; description = "Fastest WebAssembly interpreter, and the most universal runtime"; - platforms = platforms.all; - maintainers = with maintainers; [ malbarbo ]; - license = licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ malbarbo ]; + license = lib.licenses.mit; knownVulnerabilities = [ # wasm3 expects all wasm code to be pre-validated, any users # should be aware that running unvalidated wasm will potentially diff --git a/pkgs/by-name/wa/wasmer-pack/package.nix b/pkgs/by-name/wa/wasmer-pack/package.nix index 84b454a42365..b85652718365 100644 --- a/pkgs/by-name/wa/wasmer-pack/package.nix +++ b/pkgs/by-name/wa/wasmer-pack/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { # requires internet access doCheck = false; - meta = with lib; { + meta = { description = "Import your WebAssembly code just like any other dependency"; mainProgram = "wasmer-pack"; homepage = "https://github.com/wasmerio/wasmer-pack"; changelog = "https://github.com/wasmerio/wasmer-pack/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/wa/wasmi/package.nix b/pkgs/by-name/wa/wasmi/package.nix index 3fa3ff9c350c..326e7da974a0 100644 --- a/pkgs/by-name/wa/wasmi/package.nix +++ b/pkgs/by-name/wa/wasmi/package.nix @@ -20,15 +20,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-0YxKaA7viWiQYtPXAdWXSWa79EY2x//3WiSjZ1NkkOQ="; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Efficient WebAssembly interpreter"; homepage = "https://github.com/paritytech/wasmi"; changelog = "https://github.com/paritytech/wasmi/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; mainProgram = "wasmi_cli"; - maintainers = with maintainers; [ dit7ya ]; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/wa/wasmserve/package.nix b/pkgs/by-name/wa/wasmserve/package.nix index fbdbd76a8fd6..c79012bb4ca0 100644 --- a/pkgs/by-name/wa/wasmserve/package.nix +++ b/pkgs/by-name/wa/wasmserve/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "HTTP server for testing Wasm"; mainProgram = "wasmserve"; homepage = "https://github.com/hajimehoshi/wasmserve"; - license = licenses.asl20; - maintainers = with maintainers; [ kirillrdy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kirillrdy ]; }; } diff --git a/pkgs/by-name/wa/wastebin/package.nix b/pkgs/by-name/wa/wastebin/package.nix index 3949c0235ac5..3bb12d6bc205 100644 --- a/pkgs/by-name/wa/wastebin/package.nix +++ b/pkgs/by-name/wa/wastebin/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { inherit (nixosTests) wastebin; }; - meta = with lib; { + meta = { description = "Pastebin service"; homepage = "https://github.com/matze/wastebin"; changelog = "https://github.com/matze/wastebin/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pinpox matthiasbeyer ]; diff --git a/pkgs/by-name/wa/watson/package.nix b/pkgs/by-name/wa/watson/package.nix index 6411d6327de3..f029bb6d1d44 100644 --- a/pkgs/by-name/wa/watson/package.nix +++ b/pkgs/by-name/wa/watson/package.nix @@ -53,12 +53,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "watson" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jazzband/Watson"; description = "Wonderful CLI to track your time"; mainProgram = "watson"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mguentner nathyong oxzi diff --git a/pkgs/by-name/wa/wavemon/package.nix b/pkgs/by-name/wa/wavemon/package.nix index d5da2ca88f7f..42c4144bf34b 100644 --- a/pkgs/by-name/wa/wavemon/package.nix +++ b/pkgs/by-name/wa/wavemon/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { description = "Ncurses-based monitoring application for wireless network devices"; homepage = "https://github.com/uoaerg/wavemon"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin fpletz ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "wavemon"; }; } diff --git a/pkgs/by-name/wa/wavrsocvt/package.nix b/pkgs/by-name/wa/wavrsocvt/package.nix index b53200ac903f..b17792c89e0b 100644 --- a/pkgs/by-name/wa/wavrsocvt/package.nix +++ b/pkgs/by-name/wa/wavrsocvt/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation { cp wavrsocvt $out/bin ''; - meta = with lib; { + meta = { description = "Convert .wav files into sound files for Lego NXT brick"; mainProgram = "wavrsocvt"; longDescription = '' @@ -35,7 +35,7 @@ stdenv.mkDerivation { You can then upload these with e.g. nxt-python. ''; homepage = "https://bricxcc.sourceforge.net/"; - license = licenses.mpl11; - platforms = with platforms; linux; + license = lib.licenses.mpl11; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/wa/way-displays/package.nix b/pkgs/by-name/wa/way-displays/package.nix index 74570b6959e4..416cc46a3734 100644 --- a/pkgs/by-name/wa/way-displays/package.nix +++ b/pkgs/by-name/wa/way-displays/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { "CXX:=$(CXX)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/alex-courtis/way-displays"; description = "Auto Manage Your Wayland Displays"; - license = licenses.mit; - maintainers = with maintainers; [ simoneruffini ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ simoneruffini ]; + platforms = lib.platforms.linux; mainProgram = "way-displays"; }; } diff --git a/pkgs/by-name/wa/wayback-machine-archiver/package.nix b/pkgs/by-name/wa/wayback-machine-archiver/package.nix index 76fa33e94f33..c6909f71a77b 100644 --- a/pkgs/by-name/wa/wayback-machine-archiver/package.nix +++ b/pkgs/by-name/wa/wayback-machine-archiver/package.nix @@ -35,11 +35,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "wayback_machine_archiver" ]; - meta = with lib; { + meta = { description = "Python script to submit web pages to the Wayback Machine for archiving"; homepage = "https://github.com/agude/wayback-machine-archiver"; - license = licenses.mit; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dandellion ]; mainProgram = "archiver"; }; } diff --git a/pkgs/by-name/wa/wayback/package.nix b/pkgs/by-name/wa/wayback/package.nix index 3750a15b05b2..bb1c83b850d1 100644 --- a/pkgs/by-name/wa/wayback/package.nix +++ b/pkgs/by-name/wa/wayback/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { chromium ]; - meta = with lib; { + meta = { description = "Archiving tool with an IM-style interface"; homepage = "https://docs.wabarc.eu.org"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ _2gn ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ _2gn ]; # binary build for darwin is possible, but it requires chromium for runtime dependency, whose build (for nix) is not supported on darwin. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wa/wayback_machine_downloader/package.nix b/pkgs/by-name/wa/wayback_machine_downloader/package.nix index d2f0e3a5e30e..31b8c481e41f 100644 --- a/pkgs/by-name/wa/wayback_machine_downloader/package.nix +++ b/pkgs/by-name/wa/wayback_machine_downloader/package.nix @@ -10,12 +10,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "wayback_machine_downloader"; - meta = with lib; { + meta = { description = "Download websites from the Internet Archive Wayback Machine"; homepage = "https://github.com/hartator/wayback-machine-downloader"; - license = licenses.mit; - maintainers = [ maintainers.manveru ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.manveru ]; + platforms = lib.platforms.all; mainProgram = "wayback_machine_downloader"; }; } diff --git a/pkgs/by-name/wa/waybar-mpris/package.nix b/pkgs/by-name/wa/waybar-mpris/package.nix index 93f957db33dd..4ee2a61b2651 100644 --- a/pkgs/by-name/wa/waybar-mpris/package.nix +++ b/pkgs/by-name/wa/waybar-mpris/package.nix @@ -24,11 +24,11 @@ buildGoModule { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Waybar component/utility for displaying and controlling MPRIS2 compliant media players individually"; homepage = "https://git.hrfee.pw/hrfee/waybar-mpris"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "waybar-mpris"; - maintainers = with maintainers; [ khaneliman ]; + maintainers = with lib.maintainers; [ khaneliman ]; }; } diff --git a/pkgs/by-name/wa/wayfarer/package.nix b/pkgs/by-name/wa/wayfarer/package.nix index 21d90646be7e..2063c6c3495d 100644 --- a/pkgs/by-name/wa/wayfarer/package.nix +++ b/pkgs/by-name/wa/wayfarer/package.nix @@ -58,9 +58,9 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Screen recorder for GNOME / Wayland / pipewire"; homepage = "https://github.com/stronnag/wayfarer"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "wayfarer"; - platforms = subtractLists platforms.darwin platforms.unix; + platforms = subtractLists lib.platforms.darwin lib.platforms.unix; }; }) diff --git a/pkgs/by-name/wa/wayfreeze/package.nix b/pkgs/by-name/wa/wayfreeze/package.nix index fccb76affb6e..2cdbcfe916de 100644 --- a/pkgs/by-name/wa/wayfreeze/package.nix +++ b/pkgs/by-name/wa/wayfreeze/package.nix @@ -25,15 +25,15 @@ rustPlatform.buildRustPackage { libxkbcommon ]; - meta = with lib; { + meta = { description = "Tool to freeze the screen of a Wayland compositor"; homepage = "https://github.com/Jappie3/wayfreeze"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = with lib.maintainers; [ purrpurrn jappie3 # upstream dev ]; mainProgram = "wayfreeze"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wa/wayland-logout/package.nix b/pkgs/by-name/wa/wayland-logout/package.nix index cf2aa12973db..6604408d0434 100644 --- a/pkgs/by-name/wa/wayland-logout/package.nix +++ b/pkgs/by-name/wa/wayland-logout/package.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation rec { meson ninja ]; - meta = with lib; { + meta = { description = '' A utility designed to kill a single instance of a wayland compositor ''; mainProgram = "wayland-logout"; homepage = "https://github.com/soreau/wayland-logout"; - maintainers = with maintainers; [ quantenzitrone ]; - license = with licenses; [ mit ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ quantenzitrone ]; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wa/wayland-pipewire-idle-inhibit/package.nix b/pkgs/by-name/wa/wayland-pipewire-idle-inhibit/package.nix index 3c82599a41eb..439403f4c17c 100644 --- a/pkgs/by-name/wa/wayland-pipewire-idle-inhibit/package.nix +++ b/pkgs/by-name/wa/wayland-pipewire-idle-inhibit/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { wayland-protocols ]; - meta = with lib; { + meta = { description = "Suspends automatic idling of Wayland compositors when media is being played through Pipewire"; homepage = "https://github.com/rafaelrc7/wayland-pipewire-idle-inhibit/"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ rafameou ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rafameou ]; mainProgram = "wayland-pipewire-idle-inhibit"; }; } diff --git a/pkgs/by-name/wa/wayland-proxy-virtwl/package.nix b/pkgs/by-name/wa/wayland-proxy-virtwl/package.nix index 38a76c83f627..175a00f86a7a 100644 --- a/pkgs/by-name/wa/wayland-proxy-virtwl/package.nix +++ b/pkgs/by-name/wa/wayland-proxy-virtwl/package.nix @@ -41,15 +41,15 @@ ocamlPackages.buildDunePackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/talex5/wayland-virtwl-proxy"; description = "Proxy Wayland connections across a VM boundary"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "wayland-proxy-virtwl"; maintainers = [ - maintainers.qyliss - maintainers.sternenseemann + lib.maintainers.qyliss + lib.maintainers.sternenseemann ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wa/wayland-utils/package.nix b/pkgs/by-name/wa/wayland-utils/package.nix index f6c773fa4e4c..c8cbddd18f78 100644 --- a/pkgs/by-name/wa/wayland-utils/package.nix +++ b/pkgs/by-name/wa/wayland-utils/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { url = "https://gitlab.freedesktop.org/wayland/wayland-utils.git"; }; - meta = with lib; { + meta = { description = "Wayland utilities (wayland-info)"; longDescription = '' A collection of Wayland related utilities: @@ -47,9 +47,9 @@ stdenv.mkDerivation rec { protocols supported by a Wayland compositor. ''; homepage = "https://gitlab.freedesktop.org/wayland/wayland-utils"; - license = licenses.mit; # Expat version - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.mit; # Expat version + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; mainProgram = "wayland-info"; }; } diff --git a/pkgs/by-name/wa/waylevel/package.nix b/pkgs/by-name/wa/waylevel/package.nix index 966ad9d270d8..e5ea991dd1cc 100644 --- a/pkgs/by-name/wa/waylevel/package.nix +++ b/pkgs/by-name/wa/waylevel/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage rec { patchelf --set-rpath ${lib.makeLibraryPath [ wayland ]} $out/bin/waylevel ''; - meta = with lib; { + meta = { description = "Tool to print wayland toplevels and other compositor info"; homepage = "https://git.sr.ht/~shinyzenith/waylevel"; - license = licenses.bsd2; - maintainers = with maintainers; [ dit7ya ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dit7ya ]; + platforms = lib.platforms.linux; mainProgram = "waylevel"; }; } diff --git a/pkgs/by-name/wa/waylogout/package.nix b/pkgs/by-name/wa/waylogout/package.nix index c201f0a63e68..51eeed5f06f2 100644 --- a/pkgs/by-name/wa/waylogout/package.nix +++ b/pkgs/by-name/wa/waylogout/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { gdk-pixbuf ]; - meta = with lib; { + meta = { description = "Graphical logout/suspend/reboot/shutdown dialog for wayland"; homepage = "https://github.com/loserMcloser/waylogout"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; + platforms = lib.platforms.linux; mainProgram = "waylogout"; }; } diff --git a/pkgs/by-name/wa/waylyrics/package.nix b/pkgs/by-name/wa/waylyrics/package.nix index d98ccdc5147a..236de14087cd 100644 --- a/pkgs/by-name/wa/waylyrics/package.nix +++ b/pkgs/by-name/wa/waylyrics/package.nix @@ -62,18 +62,18 @@ rustPlatform.buildRustPackage rec { popd ''; - meta = with lib; { + meta = { description = "Desktop lyrics with QQ and NetEase Music source"; mainProgram = "waylyrics"; homepage = "https://github.com/waylyrics/waylyrics"; - license = with licenses; [ + license = with lib.licenses; [ mit cc-by-40 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ shadowrz aleksana ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wa/waynergy/package.nix b/pkgs/by-name/wa/waynergy/package.nix index bbb3cf9bc11d..ca6cbef8b93e 100644 --- a/pkgs/by-name/wa/waynergy/package.nix +++ b/pkgs/by-name/wa/waynergy/package.nix @@ -44,14 +44,14 @@ stdenv.mkDerivation rec { substituteInPlace waynergy.desktop --replace "Exec=/usr/bin/waynergy" "Exec=$out/bin/waynergy" ''; - meta = with lib; { + meta = { description = "Synergy client for Wayland compositors"; longDescription = '' A synergy client for Wayland compositors ''; homepage = "https://github.com/r-c-f/waynergy"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ maxhero ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ maxhero ]; }; } diff --git a/pkgs/by-name/wa/wayout/package.nix b/pkgs/by-name/wa/wayout/package.nix index de2915d63f3a..e4ca11e68bd6 100644 --- a/pkgs/by-name/wa/wayout/package.nix +++ b/pkgs/by-name/wa/wayout/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-RiM9d/aOCnV0t13QQO1fdw+QPGMoF/EjIDA2uttjXcQ="; - meta = with lib; { + meta = { description = "Simple output management tool for wlroots based compositors implementing"; homepage = "https://git.sr.ht/~shinyzenith/wayout"; - license = licenses.bsd2; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; mainProgram = "wayout"; }; diff --git a/pkgs/by-name/wa/wayshot/package.nix b/pkgs/by-name/wa/wayshot/package.nix index 892dea42a751..50eb689dc73b 100644 --- a/pkgs/by-name/wa/wayshot/package.nix +++ b/pkgs/by-name/wa/wayshot/package.nix @@ -19,15 +19,15 @@ rustPlatform.buildRustPackage rec { # tests are off as they are broken and pr for integration testing is still WIP doCheck = false; - meta = with lib; { + meta = { description = "Native, blazing-fast screenshot tool for wlroots based compositors such as sway and river"; homepage = "https://github.com/waycrate/wayshot"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dit7ya id3v1669 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "wayshot"; }; } diff --git a/pkgs/by-name/wa/wayst/package.nix b/pkgs/by-name/wa/wayst/package.nix index 96fc9e56399d..05e73c7c2913 100644 --- a/pkgs/by-name/wa/wayst/package.nix +++ b/pkgs/by-name/wa/wayst/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation { passthru.tests.test = nixosTests.terminal-emulators.wayst; - meta = with lib; { + meta = { description = "Simple terminal emulator"; mainProgram = "wayst"; homepage = "https://github.com/91861/wayst"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ berbiche ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ berbiche ]; }; } diff --git a/pkgs/by-name/wb/wb32-dfu-updater/package.nix b/pkgs/by-name/wb/wb32-dfu-updater/package.nix index 84730fe04954..dfc4f47b48c7 100644 --- a/pkgs/by-name/wb/wb32-dfu-updater/package.nix +++ b/pkgs/by-name/wb/wb32-dfu-updater/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; buildInputs = [ libusb1 ]; - meta = with lib; { + meta = { description = "USB programmer for downloading and uploading firmware to/from USB devices"; longDescription = '' wb32-dfu-updater is a host tool used to download and upload firmware to/from WB32 MCU via USB. (wb32-dfu-updater_cli is the command line version). ''; homepage = "https://github.com/WestberryTech/wb32-dfu-updater"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "wb32-dfu-updater_cli"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/wc/wcalc/package.nix b/pkgs/by-name/wc/wcalc/package.nix index eb3a0655f805..213551c31eea 100644 --- a/pkgs/by-name/wc/wcalc/package.nix +++ b/pkgs/by-name/wc/wcalc/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { readline ]; - meta = with lib; { + meta = { description = "Command line calculator"; homepage = "https://w-calc.sourceforge.net"; - license = licenses.gpl2; - platforms = platforms.all; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; mainProgram = "wcalc"; }; } diff --git a/pkgs/by-name/wc/wcpg/package.nix b/pkgs/by-name/wc/wcpg/package.nix index 1a6b3d0616a9..cd6ce4e045b6 100644 --- a/pkgs/by-name/wc/wcpg/package.nix +++ b/pkgs/by-name/wc/wcpg/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { mpfr ]; - meta = with lib; { + meta = { description = "Worst-Case Peak-Gain library"; homepage = "https://github.com/fixif/WCPG"; - license = licenses.cecill-b; - platforms = platforms.unix; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.cecill-b; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/wd/wdfs/package.nix b/pkgs/by-name/wd/wdfs/package.nix index 72c81823fcb9..e1192b91120b 100644 --- a/pkgs/by-name/wd/wdfs/package.nix +++ b/pkgs/by-name/wd/wdfs/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { 'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH' "" ''; - meta = with lib; { + meta = { homepage = "http://noedler.de/projekte/wdfs/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "User-space filesystem that allows to mount a webdav share"; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "wdfs"; }; } diff --git a/pkgs/by-name/wd/wdiff/package.nix b/pkgs/by-name/wd/wdiff/package.nix index 52751e243336..142fd19aaece 100644 --- a/pkgs/by-name/wd/wdiff/package.nix +++ b/pkgs/by-name/wd/wdiff/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/wdiff/"; description = "Comparing files on a word by word basis"; mainProgram = "wdiff"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ SuperSandro2000 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wd/wdisplays/package.nix b/pkgs/by-name/wd/wdisplays/package.nix index 1c2bf46d8ff4..0b31a4f4b060 100644 --- a/pkgs/by-name/wd/wdisplays/package.nix +++ b/pkgs/by-name/wd/wdisplays/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { sha256 = "sha256-KabaW2BH4zAS0xWkzCM8YaAnP/hkZL7Wq3EARantRis="; }; - meta = with lib; { + meta = { description = "Graphical application for configuring displays in Wayland compositors"; homepage = "https://github.com/artizirk/wdisplays"; - maintainers = with maintainers; [ ma27 ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ma27 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "wdisplays"; }; }) diff --git a/pkgs/by-name/wd/wdt/package.nix b/pkgs/by-name/wd/wdt/package.nix index 2d1bbfb0f12a..0f38e0bb28f7 100644 --- a/pkgs/by-name/wd/wdt/package.nix +++ b/pkgs/by-name/wd/wdt/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 3.2)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Warp speed Data Transfer"; homepage = "https://github.com/facebook/wdt"; - license = licenses.bsd3; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nickcao ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/we/weather-icons/package.nix b/pkgs/by-name/we/weather-icons/package.nix index ccafa275f0b7..ef3be3ab14b5 100644 --- a/pkgs/by-name/we/weather-icons/package.nix +++ b/pkgs/by-name/we/weather-icons/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Weather Icons"; longDescription = '' Weather Icons is the only icon font and CSS with 222 weather themed icons, @@ -29,8 +29,8 @@ stdenvNoCC.mkDerivation rec { quality weather, maritime, and meteorological based icons! ''; homepage = "https://erikflowers.github.io/weather-icons/"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ pnelson ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pnelson ]; }; } diff --git a/pkgs/by-name/we/weather/package.nix b/pkgs/by-name/we/weather/package.nix index 8f11d236ecba..bcb6e32a76b2 100644 --- a/pkgs/by-name/we/weather/package.nix +++ b/pkgs/by-name/we/weather/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { installManPage weather.1 weatherrc.5 ''; - meta = with lib; { + meta = { homepage = "http://fungi.yuggoth.org/weather"; description = "Quick access to current weather conditions and forecasts"; mainProgram = "weather"; - license = licenses.isc; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/we/weave-gitops/package.nix b/pkgs/by-name/we/weave-gitops/package.nix index 29cdf6d2de86..b42f3fdcf4dd 100644 --- a/pkgs/by-name/we/weave-gitops/package.nix +++ b/pkgs/by-name/we/weave-gitops/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { --zsh <($out/bin/gitops completion zsh 2>/dev/null) ''; - meta = with lib; { + meta = { homepage = "https://docs.gitops.weave.works"; description = "Weave Gitops CLI"; - license = licenses.mpl20; - platforms = platforms.linux; + license = lib.licenses.mpl20; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "gitops"; }; diff --git a/pkgs/by-name/we/weaviate/package.nix b/pkgs/by-name/we/weaviate/package.nix index 772483eceab1..9a0c0d05aa66 100644 --- a/pkgs/by-name/we/weaviate/package.nix +++ b/pkgs/by-name/we/weaviate/package.nix @@ -29,10 +29,10 @@ buildGoModule rec { ln -s $out/bin/weaviate-server $out/bin/weaviate ''; - meta = with lib; { + meta = { description = "ML-first vector search engine"; homepage = "https://github.com/semi-technologies/weaviate"; - license = licenses.bsd3; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/we/webalizer/package.nix b/pkgs/by-name/we/webalizer/package.nix index 8ce9dd3dd3a2..f74aaa3812d9 100644 --- a/pkgs/by-name/we/webalizer/package.nix +++ b/pkgs/by-name/we/webalizer/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { "--enable-shared" ]; - meta = with lib; { + meta = { description = "Web server log file analysis program"; homepage = "https://webalizer.net/"; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/we/webcat/package.nix b/pkgs/by-name/we/webcat/package.nix index b9af14457226..de0f26683ccc 100644 --- a/pkgs/by-name/we/webcat/package.nix +++ b/pkgs/by-name/we/webcat/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { installManPage man/webcat.1 ''; - meta = with lib; { + meta = { homepage = "https://rumpelsepp.org/blog/ssh-through-websocket/"; description = "Lightweight swiss army knife for websockets"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ montag451 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ montag451 ]; mainProgram = "webcat"; }; } diff --git a/pkgs/by-name/we/webdav-server-rs/package.nix b/pkgs/by-name/we/webdav-server-rs/package.nix index cef34065aa0a..35595a5f2895 100644 --- a/pkgs/by-name/we/webdav-server-rs/package.nix +++ b/pkgs/by-name/we/webdav-server-rs/package.nix @@ -34,7 +34,7 @@ rustPlatform.buildRustPackage { --replace '/usr/include/tirpc' '${libtirpc.dev}/include/tirpc' ''; - meta = with lib; { + meta = { description = "Implementation of WebDAV server in Rust"; longDescription = '' webdav-server-rs is an implementation of WebDAV with full support for @@ -42,8 +42,8 @@ rustPlatform.buildRustPackage { quota. ''; homepage = "https://github.com/miquels/webdav-server-rs"; - license = licenses.asl20; - maintainers = with maintainers; [ pmy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pmy ]; mainProgram = "webdav-server"; }; } diff --git a/pkgs/by-name/we/webex/package.nix b/pkgs/by-name/we/webex/package.nix index 6b84aa55a8ad..1e179870533f 100644 --- a/pkgs/by-name/we/webex/package.nix +++ b/pkgs/by-name/we/webex/package.nix @@ -172,11 +172,11 @@ stdenv.mkDerivation rec { update-source-version ${pname} "$version" "$hash" "$url" --file=./pkgs/by-name/we/webex/package.nix ''; - meta = with lib; { + meta = { description = "All-in-one app to call, meet, message, and get work done"; homepage = "https://webex.com/"; downloadPage = "https://www.webex.com/downloads.html"; - license = licenses.unfree; + license = lib.licenses.unfree; maintainers = with lib.maintainers; [ uvnikita ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/we/webfont-bundler/package.nix b/pkgs/by-name/we/webfont-bundler/package.nix index 6b8018c6d2a2..f1fdb8577c10 100644 --- a/pkgs/by-name/we/webfont-bundler/package.nix +++ b/pkgs/by-name/we/webfont-bundler/package.nix @@ -68,15 +68,15 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Create @font-face kits easily"; longDescription = "Webfont Bundler is a simple utility that allows you to generate woff, woff2 and the necessary CSS boilerplate from non-web font formats (otf and ttf)."; changelog = "https://github.com/rafaelmardojai/webfont-kit-generator/releases/tag/${finalAttrs.version}"; mainProgram = "webfontkitgenerator"; homepage = "https://apps.gnome.org/WebfontKitGenerator/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ benediktbroich ]; - teams = [ teams.gnome-circle ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ benediktbroich ]; + teams = [ lib.teams.gnome-circle ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/we/webfs/package.nix b/pkgs/by-name/we/webfs/package.nix index 02862c43e027..7e5a0d357422 100644 --- a/pkgs/by-name/we/webfs/package.nix +++ b/pkgs/by-name/we/webfs/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { install -Dm444 -t $out/etc ${mailcap}/etc/mime.types ''; - meta = with lib; { + meta = { description = "HTTP server for purely static content"; homepage = "http://linux.bytesex.org/misc/webfs.html"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ zimbatm ]; mainProgram = "webfsd"; }; } diff --git a/pkgs/by-name/we/webhook/package.nix b/pkgs/by-name/we/webhook/package.nix index d9ed2bb27b02..8986f176306a 100644 --- a/pkgs/by-name/we/webhook/package.nix +++ b/pkgs/by-name/we/webhook/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) webhook; }; - meta = with lib; { + meta = { description = "Incoming webhook server that executes shell commands"; mainProgram = "webhook"; homepage = "https://github.com/adnanh/webhook"; - license = licenses.mit; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/we/webmesh/package.nix b/pkgs/by-name/we/webmesh/package.nix index f3b3cf5c65a4..3691e0975a93 100644 --- a/pkgs/by-name/we/webmesh/package.nix +++ b/pkgs/by-name/we/webmesh/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Simple, distributed, zero-configuration WireGuard mesh provider"; mainProgram = "webmesh-node"; homepage = "https://webmeshproj.github.io"; - license = licenses.asl20; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bbigras ]; }; } diff --git a/pkgs/by-name/we/webp-pixbuf-loader/package.nix b/pkgs/by-name/we/webp-pixbuf-loader/package.nix index 431b8431f353..b1658bdc5e1d 100644 --- a/pkgs/by-name/we/webp-pixbuf-loader/package.nix +++ b/pkgs/by-name/we/webp-pixbuf-loader/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { --set GDK_PIXBUF_MODULE_FILE "$out/${loadersPath}" ''; - meta = with lib; { + meta = { description = "WebP GDK Pixbuf Loader library"; homepage = "https://github.com/aruiz/webp-pixbuf-loader"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.cwyc ]; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.cwyc ]; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/we/webrtc-audio-processing_0_3/package.nix b/pkgs/by-name/we/webrtc-audio-processing_0_3/package.nix index 8f2d5bcb4c1a..cdc2323f5392 100644 --- a/pkgs/by-name/we/webrtc-audio-processing_0_3/package.nix +++ b/pkgs/by-name/we/webrtc-audio-processing_0_3/package.nix @@ -61,16 +61,16 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing"; description = "More Linux packaging friendly copy of the AudioProcessing module from the WebRTC project"; - license = licenses.bsd3; + license = lib.licenses.bsd3; # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/blob/v0.3.1/webrtc/typedefs.h # + our patches - platforms = intersectLists platforms.unix ( - platforms.arm - ++ platforms.aarch64 - ++ platforms.mips - ++ platforms.power - ++ platforms.riscv - ++ platforms.x86 + platforms = intersectLists lib.platforms.unix ( + lib.platforms.arm + ++ lib.platforms.aarch64 + ++ lib.platforms.mips + ++ lib.platforms.power + ++ lib.platforms.riscv + ++ lib.platforms.x86 ); }; } diff --git a/pkgs/by-name/we/webrtc-audio-processing_1/package.nix b/pkgs/by-name/we/webrtc-audio-processing_1/package.nix index ccda7ac4af67..7edc5f611ef8 100644 --- a/pkgs/by-name/we/webrtc-audio-processing_1/package.nix +++ b/pkgs/by-name/we/webrtc-audio-processing_1/package.nix @@ -58,23 +58,23 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing"; description = "More Linux packaging friendly copy of the AudioProcessing module from the WebRTC project"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = intersectLists # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/blob/master/meson.build - (platforms.darwin ++ platforms.linux ++ platforms.windows) + (lib.platforms.darwin ++ lib.platforms.linux ++ lib.platforms.windows) # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/blob/master/webrtc/rtc_base/system/arch.h ( - platforms.arm - ++ platforms.aarch64 - ++ platforms.loongarch64 - ++ platforms.mips - ++ platforms.power - ++ platforms.riscv - ++ platforms.x86 + lib.platforms.arm + ++ lib.platforms.aarch64 + ++ lib.platforms.loongarch64 + ++ lib.platforms.mips + ++ lib.platforms.power + ++ lib.platforms.riscv + ++ lib.platforms.x86 ); # BE platforms are unsupported # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/issues/31 - badPlatforms = platforms.bigEndian; + badPlatforms = lib.platforms.bigEndian; }; } diff --git a/pkgs/by-name/we/websocketd/package.nix b/pkgs/by-name/we/websocketd/package.nix index 6c9b59cc9ac4..3ec31a85cfbd 100644 --- a/pkgs/by-name/we/websocketd/package.nix +++ b/pkgs/by-name/we/websocketd/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Turn any program that uses STDIN/STDOUT into a WebSocket server"; homepage = "http://websocketd.com/"; - maintainers = [ maintainers.bjornfor ]; - license = licenses.bsd2; + maintainers = [ lib.maintainers.bjornfor ]; + license = lib.licenses.bsd2; mainProgram = "websocketd"; }; } diff --git a/pkgs/by-name/we/websocketpp/package.nix b/pkgs/by-name/we/websocketpp/package.nix index 8720e5e5bf27..7cdecf70d81d 100644 --- a/pkgs/by-name/we/websocketpp/package.nix +++ b/pkgs/by-name/we/websocketpp/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://www.zaphoyd.com/websocketpp/"; description = "C++/Boost Asio based websocket client/server library"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ revol-xut ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ revol-xut ]; }; } diff --git a/pkgs/by-name/we/webtorrent_desktop/package.nix b/pkgs/by-name/we/webtorrent_desktop/package.nix index ad5d289f727a..50ee708b73d4 100644 --- a/pkgs/by-name/we/webtorrent_desktop/package.nix +++ b/pkgs/by-name/we/webtorrent_desktop/package.nix @@ -55,11 +55,11 @@ buildNpmPackage { > $out/share/applications/webtorrent-desktop.desktop ''; - meta = with lib; { + meta = { description = "Streaming torrent app for Mac, Windows, and Linux"; homepage = "https://webtorrent.io/desktop"; - license = licenses.mit; - maintainers = [ maintainers.bendlas ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.bendlas ]; mainProgram = "WebTorrent"; }; diff --git a/pkgs/by-name/we/webull-desktop/package.nix b/pkgs/by-name/we/webull-desktop/package.nix index edfa1df37f61..fcacb5bb94c1 100644 --- a/pkgs/by-name/we/webull-desktop/package.nix +++ b/pkgs/by-name/we/webull-desktop/package.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Webull desktop trading application"; homepage = "https://www.webull.com/trading-platforms/desktop-app"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ fauxmight ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ fauxmight ]; platforms = [ "x86_64-linux" ]; mainProgram = "webull-desktop"; }; diff --git a/pkgs/by-name/we/webwormhole/package.nix b/pkgs/by-name/we/webwormhole/package.nix index 7728cfc81c70..45b53957b34f 100644 --- a/pkgs/by-name/we/webwormhole/package.nix +++ b/pkgs/by-name/we/webwormhole/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-+7ctAm2wnjmfMd6CHXlcAUwiUMS7cH4koDAvlEUAXEg="; - meta = with lib; { + meta = { description = "Send files using peer authenticated WebRTC"; homepage = "https://github.com/saljam/webwormhole"; - license = licenses.bsd3; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bbigras ]; mainProgram = "ww"; }; } diff --git a/pkgs/by-name/we/wechat-uos/package.nix b/pkgs/by-name/we/wechat-uos/package.nix index 4d4bc0ea199d..e31016fafabb 100644 --- a/pkgs/by-name/we/wechat-uos/package.nix +++ b/pkgs/by-name/we/wechat-uos/package.nix @@ -163,17 +163,17 @@ let runHook postInstall ''; - meta = with lib; { + meta = { description = "Messaging app"; homepage = "https://weixin.qq.com/"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "aarch64-linux" "loongarch64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ pokon548 xddxdd ]; diff --git a/pkgs/by-name/we/weevely/package.nix b/pkgs/by-name/we/weevely/package.nix index ba72ac83cfb5..d81b3dcc74ba 100644 --- a/pkgs/by-name/we/weevely/package.nix +++ b/pkgs/by-name/we/weevely/package.nix @@ -45,12 +45,12 @@ python3Packages.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Weaponized web shell"; homepage = "https://github.com/epinna/weevely3"; mainProgram = "weevely"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ d3vil0p3r ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ d3vil0p3r ]; }; } diff --git a/pkgs/by-name/we/wego/package.nix b/pkgs/by-name/we/wego/package.nix index 91ae217c4a7d..96c90010e313 100644 --- a/pkgs/by-name/we/wego/package.nix +++ b/pkgs/by-name/we/wego/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-aXrXw/7ZtSZXIKDMZuWPV2zAf0e0lU0QCBhua7tHGEY="; - meta = with lib; { + meta = { homepage = "https://github.com/schachmat/wego"; description = "Weather app for the terminal"; - license = licenses.isc; + license = lib.licenses.isc; mainProgram = "wego"; }; } diff --git a/pkgs/by-name/we/weidu/package.nix b/pkgs/by-name/we/weidu/package.nix index aa051d0fa7d2..af07c4234385 100644 --- a/pkgs/by-name/we/weidu/package.nix +++ b/pkgs/by-name/we/weidu/package.nix @@ -71,13 +71,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "InfinityEngine Modding Engine"; homepage = "https://weidu.org"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; # should work fine on Windows - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "weidu"; }; } diff --git a/pkgs/by-name/we/weka/package.nix b/pkgs/by-name/we/weka/package.nix index 1c5055fb1dd3..900148bf85cc 100644 --- a/pkgs/by-name/we/weka/package.nix +++ b/pkgs/by-name/we/weka/package.nix @@ -89,13 +89,13 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://www.cs.waikato.ac.nz/ml/weka/"; description = "Collection of machine learning algorithms for data mining tasks"; mainProgram = "weka"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl2Plus; - maintainers = [ maintainers.mimame ]; - platforms = platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.mimame ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/we/wemux/package.nix b/pkgs/by-name/we/wemux/package.nix index ff9c47694a4e..8c3e5b8f6465 100644 --- a/pkgs/by-name/we/wemux/package.nix +++ b/pkgs/by-name/we/wemux/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/zolrath/wemux"; description = "Multi-user tmux made easy"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ bsima ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bsima ]; mainProgram = "wemux"; }; } diff --git a/pkgs/by-name/we/wesher/package.nix b/pkgs/by-name/we/wesher/package.nix index 0d25f819d5b6..7294bd3a6718 100644 --- a/pkgs/by-name/we/wesher/package.nix +++ b/pkgs/by-name/we/wesher/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { "-X main.version=${version}" ]; - meta = with lib; { + meta = { description = "Wireguard overlay mesh network manager"; homepage = "https://github.com/costela/wesher"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ tylerjl ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ tylerjl ]; + platforms = lib.platforms.linux; mainProgram = "wesher"; }; } diff --git a/pkgs/by-name/we/weston/package.nix b/pkgs/by-name/we/weston/package.nix index 3980a633deae..4096661b660f 100644 --- a/pkgs/by-name/we/weston/package.nix +++ b/pkgs/by-name/we/weston/package.nix @@ -129,7 +129,7 @@ stdenv.mkDerivation rec { passthru.providedSessions = [ "weston" ]; - meta = with lib; { + meta = { description = "Lightweight and functional Wayland compositor"; longDescription = '' Weston is the reference implementation of a Wayland compositor, as well @@ -142,10 +142,10 @@ stdenv.mkDerivation rec { provided. ''; homepage = "https://gitlab.freedesktop.org/wayland/weston"; - license = licenses.mit; # Expat version - platforms = platforms.linux; + license = lib.licenses.mit; # Expat version + platforms = lib.platforms.linux; mainProgram = "weston"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ qyliss ]; }; diff --git a/pkgs/by-name/we/weylus/package.nix b/pkgs/by-name/we/weylus/package.nix index 1769cf995062..252b48e911af 100644 --- a/pkgs/by-name/we/weylus/package.nix +++ b/pkgs/by-name/we/weylus/package.nix @@ -97,11 +97,11 @@ rustPlatform.buildRustPackage { ]; }; - meta = with lib; { + meta = { description = "Use your tablet as graphic tablet/touch screen on your computer"; mainProgram = "weylus"; homepage = "https://github.com/H-M-H/Weylus"; - license = with licenses; [ agpl3Only ]; + license = with lib.licenses; [ agpl3Only ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/we/wezterm/package.nix b/pkgs/by-name/we/wezterm/package.nix index 2e37932cc914..6818b58e11ea 100644 --- a/pkgs/by-name/we/wezterm/package.nix +++ b/pkgs/by-name/we/wezterm/package.nix @@ -154,12 +154,12 @@ rustPlatform.buildRustPackage rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust"; homepage = "https://wezterm.org"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "wezterm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mimame SuperSandro2000 ]; diff --git a/pkgs/by-name/wf/wfa2-lib/package.nix b/pkgs/by-name/wf/wfa2-lib/package.nix index eae3514a8d5d..53afb60b385c 100644 --- a/pkgs/by-name/wf/wfa2-lib/package.nix +++ b/pkgs/by-name/wf/wfa2-lib/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DOPENMP=${if enableOpenMP then "ON" else "OFF"}" ]; - meta = with lib; { + meta = { description = "Wavefront alignment algorithm library v2"; homepage = "https://github.com/smarco/WFA2-lib"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wg/wg-access-server/package.nix b/pkgs/by-name/wg/wg-access-server/package.nix index e93eb4db7c74..ff3160091133 100644 --- a/pkgs/by-name/wg/wg-access-server/package.nix +++ b/pkgs/by-name/wg/wg-access-server/package.nix @@ -65,11 +65,11 @@ buildGoModule rec { tests = { inherit (nixosTests) wg-access-server; }; }; - meta = with lib; { + meta = { description = "All-in-one WireGuard VPN solution with a web ui for connecting devices"; homepage = "https://github.com/freifunkMUC/wg-access-server"; - license = licenses.mit; - maintainers = with maintainers; [ xanderio ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xanderio ]; mainProgram = "wg-access-server"; }; } diff --git a/pkgs/by-name/wg/wg-friendly-peer-names/package.nix b/pkgs/by-name/wg/wg-friendly-peer-names/package.nix index 74562801a560..0ae5dc92ace2 100644 --- a/pkgs/by-name/wg/wg-friendly-peer-names/package.nix +++ b/pkgs/by-name/wg/wg-friendly-peer-names/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation { install -D wgg.sh $out/bin/wgg ''; - meta = with lib; { + meta = { homepage = "https://github.com/FlyveHest/wg-friendly-peer-names"; description = "Small shellscript that makes it possible to give peers a friendlier and more readable name in the `wg` peer list"; - license = licenses.mit; + license = lib.licenses.mit; platforms = wireguard-tools.meta.platforms; - maintainers = with maintainers; [ mkg20001 ]; + maintainers = with lib.maintainers; [ mkg20001 ]; mainProgram = "wgg"; }; } diff --git a/pkgs/by-name/wg/wg-netmanager/package.nix b/pkgs/by-name/wg/wg-netmanager/package.nix index 762d96a615a4..7da56c9db6f6 100644 --- a/pkgs/by-name/wg/wg-netmanager/package.nix +++ b/pkgs/by-name/wg/wg-netmanager/package.nix @@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec { "device" ]; - meta = with lib; { + meta = { description = "Wireguard network manager"; longDescription = '' Wireguard network manager, written in rust, simplifies the setup of wireguard nodes, @@ -33,14 +33,14 @@ rustPlatform.buildRustPackage rec { To achieve this, wireguard network manager needs to be running on each node. ''; homepage = "https://github.com/gin66/wg_netmanager"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 bsd3 mpl20 ]; - maintainers = with maintainers; [ gin66 ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ gin66 ]; + platforms = lib.platforms.linux; mainProgram = "wg_netmanager"; }; } diff --git a/pkgs/by-name/wg/wgautomesh/package.nix b/pkgs/by-name/wg/wgautomesh/package.nix index bdaa5e272881..6d5e55b0db8e 100644 --- a/pkgs/by-name/wg/wgautomesh/package.nix +++ b/pkgs/by-name/wg/wgautomesh/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-Lshj8L880gGLi5xY1H/7twrL3YHolqloOfXeckGw/VE="; - meta = with lib; { + meta = { description = "Simple utility to help connect wireguard nodes together in a full mesh topology"; homepage = "https://git.deuxfleurs.fr/Deuxfleurs/wgautomesh"; - license = licenses.agpl3Only; - maintainers = [ maintainers.lx ]; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.lx ]; mainProgram = "wgautomesh"; }; } diff --git a/pkgs/by-name/wg/wgcf/package.nix b/pkgs/by-name/wg/wgcf/package.nix index 5ecae36274d5..5a8cc1195841 100644 --- a/pkgs/by-name/wg/wgcf/package.nix +++ b/pkgs/by-name/wg/wgcf/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { vendorHash = "sha256-lG0D0LJV9IMq9R8O4IuxTQeulBb4q0ToZTU+HaGmn68="; - meta = with lib; { + meta = { description = "Cross-platform, unofficial CLI for Cloudflare Warp"; homepage = "https://github.com/ViRb3/wgcf"; - license = licenses.mit; - maintainers = with maintainers; [ yureien ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yureien ]; mainProgram = "wgcf"; }; } diff --git a/pkgs/by-name/wg/wgo/package.nix b/pkgs/by-name/wg/wgo/package.nix index f56afa8fa09f..49f3b5863da5 100644 --- a/pkgs/by-name/wg/wgo/package.nix +++ b/pkgs/by-name/wg/wgo/package.nix @@ -33,11 +33,11 @@ buildGoModule { "-skip=TestWgoCmd_FileEvent" ]; - meta = with lib; { + meta = { description = "Live reload for Go apps"; mainProgram = "wgo"; homepage = "https://github.com/bokwoon95/wgo"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/wg/wgpu-utils/package.nix b/pkgs/by-name/wg/wgpu-utils/package.nix index 1aa622ce0d86..52de5cfe7a4d 100644 --- a/pkgs/by-name/wg/wgpu-utils/package.nix +++ b/pkgs/by-name/wg/wgpu-utils/package.nix @@ -42,14 +42,14 @@ rustPlatform.buildRustPackage rec { --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]} ''; - meta = with lib; { + meta = { description = "Safe and portable GPU abstraction in Rust, implementing WebGPU API"; homepage = "https://wgpu.rs/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ erictapen ]; + maintainers = with lib.maintainers; [ erictapen ]; mainProgram = "wgpu-info"; }; } diff --git a/pkgs/by-name/wh/whatfiles/package.nix b/pkgs/by-name/wh/whatfiles/package.nix index 2c6a81d505ea..afac76726f1b 100644 --- a/pkgs/by-name/wh/whatfiles/package.nix +++ b/pkgs/by-name/wh/whatfiles/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Log what files are accessed by any Linux process"; homepage = "https://github.com/spieglt/whatfiles"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "whatfiles"; }; } diff --git a/pkgs/by-name/wh/whatip/package.nix b/pkgs/by-name/wh/whatip/package.nix index f6e308d989ce..5035cc806412 100644 --- a/pkgs/by-name/wh/whatip/package.nix +++ b/pkgs/by-name/wh/whatip/package.nix @@ -54,12 +54,12 @@ python3.pkgs.buildPythonApplication rec { pygobject3 ]; - meta = with lib; { + meta = { description = "Info on your IP"; mainProgram = "whatip"; homepage = "https://gitlab.gnome.org/GabMus/whatip"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/wh/whatweb/package.nix b/pkgs/by-name/wh/whatweb/package.nix index 5b22854e863b..cb6615d526d5 100644 --- a/pkgs/by-name/wh/whatweb/package.nix +++ b/pkgs/by-name/wh/whatweb/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation rec { withRchardet = withRchardet; }; - meta = with lib; { + meta = { description = "Next generation web scanner"; longDescription = '' WhatWeb is a website fingerprinting tool that identifies web technologies such as CMSs, blogging platforms, @@ -111,8 +111,8 @@ stdenv.mkDerivation rec { ''; mainProgram = "whatweb"; homepage = "https://github.com/urbanadventurer/whatweb"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wh/wheelwizard/package.nix b/pkgs/by-name/wh/wheelwizard/package.nix index 633344d45f7f..181f70603ec4 100644 --- a/pkgs/by-name/wh/wheelwizard/package.nix +++ b/pkgs/by-name/wh/wheelwizard/package.nix @@ -74,12 +74,12 @@ buildDotnetModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "WheelWizard, Retro Rewind Launcher"; homepage = "https://github.com/TeamWheelWizard/WheelWizard"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "WheelWizard"; - maintainers = with maintainers; [ DerHalbGrieche ]; + maintainers = with lib.maintainers; [ DerHalbGrieche ]; }; } diff --git a/pkgs/by-name/wh/when/package.nix b/pkgs/by-name/wh/when/package.nix index d52a42fdf01a..4554caff5b97 100644 --- a/pkgs/by-name/wh/when/package.nix +++ b/pkgs/by-name/wh/when/package.nix @@ -34,12 +34,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Extremely simple personal calendar program"; homepage = "https://www.lightandmatter.com/when/when.html"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "when"; - maintainers = with maintainers; [ vonixxx ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ vonixxx ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/wh/whereami/package.nix b/pkgs/by-name/wh/whereami/package.nix index a11cbd194caf..baffc5dbdc36 100644 --- a/pkgs/by-name/wh/whereami/package.nix +++ b/pkgs/by-name/wh/whereami/package.nix @@ -38,14 +38,14 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Locate the current executable and running module/library"; homepage = "https://github.com/gpakosz/whereami"; - license = with licenses; [ + license = with lib.licenses; [ mit wtfpl ]; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/wh/whipper/package.nix b/pkgs/by-name/wh/whipper/package.nix index 441cee30fe16..1a7b559d6b16 100644 --- a/pkgs/by-name/wh/whipper/package.nix +++ b/pkgs/by-name/wh/whipper/package.nix @@ -117,12 +117,12 @@ python3.pkgs.buildPythonApplication rec { command = "HOME=$TMPDIR whipper --version"; }; - meta = with lib; { + meta = { homepage = "https://github.com/whipper-team/whipper"; description = "CD ripper aiming for accuracy over speed"; - maintainers = with maintainers; [ emily ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ emily ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "whipper"; }; } diff --git a/pkgs/by-name/wh/whisper/package.nix b/pkgs/by-name/wh/whisper/package.nix index ae12ed7140d3..86dceb755633 100644 --- a/pkgs/by-name/wh/whisper/package.nix +++ b/pkgs/by-name/wh/whisper/package.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Short read sequence mapper"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # vendored libraries acof, aelf, deflate, bzip2, zlib # https://github.com/refresh-bio/Whisper/issues/18 knownVulnerabilities = [ @@ -61,8 +61,8 @@ stdenv.mkDerivation rec { "CVE-2019-12900" ]; homepage = "https://github.com/refresh-bio/whisper"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/wh/whistle/package.nix b/pkgs/by-name/wh/whistle/package.nix index c10966882a7e..dcbd251432e2 100644 --- a/pkgs/by-name/wh/whistle/package.nix +++ b/pkgs/by-name/wh/whistle/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = with lib; { + meta = { description = "HTTP, HTTP2, HTTPS, Websocket debugging proxy"; homepage = "https://github.com/avwo/whistle"; changelog = "https://github.com/avwo/whistle/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "whistle"; }; diff --git a/pkgs/by-name/wh/whitebophir/package.nix b/pkgs/by-name/wh/whitebophir/package.nix index 5457e64f5267..555f8f77c811 100644 --- a/pkgs/by-name/wh/whitebophir/package.nix +++ b/pkgs/by-name/wh/whitebophir/package.nix @@ -40,12 +40,12 @@ buildNpmPackage rec { chmod +x $out/bin/whitebophir ''; - meta = with lib; { + meta = { description = "Online collaborative whiteboard that is simple, free, easy to use and to deploy"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; homepage = "https://github.com/lovasoa/whitebophir"; mainProgram = "whitebophir"; - maintainers = with maintainers; [ iblech ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ iblech ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wh/whitesur-icon-theme/package.nix b/pkgs/by-name/wh/whitesur-icon-theme/package.nix index 8a4c7cfd5def..f6c711b8cdc9 100644 --- a/pkgs/by-name/wh/whitesur-icon-theme/package.nix +++ b/pkgs/by-name/wh/whitesur-icon-theme/package.nix @@ -70,12 +70,12 @@ lib.checkListOfEnum "${pname}: theme variants" runHook postInstall ''; - meta = with lib; { + meta = { description = "MacOS Big Sur style icon theme for Linux desktops"; homepage = "https://github.com/vinceliuice/WhiteSur-icon-theme"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ icy-thought ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ icy-thought ]; }; } diff --git a/pkgs/by-name/wh/whois/package.nix b/pkgs/by-name/wh/whois/package.nix index f5b434fc5b8a..804e423972bf 100644 --- a/pkgs/by-name/wh/whois/package.nix +++ b/pkgs/by-name/wh/whois/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { installTargets = [ "install-whois" ]; - meta = with lib; { + meta = { description = "Intelligent WHOIS client from Debian"; longDescription = '' This package provides a commandline client for the WHOIS (RFC 3912) @@ -65,9 +65,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://packages.qa.debian.org/w/whois.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.unix; mainProgram = "whois"; }; } diff --git a/pkgs/by-name/wh/whsniff/package.nix b/pkgs/by-name/wh/whsniff/package.nix index f73fa552477b..943f2afafeb2 100644 --- a/pkgs/by-name/wh/whsniff/package.nix +++ b/pkgs/by-name/wh/whsniff/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/homewsn/whsniff"; description = "Packet sniffer for 802.15.4 wireless networks"; mainProgram = "whsniff"; - maintainers = with maintainers; [ snicket2100 ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ snicket2100 ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/wi/wifish/package.nix b/pkgs/by-name/wi/wifish/package.nix index 2ef24944e040..be6e3d3f5c77 100644 --- a/pkgs/by-name/wi/wifish/package.nix +++ b/pkgs/by-name/wi/wifish/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/bougyman/wifish"; description = "Simple wifi shell script for linux"; mainProgram = "wifish"; - license = licenses.wtfpl; + license = lib.licenses.wtfpl; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/wi/wifite2/package.nix b/pkgs/by-name/wi/wifite2/package.nix index 39daf04ce907..51ad6dc062af 100644 --- a/pkgs/by-name/wi/wifite2/package.nix +++ b/pkgs/by-name/wi/wifite2/package.nix @@ -73,13 +73,13 @@ python3.pkgs.buildPythonApplication rec { nativeCheckInputs = propagatedBuildInputs ++ [ python3.pkgs.unittestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/kimocoder/wifite2"; description = "Rewrite of the popular wireless network auditor, wifite"; mainProgram = "wifite"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lassulus danielfullmer d3vil0p3r diff --git a/pkgs/by-name/wi/wiggle/package.nix b/pkgs/by-name/wi/wiggle/package.nix index 582c99f068e2..b0758c19e784 100644 --- a/pkgs/by-name/wi/wiggle/package.nix +++ b/pkgs/by-name/wi/wiggle/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { homepage = "https://blog.neil.brown.name/category/wiggle/"; description = "Tool for applying patches with conflicts"; mainProgram = "wiggle"; @@ -51,8 +51,8 @@ stdenv.mkDerivation rec { possible. Also, wiggle will (in some cases) detect changes that have already been applied, and will ignore them. ''; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/wi/wiiload/package.nix b/pkgs/by-name/wi/wiiload/package.nix index 54ca0efb8d18..1de0f2ee9d96 100644 --- a/pkgs/by-name/wi/wiiload/package.nix +++ b/pkgs/by-name/wi/wiiload/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = with lib; { + meta = { description = "Load homebrew apps over network/usbgecko to your Wii"; mainProgram = "wiiload"; homepage = "https://wiibrew.org/wiki/Wiiload"; - license = licenses.gpl2; - maintainers = with maintainers; [ tomsmeets ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ tomsmeets ]; }; } diff --git a/pkgs/by-name/wi/wiimms-iso-tools/package.nix b/pkgs/by-name/wi/wiimms-iso-tools/package.nix index 4fa1dddaf12a..37c9c931cf99 100644 --- a/pkgs/by-name/wi/wiimms-iso-tools/package.nix +++ b/pkgs/by-name/wi/wiimms-iso-tools/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { ./install.sh --no-sudo ''; - meta = with lib; { + meta = { homepage = "https://wit.wiimm.de"; description = "Set of command line tools to manipulate Wii and GameCube ISO images and WBFS containers"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ nilp0inter ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nilp0inter ]; }; } diff --git a/pkgs/by-name/wi/wiiuse/package.nix b/pkgs/by-name/wi/wiiuse/package.nix index e99de04a2964..51bdd333f750 100644 --- a/pkgs/by-name/wi/wiiuse/package.nix +++ b/pkgs/by-name/wi/wiiuse/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { ] ++ [ (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) ]; - meta = with lib; { + meta = { description = "Feature complete cross-platform Wii Remote access library"; mainProgram = "wiiuseexample"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/wiiuse/wiiuse"; - maintainers = with maintainers; [ shamilton ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/wi/wiki-js/package.nix b/pkgs/by-name/wi/wiki-js/package.nix index 06778427ec87..2035aebcf5a9 100644 --- a/pkgs/by-name/wi/wiki-js/package.nix +++ b/pkgs/by-name/wi/wiki-js/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { homepage = "https://js.wiki/"; description = "Modern and powerful wiki app built on Node.js"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/wi/wildmidi/package.nix b/pkgs/by-name/wi/wildmidi/package.nix index 4f5c7f90bcf4..59d1aeaaaa64 100644 --- a/pkgs/by-name/wi/wildmidi/package.nix +++ b/pkgs/by-name/wi/wildmidi/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { ln -s ${defaultCfg} ${defaultCfgPath} ''; - meta = with lib; { + meta = { description = "Software MIDI player and library"; mainProgram = "wildmidi"; longDescription = '' @@ -64,8 +64,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://wildmidi.sourceforge.net/"; # The library is LGPLv3, the wildmidi executable is GPLv3 - license = licenses.lgpl3; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/wi/wily/package.nix b/pkgs/by-name/wi/wily/package.nix index 5cf6d3e9cb8b..b516d162b173 100644 --- a/pkgs/by-name/wi/wily/package.nix +++ b/pkgs/by-name/wi/wily/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Emulation of ACME"; homepage = "http://wily.sourceforge.net"; - license = licenses.artistic1; + license = lib.licenses.artistic1; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "wily"; }; } diff --git a/pkgs/by-name/wi/wimboot/package.nix b/pkgs/by-name/wi/wimboot/package.nix index 0ec82daf6354..bb87666ae9c3 100644 --- a/pkgs/by-name/wi/wimboot/package.nix +++ b/pkgs/by-name/wi/wimboot/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cp wimboot.x86_64.efi $out/share/wimboot ''; - meta = with lib; { + meta = { homepage = "https://ipxe.org/wimboot"; description = "Windows Imaging Format bootloader"; - license = licenses.gpl2Plus; - teams = [ teams.helsinki-systems ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.helsinki-systems ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/wi/wimlib/package.nix b/pkgs/by-name/wi/wimlib/package.nix index 3f62c7d4351e..e1747a2c127e 100644 --- a/pkgs/by-name/wi/wimlib/package.nix +++ b/pkgs/by-name/wi/wimlib/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { patchShebangs tests ''; - meta = with lib; { + meta = { homepage = "https://wimlib.net"; description = "Library and program to extract, create, and modify WIM files"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; - license = with licenses; [ + license = with lib.licenses; [ gpl3 lgpl3 mit diff --git a/pkgs/by-name/wi/win-spice/package.nix b/pkgs/by-name/wi/win-spice/package.nix index 9f6420682a20..42001872fadb 100644 --- a/pkgs/by-name/wi/win-spice/package.nix +++ b/pkgs/by-name/wi/win-spice/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Windows SPICE Drivers"; homepage = "https://www.spice-space.org/"; - license = [ licenses.asl20 ]; # See https://github.com/vrozenfe/qxl-dod + license = [ lib.licenses.asl20 ]; # See https://github.com/vrozenfe/qxl-dod maintainers = [ ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wi/windowchef/package.nix b/pkgs/by-name/wi/windowchef/package.nix index e74e4c063751..0d8062a43ab8 100644 --- a/pkgs/by-name/wi/windowchef/package.nix +++ b/pkgs/by-name/wi/windowchef/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Stacking window manager that cooks windows with orders from the Waitron"; homepage = "https://github.com/tudurom/windowchef"; - maintainers = with maintainers; [ bhougland ]; - license = licenses.isc; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ bhougland ]; + license = lib.licenses.isc; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wi/windowlab/package.nix b/pkgs/by-name/wi/windowlab/package.nix index 6d49b8355e6d..1b5fc35d533b 100644 --- a/pkgs/by-name/wi/windowlab/package.nix +++ b/pkgs/by-name/wi/windowlab/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { sed "s|/usr/local|$out|g" Makefile.orig >> Makefile ''; - meta = with lib; { + meta = { description = "Small and simple stacking window manager"; homepage = "http://nickgravgaard.com/windowlab/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; mainProgram = "windowlab"; }; } diff --git a/pkgs/by-name/wi/windows10-icons/package.nix b/pkgs/by-name/wi/windows10-icons/package.nix index 7cdda913ff2f..2507dd07187d 100644 --- a/pkgs/by-name/wi/windows10-icons/package.nix +++ b/pkgs/by-name/wi/windows10-icons/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { dontConfigure = true; dontBuild = true; - meta = with lib; { + meta = { description = "Windows 10 icon theme"; homepage = "http://b00merang.weebly.com/windows-10.html"; - license = licenses.unfree; - maintainers = with maintainers; [ mib ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mib ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/wi/wine-discord-ipc-bridge/package.nix b/pkgs/by-name/wi/wine-discord-ipc-bridge/package.nix index 1baf11642eb7..ce4242c7a1b9 100644 --- a/pkgs/by-name/wi/wine-discord-ipc-bridge/package.nix +++ b/pkgs/by-name/wi/wine-discord-ipc-bridge/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Enable games running under wine to use Discord Rich Presence"; homepage = "https://github.com/0e4ef622/wine-discord-ipc-bridge"; - license = licenses.mit; - maintainers = [ maintainers.uku3lig ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.uku3lig ]; mainProgram = "winediscordipcbridge"; platforms = [ "i686-windows" ]; }; diff --git a/pkgs/by-name/wi/wineasio/package.nix b/pkgs/by-name/wi/wineasio/package.nix index a6727bcc8f15..413ba8049e20 100644 --- a/pkgs/by-name/wi/wineasio/package.nix +++ b/pkgs/by-name/wi/wineasio/package.nix @@ -86,15 +86,15 @@ multiStdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/wineasio/wineasio"; changelog = "https://github.com/wineasio/wineasio/releases/tag/${src.tag}"; description = "ASIO to JACK driver for WINE"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl21 ]; - maintainers = with maintainers; [ lovesegfault ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lovesegfault ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wi/wingpanel-indicator-ayatana/package.nix b/pkgs/by-name/wi/wingpanel-indicator-ayatana/package.nix index 531049d00d63..9d617fa5ab0c 100644 --- a/pkgs/by-name/wi/wingpanel-indicator-ayatana/package.nix +++ b/pkgs/by-name/wi/wingpanel-indicator-ayatana/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Ayatana Compatibility Indicator for Wingpanel"; homepage = "https://github.com/Lafydev/wingpanel-indicator-ayatana"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/by-name/wi/wingpanel-indicator-namarupa/package.nix b/pkgs/by-name/wi/wingpanel-indicator-namarupa/package.nix index 82029aa3fe9c..64187a25f7ad 100644 --- a/pkgs/by-name/wi/wingpanel-indicator-namarupa/package.nix +++ b/pkgs/by-name/wi/wingpanel-indicator-namarupa/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Wingpanel Namarupa Indicator (Ayatana support)"; homepage = "https://github.com/lenemter/wingpanel-indicator-namarupa"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/by-name/wi/wire-desktop/package.nix b/pkgs/by-name/wi/wire-desktop/package.nix index d7092b4afeca..433ac876fbb2 100644 --- a/pkgs/by-name/wi/wire-desktop/package.nix +++ b/pkgs/by-name/wi/wire-desktop/package.nix @@ -44,7 +44,7 @@ let } .${system} or throwSystem; - meta = with lib; { + meta = { description = "Modern, secure messenger for everyone"; longDescription = '' Wire Personal is a secure, privacy-friendly messenger. It combines useful @@ -59,13 +59,13 @@ let ''; homepage = "https://wire.com/"; downloadPage = "https://wire.com/download/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ arianvp toonn ]; - platforms = platforms.darwin ++ [ + platforms = lib.platforms.darwin ++ [ "x86_64-linux" ]; hydraPlatforms = [ ]; diff --git a/pkgs/by-name/wi/wireguard-go/package.nix b/pkgs/by-name/wi/wireguard-go/package.nix index 6386c2966000..11ce83bcc317 100644 --- a/pkgs/by-name/wi/wireguard-go/package.nix +++ b/pkgs/by-name/wi/wireguard-go/package.nix @@ -55,11 +55,11 @@ buildGoModule ( version = "v${version}"; }; - meta = with lib; { + meta = { description = "Userspace Go implementation of WireGuard"; homepage = "https://git.zx2c4.com/wireguard-go/about/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kirelagin winter zx2c4 diff --git a/pkgs/by-name/wi/wireguard-tools/package.nix b/pkgs/by-name/wi/wireguard-tools/package.nix index 6364c202dec6..380e5c91530d 100644 --- a/pkgs/by-name/wi/wireguard-tools/package.nix +++ b/pkgs/by-name/wi/wireguard-tools/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { tests = nixosTests.wireguard; }; - meta = with lib; { + meta = { description = "Tools for the WireGuard secure network tunnel"; longDescription = '' Supplies the main userspace tooling for using and configuring WireGuard tunnels, including the wg(8) and wg-quick(8) utilities. @@ -86,12 +86,12 @@ stdenv.mkDerivation rec { ''; downloadPage = "https://git.zx2c4.com/wireguard-tools/refs/"; homepage = "https://www.wireguard.com/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ zx2c4 ma27 ]; mainProgram = "wg"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wi/wireguard-vanity-keygen/package.nix b/pkgs/by-name/wi/wireguard-vanity-keygen/package.nix index 59f1d8337803..7dcafb56609b 100644 --- a/pkgs/by-name/wi/wireguard-vanity-keygen/package.nix +++ b/pkgs/by-name/wi/wireguard-vanity-keygen/package.nix @@ -31,8 +31,8 @@ buildGoModule rec { "https://github.com/axllent/wireguard-vanity-keygen/blob/develop/CHANGELOG.md#${versionWithoutDots}"; description = "WireGuard vanity key generator"; homepage = "https://github.com/axllent/wireguard-vanity-keygen"; - license = licenses.mit; - maintainers = with maintainers; [ arikgrahl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arikgrahl ]; mainProgram = "wireguard-vanity-keygen"; }; } diff --git a/pkgs/by-name/wi/wireless-regdb/package.nix b/pkgs/by-name/wi/wireless-regdb/package.nix index a7b6b5bc2d73..6763d8a6278b 100644 --- a/pkgs/by-name/wi/wireless-regdb/package.nix +++ b/pkgs/by-name/wi/wireless-regdb/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "Wireless regulatory database for CRDA"; homepage = "https://wireless.docs.kernel.org/en/latest/en/developers/regulatory/wireless-regdb.html"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/wi/wireproxy/package.nix b/pkgs/by-name/wi/wireproxy/package.nix index e145dadf5f17..17eab709d3e7 100644 --- a/pkgs/by-name/wi/wireproxy/package.nix +++ b/pkgs/by-name/wi/wireproxy/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { version = src.rev; }; - meta = with lib; { + meta = { description = "Wireguard client that exposes itself as a socks5 proxy"; homepage = "https://github.com/pufferffish/wireproxy"; - license = licenses.isc; - maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; mainProgram = "wireproxy"; }; } diff --git a/pkgs/by-name/wi/wireviz/package.nix b/pkgs/by-name/wi/wireviz/package.nix index 5f62939d1111..320af8c6ee22 100644 --- a/pkgs/by-name/wi/wireviz/package.nix +++ b/pkgs/by-name/wi/wireviz/package.nix @@ -32,11 +32,11 @@ python3.pkgs.buildPythonApplication rec { "wireviz.wv_cli" ]; - meta = with lib; { + meta = { description = "Easily document cables and wiring harnesses"; homepage = "https://pypi.org/project/wireviz/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ pinpox ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ pinpox ]; mainProgram = "wireviz"; }; } diff --git a/pkgs/by-name/wi/wireworld/package.nix b/pkgs/by-name/wi/wireworld/package.nix index a9018ee75544..fb21db984a61 100644 --- a/pkgs/by-name/wi/wireworld/package.nix +++ b/pkgs/by-name/wi/wireworld/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fascinating electronics logic puzzles, game where you'll learn how to build clocks, diodes, and logic gates"; mainProgram = "Wireworld"; - license = with licenses; [ + license = with lib.licenses; [ mit ofl blueOak100 diff --git a/pkgs/by-name/wi/wiseunpacker/package.nix b/pkgs/by-name/wi/wiseunpacker/package.nix index 891255b2e345..ee414e6615b2 100644 --- a/pkgs/by-name/wi/wiseunpacker/package.nix +++ b/pkgs/by-name/wi/wiseunpacker/package.nix @@ -32,10 +32,10 @@ buildDotnetModule { projectFile = "Test/Test.csproj"; - meta = with lib; { + meta = { homepage = "https://github.com/mnadareski/WiseUnpacker/"; description = "C# Wise installer unpacker based on HWUN and E_WISE "; - maintainers = [ maintainers.gigahawk ]; - license = licenses.mit; + maintainers = [ lib.maintainers.gigahawk ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/wi/wishbone-tool/package.nix b/pkgs/by-name/wi/wishbone-tool/package.nix index c75d6921cd2a..685e41c0b530 100644 --- a/pkgs/by-name/wi/wishbone-tool/package.nix +++ b/pkgs/by-name/wi/wishbone-tool/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage { buildInputs = [ libusb-compat-0_1 ]; - meta = with lib; { + meta = { description = "Manipulate a Wishbone device over some sort of bridge"; mainProgram = "wishbone-tool"; homepage = "https://github.com/litex-hub/wishbone-utils"; - license = licenses.asl20; - maintainers = with maintainers; [ edef ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ edef ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wi/wit-bindgen/package.nix b/pkgs/by-name/wi/wit-bindgen/package.nix index d0500ec685fe..46865866ec45 100644 --- a/pkgs/by-name/wi/wit-bindgen/package.nix +++ b/pkgs/by-name/wi/wit-bindgen/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { # https://github.com/bytecodealliance/wit-bindgen/blob/main/.github/workflows/main.yml doCheck = false; - meta = with lib; { + meta = { description = "Language binding generator for WebAssembly interface types"; homepage = "https://github.com/bytecodealliance/wit-bindgen"; - license = licenses.asl20; - maintainers = with maintainers; [ xrelkd ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ xrelkd ]; mainProgram = "wit-bindgen"; }; } diff --git a/pkgs/by-name/wi/with-shell/package.nix b/pkgs/by-name/wi/with-shell/package.nix index 4fae26af98d6..d28ac3d15842 100644 --- a/pkgs/by-name/wi/with-shell/package.nix +++ b/pkgs/by-name/wi/with-shell/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/mchav/With"; description = "Command prefixing for continuous workflow using a single tool"; longDescription = '' @@ -70,9 +70,9 @@ stdenv.mkDerivation { To exit use either :q or :exit. ''; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "with"; }; } diff --git a/pkgs/by-name/wi/witnessme/package.nix b/pkgs/by-name/wi/witnessme/package.nix index 9f09afe60b4b..54525da7365c 100644 --- a/pkgs/by-name/wi/witnessme/package.nix +++ b/pkgs/by-name/wi/witnessme/package.nix @@ -70,11 +70,11 @@ python3.pkgs.buildPythonApplication { "tests/test_target_parsing.py" ]; - meta = with lib; { + meta = { description = "Web Inventory tool"; homepage = "https://github.com/byt3bl33d3r/WitnessMe"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "witnessme"; }; } diff --git a/pkgs/by-name/wi/wizer/package.nix b/pkgs/by-name/wi/wizer/package.nix index 84a2f97dd2d0..8414456f5104 100644 --- a/pkgs/by-name/wi/wizer/package.nix +++ b/pkgs/by-name/wi/wizer/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { version = testers.testVersion { package = wizer; }; }; - meta = with lib; { + meta = { description = "WebAssembly pre-initializer"; mainProgram = "wizer"; homepage = "https://github.com/bytecodealliance/wizer"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lucperkins amesgen ]; diff --git a/pkgs/by-name/wk/wkhtmltopdf/package.nix b/pkgs/by-name/wk/wkhtmltopdf/package.nix index 6f13592bc748..acf50a7739a9 100644 --- a/pkgs/by-name/wk/wkhtmltopdf/package.nix +++ b/pkgs/by-name/wk/wkhtmltopdf/package.nix @@ -102,7 +102,7 @@ stdenv.mkDerivation ( $out/bin/wkhtmltopdf --version ''; - meta = with lib; { + meta = { homepage = "https://wkhtmltopdf.org/"; description = "Tools for rendering web pages to PDF or images (binary package)"; longDescription = '' @@ -113,8 +113,8 @@ stdenv.mkDerivation ( There is also a C library, if you're into that kind of thing. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nbr kalbasit ]; diff --git a/pkgs/by-name/wl/wl-clip-persist/package.nix b/pkgs/by-name/wl/wl-clip-persist/package.nix index 6018653e4639..4f04875f96d9 100644 --- a/pkgs/by-name/wl/wl-clip-persist/package.nix +++ b/pkgs/by-name/wl/wl-clip-persist/package.nix @@ -24,13 +24,13 @@ rustPlatform.buildRustPackage rec { buildInputs = [ wayland ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Keep Wayland clipboard even after programs close"; homepage = "https://github.com/Linus789/wl-clip-persist"; inherit (wayland.meta) platforms; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "wl-clip-persist"; - maintainers = with maintainers; [ name-snrl ]; + maintainers = with lib.maintainers; [ name-snrl ]; }; } diff --git a/pkgs/by-name/wl/wl-clipboard-x11/package.nix b/pkgs/by-name/wl/wl-clipboard-x11/package.nix index d37426b1949a..d7a640be0b1c 100644 --- a/pkgs/by-name/wl/wl-clipboard-x11/package.nix +++ b/pkgs/by-name/wl/wl-clipboard-x11/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { --replace '$(command -v wl-paste)' ${wl-clipboard}/bin/wl-paste ''; - meta = with lib; { + meta = { description = "Wrapper to use wl-clipboard as a drop-in replacement for X11 clipboard tools"; homepage = "https://github.com/brunelli/wl-clipboard-x11"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ artturin ]; mainProgram = "xclip"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wl/wl-clipboard/package.nix b/pkgs/by-name/wl/wl-clipboard/package.nix index 45e310684489..d206ec3f2b2a 100644 --- a/pkgs/by-name/wl/wl-clipboard/package.nix +++ b/pkgs/by-name/wl/wl-clipboard/package.nix @@ -46,14 +46,14 @@ stdenv.mkDerivation rec { --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/bugaevc/wl-clipboard"; description = "Command-line copy/paste utilities for Wayland"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dywedir kashw2 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wl/wl-gammactl/package.nix b/pkgs/by-name/wl/wl-gammactl/package.nix index 3a63595b4e84..9acca8a3a397 100644 --- a/pkgs/by-name/wl/wl-gammactl/package.nix +++ b/pkgs/by-name/wl/wl-gammactl/package.nix @@ -47,16 +47,16 @@ stdenv.mkDerivation { substituteInPlace meson.build --replace "git = find_program('git')" "git = 'false'" ''; - meta = with lib; { + meta = { description = "Contrast, brightness, and gamma adjustments for Wayland"; longDescription = '' Small GTK GUI application to set contrast, brightness, and gamma for wayland compositors which support the wlr-gamma-control protocol extension. ''; homepage = "https://github.com/mischw/wl-gammactl"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ lodi ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lodi ]; mainProgram = "wl-gammactl"; }; } diff --git a/pkgs/by-name/wl/wl-mirror/package.nix b/pkgs/by-name/wl/wl-mirror/package.nix index dd04024bc44a..2617cc1affc3 100644 --- a/pkgs/by-name/wl/wl-mirror/package.nix +++ b/pkgs/by-name/wl/wl-mirror/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/wl-present --prefix PATH ":" ${wl-present-binpath} ''; - meta = with lib; { + meta = { homepage = "https://github.com/Ferdi265/wl-mirror"; description = "Simple Wayland output mirror client"; - license = licenses.gpl3; - maintainers = with maintainers; [ synthetica ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ synthetica ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wl/wlc/package.nix b/pkgs/by-name/wl/wlc/package.nix index 82208843da8a..d83c1863dbb8 100644 --- a/pkgs/by-name/wl/wlc/package.nix +++ b/pkgs/by-name/wl/wlc/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonPackage rec { pythonImportsCheck = [ "wlc" ]; - meta = with lib; { + meta = { description = "Weblate commandline client using Weblate's REST API"; homepage = "https://github.com/WeblateOrg/wlc"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ paperdigits ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ paperdigits ]; mainProgram = "wlc"; }; } diff --git a/pkgs/by-name/wl/wlclock/package.nix b/pkgs/by-name/wl/wlclock/package.nix index 3fb526f199e6..b75de4eb5957 100644 --- a/pkgs/by-name/wl/wlclock/package.nix +++ b/pkgs/by-name/wl/wlclock/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { cairo ]; - meta = with lib; { + meta = { description = "Digital analog clock for Wayland desktops"; homepage = "https://git.sr.ht/~leon_plickat/wlclock"; - license = licenses.gpl3; - maintainers = with maintainers; [ nomisiv ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ nomisiv ]; + platforms = with lib.platforms; linux; mainProgram = "wlclock"; }; } diff --git a/pkgs/by-name/wl/wleave/package.nix b/pkgs/by-name/wl/wleave/package.nix index 88be28510231..3f106d649f5a 100644 --- a/pkgs/by-name/wl/wleave/package.nix +++ b/pkgs/by-name/wl/wleave/package.nix @@ -73,12 +73,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Wayland-native logout script written in GTK4"; homepage = "https://github.com/AMNatty/wleave"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "wleave"; - maintainers = with maintainers; [ ludovicopiero ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ludovicopiero ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wl/wljoywake/package.nix b/pkgs/by-name/wl/wljoywake/package.nix index 00899a219751..ad5283f31fbf 100644 --- a/pkgs/by-name/wl/wljoywake/package.nix +++ b/pkgs/by-name/wl/wljoywake/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { wayland-protocols ]; - meta = with lib; { + meta = { description = "Wayland tool for idle inhibit when using joysticks"; homepage = "https://github.com/nowrep/wljoywake"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.jtrees ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.jtrees ]; mainProgram = "wljoywake"; }; } diff --git a/pkgs/by-name/wl/wllvm/package.nix b/pkgs/by-name/wl/wllvm/package.nix index 365c9ff472e2..ec9eb27baaf3 100644 --- a/pkgs/by-name/wl/wllvm/package.nix +++ b/pkgs/by-name/wl/wllvm/package.nix @@ -18,11 +18,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "wllvm.wllvm" ]; - meta = with lib; { + meta = { homepage = "https://github.com/travitch/whole-program-llvm"; description = "Wrapper script to build whole-program LLVM bitcode files"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/wl/wlprop/package.nix b/pkgs/by-name/wl/wlprop/package.nix index 9ce6e4ed23f1..2145443d2c04 100644 --- a/pkgs/by-name/wl/wlprop/package.nix +++ b/pkgs/by-name/wl/wlprop/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { ''; passthru.scriptName = "wlprop.sh"; - meta = with lib; { + meta = { description = "Xprop clone for wlroots based compositors"; homepage = "https://gist.github.com/crispyricepc/f313386043395ff06570e02af2d9a8e0"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "wlprop"; }; } diff --git a/pkgs/by-name/wl/wlr-layout-ui/package.nix b/pkgs/by-name/wl/wlr-layout-ui/package.nix index 56b0f7d4b835..54db15657f56 100644 --- a/pkgs/by-name/wl/wlr-layout-ui/package.nix +++ b/pkgs/by-name/wl/wlr-layout-ui/package.nix @@ -33,9 +33,9 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "Simple GUI to setup the screens layout on wlroots based systems"; homepage = "https://github.com/fdev31/wlr-layout-ui/"; - maintainers = with maintainers; [ bnlrnz ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ bnlrnz ]; + license = lib.licenses.mit; mainProgram = "wlrlui"; - platforms = subtractLists platforms.darwin platforms.unix; + platforms = subtractLists lib.platforms.darwin lib.platforms.unix; }; } diff --git a/pkgs/by-name/wl/wlr-randr/package.nix b/pkgs/by-name/wl/wlr-randr/package.nix index f39ddfa2e508..33b1631bfb14 100644 --- a/pkgs/by-name/wl/wlr-randr/package.nix +++ b/pkgs/by-name/wl/wlr-randr/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { description = "Xrandr clone for wlroots compositors"; homepage = "https://gitlab.freedesktop.org/emersion/wlr-randr"; - license = licenses.mit; - maintainers = with maintainers; [ ma27 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ma27 ]; + platforms = lib.platforms.linux; mainProgram = "wlr-randr"; }; } diff --git a/pkgs/by-name/wl/wlr-which-key/package.nix b/pkgs/by-name/wl/wlr-which-key/package.nix index 881cf46396e8..0b835b1b491a 100644 --- a/pkgs/by-name/wl/wlr-which-key/package.nix +++ b/pkgs/by-name/wl/wlr-which-key/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { pango ]; - meta = with lib; { + meta = { description = "Keymap manager for wlroots-based compositors"; homepage = "https://github.com/MaxVerevkin/wlr-which-key"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ xlambein ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ xlambein ]; + platforms = lib.platforms.linux; mainProgram = "wlr-which-key"; }; } diff --git a/pkgs/by-name/wl/wlrctl/package.nix b/pkgs/by-name/wl/wlrctl/package.nix index 810c196e8a7d..d7ed65e671f9 100644 --- a/pkgs/by-name/wl/wlrctl/package.nix +++ b/pkgs/by-name/wl/wlrctl/package.nix @@ -40,15 +40,15 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=type-limits"; - meta = with lib; { + meta = { description = "Command line utility for miscellaneous wlroots Wayland extensions"; homepage = "https://git.sr.ht/~brocellous/wlrctl"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ puffnfresh artturin ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "wlrctl"; }; } diff --git a/pkgs/by-name/wm/wmderland/package.nix b/pkgs/by-name/wm/wmderland/package.nix index 557813a56980..a875587b932f 100644 --- a/pkgs/by-name/wm/wmderland/package.nix +++ b/pkgs/by-name/wm/wmderland/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { providedSessions = [ "wmderland" ]; }; - meta = with lib; { + meta = { description = "Modern and minimal X11 tiling window manager"; homepage = "https://github.com/aesophor/wmderland"; - license = licenses.mit; + license = lib.licenses.mit; platforms = libX11.meta.platforms; - maintainers = with maintainers; [ takagiy ]; + maintainers = with lib.maintainers; [ takagiy ]; mainProgram = "wmderland"; }; } diff --git a/pkgs/by-name/wm/wmderlandc/package.nix b/pkgs/by-name/wm/wmderlandc/package.nix index f1ce7beb9552..87e63dec4199 100644 --- a/pkgs/by-name/wm/wmderlandc/package.nix +++ b/pkgs/by-name/wm/wmderlandc/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { xorgproto ]; - meta = with lib; { + meta = { description = "Tiny program to interact with wmderland"; homepage = "https://github.com/aesophor/wmderland/tree/master/ipc-client"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ takagiy ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ takagiy ]; mainProgram = "wmderlandc"; }; }) diff --git a/pkgs/by-name/wm/wmenu/package.nix b/pkgs/by-name/wm/wmenu/package.nix index 11f24d59102d..3ae64c334677 100644 --- a/pkgs/by-name/wm/wmenu/package.nix +++ b/pkgs/by-name/wm/wmenu/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { scdoc ]; - meta = with lib; { + meta = { description = "Efficient dynamic menu for Sway and wlroots based Wayland compositors"; homepage = "https://codeberg.org/adnano/wmenu"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ eken sweiglbosker ]; diff --git a/pkgs/by-name/wm/wmfs/package.nix b/pkgs/by-name/wm/wmfs/package.nix index fafac60f1c21..6f17819533f1 100644 --- a/pkgs/by-name/wm/wmfs/package.nix +++ b/pkgs/by-name/wm/wmfs/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation { "MANPREFIX=${placeholder "out"}/share/man" ]; - meta = with lib; { + meta = { description = "Window manager from scratch"; - license = licenses.bsd2; - maintainers = [ maintainers.balsoft ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.balsoft ]; + platforms = lib.platforms.linux; mainProgram = "wmfs"; }; } diff --git a/pkgs/by-name/wm/wmic-bin/package.nix b/pkgs/by-name/wm/wmic-bin/package.nix index e557ffd76764..5491bcac71b4 100644 --- a/pkgs/by-name/wm/wmic-bin/package.nix +++ b/pkgs/by-name/wm/wmic-bin/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "WMI client for Linux (binary)"; mainProgram = "wmic"; homepage = "https://www.openvas.org"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/wm/wmutils-core/package.nix b/pkgs/by-name/wm/wmutils-core/package.nix index 5f35c29dbb42..781e921ebb6b 100644 --- a/pkgs/by-name/wm/wmutils-core/package.nix +++ b/pkgs/by-name/wm/wmutils-core/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Set of window manipulation tools"; homepage = "https://github.com/wmutils/core"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wm/wmutils-opt/package.nix b/pkgs/by-name/wm/wmutils-opt/package.nix index 1894af702624..90267bf8c43e 100644 --- a/pkgs/by-name/wm/wmutils-opt/package.nix +++ b/pkgs/by-name/wm/wmutils-opt/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Optional addons to wmutils"; homepage = "https://github.com/wmutils/opt"; - license = licenses.isc; - maintainers = with maintainers; [ vifino ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ vifino ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wo/woff2/package.nix b/pkgs/by-name/wo/woff2/package.nix index c455e5b8a6e0..253913bb04b6 100644 --- a/pkgs/by-name/wo/woff2/package.nix +++ b/pkgs/by-name/wo/woff2/package.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 3.10)' ''; - meta = with lib; { + meta = { description = "Webfont compression reference code"; homepage = "https://github.com/google/woff2"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wo/wofi/package.nix b/pkgs/by-name/wo/wofi/package.nix index ab73d5bc8b11..71ee4a47f4cb 100644 --- a/pkgs/by-name/wo/wofi/package.nix +++ b/pkgs/by-name/wo/wofi/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { installManPage man/wofi* ''; - meta = with lib; { + meta = { description = "Launcher/menu program for wlroots based wayland compositors such as sway"; homepage = "https://hg.sr.ht/~scoopta/wofi"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ aleksana ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = with lib.platforms; linux; mainProgram = "wofi"; }; } diff --git a/pkgs/by-name/wo/wol/package.nix b/pkgs/by-name/wo/wol/package.nix index 5de294a59cbd..363c9431cfee 100644 --- a/pkgs/by-name/wo/wol/package.nix +++ b/pkgs/by-name/wo/wol/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Implements Wake On LAN functionality in a small program"; homepage = "https://sourceforge.net/projects/wake-on-lan/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ makefu ]; mainProgram = "wol"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wo/wolf-shaper/package.nix b/pkgs/by-name/wo/wolf-shaper/package.nix index cb3efbe23d6c..f573a8dedccd 100644 --- a/pkgs/by-name/wo/wolf-shaper/package.nix +++ b/pkgs/by-name/wo/wolf-shaper/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { cp -r bin/wolf-shaper $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://wolf-plugins.github.io/wolf-shaper/"; description = "Waveshaper plugin with spline-based graph editor"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.magnetophon ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.magnetophon ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/wo/wolfebin/package.nix b/pkgs/by-name/wo/wolfebin/package.nix index e44f30213899..f80159bcd77f 100644 --- a/pkgs/by-name/wo/wolfebin/package.nix +++ b/pkgs/by-name/wo/wolfebin/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { install -m 755 wolfebin_server.py $out/bin/wolfebin_server ''; - meta = with lib; { + meta = { homepage = "https://github.com/thejoshwolfe/wolfebin"; description = "Quick and easy file sharing"; - license = licenses.mit; - maintainers = with maintainers; [ andrewrk ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ andrewrk ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/wo/wolfssl/package.nix b/pkgs/by-name/wo/wolfssl/package.nix index b4c3915e0a83..b85e2c2016e0 100644 --- a/pkgs/by-name/wo/wolfssl/package.nix +++ b/pkgs/by-name/wo/wolfssl/package.nix @@ -108,14 +108,14 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p "$out" ''; - meta = with lib; { + meta = { description = "Small, fast, portable implementation of TLS/SSL for embedded devices"; mainProgram = "wolfssl-config"; homepage = "https://www.wolfssl.com/"; changelog = "https://github.com/wolfSSL/wolfssl/releases/tag/v${finalAttrs.version}-stable"; - platforms = platforms.all; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fab vifino ]; diff --git a/pkgs/by-name/wo/wolfstoneextract/package.nix b/pkgs/by-name/wo/wolfstoneextract/package.nix index 75f55a6ca475..4f779d08633d 100644 --- a/pkgs/by-name/wo/wolfstoneextract/package.nix +++ b/pkgs/by-name/wo/wolfstoneextract/package.nix @@ -20,15 +20,15 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = with lib; { + meta = { description = "Utility to extract Wolfstone data from Wolfenstein II"; mainProgram = "wolfstoneextract"; homepage = "https://bitbucket.org/ecwolf/wolfstoneextract/src/master/"; platforms = [ "x86_64-linux" ]; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only bsd3 ]; - maintainers = with maintainers; [ keenanweaver ]; + maintainers = with lib.maintainers; [ keenanweaver ]; }; }) diff --git a/pkgs/by-name/wo/wonderdraft/package.nix b/pkgs/by-name/wo/wonderdraft/package.nix index 431ede5440bd..b684bc23d9ae 100644 --- a/pkgs/by-name/wo/wonderdraft/package.nix +++ b/pkgs/by-name/wo/wonderdraft/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { $out/opt/Wonderdraft/Wonderdraft.x86_64 ''; - meta = with lib; { + meta = { homepage = "https://wonderdraft.net/"; description = "Mapmaking tool for Tabletop Roleplaying Games, designed for city, region, or world scale"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ jsusk ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ jsusk ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/wo/wooting-udev-rules/package.nix b/pkgs/by-name/wo/wooting-udev-rules/package.nix index 94cb0fee812a..9532a53dabfe 100644 --- a/pkgs/by-name/wo/wooting-udev-rules/package.nix +++ b/pkgs/by-name/wo/wooting-udev-rules/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation { install -Dpm644 $src $out/lib/udev/rules.d/70-wooting.rules ''; - meta = with lib; { + meta = { homepage = "https://help.wooting.io/article/147-configuring-device-access-for-wootility-under-linux-udev-rules"; description = "udev rules that give NixOS permission to communicate with Wooting keyboards"; - platforms = platforms.linux; + platforms = lib.platforms.linux; # We think they are so simple that they are uncopyrightable license = lib.licenses.publicDomain; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ returntoreality ]; }; diff --git a/pkgs/by-name/wo/wordgrinder/package.nix b/pkgs/by-name/wo/wordgrinder/package.nix index 12ceef70460d..7a9612d45865 100644 --- a/pkgs/by-name/wo/wordgrinder/package.nix +++ b/pkgs/by-name/wo/wordgrinder/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/xwordgrinder --set LUA_CPATH "${lua52Packages.luafilesystem}/lib/lua/5.2/lfs.so"; ''; - meta = with lib; { + meta = { description = "Text-based word processor"; homepage = "https://cowlark.com/wordgrinder"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/wo/wordlists/package.nix b/pkgs/by-name/wo/wordlists/package.nix index 7913b182671c..39a02fe14f0a 100644 --- a/pkgs/by-name/wo/wordlists/package.nix +++ b/pkgs/by-name/wo/wordlists/package.nix @@ -46,7 +46,7 @@ symlinkJoin { wordlistsPathBin ]; - meta = with lib; { + meta = { description = "Collection of wordlists useful for security testing"; longDescription = '' The `wordlists` package provides two scripts. One is called {command}`wordlists`, @@ -70,7 +70,7 @@ symlinkJoin { If you want to add a new package that provides wordlist/s the convention is to copy it to {file}`$out/share/wordlists/myNewWordlist`. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ pamplemousse h7x4 ]; diff --git a/pkgs/by-name/wo/work-sans/package.nix b/pkgs/by-name/wo/work-sans/package.nix index 34fb1f8ae9e6..6d8970dcf8f7 100644 --- a/pkgs/by-name/wo/work-sans/package.nix +++ b/pkgs/by-name/wo/work-sans/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Grotesque sans"; homepage = "https://weiweihuanghuang.github.io/Work-Sans/"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/wo/workrave/package.nix b/pkgs/by-name/wo/workrave/package.nix index 9a5c7ffc7d6d..f9b5e4ff1840 100644 --- a/pkgs/by-name/wo/workrave/package.nix +++ b/pkgs/by-name/wo/workrave/package.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Program to help prevent Repetitive Strain Injury"; mainProgram = "workrave"; longDescription = '' @@ -91,8 +91,8 @@ stdenv.mkDerivation rec { ''; homepage = "http://www.workrave.org/"; downloadPage = "https://github.com/rcaelers/workrave/releases"; - license = licenses.gpl3; - maintainers = with maintainers; [ prikhi ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ prikhi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wo/world-serpant-search/package.nix b/pkgs/by-name/wo/world-serpant-search/package.nix index 50d37cb9f653..22ed930af24a 100644 --- a/pkgs/by-name/wo/world-serpant-search/package.nix +++ b/pkgs/by-name/wo/world-serpant-search/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Command-line tool for vulnerability detection"; homepage = "https://github.com/Latrodect/wss-repo-vulnerability-search-manager"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "serpant"; }; } diff --git a/pkgs/by-name/wo/worldofgoo/package.nix b/pkgs/by-name/wo/worldofgoo/package.nix index 646a4975ec8c..ef45a8a8d7c7 100644 --- a/pkgs/by-name/wo/worldofgoo/package.nix +++ b/pkgs/by-name/wo/worldofgoo/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { description = "Physics based puzzle game"; longDescription = '' World of Goo is a physics based puzzle / construction game. The millions of Goo @@ -83,12 +83,12 @@ stdenv.mkDerivation rec { game, or that they are extremely delicious. ''; homepage = "https://worldofgoo.com"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ jcumming ]; + maintainers = with lib.maintainers; [ jcumming ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/wo/wownero/package.nix b/pkgs/by-name/wo/wownero/package.nix index acc584adde11..7679dc236725 100644 --- a/pkgs/by-name/wo/wownero/package.nix +++ b/pkgs/by-name/wo/wownero/package.nix @@ -94,7 +94,7 @@ stdenv.mkDerivation rec { "-DMANUAL_SUBMODULES=ON" ]; - meta = with lib; { + meta = { description = '' A privacy-centric memecoin that was fairly launched on April 1, 2018 with no pre-mine, stealth-mine or ICO @@ -107,8 +107,8 @@ stdenv.mkDerivation rec { opposing forks. ''; homepage = "https://wownero.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wo/wowup-cf/package.nix b/pkgs/by-name/wo/wowup-cf/package.nix index 92846b3de798..8e9f2bdabce4 100644 --- a/pkgs/by-name/wo/wowup-cf/package.nix +++ b/pkgs/by-name/wo/wowup-cf/package.nix @@ -25,7 +25,7 @@ appimageTools.wrapType1 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "World of Warcraft addon updater with CurseForge support"; longDescription = '' WowUp is the community centered World of Warcraft addon updater. We attempt to bring the addon community together in an easy to use updater application. We have an ever growing list of supported features. @@ -33,9 +33,9 @@ appimageTools.wrapType1 { mainProgram = "wowup-cf"; homepage = "https://wowup.io/"; downloadPage = "https://github.com/WowUp/WowUp.CF/releases"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ pbek ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ pbek ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/wp/wp4nix/package.nix b/pkgs/by-name/wp/wp4nix/package.nix index 25810bd6d318..fe8be46c0acb 100644 --- a/pkgs/by-name/wp/wp4nix/package.nix +++ b/pkgs/by-name/wp/wp4nix/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { } ''; - meta = with lib; { + meta = { description = "Packaging helper for Wordpress themes and plugins"; mainProgram = "wp4nix"; homepage = "https://git.helsinki.tools/helsinki-systems/wp4nix"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wp/wpm/package.nix b/pkgs/by-name/wp/wpm/package.nix index 7f12b096c7a2..ff3692684987 100644 --- a/pkgs/by-name/wp/wpm/package.nix +++ b/pkgs/by-name/wp/wpm/package.nix @@ -22,11 +22,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "wpm" ]; - meta = with lib; { + meta = { description = "Console app for measuring typing speed in words per minute (WPM)"; mainProgram = "wpm"; homepage = "https://pypi.org/project/wpm"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ alejandrosame ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ alejandrosame ]; }; } diff --git a/pkgs/by-name/wp/wprecon/package.nix b/pkgs/by-name/wp/wprecon/package.nix index 275d78a7e806..0f85b2e7141a 100644 --- a/pkgs/by-name/wp/wprecon/package.nix +++ b/pkgs/by-name/wp/wprecon/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { mv $out/bin/cli $out/bin/wprecon ''; - meta = with lib; { + meta = { description = "WordPress vulnerability recognition tool"; homepage = "https://github.com/blackbinn/wprecon"; # License Zero Noncommercial Public License 2.0.1 # https://github.com/blackbinn/wprecon/blob/master/LICENSE - license = with licenses; [ unfree ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ unfree ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/wp/wprs/package.nix b/pkgs/by-name/wp/wprs/package.nix index 1a08f85b024f..9643140ca8d5 100644 --- a/pkgs/by-name/wp/wprs/package.nix +++ b/pkgs/by-name/wp/wprs/package.nix @@ -40,10 +40,10 @@ rustPlatform.buildRustPackage { ${wprs}/bin/wprs -h > /dev/null && touch $out ''; - meta = with lib; { + meta = { description = "Rootless remote desktop access for remote Wayland"; - license = licenses.asl20; - maintainers = with maintainers; [ mksafavi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mksafavi ]; platforms = [ "x86_64-linux" ]; # The aarch64-linux support is not implemented in upstream yet. Also, the darwin platform is not supported as it requires wayland. homepage = "https://github.com/wayland-transpositor/wprs"; mainProgram = "wprs"; diff --git a/pkgs/by-name/wp/wpscan/package.nix b/pkgs/by-name/wp/wpscan/package.nix index afc92814244f..591d97e753ca 100644 --- a/pkgs/by-name/wp/wpscan/package.nix +++ b/pkgs/by-name/wp/wpscan/package.nix @@ -19,15 +19,15 @@ bundlerApp { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Black box WordPress vulnerability scanner"; homepage = "https://wpscan.org/"; changelog = "https://github.com/wpscanteam/wpscan/releases"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ nyanloutre manveru ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wp/wpsoffice/package.nix b/pkgs/by-name/wp/wpsoffice/package.nix index 482f619ae81b..5f1243d51d7b 100644 --- a/pkgs/by-name/wp/wpsoffice/package.nix +++ b/pkgs/by-name/wp/wpsoffice/package.nix @@ -126,14 +126,14 @@ stdenv.mkDerivation rec { ln -s "${lib.getLib libxml2}/lib/libxml2.so" "$out/lib/libxml2.so.2" ''; - meta = with lib; { + meta = { description = "Office suite, formerly Kingsoft Office"; homepage = "https://www.wps.com"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; hydraPlatforms = [ ]; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mlatus th0rgal wineee diff --git a/pkgs/by-name/wr/wraith/package.nix b/pkgs/by-name/wr/wraith/package.nix index 774de51eee94..4a352652a438 100644 --- a/pkgs/by-name/wr/wraith/package.nix +++ b/pkgs/by-name/wr/wraith/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { ln -s wraith $out/bin/hub ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "IRC channel management bot written purely in C/C++"; longDescription = '' @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { to fix its runtime dependenices. ''; homepage = "https://wraith.botpack.net/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ elitak ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ elitak ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wr/wrangler_1/package.nix b/pkgs/by-name/wr/wrangler_1/package.nix index dc27c236ef19..1921bcc793bc 100644 --- a/pkgs/by-name/wr/wrangler_1/package.nix +++ b/pkgs/by-name/wr/wrangler_1/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { # tries to use "/homeless-shelter" and fails doCheck = false; - meta = with lib; { + meta = { description = "CLI tool designed for folks who are interested in using Cloudflare Workers"; mainProgram = "wrangler"; homepage = "https://github.com/cloudflare/wrangler"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; diff --git a/pkgs/by-name/wr/wrap/package.nix b/pkgs/by-name/wr/wrap/package.nix index 946c41e15dda..959ce9e05464 100644 --- a/pkgs/by-name/wr/wrap/package.nix +++ b/pkgs/by-name/wr/wrap/package.nix @@ -39,10 +39,10 @@ buildGoModule rec { wrapProgram $out/bin/wrap --prefix XDG_DATA_DIRS : ${courier-prime}/share/ ''; - meta = with lib; { + meta = { description = "Fountain export tool with some extras"; homepage = "https://github.com/Wraparound/wrap"; - license = licenses.gpl3Only; - maintainers = [ maintainers.austinbutler ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.austinbutler ]; }; } diff --git a/pkgs/by-name/wr/writedisk/package.nix b/pkgs/by-name/wr/writedisk/package.nix index 595251230ffd..25963ca52f36 100644 --- a/pkgs/by-name/wr/writedisk/package.nix +++ b/pkgs/by-name/wr/writedisk/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Small utility for writing a disk image to a USB drive"; homepage = "https://github.com/nicholasbishop/writedisk"; - platforms = platforms.linux; - license = licenses.asl20; - maintainers = with maintainers; [ devhell ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ devhell ]; }; } diff --git a/pkgs/by-name/wr/writefreely/package.nix b/pkgs/by-name/wr/writefreely/package.nix index 4afa4d402df9..5f7a0f7aa36e 100644 --- a/pkgs/by-name/wr/writefreely/package.nix +++ b/pkgs/by-name/wr/writefreely/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { inherit (nixosTests) writefreely; }; - meta = with lib; { + meta = { description = "Build a digital writing community"; homepage = "https://github.com/writefreely/writefreely"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ soopyc ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ soopyc ]; mainProgram = "writefreely"; }; } diff --git a/pkgs/by-name/wr/wrk/package.nix b/pkgs/by-name/wr/wrk/package.nix index 46b3433bf845..495c3c0e7495 100644 --- a/pkgs/by-name/wr/wrk/package.nix +++ b/pkgs/by-name/wr/wrk/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { cp wrk $out/bin ''; - meta = with lib; { + meta = { description = "HTTP benchmarking tool"; homepage = "https://github.com/wg/wrk"; longDescription = '' @@ -53,9 +53,9 @@ stdenv.mkDerivation rec { combines a multithreaded design with scalable event notification systems such as epoll and kqueue. ''; - license = licenses.asl20; - maintainers = with maintainers; [ ragge ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ragge ]; + platforms = lib.platforms.unix; mainProgram = "wrk"; }; } diff --git a/pkgs/by-name/wt/wthrr/package.nix b/pkgs/by-name/wt/wthrr/package.nix index bc01a7f3e448..74bcd9331c62 100644 --- a/pkgs/by-name/wt/wthrr/package.nix +++ b/pkgs/by-name/wt/wthrr/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { "--skip=modules::location::tests::geolocation_response" ]; - meta = with lib; { + meta = { description = "Weather companion for the terminal"; homepage = "https://github.com/ttytm/wthrr-the-weathercrab"; changelog = "https://github.com/ttytm/wthrr-the-weathercrab/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "wthrr"; }; diff --git a/pkgs/by-name/wt/wtype/package.nix b/pkgs/by-name/wt/wtype/package.nix index e1ebaf728d3a..6d8f07bce660 100644 --- a/pkgs/by-name/wt/wtype/package.nix +++ b/pkgs/by-name/wt/wtype/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { wayland ]; - meta = with lib; { + meta = { description = "xdotool type for wayland"; homepage = "https://github.com/atx/wtype"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ justinlovinger ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ justinlovinger ]; mainProgram = "wtype"; }; } diff --git a/pkgs/by-name/wu/wuzz/package.nix b/pkgs/by-name/wu/wuzz/package.nix index 8993e4975182..c492463f723b 100644 --- a/pkgs/by-name/wu/wuzz/package.nix +++ b/pkgs/by-name/wu/wuzz/package.nix @@ -27,10 +27,10 @@ buildGoModule rec { vendorHash = "sha256-oIm6DWSs6ZDKi6joxydguSXxqtGyKP21cmWtz8MkeIQ="; - meta = with lib; { + meta = { homepage = "https://github.com/asciimoo/wuzz"; description = "Interactive cli tool for HTTP inspection"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "wuzz"; }; } diff --git a/pkgs/by-name/wv/wvkbd/package.nix b/pkgs/by-name/wv/wvkbd/package.nix index 91701392b304..1c6dd084f69e 100644 --- a/pkgs/by-name/wv/wvkbd/package.nix +++ b/pkgs/by-name/wv/wvkbd/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://github.com/jjsullivan5196/wvkbd"; description = "On-screen keyboard for wlroots"; - platforms = platforms.linux; - license = licenses.gpl3Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; mainProgram = "wvkbd-mobintl"; maintainers = with lib.maintainers; [ colinsane ]; }; diff --git a/pkgs/by-name/ww/wwcd/package.nix b/pkgs/by-name/ww/wwcd/package.nix index 6e982cd87643..f2350f8b2853 100644 --- a/pkgs/by-name/ww/wwcd/package.nix +++ b/pkgs/by-name/ww/wwcd/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { autoreconfFlags = [ "-if" ]; - meta = with lib; { + meta = { description = "What would cron do? Read crontab entries from stdin and print time of next execution(s)"; homepage = "https://git.sr.ht/~bitfehler/wwcd"; - license = licenses.mit; - maintainers = with maintainers; [ laalsaas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ laalsaas ]; mainProgram = "wwcd"; }; } diff --git a/pkgs/by-name/wx/wxGTK31/package.nix b/pkgs/by-name/wx/wxGTK31/package.nix index b9176a248730..5ebad4ab20f9 100644 --- a/pkgs/by-name/wx/wxGTK31/package.nix +++ b/pkgs/by-name/wx/wxGTK31/package.nix @@ -114,7 +114,7 @@ stdenv.mkDerivation rec { inherit compat28 compat30 unicode; }; - meta = with lib; { + meta = { homepage = "https://www.wxwidgets.org/"; description = "Cross-Platform C++ GUI Library"; longDescription = '' @@ -127,10 +127,10 @@ stdenv.mkDerivation rec { multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more. ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus wxWindowsException31 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wx/wxGTK32/package.nix b/pkgs/by-name/wx/wxGTK32/package.nix index ef47cfef5bab..895bf3468032 100644 --- a/pkgs/by-name/wx/wxGTK32/package.nix +++ b/pkgs/by-name/wx/wxGTK32/package.nix @@ -135,7 +135,7 @@ stdenv.mkDerivation rec { inherit compat28 compat30 unicode; }; - meta = with lib; { + meta = { homepage = "https://www.wxwidgets.org/"; description = "Cross-Platform C++ GUI Library"; longDescription = '' @@ -148,13 +148,13 @@ stdenv.mkDerivation rec { multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more. ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus wxWindowsException31 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fliegendewurst ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wx/wxformbuilder/package.nix b/pkgs/by-name/wx/wxformbuilder/package.nix index 5af43a438361..3bda111dc931 100644 --- a/pkgs/by-name/wx/wxformbuilder/package.nix +++ b/pkgs/by-name/wx/wxformbuilder/package.nix @@ -58,15 +58,15 @@ stdenv.mkDerivation (finalAttrs: { makeWrapper $out/Applications/wxFormBuilder.app/Contents/MacOS/wxFormBuilder $out/bin/wxformbuilder ''; - meta = with lib; { + meta = { description = "RAD tool for wxWidgets GUI design"; homepage = "https://github.com/wxFormBuilder/wxFormBuilder"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "wxformbuilder"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthuszagh wegank ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/wx/wxmacmolplt/package.nix b/pkgs/by-name/wx/wxmacmolplt/package.nix index 511833221102..b43d356a0c1e 100644 --- a/pkgs/by-name/wx/wxmacmolplt/package.nix +++ b/pkgs/by-name/wx/wxmacmolplt/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Graphical user interface for GAMESS-US"; mainProgram = "wxmacmolplt"; homepage = "https://brettbode.github.io/wxmacmolplt/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sheepforce markuskowa ]; diff --git a/pkgs/by-name/wx/wxsqlite3/package.nix b/pkgs/by-name/wx/wxsqlite3/package.nix index f61948d8291a..9de99f078cad 100644 --- a/pkgs/by-name/wx/wxsqlite3/package.nix +++ b/pkgs/by-name/wx/wxsqlite3/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://utelle.github.io/wxsqlite3/"; description = "C++ wrapper around the public domain SQLite 3.x for wxWidgets"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus gpl3Plus ]; diff --git a/pkgs/by-name/wx/wxsqliteplus/package.nix b/pkgs/by-name/wx/wxsqliteplus/package.nix index 8a64e7fec2b8..7717c287cfe4 100644 --- a/pkgs/by-name/wx/wxsqliteplus/package.nix +++ b/pkgs/by-name/wx/wxsqliteplus/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { install -Dm755 wxSQLitePlus $out/bin/wxSQLitePlus ''; - meta = with lib; { + meta = { description = "Simple SQLite database browser built with wxWidgets"; mainProgram = "wxSQLitePlus"; homepage = "https://github.com/guanlisheng/wxsqliteplus"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wy/wyoming-piper/package.nix b/pkgs/by-name/wy/wyoming-piper/package.nix index f69318c03b1a..6b80c53f061f 100644 --- a/pkgs/by-name/wy/wyoming-piper/package.nix +++ b/pkgs/by-name/wy/wyoming-piper/package.nix @@ -52,12 +52,12 @@ python3Packages.buildPythonApplication rec { "test_piper" ]; - meta = with lib; { + meta = { changelog = "https://github.com/rhasspy/wyoming-piper/blob/${src.rev}/CHANGELOG.md"; description = "Wyoming Server for Piper"; mainProgram = "wyoming-piper"; homepage = "https://github.com/rhasspy/wyoming-piper"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/wy/wyoming-satellite/package.nix b/pkgs/by-name/wy/wyoming-satellite/package.nix index adf4d0b7c029..5de489bc61aa 100644 --- a/pkgs/by-name/wy/wyoming-satellite/package.nix +++ b/pkgs/by-name/wy/wyoming-satellite/package.nix @@ -78,12 +78,12 @@ python.pkgs.buildPythonApplication rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Remote voice satellite using Wyoming protocol"; homepage = "https://github.com/rhasspy/wyoming-satellite"; changelog = "https://github.com/rhasspy/wyoming-satellite/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "wyoming-satellite"; }; } diff --git a/pkgs/by-name/wy/wyvern/package.nix b/pkgs/by-name/wy/wyvern/package.nix index d34a94ab5080..4147598dc0f9 100644 --- a/pkgs/by-name/wy/wyvern/package.nix +++ b/pkgs/by-name/wy/wyvern/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { ]; buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Simple CLI client for installing and maintaining linux GOG games"; mainProgram = "wyvern"; homepage = "https://git.sr.ht/~nicohman/wyvern"; - license = licenses.gpl3; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/x-/x-create-mouse-void/package.nix b/pkgs/by-name/x-/x-create-mouse-void/package.nix index 4be1a0460634..bfa49b5ca45a 100644 --- a/pkgs/by-name/x-/x-create-mouse-void/package.nix +++ b/pkgs/by-name/x-/x-create-mouse-void/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/cas--/XCreateMouseVoid"; description = "Creates an undecorated black window and prevents the mouse from entering that window"; - platforms = platforms.unix; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ eigengrau ]; + platforms = lib.platforms.unix; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ eigengrau ]; mainProgram = "x-create-mouse-void"; }; } diff --git a/pkgs/by-name/x1/x11_ssh_askpass/package.nix b/pkgs/by-name/x1/x11_ssh_askpass/package.nix index 5a3f0a0c3004..f7753cc30706 100644 --- a/pkgs/by-name/x1/x11_ssh_askpass/package.nix +++ b/pkgs/by-name/x1/x11_ssh_askpass/package.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { xorg.libSM ]; - meta = with lib; { + meta = { homepage = "https://github.com/sigmavirus24/x11-ssh-askpass"; description = "Lightweight passphrase dialog for OpenSSH or other open variants of SSH"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/x1/x11spice/package.nix b/pkgs/by-name/x1/x11spice/package.nix index 8197f50623e0..3aa2b7f19871 100644 --- a/pkgs/by-name/x1/x11spice/package.nix +++ b/pkgs/by-name/x1/x11spice/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { NIX_LDFLAGS = "-lpthread"; - meta = with lib; { + meta = { description = "Enable a running X11 desktop to be available via a Spice server"; homepage = "https://gitlab.freedesktop.org/spice/x11spice"; - platforms = platforms.linux; - license = licenses.gpl3; - maintainers = with maintainers; [ rnhmjoj ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/x1/x11vnc/package.nix b/pkgs/by-name/x1/x11vnc/package.nix index 23dd1e4743b6..903076a5762f 100644 --- a/pkgs/by-name/x1/x11vnc/package.nix +++ b/pkgs/by-name/x1/x11vnc/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation (finalAttrs: { sed -i '/if HAVE_X11/,/endif/d' misc/Makefile.am ''; - meta = with lib; { + meta = { description = "VNC server connected to a real X11 screen"; homepage = "https://github.com/LibVNC/x11vnc/"; changelog = "https://github.com/LibVNC/x11vnc/releases/tag/${finalAttrs.version}"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ OPNA2608 ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ OPNA2608 ]; mainProgram = "x11vnc"; }; }) diff --git a/pkgs/by-name/x2/x264/package.nix b/pkgs/by-name/x2/x264/package.nix index 7e209794f89b..28726e5b4a0b 100644 --- a/pkgs/by-name/x2/x264/package.nix +++ b/pkgs/by-name/x2/x264/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { nativeBuildInputs = lib.optional stdenv.hostPlatform.isx86 nasm; - meta = with lib; { + meta = { description = "Library for encoding H264/AVC video streams"; mainProgram = "x264"; homepage = "http://www.videolan.org/developers/x264.html"; - license = licenses.gpl2Plus; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix ++ lib.platforms.windows; maintainers = [ ]; }; } diff --git a/pkgs/by-name/x2/x2goserver/package.nix b/pkgs/by-name/x2/x2goserver/package.nix index 926284c0c5cd..482303c7dafb 100644 --- a/pkgs/by-name/x2/x2goserver/package.nix +++ b/pkgs/by-name/x2/x2goserver/package.nix @@ -151,11 +151,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Remote desktop application, server component"; homepage = "http://x2go.org/"; platforms = lib.platforms.linux; - license = licenses.gpl2; - maintainers = with maintainers; [ averelld ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ averelld ]; }; } diff --git a/pkgs/by-name/x2/x2vnc/package.nix b/pkgs/by-name/x2/x2vnc/package.nix index 436066e5f7bf..1fb4dedfa83a 100644 --- a/pkgs/by-name/x2/x2vnc/package.nix +++ b/pkgs/by-name/x2/x2vnc/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "http://fredrik.hubbe.net/x2vnc.html"; description = "Program to control a remote VNC server"; - platforms = platforms.unix; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "x2vnc"; }; } diff --git a/pkgs/by-name/x2/x2x/package.nix b/pkgs/by-name/x2/x2x/package.nix index 78475b52c52b..76c14aa14330 100644 --- a/pkgs/by-name/x2/x2x/package.nix +++ b/pkgs/by-name/x2/x2x/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { libXi ]; - meta = with lib; { + meta = { description = "Allows the keyboard, mouse on one X display to be used to control another X display"; homepage = "https://github.com/dottedmag/x2x"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; mainProgram = "x2x"; }; } diff --git a/pkgs/by-name/x4/x42-avldrums/package.nix b/pkgs/by-name/x4/x42-avldrums/package.nix index 217c197ef016..c371ae7c948d 100644 --- a/pkgs/by-name/x4/x42-avldrums/package.nix +++ b/pkgs/by-name/x4/x42-avldrums/package.nix @@ -37,14 +37,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Drum sample player LV2 plugin dedicated to Glen MacArthur's AVLdrums"; homepage = "https://x42-plugins.com/x42/x42-avldrums"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ magnetophon ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/x4/x42-gmsynth/package.nix b/pkgs/by-name/x4/x42-gmsynth/package.nix index 75d7a0f3a3f9..5633113a77da 100644 --- a/pkgs/by-name/x4/x42-gmsynth/package.nix +++ b/pkgs/by-name/x4/x42-gmsynth/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Chris Colins' General User soundfont player LV2 plugin"; homepage = "https://x42-plugins.com/x42/x42-gmsynth"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/x4/x42-plugins/package.nix b/pkgs/by-name/x4/x42-plugins/package.nix index f09663967b22..168215ff626b 100644 --- a/pkgs/by-name/x4/x42-plugins/package.nix +++ b/pkgs/by-name/x4/x42-plugins/package.nix @@ -63,13 +63,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Collection of LV2 plugins by Robin Gareus"; homepage = "https://github.com/x42/x42-plugins"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ magnetophon ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/xa/Xaw3d/package.nix b/pkgs/by-name/xa/Xaw3d/package.nix index 76b8eb880614..df892e80019f 100644 --- a/pkgs/by-name/xa/Xaw3d/package.nix +++ b/pkgs/by-name/xa/Xaw3d/package.nix @@ -37,9 +37,9 @@ stdenv.mkDerivation rec { xorgproto ]; - meta = with lib; { + meta = { description = "3D widget set based on the Athena Widget set"; platforms = lib.platforms.unix; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/xa/xapp/package.nix b/pkgs/by-name/xa/xapp/package.nix index 6ece0787b201..43d76babab1c 100644 --- a/pkgs/by-name/xa/xapp/package.nix +++ b/pkgs/by-name/xa/xapp/package.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation rec { wrapGApp $out/lib/xapps/xapp-sn-watcher ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/xapp"; description = "Cross-desktop libraries and common resources"; - license = licenses.lgpl3; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/xa/xautoclick/package.nix b/pkgs/by-name/xa/xautoclick/package.nix index f79f0f95aea2..7462d85f1499 100644 --- a/pkgs/by-name/xa/xautoclick/package.nix +++ b/pkgs/by-name/xa/xautoclick/package.nix @@ -57,10 +57,10 @@ stdenv.mkDerivation rec { qt5.wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Autoclicker application, which enables you to automatically click the left mousebutton"; homepage = "https://github.com/qarkai/xautoclick"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xa/xautolock/package.nix b/pkgs/by-name/xa/xautolock/package.nix index d24eebb80fe7..b9f50f0a15f8 100644 --- a/pkgs/by-name/xa/xautolock/package.nix +++ b/pkgs/by-name/xa/xautolock/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = { inherit (nixosTests) xautolock; }; - meta = with lib; { + meta = { description = "Launch a given program when your X session has been idle for a given time"; homepage = "http://www.ibiblio.org/pub/linux/X11/screensavers"; - maintainers = with maintainers; [ peti ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ peti ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; mainProgram = "xautolock"; }; }) diff --git a/pkgs/by-name/xa/xavs/package.nix b/pkgs/by-name/xa/xavs/package.nix index a79e5a5a234c..d8038effa36f 100644 --- a/pkgs/by-name/xa/xavs/package.nix +++ b/pkgs/by-name/xa/xavs/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { "--disable-asm" ]; - meta = with lib; { + meta = { description = "AVS encoder and decoder"; mainProgram = "xavs"; homepage = "https://xavs.sourceforge.net/"; - license = licenses.lgpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ codyopel ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ codyopel ]; }; } diff --git a/pkgs/by-name/xb/xbase/package.nix b/pkgs/by-name/xb/xbase/package.nix index a1334c95d125..9ef560c9e929 100644 --- a/pkgs/by-name/xb/xbase/package.nix +++ b/pkgs/by-name/xb/xbase/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/xdb/"; description = "C++ class library formerly known as XDB"; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = true; # Fails to build against gcc-14, no upstream activity. - license = licenses.lgpl2; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/xb/xboard/package.nix b/pkgs/by-name/xb/xboard/package.nix index fd12bb7f053f..0cd935aed871 100644 --- a/pkgs/by-name/xb/xboard/package.nix +++ b/pkgs/by-name/xb/xboard/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { gtk2 ]; - meta = with lib; { + meta = { description = "GUI for chess engines"; mainProgram = "xboard"; homepage = "https://www.gnu.org/software/xboard/"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/xb/xbomb/package.nix b/pkgs/by-name/xb/xbomb/package.nix index 92a31720ad95..981403284884 100644 --- a/pkgs/by-name/xb/xbomb/package.nix +++ b/pkgs/by-name/xb/xbomb/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { "INSTDIR=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "http://www.gedanken.org.uk/software/xbomb/"; description = "Minesweeper for X11 with various grid sizes and shapes"; mainProgram = "xbomb"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xb/xborders/package.nix b/pkgs/by-name/xb/xborders/package.nix index d3e69da2884c..6540aa375be9 100644 --- a/pkgs/by-name/xb/xborders/package.nix +++ b/pkgs/by-name/xb/xborders/package.nix @@ -52,12 +52,12 @@ python3Packages.buildPythonPackage rec { ln -s ${setup} setup.py ''; - meta = with lib; { + meta = { description = "Active window border replacement for window managers"; homepage = "https://github.com/deter0/xborder"; - license = licenses.unlicense; - maintainers = with maintainers; [ elnudev ]; - platforms = platforms.linux; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ elnudev ]; + platforms = lib.platforms.linux; mainProgram = "xborders"; }; } diff --git a/pkgs/by-name/xc/xc3sprog/package.nix b/pkgs/by-name/xc/xc3sprog/package.nix index 1bbe1fbcc136..2e553c7a0873 100644 --- a/pkgs/by-name/xc/xc3sprog/package.nix +++ b/pkgs/by-name/xc/xc3sprog/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Command-line tools for programming FPGAs, microcontrollers and PROMs via JTAG"; homepage = "https://xc3sprog.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/xc/xcaddy/package.nix b/pkgs/by-name/xc/xcaddy/package.nix index bc0f688a512b..5e5aa36cd27b 100644 --- a/pkgs/by-name/xc/xcaddy/package.nix +++ b/pkgs/by-name/xc/xcaddy/package.nix @@ -30,10 +30,10 @@ buildGoModule rec { vendorHash = "sha256-2OZoSOUCkt94uG+54Dx/1di/RZxZ2UOsmTC6YDA5cKo="; - meta = with lib; { + meta = { homepage = "https://github.com/caddyserver/xcaddy"; description = "Build Caddy with plugins"; mainProgram = "xcaddy"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/xc/xcape/package.nix b/pkgs/by-name/xc/xcape/package.nix index 43f6ae554fb7..fbcf5e6b4f58 100644 --- a/pkgs/by-name/xc/xcape/package.nix +++ b/pkgs/by-name/xc/xcape/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { postInstall = "install -Dm444 --target-directory $out/share/doc README.md"; - meta = with lib; { + meta = { description = "Utility to configure modifier keys to act as other keys"; longDescription = '' xcape allows you to use a modifier key as another key when @@ -47,9 +47,9 @@ stdenv.mkDerivation { released on its own. ''; homepage = "https://github.com/alols/xcape"; - license = licenses.gpl3; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; mainProgram = "xcape"; }; } diff --git a/pkgs/by-name/xc/xcb-imdkit/package.nix b/pkgs/by-name/xc/xcb-imdkit/package.nix index c13887c7c7bf..2cac834ac619 100644 --- a/pkgs/by-name/xc/xcb-imdkit/package.nix +++ b/pkgs/by-name/xc/xcb-imdkit/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { xcbutilkeysyms ]; - meta = with lib; { + meta = { description = "Input method development support for xcb"; homepage = "https://github.com/fcitx/xcb-imdkit"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xc/xcd/package.nix b/pkgs/by-name/xc/xcd/package.nix index b31b06cb73ec..2b14a6d8c558 100644 --- a/pkgs/by-name/xc/xcd/package.nix +++ b/pkgs/by-name/xc/xcd/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Colorized hexdump tool"; homepage = "https://www.muppetlabs.com/~breadbox/software/xcd.html"; - maintainers = [ maintainers.xfnw ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = [ lib.maintainers.xfnw ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; mainProgram = "xcd"; }; } diff --git a/pkgs/by-name/xc/xcfun/package.nix b/pkgs/by-name/xc/xcfun/package.nix index 1241bbc6f64e..c1affcce0a07 100644 --- a/pkgs/by-name/xc/xcfun/package.nix +++ b/pkgs/by-name/xc/xcfun/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DXCFUN_MAX_ORDER=3" ]; - meta = with lib; { + meta = { description = "Library of exchange-correlation functionals with arbitrary-order derivatives"; homepage = "https://github.com/dftlibs/xcfun"; - license = licenses.mpl20; - platforms = platforms.unix; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/by-name/xc/xchm/package.nix b/pkgs/by-name/xc/xchm/package.nix index 0bafbde2f830..a2d005d8c497 100644 --- a/pkgs/by-name/xc/xchm/package.nix +++ b/pkgs/by-name/xc/xchm/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { export LDFLAGS="$LDFLAGS $(${wxGTK32}/bin/wx-config --libs std,aui | sed -e s@-pthread@@)" ''; - meta = with lib; { + meta = { description = "Viewer for Microsoft HTML Help files"; homepage = "https://github.com/rzvncj/xCHM"; - license = licenses.gpl2; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; mainProgram = "xchm"; }; } diff --git a/pkgs/by-name/xc/xcircuit/package.nix b/pkgs/by-name/xc/xcircuit/package.nix index f0593eb8bb64..eeaba907926d 100644 --- a/pkgs/by-name/xc/xcircuit/package.nix +++ b/pkgs/by-name/xc/xcircuit/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "Generic drawing program tailored to circuit diagrams"; mainProgram = "xcircuit"; homepage = "http://opencircuitdesign.com/xcircuit"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ john-shaffer spacefrogg thoughtpolice diff --git a/pkgs/by-name/xc/xcode-install/package.nix b/pkgs/by-name/xc/xcode-install/package.nix index a00ee5f3bf42..b4ddae6ce51b 100644 --- a/pkgs/by-name/xc/xcode-install/package.nix +++ b/pkgs/by-name/xc/xcode-install/package.nix @@ -11,11 +11,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "xcode-install"; - meta = with lib; { + meta = { description = "Install and update your Xcodes automatically"; homepage = "https://github.com/xcpretty/xcode-install"; - platforms = platforms.unix; - maintainers = with maintainers; [ q3k ]; - license = with licenses; [ mit ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ q3k ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/by-name/xc/xcolor/package.nix b/pkgs/by-name/xc/xcolor/package.nix index 674cf14c05e6..804c85f1bf5d 100644 --- a/pkgs/by-name/xc/xcolor/package.nix +++ b/pkgs/by-name/xc/xcolor/package.nix @@ -58,11 +58,11 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Lightweight color picker for X11"; homepage = "https://github.com/Soft/xcolor"; maintainers = with lib.maintainers; [ moni ]; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "xcolor"; }; } diff --git a/pkgs/by-name/xc/xconq/package.nix b/pkgs/by-name/xc/xconq/package.nix index 057996ceb737..e9731e77e11c 100644 --- a/pkgs/by-name/xc/xconq/package.nix +++ b/pkgs/by-name/xc/xconq/package.nix @@ -77,10 +77,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Programmable turn-based strategy game"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/xc/xcowsay/package.nix b/pkgs/by-name/xc/xcowsay/package.nix index 9d002fbcdbb2..3787dabd39bd 100644 --- a/pkgs/by-name/xc/xcowsay/package.nix +++ b/pkgs/by-name/xc/xcowsay/package.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://www.doof.me.uk/xcowsay"; description = "Tool to display a cute cow and messages"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/xc/xcpc/package.nix b/pkgs/by-name/xc/xcpc/package.nix index 6955cafae837..dcd7d22fb0d5 100644 --- a/pkgs/by-name/xc/xcpc/package.nix +++ b/pkgs/by-name/xc/xcpc/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { "$out/share/pixmaps/" "" ''; - meta = with lib; { + meta = { description = "Portable Amstrad CPC 464/664/6128 emulator written in C"; homepage = "https://www.xcpc-emulator.net"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xcpc"; }; } diff --git a/pkgs/by-name/xc/xcpretty/package.nix b/pkgs/by-name/xc/xcpretty/package.nix index 322e3f4cae17..592681b808f9 100644 --- a/pkgs/by-name/xc/xcpretty/package.nix +++ b/pkgs/by-name/xc/xcpretty/package.nix @@ -14,11 +14,11 @@ bundlerApp { updateScript = bundlerUpdateScript "xcpretty"; }; - meta = with lib; { + meta = { description = "Flexible and fast xcodebuild formatter"; homepage = "https://github.com/supermarin/xcpretty"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski ]; }; diff --git a/pkgs/by-name/xc/xcruiser/package.nix b/pkgs/by-name/xc/xcruiser/package.nix index e8b21114892d..637dbf9b8775 100644 --- a/pkgs/by-name/xc/xcruiser/package.nix +++ b/pkgs/by-name/xc/xcruiser/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Filesystem visualization utility"; longDescription = '' XCruiser, formerly known as XCruise, is a filesystem visualization utility. @@ -58,8 +58,8 @@ stdenv.mkDerivation rec { tree and allows you to "cruise" within a visualized filesystem. ''; homepage = "https://xcruiser.sourceforge.net/"; - license = licenses.gpl2; - platforms = with platforms; linux; + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux; mainProgram = "xcruiser"; }; } diff --git a/pkgs/by-name/xc/xcur2png/package.nix b/pkgs/by-name/xc/xcur2png/package.nix index 60bfb9b72e38..be8a849c45f6 100644 --- a/pkgs/by-name/xc/xcur2png/package.nix +++ b/pkgs/by-name/xc/xcur2png/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { xorg.xorgproto ]; - meta = with lib; { + meta = { homepage = "https://github.com/eworm-de/xcur2png/releases"; description = "Convert X cursors to PNG images"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "xcur2png"; }; } diff --git a/pkgs/by-name/xd/xd/package.nix b/pkgs/by-name/xd/xd/package.nix index 1011d8279fc1..2538223b4b98 100644 --- a/pkgs/by-name/xd/xd/package.nix +++ b/pkgs/by-name/xd/xd/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { ln -s $out/bin/XD $out/bin/XD-CLI ''; - meta = with lib; { + meta = { description = "i2p bittorrent client"; homepage = "https://xd-torrent.github.io"; - maintainers = with maintainers; [ nixbitcoin ]; - license = licenses.mit; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ nixbitcoin ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xd/xdaliclock/package.nix b/pkgs/by-name/xd/xdaliclock/package.nix index 5ddf7b01e1d0..238dce13bd8d 100644 --- a/pkgs/by-name/xd/xdaliclock/package.nix +++ b/pkgs/by-name/xd/xdaliclock/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { "GTK_APPDIR=${placeholder "out"}/share/applications/" ]; - meta = with lib; { + meta = { description = "Clock application that morphs digits when they are changed"; - maintainers = with maintainers; [ raskin ]; - platforms = with platforms; linux ++ freebsd; - license = licenses.free; # TODO BSD on Gentoo, looks like MIT + maintainers = with lib.maintainers; [ raskin ]; + platforms = with lib.platforms; linux ++ freebsd; + license = lib.licenses.free; # TODO BSD on Gentoo, looks like MIT downloadPage = "http://www.jwz.org/xdaliclock/"; mainProgram = "xdaliclock"; }; diff --git a/pkgs/by-name/xd/xdelta/package.nix b/pkgs/by-name/xd/xdelta/package.nix index 971811517a2e..81ad7b9b2502 100644 --- a/pkgs/by-name/xd/xdelta/package.nix +++ b/pkgs/by-name/xd/xdelta/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { install -D -m644 xdelta3.1 $out/share/man/man1/xdelta3.1 ''; - meta = with lib; { + meta = { description = "Binary differential compression in VCDIFF (RFC 3284) format"; longDescription = '' xdelta is a command line program for delta encoding, which generates two @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { ''; # The dedicated homepage pointed to a gambling website homepage = "https://github.com/jmacd/xdelta"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "xdelta3"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xd/xdg-desktop-portal-gnome/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-gnome/package.nix index ac116af4e2ff..e7ecf7ff7168 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-gnome/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-gnome/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Backend implementation for xdg-desktop-portal for the GNOME desktop environment"; homepage = "https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome"; - teams = [ teams.gnome ]; - platforms = platforms.linux; - license = licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; }; }) diff --git a/pkgs/by-name/xd/xdg-desktop-portal-gtk/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-gtk/package.nix index 647b916c0fe4..e9c77c3c0348 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-gtk/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-gtk/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation (finalAttrs: { '') ]; - meta = with lib; { + meta = { description = "Desktop integration portals for sandboxed apps"; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.linux; - license = licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; }; }) diff --git a/pkgs/by-name/xd/xdg-desktop-portal-phosh/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-phosh/package.nix index f36161e79090..d417e6517488 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-phosh/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-phosh/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation (finalAttrs: { ./cargo_lock_deps_version.patch ]; - meta = with lib; { + meta = { description = "A backend implementation for xdg-desktop-portal that is using GTK/GNOME/Phosh to provide interfaces that aren't provided by the GTK portal"; homepage = "https://gitlab.gnome.org/guidog/xdg-desktop-portal-phosh"; changelog = "https://gitlab.gnome.org/guidog/xdg-desktop-portal-phosh/-/blob/main/NEWS"; - maintainers = with maintainers; [ armelclo ]; - platforms = platforms.linux; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ armelclo ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; }; }) diff --git a/pkgs/by-name/xd/xdg-desktop-portal-termfilechooser/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-termfilechooser/package.nix index 41894e85ae5e..a177c4724af9 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-termfilechooser/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-termfilechooser/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "xdg-desktop-portal backend for choosing files with your favorite file chooser"; homepage = "https://github.com/hunkyburrito/xdg-desktop-portal-termfilechooser"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ body20002 ltrump diff --git a/pkgs/by-name/xd/xdg-desktop-portal-wlr/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-wlr/package.nix index daec6e238113..b79dfcc9a88a 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-wlr/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-wlr/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/emersion/xdg-desktop-portal-wlr"; description = "xdg-desktop-portal backend for wlroots"; - maintainers = with maintainers; [ minijackson ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = with lib.maintainers; [ minijackson ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/xd/xdg-desktop-portal-xapp/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-xapp/package.nix index 51bd89124170..248b333af041 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-xapp/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-xapp/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ xapp ]}") ''; - meta = with lib; { + meta = { description = "Backend implementation for xdg-desktop-portal for Cinnamon, MATE, Xfce"; homepage = "https://github.com/linuxmint/xdg-desktop-portal-xapp"; - teams = [ teams.cinnamon ]; - platforms = platforms.linux; - license = licenses.lgpl21Plus; + teams = [ lib.teams.cinnamon ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/by-name/xd/xdg-launch/package.nix b/pkgs/by-name/xd/xdg-launch/package.nix index 7944270548af..819931913e7a 100644 --- a/pkgs/by-name/xd/xdg-launch/package.nix +++ b/pkgs/by-name/xd/xdg-launch/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { homepage = "https://github.com/bbidulock/xdg-launch"; description = "Command line XDG compliant launcher and tools"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.ck3d ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.ck3d ]; }; } diff --git a/pkgs/by-name/xd/xdg-ninja/package.nix b/pkgs/by-name/xd/xdg-ninja/package.nix index 6b7c410ce889..3fe8205507bb 100644 --- a/pkgs/by-name/xd/xdg-ninja/package.nix +++ b/pkgs/by-name/xd/xdg-ninja/package.nix @@ -41,12 +41,12 @@ stdenvNoCC.mkDerivation { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Shell script which checks your $HOME for unwanted files and directories"; homepage = "https://github.com/b3nj5m1n/xdg-ninja"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ arcuru ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ arcuru ]; mainProgram = "xdg-ninja"; }; } diff --git a/pkgs/by-name/xd/xdg-user-dirs/package.nix b/pkgs/by-name/xd/xdg-user-dirs/package.nix index 4429253f1495..1a77506ccf0a 100644 --- a/pkgs/by-name/xd/xdg-user-dirs/package.nix +++ b/pkgs/by-name/xd/xdg-user-dirs/package.nix @@ -46,15 +46,15 @@ stdenv.mkDerivation (finalAttrs: { --suffix XDG_CONFIG_DIRS : "$out/etc/xdg" ''; - meta = with lib; { + meta = { homepage = "http://freedesktop.org/wiki/Software/xdg-user-dirs"; description = "Tool to help manage well known user directories like the desktop folder and the music folder"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ donovanglover iFreilicht ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "xdg-user-dirs-update"; }; }) diff --git a/pkgs/by-name/xd/xdg-utils-cxx/package.nix b/pkgs/by-name/xd/xdg-utils-cxx/package.nix index 459ff18a9707..9ca6987aa7d7 100644 --- a/pkgs/by-name/xd/xdg-utils-cxx/package.nix +++ b/pkgs/by-name/xd/xdg-utils-cxx/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { 'cmake_minimum_required(VERSION 3.10)' ''; - meta = with lib; { + meta = { description = "Implementation of the FreeDesktop specifications to be used in c++ projects"; homepage = "https://github.com/azubieta/xdg-utils-cxx"; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; mainProgram = "xdg-utils-cxx"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xd/xdg-utils/package.nix b/pkgs/by-name/xd/xdg-utils/package.nix index 9c7119cf87b5..442101475ab5 100644 --- a/pkgs/by-name/xd/xdg-utils/package.nix +++ b/pkgs/by-name/xd/xdg-utils/package.nix @@ -363,11 +363,11 @@ stdenv.mkDerivation (self: { touch $out ''; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/wiki/Software/xdg-utils/"; description = "Set of command line tools that assist applications with a variety of desktop integration tasks"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/xd/xdgmenumaker/package.nix b/pkgs/by-name/xd/xdgmenumaker/package.nix index aa473a6afd84..184609c6f4d2 100644 --- a/pkgs/by-name/xd/xdgmenumaker/package.nix +++ b/pkgs/by-name/xd/xdgmenumaker/package.nix @@ -59,9 +59,9 @@ python3Packages.buildPythonApplication rec { description = "Command line tool that generates XDG menus for several window managers"; mainProgram = "xdgmenumaker"; homepage = "https://github.com/gapan/xdgmenumaker"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; # NOTE: exclude darwin from platforms because Travis reports hash mismatch - platforms = with platforms; filter (x: !(elem x darwin)) unix; - maintainers = [ maintainers.romildo ]; + platforms = with lib.platforms; filter (x: !(elem x darwin)) unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/xd/xdo/package.nix b/pkgs/by-name/xd/xdo/package.nix index dfb804c030e4..6db6f50b0d8b 100644 --- a/pkgs/by-name/xd/xdo/package.nix +++ b/pkgs/by-name/xd/xdo/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { xcbutil ]; - meta = with lib; { + meta = { description = "Small X utility to perform elementary actions on windows"; homepage = "https://github.com/baskerville/xdo"; - maintainers = with maintainers; [ meisternu ]; - license = licenses.bsd2; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ meisternu ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; mainProgram = "xdo"; }; } diff --git a/pkgs/by-name/xd/xdp-tools/package.nix b/pkgs/by-name/xd/xdp-tools/package.nix index d62a345c44aa..90daa5033e33 100644 --- a/pkgs/by-name/xd/xdp-tools/package.nix +++ b/pkgs/by-name/xd/xdp-tools/package.nix @@ -75,19 +75,19 @@ stdenv.mkDerivation rec { nuke-refs "$lib"/lib/bpf/*.o ''; - meta = with lib; { + meta = { homepage = "https://github.com/xdp-project/xdp-tools"; description = "Library and utilities for use with XDP"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21 bsd2 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tirex vcunat vifino ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xd/xdxf2slob/package.nix b/pkgs/by-name/xd/xdxf2slob/package.nix index ca4028adc476..f12d5390d7de 100644 --- a/pkgs/by-name/xd/xdxf2slob/package.nix +++ b/pkgs/by-name/xd/xdxf2slob/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication { pythonImportsCheck = [ "xdxf2slob" ]; - meta = with lib; { + meta = { description = "Tool to convert XDXF dictionary files to slob format"; homepage = "https://github.com/itkach/xdxf2slob/"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; mainProgram = "xdxf2slob"; }; } diff --git a/pkgs/by-name/xe/xed-editor/package.nix b/pkgs/by-name/xe/xed-editor/package.nix index 89a4b75fb664..0e82f3d03064 100644 --- a/pkgs/by-name/xe/xed-editor/package.nix +++ b/pkgs/by-name/xe/xed-editor/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { doInstallCheck = true; versionCheckProgram = "${placeholder "out"}/bin/xed"; - meta = with lib; { + meta = { description = "Light weight text editor from Linux Mint"; homepage = "https://github.com/linuxmint/xed"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tu-maurice bobby285271 ]; diff --git a/pkgs/by-name/xe/xedit/package.nix b/pkgs/by-name/xe/xedit/package.nix index e2d2997cf38f..5da7c31da802 100644 --- a/pkgs/by-name/xe/xedit/package.nix +++ b/pkgs/by-name/xe/xedit/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { "--with-appdefaultdir=$out/share/X11/app-defaults" ]; - meta = with lib; { + meta = { description = "Simple graphical text editor using Athena Widgets (Xaw)"; homepage = "https://gitlab.freedesktop.org/xorg/app/xedit"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.unix; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; mainProgram = "xedit"; diff --git a/pkgs/by-name/xe/xenomapper/package.nix b/pkgs/by-name/xe/xenomapper/package.nix index f25f6b249d90..67c5929f8327 100644 --- a/pkgs/by-name/xe/xenomapper/package.nix +++ b/pkgs/by-name/xe/xenomapper/package.nix @@ -25,11 +25,11 @@ python3.pkgs.buildPythonApplication rec { "xenomapper.mappability" ]; - meta = with lib; { + meta = { homepage = "https://github.com/genomematt/xenomapper"; description = "Utility for post processing mapped reads that have been aligned to a primary genome and a secondary genome and binning reads into species specific, multimapping in each species, unmapped and unassigned bins"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = [ maintainers.jbedo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.jbedo ]; }; } diff --git a/pkgs/by-name/xe/xenon/package.nix b/pkgs/by-name/xe/xenon/package.nix index 6907c94bf947..4436e2cb4fcd 100644 --- a/pkgs/by-name/xe/xenon/package.nix +++ b/pkgs/by-name/xe/xenon/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "xenon" ]; - meta = with lib; { + meta = { description = "Monitoring tool based on radon"; homepage = "https://github.com/rubik/xenon"; - license = licenses.mit; - maintainers = with maintainers; [ jfvillablanca ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jfvillablanca ]; mainProgram = "xenon"; }; } diff --git a/pkgs/by-name/xf/xf86_input_cmt/package.nix b/pkgs/by-name/xf/xf86_input_cmt/package.nix index 80c8f895aa3d..057da069fb0b 100644 --- a/pkgs/by-name/xf/xf86_input_cmt/package.nix +++ b/pkgs/by-name/xf/xf86_input_cmt/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { "--with-sdkdir=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Chromebook touchpad driver"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; homepage = "https://www.github.com/hugegreenbug/xf86-input-cmt"; - maintainers = with maintainers; [ kcalvinalvin ]; + maintainers = with lib.maintainers; [ kcalvinalvin ]; }; } diff --git a/pkgs/by-name/xf/xf86_input_wacom/package.nix b/pkgs/by-name/xf/xf86_input_wacom/package.nix index 42b5a9799d2c..d8c6060368b1 100644 --- a/pkgs/by-name/xf/xf86_input_wacom/package.nix +++ b/pkgs/by-name/xf/xf86_input_wacom/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { "--with-xorg-conf-dir=${placeholder "out"}/share/X11/xorg.conf.d" ]; - meta = with lib; { - maintainers = with maintainers; [ moni ]; + meta = { + maintainers = with lib.maintainers; [ moni ]; description = "Wacom digitizer driver for X11"; homepage = "https://linuxwacom.sourceforge.net"; - license = licenses.gpl2Only; - platforms = platforms.linux; # Probably, works with other unixes as well + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; # Probably, works with other unixes as well }; } diff --git a/pkgs/by-name/xf/xf86_video_nested/package.nix b/pkgs/by-name/xf/xf86_video_nested/package.nix index 46574326b3b6..99c486d13c15 100644 --- a/pkgs/by-name/xf/xf86_video_nested/package.nix +++ b/pkgs/by-name/xf/xf86_video_nested/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { CFLAGS = "-I${pixman}/include/pixman-1"; - meta = with lib; { + meta = { homepage = "https://cgit.freedesktop.org/xorg/driver/xf86-video-nested"; description = "Driver to run Xorg on top of Xorg or something else"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/xf/xfe/package.nix b/pkgs/by-name/xf/xfe/package.nix index 52f1875875cd..6867041b4fd7 100644 --- a/pkgs/by-name/xf/xfe/package.nix +++ b/pkgs/by-name/xf/xfe/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "MS-Explorer like file manager for X"; longDescription = '' X File Explorer (Xfe) is an MS-Explorer like file manager for X. @@ -55,8 +55,8 @@ stdenv.mkDerivation rec { Xfe aims to be the filemanager of choice for all the Unix addicts! ''; homepage = "https://sourceforge.net/projects/xfe/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xf/xfitter/package.nix b/pkgs/by-name/xf/xfitter/package.nix index 6bcff096cbcc..8b062b28e657 100644 --- a/pkgs/by-name/xf/xfitter/package.nix +++ b/pkgs/by-name/xf/xfitter/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation { ln -sv "$out/lib/xfitter/"* "$out/lib/" ''; - meta = with lib; { + meta = { description = "Open source QCD fit framework designed to extract PDFs and assess the impact of new data"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://www.xfitter.org/xFitter"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/xf/xfs-undelete/package.nix b/pkgs/by-name/xf/xfs-undelete/package.nix index 18d0b9070ae4..0da90eddb8e6 100644 --- a/pkgs/by-name/xf/xfs-undelete/package.nix +++ b/pkgs/by-name/xf/xfs-undelete/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Undelete tool for the XFS filesystem"; mainProgram = "xfs_undelete"; homepage = "https://github.com/ianka/xfs_undelete"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.deepfire ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.deepfire ]; }; } diff --git a/pkgs/by-name/xf/xfsdump/package.nix b/pkgs/by-name/xf/xfsdump/package.nix index fe9cc55bbd26..c73df61c36ec 100644 --- a/pkgs/by-name/xf/xfsdump/package.nix +++ b/pkgs/by-name/xf/xfsdump/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { patchShebangs ./install-sh ''; - meta = with lib; { + meta = { description = "XFS filesystem incremental dump utility"; homepage = "https://git.kernel.org/pub/scm/fs/xfs/xfsdump-dev.git/tree/doc/CHANGES"; - license = licenses.gpl2Only; - maintainers = [ maintainers.lunik1 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.lunik1 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xf/xfsprogs/package.nix b/pkgs/by-name/xf/xfsprogs/package.nix index 8a2ce99b307e..829a1779e245 100644 --- a/pkgs/by-name/xf/xfsprogs/package.nix +++ b/pkgs/by-name/xf/xfsprogs/package.nix @@ -92,16 +92,16 @@ stdenv.mkDerivation rec { inherit (nixosTests.installer) lvm; }; - meta = with lib; { + meta = { homepage = "https://xfs.wiki.kernel.org"; description = "SGI XFS utilities"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl21 gpl3Plus ]; # see https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/tree/debian/copyright - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dezgeg ajs124 ]; diff --git a/pkgs/by-name/xf/xfstests/package.nix b/pkgs/by-name/xf/xfstests/package.nix index 6e3fa6fdb484..64df41aea1bb 100644 --- a/pkgs/by-name/xf/xfstests/package.nix +++ b/pkgs/by-name/xf/xfstests/package.nix @@ -155,12 +155,12 @@ stdenv.mkDerivation rec { exec ./check "$@" ''; - meta = with lib; { + meta = { description = "Torture test suite for filesystems"; homepage = "https://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; mainProgram = "xfstests-check"; }; } diff --git a/pkgs/by-name/xg/xgalagapp/package.nix b/pkgs/by-name/xg/xgalagapp/package.nix index 0611ba0ae8fc..a6f974529f17 100644 --- a/pkgs/by-name/xg/xgalagapp/package.nix +++ b/pkgs/by-name/xg/xgalagapp/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://marc.mongenet.ch/OSS/XGalaga/"; description = "XGalaga++ is a classic single screen vertical shoot ’em up. It is inspired by XGalaga and reuses most of its sprites"; mainProgram = "xgalaga++"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xg/xgboost/package.nix b/pkgs/by-name/xg/xgboost/package.nix index dade3dfebf3d..486801e20524 100644 --- a/pkgs/by-name/xg/xgboost/package.nix +++ b/pkgs/by-name/xg/xgboost/package.nix @@ -191,13 +191,13 @@ effectiveStdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library"; homepage = "https://github.com/dmlc/xgboost"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "xgboost"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nviets ]; }; diff --git a/pkgs/by-name/xg/xgeometry-select/package.nix b/pkgs/by-name/xg/xgeometry-select/package.nix index 8021917d8e50..5fb11d9119fd 100644 --- a/pkgs/by-name/xg/xgeometry-select/package.nix +++ b/pkgs/by-name/xg/xgeometry-select/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { mv -v xgeometry-select $out/bin ''; - meta = with lib; { + meta = { description = "Select a region with mouse and prints geometry information (x/y/w/h)"; homepage = "https://bbs.archlinux.org/viewtopic.php?pid=660837"; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.linux; mainProgram = "xgeometry-select"; }; } diff --git a/pkgs/by-name/xh/xhosts/package.nix b/pkgs/by-name/xh/xhosts/package.nix index c3974cbd0344..9d09471ff241 100644 --- a/pkgs/by-name/xh/xhosts/package.nix +++ b/pkgs/by-name/xh/xhosts/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage { postFixup = "mv $out/lib/*.so $out/lib/libnss_xhosts.so.2"; - meta = with lib; { + meta = { description = "NSS Module which supports wildcards"; homepage = "https://github.com/dvob/nss-xhosts"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "nss-xhosts"; }; } diff --git a/pkgs/by-name/xh/xhyve/package.nix b/pkgs/by-name/xh/xhyve/package.nix index 5d705eb3a20d..788ce75f9f47 100644 --- a/pkgs/by-name/xh/xhyve/package.nix +++ b/pkgs/by-name/xh/xhyve/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { cp build/xhyve $out/bin ''; - meta = with lib; { + meta = { description = "Lightweight Virtualization on macOS Based on bhyve"; homepage = "https://github.com/mist64/xhyve"; - maintainers = [ maintainers.lnl7 ]; - license = licenses.bsd2; - platforms = platforms.darwin; + maintainers = [ lib.maintainers.lnl7 ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.darwin; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/xi/xib2nib/package.nix b/pkgs/by-name/xi/xib2nib/package.nix index 010965b8798f..35d87f62867e 100644 --- a/pkgs/by-name/xi/xib2nib/package.nix +++ b/pkgs/by-name/xi/xib2nib/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { maintainers = [ ]; description = "Compiles CocoaTouch .xib files into .nib"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xi/xidel/package.nix b/pkgs/by-name/xi/xidel/package.nix index 6c1800e0af6e..b28e17732440 100644 --- a/pkgs/by-name/xi/xidel/package.nix +++ b/pkgs/by-name/xi/xidel/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation { ./tests/tests.sh ''; - meta = with lib; { + meta = { description = "Command line tool to download and extract data from HTML/XML pages as well as JSON APIs"; mainProgram = "xidel"; homepage = "https://www.videlibri.de/xidel.html"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/xi/xidlehook/package.nix b/pkgs/by-name/xi/xidlehook/package.nix index 4d051616ef8d..5a15922e7a64 100644 --- a/pkgs/by-name/xi/xidlehook/package.nix +++ b/pkgs/by-name/xi/xidlehook/package.nix @@ -46,13 +46,13 @@ rustPlatform.buildRustPackage rec { patchelf --set-rpath "$RPATH:${libpulseaudio}/lib" $out/bin/xidlehook ''; - meta = with lib; { + meta = { description = "xautolock rewrite in Rust, with a few extra features"; homepage = "https://github.com/jD91mZM2/xidlehook"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; - badPlatforms = platforms.darwin; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.darwin; mainProgram = "xidlehook"; }; } diff --git a/pkgs/by-name/xi/xits-math/package.nix b/pkgs/by-name/xi/xits-math/package.nix index 246635fe18f9..182973f60e79 100644 --- a/pkgs/by-name/xi/xits-math/package.nix +++ b/pkgs/by-name/xi/xits-math/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { install -m444 -Dt $out/share/fonts/opentype *.otf ''; - meta = with lib; { + meta = { homepage = "https://github.com/alif-type/xits"; description = "OpenType implementation of STIX fonts with math support"; - license = licenses.ofl; - platforms = platforms.all; + license = lib.licenses.ofl; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xi/xivlauncher/package.nix b/pkgs/by-name/xi/xivlauncher/package.nix index 2ef342fe12c1..a11ca8cdd4b2 100644 --- a/pkgs/by-name/xi/xivlauncher/package.nix +++ b/pkgs/by-name/xi/xivlauncher/package.nix @@ -111,11 +111,11 @@ buildDotnetModule rec { }) ]; - meta = with lib; { + meta = { description = "Custom launcher for FFXIV"; homepage = "https://github.com/goatcorp/XIVLauncher.Core"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ keysmashes witchof0x20 ]; diff --git a/pkgs/by-name/xk/xkb-switch-i3/package.nix b/pkgs/by-name/xk/xkb-switch-i3/package.nix index d7746e165c85..210a37c4ce04 100644 --- a/pkgs/by-name/xk/xkb-switch-i3/package.nix +++ b/pkgs/by-name/xk/xkb-switch-i3/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { libxkbfile ]; - meta = with lib; { + meta = { description = "Switch your X keyboard layouts from the command line(i3 edition)"; homepage = "https://github.com/Zebradil/xkb-switch-i3"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ewok ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ewok ]; + platforms = lib.platforms.linux; mainProgram = "xkb-switch"; }; } diff --git a/pkgs/by-name/xk/xkb-switch/package.nix b/pkgs/by-name/xk/xkb-switch/package.nix index 9af6baa37c15..cbe5794ee342 100644 --- a/pkgs/by-name/xk/xkb-switch/package.nix +++ b/pkgs/by-name/xk/xkb-switch/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { description = "Switch your X keyboard layouts from the command line"; homepage = "https://github.com/ierton/xkb-switch"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ smironov ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ smironov ]; + platforms = lib.platforms.linux; mainProgram = "xkb-switch"; }; } diff --git a/pkgs/by-name/xk/xkbd/package.nix b/pkgs/by-name/xk/xkbd/package.nix index f28d2228637f..5941c24070ba 100644 --- a/pkgs/by-name/xk/xkbd/package.nix +++ b/pkgs/by-name/xk/xkbd/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/mahatma-kaganovich/xkbd"; description = "On-screen soft keyboard for X11"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xkbd"; }; } diff --git a/pkgs/by-name/xk/xkblayout-state/package.nix b/pkgs/by-name/xk/xkblayout-state/package.nix index fb9b5fd2a619..4868eb959566 100644 --- a/pkgs/by-name/xk/xkblayout-state/package.nix +++ b/pkgs/by-name/xk/xkblayout-state/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { cp xkblayout-state $out/bin ''; - meta = with lib; { + meta = { description = "Small command-line program to get/set the current XKB keyboard layout"; homepage = "https://github.com/nonpop/xkblayout-state"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; mainProgram = "xkblayout-state"; }; } diff --git a/pkgs/by-name/xk/xkbmon/package.nix b/pkgs/by-name/xk/xkbmon/package.nix index fb2f4c47d921..798e3f3ca80d 100644 --- a/pkgs/by-name/xk/xkbmon/package.nix +++ b/pkgs/by-name/xk/xkbmon/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { installPhase = "install -D -t $out/bin xkbmon"; - meta = with lib; { + meta = { homepage = "https://github.com/xkbmon/xkbmon"; description = "Command-line keyboard layout monitor for X11"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; mainProgram = "xkbmon"; }; } diff --git a/pkgs/by-name/xk/xkcd-font/package.nix b/pkgs/by-name/xk/xkcd-font/package.nix index 97bdbd755f6a..a1cc647f0fe6 100644 --- a/pkgs/by-name/xk/xkcd-font/package.nix +++ b/pkgs/by-name/xk/xkcd-font/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Xkcd font"; homepage = "https://github.com/ipython/xkcd-font"; - license = licenses.cc-by-nc-30; - platforms = platforms.all; + license = lib.licenses.cc-by-nc-30; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xl/xl2tpd/package.nix b/pkgs/by-name/xl/xl2tpd/package.nix index aaf95affed29..2cb59b0c20a9 100644 --- a/pkgs/by-name/xl/xl2tpd/package.nix +++ b/pkgs/by-name/xl/xl2tpd/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = src.meta.homepage; description = "Layer 2 Tunnelling Protocol Daemon (RFC 2661)"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xl/xlibinput-calibrator/package.nix b/pkgs/by-name/xl/xlibinput-calibrator/package.nix index 2fc3a5640d01..ec4f0d154c88 100644 --- a/pkgs/by-name/xl/xlibinput-calibrator/package.nix +++ b/pkgs/by-name/xl/xlibinput-calibrator/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Touch calibrator for libinput"; mainProgram = "xlibinput_calibrator"; homepage = "https://github.com/kreijack/xlibinput_calibrator"; changelog = "https://github.com/kreijack/xlibinput_calibrator/blob/${src.rev}/Changelog"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ atemu ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ atemu ]; }; } diff --git a/pkgs/by-name/xl/xlife/package.nix b/pkgs/by-name/xl/xlife/package.nix index baf9f80f80eb..45e297643afe 100644 --- a/pkgs/by-name/xl/xlife/package.nix +++ b/pkgs/by-name/xl/xlife/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { install -Dm755 lifeconv -t $out/bin ''; - meta = with lib; { + meta = { homepage = "http://litwr2.atspace.eu/xlife.php"; description = "Conway's Game of Life and other cellular automata, for X"; - license = licenses.hpndSellVariant; - maintainers = with maintainers; [ djanatyn ]; + license = lib.licenses.hpndSellVariant; + maintainers = with lib.maintainers; [ djanatyn ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/xl/xlockmore/package.nix b/pkgs/by-name/xl/xlockmore/package.nix index 6ea8723c5832..7d732de4565d 100644 --- a/pkgs/by-name/xl/xlockmore/package.nix +++ b/pkgs/by-name/xl/xlockmore/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; # no build output otherwise - meta = with lib; { + meta = { description = "Screen locker for the X Window System"; homepage = "http://sillycycle.com/xlockmore.html"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; mainProgram = "xlock"; }; } diff --git a/pkgs/by-name/xl/xlog/package.nix b/pkgs/by-name/xl/xlog/package.nix index d9d06ad69ed2..edba366bcc98 100644 --- a/pkgs/by-name/xl/xlog/package.nix +++ b/pkgs/by-name/xl/xlog/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { hamlib ]; - meta = with lib; { + meta = { description = "Amateur radio logging program"; longDescription = '' Xlog is an amateur radio logging program. @@ -37,9 +37,9 @@ stdenv.mkDerivation rec { both for short and long path. ''; homepage = "https://www.nongnu.org/xlog"; - maintainers = [ maintainers.mafo ]; - license = licenses.gpl3; - platforms = platforms.unix; + maintainers = [ lib.maintainers.mafo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; mainProgram = "xlog"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/xl/xlogo/package.nix b/pkgs/by-name/xl/xlogo/package.nix index bfda0f92396c..4ecc87e9b3a0 100644 --- a/pkgs/by-name/xl/xlogo/package.nix +++ b/pkgs/by-name/xl/xlogo/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { xorg.libXt ]; - meta = with lib; { + meta = { description = "X Window System logo display demo"; homepage = "https://gitlab.freedesktop.org/xorg/app/xlogo"; - maintainers = with maintainers; [ raboof ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ raboof ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; mainProgram = "xlogo"; }; } diff --git a/pkgs/by-name/xl/xlslib/package.nix b/pkgs/by-name/xl/xlslib/package.nix index e4f3ab83e567..04577f7313f7 100644 --- a/pkgs/by-name/xl/xlslib/package.nix +++ b/pkgs/by-name/xl/xlslib/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "C++/C library to construct Excel .xls files in code"; homepage = "https://sourceforge.net/projects/xlslib/"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xm/xmage/package.nix b/pkgs/by-name/xm/xmage/package.nix index 5dfb04c6b195..2824b281edeb 100644 --- a/pkgs/by-name/xm/xmage/package.nix +++ b/pkgs/by-name/xm/xmage/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { chmod +x $out/bin/xmage ''; - meta = with lib; { + meta = { description = "Magic Another Game Engine"; mainProgram = "xmage"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer abueide ]; diff --git a/pkgs/by-name/xm/xmagnify/package.nix b/pkgs/by-name/xm/xmagnify/package.nix index d5703b46c227..d411466f5b06 100644 --- a/pkgs/by-name/xm/xmagnify/package.nix +++ b/pkgs/by-name/xm/xmagnify/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { xorgproto ]; - meta = with lib; { + meta = { description = "Tiny screen magnifier for X11"; homepage = "https://gitlab.com/amiloradovsky/magnify"; - license = licenses.mit; # or GPL2+, optionally - maintainers = with maintainers; [ amiloradovsky ]; + license = lib.licenses.mit; # or GPL2+, optionally + maintainers = with lib.maintainers; [ amiloradovsky ]; mainProgram = "magnify"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xm/xmcp/package.nix b/pkgs/by-name/xm/xmcp/package.nix index 40ecf00f6419..86cd5b8fa10a 100644 --- a/pkgs/by-name/xm/xmcp/package.nix +++ b/pkgs/by-name/xm/xmcp/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tiny color picker for X11"; homepage = "https://github.com/blblapco/xmcp"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xmcp"; }; } diff --git a/pkgs/by-name/xm/xmedcon/package.nix b/pkgs/by-name/xm/xmedcon/package.nix index dc0de8a82d75..9c62a2f0495b 100644 --- a/pkgs/by-name/xm/xmedcon/package.nix +++ b/pkgs/by-name/xm/xmedcon/package.nix @@ -31,14 +31,14 @@ stdenv.mkDerivation rec { wrapGAppsHook3 ]; - meta = with lib; { + meta = { description = "Open source toolkit for medical image conversion"; homepage = "https://xmedcon.sourceforge.net/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ arianvp flokli ]; - platforms = platforms.darwin ++ platforms.linux; + platforms = lib.platforms.darwin ++ lib.platforms.linux; }; } diff --git a/pkgs/by-name/xm/xml2/package.nix b/pkgs/by-name/xm/xml2/package.nix index 3b29974fe28d..a53946e5c7a3 100644 --- a/pkgs/by-name/xm/xml2/package.nix +++ b/pkgs/by-name/xm/xml2/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://web.archive.org/web/20160515005047/http://dan.egnor.name:80/xml2"; description = "Tools for command line processing of XML, HTML, and CSV"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = [ maintainers.rycee ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.rycee ]; }; } diff --git a/pkgs/by-name/xm/xmloscopy/package.nix b/pkgs/by-name/xm/xmloscopy/package.nix index e0df62513ddd..9fd1712d8bae 100644 --- a/pkgs/by-name/xm/xmloscopy/package.nix +++ b/pkgs/by-name/xm/xmloscopy/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { --set PATH "${spath}" ''; - meta = with lib; { + meta = { description = "XML debugger"; mainProgram = "xmloscopy"; homepage = "https://github.com/grahamc/xmloscopy"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ grahamc ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ grahamc ]; }; } diff --git a/pkgs/by-name/xm/xmlrpc_c/package.nix b/pkgs/by-name/xm/xmlrpc_c/package.nix index fa890a3b4c3b..67646135aa20 100644 --- a/pkgs/by-name/xm/xmlrpc_c/package.nix +++ b/pkgs/by-name/xm/xmlrpc_c/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { # ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=implicit-function-declaration"; - meta = with lib; { + meta = { description = "Lightweight RPC library based on XML and HTTP"; homepage = "https://xmlrpc-c.sourceforge.net/"; # /doc/COPYING also lists "ABYSS Web Server License" and "Python 1.5.2 License" - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/xm/xmlsec/package.nix b/pkgs/by-name/xm/xmlsec/package.nix index 2a2b52ee337a..8a69af613232 100644 --- a/pkgs/by-name/xm/xmlsec/package.nix +++ b/pkgs/by-name/xm/xmlsec/package.nix @@ -115,14 +115,14 @@ lib.fix ( touch $out ''; - meta = with lib; { + meta = { description = "XML Security Library in C based on libxml2"; homepage = "https://www.aleksey.com/xmlsec/"; downloadPage = "https://www.aleksey.com/xmlsec/download.html"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "xmlsec1"; maintainers = [ ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } ) diff --git a/pkgs/by-name/xm/xmltoman/package.nix b/pkgs/by-name/xm/xmltoman/package.nix index 6a3f7cbcb38a..754d33cb61bd 100644 --- a/pkgs/by-name/xm/xmltoman/package.nix +++ b/pkgs/by-name/xm/xmltoman/package.nix @@ -44,12 +44,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Two very simple scripts for converting xml to groff or html"; homepage = "https://github.com/atsb/xmltoman"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ tochiaha ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ tochiaha ]; mainProgram = "xmltoman"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xm/xmonad-log/package.nix b/pkgs/by-name/xm/xmonad-log/package.nix index e9e11216f6a4..473705ba6020 100644 --- a/pkgs/by-name/xm/xmonad-log/package.nix +++ b/pkgs/by-name/xm/xmonad-log/package.nix @@ -18,12 +18,12 @@ buildGoModule { vendorHash = "sha256-58zK6t3rb+19ilaQaNgsMVFQBYKPIV40ww8klrGbpnw="; proxyVendor = true; - meta = with lib; { + meta = { description = "xmonad DBus monitoring solution"; homepage = "https://github.com/xintron/xmonad-log"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ joko ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ joko ]; mainProgram = "xmonad-log"; }; } diff --git a/pkgs/by-name/xm/xmoto/package.nix b/pkgs/by-name/xm/xmoto/package.nix index bf82cb08c9d4..c09df22d00fa 100644 --- a/pkgs/by-name/xm/xmoto/package.nix +++ b/pkgs/by-name/xm/xmoto/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { --prefix XDG_DATA_DIRS : "$out/share/" ''; - meta = with lib; { + meta = { description = "Challenging 2D motocross platform game, where physics play an important role"; mainProgram = "xmoto"; longDescription = '' @@ -80,11 +80,11 @@ stdenv.mkDerivation rec { You need to control your bike to its limits, if you want to have a chance to finish the most difficult challenges. ''; homepage = "https://xmoto.tuxfamily.org"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin pSub ]; - platforms = platforms.all; - license = licenses.gpl2Plus; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/xm/xmp/package.nix b/pkgs/by-name/xm/xmp/package.nix index f0b88dea3bed..7a181ad6a670 100644 --- a/pkgs/by-name/xm/xmp/package.nix +++ b/pkgs/by-name/xm/xmp/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libxmp ] ++ lib.optionals stdenv.hostPlatform.isLinux [ alsa-lib ]; - meta = with lib; { + meta = { description = "Extended module player"; homepage = "https://xmp.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "xmp"; }; } diff --git a/pkgs/by-name/xm/xmppc/package.nix b/pkgs/by-name/xm/xmppc/package.nix index f7d7d3d12d3e..8489f71a5bf7 100644 --- a/pkgs/by-name/xm/xmppc/package.nix +++ b/pkgs/by-name/xm/xmppc/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { mkdir m4 ''; - meta = with lib; { + meta = { description = "Command Line Interface Tool for XMPP"; mainProgram = "xmppc"; homepage = "https://codeberg.org/Anoxinon_e.V./xmppc"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.jugendhacker ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.jugendhacker ]; }; } diff --git a/pkgs/by-name/xm/xmrig-mo/package.nix b/pkgs/by-name/xm/xmrig-mo/package.nix index 95a65107c492..d6f550b366a4 100644 --- a/pkgs/by-name/xm/xmrig-mo/package.nix +++ b/pkgs/by-name/xm/xmrig-mo/package.nix @@ -15,13 +15,13 @@ xmrig.overrideAttrs (oldAttrs: rec { hash = "sha256-l3dN1lKn+Vt2JPmBm452kRe39UCnW3TIhUbHXkHXBrM="; }; - meta = with lib; { + meta = { description = "Fork of the XMRig CPU miner with support for algorithm switching"; homepage = "https://github.com/MoneroOcean/xmrig"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "xmrig"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ j0hax redhawk ]; diff --git a/pkgs/by-name/xm/xmrig-proxy/package.nix b/pkgs/by-name/xm/xmrig-proxy/package.nix index eda345ef3f55..1295be6a8407 100644 --- a/pkgs/by-name/xm/xmrig-proxy/package.nix +++ b/pkgs/by-name/xm/xmrig-proxy/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monero (XMR) Stratum protocol proxy"; mainProgram = "xmrig-proxy"; homepage = "https://github.com/xmrig/xmrig-proxy"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aij ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aij ]; }; } diff --git a/pkgs/by-name/xm/xmrig/package.nix b/pkgs/by-name/xm/xmrig/package.nix index 4215d3c3e345..d433bf0fd070 100644 --- a/pkgs/by-name/xm/xmrig/package.nix +++ b/pkgs/by-name/xm/xmrig/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { # https://github.com/NixOS/nixpkgs/issues/245534 hardeningDisable = [ "fortify" ]; - meta = with lib; { + meta = { description = "Monero (XMR) CPU miner"; homepage = "https://github.com/xmrig/xmrig"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "xmrig"; - platforms = platforms.unix; - maintainers = with maintainers; [ kim0 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ kim0 ]; }; } diff --git a/pkgs/by-name/xn/xneur/package.nix b/pkgs/by-name/xn/xneur/package.nix index 475e47776bfd..20231a0d4f49 100644 --- a/pkgs/by-name/xn/xneur/package.nix +++ b/pkgs/by-name/xn/xneur/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation { sed -e 's@for xosd_dir in@for xosd_dir in ${xosd} @' -i configure.ac ''; - meta = with lib; { + meta = { description = "Utility for switching between keyboard layouts"; mainProgram = "xneur"; homepage = "https://xneur.ru"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xn/xnotify/package.nix b/pkgs/by-name/xn/xnotify/package.nix index 969a76eacd7b..d7ec60ea24b7 100644 --- a/pkgs/by-name/xn/xnotify/package.nix +++ b/pkgs/by-name/xn/xnotify/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Tool to read notifications from stdin and pop them up on the screen"; longDescription = '' XNotify displays a notification on the screen. XNotify receives a @@ -47,9 +47,9 @@ stdenv.mkDerivation rec { on the screen. ''; homepage = "https://github.com/phillbush/xnotify"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "xnotify"; }; } diff --git a/pkgs/by-name/xo/xob/package.nix b/pkgs/by-name/xo/xob/package.nix index 001bd80ec3ea..7d154259a796 100644 --- a/pkgs/by-name/xo/xob/package.nix +++ b/pkgs/by-name/xo/xob/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Lightweight overlay bar for the X Window System"; longDescription = '' A lightweight configurable overlay volume/backlight/progress/anything bar @@ -39,9 +39,9 @@ stdenv.mkDerivation rec { is also support for overflows (when the value exceeds the maximum). ''; inherit (src.meta) homepage; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ florentc ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ florentc ]; mainProgram = "xob"; }; } diff --git a/pkgs/by-name/xo/xorex/package.nix b/pkgs/by-name/xo/xorex/package.nix index e28cc7227fe4..652489d393d8 100644 --- a/pkgs/by-name/xo/xorex/package.nix +++ b/pkgs/by-name/xo/xorex/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication rec { pefile ]; - meta = with lib; { + meta = { description = "XOR Key Extractor"; mainProgram = "xorex"; homepage = "https://github.com/Neo23x0/xorex"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xo/xorg-rgb/package.nix b/pkgs/by-name/xo/xorg-rgb/package.nix index 7d80c0b7a96b..6257c405a42b 100644 --- a/pkgs/by-name/xo/xorg-rgb/package.nix +++ b/pkgs/by-name/xo/xorg-rgb/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ pkg-config ]; buildInputs = [ xorgproto ]; - meta = with lib; { + meta = { description = "X11 colorname to RGB mapping database"; mainProgram = "showrgb"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://xorg.freedesktop.org/"; }; }) diff --git a/pkgs/by-name/xo/xosd/package.nix b/pkgs/by-name/xo/xosd/package.nix index 9dc1f53c81e3..5accd27643c6 100644 --- a/pkgs/by-name/xo/xosd/package.nix +++ b/pkgs/by-name/xo/xosd/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { xorgproto ]; - meta = with lib; { + meta = { description = "Displays text on your screen"; homepage = "https://sourceforge.net/projects/libxosd"; - license = licenses.gpl2Only; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/xo/xow_dongle-firmware/package.nix b/pkgs/by-name/xo/xow_dongle-firmware/package.nix index aae11e3ba621..6d0f14e53545 100644 --- a/pkgs/by-name/xo/xow_dongle-firmware/package.nix +++ b/pkgs/by-name/xo/xow_dongle-firmware/package.nix @@ -43,14 +43,14 @@ stdenvNoCC.mkDerivation { install -Dm644 xow_dongle_045e_02e6.bin $out/lib/firmware/xow_dongle_045e_02e6.bin ''; - meta = with lib; { + meta = { description = "Xbox One wireless dongle firmware"; homepage = "https://www.xbox.com/en-NZ/accessories/adapters/wireless-adapter-windows"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ rhysmdnz fazzi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xp/xpaste/package.nix b/pkgs/by-name/xp/xpaste/package.nix index c56c664402c3..e54deb5d6945 100644 --- a/pkgs/by-name/xp/xpaste/package.nix +++ b/pkgs/by-name/xp/xpaste/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication rec { # no tests, no python module to import, no version output to check doCheck = false; - meta = with lib; { + meta = { description = "Paste text into X windows that don't work with selections"; mainProgram = "xpaste"; homepage = "https://github.com/ossobv/xpaste"; - license = licenses.gpl3; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/by-name/xp/xplanet/package.nix b/pkgs/by-name/xp/xplanet/package.nix index 18a1b5bc9e2d..cace9029e66e 100644 --- a/pkgs/by-name/xp/xplanet/package.nix +++ b/pkgs/by-name/xp/xplanet/package.nix @@ -48,14 +48,14 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing"; - meta = with lib; { + meta = { description = "Renders an image of the earth or other planets into the X root window"; mainProgram = "xplanet"; homepage = "https://xplanet.sourceforge.net"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ lassulus ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xp/xplorer/package.nix b/pkgs/by-name/xp/xplorer/package.nix index 1b88e9e984d7..d30c6109eecf 100644 --- a/pkgs/by-name/xp/xplorer/package.nix +++ b/pkgs/by-name/xp/xplorer/package.nix @@ -86,13 +86,13 @@ rustPlatform.buildRustPackage { mv $out/bin/app $out/bin/xplorer ''; - meta = with lib; { + meta = { # webkitgtk_4_0 was removed broken = true; description = "Customizable, modern file manager"; homepage = "https://xplorer.space"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; mainProgram = "xplorer"; }; } diff --git a/pkgs/by-name/xp/xplr/package.nix b/pkgs/by-name/xp/xplr/package.nix index 0414b1f95bbf..aebe13048388 100644 --- a/pkgs/by-name/xp/xplr/package.nix +++ b/pkgs/by-name/xp/xplr/package.nix @@ -41,13 +41,13 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "Hackable, minimal, fast TUI file explorer"; mainProgram = "xplr"; homepage = "https://xplr.dev"; changelog = "https://github.com/sayanarijit/xplr/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sayanarijit suryasr007 mimame diff --git a/pkgs/by-name/xp/xplugd/package.nix b/pkgs/by-name/xp/xplugd/package.nix index e536c9b8e3b6..ea8042e9ac69 100644 --- a/pkgs/by-name/xp/xplugd/package.nix +++ b/pkgs/by-name/xp/xplugd/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/troglobit/xplugd"; description = "UNIX daemon that executes a script on X input and RandR changes"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ akho ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ akho ]; mainProgram = "xplugd"; }; } diff --git a/pkgs/by-name/xp/xpointerbarrier/package.nix b/pkgs/by-name/xp/xpointerbarrier/package.nix index 0344102d319c..6efcbf35803d 100644 --- a/pkgs/by-name/xp/xpointerbarrier/package.nix +++ b/pkgs/by-name/xp/xpointerbarrier/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://www.uninformativ.de/git/xpointerbarrier/file/README.html"; description = "Create X11 pointer barriers around your working area"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xzfc ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xpointerbarrier"; }; }) diff --git a/pkgs/by-name/xp/xprintidle/package.nix b/pkgs/by-name/xp/xprintidle/package.nix index 7ded44bf7a21..e02794af1927 100644 --- a/pkgs/by-name/xp/xprintidle/package.nix +++ b/pkgs/by-name/xp/xprintidle/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { xorg.libXext ]; - meta = with lib; { + meta = { homepage = "https://github.com/g0hl1n/xprintidle"; description = "Utility that queries the X server for the user's idle time and prints it to stdout"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.linux; mainProgram = "xprintidle"; }; }) diff --git a/pkgs/by-name/xp/xprompt/package.nix b/pkgs/by-name/xp/xprompt/package.nix index bf3dab6b1b7e..d7ea92df2de6 100644 --- a/pkgs/by-name/xp/xprompt/package.nix +++ b/pkgs/by-name/xp/xprompt/package.nix @@ -47,16 +47,16 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Dmenu rip-off with contextual completion"; longDescription = '' XPrompt is a prompt for X. XPrompt features a text input field where the user can type in a text subject to tab-completion. ''; homepage = "https://github.com/phillbush/xprompt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "xprompt"; }; } diff --git a/pkgs/by-name/xp/xpwn/package.nix b/pkgs/by-name/xp/xpwn/package.nix index 31c4d8d825c6..01e004b468e8 100644 --- a/pkgs/by-name/xp/xpwn/package.nix +++ b/pkgs/by-name/xp/xpwn/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation { --replace-fail "cmake_minimum_required(VERSION 2.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "http://planetbeing.lighthouseapp.com/projects/15246-xpwn"; description = "Custom NOR firmware loader/IPSW generator for the iPhone"; - license = licenses.gpl3Plus; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl3Plus; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/xq/xq-xml/package.nix b/pkgs/by-name/xq/xq-xml/package.nix index 924eed55e5d3..4fbf57bc7088 100644 --- a/pkgs/by-name/xq/xq-xml/package.nix +++ b/pkgs/by-name/xq/xq-xml/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Command-line XML and HTML beautifier and content extractor"; mainProgram = "xq"; homepage = "https://github.com/sibprogrammer/xq"; changelog = "https://github.com/sibprogrammer/xq/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xq/xq/package.nix b/pkgs/by-name/xq/xq/package.nix index d72e838ed5be..6e4bee799e69 100644 --- a/pkgs/by-name/xq/xq/package.nix +++ b/pkgs/by-name/xq/xq/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-q8kVyj31Ne8ddMm2Q3Z/VB10SCxrq/65PH08mmtFCu4="; - meta = with lib; { + meta = { description = "Pure rust implementation of jq"; homepage = "https://github.com/MiSawa/xq"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "xq"; }; } diff --git a/pkgs/by-name/xq/xqilla/package.nix b/pkgs/by-name/xq/xqilla/package.nix index 626cfe2d705c..d5a242eb1f96 100644 --- a/pkgs/by-name/xq/xqilla/package.nix +++ b/pkgs/by-name/xq/xqilla/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { xercesc ]; - meta = with lib; { + meta = { description = "XQuery and XPath 2 library and command line utility written in C++, implemented on top of the Xerces-C library"; mainProgram = "xqilla"; - license = licenses.asl20; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xq/xquartz/package.nix b/pkgs/by-name/xq/xquartz/package.nix index 8b60533add34..3a5163fcff20 100644 --- a/pkgs/by-name/xq/xquartz/package.nix +++ b/pkgs/by-name/xq/xquartz/package.nix @@ -239,9 +239,9 @@ stdenv.mkDerivation { inherit pkgs; }; - meta = with lib; { - platforms = platforms.darwin; + meta = { + platforms = lib.platforms.darwin; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/xr/xr-hardware/package.nix b/pkgs/by-name/xr/xr-hardware/package.nix index 2b4cf4b92396..e6ea0a99027c 100644 --- a/pkgs/by-name/xr/xr-hardware/package.nix +++ b/pkgs/by-name/xr/xr-hardware/package.nix @@ -31,11 +31,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Hardware description for XR devices"; homepage = "https://gitlab.freedesktop.org/monado/utilities/xr-hardware"; - license = licenses.boost; - maintainers = with maintainers; [ Scrumplex ]; - platforms = platforms.linux; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ Scrumplex ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/xr/xrdp/package.nix b/pkgs/by-name/xr/xrdp/package.nix index 7c89b824bce8..db77a0f8e008 100644 --- a/pkgs/by-name/xr/xrdp/package.nix +++ b/pkgs/by-name/xr/xrdp/package.nix @@ -204,15 +204,15 @@ let }; }; - meta = with lib; { + meta = { description = "Open source RDP server"; homepage = "https://github.com/neutrinolabs/xrdp"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ chvp lucasew ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }; in diff --git a/pkgs/by-name/xr/xreader/package.nix b/pkgs/by-name/xr/xreader/package.nix index 6e564f79f302..b7ff942f5562 100644 --- a/pkgs/by-name/xr/xreader/package.nix +++ b/pkgs/by-name/xr/xreader/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Document viewer capable of displaying multiple and single page document formats like PDF and Postscript"; homepage = "https://github.com/linuxmint/xreader"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/xr/xrectsel/package.nix b/pkgs/by-name/xr/xrectsel/package.nix index 4673d4a8017d..38d431b73632 100644 --- a/pkgs/by-name/xr/xrectsel/package.nix +++ b/pkgs/by-name/xr/xrectsel/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ libX11 ]; - meta = with lib; { + meta = { description = "Print the geometry of a rectangular screen region"; homepage = "https://github.com/ropery/xrectsel"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; mainProgram = "xrectsel"; }; } diff --git a/pkgs/by-name/xr/xrestop/package.nix b/pkgs/by-name/xr/xrestop/package.nix index 1cdfdf1c7caf..7ae25d036a6e 100644 --- a/pkgs/by-name/xr/xrestop/package.nix +++ b/pkgs/by-name/xr/xrestop/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { description = "'top' like tool for monitoring X Client server resource usage"; homepage = "https://gitlab.freedesktop.org/xorg/app/xrestop"; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "xrestop"; }; } diff --git a/pkgs/by-name/xr/xrgears/package.nix b/pkgs/by-name/xr/xrgears/package.nix index ba4a18923624..75f23f102616 100644 --- a/pkgs/by-name/xr/xrgears/package.nix +++ b/pkgs/by-name/xr/xrgears/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://gitlab.freedesktop.org/monado/demos/xrgears"; description = "OpenXR example using Vulkan for rendering"; mainProgram = "xrgears"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/by-name/xs/xsane/package.nix b/pkgs/by-name/xs/xsane/package.nix index 5746664e09b6..b9e839b8d9c3 100644 --- a/pkgs/by-name/xs/xsane/package.nix +++ b/pkgs/by-name/xs/xsane/package.nix @@ -128,12 +128,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "http://www.sane-project.org/"; description = "Graphical scanning frontend for sane"; mainProgram = "xsane"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/by-name/xs/xscast/package.nix b/pkgs/by-name/xs/xscast/package.nix index fb770d5d0f83..1843d3e6f4a1 100644 --- a/pkgs/by-name/xs/xscast/package.nix +++ b/pkgs/by-name/xs/xscast/package.nix @@ -44,9 +44,9 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/KeyboardFire/xscast"; - license = licenses.mit; + license = lib.licenses.mit; description = "Screencasts of windows with list of keystrokes overlayed"; maintainers = [ ]; mainProgram = "xscast"; diff --git a/pkgs/by-name/xs/xschem/package.nix b/pkgs/by-name/xs/xschem/package.nix index 4497f89a0ee0..ebaf08026704 100644 --- a/pkgs/by-name/xs/xschem/package.nix +++ b/pkgs/by-name/xs/xschem/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Schematic capture and netlisting EDA tool"; longDescription = '' @@ -51,8 +51,8 @@ stdenv.mkDerivation rec { the drawn schematic, allowing the simulation of the circuit. ''; homepage = "https://xschem.sourceforge.io/stefan/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fbeffa ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fbeffa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xs/xsct/package.nix b/pkgs/by-name/xs/xsct/package.nix index 87ca5f91e987..3a18c062e3ca 100644 --- a/pkgs/by-name/xs/xsct/package.nix +++ b/pkgs/by-name/xs/xsct/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Set color temperature of screen"; mainProgram = "xsct"; homepage = "https://github.com/faf0/sct"; changelog = "https://github.com/faf0/sct/blob/${finalAttrs.version}/CHANGELOG"; - license = licenses.unlicense; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = with platforms; linux ++ freebsd ++ openbsd; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = with lib.platforms; linux ++ freebsd ++ openbsd; }; }) diff --git a/pkgs/by-name/xs/xsecurelock/package.nix b/pkgs/by-name/xs/xsecurelock/package.nix index 28dc1c642ef5..4711bdaf623b 100644 --- a/pkgs/by-name/xs/xsecurelock/package.nix +++ b/pkgs/by-name/xs/xsecurelock/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { wrapProgram $out/libexec/xsecurelock/saver_blank --prefix PATH : ${coreutils}/bin ''; - meta = with lib; { + meta = { description = "X11 screen lock utility with security in mind"; homepage = "https://github.com/google/xsecurelock"; - license = licenses.asl20; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.unix; mainProgram = "xsecurelock"; }; } diff --git a/pkgs/by-name/xs/xsel/package.nix b/pkgs/by-name/xs/xsel/package.nix index d929ae669155..a9f4b1604c34 100644 --- a/pkgs/by-name/xs/xsel/package.nix +++ b/pkgs/by-name/xs/xsel/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { libXt ]; - meta = with lib; { + meta = { description = "Command-line program for getting and setting the contents of the X selection"; homepage = "http://www.kfish.org/software/xsel"; changelog = "https://github.com/kfish/xsel/releases/tag/${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cafkafk ]; platforms = lib.platforms.unix; mainProgram = "xsel"; }; diff --git a/pkgs/by-name/xs/xsettingsd/package.nix b/pkgs/by-name/xs/xsettingsd/package.nix index ac54cd7f77c7..69d5fc5a591d 100644 --- a/pkgs/by-name/xs/xsettingsd/package.nix +++ b/pkgs/by-name/xs/xsettingsd/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { mv $out/share/systemd $out/lib ''; - meta = with lib; { + meta = { description = "Provides settings to X11 applications via the XSETTINGS specification"; homepage = "https://github.com/derat/xsettingsd"; - license = licenses.bsd3; - maintainers = with maintainers; [ romildo ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ romildo ]; + platforms = lib.platforms.linux; mainProgram = "xsettingsd"; }; } diff --git a/pkgs/by-name/xs/xskat/package.nix b/pkgs/by-name/xs/xskat/package.nix index 8325ba5352ba..0011c70a3b2a 100644 --- a/pkgs/by-name/xs/xskat/package.nix +++ b/pkgs/by-name/xs/xskat/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = with lib; { + meta = { description = "Famous german card game"; mainProgram = "xskat"; - platforms = platforms.unix; - license = licenses.xskat; + platforms = lib.platforms.unix; + license = lib.licenses.xskat; longDescription = "Play the german card game Skat against the AI or over IRC."; homepage = "https://web.archive.org/web/20221003060115/https://www.xskat.de/xskat.html"; }; diff --git a/pkgs/by-name/xs/xsnow/package.nix b/pkgs/by-name/xs/xsnow/package.nix index 00cfea9b55da..41da59b450f1 100644 --- a/pkgs/by-name/xs/xsnow/package.nix +++ b/pkgs/by-name/xs/xsnow/package.nix @@ -40,17 +40,17 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "X-windows application that will let it snow on the root, in between and on windows"; mainProgram = "xsnow"; homepage = "https://ratrabbit.nl/ratrabbit/xsnow/"; changelog = "https://ratrabbit.nl/ratrabbit/xsnow/changelog/index.html"; downloadPage = "https://ratrabbit.nl/ratrabbit/xsnow/downloads/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ robberer griffi-gh ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xs/xsokoban/package.nix b/pkgs/by-name/xs/xsokoban/package.nix index e1b44c2ebce0..6941a6ad8920 100644 --- a/pkgs/by-name/xs/xsokoban/package.nix +++ b/pkgs/by-name/xs/xsokoban/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/share $out/man/man1 $out/lib ''; - meta = with lib; { + meta = { description = "X sokoban"; homepage = "https://www.cs.cornell.edu/andru/xsokoban.html"; mainProgram = "xsokoban"; - license = licenses.publicDomain; - maintainers = [ maintainers.raskin ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xs/xsos/package.nix b/pkgs/by-name/xs/xsos/package.nix index 9583dadd9e8a..8416d6abea93 100644 --- a/pkgs/by-name/xs/xsos/package.nix +++ b/pkgs/by-name/xs/xsos/package.nix @@ -46,15 +46,15 @@ stdenv.mkDerivation rec { installShellCompletion --bash --name xsos.bash xsos-bash-completion.bash ''; - meta = with lib; { + meta = { description = "Summarize system info from sosreports"; mainProgram = "xsos"; homepage = "https://github.com/ryran/xsos"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = [ maintainers.nixinator ]; + maintainers = [ lib.maintainers.nixinator ]; }; } diff --git a/pkgs/by-name/xs/xspim/package.nix b/pkgs/by-name/xs/xspim/package.nix index 52bb7bb7aa2e..5cd42efb78ed 100644 --- a/pkgs/by-name/xs/xspim/package.nix +++ b/pkgs/by-name/xs/xspim/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation { install -D ../Documentation/xspim.man $out/share/man/man1/xspim.1 ''; - meta = with lib; { + meta = { description = "MIPS32 simulator"; homepage = "https://spimsimulator.sourceforge.net/"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.linux; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xs/xss-lock/package.nix b/pkgs/by-name/xs/xss-lock/package.nix index bcbcfd76921a..972199367a33 100644 --- a/pkgs/by-name/xs/xss-lock/package.nix +++ b/pkgs/by-name/xs/xss-lock/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation { passthru.tests = { inherit (nixosTests) xss-lock; }; - meta = with lib; { + meta = { description = "Use external locker (such as i3lock) as X screen saver"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "xss-lock"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ malyn offline ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xs/xssstate/package.nix b/pkgs/by-name/xs/xssstate/package.nix index ab51ee2544d6..779e1786ee6b 100644 --- a/pkgs/by-name/xs/xssstate/package.nix +++ b/pkgs/by-name/xs/xssstate/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation (finalAttrs: { "VERSION=${finalAttrs.version}" ]; - meta = with lib; { + meta = { description = "Simple tool to retrieve the X screensaver state"; - license = licenses.mit; - maintainers = with maintainers; [ onemoresuza ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onemoresuza ]; + platforms = lib.platforms.linux; mainProgram = "xssstate"; }; }) diff --git a/pkgs/by-name/xs/xstow/package.nix b/pkgs/by-name/xs/xstow/package.nix index 7102bf70bb82..c1fb3341551c 100644 --- a/pkgs/by-name/xs/xstow/package.nix +++ b/pkgs/by-name/xs/xstow/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { description = "Replacement of GNU Stow written in C++"; homepage = "https://github.com/majorkingleo/xstow"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ nzbr ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ nzbr ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xs/xsuspender/package.nix b/pkgs/by-name/xs/xsuspender/package.nix index 3084617a5522..70ad20efe2a0 100644 --- a/pkgs/by-name/xs/xsuspender/package.nix +++ b/pkgs/by-name/xs/xsuspender/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { --prefix PATH : "${lib.makeBinPath [ procps ]}" ''; - meta = with lib; { + meta = { description = "Auto-suspend inactive X11 applications"; mainProgram = "xsuspender"; homepage = "https://kernc.github.io/xsuspender/"; - license = licenses.wtfpl; - maintainers = with maintainers; [ offline ]; - platforms = platforms.linux; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xs/xsynth_dssi/package.nix b/pkgs/by-name/xs/xsynth_dssi/package.nix index ac0bb27bad05..09ee1880fcb9 100644 --- a/pkgs/by-name/xs/xsynth_dssi/package.nix +++ b/pkgs/by-name/xs/xsynth_dssi/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { cp src/.libs/* $out/lib ''; - meta = with lib; { + meta = { description = "Classic-analog (VCOs-VCF-VCA) style software synthesizer"; mainProgram = "Xsynth_gtk"; longDescription = '' @@ -56,8 +56,8 @@ stdenv.mkDerivation rec { in-process by audio applications. ''; homepage = "https://dssi.sourceforge.net/download.html#Xsynth-DSSI"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xt/xteddy/package.nix b/pkgs/by-name/xt/xteddy/package.nix index d55816168791..af2a1f67eaf5 100644 --- a/pkgs/by-name/xt/xteddy/package.nix +++ b/pkgs/by-name/xt/xteddy/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/xteddy --chdir "$out/share/images/" ''; - meta = with lib; { + meta = { description = "Cuddly teddy bear for your X desktop"; homepage = "https://weber.itn.liu.se/~stegu/xteddy/"; - license = licenses.gpl2; - maintainers = [ maintainers.xaverdh ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.xaverdh ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xt/xteve/package.nix b/pkgs/by-name/xt/xteve/package.nix index 9281d3e3f4ad..7235b1e3e6df 100644 --- a/pkgs/by-name/xt/xteve/package.nix +++ b/pkgs/by-name/xt/xteve/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-oPkSWpqNozfSFLIFsJ+e2pOL6CcR91YHbqibEVF2aSk="; - meta = with lib; { + meta = { description = "M3U Proxy for Plex DVR and Emby Live TV"; homepage = "https://github.com/xteve-project/xTeVe"; - license = licenses.mit; - maintainers = with maintainers; [ nrhelmi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nrhelmi ]; mainProgram = "xteve"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/xt/xtitle/package.nix b/pkgs/by-name/xt/xtitle/package.nix index de25b9ab7b2a..964ec14490ff 100644 --- a/pkgs/by-name/xt/xtitle/package.nix +++ b/pkgs/by-name/xt/xtitle/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { xcbutilwm ]; - meta = with lib; { + meta = { description = "Outputs X window titles"; homepage = "https://github.com/baskerville/xtitle"; - maintainers = with maintainers; [ meisternu ]; + maintainers = with lib.maintainers; [ meisternu ]; license = lib.licenses.unlicense; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xtitle"; }; } diff --git a/pkgs/by-name/xt/xtrace/package.nix b/pkgs/by-name/xt/xtrace/package.nix index 9a3cb3311ebf..662ae159293b 100644 --- a/pkgs/by-name/xt/xtrace/package.nix +++ b/pkgs/by-name/xt/xtrace/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { --prefix PATH ':' "${xauth}/bin" ''; - meta = with lib; { + meta = { homepage = "https://salsa.debian.org/debian/xtrace"; description = "Tool to trace X11 protocol connections"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; mainProgram = "xtrace"; }; } diff --git a/pkgs/by-name/xt/xtris/package.nix b/pkgs/by-name/xt/xtris/package.nix index db5b1b34b431..6b8611a8cebe 100644 --- a/pkgs/by-name/xt/xtris/package.nix +++ b/pkgs/by-name/xt/xtris/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = with lib; { + meta = { description = "Multi-player version of the classical game of Tetris, for the X Window system"; homepage = "https://web.archive.org/web/20120315061213/http://www.iagora.com/~espel/xtris/xtris.html"; - license = licenses.gpl2Only; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xt/xtruss/package.nix b/pkgs/by-name/xt/xtruss/package.nix index 7b0a47591840..2545b275bf13 100644 --- a/pkgs/by-name/xt/xtruss/package.nix +++ b/pkgs/by-name/xt/xtruss/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { halibut ]; - meta = with lib; { + meta = { description = "Easy-to-use X protocol tracing program"; homepage = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss"; - license = licenses.mit; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "xtruss"; }; } diff --git a/pkgs/by-name/xt/xtuner/package.nix b/pkgs/by-name/xt/xtuner/package.nix index 617b2fbc0d45..74d3b3102dc7 100644 --- a/pkgs/by-name/xt/xtuner/package.nix +++ b/pkgs/by-name/xt/xtuner/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/brummer10/XTuner"; description = "Tuner for Jack Audio Connection Kit"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "xtuner"; }; } diff --git a/pkgs/by-name/xv/xvidcore/package.nix b/pkgs/by-name/xv/xvidcore/package.nix index 6d73196e83ab..77f54e745e32 100644 --- a/pkgs/by-name/xv/xvidcore/package.nix +++ b/pkgs/by-name/xv/xvidcore/package.nix @@ -60,14 +60,14 @@ stdenv.mkDerivation rec { ln -s $out/bin/*.dll $out/lib ''; - meta = with lib; { + meta = { description = "MPEG-4 video codec for PC"; homepage = "https://www.xvid.com/"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ codyopel lovek323 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xv/xviewer/package.nix b/pkgs/by-name/xv/xviewer/package.nix index 347bfa33d3b7..9c022a8eb36f 100644 --- a/pkgs/by-name/xv/xviewer/package.nix +++ b/pkgs/by-name/xv/xviewer/package.nix @@ -84,13 +84,13 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Generic image viewer from Linux Mint"; mainProgram = "xviewer"; homepage = "https://github.com/linuxmint/xviewer"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ tu-maurice ]; - teams = [ teams.cinnamon ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tu-maurice ]; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/by-name/xv/xvkbd/package.nix b/pkgs/by-name/xv/xvkbd/package.nix index e4b511d8a01c..40ca170fb90d 100644 --- a/pkgs/by-name/xv/xvkbd/package.nix +++ b/pkgs/by-name/xv/xvkbd/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { mkdir -p $out/share/X11 ''; - meta = with lib; { + meta = { description = "Virtual keyboard for X window system"; longDescription = '' xvkbd is a virtual (graphical) keyboard program for X Window System which provides @@ -50,9 +50,9 @@ stdenv.mkDerivation rec { keyboard displayed on the screen. ''; homepage = "http://t-sato.in.coocan.jp/xvkbd"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.bennofs ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.bennofs ]; + platforms = lib.platforms.linux; mainProgram = "xvkbd"; }; } diff --git a/pkgs/by-name/xw/xwallpaper/package.nix b/pkgs/by-name/xw/xwallpaper/package.nix index f59e1d1b3e6e..1e2a9af5ab01 100644 --- a/pkgs/by-name/xw/xwallpaper/package.nix +++ b/pkgs/by-name/xw/xwallpaper/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { installShellCompletion --zsh _xwallpaper ''; - meta = with lib; { + meta = { homepage = "https://github.com/stoeckmann/xwallpaper"; description = "Utility for setting wallpapers in X"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xwallpaper"; }; } diff --git a/pkgs/by-name/xw/xwinwrap/package.nix b/pkgs/by-name/xw/xwinwrap/package.nix index 85c3b315f59c..5ba8a90abd50 100644 --- a/pkgs/by-name/xw/xwinwrap/package.nix +++ b/pkgs/by-name/xw/xwinwrap/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { mv */xwinwrap $out/bin ''; - meta = with lib; { + meta = { description = "Utility that allows you to use an animated X window as the wallpaper"; longDescription = '' XWinWrap is a small utility written a loooong time ago that allowed you to @@ -57,10 +57,10 @@ stdenv.mkDerivation rec { weekend by fixing the above problems and also add a few features. And here it is, in its new avatar “Shantz XWinWrap”. ''; - license = licenses.hpnd; + license = lib.licenses.hpnd; homepage = "https://shantanugoel.com/2008/09/03/shantz-xwinwrap/"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xwinwrap"; }; } diff --git a/pkgs/by-name/xx/xxHash/package.nix b/pkgs/by-name/xx/xxHash/package.nix index 887b2b39dd5b..e18b5e714049 100644 --- a/pkgs/by-name/xx/xxHash/package.nix +++ b/pkgs/by-name/xx/xxHash/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { # Using unofficial CMake build script to install CMake module files. cmakeDir = "../cmake_unofficial"; - meta = with lib; { + meta = { description = "Extremely fast hash algorithm"; longDescription = '' xxHash is an Extremely fast Hash algorithm, running at RAM speed limits. @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { endian). ''; homepage = "https://github.com/Cyan4973/xxHash"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 gpl2 ]; mainProgram = "xxhsum"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; pkgConfigModules = [ "libxxhash" ]; diff --git a/pkgs/by-name/xx/xxe-pe/package.nix b/pkgs/by-name/xx/xxe-pe/package.nix index 2912a0654d74..cbcaaa5dfbfe 100644 --- a/pkgs/by-name/xx/xxe-pe/package.nix +++ b/pkgs/by-name/xx/xxe-pe/package.nix @@ -77,10 +77,10 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ openjdk11 ]} ''; - meta = with lib; { + meta = { description = "Strictly validating, near WYSIWYG, XML editor with DocBook support"; homepage = "https://www.xmlmind.com/xmleditor/"; - license = licenses.unfree; + license = lib.licenses.unfree; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/xx/xxgdb/package.nix b/pkgs/by-name/xx/xxgdb/package.nix index 1942e11a88e2..eac86bab9a54 100644 --- a/pkgs/by-name/xx/xxgdb/package.nix +++ b/pkgs/by-name/xx/xxgdb/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation (finalAttrs: { install -D xxgdb.1 $out/share/man/man1/xxgdb.1 ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Simple but powerful graphical interface to gdb"; mainProgram = "xxgdb"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/xx/xxh/package.nix b/pkgs/by-name/xx/xxh/package.nix index ff85fc04f267..e9a9b4da45c1 100644 --- a/pkgs/by-name/xx/xxh/package.nix +++ b/pkgs/by-name/xx/xxh/package.nix @@ -32,10 +32,10 @@ python3.pkgs.buildPythonApplication rec { inherit (nixosTests) xxh; }; - meta = with lib; { + meta = { description = "Bring your favorite shell wherever you go through SSH"; homepage = "https://github.com/xxh/xxh"; - license = licenses.bsd2; - maintainers = with maintainers; [ pasqui23 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ pasqui23 ]; }; } diff --git a/pkgs/by-name/xx/xxkb/package.nix b/pkgs/by-name/xx/xxkb/package.nix index 0160410cdebc..7ac2529e5886 100644 --- a/pkgs/by-name/xx/xxkb/package.nix +++ b/pkgs/by-name/xx/xxkb/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = with lib; { + meta = { description = "Keyboard layout indicator and switcher"; homepage = "http://xxkb.sourceforge.net/"; - license = licenses.artistic2; + license = lib.licenses.artistic2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xxkb"; }; } diff --git a/pkgs/by-name/xy/xyce/package.nix b/pkgs/by-name/xy/xyce/package.nix index b8eba42a7ccf..811089e03034 100644 --- a/pkgs/by-name/xy/xyce/package.nix +++ b/pkgs/by-name/xy/xyce/package.nix @@ -185,7 +185,7 @@ stdenv.mkDerivation rec { popd ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; description = "High-performance analog circuit simulator"; @@ -195,8 +195,8 @@ stdenv.mkDerivation rec { large-scale parallel computing platforms. ''; homepage = "https://xyce.sandia.gov"; - license = licenses.gpl3; - maintainers = with maintainers; [ fbeffa ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ fbeffa ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/xy/xylib/package.nix b/pkgs/by-name/xy/xylib/package.nix index 7c6778021397..1800b0dc14c7 100644 --- a/pkgs/by-name/xy/xylib/package.nix +++ b/pkgs/by-name/xy/xylib/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { "--with-wx-config=${lib.getExe' (lib.getDev wxGTK32) "wx-config"}" ]; - meta = with lib; { + meta = { description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; homepage = "https://xylib.sourceforge.net/"; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/xz/xzgv/package.nix b/pkgs/by-name/xz/xzgv/package.nix index 1a782f83cff2..042e5ced098b 100644 --- a/pkgs/by-name/xz/xzgv/package.nix +++ b/pkgs/by-name/xz/xzgv/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { preInstall = '' mkdir -p $out/share/{app-install/desktop,applications,info,pixmaps} ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/xzgv/"; description = "Picture viewer for X with a thumbnail-based selector"; - license = licenses.gpl2; - maintainers = [ maintainers.womfoo ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.womfoo ]; + platforms = lib.platforms.linux; mainProgram = "xzgv"; }; } diff --git a/pkgs/by-name/ya/yad/package.nix b/pkgs/by-name/ya/yad/package.nix index 18ba4405374c..241be40dfe43 100644 --- a/pkgs/by-name/ya/yad/package.nix +++ b/pkgs/by-name/ya/yad/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { intltoolize ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/yad-dialog/"; description = "GUI dialog tool for shell scripts"; longDescription = '' @@ -64,9 +64,9 @@ stdenv.mkDerivation rec { dialogs, pop-up menu in notification icon and more. ''; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "yad"; - maintainers = with maintainers; [ smironov ]; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ smironov ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ya/yaegi/package.nix b/pkgs/by-name/ya/yaegi/package.nix index 030b296e7a92..61e76f2738c3 100644 --- a/pkgs/by-name/ya/yaegi/package.nix +++ b/pkgs/by-name/ya/yaegi/package.nix @@ -37,12 +37,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Go interpreter"; mainProgram = "yaegi"; homepage = "https://github.com/traefik/yaegi"; changelog = "https://github.com/traefik/yaegi/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; # The last successful Darwin Hydra build was in 2023 broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/ya/yai/package.nix b/pkgs/by-name/ya/yai/package.nix index 68934039ec64..99f99848ad62 100644 --- a/pkgs/by-name/ya/yai/package.nix +++ b/pkgs/by-name/ya/yai/package.nix @@ -26,15 +26,15 @@ buildGoModule rec { export USER=test ''; - meta = with lib; { + meta = { homepage = "https://github.com/ekkinox/yai"; description = "Your AI powered terminal assistant"; longDescription = '' Yai (your AI) is an assistant for your terminal, using OpenAI ChatGPT to build and run commands for you. You just need to describe them in your everyday language, it will take care or the rest. ''; - license = licenses.mit; - maintainers = with maintainers; [ georgesalkhouri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ georgesalkhouri ]; mainProgram = "yai"; }; } diff --git a/pkgs/by-name/ya/yallback/package.nix b/pkgs/by-name/ya/yallback/package.nix index b1b221fce7ec..0cbb013a49c6 100644 --- a/pkgs/by-name/ya/yallback/package.nix +++ b/pkgs/by-name/ya/yallback/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/yallback --prefix PATH : ${lib.makeBinPath [ coreutils ]} ''; - meta = with lib; { + meta = { description = "Callbacks for YARA rule matches"; mainProgram = "yallback"; homepage = "https://github.com/abathur/yallback"; - license = licenses.mit; - maintainers = with maintainers; [ abathur ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abathur ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ya/yamdi/package.nix b/pkgs/by-name/ya/yamdi/package.nix index 7c52cc4cccf9..3bdb3563f7dd 100644 --- a/pkgs/by-name/ya/yamdi/package.nix +++ b/pkgs/by-name/ya/yamdi/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { install -D {,$out/share/man/}man1/yamdi.1 ''; - meta = with lib; { + meta = { description = "Yet Another MetaData Injector for FLV"; homepage = "https://yamdi.sourceforge.net/"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = [ maintainers.ryanartecona ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.ryanartecona ]; mainProgram = "yamdi"; }; } diff --git a/pkgs/by-name/ya/yaml-cpp/package.nix b/pkgs/by-name/ya/yaml-cpp/package.nix index f5940d39333d..48a2605277ff 100644 --- a/pkgs/by-name/ya/yaml-cpp/package.nix +++ b/pkgs/by-name/ya/yaml-cpp/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "YAML parser and emitter for C++"; homepage = "https://github.com/jbeder/yaml-cpp"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ OPNA2608 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ OPNA2608 ]; }; } diff --git a/pkgs/by-name/ya/yaml-merge/package.nix b/pkgs/by-name/ya/yaml-merge/package.nix index 9174ff9bf567..2023c3d16d65 100644 --- a/pkgs/by-name/ya/yaml-merge/package.nix +++ b/pkgs/by-name/ya/yaml-merge/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Merge YAML data files"; mainProgram = "yaml-merge"; homepage = "https://github.com/abbradar/yaml-merge"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ya/yams/package.nix b/pkgs/by-name/ya/yams/package.nix index 732bbc4e81d3..c5b84b0bb80a 100644 --- a/pkgs/by-name/ya/yams/package.nix +++ b/pkgs/by-name/ya/yams/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonPackage rec { pythonImportsCheck = [ "yams.scrobble" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Berulacks/yams"; description = "Last.FM scrobbler for MPD"; mainProgram = "yams"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ccellado ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ccellado ]; }; } diff --git a/pkgs/by-name/ya/yanic/package.nix b/pkgs/by-name/ya/yanic/package.nix index 355b3dd56fe4..bad24893a22f 100644 --- a/pkgs/by-name/ya/yanic/package.nix +++ b/pkgs/by-name/ya/yanic/package.nix @@ -34,12 +34,12 @@ buildGoModule rec { --zsh <($out/bin/yanic completion zsh) ''; - meta = with lib; { + meta = { description = "Tool to collect and aggregate respondd data"; homepage = "https://github.com/FreifunkBremen/yanic"; changelog = "https://github.com/FreifunkBremen/yanic/releases/tag/${src.rev}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ herbetom ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ herbetom ]; mainProgram = "yanic"; }; } diff --git a/pkgs/by-name/ya/yank/package.nix b/pkgs/by-name/ya/yank/package.nix index 8cdc1dc8aeb7..4bbe34188100 100644 --- a/pkgs/by-name/ya/yank/package.nix +++ b/pkgs/by-name/ya/yank/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; makeFlags = [ "YANKCMD=${xsel}/bin/xsel" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mptre/yank"; description = "Yank terminal output to clipboard"; longDescription = '' @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { always treated as delimiters. ''; downloadPage = "https://github.com/mptre/yank/releases"; - license = licenses.mit; - maintainers = [ maintainers.dochang ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.dochang ]; + platforms = lib.platforms.unix; mainProgram = "yank"; }; diff --git a/pkgs/by-name/ya/yarGen/package.nix b/pkgs/by-name/ya/yarGen/package.nix index 0c3bb3b5eeff..4ba0c04118a5 100644 --- a/pkgs/by-name/ya/yarGen/package.nix +++ b/pkgs/by-name/ya/yarGen/package.nix @@ -50,11 +50,11 @@ python3.pkgs.buildPythonApplication rec { lxml ]; - meta = with lib; { + meta = { description = "Generator for YARA rules"; mainProgram = "yarGen.py"; homepage = "https://github.com/Neo23x0/yarGen"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ya/yarg/package.nix b/pkgs/by-name/ya/yarg/package.nix index 8e2ec9209a4c..60e44afc72e9 100644 --- a/pkgs/by-name/ya/yarg/package.nix +++ b/pkgs/by-name/ya/yarg/package.nix @@ -116,12 +116,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Free, open-source, plastic guitar game"; homepage = "https://yarg.in"; changelog = "https://github.com/YARC-Official/YARG/releases/tag/v${finalAttrs.version}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ kira-bruneau ]; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; diff --git a/pkgs/by-name/ya/yarn-bash-completion/package.nix b/pkgs/by-name/ya/yarn-bash-completion/package.nix index 748db1f186f0..cc156303c0a3 100644 --- a/pkgs/by-name/ya/yarn-bash-completion/package.nix +++ b/pkgs/by-name/ya/yarn-bash-completion/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/dsifford/yarn-completion/"; description = "Bash completion for Yarn"; - license = licenses.mit; - maintainers = with maintainers; [ DamienCassou ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DamienCassou ]; }; } diff --git a/pkgs/by-name/ya/yarn-berry/package.nix b/pkgs/by-name/ya/yarn-berry/package.nix index e5a490f770c6..34733dffcc7b 100644 --- a/pkgs/by-name/ya/yarn-berry/package.nix +++ b/pkgs/by-name/ya/yarn-berry/package.nix @@ -63,17 +63,17 @@ stdenv.mkDerivation (finalAttrs: { } // (callPackage ./fetcher { yarn-berry = finalAttrs; }); - meta = with lib; { + meta = { homepage = "https://yarnpkg.com/"; changelog = "https://github.com/yarnpkg/berry/releases/tag/${finalAttrs.src.tag}"; description = "Fast, reliable, and secure dependency management"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ryota-ka pyrox0 DimitarNestorov ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "yarn"; }; }) diff --git a/pkgs/by-name/ya/yarn/package.nix b/pkgs/by-name/ya/yarn/package.nix index 417af7120d42..7cc9fce699dc 100644 --- a/pkgs/by-name/ya/yarn/package.nix +++ b/pkgs/by-name/ya/yarn/package.nix @@ -49,16 +49,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Fast, reliable, and secure dependency management for javascript"; homepage = "https://classic.yarnpkg.com/"; changelog = "https://github.com/yarnpkg/yarn/blob/v${finalAttrs.version}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ offline screendriver ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "yarn"; }; }) diff --git a/pkgs/by-name/ya/yaru-remix-theme/package.nix b/pkgs/by-name/ya/yaru-remix-theme/package.nix index 532c15f79864..c72095b6820f 100644 --- a/pkgs/by-name/ya/yaru-remix-theme/package.nix +++ b/pkgs/by-name/ya/yaru-remix-theme/package.nix @@ -41,16 +41,16 @@ stdenv.mkDerivation rec { postPatch = "patchShebangs ."; - meta = with lib; { + meta = { description = "Fork of the Yaru GTK theme"; homepage = "https://github.com/Muqtxdir/yaru-remix"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 gpl3Plus lgpl21Only lgpl3Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ hoppla20 ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hoppla20 ]; }; } diff --git a/pkgs/by-name/ya/yaru-theme/package.nix b/pkgs/by-name/ya/yaru-theme/package.nix index 89f29151af47..95f6bcf70737 100644 --- a/pkgs/by-name/ya/yaru-theme/package.nix +++ b/pkgs/by-name/ya/yaru-theme/package.nix @@ -48,16 +48,16 @@ stdenv.mkDerivation rec { postPatch = "patchShebangs ."; - meta = with lib; { + meta = { description = "Ubuntu community theme 'yaru' - default Ubuntu theme since 18.10"; homepage = "https://github.com/ubuntu/yaru"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 gpl3Plus lgpl21Only lgpl3Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ moni ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/ya/yas/package.nix b/pkgs/by-name/ya/yas/package.nix index e394d342a502..8caa147011dc 100644 --- a/pkgs/by-name/ya/yas/package.nix +++ b/pkgs/by-name/ya/yas/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/niXman/yas"; description = "Yet Another Serialization"; - license = licenses.boost; + license = lib.licenses.boost; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ya/yasashisa-gothic/package.nix b/pkgs/by-name/ya/yasashisa-gothic/package.nix index 84771fd9d315..81e3a2ea99e9 100644 --- a/pkgs/by-name/ya/yasashisa-gothic/package.nix +++ b/pkgs/by-name/ya/yasashisa-gothic/package.nix @@ -31,14 +31,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free gothic style font by Fontna"; homepage = "http://www.fontna.com/blog/379/"; - license = with licenses; [ + license = with lib.licenses; [ ipa mplus ]; - platforms = platforms.all; - maintainers = with maintainers; [ h7x4 ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ h7x4 ]; }; } diff --git a/pkgs/by-name/ya/yash/package.nix b/pkgs/by-name/ya/yash/package.nix index e6bbca04b2db..43e46a03ed68 100644 --- a/pkgs/by-name/ya/yash/package.nix +++ b/pkgs/by-name/ya/yash/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { ]; buildInputs = [ ncurses ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ gettext ]; - meta = with lib; { + meta = { homepage = "https://yash.osdn.jp/index.html.en"; description = "Yet another POSIX-compliant shell"; mainProgram = "yash"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qbit ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qbit ]; + platforms = lib.platforms.all; }; passthru.shellPath = "/bin/yash"; diff --git a/pkgs/by-name/ya/yasm/package.nix b/pkgs/by-name/ya/yasm/package.nix index f92ff98bfb3f..b668eb70c4ad 100644 --- a/pkgs/by-name/ya/yasm/package.nix +++ b/pkgs/by-name/ya/yasm/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation rec { depsBuildBuild = [ buildPackages.stdenv.cc ]; - meta = with lib; { + meta = { homepage = "http://www.tortall.net/projects/yasm/"; description = "Complete rewrite of the NASM assembler"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ya/yaup/package.nix b/pkgs/by-name/ya/yaup/package.nix index d0c287320a26..4657ce380840 100644 --- a/pkgs/by-name/ya/yaup/package.nix +++ b/pkgs/by-name/ya/yaup/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { miniupnpc ]; - meta = with lib; { + meta = { homepage = "https://github.com/Holarse-Linuxgaming/yaup"; description = "Yet Another UPnP Portmapper"; longDescription = '' @@ -55,9 +55,9 @@ stdenv.mkDerivation { Portforward your incoming traffic to a specified local ip. Mostly used for IPv4. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = "yaup"; }; } diff --git a/pkgs/by-name/ya/yaws/package.nix b/pkgs/by-name/ya/yaws/package.nix index 3be0ebbbeb1a..2d50d2498a30 100644 --- a/pkgs/by-name/ya/yaws/package.nix +++ b/pkgs/by-name/ya/yaws/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { sed -i "s#which #type -P #" $out/bin/yaws ''; - meta = with lib; { + meta = { description = "Webserver for dynamic content written in Erlang"; mainProgram = "yaws"; homepage = "https://github.com/erlyaws/yaws"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; maintainers = [ ]; }; diff --git a/pkgs/by-name/ya/yaxg/package.nix b/pkgs/by-name/ya/yaxg/package.nix index 3fcd3762f7a9..01ff3cd35bd8 100644 --- a/pkgs/by-name/ya/yaxg/package.nix +++ b/pkgs/by-name/ya/yaxg/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Yet Another X Grabber script"; longDescription = '' @@ -57,8 +57,8 @@ stdenv.mkDerivation rec { of your screen. Similar command-line interface to scrot but is overall more flexible and less buggy. ''; - platforms = platforms.all; - license = licenses.gpl3Plus; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; mainProgram = "yaxg"; }; } diff --git a/pkgs/by-name/ya/yaydl/package.nix b/pkgs/by-name/ya/yaydl/package.nix index 06e0bb65ab4e..b7007c99559b 100644 --- a/pkgs/by-name/ya/yaydl/package.nix +++ b/pkgs/by-name/ya/yaydl/package.nix @@ -33,10 +33,10 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} ''; - meta = with lib; { + meta = { homepage = "https://code.rosaelefanten.org/yaydl"; description = "Yet another youtube down loader"; - license = licenses.cddl; + license = lib.licenses.cddl; maintainers = [ ]; mainProgram = "yaydl"; }; diff --git a/pkgs/by-name/yc/ycmd/package.nix b/pkgs/by-name/yc/ycmd/package.nix index 541d64130a51..cb6413ab6349 100644 --- a/pkgs/by-name/yc/ycmd/package.nix +++ b/pkgs/by-name/yc/ycmd/package.nix @@ -120,7 +120,7 @@ stdenv.mkDerivation { --replace __file__ "'$out/lib/ycmd/ycmd/__main__.py'" ''; - meta = with lib; { + meta = { description = "Code-completion and comprehension server"; longDescription = '' Note if YouCompleteMe Vim plugin complains with; @@ -133,12 +133,12 @@ stdenv.mkDerivation { ''; mainProgram = "ycmd"; homepage = "https://github.com/ycm-core/ycmd"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ lnl7 mel S0AndS0 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/yd/yder/package.nix b/pkgs/by-name/yd/yder/package.nix index 4edadd07fbac..e3b2ad6a16eb 100644 --- a/pkgs/by-name/yd/yder/package.nix +++ b/pkgs/by-name/yd/yder/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Logging library for C applications"; homepage = "https://github.com/babelouest/yder"; - license = licenses.lgpl21; - maintainers = with maintainers; [ johnazoidberg ]; - platforms = platforms.all; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ johnazoidberg ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/yd/ydict/package.nix b/pkgs/by-name/yd/ydict/package.nix index 9ceb25b0d99b..b3763cfe6f49 100644 --- a/pkgs/by-name/yd/ydict/package.nix +++ b/pkgs/by-name/yd/ydict/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Yet another command-line Youdao Chinese dictionary"; mainProgram = "ydict"; homepage = "https://github.com/TimothyYe/ydict"; - license = licenses.mit; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/ye/yeetgif/package.nix b/pkgs/by-name/ye/yeetgif/package.nix index d2efce09a290..6825ebe6bc79 100644 --- a/pkgs/by-name/ye/yeetgif/package.nix +++ b/pkgs/by-name/ye/yeetgif/package.nix @@ -32,15 +32,15 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "GIF effects CLI"; homepage = "https://github.com/sgreben/yeetgif"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 cc-by-nc-sa-40 ]; - maintainers = with maintainers; [ ajs124 ]; + maintainers = with lib.maintainers; [ ajs124 ]; mainProgram = "gif"; }; } diff --git a/pkgs/by-name/ye/yelp-tools/package.nix b/pkgs/by-name/ye/yelp-tools/package.nix index 627bce60f3db..6d98108f319a 100644 --- a/pkgs/by-name/ye/yelp-tools/package.nix +++ b/pkgs/by-name/ye/yelp-tools/package.nix @@ -53,12 +53,12 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/yelp-tools"; description = "Small programs that help you create, edit, manage, and publish your Mallard or DocBook documentation"; maintainers = [ ]; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ye/yelp-xsl/package.nix b/pkgs/by-name/ye/yelp-xsl/package.nix index a908a60c0449..ed29bbbd7beb 100644 --- a/pkgs/by-name/ye/yelp-xsl/package.nix +++ b/pkgs/by-name/ye/yelp-xsl/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/yelp-xsl"; description = "Yelp's universal stylesheets for Mallard and DocBook"; - teams = [ teams.gnome ]; - license = with licenses; [ + teams = [ lib.teams.gnome ]; + license = with lib.licenses; [ # See https://gitlab.gnome.org/GNOME/yelp-xsl/blob/master/COPYING # Stylesheets lgpl2Plus @@ -55,6 +55,6 @@ stdenv.mkDerivation (finalAttrs: { # highlight.js bsd3 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ye/yersinia/package.nix b/pkgs/by-name/ye/yersinia/package.nix index f808289008c9..e1b59886363f 100644 --- a/pkgs/by-name/ye/yersinia/package.nix +++ b/pkgs/by-name/ye/yersinia/package.nix @@ -47,15 +47,15 @@ stdenv.mkDerivation { makeFlags = [ "LDFLAGS=-lncurses" ]; - meta = with lib; { + meta = { description = "Framework for layer 2 attacks"; mainProgram = "yersinia"; homepage = "https://github.com/tomac/yersinia"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ vdot0x23 ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ vdot0x23 ]; # INSTALL and FAQ in this package seem a little outdated # so not sure, but it could work on openbsd, illumos, and freebsd # if you have a machine to test with, feel free to add these - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ye/yeshup/package.nix b/pkgs/by-name/ye/yeshup/package.nix index 19c0d6dcaa98..6b3fbdef9afe 100644 --- a/pkgs/by-name/ye/yeshup/package.nix +++ b/pkgs/by-name/ye/yeshup/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { cp -v yeshup $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/RhysU/yeshup"; - platforms = platforms.linux; - license = licenses.cc-by-sa-30; # From Stackoverflow answer - maintainers = with maintainers; [ obadz ]; + platforms = lib.platforms.linux; + license = lib.licenses.cc-by-sa-30; # From Stackoverflow answer + maintainers = with lib.maintainers; [ obadz ]; mainProgram = "yeshup"; }; } diff --git a/pkgs/by-name/ye/yewtube/package.nix b/pkgs/by-name/ye/yewtube/package.nix index 718b54237633..56f5dc5a0d57 100644 --- a/pkgs/by-name/ye/yewtube/package.nix +++ b/pkgs/by-name/ye/yewtube/package.nix @@ -43,12 +43,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "mps_youtube" ]; - meta = with lib; { + meta = { description = "Terminal based YouTube player and downloader, forked from mps-youtube"; mainProgram = "yt"; homepage = "https://github.com/mps-youtube/yewtube"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz koral ]; diff --git a/pkgs/by-name/ye/yex-lang/package.nix b/pkgs/by-name/ye/yex-lang/package.nix index ed70d49f52e9..3e22f6a03418 100644 --- a/pkgs/by-name/ye/yex-lang/package.nix +++ b/pkgs/by-name/ye/yex-lang/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-Kz/7BFBmTK8h6nO+jrSYh2p0GMlT1E0icmLXC+mJVmg="; - meta = with lib; { + meta = { homepage = "https://github.com/nonamescm/yex-lang"; description = "Functional scripting language written in rust"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "yex"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/yg/yggdrasil-jumper/package.nix b/pkgs/by-name/yg/yggdrasil-jumper/package.nix index 7c0620a1032f..5d9cf139162e 100644 --- a/pkgs/by-name/yg/yggdrasil-jumper/package.nix +++ b/pkgs/by-name/yg/yggdrasil-jumper/package.nix @@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Reduce latency of a connection over Yggdrasil Network"; longDescription = '' An independent project that aims to transparently reduce latency @@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec { configuration or port mapping. ''; homepage = "https://github.com/one-d-wide/yggdrasil-jumper"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ one-d-wide ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ one-d-wide ]; }; } diff --git a/pkgs/by-name/yg/yggdrasil/package.nix b/pkgs/by-name/yg/yggdrasil/package.nix index 0c67cad0637a..e0fd47e12134 100644 --- a/pkgs/by-name/yg/yggdrasil/package.nix +++ b/pkgs/by-name/yg/yggdrasil/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { passthru.tests.basic = nixosTests.yggdrasil; - meta = with lib; { + meta = { description = "Experiment in scalable routing as an encrypted IPv6 overlay network"; homepage = "https://yggdrasil-network.github.io/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ gazally lassulus peigongdsd diff --git a/pkgs/by-name/yg/yggstack/package.nix b/pkgs/by-name/yg/yggstack/package.nix index dba3777c1519..5a1def0322ea 100644 --- a/pkgs/by-name/yg/yggstack/package.nix +++ b/pkgs/by-name/yg/yggstack/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Yggdrasil as SOCKS proxy / port forwarder"; homepage = "https://yggdrasil-network.github.io/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ peigongdsd ]; }; diff --git a/pkgs/by-name/yj/yj/package.nix b/pkgs/by-name/yj/yj/package.nix index bb6f8372c312..6698e822ce72 100644 --- a/pkgs/by-name/yj/yj/package.nix +++ b/pkgs/by-name/yj/yj/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Convert YAML <=> TOML <=> JSON <=> HCL"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "yj"; - maintainers = with maintainers; [ Profpatsch ]; + maintainers = with lib.maintainers; [ Profpatsch ]; homepage = "https://github.com/sclevine/yj"; }; } diff --git a/pkgs/by-name/ym/ympd/package.nix b/pkgs/by-name/ym/ympd/package.nix index 771daa96d27d..ed6775923ef6 100644 --- a/pkgs/by-name/ym/ympd/package.nix +++ b/pkgs/by-name/ym/ympd/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { homepage = "https://github.com/notandy/ympd"; description = "Standalone MPD Web GUI written in C, utilizing Websockets and Bootstrap/JS"; - maintainers = [ maintainers.siddharthist ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = [ lib.maintainers.siddharthist ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; mainProgram = "ympd"; }; } diff --git a/pkgs/by-name/ym/ymuse/package.nix b/pkgs/by-name/ym/ymuse/package.nix index 1795f9f42791..79d2aa9645e4 100644 --- a/pkgs/by-name/ym/ymuse/package.nix +++ b/pkgs/by-name/ym/ymuse/package.nix @@ -64,12 +64,12 @@ buildGoModule rec { # IDK how to deal with tests that open up display. doCheck = false; - meta = with lib; { + meta = { homepage = "https://yktoo.com/en/software/ymuse/"; description = "GTK client for Music Player Daemon (MPD)"; - license = licenses.asl20; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ foo-dogsquared ]; mainProgram = "ymuse"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/yo/yojimbo/package.nix b/pkgs/by-name/yo/yojimbo/package.nix index 0f65c972c406..d2493df0cb41 100644 --- a/pkgs/by-name/yo/yojimbo/package.nix +++ b/pkgs/by-name/yo/yojimbo/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Network library for client/server games with dedicated servers"; longDescription = '' yojimbo is a network library for client/server games with dedicated servers. @@ -59,8 +59,8 @@ stdenv.mkDerivation (finalAttrs: { As such it provides a time critical networking layer on top of UDP, with a client/server architecture supporting up to 64 players per-dedicated server instance. ''; homepage = "https://github.com/mas-bandwidth/yojimbo"; - license = licenses.bsd3; - platforms = platforms.x86_64; + license = lib.licenses.bsd3; + platforms = lib.platforms.x86_64; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/yo/yoshimi/package.nix b/pkgs/by-name/yo/yoshimi/package.nix index 4f2d0a4c264c..454f52d306b8 100644 --- a/pkgs/by-name/yo/yoshimi/package.nix +++ b/pkgs/by-name/yo/yoshimi/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.cc.libc}/lib/libm.so" ]; - meta = with lib; { + meta = { description = "High quality software synthesizer based on ZynAddSubFX"; longDescription = '' Yoshimi delivers the same synthesizer capabilities as @@ -72,8 +72,8 @@ stdenv.mkDerivation rec { functionality on Linux ''; homepage = "https://yoshimi.github.io/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "yoshimi"; }; diff --git a/pkgs/by-name/yo/youplot/package.nix b/pkgs/by-name/yo/youplot/package.nix index 9abca91753f0..f2775707aa1b 100644 --- a/pkgs/by-name/yo/youplot/package.nix +++ b/pkgs/by-name/yo/youplot/package.nix @@ -12,12 +12,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "youplot"; - meta = with lib; { + meta = { description = "Command line tool that draws plots on the terminal"; homepage = "https://github.com/red-data-tools/YouPlot"; mainProgram = "uplot"; - license = licenses.mit; - maintainers = with maintainers; [ purcell ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ purcell ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/yo/yourkit-java/package.nix b/pkgs/by-name/yo/yourkit-java/package.nix index 4cb7bc2b8394..082cf804ae02 100644 --- a/pkgs/by-name/yo/yourkit-java/package.nix +++ b/pkgs/by-name/yo/yourkit-java/package.nix @@ -95,10 +95,10 @@ stdenvNoCC.mkDerivation { description = "Award winning, fully featured low overhead profiler for Java EE and Java SE platforms"; homepage = "https://www.yourkit.com"; changelog = "https://www.yourkit.com/changes/"; - license = licenses.unfree; + license = lib.licenses.unfree; mainProgram = "yourkit-java-profiler"; platforms = attrNames arches; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ herberteuler ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ herberteuler ]; }; } diff --git a/pkgs/by-name/yo/youtube-tui/package.nix b/pkgs/by-name/yo/youtube-tui/package.nix index c712e5843772..c4508c1cde15 100644 --- a/pkgs/by-name/yo/youtube-tui/package.nix +++ b/pkgs/by-name/yo/youtube-tui/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { --prefix DYLD_LIBRARY_PATH : "${lib.makeLibraryPath [ libsixel ]}" ''; - meta = with lib; { + meta = { description = "Aesthetically pleasing YouTube TUI written in Rust"; homepage = "https://siriusmart.github.io/youtube-tui"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Ruixi-rebirth ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Ruixi-rebirth ]; mainProgram = "youtube-tui"; }; } diff --git a/pkgs/by-name/ys/ysfx/package.nix b/pkgs/by-name/ys/ysfx/package.nix index b1b2c6e2714d..1762440ad6c0 100644 --- a/pkgs/by-name/ys/ysfx/package.nix +++ b/pkgs/by-name/ys/ysfx/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Hosting library for JSFX"; homepage = "https://github.com/jpcima/ysfx"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/yt/ytarchive/package.nix b/pkgs/by-name/yt/ytarchive/package.nix index 283f4258df18..7d334289336b 100644 --- a/pkgs/by-name/yt/ytarchive/package.nix +++ b/pkgs/by-name/yt/ytarchive/package.nix @@ -31,10 +31,10 @@ buildGoModule rec { wrapProgram $out/bin/ytarchive --prefix PATH : ${lib.makeBinPath [ ffmpeg-headless ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/Kethsar/ytarchive"; description = "Garbage Youtube livestream downloader"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "ytarchive"; }; diff --git a/pkgs/by-name/yt/ytcast/package.nix b/pkgs/by-name/yt/ytcast/package.nix index 9a1caccc1f22..386cd874f12f 100644 --- a/pkgs/by-name/yt/ytcast/package.nix +++ b/pkgs/by-name/yt/ytcast/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = null; ldflags = [ "-X main.progVersion=${version}" ]; - meta = with lib; { + meta = { description = "Tool to cast YouTube videos from the command-line"; homepage = "https://github.com/MarcoLucidi01/ytcast"; - license = licenses.mit; - maintainers = with maintainers; [ waelwindows ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ waelwindows ]; mainProgram = "ytcast"; }; } diff --git a/pkgs/by-name/yt/ytfzf/package.nix b/pkgs/by-name/yt/ytfzf/package.nix index 333dad2174de..28894333758f 100644 --- a/pkgs/by-name/yt/ytfzf/package.nix +++ b/pkgs/by-name/yt/ytfzf/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { --set YTFZF_SYSTEM_ADDON_DIR "$out/share/ytfzf/addons" ''; - meta = with lib; { + meta = { description = "Posix script to find and watch youtube videos from the terminal"; homepage = "https://github.com/pystardust/ytfzf"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "ytfzf"; }; } diff --git a/pkgs/by-name/yt/ytmdl/package.nix b/pkgs/by-name/yt/ytmdl/package.nix index 7869aedf1aa7..67c71f5e565f 100644 --- a/pkgs/by-name/yt/ytmdl/package.nix +++ b/pkgs/by-name/yt/ytmdl/package.nix @@ -57,11 +57,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "ytmdl" ]; - meta = with lib; { + meta = { homepage = "https://github.com/deepjyoti30/ytmdl"; description = "YouTube Music Downloader"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; mainProgram = "ytmdl"; }; } diff --git a/pkgs/by-name/yt/ytt/package.nix b/pkgs/by-name/yt/ytt/package.nix index 0db26802c0ca..506f177f7c19 100644 --- a/pkgs/by-name/yt/ytt/package.nix +++ b/pkgs/by-name/yt/ytt/package.nix @@ -47,12 +47,12 @@ buildGoModule rec { inherit version; }; - meta = with lib; { + meta = { description = "YAML templating tool that allows configuration of complex software via reusable templates with user-provided values"; mainProgram = "ytt"; homepage = "https://get-ytt.io"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ brodes techknowlogick gabyx diff --git a/pkgs/by-name/yu/yubico-pam/package.nix b/pkgs/by-name/yu/yubico-pam/package.nix index 482b27fdebe9..0ba24262bee8 100644 --- a/pkgs/by-name/yu/yubico-pam/package.nix +++ b/pkgs/by-name/yu/yubico-pam/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { libykclient ]; - meta = with lib; { + meta = { description = "Yubico PAM module"; mainProgram = "ykpamcfg"; homepage = "https://developers.yubico.com/yubico-pam"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/by-name/yu/yubihsm-connector/package.nix b/pkgs/by-name/yu/yubihsm-connector/package.nix index 990766665a71..ff3db80fb3ae 100644 --- a/pkgs/by-name/yu/yubihsm-connector/package.nix +++ b/pkgs/by-name/yu/yubihsm-connector/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { GOOS= GOARCH= go generate ''; - meta = with lib; { + meta = { description = "Performs the communication between the YubiHSM 2 and applications that use it"; homepage = "https://developers.yubico.com/yubihsm-connector/"; - maintainers = with maintainers; [ matthewcroughan ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ matthewcroughan ]; + license = lib.licenses.asl20; mainProgram = "yubihsm-connector"; }; } diff --git a/pkgs/by-name/yu/yubihsm-shell/package.nix b/pkgs/by-name/yu/yubihsm-shell/package.nix index 3261fc7c0d7b..4a4731271186 100644 --- a/pkgs/by-name/yu/yubihsm-shell/package.nix +++ b/pkgs/by-name/yu/yubihsm-shell/package.nix @@ -70,14 +70,14 @@ stdenv.mkDerivation rec { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "Thin wrapper around libyubihsm providing both an interactive and command-line interface to a YubiHSM"; homepage = "https://github.com/Yubico/yubihsm-shell"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthewcroughan numinit ]; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/yu/yubikey-agent/package.nix b/pkgs/by-name/yu/yubikey-agent/package.nix index e8b8a39e27be..2e15be7bd7d1 100644 --- a/pkgs/by-name/yu/yubikey-agent/package.nix +++ b/pkgs/by-name/yu/yubikey-agent/package.nix @@ -45,15 +45,15 @@ buildGoModule rec { --replace 'ExecStart=yubikey-agent' "ExecStart=$out/bin/yubikey-agent" ''; - meta = with lib; { + meta = { description = "Seamless ssh-agent for YubiKeys"; mainProgram = "yubikey-agent"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://filippo.io/yubikey-agent"; maintainers = with lib.maintainers; [ philandstuff rawkode ]; - platforms = platforms.darwin ++ platforms.linux; + platforms = lib.platforms.darwin ++ lib.platforms.linux; }; } diff --git a/pkgs/by-name/yu/yubikey-personalization/package.nix b/pkgs/by-name/yu/yubikey-personalization/package.nix index e7627b241c9a..e6d0018d7384 100644 --- a/pkgs/by-name/yu/yubikey-personalization/package.nix +++ b/pkgs/by-name/yu/yubikey-personalization/package.nix @@ -55,10 +55,10 @@ stdenv.mkDerivation rec { install -D -t $out/lib/udev/rules.d 69-yubikey.rules ''; - meta = with lib; { + meta = { homepage = "https://developers.yubico.com/yubikey-personalization"; description = "Library and command line tool to personalize YubiKeys"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/yu/yunfaavatar/package.nix b/pkgs/by-name/yu/yunfaavatar/package.nix index c3456673e1ef..b0b9b4f51c5e 100644 --- a/pkgs/by-name/yu/yunfaavatar/package.nix +++ b/pkgs/by-name/yu/yunfaavatar/package.nix @@ -28,12 +28,12 @@ stdenvNoCC.mkDerivation rec { --prefix PATH : "${lib.makeBinPath [ imagemagick ]}" ''; - meta = with lib; { + meta = { description = "Utility for automatic centralized changing of avatar in Github, Discord, Steam, Shikimori, and many more"; homepage = "https://github.com/yunfachi/yunfaAvatar"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ yunfachi ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ yunfachi ]; mainProgram = "yunfaavatar"; }; } diff --git a/pkgs/by-name/yu/yutto/package.nix b/pkgs/by-name/yu/yutto/package.nix index 3b774315103d..f8690bc93dc7 100644 --- a/pkgs/by-name/yu/yutto/package.nix +++ b/pkgs/by-name/yu/yutto/package.nix @@ -44,11 +44,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "yutto" ]; - meta = with lib; { + meta = { description = "Bilibili downloader"; homepage = "https://github.com/yutto-dev/yutto"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ linsui ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ linsui ]; mainProgram = "yutto"; }; } diff --git a/pkgs/by-name/yx/yx/package.nix b/pkgs/by-name/yx/yx/package.nix index ae50e55184db..f5ffa5ce1cc4 100644 --- a/pkgs/by-name/yx/yx/package.nix +++ b/pkgs/by-name/yx/yx/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { version = "v${yx.version}"; }; - meta = with lib; { + meta = { description = "YAML Data Extraction Tool"; homepage = "https://gitlab.com/tomalok/yx"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ twz123 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ twz123 ]; mainProgram = "yx"; }; } diff --git a/pkgs/by-name/z-/z-lua/package.nix b/pkgs/by-name/z-/z-lua/package.nix index c857ceaca736..b1a53c57f2ca 100644 --- a/pkgs/by-name/z-/z-lua/package.nix +++ b/pkgs/by-name/z-/z-lua/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/skywind3000/z.lua"; description = "New cd command that helps you navigate faster by learning your habits"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "z.lua"; }; diff --git a/pkgs/by-name/z8/z88dk/package.nix b/pkgs/by-name/z8/z88dk/package.nix index a8c80e8f25a3..9f987a04ce21 100644 --- a/pkgs/by-name/z8/z88dk/package.nix +++ b/pkgs/by-name/z8/z88dk/package.nix @@ -194,14 +194,14 @@ stdenv.mkDerivation (finalAttrs: { "install" ]; - meta = with lib; { + meta = { homepage = "https://www.z88dk.org"; description = "z80 Development Kit"; - license = licenses.clArtistic; - maintainers = with maintainers; [ + license = lib.licenses.clArtistic; + maintainers = with lib.maintainers; [ siraben hzeller ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/za/zabbixctl/package.nix b/pkgs/by-name/za/zabbixctl/package.nix index a5679fe68c15..12f4e74e888e 100644 --- a/pkgs/by-name/za/zabbixctl/package.nix +++ b/pkgs/by-name/za/zabbixctl/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Most effective way for operating in Zabbix Server"; homepage = "https://github.com/kovetskiy/zabbixctl"; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmahut ]; mainProgram = "zabbixctl"; }; } diff --git a/pkgs/by-name/za/zalgo/package.nix b/pkgs/by-name/za/zalgo/package.nix index aa0c1b147e0e..edcc1dd6a2ae 100644 --- a/pkgs/by-name/za/zalgo/package.nix +++ b/pkgs/by-name/za/zalgo/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation { install -Dm755 zalgo -t $out/bin ''; - meta = with lib; { + meta = { description = "Read stdin and corrupt it with combining diacritics"; homepage = "https://github.com/lunasorcery/zalgo"; - license = licenses.unfree; - platforms = platforms.unix; - maintainers = with maintainers; [ djanatyn ]; + license = lib.licenses.unfree; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ djanatyn ]; mainProgram = "zalgo"; }; } diff --git a/pkgs/by-name/za/zam-plugins/package.nix b/pkgs/by-name/za/zam-plugins/package.nix index b2e651ea4954..4a6641bb6677 100644 --- a/pkgs/by-name/za/zam-plugins/package.nix +++ b/pkgs/by-name/za/zam-plugins/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.zamaudio.com/?p=976"; description = "Collection of LV2/LADSPA/VST/JACK audio plugins by ZamAudio"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; # tries to run dpf/utils/lv2_ttl_generator (built for host) broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; }; diff --git a/pkgs/by-name/za/zapzap/package.nix b/pkgs/by-name/za/zapzap/package.nix index 5cadfa9c2cd8..fbf443a32afc 100644 --- a/pkgs/by-name/za/zapzap/package.nix +++ b/pkgs/by-name/za/zapzap/package.nix @@ -54,12 +54,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "zapzap" ]; - meta = with lib; { + meta = { description = "WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine"; homepage = "https://rtosta.com/zapzap/"; mainProgram = "zapzap"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; changelog = "https://github.com/rafatosta/zapzap/releases/tag/${src.tag}"; - maintainers = [ maintainers.eymeric ]; + maintainers = [ lib.maintainers.eymeric ]; }; } diff --git a/pkgs/by-name/za/zarchive/package.nix b/pkgs/by-name/za/zarchive/package.nix index 2efece44cadb..070157d754eb 100644 --- a/pkgs/by-name/za/zarchive/package.nix +++ b/pkgs/by-name/za/zarchive/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ zstd ]; - meta = with lib; { + meta = { description = "File archive format supporting random-access reads"; homepage = "https://github.com/Exzap/ZArchive"; - license = licenses.mit0; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.mit0; + maintainers = with lib.maintainers; [ zhaofengli ]; mainProgram = "zarchive"; }; } diff --git a/pkgs/by-name/za/zarf/package.nix b/pkgs/by-name/za/zarf/package.nix index fa01e05fce4a..cd8d17743188 100644 --- a/pkgs/by-name/za/zarf/package.nix +++ b/pkgs/by-name/za/zarf/package.nix @@ -60,12 +60,12 @@ buildGoModule rec { --zsh <($out/bin/zarf completion zsh) ''; - meta = with lib; { + meta = { description = "DevSecOps for Air Gap & Limited-Connection Systems. https://zarf.dev"; mainProgram = "zarf"; homepage = "https://zarf.dev"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ragingpastry ]; }; diff --git a/pkgs/by-name/za/zaz/package.nix b/pkgs/by-name/za/zaz/package.nix index 43047af5895f..c8eb19af1c55 100644 --- a/pkgs/by-name/za/zaz/package.nix +++ b/pkgs/by-name/za/zaz/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation (finalAttrs: { "ZAZ_LIBS+=-lvorbisfile" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Puzzle game about arranging balls in triplets, like Luxor, Zuma, or Puzzle Bobble"; homepage = "https://zaz.sourceforge.net/"; - license = licenses.gpl3; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = "zaz"; }; }) diff --git a/pkgs/by-name/zb/zbus-xmlgen/package.nix b/pkgs/by-name/zb/zbus-xmlgen/package.nix index 49f3c580fdef..af57cdaca2cf 100644 --- a/pkgs/by-name/zb/zbus-xmlgen/package.nix +++ b/pkgs/by-name/zb/zbus-xmlgen/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ rustfmt ]} ''; - meta = with lib; { + meta = { homepage = "https://crates.io/crates/zbus_xmlgen"; description = "D-Bus XML interface Rust code generator"; mainProgram = "zbus-xmlgen"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/zc/zchaff/package.nix b/pkgs/by-name/zc/zchaff/package.nix index c0ffc52641da..f10abaf98bda 100644 --- a/pkgs/by-name/zc/zchaff/package.nix +++ b/pkgs/by-name/zc/zchaff/package.nix @@ -25,12 +25,12 @@ clangStdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.princeton.edu/~chaff/zchaff.html"; description = "Accelerated SAT Solver from Princeton"; mainProgram = "zchaff"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zd/zdbsp/package.nix b/pkgs/by-name/zd/zdbsp/package.nix index f5d31d58702d..be210f400ae2 100644 --- a/pkgs/by-name/zd/zdbsp/package.nix +++ b/pkgs/by-name/zd/zdbsp/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation rec { install -Dm755 zdbsp $out/bin/zdbsp ''; - meta = with lib; { + meta = { homepage = "https://zdoom.org/wiki/ZDBSP"; description = "ZDoom's internal node builder for DOOM maps"; mainProgram = "zdbsp"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lassulus siraben ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zd/zdelta/package.nix b/pkgs/by-name/zd/zdelta/package.nix index 41f3573b5450..974c6f3ee932 100644 --- a/pkgs/by-name/zd/zdelta/package.nix +++ b/pkgs/by-name/zd/zdelta/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation { cp -p zdc zdu $out/bin ''; - meta = with lib; { + meta = { homepage = "https://web.archive.org/web/20160316212948/http://cis.poly.edu/zdelta/"; - platforms = platforms.all; - license = licenses.zlib; + platforms = lib.platforms.all; + license = lib.licenses.zlib; # last successful hydra build on darwin was in 2024 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/zd/zdoom/package.nix b/pkgs/by-name/zd/zdoom/package.nix index d34f4498c5d6..44994bececb1 100644 --- a/pkgs/by-name/zd/zdoom/package.nix +++ b/pkgs/by-name/zd/zdoom/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { ln -s $out/lib/zdoom/zdoom $out/bin/zdoom ''; - meta = with lib; { + meta = { homepage = "http://zdoom.org/"; description = "Enhanced port of the official DOOM source code"; # Doom source license, MAME license - license = licenses.unfreeRedistributable; - platforms = platforms.linux; - maintainers = with maintainers; [ lassulus ]; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lassulus ]; }; } diff --git a/pkgs/by-name/ze/zecwallet-lite/package.nix b/pkgs/by-name/ze/zecwallet-lite/package.nix index 411e52b42c34..845bf409e6f5 100644 --- a/pkgs/by-name/ze/zecwallet-lite/package.nix +++ b/pkgs/by-name/ze/zecwallet-lite/package.nix @@ -24,10 +24,10 @@ appimageTools.wrapType2 rec { cp -r ${contents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "Fully featured shielded wallet for Zcash"; homepage = "https://www.zecwallet.co/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "zecwallet-lite"; diff --git a/pkgs/by-name/ze/zeek/broker/default.nix b/pkgs/by-name/ze/zeek/broker/default.nix index c226782b5b62..13318d1577e2 100644 --- a/pkgs/by-name/ze/zeek/broker/default.nix +++ b/pkgs/by-name/ze/zeek/broker/default.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation { "-Dprometheus-cpp_ROOT=${lib.getDev prometheus-cpp}" ]; - meta = with lib; { + meta = { description = "Zeek's Messaging Library"; mainProgram = "broker-benchmark"; homepage = "https://github.com/zeek/broker"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ tobim ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tobim ]; }; } diff --git a/pkgs/by-name/ze/zeitgeist/package.nix b/pkgs/by-name/ze/zeitgeist/package.nix index 186d555761f2..56775451e6cb 100644 --- a/pkgs/by-name/ze/zeitgeist/package.nix +++ b/pkgs/by-name/ze/zeitgeist/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { moveToOutput lib/${python3.libPrefix} "$py" ''; - meta = with lib; { + meta = { description = "Service which logs the users’s activities and events"; homepage = "https://zeitgeist.freedesktop.org/"; - teams = [ teams.freedesktop ]; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + teams = [ lib.teams.freedesktop ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ze/zenith/package.nix b/pkgs/by-name/ze/zenith/package.nix index 53988913aa11..e46eb6bc9ec5 100644 --- a/pkgs/by-name/ze/zenith/package.nix +++ b/pkgs/by-name/ze/zenith/package.nix @@ -34,14 +34,14 @@ rustPlatform.buildRustPackage rec { --suffix LD_LIBRARY_PATH : "/run/opengl-driver/lib" ''; - meta = with lib; { + meta = { description = "Sort of like top or htop but with zoom-able charts, network, and disk usage" + lib.optionalString nvidiaSupport ", and NVIDIA GPU usage"; mainProgram = "zenith"; homepage = "https://github.com/bvaisvil/zenith"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; - platforms = if nvidiaSupport then platforms.linux else platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; + platforms = if nvidiaSupport then lib.platforms.linux else lib.platforms.unix; }; } diff --git a/pkgs/by-name/ze/zenity/package.nix b/pkgs/by-name/ze/zenity/package.nix index 85c9ba21641a..756ad90cd0b6 100644 --- a/pkgs/by-name/ze/zenity/package.nix +++ b/pkgs/by-name/ze/zenity/package.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { mainProgram = "zenity"; description = "Tool to display dialogs from the commandline and shell scripts"; homepage = "https://gitlab.gnome.org/GNOME/zenity"; changelog = "https://gitlab.gnome.org/GNOME/zenity/-/blob/${finalAttrs.version}/NEWS?ref_type=tags"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/by-name/ze/zenmonitor/package.nix b/pkgs/by-name/ze/zenmonitor/package.nix index 4d4d35dffcc1..1fa30ef1c5f7 100644 --- a/pkgs/by-name/ze/zenmonitor/package.nix +++ b/pkgs/by-name/ze/zenmonitor/package.nix @@ -26,16 +26,16 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Monitoring software for AMD Zen-based CPUs"; mainProgram = "zenmonitor"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ alexbakker artturin ]; diff --git a/pkgs/by-name/ze/zenstates/package.nix b/pkgs/by-name/ze/zenstates/package.nix index 58e63ce31b87..f5b67bf22084 100644 --- a/pkgs/by-name/ze/zenstates/package.nix +++ b/pkgs/by-name/ze/zenstates/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { patchShebangs --build $out/bin/zenstates ''; - meta = with lib; { + meta = { description = "Linux utility for Ryzen processors and motherboards"; mainProgram = "zenstates"; homepage = "https://github.com/r4m0n/ZenStates-Linux"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ze/zeroad-data/package.nix b/pkgs/by-name/ze/zeroad-data/package.nix index 94b05b820e28..1a96170595f0 100644 --- a/pkgs/by-name/ze/zeroad-data/package.nix +++ b/pkgs/by-name/ze/zeroad-data/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { cp -r binaries/data $out/share/0ad/ ''; - meta = with lib; { + meta = { description = "Free, open-source game of ancient warfare -- data files"; homepage = "https://play0ad.com/"; - license = licenses.cc-by-sa-30; - maintainers = with maintainers; [ chvp ]; - platforms = platforms.linux; + license = lib.licenses.cc-by-sa-30; + maintainers = with lib.maintainers; [ chvp ]; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/ze/zeroad-unwrapped/package.nix b/pkgs/by-name/ze/zeroad-unwrapped/package.nix index d1e231957db7..b41db187955c 100644 --- a/pkgs/by-name/ze/zeroad-unwrapped/package.nix +++ b/pkgs/by-name/ze/zeroad-unwrapped/package.nix @@ -165,15 +165,15 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Free, open-source game of ancient warfare"; homepage = "https://play0ad.com/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21 mit cc-by-sa-30 - licenses.zlib # otherwise masked by pkgs.zlib + lib.licenses.zlib # otherwise masked by pkgs.zlib ]; - maintainers = with maintainers; [ chvp ]; - platforms = subtractLists platforms.i686 platforms.linux; + maintainers = with lib.maintainers; [ chvp ]; + platforms = subtractLists lib.platforms.i686 lib.platforms.linux; mainProgram = "0ad"; }; } diff --git a/pkgs/by-name/ze/zerobin/package.nix b/pkgs/by-name/ze/zerobin/package.nix index c267b38d883b..ba73962d9833 100644 --- a/pkgs/by-name/ze/zerobin/package.nix +++ b/pkgs/by-name/ze/zerobin/package.nix @@ -60,12 +60,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "zerobin" ]; - meta = with lib; { + meta = { description = "Client side encrypted pastebin"; homepage = "https://github.com/Tygs/0bin"; changelog = "https://github.com/Tygs/0bin/releases/tag/v${version}"; - license = licenses.wtfpl; - platforms = platforms.all; - maintainers = with maintainers; [ julm ]; + license = lib.licenses.wtfpl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ julm ]; }; } diff --git a/pkgs/by-name/ze/zeroc-ice/package.nix b/pkgs/by-name/ze/zeroc-ice/package.nix index a9639f7c52fa..9331ac1502a6 100644 --- a/pkgs/by-name/ze/zeroc-ice/package.nix +++ b/pkgs/by-name/ze/zeroc-ice/package.nix @@ -99,11 +99,11 @@ stdenv.mkDerivation rec { mv $out/share/ice $dev/share ''; - meta = with lib; { + meta = { homepage = "https://www.zeroc.com/ice.html"; description = "Internet communications engine"; - license = licenses.gpl2Only; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ze/zeronet-conservancy/package.nix b/pkgs/by-name/ze/zeronet-conservancy/package.nix index 8f62e053f78f..6301630dcb9e 100644 --- a/pkgs/by-name/ze/zeronet-conservancy/package.nix +++ b/pkgs/by-name/ze/zeronet-conservancy/package.nix @@ -60,7 +60,7 @@ python3Packages.buildPythonApplication rec { nixos-test = nixosTests.zeronet-conservancy; }; - meta = with lib; { + meta = { description = "Fork/continuation of the ZeroNet project"; mainProgram = "zeronet"; longDescription = '' @@ -70,7 +70,7 @@ python3Packages.buildPythonApplication rec { while gradually switching to a better designed network. ''; homepage = "https://github.com/zeronet-conservancy/zeronet-conservancy"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/ze/zeronet/package.nix b/pkgs/by-name/ze/zeronet/package.nix index e74133b76358..aa8d5b5ab062 100644 --- a/pkgs/by-name/ze/zeronet/package.nix +++ b/pkgs/by-name/ze/zeronet/package.nix @@ -47,11 +47,11 @@ python3Packages.buildPythonApplication rec { --set PATH ${python3Packages.python}/bin ''; - meta = with lib; { + meta = { description = "Decentralized websites using Bitcoin crypto and BitTorrent network"; homepage = "https://zeronet.io/"; - license = licenses.gpl2; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ fgaz ]; knownVulnerabilities = [ '' Unmaintained. Probable XSS/code injection vulnerability. diff --git a/pkgs/by-name/ze/zeronsd/package.nix b/pkgs/by-name/ze/zeronsd/package.nix index 5f7860baa359..85370279f2c8 100644 --- a/pkgs/by-name/ze/zeronsd/package.nix +++ b/pkgs/by-name/ze/zeronsd/package.nix @@ -30,10 +30,10 @@ rustPlatform.buildRustPackage rec { # https://github.com/zerotier/zeronsd/blob/v0.5.2/tests/service/network.rs#L10 doCheck = false; - meta = with lib; { + meta = { description = "DNS server for ZeroTier users"; homepage = "https://github.com/zerotier/zeronsd"; - license = licenses.bsd3; - maintainers = [ maintainers.dstengele ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.dstengele ]; }; } diff --git a/pkgs/by-name/ze/zerotierone/package.nix b/pkgs/by-name/ze/zerotierone/package.nix index 1969a933aef6..d87f196690b3 100644 --- a/pkgs/by-name/ze/zerotierone/package.nix +++ b/pkgs/by-name/ze/zerotierone/package.nix @@ -139,17 +139,17 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Create flat virtual Ethernet networks of almost unlimited size"; homepage = "https://www.zerotier.com"; - license = if enableUnfree then licenses.unfree else licenses.mpl20; - maintainers = with maintainers; [ + license = if enableUnfree then lib.licenses.unfree else lib.licenses.mpl20; + maintainers = with lib.maintainers; [ sjmackenzie zimbatm obadz danielfullmer mic92 # also can test darwin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ze/zeyple/package.nix b/pkgs/by-name/ze/zeyple/package.nix index 943cf8dc9c10..72dd9ce86153 100644 --- a/pkgs/by-name/ze/zeyple/package.nix +++ b/pkgs/by-name/ze/zeyple/package.nix @@ -32,11 +32,11 @@ python3Packages.buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { description = "Utility program to automatically encrypt outgoing emails with GPG"; homepage = "https://infertux.com/labs/zeyple/"; - maintainers = with maintainers; [ ettom ]; - license = licenses.agpl3Plus; + maintainers = with lib.maintainers; [ ettom ]; + license = lib.licenses.agpl3Plus; mainProgram = "zeyple"; }; } diff --git a/pkgs/by-name/zf/zfs-prune-snapshots/package.nix b/pkgs/by-name/zf/zfs-prune-snapshots/package.nix index db28a89c6fc3..59679af9d1fb 100644 --- a/pkgs/by-name/zf/zfs-prune-snapshots/package.nix +++ b/pkgs/by-name/zf/zfs-prune-snapshots/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { install -m 644 -D man/zfs-prune-snapshots.1 $out/share/man/man1/zfs-prune-snapshots.1 ''; - meta = with lib; { + meta = { description = "Remove snapshots from one or more zpools that match given criteria"; mainProgram = "zfs-prune-snapshots"; homepage = "https://github.com/bahamas10/zfs-prune-snapshots"; - license = licenses.mit; - maintainers = [ maintainers.ymarkus ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ymarkus ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zf/zfsbackup/package.nix b/pkgs/by-name/zf/zfsbackup/package.nix index 00262004855a..4c773895ee44 100644 --- a/pkgs/by-name/zf/zfsbackup/package.nix +++ b/pkgs/by-name/zf/zfsbackup/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { # Tests require loading the zfs kernel module. doCheck = false; - meta = with lib; { + meta = { description = "Backup ZFS snapshots to cloud storage such as Google, Amazon, Azure, etc"; homepage = "https://github.com/someone1/zfsbackup-go"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "zfsbackup-go"; }; } diff --git a/pkgs/by-name/zf/zfsnap/package.nix b/pkgs/by-name/zf/zfsnap/package.nix index 0b7fd9b2048b..145db32ac273 100644 --- a/pkgs/by-name/zf/zfsnap/package.nix +++ b/pkgs/by-name/zf/zfsnap/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { installShellCompletion completion/*.{bash,zsh} ''; - meta = with lib; { + meta = { description = "Portable, performant script to make rolling ZFS snapshots easy"; mainProgram = "zfsnap"; homepage = "https://github.com/zfsnap/zfsnap"; - license = licenses.bsd3; - maintainers = with maintainers; [ woffs ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ woffs ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/zf/zfstools/package.nix b/pkgs/by-name/zf/zfstools/package.nix index c11aafa65998..62d2e5270012 100644 --- a/pkgs/by-name/zf/zfstools/package.nix +++ b/pkgs/by-name/zf/zfstools/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { inherit version; inherit (src.meta) homepage; description = "OpenSolaris-compatible auto-snapshotting script for ZFS"; @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { zfstools is an OpenSolaris-like and compatible auto snapshotting script for ZFS, which also supports auto snapshotting mysql databases. ''; - license = licenses.bsd2; - platforms = platforms.linux ++ platforms.freebsd; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux ++ lib.platforms.freebsd; }; } diff --git a/pkgs/by-name/zf/zfxtop/package.nix b/pkgs/by-name/zf/zfxtop/package.nix index 96e0d449dd61..33d520632a33 100644 --- a/pkgs/by-name/zf/zfxtop/package.nix +++ b/pkgs/by-name/zf/zfxtop/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-VKBRgDu9xVbZrC5fadkdFjd1OETNwaxgraRnA34ETzE="; - meta = with lib; { + meta = { description = "Fetch top for gen Z with X written by bubbletea enjoyer"; homepage = "https://github.com/ssleert/zfxtop"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ wozeparrot ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wozeparrot ]; mainProgram = "zfxtop"; }; } diff --git a/pkgs/by-name/zi/zi/package.nix b/pkgs/by-name/zi/zi/package.nix index 4163bb3f3479..98c8ee1be38a 100644 --- a/pkgs/by-name/zi/zi/package.nix +++ b/pkgs/by-name/zi/zi/package.nix @@ -26,10 +26,10 @@ stdenvNoCC.mkDerivation { installShellCompletion --zsh lib/_zi ''; - meta = with lib; { + meta = { homepage = "https://github.com/z-shell/zi"; description = "Swiss Army Knife for Zsh - Unix Shell"; - license = licenses.mit; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sei40kr ]; }; } diff --git a/pkgs/by-name/zi/zigbee2mqtt/package.nix b/pkgs/by-name/zi/zigbee2mqtt/package.nix index 9f15f3b57f65..f3f9618156ff 100644 --- a/pkgs/by-name/zi/zigbee2mqtt/package.nix +++ b/pkgs/by-name/zi/zigbee2mqtt/package.nix @@ -54,18 +54,18 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/Koenkk/zigbee2mqtt/releases/tag/${finalAttrs.version}"; description = "Zigbee to MQTT bridge using zigbee-shepherd"; homepage = "https://github.com/Koenkk/zigbee2mqtt"; - license = licenses.gpl3; + license = lib.licenses.gpl3; longDescription = '' Allows you to use your Zigbee devices without the vendor's bridge or gateway. It bridges events and allows you to control your Zigbee devices via MQTT. In this way you can integrate your Zigbee devices with whatever smart home infrastructure you are using. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sweber hexa ]; diff --git a/pkgs/by-name/zi/zigpy-cli/package.nix b/pkgs/by-name/zi/zigpy-cli/package.nix index 9a615a10ede7..e9933ffc398b 100644 --- a/pkgs/by-name/zi/zigpy-cli/package.nix +++ b/pkgs/by-name/zi/zigpy-cli/package.nix @@ -50,13 +50,13 @@ python3.pkgs.buildPythonApplication rec { "zigpy_cli" ]; - meta = with lib; { + meta = { description = "Command line interface for zigpy"; mainProgram = "zigpy"; homepage = "https://github.com/zigpy/zigpy-cli"; changelog = "https://github.com/zigpy/zigpy-cli/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ SuperSandro2000 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/zi/zilla-slab/package.nix b/pkgs/by-name/zi/zilla-slab/package.nix index 333db7d2248e..e53c46b601f2 100644 --- a/pkgs/by-name/zi/zilla-slab/package.nix +++ b/pkgs/by-name/zi/zilla-slab/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/mozilla/zilla-slab"; description = "Zilla Slab fonts"; longDescription = '' @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation rec { sophisticated industrial look and a friendly approachability in all weights. ''; - license = licenses.ofl; - maintainers = with maintainers; [ caugner ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ caugner ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zi/zimfw/package.nix b/pkgs/by-name/zi/zimfw/package.nix index 526fe2dda5c6..57af5fc794c7 100644 --- a/pkgs/by-name/zi/zimfw/package.nix +++ b/pkgs/by-name/zi/zimfw/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Zsh configuration framework with blazing speed and modular extensions"; homepage = "https://zimfw.sh"; - license = licenses.mit; - maintainers = [ maintainers.joedevivo ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.joedevivo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zi/zimg/package.nix b/pkgs/by-name/zi/zimg/package.nix index 2cbc7badea98..6eebf9bcbd23 100644 --- a/pkgs/by-name/zi/zimg/package.nix +++ b/pkgs/by-name/zi/zimg/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Scaling, colorspace conversion and dithering library"; homepage = "https://github.com/sekrit-twc/zimg"; - license = licenses.wtfpl; - platforms = with platforms; unix ++ windows; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.wtfpl; + platforms = with lib.platforms; unix ++ windows; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/zi/zincsearch/package.nix b/pkgs/by-name/zi/zincsearch/package.nix index 47edab16b15f..2faae9dced94 100644 --- a/pkgs/by-name/zi/zincsearch/package.nix +++ b/pkgs/by-name/zi/zincsearch/package.nix @@ -50,11 +50,11 @@ buildGoModule rec { "-X github.com/zinclabs/zincsearch/pkg/meta.Version=${version}" ]; - meta = with lib; { + meta = { description = "Lightweight alternative to elasticsearch that requires minimal resources, written in Go"; mainProgram = "zincsearch"; homepage = "https://zincsearch-docs.zinc.dev/"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/zi/zint-qt/package.nix b/pkgs/by-name/zi/zint-qt/package.nix index de6cc069c06e..d9f17db0293b 100644 --- a/pkgs/by-name/zi/zint-qt/package.nix +++ b/pkgs/by-name/zi/zint-qt/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { install -Dm644 -t $out/share/icons/hicolor/scalable/apps $src/frontend_qt/images/scalable/zint-qt.svg ''; - meta = with lib; { + meta = { description = "Barcode generating tool and library"; longDescription = '' The Zint project aims to provide a complete cross-platform open source @@ -78,9 +78,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.zint.org.uk"; changelog = "https://github.com/zint/zint/blob/${finalAttrs.src.rev}/ChangeLog"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ lib.maintainers.azahi ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "zint${lib.optionalString withGUI "-qt"}"; }; }) diff --git a/pkgs/by-name/zi/zip/package.nix b/pkgs/by-name/zi/zip/package.nix index 61b07f74c4ae..3bf6b8a1641a 100644 --- a/pkgs/by-name/zi/zip/package.nix +++ b/pkgs/by-name/zi/zip/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { buildInputs = lib.optional enableNLS libnatspec ++ lib.optional stdenv.hostPlatform.isCygwin libiconv; - meta = with lib; { + meta = { description = "Compressor/archiver for creating and modifying zipfiles"; homepage = "http://www.info-zip.org"; - license = licenses.bsdOriginal; - platforms = platforms.all; - maintainers = with maintainers; [ RossComputerGuy ]; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ RossComputerGuy ]; mainProgram = "zip"; }; } diff --git a/pkgs/by-name/zi/zipkin/package.nix b/pkgs/by-name/zi/zipkin/package.nix index c05b420f2de7..905b6726b739 100644 --- a/pkgs/by-name/zi/zipkin/package.nix +++ b/pkgs/by-name/zi/zipkin/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { makeWrapper ${jre}/bin/java $out/bin/zipkin-server \ --add-flags "-cp $out/share/java/zipkin-server-${version}-exec.jar org.springframework.boot.loader.JarLauncher" ''; - meta = with lib; { + meta = { description = "Distributed tracing system"; homepage = "https://zipkin.io/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.hectorj ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.hectorj ]; mainProgram = "zipkin-server"; }; } diff --git a/pkgs/by-name/zi/zircolite/package.nix b/pkgs/by-name/zi/zircolite/package.nix index 687126aa0187..e626a44c2fae 100644 --- a/pkgs/by-name/zi/zircolite/package.nix +++ b/pkgs/by-name/zi/zircolite/package.nix @@ -54,12 +54,12 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "SIGMA-based detection tool for EVTX, Auditd, Sysmon and other logs"; mainProgram = "zircolite"; homepage = "https://github.com/wagga40/Zircolite"; changelog = "https://github.com/wagga40/Zircolite/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/zi/zita-at1/package.nix b/pkgs/by-name/zi/zita-at1/package.nix index 5f378fd95e3f..309600a55f86 100644 --- a/pkgs/by-name/zi/zita-at1/package.nix +++ b/pkgs/by-name/zi/zita-at1/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Autotuner Jack application to correct the pitch of vocal tracks"; homepage = "https://kokkinizita.linuxaudio.org/linuxaudio/index.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "zita-at1"; }; } diff --git a/pkgs/by-name/zi/zita-njbridge/package.nix b/pkgs/by-name/zi/zita-njbridge/package.nix index 1330c799b233..a1fd4976b035 100644 --- a/pkgs/by-name/zi/zita-njbridge/package.nix +++ b/pkgs/by-name/zi/zita-njbridge/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "SUFFIX=''" ]; - meta = with lib; { + meta = { description = "Command line Jack clients to transmit full quality multichannel audio over a local IP network"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html"; - license = licenses.gpl3; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/zi/zitadel-tools/package.nix b/pkgs/by-name/zi/zitadel-tools/package.nix index 6dea57b5cd60..a32077be458f 100644 --- a/pkgs/by-name/zi/zitadel-tools/package.nix +++ b/pkgs/by-name/zi/zitadel-tools/package.nix @@ -35,10 +35,10 @@ buildGoModule rec { --zsh <($out/bin/zitadel-tools completion zsh) ''; - meta = with lib; { + meta = { description = "Helper tools for zitadel"; homepage = "https://github.com/zitadel/zitadel-tools"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "zitadel-tools"; }; diff --git a/pkgs/by-name/zi/zitadel/package.nix b/pkgs/by-name/zi/zitadel/package.nix index 78e2fa9c2274..0906e905a638 100644 --- a/pkgs/by-name/zi/zitadel/package.nix +++ b/pkgs/by-name/zi/zitadel/package.nix @@ -150,13 +150,13 @@ buildGoModule rec { }) { }; }; - meta = with lib; { + meta = { description = "Identity and access management platform"; homepage = "https://zitadel.com/"; downloadPage = "https://github.com/zitadel/zitadel/releases"; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.asl20; - sourceProvenance = [ sourceTypes.fromSource ]; - maintainers = [ maintainers.nrabulinski ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.asl20; + sourceProvenance = [ lib.sourceTypes.fromSource ]; + maintainers = [ lib.maintainers.nrabulinski ]; }; } diff --git a/pkgs/by-name/zi/zix/package.nix b/pkgs/by-name/zi/zix/package.nix index d49e0492d386..2dc7dfc4a651 100644 --- a/pkgs/by-name/zi/zix/package.nix +++ b/pkgs/by-name/zi/zix/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Lightweight C99 portability and data structure library"; homepage = "https://gitlab.com/drobilla/zix"; changelog = "https://gitlab.com/drobilla/zix/-/blob/${src.rev}/NEWS"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/zk/zk/package.nix b/pkgs/by-name/zk/zk/package.nix index f8470452dcc6..b666b274eecd 100644 --- a/pkgs/by-name/zk/zk/package.nix +++ b/pkgs/by-name/zk/zk/package.nix @@ -33,9 +33,9 @@ buildGoModule rec { tags = [ "fts5" ]; - meta = with lib; { - maintainers = with maintainers; [ pinpox ]; - license = licenses.gpl3; + meta = { + maintainers = with lib.maintainers; [ pinpox ]; + license = lib.licenses.gpl3; description = "Zettelkasten plain text note-taking assistant"; homepage = "https://github.com/mickael-menu/zk"; mainProgram = "zk"; diff --git a/pkgs/by-name/zk/zkfuse/package.nix b/pkgs/by-name/zk/zkfuse/package.nix index b880a0f5dce7..099614df6bcd 100644 --- a/pkgs/by-name/zk/zkfuse/package.nix +++ b/pkgs/by-name/zk/zkfuse/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { cp -v src/zkfuse $out/bin ''; - meta = with lib; { - platforms = platforms.linux; - maintainers = with maintainers; [ ztzg ]; - license = licenses.asl20; + meta = { + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ztzg ]; + license = lib.licenses.asl20; mainProgram = "zkfuse"; }; } diff --git a/pkgs/by-name/zk/zktree/package.nix b/pkgs/by-name/zk/zktree/package.nix index 5cbdfc9cadb7..f9aef10072a3 100644 --- a/pkgs/by-name/zk/zktree/package.nix +++ b/pkgs/by-name/zk/zktree/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-h6tDAcWOS1MikPMXiH0eQzkQIqVEC8rSsWbufGsh1CI="; - meta = with lib; { + meta = { description = "Small tool to display Znodes in Zookeeper in tree structure"; homepage = "https://github.com/alirezameskin/zktree"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = with lib.maintainers; [ alirezameskin ]; mainProgram = "zktree"; }; diff --git a/pkgs/by-name/zl/zld/package.nix b/pkgs/by-name/zl/zld/package.nix index 74887641e26f..6e402a03aeda 100644 --- a/pkgs/by-name/zl/zld/package.nix +++ b/pkgs/by-name/zl/zld/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { cp zld $out/bin/ ''; - meta = with lib; { + meta = { description = "Faster version of Apple's linker"; homepage = "https://github.com/michaeleisel/zld"; - license = licenses.mit; - maintainers = [ maintainers.rgnns ]; - platforms = platforms.darwin; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.rgnns ]; + platforms = lib.platforms.darwin; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/zl/zlib-ng/package.nix b/pkgs/by-name/zl/zlib-ng/package.nix index 3f5e1c670c7c..154bc13acbfb 100644 --- a/pkgs/by-name/zl/zlib-ng/package.nix +++ b/pkgs/by-name/zl/zlib-ng/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { ] ++ lib.optionals withZlibCompat [ "-DZLIB_COMPAT=ON" ]; - meta = with lib; { + meta = { description = "Zlib data compression library for the next generation systems"; homepage = "https://github.com/zlib-ng/zlib-ng"; - license = licenses.zlib; - platforms = platforms.all; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.zlib; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/by-name/zm/zmap/package.nix b/pkgs/by-name/zm/zmap/package.nix index 405eae398e33..9d48ed8ccb52 100644 --- a/pkgs/by-name/zm/zmap/package.nix +++ b/pkgs/by-name/zm/zmap/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { homepage = "https://zmap.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Fast single packet network scanner designed for Internet-wide network surveys"; - maintainers = with maintainers; [ ma27 ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ma27 ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/zm/zmkBATx/package.nix b/pkgs/by-name/zm/zmkBATx/package.nix index e956effbe8b3..dbd2bc288d25 100644 --- a/pkgs/by-name/zm/zmkBATx/package.nix +++ b/pkgs/by-name/zm/zmkBATx/package.nix @@ -39,14 +39,14 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace zmkBATx.pro --replace-fail "/usr/lib/x86_64-linux-gnu/dbus-1.0/include" "${dbus.lib}/lib/dbus-1.0/include" ''; - meta = with lib; { + meta = { description = "Battery monitoring for ZMK split keyboards"; longDescription = "Opensource tool for peripheral battery monitoring zmk split keyboard over BLE for linux."; homepage = "https://github.com/mh4x0f/zmkBATx"; changelog = "https://github.com/mh4x0f/zmkBATx/releases/tag/${finalAttrs.src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "zmkbatx"; - platforms = platforms.linux; - maintainers = with maintainers; [ aciceri ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aciceri ]; }; }) diff --git a/pkgs/by-name/zn/zn_poly/package.nix b/pkgs/by-name/zn/zn_poly/package.nix index df59ecc08b32..dc8b0e9101e4 100644 --- a/pkgs/by-name/zn/zn_poly/package.nix +++ b/pkgs/by-name/zn/zn_poly/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://web.maths.unsw.edu.au/~davidharvey/code/zn_poly/"; description = "Polynomial arithmetic over Z/nZ"; - license = with licenses; [ gpl3 ]; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = with lib.licenses; [ gpl3 ]; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zo/zoneminder/package.nix b/pkgs/by-name/zo/zoneminder/package.nix index 189bec547916..825ba7a6a92d 100644 --- a/pkgs/by-name/zo/zoneminder/package.nix +++ b/pkgs/by-name/zo/zoneminder/package.nix @@ -248,11 +248,11 @@ stdenv.mkDerivation rec { ln -s $out/share/zoneminder/www $out/share/zoneminder/www/zm ''; - meta = with lib; { + meta = { description = "Video surveillance software system"; homepage = "https://zoneminder.com"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/zo/zookeeper_mt/package.nix b/pkgs/by-name/zo/zookeeper_mt/package.nix index 39bc050ad8e1..e81724314499 100644 --- a/pkgs/by-name/zo/zookeeper_mt/package.nix +++ b/pkgs/by-name/zo/zookeeper_mt/package.nix @@ -48,14 +48,14 @@ stdenv.mkDerivation rec { "--without-cppunit" ]; - meta = with lib; { + meta = { homepage = "https://zookeeper.apache.org"; description = "Apache Zookeeper"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ commandodev ztzg ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zo/zoom/package.nix b/pkgs/by-name/zo/zoom/package.nix index d1eaaa815563..4f1c9f4cc498 100644 --- a/pkgs/by-name/zo/zoom/package.nix +++ b/pkgs/by-name/zo/zoom/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2 -fgnu89-inline"; - meta = with lib; { + meta = { homepage = "https://www.logicalshift.co.uk/unix/zoom/"; description = "Player for Z-Code, TADS and HUGO stories or games"; longDescription = '' @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { released many interactive fiction stories before their ambitions to enter the database market finally brought them low. ''; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "zoom"; }; } diff --git a/pkgs/by-name/zo/zopfli/package.nix b/pkgs/by-name/zo/zopfli/package.nix index e7091c16281c..b9556c4b6390 100644 --- a/pkgs/by-name/zo/zopfli/package.nix +++ b/pkgs/by-name/zo/zopfli/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { cp $src/src/zopfli/*.h $dev/include/ ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Very good, but slow, deflate or zlib compression"; longDescription = '' @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { This library can only compress, not decompress. Existing zlib or deflate libraries can decompress the data. ''; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; mainProgram = "zopfli"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bobvanderlinden edef ]; diff --git a/pkgs/by-name/zo/zotero-beta/package.nix b/pkgs/by-name/zo/zotero-beta/package.nix index 268b6d493d18..321c9521450b 100644 --- a/pkgs/by-name/zo/zotero-beta/package.nix +++ b/pkgs/by-name/zo/zotero-beta/package.nix @@ -116,14 +116,14 @@ stdenv.mkDerivation rec { "$out/usr/lib/zotero-bin-${version}/{}" \; ''; - meta = with lib; { + meta = { homepage = "https://www.zotero.org"; description = "Collect, organize, cite, and share your research sources"; mainProgram = "zotero"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.agpl3Only; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.agpl3Only; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ atila justanotherariel ]; diff --git a/pkgs/by-name/zo/zotero-translation-server/package.nix b/pkgs/by-name/zo/zotero-translation-server/package.nix index a8161ec256b5..b155736e0d6a 100644 --- a/pkgs/by-name/zo/zotero-translation-server/package.nix +++ b/pkgs/by-name/zo/zotero-translation-server/package.nix @@ -31,10 +31,10 @@ buildNpmPackage { ln -s $out/lib/node_modules/translation-server/modules $out/share/zotero-translation-server/modules ''; - meta = with lib; { + meta = { description = "Node.js-based server to run Zotero translators"; homepage = "https://github.com/zotero/translation-server"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; mainProgram = "translation-server"; }; diff --git a/pkgs/by-name/zp/zpaq/package.nix b/pkgs/by-name/zp/zpaq/package.nix index 776003a2591a..c2c8142e2b00 100644 --- a/pkgs/by-name/zp/zpaq/package.nix +++ b/pkgs/by-name/zp/zpaq/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { makeFlags = [ "CXX=${stdenv.cc.targetPrefix}c++" ]; installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Incremental journaling backup utility and archiver"; homepage = "http://mattmahoney.net/dc/zpaq.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; mainProgram = "zpaq"; }; } diff --git a/pkgs/by-name/zp/zpaqd/package.nix b/pkgs/by-name/zp/zpaqd/package.nix index 7a56de6a2cd2..06df4b15aa4a 100644 --- a/pkgs/by-name/zp/zpaqd/package.nix +++ b/pkgs/by-name/zp/zpaqd/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { cp readme_zpaqd.txt "$out/share/doc/zpaq" ''; - meta = with lib; { + meta = { description = "ZPAQ archive (de)compressor and algorithm development tool"; mainProgram = "zpaqd"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/zp/zpix-pixel-font/package.nix b/pkgs/by-name/zp/zpix-pixel-font/package.nix index 26b429a1655b..ae84e3fe2bd9 100644 --- a/pkgs/by-name/zp/zpix-pixel-font/package.nix +++ b/pkgs/by-name/zp/zpix-pixel-font/package.nix @@ -30,12 +30,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Pixel font supporting multiple languages like English, Chinese and Japanese"; homepage = "https://github.com/SolidZORO/zpix-pixel-font/"; changelog = "https://github.com/SolidZORO/zpix-pixel-font/blob/master/CHANGELOG.md"; - license = licenses.unfree; - maintainers = [ maintainers.adriangl ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.adriangl ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zp/zplug/package.nix b/pkgs/by-name/zp/zplug/package.nix index dd10a62ae28a..f85cf7e9d59c 100644 --- a/pkgs/by-name/zp/zplug/package.nix +++ b/pkgs/by-name/zp/zplug/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { cp -r $src/doc/man/* $out/share/man/ ''; - meta = with lib; { + meta = { description = "Next-generation plugin manager for zsh"; homepage = "https://github.com/zplug/zplug"; - license = licenses.mit; - maintainers = [ maintainers.s1341 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.s1341 ]; mainProgram = "zplug-env"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zp/zpool-auto-expand-partitions/package.nix b/pkgs/by-name/zp/zpool-auto-expand-partitions/package.nix index d38a16d8f06b..e83b7c04bb8d 100644 --- a/pkgs/by-name/zp/zpool-auto-expand-partitions/package.nix +++ b/pkgs/by-name/zp/zpool-auto-expand-partitions/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { zfs ]; - meta = with lib; { + meta = { description = "Tool that aims to expand all partitions in a specified zpool to fill the available space"; homepage = "https://github.com/DeterminateSystems/zpool-auto-expand-partitions"; - license = licenses.asl20; - teams = [ teams.determinatesystems ]; + license = lib.licenses.asl20; + teams = [ lib.teams.determinatesystems ]; mainProgram = "zpool_part_disks"; }; } diff --git a/pkgs/by-name/zp/zpool-iostat-viz/package.nix b/pkgs/by-name/zp/zpool-iostat-viz/package.nix index 3a10620dad60..46cb1cf10eec 100644 --- a/pkgs/by-name/zp/zpool-iostat-viz/package.nix +++ b/pkgs/by-name/zp/zpool-iostat-viz/package.nix @@ -33,11 +33,11 @@ python3Packages.buildPythonApplication { installManPage zpool-iostat-viz.1 ''; - meta = with lib; { + meta = { description = "\"zpool iostats\" for humans; find the slow parts of your ZFS pool"; homepage = "https://github.com/chadmiller/zpool-iostat-viz"; - license = licenses.bsd2; - maintainers = with maintainers; [ julm ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ julm ]; mainProgram = "zpool-iostat-viz"; }; } diff --git a/pkgs/by-name/zr/zram-generator/package.nix b/pkgs/by-name/zr/zram-generator/package.nix index 18cfabbd3b0c..038c6813287a 100644 --- a/pkgs/by-name/zr/zram-generator/package.nix +++ b/pkgs/by-name/zr/zram-generator/package.nix @@ -71,10 +71,10 @@ rustPlatform.buildRustPackage rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { homepage = "https://github.com/systemd/zram-generator"; - license = licenses.mit; + license = lib.licenses.mit; description = "Systemd unit generator for zram devices"; - maintainers = with maintainers; [ nickcao ]; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/zr/zrepl/package.nix b/pkgs/by-name/zr/zrepl/package.nix index 7748db7cf484..220b1df2c816 100644 --- a/pkgs/by-name/zr/zrepl/package.nix +++ b/pkgs/by-name/zr/zrepl/package.nix @@ -44,12 +44,12 @@ buildGoModule rec { inherit (nixosTests) zrepl; }; - meta = with lib; { + meta = { homepage = "https://zrepl.github.io/"; description = "One-stop, integrated solution for ZFS replication"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cole-h mdlayher ]; diff --git a/pkgs/by-name/zs/zs-apc-spdu-ctl/package.nix b/pkgs/by-name/zs/zs-apc-spdu-ctl/package.nix index 7211f4448283..d0655101ed8b 100644 --- a/pkgs/by-name/zs/zs-apc-spdu-ctl/package.nix +++ b/pkgs/by-name/zs/zs-apc-spdu-ctl/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { --replace /usr/sbin/fping "${fping}/bin/fping" ''; - meta = with lib; { + meta = { description = "APC SPDU control utility"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "zs-apc-spdu-ctl"; }; } diff --git a/pkgs/by-name/zs/zs-wait4host/package.nix b/pkgs/by-name/zs/zs-wait4host/package.nix index ed04b8a7852b..0d846efc56e5 100644 --- a/pkgs/by-name/zs/zs-wait4host/package.nix +++ b/pkgs/by-name/zs/zs-wait4host/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Wait for a host to come up/go down"; homepage = "https://ytrizja.de/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zs/zsa-udev-rules/package.nix b/pkgs/by-name/zs/zsa-udev-rules/package.nix index 39a2c2ba9106..d1dd0ca9b1dd 100644 --- a/pkgs/by-name/zs/zsa-udev-rules/package.nix +++ b/pkgs/by-name/zs/zsa-udev-rules/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { cp dist/linux64/50-wally.rules $out/lib/udev/rules.d/ ''; - meta = with lib; { + meta = { description = "udev rules for ZSA devices"; - license = licenses.mit; - maintainers = with maintainers; [ davidak ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ davidak ]; + platforms = lib.platforms.linux; homepage = "https://github.com/zsa/wally/wiki/Linux-install#2-create-a-udev-rule-file"; }; } diff --git a/pkgs/by-name/zs/zscroll/package.nix b/pkgs/by-name/zs/zscroll/package.nix index e1ba0b454b38..f86ba6e5222b 100644 --- a/pkgs/by-name/zs/zscroll/package.nix +++ b/pkgs/by-name/zs/zscroll/package.nix @@ -24,11 +24,11 @@ python3Packages.buildPythonApplication rec { propagatedBuildInputs = [ python3 ]; - meta = with lib; { + meta = { description = "Text scroller for use with panels and shells"; mainProgram = "zscroll"; homepage = "https://github.com/noctuid/zscroll"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zs/zsh-abbr/package.nix b/pkgs/by-name/zs/zsh-abbr/package.nix index 5a70a2ca0b43..a18aa0660e79 100644 --- a/pkgs/by-name/zs/zsh-abbr/package.nix +++ b/pkgs/by-name/zs/zsh-abbr/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/olets/zsh-abbr"; description = "Zsh manager for auto-expanding abbreviations, inspired by fish shell"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-nc-sa-40 hl3 ]; - maintainers = with maintainers; [ icy-thought ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ icy-thought ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zs/zsh-autocomplete/package.nix b/pkgs/by-name/zs/zsh-autocomplete/package.nix index 4d14345098b8..36686ed86718 100644 --- a/pkgs/by-name/zs/zsh-autocomplete/package.nix +++ b/pkgs/by-name/zs/zsh-autocomplete/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { cp -R Functions $out/share/zsh-autocomplete/Functions ''; - meta = with lib; { + meta = { description = "Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion"; homepage = "https://github.com/marlonrichert/zsh-autocomplete/"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.leona ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.leona ]; }; } diff --git a/pkgs/by-name/zs/zsh-autopair/package.nix b/pkgs/by-name/zs/zsh-autopair/package.nix index 8b0cfd6ed523..7cf5068c1363 100644 --- a/pkgs/by-name/zs/zsh-autopair/package.nix +++ b/pkgs/by-name/zs/zsh-autopair/package.nix @@ -19,14 +19,14 @@ stdenv.mkDerivation rec { install -D autopair.zsh $out/share/zsh/${pname}/autopair.zsh ''; - meta = with lib; { + meta = { homepage = "https://github.com/hlissner/zsh-autopair"; description = "Plugin that auto-closes, deletes and skips over matching delimiters in zsh intelligently"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _0qq DataHearth ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zs/zsh-autosuggestions/package.nix b/pkgs/by-name/zs/zsh-autosuggestions/package.nix index 1710b482d7b8..33d10f4a54d9 100644 --- a/pkgs/by-name/zs/zsh-autosuggestions/package.nix +++ b/pkgs/by-name/zs/zsh-autosuggestions/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { $out/share/zsh-autosuggestions ''; - meta = with lib; { + meta = { description = "Fish shell autosuggestions for Zsh"; homepage = "https://github.com/zsh-users/zsh-autosuggestions"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.loskutov ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.loskutov ]; }; } diff --git a/pkgs/by-name/zs/zsh-better-npm-completion/package.nix b/pkgs/by-name/zs/zsh-better-npm-completion/package.nix index e54db59082e1..0b9d18c6eb89 100644 --- a/pkgs/by-name/zs/zsh-better-npm-completion/package.nix +++ b/pkgs/by-name/zs/zsh-better-npm-completion/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { install -Dm 0644 zsh-better-npm-completion.plugin.zsh $out/share/zsh-better-npm-completion ''; - meta = with lib; { + meta = { description = "Better completion for npm"; homepage = "https://github.com/lukechilds/zsh-better-npm-completion"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.gerschtli ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.gerschtli ]; }; } diff --git a/pkgs/by-name/zs/zsh-clipboard/package.nix b/pkgs/by-name/zs/zsh-clipboard/package.nix index d304fee26992..6b093b1541fb 100644 --- a/pkgs/by-name/zs/zsh-clipboard/package.nix +++ b/pkgs/by-name/zs/zsh-clipboard/package.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { install -D -m0444 -T ${./clipboard.plugin.zsh} $out/share/zsh/plugins/clipboard/clipboard.plugin.zsh ''; - meta = with lib; { + meta = { description = "Ohmyzsh plugin that integrates kill-ring with system clipboard"; longDescription = '' Ohmyzsh plugin that integrates kill-ring with system clipboard. @@ -20,8 +20,8 @@ stdenv.mkDerivation { Key bindings for C-y, C-k, C-u, M-d, M-backspace and M-w are rebound. Behaviour of these keys should not be changed. ''; - license = licenses.mit; - maintainers = with maintainers; [ bb2020 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bb2020 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zs/zsh-command-time/package.nix b/pkgs/by-name/zs/zsh-command-time/package.nix index 957ab9b352b3..bfb95f2cf0cb 100644 --- a/pkgs/by-name/zs/zsh-command-time/package.nix +++ b/pkgs/by-name/zs/zsh-command-time/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { install -Dm0444 $src/command-time.plugin.zsh --target-directory=$out/share/zsh/plugins/command-time ''; - meta = with lib; { + meta = { description = "Plugin that output time: xx after long commands"; homepage = "https://github.com/popstas/zsh-command-time"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ lassulus ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lassulus ]; }; } diff --git a/pkgs/by-name/zs/zsh-defer/package.nix b/pkgs/by-name/zs/zsh-defer/package.nix index 3477e54ff16a..40234c2c7e39 100644 --- a/pkgs/by-name/zs/zsh-defer/package.nix +++ b/pkgs/by-name/zs/zsh-defer/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { cp zsh-defer* $out/share/zsh-defer ''; - meta = with lib; { + meta = { description = "Deferred execution of zsh commands"; homepage = "https://github.com/romkatv/zsh-defer"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.vinnymeller ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.vinnymeller ]; }; } diff --git a/pkgs/by-name/zs/zsh-edit/package.nix b/pkgs/by-name/zs/zsh-edit/package.nix index 076110500019..f4fd5e2fed6c 100644 --- a/pkgs/by-name/zs/zsh-edit/package.nix +++ b/pkgs/by-name/zs/zsh-edit/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { install -D functions/{,.edit}* $outdir/functions ''; - meta = with lib; { + meta = { homepage = "https://github.com/marlonrichert/zsh-edit"; description = "Set of powerful extensions to the Zsh command line editor"; - license = licenses.mit; - maintainers = with maintainers; [ deejayem ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ deejayem ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zs/zsh-f-sy-h/package.nix b/pkgs/by-name/zs/zsh-f-sy-h/package.nix index be92c8e667d8..0277b290a2cb 100644 --- a/pkgs/by-name/zs/zsh-f-sy-h/package.nix +++ b/pkgs/by-name/zs/zsh-f-sy-h/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { cp -r -- F-Sy-H.plugin.zsh chroma functions share themes "$plugindir"/ ''; - meta = with lib; { + meta = { description = "Feature-rich Syntax Highlighting for Zsh"; homepage = "https://github.com/z-shell/F-Sy-H"; - license = licenses.bsd3; - maintainers = with maintainers; [ mrfreezeex ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mrfreezeex ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zs/zsh-fast-syntax-highlighting/package.nix b/pkgs/by-name/zs/zsh-fast-syntax-highlighting/package.nix index d7cbdab2ef1c..f52521d013f9 100644 --- a/pkgs/by-name/zs/zsh-fast-syntax-highlighting/package.nix +++ b/pkgs/by-name/zs/zsh-fast-syntax-highlighting/package.nix @@ -26,10 +26,10 @@ stdenvNoCC.mkDerivation rec { cp -r -- {,_,-,.}fast-* *chroma themes "$plugindir"/ ''; - meta = with lib; { + meta = { description = "Syntax-highlighting for Zshell"; homepage = "https://github.com/zdharma-continuum/fast-syntax-highlighting"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zs/zsh-forgit/package.nix b/pkgs/by-name/zs/zsh-forgit/package.nix index 9ace2b21e153..53a9be8c08e7 100644 --- a/pkgs/by-name/zs/zsh-forgit/package.nix +++ b/pkgs/by-name/zs/zsh-forgit/package.nix @@ -58,12 +58,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/wfxr/forgit"; description = "Utility tool powered by fzf for using git interactively"; mainProgram = "git-forgit"; - license = licenses.mit; - maintainers = with maintainers; [ deejayem ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ deejayem ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/zs/zsh-history-search-multi-word/package.nix b/pkgs/by-name/zs/zsh-history-search-multi-word/package.nix index 63dd838cb491..89476be45aed 100644 --- a/pkgs/by-name/zs/zsh-history-search-multi-word/package.nix +++ b/pkgs/by-name/zs/zsh-history-search-multi-word/package.nix @@ -26,13 +26,13 @@ stdenvNoCC.mkDerivation rec { cp -r -- history-* hsmw-* "$plugindir"/ ''; - meta = with lib; { + meta = { description = "Multi-word, syntax highlighted history searching for Zsh"; homepage = "https://github.com/zdharma-continuum/history-search-multi-word"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 mit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zs/zsh-history-substring-search/package.nix b/pkgs/by-name/zs/zsh-history-substring-search/package.nix index 61af2fec16ac..38d1ae888934 100644 --- a/pkgs/by-name/zs/zsh-history-substring-search/package.nix +++ b/pkgs/by-name/zs/zsh-history-substring-search/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { $out/share/zsh-history-substring-search ''; - meta = with lib; { + meta = { description = "Fish shell history-substring-search for Zsh"; homepage = "https://github.com/zsh-users/zsh-history-substring-search"; - license = licenses.bsd3; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zs/zsh-history-to-fish/package.nix b/pkgs/by-name/zs/zsh-history-to-fish/package.nix index 9932ed8e7a31..1e6862ac12c6 100644 --- a/pkgs/by-name/zs/zsh-history-to-fish/package.nix +++ b/pkgs/by-name/zs/zsh-history-to-fish/package.nix @@ -34,11 +34,11 @@ python3.pkgs.buildPythonApplication rec { ./fix-runtime-error.patch ]; - meta = with lib; { + meta = { description = "Bring your ZSH history to Fish shell"; homepage = "https://github.com/rsalmei/zsh-history-to-fish"; - license = licenses.mit; - maintainers = with maintainers; [ alanpearce ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alanpearce ]; mainProgram = "zsh-history-to-fish"; }; } diff --git a/pkgs/by-name/zs/zsh-navigation-tools/package.nix b/pkgs/by-name/zs/zsh-navigation-tools/package.nix index e208c65891d2..66f2c1bbc801 100644 --- a/pkgs/by-name/zs/zsh-navigation-tools/package.nix +++ b/pkgs/by-name/zs/zsh-navigation-tools/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp .config/znt/n-* $out/share/zsh/site-functions/.config/znt ''; - meta = with lib; { + meta = { description = "Curses-based tools for ZSH"; homepage = "https://github.com/psprint/zsh-navigation-tools"; - license = licenses.gpl3; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/zs/zsh-nix-shell/package.nix b/pkgs/by-name/zs/zsh-nix-shell/package.nix index 48d4c6497796..bda935250a7e 100644 --- a/pkgs/by-name/zs/zsh-nix-shell/package.nix +++ b/pkgs/by-name/zs/zsh-nix-shell/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { ln -s $out/share/zsh/plugins/zsh-nix-shell $out/share/zsh-nix-shell ''; - meta = with lib; { + meta = { description = "Zsh plugin that lets you use zsh in nix-shell shell"; homepage = src.meta.homepage; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ aw ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ aw ]; }; } diff --git a/pkgs/by-name/zs/zsh-prezto/package.nix b/pkgs/by-name/zs/zsh-prezto/package.nix index c8ab38043976..8c96a73cb432 100644 --- a/pkgs/by-name/zs/zsh-prezto/package.nix +++ b/pkgs/by-name/zs/zsh-prezto/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Configuration framework for Zsh"; longDescription = '' Prezto is the configuration framework for Zsh; it enriches @@ -41,8 +41,8 @@ stdenv.mkDerivation { aliases, functions, auto completion, and prompt themes. ''; homepage = "https://github.com/sorin-ionescu/prezto"; - license = licenses.mit; - maintainers = with maintainers; [ holymonson ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ holymonson ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zs/zsh-syntax-highlighting/package.nix b/pkgs/by-name/zs/zsh-syntax-highlighting/package.nix index 901df868d17c..d9387d13831c 100644 --- a/pkgs/by-name/zs/zsh-syntax-highlighting/package.nix +++ b/pkgs/by-name/zs/zsh-syntax-highlighting/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Fish shell like syntax highlighting for Zsh"; homepage = "https://github.com/zsh-users/zsh-syntax-highlighting"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ gepbird loskutov ]; diff --git a/pkgs/by-name/zs/zsh-system-clipboard/package.nix b/pkgs/by-name/zs/zsh-system-clipboard/package.nix index ae389956037e..dd636f34387f 100644 --- a/pkgs/by-name/zs/zsh-system-clipboard/package.nix +++ b/pkgs/by-name/zs/zsh-system-clipboard/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { install -D zsh-system-clipboard.zsh $out/share/zsh/${pname}/zsh-system-clipboard.zsh ''; - meta = with lib; { + meta = { homepage = "https://github.com/kutsan/zsh-system-clipboard"; description = "Plugin that adds key bindings support for ZLE (Zsh Line Editor) clipboard operations for vi emulation keymaps"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ _0qq satoqz ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zs/zsh-vi-mode/package.nix b/pkgs/by-name/zs/zsh-vi-mode/package.nix index 9853abd12624..6cbca83e92b4 100644 --- a/pkgs/by-name/zs/zsh-vi-mode/package.nix +++ b/pkgs/by-name/zs/zsh-vi-mode/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { cp *.zsh $out/share/zsh-vi-mode/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/jeffreytse/zsh-vi-mode"; - license = licenses.mit; + license = lib.licenses.mit; description = "Better and friendly vi(vim) mode plugin for ZSH"; - maintainers = with maintainers; [ kyleondy ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ kyleondy ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zs/zsh-z/package.nix b/pkgs/by-name/zs/zsh-z/package.nix index fd097f67d24a..65cd9aecf6be 100644 --- a/pkgs/by-name/zs/zsh-z/package.nix +++ b/pkgs/by-name/zs/zsh-z/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { cp _zshz zsh-z.plugin.zsh $out/share/zsh-z ''; - meta = with lib; { + meta = { description = "Jump quickly to directories that you have visited frequently in the past, or recently"; homepage = "https://github.com/agkozak/zsh-z"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.evalexpr ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.evalexpr ]; }; } diff --git a/pkgs/by-name/zs/zsteg/package.nix b/pkgs/by-name/zs/zsteg/package.nix index d2f58193729a..b3e925e8be25 100644 --- a/pkgs/by-name/zs/zsteg/package.nix +++ b/pkgs/by-name/zs/zsteg/package.nix @@ -13,11 +13,11 @@ bundlerApp rec { passthru.updateScript = bundlerUpdateScript pname; - meta = with lib; { + meta = { description = "Detect stegano-hidden data in PNG & BMP"; homepage = "http://zed.0xff.me/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ applePrincess h7x4 ]; diff --git a/pkgs/by-name/zs/zstxtns-utils/package.nix b/pkgs/by-name/zs/zstxtns-utils/package.nix index 6289f8e1a92c..6421ca712b72 100644 --- a/pkgs/by-name/zs/zstxtns-utils/package.nix +++ b/pkgs/by-name/zs/zstxtns-utils/package.nix @@ -41,11 +41,11 @@ stdenvNoCC.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Utilities to deal with text based name service databases"; homepage = "https://ytrizja.de/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zt/zthrottle/package.nix b/pkgs/by-name/zt/zthrottle/package.nix index 5c3a583bbc4b..b050200bc689 100644 --- a/pkgs/by-name/zt/zthrottle/package.nix +++ b/pkgs/by-name/zt/zthrottle/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { install -D zthrottle $out/bin/zthrottle ''; - meta = with lib; { + meta = { description = "Program that throttles a pipeline, only letting a line through at most every $1 seconds"; homepage = "https://github.com/anko/zthrottle"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "zthrottle"; }; } diff --git a/pkgs/by-name/zu/zuki-themes/package.nix b/pkgs/by-name/zu/zuki-themes/package.nix index 82e359b41053..c3534acda67c 100644 --- a/pkgs/by-name/zu/zuki-themes/package.nix +++ b/pkgs/by-name/zu/zuki-themes/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gtk-engine-murrine ]; - meta = with lib; { + meta = { description = "Themes for GTK, gnome-shell and Xfce"; homepage = "https://github.com/lassekongo83/zuki-themes"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/zu/zulip/package.nix b/pkgs/by-name/zu/zulip/package.nix index c3cc29806fc9..f5922fd35483 100644 --- a/pkgs/by-name/zu/zulip/package.nix +++ b/pkgs/by-name/zu/zulip/package.nix @@ -77,11 +77,11 @@ buildNpmPackage rec { }) ]; - meta = with lib; { + meta = { description = "Desktop client for Zulip Chat"; homepage = "https://zulip.com"; - license = licenses.asl20; - maintainers = with maintainers; [ andersk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ andersk ]; platforms = lib.platforms.linux; mainProgram = "zulip"; }; diff --git a/pkgs/by-name/zx/zxcvbn-c/package.nix b/pkgs/by-name/zx/zxcvbn-c/package.nix index d08f120cacbd..0eeb5050c828 100644 --- a/pkgs/by-name/zx/zxcvbn-c/package.nix +++ b/pkgs/by-name/zx/zxcvbn-c/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { install -D -t $out/lib libzxcvbn.so* ''; - meta = with lib; { + meta = { homepage = "https://github.com/tsyrogit/zxcvbn-c"; description = "C/C++ implementation of the zxcvbn password strength estimation"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ xurei ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ xurei ]; }; } diff --git a/pkgs/by-name/zx/zxtune/package.nix b/pkgs/by-name/zx/zxtune/package.nix index 9435ae3f01f8..0054a1e57286 100644 --- a/pkgs/by-name/zx/zxtune/package.nix +++ b/pkgs/by-name/zx/zxtune/package.nix @@ -162,7 +162,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Crossplatform chiptunes player"; longDescription = '' Chiptune music player with truly extensive format support. Supported @@ -172,11 +172,11 @@ stdenv.mkDerivation rec { sidplay, and many other libraries. ''; homepage = "https://zxtune.bitbucket.io/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # zxtune supports mac and windows, but more work will be needed to # integrate with the custom make system (see platformName above) - platforms = platforms.linux; - maintainers = with maintainers; [ EBADBEEF ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ EBADBEEF ]; mainProgram = if withQt then "zxtune-qt" else "zxtune123"; }; } diff --git a/pkgs/data/fonts/font-awesome/default.nix b/pkgs/data/fonts/font-awesome/default.nix index 2461436017e9..81af752fc3df 100644 --- a/pkgs/data/fonts/font-awesome/default.nix +++ b/pkgs/data/fonts/font-awesome/default.nix @@ -28,16 +28,16 @@ let runHook postInstall ''; - meta = with lib; { + meta = { description = "Font Awesome - OTF font"; longDescription = '' Font Awesome gives you scalable vector icons that can instantly be customized. This package includes only the OTF font. For full CSS etc. see the project website. ''; homepage = "https://fontawesome.com/"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abaldeau johnazoidberg ]; diff --git a/pkgs/data/fonts/iosevka/comfy.nix b/pkgs/data/fonts/iosevka/comfy.nix index 7269a62c2837..0fc7c0a76d7b 100644 --- a/pkgs/data/fonts/iosevka/comfy.nix +++ b/pkgs/data/fonts/iosevka/comfy.nix @@ -57,16 +57,16 @@ let npmDepsHash = "sha256-xwGR21+CpZRFdZYz8SQrSf1tkp3fjGudoMmP5TGgEe8="; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = '' Customised build of the Iosevka typeface, with a consistent rounded style and overrides for almost all individual glyphs in both roman (upright) and italic (slanted) variants. ''; - license = licenses.ofl; + license = lib.licenses.ofl; platforms = iosevka.meta.platforms; - maintainers = [ maintainers.DamienCassou ]; + maintainers = [ lib.maintainers.DamienCassou ]; }; } ); diff --git a/pkgs/data/fonts/liberation-fonts/default.nix b/pkgs/data/fonts/liberation-fonts/default.nix index 2e1e0e68cae3..bf211347e022 100644 --- a/pkgs/data/fonts/liberation-fonts/default.nix +++ b/pkgs/data/fonts/liberation-fonts/default.nix @@ -42,7 +42,7 @@ let done ''; - meta = with lib; { + meta = { description = "Liberation Fonts, replacements for Times New Roman, Arial, and Courier New"; longDescription = '' The Liberation Fonts are intended to be replacements for the three most @@ -56,9 +56,9 @@ let Bitstream Vera Sans Mono). ''; - license = licenses.ofl; + license = lib.licenses.ofl; homepage = "https://github.com/liberationfonts"; - maintainers = with maintainers; [ raskin ]; + maintainers = with lib.maintainers; [ raskin ]; }; }; in diff --git a/pkgs/data/fonts/maple-font/default.nix b/pkgs/data/fonts/maple-font/default.nix index 721d73c96d1f..4e608b10636f 100644 --- a/pkgs/data/fonts/maple-font/default.nix +++ b/pkgs/data/fonts/maple-font/default.nix @@ -33,14 +33,14 @@ let find . -name '*.woff2' -exec install -Dt $out/share/fonts/woff2 {} \; ''; - meta = with lib; { + meta = { homepage = "https://github.com/subframe7536/Maple-font"; description = '' Open source ${desc} font with round corner and ligatures for IDE and command line ''; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ oluceps ]; }; }; diff --git a/pkgs/data/fonts/mplus-outline-fonts/default.nix b/pkgs/data/fonts/mplus-outline-fonts/default.nix index 9c2404822a82..d9fcbcbfec75 100644 --- a/pkgs/data/fonts/mplus-outline-fonts/default.nix +++ b/pkgs/data/fonts/mplus-outline-fonts/default.nix @@ -26,12 +26,12 @@ in runHook postInstall ''; - meta = with lib; { + meta = { description = "M+ Outline Fonts (legacy OSDN release)"; homepage = "https://mplus-fonts.osdn.jp"; - maintainers = with maintainers; [ uakci ]; - platforms = platforms.all; - license = licenses.mplus; + maintainers = with lib.maintainers; [ uakci ]; + platforms = lib.platforms.all; + license = lib.licenses.mplus; }; }; @@ -56,12 +56,12 @@ in runHook postInstall ''; - meta = with lib; { + meta = { description = "M+ Outline Fonts (GitHub release)"; homepage = "https://mplusfonts.github.io"; - maintainers = with maintainers; [ uakci ]; - platforms = platforms.all; - license = licenses.ofl; + maintainers = with lib.maintainers; [ uakci ]; + platforms = lib.platforms.all; + license = lib.licenses.ofl; }; }; } diff --git a/pkgs/data/fonts/openmoji/default.nix b/pkgs/data/fonts/openmoji/default.nix index 2814c04d0b71..f8def2919da2 100644 --- a/pkgs/data/fonts/openmoji/default.nix +++ b/pkgs/data/fonts/openmoji/default.nix @@ -95,13 +95,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { - license = licenses.cc-by-sa-40; - maintainers = with maintainers; [ + meta = { + license = lib.licenses.cc-by-sa-40; + maintainers = with lib.maintainers; [ _999eagle fgaz ]; - platforms = platforms.all; + platforms = lib.platforms.all; homepage = "https://openmoji.org/"; downloadPage = "https://github.com/hfg-gmuend/openmoji/releases"; description = "Open-source emojis for designers, developers and everyone else"; diff --git a/pkgs/data/fonts/pretendard/default.nix b/pkgs/data/fonts/pretendard/default.nix index b51de3cfd627..bb0d2287a198 100644 --- a/pkgs/data/fonts/pretendard/default.nix +++ b/pkgs/data/fonts/pretendard/default.nix @@ -30,12 +30,12 @@ let runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/orioncactus/pretendard"; description = "Alternative font to system-ui for all platforms"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ sudosubin ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ sudosubin ]; }; }; diff --git a/pkgs/data/fonts/tex-gyre-math/default.nix b/pkgs/data/fonts/tex-gyre-math/default.nix index fbed169a7e03..6e0b5cffab17 100644 --- a/pkgs/data/fonts/tex-gyre-math/default.nix +++ b/pkgs/data/fonts/tex-gyre-math/default.nix @@ -61,7 +61,7 @@ let outputHashMode = "recursive"; inherit outputHash; - meta = with lib; { + meta = { longDescription = '' TeX Gyre ${displayName} Math is a math companion for the TeX Gyre ${displayName} family of fonts (see @@ -71,9 +71,9 @@ let # "The TeX Gyre Math fonts are licensed under the GUST Font License (GFL), # which is a free license, legally equivalent to the LaTeX Project Public # License (LPPL), version 1.3c or later." - GUST website - license = licenses.lppl13c; - maintainers = with maintainers; [ siddharthist ]; - platforms = platforms.all; + license = lib.licenses.lppl13c; + maintainers = with lib.maintainers; [ siddharthist ]; + platforms = lib.platforms.all; }; }; in diff --git a/pkgs/data/fonts/tex-gyre/default.nix b/pkgs/data/fonts/tex-gyre/default.nix index a0b7b01cff6b..bc6a7a0336f3 100644 --- a/pkgs/data/fonts/tex-gyre/default.nix +++ b/pkgs/data/fonts/tex-gyre/default.nix @@ -34,14 +34,14 @@ let outputHashMode = "recursive"; inherit outputHash; - meta = with lib; { + meta = { homepage = "http://www.gust.org.pl/projects/e-foundry/tex-gyre"; # "The TeX Gyre fonts are licensed under the GUST Font License (GFL), # which is a free license, legally equivalent to the LaTeX Project Public # License (LPPL), version 1.3c or later." - GUST website - license = licenses.lppl13c; + license = lib.licenses.lppl13c; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; in diff --git a/pkgs/data/icons/gruppled-cursors/default.nix b/pkgs/data/icons/gruppled-cursors/default.nix index 4a223fc67d33..f03313de4e77 100644 --- a/pkgs/data/icons/gruppled-cursors/default.nix +++ b/pkgs/data/icons/gruppled-cursors/default.nix @@ -21,10 +21,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { cp -r ${theme}/{cursors,index.theme} $out/share/icons/${theme} ''; - meta = with lib; { + meta = { description = "Gruppled Cursors theme"; homepage = "https://github.com/nim65s/gruppled-cursors"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ nim65s ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ nim65s ]; }; }) diff --git a/pkgs/data/icons/gruppled-lite-cursors/default.nix b/pkgs/data/icons/gruppled-lite-cursors/default.nix index bd564ea565c1..9b1b6b073302 100644 --- a/pkgs/data/icons/gruppled-lite-cursors/default.nix +++ b/pkgs/data/icons/gruppled-lite-cursors/default.nix @@ -21,10 +21,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { cp -r ${theme}/{cursors,index.theme} $out/share/icons/${theme} ''; - meta = with lib; { + meta = { description = "Gruppled Lite Cursors theme"; homepage = "https://github.com/nim65s/gruppled-lite-cursors"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ nim65s ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ nim65s ]; }; }) diff --git a/pkgs/data/misc/fedora-backgrounds/generic.nix b/pkgs/data/misc/fedora-backgrounds/generic.nix index dd75ea9e88b1..e3735865927e 100644 --- a/pkgs/data/misc/fedora-backgrounds/generic.nix +++ b/pkgs/data/misc/fedora-backgrounds/generic.nix @@ -40,11 +40,11 @@ stdenvNoCC.mkDerivation { "WP_DIR_LN=$(DESTDIR)/share/backgrounds/$(WP_NAME)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fedoradesign/backgrounds"; description = "Set of default and supplemental wallpapers for Fedora"; - license = licenses.cc-by-sa-40; - platforms = platforms.unix; + license = lib.licenses.cc-by-sa-40; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/data/misc/nixos-artwork/wallpapers.nix b/pkgs/data/misc/nixos-artwork/wallpapers.nix index 15c5f62d6d84..7a9af779e78f 100644 --- a/pkgs/data/misc/nixos-artwork/wallpapers.nix +++ b/pkgs/data/misc/nixos-artwork/wallpapers.nix @@ -63,10 +63,10 @@ let kdeFilePath = "${pkg}/share/wallpapers/${name}/contents/images/${src.name}"; }; - meta = with lib; { + meta = { inherit description license; homepage = "https://github.com/NixOS/nixos-artwork"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; in diff --git a/pkgs/data/themes/adwaita-qt/default.nix b/pkgs/data/themes/adwaita-qt/default.nix index 0bc7a6e0297f..af90b8dd0e41 100644 --- a/pkgs/data/themes/adwaita-qt/default.nix +++ b/pkgs/data/themes/adwaita-qt/default.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Style to bend Qt applications to look like they belong into GNOME Shell"; homepage = "https://github.com/FedoraQt/adwaita-qt"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/data/themes/gtk-theme-framework/default.nix b/pkgs/data/themes/gtk-theme-framework/default.nix index 4d9179e8033a..5597066faac9 100644 --- a/pkgs/data/themes/gtk-theme-framework/default.nix +++ b/pkgs/data/themes/gtk-theme-framework/default.nix @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/jaxwilko/gtk-theme-framework"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/data/themes/kwin-decorations/sierra-breeze-enhanced/default.nix b/pkgs/data/themes/kwin-decorations/sierra-breeze-enhanced/default.nix index 6b3331ccd613..835c51aaa9d8 100644 --- a/pkgs/data/themes/kwin-decorations/sierra-breeze-enhanced/default.nix +++ b/pkgs/data/themes/kwin-decorations/sierra-breeze-enhanced/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "-DKDE_INSTALL_USE_QT_SYS_PATHS=ON" ]; - meta = with lib; { + meta = { description = "OSX-like window decoration for KDE Plasma written in C++"; homepage = "https://github.com/kupiqu/SierraBreezeEnhanced"; changelog = "https://github.com/kupiqu/SierraBreezeEnhanced/releases/tag/V${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ A1ca7raz ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ A1ca7raz ]; }; } diff --git a/pkgs/data/themes/qtcurve/default.nix b/pkgs/data/themes/qtcurve/default.nix index 2265c3550aed..66e648ba38b0 100644 --- a/pkgs/data/themes/qtcurve/default.nix +++ b/pkgs/data/themes/qtcurve/default.nix @@ -102,11 +102,11 @@ mkDerivation rec { "-DENABLE_QT4=OFF" ]; - meta = with lib; { + meta = { homepage = "https://github.com/QtCurve/qtcurve"; description = "Widget styles for Qt5/Plasma 5 and gtk2"; - platforms = platforms.linux; - license = licenses.lgpl21Plus; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/desktops/enlightenment/econnman/default.nix b/pkgs/desktops/enlightenment/econnman/default.nix index aefcd68df201..e479fee069e0 100644 --- a/pkgs/desktops/enlightenment/econnman/default.nix +++ b/pkgs/desktops/enlightenment/econnman/default.nix @@ -42,16 +42,16 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "User interface for the connman network connection manager"; mainProgram = "econnman-bin"; homepage = "https://enlightenment.org/"; - license = licenses.lgpl3; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ matejc ftrvxmtrx ]; - teams = [ teams.enlightenment ]; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/enlightenment/ecrire/default.nix b/pkgs/desktops/enlightenment/ecrire/default.nix index e7663c6990e8..548a12d86bd4 100644 --- a/pkgs/desktops/enlightenment/ecrire/default.nix +++ b/pkgs/desktops/enlightenment/ecrire/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "EFL simple text editor"; mainProgram = "ecrire"; homepage = "https://www.enlightenment.org/"; - license = licenses.gpl3Only; - platforms = platforms.linux; - teams = [ teams.enlightenment ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/enlightenment/efl/default.nix b/pkgs/desktops/enlightenment/efl/default.nix index 331094d3f5a6..ae8d23c92e1f 100644 --- a/pkgs/desktops/enlightenment/efl/default.nix +++ b/pkgs/desktops/enlightenment/efl/default.nix @@ -211,19 +211,19 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "Enlightenment foundation libraries"; homepage = "https://enlightenment.org/"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 lgpl2Only - licenses.zlib + lib.licenses.zlib ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ matejc ftrvxmtrx ]; - teams = [ teams.enlightenment ]; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/enlightenment/enlightenment/default.nix b/pkgs/desktops/enlightenment/enlightenment/default.nix index cbbe5d32c719..00946d81d8d8 100644 --- a/pkgs/desktops/enlightenment/enlightenment/default.nix +++ b/pkgs/desktops/enlightenment/enlightenment/default.nix @@ -81,15 +81,15 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "Compositing Window Manager and Desktop Shell"; homepage = "https://www.enlightenment.org"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ matejc ftrvxmtrx ]; - teams = [ teams.enlightenment ]; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/enlightenment/ephoto/default.nix b/pkgs/desktops/enlightenment/ephoto/default.nix index 1e635c3ff2f4..4c6b6f47c021 100644 --- a/pkgs/desktops/enlightenment/ephoto/default.nix +++ b/pkgs/desktops/enlightenment/ephoto/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "Image viewer and editor written using the Enlightenment Foundation Libraries"; mainProgram = "ephoto"; homepage = "https://www.smhouston.us/ephoto/"; - license = licenses.bsd2; - platforms = platforms.linux; - teams = [ teams.enlightenment ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/enlightenment/evisum/default.nix b/pkgs/desktops/enlightenment/evisum/default.nix index 19d0e7fe7cee..1c35d49f16d6 100644 --- a/pkgs/desktops/enlightenment/evisum/default.nix +++ b/pkgs/desktops/enlightenment/evisum/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "System and process monitor written with EFL"; mainProgram = "evisum"; homepage = "https://www.enlightenment.org"; - license = with licenses; [ isc ]; - platforms = platforms.linux; - teams = [ teams.enlightenment ]; + license = with lib.licenses; [ isc ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/enlightenment/rage/default.nix b/pkgs/desktops/enlightenment/rage/default.nix index fe3a2b8c7279..8fa306037cd5 100644 --- a/pkgs/desktops/enlightenment/rage/default.nix +++ b/pkgs/desktops/enlightenment/rage/default.nix @@ -38,16 +38,16 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "Video and audio player along the lines of mplayer"; mainProgram = "rage"; homepage = "https://enlightenment.org/"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ matejc ftrvxmtrx ]; - teams = [ teams.enlightenment ]; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/enlightenment/terminology/default.nix b/pkgs/desktops/enlightenment/terminology/default.nix index 91713f5ea1b5..9d1d82654e47 100644 --- a/pkgs/desktops/enlightenment/terminology/default.nix +++ b/pkgs/desktops/enlightenment/terminology/default.nix @@ -39,15 +39,15 @@ stdenv.mkDerivation rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "Powerful terminal emulator based on EFL"; homepage = "https://www.enlightenment.org/about-terminology"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ matejc ftrvxmtrx ]; - teams = [ teams.enlightenment ]; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/desktops/expidus/calculator/default.nix b/pkgs/desktops/expidus/calculator/default.nix index 87465c7b6d7a..f005dcf52969 100644 --- a/pkgs/desktops/expidus/calculator/default.nix +++ b/pkgs/desktops/expidus/calculator/default.nix @@ -43,12 +43,12 @@ flutter.buildFlutterApplication rec { --replace "Icon=com.expidusos.calculator" "Icon=$out/share/icons/com.expidusos.calculator.png" ''; - meta = with lib; { + meta = { broken = true; description = "ExpidusOS Calculator"; homepage = "https://expidusos.com"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ RossComputerGuy ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ RossComputerGuy ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/desktops/expidus/file-manager/default.nix b/pkgs/desktops/expidus/file-manager/default.nix index a9eb0c05f7b6..ffd2c4dd838f 100644 --- a/pkgs/desktops/expidus/file-manager/default.nix +++ b/pkgs/desktops/expidus/file-manager/default.nix @@ -43,12 +43,12 @@ flutter.buildFlutterApplication rec { --replace "Icon=com.expidusos.file_manager" "Icon=$out/share/icons/com.expidusos.file_manager.png" ''; - meta = with lib; { + meta = { broken = true; description = "ExpidusOS File Manager"; homepage = "https://expidusos.com"; - license = licenses.gpl3; - maintainers = with maintainers; [ RossComputerGuy ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ RossComputerGuy ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/desktops/gnome-2/platform/GConf/default.nix b/pkgs/desktops/gnome-2/platform/GConf/default.nix index 7eb70d3fb485..d0fc6799c2a8 100644 --- a/pkgs/desktops/gnome-2/platform/GConf/default.nix +++ b/pkgs/desktops/gnome-2/platform/GConf/default.nix @@ -57,9 +57,9 @@ stdenv.mkDerivation rec { 2to3 --write --nobackup gsettings/gsettings-schema-convert ''; - meta = with lib; { + meta = { homepage = "https://projects.gnome.org/gconf/"; description = "Deprecated system for storing application preferences"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/desktops/gnome-2/platform/ORBit2/default.nix b/pkgs/desktops/gnome-2/platform/ORBit2/default.nix index c23663acbc7f..965a83747ae2 100644 --- a/pkgs/desktops/gnome-2/platform/ORBit2/default.nix +++ b/pkgs/desktops/gnome-2/platform/ORBit2/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { # Makefile.in let's just disable parallel build. enableParallelBuilding = false; - meta = with lib; { + meta = { homepage = "https://developer-old.gnome.org/ORBit2/"; description = "CORBA 2.4-compliant Object Request Broker"; - platforms = platforms.unix; - maintainers = with maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lovek323 ]; longDescription = '' ORBit2 is a CORBA 2.4-compliant Object Request Broker (ORB) featuring diff --git a/pkgs/desktops/gnome-2/platform/gtkglext/default.nix b/pkgs/desktops/gnome-2/platform/gtkglext/default.nix index a916de5b3f61..3c05aba8f87b 100644 --- a/pkgs/desktops/gnome-2/platform/gtkglext/default.nix +++ b/pkgs/desktops/gnome-2/platform/gtkglext/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation { NOCONFIGURE=1 ./autogen.sh ''; - meta = with lib; { + meta = { homepage = "https://projects.gnome.org/gtkglext/"; description = "GtkGLExt, an OpenGL extension to GTK"; longDescription = '' @@ -65,7 +65,7 @@ stdenv.mkDerivation { Löf's GtkGLArea, GtkGLExt provides a GtkWidget API that enables OpenGL drawing for standard and custom GTK widgets. ''; - license = licenses.lgpl2Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/gnome/extensions/arcmenu/default.nix b/pkgs/desktops/gnome/extensions/arcmenu/default.nix index 1cf7c522414d..de388bb1cedd 100644 --- a/pkgs/desktops/gnome/extensions/arcmenu/default.nix +++ b/pkgs/desktops/gnome/extensions/arcmenu/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { extensionPortalSlug = "arcmenu"; }; - meta = with lib; { + meta = { description = "Application menu for GNOME Shell, designed to provide a more traditional user experience and workflow"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dkabot ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dkabot ]; homepage = "https://gitlab.com/arcmenu/ArcMenu"; }; } diff --git a/pkgs/desktops/gnome/extensions/argos/default.nix b/pkgs/desktops/gnome/extensions/argos/default.nix index ed051ec3bb0e..5c456b369dce 100644 --- a/pkgs/desktops/gnome/extensions/argos/default.nix +++ b/pkgs/desktops/gnome/extensions/argos/default.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "Create GNOME Shell extensions in seconds"; - license = licenses.gpl3; - maintainers = with maintainers; [ andersk ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ andersk ]; homepage = "https://github.com/p-e-w/argos"; }; } diff --git a/pkgs/desktops/gnome/extensions/clock-override/default.nix b/pkgs/desktops/gnome/extensions/clock-override/default.nix index 4da95c4fc184..7b4b20b31ad0 100644 --- a/pkgs/desktops/gnome/extensions/clock-override/default.nix +++ b/pkgs/desktops/gnome/extensions/clock-override/default.nix @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Customize the date and time format displayed in clock in the top bar in GNOME Shell"; - license = licenses.mit; - maintainers = with maintainers; [ rhoriguchi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rhoriguchi ]; homepage = "https://github.com/stuartlangridge/gnome-shell-clock-override"; broken = versionOlder gnome-shell.version "3.18"; }; diff --git a/pkgs/desktops/gnome/extensions/drop-down-terminal/default.nix b/pkgs/desktops/gnome/extensions/drop-down-terminal/default.nix index 890c461bfb98..753c9b969bec 100644 --- a/pkgs/desktops/gnome/extensions/drop-down-terminal/default.nix +++ b/pkgs/desktops/gnome/extensions/drop-down-terminal/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Configurable drop down terminal shell"; - license = licenses.gpl3; - maintainers = with maintainers; [ ericdallo ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ericdallo ]; homepage = "https://github.com/zzrough/gs-extensions-drop-down-terminal"; }; } diff --git a/pkgs/desktops/gnome/extensions/icon-hider/default.nix b/pkgs/desktops/gnome/extensions/icon-hider/default.nix index 2fa7e168b984..7a7f959b700e 100644 --- a/pkgs/desktops/gnome/extensions/icon-hider/default.nix +++ b/pkgs/desktops/gnome/extensions/icon-hider/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Icon Hider is a GNOME Shell extension for managing status area items"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; platforms = gnome-shell.meta.platforms; homepage = "https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider"; diff --git a/pkgs/desktops/gnome/extensions/impatience/default.nix b/pkgs/desktops/gnome/extensions/impatience/default.nix index 650f85a1252c..e95c1526de07 100644 --- a/pkgs/desktops/gnome/extensions/impatience/default.nix +++ b/pkgs/desktops/gnome/extensions/impatience/default.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation { extensionPortalSlug = "impatience"; }; - meta = with lib; { + meta = { description = "Speed up builtin gnome-shell animations"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ timbertson tiramiseb ]; diff --git a/pkgs/desktops/gnome/extensions/no-title-bar/default.nix b/pkgs/desktops/gnome/extensions/no-title-bar/default.nix index 2e6d23855ba7..499ce79a8ac9 100644 --- a/pkgs/desktops/gnome/extensions/no-title-bar/default.nix +++ b/pkgs/desktops/gnome/extensions/no-title-bar/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { extensionUuid = "no-title-bar@jonaspoehler.de"; }; - meta = with lib; { + meta = { description = "Integrates maximized windows with the top panel"; homepage = "https://github.com/poehlerj/no-title-bar"; - license = licenses.gpl2; - maintainers = with maintainers; [ svsdep ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ svsdep ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/gnome/extensions/pano/default.nix b/pkgs/desktops/gnome/extensions/pano/default.nix index 906b31727b40..f9eae7b6d3e4 100644 --- a/pkgs/desktops/gnome/extensions/pano/default.nix +++ b/pkgs/desktops/gnome/extensions/pano/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { extensionUuid = "pano@elhan.io"; }; - meta = with lib; { + meta = { description = "Next-gen Clipboard Manager for Gnome Shell"; homepage = "https://github.com/oae/gnome-shell-pano"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ honnip ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ honnip ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/gnome/extensions/pidgin-im-integration/default.nix b/pkgs/desktops/gnome/extensions/pidgin-im-integration/default.nix index c46a1b7447c4..4af167bdb70e 100644 --- a/pkgs/desktops/gnome/extensions/pidgin-im-integration/default.nix +++ b/pkgs/desktops/gnome/extensions/pidgin-im-integration/default.nix @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://github.com/muffinmad/pidgin-im-gnome-shell-extension"; description = "Make Pidgin IM conversations appear in the Gnome Shell message tray"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; broken = versionAtLeast gnome-shell.version "3.32"; # Doesn't support 3.34 }; diff --git a/pkgs/desktops/gnome/extensions/pop-shell/default.nix b/pkgs/desktops/gnome/extensions/pop-shell/default.nix index d90a78415ef2..900395223d06 100644 --- a/pkgs/desktops/gnome/extensions/pop-shell/default.nix +++ b/pkgs/desktops/gnome/extensions/pop-shell/default.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation { chmod +x $out/share/gnome-shell/extensions/pop-shell@system76.com/*/main.js ''; - meta = with lib; { + meta = { description = "Keyboard-driven layer for GNOME Shell"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = [ maintainers.genofire ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.genofire ]; homepage = "https://github.com/pop-os/shell"; }; } diff --git a/pkgs/desktops/gnome/extensions/sound-output-device-chooser/default.nix b/pkgs/desktops/gnome/extensions/sound-output-device-chooser/default.nix index adf0b3f839c8..a997df765753 100644 --- a/pkgs/desktops/gnome/extensions/sound-output-device-chooser/default.nix +++ b/pkgs/desktops/gnome/extensions/sound-output-device-chooser/default.nix @@ -42,9 +42,9 @@ stdenv.mkDerivation { mkdir -p ${placeholder "out"}/share/gnome-shell/extensions ''; - meta = with lib; { + meta = { description = "GNOME Shell extension adding audio device chooser to panel"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; homepage = "https://github.com/kgshank/gse-sound-output-device-chooser"; }; diff --git a/pkgs/desktops/gnome/extensions/systemd-manager/default.nix b/pkgs/desktops/gnome/extensions/systemd-manager/default.nix index 33b6cae814fa..83e5b69c5376 100644 --- a/pkgs/desktops/gnome/extensions/systemd-manager/default.nix +++ b/pkgs/desktops/gnome/extensions/systemd-manager/default.nix @@ -55,11 +55,11 @@ stdenvNoCC.mkDerivation rec { extensionPortalSlug = "systemd-manager"; }; - meta = with lib; { + meta = { description = "GNOME Shell extension to manage systemd services"; homepage = "https://github.com/hardpixel/systemd-manager"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ linsui doronbehar ]; diff --git a/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix b/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix index 6ffa8cfc4cc3..e699b8a3061d 100644 --- a/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix +++ b/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix @@ -42,9 +42,9 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "GNOME Shell TaskWarrior GUI"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; homepage = "https://github.com/cinatic/taskwhisperer"; }; diff --git a/pkgs/desktops/gnome/extensions/tilingnome/default.nix b/pkgs/desktops/gnome/extensions/tilingnome/default.nix index 3ce00bcae920..3f2241a0745a 100644 --- a/pkgs/desktops/gnome/extensions/tilingnome/default.nix +++ b/pkgs/desktops/gnome/extensions/tilingnome/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation { extensionPortalSlug = "tilingnome"; }; - meta = with lib; { + meta = { description = "Tiling window management for GNOME Shell"; - license = licenses.gpl2; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ benley ]; homepage = "https://github.com/rliang/gnome-shell-extension-tilingnome"; platforms = gnome-shell.meta.platforms; }; diff --git a/pkgs/desktops/gnome/extensions/topicons-plus/default.nix b/pkgs/desktops/gnome/extensions/topicons-plus/default.nix index b216a6ae451f..42a6e85f8dff 100644 --- a/pkgs/desktops/gnome/extensions/topicons-plus/default.nix +++ b/pkgs/desktops/gnome/extensions/topicons-plus/default.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { passthru.extensionUuid = "TopIcons@phocean.net"; - meta = with lib; { + meta = { description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ eperuffo ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ eperuffo ]; homepage = "https://github.com/phocean/TopIcons-plus"; }; } diff --git a/pkgs/desktops/gnome/extensions/unite/default.nix b/pkgs/desktops/gnome/extensions/unite/default.nix index 05b688fd6157..46e5979bb93e 100644 --- a/pkgs/desktops/gnome/extensions/unite/default.nix +++ b/pkgs/desktops/gnome/extensions/unite/default.nix @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Unite is a GNOME Shell extension which makes a few layout tweaks to the top panel and removes window decorations to make it look like Ubuntu Unity Shell"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ rhoriguchi ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ rhoriguchi ]; homepage = "https://github.com/hardpixel/unite-shell"; broken = versionOlder gnome-shell.version "3.32"; }; diff --git a/pkgs/desktops/gnome/extensions/window-corner-preview/default.nix b/pkgs/desktops/gnome/extensions/window-corner-preview/default.nix index 2d666d68ae9d..7e300ee97b38 100644 --- a/pkgs/desktops/gnome/extensions/window-corner-preview/default.nix +++ b/pkgs/desktops/gnome/extensions/window-corner-preview/default.nix @@ -30,9 +30,9 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "GNOME Shell extension showing a video preview on the corner of the screen"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; homepage = "https://github.com/medenagan/window-corner-preview"; broken = lib.versionAtLeast gnome-shell.version "3.32"; # Doesn't support 3.34 diff --git a/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix b/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix index 4b0a249de9af..cf4c7327d1a1 100644 --- a/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix +++ b/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix @@ -48,11 +48,11 @@ buildPythonApplication rec { "gnome_extensions_cli" ]; - meta = with lib; { + meta = { homepage = "https://github.com/essembeh/gnome-extensions-cli"; description = "Command line tool to manage your GNOME Shell extensions"; - license = licenses.asl20; - maintainers = with maintainers; [ dylanmtaylor ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dylanmtaylor ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/lomiri/applications/lomiri-system-settings/default.nix b/pkgs/desktops/lomiri/applications/lomiri-system-settings/default.nix index 4b5b90001e50..a51ddf0e4644 100644 --- a/pkgs/desktops/lomiri/applications/lomiri-system-settings/default.nix +++ b/pkgs/desktops/lomiri/applications/lomiri-system-settings/default.nix @@ -194,16 +194,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "System Settings application for Lomiri"; homepage = "https://gitlab.com/ubports/development/core/lomiri-system-settings"; changelog = "https://gitlab.com/ubports/development/core/lomiri-system-settings/-/blob/${ if (!isNull finalAttrs.src.tag) then finalAttrs.src.tag else finalAttrs.src.rev }/ChangeLog"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "lomiri-system-settings"; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; pkgConfigModules = [ "LomiriSystemSettings" ]; }; }) diff --git a/pkgs/desktops/lomiri/applications/morph-browser/default.nix b/pkgs/desktops/lomiri/applications/morph-browser/default.nix index cce21652138f..1135684de28f 100644 --- a/pkgs/desktops/lomiri/applications/morph-browser/default.nix +++ b/pkgs/desktops/lomiri/applications/morph-browser/default.nix @@ -142,16 +142,16 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Lightweight web browser tailored for Ubuntu Touch"; homepage = "https://gitlab.com/ubports/development/core/morph-browser"; changelog = "https://gitlab.com/ubports/development/core/morph-browser/-/blob/${finalAttrs.version}/ChangeLog"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only cc-by-sa-30 ]; mainProgram = "morph-browser"; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/data/lomiri-session/default.nix b/pkgs/desktops/lomiri/data/lomiri-session/default.nix index 86505d6c48e2..27e3ef9d30fe 100644 --- a/pkgs/desktops/lomiri/data/lomiri-session/default.nix +++ b/pkgs/desktops/lomiri/data/lomiri-session/default.nix @@ -83,13 +83,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Integrates Lomiri desktop/touch sessions into display / session managers"; homepage = "https://gitlab.com/ubports/development/core/lomiri-session"; changelog = "https://gitlab.com/ubports/development/core/lomiri-session/-/blob/${finalAttrs.version}/ChangeLog"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "lomiri-session"; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/data/lomiri-sounds/default.nix b/pkgs/desktops/lomiri/data/lomiri-sounds/default.nix index 145f4c4cdf1d..30d7386ae331 100644 --- a/pkgs/desktops/lomiri/data/lomiri-sounds/default.nix +++ b/pkgs/desktops/lomiri/data/lomiri-sounds/default.nix @@ -35,17 +35,17 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Notification and ringtone sound effects for Lomiri"; homepage = "https://gitlab.com/ubports/development/core/lomiri-sounds"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-30 cc0 cc-by-sa-30 cc-by-40 ]; - teams = [ teams.lomiri ]; - platforms = platforms.all; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.all; pkgConfigModules = [ "lomiri-sounds" ]; diff --git a/pkgs/desktops/lomiri/data/lomiri-wallpapers/default.nix b/pkgs/desktops/lomiri/data/lomiri-wallpapers/default.nix index 533178497523..9a49f77d8f1c 100644 --- a/pkgs/desktops/lomiri/data/lomiri-wallpapers/default.nix +++ b/pkgs/desktops/lomiri/data/lomiri-wallpapers/default.nix @@ -37,13 +37,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Wallpapers for the Lomiri Operating Environment, gathered from people of the Ubuntu Touch / UBports community"; homepage = "https://gitlab.com/ubports/development/core/lomiri-wallpapers"; changelog = "https://gitlab.com/ubports/development/core/lomiri-wallpapers/-/blob/${finalAttrs.version}/ChangeLog"; # On update, recheck debian/copyright for which licenses apply to the installed images - license = with licenses; [ cc-by-sa-30 ]; - teams = [ teams.lomiri ]; - platforms = platforms.all; + license = with lib.licenses; [ cc-by-sa-30 ]; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/desktops/lomiri/development/deviceinfo/default.nix b/pkgs/desktops/lomiri/development/deviceinfo/default.nix index aaaeb88e4020..174ab7f8b49a 100644 --- a/pkgs/desktops/lomiri/development/deviceinfo/default.nix +++ b/pkgs/desktops/lomiri/development/deviceinfo/default.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Library to detect and configure devices"; homepage = "https://gitlab.com/ubports/development/core/deviceinfo"; changelog = "https://gitlab.com/ubports/development/core/deviceinfo/-/blob/${finalAttrs.version}/ChangeLog"; - license = licenses.gpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; mainProgram = "device-info"; pkgConfigModules = [ "deviceinfo" diff --git a/pkgs/desktops/lomiri/development/geonames/default.nix b/pkgs/desktops/lomiri/development/geonames/default.nix index 97d195b3dff9..879cfdcd5230 100644 --- a/pkgs/desktops/lomiri/development/geonames/default.nix +++ b/pkgs/desktops/lomiri/development/geonames/default.nix @@ -109,14 +109,14 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Parse and query the geonames database dump"; mainProgram = "geonames-demo"; homepage = "https://gitlab.com/ubports/development/core/geonames"; changelog = "https://gitlab.com/ubports/development/core/geonames/-/blob/${finalAttrs.version}/ChangeLog"; - license = licenses.gpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.all; # Cross requires hostPlatform emulation during build # https://gitlab.com/ubports/development/core/geonames/-/issues/1 broken = diff --git a/pkgs/desktops/lomiri/development/gmenuharness/default.nix b/pkgs/desktops/lomiri/development/gmenuharness/default.nix index a9a61fb09939..5d41b4a4d39e 100644 --- a/pkgs/desktops/lomiri/development/gmenuharness/default.nix +++ b/pkgs/desktops/lomiri/development/gmenuharness/default.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Library to test GMenuModel structures"; homepage = "https://gitlab.com/ubports/development/core/gmenuharness"; - license = licenses.gpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.unix; pkgConfigModules = [ "libgmenuharness" ]; diff --git a/pkgs/desktops/lomiri/development/qtmir/default.nix b/pkgs/desktops/lomiri/development/qtmir/default.nix index 0b2993ab0727..68db94af2f6b 100644 --- a/pkgs/desktops/lomiri/development/qtmir/default.nix +++ b/pkgs/desktops/lomiri/development/qtmir/default.nix @@ -122,12 +122,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "QPA plugin to make Qt a Mir server"; homepage = "https://gitlab.com/ubports/development/core/qtmir"; - license = licenses.lgpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; pkgConfigModules = [ "qtmirserver" ]; }; }) diff --git a/pkgs/desktops/lomiri/development/trust-store/default.nix b/pkgs/desktops/lomiri/development/trust-store/default.nix index f8f85d470b3a..4797ef512f5f 100644 --- a/pkgs/desktops/lomiri/development/trust-store/default.nix +++ b/pkgs/desktops/lomiri/development/trust-store/default.nix @@ -142,12 +142,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Common implementation of a trust store to be used by trusted helpers"; homepage = "https://gitlab.com/ubports/development/core/trust-store"; - license = licenses.lgpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; pkgConfigModules = [ "trust-store" ]; diff --git a/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix b/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix index b7621ad5cde1..b870545ae031 100644 --- a/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix +++ b/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Lomiri Push Notifications QML plugin"; homepage = "https://gitlab.com/ubports/development/core/lomiri-push-qml"; # License file indicates gpl3Only, but de87869c2cdb9819c2ca7c9eca9c5fb8b500a01f says it should be lgpl3Only - license = licenses.lgpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/qml/lomiri-settings-components/default.nix b/pkgs/desktops/lomiri/qml/lomiri-settings-components/default.nix index 15ca36fbe5fd..775d16ee786f 100644 --- a/pkgs/desktops/lomiri/qml/lomiri-settings-components/default.nix +++ b/pkgs/desktops/lomiri/qml/lomiri-settings-components/default.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "QML settings components for the Lomiri Desktop Environment"; homepage = "https://gitlab.com/ubports/development/core/lomiri-settings-components"; changelog = "https://gitlab.com/ubports/development/core/lomiri-settings-components/-/blob/${finalAttrs.version}/ChangeLog"; - license = licenses.lgpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/services/hfd-service/default.nix b/pkgs/desktops/lomiri/services/hfd-service/default.nix index 80921be4963e..201a99c39c2a 100644 --- a/pkgs/desktops/lomiri/services/hfd-service/default.nix +++ b/pkgs/desktops/lomiri/services/hfd-service/default.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "DBus-activated service that manages human feedback devices such as LEDs and vibrators on mobile devices"; homepage = "https://gitlab.com/ubports/development/core/hfd-service"; changelog = "https://gitlab.com/ubports/development/core/hfd-service/-/blob/${finalAttrs.version}/ChangeLog"; - license = licenses.lgpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/lumina/lumina-calculator/default.nix b/pkgs/desktops/lumina/lumina-calculator/default.nix index 119540e710ff..80f169a80d2b 100644 --- a/pkgs/desktops/lumina/lumina-calculator/default.nix +++ b/pkgs/desktops/lumina/lumina-calculator/default.nix @@ -32,12 +32,12 @@ mkDerivation rec { "LRELEASE=${lib.getDev qttools}/bin/lrelease" ]; - meta = with lib; { + meta = { description = "Scientific calculator for the Lumina Desktop"; mainProgram = "lumina-calculator"; homepage = "https://github.com/lumina-desktop/lumina-calculator"; - license = licenses.bsd3; - platforms = platforms.unix; - teams = [ teams.lumina ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + teams = [ lib.teams.lumina ]; }; } diff --git a/pkgs/desktops/lumina/lumina-pdf/default.nix b/pkgs/desktops/lumina/lumina-pdf/default.nix index cf3ec15d1a90..8d4c4ccae56b 100644 --- a/pkgs/desktops/lumina/lumina-pdf/default.nix +++ b/pkgs/desktops/lumina/lumina-pdf/default.nix @@ -42,12 +42,12 @@ mkDerivation rec { enableParallelBuilding = false; - meta = with lib; { + meta = { description = "PDF viewer for the Lumina Desktop"; mainProgram = "lumina-pdf"; homepage = "https://github.com/lumina-desktop/lumina-pdf"; - license = licenses.bsd3; - platforms = platforms.unix; - teams = [ teams.lumina ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + teams = [ lib.teams.lumina ]; }; } diff --git a/pkgs/desktops/lumina/lumina/default.nix b/pkgs/desktops/lumina/lumina/default.nix index cf9081a93bb0..03bae0e92b59 100644 --- a/pkgs/desktops/lumina/lumina/default.nix +++ b/pkgs/desktops/lumina/lumina/default.nix @@ -99,7 +99,7 @@ mkDerivation rec { passthru.providedSessions = [ "Lumina-DE" ]; - meta = with lib; { + meta = { description = "Lightweight, portable desktop environment"; longDescription = '' The Lumina Desktop Environment is a lightweight system interface @@ -107,8 +107,8 @@ mkDerivation rec { is based on QT5. ''; homepage = "https://lumina-desktop.org"; - license = licenses.bsd3; - platforms = platforms.unix; - teams = [ teams.lumina ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + teams = [ lib.teams.lumina ]; }; } diff --git a/pkgs/desktops/lxqt/compton-conf/default.nix b/pkgs/desktops/lxqt/compton-conf/default.nix index f7fb175bcbd7..f5b086b06d13 100644 --- a/pkgs/desktops/lxqt/compton-conf/default.nix +++ b/pkgs/desktops/lxqt/compton-conf/default.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/lxqt/compton-conf"; description = "GUI configuration tool for compton X composite manager"; mainProgram = "compton-conf"; - license = licenses.lgpl21Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/libdbusmenu-lxqt/default.nix b/pkgs/desktops/lxqt/libdbusmenu-lxqt/default.nix index b053de6e92a0..deb47bc956a8 100644 --- a/pkgs/desktops/lxqt/libdbusmenu-lxqt/default.nix +++ b/pkgs/desktops/lxqt/libdbusmenu-lxqt/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Qt implementation of the DBusMenu protocol"; homepage = "https://github.com/lxqt/libdbusmenu-lxqt"; - license = licenses.lgpl21Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/liblxqt/default.nix b/pkgs/desktops/lxqt/liblxqt/default.nix index a859514c9b7d..830f8e5bc01e 100644 --- a/pkgs/desktops/lxqt/liblxqt/default.nix +++ b/pkgs/desktops/lxqt/liblxqt/default.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Core utility library for all LXQt components"; mainProgram = "lxqt-backlight_backend"; homepage = "https://github.com/lxqt/liblxqt"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/libsysstat/default.nix b/pkgs/desktops/lxqt/libsysstat/default.nix index e67dda6baa07..7eb756b70738 100644 --- a/pkgs/desktops/lxqt/libsysstat/default.nix +++ b/pkgs/desktops/lxqt/libsysstat/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Library used to query system info and statistics"; homepage = "https://github.com/lxqt/libsysstat"; - license = licenses.lgpl21Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lximage-qt/default.nix b/pkgs/desktops/lxqt/lximage-qt/default.nix index ea2e137cdad0..26fb9cc3cfc2 100644 --- a/pkgs/desktops/lxqt/lximage-qt/default.nix +++ b/pkgs/desktops/lxqt/lximage-qt/default.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lximage-qt"; description = "Image viewer and screenshot tool for lxqt"; mainProgram = "lximage-qt"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-about/default.nix b/pkgs/desktops/lxqt/lxqt-about/default.nix index 8f54b81c124d..3589471aeed3 100644 --- a/pkgs/desktops/lxqt/lxqt-about/default.nix +++ b/pkgs/desktops/lxqt/lxqt-about/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-about"; description = "Dialogue window providing information about LXQt and the system it's running on"; mainProgram = "lxqt-about"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-admin/default.nix b/pkgs/desktops/lxqt/lxqt-admin/default.nix index 6aadcee69e73..0e8850e862e9 100644 --- a/pkgs/desktops/lxqt/lxqt-admin/default.nix +++ b/pkgs/desktops/lxqt/lxqt-admin/default.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-admin"; description = "LXQt system administration tool"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-archiver/default.nix b/pkgs/desktops/lxqt/lxqt-archiver/default.nix index e3fbd1845239..c5cddf8c8df9 100644 --- a/pkgs/desktops/lxqt/lxqt-archiver/default.nix +++ b/pkgs/desktops/lxqt/lxqt-archiver/default.nix @@ -48,13 +48,13 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-archiver/"; description = "Archive tool for the LXQt desktop environment"; mainProgram = "lxqt-archiver"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; - maintainers = with maintainers; [ jchw ]; - teams = [ teams.lxqt ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + maintainers = with lib.maintainers; [ jchw ]; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-build-tools/default.nix b/pkgs/desktops/lxqt/lxqt-build-tools/default.nix index 32cf1a6aabd1..eef1fcc73ed2 100644 --- a/pkgs/desktops/lxqt/lxqt-build-tools/default.nix +++ b/pkgs/desktops/lxqt/lxqt-build-tools/default.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-build-tools"; description = "Various packaging tools and scripts for LXQt applications"; mainProgram = "lxqt-transupdate"; - license = licenses.lgpl21Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-config/default.nix b/pkgs/desktops/lxqt/lxqt-config/default.nix index 60ffcdf745a9..d05fcf85d6a0 100644 --- a/pkgs/desktops/lxqt/lxqt-config/default.nix +++ b/pkgs/desktops/lxqt/lxqt-config/default.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-config"; description = "Tools to configure LXQt and the underlying operating system"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix b/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix index 4fffc7cfcacf..87dc4f06eadd 100644 --- a/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix +++ b/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-globalkeys"; description = "LXQt service for global keyboard shortcuts registration"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-menu-data/default.nix b/pkgs/desktops/lxqt/lxqt-menu-data/default.nix index 9a01fd5dc1a4..335d257d4aae 100644 --- a/pkgs/desktops/lxqt/lxqt-menu-data/default.nix +++ b/pkgs/desktops/lxqt/lxqt-menu-data/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-menu-data"; description = "Menu files for LXQt Panel, Configuration Center and PCManFM-Qt/libfm-qt"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-notificationd/default.nix b/pkgs/desktops/lxqt/lxqt-notificationd/default.nix index dfa381ece604..d17ab9e1d88d 100644 --- a/pkgs/desktops/lxqt/lxqt-notificationd/default.nix +++ b/pkgs/desktops/lxqt/lxqt-notificationd/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-notificationd"; description = "LXQt notification daemon"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix b/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix index 9d4c22452038..06bf0e17053c 100644 --- a/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix +++ b/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-openssh-askpass"; description = "GUI to query passwords on behalf of SSH agents"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; mainProgram = "lxqt-openssh-askpass"; }; } diff --git a/pkgs/desktops/lxqt/lxqt-policykit/default.nix b/pkgs/desktops/lxqt/lxqt-policykit/default.nix index fda806a7b9ac..7a2e29a5091b 100644 --- a/pkgs/desktops/lxqt/lxqt-policykit/default.nix +++ b/pkgs/desktops/lxqt/lxqt-policykit/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-policykit"; description = "LXQt PolicyKit agent"; mainProgram = "lxqt-policykit-agent"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix b/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix index f34466040617..72cfd62dd538 100644 --- a/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix +++ b/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-powermanagement"; description = "Power management module for LXQt"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-runner/default.nix b/pkgs/desktops/lxqt/lxqt-runner/default.nix index 4c53248cac49..413226587435 100644 --- a/pkgs/desktops/lxqt/lxqt-runner/default.nix +++ b/pkgs/desktops/lxqt/lxqt-runner/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-runner"; description = "Tool used to launch programs quickly by typing their names"; mainProgram = "lxqt-runner"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-session/default.nix b/pkgs/desktops/lxqt/lxqt-session/default.nix index 647d3889e166..d1900e45717a 100644 --- a/pkgs/desktops/lxqt/lxqt-session/default.nix +++ b/pkgs/desktops/lxqt/lxqt-session/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-session"; description = "Alternative session manager ported from the original razor-session"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-sudo/default.nix b/pkgs/desktops/lxqt/lxqt-sudo/default.nix index 0f56e6889df8..494b71ea57ca 100644 --- a/pkgs/desktops/lxqt/lxqt-sudo/default.nix +++ b/pkgs/desktops/lxqt/lxqt-sudo/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-sudo"; description = "GUI frontend for sudo/su"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/lxqt-themes/default.nix b/pkgs/desktops/lxqt/lxqt-themes/default.nix index d004f4d19d32..2b2c4e151d32 100644 --- a/pkgs/desktops/lxqt/lxqt-themes/default.nix +++ b/pkgs/desktops/lxqt/lxqt-themes/default.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-themes"; description = "Themes, graphics and icons for LXQt"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/pcmanfm-qt/default.nix b/pkgs/desktops/lxqt/pcmanfm-qt/default.nix index 0e64b9e10c79..90845f83dead 100644 --- a/pkgs/desktops/lxqt/pcmanfm-qt/default.nix +++ b/pkgs/desktops/lxqt/pcmanfm-qt/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { substituteInPlace config/pcmanfm-qt/lxqt/settings.conf.in --replace-fail @LXQT_SHARE_DIR@ /run/current-system/sw/share/lxqt ''; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/pcmanfm-qt"; description = "File manager and desktop icon manager (Qt port of PCManFM and libfm)"; mainProgram = "pcmanfm-qt"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/qps/default.nix b/pkgs/desktops/lxqt/qps/default.nix index bc21f9b95447..6c31cff2d160 100644 --- a/pkgs/desktops/lxqt/qps/default.nix +++ b/pkgs/desktops/lxqt/qps/default.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/qps"; description = "Qt based process manager"; mainProgram = "qps"; - license = licenses.gpl2Plus; - platforms = with platforms; linux; # does not build on darwin - teams = [ teams.lxqt ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux; # does not build on darwin + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/qterminal/default.nix b/pkgs/desktops/lxqt/qterminal/default.nix index 502f13516799..87fd2479f5fc 100644 --- a/pkgs/desktops/lxqt/qterminal/default.nix +++ b/pkgs/desktops/lxqt/qterminal/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.qterminal; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/qterminal"; description = "Lightweight Qt-based terminal emulator"; mainProgram = "qterminal"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/qtermwidget/default.nix b/pkgs/desktops/lxqt/qtermwidget/default.nix index 75aaee511936..5616c94b6572 100644 --- a/pkgs/desktops/lxqt/qtermwidget/default.nix +++ b/pkgs/desktops/lxqt/qtermwidget/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/lxqt/qtermwidget"; description = "Terminal emulator widget for Qt, used by QTerminal"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; - teams = [ teams.lxqt ]; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/lxqt/qtxdg-tools/default.nix b/pkgs/desktops/lxqt/qtxdg-tools/default.nix index eb7c1261fa5a..6b8b39d65a32 100644 --- a/pkgs/desktops/lxqt/qtxdg-tools/default.nix +++ b/pkgs/desktops/lxqt/qtxdg-tools/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/qtxdg-tools"; description = "libqtxdg user tools"; mainProgram = "qtxdg-mat"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.lxqt ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.lxqt ]; }; } diff --git a/pkgs/desktops/mate/atril/default.nix b/pkgs/desktops/mate/atril/default.nix index ba96da66934b..cd14d171eb7b 100644 --- a/pkgs/desktops/mate/atril/default.nix +++ b/pkgs/desktops/mate/atril/default.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation rec { odd-unstable = true; }; - meta = with lib; { + meta = { description = "Simple multi-page document viewer for the MATE desktop"; homepage = "https://mate-desktop.org"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/caja-dropbox/default.nix b/pkgs/desktops/mate/caja-dropbox/default.nix index c2c21eed39bf..ea974ff28437 100644 --- a/pkgs/desktops/mate/caja-dropbox/default.nix +++ b/pkgs/desktops/mate/caja-dropbox/default.nix @@ -59,14 +59,14 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Dropbox extension for Caja file manager"; homepage = "https://github.com/mate-desktop/caja-dropbox"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-nd-30 ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/caja-extensions/default.nix b/pkgs/desktops/mate/caja-extensions/default.nix index 993711849a10..6b7e6c7a072c 100644 --- a/pkgs/desktops/mate/caja-extensions/default.nix +++ b/pkgs/desktops/mate/caja-extensions/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Set of extensions for Caja file manager"; mainProgram = "caja-sendto"; homepage = "https://mate-desktop.org"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/caja/default.nix b/pkgs/desktops/mate/caja/default.nix index ebad8f5d1809..a1f096a6bfd1 100644 --- a/pkgs/desktops/mate/caja/default.nix +++ b/pkgs/desktops/mate/caja/default.nix @@ -64,14 +64,14 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "File manager for the MATE desktop"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/engrampa/default.nix b/pkgs/desktops/mate/engrampa/default.nix index 443bcd3a237a..bf650d4ff2d7 100644 --- a/pkgs/desktops/mate/engrampa/default.nix +++ b/pkgs/desktops/mate/engrampa/default.nix @@ -57,16 +57,16 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Archive Manager for MATE"; mainProgram = "engrampa"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus fdl11Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/eom/default.nix b/pkgs/desktops/mate/eom/default.nix index e93b46a08ccb..195212917381 100644 --- a/pkgs/desktops/mate/eom/default.nix +++ b/pkgs/desktops/mate/eom/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Image viewing and cataloging program for the MATE desktop"; mainProgram = "eom"; homepage = "https://mate-desktop.org"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/libmatekbd/default.nix b/pkgs/desktops/mate/libmatekbd/default.nix index 7550712b495e..f8e62d9dc006 100644 --- a/pkgs/desktops/mate/libmatekbd/default.nix +++ b/pkgs/desktops/mate/libmatekbd/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { odd-unstable = true; }; - meta = with lib; { + meta = { description = "Keyboard management library for MATE"; homepage = "https://github.com/mate-desktop/libmatekbd"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/libmatemixer/default.nix b/pkgs/desktops/mate/libmatemixer/default.nix index 27dafe0d630c..129459d8e68d 100644 --- a/pkgs/desktops/mate/libmatemixer/default.nix +++ b/pkgs/desktops/mate/libmatemixer/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Mixer library for MATE"; homepage = "https://github.com/mate-desktop/libmatemixer"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - teams = [ teams.mate ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/libmateweather/default.nix b/pkgs/desktops/mate/libmateweather/default.nix index 5aa9e3a8fbd3..6e19e5ba8792 100644 --- a/pkgs/desktops/mate/libmateweather/default.nix +++ b/pkgs/desktops/mate/libmateweather/default.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Library to access weather information from online services for MATE"; homepage = "https://github.com/mate-desktop/libmateweather"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/marco/default.nix b/pkgs/desktops/mate/marco/default.nix index 322af8e6a192..ae92127de50c 100644 --- a/pkgs/desktops/mate/marco/default.nix +++ b/pkgs/desktops/mate/marco/default.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "MATE default window manager"; homepage = "https://github.com/mate-desktop/marco"; - license = [ licenses.gpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-applets/default.nix b/pkgs/desktops/mate/mate-applets/default.nix index 8fc32a979130..b078e5e315a3 100644 --- a/pkgs/desktops/mate/mate-applets/default.nix +++ b/pkgs/desktops/mate/mate-applets/default.nix @@ -74,15 +74,15 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Applets for use with the MATE panel"; mainProgram = "mate-cpufreq-selector"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.linux; - teams = [ teams.mate ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-backgrounds/default.nix b/pkgs/desktops/mate/mate-backgrounds/default.nix index 9e9b91767226..45525c5dab02 100644 --- a/pkgs/desktops/mate/mate-backgrounds/default.nix +++ b/pkgs/desktops/mate/mate-backgrounds/default.nix @@ -25,14 +25,14 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Background images and data for MATE"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus cc-by-sa-40 ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-calc/default.nix b/pkgs/desktops/mate/mate-calc/default.nix index 382cb7c752a0..c238bd2f4bdc 100644 --- a/pkgs/desktops/mate/mate-calc/default.nix +++ b/pkgs/desktops/mate/mate-calc/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Calculator for the MATE desktop"; homepage = "https://mate-desktop.org"; - license = [ licenses.gpl2Plus ]; - platforms = platforms.linux; - teams = [ teams.mate ]; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-common/default.nix b/pkgs/desktops/mate/mate-common/default.nix index 2d187afe8351..c9c4af42cf18 100644 --- a/pkgs/desktops/mate/mate-common/default.nix +++ b/pkgs/desktops/mate/mate-common/default.nix @@ -18,11 +18,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Common files for development of MATE packages"; homepage = "https://mate-desktop.org"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-control-center/default.nix b/pkgs/desktops/mate/mate-control-center/default.nix index 0ff0deef6bc3..294733a1e701 100644 --- a/pkgs/desktops/mate/mate-control-center/default.nix +++ b/pkgs/desktops/mate/mate-control-center/default.nix @@ -102,11 +102,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Utilities to configure the MATE desktop"; homepage = "https://github.com/mate-desktop/mate-control-center"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-desktop/default.nix b/pkgs/desktops/mate/mate-desktop/default.nix index 61b8e9d63fe3..e982d0b4a62b 100644 --- a/pkgs/desktops/mate/mate-desktop/default.nix +++ b/pkgs/desktops/mate/mate-desktop/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Library with common API for various MATE modules"; homepage = "https://mate-desktop.org"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix index d7d23f6ef240..157ed1ce2bff 100644 --- a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix +++ b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { url = "https://github.com/mate-desktop-legacy-archive/${pname}"; }; - meta = with lib; { + meta = { description = "Faenza icon theme from MATE"; homepage = "https://mate-desktop.org"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-icon-theme/default.nix b/pkgs/desktops/mate/mate-icon-theme/default.nix index bd81070193ca..c65437a95479 100644 --- a/pkgs/desktops/mate/mate-icon-theme/default.nix +++ b/pkgs/desktops/mate/mate-icon-theme/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Icon themes from MATE"; homepage = "https://mate-desktop.org"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - teams = [ teams.mate ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-indicator-applet/default.nix b/pkgs/desktops/mate/mate-indicator-applet/default.nix index 1c5a7f85df22..a8c162662c1d 100644 --- a/pkgs/desktops/mate/mate-indicator-applet/default.nix +++ b/pkgs/desktops/mate/mate-indicator-applet/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { homepage = "https://github.com/mate-desktop/mate-indicator-applet"; description = "MATE panel indicator applet"; longDescription = '' @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { Existing indicators include the Message Menu, Battery Menu and Sound menu. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-media/default.nix b/pkgs/desktops/mate/mate-media/default.nix index 4145d871b2cb..543dd244d294 100644 --- a/pkgs/desktops/mate/mate-media/default.nix +++ b/pkgs/desktops/mate/mate-media/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Media tools for MATE"; homepage = "https://mate-desktop.org"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ chpatrick ]; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ chpatrick ]; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-menus/default.nix b/pkgs/desktops/mate/mate-menus/default.nix index 501870087eaa..9a8a2c1ddcf5 100644 --- a/pkgs/desktops/mate/mate-menus/default.nix +++ b/pkgs/desktops/mate/mate-menus/default.nix @@ -39,15 +39,15 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Menu system for MATE"; homepage = "https://github.com/mate-desktop/mate-menus"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-netbook/default.nix b/pkgs/desktops/mate/mate-netbook/default.nix index 1a4d90eae1e1..7a3ae7a232f5 100644 --- a/pkgs/desktops/mate/mate-netbook/default.nix +++ b/pkgs/desktops/mate/mate-netbook/default.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "MATE utilities for netbooks"; mainProgram = "mate-maximus"; longDescription = '' @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { devices with low resolution displays. ''; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-notification-daemon/default.nix b/pkgs/desktops/mate/mate-notification-daemon/default.nix index 9c1f6b253905..90a7da31b9dc 100644 --- a/pkgs/desktops/mate/mate-notification-daemon/default.nix +++ b/pkgs/desktops/mate/mate-notification-daemon/default.nix @@ -63,15 +63,15 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Notification daemon for MATE Desktop"; mainProgram = "mate-notification-properties"; homepage = "https://github.com/mate-desktop/mate-notification-daemon"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus gpl3Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-panel/default.nix b/pkgs/desktops/mate/mate-panel/default.nix index dfd49c595617..4ecf4510330b 100644 --- a/pkgs/desktops/mate/mate-panel/default.nix +++ b/pkgs/desktops/mate/mate-panel/default.nix @@ -103,15 +103,15 @@ stdenv.mkDerivation rec { odd-unstable = true; }; - meta = with lib; { + meta = { description = "MATE panel"; homepage = "https://github.com/mate-desktop/mate-panel"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus fdl11Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-polkit/default.nix b/pkgs/desktops/mate/mate-polkit/default.nix index 61baafc75b32..0f31fb9495f7 100644 --- a/pkgs/desktops/mate/mate-polkit/default.nix +++ b/pkgs/desktops/mate/mate-polkit/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Integrates polkit authentication for MATE desktop"; homepage = "https://mate-desktop.org"; - license = [ licenses.gpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-power-manager/default.nix b/pkgs/desktops/mate/mate-power-manager/default.nix index 9e612bea20a9..4144c176e148 100644 --- a/pkgs/desktops/mate/mate-power-manager/default.nix +++ b/pkgs/desktops/mate/mate-power-manager/default.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "MATE Power Manager"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus fdl11Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ chpatrick ]; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ chpatrick ]; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-screensaver/default.nix b/pkgs/desktops/mate/mate-screensaver/default.nix index 15c908a49a65..ba9d92d9f4ae 100644 --- a/pkgs/desktops/mate/mate-screensaver/default.nix +++ b/pkgs/desktops/mate/mate-screensaver/default.nix @@ -54,14 +54,14 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Screen saver and locker for the MATE desktop"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-sensors-applet/default.nix b/pkgs/desktops/mate/mate-sensors-applet/default.nix index 4f4c9c5bcc0c..e78e3accbad0 100644 --- a/pkgs/desktops/mate/mate-sensors-applet/default.nix +++ b/pkgs/desktops/mate/mate-sensors-applet/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { homepage = "https://github.com/mate-desktop/mate-sensors-applet"; description = "MATE panel applet for hardware sensors"; - license = with licenses; [ gpl2Plus ]; - platforms = platforms.linux; - teams = [ teams.mate ]; + license = with lib.licenses; [ gpl2Plus ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-session-manager/default.nix b/pkgs/desktops/mate/mate-session-manager/default.nix index d86aa7e1029f..841f87bf2e9c 100644 --- a/pkgs/desktops/mate/mate-session-manager/default.nix +++ b/pkgs/desktops/mate/mate-session-manager/default.nix @@ -71,14 +71,14 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "MATE Desktop session manager"; homepage = "https://github.com/mate-desktop/mate-session-manager"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-settings-daemon/default.nix b/pkgs/desktops/mate/mate-settings-daemon/default.nix index 9f87fef5ea6f..f236d536ee81 100644 --- a/pkgs/desktops/mate/mate-settings-daemon/default.nix +++ b/pkgs/desktops/mate/mate-settings-daemon/default.nix @@ -66,16 +66,16 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "MATE settings daemon"; homepage = "https://github.com/mate-desktop/mate-settings-daemon"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus gpl3Plus lgpl2Plus mit ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-system-monitor/default.nix b/pkgs/desktops/mate/mate-system-monitor/default.nix index 5a0540051588..87b12ebab56b 100644 --- a/pkgs/desktops/mate/mate-system-monitor/default.nix +++ b/pkgs/desktops/mate/mate-system-monitor/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "System monitor for the MATE desktop"; mainProgram = "mate-system-monitor"; homepage = "https://mate-desktop.org"; - license = [ licenses.gpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-terminal/default.nix b/pkgs/desktops/mate/mate-terminal/default.nix index ea23df1d3fa0..6fbd2d2b50e0 100644 --- a/pkgs/desktops/mate/mate-terminal/default.nix +++ b/pkgs/desktops/mate/mate-terminal/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.mate-terminal; - meta = with lib; { + meta = { description = "MATE desktop terminal emulator"; homepage = "https://mate-desktop.org"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-themes/default.nix b/pkgs/desktops/mate/mate-themes/default.nix index 689245716b1c..dc97762db452 100644 --- a/pkgs/desktops/mate/mate-themes/default.nix +++ b/pkgs/desktops/mate/mate-themes/default.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Set of themes from MATE"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus lgpl3Only gpl3Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-tweak/default.nix b/pkgs/desktops/mate/mate-tweak/default.nix index 2c23f7c05baa..f7225cf363d0 100644 --- a/pkgs/desktops/mate/mate-tweak/default.nix +++ b/pkgs/desktops/mate/mate-tweak/default.nix @@ -77,12 +77,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Tweak tool for the MATE Desktop"; homepage = "https://github.com/ubuntu-mate/mate-tweak"; changelog = "https://github.com/ubuntu-mate/mate-tweak/releases/tag/${version}"; - license = [ licenses.gpl2Plus ]; - platforms = platforms.linux; - teams = [ teams.mate ]; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.linux; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-user-guide/default.nix b/pkgs/desktops/mate/mate-user-guide/default.nix index a532c473330e..669f10705e66 100644 --- a/pkgs/desktops/mate/mate-user-guide/default.nix +++ b/pkgs/desktops/mate/mate-user-guide/default.nix @@ -37,14 +37,14 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "MATE User Guide"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus fdl11Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-user-share/default.nix b/pkgs/desktops/mate/mate-user-share/default.nix index 77fa04193f87..91bddbab2868 100644 --- a/pkgs/desktops/mate/mate-user-share/default.nix +++ b/pkgs/desktops/mate/mate-user-share/default.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "User level public file sharing for the MATE desktop"; mainProgram = "mate-file-share-properties"; homepage = "https://github.com/mate-desktop/mate-user-share"; - license = with licenses; [ gpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = with lib.licenses; [ gpl2Plus ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-utils/default.nix b/pkgs/desktops/mate/mate-utils/default.nix index 077babd23557..6d9b724539f6 100644 --- a/pkgs/desktops/mate/mate-utils/default.nix +++ b/pkgs/desktops/mate/mate-utils/default.nix @@ -71,14 +71,14 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Utilities for the MATE desktop"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mate-wayland-session/default.nix b/pkgs/desktops/mate/mate-wayland-session/default.nix index 53601672c1b3..89ad31c18d2e 100644 --- a/pkgs/desktops/mate/mate-wayland-session/default.nix +++ b/pkgs/desktops/mate/mate-wayland-session/default.nix @@ -46,11 +46,11 @@ stdenvNoCC.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "Wayland session using Wayfire for the MATE desktop"; homepage = "https://mate-desktop.org"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/mozo/default.nix b/pkgs/desktops/mate/mozo/default.nix index a37f62e46e7d..ef4c646935fe 100644 --- a/pkgs/desktops/mate/mozo/default.nix +++ b/pkgs/desktops/mate/mozo/default.nix @@ -45,12 +45,12 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "MATE Desktop menu editor"; mainProgram = "mozo"; homepage = "https://github.com/mate-desktop/mozo"; - license = with licenses; [ lgpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = with lib.licenses; [ lgpl2Plus ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/pluma/default.nix b/pkgs/desktops/mate/pluma/default.nix index 13d03f2e0212..4b937a001e17 100644 --- a/pkgs/desktops/mate/pluma/default.nix +++ b/pkgs/desktops/mate/pluma/default.nix @@ -68,16 +68,16 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Powerful text editor for the MATE desktop"; mainProgram = "pluma"; homepage = "https://mate-desktop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus fdl11Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/mate/python-caja/default.nix b/pkgs/desktops/mate/python-caja/default.nix index 1474218da56e..a732baa0dca8 100644 --- a/pkgs/desktops/mate/python-caja/default.nix +++ b/pkgs/desktops/mate/python-caja/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - meta = with lib; { + meta = { description = "Python binding for Caja components"; homepage = "https://github.com/mate-desktop/python-caja"; - license = [ licenses.gpl2Plus ]; - platforms = platforms.unix; - teams = [ teams.mate ]; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + teams = [ lib.teams.mate ]; }; } diff --git a/pkgs/desktops/pantheon/apps/appcenter/default.nix b/pkgs/desktops/pantheon/apps/appcenter/default.nix index 8a02df89ab88..2836a3598556 100644 --- a/pkgs/desktops/pantheon/apps/appcenter/default.nix +++ b/pkgs/desktops/pantheon/apps/appcenter/default.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/elementary/appcenter"; description = "Open, pay-what-you-want app store for indie developers, designed for elementary OS"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.appcenter"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix b/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix index dffe4e965557..9c07c0bcf7b1 100644 --- a/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/elementary/calculator"; description = "Calculator app designed for elementary OS"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.calculator"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix b/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix index 9c763e477993..760942bd1b95 100644 --- a/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Desktop calendar app designed for elementary OS"; homepage = "https://github.com/elementary/calendar"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.calendar"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-camera/default.nix b/pkgs/desktops/pantheon/apps/elementary-camera/default.nix index a03bdaf89b55..3d2668cfeceb 100644 --- a/pkgs/desktops/pantheon/apps/elementary-camera/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-camera/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Camera app designed for elementary OS"; homepage = "https://github.com/elementary/camera"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.camera"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-code/default.nix b/pkgs/desktops/pantheon/apps/elementary-code/default.nix index faf3de7c06c5..d92190137f10 100644 --- a/pkgs/desktops/pantheon/apps/elementary-code/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-code/default.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Code editor designed for elementary OS"; homepage = "https://github.com/elementary/code"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.code"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix b/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix index 7613602ec31c..d35fef152300 100644 --- a/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "GitHub Issue Reporter designed for elementary OS"; homepage = "https://github.com/elementary/feedback"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.feedback"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-files/default.nix b/pkgs/desktops/pantheon/apps/elementary-files/default.nix index 3d11bbd0a94c..6bf6aa6eda61 100644 --- a/pkgs/desktops/pantheon/apps/elementary-files/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-files/default.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "File browser designed for elementary OS"; homepage = "https://github.com/elementary/files"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.files"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix b/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix index 1c81d6a6191e..f260454c815f 100644 --- a/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/elementary/iconbrowser"; description = "Browse and find system icons"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.iconbrowser"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-music/default.nix b/pkgs/desktops/pantheon/apps/elementary-music/default.nix index dbd86217c587..bc0be25477c3 100644 --- a/pkgs/desktops/pantheon/apps/elementary-music/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-music/default.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Music player and library designed for elementary OS"; homepage = "https://github.com/elementary/music"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.music"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-photos/default.nix b/pkgs/desktops/pantheon/apps/elementary-photos/default.nix index 7d5ddce5b8c8..bfc600dbf8f2 100644 --- a/pkgs/desktops/pantheon/apps/elementary-photos/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-photos/default.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Photo viewer and organizer designed for elementary OS"; homepage = "https://github.com/elementary/photos"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.photos"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-screenshot/default.nix b/pkgs/desktops/pantheon/apps/elementary-screenshot/default.nix index 522c65c5e9c1..141c494ef0d5 100644 --- a/pkgs/desktops/pantheon/apps/elementary-screenshot/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-screenshot/default.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Screenshot tool designed for elementary OS"; homepage = "https://github.com/elementary/screenshot"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.screenshot"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix b/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix index c44d20f7e5f1..757b07786fee 100644 --- a/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/elementary/tasks"; description = "Synced tasks and reminders on elementary OS"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.tasks"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix b/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix index 74960b5d1533..6c88700cdf7f 100644 --- a/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix @@ -54,16 +54,16 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Terminal emulator designed for elementary OS"; longDescription = '' A super lightweight, beautiful, and simple terminal. Comes with sane defaults, browser-class tabs, sudo paste protection, smart copy/paste, and little to no configuration. ''; homepage = "https://github.com/elementary/terminal"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.terminal"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-videos/default.nix b/pkgs/desktops/pantheon/apps/elementary-videos/default.nix index 34a3358dcff8..2bb7b67f63a5 100644 --- a/pkgs/desktops/pantheon/apps/elementary-videos/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-videos/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Video player and library app designed for elementary OS"; homepage = "https://github.com/elementary/videos"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.videos"; }; } diff --git a/pkgs/desktops/pantheon/apps/sideload/default.nix b/pkgs/desktops/pantheon/apps/sideload/default.nix index 938dcd045a4b..49549adf2471 100644 --- a/pkgs/desktops/pantheon/apps/sideload/default.nix +++ b/pkgs/desktops/pantheon/apps/sideload/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/elementary/sideload"; description = "Flatpak installer, designed for elementary OS"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.sideload"; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix index 4e9c55aeed5d..e9065b919beb 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard About Plug"; homepage = "https://github.com/elementary/settings-system"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix index 2c5fa3c8c614..b69f602fee34 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Applications Plug"; homepage = "https://github.com/elementary/settings-applications"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix index 80853ab0cf25..f806cb32ad42 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Bluetooth Plug"; homepage = "https://github.com/elementary/settings-bluetooth"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix index 4caab33a0eee..c8675eade735 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Date & Time Plug"; homepage = "https://github.com/elementary/switchboard-plug-datetime"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix index cc6a555872ce..16b8be99a8d4 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Displays Plug"; homepage = "https://github.com/elementary/settings-display"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix index 02c487cdb56b..9834d77b2e0d 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Keyboard Plug"; homepage = "https://github.com/elementary/settings-keyboard"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix index 3c7613cf34a0..340fa72d3ad4 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Mouse & Touchpad Plug"; homepage = "https://github.com/elementary/settings-mouse-touchpad"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix index f7f6d0d91685..005dd486c749 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Networking Plug"; homepage = "https://github.com/elementary/switchboard-plug-network"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix index d7f776ba971e..c9e86ccb9ec8 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Notifications Plug"; homepage = "https://github.com/elementary/settings-notifications"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix index 4f7f9006acc5..2701cbbc1197 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Online Accounts Plug"; homepage = "https://github.com/elementary/settings-onlineaccounts"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix index 40c853c35cfe..04bc0a1173fe 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Desktop Plug"; homepage = "https://github.com/elementary/settings-desktop"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix index 8f828a70040c..5901cbbe9322 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Power Plug"; homepage = "https://github.com/elementary/settings-power"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix index 83b0ae0826d3..98192f5b50a8 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Printers Plug"; homepage = "https://github.com/elementary/settings-printers"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix index 51d8af92db2d..31ee3b506ee1 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Security & Privacy Plug"; homepage = "https://github.com/elementary/settings-security-privacy"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix index 26e4075ed986..9fa77dbc8839 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Sharing Plug"; homepage = "https://github.com/elementary/switchboard-plug-sharing"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix index 4cd937e6b5fa..277c91bbe7c5 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Wacom Plug"; homepage = "https://github.com/elementary/switchboard-plug-wacom"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard/default.nix b/pkgs/desktops/pantheon/apps/switchboard/default.nix index 8a9095d20b94..3d0345dae4f4 100644 --- a/pkgs/desktops/pantheon/apps/switchboard/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard/default.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Extensible System Settings app for Pantheon"; homepage = "https://github.com/elementary/switchboard"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.settings"; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix b/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix index 2485621ef2dd..10a077260c48 100644 --- a/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix +++ b/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix @@ -38,11 +38,11 @@ stdenvNoCC.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "GTK theme designed to be smooth, attractive, fast, and usable"; homepage = "https://github.com/elementary/stylesheet"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix b/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix index 6bffd49239cb..8d7f00a51564 100644 --- a/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix +++ b/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix @@ -49,14 +49,14 @@ stdenvNoCC.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Named, vector icons for elementary OS"; longDescription = '' An original set of vector icons designed specifically for elementary OS and its desktop environment: Pantheon. ''; homepage = "https://github.com/elementary/icons"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-redacted-script/default.nix b/pkgs/desktops/pantheon/artwork/elementary-redacted-script/default.nix index 4fe57c66467c..f27b80ffe0b1 100644 --- a/pkgs/desktops/pantheon/artwork/elementary-redacted-script/default.nix +++ b/pkgs/desktops/pantheon/artwork/elementary-redacted-script/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Font for concealing text"; homepage = "https://github.com/elementary/fonts"; - license = licenses.ofl; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.ofl; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-sound-theme/default.nix b/pkgs/desktops/pantheon/artwork/elementary-sound-theme/default.nix index dc0db48cf4f9..cf58382b5406 100644 --- a/pkgs/desktops/pantheon/artwork/elementary-sound-theme/default.nix +++ b/pkgs/desktops/pantheon/artwork/elementary-sound-theme/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Set of system sounds for elementary"; homepage = "https://github.com/elementary/sound-theme"; - license = licenses.unlicense; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-wallpapers/default.nix b/pkgs/desktops/pantheon/artwork/elementary-wallpapers/default.nix index d0c77815edd6..9ecc38d90af8 100644 --- a/pkgs/desktops/pantheon/artwork/elementary-wallpapers/default.nix +++ b/pkgs/desktops/pantheon/artwork/elementary-wallpapers/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Collection of wallpapers for elementary"; homepage = "https://github.com/elementary/wallpapers"; - license = licenses.publicDomain; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/elementary-default-settings/default.nix b/pkgs/desktops/pantheon/desktop/elementary-default-settings/default.nix index 15a269cd84f9..dba91d295408 100644 --- a/pkgs/desktops/pantheon/desktop/elementary-default-settings/default.nix +++ b/pkgs/desktops/pantheon/desktop/elementary-default-settings/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Default settings and configuration files for elementary"; homepage = "https://github.com/elementary/default-settings"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix b/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix index 2858fdc042ee..0796e19867c8 100644 --- a/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix +++ b/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix @@ -120,12 +120,12 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "LightDM Greeter for Pantheon"; homepage = "https://github.com/elementary/greeter"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.greeter"; }; } diff --git a/pkgs/desktops/pantheon/desktop/elementary-onboarding/default.nix b/pkgs/desktops/pantheon/desktop/elementary-onboarding/default.nix index eb95729385f3..a33d0bde0bed 100644 --- a/pkgs/desktops/pantheon/desktop/elementary-onboarding/default.nix +++ b/pkgs/desktops/pantheon/desktop/elementary-onboarding/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Onboarding app for new users designed for elementary OS"; homepage = "https://github.com/elementary/onboarding"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.onboarding"; }; } diff --git a/pkgs/desktops/pantheon/desktop/elementary-print-shim/default.nix b/pkgs/desktops/pantheon/desktop/elementary-print-shim/default.nix index 08cac9e735bf..f59e9633d119 100644 --- a/pkgs/desktops/pantheon/desktop/elementary-print-shim/default.nix +++ b/pkgs/desktops/pantheon/desktop/elementary-print-shim/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple shim for printing support via Contractor"; homepage = "https://github.com/elementary/print"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.print"; }; } diff --git a/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix b/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix index 5fc4c8bfd7bd..837a868c8fc3 100644 --- a/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix +++ b/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Session settings for elementary"; homepage = "https://github.com/elementary/session-settings"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; }) diff --git a/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix b/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix index cfd739884d67..526c965f6927 100644 --- a/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix +++ b/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Native OS-wide shortcut overlay to be launched by Gala"; homepage = "https://github.com/elementary/shortcut-overlay"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.shortcut-overlay"; }; } diff --git a/pkgs/desktops/pantheon/desktop/file-roller-contract/default.nix b/pkgs/desktops/pantheon/desktop/file-roller-contract/default.nix index 730da8b80f2f..0ccd180b052d 100644 --- a/pkgs/desktops/pantheon/desktop/file-roller-contract/default.nix +++ b/pkgs/desktops/pantheon/desktop/file-roller-contract/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Contractor extension for File Roller"; homepage = "https://github.com/elementary/file-roller-contract"; - license = licenses.gpl3Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/pantheon/desktop/gala/default.nix b/pkgs/desktops/pantheon/desktop/gala/default.nix index 85fcbce21c47..95abbb9bef08 100644 --- a/pkgs/desktops/pantheon/desktop/gala/default.nix +++ b/pkgs/desktops/pantheon/desktop/gala/default.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Window & compositing manager based on mutter and designed by elementary for use with Pantheon"; homepage = "https://github.com/elementary/gala"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "gala"; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/a11y/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/a11y/default.nix index 949f27fbab66..2a5e52928e0a 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/a11y/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/a11y/default.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Universal Access Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-a11y"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix index adea871bc651..e5fa8569e903 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Lightweight and stylish app launcher for Pantheon"; homepage = "https://github.com/elementary/applications-menu"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix index 7af431ba1610..ce7ef5eb022e 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Bluetooth Indicator for Wingpanel"; mainProgram = "io.elementary.bluetooth"; homepage = "https://github.com/elementary/wingpanel-indicator-bluetooth"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix index 33ae7e0953b5..701ea198bcd8 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Date & Time Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-datetime"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix index b775652744db..d6d778900eb3 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Keyboard Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-keyboard"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix index 7b2c9cdb7172..af2e038869ee 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Network Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-network"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix index 13166356d66e..ad6c63ce43e9 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Night Light Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-nightlight"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix index 2e463a94ce65..fd61cad2deef 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Notifications Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-notifications"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix index c44240d5c48d..d62acd79b167 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Power Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-power"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix index b04c7a1e1c23..438d6091b47e 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Sound Indicator for Wingpanel"; homepage = "https://github.com/elementary/wingpanel-indicator-sound"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel/default.nix index bfef347d2be9..2ceb5e30c23b 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel/default.nix @@ -80,16 +80,16 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Extensible top panel for Pantheon"; longDescription = '' Wingpanel is an empty container that accepts indicators as extensions, including the applications menu. ''; homepage = "https://github.com/elementary/wingpanel"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.wingpanel"; }; } diff --git a/pkgs/desktops/pantheon/libraries/granite/7/default.nix b/pkgs/desktops/pantheon/libraries/granite/7/default.nix index a1c65b89f474..21aea0b9606d 100644 --- a/pkgs/desktops/pantheon/libraries/granite/7/default.nix +++ b/pkgs/desktops/pantheon/libraries/granite/7/default.nix @@ -60,16 +60,16 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Extension to GTK used by elementary OS"; longDescription = '' Granite is a companion library for GTK and GLib. Among other things, it provides complex widgets and convenience functions designed for use in apps built for elementary OS. ''; homepage = "https://github.com/elementary/granite"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "granite-7-demo"; }; } diff --git a/pkgs/desktops/pantheon/libraries/granite/default.nix b/pkgs/desktops/pantheon/libraries/granite/default.nix index 2596afec9435..f1893188ba39 100644 --- a/pkgs/desktops/pantheon/libraries/granite/default.nix +++ b/pkgs/desktops/pantheon/libraries/granite/default.nix @@ -55,16 +55,16 @@ stdenv.mkDerivation rec { patchShebangs meson/post_install.py ''; - meta = with lib; { + meta = { description = "Extension to GTK used by elementary OS"; longDescription = '' Granite is a companion library for GTK and GLib. Among other things, it provides complex widgets and convenience functions designed for use in apps built for elementary OS. ''; homepage = "https://github.com/elementary/granite"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "granite-demo"; }; } diff --git a/pkgs/desktops/pantheon/services/contractor/default.nix b/pkgs/desktops/pantheon/services/contractor/default.nix index 6375efd18ba1..28999fcb611a 100644 --- a/pkgs/desktops/pantheon/services/contractor/default.nix +++ b/pkgs/desktops/pantheon/services/contractor/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Desktop-wide extension service used by elementary OS"; homepage = "https://github.com/elementary/contractor"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "contractor"; }; } diff --git a/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix b/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix index 57150e1312f5..a61364360702 100644 --- a/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix +++ b/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Small WebKit app that assists a user with login when a captive portal is detected"; homepage = "https://github.com/elementary/capnet-assist"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; mainProgram = "io.elementary.capnet-assist"; }; } diff --git a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix index 94727dbc6ce1..fa96bd9e7141 100644 --- a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix +++ b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "GTK notification server for Pantheon"; homepage = "https://github.com/elementary/notifications"; - license = licenses.gpl3Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "io.elementary.notifications"; }; } diff --git a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix index 921c26f78515..e78685889584 100644 --- a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix +++ b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Settings daemon for Pantheon"; homepage = "https://github.com/elementary/settings-daemon"; - license = licenses.gpl3Plus; - teams = [ teams.pantheon ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.pantheon ]; + platforms = lib.platforms.linux; mainProgram = "io.elementary.settings-daemon"; }; } diff --git a/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix b/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix index bcc1d4ab356e..9d580c089c2a 100644 --- a/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix +++ b/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Pantheon Geoclue2 Agent"; homepage = "https://github.com/elementary/pantheon-agent-geoclue2"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix b/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix index b9cdccfbbb5a..3127c95225ec 100644 --- a/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix +++ b/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Polkit Agent for the Pantheon Desktop"; homepage = "https://github.com/elementary/pantheon-agent-polkit"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/pantheon/services/xdg-desktop-portal-pantheon/default.nix b/pkgs/desktops/pantheon/services/xdg-desktop-portal-pantheon/default.nix index 15e911e2e342..5e36e438c573 100644 --- a/pkgs/desktops/pantheon/services/xdg-desktop-portal-pantheon/default.nix +++ b/pkgs/desktops/pantheon/services/xdg-desktop-portal-pantheon/default.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Backend implementation for xdg-desktop-portal for the Pantheon desktop environment"; homepage = "https://github.com/elementary/portals"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - teams = [ teams.pantheon ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.pantheon ]; }; } diff --git a/pkgs/desktops/xfce/applications/catfish/default.nix b/pkgs/desktops/xfce/applications/catfish/default.nix index 0102a1241999..9a499fe47c3e 100644 --- a/pkgs/desktops/xfce/applications/catfish/default.nix +++ b/pkgs/desktops/xfce/applications/catfish/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "catfish-"; }; - meta = with lib; { + meta = { homepage = "https://docs.xfce.org/apps/catfish/start"; description = "Handy file search tool"; mainProgram = "catfish"; @@ -69,8 +69,8 @@ stdenv.mkDerivation (finalAttrs: { You can configure it to your needs by using several command line options. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.xfce ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.xfce ]; }; }) diff --git a/pkgs/desktops/xfce/applications/orage/default.nix b/pkgs/desktops/xfce/applications/orage/default.nix index 29c036561481..4e748dc96620 100644 --- a/pkgs/desktops/xfce/applications/orage/default.nix +++ b/pkgs/desktops/xfce/applications/orage/default.nix @@ -31,9 +31,9 @@ mkXfceDerivation { substituteInPlace src/tz_zoneinfo_read.c --replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo" ''; - meta = with lib; { + meta = { description = "Simple calendar application for Xfce"; mainProgram = "orage"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/applications/xfce4-notifyd/default.nix b/pkgs/desktops/xfce/applications/xfce4-notifyd/default.nix index e5752fea1ae9..6a24099dd482 100644 --- a/pkgs/desktops/xfce/applications/xfce4-notifyd/default.nix +++ b/pkgs/desktops/xfce/applications/xfce4-notifyd/default.nix @@ -43,9 +43,9 @@ mkXfceDerivation { "--enable-sound" ]; - meta = with lib; { + meta = { description = "Simple notification daemon for Xfce"; mainProgram = "xfce4-notifyd-config"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/art/xfce4-icon-theme/default.nix b/pkgs/desktops/xfce/art/xfce4-icon-theme/default.nix index 33de58105de6..1f8e47c51021 100644 --- a/pkgs/desktops/xfce/art/xfce4-icon-theme/default.nix +++ b/pkgs/desktops/xfce/art/xfce4-icon-theme/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { url = "https://archive.xfce.org/src/art/${pname}"; }; - meta = with lib; { + meta = { homepage = "https://www.xfce.org/"; description = "Icons for Xfce"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - teams = [ teams.xfce ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/art/xfwm4-themes/default.nix b/pkgs/desktops/xfce/art/xfwm4-themes/default.nix index de2f2eeb294a..a16564522fef 100644 --- a/pkgs/desktops/xfce/art/xfwm4-themes/default.nix +++ b/pkgs/desktops/xfce/art/xfwm4-themes/default.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { url = "https://archive.xfce.org/src/art/${pname}"; }; - meta = with lib; { + meta = { homepage = "https://www.xfce.org/"; description = "Themes for Xfce"; - license = licenses.gpl3Only; - platforms = platforms.linux; - teams = [ teams.xfce ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/exo/default.nix b/pkgs/desktops/xfce/core/exo/default.nix index 99cf8cf46102..1071730d2634 100644 --- a/pkgs/desktops/xfce/core/exo/default.nix +++ b/pkgs/desktops/xfce/core/exo/default.nix @@ -30,8 +30,8 @@ mkXfceDerivation { libxfce4util ]; - meta = with lib; { + meta = { description = "Application library for Xfce"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/garcon/default.nix b/pkgs/desktops/xfce/core/garcon/default.nix index 7c6a0b23c98d..54bd89e0b3e2 100644 --- a/pkgs/desktops/xfce/core/garcon/default.nix +++ b/pkgs/desktops/xfce/core/garcon/default.nix @@ -29,12 +29,12 @@ mkXfceDerivation { libxfce4util ]; - meta = with lib; { + meta = { description = "Xfce menu support library"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Only fdl11Only ]; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/libxfce4ui/default.nix b/pkgs/desktops/xfce/core/libxfce4ui/default.nix index 31a4272dc211..61b35a9ca7a4 100644 --- a/pkgs/desktops/xfce/core/libxfce4ui/default.nix +++ b/pkgs/desktops/xfce/core/libxfce4ui/default.nix @@ -54,13 +54,13 @@ mkXfceDerivation { "--with-vendor-info=NixOS" ]; - meta = with lib; { + meta = { description = "Widgets library for Xfce"; mainProgram = "xfce4-about"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus lgpl21Plus ]; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/libxfce4util/default.nix b/pkgs/desktops/xfce/core/libxfce4util/default.nix index 2a18289706b9..f7f78be6221c 100644 --- a/pkgs/desktops/xfce/core/libxfce4util/default.nix +++ b/pkgs/desktops/xfce/core/libxfce4util/default.nix @@ -35,10 +35,10 @@ mkXfceDerivation { patchShebangs xdt-gen-visibility ''; - meta = with lib; { + meta = { description = "Extension library for Xfce"; mainProgram = "xfce4-kiosk-query"; - license = licenses.lgpl2Plus; - teams = [ teams.xfce ]; + license = lib.licenses.lgpl2Plus; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/thunar-volman/default.nix b/pkgs/desktops/xfce/core/thunar-volman/default.nix index d410a246c021..42eeaba2aec1 100644 --- a/pkgs/desktops/xfce/core/thunar-volman/default.nix +++ b/pkgs/desktops/xfce/core/thunar-volman/default.nix @@ -27,8 +27,8 @@ mkXfceDerivation { odd-unstable = false; - meta = with lib; { + meta = { description = "Thunar extension for automatic management of removable drives and media"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/thunar/default.nix b/pkgs/desktops/xfce/core/thunar/default.nix index 1433a9e18a11..777a87e487cf 100644 --- a/pkgs/desktops/xfce/core/thunar/default.nix +++ b/pkgs/desktops/xfce/core/thunar/default.nix @@ -69,9 +69,9 @@ mkXfceDerivation { ) ''; - meta = with lib; { + meta = { description = "Xfce file manager"; mainProgram = "thunar"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/tumbler/default.nix b/pkgs/desktops/xfce/core/tumbler/default.nix index ff7b9cceda6e..2817bcfaa319 100644 --- a/pkgs/desktops/xfce/core/tumbler/default.nix +++ b/pkgs/desktops/xfce/core/tumbler/default.nix @@ -58,8 +58,8 @@ mkXfceDerivation { wrapGApp $out/lib/tumbler-1/tumblerd ''; - meta = with lib; { + meta = { description = "D-Bus thumbnailer service"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfce4-appfinder/default.nix b/pkgs/desktops/xfce/core/xfce4-appfinder/default.nix index f42997889265..2ebe6fea6c8a 100644 --- a/pkgs/desktops/xfce/core/xfce4-appfinder/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-appfinder/default.nix @@ -25,8 +25,8 @@ mkXfceDerivation { xfconf ]; - meta = with lib; { + meta = { description = "Appfinder for the Xfce4 Desktop Environment"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfce4-dev-tools/default.nix b/pkgs/desktops/xfce/core/xfce4-dev-tools/default.nix index 679e16782c7c..aeca6fa97280 100644 --- a/pkgs/desktops/xfce/core/xfce4-dev-tools/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-dev-tools/default.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation (finalAttrs: { odd-unstable = true; }; - meta = with lib; { + meta = { homepage = "https://gitlab.xfce.org/xfce/xfce4-dev-tools"; description = "Autoconf macros and scripts to augment app build systems"; - license = licenses.gpl2Plus; - teams = [ teams.xfce ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.xfce ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/xfce/core/xfce4-panel/default.nix b/pkgs/desktops/xfce/core/xfce4-panel/default.nix index 03bf0bac5d42..d7873ab66722 100644 --- a/pkgs/desktops/xfce/core/xfce4-panel/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-panel/default.nix @@ -65,8 +65,8 @@ mkXfceDerivation { --replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo" ''; - meta = with lib; { + meta = { description = "Panel for the Xfce desktop environment"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfce4-power-manager/default.nix b/pkgs/desktops/xfce/core/xfce4-power-manager/default.nix index 10dfac064a8a..3ab492ea7d01 100644 --- a/pkgs/desktops/xfce/core/xfce4-power-manager/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-power-manager/default.nix @@ -46,8 +46,8 @@ mkXfceDerivation { substituteInPlace src/xfpm-suspend.c --replace-fail "SBINDIR" "\"/run/current-system/sw/bin\"" ''; - meta = with lib; { + meta = { description = "Power manager for the Xfce Desktop Environment"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfce4-session/default.nix b/pkgs/desktops/xfce/core/xfce4-session/default.nix index 344a88951036..5c4669f4adb5 100644 --- a/pkgs/desktops/xfce/core/xfce4-session/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-session/default.nix @@ -43,8 +43,8 @@ mkXfceDerivation { passthru.xinitrc = "${xfce4-session}/etc/xdg/xfce4/xinitrc"; - meta = with lib; { + meta = { description = "Session manager for Xfce"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfce4-settings/default.nix b/pkgs/desktops/xfce/core/xfce4-settings/default.nix index 46a1ac5cc5e3..c4df65645e02 100644 --- a/pkgs/desktops/xfce/core/xfce4-settings/default.nix +++ b/pkgs/desktops/xfce/core/xfce4-settings/default.nix @@ -63,8 +63,8 @@ mkXfceDerivation { ++ lib.optionals withUpower [ "--enable-upower-glib" ] ++ lib.optionals withColord [ "--enable-colord" ]; - meta = with lib; { + meta = { description = "Settings manager for Xfce"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfconf/default.nix b/pkgs/desktops/xfce/core/xfconf/default.nix index 7de2216a9b27..dd2fdaf4b3cd 100644 --- a/pkgs/desktops/xfce/core/xfconf/default.nix +++ b/pkgs/desktops/xfce/core/xfconf/default.nix @@ -32,9 +32,9 @@ mkXfceDerivation { propagatedBuildInputs = [ glib ]; - meta = with lib; { + meta = { description = "Simple client-server configuration storage and query system for Xfce"; mainProgram = "xfconf-query"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfdesktop/default.nix b/pkgs/desktops/xfce/core/xfdesktop/default.nix index 333c5005fb5c..9f358cc889e9 100644 --- a/pkgs/desktops/xfce/core/xfdesktop/default.nix +++ b/pkgs/desktops/xfce/core/xfdesktop/default.nix @@ -35,8 +35,8 @@ mkXfceDerivation { thunar ]; - meta = with lib; { + meta = { description = "Xfce's desktop manager"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/core/xfwm4/default.nix b/pkgs/desktops/xfce/core/xfwm4/default.nix index 6455d3bf407c..0f16ff15e32b 100644 --- a/pkgs/desktops/xfce/core/xfwm4/default.nix +++ b/pkgs/desktops/xfce/core/xfwm4/default.nix @@ -40,8 +40,8 @@ mkXfceDerivation { xfconf ]; - meta = with lib; { + meta = { description = "Window manager for Xfce"; - teams = [ teams.xfce ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/mkXfceDerivation.nix b/pkgs/desktops/xfce/mkXfceDerivation.nix index 4b38d62d5934..b57110f091a9 100644 --- a/pkgs/desktops/xfce/mkXfceDerivation.nix +++ b/pkgs/desktops/xfce/mkXfceDerivation.nix @@ -76,11 +76,11 @@ let // passthru; meta = - with lib; + { homepage = "https://gitlab.xfce.org/${category}/${pname}"; - license = licenses.gpl2Plus; # some libraries are under LGPLv2+ - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; # some libraries are under LGPLv2+ + platforms = lib.platforms.linux; } // meta; }; diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix index 04c9ca7dc66c..3df3819740f2 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { wrapPythonProgramsIn "$out/share/dockbarx" "$out $pythonPath" ''; - meta = with lib; { + meta = { homepage = "https://github.com/xuzhen/xfce4-dockbarx-plugin"; description = "Plugins to embed DockbarX into xfce4-panel"; - license = licenses.mit; - platforms = platforms.linux; - teams = [ teams.xfce ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-i3-workspaces-plugin/default.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-i3-workspaces-plugin/default.nix index 048f75f87d0a..cffdb404c097 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-i3-workspaces-plugin/default.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-i3-workspaces-plugin/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/denesb/xfce4-i3-workspaces-plugin"; description = "Workspace switcher plugin for xfce4-panel which can be used for the i3 window manager"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ berbiche ]; - teams = [ teams.xfce ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ berbiche ]; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix b/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix index 822c9d837fd8..f4020c7e0f4a 100644 --- a/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix +++ b/pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/Jeinzi/thunar-dropbox"; description = "Plugin that adds context-menu items for Dropbox to Thunar"; - license = licenses.gpl3Only; - platforms = platforms.linux; - teams = [ teams.xfce ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + teams = [ lib.teams.xfce ]; }; } diff --git a/pkgs/development/ada-modules/gnatcoll/bindings.nix b/pkgs/development/ada-modules/gnatcoll/bindings.nix index 5ce297ca684e..a370cc5f015e 100644 --- a/pkgs/development/ada-modules/gnatcoll/bindings.nix +++ b/pkgs/development/ada-modules/gnatcoll/bindings.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "GNAT Components Collection - Bindings to C libraries"; homepage = "https://github.com/AdaCore/gnatcoll-bindings"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ada-modules/gnatcoll/core.nix b/pkgs/development/ada-modules/gnatcoll/core.nix index 015c2e54e276..4e8e8b6c2e8e 100644 --- a/pkgs/development/ada-modules/gnatcoll/core.nix +++ b/pkgs/development/ada-modules/gnatcoll/core.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/AdaCore/gnatcoll-core"; description = "GNAT Components Collection - Core packages"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.sternenseemann ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.sternenseemann ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/ada-modules/gnatcoll/db.nix b/pkgs/development/ada-modules/gnatcoll/db.nix index e124d1159666..d24791fcf40b 100644 --- a/pkgs/development/ada-modules/gnatcoll/db.nix +++ b/pkgs/development/ada-modules/gnatcoll/db.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation rec { "GNATCOLL_SQLITE=external" ]; - meta = with lib; { + meta = { description = "GNAT Components Collection - Database packages"; homepage = "https://github.com/AdaCore/gnatcoll-db"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.sternenseemann ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.sternenseemann ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/ada-modules/gnatprove/default.nix b/pkgs/development/ada-modules/gnatprove/default.nix index cd835b0e5e59..a64c38918c8f 100644 --- a/pkgs/development/ada-modules/gnatprove/default.nix +++ b/pkgs/development/ada-modules/gnatprove/default.nix @@ -163,11 +163,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Software development technology specifically designed for engineering high-reliability applications"; homepage = "https://github.com/AdaCore/spark2014"; - maintainers = [ maintainers.jiegec ]; - license = licenses.gpl3; - platforms = platforms.all; + maintainers = [ lib.maintainers.jiegec ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/ada-modules/gpr2/default.nix b/pkgs/development/ada-modules/gpr2/default.nix index 7448d251a692..f984a0892f3f 100644 --- a/pkgs/development/ada-modules/gpr2/default.nix +++ b/pkgs/development/ada-modules/gpr2/default.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation rec { gnatcoll-iconv ]; - meta = with lib; { + meta = { description = "Framework for analyzing the GNAT Project (GPR) files"; homepage = "https://github.com/AdaCore/gpr"; - license = with licenses; [ + license = with lib.licenses; [ asl20 gpl3Only ]; - maintainers = with maintainers; [ heijligen ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ heijligen ]; + platforms = lib.platforms.all; # TODO(@sternenseemann): investigate failure with gnat 13 broken = lib.versionOlder gnat.version "14"; }; diff --git a/pkgs/development/ada-modules/gprbuild/boot.nix b/pkgs/development/ada-modules/gprbuild/boot.nix index 99eec758a156..3ba3c4e52daa 100644 --- a/pkgs/development/ada-modules/gprbuild/boot.nix +++ b/pkgs/development/ada-modules/gprbuild/boot.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Multi-language extensible build tool"; homepage = "https://github.com/AdaCore/gprbuild"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.sternenseemann ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.sternenseemann ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/ada-modules/xmlada/default.nix b/pkgs/development/ada-modules/xmlada/default.nix index 987fef8c8fe7..24a08a603955 100644 --- a/pkgs/development/ada-modules/xmlada/default.nix +++ b/pkgs/development/ada-modules/xmlada/default.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { gprbuild-boot ]; - meta = with lib; { + meta = { description = "XML/Ada: An XML parser for Ada"; homepage = "https://github.com/AdaCore/xmlada"; - maintainers = [ maintainers.sternenseemann ]; - license = licenses.gpl3Plus; - platforms = platforms.all; + maintainers = [ lib.maintainers.sternenseemann ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/beam-modules/elixir-ls/default.nix b/pkgs/development/beam-modules/elixir-ls/default.nix index 86fc4a91b1c2..067c907e31cc 100644 --- a/pkgs/development/beam-modules/elixir-ls/default.nix +++ b/pkgs/development/beam-modules/elixir-ls/default.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/elixir-lsp/elixir-ls"; changelog = "https://github.com/elixir-lsp/elixir-ls/releases/tag/v${version}"; description = '' @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { It adheres to the Language Server Protocol, a standard for frontend-independent IDE support. Debugger integration is accomplished through the similar VS Code Debug Protocol. ''; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "elixir-ls"; - teams = [ teams.beam ]; + teams = [ lib.teams.beam ]; }; passthru.updateScript = nix-update-script { }; } diff --git a/pkgs/development/beam-modules/erlfmt/default.nix b/pkgs/development/beam-modules/erlfmt/default.nix index 79a3cd67d698..0108e42710fe 100644 --- a/pkgs/development/beam-modules/erlfmt/default.nix +++ b/pkgs/development/beam-modules/erlfmt/default.nix @@ -16,12 +16,12 @@ rebar3Relx rec { tag = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/WhatsApp/erlfmt"; description = "Automated code formatter for Erlang"; mainProgram = "erlfmt"; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ dlesl ]; }; } diff --git a/pkgs/development/beam-modules/ex_doc/default.nix b/pkgs/development/beam-modules/ex_doc/default.nix index ee6733e38581..882951a8ee40 100644 --- a/pkgs/development/beam-modules/ex_doc/default.nix +++ b/pkgs/development/beam-modules/ex_doc/default.nix @@ -50,14 +50,14 @@ mixRelease { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/elixir-lang/ex_doc"; description = '' ExDoc produces HTML and EPUB documentation for Elixir projects ''; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "ex_doc"; - maintainers = with maintainers; [ chiroptical ]; + maintainers = with lib.maintainers; [ chiroptical ]; }; } diff --git a/pkgs/development/compilers/binaryen/default.nix b/pkgs/development/compilers/binaryen/default.nix index 6c3d79e685c1..1752e5a2cf3a 100644 --- a/pkgs/development/compilers/binaryen/default.nix +++ b/pkgs/development/compilers/binaryen/default.nix @@ -80,15 +80,15 @@ stdenv.mkDerivation rec { doCheck = (stdenv.hostPlatform.isLinux || stdenv.hostPlatform.isDarwin); - meta = with lib; { + meta = { homepage = "https://github.com/WebAssembly/binaryen"; description = "Compiler infrastructure and toolchain library for WebAssembly, in C++"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ asppsa willcohen ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; passthru.tests = { inherit emscripten; }; } diff --git a/pkgs/development/compilers/c0/default.nix b/pkgs/development/compilers/c0/default.nix index 52acec98cef8..0316fcc64b2a 100644 --- a/pkgs/development/compilers/c0/default.nix +++ b/pkgs/development/compilers/c0/default.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { url = "https://bitbucket.org/c0-lang/c0.git"; }; - meta = with lib; { + meta = { description = "Small safe subset of the C programming language, augmented with contracts"; homepage = "https://c0.cs.cmu.edu/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # line 1: ../../bin/wrappergen: cannot execute: required file not found # make[2]: *** [../../lib.mk:83: broken = stdenv.hostPlatform.isLinux; diff --git a/pkgs/development/compilers/ccl/default.nix b/pkgs/development/compilers/ccl/default.nix index 4c5b69debedc..0881446f1e2d 100644 --- a/pkgs/development/compilers/ccl/default.nix +++ b/pkgs/development/compilers/ccl/default.nix @@ -113,7 +113,7 @@ stdenv.mkDerivation rec { broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64); description = "Clozure Common Lisp"; homepage = "https://ccl.clozure.com/"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "ccl"; teams = [ lib.teams.lisp ]; platforms = attrNames options; diff --git a/pkgs/development/compilers/cmucl/binary.nix b/pkgs/development/compilers/cmucl/binary.nix index 7c50e4ca7321..d96e78942b15 100644 --- a/pkgs/development/compilers/cmucl/binary.nix +++ b/pkgs/development/compilers/cmucl/binary.nix @@ -57,10 +57,10 @@ stdenv.mkDerivation (finalAttrs: { $out/bin/lisp ''; - meta = with lib; { + meta = { description = "CMU implementation of Common Lisp"; homepage = "http://www.cons.org/cmucl/"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; longDescription = '' CMUCL is a free implementation of the Common Lisp programming language which runs on most major Unix platforms. It mainly conforms to the diff --git a/pkgs/development/compilers/crystal/default.nix b/pkgs/development/compilers/crystal/default.nix index 30c53688cbeb..b7fe92c4597d 100644 --- a/pkgs/development/compilers/crystal/default.nix +++ b/pkgs/development/compilers/crystal/default.nix @@ -267,13 +267,13 @@ let }; passthru.llvmPackages = llvmPackages; - meta = with lib; { + meta = { inherit (binary.meta) platforms; description = "Compiled language with Ruby like syntax and type inference"; mainProgram = "crystal"; homepage = "https://crystal-lang.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ david50407 manveru peterhoeg diff --git a/pkgs/development/compilers/dotnet/build-dotnet.nix b/pkgs/development/compilers/dotnet/build-dotnet.nix index 4d0568228c4e..13e47c95b320 100644 --- a/pkgs/development/compilers/dotnet/build-dotnet.nix +++ b/pkgs/development/compilers/dotnet/build-dotnet.nix @@ -217,11 +217,11 @@ mkWrapper type ( } ); - meta = with lib; { + meta = { description = builtins.getAttr type descriptions; homepage = "https://dotnet.github.io/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kuznero mdarocha corngood diff --git a/pkgs/development/compilers/dotnet/vmr.nix b/pkgs/development/compilers/dotnet/vmr.nix index 5e14f6cdd0f5..f5a0dfdc681c 100644 --- a/pkgs/development/compilers/dotnet/vmr.nix +++ b/pkgs/development/compilers/dotnet/vmr.nix @@ -500,11 +500,11 @@ stdenv.mkDerivation rec { hasILCompiler = lib.versionAtLeast version "9"; }; - meta = with lib; { + meta = { description = "Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI"; homepage = "https://dotnet.github.io/"; - license = licenses.mit; - maintainers = with maintainers; [ corngood ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ corngood ]; mainProgram = "dotnet"; platforms = [ "x86_64-linux" diff --git a/pkgs/development/compilers/ecl/16.1.2.nix b/pkgs/development/compilers/ecl/16.1.2.nix index cceb45cce1e9..f1b4337f9e07 100644 --- a/pkgs/development/compilers/ecl/16.1.2.nix +++ b/pkgs/development/compilers/ecl/16.1.2.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation rec { --prefix NIX_LDFLAGS_BEFORE_${gcc.bintools.suffixSalt} ' ' "-L${lib.getLib libffi}/lib" ''; - meta = with lib; { + meta = { description = "Lisp implementation aiming to be small, fast and easy to embed"; - license = licenses.mit; + license = lib.licenses.mit; teams = [ lib.teams.lisp ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/development/compilers/ecl/default.nix b/pkgs/development/compilers/ecl/default.nix index 644ce3cc6be6..05209f0814a4 100644 --- a/pkgs/development/compilers/ecl/default.nix +++ b/pkgs/development/compilers/ecl/default.nix @@ -90,13 +90,13 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Lisp implementation aiming to be small, fast and easy to embed"; homepage = "https://common-lisp.net/project/ecl/"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "ecl"; teams = [ lib.teams.lisp ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; changelog = "https://gitlab.com/embeddable-common-lisp/ecl/-/raw/${version}/CHANGELOG"; }; } diff --git a/pkgs/development/compilers/elm/packages/lamdera/default.nix b/pkgs/development/compilers/elm/packages/lamdera/default.nix index 2deac822a95a..06f0624da630 100644 --- a/pkgs/development/compilers/elm/packages/lamdera/default.nix +++ b/pkgs/development/compilers/elm/packages/lamdera/default.nix @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { install -m755 -D $src $out/bin/lamdera ''; - meta = with lib; { + meta = { homepage = "https://lamdera.com"; - license = licenses.unfree; + license = lib.licenses.unfree; description = "Delightful platform for full-stack web apps"; platforms = [ "aarch64-linux" @@ -40,6 +40,6 @@ stdenv.mkDerivation rec { "aarch64-darwin" "x86_64-darwin" ]; - maintainers = with maintainers; [ Zimmi48 ]; + maintainers = with lib.maintainers; [ Zimmi48 ]; }; } diff --git a/pkgs/development/compilers/emscripten/default.nix b/pkgs/development/compilers/emscripten/default.nix index f2605d7d4d0d..910be8e3417d 100644 --- a/pkgs/development/compilers/emscripten/default.nix +++ b/pkgs/development/compilers/emscripten/default.nix @@ -162,15 +162,15 @@ stdenv.mkDerivation rec { bintools = emscripten; }; - meta = with lib; { + meta = { homepage = "https://github.com/emscripten-core/emscripten"; description = "LLVM-to-JavaScript Compiler"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ qknight raitobezarius willcohen ]; - license = licenses.ncsa; + license = lib.licenses.ncsa; }; } diff --git a/pkgs/development/compilers/factor-lang/factor99.nix b/pkgs/development/compilers/factor-lang/factor99.nix index efa1b991676d..29c7013d50a4 100644 --- a/pkgs/development/compilers/factor-lang/factor99.nix +++ b/pkgs/development/compilers/factor-lang/factor99.nix @@ -220,7 +220,7 @@ stdenv.mkDerivation { withLibs = wrapFactor; }; - meta = with lib; { + meta = { homepage = "https://factorcode.org/"; description = "Concatenative, stack-based programming language"; longDescription = '' @@ -236,9 +236,9 @@ stdenv.mkDerivation { on all platforms. Full source code for the Factor project is available under a BSD license. ''; - license = licenses.bsd2; - maintainers = with maintainers; [ spacefrogg ]; - platforms = lib.intersectLists platforms.x86_64 platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ spacefrogg ]; + platforms = lib.intersectLists lib.platforms.x86_64 lib.platforms.linux; mainProgram = "factor"; }; } diff --git a/pkgs/development/compilers/factor-lang/unwrapped.nix b/pkgs/development/compilers/factor-lang/unwrapped.nix index b00eff2c764a..e7bdf2bc94b8 100644 --- a/pkgs/development/compilers/factor-lang/unwrapped.nix +++ b/pkgs/development/compilers/factor-lang/unwrapped.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://factorcode.org/"; description = "Concatenative, stack-based programming language"; longDescription = '' @@ -100,8 +100,8 @@ stdenv.mkDerivation (finalAttrs: { on all platforms. Full source code for the Factor project is available under a BSD license. ''; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ vrthra spacefrogg ]; diff --git a/pkgs/development/compilers/fbc/default.nix b/pkgs/development/compilers/fbc/default.nix index 3b92dfa9ff5d..0f98fd12bef4 100644 --- a/pkgs/development/compilers/fbc/default.nix +++ b/pkgs/development/compilers/fbc/default.nix @@ -127,7 +127,7 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://www.freebasic.net/"; description = "Multi-platform BASIC Compiler"; mainProgram = "fbc"; @@ -137,8 +137,8 @@ stdenv.mkDerivation rec { such as pointers, object orientation, unsigned data types, inline assembly, and many others. ''; - license = licenses.gpl2Plus; # runtime & graphics libraries are LGPLv2+ w/ static linking exception - maintainers = with maintainers; [ OPNA2608 ]; - platforms = with platforms; windows ++ linux; + license = lib.licenses.gpl2Plus; # runtime & graphics libraries are LGPLv2+ w/ static linking exception + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = with lib.platforms; windows ++ linux; }; } diff --git a/pkgs/development/compilers/fbc/mac-bin.nix b/pkgs/development/compilers/fbc/mac-bin.nix index 66f53c7bac13..39e8cf5fd72b 100644 --- a/pkgs/development/compilers/fbc/mac-bin.nix +++ b/pkgs/development/compilers/fbc/mac-bin.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://rpg.hamsterrepublic.com/ohrrpgce/Compiling_in_Mac_OS_X"; description = "FreeBASIC, a multi-platform BASIC Compiler (precompiled Darwin build by OHRRPGCE team)"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.gpl2Plus; # runtime & graphics libraries are LGPLv2+ w/ static linking exception - maintainers = with maintainers; [ OPNA2608 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.gpl2Plus; # runtime & graphics libraries are LGPLv2+ w/ static linking exception + maintainers = with lib.maintainers; [ OPNA2608 ]; platforms = [ "x86_64-darwin" ]; }; } diff --git a/pkgs/development/compilers/fpc/default.nix b/pkgs/development/compilers/fpc/default.nix index 7cef2840a902..4d7b8870b576 100644 --- a/pkgs/development/compilers/fpc/default.nix +++ b/pkgs/development/compilers/fpc/default.nix @@ -99,15 +99,15 @@ stdenv.mkDerivation rec { bootstrap = startFPC; }; - meta = with lib; { + meta = { description = "Free Pascal Compiler from a source distribution"; homepage = "https://www.freepascal.org"; - maintainers = [ maintainers.raskin ]; - license = with licenses; [ + maintainers = [ lib.maintainers.raskin ]; + license = with lib.licenses; [ gpl2 lgpl2 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # See: # * # * diff --git a/pkgs/development/compilers/fpc/lazarus.nix b/pkgs/development/compilers/fpc/lazarus.nix index aa14ec3336a7..5526d7b94f8d 100644 --- a/pkgs/development/compilers/fpc/lazarus.nix +++ b/pkgs/development/compilers/fpc/lazarus.nix @@ -145,11 +145,11 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Graphical IDE for the FreePascal language"; homepage = "https://www.lazarus.freepascal.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/compilers/fpc/libqtpas.nix b/pkgs/development/compilers/fpc/libqtpas.nix index 10169f14eb9d..19b561de532c 100644 --- a/pkgs/development/compilers/fpc/libqtpas.nix +++ b/pkgs/development/compilers/fpc/libqtpas.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Free Pascal Qt${qtVersion} binding library"; homepage = "https://wiki.freepascal.org/Qt${qtVersion}_Interface" + lib.optionalString (qtVersion == "5") "#libqt5pas"; - maintainers = with maintainers; [ sikmir ]; + maintainers = with lib.maintainers; [ sikmir ]; inherit (lazarus.meta) license platforms; }; } diff --git a/pkgs/development/compilers/gambit/gambit-support.nix b/pkgs/development/compilers/gambit/gambit-support.nix index c85aa26489dc..ce1d14411ed2 100644 --- a/pkgs/development/compilers/gambit/gambit-support.nix +++ b/pkgs/development/compilers/gambit/gambit-support.nix @@ -30,14 +30,14 @@ rec { gambit-bootstrap = import ./bootstrap.nix pkgs; - meta = with lib; { + meta = { description = "Optimizing Scheme to C compiler"; homepage = "http://gambitscheme.org"; - license = licenses.lgpl21Only; # dual, also asl20 + license = lib.licenses.lgpl21Only; # dual, also asl20 # NB regarding platforms: continuously tested on Linux x86_64 and regularly tested on macOS x86_64. # *should* work everywhere. - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice raskin fare diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix index 304d9d3159f5..e2cfe84edac4 100644 --- a/pkgs/development/compilers/gcl/default.nix +++ b/pkgs/development/compilers/gcl/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { "--enable-ansi" ]; - meta = with lib; { + meta = { description = "GNU Common Lisp compiler working via GCC"; mainProgram = "gcl"; teams = [ lib.teams.lisp ]; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; broken = true; # 2025-01-21; to check after 2.7.0 is tagged }; } diff --git a/pkgs/development/compilers/gerbil/ftw.nix b/pkgs/development/compilers/gerbil/ftw.nix index c445d11b3aa3..bf490a947828 100644 --- a/pkgs/development/compilers/gerbil/ftw.nix +++ b/pkgs/development/compilers/gerbil/ftw.nix @@ -22,11 +22,11 @@ sha256 = "04164190vv1fzfk014mgqqmy5cml5amh63df31q2yc2kzvfajfc3"; }; - meta = with lib; { + meta = { description = "Simple web handlers for Gerbil Scheme"; homepage = "https://github.com/drewc/ftw"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/gerbil-crypto.nix b/pkgs/development/compilers/gerbil/gerbil-crypto.nix index e388994bc57d..76a5661c4afa 100644 --- a/pkgs/development/compilers/gerbil/gerbil-crypto.nix +++ b/pkgs/development/compilers/gerbil/gerbil-crypto.nix @@ -28,11 +28,11 @@ sha256 = "1jdfz5x24dfvpwyfxalkhv83gf9ylyaqii1kg8rjl8dzickawrix"; }; - meta = with lib; { + meta = { description = "Gerbil Crypto: Extra Cryptographic Primitives for Gerbil"; homepage = "https://github.com/fare/gerbil-crypto"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/gerbil-ethereum.nix b/pkgs/development/compilers/gerbil/gerbil-ethereum.nix index 80e4ad62a855..7afac3b676a1 100644 --- a/pkgs/development/compilers/gerbil/gerbil-ethereum.nix +++ b/pkgs/development/compilers/gerbil/gerbil-ethereum.nix @@ -52,11 +52,11 @@ rec { chmod a+x $out/bin/run-ethereum-test-net ''; - meta = with lib; { + meta = { description = "Gerbil Ethereum: a Scheme alternative to web3.js"; homepage = "https://github.com/fare/gerbil-ethereum"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/gerbil-leveldb.nix b/pkgs/development/compilers/gerbil/gerbil-leveldb.nix index eb980627b5ab..d5adf82acac1 100644 --- a/pkgs/development/compilers/gerbil/gerbil-leveldb.nix +++ b/pkgs/development/compilers/gerbil/gerbil-leveldb.nix @@ -25,12 +25,12 @@ sha256 = "177zn1smv2zq97mlryf8fi7v5gbjk07v5i0dix3r2wsanphaawvl"; }; - meta = with lib; { + meta = { description = "LevelDB bindings for Gerbil"; homepage = "https://github.com/mighty-gerbils/gerbil-leveldb"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; # "-L${leveldb}/lib" diff --git a/pkgs/development/compilers/gerbil/gerbil-libp2p.nix b/pkgs/development/compilers/gerbil/gerbil-libp2p.nix index 7693920fabc6..a24fa650dc8f 100644 --- a/pkgs/development/compilers/gerbil/gerbil-libp2p.nix +++ b/pkgs/development/compilers/gerbil/gerbil-libp2p.nix @@ -17,11 +17,11 @@ sha256 = "059lydp7d6pjgrd4pdnqq2zffzlba62ch102f01rgzf9aps3c8lz"; }; - meta = with lib; { + meta = { description = "Gerbil libp2p: use libp2p from Gerbil"; homepage = "https://github.com/vyzo/gerbil-libp2p"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/gerbil-libxml.nix b/pkgs/development/compilers/gerbil/gerbil-libxml.nix index d859141279f6..c40d05d549c9 100644 --- a/pkgs/development/compilers/gerbil/gerbil-libxml.nix +++ b/pkgs/development/compilers/gerbil/gerbil-libxml.nix @@ -25,11 +25,11 @@ sha256 = "1zfccqaibwy2b3srwmwwgv91dwy1xl18cfimxhcsxl6mxvgm61pd"; }; - meta = with lib; { + meta = { description = "libxml bindings for Gerbil"; homepage = "https://github.com/mighty-gerbils/gerbil-libxml"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/gerbil-libyaml.nix b/pkgs/development/compilers/gerbil/gerbil-libyaml.nix index fb616479c355..dbf3d1cb0566 100644 --- a/pkgs/development/compilers/gerbil/gerbil-libyaml.nix +++ b/pkgs/development/compilers/gerbil/gerbil-libyaml.nix @@ -25,12 +25,12 @@ sha256 = "0plmwx1i23c9nzzg6zxz2xi0y92la97mak9hg6h3c6d8kxvajb5c"; }; - meta = with lib; { + meta = { description = "libyaml bindings for Gerbil"; homepage = "https://github.com/mighty-gerbils/gerbil-libyaml"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; # "-L${libyaml}/lib" diff --git a/pkgs/development/compilers/gerbil/gerbil-lmdb.nix b/pkgs/development/compilers/gerbil/gerbil-lmdb.nix index 919a8340e9c8..66cb080ea084 100644 --- a/pkgs/development/compilers/gerbil/gerbil-lmdb.nix +++ b/pkgs/development/compilers/gerbil/gerbil-lmdb.nix @@ -25,12 +25,12 @@ sha256 = "12kywxx4qjxchmhcd66700r2yfqjnh12ijgqnpqaccvigi07iq9b"; }; - meta = with lib; { + meta = { description = "LMDB bindings for Gerbil"; homepage = "https://github.com/mighty-gerbils/gerbil-lmdb"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; # "-L${lmdb.out}/lib" diff --git a/pkgs/development/compilers/gerbil/gerbil-mysql.nix b/pkgs/development/compilers/gerbil/gerbil-mysql.nix index 07e0132e46da..e8ab00d4bb13 100644 --- a/pkgs/development/compilers/gerbil/gerbil-mysql.nix +++ b/pkgs/development/compilers/gerbil/gerbil-mysql.nix @@ -25,12 +25,12 @@ sha256 = "01506r0ivgp6cxvwracmg7pwr735ngb7899ga3lxy181lzkp6b2c"; }; - meta = with lib; { + meta = { description = "MySQL bindings for Gerbil"; homepage = "https://github.com/mighty-gerbils/gerbil-mysql"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; # "-L${mariadb-connector-c}/lib/mariadb" diff --git a/pkgs/development/compilers/gerbil/gerbil-persist.nix b/pkgs/development/compilers/gerbil/gerbil-persist.nix index 89094a65e5be..36aeeef7d2e4 100644 --- a/pkgs/development/compilers/gerbil/gerbil-persist.nix +++ b/pkgs/development/compilers/gerbil/gerbil-persist.nix @@ -27,11 +27,11 @@ sha256 = "1c1h1yp7gf23r3asxppgga4j4jmy4l9rlbb7vw9jcwvl8d30yrab"; }; - meta = with lib; { + meta = { description = "Gerbil Persist: Persistent data and activities"; homepage = "https://github.com/fare/gerbil-persist"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/gerbil-poo.nix b/pkgs/development/compilers/gerbil/gerbil-poo.nix index 4418a5ea6097..5b23bede309e 100644 --- a/pkgs/development/compilers/gerbil/gerbil-poo.nix +++ b/pkgs/development/compilers/gerbil/gerbil-poo.nix @@ -23,11 +23,11 @@ sha256 = "1pxv1j6hwcgjj67bb7vvlnyl3123r43ifldm6alm76v2mfp2vs81"; }; - meta = with lib; { + meta = { description = "Gerbil POO: Prototype Object Orientation for Gerbil Scheme"; homepage = "https://github.com/fare/gerbil-poo"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/gerbil-utils.nix b/pkgs/development/compilers/gerbil/gerbil-utils.nix index dcc07d6eda67..188cb352c384 100644 --- a/pkgs/development/compilers/gerbil/gerbil-utils.nix +++ b/pkgs/development/compilers/gerbil/gerbil-utils.nix @@ -16,11 +16,11 @@ sha256 = "0dga03qq7iy12bnpxr6d40qhvihsvn3y87psf2w2clnpypjb3blx"; }; - meta = with lib; { + meta = { description = "Gerbil Clan: Community curated Collection of Common Utilities"; homepage = "https://github.com/fare/gerbil-utils"; - license = licenses.lgpl21; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gerbil/glow-lang.nix b/pkgs/development/compilers/gerbil/glow-lang.nix index 5b4ba28b9ecc..ddff92a87473 100644 --- a/pkgs/development/compilers/gerbil/glow-lang.nix +++ b/pkgs/development/compilers/gerbil/glow-lang.nix @@ -58,12 +58,12 @@ rec { chmod a+x $out/bin/glow ''; - meta = with lib; { + meta = { description = "Glow: language for safe Decentralized Applications (DApps)"; homepage = "https://glow-lang.org"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; broken = true; # Broken for all platforms since 2023-10-13 }; } diff --git a/pkgs/development/compilers/gerbil/smug-gerbil.nix b/pkgs/development/compilers/gerbil/smug-gerbil.nix index 52f14ca12259..6582402a6a52 100644 --- a/pkgs/development/compilers/gerbil/smug-gerbil.nix +++ b/pkgs/development/compilers/gerbil/smug-gerbil.nix @@ -15,11 +15,11 @@ sha256 = "13fdijd71m3fzp9fw9xp6ddgr38q1ly6wnr53salp725w6i4wqid"; }; - meta = with lib; { + meta = { description = "Super Monadic Über Go-into : Parsers and Gerbil Scheme"; homepage = "https://github.com/drewc/smug-gerbil"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ fare ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fare ]; }; } diff --git a/pkgs/development/compilers/gnat-bootstrap/default.nix b/pkgs/development/compilers/gnat-bootstrap/default.nix index cca928a0f997..dffb81bb47ee 100644 --- a/pkgs/development/compilers/gnat-bootstrap/default.nix +++ b/pkgs/development/compilers/gnat-bootstrap/default.nix @@ -221,11 +221,11 @@ stdenv.mkDerivation ( isGNU = true; }; - meta = with lib; { + meta = { description = "GNAT, the GNU Ada Translator"; homepage = "https://www.gnu.org/software/gnat"; - license = licenses.gpl3; - maintainers = with maintainers; [ ethindp ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ethindp ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/development/compilers/go/1.24.nix b/pkgs/development/compilers/go/1.24.nix index c053afae8d53..b1fd87ac1a6e 100644 --- a/pkgs/development/compilers/go/1.24.nix +++ b/pkgs/development/compilers/go/1.24.nix @@ -170,13 +170,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://go.dev/doc/devel/release#go${lib.versions.majorMinor finalAttrs.version}"; description = "Go Programming language"; homepage = "https://go.dev/"; - license = licenses.bsd3; - teams = [ teams.golang ]; - platforms = platforms.darwin ++ platforms.linux ++ platforms.wasi ++ platforms.freebsd; + license = lib.licenses.bsd3; + teams = [ lib.teams.golang ]; + platforms = + lib.platforms.darwin ++ lib.platforms.linux ++ lib.platforms.wasi ++ lib.platforms.freebsd; badPlatforms = [ # Support for big-endian POWER < 8 was dropped in 1.9, but POWER8 users have less of a reason to run in big-endian mode than pre-POWER8 ones # So non-LE ppc64 is effectively unsupported, and Go SIGILLs on affordable ppc64 hardware diff --git a/pkgs/development/compilers/go/1.25.nix b/pkgs/development/compilers/go/1.25.nix index e807f81f4ab7..fe7dba89c6b8 100644 --- a/pkgs/development/compilers/go/1.25.nix +++ b/pkgs/development/compilers/go/1.25.nix @@ -171,13 +171,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://go.dev/doc/devel/release#go${lib.versions.majorMinor finalAttrs.version}"; description = "Go Programming language"; homepage = "https://go.dev/"; - license = licenses.bsd3; - teams = [ teams.golang ]; - platforms = platforms.darwin ++ platforms.linux ++ platforms.wasi ++ platforms.freebsd; + license = lib.licenses.bsd3; + teams = [ lib.teams.golang ]; + platforms = + lib.platforms.darwin ++ lib.platforms.linux ++ lib.platforms.wasi ++ lib.platforms.freebsd; badPlatforms = [ # Support for big-endian POWER < 8 was dropped in 1.9, but POWER8 users have less of a reason to run in big-endian mode than pre-POWER8 ones # So non-LE ppc64 is effectively unsupported, and Go SIGILLs on affordable ppc64 hardware diff --git a/pkgs/development/compilers/graalvm/community-edition/buildGraalvm.nix b/pkgs/development/compilers/graalvm/community-edition/buildGraalvm.nix index 5b4821bf63df..3ebd4398c87a 100644 --- a/pkgs/development/compilers/graalvm/community-edition/buildGraalvm.nix +++ b/pkgs/development/compilers/graalvm/community-edition/buildGraalvm.nix @@ -254,20 +254,20 @@ let // (args.passhtru or { }); meta = - with lib; + ( { homepage = "https://www.graalvm.org/"; description = "High-Performance Polyglot VM"; - license = with licenses; [ + license = with lib.licenses; [ upl gpl2 classpathException20 bsd3 ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "java"; - teams = [ teams.graalvm-ce ]; + teams = [ lib.teams.graalvm-ce ]; } // (args.meta or { }) ); diff --git a/pkgs/development/compilers/halide/default.nix b/pkgs/development/compilers/halide/default.nix index 3e1fd28964a7..ccd585f1ce4e 100644 --- a/pkgs/development/compilers/halide/default.nix +++ b/pkgs/development/compilers/halide/default.nix @@ -155,12 +155,12 @@ stdenv.mkDerivation (finalAttrs: { python3Packages.imageio ]; - meta = with lib; { + meta = { description = "C++ based language for image processing and computational photography"; homepage = "https://halide-lang.org"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ck3d atila twesterhout diff --git a/pkgs/development/compilers/haxe/default.nix b/pkgs/development/compilers/haxe/default.nix index 24e633373f57..6b921250bae9 100644 --- a/pkgs/development/compilers/haxe/default.nix +++ b/pkgs/development/compilers/haxe/default.nix @@ -134,20 +134,20 @@ let popd > /dev/null ''; - meta = with lib; { + meta = { description = "Programming language targeting JavaScript, Flash, NekoVM, PHP, C++"; homepage = "https://haxe.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus mit ]; # based on upstream opam file maintainers = [ - maintainers.marcweber - maintainers.locallycompact - maintainers.logo - maintainers.bwkam + lib.maintainers.marcweber + lib.maintainers.locallycompact + lib.maintainers.logo + lib.maintainers.bwkam ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }; in diff --git a/pkgs/development/compilers/idris2/idris2-lsp.nix b/pkgs/development/compilers/idris2/idris2-lsp.nix index 388bcb77b3a3..b4b1371b8769 100644 --- a/pkgs/development/compilers/idris2/idris2-lsp.nix +++ b/pkgs/development/compilers/idris2/idris2-lsp.nix @@ -52,12 +52,12 @@ let --suffix IDRIS2_PACKAGE_PATH ':' "${globalLibrariesPath}" ''; - meta = with lib; { + meta = { description = "Language Server for Idris2"; mainProgram = "idris2-lsp"; homepage = "https://github.com/idris-community/idris2-lsp"; - license = licenses.bsd3; - maintainers = with maintainers; [ mattpolzin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mattpolzin ]; }; }; in diff --git a/pkgs/development/compilers/jetbrains-jdk/default.nix b/pkgs/development/compilers/jetbrains-jdk/default.nix index b5c58fb1384b..e6b80f0f2073 100644 --- a/pkgs/development/compilers/jetbrains-jdk/default.nix +++ b/pkgs/development/compilers/jetbrains-jdk/default.nix @@ -183,7 +183,7 @@ jdk.overrideAttrs (oldAttrs: rec { ] ++ oldAttrs.buildInputs or [ ]; - meta = with lib; { + meta = { description = "OpenJDK fork to better support Jetbrains's products"; longDescription = '' JetBrains Runtime is a runtime environment for running IntelliJ Platform @@ -197,7 +197,7 @@ jdk.overrideAttrs (oldAttrs: rec { ''; homepage = "https://confluence.jetbrains.com/display/JBR/JetBrains+Runtime"; inherit (jdk.meta) license platforms mainProgram; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aoli-al ]; diff --git a/pkgs/development/compilers/julia/generic.nix b/pkgs/development/compilers/julia/generic.nix index d1a51e9994ef..37a556233e85 100644 --- a/pkgs/development/compilers/julia/generic.nix +++ b/pkgs/development/compilers/julia/generic.nix @@ -150,12 +150,12 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "High-level performance-oriented dynamical language for technical computing"; mainProgram = "julia"; homepage = "https://julialang.org/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao joshniemela thomasjm diff --git a/pkgs/development/compilers/llvm/common/libclc/default.nix b/pkgs/development/compilers/llvm/common/libclc/default.nix index 304ee54d8a7a..62a8dff18ec3 100644 --- a/pkgs/development/compilers/llvm/common/libclc/default.nix +++ b/pkgs/development/compilers/llvm/common/libclc/default.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation (finalAttrs: { install -Dt $dev/bin prepare_builtins ''; - meta = with lib; { + meta = { homepage = "http://libclc.llvm.org/"; description = "Implementation of the library requirements of the OpenCL C programming language"; mainProgram = "prepare_builtins"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix b/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix index eb4fe6753ee9..53a6c4fde7f2 100644 --- a/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix +++ b/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "LLEF is a plugin for LLDB to make it more useful for RE and VR"; homepage = "https://github.com/foundryzero/llef"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ nrabulinski ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ nrabulinski ]; mainProgram = "llef"; }; }) diff --git a/pkgs/development/compilers/mezzo/default.nix b/pkgs/development/compilers/mezzo/default.nix index 033266efa564..202c3d12049a 100644 --- a/pkgs/development/compilers/mezzo/default.nix +++ b/pkgs/development/compilers/mezzo/default.nix @@ -70,10 +70,10 @@ stdenv.mkDerivation { cp mezzo $out/bin/ ''; - meta = with lib; { + meta = { homepage = "http://protz.github.io/mezzo/"; description = "Programming language in the ML tradition, which places strong emphasis on the control of aliasing and access to mutable memory"; - license = licenses.gpl2; + license = lib.licenses.gpl2; broken = lib.versionAtLeast ocaml.version "4.06"; platforms = ocaml.meta.platforms or [ ]; }; diff --git a/pkgs/development/compilers/mkcl/default.nix b/pkgs/development/compilers/mkcl/default.nix index c1273d1a306f..58f36ab4a180 100644 --- a/pkgs/development/compilers/mkcl/default.nix +++ b/pkgs/development/compilers/mkcl/default.nix @@ -64,13 +64,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "ANSI Common Lisp Implementation"; homepage = "https://common-lisp.net/project/mkcl/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; mainProgram = "mkcl"; teams = [ lib.teams.lisp ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix index b4d598cf8355..dec07aee5742 100644 --- a/pkgs/development/compilers/mono/generic.nix +++ b/pkgs/development/compilers/mono/generic.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation (finalAttrs: { inherit enableParallelBuilding; - meta = with lib; { + meta = { # Per nixpkgs#151720 the build failures for aarch64-darwin are fixed since 6.12.0.129. # Cross build is broken due to attempt to execute cert-sync built for the host. broken = @@ -115,18 +115,18 @@ stdenv.mkDerivation (finalAttrs: { else "https://gitlab.winehq.org/mono/mono"; description = "Cross platform, open source .NET development framework"; - platforms = with platforms; darwin ++ linux; + platforms = with lib.platforms; darwin ++ linux; knownVulnerabilities = lib.optionals (lib.versionOlder finalAttrs.version "6.14.0") [ '' mono was archived upstream, see https://www.mono-project.com/ While WineHQ has taken over development, consider using 6.14.0 or newer. '' ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice obadz ]; - license = with licenses; [ + license = with lib.licenses; [ # runtime, compilers, tools and most class libraries licensed mit # runtime includes some code licensed diff --git a/pkgs/development/compilers/mozart/binary.nix b/pkgs/development/compilers/mozart/binary.nix index 12983124b0e4..8ff2f062e439 100644 --- a/pkgs/development/compilers/mozart/binary.nix +++ b/pkgs/development/compilers/mozart/binary.nix @@ -81,8 +81,8 @@ stdenv.mkDerivation { interfaces. Mozart implements the Oz language and provides both expressive power and advanced functionality. ''; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; platforms = attrNames binaries; hydraPlatforms = [ ]; }; diff --git a/pkgs/development/compilers/mozart/default.nix b/pkgs/development/compilers/mozart/default.nix index d9f82898c8e7..5b80193abb9b 100644 --- a/pkgs/development/compilers/mozart/default.nix +++ b/pkgs/development/compilers/mozart/default.nix @@ -87,15 +87,15 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.6)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Open source implementation of Oz 3"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ layus h7x4 ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://mozart.github.io"; - platforms = platforms.all; + platforms = lib.platforms.all; # Trace/BPT trap: 5 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/development/compilers/mrustc/bootstrap.nix b/pkgs/development/compilers/mrustc/bootstrap.nix index 51a772ad5f41..3b6d676e5c7f 100644 --- a/pkgs/development/compilers/mrustc/bootstrap.nix +++ b/pkgs/development/compilers/mrustc/bootstrap.nix @@ -136,7 +136,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Minimal build of Rust"; longDescription = '' @@ -144,11 +144,11 @@ stdenv.mkDerivation rec { This is useful for bootstrapping the main Rust compiler without an initial binary toolchain download. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ progval r-burns ]; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; diff --git a/pkgs/development/compilers/mrustc/default.nix b/pkgs/development/compilers/mrustc/default.nix index 351f26aef5ff..c08248d9b5fc 100644 --- a/pkgs/development/compilers/mrustc/default.nix +++ b/pkgs/development/compilers/mrustc/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mutabah's Rust Compiler"; mainProgram = "mrustc"; longDescription = '' @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { but not yet suitable for everyday use. ''; inherit (src.meta) homepage; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ progval r-burns ]; diff --git a/pkgs/development/compilers/mrustc/minicargo.nix b/pkgs/development/compilers/mrustc/minicargo.nix index 7ec09b490927..899c9a79de67 100644 --- a/pkgs/development/compilers/mrustc/minicargo.nix +++ b/pkgs/development/compilers/mrustc/minicargo.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Minimalist builder for Rust"; mainProgram = "minicargo"; longDescription = '' @@ -35,8 +35,8 @@ stdenv.mkDerivation rec { (like the Rust compiler itself). ''; inherit (src.meta) homepage; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ progval r-burns ]; diff --git a/pkgs/development/compilers/ocaml/ber-metaocaml.nix b/pkgs/development/compilers/ocaml/ber-metaocaml.nix index 2305055e0c24..aba0450ab115 100644 --- a/pkgs/development/compilers/ocaml/ber-metaocaml.nix +++ b/pkgs/development/compilers/ocaml/ber-metaocaml.nix @@ -85,18 +85,18 @@ stdenv.mkDerivation rec { nativeCompilers = true; }; - meta = with lib; { + meta = { description = "Multi-Stage Programming extension for OCaml"; homepage = "https://okmij.org/ftp/ML/MetaOCaml.html"; - license = with licenses; [ + license = with lib.licenses; [ # compiler qpl # library lgpl2 ]; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; branch = baseOcamlBranch; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; broken = stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isMips; longDescription = '' diff --git a/pkgs/development/compilers/ocaml/generic.nix b/pkgs/development/compilers/ocaml/generic.nix index f7cba3bda116..4a66393946b2 100644 --- a/pkgs/development/compilers/ocaml/generic.nix +++ b/pkgs/development/compilers/ocaml/generic.nix @@ -189,10 +189,10 @@ stdenv.mkDerivation ( nativeCompilers = useNativeCompilers; }; - meta = with lib; { + meta = { homepage = "https://ocaml.org/"; branch = versionNoPatch; - license = with licenses; [ + license = with lib.licenses; [ qpl # compiler lgpl2 # library ]; @@ -215,7 +215,7 @@ stdenv.mkDerivation ( Learn more at: https://ocaml.org/learn/description.html ''; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; broken = stdenv.hostPlatform.isAarch64 && lib.versionOlder version (if stdenv.hostPlatform.isDarwin then "4.10" else "4.02"); diff --git a/pkgs/development/compilers/open-watcom/bin.nix b/pkgs/development/compilers/open-watcom/bin.nix index b967b2752cbc..afd2ffa08fff 100644 --- a/pkgs/development/compilers/open-watcom/bin.nix +++ b/pkgs/development/compilers/open-watcom/bin.nix @@ -95,15 +95,15 @@ stdenvNoCC.mkDerivation rec { passthru.prettyName = "open-watcom-bin"; - meta = with lib; { + meta = { description = "Project to maintain and enhance the Watcom C, C++, and Fortran cross compilers and tools"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; homepage = "http://www.openwatcom.org/"; - license = licenses.watcom; + license = lib.licenses.watcom; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ maintainers.blitz ]; + maintainers = [ lib.maintainers.blitz ]; }; } diff --git a/pkgs/development/compilers/pakcs/default.nix b/pkgs/development/compilers/pakcs/default.nix index 7d069535774c..612109d6e2c3 100644 --- a/pkgs/development/compilers/pakcs/default.nix +++ b/pkgs/development/compilers/pakcs/default.nix @@ -115,10 +115,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.informatik.uni-kiel.de/~pakcs/"; description = "Implementation of the multi-paradigm declarative language Curry"; - license = licenses.bsd3; + license = lib.licenses.bsd3; longDescription = '' PAKCS is an implementation of the multi-paradigm declarative language @@ -132,7 +132,7 @@ stdenv.mkDerivation { with dynamic web pages, prototyping embedded systems). ''; - maintainers = with maintainers; [ t4ccer ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ t4ccer ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/compilers/polyml/5.7.nix b/pkgs/development/compilers/polyml/5.7.nix index 3444b08ae241..a9cf21157fea 100644 --- a/pkgs/development/compilers/polyml/5.7.nix +++ b/pkgs/development/compilers/polyml/5.7.nix @@ -53,14 +53,14 @@ stdenv.mkDerivation rec { sha256 = "0j0wv3ijfrjkfngy7dswm4k1dchk3jak9chl5735dl8yrl8mq755"; }; - meta = with lib; { + meta = { description = "Standard ML compiler and interpreter"; longDescription = '' Poly/ML is a full implementation of Standard ML. ''; homepage = "https://www.polyml.org/"; - license = licenses.lgpl21; - platforms = with platforms; (linux ++ darwin); + license = lib.licenses.lgpl21; + platforms = with lib.platforms; (linux ++ darwin); # never built on aarch64-darwin since first introduction in nixpkgs # The last successful Darwin Hydra build was in 2024 broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/development/compilers/polyml/default.nix b/pkgs/development/compilers/polyml/default.nix index 5443e865454d..be8ff324271f 100644 --- a/pkgs/development/compilers/polyml/default.nix +++ b/pkgs/development/compilers/polyml/default.nix @@ -50,15 +50,15 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Standard ML compiler and interpreter"; longDescription = '' Poly/ML is a full implementation of Standard ML. ''; homepage = "https://www.polyml.org/"; - license = licenses.lgpl21; - platforms = with platforms; (linux ++ darwin); - maintainers = with maintainers; [ + license = lib.licenses.lgpl21; + platforms = with lib.platforms; (linux ++ darwin); + maintainers = with lib.maintainers; [ kovirobi ]; }; diff --git a/pkgs/development/compilers/purescript/purescript/default.nix b/pkgs/development/compilers/purescript/purescript/default.nix index 17cbb170a157..ed2ce4cf1a27 100644 --- a/pkgs/development/compilers/purescript/purescript/default.nix +++ b/pkgs/development/compilers/purescript/purescript/default.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Strongly-typed functional programming language that compiles to JavaScript"; homepage = "https://www.purescript.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ justinwoo mbbx6spp cdepillabout diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix index 8851bb4654af..3956c4506780 100644 --- a/pkgs/development/compilers/reason/default.nix +++ b/pkgs/development/compilers/reason/default.nix @@ -62,11 +62,11 @@ buildDunePackage rec { hello = callPackage ./tests/hello { }; }; - meta = with lib; { + meta = { homepage = "https://reasonml.github.io/"; downloadPage = "https://github.com/reasonml/reason"; description = "User-friendly programming language built on OCaml"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/compilers/rml/default.nix b/pkgs/development/compilers/rml/default.nix index 147070ea95ba..a240286ff31d 100644 --- a/pkgs/development/compilers/rml/default.nix +++ b/pkgs/development/compilers/rml/default.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { prefixKey = "-prefix "; - meta = with lib; { + meta = { description = "ReactiveML: a programming language for implementing interactive systems"; homepage = "https://rml.lri.fr"; - license = with licenses; [ + license = with lib.licenses; [ qpl lgpl21Plus ]; - maintainers = with maintainers; [ wegank ]; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/compilers/rust/binary.nix b/pkgs/development/compilers/rust/binary.nix index 41cf9c08c653..7bf77a6832a2 100644 --- a/pkgs/development/compilers/rust/binary.nix +++ b/pkgs/development/compilers/rust/binary.nix @@ -29,15 +29,15 @@ rec { inherit version; inherit src; - meta = with lib; { + meta = { homepage = "https://www.rust-lang.org/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; description = "Safe, concurrent, practical language"; mainProgram = "rustc"; - maintainers = with maintainers; [ qknight ]; + maintainers = with lib.maintainers; [ qknight ]; license = [ - licenses.mit - licenses.asl20 + lib.licenses.mit + lib.licenses.asl20 ]; }; @@ -137,14 +137,14 @@ rec { inherit version; inherit src; - meta = with lib; { + meta = { homepage = "https://doc.rust-lang.org/cargo/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; description = "Rust package manager"; - maintainers = with maintainers; [ qknight ]; + maintainers = with lib.maintainers; [ qknight ]; license = [ - licenses.mit - licenses.asl20 + lib.licenses.mit + lib.licenses.asl20 ]; }; diff --git a/pkgs/development/compilers/rust/cargo-auditable.nix b/pkgs/development/compilers/rust/cargo-auditable.nix index ea637477cc76..2abda28c4d11 100644 --- a/pkgs/development/compilers/rust/cargo-auditable.nix +++ b/pkgs/development/compilers/rust/cargo-auditable.nix @@ -29,16 +29,16 @@ let "--skip=test_wasm" ]; - meta = with lib; { + meta = { description = "Tool to make production Rust binaries auditable"; mainProgram = "cargo-auditable"; homepage = "https://github.com/rust-secure-code/cargo-auditable"; changelog = "https://github.com/rust-secure-code/cargo-auditable/blob/v${version}/cargo-auditable/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ RossSmyth ]; + maintainers = with lib.maintainers; [ RossSmyth ]; broken = stdenv.hostPlatform != stdenv.buildPlatform; }; }; diff --git a/pkgs/development/compilers/rust/cargo.nix b/pkgs/development/compilers/rust/cargo.nix index b1302a8f0a36..42dd8bc59971 100644 --- a/pkgs/development/compilers/rust/cargo.nix +++ b/pkgs/development/compilers/rust/cargo.nix @@ -96,16 +96,16 @@ rustPlatform.buildRustPackage.override runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://crates.io"; description = "Downloads your Rust project's dependencies and builds your project"; mainProgram = "cargo"; - teams = [ teams.rust ]; + teams = [ lib.teams.rust ]; license = [ - licenses.mit - licenses.asl20 + lib.licenses.mit + lib.licenses.asl20 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # https://github.com/alexcrichton/nghttp2-rs/issues/2 broken = stdenv.hostPlatform.isx86 && stdenv.buildPlatform != stdenv.hostPlatform; }; diff --git a/pkgs/development/compilers/rust/clippy.nix b/pkgs/development/compilers/rust/clippy.nix index 72a162520cc6..fa33c9e9f315 100644 --- a/pkgs/development/compilers/rust/clippy.nix +++ b/pkgs/development/compilers/rust/clippy.nix @@ -39,16 +39,16 @@ rustPlatform.buildRustPackage { install_name_tool -add_rpath "${rustc.unwrapped}/lib" "$out/bin/cargo-clippy" ''; - meta = with lib; { + meta = { homepage = "https://rust-lang.github.io/rust-clippy/"; description = "Bunch of lints to catch common mistakes and improve your Rust code"; mainProgram = "cargo-clippy"; - maintainers = with maintainers; [ basvandijk ]; - teams = [ teams.rust ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ basvandijk ]; + teams = [ lib.teams.rust ]; + license = with lib.licenses; [ mit asl20 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index d2364f7aa533..8213769844f5 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -442,13 +442,13 @@ stdenv.mkDerivation (finalAttrs: { // lib.optionalAttrs stdenv.hostPlatform.isLinux { inherit firefox thunderbird; }; }; - meta = with lib; { + meta = { homepage = "https://www.rust-lang.org/"; description = "Safe, concurrent, practical language"; - teams = [ teams.rust ]; + teams = [ lib.teams.rust ]; license = [ - licenses.mit - licenses.asl20 + lib.licenses.mit + lib.licenses.asl20 ]; platforms = rustc.targetPlatformsWithHostTools; # If rustc can't target a platform, we also can't build rustc for diff --git a/pkgs/development/compilers/rust/rustfmt.nix b/pkgs/development/compilers/rust/rustfmt.nix index 1c18c7afc303..b002d665518a 100644 --- a/pkgs/development/compilers/rust/rustfmt.nix +++ b/pkgs/development/compilers/rust/rustfmt.nix @@ -51,15 +51,15 @@ rustPlatform.buildRustPackage { --suffix PATH : ${lib.makeBinPath [ cargo ]} ''; - meta = with lib; { + meta = { description = "Tool for formatting Rust code according to style guidelines"; homepage = "https://github.com/rust-lang-nursery/rustfmt"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; mainProgram = "rustfmt"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ globin basvandijk ]; diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 24bfe176570c..a82660eb217f 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -318,7 +318,7 @@ stdenv.mkDerivation (self: { meta = with lib; { description = "Common Lisp compiler"; homepage = "https://sbcl.org"; - license = licenses.publicDomain; # and FreeBSD + license = lib.licenses.publicDomain; # and FreeBSD mainProgram = "sbcl"; teams = [ lib.teams.lisp ]; platforms = attrNames bootstrapBinaries ++ [ diff --git a/pkgs/development/compilers/scala-runners/default.nix b/pkgs/development/compilers/scala-runners/default.nix index 058d32811cb2..12b0a433fe27 100644 --- a/pkgs/development/compilers/scala-runners/default.nix +++ b/pkgs/development/compilers/scala-runners/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { ln -s $out/lib/scala-runner $out/bin/scaladoc ''; - meta = with lib; { + meta = { homepage = "https://github.com/dwijnand/scala-runners"; description = "Alternative implementation of the Scala distribution's runners"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ hrhino ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ hrhino ]; }; } diff --git a/pkgs/development/compilers/scala/2.x.nix b/pkgs/development/compilers/scala/2.x.nix index 921a946597db..7ca4c3800baa 100644 --- a/pkgs/development/compilers/scala/2.x.nix +++ b/pkgs/development/compilers/scala/2.x.nix @@ -109,10 +109,10 @@ stdenv.mkDerivation rec { compared to an equivalent Java application. ''; homepage = "https://www.scala-lang.org/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; branch = versions.majorMinor version; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kashw2 ]; }; diff --git a/pkgs/development/compilers/scala/bare.nix b/pkgs/development/compilers/scala/bare.nix index 8b7adcb011c8..ea09ea8340e3 100644 --- a/pkgs/development/compilers/scala/bare.nix +++ b/pkgs/development/compilers/scala/bare.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = with lib; { + meta = { description = "Scala 3 compiler, also known as Dotty"; homepage = "https://scala-lang.org/"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; mainProgram = "scala"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ virusdave kashw2 natsukagami diff --git a/pkgs/development/compilers/squeak/default.nix b/pkgs/development/compilers/squeak/default.nix index 70ff250f77a4..30715cfaffd6 100644 --- a/pkgs/development/compilers/squeak/default.nix +++ b/pkgs/development/compilers/squeak/default.nix @@ -236,10 +236,10 @@ stdenv.mkDerivation { cp --no-preserve mode "$sourcesSrc" "$out"/lib/squeak/SqueakV${lib.escapeShellArg squeakSourcesVersion}.sources ''; - meta = with lib; { + meta = { description = "Squeak virtual machine"; homepage = "https://opensmalltalk.org/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/development/compilers/temurin-bin/jdk-darwin-base.nix b/pkgs/development/compilers/temurin-bin/jdk-darwin-base.nix index e295437ab236..631ba3afdcfc 100644 --- a/pkgs/development/compilers/temurin-bin/jdk-darwin-base.nix +++ b/pkgs/development/compilers/temurin-bin/jdk-darwin-base.nix @@ -73,19 +73,19 @@ let bundle = "${finalAttrs.finalPackage}/Library/Java/JavaVirtualMachines/${name-prefix}-${lib.versions.major finalAttrs.version}.jdk"; }; - meta = with lib; { - license = with licenses; [ + meta = { + license = with lib.licenses; [ gpl2 classpathException20 ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode binaryBytecode ]; description = "${brand-name}, prebuilt OpenJDK binary"; platforms = map (arch: arch + "-darwin") providedCpuTypes; # some inherit jre.meta.platforms - maintainers = with maintainers; [ taku0 ]; - teams = [ teams.java ]; + maintainers = with lib.maintainers; [ taku0 ]; + teams = [ lib.teams.java ]; inherit knownVulnerabilities; mainProgram = "java"; }; diff --git a/pkgs/development/compilers/temurin-bin/jdk-linux-base.nix b/pkgs/development/compilers/temurin-bin/jdk-linux-base.nix index 33855e06f467..f9e78dc80a01 100644 --- a/pkgs/development/compilers/temurin-bin/jdk-linux-base.nix +++ b/pkgs/development/compilers/temurin-bin/jdk-linux-base.nix @@ -129,19 +129,19 @@ let home = result; }; - meta = with lib; { - license = with licenses; [ + meta = { + license = with lib.licenses; [ gpl2 classpathException20 ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode binaryBytecode ]; description = "${brand-name}, prebuilt OpenJDK binary"; platforms = map (arch: arch + "-linux") providedCpuTypes; # some inherit jre.meta.platforms - maintainers = with maintainers; [ taku0 ]; - teams = [ teams.java ]; + maintainers = with lib.maintainers; [ taku0 ]; + teams = [ lib.teams.java ]; inherit knownVulnerabilities; mainProgram = "java"; }; diff --git a/pkgs/development/compilers/teyjus/default.nix b/pkgs/development/compilers/teyjus/default.nix index 1386ef7ab25b..50a962ac409f 100644 --- a/pkgs/development/compilers/teyjus/default.nix +++ b/pkgs/development/compilers/teyjus/default.nix @@ -28,12 +28,12 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Efficient implementation of the Lambda Prolog language"; homepage = "https://github.com/teyjus/teyjus"; changelog = "https://github.com/teyjus/teyjus/releases/tag/v${version}"; license = lib.licenses.gpl3; - maintainers = [ maintainers.bcdarwin ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.bcdarwin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/compilers/vala/default.nix b/pkgs/development/compilers/vala/default.nix index 44a65fdc2588..47d32565ac18 100644 --- a/pkgs/development/compilers/vala/default.nix +++ b/pkgs/development/compilers/vala/default.nix @@ -110,16 +110,16 @@ let }; }; - meta = with lib; { + meta = { description = "Compiler for GObject type system"; homepage = "https://vala.dev"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ antono jtojnar ]; - teams = [ teams.pantheon ]; + teams = [ lib.teams.pantheon ]; }; } ); diff --git a/pkgs/development/compilers/vyper/default.nix b/pkgs/development/compilers/vyper/default.nix index 605f9af249cb..36e39f100ac3 100644 --- a/pkgs/development/compilers/vyper/default.nix +++ b/pkgs/development/compilers/vyper/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { "vyper" ]; - meta = with lib; { + meta = { description = "Pythonic Smart Contract Language for the EVM"; homepage = "https://github.com/vyperlang/vyper"; changelog = "https://github.com/vyperlang/vyper/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/development/compilers/yosys/plugins/bluespec.nix b/pkgs/development/compilers/yosys/plugins/bluespec.nix index 5a1a0ce3e210..29f2da23e49d 100644 --- a/pkgs/development/compilers/yosys/plugins/bluespec.nix +++ b/pkgs/development/compilers/yosys/plugins/bluespec.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation { "STATIC_BSC_LIBDIR=${bluespec}/lib" ]; - meta = with lib; { + meta = { description = "Bluespec plugin for Yosys"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/compilers/yosys/plugins/ghdl.nix b/pkgs/development/compilers/yosys/plugins/ghdl.nix index e5718f8e112a..abd396b8d02c 100644 --- a/pkgs/development/compilers/yosys/plugins/ghdl.nix +++ b/pkgs/development/compilers/yosys/plugins/ghdl.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { cp ghdl.so $out/share/yosys/plugins/ghdl.so ''; - meta = with lib; { + meta = { description = "GHDL plugin for Yosys"; homepage = "https://github.com/ghdl/ghdl-yosys-plugin"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/compilers/yosys/plugins/symbiflow.nix b/pkgs/development/compilers/yosys/plugins/symbiflow.nix index 6e36efad1331..30bff56df4fc 100644 --- a/pkgs/development/compilers/yosys/plugins/symbiflow.nix +++ b/pkgs/development/compilers/yosys/plugins/symbiflow.nix @@ -99,11 +99,11 @@ lib.genAttrs plugins ( installFlags = buildFlags; - meta = with lib; { + meta = { description = "Symbiflow ${plugin} plugin for Yosys"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ollieB thoughtpolice ]; diff --git a/pkgs/development/compilers/yosys/plugins/synlig.nix b/pkgs/development/compilers/yosys/plugins/synlig.nix index d28a8ca7cf8d..c596835ecb56 100644 --- a/pkgs/development/compilers/yosys/plugins/synlig.nix +++ b/pkgs/development/compilers/yosys/plugins/synlig.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "SystemVerilog support plugin for Yosys"; homepage = "https://github.com/chipsalliance/synlig"; - license = licenses.asl20; - maintainers = with maintainers; [ hzeller ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hzeller ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/coq-modules/QuickChick/default.nix b/pkgs/development/coq-modules/QuickChick/default.nix index dbbbc1d7c438..814520579320 100644 --- a/pkgs/development/coq-modules/QuickChick/default.nix +++ b/pkgs/development/coq-modules/QuickChick/default.nix @@ -80,9 +80,9 @@ in enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Randomized property-based testing plugin for Coq; a clone of Haskell QuickCheck"; - maintainers = with maintainers; [ jwiegley ]; + maintainers = with lib.maintainers; [ jwiegley ]; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/aac-tactics/default.nix b/pkgs/development/coq-modules/aac-tactics/default.nix index b14ce87b28d0..db8aca777402 100644 --- a/pkgs/development/coq-modules/aac-tactics/default.nix +++ b/pkgs/development/coq-modules/aac-tactics/default.nix @@ -100,7 +100,7 @@ mkCoqDerivation { propagatedBuildInputs = [ stdlib ]; - meta = with lib; { + meta = { description = "Coq plugin providing tactics for rewriting universally quantified equations"; longDescription = '' This Coq plugin provides tactics for rewriting universally quantified @@ -110,8 +110,8 @@ mkCoqDerivation { operator instances, such as for Z binary arithmetic and booleans, are provided with the plugin. ''; - maintainers = with maintainers; [ siraben ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/addition-chains/default.nix b/pkgs/development/coq-modules/addition-chains/default.nix index 95d247f108fe..9ca61c6d0a16 100644 --- a/pkgs/development/coq-modules/addition-chains/default.nix +++ b/pkgs/development/coq-modules/addition-chains/default.nix @@ -41,7 +41,7 @@ mkCoqDerivation { useDune = true; - meta = with lib; { + meta = { description = "Exponentiation algorithms following addition chains"; longDescription = '' Addition chains are algorithms for computations of the p-th @@ -49,8 +49,8 @@ mkCoqDerivation { possible. We present a few implementations of addition chains, with proofs of their correctness. ''; - maintainers = with maintainers; [ Zimmi48 ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ Zimmi48 ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/autosubst-ocaml/default.nix b/pkgs/development/coq-modules/autosubst-ocaml/default.nix index 6e78fcb67f19..f599bbc05331 100644 --- a/pkgs/development/coq-modules/autosubst-ocaml/default.nix +++ b/pkgs/development/coq-modules/autosubst-ocaml/default.nix @@ -47,11 +47,11 @@ mkCoqDerivation { dune install --prefix $out --libdir $OCAMLFIND_DESTDIR ''; - meta = with lib; { + meta = { description = "OCaml reimplementation of the Autosubst 2 code generator"; homepage = "https://github.com/uds-psl/autosubst-ocaml"; mainProgram = "autosubst"; - maintainers = with maintainers; [ chen ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ chen ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/coq-modules/autosubst/default.nix b/pkgs/development/coq-modules/autosubst/default.nix index 7c1bf542cb39..11c1de76f36f 100644 --- a/pkgs/development/coq-modules/autosubst/default.nix +++ b/pkgs/development/coq-modules/autosubst/default.nix @@ -33,13 +33,13 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { homepage = "https://www.ps.uni-saarland.de/autosubst/"; description = "Automation for de Bruijn syntax and substitution in Coq"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ siraben jwiegley ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/coq-modules/ceres/default.nix b/pkgs/development/coq-modules/ceres/default.nix index 670db7ebef8f..f461a34d898b 100644 --- a/pkgs/development/coq-modules/ceres/default.nix +++ b/pkgs/development/coq-modules/ceres/default.nix @@ -29,9 +29,9 @@ mkCoqDerivation { propagatedBuildInputs = [ stdlib ]; - meta = with lib; { + meta = { description = "Library for serialization to S-expressions"; - license = licenses.mit; - maintainers = with maintainers; [ Zimmi48 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Zimmi48 ]; }; } diff --git a/pkgs/development/coq-modules/compcert/default.nix b/pkgs/development/coq-modules/compcert/default.nix index e58a42d6d2b5..cea8a38b575e 100644 --- a/pkgs/development/coq-modules/compcert/default.nix +++ b/pkgs/development/coq-modules/compcert/default.nix @@ -138,12 +138,12 @@ let "man" ]; - meta = with lib; { + meta = { description = "Formally verified C compiler"; homepage = "https://compcert.org"; - license = licenses.inria-compcert; + license = lib.licenses.inria-compcert; platforms = builtins.attrNames targets; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice jwiegley vbgl diff --git a/pkgs/development/coq-modules/coq-bits/default.nix b/pkgs/development/coq-modules/coq-bits/default.nix index c7be23715a22..df1e1f20b386 100644 --- a/pkgs/development/coq-modules/coq-bits/default.nix +++ b/pkgs/development/coq-modules/coq-bits/default.nix @@ -43,9 +43,9 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { description = "Formalization of bitset operations in Coq"; - license = licenses.asl20; - maintainers = with maintainers; [ ptival ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ptival ]; }; } diff --git a/pkgs/development/coq-modules/coq-lsp/default.nix b/pkgs/development/coq-modules/coq-lsp/default.nix index fec105b3d5c5..0ffa3a66cc2b 100644 --- a/pkgs/development/coq-modules/coq-lsp/default.nix +++ b/pkgs/development/coq-modules/coq-lsp/default.nix @@ -75,12 +75,12 @@ yojson ]; - meta = with lib; { + meta = { description = "Language Server Protocol and VS Code Extension for Coq"; homepage = "https://github.com/ejgallego/coq-lsp"; changelog = "https://github.com/ejgallego/coq-lsp/blob/${defaultVersion}/CHANGES.md"; - maintainers = with maintainers; [ alizter ]; - license = licenses.lgpl21Only; + maintainers = with lib.maintainers; [ alizter ]; + license = lib.licenses.lgpl21Only; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/coqhammer/default.nix b/pkgs/development/coq-modules/coqhammer/default.nix index f1774f675ba8..c69b58b6bac5 100644 --- a/pkgs/development/coq-modules/coqhammer/default.nix +++ b/pkgs/development/coq-modules/coqhammer/default.nix @@ -98,10 +98,10 @@ mkCoqDerivation { mlPlugin = true; - meta = with lib; { + meta = { homepage = "http://cl-informatik.uibk.ac.at/cek/coqhammer/"; description = "Automation for Dependent Type Theory"; - license = licenses.lgpl21; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/coqide/default.nix b/pkgs/development/coq-modules/coqide/default.nix index 8bab88333e40..b061675b2106 100644 --- a/pkgs/development/coq-modules/coqide/default.nix +++ b/pkgs/development/coq-modules/coqide/default.nix @@ -62,11 +62,11 @@ mkCoqDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://coq.inria.fr"; description = "CoqIDE user interface for the Coq proof assistant"; mainProgram = "coqide"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.Zimmi48 ]; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.Zimmi48 ]; }; } diff --git a/pkgs/development/coq-modules/coqprime/default.nix b/pkgs/development/coq-modules/coqprime/default.nix index 65c442e83668..e42edfdcb7dd 100644 --- a/pkgs/development/coq-modules/coqprime/default.nix +++ b/pkgs/development/coq-modules/coqprime/default.nix @@ -50,9 +50,9 @@ mkCoqDerivation { propagatedBuildInputs = [ bignums ]; - meta = with lib; { + meta = { description = "Library to certify primality using Pocklington certificate and Elliptic Curve Certificate"; - license = licenses.lgpl21; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/coqtail-math/default.nix b/pkgs/development/coq-modules/coqtail-math/default.nix index fb97986b5b1d..fada3e52b60e 100644 --- a/pkgs/development/coq-modules/coqtail-math/default.nix +++ b/pkgs/development/coq-modules/coqtail-math/default.nix @@ -26,8 +26,8 @@ mkCoqDerivation { release."20201124".rev = "5c22c3d7dcd8cf4c47cf84a281780f5915488e9e"; release."20201124".sha256 = "sha256-wd+Lh7dpAD4zfpyKuztDmSFEZo5ZiFrR8ti2jUCVvoQ="; mlPlugin = true; - meta = with lib; { - license = licenses.lgpl3Only; - maintainers = [ maintainers.siraben ]; + meta = { + license = lib.licenses.lgpl3Only; + maintainers = [ lib.maintainers.siraben ]; }; } diff --git a/pkgs/development/coq-modules/coquelicot/default.nix b/pkgs/development/coq-modules/coquelicot/default.nix index d88ea8fd861a..2d094c146263 100644 --- a/pkgs/development/coq-modules/coquelicot/default.nix +++ b/pkgs/development/coq-modules/coquelicot/default.nix @@ -47,10 +47,10 @@ mkCoqDerivation { ]; useMelquiondRemake.logpath = "Coquelicot"; - meta = with lib; { + meta = { homepage = "http://coquelicot.saclay.inria.fr/"; description = "Coq library for Reals"; - license = licenses.lgpl3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/corn/default.nix b/pkgs/development/coq-modules/corn/default.nix index caf29e5e4573..660dbabde284 100644 --- a/pkgs/development/coq-modules/corn/default.nix +++ b/pkgs/development/coq-modules/corn/default.nix @@ -59,11 +59,11 @@ math-classes ]; - meta = with lib; { + meta = { homepage = "http://c-corn.github.io/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; description = "Coq library for constructive analysis"; - maintainers = [ maintainers.vbgl ]; + maintainers = [ lib.maintainers.vbgl ]; }; }).overrideAttrs (o: { diff --git a/pkgs/development/coq-modules/deriving/default.nix b/pkgs/development/coq-modules/deriving/default.nix index 33aeb288dbdb..043005105356 100644 --- a/pkgs/development/coq-modules/deriving/default.nix +++ b/pkgs/development/coq-modules/deriving/default.nix @@ -48,10 +48,10 @@ mkCoqDerivation { mlPlugin = true; - meta = with lib; { + meta = { description = "Generic instances of MathComp classes"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/dpdgraph/default.nix b/pkgs/development/coq-modules/dpdgraph/default.nix index 68cb6d67de16..ad1e1e9545ce 100644 --- a/pkgs/development/coq-modules/dpdgraph/default.nix +++ b/pkgs/development/coq-modules/dpdgraph/default.nix @@ -74,10 +74,10 @@ in extraInstallFlags = [ "BINDIR=$(out)/bin" ]; - meta = with lib; { + meta = { description = "Build dependency graphs between Coq objects"; - license = licenses.lgpl21; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ vbgl ]; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/equations/default.nix b/pkgs/development/coq-modules/equations/default.nix index 8e96965d5996..1db330b2d7b5 100644 --- a/pkgs/development/coq-modules/equations/default.nix +++ b/pkgs/development/coq-modules/equations/default.nix @@ -90,10 +90,10 @@ propagatedBuildInputs = [ stdlib ]; - meta = with lib; { + meta = { homepage = "https://mattam82.github.io/Coq-Equations/"; description = "Plugin for Coq to add dependent pattern-matching"; - maintainers = with maintainers; [ jwiegley ]; + maintainers = with lib.maintainers; [ jwiegley ]; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/extructures/default.nix b/pkgs/development/coq-modules/extructures/default.nix index d4f03540d193..adc38671ece4 100644 --- a/pkgs/development/coq-modules/extructures/default.nix +++ b/pkgs/development/coq-modules/extructures/default.nix @@ -44,10 +44,10 @@ propagatedBuildInputs = [ mathcomp-boot ]; - meta = with lib; { + meta = { description = "Finite data structures with extensional reasoning"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; }; }).overrideAttrs diff --git a/pkgs/development/coq-modules/fcsl-pcm/default.nix b/pkgs/development/coq-modules/fcsl-pcm/default.nix index b281d2bba160..551957f4a294 100644 --- a/pkgs/development/coq-modules/fcsl-pcm/default.nix +++ b/pkgs/development/coq-modules/fcsl-pcm/default.nix @@ -37,9 +37,9 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { description = "Coq library of Partial Commutative Monoids"; - license = licenses.asl20; - maintainers = [ maintainers.proux01 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.proux01 ]; }; } diff --git a/pkgs/development/coq-modules/flocq/default.nix b/pkgs/development/coq-modules/flocq/default.nix index c7b44e391926..c4b604358ca2 100644 --- a/pkgs/development/coq-modules/flocq/default.nix +++ b/pkgs/development/coq-modules/flocq/default.nix @@ -48,9 +48,9 @@ mkCoqDerivation { propagatedBuildInputs = [ stdlib ]; - meta = with lib; { + meta = { description = "Floating-point formalization for the Coq system"; - license = licenses.lgpl3; - maintainers = with maintainers; [ jwiegley ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ jwiegley ]; }; } diff --git a/pkgs/development/coq-modules/fourcolor/default.nix b/pkgs/development/coq-modules/fourcolor/default.nix index 4efcc62b36f8..3d2bda0b3d4e 100644 --- a/pkgs/development/coq-modules/fourcolor/default.nix +++ b/pkgs/development/coq-modules/fourcolor/default.nix @@ -51,10 +51,10 @@ mkCoqDerivation { mathcomp.algebra ]; - meta = with lib; { + meta = { description = "Formal proof of the Four Color Theorem"; - maintainers = with maintainers; [ siraben ]; - license = licenses.cecill-b; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.cecill-b; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/gaia-hydras/default.nix b/pkgs/development/coq-modules/gaia-hydras/default.nix index ff395c892f5e..325d47dede03 100644 --- a/pkgs/development/coq-modules/gaia-hydras/default.nix +++ b/pkgs/development/coq-modules/gaia-hydras/default.nix @@ -49,14 +49,14 @@ mkCoqDerivation { useDune = true; - meta = with lib; { + meta = { description = "Comparison between ordinals in Gaia and Hydra battles"; longDescription = '' The Gaia and Hydra battles projects develop different notions of ordinals. This development bridges the different notions. ''; - maintainers = with maintainers; [ Zimmi48 ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ Zimmi48 ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/gaia/default.nix b/pkgs/development/coq-modules/gaia/default.nix index 1ebc5ffee1c6..9a7284e94f54 100644 --- a/pkgs/development/coq-modules/gaia/default.nix +++ b/pkgs/development/coq-modules/gaia/default.nix @@ -49,9 +49,9 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { description = "Implementation of books from Bourbaki's Elements of Mathematics in Coq"; - maintainers = with maintainers; [ Zimmi48 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ Zimmi48 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/coq-modules/gappalib/default.nix b/pkgs/development/coq-modules/gappalib/default.nix index df99b70057ac..f66045c0d71f 100644 --- a/pkgs/development/coq-modules/gappalib/default.nix +++ b/pkgs/development/coq-modules/gappalib/default.nix @@ -43,9 +43,9 @@ mkCoqDerivation { propagatedBuildInputs = [ flocq ]; useMelquiondRemake.logpath = "Gappa"; - meta = with lib; { + meta = { description = "Coq support library for Gappa"; - license = licenses.lgpl21; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/goedel/default.nix b/pkgs/development/coq-modules/goedel/default.nix index b9ca9a4fb5a9..c084db063f65 100644 --- a/pkgs/development/coq-modules/goedel/default.nix +++ b/pkgs/development/coq-modules/goedel/default.nix @@ -31,10 +31,10 @@ mkCoqDerivation { pocklington ]; - meta = with lib; { + meta = { description = "Gödel-Rosser 1st incompleteness theorem in Coq"; - maintainers = with maintainers; [ siraben ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/graph-theory/default.nix b/pkgs/development/coq-modules/graph-theory/default.nix index ceddcd2fc3e7..cafa0793461d 100644 --- a/pkgs/development/coq-modules/graph-theory/default.nix +++ b/pkgs/development/coq-modules/graph-theory/default.nix @@ -57,7 +57,7 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { description = "Library of formalized graph theory results in Coq"; longDescription = '' A library of formalized graph theory results, including various @@ -67,7 +67,7 @@ mkCoqDerivation { the study of relation algebra within the ERC CoVeCe project (e.g., soundness and completeness of an axiomatization of graph isomorphism). ''; - maintainers = with maintainers; [ siraben ]; - license = licenses.cecill-b; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.cecill-b; }; } diff --git a/pkgs/development/coq-modules/hierarchy-builder/default.nix b/pkgs/development/coq-modules/hierarchy-builder/default.nix index 9d04f5878ec4..b91e8d192f40 100644 --- a/pkgs/development/coq-modules/hierarchy-builder/default.nix +++ b/pkgs/development/coq-modules/hierarchy-builder/default.nix @@ -48,13 +48,13 @@ let mlPlugin = true; - meta = with lib; { + meta = { description = "High level commands to declare a hierarchy based on packed classes"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ cohencyril siraben ]; - license = licenses.mit; + license = lib.licenses.mit; }; }; hb2 = hb.overrideAttrs ( diff --git a/pkgs/development/coq-modules/high-school-geometry/default.nix b/pkgs/development/coq-modules/high-school-geometry/default.nix index 29351db0c318..0c1ef59d6f77 100644 --- a/pkgs/development/coq-modules/high-school-geometry/default.nix +++ b/pkgs/development/coq-modules/high-school-geometry/default.nix @@ -38,9 +38,9 @@ mkCoqDerivation { }; releaseRev = v: "v${v}"; - meta = with lib; { + meta = { description = "Geometry in Coq for French high school"; - maintainers = with maintainers; [ definfo ]; - license = licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ definfo ]; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/development/coq-modules/hydra-battles/default.nix b/pkgs/development/coq-modules/hydra-battles/default.nix index 4c7fd1908b67..f3cfcc7888c9 100644 --- a/pkgs/development/coq-modules/hydra-battles/default.nix +++ b/pkgs/development/coq-modules/hydra-battles/default.nix @@ -30,7 +30,7 @@ useDune = true; - meta = with lib; { + meta = { description = "Exploration of some properties of Kirby and Paris' hydra battles, with the help of Coq"; longDescription = '' An exploration of some properties of Kirby and Paris' hydra @@ -39,12 +39,12 @@ ordinal numbers, and a part of the so-called Ketonen and Solovay machinery (combinatorial properties of epsilon0). ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ siraben Zimmi48 ]; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/interval/default.nix b/pkgs/development/coq-modules/interval/default.nix index aac6ba0581d8..a0f65d94e37c 100644 --- a/pkgs/development/coq-modules/interval/default.nix +++ b/pkgs/development/coq-modules/interval/default.nix @@ -70,9 +70,9 @@ mkCoqDerivation rec { mlPlugin = true; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Tactics for simplifying the proofs of inequalities on expressions of real numbers for the Coq proof assistant"; - license = licenses.cecill-c; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.cecill-c; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/coq-modules/iris/default.nix b/pkgs/development/coq-modules/iris/default.nix index e85c6c53f56a..ffc695ed50a3 100644 --- a/pkgs/development/coq-modules/iris/default.nix +++ b/pkgs/development/coq-modules/iris/default.nix @@ -44,12 +44,12 @@ mkCoqDerivation { fi ''; - meta = with lib; { + meta = { description = "Coq development of the Iris Project"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ - maintainers.vbgl - maintainers.ineol + lib.maintainers.vbgl + lib.maintainers.ineol ]; }; } diff --git a/pkgs/development/coq-modules/itauto/default.nix b/pkgs/development/coq-modules/itauto/default.nix index 690298742b9a..b7d9e74c9805 100644 --- a/pkgs/development/coq-modules/itauto/default.nix +++ b/pkgs/development/coq-modules/itauto/default.nix @@ -45,10 +45,10 @@ propagatedBuildInputs = [ stdlib ]; - meta = with lib; { + meta = { description = "Reflexive SAT solver parameterised by a leaf tactic and Nelson-Oppen support"; - maintainers = with maintainers; [ siraben ]; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.gpl3Plus; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/jasmin/default.nix b/pkgs/development/coq-modules/jasmin/default.nix index 5001c837052c..12eca9fd9c44 100644 --- a/pkgs/development/coq-modules/jasmin/default.nix +++ b/pkgs/development/coq-modules/jasmin/default.nix @@ -52,11 +52,11 @@ "proofs" ]; - meta = with lib; { + meta = { description = "Jasmin language & verified compiler"; homepage = "https://github.com/jasmin-lang/jasmin/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ proux01 vbgl ]; diff --git a/pkgs/development/coq-modules/lemma-overloading/default.nix b/pkgs/development/coq-modules/lemma-overloading/default.nix index 743a462944aa..3c669e9fc9bc 100644 --- a/pkgs/development/coq-modules/lemma-overloading/default.nix +++ b/pkgs/development/coq-modules/lemma-overloading/default.nix @@ -64,9 +64,9 @@ mkCoqDerivation { propagatedBuildInputs = [ mathcomp-ssreflect ]; - meta = with lib; { + meta = { description = "Libraries demonstrating design patterns for programming and proving with canonical structures in Coq"; maintainers = with lib.maintainers; [ cohencyril ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/coq-modules/ltac2/default.nix b/pkgs/development/coq-modules/ltac2/default.nix index bbce0ad81abc..0fddc1ef56eb 100644 --- a/pkgs/development/coq-modules/ltac2/default.nix +++ b/pkgs/development/coq-modules/ltac2/default.nix @@ -38,9 +38,9 @@ mkCoqDerivation { mlPlugin = true; - meta = with lib; { + meta = { description = "Robust and expressive tactic language for Coq"; - maintainers = [ maintainers.vbgl ]; - license = licenses.lgpl21; + maintainers = [ lib.maintainers.vbgl ]; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/coq-modules/mathcomp-abel/default.nix b/pkgs/development/coq-modules/mathcomp-abel/default.nix index 833333392536..bfdf24521c42 100644 --- a/pkgs/development/coq-modules/mathcomp-abel/default.nix +++ b/pkgs/development/coq-modules/mathcomp-abel/default.nix @@ -47,9 +47,9 @@ mkCoqDerivation { mathcomp-real-closed ]; - meta = with lib; { + meta = { description = "Abel - Galois and Abel - Ruffini Theorems"; - license = licenses.cecill-b; - maintainers = [ maintainers.cohencyril ]; + license = lib.licenses.cecill-b; + maintainers = [ lib.maintainers.cohencyril ]; }; } diff --git a/pkgs/development/coq-modules/mathcomp-infotheo/default.nix b/pkgs/development/coq-modules/mathcomp-infotheo/default.nix index c8c980583824..20da8f9d0cfa 100644 --- a/pkgs/development/coq-modules/mathcomp-infotheo/default.nix +++ b/pkgs/development/coq-modules/mathcomp-infotheo/default.nix @@ -61,9 +61,9 @@ propagatedBuildInputs = [ mathcomp-analysis-stdlib ]; - meta = with lib; { + meta = { description = "Coq formalization of information theory and linear error-correcting codes"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; }; }).overrideAttrs (o: { diff --git a/pkgs/development/coq-modules/mathcomp-word/default.nix b/pkgs/development/coq-modules/mathcomp-word/default.nix index 1a0816e82352..674891119188 100644 --- a/pkgs/development/coq-modules/mathcomp-word/default.nix +++ b/pkgs/development/coq-modules/mathcomp-word/default.nix @@ -81,9 +81,9 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { description = "Yet Another Coq Library on Machine Words"; - maintainers = [ maintainers.vbgl ]; - license = licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/coq-modules/metalib/default.nix b/pkgs/development/coq-modules/metalib/default.nix index a8a889e999b8..4d62660a1045 100644 --- a/pkgs/development/coq-modules/metalib/default.nix +++ b/pkgs/development/coq-modules/metalib/default.nix @@ -25,9 +25,9 @@ release."8.15".sha256 = "0wbp058zwa4bkdjj38aysy2g1avf9nrh8q23a3dil0q00qczi616"; release."8.10".sha256 = "0wbypc05d2lqfm9qaw98ynr5yc1p0ipsvyc3bh1rk9nz7zwirmjs"; - meta = with lib; { - license = licenses.mit; - maintainers = [ maintainers.jwiegley ]; + meta = { + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jwiegley ]; }; }).overrideAttrs (oldAttrs: { diff --git a/pkgs/development/coq-modules/mtac2/default.nix b/pkgs/development/coq-modules/mtac2/default.nix index eed638c269e4..d7fd6f4a36d8 100644 --- a/pkgs/development/coq-modules/mtac2/default.nix +++ b/pkgs/development/coq-modules/mtac2/default.nix @@ -22,9 +22,9 @@ mkCoqDerivation { releaseRev = v: "v${v}"; mlPlugin = true; propagatedBuildInputs = [ unicoq ]; - meta = with lib; { + meta = { description = "Typed tactic language for Coq"; - license = licenses.mit; + license = lib.licenses.mit; }; preBuild = '' coq_makefile -f _CoqProject -o Makefile diff --git a/pkgs/development/coq-modules/odd-order/default.nix b/pkgs/development/coq-modules/odd-order/default.nix index 907828d3c06a..5f8b3ba5fa91 100644 --- a/pkgs/development/coq-modules/odd-order/default.nix +++ b/pkgs/development/coq-modules/odd-order/default.nix @@ -46,10 +46,10 @@ mkCoqDerivation { mathcomp-character ]; - meta = with lib; { + meta = { description = "Formal proof of the Odd Order Theorem"; - maintainers = with maintainers; [ siraben ]; - license = licenses.cecill-b; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.cecill-b; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/paramcoq/default.nix b/pkgs/development/coq-modules/paramcoq/default.nix index d665b0b4f605..3039d7092640 100644 --- a/pkgs/development/coq-modules/paramcoq/default.nix +++ b/pkgs/development/coq-modules/paramcoq/default.nix @@ -43,9 +43,9 @@ mkCoqDerivation { release."1.1.2+coq8.7".sha256 = "09n0ky7ldb24by7yf5j3hv410h85x50ksilf7qacl7xglj4gy5hj"; releaseRev = v: "v${v}"; mlPlugin = true; - meta = with lib; { + meta = { description = "Coq plugin for parametricity"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/parsec/default.nix b/pkgs/development/coq-modules/parsec/default.nix index 56c37cca8e00..721777bcb7c1 100644 --- a/pkgs/development/coq-modules/parsec/default.nix +++ b/pkgs/development/coq-modules/parsec/default.nix @@ -38,9 +38,9 @@ mkCoqDerivation { useDuneifVersion = v: lib.versions.isGe "0.2.0" v || v == "dev"; - meta = with lib; { + meta = { description = "Library for serialization to S-expressions"; - license = licenses.bsd3; - maintainers = with maintainers; [ Zimmi48 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ Zimmi48 ]; }; } diff --git a/pkgs/development/coq-modules/pocklington/default.nix b/pkgs/development/coq-modules/pocklington/default.nix index 44dff53fb1a7..2bc15df96ad1 100644 --- a/pkgs/development/coq-modules/pocklington/default.nix +++ b/pkgs/development/coq-modules/pocklington/default.nix @@ -22,10 +22,10 @@ mkCoqDerivation { } ] null; - meta = with lib; { + meta = { description = "Pocklington's criterion for primality in Coq"; - maintainers = with maintainers; [ siraben ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/reglang/default.nix b/pkgs/development/coq-modules/reglang/default.nix index 44f5cfc31f78..75c1861b9339 100644 --- a/pkgs/development/coq-modules/reglang/default.nix +++ b/pkgs/development/coq-modules/reglang/default.nix @@ -45,10 +45,10 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { description = "Regular Language Representations in Coq"; - maintainers = with maintainers; [ siraben ]; - license = licenses.cecill-b; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.cecill-b; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/relation-algebra/default.nix b/pkgs/development/coq-modules/relation-algebra/default.nix index 4f0302a72915..c3285a19c119 100644 --- a/pkgs/development/coq-modules/relation-algebra/default.nix +++ b/pkgs/development/coq-modules/relation-algebra/default.nix @@ -52,10 +52,10 @@ mkCoqDerivation { mathcomp-boot ]; - meta = with lib; { + meta = { description = "Relation algebra library for Coq"; - maintainers = with maintainers; [ siraben ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/semantics/default.nix b/pkgs/development/coq-modules/semantics/default.nix index 55b646fab1e5..097fdc24abac 100644 --- a/pkgs/development/coq-modules/semantics/default.nix +++ b/pkgs/development/coq-modules/semantics/default.nix @@ -55,14 +55,14 @@ mkCoqDerivation { done ''; - meta = with lib; { + meta = { description = "Survey of programming language semantics styles in Coq"; longDescription = '' A survey of semantics styles in Coq, from natural semantics through structural operational, axiomatic, and denotational semantics, to abstract interpretation ''; - maintainers = with maintainers; [ siraben ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/coq-modules/serapi/default.nix b/pkgs/development/coq-modules/serapi/default.nix index 757f8d325ed0..cf8b818465bf 100644 --- a/pkgs/development/coq-modules/serapi/default.nix +++ b/pkgs/development/coq-modules/serapi/default.nix @@ -92,11 +92,11 @@ in runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/ejgallego/coq-serapi"; description = "SerAPI is a library for machine-to-machine interaction with the Coq proof assistant"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ alizter Zimmi48 ]; diff --git a/pkgs/development/coq-modules/simple-io/default.nix b/pkgs/development/coq-modules/simple-io/default.nix index 87b4116aafdc..8b7209692f27 100644 --- a/pkgs/development/coq-modules/simple-io/default.nix +++ b/pkgs/development/coq-modules/simple-io/default.nix @@ -44,10 +44,10 @@ passthru.tests.HelloWorld = callPackage ./test.nix { }; - meta = with lib; { + meta = { description = "Purely functional IO for Coq"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/smpl/default.nix b/pkgs/development/coq-modules/smpl/default.nix index 920ea748b2f1..58a5861e1ccf 100644 --- a/pkgs/development/coq-modules/smpl/default.nix +++ b/pkgs/development/coq-modules/smpl/default.nix @@ -44,10 +44,10 @@ mkCoqDerivation { mlPlugin = true; - meta = with lib; { + meta = { description = "Coq plugin providing an extensible tactic similar to first"; - maintainers = with maintainers; [ siraben ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/smtcoq/default.nix b/pkgs/development/coq-modules/smtcoq/default.nix index 313c14300361..a03a826f94f9 100644 --- a/pkgs/development/coq-modules/smtcoq/default.nix +++ b/pkgs/development/coq-modules/smtcoq/default.nix @@ -92,10 +92,10 @@ mkCoqDerivation { # This is meant to ease future troubleshooting of cvc5 build failures passthru = { inherit cvc5; }; - meta = with lib; { + meta = { description = "Communication between Coq and SAT/SMT solvers"; - maintainers = with maintainers; [ siraben ]; - license = licenses.cecill-b; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.cecill-b; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/ssprove/default.nix b/pkgs/development/coq-modules/ssprove/default.nix index c4e82d9a249a..b5c6a92d3ba5 100644 --- a/pkgs/development/coq-modules/ssprove/default.nix +++ b/pkgs/development/coq-modules/ssprove/default.nix @@ -66,9 +66,9 @@ mathcomp-word ]; - meta = with lib; { + meta = { description = "SSProve: A Foundational Framework for Modular Cryptographic Proofs in Coq"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ { name = "Sebastian Ertel"; diff --git a/pkgs/development/coq-modules/stdpp/default.nix b/pkgs/development/coq-modules/stdpp/default.nix index 10dce5b13c29..4270c5877a2c 100644 --- a/pkgs/development/coq-modules/stdpp/default.nix +++ b/pkgs/development/coq-modules/stdpp/default.nix @@ -44,12 +44,12 @@ mkCoqDerivation { fi ''; - meta = with lib; { + meta = { description = "Extended “Standard Library” for Coq"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ - maintainers.vbgl - maintainers.ineol + lib.maintainers.vbgl + lib.maintainers.ineol ]; }; } diff --git a/pkgs/development/coq-modules/tlc/default.nix b/pkgs/development/coq-modules/tlc/default.nix index 2aeca7509eb6..aa785d4d0c09 100644 --- a/pkgs/development/coq-modules/tlc/default.nix +++ b/pkgs/development/coq-modules/tlc/default.nix @@ -40,11 +40,11 @@ propagatedBuildInputs = [ stdlib ]; - meta = with lib; { + meta = { homepage = "http://www.chargueraud.org/softs/tlc/"; description = "Non-constructive library for Coq"; - license = licenses.free; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.free; + maintainers = [ lib.maintainers.vbgl ]; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/topology/default.nix b/pkgs/development/coq-modules/topology/default.nix index 7d285060d575..42a5cc0733f4 100644 --- a/pkgs/development/coq-modules/topology/default.nix +++ b/pkgs/development/coq-modules/topology/default.nix @@ -54,13 +54,13 @@ mkCoqDerivation { useDuneifVersion = lib.versions.isGe "9.0"; - meta = with lib; { + meta = { description = "General topology in Coq"; longDescription = '' This library develops some of the basic concepts and results of general topology in Coq. ''; - maintainers = with maintainers; [ siraben ]; - license = licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/development/coq-modules/trakt/default.nix b/pkgs/development/coq-modules/trakt/default.nix index 0a1b04b8b4ee..c0de83cdab4e 100644 --- a/pkgs/development/coq-modules/trakt/default.nix +++ b/pkgs/development/coq-modules/trakt/default.nix @@ -42,10 +42,10 @@ mkCoqDerivation { stdlib ]; - meta = with lib; { + meta = { description = "Generic goal preprocessing tool for proof automation tactics in Coq"; - maintainers = with maintainers; [ siraben ]; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/coq-modules/unicoq/default.nix b/pkgs/development/coq-modules/unicoq/default.nix index 9376ba07b5fc..aa9a84ac8315 100644 --- a/pkgs/development/coq-modules/unicoq/default.nix +++ b/pkgs/development/coq-modules/unicoq/default.nix @@ -20,9 +20,9 @@ mkCoqDerivation { release."1.6-8.19".sha256 = "sha256-fDk60B8AzJwiemxHGgWjNu6PTu6NcJoI9uK7Ww2AT14="; releaseRev = v: "v${v}"; mlPlugin = true; - meta = with lib; { + meta = { description = "Enhanced unification algorithm for Coq"; - license = licenses.mit; + license = lib.licenses.mit; }; preBuild = '' coq_makefile -f _CoqProject -o Makefile diff --git a/pkgs/development/coq-modules/vscoq-language-server/default.nix b/pkgs/development/coq-modules/vscoq-language-server/default.nix index ceec12c89859..730b1720efd3 100644 --- a/pkgs/development/coq-modules/vscoq-language-server/default.nix +++ b/pkgs/development/coq-modules/vscoq-language-server/default.nix @@ -81,8 +81,8 @@ ocamlPackages.buildDunePackage { { description = "Language server for the vscoq vscode/codium extension"; homepage = "https://github.com/coq-community/vscoq"; - maintainers = with maintainers; [ cohencyril ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ cohencyril ]; + license = lib.licenses.mit; } // optionalAttrs (fetched.broken or false) { coqFilter = true; diff --git a/pkgs/development/coq-modules/zorns-lemma/default.nix b/pkgs/development/coq-modules/zorns-lemma/default.nix index 37870d29d18a..46f900843b7a 100644 --- a/pkgs/development/coq-modules/zorns-lemma/default.nix +++ b/pkgs/development/coq-modules/zorns-lemma/default.nix @@ -57,15 +57,15 @@ useDuneifVersion = lib.versions.isGe "9.0"; - meta = with lib; { + meta = { description = "Development of basic set theory"; longDescription = '' This Coq library develops some basic set theory. The main purpose the author had in writing it was as support for the Topology library. ''; - maintainers = with maintainers; [ siraben ]; - license = licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ siraben ]; + license = lib.licenses.lgpl21Plus; }; }).overrideAttrs ({ version, ... }: lib.optionalAttrs (lib.versions.isGe "9.0" version) { repo = "topology"; }) diff --git a/pkgs/development/embedded/arduino/arduino-core/default.nix b/pkgs/development/embedded/arduino/arduino-core/default.nix index 7f62463ceba9..0d1b3509555f 100644 --- a/pkgs/development/embedded/arduino/arduino-core/default.nix +++ b/pkgs/development/embedded/arduino/arduino-core/default.nix @@ -275,17 +275,17 @@ stdenv.mkDerivation rec { ''} ''; - meta = with lib; { + meta = { description = "Open-source electronics prototyping platform"; mainProgram = "arduino"; homepage = "https://www.arduino.cc/"; - license = if withTeensyduino then licenses.unfreeRedistributable else licenses.gpl2; - sourceProvenance = with sourceTypes; [ + license = if withTeensyduino then lib.licenses.unfreeRedistributable else lib.licenses.gpl2; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ antono auntie robberer diff --git a/pkgs/development/embedded/rshell/default.nix b/pkgs/development/embedded/rshell/default.nix index ce9b23c43166..b9826336d9c6 100644 --- a/pkgs/development/embedded/rshell/default.nix +++ b/pkgs/development/embedded/rshell/default.nix @@ -21,10 +21,10 @@ buildPythonApplication rec { pyudev ]; - meta = with lib; { + meta = { homepage = "https://github.com/dhylands/rshell"; description = "Remote Shell for MicroPython"; - license = licenses.mit; - maintainers = with maintainers; [ c0deaddict ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ c0deaddict ]; }; } diff --git a/pkgs/development/emilua-plugins/bech32/default.nix b/pkgs/development/emilua-plugins/bech32/default.nix index dee2e9973768..1cc347b00b39 100644 --- a/pkgs/development/emilua-plugins/bech32/default.nix +++ b/pkgs/development/emilua-plugins/bech32/default.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "Bech32 codec for Emilua"; homepage = "https://emilua.org/"; - license = licenses.mit; - maintainers = with maintainers; [ manipuladordedados ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manipuladordedados ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/emilua-plugins/botan/default.nix b/pkgs/development/emilua-plugins/botan/default.nix index 806ed5d8526d..9566f07a9959 100644 --- a/pkgs/development/emilua-plugins/botan/default.nix +++ b/pkgs/development/emilua-plugins/botan/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "Securely clears secrets from memory in Emilua"; homepage = "https://emilua.org/"; - license = licenses.mit; - maintainers = with maintainers; [ manipuladordedados ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manipuladordedados ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/emilua-plugins/qt5/default.nix b/pkgs/development/emilua-plugins/qt5/default.nix index a8667331ad00..0b4b29d99ec1 100644 --- a/pkgs/development/emilua-plugins/qt5/default.nix +++ b/pkgs/development/emilua-plugins/qt5/default.nix @@ -74,14 +74,14 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Qt5 bindings for Emilua"; homepage = "https://emilua.org/"; - license = licenses.boost; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ manipuladordedados lucasew ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/emilua-plugins/qt6/default.nix b/pkgs/development/emilua-plugins/qt6/default.nix index 9f9d5243da37..1c43e3de9d48 100644 --- a/pkgs/development/emilua-plugins/qt6/default.nix +++ b/pkgs/development/emilua-plugins/qt6/default.nix @@ -78,14 +78,14 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Qt6 bindings for Emilua"; homepage = "https://emilua.org/"; - license = licenses.boost; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ manipuladordedados lucasew ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/emilua-plugins/secp256k1/default.nix b/pkgs/development/emilua-plugins/secp256k1/default.nix index 64dd6ad939ea..5651b5e7863c 100644 --- a/pkgs/development/emilua-plugins/secp256k1/default.nix +++ b/pkgs/development/emilua-plugins/secp256k1/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "Emilua bindings to libsecp256k1"; homepage = "https://emilua.org/"; - license = licenses.mit; - maintainers = with maintainers; [ manipuladordedados ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manipuladordedados ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/emilua-plugins/tdlib/default.nix b/pkgs/development/emilua-plugins/tdlib/default.nix index 611c1cd33b16..8820e9c88f99 100644 --- a/pkgs/development/emilua-plugins/tdlib/default.nix +++ b/pkgs/development/emilua-plugins/tdlib/default.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "Telegram Database Library bindings for Emilua"; homepage = "https://emilua.org/"; - license = licenses.mit; - maintainers = with maintainers; [ manipuladordedados ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manipuladordedados ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/emilua-plugins/this-thread/default.nix b/pkgs/development/emilua-plugins/this-thread/default.nix index cb3e328c464a..198367333e2d 100644 --- a/pkgs/development/emilua-plugins/this-thread/default.nix +++ b/pkgs/development/emilua-plugins/this-thread/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = with lib; { + meta = { description = "Access C++'s this_thread from Lua"; homepage = "https://emilua.org/"; - license = licenses.mit; - maintainers = with maintainers; [ manipuladordedados ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manipuladordedados ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/hare-third-party/hare-compress/default.nix b/pkgs/development/hare-third-party/hare-compress/default.nix index ce9103cddfe1..2d48370ed45d 100644 --- a/pkgs/development/hare-third-party/hare-compress/default.nix +++ b/pkgs/development/hare-third-party/hare-compress/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/hare-compress/"; description = "Compression algorithms for Hare"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ starzation ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ starzation ]; inherit (harec.meta) platforms badPlatforms; }; }) diff --git a/pkgs/development/hare-third-party/hare-ev/default.nix b/pkgs/development/hare-third-party/hare-ev/default.nix index 42b6044ca49b..0e27a65b8634 100644 --- a/pkgs/development/hare-third-party/hare-ev/default.nix +++ b/pkgs/development/hare-third-party/hare-ev/default.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Event loop for Hare programs"; homepage = "https://sr.ht/~sircmpwn/hare-ev"; - license = licenses.mpl20; - maintainers = with maintainers; [ colinsane ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ colinsane ]; inherit (hareHook.meta) platforms badPlatforms; }; } diff --git a/pkgs/development/hare-third-party/hare-json/default.nix b/pkgs/development/hare-third-party/hare-json/default.nix index a1ce306c3615..09608c170de7 100644 --- a/pkgs/development/hare-third-party/hare-json/default.nix +++ b/pkgs/development/hare-third-party/hare-json/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/hare-json/"; description = "This package provides JSON support for Hare"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ starzation ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ starzation ]; inherit (harec.meta) platforms badPlatforms; }; }) diff --git a/pkgs/development/hare-third-party/hare-png/default.nix b/pkgs/development/hare-third-party/hare-png/default.nix index 1eb6072dfe2e..f7349600e773 100644 --- a/pkgs/development/hare-third-party/hare-png/default.nix +++ b/pkgs/development/hare-third-party/hare-png/default.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/hare-png/"; description = "PNG implementation for Hare"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ starzation ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ starzation ]; inherit (hareHook.meta) platforms badPlatforms; }; }) diff --git a/pkgs/development/hare-third-party/hare-ssh/default.nix b/pkgs/development/hare-third-party/hare-ssh/default.nix index 8e29c6965c58..e98e3172b739 100644 --- a/pkgs/development/hare-third-party/hare-ssh/default.nix +++ b/pkgs/development/hare-third-party/hare-ssh/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/hare-ssh/"; description = "SSH client & server protocol implementation for Hare"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ patwid ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ patwid ]; inherit (hareHook.meta) platforms badPlatforms; }; diff --git a/pkgs/development/interpreters/acl2/default.nix b/pkgs/development/interpreters/acl2/default.nix index f31574ccc9b3..08a4c836190b 100644 --- a/pkgs/development/interpreters/acl2/default.nix +++ b/pkgs/development/interpreters/acl2/default.nix @@ -177,7 +177,7 @@ stdenv.mkDerivation rec { homepage = "https://www.cs.utexas.edu/users/moore/acl2/"; downloadPage = "https://github.com/acl2-devel/acl2-devel/releases"; license = - with licenses; + with lib.licenses; [ # ACL2 itself is bsd3 bsd3 @@ -192,10 +192,10 @@ stdenv.mkDerivation rec { publicDomain unfreeRedistributable ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kini raskin ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/interpreters/acl2/libipasirglucose4/default.nix b/pkgs/development/interpreters/acl2/libipasirglucose4/default.nix index a2a4b159d1d9..e52e45ee1a03 100644 --- a/pkgs/development/interpreters/acl2/libipasirglucose4/default.nix +++ b/pkgs/development/interpreters/acl2/libipasirglucose4/default.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { install -D ${libname} $out/lib/${libname} ''; - meta = with lib; { + meta = { description = "Shared library providing IPASIR interface to the Glucose SAT solver"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ kini ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ kini ]; }; } diff --git a/pkgs/development/interpreters/asmrepl/default.nix b/pkgs/development/interpreters/asmrepl/default.nix index 1fd7375f8b8d..68e529641082 100644 --- a/pkgs/development/interpreters/asmrepl/default.nix +++ b/pkgs/development/interpreters/asmrepl/default.nix @@ -11,11 +11,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "asmrepl"; - meta = with lib; { + meta = { description = "REPL for x86-64 assembly language"; homepage = "https://github.com/tenderlove/asmrepl"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.x86_64; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/development/interpreters/clojure/default.nix b/pkgs/development/interpreters/clojure/default.nix index c7e0cb75e2e0..eadf0f60b41a 100644 --- a/pkgs/development/interpreters/clojure/default.nix +++ b/pkgs/development/interpreters/clojure/default.nix @@ -92,11 +92,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.jdk = jdk; - meta = with lib; { + meta = { description = "Lisp dialect for the JVM"; homepage = "https://clojure.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.epl10; longDescription = '' Clojure is a dynamic programming language that targets the Java Virtual Machine. It is designed to be a general-purpose language, @@ -116,7 +116,7 @@ stdenv.mkDerivation (finalAttrs: { offers a software transactional memory system and reactive Agent system that ensure clean, correct, multithreaded designs. ''; - maintainers = with maintainers; [ jlesquembre ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jlesquembre ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/interpreters/dzaima-apl/default.nix b/pkgs/development/interpreters/dzaima-apl/default.nix index be4182cdceaa..a926fb432a21 100644 --- a/pkgs/development/interpreters/dzaima-apl/default.nix +++ b/pkgs/development/interpreters/dzaima-apl/default.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/dzaima/APL"; description = "APL implementation in Java" + lib.optionalString buildNativeImage ", compiled as a native image"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; inherit (jdk.meta) platforms; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/dapl-native.x86_64-darwin diff --git a/pkgs/development/interpreters/gauche/boot.nix b/pkgs/development/interpreters/gauche/boot.nix index 497ebba15557..b7979ee9e6f7 100644 --- a/pkgs/development/interpreters/gauche/boot.nix +++ b/pkgs/development/interpreters/gauche/boot.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { # TODO: Fix tests that fail in sandbox build doCheck = false; - meta = with lib; { + meta = { description = "R7RS Scheme scripting engine (released version)"; homepage = "https://practical-scheme.net/gauche/"; mainProgram = "gosh"; - maintainers = with maintainers; [ mnacamura ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ mnacamura ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/interpreters/gauche/default.nix b/pkgs/development/interpreters/gauche/default.nix index bd9354fabf9d..67009cff1076 100644 --- a/pkgs/development/interpreters/gauche/default.nix +++ b/pkgs/development/interpreters/gauche/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { # TODO: Fix tests that fail in sandbox build doCheck = false; - meta = with lib; { + meta = { description = "R7RS Scheme scripting engine"; homepage = "https://practical-scheme.net/gauche/"; mainProgram = "gosh"; - maintainers = with maintainers; [ mnacamura ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ mnacamura ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/interpreters/guile/1.8.nix b/pkgs/development/interpreters/guile/1.8.nix index a77a794661cf..55ef0d6a781d 100644 --- a/pkgs/development/interpreters/guile/1.8.nix +++ b/pkgs/development/interpreters/guile/1.8.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation rec { siteDir = "share/guile/site"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -106,8 +106,8 @@ stdenv.mkDerivation rec { system calls, networking support, multiple threads, dynamic linking, a foreign function call interface, and powerful string processing. ''; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ludo ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ ludo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/interpreters/guile/2.0.nix b/pkgs/development/interpreters/guile/2.0.nix index 4a00c4a277c6..a5632c370cd9 100644 --- a/pkgs/development/interpreters/guile/2.0.nix +++ b/pkgs/development/interpreters/guile/2.0.nix @@ -144,7 +144,7 @@ builder rec { siteDir = "share/guile/site/${effectiveVersion}"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -156,9 +156,9 @@ builder rec { linking, a foreign function call interface, and powerful string processing. ''; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ludo ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ ludo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/interpreters/guile/2.2.nix b/pkgs/development/interpreters/guile/2.2.nix index 2d83596f0746..146b29407b30 100644 --- a/pkgs/development/interpreters/guile/2.2.nix +++ b/pkgs/development/interpreters/guile/2.2.nix @@ -132,7 +132,7 @@ builder rec { siteDir = "share/guile/site/${effectiveVersion}"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -143,8 +143,8 @@ builder rec { system calls, networking support, multiple threads, dynamic linking, a foreign function call interface, and powerful string processing. ''; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ludo ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ ludo ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/interpreters/guile/3.0.nix b/pkgs/development/interpreters/guile/3.0.nix index 979c1acb5671..459f51aff16d 100644 --- a/pkgs/development/interpreters/guile/3.0.nix +++ b/pkgs/development/interpreters/guile/3.0.nix @@ -177,7 +177,7 @@ builder rec { ''; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -188,8 +188,8 @@ builder rec { system calls, networking support, multiple threads, dynamic linking, a foreign function call interface, and powerful string processing. ''; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/interpreters/janet/default.nix b/pkgs/development/interpreters/janet/default.nix index 4b8ebe80cbe7..56f87e0faef7 100644 --- a/pkgs/development/interpreters/janet/default.nix +++ b/pkgs/development/interpreters/janet/default.nix @@ -63,14 +63,14 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Janet programming language"; mainProgram = "janet"; homepage = "https://janet-lang.org/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/interpreters/jruby/default.nix b/pkgs/development/interpreters/jruby/default.nix index 0b8a388d3ea4..2bd3693cb89d 100644 --- a/pkgs/development/interpreters/jruby/default.nix +++ b/pkgs/development/interpreters/jruby/default.nix @@ -65,17 +65,17 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Ruby interpreter written in Java"; homepage = "https://www.jruby.org/"; changelog = "https://github.com/jruby/jruby/releases/tag/${finalAttrs.version}"; - license = with licenses; [ + license = with lib.licenses; [ cpl10 gpl2 lgpl21 ]; platforms = jre.meta.platforms; - maintainers = [ maintainers.fzakaria ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + maintainers = [ lib.maintainers.fzakaria ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/development/interpreters/kerf/default.nix b/pkgs/development/interpreters/kerf/default.nix index 3193efaad5bc..9b59cff8e7b5 100644 --- a/pkgs/development/interpreters/kerf/default.nix +++ b/pkgs/development/interpreters/kerf/default.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { installPhase = "install -D kerf $out/bin/kerf"; - meta = with lib; { + meta = { description = "Columnar tick database and time-series language"; mainProgram = "kerf"; longDescription = '' @@ -90,10 +90,10 @@ stdenv.mkDerivation rec { used for local analytics, timeseries, logfile processing, and more. ''; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; homepage = "https://github.com/kevinlawler/kerf1"; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; # aarch64-linux seems hopeless, with over 2,000 warnings # generated? diff --git a/pkgs/development/interpreters/lfe/default.nix b/pkgs/development/interpreters/lfe/default.nix index ba29c073353f..353e3231a272 100644 --- a/pkgs/development/interpreters/lfe/default.nix +++ b/pkgs/development/interpreters/lfe/default.nix @@ -92,7 +92,7 @@ else done ''; - meta = with lib; { + meta = { description = "Best of Erlang and of Lisp; at the same time"; longDescription = '' LFE, Lisp Flavoured Erlang, is a lisp syntax front-end to the Erlang @@ -104,8 +104,8 @@ else downloadPage = "https://github.com/lfe/lfe/releases"; changelog = "https://github.com/lfe/lfe/releases/tag/v${version}"; - license = licenses.asl20; - teams = [ teams.beam ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + teams = [ lib.teams.beam ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/interpreters/luajit/default.nix b/pkgs/development/interpreters/luajit/default.nix index a4f7754ed05b..a0f902f5200e 100644 --- a/pkgs/development/interpreters/luajit/default.nix +++ b/pkgs/development/interpreters/luajit/default.nix @@ -147,19 +147,19 @@ stdenv.mkDerivation (finalAttrs: { }; meta = - with lib; + { description = "High-performance JIT compiler for Lua 5.1"; homepage = "https://luajit.org/"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; badPlatforms = [ "loongarch64-linux" # See https://github.com/LuaJIT/LuaJIT/issues/1278 "riscv64-linux" # See https://github.com/LuaJIT/LuaJIT/issues/628 "powerpc64le-linux" # `#error "No support for PPC64"` ]; mainProgram = "lua"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice smironov vcunat diff --git a/pkgs/development/interpreters/php/generic.nix b/pkgs/development/interpreters/php/generic.nix index 849ea239eff3..6eb8ec596680 100644 --- a/pkgs/development/interpreters/php/generic.nix +++ b/pkgs/development/interpreters/php/generic.nix @@ -410,13 +410,13 @@ let }; }; - meta = with lib; { + meta = { description = "HTML-embedded scripting language"; homepage = "https://www.php.net/"; - license = licenses.php301; + license = lib.licenses.php301; mainProgram = "php"; - teams = [ teams.php ]; - platforms = platforms.all; + teams = [ lib.teams.php ]; + platforms = lib.platforms.all; outputsToInstall = [ "out" "dev" diff --git a/pkgs/development/interpreters/python/cpython/default.nix b/pkgs/development/interpreters/python/cpython/default.nix index 2f5342efd403..3f91c65090a8 100644 --- a/pkgs/development/interpreters/python/cpython/default.nix +++ b/pkgs/development/interpreters/python/cpython/default.nix @@ -845,9 +845,10 @@ stdenv.mkDerivation (finalAttrs: { hierarchical packages; exception-based error handling; and very high level dynamic data types. ''; - license = licenses.psfl; + license = lib.licenses.psfl; pkgConfigModules = [ "python3" ]; - platforms = platforms.linux ++ platforms.darwin ++ platforms.windows ++ platforms.freebsd; + platforms = + lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.windows ++ lib.platforms.freebsd; mainProgram = executable; teams = [ lib.teams.python ]; # static build on x86_64-darwin/aarch64-darwin breaks with: diff --git a/pkgs/development/interpreters/python/pypy/default.nix b/pkgs/development/interpreters/python/pypy/default.nix index 7c8ef2fbfb80..727e76b7fd7a 100644 --- a/pkgs/development/interpreters/python/pypy/default.nix +++ b/pkgs/development/interpreters/python/pypy/default.nix @@ -390,12 +390,12 @@ stdenv.mkDerivation rec { inherit passthru; enableParallelBuilding = true; # almost no parallelization without STM - meta = with lib; { + meta = { homepage = "https://www.pypy.org/"; changelog = "https://doc.pypy.org/en/stable/release-v${version}.html"; description = "Fast, compliant alternative implementation of the Python language (${pythonVersion})"; mainProgram = "pypy"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "aarch64-linux" "x86_64-linux" @@ -403,7 +403,7 @@ stdenv.mkDerivation rec { "x86_64-darwin" ]; broken = optimizationLevel == "0"; # generates invalid code - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ andersk fliegendewurst ]; diff --git a/pkgs/development/interpreters/python/pypy/prebuilt.nix b/pkgs/development/interpreters/python/pypy/prebuilt.nix index 2737917c63b5..36246d0dbf68 100644 --- a/pkgs/development/interpreters/python/pypy/prebuilt.nix +++ b/pkgs/development/interpreters/python/pypy/prebuilt.nix @@ -176,11 +176,11 @@ stdenv.mkDerivation { inherit passthru; - meta = with lib; { + meta = { homepage = "http://pypy.org/"; description = "Fast, compliant alternative implementation of the Python language (${pythonVersion})"; mainProgram = "pypy"; - license = licenses.mit; + license = lib.licenses.mit; platforms = lib.attrNames downloadUrls; }; diff --git a/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix b/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix index e5893818407b..04d249224c90 100644 --- a/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix +++ b/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix @@ -171,10 +171,10 @@ stdenv.mkDerivation { inherit passthru; - meta = with lib; { + meta = { homepage = "http://pypy.org/"; description = "Fast, compliant alternative implementation of the Python language (${pythonVersion})"; - license = licenses.mit; + license = lib.licenses.mit; platforms = lib.attrNames downloadUrls; }; diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index f3f1cb84f685..004c25e79d06 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -363,12 +363,12 @@ let disallowedRequisites = op (!jitSupport) stdenv.cc ++ op useBaseRuby baseRuby; - meta = with lib; { + meta = { description = "Object-oriented language for quick and easy programming"; homepage = "https://www.ruby-lang.org/"; - license = licenses.ruby; - maintainers = with maintainers; [ manveru ]; - platforms = platforms.all; + license = lib.licenses.ruby; + maintainers = with lib.maintainers; [ manveru ]; + platforms = lib.platforms.all; mainProgram = "ruby"; knownVulnerabilities = op (lib.versionOlder ver.majMin "3.0") "This Ruby release has reached its end of life. See https://www.ruby-lang.org/en/downloads/branches/."; }; diff --git a/pkgs/development/interpreters/ruby/rubygems/default.nix b/pkgs/development/interpreters/ruby/rubygems/default.nix index 0e676a64c2d3..f79ecf4fa0da 100644 --- a/pkgs/development/interpreters/ruby/rubygems/default.nix +++ b/pkgs/development/interpreters/ruby/rubygems/default.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { ignoredVersions = "(pre|alpha|beta|rc|bundler).*"; }; - meta = with lib; { + meta = { description = "Package management framework for Ruby"; changelog = "https://github.com/rubygems/rubygems/blob/v${version}/CHANGELOG.md"; homepage = "https://rubygems.org/"; - license = with licenses; [ + license = with lib.licenses; [ mit # or ruby ]; mainProgram = "gem"; - maintainers = with maintainers; [ zimbatm ]; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/development/interpreters/spidermonkey/common.nix b/pkgs/development/interpreters/spidermonkey/common.nix index 4462bb085472..024250c929d5 100644 --- a/pkgs/development/interpreters/spidermonkey/common.nix +++ b/pkgs/development/interpreters/spidermonkey/common.nix @@ -176,17 +176,17 @@ stdenv.mkDerivation (finalAttrs: { spidermonkey = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Mozilla's JavaScript engine written in C/C++"; homepage = "https://spidermonkey.dev/"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ lostnet catap bobby285271 ]; # ERROR: Failed to find an adequate linker broken = lib.versionOlder version "128" && stdenv.hostPlatform.isDarwin; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/interpreters/supercollider/default.nix b/pkgs/development/interpreters/supercollider/default.nix index cd6e5c384c1a..5251fdb8c7d6 100644 --- a/pkgs/development/interpreters/supercollider/default.nix +++ b/pkgs/development/interpreters/supercollider/default.nix @@ -118,12 +118,12 @@ mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Programming language for real time audio synthesis"; homepage = "https://supercollider.github.io"; changelog = "https://github.com/supercollider/supercollider/blob/Version-${version}/CHANGELOG.md"; maintainers = [ ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/interpreters/supercollider/plugins/sc3-plugins.nix b/pkgs/development/interpreters/supercollider/plugins/sc3-plugins.nix index 858042e29905..a364f7ea032c 100644 --- a/pkgs/development/interpreters/supercollider/plugins/sc3-plugins.nix +++ b/pkgs/development/interpreters/supercollider/plugins/sc3-plugins.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { ignoredVersions = "rc|beta"; }; - meta = with lib; { + meta = { description = "Community plugins for SuperCollider"; homepage = "https://supercollider.github.io/sc3-plugins/"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/interpreters/tcl/generic.nix b/pkgs/development/interpreters/tcl/generic.nix index a2ab3f25671c..7ecc8250b9c2 100644 --- a/pkgs/development/interpreters/tcl/generic.nix +++ b/pkgs/development/interpreters/tcl/generic.nix @@ -108,12 +108,12 @@ let ''} ''; - meta = with lib; { + meta = { description = "Tcl scripting language"; homepage = "https://www.tcl.tk/"; - license = licenses.tcltk; - platforms = platforms.all; - maintainers = with maintainers; [ agbrooks ]; + license = lib.licenses.tcltk; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ agbrooks ]; }; passthru = rec { diff --git a/pkgs/development/libraries/abseil-cpp/202103.nix b/pkgs/development/libraries/abseil-cpp/202103.nix index 7fc104a8b247..6d1dae97fd4c 100644 --- a/pkgs/development/libraries/abseil-cpp/202103.nix +++ b/pkgs/development/libraries/abseil-cpp/202103.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Open-source collection of C++ code designed to augment the C++ standard library"; homepage = "https://abseil.io/"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = [ maintainers.andersk ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.andersk ]; # Requires LFS64 APIs. 202401 and later are fine. broken = stdenv.hostPlatform.isMusl; }; diff --git a/pkgs/development/libraries/accounts-qt/default.nix b/pkgs/development/libraries/accounts-qt/default.nix index 9b4a4f4a1728..2af6cf4c6845 100644 --- a/pkgs/development/libraries/accounts-qt/default.nix +++ b/pkgs/development/libraries/accounts-qt/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "VERSION_"; }; - meta = with lib; { + meta = { description = "Qt library for accessing the online accounts database"; mainProgram = "accountstest"; homepage = "https://gitlab.com/accounts-sso/libaccounts-qt"; - license = licenses.lgpl21; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/libraries/acl/default.nix b/pkgs/development/libraries/acl/default.nix index 4ed011a71cc7..9305fa351d17 100644 --- a/pkgs/development/libraries/acl/default.nix +++ b/pkgs/development/libraries/acl/default.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { patchShebangs . ''; - meta = with lib; { + meta = { inherit (attr.meta) platforms badPlatforms; homepage = "https://savannah.nongnu.org/projects/acl"; description = "Library and tools for manipulating access control lists"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/libraries/agda/1lab/default.nix b/pkgs/development/libraries/agda/1lab/default.nix index d70ce596a5e8..d2e040416952 100644 --- a/pkgs/development/libraries/agda/1lab/default.nix +++ b/pkgs/development/libraries/agda/1lab/default.nix @@ -25,11 +25,11 @@ mkDerivation { sed -Ei '/OPTIONS/s/ -v ?[^ #]+//g' "''${files[@]}" ''; - meta = with lib; { + meta = { description = "Formalised, cross-linked reference resource for mathematics done in Homotopy Type Theory "; homepage = "https://github.com/the1lab/1lab"; - license = licenses.agpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ ncfavier ]; + license = lib.licenses.agpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ncfavier ]; }; } diff --git a/pkgs/development/libraries/agda/agda-categories/default.nix b/pkgs/development/libraries/agda/agda-categories/default.nix index 786c1164fb31..1cfbb905dfed 100644 --- a/pkgs/development/libraries/agda/agda-categories/default.nix +++ b/pkgs/development/libraries/agda/agda-categories/default.nix @@ -28,12 +28,12 @@ mkDerivation rec { buildInputs = [ standard-library ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "New Categories library"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ alexarice turion ]; diff --git a/pkgs/development/libraries/agda/agda-prelude/default.nix b/pkgs/development/libraries/agda/agda-prelude/default.nix index 8cc002793456..7053e26b40af 100644 --- a/pkgs/development/libraries/agda/agda-prelude/default.nix +++ b/pkgs/development/libraries/agda/agda-prelude/default.nix @@ -15,12 +15,12 @@ mkDerivation { hash = "sha256-ab+KojzRbkUTAFNH5OA78s0F5SUuXTbliai6badveg4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/UlfNorell/agda-prelude"; description = "Programming library for Agda"; license = lib.licenses.mit; platforms = lib.platforms.unix; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mudri alexarice turion diff --git a/pkgs/development/libraries/agda/agda2hs-base/default.nix b/pkgs/development/libraries/agda/agda2hs-base/default.nix index eb034878a51d..db89ca6d7bcb 100644 --- a/pkgs/development/libraries/agda/agda2hs-base/default.nix +++ b/pkgs/development/libraries/agda/agda2hs-base/default.nix @@ -15,12 +15,12 @@ mkDerivation { libraryFile = "base.agda-lib"; - meta = with lib; { + meta = { homepage = "https://github.com/agda/agda2hs"; description = "Standard library for compiling Agda code to readable Haskell"; license = lib.licenses.mit; platforms = lib.platforms.unix; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ wrvsrx ]; }; diff --git a/pkgs/development/libraries/agda/agdarsec/default.nix b/pkgs/development/libraries/agda/agdarsec/default.nix index 01cd300d4429..dc99548f1d3e 100644 --- a/pkgs/development/libraries/agda/agdarsec/default.nix +++ b/pkgs/development/libraries/agda/agdarsec/default.nix @@ -22,11 +22,11 @@ mkDerivation { buildInputs = [ standard-library ]; - meta = with lib; { + meta = { homepage = "https://gallais.github.io/agdarsec/"; description = "Total Parser Combinators in Agda"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ turion ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ turion ]; }; } diff --git a/pkgs/development/libraries/agda/cubical/default.nix b/pkgs/development/libraries/agda/cubical/default.nix index a2773829209b..01571f661ff3 100644 --- a/pkgs/development/libraries/agda/cubical/default.nix +++ b/pkgs/development/libraries/agda/cubical/default.nix @@ -15,12 +15,12 @@ mkDerivation rec { hash = "sha256-Lmzofq2rKFmfsAoH3zIFB2QLeUhFmIO44JsF+dDrubw="; }; - meta = with lib; { + meta = { description = "Cubical type theory library for use with the Agda compiler"; homepage = src.meta.homepage; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ alexarice ryanorendorff ncfavier diff --git a/pkgs/development/libraries/agda/functional-linear-algebra/default.nix b/pkgs/development/libraries/agda/functional-linear-algebra/default.nix index a2d5cae4f6f5..522c662f6d33 100644 --- a/pkgs/development/libraries/agda/functional-linear-algebra/default.nix +++ b/pkgs/development/libraries/agda/functional-linear-algebra/default.nix @@ -18,14 +18,14 @@ mkDerivation rec { sha256 = "sha256-3nme/eH4pY6bD0DkhL4Dj/Vp/WnZqkQtZTNk+n1oAyY="; }; - meta = with lib; { + meta = { homepage = "https://github.com/ryanorendorff/functional-linear-algebra"; description = '' Formalizing linear algebra in Agda by representing matrices as functions from one vector space to another. ''; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ ryanorendorff ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ryanorendorff ]; }; } diff --git a/pkgs/development/libraries/agda/generics/default.nix b/pkgs/development/libraries/agda/generics/default.nix index 8de56d82a153..2e7b4b5ed9b5 100644 --- a/pkgs/development/libraries/agda/generics/default.nix +++ b/pkgs/development/libraries/agda/generics/default.nix @@ -25,11 +25,11 @@ mkDerivation rec { rm tests.agda-lib ''; - meta = with lib; { + meta = { description = "Library for datatype-generic programming in Agda"; homepage = src.meta.homepage; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ turion ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ turion ]; }; } diff --git a/pkgs/development/libraries/agda/standard-library/default.nix b/pkgs/development/libraries/agda/standard-library/default.nix index 811f5a63c765..30b0e06c60b9 100644 --- a/pkgs/development/libraries/agda/standard-library/default.nix +++ b/pkgs/development/libraries/agda/standard-library/default.nix @@ -17,12 +17,12 @@ mkDerivation rec { }; passthru.tests = { inherit (nixosTests) agda; }; - meta = with lib; { + meta = { homepage = "https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary"; description = "Standard library for use with the Agda compiler"; license = lib.licenses.mit; platforms = lib.platforms.unix; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jwiegley mudri alexarice diff --git a/pkgs/development/libraries/allegro/5.nix b/pkgs/development/libraries/allegro/5.nix index 1ccea817f083..018b21108edf 100644 --- a/pkgs/development/libraries/allegro/5.nix +++ b/pkgs/development/libraries/allegro/5.nix @@ -131,11 +131,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Game programming library"; homepage = "https://liballeg.org/"; - license = licenses.zlib; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.zlib; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/development/libraries/allegro/default.nix b/pkgs/development/libraries/allegro/default.nix index 02f26957af48..846982028885 100644 --- a/pkgs/development/libraries/allegro/default.nix +++ b/pkgs/development/libraries/allegro/default.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; - meta = with lib; { + meta = { description = "Game programming library"; homepage = "https://liballeg.org/"; - license = licenses.giftware; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; + license = lib.licenses.giftware; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/appstream/default.nix b/pkgs/development/libraries/appstream/default.nix index 842a8a55d290..85ca849d5be4 100644 --- a/pkgs/development/libraries/appstream/default.nix +++ b/pkgs/development/libraries/appstream/default.nix @@ -141,7 +141,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Software metadata handling library"; longDescription = '' AppStream is a cross-distro effort for building Software-Center applications @@ -150,9 +150,9 @@ stdenv.mkDerivation (finalAttrs: { can be consumed by other software. ''; homepage = "https://www.freedesktop.org/wiki/Distributions/AppStream/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; mainProgram = "appstreamcli"; - platforms = platforms.unix; + platforms = lib.platforms.unix; pkgConfigModules = [ "appstream" ]; }; }) diff --git a/pkgs/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix index a173d5a6de49..8d476c108a34 100644 --- a/pkgs/development/libraries/aqbanking/default.nix +++ b/pkgs/development/libraries/aqbanking/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { gettext ]; - meta = with lib; { + meta = { description = "Interface to banking tasks, file formats and country information"; homepage = "https://www.aquamaniac.de/rdm/"; hydraPlatforms = [ ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/aqbanking/gwenhywfar.nix b/pkgs/development/libraries/aqbanking/gwenhywfar.nix index 055034ea2c39..bbb65fd95ac9 100644 --- a/pkgs/development/libraries/aqbanking/gwenhywfar.nix +++ b/pkgs/development/libraries/aqbanking/gwenhywfar.nix @@ -86,11 +86,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "OS abstraction functions used by aqbanking and related tools"; homepage = "https://www.aquamaniac.de/rdm/projects/gwenhywfar"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/aqbanking/libchipcard.nix b/pkgs/development/libraries/aqbanking/libchipcard.nix index 68b98601aa42..9796a3b442a0 100644 --- a/pkgs/development/libraries/aqbanking/libchipcard.nix +++ b/pkgs/development/libraries/aqbanking/libchipcard.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { makeFlags = [ "crypttokenplugindir=$(out)/lib/gwenhywfar/plugins/ct" ]; - meta = with lib; { + meta = { description = "Library for access to chipcards"; homepage = "https://www.aquamaniac.de/rdm/projects/libchipcard"; - license = licenses.lgpl21; - maintainers = with maintainers; [ aszlig ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ aszlig ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/attr/default.nix b/pkgs/development/libraries/attr/default.nix index a82736b5accc..046d19925b44 100644 --- a/pkgs/development/libraries/attr/default.nix +++ b/pkgs/development/libraries/attr/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://savannah.nongnu.org/projects/attr/"; description = "Library and tools for manipulating extended attributes"; - platforms = platforms.linux; - badPlatforms = platforms.microblaze; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + badPlatforms = lib.platforms.microblaze; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/libraries/audio/libbass/default.nix b/pkgs/development/libraries/audio/libbass/default.nix index 1e9291a2fe58..58f59efefcda 100644 --- a/pkgs/development/libraries/audio/libbass/default.nix +++ b/pkgs/development/libraries/audio/libbass/default.nix @@ -98,12 +98,12 @@ let install -m644 -t $out/include/ ${bass.h} ''; - meta = with lib; { + meta = { description = "Shareware audio library"; homepage = "https://www.un4seen.com/"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; platforms = builtins.attrNames bass.so; - maintainers = with maintainers; [ poz ]; + maintainers = with lib.maintainers; [ poz ]; }; }; diff --git a/pkgs/development/libraries/audio/rtaudio/default.nix b/pkgs/development/libraries/audio/rtaudio/default.nix index 00f98be49fe9..843788a86357 100644 --- a/pkgs/development/libraries/audio/rtaudio/default.nix +++ b/pkgs/development/libraries/audio/rtaudio/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { "-DRTAUDIO_API_CORE=${if coreaudioSupport then "ON" else "OFF"}" ]; - meta = with lib; { + meta = { description = "Set of C++ classes that provide a cross platform API for realtime audio input/output"; homepage = "https://www.music.mcgill.ca/~gary/rtaudio/"; - license = licenses.mit; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/avahi/default.nix b/pkgs/development/libraries/avahi/default.nix index 84a9ce8557be..bff96b955396 100644 --- a/pkgs/development/libraries/avahi/default.nix +++ b/pkgs/development/libraries/avahi/default.nix @@ -227,12 +227,12 @@ stdenv.mkDerivation rec { smoke-test-resolved = nixosTests.avahi-with-resolved; }; - meta = with lib; { + meta = { description = "mDNS/DNS-SD implementation"; homepage = "http://avahi.org"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lovek323 ]; diff --git a/pkgs/development/libraries/bashup-events/generic.nix b/pkgs/development/libraries/bashup-events/generic.nix index 694d5d196185..8c058bc7d375 100644 --- a/pkgs/development/libraries/bashup-events/generic.nix +++ b/pkgs/development/libraries/bashup-events/generic.nix @@ -75,13 +75,13 @@ resholve.mkDerivation { runHook postInstallCheck ''; - meta = with lib; { + meta = { inherit branch; description = "Event listener/callback API for creating extensible bash programs"; mainProgram = "bashup.events"; homepage = "https://github.com/bashup/events"; - license = licenses.cc0; - maintainers = with maintainers; [ abathur ]; - platforms = platforms.all; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ abathur ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 3f108b896400..baa3ee8353a7 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -243,11 +243,11 @@ stdenv.mkDerivation { }) ]; - meta = with lib; { + meta = { homepage = "http://boost.org/"; description = "Collection of C++ libraries"; - license = licenses.boost; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.boost; + platforms = lib.platforms.unix ++ lib.platforms.windows; # boost-context lacks support for the N32 ABI on mips64. The build # will succeed, but packages depending on boost-context will fail with # a very cryptic error message. diff --git a/pkgs/development/libraries/c-ares/default.nix b/pkgs/development/libraries/c-ares/default.nix index 926859f60b2d..03cebad99942 100644 --- a/pkgs/development/libraries/c-ares/default.nix +++ b/pkgs/development/libraries/c-ares/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { substituteInPlace $out/lib/pkgconfig/libcares.pc --replace-fail \''${prefix}/ "" ''; - meta = with lib; { + meta = { description = "C library for asynchronous DNS requests"; homepage = "https://c-ares.haxx.se"; changelog = "https://c-ares.org/changelog.html#${lib.replaceStrings [ "." ] [ "_" ] version}"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/c-blosc/1.nix b/pkgs/development/libraries/c-blosc/1.nix index a1443571ce5e..176fef8f6077 100644 --- a/pkgs/development/libraries/c-blosc/1.nix +++ b/pkgs/development/libraries/c-blosc/1.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Blocking, shuffling and loss-less compression library"; homepage = "https://www.blosc.org"; changelog = "https://github.com/Blosc/c-blosc/releases/tag/v${finalAttrs.version}"; pkgConfigModules = [ "blosc" ]; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ris ]; }; }) diff --git a/pkgs/development/libraries/c-blosc/2.nix b/pkgs/development/libraries/c-blosc/2.nix index 02cf43f7f5d6..71c9e37e8b17 100644 --- a/pkgs/development/libraries/c-blosc/2.nix +++ b/pkgs/development/libraries/c-blosc/2.nix @@ -64,13 +64,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Fast, compressed, persistent binary data store library for C"; homepage = "https://www.blosc.org"; changelog = "https://github.com/Blosc/c-blosc2/releases/tag/v${finalAttrs.version}"; pkgConfigModules = [ "blosc2" ]; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ris ]; }; }) diff --git a/pkgs/development/libraries/cairomm/1.16.nix b/pkgs/development/libraries/cairomm/1.16.nix index 786e6e560964..263f2bf3b5e5 100644 --- a/pkgs/development/libraries/cairomm/1.16.nix +++ b/pkgs/development/libraries/cairomm/1.16.nix @@ -48,14 +48,14 @@ stdenv.mkDerivation rec { # Tests fail on Darwin, possibly because of sandboxing. doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "C++ bindings for the Cairo vector graphics library"; homepage = "https://www.cairographics.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus mpl10 ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/cairomm/default.nix b/pkgs/development/libraries/cairomm/default.nix index f570ca3c4528..8c761ef204f9 100644 --- a/pkgs/development/libraries/cairomm/default.nix +++ b/pkgs/development/libraries/cairomm/default.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "C++ bindings for the Cairo vector graphics library"; homepage = "https://www.cairographics.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus mpl10 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/cassandra-cpp-driver/default.nix b/pkgs/development/libraries/cassandra-cpp-driver/default.nix index c0aa85bcf50c..59b52ecfa25c 100644 --- a/pkgs/development/libraries/cassandra-cpp-driver/default.nix +++ b/pkgs/development/libraries/cassandra-cpp-driver/default.nix @@ -39,16 +39,16 @@ stdenv.mkDerivation rec { ) ++ [ "-DLIBUV_INCLUDE_DIR=${lib.getDev libuv}/include" ]; - meta = with lib; { + meta = { description = "DataStax CPP cassandra driver"; longDescription = '' A modern, feature-rich and highly tunable C/C++ client library for Apache Cassandra 2.1+ using exclusively Cassandra’s binary protocol and Cassandra Query Language v3. ''; - license = with licenses; [ asl20 ]; - platforms = platforms.x86_64; + license = with lib.licenses; [ asl20 ]; + platforms = lib.platforms.x86_64; homepage = "https://docs.datastax.com/en/developer/cpp-driver/"; - maintainers = [ maintainers.npatsakula ]; + maintainers = [ lib.maintainers.npatsakula ]; }; } diff --git a/pkgs/development/libraries/cctag/default.nix b/pkgs/development/libraries/cctag/default.nix index ae88847878cf..60de365c149e 100644 --- a/pkgs/development/libraries/cctag/default.nix +++ b/pkgs/development/libraries/cctag/default.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Detection of CCTag markers made up of concentric circles"; homepage = "https://cctag.readthedocs.io"; downloadPage = "https://github.com/alicevision/CCTag"; - license = licenses.mpl20; - platforms = platforms.all; - maintainers = with maintainers; [ tmarkus ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ tmarkus ]; }; } diff --git a/pkgs/development/libraries/celt/generic.nix b/pkgs/development/libraries/celt/generic.nix index 46a92edc2f76..86d3d4987b6b 100644 --- a/pkgs/development/libraries/celt/generic.nix +++ b/pkgs/development/libraries/celt/generic.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation { doCheck = false; # fails - meta = with lib; { + meta = { description = "Ultra-low delay audio codec"; homepage = "https://gitlab.xiph.org/xiph/celt"; # http://www.celt-codec.org/ is gone - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ codyopel raskin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/ceres-solver/default.nix b/pkgs/development/libraries/ceres-solver/default.nix index b39c804e2ee2..e00412b5022a 100644 --- a/pkgs/development/libraries/ceres-solver/default.nix +++ b/pkgs/development/libraries/ceres-solver/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { checkTarget = "test"; - meta = with lib; { + meta = { description = "C++ library for modeling and solving large, complicated optimization problems"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "http://ceres-solver.org"; - maintainers = with maintainers; [ giogadi ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ giogadi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/clucene-core/2.x.nix b/pkgs/development/libraries/clucene-core/2.x.nix index d46ecdfb24ee..e3da56146fae 100644 --- a/pkgs/development/libraries/clucene-core/2.x.nix +++ b/pkgs/development/libraries/clucene-core/2.x.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing"; - meta = with lib; { + meta = { description = "Core library for full-featured text search engine"; longDescription = '' CLucene is a high-performance, scalable, cross platform, full-featured, @@ -94,8 +94,8 @@ stdenv.mkDerivation rec { CLucene is a port of the very popular Java Lucene text search engine API. ''; homepage = "https://clucene.sourceforge.net"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ asl20 lgpl2 ]; diff --git a/pkgs/development/libraries/cxxtest/default.nix b/pkgs/development/libraries/cxxtest/default.nix index 026ae5f6f278..57f809850658 100644 --- a/pkgs/development/libraries/cxxtest/default.nix +++ b/pkgs/development/libraries/cxxtest/default.nix @@ -43,12 +43,12 @@ buildPythonApplication rec { dontWrapPythonPrograms = true; - meta = with lib; { + meta = { homepage = "https://github.com/CxxTest/cxxtest"; description = "Unit testing framework for C++"; mainProgram = "cxxtestgen"; - license = licenses.lgpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ juliendehos ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ juliendehos ]; }; } diff --git a/pkgs/development/libraries/db/generic.nix b/pkgs/development/libraries/db/generic.nix index cbe36d489d9f..9f411f1cd2a5 100644 --- a/pkgs/development/libraries/db/generic.nix +++ b/pkgs/development/libraries/db/generic.nix @@ -99,11 +99,11 @@ stdenv.mkDerivation ( make examples_c examples_cxx ''; - meta = with lib; { + meta = { homepage = "https://www.oracle.com/database/technologies/related/berkeleydb.html"; description = "Berkeley DB"; license = license; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } // drvArgs diff --git a/pkgs/development/libraries/dbus/default.nix b/pkgs/development/libraries/dbus/default.nix index b92b0e98b0b2..5e38403c93cc 100644 --- a/pkgs/development/libraries/dbus/default.nix +++ b/pkgs/development/libraries/dbus/default.nix @@ -133,12 +133,12 @@ stdenv.mkDerivation rec { dbus-launch = "${dbus.lib}/bin/dbus-launch"; }; - meta = with lib; { + meta = { description = "Simple interprocess messaging system"; homepage = "https://www.freedesktop.org/wiki/Software/dbus/"; changelog = "https://gitlab.freedesktop.org/dbus/dbus/-/blob/dbus-${version}/NEWS"; - license = licenses.gpl2Plus; # most is also under AFL-2.1 - teams = [ teams.freedesktop ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; # most is also under AFL-2.1 + teams = [ lib.teams.freedesktop ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/draco/default.nix b/pkgs/development/libraries/draco/default.nix index 31c514b0ac61..d165b96ea1e3 100644 --- a/pkgs/development/libraries/draco/default.nix +++ b/pkgs/development/libraries/draco/default.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Library for compressing and decompressing 3D geometric meshes and point clouds"; homepage = "https://google.github.io/draco/"; changelog = "https://github.com/google/draco/releases/tag/${finalAttrs.version}"; - license = licenses.asl20; - maintainers = with maintainers; [ jansol ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jansol ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/libraries/draco/tinygltf.nix b/pkgs/development/libraries/draco/tinygltf.nix index bce14b2d65d0..85433ff963ad 100644 --- a/pkgs/development/libraries/draco/tinygltf.nix +++ b/pkgs/development/libraries/draco/tinygltf.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Header only C++11 tiny glTF 2.0 library"; homepage = "https://github.com/syoyo/tinygltf"; - license = licenses.mit; - maintainers = with maintainers; [ jansol ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jansol ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/drumstick/default.nix b/pkgs/development/libraries/drumstick/default.nix index c8d4ccfba632..69201a9d42b9 100644 --- a/pkgs/development/libraries/drumstick/default.nix +++ b/pkgs/development/libraries/drumstick/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { (lib.cmakeBool "USE_QT5" (!isQt6)) ]; - meta = with lib; { + meta = { description = "MIDI libraries for Qt/C++"; homepage = "https://drumstick.sourceforge.io/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/eccodes/default.nix b/pkgs/development/libraries/eccodes/default.nix index 32f26c8c639d..84ee929e0d1c 100644 --- a/pkgs/development/libraries/eccodes/default.nix +++ b/pkgs/development/libraries/eccodes/default.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { "eccodes_t_(definitions|calendar|unit_tests|md5|uerra|grib_2nd_order_numValues|julian)" ]; - meta = with lib; { + meta = { homepage = "https://confluence.ecmwf.int/display/ECC/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; description = "ECMWF library for reading and writing GRIB, BUFR and GTS abbreviated header"; }; } diff --git a/pkgs/development/libraries/enchant/2.x.nix b/pkgs/development/libraries/enchant/2.x.nix index cd06f946c685..1ce5f5b2360c 100644 --- a/pkgs/development/libraries/enchant/2.x.nix +++ b/pkgs/development/libraries/enchant/2.x.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { (lib.withFeature withAppleSpell "applespell") ]; - meta = with lib; { + meta = { description = "Generic spell checking library"; homepage = "https://rrthomas.github.io/enchant/"; - license = licenses.lgpl21Plus; # with extra provision for non-free checkers - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; # with extra provision for non-free checkers + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/farstream/default.nix b/pkgs/development/libraries/farstream/default.nix index 8e589d0ec81d..d1432913b256 100644 --- a/pkgs/development/libraries/farstream/default.nix +++ b/pkgs/development/libraries/farstream/default.nix @@ -59,10 +59,10 @@ stdenv.mkDerivation rec { gst-libav ]; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/wiki/Software/Farstream"; description = "Audio/Video Communications Framework formely known as farsight"; - platforms = platforms.unix; - license = licenses.lgpl21; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index 10680eb0ab3f..a8dc55ce3f86 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -1037,7 +1037,7 @@ stdenv.mkDerivation ( passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Complete, cross-platform solution to record, convert and stream audio and video"; homepage = "https://www.ffmpeg.org/"; changelog = "https://github.com/FFmpeg/FFmpeg/blob/n${version}/Changelog"; @@ -1049,7 +1049,7 @@ stdenv.mkDerivation ( a corporation. ''; license = - with licenses; + with lib.licenses; [ lgpl21Plus ] ++ optional withGPL gpl2Plus ++ optional withVersion3 lgpl3Plus @@ -1067,10 +1067,10 @@ stdenv.mkDerivation ( ++ optional buildPostproc "libpostproc" ++ optional buildSwresample "libswresample" ++ optional buildSwscale "libswscale"; - platforms = platforms.all; + platforms = lib.platforms.all; # See https://github.com/NixOS/nixpkgs/pull/295344#issuecomment-1992263658 broken = stdenv.hostPlatform.isMinGW && stdenv.hostPlatform.is64bit; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ atemu jopejoe1 emily diff --git a/pkgs/development/libraries/flatbuffers/23.nix b/pkgs/development/libraries/flatbuffers/23.nix index 4e30c3dd37b6..3befe98ae47e 100644 --- a/pkgs/development/libraries/flatbuffers/23.nix +++ b/pkgs/development/libraries/flatbuffers/23.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; checkTarget = "test"; - meta = with lib; { + meta = { description = "Memory Efficient Serialization Library"; longDescription = '' FlatBuffers is an efficient cross platform serialization library for @@ -39,9 +39,9 @@ stdenv.mkDerivation rec { having great forwards/backwards compatibility. ''; homepage = "https://google.github.io/flatbuffers/"; - license = licenses.asl20; - maintainers = [ maintainers.teh ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.teh ]; mainProgram = "flatc"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/flatbuffers/default.nix b/pkgs/development/libraries/flatbuffers/default.nix index d9d48f3edd8b..c9309930da81 100644 --- a/pkgs/development/libraries/flatbuffers/default.nix +++ b/pkgs/development/libraries/flatbuffers/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; checkTarget = "test"; - meta = with lib; { + meta = { description = "Memory Efficient Serialization Library"; longDescription = '' FlatBuffers is an efficient cross platform serialization library for @@ -39,9 +39,9 @@ stdenv.mkDerivation rec { having great forwards/backwards compatibility. ''; homepage = "https://google.github.io/flatbuffers/"; - license = licenses.asl20; - maintainers = [ maintainers.teh ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.teh ]; mainProgram = "flatc"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/fmt/default.nix b/pkgs/development/libraries/fmt/default.nix index 3caa55292a91..281acff35b35 100644 --- a/pkgs/development/libraries/fmt/default.nix +++ b/pkgs/development/libraries/fmt/default.nix @@ -53,7 +53,7 @@ let ; }; - meta = with lib; { + meta = { description = "Small, safe and fast formatting library"; longDescription = '' fmt (formerly cppformat) is an open-source formatting library. It can be @@ -63,8 +63,8 @@ let changelog = "https://github.com/fmtlib/fmt/blob/${version}/ChangeLog.rst"; downloadPage = "https://github.com/fmtlib/fmt/"; maintainers = [ ]; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; }; in diff --git a/pkgs/development/libraries/fontconfig/default.nix b/pkgs/development/libraries/fontconfig/default.nix index 81041136d662..420837ce60a0 100644 --- a/pkgs/development/libraries/fontconfig/default.nix +++ b/pkgs/development/libraries/fontconfig/default.nix @@ -122,12 +122,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library for font customization and configuration"; homepage = "http://fontconfig.org/"; - license = licenses.bsd2; # custom but very bsd-like - platforms = platforms.all; - teams = [ teams.freedesktop ]; + license = lib.licenses.bsd2; # custom but very bsd-like + platforms = lib.platforms.all; + teams = [ lib.teams.freedesktop ]; pkgConfigModules = [ "fontconfig" ]; }; }) diff --git a/pkgs/development/libraries/fox/default.nix b/pkgs/development/libraries/fox/default.nix index 775144c0bd6b..fe0464cdb291 100644 --- a/pkgs/development/libraries/fox/default.nix +++ b/pkgs/development/libraries/fox/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "C++ based class library for building Graphical User Interfaces"; longDescription = '' FOX stands for Free Objects for X. @@ -55,8 +55,8 @@ stdenv.mkDerivation rec { Current aims are to make FOX completely platform independent, and thus programs written against the FOX library will be only a compile away from running on a variety of platforms. ''; homepage = "http://fox-toolkit.org"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/fplll/default.nix b/pkgs/development/libraries/fplll/default.nix index 7aed90a0707e..1b50e0744532 100644 --- a/pkgs/development/libraries/fplll/default.nix +++ b/pkgs/development/libraries/fplll/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { mpfr ]; - meta = with lib; { + meta = { description = "Lattice algorithms using floating-point arithmetic"; changelog = [ # Some release notes are added to the github tags, though they are not @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { # this search should find it. "https://groups.google.com/forum/#!searchin/fplll-devel/FPLLL$20${version}" ]; - license = licenses.lgpl21Plus; - teams = [ teams.sage ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.sage ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/g2o/default.nix b/pkgs/development/libraries/g2o/default.nix index 0f6b371a1bf4..117c2382a990 100644 --- a/pkgs/development/libraries/g2o/default.nix +++ b/pkgs/development/libraries/g2o/default.nix @@ -61,16 +61,16 @@ mkDerivation rec { "-DDISABLE_SSE4_A=${if stdenv.hostPlatform.sse4_aSupport then "OFF" else "ON"}" ]; - meta = with lib; { + meta = { description = "General Framework for Graph Optimization"; homepage = "https://github.com/RainerKuemmerle/g2o"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 lgpl3 gpl3 ]; - maintainers = with maintainers; [ lopsided98 ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ lopsided98 ]; + platforms = lib.platforms.all; # fatal error: 'qglviewer.h' file not found broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/development/libraries/gamenetworkingsockets/default.nix b/pkgs/development/libraries/gamenetworkingsockets/default.nix index da4c1d4a299a..2cfeeacb61a2 100644 --- a/pkgs/development/libraries/gamenetworkingsockets/default.nix +++ b/pkgs/development/libraries/gamenetworkingsockets/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { buildInputs = [ protobuf ]; propagatedBuildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "GameNetworkingSockets is a basic transport layer for games"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; inherit (src.meta) homepage; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/libraries/gcr/4.nix b/pkgs/development/libraries/gcr/4.nix index d3b1c1d9990d..d6503937d340 100644 --- a/pkgs/development/libraries/gcr/4.nix +++ b/pkgs/development/libraries/gcr/4.nix @@ -118,13 +118,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { - platforms = platforms.unix; - teams = [ teams.gnome ]; + meta = { + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; description = "GNOME crypto services (daemon and tools)"; mainProgram = "gcr-viewer-gtk4"; homepage = "https://gitlab.gnome.org/GNOME/gcr"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; longDescription = '' GCR is a library for displaying certificates, and crypto UI, accessing diff --git a/pkgs/development/libraries/gcr/default.nix b/pkgs/development/libraries/gcr/default.nix index 8507b65d274e..d059b30039f6 100644 --- a/pkgs/development/libraries/gcr/default.nix +++ b/pkgs/development/libraries/gcr/default.nix @@ -112,13 +112,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { - platforms = platforms.unix; - teams = [ teams.gnome ]; + meta = { + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; description = "GNOME crypto services (daemon and tools)"; mainProgram = "gcr-viewer"; homepage = "https://gitlab.gnome.org/GNOME/gcr"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; longDescription = '' GCR is a library for displaying certificates, and crypto UI, accessing diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index f62230c7649e..d91e3971a6f6 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -169,13 +169,13 @@ stdenv.mkDerivation (finalAttrs: { moduleDir = "${finalAttrs.passthru.binaryDir}/loaders"; }; - meta = with lib; { + meta = { description = "Library for image loading and manipulation"; homepage = "https://gitlab.gnome.org/GNOME/gdk-pixbuf"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; mainProgram = "gdk-pixbuf-thumbnailer"; pkgConfigModules = [ "gdk-pixbuf-2.0" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/gdk-pixbuf/xlib.nix b/pkgs/development/libraries/gdk-pixbuf/xlib.nix index 61a4c4c2ef64..3046f380a410 100644 --- a/pkgs/development/libraries/gdk-pixbuf/xlib.nix +++ b/pkgs/development/libraries/gdk-pixbuf/xlib.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { "-Dgtk_doc=true" ]; - meta = with lib; { + meta = { description = "Deprecated API for integrating GdkPixbuf with Xlib data types"; homepage = "https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib"; maintainers = [ ]; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/gecode/3.nix b/pkgs/development/libraries/gecode/3.nix index b171d53d8d77..0f0f79584f60 100644 --- a/pkgs/development/libraries/gecode/3.nix +++ b/pkgs/development/libraries/gecode/3.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { env.CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++14"; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://www.gecode.org"; description = "Toolkit for developing constraint-based systems"; - platforms = platforms.all; - maintainers = [ maintainers.manveru ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.manveru ]; }; } diff --git a/pkgs/development/libraries/gecode/default.nix b/pkgs/development/libraries/gecode/default.nix index 37ae45e5de68..5f7cfb52fe63 100644 --- a/pkgs/development/libraries/gecode/default.nix +++ b/pkgs/development/libraries/gecode/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { ] ++ lib.optional enableGist qtbase; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://www.gecode.org"; description = "Toolkit for developing constraint-based systems"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/gegl/default.nix b/pkgs/development/libraries/gegl/default.nix index 128fb7d94682..00ccd6ae9170 100644 --- a/pkgs/development/libraries/gegl/default.nix +++ b/pkgs/development/libraries/gegl/default.nix @@ -128,11 +128,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Graph-based image processing framework"; homepage = "https://www.gegl.org"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/geoip/default.nix b/pkgs/development/libraries/geoip/default.nix index e9ff8223501a..5ee72cc8f719 100644 --- a/pkgs/development/libraries/geoip/default.nix +++ b/pkgs/development/libraries/geoip/default.nix @@ -41,14 +41,14 @@ stdenv.mkDerivation rec { passthru = { inherit dataDir; }; - meta = with lib; { + meta = { description = "API for GeoIP/Geolocation databases"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice raskin ]; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; homepage = "https://www.maxmind.com"; }; } diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 0ab81cc29ded..20edb670b8a0 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; enableParallelChecking = false; # fails sometimes - meta = with lib; { + meta = { description = "Well integrated set of translation tools and documentation"; longDescription = '' @@ -131,9 +131,9 @@ stdenv.mkDerivation rec { homepage = "https://www.gnu.org/software/gettext/"; - maintainers = with maintainers; [ zimbatm ]; - license = licenses.gpl2Plus; - platforms = platforms.all; + maintainers = with lib.maintainers; [ zimbatm ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/glew/1.10.nix b/pkgs/development/libraries/glew/1.10.nix index fb53da723d1a..9a9489e1065c 100644 --- a/pkgs/development/libraries/glew/1.10.nix +++ b/pkgs/development/libraries/glew/1.10.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "OpenGL extension loading library for C(++)"; homepage = "https://glew.sourceforge.net/"; - license = licenses.free; # different files under different licenses + license = lib.licenses.free; # different files under different licenses #["BSD" "GLX" "SGI-B" "GPL2"] pkgConfigModules = [ "glew" ]; inherit (mesa.meta) platforms; diff --git a/pkgs/development/libraries/glew/default.nix b/pkgs/development/libraries/glew/default.nix index b915b09caa29..3413bc948139 100644 --- a/pkgs/development/libraries/glew/default.nix +++ b/pkgs/development/libraries/glew/default.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "OpenGL extension loading library for C/C++"; homepage = "https://glew.sourceforge.net/"; - license = with licenses; [ + license = with lib.licenses; [ # modified bsd free mit @@ -94,7 +94,7 @@ stdenv.mkDerivation (finalAttrs: { ]; # For full details, see https://github.com/nigels-com/glew#copyright-and-licensing pkgConfigModules = [ "glew" ]; platforms = - with platforms; + with lib.platforms; if enableEGL then subtractLists darwin mesa.meta.platforms else mesa.meta.platforms; }; }) diff --git a/pkgs/development/libraries/glfw/2.x.nix b/pkgs/development/libraries/glfw/2.x.nix index cef83c64cad5..3b96505771c5 100644 --- a/pkgs/development/libraries/glfw/2.x.nix +++ b/pkgs/development/libraries/glfw/2.x.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { ln -s libglfw.so.2 $out/lib/libglfw.so ''; - meta = with lib; { + meta = { description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time"; homepage = "https://glfw.sourceforge.net/"; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ lib.maintainers.marcweber ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 5293c6579c5d..7e617c326996 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -341,7 +341,7 @@ stdenv.mkDerivation ( doCheck = false; # fails meta = - with lib; + { homepage = "https://www.gnu.org/software/libc/"; description = "GNU C Library"; @@ -355,13 +355,13 @@ stdenv.mkDerivation ( most systems with the Linux kernel. ''; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ma27 connorbaker ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; } // (args.meta or { }); } diff --git a/pkgs/development/libraries/glibmm/2.68.nix b/pkgs/development/libraries/glibmm/2.68.nix index 955a946cdf2f..0e4215207ac0 100644 --- a/pkgs/development/libraries/glibmm/2.68.nix +++ b/pkgs/development/libraries/glibmm/2.68.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface to the GLib library"; homepage = "https://gtkmm.org/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/glibmm/default.nix b/pkgs/development/libraries/glibmm/default.nix index f82caca3446c..4528a6ba4444 100644 --- a/pkgs/development/libraries/glibmm/default.nix +++ b/pkgs/development/libraries/glibmm/default.nix @@ -47,14 +47,14 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface to the GLib library"; homepage = "https://gtkmm.org/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/gmime/2.nix b/pkgs/development/libraries/gmime/2.nix index 34bd141d06ec..86823cd11158 100644 --- a/pkgs/development/libraries/gmime/2.nix +++ b/pkgs/development/libraries/gmime/2.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/jstedfast/gmime/"; description = "C/C++ library for creating, editing and parsing MIME messages and structures"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix index c5bcf1a4e569..541bab687537 100644 --- a/pkgs/development/libraries/gmp/6.x.nix +++ b/pkgs/development/libraries/gmp/6.x.nix @@ -78,10 +78,10 @@ let enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://gmplib.org/"; description = "GNU multiple precision arithmetic library"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only gpl2Only ]; @@ -108,7 +108,7 @@ let asymptotically faster algorithms. ''; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; }; diff --git a/pkgs/development/libraries/gnutls/default.nix b/pkgs/development/libraries/gnutls/default.nix index 095a313fbc2b..64b41a684c59 100644 --- a/pkgs/development/libraries/gnutls/default.nix +++ b/pkgs/development/libraries/gnutls/default.nix @@ -214,7 +214,7 @@ stdenv.mkDerivation rec { static = pkgsStatic.gnutls; }; - meta = with lib; { + meta = { description = "GNU Transport Layer Security Library"; longDescription = '' @@ -232,8 +232,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://gnutls.org/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ vcunat ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ vcunat ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index f5463c9bd8bc..49c0852c3236 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -173,18 +173,18 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Middleware layer between C libraries and language bindings"; homepage = "https://gi.readthedocs.io/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 artturin ]; - teams = [ teams.gnome ]; + teams = [ lib.teams.gnome ]; pkgConfigModules = [ "gobject-introspection-1.0" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; badPlatforms = [ lib.systems.inspect.platformPatterns.isStatic ]; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl2 ]; diff --git a/pkgs/development/libraries/goocanvas/2.x.nix b/pkgs/development/libraries/goocanvas/2.x.nix index cf60edd7000d..3f2e32519cf4 100644 --- a/pkgs/development/libraries/goocanvas/2.x.nix +++ b/pkgs/development/libraries/goocanvas/2.x.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Canvas widget for GTK based on the the Cairo 2D library"; homepage = "https://gitlab.gnome.org/Archive/goocanvas"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/goocanvas/default.nix b/pkgs/development/libraries/goocanvas/default.nix index 4f649b92f442..d51c5814adc6 100644 --- a/pkgs/development/libraries/goocanvas/default.nix +++ b/pkgs/development/libraries/goocanvas/default.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Canvas widget for GTK based on the the Cairo 2D library"; homepage = "https://gitlab.gnome.org/Archive/goocanvas"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix index 383e6e2184c4..5e3754f1206b 100644 --- a/pkgs/development/libraries/gpgme/default.nix +++ b/pkgs/development/libraries/gpgme/default.nix @@ -102,7 +102,7 @@ stdenv.mkDerivation rec { qt6 = qt6Packages.qgpgme; }; - meta = with lib; { + meta = { # fatal error: 'QtCore/qcompare.h' file not found broken = qtbase != null && stdenv.hostPlatform.isDarwin; homepage = "https://gnupg.org/software/gpgme/index.html"; @@ -114,11 +114,11 @@ stdenv.mkDerivation rec { encryption, decryption, signing, signature verification and key management. ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus gpl3Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ dotlambda ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/libraries/grantlee/5/default.nix b/pkgs/development/libraries/grantlee/5/default.nix index f5db48e14988..b0818c670a05 100644 --- a/pkgs/development/libraries/grantlee/5/default.nix +++ b/pkgs/development/libraries/grantlee/5/default.nix @@ -49,7 +49,7 @@ mkDerivation rec { doCheck = false; # fails all the tests (ctest) - meta = with lib; { + meta = { description = "Qt5 port of Django template system"; longDescription = '' Grantlee is a plugin based String Template system written using the Qt @@ -61,8 +61,8 @@ mkDerivation rec { and the design of Django is reused in Grantlee.''; homepage = "https://github.com/steveire/grantlee"; - maintainers = [ maintainers.ttuegel ]; - license = licenses.lgpl21; + maintainers = [ lib.maintainers.ttuegel ]; + license = lib.licenses.lgpl21; inherit (qtbase.meta) platforms; }; } diff --git a/pkgs/development/libraries/gsettings-qt/default.nix b/pkgs/development/libraries/gsettings-qt/default.nix index 53be76f3b2ab..8501c5477cbe 100644 --- a/pkgs/development/libraries/gsettings-qt/default.nix +++ b/pkgs/development/libraries/gsettings-qt/default.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Library to access GSettings from Qt"; homepage = "https://gitlab.com/ubports/core/gsettings-qt"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/development/libraries/gssdp/1.6.nix b/pkgs/development/libraries/gssdp/1.6.nix index 1df2fa09627a..b4d8daba12c1 100644 --- a/pkgs/development/libraries/gssdp/1.6.nix +++ b/pkgs/development/libraries/gssdp/1.6.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "GObject-based API for handling resource discovery and announcement over SSDP"; homepage = "http://www.gupnp.org/"; - license = licenses.lgpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/libraries/gssdp/default.nix b/pkgs/development/libraries/gssdp/default.nix index a4c669eebe9f..41ef85ad7d16 100644 --- a/pkgs/development/libraries/gssdp/default.nix +++ b/pkgs/development/libraries/gssdp/default.nix @@ -100,10 +100,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GObject-based API for handling resource discovery and announcement over SSDP"; homepage = "http://www.gupnp.org/"; - license = licenses.lgpl2Plus; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/gssdp/tools.nix b/pkgs/development/libraries/gssdp/tools.nix index 29843139aa44..75cc06a7d1ec 100644 --- a/pkgs/development/libraries/gssdp/tools.nix +++ b/pkgs/development/libraries/gssdp/tools.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { cd tools ''; - meta = with lib; { + meta = { description = "Device Sniffer tool based on GSSDP framework"; mainProgram = "gssdp-device-sniffer"; homepage = "http://www.gupnp.org/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; teams = gssdp_1_6.meta.teams; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index 75ada26ca68e..6b3e7463bef4 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -412,7 +412,7 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "GStreamer Bad Plugins"; mainProgram = "gst-transcoder-1.0"; homepage = "https://gstreamer.freedesktop.org"; @@ -422,8 +422,8 @@ stdenv.mkDerivation (finalAttrs: { something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. ''; - license = if enableGplPlugins then licenses.gpl2Plus else licenses.lgpl2Plus; - platforms = platforms.linux ++ platforms.darwin; + license = if enableGplPlugins then lib.licenses.gpl2Plus else lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index c28a6cb786fe..4a9c8c4e75f3 100644 --- a/pkgs/development/libraries/gstreamer/base/default.nix +++ b/pkgs/development/libraries/gstreamer/base/default.nix @@ -191,17 +191,17 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Base GStreamer plug-ins and helper libraries"; homepage = "https://gstreamer.freedesktop.org"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; pkgConfigModules = [ "gstreamer-audio-1.0" "gstreamer-base-1.0" "gstreamer-net-1.0" "gstreamer-video-1.0" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 5a46d1e44d3e..73f3badbbdd8 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -146,15 +146,15 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "Open source multimedia framework"; homepage = "https://gstreamer.freedesktop.org"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; pkgConfigModules = [ "gstreamer-controller-1.0" ]; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ttuegel ]; }; diff --git a/pkgs/development/libraries/gstreamer/devtools/default.nix b/pkgs/development/libraries/gstreamer/devtools/default.nix index 678570a1af1d..e92607625e9f 100644 --- a/pkgs/development/libraries/gstreamer/devtools/default.nix +++ b/pkgs/development/libraries/gstreamer/devtools/default.nix @@ -127,11 +127,11 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { description = "Integration testing infrastructure for the GStreamer framework"; homepage = "https://gstreamer.freedesktop.org"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index 794c56b6d11c..60cabc07f942 100644 --- a/pkgs/development/libraries/gstreamer/ges/default.nix +++ b/pkgs/development/libraries/gstreamer/ges/default.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "Library for creation of audio/video non-linear editors"; mainProgram = "ges-launch-1.0"; homepage = "https://gstreamer.freedesktop.org"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index 5966a74bd734..1089c7e8a9cc 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -283,7 +283,7 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "GStreamer Good Plugins"; homepage = "https://gstreamer.freedesktop.org"; longDescription = '' @@ -291,8 +291,8 @@ stdenv.mkDerivation (finalAttrs: { correct functionality, our preferred license (LGPL for the plug-in code, LGPL or LGPL-compatible for the supporting library). ''; - license = licenses.lgpl2Plus; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix index ba486d1cc772..90da8d0df052 100644 --- a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix +++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface for GStreamer"; homepage = "https://gstreamer.freedesktop.org/bindings/cplusplus.html"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/development/libraries/gstreamer/icamerasrc/default.nix b/pkgs/development/libraries/gstreamer/icamerasrc/default.nix index f4803998ae8d..5a71e04eb23a 100644 --- a/pkgs/development/libraries/gstreamer/icamerasrc/default.nix +++ b/pkgs/development/libraries/gstreamer/icamerasrc/default.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation { inherit (ipu6-camera-hal) ipuVersion; }; - meta = with lib; { + meta = { description = "GStreamer Plugin for MIPI camera support through the IPU6/IPU6EP/IPU6SE on Intel Tigerlake/Alderlake/Jasperlake platforms"; homepage = "https://github.com/intel/icamerasrc/tree/icamerasrc_slim_api"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index 9a9ccfaea91f..990ed19d1b7b 100644 --- a/pkgs/development/libraries/gstreamer/libav/default.nix +++ b/pkgs/development/libraries/gstreamer/libav/default.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "FFmpeg plugin for GStreamer"; homepage = "https://gstreamer.freedesktop.org"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/rs/default.nix b/pkgs/development/libraries/gstreamer/rs/default.nix index 0eaf22962740..e3bc29fec294 100644 --- a/pkgs/development/libraries/gstreamer/rs/default.nix +++ b/pkgs/development/libraries/gstreamer/rs/default.nix @@ -250,17 +250,17 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "GStreamer plugins written in Rust"; mainProgram = "gst-webrtc-signalling-server"; homepage = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"; - license = with licenses; [ + license = with lib.licenses; [ mpl20 asl20 mit lgpl21Plus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/rtsp-server/default.nix b/pkgs/development/libraries/gstreamer/rtsp-server/default.nix index d249f0ceacbe..61dfb7b58037 100644 --- a/pkgs/development/libraries/gstreamer/rtsp-server/default.nix +++ b/pkgs/development/libraries/gstreamer/rtsp-server/default.nix @@ -66,14 +66,14 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "GStreamer RTSP server"; homepage = "https://gstreamer.freedesktop.org"; longDescription = '' A library on top of GStreamer for building an RTSP server. ''; - license = licenses.lgpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ bkchr ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bkchr ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index 8a8f15470afd..91ed20d57dda 100644 --- a/pkgs/development/libraries/gstreamer/ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/ugly/default.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "Gstreamer Ugly Plugins"; homepage = "https://gstreamer.freedesktop.org"; longDescription = '' @@ -112,8 +112,8 @@ stdenv.mkDerivation (finalAttrs: { the plug-ins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. ''; - license = if enableGplPlugins then licenses.gpl2Plus else licenses.lgpl2Plus; - platforms = platforms.unix; + license = if enableGplPlugins then lib.licenses.gpl2Plus else lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gstreamer/vaapi/default.nix b/pkgs/development/libraries/gstreamer/vaapi/default.nix index 5dc91cc61cbd..4f19e307addd 100644 --- a/pkgs/development/libraries/gstreamer/vaapi/default.nix +++ b/pkgs/development/libraries/gstreamer/vaapi/default.nix @@ -97,11 +97,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = directoryListingUpdater { }; }; - meta = with lib; { + meta = { description = "Set of VAAPI GStreamer Plug-ins"; homepage = "https://gstreamer.freedesktop.org"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; }) diff --git a/pkgs/development/libraries/gtk-sharp/2.0.nix b/pkgs/development/libraries/gtk-sharp/2.0.nix index 8981e4df3981..9034d06c3217 100644 --- a/pkgs/development/libraries/gtk-sharp/2.0.nix +++ b/pkgs/development/libraries/gtk-sharp/2.0.nix @@ -74,10 +74,10 @@ stdenv.mkDerivation rec { gtk = gtk2; }; - meta = with lib; { + meta = { description = "Graphical User Interface Toolkit for mono and .Net"; homepage = "https://www.mono-project.com/docs/gui/gtksharp"; - platforms = platforms.unix; - license = licenses.gpl2; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/libraries/gtk/3.x.nix b/pkgs/development/libraries/gtk/3.x.nix index 01c29e9da024..df643c263bbc 100644 --- a/pkgs/development/libraries/gtk/3.x.nix +++ b/pkgs/development/libraries/gtk/3.x.nix @@ -275,7 +275,7 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Multi-platform toolkit for creating graphical user interfaces"; longDescription = '' GTK is a highly usable, feature rich toolkit for creating @@ -288,9 +288,9 @@ stdenv.mkDerivation (finalAttrs: { royalties. ''; homepage = "https://www.gtk.org/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin ]; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + teams = [ lib.teams.gnome ]; pkgConfigModules = [ "gdk-3.0" "gtk+-3.0" @@ -299,7 +299,7 @@ stdenv.mkDerivation (finalAttrs: { "gdk-x11-3.0" "gtk+-x11-3.0" ]; - platforms = platforms.all; + platforms = lib.platforms.all; changelog = "https://gitlab.gnome.org/GNOME/gtk/-/raw/${finalAttrs.version}/NEWS"; }; }) diff --git a/pkgs/development/libraries/gtk/4.x.nix b/pkgs/development/libraries/gtk/4.x.nix index 9522692b4b56..edd5393618ec 100644 --- a/pkgs/development/libraries/gtk/4.x.nix +++ b/pkgs/development/libraries/gtk/4.x.nix @@ -289,7 +289,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Multi-platform toolkit for creating graphical user interfaces"; longDescription = '' GTK is a highly usable, feature rich toolkit for creating @@ -302,10 +302,10 @@ stdenv.mkDerivation (finalAttrs: { royalties. ''; homepage = "https://www.gtk.org/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin ]; - teams = [ teams.gnome ]; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.all; changelog = "https://gitlab.gnome.org/GNOME/gtk/-/raw/${finalAttrs.version}/NEWS"; pkgConfigModules = [ "gtk4" diff --git a/pkgs/development/libraries/gtkmm/3.x.nix b/pkgs/development/libraries/gtkmm/3.x.nix index 533446780857..d261bd1ef552 100644 --- a/pkgs/development/libraries/gtkmm/3.x.nix +++ b/pkgs/development/libraries/gtkmm/3.x.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface to the GTK graphical user interface library"; longDescription = '' @@ -76,9 +76,9 @@ stdenv.mkDerivation rec { homepage = "https://gtkmm.gnome.org/"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/gtkmm/4.x.nix b/pkgs/development/libraries/gtkmm/4.x.nix index 4025bee7d92b..2a426090e29d 100644 --- a/pkgs/development/libraries/gtkmm/4.x.nix +++ b/pkgs/development/libraries/gtkmm/4.x.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface to the GTK graphical user interface library"; longDescription = '' gtkmm is the official C++ interface for the popular GUI library @@ -90,9 +90,9 @@ stdenv.mkDerivation rec { tutorial. ''; homepage = "https://gtkmm.org/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/gtksourceview/3.x.nix b/pkgs/development/libraries/gtksourceview/3.x.nix index 583c680da142..4b64f435c72a 100644 --- a/pkgs/development/libraries/gtksourceview/3.x.nix +++ b/pkgs/development/libraries/gtksourceview/3.x.nix @@ -90,11 +90,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gtksourceview"; pkgConfigModules = [ "gtksourceview-3.0" ]; - platforms = with platforms; linux ++ darwin; - license = licenses.lgpl21; - teams = [ teams.gnome ]; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.lgpl21; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/development/libraries/gtksourceview/4.x.nix b/pkgs/development/libraries/gtksourceview/4.x.nix index 8ce0277508e5..aa57a11453f7 100644 --- a/pkgs/development/libraries/gtksourceview/4.x.nix +++ b/pkgs/development/libraries/gtksourceview/4.x.nix @@ -126,12 +126,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Source code editing widget for GTK"; homepage = "https://gitlab.gnome.org/GNOME/gtksourceview"; pkgConfigModules = [ "gtksourceview-4" ]; - platforms = platforms.unix; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/development/libraries/gtksourceview/5.x.nix b/pkgs/development/libraries/gtksourceview/5.x.nix index 986a9d6ab7b3..ce0e59f1d52f 100644 --- a/pkgs/development/libraries/gtksourceview/5.x.nix +++ b/pkgs/development/libraries/gtksourceview/5.x.nix @@ -111,12 +111,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Source code editing widget for GTK"; homepage = "https://gitlab.gnome.org/GNOME/gtksourceview"; pkgConfigModules = [ "gtksourceview-5" ]; - platforms = platforms.unix; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; }; }) diff --git a/pkgs/development/libraries/gtksourceviewmm/4.x.nix b/pkgs/development/libraries/gtksourceviewmm/4.x.nix index 99a429683c4a..b5bd13e99d6b 100644 --- a/pkgs/development/libraries/gtksourceviewmm/4.x.nix +++ b/pkgs/development/libraries/gtksourceviewmm/4.x.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { gtksourceview4 ]; - meta = with lib; { - platforms = platforms.linux; + meta = { + platforms = lib.platforms.linux; homepage = "https://gitlab.gnome.org/GNOME/gtksourceviewmm"; description = "C++ wrapper for gtksourceview"; - license = licenses.lgpl2; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl2; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/development/libraries/gtksourceviewmm/default.nix b/pkgs/development/libraries/gtksourceviewmm/default.nix index 975ac5bf685f..811d3ce73b2e 100644 --- a/pkgs/development/libraries/gtksourceviewmm/default.nix +++ b/pkgs/development/libraries/gtksourceviewmm/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { gtksourceview3 ]; - meta = with lib; { - platforms = platforms.unix; + meta = { + platforms = lib.platforms.unix; homepage = "https://gitlab.gnome.org/GNOME/gtksourceviewmm"; description = "C++ wrapper for gtksourceview"; - license = licenses.lgpl2; - maintainers = [ maintainers.juliendehos ]; + license = lib.licenses.lgpl2; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix index 2c9fcafad201..0d379530af3a 100644 --- a/pkgs/development/libraries/gtkspell/3.nix +++ b/pkgs/development/libraries/gtkspell/3.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { "--enable-vala" ]; - meta = with lib; { + meta = { homepage = "https://gtkspell.sourceforge.net/"; description = "Word-processor-style highlighting GtkTextView widget"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/gtkspell/default.nix b/pkgs/development/libraries/gtkspell/default.nix index 6ca154bad745..3992e67f64c7 100644 --- a/pkgs/development/libraries/gtkspell/default.nix +++ b/pkgs/development/libraries/gtkspell/default.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { gtk2 ]; - meta = with lib; { + meta = { description = "Word-processor-style highlighting and replacement of misspelled words"; homepage = "https://gtkspell.sourceforge.net"; - platforms = platforms.unix; - license = licenses.gpl2; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/libraries/gupnp/1.6.nix b/pkgs/development/libraries/gupnp/1.6.nix index 0aeca4241ccc..f9c9c50a629c 100644 --- a/pkgs/development/libraries/gupnp/1.6.nix +++ b/pkgs/development/libraries/gupnp/1.6.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "http://www.gupnp.org/"; description = "Implementation of the UPnP specification"; mainProgram = "gupnp-binding-tool-1.6"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/gupnp/default.nix b/pkgs/development/libraries/gupnp/default.nix index b00724512296..74d70e05e5f8 100644 --- a/pkgs/development/libraries/gupnp/default.nix +++ b/pkgs/development/libraries/gupnp/default.nix @@ -97,11 +97,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "http://www.gupnp.org/"; description = "Implementation of the UPnP specification"; mainProgram = "gupnp-binding-tool-1.2"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/hamlib/4.nix b/pkgs/development/libraries/hamlib/4.nix index 36aaee94df1c..087fab80f324 100644 --- a/pkgs/development/libraries/hamlib/4.nix +++ b/pkgs/development/libraries/hamlib/4.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { ] ++ lib.optionals pythonBindings [ "--with-python-binding" ]; - meta = with lib; { + meta = { description = "Runtime library to control radio transceivers and receivers"; longDescription = '' Hamlib provides a standardized programming interface that applications @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { which lets one control a radio transceiver or receiver, either from command line interface or in a text-oriented interactive interface. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; homepage = "https://hamlib.sourceforge.net"; - maintainers = with maintainers; [ relrod ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ relrod ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/libraries/hamlib/default.nix b/pkgs/development/libraries/hamlib/default.nix index 8c0d90182904..a2fce7b8511e 100644 --- a/pkgs/development/libraries/hamlib/default.nix +++ b/pkgs/development/libraries/hamlib/default.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { ] ++ lib.optionals pythonBindings [ "--with-python-binding" ]; - meta = with lib; { + meta = { description = "Runtime library to control radio transceivers and receivers"; longDescription = '' Hamlib provides a standardized programming interface that applications @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { which lets one control a radio transceiver or receiver, either from command line interface or in a text-oriented interactive interface. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; homepage = "https://hamlib.sourceforge.net"; - maintainers = with maintainers; [ relrod ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ relrod ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/libraries/herqq/default.nix b/pkgs/development/libraries/herqq/default.nix index d994c290486d..5c902bc3ee8f 100644 --- a/pkgs/development/libraries/herqq/default.nix +++ b/pkgs/development/libraries/herqq/default.nix @@ -30,10 +30,10 @@ mkDerivation rec { sha256 = "FxN/QlLB3sZ6Vn/9VIKNUntX/B4+crQZ7t760pwFqY8="; }; - meta = with lib; { + meta = { homepage = "http://herqq.org"; description = "Software library for building UPnP devices and control points"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/hspell/default.nix b/pkgs/development/libraries/hspell/default.nix index 42002b52ccfc..8ec391c601c9 100644 --- a/pkgs/development/libraries/hspell/default.nix +++ b/pkgs/development/libraries/hspell/default.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Hebrew spell checker"; homepage = "http://hspell.ivrix.org.il/"; - platforms = platforms.all; - license = licenses.gpl2; + platforms = lib.platforms.all; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/libraries/hyphen/default.nix b/pkgs/development/libraries/hyphen/default.nix index d10016aef91c..214149fc1f23 100644 --- a/pkgs/development/libraries/hyphen/default.nix +++ b/pkgs/development/libraries/hyphen/default.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Text hyphenation library"; mainProgram = "substrings.pl"; homepage = "https://sourceforge.net/projects/hunspell/files/Hyphen/"; - platforms = platforms.all; - license = with licenses; [ + platforms = lib.platforms.all; + license = with lib.licenses; [ gpl2 lgpl21 mpl11 diff --git a/pkgs/development/libraries/hyphen/dictionaries.nix b/pkgs/development/libraries/hyphen/dictionaries.nix index 34fe0729643f..f805aac6956c 100644 --- a/pkgs/development/libraries/hyphen/dictionaries.nix +++ b/pkgs/development/libraries/hyphen/dictionaries.nix @@ -29,12 +29,12 @@ let rev = "a2bf59878dd76685803ec260e15d875746ad6e25"; hash = "sha256-3CvjgNjsrm4obATK6LmtYob8i2ngTbwP6FB4HlJMPCE="; }; - meta = with lib; { + meta = { description = "Hyphen dictionary for ${shortDescription} from LibreOffice"; homepage = "https://wiki.documentfoundation.org/Development/Dictionaries"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ theCapypara ]; - platforms = platforms.all; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ theCapypara ]; + platforms = lib.platforms.all; }; dontBuild = true; installPhase = '' diff --git a/pkgs/development/libraries/icu/make-icu.nix b/pkgs/development/libraries/icu/make-icu.nix index e12208aedb39..00ba528081ac 100644 --- a/pkgs/development/libraries/icu/make-icu.nix +++ b/pkgs/development/libraries/icu/make-icu.nix @@ -81,16 +81,16 @@ let enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Unicode and globalization support library"; homepage = "https://icu.unicode.org/"; - maintainers = with maintainers; [ raskin ]; + maintainers = with lib.maintainers; [ raskin ]; pkgConfigModules = [ "icu-i18n" "icu-io" "icu-uc" ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; diff --git a/pkgs/development/libraries/indicator-application/gtk2.nix b/pkgs/development/libraries/indicator-application/gtk2.nix index edb686b3a807..226b1e830fd1 100644 --- a/pkgs/development/libraries/indicator-application/gtk2.nix +++ b/pkgs/development/libraries/indicator-application/gtk2.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { "localstatedir=\${TMPDIR}" ]; - meta = with lib; { + meta = { description = "Indicator to take menus from applications and place them in the panel (GTK 2 library for Xfce/LXDE)"; homepage = "https://launchpad.net/indicators-gtk2"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.msteen ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.msteen ]; }; } diff --git a/pkgs/development/libraries/indicator-application/gtk3.nix b/pkgs/development/libraries/indicator-application/gtk3.nix index 2b46041ae642..1d84dba554f9 100644 --- a/pkgs/development/libraries/indicator-application/gtk3.nix +++ b/pkgs/development/libraries/indicator-application/gtk3.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { rm -rf $out/share/upstart ''; - meta = with lib; { + meta = { description = "Indicator to take menus from applications and place them in the panel"; homepage = "https://launchpad.net/indicator-application"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.msteen ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.msteen ]; }; } diff --git a/pkgs/development/libraries/ipu6-camera-hal/default.nix b/pkgs/development/libraries/ipu6-camera-hal/default.nix index 03b81646ce25..d2cd970014a6 100644 --- a/pkgs/development/libraries/ipu6-camera-hal/default.nix +++ b/pkgs/development/libraries/ipu6-camera-hal/default.nix @@ -92,10 +92,10 @@ stdenv.mkDerivation { inherit ipuVersion ipuTarget; }; - meta = with lib; { + meta = { description = "HAL for processing of images in userspace"; homepage = "https://github.com/intel/ipu6-camera-hal"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/development/libraries/jabcode/default.nix b/pkgs/development/libraries/jabcode/default.nix index 0d98953db4ec..b4480bd911f4 100644 --- a/pkgs/development/libraries/jabcode/default.nix +++ b/pkgs/development/libraries/jabcode/default.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation { cp -RT bin $out/bin ''; - meta = with lib; { + meta = { description = "High-capacity 2D color bar code (${subproject})"; longDescription = "JAB Code (Just Another Bar Code) is a high-capacity 2D color bar code, which can encode more data than traditional black/white (QR) codes. This is the ${subproject} part."; homepage = "https://jabcode.org/"; - license = licenses.lgpl21; - maintainers = [ maintainers.xaverdh ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.xaverdh ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/jabcode.x86_64-darwin }; } diff --git a/pkgs/development/libraries/java/saxon/default.nix b/pkgs/development/libraries/java/saxon/default.nix index 3d67b6cb515d..d31ebccea0b6 100644 --- a/pkgs/development/libraries/java/saxon/default.nix +++ b/pkgs/development/libraries/java/saxon/default.nix @@ -74,16 +74,16 @@ let inherit updateScript; }; - meta = with lib; { + meta = { inherit description license mainProgram; homepage = if versionAtLeast finalAttrs.version "11" then "https://www.saxonica.com/products/latest.xml" else "https://www.saxonica.com/products/archive.xml"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - maintainers = with maintainers; [ rvl ]; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with lib.maintainers; [ rvl ]; + platforms = lib.platforms.all; }; } ); diff --git a/pkgs/development/libraries/jemalloc/default.nix b/pkgs/development/libraries/jemalloc/default.nix index f97b55760a3d..202195c152db 100644 --- a/pkgs/development/libraries/jemalloc/default.nix +++ b/pkgs/development/libraries/jemalloc/default.nix @@ -78,14 +78,14 @@ stdenv.mkDerivation (finalAttrs: { # Parallel builds break reproducibility. enableParallelBuilding = false; - meta = with lib; { + meta = { homepage = "https://jemalloc.net/"; description = "General purpose malloc(3) implementation"; longDescription = '' malloc(3)-compatible memory allocator that emphasizes fragmentation avoidance and scalable concurrency support. ''; - license = licenses.bsd2; - platforms = platforms.all; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/libraries/kcolorpicker/default.nix b/pkgs/development/libraries/kcolorpicker/default.nix index a9ce1f68272d..078b80913b36 100644 --- a/pkgs/development/libraries/kcolorpicker/default.nix +++ b/pkgs/development/libraries/kcolorpicker/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { # Library only dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Qt based Color Picker with popup menu"; homepage = "https://github.com/ksnip/kColorPicker"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fliegendewurst ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fliegendewurst ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/default.nix index c3aa3f518e22..ce8b89ef80bd 100644 --- a/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/default.nix +++ b/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/default.nix @@ -38,9 +38,9 @@ mkDerivation { setupHook = ./setup-hook.sh; - meta = with lib; { - platforms = platforms.linux ++ platforms.darwin; + meta = { + platforms = lib.platforms.linux ++ lib.platforms.darwin; homepage = "https://invent.kde.org/frameworks/extra-cmake-modules"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/libraries/kdsoap/default.nix b/pkgs/development/libraries/kdsoap/default.nix index 971448f1b226..fd1d957fe076 100644 --- a/pkgs/development/libraries/kdsoap/default.nix +++ b/pkgs/development/libraries/kdsoap/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { --replace $out/bin $dev/bin ''; - meta = with lib; { + meta = { description = "Qt-based client-side and server-side SOAP component"; longDescription = '' KD Soap is a Qt-based client-side and server-side SOAP component. @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { provides the means to create web services without the need for any further component such as a dedicated web server. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2 gpl3 lgpl21 ]; - maintainers = [ maintainers.ttuegel ]; + maintainers = [ lib.maintainers.ttuegel ]; }; } diff --git a/pkgs/development/libraries/kerberos/heimdal.nix b/pkgs/development/libraries/kerberos/heimdal.nix index 7b63b2241439..474f887bcf50 100644 --- a/pkgs/development/libraries/kerberos/heimdal.nix +++ b/pkgs/development/libraries/kerberos/heimdal.nix @@ -185,13 +185,13 @@ stdenv.mkDerivation { tests.nixos = nixosTests.kerberos.heimdal; }; - meta = with lib; { + meta = { homepage = "https://www.heimdal.software"; changelog = "https://github.com/heimdal/heimdal/releases"; description = "Implementation of Kerberos 5 (and some more stuff)"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ h7x4 dblsaiko ]; diff --git a/pkgs/development/libraries/kerberos/krb5.nix b/pkgs/development/libraries/kerberos/krb5.nix index e5e09c02cbc5..3891c13bb5b8 100644 --- a/pkgs/development/libraries/kerberos/krb5.nix +++ b/pkgs/development/libraries/kerberos/krb5.nix @@ -169,11 +169,11 @@ stdenv.mkDerivation rec { bashNonInteractive ]; - meta = with lib; { + meta = { description = "MIT Kerberos 5"; homepage = "http://web.mit.edu/kerberos/"; - license = licenses.mit; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.mit; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; passthru = { diff --git a/pkgs/development/libraries/keybinder/default.nix b/pkgs/development/libraries/keybinder/default.nix index 258326091b97..1c083b5ee98c 100644 --- a/pkgs/development/libraries/keybinder/default.nix +++ b/pkgs/development/libraries/keybinder/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { ./autogen.sh --prefix="$out" $configureFlags ''; - meta = with lib; { + meta = { description = "Library for registering global key bindings"; longDescription = '' keybinder is a library for registering global keyboard shortcuts. @@ -58,8 +58,8 @@ stdenv.mkDerivation rec { * Lua bindings, ``lua-keybinder`` ''; homepage = "https://github.com/engla/keybinder/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/development/libraries/keybinder3/default.nix b/pkgs/development/libraries/keybinder3/default.nix index 6b95c5b46b24..c1d19455c597 100644 --- a/pkgs/development/libraries/keybinder3/default.nix +++ b/pkgs/development/libraries/keybinder3/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { --replace "dummy pkg-config" 'dummy ''${ac_tool_prefix}pkg-config' ''; - meta = with lib; { + meta = { description = "Library for registering global key bindings"; homepage = "https://github.com/kupferlauncher/keybinder/"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/kimageannotator/default.nix b/pkgs/development/libraries/kimageannotator/default.nix index f9dcf27854d7..5e5b080b7727 100644 --- a/pkgs/development/libraries/kimageannotator/default.nix +++ b/pkgs/development/libraries/kimageannotator/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { # Library only dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Tool for annotating images"; homepage = "https://github.com/ksnip/kImageAnnotator"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fliegendewurst ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fliegendewurst ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/kirigami-addons/default.nix b/pkgs/development/libraries/kirigami-addons/default.nix index c1792973990c..c3e21c328691 100644 --- a/pkgs/development/libraries/kirigami-addons/default.nix +++ b/pkgs/development/libraries/kirigami-addons/default.nix @@ -34,11 +34,11 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Add-ons for the Kirigami framework"; homepage = "https://invent.kde.org/libraries/kirigami-addons"; # https://invent.kde.org/libraries/kirigami-addons/-/blob/b197d98fdd079b6fc651949bd198363872d1be23/src/treeview/treeviewplugin.cpp#L1-5 - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/libraries/kproperty/default.nix b/pkgs/development/libraries/kproperty/default.nix index 8bba65ad63d1..674e40d891dc 100644 --- a/pkgs/development/libraries/kproperty/default.nix +++ b/pkgs/development/libraries/kproperty/default.nix @@ -36,10 +36,10 @@ mkDerivation rec { propagatedBuildInputs = [ qtbase ]; - meta = with lib; { + meta = { description = "Property editing framework with editor widget similar to what is known from Qt Designer"; - license = licenses.lgpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ zraexy ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zraexy ]; }; } diff --git a/pkgs/development/libraries/kquickimageedit/0.3.0.nix b/pkgs/development/libraries/kquickimageedit/0.3.0.nix index 5d7b4c5b2a97..95b6094db054 100644 --- a/pkgs/development/libraries/kquickimageedit/0.3.0.nix +++ b/pkgs/development/libraries/kquickimageedit/0.3.0.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DQT_MAJOR_VERSION=${lib.versions.major qtbase.version}" ]; dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Set of QtQuick components providing basic image editing capabilities"; homepage = "https://invent.kde.org/libraries/kquickimageeditor"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - badPlatforms = platforms.darwin; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.darwin; }; } diff --git a/pkgs/development/libraries/kquickimageedit/default.nix b/pkgs/development/libraries/kquickimageedit/default.nix index 800886be3a90..b2f8c06ad2bd 100644 --- a/pkgs/development/libraries/kquickimageedit/default.nix +++ b/pkgs/development/libraries/kquickimageedit/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { ]; dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Set of QtQuick components providing basic image editing capabilities"; homepage = "https://invent.kde.org/libraries/kquickimageeditor"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - badPlatforms = platforms.darwin; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.darwin; }; } diff --git a/pkgs/development/libraries/kuserfeedback/default.nix b/pkgs/development/libraries/kuserfeedback/default.nix index f0114c8e274a..f4da50b1fabb 100644 --- a/pkgs/development/libraries/kuserfeedback/default.nix +++ b/pkgs/development/libraries/kuserfeedback/default.nix @@ -19,9 +19,9 @@ mkDerivation rec { qttools ]; - meta = with lib; { - license = [ licenses.mit ]; - maintainers = [ maintainers.k900 ]; + meta = { + license = [ lib.licenses.mit ]; + maintainers = [ lib.maintainers.k900 ]; description = "Framework for collecting user feedback for apps via telemetry and surveys"; }; } diff --git a/pkgs/development/libraries/l-smash/default.nix b/pkgs/development/libraries/l-smash/default.nix index c8e33ae7f07f..ed38ecedff08 100644 --- a/pkgs/development/libraries/l-smash/default.nix +++ b/pkgs/development/libraries/l-smash/default.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { "--cross-prefix=${stdenv.cc.targetPrefix}" ]; - meta = with lib; { + meta = { homepage = "http://l-smash.github.io/l-smash/"; description = "MP4 container utilities"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; # The last successful Darwin Hydra build was in 2023 broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/development/libraries/ldutils/default.nix b/pkgs/development/libraries/ldutils/default.nix index c79f43e0d306..c34e77f19294 100644 --- a/pkgs/development/libraries/ldutils/default.nix +++ b/pkgs/development/libraries/ldutils/default.nix @@ -31,11 +31,11 @@ mkDerivation { LDUTILS_LIB = placeholder "out"; LDUTILS_INCLUDE = placeholder "out"; - meta = with lib; { + meta = { description = "Headers and link library for other ldutils projects"; homepage = "https://gitlab.com/ldutils-projects/ldutils"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sohalt ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sohalt ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libagar/default.nix b/pkgs/development/libraries/libagar/default.nix index 70692f514424..990d06a0e75d 100644 --- a/pkgs/development/libraries/libagar/default.nix +++ b/pkgs/development/libraries/libagar/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation (finalAttrs: { libsndfile ]; - meta = with lib; { + meta = { description = "Cross-platform GUI toolkit"; homepage = "http://libagar.org/index.html"; - license = with licenses; bsd3; - maintainers = with maintainers; [ ramkromberg ]; - platforms = with platforms; linux; + license = with lib.licenses; bsd3; + maintainers = with lib.maintainers; [ ramkromberg ]; + platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/development/libraries/libagar/libagar_test.nix b/pkgs/development/libraries/libagar/libagar_test.nix index 8aabb6ae9ce8..32b3628cf6eb 100644 --- a/pkgs/development/libraries/libagar/libagar_test.nix +++ b/pkgs/development/libraries/libagar/libagar_test.nix @@ -38,13 +38,13 @@ stdenv.mkDerivation { openssl ]; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Tests for libagar"; mainProgram = "agartest"; homepage = "http://libagar.org/index.html"; - license = with licenses; bsd3; - maintainers = with maintainers; [ ramkromberg ]; - platforms = with platforms; linux; + license = with lib.licenses; bsd3; + maintainers = with lib.maintainers; [ ramkromberg ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/development/libraries/libao/default.nix b/pkgs/development/libraries/libao/default.nix index 88dbf48c8d51..9363e18da240 100644 --- a/pkgs/development/libraries/libao/default.nix +++ b/pkgs/development/libraries/libao/default.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { longDescription = '' Libao is Xiph.org's cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms. ''; homepage = "https://xiph.org/ao/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/libraries/libbap/default.nix b/pkgs/development/libraries/libbap/default.nix index 604738dbb33b..91957222f168 100644 --- a/pkgs/development/libraries/libbap/default.nix +++ b/pkgs/development/libraries/libbap/default.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation { mkdir -p $out/include ''; - meta = with lib; { + meta = { homepage = "https://github.com/binaryanalysisplatform/bap-bindings"; description = "C library for interacting with BAP"; - maintainers = [ maintainers.maurer ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = [ lib.maintainers.maurer ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; broken = true; # Not compatible with JaneStreet libraries 0.17 }; } diff --git a/pkgs/development/libraries/libbutl/default.nix b/pkgs/development/libraries/libbutl/default.nix index dc13fb6dee4f..c653d43ea45c 100644 --- a/pkgs/development/libraries/libbutl/default.nix +++ b/pkgs/development/libraries/libbutl/default.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "build2 utility library"; longDescription = '' This library is a collection of utilities that are used throughout the @@ -62,8 +62,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://build2.org/"; changelog = "https://git.build2.org/cgit/libbutl/log"; - license = licenses.mit; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libcec/default.nix b/pkgs/development/libraries/libcec/default.nix index 5688614ee207..edaf5eb8dd21 100644 --- a/pkgs/development/libraries/libcec/default.nix +++ b/pkgs/development/libraries/libcec/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { "-DHAVE_LINUX_API=1" ]; - meta = with lib; { + meta = { description = "Allows you (with the right hardware) to control your device with your TV remote control using existing HDMI cabling"; homepage = "http://libcec.pulse-eight.com"; license = lib.licenses.gpl2Plus; - platforms = platforms.linux ++ platforms.darwin; - teams = [ teams.kodi ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/development/libraries/libcec/platform.nix b/pkgs/development/libraries/libcec/platform.nix index 52f61d413544..c98d9ae63234 100644 --- a/pkgs/development/libraries/libcec/platform.nix +++ b/pkgs/development/libraries/libcec/platform.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { cmakeFlags = lib.optional stdenv.hostPlatform.isDarwin "-DCMAKE_CXX_FLAGS='-std=c++11'"; - meta = with lib; { + meta = { description = "Platform library for libcec and Kodi addons"; homepage = "https://github.com/Pulse-Eight/platform"; license = lib.licenses.gpl2Plus; - platforms = platforms.all; - teams = [ teams.kodi ]; + platforms = lib.platforms.all; + teams = [ lib.teams.kodi ]; }; } diff --git a/pkgs/development/libraries/libcommuni/default.nix b/pkgs/development/libraries/libcommuni/default.nix index fe9990f873d5..887563fe729f 100644 --- a/pkgs/development/libraries/libcommuni/default.nix +++ b/pkgs/development/libraries/libcommuni/default.nix @@ -56,10 +56,10 @@ stdenv.mkDerivation rec { # Hack to avoid TMPDIR in RPATHs. preFixup = "rm -rf lib"; - meta = with lib; { + meta = { description = "Cross-platform IRC framework written with Qt"; homepage = "https://communi.github.io"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libcryptui/default.nix b/pkgs/development/libraries/libcryptui/default.nix index 46487596c52c..a32a03de103c 100644 --- a/pkgs/development/libraries/libcryptui/default.nix +++ b/pkgs/development/libraries/libcryptui/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Interface components for OpenPGP"; mainProgram = "seahorse-daemon"; homepage = "https://gitlab.gnome.org/GNOME/libcryptui"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; # ImportError: lib/gobject-introspection/giscanner/_giscanner.cpython-312-x86_64-linux-gnu.so # cannot open shared object file: No such file or directory broken = stdenv.buildPlatform != stdenv.hostPlatform; diff --git a/pkgs/development/libraries/libcxxrt/default.nix b/pkgs/development/libraries/libcxxrt/default.nix index d048102849ba..228106ac5caf 100644 --- a/pkgs/development/libraries/libcxxrt/default.nix +++ b/pkgs/development/libraries/libcxxrt/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/libcxxrt/libcxxrt"; description = "Implementation of the Code Sourcery C++ ABI"; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.all; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.all; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/libraries/libextractor/default.nix b/pkgs/development/libraries/libextractor/default.nix index bb8888d130dd..17bae5ab296a 100644 --- a/pkgs/development/libraries/libextractor/default.nix +++ b/pkgs/development/libraries/libextractor/default.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation rec { doInstallCheck = !stdenv.hostPlatform.isDarwin; installCheckPhase = "make check"; - meta = with lib; { + meta = { description = "Simple library for keyword extraction"; mainProgram = "extract"; @@ -123,9 +123,9 @@ stdenv.mkDerivation rec { additional MIME types are detected. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; - maintainers = [ maintainers.jorsn ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.jorsn ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libffi/3.3.nix b/pkgs/development/libraries/libffi/3.3.nix index f4e9d81dd6fc..1fc7f61d9e9f 100644 --- a/pkgs/development/libraries/libffi/3.3.nix +++ b/pkgs/development/libraries/libffi/3.3.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ dejagnu ]; - meta = with lib; { + meta = { description = "Foreign function call interface library"; longDescription = '' The libffi library provides a portable, high level programming @@ -67,9 +67,9 @@ stdenv.mkDerivation rec { conversions for values passed between the two languages. ''; homepage = "http://sourceware.org/libffi/"; - license = licenses.mit; - maintainers = with maintainers; [ armeenm ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ armeenm ]; + platforms = lib.platforms.all; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index adeca443d530..0869a82c1d16 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Foreign function call interface library"; longDescription = '' The libffi library provides a portable, high level programming @@ -90,9 +90,9 @@ stdenv.mkDerivation (finalAttrs: { conversions for values passed between the two languages. ''; homepage = "http://sourceware.org/libffi/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; pkgConfigModules = [ "libffi" ]; }; }) diff --git a/pkgs/development/libraries/libfive/default.nix b/pkgs/development/libraries/libfive/default.nix index a9105449dd70..6093bb8e1b5e 100644 --- a/pkgs/development/libraries/libfive/default.nix +++ b/pkgs/development/libraries/libfive/default.nix @@ -112,18 +112,18 @@ stdenv.mkDerivation { tagFormat = ""; }; - meta = with lib; { + meta = { description = "Infrastructure for solid modeling with F-Reps in C, C++, and Guile"; homepage = "https://libfive.com/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hodapp kovirobi wulfsta ]; - license = with licenses; [ + license = with lib.licenses; [ mpl20 gpl2Plus ]; - platforms = with platforms; all; + platforms = with lib.platforms; all; }; } diff --git a/pkgs/development/libraries/libgda/6.x.nix b/pkgs/development/libraries/libgda/6.x.nix index a07cd590811c..f91b264d177a 100644 --- a/pkgs/development/libraries/libgda/6.x.nix +++ b/pkgs/development/libraries/libgda/6.x.nix @@ -104,16 +104,16 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Database access library"; homepage = "https://www.gnome-db.org/"; - license = with licenses; [ + license = with lib.licenses; [ # library lgpl2Plus # CLI tools gpl2Plus ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libgnome-games-support/2.0.nix b/pkgs/development/libraries/libgnome-games-support/2.0.nix index e9e295f133ac..d2d1dc4b509a 100644 --- a/pkgs/development/libraries/libgnome-games-support/2.0.nix +++ b/pkgs/development/libraries/libgnome-games-support/2.0.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Small library intended for internal use by GNOME Games, but it may be used by others"; homepage = "https://gitlab.gnome.org/GNOME/libgnome-games-support"; - license = licenses.lgpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libgnome-games-support/default.nix b/pkgs/development/libraries/libgnome-games-support/default.nix index 658cfd199763..72e1bb3e4513 100644 --- a/pkgs/development/libraries/libgnome-games-support/default.nix +++ b/pkgs/development/libraries/libgnome-games-support/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Small library intended for internal use by GNOME Games, but it may be used by others"; homepage = "https://gitlab.gnome.org/GNOME/libgnome-games-support"; - license = licenses.lgpl3; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libhandy/0.x.nix b/pkgs/development/libraries/libhandy/0.x.nix index 9e350a81d73e..f6976ba19e0b 100644 --- a/pkgs/development/libraries/libhandy/0.x.nix +++ b/pkgs/development/libraries/libhandy/0.x.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { meson test --print-errorlogs ''; - meta = with lib; { + meta = { description = "Library full of GTK widgets for mobile phones"; mainProgram = "handy-0.0-demo"; homepage = "https://source.puri.sm/Librem5/libhandy"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libhandy/default.nix b/pkgs/development/libraries/libhandy/default.nix index e5e6107ed7b5..858932958dfd 100644 --- a/pkgs/development/libraries/libhandy/default.nix +++ b/pkgs/development/libraries/libhandy/default.nix @@ -137,13 +137,13 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { changelog = "https://gitlab.gnome.org/GNOME/libhandy/-/tags/${version}"; description = "Building blocks for modern adaptive GNOME apps"; mainProgram = "handy-1-demo"; homepage = "https://gitlab.gnome.org/GNOME/libhandy"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 868bb2745691..23abc5eff6f4 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -147,14 +147,14 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver"; mainProgram = "libinput"; homepage = "https://www.freedesktop.org/wiki/Software/libinput/"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ codyopel ]; - teams = [ teams.freedesktop ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ codyopel ]; + teams = [ lib.teams.freedesktop ]; changelog = "https://gitlab.freedesktop.org/libinput/libinput/-/releases/${version}"; badPlatforms = [ # Mandatory shared library. diff --git a/pkgs/development/libraries/libirc/default.nix b/pkgs/development/libraries/libirc/default.nix index 69f934e9604a..1ef0b14efa48 100644 --- a/pkgs/development/libraries/libirc/default.nix +++ b/pkgs/development/libraries/libirc/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { cp ../libircclient/*.h $out/libirc/libircclient ''; - meta = with lib; { + meta = { description = "C++ IRC library written in Qt with support for data serialization"; homepage = "https://github.com/grumpy-irc/libirc"; - license = licenses.lgpl3; - maintainers = with maintainers; [ fee1-dead ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ fee1-dead ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/liblastfm/default.nix b/pkgs/development/libraries/liblastfm/default.nix index 5eba0b261380..c685c9682a4b 100644 --- a/pkgs/development/libraries/liblastfm/default.nix +++ b/pkgs/development/libraries/liblastfm/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation { dontWrapQtApps = true; - meta = with lib; { + meta = { homepage = "https://github.com/lastfm/liblastfm"; description = "Official LastFM library"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/libraries/libmicrohttpd/generic.nix b/pkgs/development/libraries/libmicrohttpd/generic.nix index ea56e38c4fbf..275fab81aab0 100644 --- a/pkgs/development/libraries/libmicrohttpd/generic.nix +++ b/pkgs/development/libraries/libmicrohttpd/generic.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { doCheck = false; meta = - with lib; + { description = "Embeddable HTTP server library"; @@ -51,12 +51,12 @@ stdenv.mkDerivation (finalAttrs: { it easy to run an HTTP server as part of another application. ''; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; homepage = "https://www.gnu.org/software/libmicrohttpd/"; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.unix; } // meta; }) diff --git a/pkgs/development/libraries/libosmscout/default.nix b/pkgs/development/libraries/libosmscout/default.nix index 47f66b697f65..0a7ece7a51bc 100644 --- a/pkgs/development/libraries/libosmscout/default.nix +++ b/pkgs/development/libraries/libosmscout/default.nix @@ -43,11 +43,11 @@ mkDerivation { qtlocation ]; - meta = with lib; { + meta = { description = "Simple, high-level interfaces for offline location and POI lokup, rendering and routing functionalities based on OpenStreetMap (OSM) data"; homepage = "https://libosmscout.sourceforge.net/"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.Thra11 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.Thra11 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libpeas/2.x.nix b/pkgs/development/libraries/libpeas/2.x.nix index 2fc9b559723d..5790cf67f534 100644 --- a/pkgs/development/libraries/libpeas/2.x.nix +++ b/pkgs/development/libraries/libpeas/2.x.nix @@ -111,11 +111,11 @@ stdenv.mkDerivation rec { tests.cross = pkgsCross.aarch64-multiplatform.libpeas2; }; - meta = with lib; { + meta = { description = "GObject-based plugins engine"; homepage = "https://gitlab.gnome.org/GNOME/libpeas"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/development/libraries/libpeas/default.nix b/pkgs/development/libraries/libpeas/default.nix index 74fc27b7d7d2..90912e673a0c 100644 --- a/pkgs/development/libraries/libpeas/default.nix +++ b/pkgs/development/libraries/libpeas/default.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GObject-based plugins engine"; mainProgram = "peas-demo"; homepage = "https://gitlab.gnome.org/GNOME/libpeas"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/development/libraries/libpng/12.nix b/pkgs/development/libraries/libpng/12.nix index 30821ba1b608..3ab92139ab9e 100644 --- a/pkgs/development/libraries/libpng/12.nix +++ b/pkgs/development/libraries/libpng/12.nix @@ -39,16 +39,16 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Official reference implementation for the PNG file format"; homepage = "http://www.libpng.org/pub/png/libpng.html"; - license = licenses.libpng; + license = lib.licenses.libpng; maintainers = [ ]; branch = "1.2"; pkgConfigModules = [ "libpng" "libpng12" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index f7e71d872ca0..39802ed7c1c3 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -50,17 +50,17 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Official reference implementation for the PNG file format" + whenPatched " with animation patch"; homepage = "http://www.libpng.org/pub/png/libpng.html"; changelog = "https://github.com/pnggroup/libpng/blob/v${finalAttrs.version}/CHANGES"; - license = licenses.libpng2; + license = lib.licenses.libpng2; pkgConfigModules = [ "libpng" "libpng16" ]; - platforms = platforms.all; - maintainers = with maintainers; [ vcunat ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ vcunat ]; }; }) diff --git a/pkgs/development/libraries/libpulsar/default.nix b/pkgs/development/libraries/libpulsar/default.nix index d9761c457462..a95537f04309 100644 --- a/pkgs/development/libraries/libpulsar/default.nix +++ b/pkgs/development/libraries/libpulsar/default.nix @@ -84,13 +84,13 @@ stdenv.mkDerivation (finalAttrs: { $CXX test.cc -L $out/lib -I $out/include -lpulsar -o test ''; - meta = with lib; { + meta = { homepage = "https://pulsar.apache.org/docs/next/client-libraries-cpp/"; description = "Apache Pulsar C++ library"; changelog = "https://github.com/apache/pulsar-client-cpp/releases/tag/v${finalAttrs.version}"; - platforms = platforms.all; - license = licenses.asl20; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ corbanr gaelreyrol ]; diff --git a/pkgs/development/libraries/libqaccessibilityclient/default.nix b/pkgs/development/libraries/libqaccessibilityclient/default.nix index beb1442951fa..4522f7ad6bbd 100644 --- a/pkgs/development/libraries/libqaccessibilityclient/default.nix +++ b/pkgs/development/libraries/libqaccessibilityclient/default.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Accessibilty tools helper library, used e.g. by screen readers"; homepage = "https://github.com/KDE/libqaccessibilityclient"; - maintainers = with maintainers; [ artturin ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ artturin ]; + license = with lib.licenses; [ lgpl3Only # or lgpl21Only ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libqofono/default.nix b/pkgs/development/libraries/libqofono/default.nix index 4b67650d3541..1c557d9c46e0 100644 --- a/pkgs/development/libraries/libqofono/default.nix +++ b/pkgs/development/libraries/libqofono/default.nix @@ -50,11 +50,11 @@ mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Library for accessing the ofono daemon, and declarative plugin for it"; homepage = "https://git.sailfishos.org/mer-core/libqofono/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libqtdbusmock/default.nix b/pkgs/development/libraries/libqtdbusmock/default.nix index 6d91ae4ace51..2d2517df1d4a 100644 --- a/pkgs/development/libraries/libqtdbusmock/default.nix +++ b/pkgs/development/libraries/libqtdbusmock/default.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Library for mocking DBus interactions using Qt"; homepage = "https://launchpad.net/libqtdbusmock"; - license = licenses.lgpl3Only; - platforms = platforms.unix; - teams = [ teams.lomiri ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; + teams = [ lib.teams.lomiri ]; pkgConfigModules = [ "libqtdbusmock-1" ]; diff --git a/pkgs/development/libraries/libqtdbustest/default.nix b/pkgs/development/libraries/libqtdbustest/default.nix index 097efcf8eb26..67535a59c0a3 100644 --- a/pkgs/development/libraries/libqtdbustest/default.nix +++ b/pkgs/development/libraries/libqtdbustest/default.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Library for testing DBus interactions using Qt"; homepage = "https://gitlab.com/ubports/development/core/libqtdbustest"; - license = licenses.lgpl3Only; - platforms = platforms.unix; - teams = [ teams.lomiri ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; + teams = [ lib.teams.lomiri ]; mainProgram = "qdbus-simple-test-runner"; pkgConfigModules = [ "libqtdbustest-1" diff --git a/pkgs/development/libraries/libquotient/default.nix b/pkgs/development/libraries/libquotient/default.nix index 9441dfa4aeea..73e254eb8b07 100644 --- a/pkgs/development/libraries/libquotient/default.nix +++ b/pkgs/development/libraries/libquotient/default.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { rm $out/share/ndk-modules/Android.mk ''; - meta = with lib; { + meta = { description = "Qt5/Qt6 library to write cross-platform clients for Matrix"; homepage = "https://quotient-im.github.io/libQuotient/"; - license = licenses.lgpl21; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/development/libraries/librdf/redland.nix b/pkgs/development/libraries/librdf/redland.nix index 674621b422b2..25e5492ef71a 100644 --- a/pkgs/development/libraries/librdf/redland.nix +++ b/pkgs/development/libraries/librdf/redland.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { doCheck = false; # fails 1 out of 17 tests with a segmentation fault - meta = with lib; { + meta = { description = "C libraries that provide support for the Resource Description Framework (RDF)"; homepage = "https://librdf.org/"; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/libraries/librealsense/default.nix b/pkgs/development/libraries/librealsense/default.nix index 77efee9a7023..059475e43d3b 100644 --- a/pkgs/development/libraries/librealsense/default.nix +++ b/pkgs/development/libraries/librealsense/default.nix @@ -111,14 +111,14 @@ stdenv'.mkDerivation rec { cp ../wrappers/python/pyrealsense2/__init__.py $out/${pythonPackages.python.sitePackages}/pyrealsense2 ''; - meta = with lib; { + meta = { description = "Cross-platform library for Intel® RealSense™ depth cameras (D400 series and the SR300)"; homepage = "https://github.com/IntelRealSense/librealsense"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ brian-dawn pbsds ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/librest/1.0.nix b/pkgs/development/libraries/librest/1.0.nix index 291be022365c..4510f999c27f 100644 --- a/pkgs/development/libraries/librest/1.0.nix +++ b/pkgs/development/libraries/librest/1.0.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Helper library for RESTful services"; homepage = "https://gitlab.gnome.org/GNOME/librest"; - license = licenses.lgpl21Only; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/development/libraries/librest/default.nix b/pkgs/development/libraries/librest/default.nix index 07b1be3d6b6b..ac64dc7d13f9 100644 --- a/pkgs/development/libraries/librest/default.nix +++ b/pkgs/development/libraries/librest/default.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Helper library for RESTful services"; homepage = "https://gitlab.gnome.org/GNOME/librest"; - license = licenses.lgpl21Only; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/development/libraries/libsigcxx/3.0.nix b/pkgs/development/libraries/libsigcxx/3.0.nix index 3b5734b855d0..f5c76431d1ea 100644 --- a/pkgs/development/libraries/libsigcxx/3.0.nix +++ b/pkgs/development/libraries/libsigcxx/3.0.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://libsigcplusplus.github.io/libsigcplusplus/"; description = "Typesafe callback system for standard C++"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix index 3a5eef9490f0..95f040620245 100644 --- a/pkgs/development/libraries/libsigcxx/default.nix +++ b/pkgs/development/libraries/libsigcxx/default.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://libsigcplusplus.github.io/libsigcplusplus/"; description = "Typesafe callback system for standard C++"; - license = licenses.lgpl21Plus; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libubox/default.nix b/pkgs/development/libraries/libubox/default.nix index 1804f4587546..36d031d7525f 100644 --- a/pkgs/development/libraries/libubox/default.nix +++ b/pkgs/development/libraries/libubox/default.nix @@ -49,16 +49,16 @@ stdenv.mkDerivation { ] ); - meta = with lib; { + meta = { description = "C utility functions for OpenWrt"; homepage = "https://git.openwrt.org/?p=project/libubox.git;a=summary"; - license = licenses.isc; - maintainers = with maintainers; [ + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fpletz mkg20001 dvn0 ]; mainProgram = "jshn"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix index 0062de9b5045..1607e35b7926 100644 --- a/pkgs/development/libraries/libunwind/default.nix +++ b/pkgs/development/libraries/libunwind/default.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { versionCheck = true; }; - meta = with lib; { + meta = { homepage = "https://www.nongnu.org/libunwind"; description = "Portable and efficient API to determine the call-chain of a program"; maintainers = [ ]; @@ -96,6 +96,6 @@ stdenv.mkDerivation (finalAttrs: { "x86_64-linux" "x86_64-solaris" ]; - license = licenses.mit; + license = lib.licenses.mit; }; }) diff --git a/pkgs/development/libraries/libusb-compat/0.1.nix b/pkgs/development/libraries/libusb-compat/0.1.nix index a746ed1cb2be..dd48ccd86fc5 100644 --- a/pkgs/development/libraries/libusb-compat/0.1.nix +++ b/pkgs/development/libraries/libusb-compat/0.1.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { patchelf --set-rpath ${lib.makeLibraryPath buildInputs} {} \; ''; - meta = with lib; { + meta = { homepage = "https://libusb.info/"; description = "Cross-platform user-mode USB device library"; mainProgram = "libusb-config"; @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { libusb is a cross-platform user-mode library that provides access to USB devices. The current API is of 1.0 version (libusb-1.0 API), this library is a wrapper exposing the legacy API. ''; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libva/1.nix b/pkgs/development/libraries/libva/1.nix index ae0ac2d3e2ea..fac14e26ec44 100644 --- a/pkgs/development/libraries/libva/1.nix +++ b/pkgs/development/libraries/libva/1.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { installFlags = [ "dummy_drv_video_ladir=$(out)/lib/dri" ]; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/wiki/Software/vaapi/"; - license = licenses.mit; + license = lib.licenses.mit; description = "VAAPI library: Video Acceleration API"; - platforms = platforms.unix; - maintainers = with maintainers; [ SuperSandro2000 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/libraries/libva/default.nix b/pkgs/development/libraries/libva/default.nix index 38782260ed0a..2c006a60769d 100644 --- a/pkgs/development/libraries/libva/default.nix +++ b/pkgs/development/libraries/libva/default.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation (finalAttrs: { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Implementation for VA-API (Video Acceleration API)"; longDescription = '' VA-API is an open-source library and API specification, which provides @@ -100,8 +100,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://01.org/linuxmedia/vaapi"; changelog = "https://raw.githubusercontent.com/intel/libva/${finalAttrs.version}/NEWS"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; pkgConfigModules = [ "libva" "libva-drm" @@ -111,7 +111,7 @@ stdenv.mkDerivation (finalAttrs: { "libva-wayland" "libva-x11" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; badPlatforms = [ # Mandatory libva shared library. lib.systems.inspect.platformPatterns.isStatic diff --git a/pkgs/development/libraries/libva/utils.nix b/pkgs/development/libraries/libva/utils.nix index 1be8fd098fce..945eab0f15b1 100644 --- a/pkgs/development/libraries/libva/utils.nix +++ b/pkgs/development/libraries/libva/utils.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { wayland ]; - meta = with lib; { + meta = { description = "Collection of utilities and examples for VA-API"; longDescription = '' libva-utils is a collection of utilities and examples to exercise VA-API @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/intel/libva-utils"; changelog = "https://raw.githubusercontent.com/intel/libva-utils/${version}/NEWS"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libwnck/default.nix b/pkgs/development/libraries/libwnck/default.nix index 901d31669143..6ae615dad5da 100644 --- a/pkgs/development/libraries/libwnck/default.nix +++ b/pkgs/development/libraries/libwnck/default.nix @@ -76,10 +76,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library to manage X windows and workspaces (via pagers, tasklists, etc.)"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ liff ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ liff ]; }; } diff --git a/pkgs/development/libraries/libwpd/0.8.nix b/pkgs/development/libraries/libwpd/0.8.nix index 5c5e7307192b..f86db940a5bb 100644 --- a/pkgs/development/libraries/libwpd/0.8.nix +++ b/pkgs/development/libraries/libwpd/0.8.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { bzip2 ]; - meta = with lib; { + meta = { description = "Library for importing WordPerfect documents"; homepage = "https://libwpd.sourceforge.net"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 mpl20 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libwpd/default.nix b/pkgs/development/libraries/libwpd/default.nix index 4ed68e09b4a7..b9ca829a90be 100644 --- a/pkgs/development/libraries/libwpd/default.nix +++ b/pkgs/development/libraries/libwpd/default.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Library for importing and exporting WordPerfect documents"; homepage = "https://libwpd.sourceforge.net/"; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libwpe/default.nix b/pkgs/development/libraries/libwpe/default.nix index aec45a648baa..efdc54ef69cd 100644 --- a/pkgs/development/libraries/libwpe/default.nix +++ b/pkgs/development/libraries/libwpe/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { libX11 ]; - meta = with lib; { + meta = { description = "General-purpose library for WPE WebKit"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://wpewebkit.org"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libwpe/fdo.nix b/pkgs/development/libraries/libwpe/fdo.nix index 5e294cf078d5..2ee2866f70cf 100644 --- a/pkgs/development/libraries/libwpe/fdo.nix +++ b/pkgs/development/libraries/libwpe/fdo.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { libX11 ]; - meta = with lib; { + meta = { description = "Freedesktop.org backend for WPE WebKit"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://wpewebkit.org"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libxcrypt/default.nix b/pkgs/development/libraries/libxcrypt/default.nix index 075c25104dc2..532ed09b5942 100644 --- a/pkgs/development/libraries/libxcrypt/default.nix +++ b/pkgs/development/libraries/libxcrypt/default.nix @@ -90,15 +90,15 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = with lib; { + meta = { changelog = "https://github.com/besser82/libxcrypt/blob/v${finalAttrs.version}/NEWS"; description = "Extended crypt library for descrypt, md5crypt, bcrypt, and others"; homepage = "https://github.com/besser82/libxcrypt/"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ dottedmag hexa ]; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; }; }) diff --git a/pkgs/development/libraries/libxmlxx/default.nix b/pkgs/development/libraries/libxmlxx/default.nix index 39f2fad91809..0ef02c177e12 100644 --- a/pkgs/development/libraries/libxmlxx/default.nix +++ b/pkgs/development/libraries/libxmlxx/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://libxmlplusplus.sourceforge.net/"; description = "C++ wrapper for the libxml2 XML parser library"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/libxmlxx/v3.nix b/pkgs/development/libraries/libxmlxx/v3.nix index b39f520d02f1..9794a16da5b0 100644 --- a/pkgs/development/libraries/libxmlxx/v3.nix +++ b/pkgs/development/libraries/libxmlxx/v3.nix @@ -94,11 +94,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://libxmlplusplus.sourceforge.net/"; description = "C++ wrapper for the libxml2 XML parser library, version 3"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ willow ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ willow ]; }; } diff --git a/pkgs/development/libraries/malcontent/default.nix b/pkgs/development/libraries/malcontent/default.nix index 4bd029ffed57..41e96c439e27 100644 --- a/pkgs/development/libraries/malcontent/default.nix +++ b/pkgs/development/libraries/malcontent/default.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { # We need to install Polkit & AccountsService data files in `out` # but `buildEnv` only uses `bin` when both `bin` and `out` are present. outputsToInstall = [ @@ -115,8 +115,8 @@ stdenv.mkDerivation rec { description = "Parental controls library"; mainProgram = "malcontent-client"; homepage = "https://gitlab.freedesktop.org/pwithnall/malcontent"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ jtojnar ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ jtojnar ]; inherit (polkit.meta) platforms badPlatforms; }; } diff --git a/pkgs/development/libraries/malcontent/ui.nix b/pkgs/development/libraries/malcontent/ui.nix index 66e470de4403..d26be906e648 100644 --- a/pkgs/development/libraries/malcontent/ui.nix +++ b/pkgs/development/libraries/malcontent/ui.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation { "-Dui=enabled" ]; - meta = with lib; { + meta = { description = "UI components for parental controls library"; mainProgram = "malcontent-control"; homepage = "https://gitlab.freedesktop.org/pwithnall/malcontent"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/mapbox-gl-native/default.nix b/pkgs/development/libraries/mapbox-gl-native/default.nix index 0f106cfe4cb6..c4e2c1ef09a8 100644 --- a/pkgs/development/libraries/mapbox-gl-native/default.nix +++ b/pkgs/development/libraries/mapbox-gl-native/default.nix @@ -77,16 +77,16 @@ mkDerivation rec { ]; env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations -Wno-error=type-limits"; - meta = with lib; { + meta = { # Does not build against gcc-13, the repository is archived upstream. broken = true; description = "Interactive, thoroughly customizable maps in native Android, iOS, macOS, Node.js, and Qt applications, powered by vector tiles and OpenGL"; homepage = "https://mapbox.com/mobile"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ Thra11 dotlambda ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/maplibre-gl-native/default.nix b/pkgs/development/libraries/maplibre-gl-native/default.nix index 047a358254eb..b92cd2fe9107 100644 --- a/pkgs/development/libraries/maplibre-gl-native/default.nix +++ b/pkgs/development/libraries/maplibre-gl-native/default.nix @@ -70,11 +70,11 @@ mkDerivation rec { ] ); - meta = with lib; { + meta = { description = "Open-source alternative to Mapbox GL Native"; homepage = "https://maplibre.org/"; - license = licenses.bsd2; - maintainers = with maintainers; [ dotlambda ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dotlambda ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/maui-core/default.nix b/pkgs/development/libraries/maui-core/default.nix index 23362e0484d8..722ae70fc806 100644 --- a/pkgs/development/libraries/maui-core/default.nix +++ b/pkgs/development/libraries/maui-core/default.nix @@ -33,13 +33,13 @@ mkDerivation rec { pulseaudio ]; - meta = with lib; { + meta = { description = "Core libraries to manage the desktop to be shared between Maui Settings and Cask"; homepage = "https://github.com/Nitrux/maui-core"; # Missing license information https://github.com/Nitrux/maui-core/issues/1 - license = licenses.unfree; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/mbedtls/generic.nix b/pkgs/development/libraries/mbedtls/generic.nix index 266584968ca0..df19340cf0d8 100644 --- a/pkgs/development/libraries/mbedtls/generic.nix +++ b/pkgs/development/libraries/mbedtls/generic.nix @@ -62,16 +62,16 @@ stdenv.mkDerivation rec { # https://github.com/Mbed-TLS/mbedtls/issues/4980 enableParallelChecking = false; - meta = with lib; { + meta = { homepage = "https://www.trustedfirmware.org/projects/mbed-tls/"; changelog = "https://github.com/Mbed-TLS/mbedtls/blob/${pname}-${version}/ChangeLog"; description = "Portable cryptographic and TLS library, formerly known as PolarSSL"; license = [ - licenses.asl20 # or - licenses.gpl2Plus + lib.licenses.asl20 # or + lib.licenses.gpl2Plus ]; - platforms = platforms.all; - maintainers = with maintainers; [ raphaelr ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ raphaelr ]; knownVulnerabilities = lib.optionals (lib.versionOlder version "3.0") [ "Mbed TLS 2 is not maintained anymore. Please migrate to newer versions" ]; diff --git a/pkgs/development/libraries/medfile/default.nix b/pkgs/development/libraries/medfile/default.nix index 94fb4bcfada2..8f76a9676b5e 100644 --- a/pkgs/development/libraries/medfile/default.nix +++ b/pkgs/development/libraries/medfile/default.nix @@ -51,10 +51,10 @@ stdenv.mkDerivation (finalAttrs: { postInstall = "rm -r $out/bin/testc"; - meta = with lib; { + meta = { description = "Library to read and write MED files"; homepage = "https://salome-platform.org/"; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.lgpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.lgpl3Plus; }; }) diff --git a/pkgs/development/libraries/memorymapping/default.nix b/pkgs/development/libraries/memorymapping/default.nix index eb0bb5d6e768..760feda570f9 100644 --- a/pkgs/development/libraries/memorymapping/default.nix +++ b/pkgs/development/libraries/memorymapping/default.nix @@ -36,14 +36,14 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://nimbuskit.github.io/memorymapping/"; description = "fmemopen for Mac OS and iOS"; - license = licenses.asl20; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veprbl ]; # Uses BSD-style funopen() to implement glibc-style fmemopen(). # Add more BSDs if you need to. - platforms = platforms.darwin; + platforms = lib.platforms.darwin; broken = stdenv.hostPlatform.isAarch64; }; } diff --git a/pkgs/development/libraries/mypaint-brushes/1.0.nix b/pkgs/development/libraries/mypaint-brushes/1.0.nix index 3c31c9b06957..f1012afb441d 100644 --- a/pkgs/development/libraries/mypaint-brushes/1.0.nix +++ b/pkgs/development/libraries/mypaint-brushes/1.0.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { homepage = "http://mypaint.org/"; description = "Brushes used by MyPaint and other software using libmypaint"; - license = licenses.cc0; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/mypaint-brushes/default.nix b/pkgs/development/libraries/mypaint-brushes/default.nix index af20e603e090..da7ecb1757e6 100644 --- a/pkgs/development/libraries/mypaint-brushes/default.nix +++ b/pkgs/development/libraries/mypaint-brushes/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = with lib; { + meta = { homepage = "http://mypaint.org/"; description = "Brushes used by MyPaint and other software using libmypaint"; - license = licenses.cc0; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix index 39e73047f2bd..54859b14d021 100644 --- a/pkgs/development/libraries/ncurses/default.nix +++ b/pkgs/development/libraries/ncurses/default.nix @@ -257,7 +257,7 @@ stdenv.mkDerivation (finalAttrs: { execer cannot bin/{reset,tput,tset} ''; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/ncurses/"; description = "Free software emulation of curses in SVR4 and more"; longDescription = '' @@ -271,7 +271,7 @@ stdenv.mkDerivation (finalAttrs: { NetBSD as an external package. It should port easily to any ANSI/POSIX-conforming UNIX. It has even been ported to OS/2 Warp! ''; - license = licenses.mit; + license = lib.licenses.mit; pkgConfigModules = let base = [ @@ -283,7 +283,7 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optional withCxx "ncurses++"; in base ++ lib.optionals unicodeSupport (map (p: p + "w") base); - platforms = platforms.all; + platforms = lib.platforms.all; }; passthru = { diff --git a/pkgs/development/libraries/nemo-qml-plugin-dbus/default.nix b/pkgs/development/libraries/nemo-qml-plugin-dbus/default.nix index 92e3b9d571f2..46ad5ea80bf9 100644 --- a/pkgs/development/libraries/nemo-qml-plugin-dbus/default.nix +++ b/pkgs/development/libraries/nemo-qml-plugin-dbus/default.nix @@ -29,11 +29,11 @@ mkDerivation rec { --replace '$$[QT_INSTALL_QML]' $out'/${qtbase.qtQmlPrefix}' ''; - meta = with lib; { + meta = { description = "Nemo DBus plugin for qml"; homepage = "https://git.sailfishos.org/mer-core/nemo-qml-plugin-dbus/"; - license = licenses.lgpl2Only; - maintainers = [ maintainers.Thra11 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Only; + maintainers = [ lib.maintainers.Thra11 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/nettle/generic.nix b/pkgs/development/libraries/nettle/generic.nix index 2ce64e94121f..86414d5ac356 100644 --- a/pkgs/development/libraries/nettle/generic.nix +++ b/pkgs/development/libraries/nettle/generic.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation { patches = lib.optional (stdenv.hostPlatform.system == "i686-cygwin") ./cygwin.patch; - meta = with lib; { + meta = { description = "Cryptographic library"; longDescription = '' @@ -66,11 +66,11 @@ stdenv.mkDerivation { I/O. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://www.lysator.liu.se/~nisse/nettle/"; - platforms = platforms.all; - maintainers = [ maintainers.vcunat ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.vcunat ]; }; } diff --git a/pkgs/development/libraries/ngtcp2/gnutls.nix b/pkgs/development/libraries/ngtcp2/gnutls.nix index 89f4d0fbf729..371f14cbcafd 100644 --- a/pkgs/development/libraries/ngtcp2/gnutls.nix +++ b/pkgs/development/libraries/ngtcp2/gnutls.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { inherit curlWithGnuTls; }; - meta = with lib; { + meta = { homepage = "https://github.com/ngtcp2/ngtcp2"; description = "Effort to implement RFC9000 QUIC protocol"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vcunat # for knot-dns ]; }; diff --git a/pkgs/development/libraries/nss/generic.nix b/pkgs/development/libraries/nss/generic.nix index 6c274607e03c..c7d768fad3f8 100644 --- a/pkgs/development/libraries/nss/generic.nix +++ b/pkgs/development/libraries/nss/generic.nix @@ -252,15 +252,15 @@ stdenv.mkDerivation rec { inherit (nixosTests) firefox; }; - meta = with lib; { + meta = { homepage = "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS"; description = "Set of libraries for development of security-enabled client and server applications"; changelog = "https://github.com/nss-dev/nss/blob/master/doc/rst/releases/nss_${underscoreVersion}.rst"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hexa ajs124 ]; - license = licenses.mpl20; - platforms = platforms.all; + license = lib.licenses.mpl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/nvidia-vaapi-driver/default.nix b/pkgs/development/libraries/nvidia-vaapi-driver/default.nix index 4ae856373fe5..7668ec94cdaa 100644 --- a/pkgs/development/libraries/nvidia-vaapi-driver/default.nix +++ b/pkgs/development/libraries/nvidia-vaapi-driver/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { addDriverRunpath "$out/lib/dri/nvidia_drv_video.so" ''; - meta = with lib; { + meta = { homepage = "https://github.com/elFarto/nvidia-vaapi-driver"; description = "VA-API implemention using NVIDIA's NVDEC"; changelog = "https://github.com/elFarto/nvidia-vaapi-driver/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/libraries/opencolorio/default.nix b/pkgs/development/libraries/opencolorio/default.nix index 5c8c5362198c..97bab2a6df9a 100644 --- a/pkgs/development/libraries/opencolorio/default.nix +++ b/pkgs/development/libraries/opencolorio/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { # Tends to fail otherwise. enableParallelChecking = false; - meta = with lib; { + meta = { homepage = "https://opencolorio.org"; description = "Color management framework for visual effects and animation"; - license = licenses.bsd3; - maintainers = [ maintainers.rytone ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.rytone ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/openexr/2.nix b/pkgs/development/libraries/openexr/2.nix index 7a1bddcb30c2..f17381c9c9b1 100644 --- a/pkgs/development/libraries/openexr/2.nix +++ b/pkgs/development/libraries/openexr/2.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation rec { # https://github.com/AcademySoftwareFoundation/openexr/issues/1281 doCheck = !stdenv.hostPlatform.isAarch32 && !stdenv.hostPlatform.isi686; - meta = with lib; { + meta = { description = "High dynamic-range (HDR) image file format"; homepage = "https://www.openexr.com/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; insecure = true; }; } diff --git a/pkgs/development/libraries/openexr/3.nix b/pkgs/development/libraries/openexr/3.nix index 6729fb07a69d..24287d428065 100644 --- a/pkgs/development/libraries/openexr/3.nix +++ b/pkgs/development/libraries/openexr/3.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { musl = pkgsCross.musl64.openexr; }; - meta = with lib; { + meta = { description = "High dynamic-range (HDR) image file format"; homepage = "https://www.openexr.com"; - license = licenses.bsd3; - maintainers = with maintainers; [ paperdigits ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ paperdigits ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/pangomm/2.42.nix b/pkgs/development/libraries/pangomm/2.42.nix index bc470540e723..ee82d7458730 100644 --- a/pkgs/development/libraries/pangomm/2.42.nix +++ b/pkgs/development/libraries/pangomm/2.42.nix @@ -57,20 +57,20 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; description = "C++ interface to the Pango text rendering library"; homepage = "https://www.pango.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2 lgpl21 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 raskin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; longDescription = '' Pango is a library for laying out and rendering of text, with an diff --git a/pkgs/development/libraries/pangomm/2.48.nix b/pkgs/development/libraries/pangomm/2.48.nix index cff51fbb8d92..bcaee631a005 100644 --- a/pkgs/development/libraries/pangomm/2.48.nix +++ b/pkgs/development/libraries/pangomm/2.48.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface to the Pango text rendering library"; longDescription = '' Pango is a library for laying out and rendering of text, with an @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { Pango forms the core of text and font handling for GTK. ''; homepage = "https://www.pango.org/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ lovek323 raskin ]; - teams = [ teams.gnome ]; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/pangomm/default.nix b/pkgs/development/libraries/pangomm/default.nix index b04b4fdbb0c9..c572f36ced93 100644 --- a/pkgs/development/libraries/pangomm/default.nix +++ b/pkgs/development/libraries/pangomm/default.nix @@ -48,18 +48,18 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface to the Pango text rendering library"; homepage = "https://www.pango.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2 lgpl21 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 raskin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; longDescription = '' Pango is a library for laying out and rendering of text, with an diff --git a/pkgs/development/libraries/pcre2/default.nix b/pkgs/development/libraries/pcre2/default.nix index 10b90dd98186..2c56ea3a7cc4 100644 --- a/pkgs/development/libraries/pcre2/default.nix +++ b/pkgs/development/libraries/pcre2/default.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { moveToOutput bin/pcre2-config "$dev" ''; - meta = with lib; { + meta = { homepage = "https://www.pcre.org/"; description = "Perl Compatible Regular Expressions"; - license = licenses.bsd3; - maintainers = with maintainers; [ ttuegel ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ttuegel ]; + platforms = lib.platforms.all; pkgConfigModules = [ "libpcre2-posix" "libpcre2-8" diff --git a/pkgs/development/libraries/pdfhummus/default.nix b/pkgs/development/libraries/pdfhummus/default.nix index 500ebb4fca73..e32984e33602 100644 --- a/pkgs/development/libraries/pdfhummus/default.nix +++ b/pkgs/development/libraries/pdfhummus/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { "-DUSE_UNBUNDLED_FALLBACK_BUNDLED=ON" ]; - meta = with lib; { + meta = { description = "Fast and Free C++ Library for Creating, Parsing an Manipulating PDF Files and Streams"; homepage = "https://www.pdfhummus.com"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; }; } diff --git a/pkgs/development/libraries/phonetisaurus/default.nix b/pkgs/development/libraries/phonetisaurus/default.nix index 2a9df2001dcd..88ceae922233 100644 --- a/pkgs/development/libraries/phonetisaurus/default.nix +++ b/pkgs/development/libraries/phonetisaurus/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { openfst ]; - meta = with lib; { + meta = { description = "Framework for Grapheme-to-phoneme models for speech recognition using the OpenFst framework"; inherit (src.meta) homepage; - license = licenses.bsd3; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/phonon/backends/gstreamer.nix b/pkgs/development/libraries/phonon/backends/gstreamer.nix index 9b4579318d97..1c7511becab1 100644 --- a/pkgs/development/libraries/phonon/backends/gstreamer.nix +++ b/pkgs/development/libraries/phonon/backends/gstreamer.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { cmakeBuildType = if debug then "Debug" else "Release"; - meta = with lib; { + meta = { homepage = "https://phonon.kde.org/"; description = "GStreamer backend for Phonon"; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel ]; - license = licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ttuegel ]; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/libraries/phonon/backends/vlc.nix b/pkgs/development/libraries/phonon/backends/vlc.nix index b8c8c5faa185..b262d7ce71dc 100644 --- a/pkgs/development/libraries/phonon/backends/vlc.nix +++ b/pkgs/development/libraries/phonon/backends/vlc.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { cmakeBuildType = if debug then "Debug" else "Release"; - meta = with lib; { + meta = { homepage = "https://community.kde.org/Phonon"; # Dev repo is at https://invent.kde.org/libraries/phonon-vlc description = "GStreamer backend for Phonon"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ bsd3 lgpl21Plus ]; diff --git a/pkgs/development/libraries/physfs/default.nix b/pkgs/development/libraries/physfs/default.nix index b16dd5874277..ee166db415cc 100644 --- a/pkgs/development/libraries/physfs/default.nix +++ b/pkgs/development/libraries/physfs/default.nix @@ -45,13 +45,13 @@ let ./test_physfs --version ''; - meta = with lib; { + meta = { homepage = "https://icculus.org/physfs/"; description = "Library to provide abstract access to various archives"; mainProgram = "test_physfs"; changelog = "https://github.com/icculus/physfs/releases/tag/release-${version}"; - license = licenses.zlib; - platforms = platforms.all; + license = lib.licenses.zlib; + platforms = lib.platforms.all; }; }; diff --git a/pkgs/development/libraries/physics/hepmc3/default.nix b/pkgs/development/libraries/physics/hepmc3/default.nix index 003f60680d04..2e9a6261560e 100644 --- a/pkgs/development/libraries/physics/hepmc3/default.nix +++ b/pkgs/development/libraries/physics/hepmc3/default.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { pythonImportsCheck = [ "pyHepMC3" ]; - meta = with lib; { + meta = { description = "HepMC package is an object oriented, C++ event record for High Energy Physics Monte Carlo generators and simulation"; mainProgram = "HepMC3-config"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "http://hepmc.web.cern.ch/hepmc/"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/libraries/physics/pythia/default.nix b/pkgs/development/libraries/physics/pythia/default.nix index 36a9d866d4f1..a294fcbf2df0 100644 --- a/pkgs/development/libraries/physics/pythia/default.nix +++ b/pkgs/development/libraries/physics/pythia/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Program for the generation of high-energy physics events"; mainProgram = "pythia8-config"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "https://pythia.org"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/libraries/pipewire/default.nix b/pkgs/development/libraries/pipewire/default.nix index bb889da7ea81..59dd8e187cca 100644 --- a/pkgs/development/libraries/pipewire/default.nix +++ b/pkgs/development/libraries/pipewire/default.nix @@ -260,13 +260,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Server and user space API to deal with multimedia pipelines"; changelog = "https://gitlab.freedesktop.org/pipewire/pipewire/-/releases/${finalAttrs.version}"; homepage = "https://pipewire.org/"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.freebsd; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.freebsd; + maintainers = with lib.maintainers; [ kranzes k900 ]; diff --git a/pkgs/development/libraries/pipewire/wireplumber.nix b/pkgs/development/libraries/pipewire/wireplumber.nix index 42b0ec2432cb..c1af7a05a943 100644 --- a/pkgs/development/libraries/pipewire/wireplumber.nix +++ b/pkgs/development/libraries/pipewire/wireplumber.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Modular session / policy manager for PipeWire"; homepage = "https://pipewire.org"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ k900 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ k900 ]; }; } diff --git a/pkgs/development/libraries/pulseaudio-qt/default.nix b/pkgs/development/libraries/pulseaudio-qt/default.nix index 9bc5141eeb6e..3d1a91c748e5 100644 --- a/pkgs/development/libraries/pulseaudio-qt/default.nix +++ b/pkgs/development/libraries/pulseaudio-qt/default.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation (finalAttrs: { pulseaudio ]; - meta = with lib; { + meta = { description = "Pulseaudio bindings for Qt"; homepage = "https://invent.kde.org/libraries/pulseaudio-qt"; - license = with licenses; [ lgpl2 ]; - maintainers = with maintainers; [ doronbehar ]; + license = with lib.licenses; [ lgpl2 ]; + maintainers = with lib.maintainers; [ doronbehar ]; }; }) diff --git a/pkgs/development/libraries/pyotherside/default.nix b/pkgs/development/libraries/pyotherside/default.nix index 566c1e05f6ca..481093cbe188 100644 --- a/pkgs/development/libraries/pyotherside/default.nix +++ b/pkgs/development/libraries/pyotherside/default.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { patches = [ ./qml-path.patch ]; installTargets = [ "sub-src-install_subtargets" ]; - meta = with lib; { + meta = { description = "Asynchronous Python 3 Bindings for Qt 5"; homepage = "https://thp.io/2011/pyotherside/"; - license = licenses.isc; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/libraries/python-qt/default.nix b/pkgs/development/libraries/python-qt/default.nix index 907452702d61..7b70c94c1872 100644 --- a/pkgs/development/libraries/python-qt/default.nix +++ b/pkgs/development/libraries/python-qt/default.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation (finalAttrs: { $out/lib/libPythonQt_QtAll-Qt5-Python3.${python3.sourceVersion.minor}.dylib ''; - meta = with lib; { + meta = { description = "PythonQt is a dynamic Python binding for the Qt framework. It offers an easy way to embed the Python scripting language into your C++ Qt applications"; homepage = "https://pythonqt.sourceforge.net/"; - license = licenses.lgpl21; - platforms = platforms.all; - maintainers = with maintainers; [ hlolli ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ hlolli ]; }; }) diff --git a/pkgs/development/libraries/qca/default.nix b/pkgs/development/libraries/qca/default.nix index 0412c725079c..6c70f1858c9c 100644 --- a/pkgs/development/libraries/qca/default.nix +++ b/pkgs/development/libraries/qca/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ]; - meta = with lib; { + meta = { description = "Qt Cryptographic Architecture"; homepage = "https://invent.kde.org/libraries/qca"; - maintainers = with maintainers; [ ttuegel ]; - license = licenses.lgpl21Plus; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ ttuegel ]; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/libraries/qcoro/default.nix b/pkgs/development/libraries/qcoro/default.nix index 8163a48b85b2..a58e8362c02b 100644 --- a/pkgs/development/libraries/qcoro/default.nix +++ b/pkgs/development/libraries/qcoro/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { libpthreadstubs ]; - meta = with lib; { + meta = { description = "Library for using C++20 coroutines in connection with certain asynchronous Qt actions"; homepage = "https://github.com/danvratil/qcoro"; - license = licenses.mit; - maintainers = with maintainers; [ smitop ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ smitop ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/qdjango/default.nix b/pkgs/development/libraries/qdjango/default.nix index 8968cb5e0be1..1105f2839325 100644 --- a/pkgs/development/libraries/qdjango/default.nix +++ b/pkgs/development/libraries/qdjango/default.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Qt-based C++ web framework"; homepage = "https://github.com/jlaine/qdjango"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; pkgConfigModules = [ "qdjango-db" "qdjango-http" diff --git a/pkgs/development/libraries/qgnomeplatform/default.nix b/pkgs/development/libraries/qgnomeplatform/default.nix index 7bae9ca2c6e2..2c31ce2f996c 100644 --- a/pkgs/development/libraries/qgnomeplatform/default.nix +++ b/pkgs/development/libraries/qgnomeplatform/default.nix @@ -77,11 +77,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "QPlatformTheme for a better Qt application inclusion in GNOME"; homepage = "https://github.com/FedoraQt/QGnomePlatform"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/qjson/default.nix b/pkgs/development/libraries/qjson/default.nix index 2ac2bb4ff56a..4e9d466461b4 100644 --- a/pkgs/development/libraries/qjson/default.nix +++ b/pkgs/development/libraries/qjson/default.nix @@ -34,9 +34,9 @@ stdenv.mkDerivation rec { buildInputs = [ qtbase ]; dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Lightweight data-interchange format"; homepage = "https://qjson.sourceforge.net/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/libraries/qmarkdowntextedit/default.nix b/pkgs/development/libraries/qmarkdowntextedit/default.nix index 791da76f83e0..ad75505c3642 100644 --- a/pkgs/development/libraries/qmarkdowntextedit/default.nix +++ b/pkgs/development/libraries/qmarkdowntextedit/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { "LIBDIR=${placeholder "out"}/lib" ]; - meta = with lib; { + meta = { description = "C++ Qt QPlainTextEdit widget with markdown highlighting and some other goodies"; homepage = "https://github.com/pbek/qmarkdowntextedit"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; }; } diff --git a/pkgs/development/libraries/qmenumodel/default.nix b/pkgs/development/libraries/qmenumodel/default.nix index a33c77591ee3..af312742dcbd 100644 --- a/pkgs/development/libraries/qmenumodel/default.nix +++ b/pkgs/development/libraries/qmenumodel/default.nix @@ -91,16 +91,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Qt5 renderer for Ayatana Indicators"; longDescription = '' QMenuModel - a Qt/QML binding for GMenuModel (see http://developer.gnome.org/gio/unstable/GMenuModel.html) ''; homepage = "https://github.com/AyatanaIndicators/qmenumodel"; - license = licenses.lgpl3Only; - teams = [ teams.lomiri ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + teams = [ lib.teams.lomiri ]; + platforms = lib.platforms.linux; pkgConfigModules = [ "qmenumodel" ]; diff --git a/pkgs/development/libraries/qoauth/default.nix b/pkgs/development/libraries/qoauth/default.nix index 2ba063f56ea7..31f1719e39c3 100644 --- a/pkgs/development/libraries/qoauth/default.nix +++ b/pkgs/development/libraries/qoauth/default.nix @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Qt library for OAuth authentication"; inherit (qtbase.meta) platforms; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index 4974937053ca..654212dc45fe 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -537,16 +537,16 @@ stdenv.mkDerivation ( passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { homepage = "https://www.qt.io/"; description = "Cross-platform application framework for C++"; - license = with licenses; [ + license = with lib.licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ qknight ttuegel periklis @@ -571,7 +571,7 @@ stdenv.mkDerivation ( "Qt5Widgets" "Qt5Xml" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/qt-5/modules/qtmacextras.nix b/pkgs/development/libraries/qt-5/modules/qtmacextras.nix index 35475c4793ee..409e80b395b7 100644 --- a/pkgs/development/libraries/qt-5/modules/qtmacextras.nix +++ b/pkgs/development/libraries/qt-5/modules/qtmacextras.nix @@ -7,8 +7,8 @@ qtModule { pname = "qtmacextras"; propagatedBuildInputs = [ qtbase ]; - meta = with lib; { - maintainers = with maintainers; [ periklis ]; - platforms = platforms.darwin; + meta = { + maintainers = with lib.maintainers; [ periklis ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/development/libraries/qt-6/modules/qtbase/default.nix b/pkgs/development/libraries/qt-6/modules/qtbase/default.nix index ab35d1906f73..c27c96d5802e 100644 --- a/pkgs/development/libraries/qt-6/modules/qtbase/default.nix +++ b/pkgs/development/libraries/qt-6/modules/qtbase/default.nix @@ -326,19 +326,19 @@ stdenv.mkDerivation rec { setupHook = ../../hooks/qtbase-setup-hook.sh; - meta = with lib; { + meta = { homepage = "https://www.qt.io/"; description = "Cross-platform application framework for C++"; - license = with licenses; [ + license = with lib.licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nickcao LunNova ]; - platforms = platforms.unix ++ platforms.windows; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; } diff --git a/pkgs/development/libraries/qt-6/qtModule.nix b/pkgs/development/libraries/qt-6/qtModule.nix index 07aa27e13abf..fe2257159dd7 100644 --- a/pkgs/development/libraries/qt-6/qtModule.nix +++ b/pkgs/development/libraries/qt-6/qtModule.nix @@ -67,23 +67,23 @@ stdenv.mkDerivation ( ) // { meta = - with lib; + let pos = builtins.unsafeGetAttrPos "pname" args; in { homepage = "https://www.qt.io/"; description = "Cross-platform application framework for C++"; - license = with licenses; [ + license = with lib.licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nickcao ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; position = "${pos.file}:${toString pos.line}"; } // (args.meta or { }); diff --git a/pkgs/development/libraries/qtdbusextended/default.nix b/pkgs/development/libraries/qtdbusextended/default.nix index c60a9d727aa7..01c6ea4d984a 100644 --- a/pkgs/development/libraries/qtdbusextended/default.nix +++ b/pkgs/development/libraries/qtdbusextended/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Qt provides several classes for DBus communication"; homepage = "https://github.com/nemomobile/qtdbusextended"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; }; } diff --git a/pkgs/development/libraries/qtfeedback/default.nix b/pkgs/development/libraries/qtfeedback/default.nix index 2a7e4aa5fb37..8eb1e9bdd0eb 100644 --- a/pkgs/development/libraries/qtfeedback/default.nix +++ b/pkgs/development/libraries/qtfeedback/default.nix @@ -42,14 +42,14 @@ mkDerivation { -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \; ''; - meta = with lib; { + meta = { description = "Qt Tactile Feedback"; homepage = "https://github.com/qt/qtfeedback"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only # or gpl2Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dotlambda OPNA2608 ]; diff --git a/pkgs/development/libraries/qtspell/default.nix b/pkgs/development/libraries/qtspell/default.nix index 1691b777692c..141915c5ba2b 100644 --- a/pkgs/development/libraries/qtspell/default.nix +++ b/pkgs/development/libraries/qtspell/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Provides spell-checking to Qt's text widgets, using the enchant spell-checking library"; homepage = "https://github.com/manisandro/qtspell"; changelog = "https://github.com/manisandro/qtspell/blob/version/NEWS"; - maintainers = with maintainers; [ dansbandit ]; - license = licenses.gpl3Only; - platforms = platforms.all; + maintainers = with lib.maintainers; [ dansbandit ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/qtstyleplugins/default.nix b/pkgs/development/libraries/qtstyleplugins/default.nix index b46c7b522018..1af92dedd108 100644 --- a/pkgs/development/libraries/qtstyleplugins/default.nix +++ b/pkgs/development/libraries/qtstyleplugins/default.nix @@ -38,11 +38,11 @@ mkDerivation { ]; buildInputs = [ gtk2 ]; - meta = with lib; { + meta = { description = "Additional style plugins for Qt5, including BB10, GTK, Cleanlooks, Motif, Plastique"; homepage = "http://blog.qt.io/blog/2012/10/30/cleaning-up-styles-in-qt5-and-adding-fusion/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/qtutilities/default.nix b/pkgs/development/libraries/qtutilities/default.nix index 8f3e6c62bd9d..1860001cc6a9 100644 --- a/pkgs/development/libraries/qtutilities/default.nix +++ b/pkgs/development/libraries/qtutilities/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { dontWrapQtApps = true; - meta = with lib; { + meta = { homepage = "https://github.com/Martchus/qtutilities"; description = "Common Qt related C++ classes and routines used by @Martchus' applications such as dialogs, widgets and models Topics"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/development/libraries/qtwebkit-plugins/default.nix b/pkgs/development/libraries/qtwebkit-plugins/default.nix index 88647d938293..a33b4bda9d3c 100644 --- a/pkgs/development/libraries/qtwebkit-plugins/default.nix +++ b/pkgs/development/libraries/qtwebkit-plugins/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { sed -i "s,\$\$\[QT_INSTALL_PLUGINS\],$out/$qtPluginPrefix," src/src.pro ''; - meta = with lib; { + meta = { description = "Spell checking plugin using Hunspell and HTML5 Notifications plugin for QtWebKit"; homepage = "https://github.com/QupZilla/qtwebkit-plugins"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/quazip/default.nix b/pkgs/development/libraries/quazip/default.nix index b12a23bfb93b..a3d1640820fe 100644 --- a/pkgs/development/libraries/quazip/default.nix +++ b/pkgs/development/libraries/quazip/default.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Provides access to ZIP archives from Qt programs"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; homepage = "https://stachenov.github.io/quazip/"; # Migrated from http://quazip.sourceforge.net/ - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/quickflux/default.nix b/pkgs/development/libraries/quickflux/default.nix index 47595751bf6b..8b31f172cc09 100644 --- a/pkgs/development/libraries/quickflux/default.nix +++ b/pkgs/development/libraries/quickflux/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation (finalAttrs: { --replace "\''${_IMPORT_PREFIX}/include" '${placeholder "dev"}/include' ''; - meta = with lib; { + meta = { description = "Flux implementation for QML"; homepage = "https://github.com/benlau/quickflux"; - license = licenses.asl20; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/qwt/6_1.nix b/pkgs/development/libraries/qwt/6_1.nix index e5c5196cbb73..bd706058c383 100644 --- a/pkgs/development/libraries/qwt/6_1.nix +++ b/pkgs/development/libraries/qwt/6_1.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Qt widgets for technical applications"; homepage = "http://qwt.sourceforge.net/"; # LGPL 2.1 plus a few exceptions (more liberal) @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { lgpl21Only qwtException ]; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/development/libraries/qwt/default.nix b/pkgs/development/libraries/qwt/default.nix index 36c82a030550..11ab4425721f 100644 --- a/pkgs/development/libraries/qwt/default.nix +++ b/pkgs/development/libraries/qwt/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Qt widgets for technical applications"; homepage = "http://qwt.sourceforge.net/"; # LGPL 2.1 plus a few exceptions (more liberal) @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { lgpl21Only qwtException ]; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/development/libraries/qxlsx/default.nix b/pkgs/development/libraries/qxlsx/default.nix index 59b734382ab6..ada190623d39 100644 --- a/pkgs/development/libraries/qxlsx/default.nix +++ b/pkgs/development/libraries/qxlsx/default.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Excel file(*.xlsx) reader/writer library using Qt 5 or 6"; homepage = "https://qtexcel.github.io/QXlsx"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/libraries/readline/7.0.nix b/pkgs/development/libraries/readline/7.0.nix index 8973f6087783..e0286b952519 100644 --- a/pkgs/development/libraries/readline/7.0.nix +++ b/pkgs/development/libraries/readline/7.0.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { ] ++ upstreamPatches; - meta = with lib; { + meta = { description = "Library for interactive line editing"; longDescription = '' @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { homepage = "https://savannah.gnu.org/projects/readline/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; branch = "7.0"; }; } diff --git a/pkgs/development/libraries/readline/8.3.nix b/pkgs/development/libraries/readline/8.3.nix index bc157f294ea8..dff9335377f6 100644 --- a/pkgs/development/libraries/readline/8.3.nix +++ b/pkgs/development/libraries/readline/8.3.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation (finalAttrs: { ln -s $out/lib/libreadline.so* $out/lib/libreadline.so ''; - meta = with lib; { + meta = { description = "Library for interactive line editing"; longDescription = '' @@ -112,11 +112,11 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://savannah.gnu.org/projects/readline/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; - maintainers = with maintainers; [ dtzWill ]; + maintainers = with lib.maintainers; [ dtzWill ]; - platforms = platforms.unix ++ platforms.windows; + platforms = lib.platforms.unix ++ lib.platforms.windows; branch = "8.3"; }; }) diff --git a/pkgs/development/libraries/rlottie-qml/default.nix b/pkgs/development/libraries/rlottie-qml/default.nix index 88ed659d4230..542180c6f086 100644 --- a/pkgs/development/libraries/rlottie-qml/default.nix +++ b/pkgs/development/libraries/rlottie-qml/default.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation (finalAttrs: { # Only a QML module dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Library for using rlottie via QML"; homepage = "https://gitlab.com/mymike00/rlottie-qml"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/libraries/science/astronomy/indilib/default.nix b/pkgs/development/libraries/science/astronomy/indilib/default.nix index a9200c388be5..703dff569c8a 100644 --- a/pkgs/development/libraries/science/astronomy/indilib/default.nix +++ b/pkgs/development/libraries/science/astronomy/indilib/default.nix @@ -86,16 +86,16 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://www.indilib.org/"; description = "Implementation of the INDI protocol for POSIX operating systems"; changelog = "https://github.com/indilib/indi/releases/tag/v${finalAttrs.version}"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; mainProgram = "indiserver"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sheepforce returntoreality ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix b/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix index 45ee14aec7ed..3a65855628a6 100644 --- a/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix +++ b/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix @@ -109,17 +109,17 @@ let doInstallCheck = true; meta = - with lib; + { homepage = "https://www.indilib.org/"; description = "Third party drivers for the INDI astronomical software suite"; changelog = "https://github.com/indilib/indi-3rdparty/releases/tag/v${version}"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ sheepforce returntoreality ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; } // meta; } @@ -127,9 +127,9 @@ let libaltaircam = buildIndi3rdParty { pname = "libaltaircam"; - meta = with lib; { - license = licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + meta = { + license = lib.licenses.unfreeRedistributable; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; @@ -142,9 +142,9 @@ let ]; nativeBuildInputs = [ autoPatchelfHook ]; cmakeFlags = [ "-DCONF_DIR=etc/" ]; - meta = with lib; { - license = licenses.mpl20; - platforms = platforms.linux; + meta = { + license = lib.licenses.mpl20; + platforms = lib.platforms.linux; }; }; @@ -163,9 +163,9 @@ let (lib.getLib stdenv.cc.cc) ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { - license = licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ i686 ++ arm; + meta = { + license = lib.licenses.unfreeRedistributable; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ i686 ++ arm; }; }; @@ -173,9 +173,9 @@ let pname = "libastroasis"; buildInputs = [ (lib.getLib stdenv.cc.cc) ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { - license = licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + meta = { + license = lib.licenses.unfreeRedistributable; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; @@ -188,18 +188,18 @@ let libdc1394 ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { - license = licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ i686 ++ arm; + meta = { + license = lib.licenses.unfreeRedistributable; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ i686 ++ arm; }; }; libbressercam = buildIndi3rdParty { pname = "libbressercam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { - license = licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + meta = { + license = lib.licenses.unfreeRedistributable; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; @@ -215,9 +215,9 @@ let libusb1 ]; - meta = with lib; { - license = licenses.bsd2; - platforms = platforms.linux; + meta = { + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; }; @@ -227,9 +227,9 @@ let indilib libusb1 ]; - meta = with lib; { - license = licenses.bsd2; - platforms = platforms.linux; + meta = { + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; }; @@ -240,27 +240,27 @@ let libusb1 ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm ++ i686; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm ++ i686; }; }; libmallincam = buildIndi3rdParty { pname = "libmallincam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; libmeadecam = buildIndi3rdParty { pname = "libmeadecam"; buildInputs = [ libusb1 ]; - meta = with lib; { + meta = { license = lib.licenses.lgpl21Only; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }; @@ -268,36 +268,36 @@ let pname = "libmicam"; buildInputs = [ libusb1 ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm ++ i686; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm ++ i686; }; }; libnncam = buildIndi3rdParty { pname = "libnncam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; libogmacam = buildIndi3rdParty { pname = "libogmacam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; libomegonprocam = buildIndi3rdParty { pname = "libomegonprocam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; @@ -305,8 +305,8 @@ let libpigpiod = buildIndi3rdParty { pname = "libpigpiod"; buildInputs = [ indilib ]; - meta = with lib; { - license = licenses.unlicense; + meta = { + license = lib.licenses.unlicense; broken = true; platforms = [ ]; }; @@ -322,9 +322,9 @@ let buildInputs = [ indilib ]; - meta = with lib; { - license = licenses.lgpl3Plus; - platforms = platforms.linux; + meta = { + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; }; }; @@ -342,9 +342,9 @@ let systemd ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; @@ -371,9 +371,9 @@ let ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; @@ -384,9 +384,9 @@ let indilib ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }; @@ -397,9 +397,9 @@ let libusb1 ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ i686 ++ arm; + platforms = with lib.platforms; x86_64 ++ i686 ++ arm; }; }; @@ -418,18 +418,18 @@ let buildInputs = [ libusb1 ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; libstarshootg = buildIndi3rdParty { pname = "libstarshootg"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; @@ -440,36 +440,36 @@ let libusb1 ]; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm ++ i686; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm ++ i686; }; }; libsvbonycam = buildIndi3rdParty { pname = "libsvbonycam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; libtoupcam = buildIndi3rdParty { pname = "libtoupcam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; libtscam = buildIndi3rdParty { pname = "libtscam"; nativeBuildInputs = [ autoPatchelfHook ]; - meta = with lib; { + meta = { license = lib.licenses.unfreeRedistributable; - platforms = with platforms; x86_64 ++ aarch64 ++ arm; + platforms = with lib.platforms; x86_64 ++ aarch64 ++ arm; }; }; diff --git a/pkgs/development/libraries/science/chemistry/avogadrolibs/default.nix b/pkgs/development/libraries/science/chemistry/avogadrolibs/default.nix index 89dbbc7dd837..632fd2994749 100644 --- a/pkgs/development/libraries/science/chemistry/avogadrolibs/default.nix +++ b/pkgs/development/libraries/science/chemistry/avogadrolibs/default.nix @@ -91,11 +91,11 @@ stdenv.mkDerivation (finalAttrs: { --replace "_IMPORT_PREFIX}/$out" "_IMPORT_PREFIX}/" ''; - meta = with lib; { + meta = { description = "Molecule editor and visualizer"; - maintainers = with maintainers; [ sheepforce ]; + maintainers = with lib.maintainers; [ sheepforce ]; homepage = "https://github.com/OpenChemistry/avogadrolibs"; - platforms = platforms.linux; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; }) diff --git a/pkgs/development/libraries/science/chemistry/molequeue/default.nix b/pkgs/development/libraries/science/chemistry/molequeue/default.nix index 122214040a08..33aa58bd73df 100644 --- a/pkgs/development/libraries/science/chemistry/molequeue/default.nix +++ b/pkgs/development/libraries/science/chemistry/molequeue/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { --replace "$out/" "" ''; - meta = with lib; { + meta = { description = "Desktop integration of high performance computing resources"; mainProgram = "molequeue"; - maintainers = with maintainers; [ sheepforce ]; + maintainers = with lib.maintainers; [ sheepforce ]; homepage = "https://github.com/OpenChemistry/molequeue"; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix b/pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix index 54828c82cf87..5bc33c9d4fe2 100644 --- a/pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix +++ b/pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix @@ -68,15 +68,15 @@ stdenv.mkDerivation rec { export OMP_NUM_THREADS=2 ''; - meta = with lib; { + meta = { description = "Reimplementation of the DFT-D3 program"; mainProgram = "s-dftd3"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only gpl3Only ]; homepage = "https://github.com/dftd3/simple-dftd3"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/libraries/science/chemistry/tblite/default.nix b/pkgs/development/libraries/science/chemistry/tblite/default.nix index 88913f636a23..bd40a12cea03 100644 --- a/pkgs/development/libraries/science/chemistry/tblite/default.nix +++ b/pkgs/development/libraries/science/chemistry/tblite/default.nix @@ -92,15 +92,15 @@ stdenv.mkDerivation rec { export OMP_NUM_THREADS=2 ''; - meta = with lib; { + meta = { description = "Light-weight tight-binding framework"; mainProgram = "tblite"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; homepage = "https://github.com/tblite/tblite"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/libraries/science/math/libtorch/bin.nix b/pkgs/development/libraries/science/math/libtorch/bin.nix index 89f829636315..7430977674dd 100644 --- a/pkgs/development/libraries/science/math/libtorch/bin.nix +++ b/pkgs/development/libraries/science/math/libtorch/bin.nix @@ -101,15 +101,15 @@ stdenv.mkDerivation { inherit cudaSupport; }; - meta = with lib; { + meta = { description = "C++ API of the PyTorch machine learning framework"; homepage = "https://pytorch.org/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # Includes CUDA and Intel MKL, but redistributions of the binary are not limited. # https://docs.nvidia.com/cuda/eula/index.html # https://www.intel.com/content/www/us/en/developer/articles/license/onemkl-license-faq.html - license = licenses.bsd3; - maintainers = with maintainers; [ junjihashimoto ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ junjihashimoto ]; platforms = [ "aarch64-darwin" "x86_64-linux" diff --git a/pkgs/development/libraries/science/math/openblas/default.nix b/pkgs/development/libraries/science/math/openblas/default.nix index b01d34047673..1e89de29f05b 100644 --- a/pkgs/development/libraries/science/math/openblas/default.nix +++ b/pkgs/development/libraries/science/math/openblas/default.nix @@ -344,9 +344,9 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Basic Linear Algebra Subprograms"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/OpenMathLib/OpenBLAS"; platforms = attrNames configs; - maintainers = with maintainers; [ ttuegel ]; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/development/libraries/science/math/suitesparse/default.nix b/pkgs/development/libraries/science/math/suitesparse/default.nix index bf3eeab4682e..d9ae4221d718 100644 --- a/pkgs/development/libraries/science/math/suitesparse/default.nix +++ b/pkgs/development/libraries/science/math/suitesparse/default.nix @@ -107,15 +107,15 @@ effectiveStdenv.mkDerivation rec { "library" ]; - meta = with lib; { + meta = { homepage = "http://faculty.cse.tamu.edu/davis/suitesparse.html"; description = "Suite of sparse matrix algorithms"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ ttuegel ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ ttuegel ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/libraries/signond/default.nix b/pkgs/development/libraries/signond/default.nix index 2f6db322328b..5339947dce60 100644 --- a/pkgs/development/libraries/signond/default.nix +++ b/pkgs/development/libraries/signond/default.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation { --replace "/etc" "@out@/etc" ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/accounts-sso/signond"; description = "Signon Daemon for Qt"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/silgraphite/graphite2.nix b/pkgs/development/libraries/silgraphite/graphite2.nix index 768e4a0ec359..b5ed5a969db7 100644 --- a/pkgs/development/libraries/silgraphite/graphite2.nix +++ b/pkgs/development/libraries/silgraphite/graphite2.nix @@ -97,13 +97,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Advanced font engine"; homepage = "https://graphite.sil.org/"; - license = licenses.lgpl21; - maintainers = [ maintainers.raskin ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.raskin ]; pkgConfigModules = [ "graphite2" ]; mainProgram = "gr2fonttest"; - platforms = platforms.unix ++ platforms.windows; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; }) diff --git a/pkgs/development/libraries/simpleitk/default.nix b/pkgs/development/libraries/simpleitk/default.nix index 739dfbad4f04..5c5b607c92e8 100644 --- a/pkgs/development/libraries/simpleitk/default.nix +++ b/pkgs/development/libraries/simpleitk/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { "-DSimpleITK_USE_ELASTIX=ON" ]; - meta = with lib; { + meta = { homepage = "https://www.simpleitk.org"; description = "Simplified interface to ITK"; changelog = "https://github.com/SimpleITK/SimpleITK/releases/tag/v${finalAttrs.version}"; - maintainers = with maintainers; [ bcdarwin ]; - platforms = platforms.linux; - license = licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; }; }) diff --git a/pkgs/development/libraries/speex/default.nix b/pkgs/development/libraries/speex/default.nix index 3803fd0b7d2a..c5aeae255f15 100644 --- a/pkgs/development/libraries/speex/default.nix +++ b/pkgs/development/libraries/speex/default.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { "--with-fft=gpl-fftw3" ]; - meta = with lib; { + meta = { homepage = "https://www.speex.org/"; description = "Open Source/Free Software patent-free audio compression format designed for speech"; - license = licenses.bsd3; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; } diff --git a/pkgs/development/libraries/speexdsp/default.nix b/pkgs/development/libraries/speexdsp/default.nix index 58f049a233fa..7a91105ec476 100644 --- a/pkgs/development/libraries/speexdsp/default.nix +++ b/pkgs/development/libraries/speexdsp/default.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { lib.optionals withFftw3 [ "--with-fft=gpl-fftw3" ] ++ lib.optional stdenv.hostPlatform.isAarch64 "--disable-neon"; - meta = with lib; { + meta = { homepage = "https://www.speex.org/"; description = "Open Source/Free Software patent-free audio compression format designed for speech"; - license = licenses.bsd3; - platforms = platforms.unix ++ platforms.windows; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix ++ lib.platforms.windows; }; } diff --git a/pkgs/development/libraries/spglib/default.nix b/pkgs/development/libraries/spglib/default.nix index 74ffba0e6256..529e493ce82a 100644 --- a/pkgs/development/libraries/spglib/default.nix +++ b/pkgs/development/libraries/spglib/default.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "C library for finding and handling crystal symmetries"; homepage = "https://spglib.github.io/spglib/"; changelog = "https://github.com/spglib/spglib/raw/v${version}/ChangeLog"; - license = licenses.bsd3; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index 5820c50b4497..50528aa4e823 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -144,15 +144,15 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { changelog = "https://www.sqlite.org/releaselog/${lib.replaceStrings [ "." ] [ "_" ] version}.html"; description = "Self-contained, serverless, zero-configuration, transactional SQL database engine"; downloadPage = "https://sqlite.org/download.html"; homepage = "https://www.sqlite.org/"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; mainProgram = "sqlite3"; - maintainers = with maintainers; [ np ]; - platforms = platforms.unix ++ platforms.windows; + maintainers = with lib.maintainers; [ np ]; + platforms = lib.platforms.unix ++ lib.platforms.windows; pkgConfigModules = [ "sqlite3" ]; }; } diff --git a/pkgs/development/libraries/sqlite/sqlar.nix b/pkgs/development/libraries/sqlite/sqlar.nix index 943b8d44527b..62274cc03916 100644 --- a/pkgs/development/libraries/sqlite/sqlar.nix +++ b/pkgs/development/libraries/sqlite/sqlar.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { install -D -t $out/bin sqlarfs ''; - meta = with lib; { + meta = { homepage = "https://sqlite.org/sqlar"; description = "SQLite Archive utilities"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/development/libraries/sqlite/tools.nix b/pkgs/development/libraries/sqlite/tools.nix index f4ddd98c692b..3002199f250b 100644 --- a/pkgs/development/libraries/sqlite/tools.nix +++ b/pkgs/development/libraries/sqlite/tools.nix @@ -36,12 +36,12 @@ let installPhase = "install -Dt $out/bin ${makeTarget}"; - meta = with lib; { + meta = { inherit description homepage mainProgram; downloadPage = "http://sqlite.org/download.html"; - license = licenses.publicDomain; - maintainers = with maintainers; [ johnazoidberg ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ johnazoidberg ]; + platforms = lib.platforms.unix; }; }; in diff --git a/pkgs/development/libraries/structuresynth/default.nix b/pkgs/development/libraries/structuresynth/default.nix index 362aaa7e25c9..23b44fb28d19 100644 --- a/pkgs/development/libraries/structuresynth/default.nix +++ b/pkgs/development/libraries/structuresynth/default.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation (finalAttrs: { wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Generate 3D structures by specifying a design grammar"; homepage = "https://github.com/alemuntoni/StructureSynth"; - license = licenses.lgpl21; - maintainers = with maintainers; [ nim65s ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ nim65s ]; }; }) diff --git a/pkgs/development/libraries/tclap/1.2.nix b/pkgs/development/libraries/tclap/1.2.nix index a586e6909193..7189e9f525c4 100644 --- a/pkgs/development/libraries/tclap/1.2.nix +++ b/pkgs/development/libraries/tclap/1.2.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-u2SfdtrjXo0Ny6S1Ks/U4GLXh+aoG0P3pLASdRUxZaY="; }; - meta = with lib; { + meta = { homepage = "https://tclap.sourceforge.net/"; description = "Templatized C++ Command Line Parser Library"; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/libraries/tclap/1.4.nix b/pkgs/development/libraries/tclap/1.4.nix index eb3a676807fe..d15356041523 100644 --- a/pkgs/development/libraries/tclap/1.4.nix +++ b/pkgs/development/libraries/tclap/1.4.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { doCheck = true; - meta = with lib; { + meta = { description = "Templatized C++ Command Line Parser Library (v1.4)"; homepage = "https://tclap.sourceforge.net/"; - license = licenses.mit; - teams = [ teams.deshaw ]; - platforms = platforms.all; + license = lib.licenses.mit; + teams = [ lib.teams.deshaw ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/telepathy/qt/default.nix b/pkgs/development/libraries/telepathy/qt/default.nix index d8468027985c..dd7af08c6c5c 100644 --- a/pkgs/development/libraries/telepathy/qt/default.nix +++ b/pkgs/development/libraries/telepathy/qt/default.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { doCheck = false; # giving up for now - meta = with lib; { + meta = { description = "Telepathy Qt bindings"; homepage = "https://telepathy.freedesktop.org/components/telepathy-qt/"; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/tk/generic.nix b/pkgs/development/libraries/tk/generic.nix index 3fa3bf1285e8..2b9b105f3e41 100644 --- a/pkgs/development/libraries/tk/generic.nix +++ b/pkgs/development/libraries/tk/generic.nix @@ -95,11 +95,11 @@ tcl.mkTclDerivation { libdir = "lib/${libPrefix}"; }; - meta = with lib; { + meta = { description = "Widget toolkit that provides a library of basic elements for building a GUI in many different programming languages"; homepage = "https://www.tcl.tk/"; - license = licenses.tcltk; - platforms = platforms.all; + license = lib.licenses.tcltk; + platforms = lib.platforms.all; maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin && lib.elem (lib.versions.majorMinor tcl.version) [ "8.5" ]; }; diff --git a/pkgs/development/libraries/tpm2-tss/default.nix b/pkgs/development/libraries/tpm2-tss/default.nix index 87a13c7fc75b..41b61f053528 100644 --- a/pkgs/development/libraries/tpm2-tss/default.nix +++ b/pkgs/development/libraries/tpm2-tss/default.nix @@ -166,12 +166,12 @@ stdenv.mkDerivation (finalAttrs: { # before we could run tests, so we make turn checkPhase into installCheckPhase installCheckTarget = "check"; - meta = with lib; { + meta = { description = "OSS implementation of the TCG TPM2 Software Stack (TSS2)"; homepage = "https://github.com/tpm2-software/tpm2-tss"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ baloo scottstephens ]; diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index fbef1b9ce460..bfb7477d6323 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -94,11 +94,11 @@ driver = "lib/libmaodbc${stdenv.hostPlatform.extensions.sharedLibrary}"; }; - meta = with lib; { + meta = { description = "MariaDB ODBC database driver"; homepage = "https://downloads.mariadb.org/connector-odbc/"; - license = licenses.gpl2; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }; @@ -137,12 +137,12 @@ driver = "lib/libsqlite3odbc.so"; }; - meta = with lib; { + meta = { description = "ODBC driver for SQLite"; homepage = "http://www.ch-werner.de/sqliteodbc"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ vlstill ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ vlstill ]; }; }; @@ -192,14 +192,14 @@ driver = "lib/libmsodbcsql-${versionMajor}.${versionMinor}.so.${versionAdditional}"; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "ODBC Driver ${versionMajor} for SQL Server"; homepage = "https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-2017"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ spencerjanssen ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ spencerjanssen ]; }; }; @@ -292,13 +292,13 @@ }"; }; - meta = with lib; { + meta = { description = finalAttrs.passthru.fancyName; homepage = "https://learn.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver16"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - platforms = platforms.unix; - license = licenses.unfree; - maintainers = with maintainers; [ SamirTalwar ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = lib.platforms.unix; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ SamirTalwar ]; }; }); @@ -337,14 +337,14 @@ driver = "lib/libamazonredshiftodbc64.so"; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Amazon Redshift ODBC driver"; homepage = "https://docs.aws.amazon.com/redshift/latest/mgmt/configure-odbc-connection.html"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ sir4ur0n ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sir4ur0n ]; }; }; } diff --git a/pkgs/development/libraries/unqlite/default.nix b/pkgs/development/libraries/unqlite/default.nix index ae1261f807ec..a9921b63207e 100644 --- a/pkgs/development/libraries/unqlite/default.nix +++ b/pkgs/development/libraries/unqlite/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 3.0.0)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { homepage = "https://unqlite.org/"; description = "Self-contained, serverless, zero-conf, transactional NoSQL DB library"; longDescription = '' @@ -42,6 +42,6 @@ stdenv.mkDerivation rec { big-endian and little-endian architectures. ''; maintainers = [ ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/libraries/ustream-ssl/default.nix b/pkgs/development/libraries/ustream-ssl/default.nix index 28d42d6fd27b..3f24ddce7222 100644 --- a/pkgs/development/libraries/ustream-ssl/default.nix +++ b/pkgs/development/libraries/ustream-ssl/default.nix @@ -41,14 +41,14 @@ stdenv.mkDerivation { inherit ssl_implementation; }; - meta = with lib; { + meta = { description = "ustream SSL wrapper"; homepage = "https://git.openwrt.org/?p=project/ustream-ssl.git;a=summary"; - license = licenses.isc; - maintainers = with maintainers; [ + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fpletz mkg20001 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/valhalla/default.nix b/pkgs/development/libraries/valhalla/default.nix index ec9360729fcd..16132a8d6d74 100644 --- a/pkgs/development/libraries/valhalla/default.nix +++ b/pkgs/development/libraries/valhalla/default.nix @@ -78,13 +78,13 @@ stdenv.mkDerivation (finalAttrs: { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { changelog = "https://github.com/valhalla/valhalla/blob/${finalAttrs.src.rev}/CHANGELOG.md"; description = "Open Source Routing Engine for OpenStreetMap"; homepage = "https://valhalla.readthedocs.io/"; - license = licenses.mit; - maintainers = [ maintainers.Thra11 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.Thra11 ]; pkgConfigModules = [ "libvalhalla" ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/libraries/vid-stab/default.nix b/pkgs/development/libraries/vid-stab/default.nix index 66550f31c4eb..f6cef4c4a7d1 100644 --- a/pkgs/development/libraries/vid-stab/default.nix +++ b/pkgs/development/libraries/vid-stab/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { 'cmake_minimum_required (VERSION 3.10)' ''; - meta = with lib; { + meta = { description = "Video stabilization library"; homepage = "http://public.hronopik.de/vid.stab/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ codyopel ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ codyopel ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix index 90d7384bb5bc..d01307962b0b 100644 --- a/pkgs/development/libraries/wayland/default.nix +++ b/pkgs/development/libraries/wayland/default.nix @@ -94,7 +94,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Core Wayland window system code and protocol"; longDescription = '' Wayland is a project to define a protocol for a compositor to talk to its @@ -105,11 +105,11 @@ stdenv.mkDerivation (finalAttrs: { rendering). ''; homepage = "https://wayland.freedesktop.org/"; - license = licenses.mit; # Expat version - platforms = platforms.unix; + license = lib.licenses.mit; # Expat version + platforms = lib.platforms.unix; # requires more work: https://gitlab.freedesktop.org/wayland/wayland/-/merge_requests/481 badPlatforms = lib.platforms.darwin; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ codyopel qyliss ]; diff --git a/pkgs/development/libraries/wayland/scanner.nix b/pkgs/development/libraries/wayland/scanner.nix index 844092c5eab0..04faf62ab1c5 100644 --- a/pkgs/development/libraries/wayland/scanner.nix +++ b/pkgs/development/libraries/wayland/scanner.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { inherit (wayland.meta) homepage license maintainers; mainProgram = "wayland-scanner"; description = "C code generator for Wayland protocol XML files"; - platforms = platforms.unix; + platforms = lib.platforms.unix; pkgConfigModules = [ "wayland-scanner" ]; }; }) diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index 337162f1e279..4415907483df 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -260,11 +260,11 @@ clangStdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Web content rendering engine, GTK port"; mainProgram = "WebKitWebDriver"; homepage = "https://webkitgtk.org/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; pkgConfigModules = if lib.versionAtLeast abiVersion "6.0" then [ @@ -278,8 +278,8 @@ clangStdenv.mkDerivation (finalAttrs: { "webkit2gtk-${abiVersion}" "webkit2gtk-web-extension-${abiVersion}" ]; - platforms = platforms.linux ++ platforms.darwin; - teams = [ teams.gnome ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + teams = [ lib.teams.gnome ]; broken = clangStdenv.hostPlatform.isDarwin; }; }) diff --git a/pkgs/development/libraries/wlroots/protocols.nix b/pkgs/development/libraries/wlroots/protocols.nix index 898513a9d4f1..b3ec30a0618f 100644 --- a/pkgs/development/libraries/wlroots/protocols.nix +++ b/pkgs/development/libraries/wlroots/protocols.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { "PREFIX=" ]; - meta = with lib; { + meta = { description = "Wayland roots protocol extensions"; longDescription = '' wlr-protocols contains Wayland protocols that add functionality not @@ -44,8 +44,8 @@ stdenv.mkDerivation { or some other protocol in wayland-protocols. ''; homepage = "https://gitlab.freedesktop.org/wlroots/wlr-protocols"; - license = licenses.mit; # See file headers - platforms = platforms.linux; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.mit; # See file headers + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/development/libraries/wt/default.nix b/pkgs/development/libraries/wt/default.nix index 059cc835ca72..165a36622948 100644 --- a/pkgs/development/libraries/wt/default.nix +++ b/pkgs/development/libraries/wt/default.nix @@ -66,12 +66,12 @@ let ] ++ lib.optional (libmysqlclient != null) "-DMYSQL_PREFIX=${libmysqlclient}"; - meta = with lib; { + meta = { homepage = "https://www.webtoolkit.eu/wt"; description = "C++ library for developing web applications"; - platforms = platforms.linux; - license = licenses.gpl2; - maintainers = with maintainers; [ juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ juliendehos ]; }; }; in diff --git a/pkgs/development/libraries/xapian/default.nix b/pkgs/development/libraries/xapian/default.nix index a806db202fa3..cac050463469 100644 --- a/pkgs/development/libraries/xapian/default.nix +++ b/pkgs/development/libraries/xapian/default.nix @@ -62,13 +62,13 @@ let python-xapian = python3.pkgs.xapian; }; - meta = with lib; { + meta = { description = "Search engine library"; homepage = "https://xapian.org/"; changelog = "https://xapian.org/docs/xapian-core-${version}/NEWS"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.unix; }; }; in diff --git a/pkgs/development/libraries/xapian/tools/omega/default.nix b/pkgs/development/libraries/xapian/tools/omega/default.nix index 7c0c26ed90ba..8fb02bee902b 100644 --- a/pkgs/development/libraries/xapian/tools/omega/default.nix +++ b/pkgs/development/libraries/xapian/tools/omega/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { cp -r templates $out/share/omega ''; - meta = with lib; { + meta = { description = "Indexer and CGI search front-end built on Xapian library"; homepage = "https://xapian.org/"; changelog = "https://xapian.org/docs/xapian-omega-${version}/NEWS"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix index a13169f25da5..d5a2c74d1310 100644 --- a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix +++ b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { sha256 = "127zfmihd8nqlj8jjaja06xb84xdgl263w0av1xnprx05mkbkcyc"; }; - meta = with lib; { + meta = { description = "XCB cursor library (libxcursor port)"; homepage = "https://cgit.freedesktop.org/xcb/util-cursor"; - license = licenses.mit; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; outputs = [ diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 66c782e212e0..ce66108b70a6 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -165,11 +165,11 @@ stdenv.mkDerivation (finalAttrs: { inherit minizip; }; - meta = with lib; { + meta = { homepage = "https://zlib.net"; description = "Lossless data-compression library"; - license = licenses.zlib; - platforms = platforms.all; + license = lib.licenses.zlib; + platforms = lib.platforms.all; pkgConfigModules = [ "zlib" ]; }; }) diff --git a/pkgs/development/lisp-modules/asdf/2.26.nix b/pkgs/development/lisp-modules/asdf/2.26.nix index f32376e594bf..dc84e6a1bcd3 100644 --- a/pkgs/development/lisp-modules/asdf/2.26.nix +++ b/pkgs/development/lisp-modules/asdf/2.26.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { cp -r doc/* "$out"/share/doc/asdf/ ''; - meta = with lib; { + meta = { description = "Standard software-system definition library for Common Lisp"; homepage = "https://asdf.common-lisp.dev/"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/lisp-modules/asdf/3.1.nix b/pkgs/development/lisp-modules/asdf/3.1.nix index 03943282c408..529f497092ed 100644 --- a/pkgs/development/lisp-modules/asdf/3.1.nix +++ b/pkgs/development/lisp-modules/asdf/3.1.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { ln -s "$out"/lib/common-lisp/{asdf/uiop,uiop} ''; - meta = with lib; { + meta = { description = "Standard software-system definition library for Common Lisp"; homepage = "https://asdf.common-lisp.dev/"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/lisp-modules/asdf/3.3.nix b/pkgs/development/lisp-modules/asdf/3.3.nix index 1ec00123ecd3..61fefb4256f8 100644 --- a/pkgs/development/lisp-modules/asdf/3.3.nix +++ b/pkgs/development/lisp-modules/asdf/3.3.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { ln -s "$out"/lib/common-lisp/{asdf/uiop,uiop} ''; - meta = with lib; { + meta = { description = "Standard software-system definition library for Common Lisp"; homepage = "https://asdf.common-lisp.dev/"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/lisp-modules/asdf/default.nix b/pkgs/development/lisp-modules/asdf/default.nix index 583b087cde20..3c9fac48292a 100644 --- a/pkgs/development/lisp-modules/asdf/default.nix +++ b/pkgs/development/lisp-modules/asdf/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { ln -s "$out"/lib/common-lisp/{asdf/uiop,uiop} ''; - meta = with lib; { + meta = { description = "Standard software-system definition library for Common Lisp"; homepage = "https://asdf.common-lisp.dev/"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/misc/msp430/gcc-support.nix b/pkgs/development/misc/msp430/gcc-support.nix index 1d682d2f8c05..774aa4fb800d 100644 --- a/pkgs/development/misc/msp430/gcc-support.nix +++ b/pkgs/development/misc/msp430/gcc-support.nix @@ -24,13 +24,13 @@ stdenvNoCC.mkDerivation rec { touch $out/lib/lib ''; - meta = with lib; { + meta = { description = '' Development headers and linker scripts for TI MSP430 microcontrollers ''; homepage = "https://www.ti.com/tool/msp430-gcc-opensource"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "msp430-none" ]; - maintainers = with maintainers; [ aerialx ]; + maintainers = with lib.maintainers; [ aerialx ]; }; } diff --git a/pkgs/development/misc/msp430/mspdebug.nix b/pkgs/development/misc/msp430/mspdebug.nix index c9ac04f9e7a5..00aaa9b70511 100644 --- a/pkgs/development/misc/msp430/mspdebug.nix +++ b/pkgs/development/misc/msp430/mspdebug.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { makeFlags = [ "UNAME_S=$(unameS)" ] ++ lib.optional (!enableReadline) "WITHOUT_READLINE=1"; unameS = lib.optionalString stdenv.hostPlatform.isDarwin "Darwin"; - meta = with lib; { + meta = { description = "Free programmer, debugger, and gdb proxy for MSP430 MCUs"; mainProgram = "mspdebug"; homepage = "https://dlbeer.co.nz/mspdebug/"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = with maintainers; [ aerialx ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ aerialx ]; }; } diff --git a/pkgs/development/misc/msp430/mspds/binary.nix b/pkgs/development/misc/msp430/mspds/binary.nix index 6f83335e9c7b..36f5413e3b6b 100644 --- a/pkgs/development/misc/msp430/mspds/binary.nix +++ b/pkgs/development/misc/msp430/mspds/binary.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { install -Dm0644 -t $out/include Inc/*.h ''; - meta = with lib; { + meta = { description = "Unfree binary release of the TI MSP430 FET debug driver"; homepage = "https://www.ti.com/tool/MSPDS"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ aerialx ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ aerialx ]; }; } diff --git a/pkgs/development/misc/msp430/mspds/default.nix b/pkgs/development/misc/msp430/mspds/default.nix index fef2e5a64dec..21873f12386c 100644 --- a/pkgs/development/misc/msp430/mspds/default.nix +++ b/pkgs/development/misc/msp430/mspds/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation { ] ++ lib.optional stdenv.hostPlatform.isLinux libusb1; - meta = with lib; { + meta = { description = "TI MSP430 FET debug driver"; homepage = "https://www.ti.com/tool/MSPDS"; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ aerialx ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ aerialx ]; }; } diff --git a/pkgs/development/misc/resholve/deps.nix b/pkgs/development/misc/resholve/deps.nix index a37182fca6e1..9b161bd4c7c4 100644 --- a/pkgs/development/misc/resholve/deps.nix +++ b/pkgs/development/misc/resholve/deps.nix @@ -35,10 +35,10 @@ rec { pythonImportsCheck = [ "configargparse" ]; - meta = with lib; { + meta = { description = "Drop-in replacement for argparse"; homepage = "https://github.com/bw2/ConfigArgParse"; - license = licenses.mit; + license = lib.licenses.mit; }; }; six = python27.pkgs.buildPythonPackage rec { @@ -69,10 +69,10 @@ rec { doCheck = false; - meta = with lib; { + meta = { description = "Backport of typing module to Python versions older than 3.5"; homepage = "https://docs.python.org/3/library/typing.html"; - license = licenses.psfl; + license = lib.licenses.psfl; }; }; } diff --git a/pkgs/development/misc/resholve/resholve.nix b/pkgs/development/misc/resholve/resholve.nix index 840293b32640..eccb1c7cf7d3 100644 --- a/pkgs/development/misc/resholve/resholve.nix +++ b/pkgs/development/misc/resholve/resholve.nix @@ -78,13 +78,13 @@ python27.pkgs.buildPythonApplication { }; }; - meta = with lib; { + meta = { description = "Resolve external shell-script dependencies"; homepage = "https://github.com/abathur/resholve"; changelog = "https://github.com/abathur/resholve/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ abathur ]; - platforms = platforms.all; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ abathur ]; + platforms = lib.platforms.all; knownVulnerabilities = [ '' resholve depends on python27 (EOL). While it's safe to diff --git a/pkgs/development/mobile/webos/cmake-modules.nix b/pkgs/development/mobile/webos/cmake-modules.nix index a982ae8b7b33..22953516a172 100644 --- a/pkgs/development/mobile/webos/cmake-modules.nix +++ b/pkgs/development/mobile/webos/cmake-modules.nix @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.7)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "CMake modules needed to build Open WebOS components"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/mobile/webos/novacom.nix b/pkgs/development/mobile/webos/novacom.nix index 6ce1bfdefb88..6cde96f7895f 100644 --- a/pkgs/development/mobile/webos/novacom.nix +++ b/pkgs/development/mobile/webos/novacom.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { substituteInPlace $out/bin/novaterm --replace "exec novacom" "exec $out/bin/novacom" ''; - meta = with lib; { + meta = { description = "Utility for communicating with WebOS devices"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/mobile/webos/novacomd.nix b/pkgs/development/mobile/webos/novacomd.nix index 65a54306d41d..b36b8b57426d 100644 --- a/pkgs/development/mobile/webos/novacomd.nix +++ b/pkgs/development/mobile/webos/novacomd.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { --replace-fail "cmake_minimum_required(VERSION 2.8.7)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Daemon for communicating with WebOS devices"; mainProgram = "novacomd"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/ocaml-modules/afl-persistent/default.nix b/pkgs/development/ocaml-modules/afl-persistent/default.nix index b7b8d6d80622..06aabcf41445 100644 --- a/pkgs/development/ocaml-modules/afl-persistent/default.nix +++ b/pkgs/development/ocaml-modules/afl-persistent/default.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { doCheck = true; checkPhase = "./_build/test && ./_build/test2"; - meta = with lib; { + meta = { homepage = "https://github.com/stedolan/ocaml-afl-persistent"; description = "Persistent-mode afl-fuzz for ocaml"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix index f2cd3187e90f..305bb6a153a3 100644 --- a/pkgs/development/ocaml-modules/alcotest/default.nix +++ b/pkgs/development/ocaml-modules/alcotest/default.nix @@ -33,10 +33,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/alcotest"; description = "Lightweight and colourful test framework"; - license = licenses.isc; - maintainers = [ maintainers.ericbmerritt ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.ericbmerritt ]; }; } diff --git a/pkgs/development/ocaml-modules/alsa/default.nix b/pkgs/development/ocaml-modules/alsa/default.nix index 15b60d288221..bc4c994dc525 100644 --- a/pkgs/development/ocaml-modules/alsa/default.nix +++ b/pkgs/development/ocaml-modules/alsa/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ alsa-lib ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-alsa"; description = "OCaml interface for libasound2"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/ansiterminal/default.nix b/pkgs/development/ocaml-modules/ansiterminal/default.nix index d8ad58b6c45d..ecbb4c9d7b2e 100644 --- a/pkgs/development/ocaml-modules/ansiterminal/default.nix +++ b/pkgs/development/ocaml-modules/ansiterminal/default.nix @@ -19,7 +19,7 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Module allowing to use the colors and cursor movements on ANSI terminals"; longDescription = '' ANSITerminal is a module allowing to use the colors and cursor @@ -27,7 +27,7 @@ buildDunePackage rec { this part is currently work in progress). ''; homepage = "https://github.com/Chris00/ANSITerminal"; - license = licenses.lgpl3; - maintainers = [ maintainers.jirkamarsik ]; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/ao/default.nix b/pkgs/development/ocaml-modules/ao/default.nix index 06d96fddeb82..77cbcf271744 100644 --- a/pkgs/development/ocaml-modules/ao/default.nix +++ b/pkgs/development/ocaml-modules/ao/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ libao ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-ao"; description = "OCaml bindings for libao"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/arp/default.nix b/pkgs/development/ocaml-modules/arp/default.nix index e1585623147e..c5487ab6e66b 100644 --- a/pkgs/development/ocaml-modules/arp/default.nix +++ b/pkgs/development/ocaml-modules/arp/default.nix @@ -46,10 +46,10 @@ buildDunePackage rec { mirage-vnetif ]; - meta = with lib; { + meta = { description = "Address Resolution Protocol purely in OCaml"; homepage = "https://github.com/mirage/arp"; - license = licenses.isc; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/atd/default.nix b/pkgs/development/ocaml-modules/atd/default.nix index abb27e525e22..581390de33e3 100644 --- a/pkgs/development/ocaml-modules/atd/default.nix +++ b/pkgs/development/ocaml-modules/atd/default.nix @@ -28,11 +28,11 @@ buildDunePackage { smoke-test = nixosTests.atd; }; - meta = with lib; { + meta = { description = "Syntax for cross-language type definitions"; homepage = "https://github.com/mjambon/atd"; - license = licenses.mit; - maintainers = with maintainers; [ aij ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aij ]; mainProgram = "atdcat"; }; } diff --git a/pkgs/development/ocaml-modules/augeas/default.nix b/pkgs/development/ocaml-modules/augeas/default.nix index efa3d94ac956..0f089655829c 100644 --- a/pkgs/development/ocaml-modules/augeas/default.nix +++ b/pkgs/development/ocaml-modules/augeas/default.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation { createFindlibDestdir = true; - meta = with lib; { + meta = { homepage = "https://people.redhat.com/~rjones/augeas/"; description = "OCaml bindings for Augeas"; - license = with licenses; lgpl21Plus; - platforms = with platforms; linux; + license = with lib.licenses; lgpl21Plus; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/development/ocaml-modules/awa/default.nix b/pkgs/development/ocaml-modules/awa/default.nix index 236661b518a0..12380239dd06 100644 --- a/pkgs/development/ocaml-modules/awa/default.nix +++ b/pkgs/development/ocaml-modules/awa/default.nix @@ -50,11 +50,11 @@ buildDunePackage rec { mirage-mtime ]; - meta = with lib; { + meta = { description = "SSH implementation in OCaml"; homepage = "https://github.com/mirage/awa-ssh"; changelog = "https://github.com/mirage/awa-ssh/raw/v${version}/CHANGES.md"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/b0/default.nix b/pkgs/development/ocaml-modules/b0/default.nix index f18002ccfc13..090eeb488077 100644 --- a/pkgs/development/ocaml-modules/b0/default.nix +++ b/pkgs/development/ocaml-modules/b0/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "Software construction and deployment kit"; longDescription = '' WARNING this package is unstable and work in progress, do not depend on @@ -52,8 +52,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://erratique.ch/software/b0"; inherit (ocaml.meta) platforms; - license = licenses.isc; - maintainers = [ maintainers.Julow ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.Julow ]; broken = !(lib.versionAtLeast ocaml.version "4.08"); }; } diff --git a/pkgs/development/ocaml-modules/bap/default.nix b/pkgs/development/ocaml-modules/bap/default.nix index 57fc0f208589..2b9672a633e9 100644 --- a/pkgs/development/ocaml-modules/bap/default.nix +++ b/pkgs/development/ocaml-modules/bap/default.nix @@ -138,11 +138,11 @@ stdenv.mkDerivation rec { "--with-llvm-config=${llvm.dev}/bin/llvm-config" ]; - meta = with lib; { + meta = { description = "Platform for binary analysis. It is written in OCaml, but can be used from other languages"; homepage = "https://github.com/BinaryAnalysisPlatform/bap/"; - license = licenses.mit; - maintainers = [ maintainers.maurer ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.maurer ]; mainProgram = "bap"; broken = lib.versionOlder ocaml.version "4.08"; }; diff --git a/pkgs/development/ocaml-modules/bigarray-overlap/default.nix b/pkgs/development/ocaml-modules/bigarray-overlap/default.nix index 531bbfc0cdb3..a1610e3b6e04 100644 --- a/pkgs/development/ocaml-modules/bigarray-overlap/default.nix +++ b/pkgs/development/ocaml-modules/bigarray-overlap/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { checkInputs = [ alcotest ]; doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/dinosaure/overlap"; description = "Minimal library to know that 2 bigarray share physically the same memory or not"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/bigstring/default.nix b/pkgs/development/ocaml-modules/bigstring/default.nix index 4023d5db5c4f..6f976aeb544b 100644 --- a/pkgs/development/ocaml-modules/bigstring/default.nix +++ b/pkgs/development/ocaml-modules/bigstring/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { # Circular dependency with bigstring-unix doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/c-cube/ocaml-bigstring"; description = "Bigstring built on top of bigarrays, and convenient functions"; - license = licenses.bsd2; - maintainers = [ maintainers.alexfmpe ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.alexfmpe ]; }; } diff --git a/pkgs/development/ocaml-modules/bindlib/default.nix b/pkgs/development/ocaml-modules/bindlib/default.nix index 49121cb39746..5adbc9e31070 100644 --- a/pkgs/development/ocaml-modules/bindlib/default.nix +++ b/pkgs/development/ocaml-modules/bindlib/default.nix @@ -25,11 +25,11 @@ buildDunePackage rec { ]; doCheck = true; - meta = with lib; { + meta = { homepage = "https://rlepigre.github.io/ocaml-bindlib"; description = "Efficient binder representation in Ocaml"; - license = licenses.gpl3; + license = lib.licenses.gpl3; changelog = "https://github.com/rlepigre/ocaml-bindlib/raw/${version}/CHANGELOG.md"; - maintainers = with maintainers; [ bcdarwin ]; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/ocaml-modules/bitstring/default.nix b/pkgs/development/ocaml-modules/bitstring/default.nix index 12f1232b71a5..106edfd31864 100644 --- a/pkgs/development/ocaml-modules/bitstring/default.nix +++ b/pkgs/development/ocaml-modules/bitstring/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ stdlib-shims ]; - meta = with lib; { + meta = { description = "This library adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml"; homepage = "https://github.com/xguerin/bitstring"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.maurer ]; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.maurer ]; }; } diff --git a/pkgs/development/ocaml-modules/bjack/default.nix b/pkgs/development/ocaml-modules/bjack/default.nix index 208671eb58ef..58a3a9dc1989 100644 --- a/pkgs/development/ocaml-modules/bjack/default.nix +++ b/pkgs/development/ocaml-modules/bjack/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { libjack2 ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-bjack"; description = "Blocking API for the jack audio connection kit"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/bz2/default.nix b/pkgs/development/ocaml-modules/bz2/default.nix index 3d096571e86e..67689cac1a2e 100644 --- a/pkgs/development/ocaml-modules/bz2/default.nix +++ b/pkgs/development/ocaml-modules/bz2/default.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { preInstall = "mkdir -p $OCAMLFIND_DESTDIR/stublibs"; - meta = with lib; { + meta = { description = "OCaml bindings for the libbz2 (AKA, bzip2) (de)compression library"; downloadPage = "https://gitlab.com/irill/camlbz2"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; broken = lib.versionOlder ocaml.version "4.02" || lib.versionAtLeast ocaml.version "5.0"; maintainers = [ ]; }; diff --git a/pkgs/development/ocaml-modules/ca-certs-nss/default.nix b/pkgs/development/ocaml-modules/ca-certs-nss/default.nix index f1490b40b85a..1b30fcfef973 100644 --- a/pkgs/development/ocaml-modules/ca-certs-nss/default.nix +++ b/pkgs/development/ocaml-modules/ca-certs-nss/default.nix @@ -39,11 +39,11 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = with lib; { + meta = { description = "X.509 trust anchors extracted from Mozilla's NSS"; homepage = "https://github.com/mirage/ca-certs-nss"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; mainProgram = "extract-from-certdata"; }; } diff --git a/pkgs/development/ocaml-modules/ca-certs/default.nix b/pkgs/development/ocaml-modules/ca-certs/default.nix index 5d967c80c2dc..354f92a4febf 100644 --- a/pkgs/development/ocaml-modules/ca-certs/default.nix +++ b/pkgs/development/ocaml-modules/ca-certs/default.nix @@ -42,10 +42,10 @@ buildDunePackage rec { fmt ]; - meta = with lib; { + meta = { description = "Detect root CA certificates from the operating system"; - maintainers = [ maintainers.sternenseemann ]; - license = licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; + license = lib.licenses.isc; homepage = "https://github.com/mirage/ca-certs"; }; } diff --git a/pkgs/development/ocaml-modules/camlimages/default.nix b/pkgs/development/ocaml-modules/camlimages/default.nix index e107272a4eb4..9676e4e817e2 100644 --- a/pkgs/development/ocaml-modules/camlimages/default.nix +++ b/pkgs/development/ocaml-modules/camlimages/default.nix @@ -35,14 +35,14 @@ buildDunePackage rec { stdio ]; - meta = with lib; { + meta = { branch = "5.0"; inherit (src.meta) homepage; description = "OCaml image processing library"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ - maintainers.vbgl - maintainers.mt-caret + lib.maintainers.vbgl + lib.maintainers.mt-caret ]; }; } diff --git a/pkgs/development/ocaml-modules/camlpdf/default.nix b/pkgs/development/ocaml-modules/camlpdf/default.nix index 65eafc11744d..9cf902601189 100644 --- a/pkgs/development/ocaml-modules/camlpdf/default.nix +++ b/pkgs/development/ocaml-modules/camlpdf/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs ''; - meta = with lib; { + meta = { description = "OCaml library for reading, writing and modifying PDF files"; homepage = "https://github.com/johnwhitington/camlpdf"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ vbgl ]; broken = lib.versionOlder ocaml.version "4.10"; }; } diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix index 615be6448431..69f7f0c7b452 100644 --- a/pkgs/development/ocaml-modules/camlzip/default.nix +++ b/pkgs/development/ocaml-modules/camlzip/default.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation { ln -s $out/lib/ocaml/${ocaml.version}/site-lib/{,caml}zip ''; - meta = with lib; { + meta = { homepage = "http://cristal.inria.fr/~xleroy/software.html#camlzip"; description = "Library for handling ZIP and GZIP files in OCaml"; longDescription = '' diff --git a/pkgs/development/ocaml-modules/carton/default.nix b/pkgs/development/ocaml-modules/carton/default.nix index ea9eb4f06462..12c35025e7da 100644 --- a/pkgs/development/ocaml-modules/carton/default.nix +++ b/pkgs/development/ocaml-modules/carton/default.nix @@ -87,10 +87,10 @@ buildDunePackage rec { mirage-flow ]; - meta = with lib; { + meta = { description = "Implementation of PACKv2 file in OCaml"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/mirage/ocaml-git"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/cfstream/default.nix b/pkgs/development/ocaml-modules/cfstream/default.nix index 07a16e32fbb3..9deb440b2bac 100644 --- a/pkgs/development/ocaml-modules/cfstream/default.nix +++ b/pkgs/development/ocaml-modules/cfstream/default.nix @@ -35,10 +35,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Simple Core-inspired wrapper for standard library Stream module"; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.lgpl21; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/ocaml-modules/chrome-trace/default.nix b/pkgs/development/ocaml-modules/chrome-trace/default.nix index 51bf1c51e85b..6358c79c430f 100644 --- a/pkgs/development/ocaml-modules/chrome-trace/default.nix +++ b/pkgs/development/ocaml-modules/chrome-trace/default.nix @@ -17,9 +17,9 @@ buildDunePackage { rm -r vendor/csexp ''; - meta = with lib; { + meta = { description = "Chrome trace event generation library"; inherit (dune_3.meta) homepage; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/cil/default.nix b/pkgs/development/ocaml-modules/cil/default.nix index a0b36953bf47..7f45f97e4d0e 100644 --- a/pkgs/development/ocaml-modules/cil/default.nix +++ b/pkgs/development/ocaml-modules/cil/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { ''; prefixKey = "-prefix="; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/cil/"; description = "Front-end for the C programming language that facilitates program analysis and transformation"; - license = licenses.bsd3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; broken = lib.versionAtLeast ocaml.version "4.06"; platforms = ocaml.meta.platforms or [ ]; }; diff --git a/pkgs/development/ocaml-modules/cmarkit/default.nix b/pkgs/development/ocaml-modules/cmarkit/default.nix index b4828756f5cd..af8263e2b2e1 100644 --- a/pkgs/development/ocaml-modules/cmarkit/default.nix +++ b/pkgs/development/ocaml-modules/cmarkit/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "CommonMark parser and renderer for OCaml"; homepage = "https://erratique.ch/software/cmarkit"; changelog = "https://github.com/dbuenzli/cmarkit/blob/v${version}/CHANGES.md"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; inherit (ocaml.meta) platforms; broken = lib.versionOlder ocaml.version "4.14.0"; diff --git a/pkgs/development/ocaml-modules/cmdliner/1_0.nix b/pkgs/development/ocaml-modules/cmdliner/1_0.nix index 32dbdff6a8fc..772e688a9981 100644 --- a/pkgs/development/ocaml-modules/cmdliner/1_0.nix +++ b/pkgs/development/ocaml-modules/cmdliner/1_0.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { mv $out/lib/ocaml/${ocaml.version}/site-lib/${pname}/{opam,${pname}.opam} ''; - meta = with lib; { + meta = { homepage = "https://erratique.ch/software/cmdliner"; description = "OCaml module for the declarative definition of command line interfaces"; - license = licenses.isc; + license = lib.licenses.isc; inherit (ocaml.meta) platforms; - maintainers = [ maintainers.vbgl ]; + maintainers = [ lib.maintainers.vbgl ]; broken = !(lib.versionAtLeast ocaml.version "4.03"); }; } diff --git a/pkgs/development/ocaml-modules/cmdliner/1_1.nix b/pkgs/development/ocaml-modules/cmdliner/1_1.nix index 521b9b53168c..cf03c32d7e8b 100644 --- a/pkgs/development/ocaml-modules/cmdliner/1_1.nix +++ b/pkgs/development/ocaml-modules/cmdliner/1_1.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { mv $out/lib/ocaml/${ocaml.version}/site-lib/${pname}/{opam,${pname}.opam} ''; - meta = with lib; { + meta = { homepage = "https://erratique.ch/software/cmdliner"; description = "OCaml module for the declarative definition of command line interfaces"; - license = licenses.isc; + license = lib.licenses.isc; inherit (ocaml.meta) platforms; - maintainers = [ maintainers.vbgl ]; + maintainers = [ lib.maintainers.vbgl ]; broken = !(lib.versionAtLeast ocaml.version "4.08"); }; } diff --git a/pkgs/development/ocaml-modules/cooltt/default.nix b/pkgs/development/ocaml-modules/cooltt/default.nix index d6d5f10c1f6b..f88476b5e186 100644 --- a/pkgs/development/ocaml-modules/cooltt/default.nix +++ b/pkgs/development/ocaml-modules/cooltt/default.nix @@ -106,10 +106,10 @@ buildDunePackage { qcheck ]; - meta = with lib; { + meta = { homepage = "https://github.com/RedPRL/cooltt"; description = "Cool implementation of normalization by evaluation (nbe) & elaboration for Cartesian cubical type theory"; - license = licenses.asl20; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/development/ocaml-modules/cpdf/default.nix b/pkgs/development/ocaml-modules/cpdf/default.nix index 8dff973a92e1..4c24852c093f 100644 --- a/pkgs/development/ocaml-modules/cpdf/default.nix +++ b/pkgs/development/ocaml-modules/cpdf/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { cp cpdfmanual.pdf $out/share/doc/cpdf/ ''; - meta = with lib; { + meta = { description = "PDF Command Line Tools"; homepage = "https://www.coherentpdf.com/"; - license = licenses.agpl3Only; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "cpdf"; inherit (ocaml.meta) platforms; broken = lib.versionOlder ocaml.version "4.10"; diff --git a/pkgs/development/ocaml-modules/crowbar/default.nix b/pkgs/development/ocaml-modules/crowbar/default.nix index 045df90d775d..70a22674185f 100644 --- a/pkgs/development/ocaml-modules/crowbar/default.nix +++ b/pkgs/development/ocaml-modules/crowbar/default.nix @@ -46,10 +46,10 @@ buildDunePackage rec { # uunf is broken on aarch64 doCheck = !stdenv.hostPlatform.isAarch64; - meta = with lib; { + meta = { description = "Property fuzzing for OCaml"; homepage = "https://github.com/stedolan/crowbar"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/cry/default.nix b/pkgs/development/ocaml-modules/cry/default.nix index dfa64d096cea..f3630901617c 100644 --- a/pkgs/development/ocaml-modules/cry/default.nix +++ b/pkgs/development/ocaml-modules/cry/default.nix @@ -21,10 +21,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.12"; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-cry"; description = "OCaml client for the various icecast & shoutcast source protocols"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/csexp/default.nix b/pkgs/development/ocaml-modules/csexp/default.nix index 5e47a4fcab67..7f377db546ef 100644 --- a/pkgs/development/ocaml-modules/csexp/default.nix +++ b/pkgs/development/ocaml-modules/csexp/default.nix @@ -20,11 +20,11 @@ buildDunePackage rec { inherit liquidsoap; }; - meta = with lib; { + meta = { description = "Minimal support for Canonical S-expressions"; homepage = "https://github.com/ocaml-dune/csexp"; changelog = "https://github.com/ocaml-dune/csexp/raw/${version}/CHANGES.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/ctypes/default.nix b/pkgs/development/ocaml-modules/ctypes/default.nix index 46629d405725..9e2c2d43ed01 100644 --- a/pkgs/development/ocaml-modules/ctypes/default.nix +++ b/pkgs/development/ocaml-modules/ctypes/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ ounit2 ]; - meta = with lib; { + meta = { homepage = "https://github.com/ocamllabs/ocaml-ctypes"; description = "Library for binding to C libraries using pure OCaml"; - license = licenses.mit; - maintainers = [ maintainers.ericbmerritt ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ericbmerritt ]; }; } diff --git a/pkgs/development/ocaml-modules/cudf/default.nix b/pkgs/development/ocaml-modules/cudf/default.nix index 40cb979e50ad..7f09ce7e77ed 100644 --- a/pkgs/development/ocaml-modules/cudf/default.nix +++ b/pkgs/development/ocaml-modules/cudf/default.nix @@ -29,11 +29,11 @@ buildDunePackage rec { ]; doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = with lib; { + meta = { description = "Library for CUDF format"; homepage = "https://www.mancoosi.org/cudf/"; downloadPage = "https://gforge.inria.fr/projects/cudf/"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/curly/default.nix b/pkgs/development/ocaml-modules/curly/default.nix index 0ab7922e6747..3eed06357239 100644 --- a/pkgs/development/ocaml-modules/curly/default.nix +++ b/pkgs/development/ocaml-modules/curly/default.nix @@ -43,10 +43,10 @@ buildDunePackage rec { --replace "exe=\"curl\"" "exe=\"${curl}/bin/curl\"" ''; - meta = with lib; { + meta = { description = "Curly is a brain dead wrapper around the curl command line utility"; homepage = "https://github.com/rgrinberg/curly"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/dbf/default.nix b/pkgs/development/ocaml-modules/dbf/default.nix index e02b13291ecd..c6149db9dc17 100644 --- a/pkgs/development/ocaml-modules/dbf/default.nix +++ b/pkgs/development/ocaml-modules/dbf/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { core_kernel ]; - meta = with lib; { + meta = { description = "DBF format parsing"; homepage = "https://github.com/pveber/dbf"; - license = licenses.isc; - maintainers = [ maintainers.deltadelta ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.deltadelta ]; }; } diff --git a/pkgs/development/ocaml-modules/dedukti/default.nix b/pkgs/development/ocaml-modules/dedukti/default.nix index 9c5ef6de01de..6e56eab01494 100644 --- a/pkgs/development/ocaml-modules/dedukti/default.nix +++ b/pkgs/development/ocaml-modules/dedukti/default.nix @@ -24,11 +24,11 @@ buildDunePackage rec { doCheck = false; # requires `tezt` - meta = with lib; { + meta = { homepage = "https://deducteam.github.io"; description = "Logical framework based on the λΠ-calculus modulo rewriting"; - license = licenses.cecill-b; + license = lib.licenses.cecill-b; changelog = "https://github.com/Deducteam/Dedukti/raw/${version}/CHANGELOG.md"; - maintainers = with maintainers; [ bcdarwin ]; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/ocaml-modules/diet/default.nix b/pkgs/development/ocaml-modules/diet/default.nix index 62d962235637..0547bd8f6568 100644 --- a/pkgs/development/ocaml-modules/diet/default.nix +++ b/pkgs/development/ocaml-modules/diet/default.nix @@ -23,9 +23,9 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ ounit ]; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/ocaml-diet"; description = "Simple implementation of Discrete Interval Encoding Trees"; - license = licenses.isc; + license = lib.licenses.isc; }; } diff --git a/pkgs/development/ocaml-modules/dose3/default.nix b/pkgs/development/ocaml-modules/dose3/default.nix index e271ea128c7f..fa47617cafda 100644 --- a/pkgs/development/ocaml-modules/dose3/default.nix +++ b/pkgs/development/ocaml-modules/dose3/default.nix @@ -45,11 +45,11 @@ buildDunePackage rec { # Check are not compatible with re ≥ 1.12 doCheck = lib.versionAtLeast ocaml.version "4.08" && !lib.versionAtLeast ocaml.version "4.12"; - meta = with lib; { + meta = { description = "Dose library (part of Mancoosi tools)"; downloadPage = "https://gitlab.com/irill/dose3/"; homepage = "https://www.mancoosi.org/software/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; longDescription = '' The dose suite provides libraries for handling package meta-data, and various tools for analyzing package relationships in a large package repository. * dose-builddebcheck checks, given a collection of source package stanzas and a collection of binary package stanzas of Debian packages, whether the build-dependencies of each source package can be satisfied by the binary packages. diff --git a/pkgs/development/ocaml-modules/dtoa/default.nix b/pkgs/development/ocaml-modules/dtoa/default.nix index 62b9f124eb0e..50d04572c5a1 100644 --- a/pkgs/development/ocaml-modules/dtoa/default.nix +++ b/pkgs/development/ocaml-modules/dtoa/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow"; - meta = with lib; { + meta = { homepage = "https://github.com/flowtype/ocaml-dtoa"; description = "Converts OCaml floats into strings (doubles to ascii, \"d to a\"), using the efficient Grisu3 algorithm"; - license = licenses.mit; - maintainers = [ maintainers.eqyiel ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.eqyiel ]; }; } diff --git a/pkgs/development/ocaml-modules/dtools/default.nix b/pkgs/development/ocaml-modules/dtools/default.nix index 9b94bf1a7ac8..fdaa74d7e2e4 100644 --- a/pkgs/development/ocaml-modules/dtools/default.nix +++ b/pkgs/development/ocaml-modules/dtools/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { sha256 = "sha256-MIZM/IlPWPa/r/f8EXkhU8gZctOZeAIGZgxoGMF2IkE="; }; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-dtools"; description = "Library providing various helper functions to make daemons"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/dune-action-plugin/default.nix b/pkgs/development/ocaml-modules/dune-action-plugin/default.nix index 70e4bd4b7964..62837499c165 100644 --- a/pkgs/development/ocaml-modules/dune-action-plugin/default.nix +++ b/pkgs/development/ocaml-modules/dune-action-plugin/default.nix @@ -25,10 +25,10 @@ buildDunePackage { rm -r vendor/csexp ''; - meta = with lib; { + meta = { inherit (dune_3.meta) homepage; description = "API for writing dynamic Dune actions"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/dune-build-info/default.nix b/pkgs/development/ocaml-modules/dune-build-info/default.nix index c8affa8f1722..3020b8a2a389 100644 --- a/pkgs/development/ocaml-modules/dune-build-info/default.nix +++ b/pkgs/development/ocaml-modules/dune-build-info/default.nix @@ -12,10 +12,10 @@ buildDunePackage { buildInputs = [ dune-action-plugin ]; - meta = with lib; { + meta = { inherit (dune-action-plugin.meta) homepage; description = "Embed build information inside executables"; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.mit; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/dune-configurator/default.nix b/pkgs/development/ocaml-modules/dune-configurator/default.nix index 537ecd6cdc11..ad59d65bd232 100644 --- a/pkgs/development/ocaml-modules/dune-configurator/default.nix +++ b/pkgs/development/ocaml-modules/dune-configurator/default.nix @@ -21,9 +21,9 @@ buildDunePackage { propagatedBuildInputs = [ csexp ]; - meta = with lib; { + meta = { description = "Helper library for gathering system configuration"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/dune-glob/default.nix b/pkgs/development/ocaml-modules/dune-glob/default.nix index d3facb0edf02..21fcd4a76d6d 100644 --- a/pkgs/development/ocaml-modules/dune-glob/default.nix +++ b/pkgs/development/ocaml-modules/dune-glob/default.nix @@ -19,10 +19,10 @@ buildDunePackage { rm -r vendor/csexp ''; - meta = with lib; { + meta = { inherit (dune_3.meta) homepage; description = "Glob string matching language supported by dune"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/dune-private-libs/default.nix b/pkgs/development/ocaml-modules/dune-private-libs/default.nix index fc66d504d639..cf3000eb2d40 100644 --- a/pkgs/development/ocaml-modules/dune-private-libs/default.nix +++ b/pkgs/development/ocaml-modules/dune-private-libs/default.nix @@ -22,9 +22,9 @@ buildDunePackage { rm -r vendor/csexp ''; - meta = with lib; { + meta = { description = "Private libraries of Dune"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/dune-rpc/default.nix b/pkgs/development/ocaml-modules/dune-rpc/default.nix index d5031728eda5..3c3b7925d65f 100644 --- a/pkgs/development/ocaml-modules/dune-rpc/default.nix +++ b/pkgs/development/ocaml-modules/dune-rpc/default.nix @@ -31,10 +31,10 @@ buildDunePackage { rm -r vendor/csexp ''; - meta = with lib; { + meta = { description = "Library to connect and control a running dune instance"; inherit (dune_3.meta) homepage; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/dune-site/default.nix b/pkgs/development/ocaml-modules/dune-site/default.nix index 95b25afb363f..460634cfdf33 100644 --- a/pkgs/development/ocaml-modules/dune-site/default.nix +++ b/pkgs/development/ocaml-modules/dune-site/default.nix @@ -19,10 +19,10 @@ buildDunePackage { rm -r vendor/csexp ''; - meta = with lib; { + meta = { description = "Library for embedding location information inside executable and libraries"; inherit (dune_3.meta) homepage; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/duppy/default.nix b/pkgs/development/ocaml-modules/duppy/default.nix index 5164c9455645..6a2d79f49c7e 100644 --- a/pkgs/development/ocaml-modules/duppy/default.nix +++ b/pkgs/development/ocaml-modules/duppy/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ re ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-duppy"; description = "Library providing monadic threads"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/elpi/default.nix b/pkgs/development/ocaml-modules/elpi/default.nix index e14516dbc403..6b9dc3739119 100644 --- a/pkgs/development/ocaml-modules/elpi/default.nix +++ b/pkgs/development/ocaml-modules/elpi/default.nix @@ -104,10 +104,10 @@ buildDunePackage { ] ); - meta = with lib; { + meta = { description = "Embeddable λProlog Interpreter"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.vbgl ]; homepage = "https://github.com/LPCIC/elpi"; }; diff --git a/pkgs/development/ocaml-modules/emile/default.nix b/pkgs/development/ocaml-modules/emile/default.nix index 07786a974202..392c25b8f11d 100644 --- a/pkgs/development/ocaml-modules/emile/default.nix +++ b/pkgs/development/ocaml-modules/emile/default.nix @@ -36,10 +36,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = with lib; { + meta = { description = "Parser of email address according RFC822"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/dinosaure/emile"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/ethernet/default.nix b/pkgs/development/ocaml-modules/ethernet/default.nix index e1969a24e574..d91e270291f0 100644 --- a/pkgs/development/ocaml-modules/ethernet/default.nix +++ b/pkgs/development/ocaml-modules/ethernet/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { logs ]; - meta = with lib; { + meta = { description = "OCaml Ethernet (IEEE 802.3) layer, used in MirageOS"; homepage = "https://github.com/mirage/ethernet"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/faad/default.nix b/pkgs/development/ocaml-modules/faad/default.nix index 1a45794059ee..9a5de20d7eac 100644 --- a/pkgs/development/ocaml-modules/faad/default.nix +++ b/pkgs/development/ocaml-modules/faad/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ faad2 ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-faad"; description = "Bindings for the faad library which provides functions for decoding AAC audio files"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/fiber/default.nix b/pkgs/development/ocaml-modules/fiber/default.nix index cd2c62d66a49..37e008884d1d 100644 --- a/pkgs/development/ocaml-modules/fiber/default.nix +++ b/pkgs/development/ocaml-modules/fiber/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { # https://github.com/ocaml-dune/fiber/issues/27 doCheck = false; - meta = with lib; { + meta = { description = "Structured concurrency library"; homepage = "https://github.com/ocaml-dune/fiber"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/fileutils/default.nix b/pkgs/development/ocaml-modules/fileutils/default.nix index 3cca0f46bd6c..18d6c28ee223 100644 --- a/pkgs/development/ocaml-modules/fileutils/default.nix +++ b/pkgs/development/ocaml-modules/fileutils/default.nix @@ -29,10 +29,10 @@ buildDunePackage rec { ]; doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = with lib; { + meta = { description = "OCaml API to manipulate real files (POSIX like) and filenames"; homepage = "https://github.com/gildor478/ocaml-fileutils"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/fix/default.nix b/pkgs/development/ocaml-modules/fix/default.nix index c2424072e74a..8dbac6ff25a6 100644 --- a/pkgs/development/ocaml-modules/fix/default.nix +++ b/pkgs/development/ocaml-modules/fix/default.nix @@ -18,10 +18,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.03"; - meta = with lib; { + meta = { homepage = "https://gitlab.inria.fr/fpottier/fix/"; description = "Simple OCaml module for computing the least solution of a system of monotone equations"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/flac/default.nix b/pkgs/development/ocaml-modules/flac/default.nix index f58eee2bed89..f5e192e31ff3 100644 --- a/pkgs/development/ocaml-modules/flac/default.nix +++ b/pkgs/development/ocaml-modules/flac/default.nix @@ -19,10 +19,10 @@ buildDunePackage { flac.dev ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-flac"; description = "Bindings for flac"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/flex/default.nix b/pkgs/development/ocaml-modules/flex/default.nix index f41f0c38e7d3..3b992cdbd2dd 100644 --- a/pkgs/development/ocaml-modules/flex/default.nix +++ b/pkgs/development/ocaml-modules/flex/default.nix @@ -18,10 +18,10 @@ buildDunePackage { nativeBuildInputs = [ reason ]; - meta = with lib; { + meta = { description = "Native Reason implementation of CSS Flexbox layout. An Yoga project port"; homepage = "https://github.com/jordwalke/flex"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/fmt/default.nix b/pkgs/development/ocaml-modules/fmt/default.nix index 254ca3f51c5c..67f67575a569 100644 --- a/pkgs/development/ocaml-modules/fmt/default.nix +++ b/pkgs/development/ocaml-modules/fmt/default.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { homepage = "https://erratique.ch/software/fmt"; - license = licenses.isc; + license = lib.licenses.isc; description = "OCaml Format pretty-printer combinators"; inherit (ocaml.meta) platforms; - maintainers = [ maintainers.vbgl ]; + maintainers = [ lib.maintainers.vbgl ]; broken = lib.versionOlder ocaml.version "4.08"; }; } diff --git a/pkgs/development/ocaml-modules/frei0r/default.nix b/pkgs/development/ocaml-modules/frei0r/default.nix index e4aba92bf4c6..573b7ddf2b85 100644 --- a/pkgs/development/ocaml-modules/frei0r/default.nix +++ b/pkgs/development/ocaml-modules/frei0r/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ frei0r ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-frei0r"; description = "Bindings for the frei0r API which provides video effects"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/frontc/default.nix b/pkgs/development/ocaml-modules/frontc/default.nix index 857555a5363f..3f204ad06b68 100644 --- a/pkgs/development/ocaml-modules/frontc/default.nix +++ b/pkgs/development/ocaml-modules/frontc/default.nix @@ -21,11 +21,11 @@ buildDunePackage rec { nativeBuildInputs = [ menhir ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; inherit (ocaml.meta) platforms; description = "C Parsing Library"; - license = licenses.lgpl21; - maintainers = [ maintainers.maurer ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.maurer ]; }; } diff --git a/pkgs/development/ocaml-modules/functory/default.nix b/pkgs/development/ocaml-modules/functory/default.nix index 44b7adfa6fff..5595f2fda2b1 100644 --- a/pkgs/development/ocaml-modules/functory/default.nix +++ b/pkgs/development/ocaml-modules/functory/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { createFindlibDestdir = true; - meta = with lib; { + meta = { homepage = "https://www.lri.fr/~filliatr/functory/"; description = "Distributed computing library for Objective Caml which facilitates distributed execution of parallelizable computations in a seamless fashion"; - license = licenses.lgpl21; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.vbgl ]; broken = lib.versionAtLeast ocaml.version "5.0"; inherit (ocaml.meta) platforms; }; diff --git a/pkgs/development/ocaml-modules/gd/default.nix b/pkgs/development/ocaml-modules/gd/default.nix index 28c123450864..5b924af2bbb7 100644 --- a/pkgs/development/ocaml-modules/gd/default.nix +++ b/pkgs/development/ocaml-modules/gd/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ gd ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-gd"; description = "OCaml bindings for gd"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/genspio/default.nix b/pkgs/development/ocaml-modules/genspio/default.nix index ca967338827f..2ea294727dde 100644 --- a/pkgs/development/ocaml-modules/genspio/default.nix +++ b/pkgs/development/ocaml-modules/genspio/default.nix @@ -29,10 +29,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://smondet.gitlab.io/genspio-doc/"; description = "Typed EDSL to generate POSIX Shell scripts"; - license = licenses.asl20; - maintainers = [ maintainers.alexfmpe ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.alexfmpe ]; }; } diff --git a/pkgs/development/ocaml-modules/gg/default.nix b/pkgs/development/ocaml-modules/gg/default.nix index 8e6c205695e1..427e1b438212 100644 --- a/pkgs/development/ocaml-modules/gg/default.nix +++ b/pkgs/development/ocaml-modules/gg/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "Basic types for computer graphics in OCaml"; longDescription = '' Gg is an OCaml module providing basic types for computer graphics. It @@ -45,8 +45,8 @@ stdenv.mkDerivation { ''; inherit homepage; inherit (ocaml.meta) platforms; - license = licenses.bsd3; - maintainers = [ maintainers.jirkamarsik ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.jirkamarsik ]; broken = !(lib.versionAtLeast ocaml.version "4.08"); }; } diff --git a/pkgs/development/ocaml-modules/github/default.nix b/pkgs/development/ocaml-modules/github/default.nix index fcbba9d709b3..7c91f5a9dbcf 100644 --- a/pkgs/development/ocaml-modules/github/default.nix +++ b/pkgs/development/ocaml-modules/github/default.nix @@ -34,10 +34,10 @@ buildDunePackage rec { stringext ]; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/ocaml-github"; description = "GitHub APIv3 OCaml library"; - license = licenses.mit; - maintainers = with maintainers; [ niols ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ niols ]; }; } diff --git a/pkgs/development/ocaml-modules/gitlab/default.nix b/pkgs/development/ocaml-modules/gitlab/default.nix index 08b500bba423..3f0255d29ec0 100644 --- a/pkgs/development/ocaml-modules/gitlab/default.nix +++ b/pkgs/development/ocaml-modules/gitlab/default.nix @@ -42,11 +42,11 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/tmcgilchrist/ocaml-gitlab"; description = "Native OCaml bindings to Gitlab REST API v4"; - license = licenses.bsd3; + license = lib.licenses.bsd3; changelog = "https://github.com/tmcgilchrist/ocaml-gitlab/releases/tag/${version}"; - maintainers = with maintainers; [ zazedd ]; + maintainers = with lib.maintainers; [ zazedd ]; }; } diff --git a/pkgs/development/ocaml-modules/gsl/default.nix b/pkgs/development/ocaml-modules/gsl/default.nix index 387cf4bd63c4..5f30483439c6 100644 --- a/pkgs/development/ocaml-modules/gsl/default.nix +++ b/pkgs/development/ocaml-modules/gsl/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { gsl ]; - meta = with lib; { + meta = { homepage = "https://mmottl.github.io/gsl-ocaml/"; description = "OCaml bindings to the GNU Scientific Library"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/gstreamer/default.nix b/pkgs/development/ocaml-modules/gstreamer/default.nix index d23241088976..3f23c9febad4 100644 --- a/pkgs/development/ocaml-modules/gstreamer/default.nix +++ b/pkgs/development/ocaml-modules/gstreamer/default.nix @@ -34,10 +34,10 @@ buildDunePackage rec { "-I${gst_all_1.gstreamer.dev}/include/gstreamer-1.0" ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-gstreamer"; description = "Bindings for the GStreamer library which provides functions for playning and manipulating multimedia streams"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/hidapi/default.nix b/pkgs/development/ocaml-modules/hidapi/default.nix index d65243e2cb71..d3d666ef081a 100644 --- a/pkgs/development/ocaml-modules/hidapi/default.nix +++ b/pkgs/development/ocaml-modules/hidapi/default.nix @@ -32,11 +32,11 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Bindings to Signal11's hidapi library"; homepage = "https://github.com/vbmithr/ocaml-hidapi"; - license = licenses.isc; - maintainers = [ maintainers.alexfmpe ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.alexfmpe ]; mainProgram = "ocaml-hid-enumerate"; }; } diff --git a/pkgs/development/ocaml-modules/higlo/default.nix b/pkgs/development/ocaml-modules/higlo/default.nix index 849dd45a617e..f806dbb0be22 100644 --- a/pkgs/development/ocaml-modules/higlo/default.nix +++ b/pkgs/development/ocaml-modules/higlo/default.nix @@ -23,10 +23,10 @@ buildDunePackage rec { xtmpl ]; - meta = with lib; { + meta = { description = "OCaml library for syntax highlighting"; inherit (src.meta) homepage; - license = licenses.lgpl3; - maintainers = with maintainers; [ regnat ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ regnat ]; }; } diff --git a/pkgs/development/ocaml-modules/hkdf/default.nix b/pkgs/development/ocaml-modules/hkdf/default.nix index b882215ae802..095b88d91af3 100644 --- a/pkgs/development/ocaml-modules/hkdf/default.nix +++ b/pkgs/development/ocaml-modules/hkdf/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { ]; doCheck = true; - meta = with lib; { + meta = { description = "HMAC-based Extract-and-Expand Key Derivation Function (RFC 5869)"; homepage = "https://github.com/hannesm/ocaml-hkdf"; - license = licenses.mit; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/hxd/default.nix b/pkgs/development/ocaml-modules/hxd/default.nix index b660629ad86c..d50451ebac13 100644 --- a/pkgs/development/ocaml-modules/hxd/default.nix +++ b/pkgs/development/ocaml-modules/hxd/default.nix @@ -32,11 +32,11 @@ buildDunePackage rec { export DUNE_CACHE=disabled ''; - meta = with lib; { + meta = { description = "Hexdump in OCaml"; homepage = "https://github.com/dinosaure/hxd"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; mainProgram = "hxd.xxd"; }; } diff --git a/pkgs/development/ocaml-modules/index/default.nix b/pkgs/development/ocaml-modules/index/default.nix index 6092df841a4d..415e02777a33 100644 --- a/pkgs/development/ocaml-modules/index/default.nix +++ b/pkgs/development/ocaml-modules/index/default.nix @@ -57,10 +57,10 @@ buildDunePackage rec { ]; doCheck = true; - meta = with lib; { + meta = { description = "Platform-agnostic multi-level index"; homepage = "https://github.com/mirage/index"; - license = licenses.mit; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/javalib/default.nix b/pkgs/development/ocaml-modules/javalib/default.nix index 7fca71f2035a..1ba344e4686c 100644 --- a/pkgs/development/ocaml-modules/javalib/default.nix +++ b/pkgs/development/ocaml-modules/javalib/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { extlib ]; - meta = with lib; { + meta = { description = "Library that parses Java .class files into OCaml data structures"; homepage = "https://javalib-team.github.io/javalib/"; - license = licenses.lgpl3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.vbgl ]; inherit (ocaml.meta) platforms; broken = !(lib.versionAtLeast ocaml.version "4.08"); }; diff --git a/pkgs/development/ocaml-modules/jingoo/default.nix b/pkgs/development/ocaml-modules/jingoo/default.nix index 41c6e667bea4..ac56e2b44bb0 100644 --- a/pkgs/development/ocaml-modules/jingoo/default.nix +++ b/pkgs/development/ocaml-modules/jingoo/default.nix @@ -36,11 +36,11 @@ buildDunePackage rec { checkInputs = [ ounit2 ]; doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = with lib; { + meta = { homepage = "https://github.com/tategakibunko/jingoo"; description = "OCaml template engine almost compatible with jinja2"; mainProgram = "jingoo"; - license = licenses.mit; - maintainers = [ maintainers.ericbmerritt ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ericbmerritt ]; }; } diff --git a/pkgs/development/ocaml-modules/junit/default.nix b/pkgs/development/ocaml-modules/junit/default.nix index 234afebf9f6b..59a6404ecac9 100644 --- a/pkgs/development/ocaml-modules/junit/default.nix +++ b/pkgs/development/ocaml-modules/junit/default.nix @@ -22,9 +22,9 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "OCaml package for the creation of JUnit XML reports, proving a typed API to produce valid reports acceptable to Jenkins, comes with packages supporting OUnit and Alcotest"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; homepage = "https://github.com/Khady/ocaml-junit"; }; diff --git a/pkgs/development/ocaml-modules/kafka/default.nix b/pkgs/development/ocaml-modules/kafka/default.nix index f096b7f3190c..eb39fcba38e4 100644 --- a/pkgs/development/ocaml-modules/kafka/default.nix +++ b/pkgs/development/ocaml-modules/kafka/default.nix @@ -21,11 +21,11 @@ buildDunePackage rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/didier-wenzek/ocaml-kafka"; description = "OCaml bindings for Kafka"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; broken = lib.versionAtLeast ocaml.version "5.0"; }; } diff --git a/pkgs/development/ocaml-modules/kicadsch/default.nix b/pkgs/development/ocaml-modules/kicadsch/default.nix index dde07551e50c..92066bf56ed9 100644 --- a/pkgs/development/ocaml-modules/kicadsch/default.nix +++ b/pkgs/development/ocaml-modules/kicadsch/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { sha256 = "sha256-B+vnEPyd3SUzviTdNoyvYk0p7Hrg/XTJm8KxsY8A4jQ="; }; - meta = with lib; { + meta = { description = "OCaml library for exporting Kicad Sch files to SVG pictures"; homepage = "https://github.com/jnavila/plotkicadsch"; - license = licenses.isc; - maintainers = with maintainers; [ leungbk ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ leungbk ]; }; } diff --git a/pkgs/development/ocaml-modules/lablgl/default.nix b/pkgs/development/ocaml-modules/lablgl/default.nix index 06b7f64157d3..b38ea11eabe0 100644 --- a/pkgs/development/ocaml-modules/lablgl/default.nix +++ b/pkgs/development/ocaml-modules/lablgl/default.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { cp ./META $out/lib/ocaml/${ocaml.version}/site-lib/lablgl ''; - meta = with lib; { + meta = { description = "OpenGL bindings for ocaml"; homepage = "http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgl.html"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ pSub vbgl ]; diff --git a/pkgs/development/ocaml-modules/lablgtk/default.nix b/pkgs/development/ocaml-modules/lablgtk/default.nix index 8116c368049a..ff29dfed7268 100644 --- a/pkgs/development/ocaml-modules/lablgtk/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk/default.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation { dontStrip = true; - meta = with lib; { + meta = { description = "OCaml interface to GTK"; homepage = "http://lablgtk.forge.ocamlcore.org/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ roconnor vbgl ]; diff --git a/pkgs/development/ocaml-modules/lambdapi/default.nix b/pkgs/development/ocaml-modules/lambdapi/default.nix index 5dec72fd8101..c567bda1f8ab 100644 --- a/pkgs/development/ocaml-modules/lambdapi/default.nix +++ b/pkgs/development/ocaml-modules/lambdapi/default.nix @@ -51,11 +51,11 @@ buildDunePackage rec { ]; doCheck = false; # anomaly: Sys_error("/homeless-shelter/.why3.conf: No such file or directory") - meta = with lib; { + meta = { homepage = "https://github.com/Deducteam/lambdapi"; description = "Proof assistant based on the λΠ-calculus modulo rewriting"; - license = licenses.cecill21; + license = lib.licenses.cecill21; changelog = "https://github.com/Deducteam/lambdapi/raw/${version}/CHANGES.md"; - maintainers = with maintainers; [ bcdarwin ]; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/ocaml-modules/lame/default.nix b/pkgs/development/ocaml-modules/lame/default.nix index 338d6a4bb913..f0db47138606 100644 --- a/pkgs/development/ocaml-modules/lame/default.nix +++ b/pkgs/development/ocaml-modules/lame/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ lame ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-lame"; description = "Bindings for the lame library which provides functions for encoding mp3 files"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/lastfm/default.nix b/pkgs/development/ocaml-modules/lastfm/default.nix index 12b2777b79fa..88d23138d571 100644 --- a/pkgs/development/ocaml-modules/lastfm/default.nix +++ b/pkgs/development/ocaml-modules/lastfm/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { xmlplaylist ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-lastfm"; description = "OCaml API to lastfm radio and audioscrobbler"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/lem/default.nix b/pkgs/development/ocaml-modules/lem/default.nix index 150b7a9519ca..09502c308418 100644 --- a/pkgs/development/ocaml-modules/lem/default.nix +++ b/pkgs/development/ocaml-modules/lem/default.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/lem --set LEMLIB $out/share/lem/library ''; - meta = with lib; { + meta = { homepage = "https://github.com/rems-project/lem"; description = "Tool for lightweight executable mathematics"; mainProgram = "lem"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = with lib.licenses; [ bsd3 gpl2 ]; diff --git a/pkgs/development/ocaml-modules/lens/default.nix b/pkgs/development/ocaml-modules/lens/default.nix index 0499e640e240..e0d1a0febd2a 100644 --- a/pkgs/development/ocaml-modules/lens/default.nix +++ b/pkgs/development/ocaml-modules/lens/default.nix @@ -29,11 +29,11 @@ buildDunePackage rec { doCheck = true; checkInputs = [ ounit ]; - meta = with lib; { + meta = { homepage = "https://github.com/pdonadeo/ocaml-lens"; description = "Functional lenses"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kazcw ]; }; diff --git a/pkgs/development/ocaml-modules/lilv/default.nix b/pkgs/development/ocaml-modules/lilv/default.nix index 3ff0782ca288..dbb2d71c1aa3 100644 --- a/pkgs/development/ocaml-modules/lilv/default.nix +++ b/pkgs/development/ocaml-modules/lilv/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { lilv ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-lilv"; description = "OCaml bindings for lilv"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/linksem/default.nix b/pkgs/development/ocaml-modules/linksem/default.nix index 40930e21f94f..093cf5092ef7 100644 --- a/pkgs/development/ocaml-modules/linksem/default.nix +++ b/pkgs/development/ocaml-modules/linksem/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { createFindlibDestdir = true; - meta = with lib; { + meta = { homepage = "https://github.com/rems-project/linksem"; description = "Formalisation of substantial parts of ELF linking and DWARF debug information"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd2; platforms = ocaml.meta.platforms; broken = !(lib.versionAtLeast ocaml.version "4.07"); }; diff --git a/pkgs/development/ocaml-modules/lo/default.nix b/pkgs/development/ocaml-modules/lo/default.nix index dd2dc8d49328..f5ee5cfecc2d 100644 --- a/pkgs/development/ocaml-modules/lo/default.nix +++ b/pkgs/development/ocaml-modules/lo/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ liblo ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-lo"; description = "Bindings for LO library"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/lustre-v6/default.nix b/pkgs/development/ocaml-modules/lustre-v6/default.nix index ae43b9b5044c..0ec69ec356a8 100644 --- a/pkgs/development/ocaml-modules/lustre-v6/default.nix +++ b/pkgs/development/ocaml-modules/lustre-v6/default.nix @@ -26,11 +26,11 @@ buildDunePackage rec { yaml ]; - meta = with lib; { + meta = { description = "Lustre V6 compiler"; homepage = "https://www-verimag.imag.fr/lustre-v6.html"; - license = licenses.cecill21; - maintainers = with maintainers; [ + license = lib.licenses.cecill21; + maintainers = with lib.maintainers; [ delta wegank ]; diff --git a/pkgs/development/ocaml-modules/luv/default.nix b/pkgs/development/ocaml-modules/luv/default.nix index 687d1a0fdc46..d055fa210892 100644 --- a/pkgs/development/ocaml-modules/luv/default.nix +++ b/pkgs/development/ocaml-modules/luv/default.nix @@ -41,17 +41,17 @@ buildDunePackage rec { # Alcotest depends on fmt that needs 4.08 or newer doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = with lib; { + meta = { homepage = "https://github.com/aantron/luv"; description = "Binding to libuv: cross-platform asynchronous I/O"; # MIT-licensed, extra licenses apply partially to libuv vendor - license = with licenses; [ + license = with lib.licenses; [ mit bsd2 bsd3 cc-by-sa-40 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ locallycompact sternenseemann ]; diff --git a/pkgs/development/ocaml-modules/lwd/default.nix b/pkgs/development/ocaml-modules/lwd/default.nix index b2952ffec28f..771b003b50a2 100644 --- a/pkgs/development/ocaml-modules/lwd/default.nix +++ b/pkgs/development/ocaml-modules/lwd/default.nix @@ -18,10 +18,10 @@ buildDunePackage rec { propagatedBuildInputs = [ seq ]; - meta = with lib; { + meta = { description = "Lightweight reactive documents"; - license = licenses.mit; - maintainers = [ maintainers.alizter ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.alizter ]; homepage = "https://github.com/let-def/lwd"; }; } diff --git a/pkgs/development/ocaml-modules/lwd/nottui-lwt.nix b/pkgs/development/ocaml-modules/lwd/nottui-lwt.nix index 57f75f301512..7966bdd7a8e6 100644 --- a/pkgs/development/ocaml-modules/lwd/nottui-lwt.nix +++ b/pkgs/development/ocaml-modules/lwd/nottui-lwt.nix @@ -16,10 +16,10 @@ buildDunePackage { nottui ]; - meta = with lib; { + meta = { description = "Run Nottui UIs in Lwt"; - license = licenses.mit; - maintainers = [ maintainers.alizter ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.alizter ]; homepage = "https://github.com/let-def/lwd"; }; } diff --git a/pkgs/development/ocaml-modules/lwd/nottui-pretty.nix b/pkgs/development/ocaml-modules/lwd/nottui-pretty.nix index 7081659d62a7..e01ea6e1305a 100644 --- a/pkgs/development/ocaml-modules/lwd/nottui-pretty.nix +++ b/pkgs/development/ocaml-modules/lwd/nottui-pretty.nix @@ -12,10 +12,10 @@ buildDunePackage { propagatedBuildInputs = [ nottui ]; - meta = with lib; { + meta = { description = "Pretty-printer based on PPrint rendering UIs"; - license = licenses.mit; - maintainers = [ maintainers.alizter ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.alizter ]; homepage = "https://github.com/let-def/lwd"; }; } diff --git a/pkgs/development/ocaml-modules/lwd/nottui-unix.nix b/pkgs/development/ocaml-modules/lwd/nottui-unix.nix index 519a63746251..88a3839d152e 100644 --- a/pkgs/development/ocaml-modules/lwd/nottui-unix.nix +++ b/pkgs/development/ocaml-modules/lwd/nottui-unix.nix @@ -17,10 +17,10 @@ buildDunePackage { notty ]; - meta = with lib; { + meta = { description = "UI toolkit for the UNIX terminal built on top of Notty and Lwd"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; homepage = "https://github.com/let-def/lwd"; }; } diff --git a/pkgs/development/ocaml-modules/lwd/nottui.nix b/pkgs/development/ocaml-modules/lwd/nottui.nix index 9a9918c75b13..ccb134674c36 100644 --- a/pkgs/development/ocaml-modules/lwd/nottui.nix +++ b/pkgs/development/ocaml-modules/lwd/nottui.nix @@ -15,10 +15,10 @@ buildDunePackage { notty ]; - meta = with lib; { + meta = { description = "UI toolkit for the terminal built on top of Notty and Lwd"; - license = licenses.mit; - maintainers = [ maintainers.alizter ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.alizter ]; homepage = "https://github.com/let-def/lwd"; }; } diff --git a/pkgs/development/ocaml-modules/lwd/tyxml-lwd.nix b/pkgs/development/ocaml-modules/lwd/tyxml-lwd.nix index ca381fdd55be..fdf37ae92fe3 100644 --- a/pkgs/development/ocaml-modules/lwd/tyxml-lwd.nix +++ b/pkgs/development/ocaml-modules/lwd/tyxml-lwd.nix @@ -19,10 +19,10 @@ buildDunePackage { tyxml ]; - meta = with lib; { + meta = { description = "Make reactive webpages in Js_of_ocaml using Tyxml and Lwd"; - license = licenses.mit; - maintainers = [ maintainers.alizter ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.alizter ]; homepage = "https://github.com/let-def/lwd"; }; } diff --git a/pkgs/development/ocaml-modules/macaddr/default.nix b/pkgs/development/ocaml-modules/macaddr/default.nix index d64ff8054935..4d2db1e47944 100644 --- a/pkgs/development/ocaml-modules/macaddr/default.nix +++ b/pkgs/development/ocaml-modules/macaddr/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { ]; doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/ocaml-ipaddr"; description = "Library for manipulation of MAC address representations"; - license = licenses.isc; - maintainers = [ maintainers.alexfmpe ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.alexfmpe ]; }; } diff --git a/pkgs/development/ocaml-modules/mad/default.nix b/pkgs/development/ocaml-modules/mad/default.nix index 401e75f7ea89..172d10b4452b 100644 --- a/pkgs/development/ocaml-modules/mad/default.nix +++ b/pkgs/development/ocaml-modules/mad/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ libmad ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-mad"; description = "Bindings for the mad library which provides functions for encoding wave audio files into mp3"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/magic-mime/default.nix b/pkgs/development/ocaml-modules/magic-mime/default.nix index 6460a1fb8496..9f2af3cea2f1 100644 --- a/pkgs/development/ocaml-modules/magic-mime/default.nix +++ b/pkgs/development/ocaml-modules/magic-mime/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.03"; - meta = with lib; { + meta = { description = "Convert file extensions to MIME types"; homepage = "https://github.com/mirage/ocaml-magic-mime"; - license = licenses.isc; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/magic/default.nix b/pkgs/development/ocaml-modules/magic/default.nix index ec6586012998..5410575661dc 100644 --- a/pkgs/development/ocaml-modules/magic/default.nix +++ b/pkgs/development/ocaml-modules/magic/default.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { ]; propagatedBuildInputs = [ file ]; - meta = with lib; { + meta = { homepage = "https://github.com/Chris00/ocaml-magic"; description = "Bindings for libmagic"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/mccs/default.nix b/pkgs/development/ocaml-modules/mccs/default.nix index ecbac7c2da27..00e27fd13e96 100644 --- a/pkgs/development/ocaml-modules/mccs/default.nix +++ b/pkgs/development/ocaml-modules/mccs/default.nix @@ -22,11 +22,11 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Library providing a multi criteria CUDF solver, part of MANCOOSI project"; downloadPage = "https://github.com/AltGr/ocaml-mccs"; homepage = "https://www.i3s.unice.fr/~cpjm/misc/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 gpl3 ]; diff --git a/pkgs/development/ocaml-modules/memprof-limits/default.nix b/pkgs/development/ocaml-modules/memprof-limits/default.nix index e469c9daff9d..b250c6be3853 100644 --- a/pkgs/development/ocaml-modules/memprof-limits/default.nix +++ b/pkgs/development/ocaml-modules/memprof-limits/default.nix @@ -18,11 +18,11 @@ buildDunePackage rec { minimalOCamlVersion = "4.12"; - meta = with lib; { + meta = { homepage = "https://ocaml.org/p/memprof-limits/latest"; description = "Memory limits, allocation limits, and thread cancellation for OCaml"; - license = licenses.lgpl3; - maintainers = with maintainers; [ alizter ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ alizter ]; broken = !(lib.versionOlder ocaml.version "5.0.0"); }; } diff --git a/pkgs/development/ocaml-modules/memtrace/default.nix b/pkgs/development/ocaml-modules/memtrace/default.nix index 47520e2e61b7..8b50cf0712dd 100644 --- a/pkgs/development/ocaml-modules/memtrace/default.nix +++ b/pkgs/development/ocaml-modules/memtrace/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.11"; - meta = with lib; { + meta = { homepage = "https://github.com/janestreet/${pname}"; description = "Streaming client for OCaml's Memprof"; - license = licenses.mit; - maintainers = with maintainers; [ niols ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ niols ]; }; } diff --git a/pkgs/development/ocaml-modules/menhir/lib.nix b/pkgs/development/ocaml-modules/menhir/lib.nix index 01d76971a2db..9742868c2ff1 100644 --- a/pkgs/development/ocaml-modules/menhir/lib.nix +++ b/pkgs/development/ocaml-modules/menhir/lib.nix @@ -25,7 +25,7 @@ buildDunePackage { minimalOCamlVersion = "4.03"; - meta = with lib; { + meta = { homepage = "http://pauillac.inria.fr/~fpottier/menhir/"; description = "Runtime support library for parsers generated by Menhir"; longDescription = '' @@ -34,7 +34,7 @@ buildDunePackage { to OCaml code. Menhir was designed and implemented by François Pottier and Yann Régis-Gianas. ''; - license = with licenses; [ lgpl2Only ]; - maintainers = with maintainers; [ vbgl ]; + license = with lib.licenses; [ lgpl2Only ]; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/merlin-extend/default.nix b/pkgs/development/ocaml-modules/merlin-extend/default.nix index 8d578539ba86..7bc7f39005bf 100644 --- a/pkgs/development/ocaml-modules/merlin-extend/default.nix +++ b/pkgs/development/ocaml-modules/merlin-extend/default.nix @@ -16,10 +16,10 @@ buildDunePackage rec { nativeBuildInputs = [ cppo ]; - meta = with lib; { + meta = { homepage = "https://github.com/let-def/merlin-extend"; description = "SDK to extend Merlin"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/metadata/default.nix b/pkgs/development/ocaml-modules/metadata/default.nix index a8a094ea1885..176c878ed400 100644 --- a/pkgs/development/ocaml-modules/metadata/default.nix +++ b/pkgs/development/ocaml-modules/metadata/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.14"; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-metadata"; description = "Library to read metadata from files in various formats"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/mimic/default.nix b/pkgs/development/ocaml-modules/mimic/default.nix index 80758efc0ed1..a17efdc45e42 100644 --- a/pkgs/development/ocaml-modules/mimic/default.nix +++ b/pkgs/development/ocaml-modules/mimic/default.nix @@ -38,10 +38,10 @@ buildDunePackage rec { ke ]; - meta = with lib; { + meta = { description = "Simple protocol dispatcher"; - license = licenses.isc; + license = lib.licenses.isc; homepage = "https://github.com/mirage/ocaml-git"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix b/pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix index fac5b9cf20fc..fd592010a88a 100644 --- a/pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix +++ b/pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix @@ -30,9 +30,9 @@ buildDunePackage rec { doCheck = false; - meta = with lib; { + meta = { description = "In-memory BLOCK device for MirageOS"; homepage = "https://github.com/mirage/mirage-block-ramdisk"; - license = licenses.isc; + license = lib.licenses.isc; }; } diff --git a/pkgs/development/ocaml-modules/mirage-block-unix/default.nix b/pkgs/development/ocaml-modules/mirage-block-unix/default.nix index 6d5ed1aceefc..e82a2b4f8ef9 100644 --- a/pkgs/development/ocaml-modules/mirage-block-unix/default.nix +++ b/pkgs/development/ocaml-modules/mirage-block-unix/default.nix @@ -37,9 +37,9 @@ buildDunePackage rec { ounit2 ]; - meta = with lib; { + meta = { description = "MirageOS disk block driver for Unix"; homepage = "https://github.com/mirage/mirage-block-unix"; - license = licenses.isc; + license = lib.licenses.isc; }; } diff --git a/pkgs/development/ocaml-modules/mirage-block/default.nix b/pkgs/development/ocaml-modules/mirage-block/default.nix index 365eb6a22287..71ae282ffaca 100644 --- a/pkgs/development/ocaml-modules/mirage-block/default.nix +++ b/pkgs/development/ocaml-modules/mirage-block/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { fmt ]; - meta = with lib; { + meta = { description = "Block signatures and implementations for MirageOS"; homepage = "https://github.com/mirage/mirage-block"; - license = licenses.isc; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-bootvar-xen/default.nix b/pkgs/development/ocaml-modules/mirage-bootvar-xen/default.nix index b2969d3db682..dd612da48f3f 100644 --- a/pkgs/development/ocaml-modules/mirage-bootvar-xen/default.nix +++ b/pkgs/development/ocaml-modules/mirage-bootvar-xen/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { parse-argv ]; - meta = with lib; { + meta = { description = "Handle boot-time arguments for Xen platform"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; homepage = "https://github.com/mirage/mirage-bootvar-xen"; }; } diff --git a/pkgs/development/ocaml-modules/mirage-nat/default.nix b/pkgs/development/ocaml-modules/mirage-nat/default.nix index 4515507c5cfa..80dbbb0ab4f3 100644 --- a/pkgs/development/ocaml-modules/mirage-nat/default.nix +++ b/pkgs/development/ocaml-modules/mirage-nat/default.nix @@ -38,10 +38,10 @@ buildDunePackage rec { mirage-clock-unix ]; - meta = with lib; { + meta = { description = "Mirage-nat is a library for network address translation to be used with MirageOS"; homepage = "https://github.com/mirage/${pname}"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-profile/default.nix b/pkgs/development/ocaml-modules/mirage-profile/default.nix index f363df5136ed..ff7a539ece0d 100644 --- a/pkgs/development/ocaml-modules/mirage-profile/default.nix +++ b/pkgs/development/ocaml-modules/mirage-profile/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { stdlib-shims ]; - meta = with lib; { + meta = { description = "Collect runtime profiling information in CTF format"; homepage = "https://github.com/mirage/mirage-profile"; - license = licenses.bsd2; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-random-test/default.nix b/pkgs/development/ocaml-modules/mirage-random-test/default.nix index 545f4f1d2e9a..f058f4111b56 100644 --- a/pkgs/development/ocaml-modules/mirage-random-test/default.nix +++ b/pkgs/development/ocaml-modules/mirage-random-test/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { mirage-random ]; - meta = with lib; { + meta = { description = "Stub random device implementation for testing"; homepage = "https://github.com/mirage/mirage-random"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-time/default.nix b/pkgs/development/ocaml-modules/mirage-time/default.nix index 5daedf448f33..5453e46a1ef6 100644 --- a/pkgs/development/ocaml-modules/mirage-time/default.nix +++ b/pkgs/development/ocaml-modules/mirage-time/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ lwt ]; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/mirage-time"; description = "Time operations for MirageOS"; - license = licenses.isc; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-unix/default.nix b/pkgs/development/ocaml-modules/mirage-unix/default.nix index 16df20d6f3f1..836e721ee6d7 100644 --- a/pkgs/development/ocaml-modules/mirage-unix/default.nix +++ b/pkgs/development/ocaml-modules/mirage-unix/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { ]; doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/mirage-unix"; description = "Unix core platform libraries for MirageOS"; - license = licenses.isc; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-vnetif/default.nix b/pkgs/development/ocaml-modules/mirage-vnetif/default.nix index 42378cd72a5b..ec097b2c8175 100644 --- a/pkgs/development/ocaml-modules/mirage-vnetif/default.nix +++ b/pkgs/development/ocaml-modules/mirage-vnetif/default.nix @@ -32,10 +32,10 @@ buildDunePackage rec { logs ]; - meta = with lib; { + meta = { description = "Virtual network interface and software switch for Mirage"; homepage = "https://github.com/mirage/${pname}"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-xen/default.nix b/pkgs/development/ocaml-modules/mirage-xen/default.nix index 184abc551f73..8079aa2cb7b4 100644 --- a/pkgs/development/ocaml-modules/mirage-xen/default.nix +++ b/pkgs/development/ocaml-modules/mirage-xen/default.nix @@ -43,10 +43,10 @@ buildDunePackage rec { duration ]; - meta = with lib; { + meta = { description = "Xen core platform libraries for MirageOS"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; homepage = "https://github.com/mirage/mirage-xen"; }; } diff --git a/pkgs/development/ocaml-modules/mirage/runtime.nix b/pkgs/development/ocaml-modules/mirage/runtime.nix index f3c185ab7555..fca7f4c0da9f 100644 --- a/pkgs/development/ocaml-modules/mirage/runtime.nix +++ b/pkgs/development/ocaml-modules/mirage/runtime.nix @@ -28,10 +28,10 @@ buildDunePackage (finalAttrs: { checkInputs = [ alcotest ]; doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/mirage"; description = "Base MirageOS runtime library, part of every MirageOS unikernel"; - license = licenses.isc; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; }; }) diff --git a/pkgs/development/ocaml-modules/mldoc/default.nix b/pkgs/development/ocaml-modules/mldoc/default.nix index 20398177d135..db902e49e654 100644 --- a/pkgs/development/ocaml-modules/mldoc/default.nix +++ b/pkgs/development/ocaml-modules/mldoc/default.nix @@ -61,10 +61,10 @@ buildDunePackage rec { xmlm ]; - meta = with lib; { + meta = { homepage = "https://github.com/logseq/mldoc"; description = "Another Emacs Org-mode and Markdown parser"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/mlx/default.nix b/pkgs/development/ocaml-modules/mlx/default.nix index 1b56cb381a9b..c2cf06545993 100644 --- a/pkgs/development/ocaml-modules/mlx/default.nix +++ b/pkgs/development/ocaml-modules/mlx/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { menhir ]; - meta = with lib; { + meta = { description = "OCaml syntax dialect which adds JSX syntax expressions"; homepage = "https://github.com/ocaml-mlx/mlx"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ Denommus ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ Denommus ]; }; } diff --git a/pkgs/development/ocaml-modules/mm/default.nix b/pkgs/development/ocaml-modules/mm/default.nix index f7e3eb323371..064a7ff4fba8 100644 --- a/pkgs/development/ocaml-modules/mm/default.nix +++ b/pkgs/development/ocaml-modules/mm/default.nix @@ -34,10 +34,10 @@ buildDunePackage rec { theora ]; # ocamlsdl is blocked in nixpkgs from building for ocaml >= 4.06 - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-mm"; description = "High-level library to create and manipulate multimedia streams"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/morbig/default.nix b/pkgs/development/ocaml-modules/morbig/default.nix index 5d95d4eaaf85..3d5e81721061 100644 --- a/pkgs/development/ocaml-modules/morbig/default.nix +++ b/pkgs/development/ocaml-modules/morbig/default.nix @@ -36,10 +36,10 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.4") yojson ]; - meta = with lib; { + meta = { homepage = "https://github.com/colis-anr/${pname}"; description = "Static parser for POSIX Shell"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ niols ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ niols ]; }; } diff --git a/pkgs/development/ocaml-modules/mtime/default.nix b/pkgs/development/ocaml-modules/mtime/default.nix index ff7e19c89ce0..1886491d8c3e 100644 --- a/pkgs/development/ocaml-modules/mtime/default.nix +++ b/pkgs/development/ocaml-modules/mtime/default.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "Monotonic wall-clock time for OCaml"; homepage = "https://erratique.ch/software/mtime"; inherit (ocaml.meta) platforms; - maintainers = [ maintainers.vbgl ]; - license = licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; + license = lib.licenses.bsd3; broken = !(lib.versionAtLeast ocaml.version "4.08"); }; } diff --git a/pkgs/development/ocaml-modules/netchannel/default.nix b/pkgs/development/ocaml-modules/netchannel/default.nix index e598b49ad778..83df8ad0446d 100644 --- a/pkgs/development/ocaml-modules/netchannel/default.nix +++ b/pkgs/development/ocaml-modules/netchannel/default.nix @@ -50,10 +50,10 @@ buildDunePackage rec { result ]; - meta = with lib; { + meta = { description = "Network device for reading and writing Ethernet frames via then Xen netfront/netback protocol"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; homepage = "https://github.com/mirage/mirage-net-xen"; }; } diff --git a/pkgs/development/ocaml-modules/notty/default.nix b/pkgs/development/ocaml-modules/notty/default.nix index 1fb11ee9737e..fb47a6f0bc9b 100644 --- a/pkgs/development/ocaml-modules/notty/default.nix +++ b/pkgs/development/ocaml-modules/notty/default.nix @@ -32,10 +32,10 @@ buildDunePackage rec { uutf ]; - meta = with lib; { + meta = { homepage = "https://github.com/pqwy/notty"; description = "Declarative terminal graphics for OCaml"; - license = licenses.isc; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/npy/default.nix b/pkgs/development/ocaml-modules/npy/default.nix index 624a97507495..763f159a20c3 100644 --- a/pkgs/development/ocaml-modules/npy/default.nix +++ b/pkgs/development/ocaml-modules/npy/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "OCaml implementation of the Npy format spec"; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.asl20; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix b/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix index 5bc2a9bfe69a..2940bac18f50 100644 --- a/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix @@ -67,8 +67,8 @@ else meta = with lib; { broken = true; # Not compatible with solo5 ≥ 0.7 description = "Freestanding OCaml runtime"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; homepage = "https://github.com/mirage/ocaml-freestanding"; platforms = map ({ arch, os }: "${arch}-${os}") ( cartesianProduct { diff --git a/pkgs/development/ocaml-modules/ocaml-gettext/default.nix b/pkgs/development/ocaml-modules/ocaml-gettext/default.nix index 93a91be6b7ed..2aea161c463d 100644 --- a/pkgs/development/ocaml-modules/ocaml-gettext/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-gettext/default.nix @@ -48,10 +48,10 @@ buildDunePackage (finalAttrs: { checkInputs = [ ounit2 ]; - meta = with lib; { + meta = { description = "OCaml Bindings to gettext"; homepage = "https://github.com/gildor478/ocaml-gettext"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; mainProgram = "ocaml-gettext"; }; diff --git a/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix b/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix index 584e1b307dda..4bbd89884f30 100644 --- a/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { mkdir -p $OCAMLFIND_DESTDIR/stublibs ''; - meta = with lib; { + meta = { description = "OCaml bindings for libvirt"; homepage = "https://libvirt.org/ocaml/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; inherit (ocaml.meta) platforms; broken = !(lib.versionAtLeast ocaml.version "4.02"); diff --git a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix index f9aab2144986..a9bc5972f19d 100644 --- a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix +++ b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix @@ -113,10 +113,10 @@ buildDunePackage rec { result ]; - meta = with lib; { + meta = { description = "Jsonrpc protocol implementation in OCaml"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-version/default.nix b/pkgs/development/ocaml-modules/ocaml-version/default.nix index 8c85239ee914..b3efb92d0b91 100644 --- a/pkgs/development/ocaml-modules/ocaml-version/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-version/default.nix @@ -21,10 +21,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.07"; duneVersion = "3"; - meta = with lib; { + meta = { description = "Manipulate, parse and generate OCaml compiler version strings"; homepage = "https://github.com/ocurrent/ocaml-version"; - license = licenses.isc; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/ocamlc-loc/default.nix b/pkgs/development/ocaml-modules/ocamlc-loc/default.nix index 47b1c6ffe75c..d5ac0d14796d 100644 --- a/pkgs/development/ocaml-modules/ocamlc-loc/default.nix +++ b/pkgs/development/ocaml-modules/ocamlc-loc/default.nix @@ -21,9 +21,9 @@ buildDunePackage { propagatedBuildInputs = [ dyn ]; - meta = with lib; { + meta = { description = "Parse ocaml compiler output into structured form"; - maintainers = [ maintainers.ulrikstrid ]; - license = licenses.mit; + maintainers = [ lib.maintainers.ulrikstrid ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-rpc-lib.nix b/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-rpc-lib.nix index dbef96fa1fa5..ce419f0c8c4a 100644 --- a/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-rpc-lib.nix +++ b/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-rpc-lib.nix @@ -28,11 +28,11 @@ buildDunePackage { sexplib0 ]; - meta = with lib; { + meta = { homepage = "https://github.com/ocaml-ppx/ocamlformat"; description = "Auto-formatter for OCaml code (RPC mode)"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Zimmi48 Julow ]; diff --git a/pkgs/development/ocaml-modules/ocamlgraph/default.nix b/pkgs/development/ocaml-modules/ocamlgraph/default.nix index 580b6894febb..05be14040291 100644 --- a/pkgs/development/ocaml-modules/ocamlgraph/default.nix +++ b/pkgs/development/ocaml-modules/ocamlgraph/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.08"; - meta = with lib; { + meta = { homepage = "https://github.com/backtracking/ocamlgraph"; description = "Graph library for OCaml"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/ocamline/default.nix b/pkgs/development/ocaml-modules/ocamline/default.nix index eb77721bf0a6..aaec4a22276c 100644 --- a/pkgs/development/ocaml-modules/ocamline/default.nix +++ b/pkgs/development/ocaml-modules/ocamline/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { propagatedBuildInputs = [ linenoise ]; - meta = with lib; { + meta = { homepage = "https://chrisnevers.github.io/ocamline/"; description = "Command line interface for user input"; - license = licenses.bsd3; - maintainers = with maintainers; [ mgttlinger ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mgttlinger ]; }; } diff --git a/pkgs/development/ocaml-modules/ocf/default.nix b/pkgs/development/ocaml-modules/ocf/default.nix index f1e5e2d48a42..d71741fa2e9a 100644 --- a/pkgs/development/ocaml-modules/ocf/default.nix +++ b/pkgs/development/ocaml-modules/ocf/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ yojson ]; - meta = with lib; { + meta = { description = "OCaml library to read and write configuration options in JSON syntax"; homepage = "https://zoggy.frama.io/ocf/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ regnat ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ regnat ]; }; } diff --git a/pkgs/development/ocaml-modules/ocplib-endian/default.nix b/pkgs/development/ocaml-modules/ocplib-endian/default.nix index 2d7ea6e26359..2b54da6f27e1 100644 --- a/pkgs/development/ocaml-modules/ocplib-endian/default.nix +++ b/pkgs/development/ocaml-modules/ocplib-endian/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { nativeBuildInputs = [ cppo ]; - meta = with lib; { + meta = { description = "Optimised functions to read and write int16/32/64"; homepage = "https://github.com/OCamlPro/ocplib-endian"; - license = licenses.lgpl21; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/octavius/default.nix b/pkgs/development/ocaml-modules/octavius/default.nix index fadb54519abf..1242d52fa5b7 100644 --- a/pkgs/development/ocaml-modules/octavius/default.nix +++ b/pkgs/development/ocaml-modules/octavius/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Ocamldoc comment syntax parser"; homepage = "https://github.com/ocaml-doc/octavius"; - license = licenses.isc; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/odig/default.nix b/pkgs/development/ocaml-modules/odig/default.nix index 6dca84177148..eee8e6f7f87b 100644 --- a/pkgs/development/ocaml-modules/odig/default.nix +++ b/pkgs/development/ocaml-modules/odig/default.nix @@ -22,7 +22,7 @@ buildTopkgPackage rec { b0 ]; - meta = with lib; { + meta = { description = "Lookup documentation of installed OCaml packages"; longDescription = '' odig is a command line tool to lookup documentation of installed OCaml @@ -30,7 +30,7 @@ buildTopkgPackage rec { cross-referenced `odoc` API documentation and manuals. ''; homepage = "https://erratique.ch/software/odig"; - license = licenses.isc; - maintainers = [ maintainers.Julow ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.Julow ]; }; } diff --git a/pkgs/development/ocaml-modules/ogg/default.nix b/pkgs/development/ocaml-modules/ogg/default.nix index 397584afa126..8b00e3c8850e 100644 --- a/pkgs/development/ocaml-modules/ogg/default.nix +++ b/pkgs/development/ocaml-modules/ogg/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ libogg ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-ogg"; description = "Bindings to libogg"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/opus/default.nix b/pkgs/development/ocaml-modules/opus/default.nix index 443b03c74a32..b54104c7576e 100644 --- a/pkgs/development/ocaml-modules/opus/default.nix +++ b/pkgs/development/ocaml-modules/opus/default.nix @@ -19,10 +19,10 @@ buildDunePackage { libopus.dev ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-opus"; description = "Bindings to libopus"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/otfm/default.nix b/pkgs/development/ocaml-modules/otfm/default.nix index 6d4e4a5ffbc3..ee9a4f5f765b 100644 --- a/pkgs/development/ocaml-modules/otfm/default.nix +++ b/pkgs/development/ocaml-modules/otfm/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "OpenType font decoder for OCaml"; longDescription = '' Otfm is an in-memory decoder for the OpenType font data format. It @@ -47,8 +47,8 @@ stdenv.mkDerivation { of them. ''; homepage = webpage; - license = licenses.bsd3; - maintainers = [ maintainers.jirkamarsik ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.jirkamarsik ]; mainProgram = "otftrip"; inherit (ocaml.meta) platforms; }; diff --git a/pkgs/development/ocaml-modules/otr/default.nix b/pkgs/development/ocaml-modules/otr/default.nix index 12c45fda978d..efeb335cc489 100644 --- a/pkgs/development/ocaml-modules/otr/default.nix +++ b/pkgs/development/ocaml-modules/otr/default.nix @@ -32,10 +32,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/hannesm/ocaml-otr"; description = "Off-the-record messaging protocol, purely in OCaml"; - license = licenses.bsd2; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/ounit2/default.nix b/pkgs/development/ocaml-modules/ounit2/default.nix index 7708bc1849af..3980c3a521fd 100644 --- a/pkgs/development/ocaml-modules/ounit2/default.nix +++ b/pkgs/development/ocaml-modules/ounit2/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/gildor478/ounit"; description = "Unit test framework for OCaml"; - license = licenses.mit; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/owee/default.nix b/pkgs/development/ocaml-modules/owee/default.nix index 0ada47f8e345..272f19066e11 100644 --- a/pkgs/development/ocaml-modules/owee/default.nix +++ b/pkgs/development/ocaml-modules/owee/default.nix @@ -14,11 +14,11 @@ buildDunePackage rec { hash = "sha256-Bk9iRfWZXV0vTx+cbSmS4v2+Pd4ygha67Hz6vUhXlA0="; }; - meta = with lib; { + meta = { description = "Experimental OCaml library to work with DWARF format"; homepage = "https://github.com/let-def/owee/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vbgl alizter ]; diff --git a/pkgs/development/ocaml-modules/owl-base/default.nix b/pkgs/development/ocaml-modules/owl-base/default.nix index d46a76987712..864a3fa5b870 100644 --- a/pkgs/development/ocaml-modules/owl-base/default.nix +++ b/pkgs/development/ocaml-modules/owl-base/default.nix @@ -17,12 +17,12 @@ buildDunePackage rec { minimalOCamlVersion = "4.10"; - meta = with lib; { + meta = { description = "Numerical computing library for Ocaml"; homepage = "https://ocaml.xyz"; changelog = "https://github.com/owlbarn/owl/releases"; - platforms = platforms.x86_64 ++ platforms.aarch64; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.mit; + platforms = lib.platforms.x86_64 ++ lib.platforms.aarch64; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/parany/default.nix b/pkgs/development/ocaml-modules/parany/default.nix index 1b0605a6269d..621b4a39df70 100644 --- a/pkgs/development/ocaml-modules/parany/default.nix +++ b/pkgs/development/ocaml-modules/parany/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ cpu ]; - meta = with lib; { + meta = { homepage = "https://github.com/UnixJunkie/parany"; description = "Generalized map/reduce for multicore computing"; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.lgpl2; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/development/ocaml-modules/parmap/default.nix b/pkgs/development/ocaml-modules/parmap/default.nix index 7babaab8b725..feb3884e2fcf 100644 --- a/pkgs/development/ocaml-modules/parmap/default.nix +++ b/pkgs/development/ocaml-modules/parmap/default.nix @@ -24,11 +24,11 @@ buildDunePackage rec { doCheck = false; # prevent running slow benchmarks - meta = with lib; { + meta = { description = "Library for multicore parallel programming"; downloadPage = "https://github.com/rdicosmo/parmap"; homepage = "https://rdicosmo.github.io/parmap"; - license = licenses.lgpl2; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/ocaml-modules/pbrt/default.nix b/pkgs/development/ocaml-modules/pbrt/default.nix index c025ee5d5bff..e1ba66ebc0c9 100644 --- a/pkgs/development/ocaml-modules/pbrt/default.nix +++ b/pkgs/development/ocaml-modules/pbrt/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { hash = "sha256-EXugdcjALukSjB31zAVG9WiN6GMGXi2jlhHWaZ+p+uM="; }; - meta = with lib; { + meta = { homepage = "https://github.com/mransan/ocaml-protoc"; description = "Runtime library for Protobuf tooling"; - license = licenses.mit; - maintainers = [ maintainers.vyorkin ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vyorkin ]; }; } diff --git a/pkgs/development/ocaml-modules/pcap-format/default.nix b/pkgs/development/ocaml-modules/pcap-format/default.nix index b8b93b7af56b..b254dbf9af96 100644 --- a/pkgs/development/ocaml-modules/pcap-format/default.nix +++ b/pkgs/development/ocaml-modules/pcap-format/default.nix @@ -32,10 +32,10 @@ buildDunePackage rec { ounit ]; - meta = with lib; { + meta = { description = "Decode and encode PCAP (packet capture) files"; homepage = "https://mirage.github.io/ocaml-pcap"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/pecu/default.nix b/pkgs/development/ocaml-modules/pecu/default.nix index 6f05ea5196a4..a01ee07beca6 100644 --- a/pkgs/development/ocaml-modules/pecu/default.nix +++ b/pkgs/development/ocaml-modules/pecu/default.nix @@ -29,10 +29,10 @@ buildDunePackage rec { astring ]; - meta = with lib; { + meta = { description = "Encoder/Decoder of Quoted-Printable (RFC2045 & RFC2047)"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/mirage/pecu"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/pgocaml/default.nix b/pkgs/development/ocaml-modules/pgocaml/default.nix index 454939a9d114..bd9f7a09a8d8 100644 --- a/pkgs/development/ocaml-modules/pgocaml/default.nix +++ b/pkgs/development/ocaml-modules/pgocaml/default.nix @@ -37,10 +37,10 @@ buildDunePackage rec { camlp-streams ]; - meta = with lib; { + meta = { description = "Interface to PostgreSQL databases for OCaml applications"; homepage = "https://github.com/darioteixeira/pgocaml"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/phylogenetics/default.nix b/pkgs/development/ocaml-modules/phylogenetics/default.nix index 122ca3e0416b..7d88a0b10132 100644 --- a/pkgs/development/ocaml-modules/phylogenetics/default.nix +++ b/pkgs/development/ocaml-modules/phylogenetics/default.nix @@ -45,11 +45,11 @@ buildDunePackage rec { ''; doCheck = true; - meta = with lib; { + meta = { description = "Algorithms and datastructures for phylogenetics"; homepage = "https://github.com/biocaml/phylogenetics"; - license = licenses.cecill-b; - maintainers = [ maintainers.bcdarwin ]; + license = lib.licenses.cecill-b; + maintainers = [ lib.maintainers.bcdarwin ]; mainProgram = "phylosim"; }; } diff --git a/pkgs/development/ocaml-modules/piqi-ocaml/default.nix b/pkgs/development/ocaml-modules/piqi-ocaml/default.nix index 74f01c35ce94..cdcde0f4f924 100644 --- a/pkgs/development/ocaml-modules/piqi-ocaml/default.nix +++ b/pkgs/development/ocaml-modules/piqi-ocaml/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Universal schema language and a collection of tools built around it. These are the ocaml bindings"; homepage = "https://piqi.org"; - license = licenses.asl20; - maintainers = [ maintainers.maurer ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.maurer ]; mainProgram = "piqic-ocaml"; }; } diff --git a/pkgs/development/ocaml-modules/piqi/default.nix b/pkgs/development/ocaml-modules/piqi/default.nix index 6a60fd9cf176..7456581b8971 100644 --- a/pkgs/development/ocaml-modules/piqi/default.nix +++ b/pkgs/development/ocaml-modules/piqi/default.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { "ocaml-install" ]; - meta = with lib; { + meta = { homepage = "https://piqi.org"; description = "Universal schema language and a collection of tools built around it"; - license = licenses.asl20; - maintainers = [ maintainers.maurer ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.maurer ]; broken = lib.versionAtLeast ocaml.version "5.0"; }; } diff --git a/pkgs/development/ocaml-modules/plotkicadsch/default.nix b/pkgs/development/ocaml-modules/plotkicadsch/default.nix index 1b7e1943aacf..9e5a199619e7 100644 --- a/pkgs/development/ocaml-modules/plotkicadsch/default.nix +++ b/pkgs/development/ocaml-modules/plotkicadsch/default.nix @@ -41,10 +41,10 @@ buildDunePackage { tyxml ]; - meta = with lib; { + meta = { description = "Tool to export Kicad Sch files to SVG pictures"; homepage = "https://github.com/jnavila/plotkicadsch"; - license = licenses.isc; - maintainers = with maintainers; [ leungbk ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ leungbk ]; }; } diff --git a/pkgs/development/ocaml-modules/portaudio/default.nix b/pkgs/development/ocaml-modules/portaudio/default.nix index 208796727925..07d32d55e6ef 100644 --- a/pkgs/development/ocaml-modules/portaudio/default.nix +++ b/pkgs/development/ocaml-modules/portaudio/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ portaudio ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-portaudio"; description = "Bindings for the portaudio library which provides high-level functions for using soundcards"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/pp/default.nix b/pkgs/development/ocaml-modules/pp/default.nix index 0204347bb4b0..15d553de737e 100644 --- a/pkgs/development/ocaml-modules/pp/default.nix +++ b/pkgs/development/ocaml-modules/pp/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { checkInputs = [ ppx_expect ]; doCheck = true; - meta = with lib; { + meta = { description = "Alternative pretty printing library to the Format module of the OCaml standard library"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/pprint/default.nix b/pkgs/development/ocaml-modules/pprint/default.nix index a542bf2e2ec1..0284d133d73d 100644 --- a/pkgs/development/ocaml-modules/pprint/default.nix +++ b/pkgs/development/ocaml-modules/pprint/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { sha256 = "sha256-avf71vAgCL1MU8O7Q3FNN3wEdCDtbNZP0ipETnn8AqA="; }; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "OCaml library for pretty-printing textual documents"; - license = licenses.lgpl2Only; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.lgpl2Only; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_blob/default.nix b/pkgs/development/ocaml-modules/ppx_blob/default.nix index ec417f79e5ae..3ee11e13618c 100644 --- a/pkgs/development/ocaml-modules/ppx_blob/default.nix +++ b/pkgs/development/ocaml-modules/ppx_blob/default.nix @@ -22,9 +22,9 @@ buildDunePackage rec { propagatedBuildInputs = [ ppxlib ]; doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/johnwhitington/ppx_blob"; description = "OCaml ppx to include binary data from a file as a string"; - license = licenses.unlicense; + license = lib.licenses.unlicense; }; } diff --git a/pkgs/development/ocaml-modules/ppx_cstubs/default.nix b/pkgs/development/ocaml-modules/ppx_cstubs/default.nix index e8ed1e4540e2..2bdc90b4a20a 100644 --- a/pkgs/development/ocaml-modules/ppx_cstubs/default.nix +++ b/pkgs/development/ocaml-modules/ppx_cstubs/default.nix @@ -45,12 +45,12 @@ buildDunePackage rec { ctypes ]; - meta = with lib; { + meta = { homepage = "https://github.com/fdopen/ppx_cstubs"; changelog = "https://github.com/fdopen/ppx_cstubs/raw/${version}/CHANGES.md"; description = "Preprocessor for easier stub generation with ocaml-ctypes"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.osener ]; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.osener ]; broken = lib.versionAtLeast ocaml.version "5.2"; }; } diff --git a/pkgs/development/ocaml-modules/ppx_deriving/default.nix b/pkgs/development/ocaml-modules/ppx_deriving/default.nix index 03a236a95518..3a7b4586bc72 100644 --- a/pkgs/development/ocaml-modules/ppx_deriving/default.nix +++ b/pkgs/development/ocaml-modules/ppx_deriving/default.nix @@ -66,9 +66,9 @@ buildDunePackage rec { (if lib.versionAtLeast version "5.2" then ounit2 else ounit) ]; - meta = with lib; { + meta = { description = "Library simplifying type-driven code generation on OCaml >=4.02"; - maintainers = [ maintainers.maurer ]; - license = licenses.mit; + maintainers = [ lib.maintainers.maurer ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/ppx_deriving_cmdliner/default.nix b/pkgs/development/ocaml-modules/ppx_deriving_cmdliner/default.nix index 650bca436065..ce489db2ff92 100644 --- a/pkgs/development/ocaml-modules/ppx_deriving_cmdliner/default.nix +++ b/pkgs/development/ocaml-modules/ppx_deriving_cmdliner/default.nix @@ -47,11 +47,11 @@ buildDunePackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Ppx_deriving plugin for generating command line interfaces from types for OCaml"; homepage = "https://github.com/hammerlab/ppx_deriving_cmdliner"; - license = licenses.asl20; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.romildo ]; broken = lib.versionAtLeast ppxlib.version "0.36"; }; } diff --git a/pkgs/development/ocaml-modules/ppx_deriving_protobuf/default.nix b/pkgs/development/ocaml-modules/ppx_deriving_protobuf/default.nix index 22c859f364b1..54db24ea6290 100644 --- a/pkgs/development/ocaml-modules/ppx_deriving_protobuf/default.nix +++ b/pkgs/development/ocaml-modules/ppx_deriving_protobuf/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { ]; propagatedBuildInputs = [ ppx_deriving ]; - meta = with lib; { + meta = { homepage = "https://github.com/ocaml-ppx/ppx_deriving_protobuf"; description = "Protocol Buffers codec generator for OCaml"; - license = licenses.mit; - maintainers = [ maintainers.vyorkin ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vyorkin ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix b/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix index ce2fd8cead1b..8a323feb06d4 100644 --- a/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix +++ b/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix @@ -33,10 +33,10 @@ buildDunePackage { ]; doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/ocaml-rpc"; description = "Ppx deriver for ocaml-rpc"; - license = licenses.isc; - maintainers = [ maintainers.vyorkin ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.vyorkin ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_gen_rec/default.nix b/pkgs/development/ocaml-modules/ppx_gen_rec/default.nix index 8f92df791b44..929ac87def60 100644 --- a/pkgs/development/ocaml-modules/ppx_gen_rec/default.nix +++ b/pkgs/development/ocaml-modules/ppx_gen_rec/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { buildInputs = [ ppxlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/flowtype/ocaml-ppx_gen_rec"; description = "Ppx rewriter that transforms a recursive module expression into a struct"; - license = licenses.mit; - maintainers = with maintainers; [ frontsideair ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ frontsideair ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_show/default.nix b/pkgs/development/ocaml-modules/ppx_show/default.nix index 8874f2f4253a..2df2ef6412b1 100644 --- a/pkgs/development/ocaml-modules/ppx_show/default.nix +++ b/pkgs/development/ocaml-modules/ppx_show/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { ppxlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/thierry-martinez/${pname}"; description = "OCaml PPX deriver for deriving show based on ppxlib"; - license = licenses.bsd2; - maintainers = with maintainers; [ niols ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ niols ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix index 086b0da2576f..863be71eceef 100644 --- a/pkgs/development/ocaml-modules/ppx_tools/default.nix +++ b/pkgs/development/ocaml-modules/ppx_tools/default.nix @@ -56,11 +56,11 @@ let inherit (param) sha256; }; pname = "ppx_tools"; - meta = with lib; { + meta = { description = "Tools for authors of ppx rewriters"; homepage = "https://www.lexifi.com/ppx_tools"; - license = licenses.mit; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vbgl ]; broken = lib.versionAtLeast ocaml.version "5.2"; }; in diff --git a/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix b/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix index 3a887bdd5aeb..728f95c0e7b6 100644 --- a/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix +++ b/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ ocaml-migrate-parsetree ]; - meta = with lib; { + meta = { homepage = "https://github.com/let-def/ppx_tools_versioned"; description = "Tools for authors of syntactic tools (such as ppx rewriters)"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_yojson_conv/default.nix b/pkgs/development/ocaml-modules/ppx_yojson_conv/default.nix index 616ecf06f5f3..5e7fa5d58574 100644 --- a/pkgs/development/ocaml-modules/ppx_yojson_conv/default.nix +++ b/pkgs/development/ocaml-modules/ppx_yojson_conv/default.nix @@ -29,10 +29,10 @@ buildDunePackage { ppxlib ]; - meta = with lib; { + meta = { description = "PPX syntax extension that generates code for converting OCaml types to and from Yojson"; homepage = "https://github.com/janestreet/ppx_yojson_conv"; - maintainers = with maintainers; [ djacu ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ djacu ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_yojson_conv_lib/default.nix b/pkgs/development/ocaml-modules/ppx_yojson_conv_lib/default.nix index 22fe2ef279f2..6ae5cbb1b2b8 100644 --- a/pkgs/development/ocaml-modules/ppx_yojson_conv_lib/default.nix +++ b/pkgs/development/ocaml-modules/ppx_yojson_conv_lib/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ yojson ]; - meta = with lib; { + meta = { description = "Runtime lib for ppx_yojson_conv"; homepage = "https://github.com/janestreet/ppx_yojson_conv_lib"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/pratter/default.nix b/pkgs/development/ocaml-modules/pratter/default.nix index 375ab1d4ed31..18ce52f9eb4d 100644 --- a/pkgs/development/ocaml-modules/pratter/default.nix +++ b/pkgs/development/ocaml-modules/pratter/default.nix @@ -28,11 +28,11 @@ buildDunePackage rec { ]; doCheck = true; - meta = with lib; { + meta = { description = "Extended Pratt parser"; homepage = "https://github.com/gabrielhdt/pratter"; - license = licenses.bsd3; + license = lib.licenses.bsd3; changelog = "https://github.com/gabrielhdt/pratter/raw/${version}/CHANGELOG.md"; - maintainers = with maintainers; [ bcdarwin ]; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/ocaml-modules/progress/default.nix b/pkgs/development/ocaml-modules/progress/default.nix index eb0601917a67..af1e0925d150 100644 --- a/pkgs/development/ocaml-modules/progress/default.nix +++ b/pkgs/development/ocaml-modules/progress/default.nix @@ -33,10 +33,10 @@ buildDunePackage { astring ]; - meta = with lib; { + meta = { description = "Progress bar library for OCaml"; homepage = "https://github.com/CraigFe/progress"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/pulseaudio/default.nix b/pkgs/development/ocaml-modules/pulseaudio/default.nix index 3afa4d4fee7f..6ec1b4f0cf4d 100644 --- a/pkgs/development/ocaml-modules/pulseaudio/default.nix +++ b/pkgs/development/ocaml-modules/pulseaudio/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ pulseaudio ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-pulseaudio"; description = "Bindings to Pulseaudio client library"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/pure-splitmix/default.nix b/pkgs/development/ocaml-modules/pure-splitmix/default.nix index 8b929da7331c..99b8206b79c1 100644 --- a/pkgs/development/ocaml-modules/pure-splitmix/default.nix +++ b/pkgs/development/ocaml-modules/pure-splitmix/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/Lysxia/pure-splitmix"; description = "Purely functional splittable PRNG"; - license = licenses.mit; - maintainers = [ maintainers.ulrikstrid ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/react/default.nix b/pkgs/development/ocaml-modules/react/default.nix index 9ca397aafdd6..cb096401a66c 100644 --- a/pkgs/development/ocaml-modules/react/default.nix +++ b/pkgs/development/ocaml-modules/react/default.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { homepage = "https://erratique.ch/software/react"; description = "Applicative events and signals for OCaml"; - license = licenses.bsd3; + license = lib.licenses.bsd3; inherit (ocaml.meta) platforms; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ vbmithr gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/reactivedata/default.nix b/pkgs/development/ocaml-modules/reactivedata/default.nix index 8d01acc1afb9..73e382d0a59d 100644 --- a/pkgs/development/ocaml-modules/reactivedata/default.nix +++ b/pkgs/development/ocaml-modules/reactivedata/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ react ]; - meta = with lib; { + meta = { description = "OCaml module for functional reactive programming (FRP) based on React"; homepage = "https://github.com/ocsigen/reactiveData"; - license = licenses.lgpl21; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/rebez/default.nix b/pkgs/development/ocaml-modules/rebez/default.nix index 0397eb96d5e3..b3602e7a1b0b 100644 --- a/pkgs/development/ocaml-modules/rebez/default.nix +++ b/pkgs/development/ocaml-modules/rebez/default.nix @@ -18,10 +18,10 @@ buildDunePackage { nativeBuildInputs = [ reason ]; - meta = with lib; { + meta = { description = "Cubic bezier implementation in Reason / OCaml"; homepage = "https://github.com/jchavarri/rebez/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "RebezApp.exe"; }; diff --git a/pkgs/development/ocaml-modules/reperf/default.nix b/pkgs/development/ocaml-modules/reperf/default.nix index 2d1cbed11861..20ad0486d57c 100644 --- a/pkgs/development/ocaml-modules/reperf/default.nix +++ b/pkgs/development/ocaml-modules/reperf/default.nix @@ -27,7 +27,7 @@ buildDunePackage { printbox-text ]; - meta = with lib; { + meta = { description = "Native Reason + JSOO cross-platform performance benchmarking tools"; longDescription = '' Inspired by the core_bench tools from Janestreet. @@ -42,6 +42,6 @@ buildDunePackage { ''; homepage = "https://github.com/bryphe/reperf"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/routes/default.nix b/pkgs/development/ocaml-modules/routes/default.nix index 122c002643a0..04ef6c1e94f1 100644 --- a/pkgs/development/ocaml-modules/routes/default.nix +++ b/pkgs/development/ocaml-modules/routes/default.nix @@ -16,11 +16,11 @@ buildDunePackage rec { hash = "sha256-O2KdaYwrAOUEwTtM14NUgGNxnc8BWAycP1EEuB6w1og="; }; - meta = with lib; { + meta = { description = "Typed routing for OCaml applications"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://anuragsoni.github.io/routes"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ulrikstrid anmonteiro ]; diff --git a/pkgs/development/ocaml-modules/rpclib/default.nix b/pkgs/development/ocaml-modules/rpclib/default.nix index e6f25b2c30f8..d65d94e97f30 100644 --- a/pkgs/development/ocaml-modules/rpclib/default.nix +++ b/pkgs/development/ocaml-modules/rpclib/default.nix @@ -35,10 +35,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/ocaml-rpc"; description = "Light library to deal with RPCs in OCaml"; - license = licenses.isc; - maintainers = [ maintainers.vyorkin ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.vyorkin ]; }; } diff --git a/pkgs/development/ocaml-modules/sail/default.nix b/pkgs/development/ocaml-modules/sail/default.nix index b93d8bdd1954..80adca2b2eee 100644 --- a/pkgs/development/ocaml-modules/sail/default.nix +++ b/pkgs/development/ocaml-modules/sail/default.nix @@ -76,10 +76,10 @@ buildDunePackage { wrapProgram $out/bin/sail --set SAIL_DIR $out/share/sail ''; - meta = with lib; { + meta = { homepage = "https://github.com/rems-project/sail"; description = "Language for describing the instruction-set architecture (ISA) semantics of processors"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/ocaml-modules/sawja/default.nix b/pkgs/development/ocaml-modules/sawja/default.nix index 5bb16cd6e86b..197e1627d1ff 100644 --- a/pkgs/development/ocaml-modules/sawja/default.nix +++ b/pkgs/development/ocaml-modules/sawja/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { propagatedBuildInputs = [ javalib ]; - meta = with lib; { + meta = { description = "Library written in OCaml, relying on Javalib to provide a high level representation of Java bytecode programs"; homepage = "http://sawja.inria.fr/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.vbgl ]; inherit (ocaml.meta) platforms; broken = !(lib.versionAtLeast ocaml.version "4.08"); }; diff --git a/pkgs/development/ocaml-modules/secp256k1/default.nix b/pkgs/development/ocaml-modules/secp256k1/default.nix index d27d260a3723..764cd379f44b 100644 --- a/pkgs/development/ocaml-modules/secp256k1/default.nix +++ b/pkgs/development/ocaml-modules/secp256k1/default.nix @@ -34,10 +34,10 @@ buildDunePackage rec { secp256k1 ]; - meta = with lib; { + meta = { homepage = "https://github.com/dakk/secp256k1-ml"; description = "Elliptic curve library secp256k1 wrapper for Ocaml"; - license = licenses.mit; - maintainers = [ maintainers.vyorkin ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vyorkin ]; }; } diff --git a/pkgs/development/ocaml-modules/seqes/default.nix b/pkgs/development/ocaml-modules/seqes/default.nix index 77779c127e14..dd6af79782cd 100644 --- a/pkgs/development/ocaml-modules/seqes/default.nix +++ b/pkgs/development/ocaml-modules/seqes/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { alcotest ]; - meta = with lib; { + meta = { description = "Variations of the Seq module with monads folded into the type"; homepage = "https://gitlab.com/nomadic-labs/seqes"; - license = licenses.lgpl2; # Same as OCaml - maintainers = [ maintainers.ulrikstrid ]; + license = lib.licenses.lgpl2; # Same as OCaml + maintainers = [ lib.maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/sha/default.nix b/pkgs/development/ocaml-modules/sha/default.nix index c7f646d46908..67531cac0b51 100644 --- a/pkgs/development/ocaml-modules/sha/default.nix +++ b/pkgs/development/ocaml-modules/sha/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { ounit2 ]; - meta = with lib; { + meta = { description = "Binding for SHA interface code in OCaml"; homepage = "https://github.com/djs55/ocaml-sha/"; - license = licenses.isc; - maintainers = with maintainers; [ arthurteisseire ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ arthurteisseire ]; }; } diff --git a/pkgs/development/ocaml-modules/shared-memory-ring/default.nix b/pkgs/development/ocaml-modules/shared-memory-ring/default.nix index ea64b87f062f..10a67293011f 100644 --- a/pkgs/development/ocaml-modules/shared-memory-ring/default.nix +++ b/pkgs/development/ocaml-modules/shared-memory-ring/default.nix @@ -33,10 +33,10 @@ buildDunePackage rec { ounit ]; - meta = with lib; { + meta = { description = "Shared memory rings for RPC and bytestream communications"; - license = licenses.isc; + license = lib.licenses.isc; homepage = "https://github.com/mirage/shared-memory-ring"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/shine/default.nix b/pkgs/development/ocaml-modules/shine/default.nix index 97fea591020c..c21bfed34012 100644 --- a/pkgs/development/ocaml-modules/shine/default.nix +++ b/pkgs/development/ocaml-modules/shine/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ shine ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-shine"; description = "Bindings to the fixed-point mp3 encoding library shine"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/simple-diff/default.nix b/pkgs/development/ocaml-modules/simple-diff/default.nix index 0a578f28b2b1..6f0da0d593a6 100644 --- a/pkgs/development/ocaml-modules/simple-diff/default.nix +++ b/pkgs/development/ocaml-modules/simple-diff/default.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { homepage = "https://github.com/gjaldon/simple_diff"; description = "Simple_diff is a pure OCaml diffing algorithm"; - license = licenses.isc; - maintainers = with maintainers; [ ulrikstrid ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/sodium/default.nix b/pkgs/development/ocaml-modules/sodium/default.nix index 77b91c113790..089caac7ac3d 100644 --- a/pkgs/development/ocaml-modules/sodium/default.nix +++ b/pkgs/development/ocaml-modules/sodium/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { hardeningDisable = lib.optional stdenv.hostPlatform.isDarwin "strictoverflow"; - meta = with lib; { + meta = { homepage = "https://github.com/dsheets/ocaml-sodium"; description = "Binding to libsodium 1.0.9+"; inherit (ocaml.meta) platforms; - maintainers = [ maintainers.rixed ]; + maintainers = [ lib.maintainers.rixed ]; broken = lib.versionAtLeast ocaml.version "5.0"; }; } diff --git a/pkgs/development/ocaml-modules/sosa/default.nix b/pkgs/development/ocaml-modules/sosa/default.nix index 5659bb4fa380..9f4453d12e57 100644 --- a/pkgs/development/ocaml-modules/sosa/default.nix +++ b/pkgs/development/ocaml-modules/sosa/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "http://www.hammerlab.org/docs/sosa/master/index.html"; description = "Sane OCaml String API"; - license = licenses.isc; - maintainers = [ maintainers.alexfmpe ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.alexfmpe ]; broken = !(lib.versionOlder ocaml.version "4.02"); }; } diff --git a/pkgs/development/ocaml-modules/soundtouch/default.nix b/pkgs/development/ocaml-modules/soundtouch/default.nix index db7cb1de1060..692e843660d4 100644 --- a/pkgs/development/ocaml-modules/soundtouch/default.nix +++ b/pkgs/development/ocaml-modules/soundtouch/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ soundtouch ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-soundtouch"; description = "Bindings for the soundtouch library which provides functions for changing pitch and timestretching audio data"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/speex/default.nix b/pkgs/development/ocaml-modules/speex/default.nix index 817ff4cd78f8..99a427d5fa5d 100644 --- a/pkgs/development/ocaml-modules/speex/default.nix +++ b/pkgs/development/ocaml-modules/speex/default.nix @@ -17,10 +17,10 @@ buildDunePackage { speex.dev ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-speex"; description = "Bindings to libspeex"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/sqlite3/default.nix b/pkgs/development/ocaml-modules/sqlite3/default.nix index 8ab95ae39f76..b7aaadbb3d94 100644 --- a/pkgs/development/ocaml-modules/sqlite3/default.nix +++ b/pkgs/development/ocaml-modules/sqlite3/default.nix @@ -24,11 +24,11 @@ buildDunePackage rec { sqlite ]; - meta = with lib; { + meta = { homepage = "http://mmottl.github.io/sqlite3-ocaml/"; description = "OCaml bindings to the SQLite 3 database access library"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/syslog-message/default.nix b/pkgs/development/ocaml-modules/syslog-message/default.nix index 33c71b455f8a..cc92dd991f96 100644 --- a/pkgs/development/ocaml-modules/syslog-message/default.nix +++ b/pkgs/development/ocaml-modules/syslog-message/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { qcheck ]; - meta = with lib; { + meta = { description = "Syslog message parser"; homepage = "https://github.com/verbosemode/syslog-message"; - license = licenses.bsd2; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/syslog/default.nix b/pkgs/development/ocaml-modules/syslog/default.nix index 293e508c283f..2d0c51a6ac37 100644 --- a/pkgs/development/ocaml-modules/syslog/default.nix +++ b/pkgs/development/ocaml-modules/syslog/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { hash = "sha256-WybNZBPhv4fhjzzb95E+6ZHcZUnfROLlNF3PMBGO9ys="; }; - meta = with lib; { + meta = { homepage = "https://github.com/geneanet/ocaml-syslog"; description = "Simple wrapper to access the system logger from OCaml"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.rixed ]; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.rixed ]; }; } diff --git a/pkgs/development/ocaml-modules/taglib/default.nix b/pkgs/development/ocaml-modules/taglib/default.nix index 8492f5cbfcf5..87375a77bff5 100644 --- a/pkgs/development/ocaml-modules/taglib/default.nix +++ b/pkgs/development/ocaml-modules/taglib/default.nix @@ -28,13 +28,13 @@ buildDunePackage rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-taglib"; description = "Bindings for the taglib library which provides functions for reading tags in headers of audio files"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus ocamlLgplLinkingException ]; # GNU Library Public License 2 Linking Exception - maintainers = with maintainers; [ dandellion ]; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/tcpip/default.nix b/pkgs/development/ocaml-modules/tcpip/default.nix index 50705a862f16..31337aee73b9 100644 --- a/pkgs/development/ocaml-modules/tcpip/default.nix +++ b/pkgs/development/ocaml-modules/tcpip/default.nix @@ -77,10 +77,10 @@ buildDunePackage rec { ]; __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "OCaml TCP/IP networking stack, used in MirageOS"; homepage = "https://github.com/mirage/mirage-tcpip"; - maintainers = [ maintainers.sternenseemann ]; - license = licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; + license = lib.licenses.isc; }; } diff --git a/pkgs/development/ocaml-modules/tdigest/default.nix b/pkgs/development/ocaml-modules/tdigest/default.nix index b414744f617b..1c52e04892fa 100644 --- a/pkgs/development/ocaml-modules/tdigest/default.nix +++ b/pkgs/development/ocaml-modules/tdigest/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/SGrondin/${pname}"; description = "OCaml implementation of the T-Digest algorithm"; - license = licenses.mit; - maintainers = with maintainers; [ niols ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ niols ]; }; } diff --git a/pkgs/development/ocaml-modules/telegraml/default.nix b/pkgs/development/ocaml-modules/telegraml/default.nix index 95d5d945886b..5fbbf1d3d25c 100644 --- a/pkgs/development/ocaml-modules/telegraml/default.nix +++ b/pkgs/development/ocaml-modules/telegraml/default.nix @@ -30,10 +30,10 @@ buildDunePackage { yojson ]; - meta = with lib; { + meta = { description = "OCaml library implementing the Telegram bot API"; homepage = "https://github.com/nv-vn/TelegraML/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/terminal/default.nix b/pkgs/development/ocaml-modules/terminal/default.nix index ac9ddd453970..3fa69560630c 100644 --- a/pkgs/development/ocaml-modules/terminal/default.nix +++ b/pkgs/development/ocaml-modules/terminal/default.nix @@ -33,10 +33,10 @@ buildDunePackage rec { fmt ]; - meta = with lib; { + meta = { description = "Basic utilities for interacting with terminals"; homepage = "https://github.com/CraigFe/progress"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/terminal_size/default.nix b/pkgs/development/ocaml-modules/terminal_size/default.nix index 305d9743fa4c..96b3c7404bcf 100644 --- a/pkgs/development/ocaml-modules/terminal_size/default.nix +++ b/pkgs/development/ocaml-modules/terminal_size/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { checkInputs = [ alcotest ]; doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = with lib; { + meta = { description = "Get the dimensions of the terminal"; homepage = "https://github.com/cryptosense/terminal_size"; - license = licenses.bsd2; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/tezos-base58/default.nix b/pkgs/development/ocaml-modules/tezos-base58/default.nix index ff6390926423..92c46f1db920 100644 --- a/pkgs/development/ocaml-modules/tezos-base58/default.nix +++ b/pkgs/development/ocaml-modules/tezos-base58/default.nix @@ -25,11 +25,11 @@ buildDunePackage rec { fmt ]; - meta = with lib; { + meta = { description = "Base58 encoding for Tezos"; homepage = "https://github.com/tarides/tezos-base58/"; - license = licenses.mit; - maintainers = with maintainers; [ bezmuth ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bezmuth ]; }; } diff --git a/pkgs/development/ocaml-modules/theora/default.nix b/pkgs/development/ocaml-modules/theora/default.nix index e0e96710aafb..c8c0c6fc110b 100644 --- a/pkgs/development/ocaml-modules/theora/default.nix +++ b/pkgs/development/ocaml-modules/theora/default.nix @@ -17,10 +17,10 @@ buildDunePackage { libtheora ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-theora"; description = "Bindings to libtheora"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/timed/default.nix b/pkgs/development/ocaml-modules/timed/default.nix index d68f85ca9fb1..67648a7b5c74 100644 --- a/pkgs/development/ocaml-modules/timed/default.nix +++ b/pkgs/development/ocaml-modules/timed/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "Timed references for imperative state"; homepage = "https://github.com/rlepigre/ocaml-timed"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/ocaml-modules/tls/default.nix b/pkgs/development/ocaml-modules/tls/default.nix index c2f857960119..aad75e3e3e9c 100644 --- a/pkgs/development/ocaml-modules/tls/default.nix +++ b/pkgs/development/ocaml-modules/tls/default.nix @@ -46,10 +46,10 @@ buildDunePackage rec { ounit2 ]; - meta = with lib; { + meta = { homepage = "https://github.com/mirleft/ocaml-tls"; description = "TLS in pure OCaml"; - license = licenses.bsd2; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/torch/default.nix b/pkgs/development/ocaml-modules/torch/default.nix index 6ac2867ac1a7..6138fb8a69bc 100644 --- a/pkgs/development/ocaml-modules/torch/default.nix +++ b/pkgs/development/ocaml-modules/torch/default.nix @@ -60,11 +60,11 @@ buildDunePackage rec { doCheck = !stdenv.hostPlatform.isAarch64; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Ocaml bindings to Pytorch"; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.asl20; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.asl20; broken = true; # Not compatible with libtorch ≥ 2.3.0 }; } diff --git a/pkgs/development/ocaml-modules/tsdl-image/default.nix b/pkgs/development/ocaml-modules/tsdl-image/default.nix index 8ee97c9aa4dd..2521f4b4dd1e 100644 --- a/pkgs/development/ocaml-modules/tsdl-image/default.nix +++ b/pkgs/development/ocaml-modules/tsdl-image/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { tsdl ]; - meta = with lib; { + meta = { description = "OCaml SDL2_image bindings to go with Tsdl"; homepage = "https://github.com/sanette/tsdl-image"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/tsdl-mixer/default.nix b/pkgs/development/ocaml-modules/tsdl-mixer/default.nix index fbe0f16ff0c9..8074383f19b8 100644 --- a/pkgs/development/ocaml-modules/tsdl-mixer/default.nix +++ b/pkgs/development/ocaml-modules/tsdl-mixer/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { tsdl ]; - meta = with lib; { + meta = { description = "SDL2_mixer bindings to go with Tsdl"; homepage = "https://github.com/sanette/tsdl-mixer"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/tsdl-ttf/default.nix b/pkgs/development/ocaml-modules/tsdl-ttf/default.nix index 17b5e2006b0c..e885d2ce8566 100644 --- a/pkgs/development/ocaml-modules/tsdl-ttf/default.nix +++ b/pkgs/development/ocaml-modules/tsdl-ttf/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { tsdl ]; - meta = with lib; { + meta = { description = "SDL2_ttf bindings for Ocaml with Tsdl"; homepage = "https://github.com/sanette/tsdl-ttf"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/tsdl/default.nix b/pkgs/development/ocaml-modules/tsdl/default.nix index d5b5517411f1..b1de7d37ea6f 100644 --- a/pkgs/development/ocaml-modules/tsdl/default.nix +++ b/pkgs/development/ocaml-modules/tsdl/default.nix @@ -55,10 +55,10 @@ stdenv.mkDerivation { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { homepage = webpage; description = "Thin bindings to the cross-platform SDL library"; - license = licenses.isc; + license = lib.licenses.isc; inherit (ocaml.meta) platforms; broken = lib.versionOlder ocaml.version "4.03"; }; diff --git a/pkgs/development/ocaml-modules/twt/default.nix b/pkgs/development/ocaml-modules/twt/default.nix index eb30e395c749..3965d87e2834 100644 --- a/pkgs/development/ocaml-modules/twt/default.nix +++ b/pkgs/development/ocaml-modules/twt/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { description = "“The Whitespace Thing” for OCaml"; homepage = "http://people.csail.mit.edu/mikelin/ocaml+twt/"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "ocaml+twt"; broken = lib.versionAtLeast ocaml.version "5.0"; inherit (ocaml.meta) platforms; diff --git a/pkgs/development/ocaml-modules/tyxml/default.nix b/pkgs/development/ocaml-modules/tyxml/default.nix index 5d1b6423e7cf..13b9351ca824 100644 --- a/pkgs/development/ocaml-modules/tyxml/default.nix +++ b/pkgs/development/ocaml-modules/tyxml/default.nix @@ -20,11 +20,11 @@ buildDunePackage rec { re ]; - meta = with lib; { + meta = { homepage = "http://ocsigen.org/tyxml/"; description = "Library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing"; - license = licenses.lgpl21; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ gal_bolle vbgl ]; diff --git a/pkgs/development/ocaml-modules/unix-errno/default.nix b/pkgs/development/ocaml-modules/unix-errno/default.nix index 5a6ce57cc62a..acec4585877b 100644 --- a/pkgs/development/ocaml-modules/unix-errno/default.nix +++ b/pkgs/development/ocaml-modules/unix-errno/default.nix @@ -24,13 +24,13 @@ buildDunePackage rec { result ]; - meta = with lib; { + meta = { homepage = "https://github.com/xapi-project/ocaml-unix-errno"; # This is the repo used in the opam package description = "Unix errno types, maps, and support for OCaml"; - license = with licenses; [ + license = with lib.licenses; [ isc lgpl21Only ]; # All the files indicate ISC, but there's an LGPL LICENSE file - maintainers = with maintainers; [ dandellion ]; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/uucd/default.nix b/pkgs/development/ocaml-modules/uucd/default.nix index 19fef9d6bd44..b506fdf70e8d 100644 --- a/pkgs/development/ocaml-modules/uucd/default.nix +++ b/pkgs/development/ocaml-modules/uucd/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { propagatedBuildInputs = [ xmlm ]; - meta = with lib; { + meta = { description = "OCaml module to decode the data of the Unicode character database from its XML representation"; homepage = webpage; inherit (ocaml.meta) platforms; - maintainers = [ maintainers.vbgl ]; - license = licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/ocaml-modules/uucp/default.nix b/pkgs/development/ocaml-modules/uucp/default.nix index 638342679241..8e65dd942c4c 100644 --- a/pkgs/development/ocaml-modules/uucp/default.nix +++ b/pkgs/development/ocaml-modules/uucp/default.nix @@ -66,11 +66,11 @@ else ''; checkInputs = [ uucd ]; - meta = with lib; { + meta = { description = "OCaml library providing efficient access to a selection of character properties of the Unicode character database"; homepage = webpage; inherit (ocaml.meta) platforms; - license = licenses.bsd3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/uuidm/default.nix b/pkgs/development/ocaml-modules/uuidm/default.nix index 6f203bdc5832..e0b3da947b52 100644 --- a/pkgs/development/ocaml-modules/uuidm/default.nix +++ b/pkgs/development/ocaml-modules/uuidm/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "OCaml module implementing 128 bits universally unique identifiers version 3, 5 (name based with MD5, SHA-1 hashing) and 4 (random based) according to RFC 4122"; homepage = "https://erratique.ch/software/uuidm"; - license = licenses.bsd3; - maintainers = [ maintainers.maurer ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.maurer ]; mainProgram = "uuidtrip"; inherit (ocaml.meta) platforms; broken = !(lib.versionAtLeast ocaml.version "4.08"); diff --git a/pkgs/development/ocaml-modules/uunf/default.nix b/pkgs/development/ocaml-modules/uunf/default.nix index 522a001f4a4d..c0d1f67b1a22 100644 --- a/pkgs/development/ocaml-modules/uunf/default.nix +++ b/pkgs/development/ocaml-modules/uunf/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation { inherit (topkg) installPhase; - meta = with lib; { + meta = { description = "OCaml module for normalizing Unicode text"; homepage = webpage; - license = licenses.bsd3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "unftrip"; inherit (ocaml.meta) platforms; broken = lib.versionOlder ocaml.version "4.03"; diff --git a/pkgs/development/ocaml-modules/uuseg/default.nix b/pkgs/development/ocaml-modules/uuseg/default.nix index 994f2272faaf..3c674459cd1e 100644 --- a/pkgs/development/ocaml-modules/uuseg/default.nix +++ b/pkgs/development/ocaml-modules/uuseg/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { inherit (topkg) installPhase; - meta = with lib; { + meta = { description = "OCaml library for segmenting Unicode text"; homepage = webpage; - license = licenses.bsd3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "usegtrip"; inherit (ocaml.meta) platforms; }; diff --git a/pkgs/development/ocaml-modules/uutf/default.nix b/pkgs/development/ocaml-modules/uutf/default.nix index f1fbaa1ab569..86ce05644618 100644 --- a/pkgs/development/ocaml-modules/uutf/default.nix +++ b/pkgs/development/ocaml-modules/uutf/default.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "Non-blocking streaming Unicode codec for OCaml"; homepage = "https://erratique.ch/software/uutf"; changelog = "https://raw.githubusercontent.com/dbuenzli/uutf/refs/tags/v${version}/CHANGES.md"; - license = licenses.isc; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "utftrip"; inherit (ocaml.meta) platforms; }; diff --git a/pkgs/development/ocaml-modules/vchan/default.nix b/pkgs/development/ocaml-modules/vchan/default.nix index 30095f602320..5dc456e7b45f 100644 --- a/pkgs/development/ocaml-modules/vchan/default.nix +++ b/pkgs/development/ocaml-modules/vchan/default.nix @@ -36,11 +36,11 @@ buildDunePackage rec { ounit2 ]; - meta = with lib; { + meta = { description = "Xen Vchan implementation"; homepage = "https://github.com/mirage/ocaml-vchan"; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; - teams = [ teams.xen ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; + teams = [ lib.teams.xen ]; }; } diff --git a/pkgs/development/ocaml-modules/vg/default.nix b/pkgs/development/ocaml-modules/vg/default.nix index b3d47c8b1d60..8f7dce667f8e 100644 --- a/pkgs/development/ocaml-modules/vg/default.nix +++ b/pkgs/development/ocaml-modules/vg/default.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation { inherit (topkg) installPhase; - meta = with lib; { + meta = { description = "Declarative 2D vector graphics for OCaml"; longDescription = '' Vg is an OCaml module for declarative 2D vector graphics. In Vg, images @@ -72,8 +72,8 @@ stdenv.mkDerivation { module. An API allows to implement new renderers. ''; homepage = webpage; - license = licenses.isc; - maintainers = [ maintainers.jirkamarsik ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.jirkamarsik ]; mainProgram = "vecho"; inherit (ocaml.meta) platforms; broken = versionOlder ocaml.version "4.14"; diff --git a/pkgs/development/ocaml-modules/visitors/default.nix b/pkgs/development/ocaml-modules/visitors/default.nix index 5eaf5eb853ee..840eda455a65 100644 --- a/pkgs/development/ocaml-modules/visitors/default.nix +++ b/pkgs/development/ocaml-modules/visitors/default.nix @@ -33,10 +33,10 @@ buildDunePackage { result ]; - meta = with lib; { + meta = { homepage = "https://gitlab.inria.fr/fpottier/visitors"; changelog = "https://gitlab.inria.fr/fpottier/visitors/-/raw/${version}/CHANGES.md"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; description = "OCaml syntax extension (technically, a ppx_deriving plugin) which generates object-oriented visitors for traversing and transforming data structures"; maintainers = [ ]; }; diff --git a/pkgs/development/ocaml-modules/vorbis/default.nix b/pkgs/development/ocaml-modules/vorbis/default.nix index 500494448462..d24632a3afbb 100644 --- a/pkgs/development/ocaml-modules/vorbis/default.nix +++ b/pkgs/development/ocaml-modules/vorbis/default.nix @@ -17,10 +17,10 @@ buildDunePackage { libvorbis ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-vorbis"; description = "Bindings to libvorbis"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix index ad98bd32febc..b24ef82c5c33 100644 --- a/pkgs/development/ocaml-modules/x509/default.nix +++ b/pkgs/development/ocaml-modules/x509/default.nix @@ -46,10 +46,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/mirleft/ocaml-x509"; description = "X509 (RFC5280) handling in OCaml"; - license = licenses.bsd2; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/xdg/default.nix b/pkgs/development/ocaml-modules/xdg/default.nix index 97ab776bab04..c88f2695e7f4 100644 --- a/pkgs/development/ocaml-modules/xdg/default.nix +++ b/pkgs/development/ocaml-modules/xdg/default.nix @@ -13,10 +13,10 @@ buildDunePackage { dontAddPrefix = true; - meta = with lib; { + meta = { description = "XDG Base Directory Specification"; inherit (dune_3.meta) homepage; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/xenstore/default.nix b/pkgs/development/ocaml-modules/xenstore/default.nix index 59af30e462e6..43c8eac44140 100644 --- a/pkgs/development/ocaml-modules/xenstore/default.nix +++ b/pkgs/development/ocaml-modules/xenstore/default.nix @@ -22,11 +22,11 @@ buildDunePackage rec { doCheck = true; checkInputs = [ ounit2 ]; - meta = with lib; { + meta = { description = "Xenstore protocol in pure OCaml"; - license = licenses.lgpl21Only; - maintainers = [ maintainers.sternenseemann ]; - teams = [ teams.xen ]; + license = lib.licenses.lgpl21Only; + maintainers = [ lib.maintainers.sternenseemann ]; + teams = [ lib.teams.xen ]; homepage = "https://github.com/mirage/ocaml-xenstore"; }; } diff --git a/pkgs/development/ocaml-modules/xenstore_transport/default.nix b/pkgs/development/ocaml-modules/xenstore_transport/default.nix index c8c9663831ae..1289e6f69b27 100644 --- a/pkgs/development/ocaml-modules/xenstore_transport/default.nix +++ b/pkgs/development/ocaml-modules/xenstore_transport/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { # requires a mounted xenfs and xen server doCheck = false; - meta = with lib; { + meta = { description = "Low-level libraries for connecting to a xenstore service on a xen host"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; homepage = "https://github.com/xapi-project/ocaml-xenstore-clients"; - teams = [ teams.xen ]; + teams = [ lib.teams.xen ]; }; } diff --git a/pkgs/development/ocaml-modules/xmlm/default.nix b/pkgs/development/ocaml-modules/xmlm/default.nix index 3ad17d8aa74f..17f3a2a59567 100644 --- a/pkgs/development/ocaml-modules/xmlm/default.nix +++ b/pkgs/development/ocaml-modules/xmlm/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "OCaml streaming codec to decode and encode the XML data format"; homepage = webpage; - license = licenses.isc; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "xmltrip"; inherit (ocaml.meta) platforms; broken = lib.versionOlder ocaml.version "4.05"; diff --git a/pkgs/development/ocaml-modules/xtmpl/default.nix b/pkgs/development/ocaml-modules/xtmpl/default.nix index b6ba79499a6b..e07dffa2b8b7 100644 --- a/pkgs/development/ocaml-modules/xtmpl/default.nix +++ b/pkgs/development/ocaml-modules/xtmpl/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { uutf ]; - meta = with lib; { + meta = { description = "XML templating library for OCaml"; homepage = "https://www.good-eris.net/xtmpl/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ regnat ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ regnat ]; }; } diff --git a/pkgs/development/ocaml-modules/yojson/default.nix b/pkgs/development/ocaml-modules/yojson/default.nix index 3074e9553c46..9c8ed3690615 100644 --- a/pkgs/development/ocaml-modules/yojson/default.nix +++ b/pkgs/development/ocaml-modules/yojson/default.nix @@ -16,11 +16,11 @@ buildDunePackage rec { propagatedBuildInputs = [ seq ]; - meta = with lib; { + meta = { description = "Optimized parsing and printing library for the JSON format"; homepage = "https://github.com/ocaml-community/${pname}"; - license = licenses.bsd3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "ydump"; }; } diff --git a/pkgs/development/ocaml-modules/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix index 6b0e4ad4074a..7960794a06de 100644 --- a/pkgs/development/ocaml-modules/zarith/default.nix +++ b/pkgs/development/ocaml-modules/zarith/default.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { preInstall = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs"; - meta = with lib; { + meta = { description = "Fast, arbitrary precision OCaml integers"; homepage = "https://github.com/ocaml/Zarith"; changelog = "https://github.com/ocaml/Zarith/raw/${finalAttrs.src.rev}/Changes"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; inherit (ocaml.meta) platforms; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice vbgl ]; diff --git a/pkgs/development/ocaml-modules/zelus/default.nix b/pkgs/development/ocaml-modules/zelus/default.nix index 5425038111fb..3bd4369bec46 100644 --- a/pkgs/development/ocaml-modules/zelus/default.nix +++ b/pkgs/development/ocaml-modules/zelus/default.nix @@ -33,11 +33,11 @@ buildDunePackage rec { menhirLib ]; - meta = with lib; { + meta = { description = "Synchronous language with ODEs"; homepage = "https://zelus.di.ens.fr"; - license = licenses.inria-zelus; + license = lib.licenses.inria-zelus; mainProgram = "zeluc"; - maintainers = with maintainers; [ wegank ]; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/perl-modules/Bio-BigFile/default.nix b/pkgs/development/perl-modules/Bio-BigFile/default.nix index fe4c85490ba4..4210ee8f5d3b 100644 --- a/pkgs/development/perl-modules/Bio-BigFile/default.nix +++ b/pkgs/development/perl-modules/Bio-BigFile/default.nix @@ -54,10 +54,10 @@ buildPerlModule rec { # Ensure compatibility with GCC-11 (compilation fails if -Wno-format-security) hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://metacpan.org/dist/Bio-BigFile"; description = "Manipulate Jim Kent's BigWig and BigBed index files for genomic features"; - license = licenses.artistic2; - maintainers = with maintainers; [ apraga ]; + license = lib.licenses.artistic2; + maintainers = with lib.maintainers; [ apraga ]; }; } diff --git a/pkgs/development/perl-modules/WWW-YoutubeViewer/default.nix b/pkgs/development/perl-modules/WWW-YoutubeViewer/default.nix index 0669f5b7c7af..f74ebc238570 100644 --- a/pkgs/development/perl-modules/WWW-YoutubeViewer/default.nix +++ b/pkgs/development/perl-modules/WWW-YoutubeViewer/default.nix @@ -35,11 +35,11 @@ buildPerlPackage rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Lightweight application for searching and streaming videos from YouTube"; homepage = "https://github.com/trizen/youtube-viewer"; - license = with licenses; [ artistic2 ]; - maintainers = with maintainers; [ woffs ]; + license = with lib.licenses; [ artistic2 ]; + maintainers = with lib.maintainers; [ woffs ]; mainProgram = "youtube-viewer"; }; } diff --git a/pkgs/development/perl-modules/maatkit/default.nix b/pkgs/development/perl-modules/maatkit/default.nix index f6793b9bb4a5..65d6e1df2306 100644 --- a/pkgs/development/perl-modules/maatkit/default.nix +++ b/pkgs/development/perl-modules/maatkit/default.nix @@ -32,7 +32,7 @@ buildPerlPackage { done ''; - meta = with lib; { + meta = { description = "Database toolkit"; longDescription = '' You can use Maatkit to prove replication is working correctly, fix @@ -42,7 +42,7 @@ buildPerlPackage { In addition to MySQL, there is support for PostgreSQL, Memcached, and a growing variety of other databases and technologies. ''; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://code.google.com/archive/p/maatkit/"; }; } diff --git a/pkgs/development/perl-modules/strip-nondeterminism/default.nix b/pkgs/development/perl-modules/strip-nondeterminism/default.nix index 3d16d4cb245a..b30d55851b08 100644 --- a/pkgs/development/perl-modules/strip-nondeterminism/default.nix +++ b/pkgs/development/perl-modules/strip-nondeterminism/default.nix @@ -68,12 +68,12 @@ buildPerlPackage rec { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Perl module for stripping bits of non-deterministic information"; mainProgram = "strip-nondeterminism"; homepage = "https://reproducible-builds.org/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ pSub artturin ]; diff --git a/pkgs/development/php-packages/amqp/default.nix b/pkgs/development/php-packages/amqp/default.nix index d4b7aeb20308..b27663e75875 100644 --- a/pkgs/development/php-packages/amqp/default.nix +++ b/pkgs/development/php-packages/amqp/default.nix @@ -23,11 +23,11 @@ buildPecl { AMQP_DIR = rabbitmq-c; - meta = with lib; { + meta = { changelog = "https://github.com/php-amqp/php-amqp/releases/tag/v${version}"; description = "PHP extension to communicate with any AMQP compliant server"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://github.com/php-amqp/php-amqp"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/apcu/default.nix b/pkgs/development/php-packages/apcu/default.nix index 3006ed973fb1..6a63f1bfb322 100644 --- a/pkgs/development/php-packages/apcu/default.nix +++ b/pkgs/development/php-packages/apcu/default.nix @@ -27,11 +27,11 @@ buildPecl { "dev" ]; - meta = with lib; { + meta = { changelog = "https://github.com/krakjoe/apcu/releases/tag/v${version}"; description = "Userland cache for PHP"; homepage = "https://pecl.php.net/package/APCu"; - license = licenses.php301; - teams = [ teams.php ]; + license = lib.licenses.php301; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/ast/default.nix b/pkgs/development/php-packages/ast/default.nix index ac4dddae822a..19dd3e837bf6 100644 --- a/pkgs/development/php-packages/ast/default.nix +++ b/pkgs/development/php-packages/ast/default.nix @@ -18,11 +18,11 @@ buildPecl { sha256 = "sha256-TGMZA3Qe+/TwG+FIevrcQzy/ufCyN8sXKjsPrnz3K1Q="; }; - meta = with lib; { + meta = { changelog = "https://github.com/nikic/php-ast/releases/tag/v${version}"; description = "Exposes the abstract syntax tree generated by PHP"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://pecl.php.net/package/ast"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/couchbase/default.nix b/pkgs/development/php-packages/couchbase/default.nix index e163ed8fcc98..21bd215d5051 100644 --- a/pkgs/development/php-packages/couchbase/default.nix +++ b/pkgs/development/php-packages/couchbase/default.nix @@ -34,12 +34,12 @@ buildPecl { }) ]; - meta = with lib; { + meta = { changelog = "https://github.com/couchbase/php-couchbase/releases/tag/v${version}"; description = "Couchbase Server PHP extension"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://docs.couchbase.com/php-sdk/current/project-docs/sdk-release-notes.html"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; broken = lib.versionAtLeast php.version "8.3"; }; } diff --git a/pkgs/development/php-packages/ds/default.nix b/pkgs/development/php-packages/ds/default.nix index bc4224a84025..0b289e9c2421 100644 --- a/pkgs/development/php-packages/ds/default.nix +++ b/pkgs/development/php-packages/ds/default.nix @@ -22,11 +22,11 @@ buildPecl { buildInputs = [ pcre2 ]; - meta = with lib; { + meta = { changelog = "https://github.com/php-ds/ext-ds/releases/tag/v${version}"; description = "Extension providing efficient data structures for PHP"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/php-ds/ext-ds"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/event/default.nix b/pkgs/development/php-packages/event/default.nix index f65b8500862e..73cbc62b1dd0 100644 --- a/pkgs/development/php-packages/event/default.nix +++ b/pkgs/development/php-packages/event/default.nix @@ -32,10 +32,10 @@ buildPecl { ]; internalDeps = [ php.extensions.sockets ]; - meta = with lib; { + meta = { description = "Efficiently schedule I/O, time and signal based events using the best I/O notification mechanism available"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://bitbucket.org/osmanov/pecl-event/"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/imagick/default.nix b/pkgs/development/php-packages/imagick/default.nix index 9cee585f0b73..f3ed1d1d8e73 100644 --- a/pkgs/development/php-packages/imagick/default.nix +++ b/pkgs/development/php-packages/imagick/default.nix @@ -18,10 +18,10 @@ buildPecl { nativeBuildInputs = [ pkg-config ]; buildInputs = [ pcre2 ]; - meta = with lib; { + meta = { description = "Imagick is a native php extension to create and modify images using the ImageMagick API"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://pecl.php.net/package/imagick"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/imap/default.nix b/pkgs/development/php-packages/imap/default.nix index ec9060cbc0de..b37e6e6c6b28 100644 --- a/pkgs/development/php-packages/imap/default.nix +++ b/pkgs/development/php-packages/imap/default.nix @@ -51,10 +51,10 @@ buildPecl { doCheck = true; - meta = with lib; { + meta = { description = "PHP extension for checking the spelling of a word"; homepage = "https://pecl.php.net/package/imap"; - license = licenses.php301; - teams = [ teams.php ]; + license = lib.licenses.php301; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/ioncube-loader/default.nix b/pkgs/development/php-packages/ioncube-loader/default.nix index 8d3f6a3bb914..07c941094c6e 100644 --- a/pkgs/development/php-packages/ioncube-loader/default.nix +++ b/pkgs/development/php-packages/ioncube-loader/default.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Use ionCube-encoded files on a web server"; changelog = "https://www.ioncube.com/loaders.php"; homepage = "https://www.ioncube.com"; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ neverbehave ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ neverbehave ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/development/php-packages/mailparse/default.nix b/pkgs/development/php-packages/mailparse/default.nix index d17fbc25711c..a96aaaf5bce7 100644 --- a/pkgs/development/php-packages/mailparse/default.nix +++ b/pkgs/development/php-packages/mailparse/default.nix @@ -15,9 +15,9 @@ buildPecl { echo "#define HAVE_MBSTRING 1" >> config.h ''; - meta = with lib; { + meta = { description = "Mailparse is an extension for parsing and working with email messages"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://pecl.php.net/package/mailparse"; teams = [ lib.teams.php ]; }; diff --git a/pkgs/development/php-packages/maxminddb/default.nix b/pkgs/development/php-packages/maxminddb/default.nix index ccc350bcbdde..d5c3eb8cf290 100644 --- a/pkgs/development/php-packages/maxminddb/default.nix +++ b/pkgs/development/php-packages/maxminddb/default.nix @@ -24,13 +24,13 @@ buildPecl { buildInputs = [ libmaxminddb ]; - meta = with lib; { + meta = { description = "C extension that is a drop-in replacement for MaxMind\\Db\\Reader"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; homepage = "https://github.com/maxmind/MaxMind-DB-Reader-php"; teams = [ - teams.helsinki-systems - teams.php + lib.teams.helsinki-systems + lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/memcache/default.nix b/pkgs/development/php-packages/memcache/default.nix index b5045b8472cd..9cd31b635ee5 100644 --- a/pkgs/development/php-packages/memcache/default.nix +++ b/pkgs/development/php-packages/memcache/default.nix @@ -25,11 +25,11 @@ buildPecl rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "PHP extension for interfacing with memcached"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://github.com/websupport-sk/pecl-memcache"; - maintainers = [ maintainers.krzaczek ]; - teams = [ teams.php ]; + maintainers = [ lib.maintainers.krzaczek ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/memcached/default.nix b/pkgs/development/php-packages/memcached/default.nix index 59132f26cbfb..fdbda0292e59 100644 --- a/pkgs/development/php-packages/memcached/default.nix +++ b/pkgs/development/php-packages/memcached/default.nix @@ -33,10 +33,10 @@ buildPecl rec { zlib ]; - meta = with lib; { + meta = { description = "PHP extension for interfacing with memcached via libmemcached library"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://github.com/php-memcached-dev/php-memcached"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/oci8/default.nix b/pkgs/development/php-packages/oci8/default.nix index 13e37275066a..9fe4dc9e7809 100644 --- a/pkgs/development/php-packages/oci8/default.nix +++ b/pkgs/development/php-packages/oci8/default.nix @@ -35,10 +35,10 @@ buildPecl { sed -i -e 's|OCISDKMANINC=`.*$|OCISDKMANINC="${oracle-instantclient.dev}/include"|' config.m4 ''; - meta = with lib; { + meta = { description = "Extension for Oracle Database"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://pecl.php.net/package/oci8"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/openswoole/default.nix b/pkgs/development/php-packages/openswoole/default.nix index 6a0608551c17..f46c8b6a8f9f 100644 --- a/pkgs/development/php-packages/openswoole/default.nix +++ b/pkgs/development/php-packages/openswoole/default.nix @@ -24,17 +24,17 @@ buildPecl { buildInputs = [ pcre2 ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ valgrind ]; - meta = with lib; { + meta = { changelog = "https://github.com/openswoole/swoole-src/releases/tag/v${version}"; description = "Coroutine-based concurrency library and high performance programmatic server for PHP"; homepage = "https://www.openswoole.com/"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' Open Swoole allows you to build high-performance, async multi-tasking webservices and applications using an easy to use Coroutine API.\nOpen Swoole is a complete async solution that has built-in support for async programming via coroutines. It offers a range of multi-threaded I/O modules (HTTP Server, WebSockets, TaskWorkers, Process Pools) out of the box and support for popular PHP clients like PDO for MySQL, and CURL. You can use the sync or async, Coroutine API to write whole applications or create thousands of light weight Coroutines within one Linux process. ''; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; broken = lib.versionOlder php.version "8.2"; }; } diff --git a/pkgs/development/php-packages/opentelemetry/default.nix b/pkgs/development/php-packages/opentelemetry/default.nix index 225d1663f39c..785b1aaf32cc 100644 --- a/pkgs/development/php-packages/opentelemetry/default.nix +++ b/pkgs/development/php-packages/opentelemetry/default.nix @@ -24,11 +24,11 @@ buildPecl rec { doCheck = true; - meta = with lib; { + meta = { changelog = "https://github.com/open-telemetry/opentelemetry-php-instrumentation/releases/tag/${version}"; description = "OpenTelemetry PHP auto-instrumentation extension"; homepage = "https://opentelemetry.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ gaelreyrol ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gaelreyrol ]; }; } diff --git a/pkgs/development/php-packages/pdlib/default.nix b/pkgs/development/php-packages/pdlib/default.nix index 36ae961d28ba..93623e58cf7e 100644 --- a/pkgs/development/php-packages/pdlib/default.nix +++ b/pkgs/development/php-packages/pdlib/default.nix @@ -22,9 +22,9 @@ buildPecl { nativeBuildInputs = [ pkg-config ]; buildInputs = [ (dlib.override { guiSupport = true; }) ]; - meta = with lib; { + meta = { description = "PHP extension for Dlib"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; homepage = "https://github.com/goodspb/pdlib"; teams = [ lib.teams.php ]; }; diff --git a/pkgs/development/php-packages/pdo_sqlsrv/default.nix b/pkgs/development/php-packages/pdo_sqlsrv/default.nix index 5880260f9198..b691d99487cb 100644 --- a/pkgs/development/php-packages/pdo_sqlsrv/default.nix +++ b/pkgs/development/php-packages/pdo_sqlsrv/default.nix @@ -17,10 +17,10 @@ buildPecl { buildInputs = [ unixODBC ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ]; - meta = with lib; { + meta = { description = "Microsoft Drivers for PHP for SQL Server"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Microsoft/msphpsql"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/phalcon/default.nix b/pkgs/development/php-packages/phalcon/default.nix index 1519740038ba..1f81088f7251 100644 --- a/pkgs/development/php-packages/phalcon/default.nix +++ b/pkgs/development/php-packages/phalcon/default.nix @@ -32,11 +32,11 @@ buildPecl rec { sourceRoot = "${src.name}/build/phalcon"; - meta = with lib; { + meta = { description = "Phalcon is a full stack PHP framework offering low resource consumption and high performance"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://phalcon.io"; - maintainers = [ maintainers.krzaczek ]; - teams = [ teams.php ]; + maintainers = [ lib.maintainers.krzaczek ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/phpspy/default.nix b/pkgs/development/php-packages/phpspy/default.nix index 63cd23efc8f1..eb5f17846b76 100644 --- a/pkgs/development/php-packages/phpspy/default.nix +++ b/pkgs/development/php-packages/phpspy/default.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation (finalAttrs: { command = "phpspy -v"; }; - meta = with lib; { + meta = { description = "Low-overhead sampling profiler for PHP"; homepage = "https://github.com/adsr/phpspy"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "phpspy"; - maintainers = with maintainers; [ gaelreyrol ]; + maintainers = with lib.maintainers; [ gaelreyrol ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/development/php-packages/pinba/default.nix b/pkgs/development/php-packages/pinba/default.nix index f504eb95958e..0d45ac186707 100644 --- a/pkgs/development/php-packages/pinba/default.nix +++ b/pkgs/development/php-packages/pinba/default.nix @@ -19,14 +19,14 @@ buildPecl rec { # from incompatible pointer type [-Wincompatible-pointer-types env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; - meta = with lib; { + meta = { description = "PHP extension for Pinba"; longDescription = '' Pinba is a MySQL storage engine that acts as a realtime monitoring and statistics server for PHP using MySQL as a read-only interface. ''; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; homepage = "http://pinba.org/"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/protobuf/default.nix b/pkgs/development/php-packages/protobuf/default.nix index 0d7d6119737f..0367dd4fc533 100644 --- a/pkgs/development/php-packages/protobuf/default.nix +++ b/pkgs/development/php-packages/protobuf/default.nix @@ -12,10 +12,10 @@ buildPecl { buildInputs = [ pcre2 ]; - meta = with lib; { + meta = { description = "Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://developers.google.com/protocol-buffers/"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/pspell/default.nix b/pkgs/development/php-packages/pspell/default.nix index 438a15aca1de..f1380c4c3918 100644 --- a/pkgs/development/php-packages/pspell/default.nix +++ b/pkgs/development/php-packages/pspell/default.nix @@ -23,10 +23,10 @@ buildPecl { doCheck = true; - meta = with lib; { + meta = { description = "PHP extension for checking the spelling of a word"; homepage = "https://pecl.php.net/package/pspell"; - license = licenses.php301; - teams = [ teams.php ]; + license = lib.licenses.php301; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/redis/default.nix b/pkgs/development/php-packages/redis/default.nix index cfd42c97e65c..86223a65d056 100644 --- a/pkgs/development/php-packages/redis/default.nix +++ b/pkgs/development/php-packages/redis/default.nix @@ -21,11 +21,11 @@ buildPecl { internalDeps = with php.extensions; [ session ]; - meta = with lib; { + meta = { changelog = "https://github.com/phpredis/phpredis/releases/tag/${version}"; description = "PHP extension for interfacing with Redis"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://github.com/phpredis/phpredis/"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/relay/default.nix b/pkgs/development/php-packages/relay/default.nix index f3878833764a..ec1426755dc0 100644 --- a/pkgs/development/php-packages/relay/default.nix +++ b/pkgs/development/php-packages/relay/default.nix @@ -163,13 +163,13 @@ stdenv.mkDerivation (finalAttrs: { ); }; - meta = with lib; { + meta = { description = "Next-generation Redis extension for PHP"; changelog = "https://github.com/cachewerk/relay/releases/tag/v${version}"; homepage = "https://relay.so/"; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ tillkruss ostrolucky ]; diff --git a/pkgs/development/php-packages/smbclient/default.nix b/pkgs/development/php-packages/smbclient/default.nix index e4b045c7c099..689cc94b61c8 100644 --- a/pkgs/development/php-packages/smbclient/default.nix +++ b/pkgs/development/php-packages/smbclient/default.nix @@ -15,10 +15,10 @@ buildPecl { nativeBuildInputs = [ pkg-config ]; buildInputs = [ samba ]; - meta = with lib; { + meta = { description = "PHP wrapper for libsmbclient"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://github.com/eduardok/libsmbclient-php"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/sqlsrv/default.nix b/pkgs/development/php-packages/sqlsrv/default.nix index 956464042e16..605451d94ac2 100644 --- a/pkgs/development/php-packages/sqlsrv/default.nix +++ b/pkgs/development/php-packages/sqlsrv/default.nix @@ -14,10 +14,10 @@ buildPecl { buildInputs = [ unixODBC ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ]; - meta = with lib; { + meta = { description = "Microsoft Drivers for PHP for SQL Server"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Microsoft/msphpsql"; - teams = [ teams.php ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/ssh2/default.nix b/pkgs/development/php-packages/ssh2/default.nix index c8a56980e676..153dfe60e2b1 100644 --- a/pkgs/development/php-packages/ssh2/default.nix +++ b/pkgs/development/php-packages/ssh2/default.nix @@ -13,12 +13,12 @@ buildPecl rec { buildInputs = [ libssh2 ]; configureFlags = [ "--with-ssh2=${libssh2.dev}" ]; - meta = with lib; { + meta = { changelog = "https://pecl.php.net/package-info.php?package=ssh2&version=${version}"; description = "PHP bindings for the libssh2 library"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://github.com/php/pecl-networking-ssh2"; - maintainers = [ maintainers.ostrolucky ]; - teams = [ teams.php ]; + maintainers = [ lib.maintainers.ostrolucky ]; + teams = [ lib.teams.php ]; }; } diff --git a/pkgs/development/php-packages/tideways/default.nix b/pkgs/development/php-packages/tideways/default.nix index 9b3ea0d4d17a..0cf95d40d697 100644 --- a/pkgs/development/php-packages/tideways/default.nix +++ b/pkgs/development/php-packages/tideways/default.nix @@ -79,12 +79,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { }/bin/update-tideways-probe"; }; - meta = with lib; { + meta = { description = "Tideways PHP Probe"; homepage = "https://tideways.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ shyim ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ shyim ]; platforms = lib.attrNames finalAttrs.passthru.sources; }; }) diff --git a/pkgs/development/php-packages/uv/default.nix b/pkgs/development/php-packages/uv/default.nix index 21b1592114c3..f90e100089ca 100644 --- a/pkgs/development/php-packages/uv/default.nix +++ b/pkgs/development/php-packages/uv/default.nix @@ -18,11 +18,11 @@ buildPecl rec { buildInputs = [ libuv ]; - meta = with lib; { + meta = { description = "Interface to libuv for php"; - license = licenses.php301; + license = lib.licenses.php301; homepage = "https://github.com/amphp/ext-uv"; - teams = [ teams.php ]; - platforms = platforms.linux; + teams = [ lib.teams.php ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/php-packages/zstd/default.nix b/pkgs/development/php-packages/zstd/default.nix index 44408547708f..1f17209c61a9 100644 --- a/pkgs/development/php-packages/zstd/default.nix +++ b/pkgs/development/php-packages/zstd/default.nix @@ -26,9 +26,9 @@ buildPecl { configureFlags = [ "--with-libzstd" ]; - meta = with lib; { + meta = { description = "Zstd Extension for PHP"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/kjdev/php-ext-zstd"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/aafigure/default.nix b/pkgs/development/python-modules/aafigure/default.nix index 0d519a1bddb7..69059deefd04 100644 --- a/pkgs/development/python-modules/aafigure/default.nix +++ b/pkgs/development/python-modules/aafigure/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { sed -i "s|/usr/share/fonts|/nonexisting-fonts-path|" aafigure/PILhelper.py ''; - meta = with lib; { + meta = { description = "ASCII art to image converter"; mainProgram = "aafigure"; homepage = "https://launchpad.net/aafigure/"; - license = licenses.bsd2; - maintainers = with maintainers; [ bjornfor ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ bjornfor ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/aardwolf/default.nix b/pkgs/development/python-modules/aardwolf/default.nix index 993a187799db..13dcd2b84f8d 100644 --- a/pkgs/development/python-modules/aardwolf/default.nix +++ b/pkgs/development/python-modules/aardwolf/default.nix @@ -71,12 +71,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aardwolf" ]; - meta = with lib; { + meta = { description = "Asynchronous RDP protocol implementation"; mainProgram = "ardpscan"; homepage = "https://github.com/skelsec/aardwolf"; changelog = "https://github.com/skelsec/aardwolf/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/about-time/default.nix b/pkgs/development/python-modules/about-time/default.nix index 3271a11755b4..2f8c0cfc5d83 100644 --- a/pkgs/development/python-modules/about-time/default.nix +++ b/pkgs/development/python-modules/about-time/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "about_time" ]; - meta = with lib; { + meta = { description = "Cool helper for tracking time and throughput of code blocks, with beautiful human friendly renditions"; homepage = "https://github.com/rsalmei/about-time"; - license = licenses.mit; - maintainers = with maintainers; [ thiagokokada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/development/python-modules/accessible-pygments/default.nix b/pkgs/development/python-modules/accessible-pygments/default.nix index 177b3529ecc6..bef1c06a74d8 100644 --- a/pkgs/development/python-modules/accessible-pygments/default.nix +++ b/pkgs/development/python-modules/accessible-pygments/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "a11y_pygments.utils" ]; - meta = with lib; { + meta = { description = "Collection of accessible pygments styles"; homepage = "https://github.com/Quansight-Labs/accessible-pygments"; changelog = "https://github.com/Quansight-Labs/accessible-pygments/raw/v${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/accupy/default.nix b/pkgs/development/python-modules/accupy/default.nix index abe10fb8b09f..b37b175821a6 100644 --- a/pkgs/development/python-modules/accupy/default.nix +++ b/pkgs/development/python-modules/accupy/default.nix @@ -80,10 +80,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "accupy" ]; - meta = with lib; { + meta = { description = "Accurate sums and dot products for Python"; homepage = "https://github.com/nschloe/accupy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/acquire/default.nix b/pkgs/development/python-modules/acquire/default.nix index 3208ce2fa9f9..bfd005e9a55d 100644 --- a/pkgs/development/python-modules/acquire/default.nix +++ b/pkgs/development/python-modules/acquire/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "acquire" ]; - meta = with lib; { + meta = { description = "Tool to quickly gather forensic artifacts from disk images or a live system"; homepage = "https://github.com/fox-it/acquire"; changelog = "https://github.com/fox-it/acquire/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/actdiag/default.nix b/pkgs/development/python-modules/actdiag/default.nix index 845830ca652a..ce32db540ca5 100644 --- a/pkgs/development/python-modules/actdiag/default.nix +++ b/pkgs/development/python-modules/actdiag/default.nix @@ -40,13 +40,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "actdiag" ]; - meta = with lib; { + meta = { description = "Generate activity-diagram image from spec-text file (similar to Graphviz)"; homepage = "http://blockdiag.com/"; changelog = "https://github.com/blockdiag/actdiag/blob/${version}/CHANGES.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "actdiag"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/acunetix/default.nix b/pkgs/development/python-modules/acunetix/default.nix index 59a011b54665..3a2087462362 100644 --- a/pkgs/development/python-modules/acunetix/default.nix +++ b/pkgs/development/python-modules/acunetix/default.nix @@ -32,10 +32,10 @@ buildPythonPackage { pythonImportsCheck = [ "acunetix" ]; - meta = with lib; { + meta = { description = "Acunetix Web Vulnerability Scanner SDK for Python"; homepage = "https://github.com/hikariatama/acunetix"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/adafruit-io/default.nix b/pkgs/development/python-modules/adafruit-io/default.nix index bc505deef55a..e7222c7909ad 100644 --- a/pkgs/development/python-modules/adafruit-io/default.nix +++ b/pkgs/development/python-modules/adafruit-io/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { "tests/test_mqtt_client.py" ]; - meta = with lib; { + meta = { description = "Module for interacting with Adafruit IO"; homepage = "https://github.com/adafruit/Adafruit_IO_Python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/adafruit-platformdetect/default.nix b/pkgs/development/python-modules/adafruit-platformdetect/default.nix index 369142315a76..78f7869346fc 100644 --- a/pkgs/development/python-modules/adafruit-platformdetect/default.nix +++ b/pkgs/development/python-modules/adafruit-platformdetect/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "adafruit_platformdetect" ]; - meta = with lib; { + meta = { description = "Platform detection for use by Adafruit libraries"; homepage = "https://github.com/adafruit/Adafruit_Python_PlatformDetect"; changelog = "https://github.com/adafruit/Adafruit_Python_PlatformDetect/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/adafruit-pureio/default.nix b/pkgs/development/python-modules/adafruit-pureio/default.nix index 0c2ce56f2d04..e5ac8e3244df 100644 --- a/pkgs/development/python-modules/adafruit-pureio/default.nix +++ b/pkgs/development/python-modules/adafruit-pureio/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "Adafruit_PureIO" ]; - meta = with lib; { + meta = { description = "Python interface to Linux IO including I2C and SPI"; homepage = "https://github.com/adafruit/Adafruit_Python_PureIO"; changelog = "https://github.com/adafruit/Adafruit_Python_PureIO/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/adal/default.nix b/pkgs/development/python-modules/adal/default.nix index bb6b018fd849..9f4a282e1a74 100644 --- a/pkgs/development/python-modules/adal/default.nix +++ b/pkgs/development/python-modules/adal/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "adal" ]; - meta = with lib; { + meta = { description = "Python module to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources"; homepage = "https://github.com/AzureAD/azure-activedirectory-library-for-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/adax-local/default.nix b/pkgs/development/python-modules/adax-local/default.nix index 4ad2c20d07f0..62f9a37d1072 100644 --- a/pkgs/development/python-modules/adax-local/default.nix +++ b/pkgs/development/python-modules/adax-local/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "adax_local" ]; - meta = with lib; { + meta = { description = "Module for local access to Adax"; homepage = "https://github.com/Danielhiversen/pyAdaxLocal"; changelog = "https://github.com/Danielhiversen/pyAdaxLocal/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/adax/default.nix b/pkgs/development/python-modules/adax/default.nix index 925364817871..8d2ed16835ed 100644 --- a/pkgs/development/python-modules/adax/default.nix +++ b/pkgs/development/python-modules/adax/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "adax" ]; - meta = with lib; { + meta = { description = "Python module to communicate with Adax"; homepage = "https://github.com/Danielhiversen/pyAdax"; changelog = "https://github.com/Danielhiversen/pyAdax/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/adb-enhanced/default.nix b/pkgs/development/python-modules/adb-enhanced/default.nix index 0b2130a1d180..0f2bc4a0d9d4 100644 --- a/pkgs/development/python-modules/adb-enhanced/default.nix +++ b/pkgs/development/python-modules/adb-enhanced/default.nix @@ -40,15 +40,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "adbe" ]; - meta = with lib; { + meta = { description = "Tool for Android testing and development"; homepage = "https://github.com/ashishb/adb-enhanced"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ vtuan10 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vtuan10 ]; mainProgram = "adbe"; }; } diff --git a/pkgs/development/python-modules/adb-homeassistant/default.nix b/pkgs/development/python-modules/adb-homeassistant/default.nix index a5f539d95029..bb2f561b71d4 100644 --- a/pkgs/development/python-modules/adb-homeassistant/default.nix +++ b/pkgs/development/python-modules/adb-homeassistant/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { py.test test ''; - meta = with lib; { + meta = { description = "Pure python implementation of the Android ADB and Fastboot protocols"; homepage = "https://github.com/JeffLIrion/python-adb/tree/adb-homeassistant"; - license = licenses.asl20; - maintainers = [ maintainers.makefu ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.makefu ]; }; } diff --git a/pkgs/development/python-modules/adb-shell/default.nix b/pkgs/development/python-modules/adb-shell/default.nix index 09f226fd0026..03a1c76eff89 100644 --- a/pkgs/development/python-modules/adb-shell/default.nix +++ b/pkgs/development/python-modules/adb-shell/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "adb_shell" ]; - meta = with lib; { + meta = { description = "Python implementation of ADB with shell and FileSync functionality"; homepage = "https://github.com/JeffLIrion/adb_shell"; - license = licenses.asl20; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/adblock/default.nix b/pkgs/development/python-modules/adblock/default.nix index b8dfc78e73d4..1f070761b165 100644 --- a/pkgs/development/python-modules/adblock/default.nix +++ b/pkgs/development/python-modules/adblock/default.nix @@ -85,12 +85,12 @@ buildPythonPackage rec { "adblock.adblock" ]; - meta = with lib; { + meta = { description = "Python wrapper for Brave's adblocking library"; homepage = "https://github.com/ArniDagur/python-adblock/"; changelog = "https://github.com/ArniDagur/python-adblock/blob/${version}/CHANGELOG.md"; - maintainers = with maintainers; [ dotlambda ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ dotlambda ]; + license = with lib.licenses; [ asl20 # or mit ]; diff --git a/pkgs/development/python-modules/add-trailing-comma/default.nix b/pkgs/development/python-modules/add-trailing-comma/default.nix index c9c8a9574e83..d227fa0d99d2 100644 --- a/pkgs/development/python-modules/add-trailing-comma/default.nix +++ b/pkgs/development/python-modules/add-trailing-comma/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "add_trailing_comma" ]; - meta = with lib; { + meta = { description = "Tool (and pre-commit hook) to automatically add trailing commas to calls and literals"; homepage = "https://github.com/asottile/add-trailing-comma"; changelog = "https://github.com/asottile/add-trailing-comma/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; mainProgram = "add-trailing-comma"; }; } diff --git a/pkgs/development/python-modules/addict/default.nix b/pkgs/development/python-modules/addict/default.nix index 36bab211bb4a..39a7835b5d4d 100644 --- a/pkgs/development/python-modules/addict/default.nix +++ b/pkgs/development/python-modules/addict/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "addict" ]; - meta = with lib; { + meta = { description = "Module that exposes a dictionary subclass that allows items to be set like attributes"; homepage = "https://github.com/mewwts/addict"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/adext/default.nix b/pkgs/development/python-modules/adext/default.nix index 5c9f59c0f536..aa02b36a59fb 100644 --- a/pkgs/development/python-modules/adext/default.nix +++ b/pkgs/development/python-modules/adext/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "adext" ]; - meta = with lib; { + meta = { description = "Python extension for AlarmDecoder"; homepage = "https://github.com/ajschmidt8/adext"; changelog = "https://github.com/ajschmidt8/adext/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/adjusttext/default.nix b/pkgs/development/python-modules/adjusttext/default.nix index 0608cc3cac6b..39234c7de1a4 100644 --- a/pkgs/development/python-modules/adjusttext/default.nix +++ b/pkgs/development/python-modules/adjusttext/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "adjustText" ]; - meta = with lib; { + meta = { description = "Iteratively adjust text position in matplotlib plots to minimize overlaps"; homepage = "https://github.com/Phlya/adjustText"; changelog = "https://github.com/Phlya/adjustText/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/adlfs/default.nix b/pkgs/development/python-modules/adlfs/default.nix index d58865a981cf..dbc7dca1fbd5 100644 --- a/pkgs/development/python-modules/adlfs/default.nix +++ b/pkgs/development/python-modules/adlfs/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "adlfs" ]; - meta = with lib; { + meta = { description = "Filesystem interface to Azure-Datalake Gen1 and Gen2 Storage"; homepage = "https://github.com/fsspec/adlfs"; changelog = "https://github.com/fsspec/adlfs/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/advantage-air/default.nix b/pkgs/development/python-modules/advantage-air/default.nix index 569edb891c38..d7fe8e18a3c9 100644 --- a/pkgs/development/python-modules/advantage-air/default.nix +++ b/pkgs/development/python-modules/advantage-air/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "advantage_air" ]; - meta = with lib; { + meta = { description = "API helper for Advantage Air's MyAir and e-zone API"; homepage = "https://github.com/Bre77/advantage_air"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/advocate/default.nix b/pkgs/development/python-modules/advocate/default.nix index bd52c01fe489..6caf1fff64c4 100644 --- a/pkgs/development/python-modules/advocate/default.nix +++ b/pkgs/development/python-modules/advocate/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "advocate" ]; - meta = with lib; { + meta = { homepage = "https://github.com/JordanMilne/Advocate"; description = "SSRF-preventing wrapper around Python's requests library"; - license = licenses.asl20; - maintainers = with maintainers; [ pborzenkov ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pborzenkov ]; }; } diff --git a/pkgs/development/python-modules/aeidon/default.nix b/pkgs/development/python-modules/aeidon/default.nix index 170dfeb63c7f..d490459d4a0b 100644 --- a/pkgs/development/python-modules/aeidon/default.nix +++ b/pkgs/development/python-modules/aeidon/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aeidon" ]; - meta = with lib; { + meta = { changelog = "https://github.com/otsaloma/gaupol/releases/tag/${version}"; description = "Reading, writing and manipulationg text-based subtitle files"; homepage = "https://github.com/otsaloma/gaupol"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/aemet-opendata/default.nix b/pkgs/development/python-modules/aemet-opendata/default.nix index 511ac8212d3f..cda44af11dca 100644 --- a/pkgs/development/python-modules/aemet-opendata/default.nix +++ b/pkgs/development/python-modules/aemet-opendata/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aemet_opendata.interface" ]; - meta = with lib; { + meta = { description = "Python client for AEMET OpenData Rest API"; homepage = "https://github.com/Noltari/AEMET-OpenData"; changelog = "https://github.com/Noltari/AEMET-OpenData/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/aenum/default.nix b/pkgs/development/python-modules/aenum/default.nix index 5c81bff1e9a7..eaa9a18a37f1 100644 --- a/pkgs/development/python-modules/aenum/default.nix +++ b/pkgs/development/python-modules/aenum/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "test_extend_enum_shadow_property_stdlib" ]; - meta = with lib; { + meta = { description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants"; homepage = "https://github.com/ethanfurman/aenum"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aesedb/default.nix b/pkgs/development/python-modules/aesedb/default.nix index feae42027e51..9b012d396006 100644 --- a/pkgs/development/python-modules/aesedb/default.nix +++ b/pkgs/development/python-modules/aesedb/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aesedb" ]; - meta = with lib; { + meta = { description = "Parser for JET databases"; mainProgram = "antdsparse"; homepage = "https://github.com/skelsec/aesedb"; changelog = "https://github.com/skelsec/aesedb/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aetcd/default.nix b/pkgs/development/python-modules/aetcd/default.nix index 4f6888990e39..9ba2f5838a9b 100644 --- a/pkgs/development/python-modules/aetcd/default.nix +++ b/pkgs/development/python-modules/aetcd/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { "tests/integration/" ]; - meta = with lib; { + meta = { description = "Python asyncio-based client for etcd"; homepage = "https://github.com/martyanov/aetcd"; changelog = "https://github.com/martyanov/aetcd/blob/v${version}/docs/changelog.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/afdko/default.nix b/pkgs/development/python-modules/afdko/default.nix index 6a856942f227..e61bdbb2d1fd 100644 --- a/pkgs/development/python-modules/afdko/default.nix +++ b/pkgs/development/python-modules/afdko/default.nix @@ -147,11 +147,11 @@ buildPythonPackage rec { fullTestsuite = afdko.override { runAllTests = true; }; }; - meta = with lib; { + meta = { description = "Adobe Font Development Kit for OpenType"; changelog = "https://github.com/adobe-type-tools/afdko/blob/${version}/NEWS.md"; homepage = "https://adobe-type-tools.github.io/afdko"; - license = licenses.asl20; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/affine/default.nix b/pkgs/development/python-modules/affine/default.nix index a27c427a7ff7..2fb3673758f7 100644 --- a/pkgs/development/python-modules/affine/default.nix +++ b/pkgs/development/python-modules/affine/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/rasterio/affine/blob/${version}/CHANGES.txt"; description = "Matrices describing affine transformation of the plane"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/rasterio/affine"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/afsapi/default.nix b/pkgs/development/python-modules/afsapi/default.nix index 40ce655ab559..8c30e6af82d1 100644 --- a/pkgs/development/python-modules/afsapi/default.nix +++ b/pkgs/development/python-modules/afsapi/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "afsapi" ]; - meta = with lib; { + meta = { description = "Python implementation of the Frontier Silicon API"; homepage = "https://github.com/wlcrs/python-afsapi"; changelog = "https://github.com/wlcrs/python-afsapi/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/agate-dbf/default.nix b/pkgs/development/python-modules/agate-dbf/default.nix index 38e7f713f91c..ba42cb30350a 100644 --- a/pkgs/development/python-modules/agate-dbf/default.nix +++ b/pkgs/development/python-modules/agate-dbf/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { hash = "sha256-mKK1N1cTbMdNwpflniEB009tSPQfdBVrtsDeJruiqj8="; }; - meta = with lib; { + meta = { description = "Adds read support for dbf files to agate"; homepage = "https://github.com/wireservice/agate-dbf"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/agate-excel/default.nix b/pkgs/development/python-modules/agate-excel/default.nix index 5e346cbb9507..9a1a2c31a83c 100644 --- a/pkgs/development/python-modules/agate-excel/default.nix +++ b/pkgs/development/python-modules/agate-excel/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "agate" ]; - meta = with lib; { + meta = { description = "Adds read support for excel files to agate"; homepage = "https://github.com/wireservice/agate-excel"; changelog = "https://github.com/wireservice/agate-excel/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/agate-sql/default.nix b/pkgs/development/python-modules/agate-sql/default.nix index 4344140b1d32..fe82ffcce28d 100644 --- a/pkgs/development/python-modules/agate-sql/default.nix +++ b/pkgs/development/python-modules/agate-sql/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { "test_to_sql_create_statement_with_dialects" ]; - meta = with lib; { + meta = { description = "Adds SQL read/write support to agate"; homepage = "https://github.com/wireservice/agate-sql"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/agent-py/default.nix b/pkgs/development/python-modules/agent-py/default.nix index a711fcc690cc..814239f70a1e 100644 --- a/pkgs/development/python-modules/agent-py/default.nix +++ b/pkgs/development/python-modules/agent-py/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "agent" ]; - meta = with lib; { + meta = { description = "Python wrapper around the Agent REST API"; homepage = "https://github.com/ispysoftware/agent-py"; - license = licenses.asl20; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/aggdraw/default.nix b/pkgs/development/python-modules/aggdraw/default.nix index 7e637fa6c461..9b77c620695f 100644 --- a/pkgs/development/python-modules/aggdraw/default.nix +++ b/pkgs/development/python-modules/aggdraw/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aggdraw" ]; - meta = with lib; { + meta = { description = "High quality drawing interface for PIL"; homepage = "https://github.com/pytroll/aggdraw"; changelog = "https://github.com/pytroll/aggdraw/blob/${src.tag}CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/ago/default.nix b/pkgs/development/python-modules/ago/default.nix index 84fe44d20d47..29ae4b58ad05 100644 --- a/pkgs/development/python-modules/ago/default.nix +++ b/pkgs/development/python-modules/ago/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ago" ]; - meta = with lib; { + meta = { description = "Human Readable Time Deltas"; homepage = "https://git.unturf.com/python/ago"; - license = licenses.publicDomain; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/ahocorasick-rs/default.nix b/pkgs/development/python-modules/ahocorasick-rs/default.nix index f60ebfe67ef0..460acc07ada0 100644 --- a/pkgs/development/python-modules/ahocorasick-rs/default.nix +++ b/pkgs/development/python-modules/ahocorasick-rs/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ahocorasick_rs" ]; - meta = with lib; { + meta = { description = "Fast Aho-Corasick algorithm for Python"; homepage = "https://github.com/G-Research/ahocorasick_rs/"; changelog = "https://github.com/G-Research/ahocorasick_rs/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/ailment/default.nix b/pkgs/development/python-modules/ailment/default.nix index 9f71bf60a545..faea5891ddec 100644 --- a/pkgs/development/python-modules/ailment/default.nix +++ b/pkgs/development/python-modules/ailment/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ailment" ]; - meta = with lib; { + meta = { description = "Angr Intermediate Language"; homepage = "https://github.com/angr/ailment"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-geojson-client/default.nix b/pkgs/development/python-modules/aio-geojson-client/default.nix index 43f97d1834b8..d50ad5007bcc 100644 --- a/pkgs/development/python-modules/aio-geojson-client/default.nix +++ b/pkgs/development/python-modules/aio-geojson-client/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aio_geojson_client" ]; - meta = with lib; { + meta = { description = "Python module for accessing GeoJSON feeds"; homepage = "https://github.com/exxamalte/python-aio-geojson-client"; changelog = "https://github.com/exxamalte/python-aio-geojson-client/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-geojson-generic-client/default.nix b/pkgs/development/python-modules/aio-geojson-generic-client/default.nix index 6a8bbe0c8952..ffef867041bc 100644 --- a/pkgs/development/python-modules/aio-geojson-generic-client/default.nix +++ b/pkgs/development/python-modules/aio-geojson-generic-client/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aio_geojson_generic_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing GeoJSON feeds"; homepage = "https://github.com/exxamalte/python-aio-geojson-generic-client"; changelog = "https://github.com/exxamalte/python-aio-geojson-generic-client/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-geojson-geonetnz-quakes/default.nix b/pkgs/development/python-modules/aio-geojson-geonetnz-quakes/default.nix index 87ae9650ab3c..163f4ca2ed41 100644 --- a/pkgs/development/python-modules/aio-geojson-geonetnz-quakes/default.nix +++ b/pkgs/development/python-modules/aio-geojson-geonetnz-quakes/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python module for accessing the GeoNet NZ Quakes GeoJSON feeds"; homepage = "https://github.com/exxamalte/python-aio-geojson-geonetnz-quakes"; changelog = "https://github.com/exxamalte/python-aio-geojson-geonetnz-quakes/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-geojson-geonetnz-volcano/default.nix b/pkgs/development/python-modules/aio-geojson-geonetnz-volcano/default.nix index 1d100f885543..400cf3463f18 100644 --- a/pkgs/development/python-modules/aio-geojson-geonetnz-volcano/default.nix +++ b/pkgs/development/python-modules/aio-geojson-geonetnz-volcano/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python module for accessing the GeoNet NZ Volcanic GeoJSON feeds"; homepage = "https://github.com/exxamalte/python-aio-geojson-geonetnz-volcano"; changelog = "https://github.com/exxamalte/python-aio-geojson-geonetnz-volcano/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-geojson-nsw-rfs-incidents/default.nix b/pkgs/development/python-modules/aio-geojson-nsw-rfs-incidents/default.nix index 1c330d99442d..49cd7a8da54a 100644 --- a/pkgs/development/python-modules/aio-geojson-nsw-rfs-incidents/default.nix +++ b/pkgs/development/python-modules/aio-geojson-nsw-rfs-incidents/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python module for accessing the NSW Rural Fire Service incidents feeds"; homepage = "https://github.com/exxamalte/python-aio-geojson-nsw-rfs-incidents"; changelog = "https://github.com/exxamalte/python-aio-geojson-geonetnz-quakes/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-geojson-usgs-earthquakes/default.nix b/pkgs/development/python-modules/aio-geojson-usgs-earthquakes/default.nix index 538f76925af0..c5c6dc9005db 100644 --- a/pkgs/development/python-modules/aio-geojson-usgs-earthquakes/default.nix +++ b/pkgs/development/python-modules/aio-geojson-usgs-earthquakes/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Module for accessing the U.S. Geological Survey Earthquake Hazards Program feeds"; homepage = "https://github.com/exxamalte/python-aio-geojson-usgs-earthquakes"; changelog = "https://github.com/exxamalte/python-aio-geojson-usgs-earthquakes/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-georss-client/default.nix b/pkgs/development/python-modules/aio-georss-client/default.nix index fe7665a2f9a3..9efc2dc8d144 100644 --- a/pkgs/development/python-modules/aio-georss-client/default.nix +++ b/pkgs/development/python-modules/aio-georss-client/default.nix @@ -50,13 +50,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "aio_georss_client" ]; - meta = with lib; { + meta = { # https://github.com/exxamalte/python-aio-georss-client/issues/63 broken = lib.versionAtLeast xmltodict.version "1"; description = "Python library for accessing GeoRSS feeds"; homepage = "https://github.com/exxamalte/python-aio-georss-client"; changelog = "https://github.com/exxamalte/python-aio-georss-client/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-georss-gdacs/default.nix b/pkgs/development/python-modules/aio-georss-gdacs/default.nix index 24b0823106a3..87ecd76272e9 100644 --- a/pkgs/development/python-modules/aio-georss-gdacs/default.nix +++ b/pkgs/development/python-modules/aio-georss-gdacs/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aio_georss_gdacs" ]; - meta = with lib; { + meta = { description = "Python library for accessing GeoRSS feeds"; homepage = "https://github.com/exxamalte/python-aio-georss-gdacs"; changelog = "https://github.com/exxamalte/python-aio-georss-gdacs/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aio-pika/default.nix b/pkgs/development/python-modules/aio-pika/default.nix index 0491955d0463..d8fb770699ce 100644 --- a/pkgs/development/python-modules/aio-pika/default.nix +++ b/pkgs/development/python-modules/aio-pika/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aio_pika" ]; - meta = with lib; { + meta = { description = "AMQP 0.9 client designed for asyncio and humans"; homepage = "https://github.com/mosquito/aio-pika"; changelog = "https://github.com/mosquito/aio-pika/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/aioairq/default.nix b/pkgs/development/python-modules/aioairq/default.nix index d5c84610f1fc..624c34b3b40f 100644 --- a/pkgs/development/python-modules/aioairq/default.nix +++ b/pkgs/development/python-modules/aioairq/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { "tests/test_core_on_device.py" ]; - meta = with lib; { + meta = { description = "Library to retrieve data from air-Q devices"; homepage = "https://github.com/CorantGmbH/aioairq"; changelog = "https://github.com/CorantGmbH/aioairq/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioairzone-cloud/default.nix b/pkgs/development/python-modules/aioairzone-cloud/default.nix index 37c0a1118990..9883a1c77e50 100644 --- a/pkgs/development/python-modules/aioairzone-cloud/default.nix +++ b/pkgs/development/python-modules/aioairzone-cloud/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Library to control Airzone via Cloud API"; homepage = "https://github.com/Noltari/aioairzone-cloud"; changelog = "https://github.com/Noltari/aioairzone-cloud/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioairzone/default.nix b/pkgs/development/python-modules/aioairzone/default.nix index 734ff01b2686..a7ab9f0101b8 100644 --- a/pkgs/development/python-modules/aioairzone/default.nix +++ b/pkgs/development/python-modules/aioairzone/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioairzone" ]; - meta = with lib; { + meta = { description = "Module to control AirZone devices"; homepage = "https://github.com/Noltari/aioairzone"; changelog = "https://github.com/Noltari/aioairzone/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioambient/default.nix b/pkgs/development/python-modules/aioambient/default.nix index c89eb85fa364..8331268a1415 100644 --- a/pkgs/development/python-modules/aioambient/default.nix +++ b/pkgs/development/python-modules/aioambient/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioambient" ]; - meta = with lib; { + meta = { description = "Python library for the Ambient Weather API"; homepage = "https://github.com/bachya/aioambient"; changelog = "https://github.com/bachya/aioambient/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioamqp/default.nix b/pkgs/development/python-modules/aioamqp/default.nix index 4beaeb6ce2c3..01d85f96e252 100644 --- a/pkgs/development/python-modules/aioamqp/default.nix +++ b/pkgs/development/python-modules/aioamqp/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioamqp" ]; - meta = with lib; { + meta = { description = "AMQP implementation using asyncio"; homepage = "https://github.com/polyconseil/aioamqp"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aioapcaccess/default.nix b/pkgs/development/python-modules/aioapcaccess/default.nix index a846dc431ff4..6479dbe5bcdb 100644 --- a/pkgs/development/python-modules/aioapcaccess/default.nix +++ b/pkgs/development/python-modules/aioapcaccess/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioapcaccess" ]; - meta = with lib; { + meta = { description = "Module for working with apcaccess"; homepage = "https://github.com/yuxincs/aioapcaccess"; changelog = "https://github.com/yuxincs/aioapcaccess/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioapns/default.nix b/pkgs/development/python-modules/aioapns/default.nix index 3f98072ad4e6..829058b00167 100644 --- a/pkgs/development/python-modules/aioapns/default.nix +++ b/pkgs/development/python-modules/aioapns/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioapns" ]; - meta = with lib; { + meta = { description = "Efficient APNs Client Library"; homepage = "https://github.com/Fatal1ty/aioapns"; changelog = "https://github.com/Fatal1ty/aioapns/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aioaseko/default.nix b/pkgs/development/python-modules/aioaseko/default.nix index f1f306deac3a..71310ae8e000 100644 --- a/pkgs/development/python-modules/aioaseko/default.nix +++ b/pkgs/development/python-modules/aioaseko/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioaseko" ]; - meta = with lib; { + meta = { description = "Module to interact with the Aseko Pool Live API"; homepage = "https://github.com/milanmeu/aioaseko"; changelog = "https://github.com/milanmeu/aioaseko/releases/tag/v${version}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioasuswrt/default.nix b/pkgs/development/python-modules/aioasuswrt/default.nix index 3ef2f563bd71..7e36c25fbe34 100644 --- a/pkgs/development/python-modules/aioasuswrt/default.nix +++ b/pkgs/development/python-modules/aioasuswrt/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioasuswrt" ]; - meta = with lib; { + meta = { description = "Python module for Asuswrt"; homepage = "https://github.com/kennedyshead/aioasuswrt"; changelog = "https://github.com/kennedyshead/aioasuswrt/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioazuredevops/default.nix b/pkgs/development/python-modules/aioazuredevops/default.nix index c6fc56cf0a70..3573c5ab088f 100644 --- a/pkgs/development/python-modules/aioazuredevops/default.nix +++ b/pkgs/development/python-modules/aioazuredevops/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioazuredevops" ]; - meta = with lib; { + meta = { changelog = "https://github.com/timmo001/aioazuredevops/releases/tag/${version}"; description = "Get data from the Azure DevOps API"; homepage = "https://github.com/timmo001/aioazuredevops"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/aiobafi6/default.nix b/pkgs/development/python-modules/aiobafi6/default.nix index 257af6178241..5147224c97bd 100644 --- a/pkgs/development/python-modules/aiobafi6/default.nix +++ b/pkgs/development/python-modules/aiobafi6/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiobafi6" ]; - meta = with lib; { + meta = { description = "Library for communication with the Big Ass Fans i6 firmware"; homepage = "https://github.com/jfroy/aiobafi6"; changelog = "https://github.com/jfroy/aiobafi6/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "aiobafi6"; }; } diff --git a/pkgs/development/python-modules/aiobiketrax/default.nix b/pkgs/development/python-modules/aiobiketrax/default.nix index 52dbad4fedc0..9f92bcb2c34d 100644 --- a/pkgs/development/python-modules/aiobiketrax/default.nix +++ b/pkgs/development/python-modules/aiobiketrax/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiobiketrax" ]; - meta = with lib; { + meta = { description = "Library for interacting with the PowUnity BikeTrax GPS tracker"; homepage = "https://github.com/basilfx/aiobiketrax"; changelog = "https://github.com/basilfx/aiobiketrax/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioblescan/default.nix b/pkgs/development/python-modules/aioblescan/default.nix index b2e12d4d10d4..1677157788be 100644 --- a/pkgs/development/python-modules/aioblescan/default.nix +++ b/pkgs/development/python-modules/aioblescan/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioblescan" ]; - meta = with lib; { + meta = { description = "Library to listen for BLE advertized packets"; mainProgram = "aioblescan"; homepage = "https://github.com/frawau/aioblescan"; changelog = "https://github.com/frawau/aioblescan/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiobroadlink/default.nix b/pkgs/development/python-modules/aiobroadlink/default.nix index 01a0df16561c..592f59686256 100644 --- a/pkgs/development/python-modules/aiobroadlink/default.nix +++ b/pkgs/development/python-modules/aiobroadlink/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiobroadlink" ]; - meta = with lib; { + meta = { description = "Python module to control various Broadlink devices"; mainProgram = "aiobroadlink"; homepage = "https://github.com/frawau/aiobroadlink"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiocoap/default.nix b/pkgs/development/python-modules/aiocoap/default.nix index f4bb7f20ac74..86daf1684b14 100644 --- a/pkgs/development/python-modules/aiocoap/default.nix +++ b/pkgs/development/python-modules/aiocoap/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiocoap" ]; - meta = with lib; { + meta = { description = "Python CoAP library"; homepage = "https://aiocoap.readthedocs.io/"; changelog = "https://github.com/chrysn/aiocoap/blob/${version}/NEWS"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiocomelit/default.nix b/pkgs/development/python-modules/aiocomelit/default.nix index 58d857f5c346..bdd7eed0d445 100644 --- a/pkgs/development/python-modules/aiocomelit/default.nix +++ b/pkgs/development/python-modules/aiocomelit/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiocomelit" ]; - meta = with lib; { + meta = { description = "Library to control Comelit Simplehome"; homepage = "https://github.com/chemelli74/aiocomelit"; changelog = "https://github.com/chemelli74/aiocomelit/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioconsole/default.nix b/pkgs/development/python-modules/aioconsole/default.nix index e047d2e60f35..88c5d428dfa7 100644 --- a/pkgs/development/python-modules/aioconsole/default.nix +++ b/pkgs/development/python-modules/aioconsole/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioconsole" ]; - meta = with lib; { + meta = { description = "Asynchronous console and interfaces for asyncio"; changelog = "https://github.com/vxgmichel/aioconsole/releases/tag/v${version}"; homepage = "https://github.com/vxgmichel/aioconsole"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "apython"; }; } diff --git a/pkgs/development/python-modules/aiocontextvars/default.nix b/pkgs/development/python-modules/aiocontextvars/default.nix index 47f7108309e6..7bcf18ee24d6 100644 --- a/pkgs/development/python-modules/aiocontextvars/default.nix +++ b/pkgs/development/python-modules/aiocontextvars/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pytest-asyncio ]; - meta = with lib; { + meta = { description = "Asyncio support for PEP-567 contextvars backport"; homepage = "https://github.com/fantix/aiocontextvars"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiocron/default.nix b/pkgs/development/python-modules/aiocron/default.nix index 9c504aaa6618..48591ca542bc 100644 --- a/pkgs/development/python-modules/aiocron/default.nix +++ b/pkgs/development/python-modules/aiocron/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiocron" ]; - meta = with lib; { + meta = { description = "Crontabs for asyncio"; homepage = "https://github.com/gawel/aiocron/"; - license = licenses.mit; - maintainers = [ maintainers.starcraft66 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.starcraft66 ]; }; } diff --git a/pkgs/development/python-modules/aiocsv/default.nix b/pkgs/development/python-modules/aiocsv/default.nix index 72d2626105d3..f70e104b5f3c 100644 --- a/pkgs/development/python-modules/aiocsv/default.nix +++ b/pkgs/development/python-modules/aiocsv/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { "tests/test_parser.py" ]; - meta = with lib; { + meta = { description = "Library for for asynchronous CSV reading/writing"; homepage = "https://github.com/MKuranowski/aiocsv"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiocurrencylayer/default.nix b/pkgs/development/python-modules/aiocurrencylayer/default.nix index e1c86d9588b6..5ee030e96cfa 100644 --- a/pkgs/development/python-modules/aiocurrencylayer/default.nix +++ b/pkgs/development/python-modules/aiocurrencylayer/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiocurrencylayer" ]; - meta = with lib; { + meta = { description = "Python API for interacting with currencylayer"; homepage = "https://github.com/home-assistant-ecosystem/aiocurrencylayer"; changelog = "https://github.com/home-assistant-ecosystem/aiocurrencylayer/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiodhcpwatcher/default.nix b/pkgs/development/python-modules/aiodhcpwatcher/default.nix index 3f957988254d..cbce0aa6ef70 100644 --- a/pkgs/development/python-modules/aiodhcpwatcher/default.nix +++ b/pkgs/development/python-modules/aiodhcpwatcher/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiodhcpwatcher" ]; - meta = with lib; { + meta = { description = "Watch for DHCP packets with asyncio"; homepage = "https://github.com/bdraco/aiodhcpwatcher"; changelog = "https://github.com/bdraco/aiodhcpwatcher/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/aiodiscover/default.nix b/pkgs/development/python-modules/aiodiscover/default.nix index 9311e645ad76..92ca881060e7 100644 --- a/pkgs/development/python-modules/aiodiscover/default.nix +++ b/pkgs/development/python-modules/aiodiscover/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiodiscover" ]; - meta = with lib; { + meta = { description = "Python module to discover hosts via ARP and PTR lookup"; homepage = "https://github.com/bdraco/aiodiscover"; changelog = "https://github.com/bdraco/aiodiscover/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiodocker/default.nix b/pkgs/development/python-modules/aiodocker/default.nix index 477fd65a3bfe..7380b62f4869 100644 --- a/pkgs/development/python-modules/aiodocker/default.nix +++ b/pkgs/development/python-modules/aiodocker/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiodocker" ]; - meta = with lib; { + meta = { changelog = "https://github.com/aio-libs/aiodocker/releases/tag/${src.tag}"; description = "Docker API client for asyncio"; homepage = "https://github.com/aio-libs/aiodocker"; - license = licenses.asl20; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/aioeafm/default.nix b/pkgs/development/python-modules/aioeafm/default.nix index 95b287786cdd..198e0196dd92 100644 --- a/pkgs/development/python-modules/aioeafm/default.nix +++ b/pkgs/development/python-modules/aioeafm/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioeafm" ]; - meta = with lib; { + meta = { description = "Python client for access the Real Time flood monitoring API"; homepage = "https://github.com/Jc2k/aioeafm"; changelog = "https://github.com/Jc2k/aioeafm/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioeagle/default.nix b/pkgs/development/python-modules/aioeagle/default.nix index 802090bfef69..5084b94288d5 100644 --- a/pkgs/development/python-modules/aioeagle/default.nix +++ b/pkgs/development/python-modules/aioeagle/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioeagle" ]; - meta = with lib; { + meta = { description = "Python library to control EAGLE-200"; homepage = "https://github.com/home-assistant-libs/aioeagle"; changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioelectricitymaps/default.nix b/pkgs/development/python-modules/aioelectricitymaps/default.nix index 1f487500e3bc..3155a9eb443e 100644 --- a/pkgs/development/python-modules/aioelectricitymaps/default.nix +++ b/pkgs/development/python-modules/aioelectricitymaps/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { # https://github.com/jpbede/aioelectricitymaps/pull/415 pytestFlags = [ "--snapshot-update" ]; - meta = with lib; { + meta = { description = "Module for interacting with Electricity maps"; homepage = "https://github.com/jpbede/aioelectricitymaps"; changelog = "https://github.com/jpbede/aioelectricitymaps/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioemonitor/default.nix b/pkgs/development/python-modules/aioemonitor/default.nix index 7c9a6e1c4d5e..8ad44c65e1c5 100644 --- a/pkgs/development/python-modules/aioemonitor/default.nix +++ b/pkgs/development/python-modules/aioemonitor/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioemonitor" ]; - meta = with lib; { + meta = { description = "Python client for SiteSage Emonitor"; mainProgram = "my_example"; homepage = "https://github.com/bdraco/aioemonitor"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix index 05233f59e0e0..d4fd02017e31 100644 --- a/pkgs/development/python-modules/aioesphomeapi/default.nix +++ b/pkgs/development/python-modules/aioesphomeapi/default.nix @@ -73,12 +73,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioesphomeapi" ]; - meta = with lib; { + meta = { description = "Python Client for ESPHome native API"; homepage = "https://github.com/esphome/aioesphomeapi"; changelog = "https://github.com/esphome/aioesphomeapi/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab hexa ]; diff --git a/pkgs/development/python-modules/aioextensions/default.nix b/pkgs/development/python-modules/aioextensions/default.nix index 34097274aa69..c931ed86643f 100644 --- a/pkgs/development/python-modules/aioextensions/default.nix +++ b/pkgs/development/python-modules/aioextensions/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "High performance functions to work with the async IO"; homepage = "https://kamadorueda.github.io/aioextensions"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/aiofile/default.nix b/pkgs/development/python-modules/aiofile/default.nix index 2a7f28b35151..4c0a6fc07e30 100644 --- a/pkgs/development/python-modules/aiofile/default.nix +++ b/pkgs/development/python-modules/aiofile/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_write_read_nothing" ]; - meta = with lib; { + meta = { description = "File operations with asyncio support"; homepage = "https://github.com/mosquito/aiofile"; changelog = "https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiofiles/default.nix b/pkgs/development/python-modules/aiofiles/default.nix index be4bcde5e261..40f130759a6e 100644 --- a/pkgs/development/python-modules/aiofiles/default.nix +++ b/pkgs/development/python-modules/aiofiles/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiofiles" ]; - meta = with lib; { + meta = { description = "File support for asyncio"; homepage = "https://github.com/Tinche/aiofiles"; changelog = "https://github.com/Tinche/aiofiles/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aioflo/default.nix b/pkgs/development/python-modules/aioflo/default.nix index 5e3056b755e0..9a1fb5a14a59 100644 --- a/pkgs/development/python-modules/aioflo/default.nix +++ b/pkgs/development/python-modules/aioflo/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "test_system_modes" ]; - meta = with lib; { + meta = { description = "Python library for Flo by Moen Smart Water Detectors"; homepage = "https://github.com/bachya/aioflo"; changelog = "https://github.com/bachya/aioflo/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioftp/default.nix b/pkgs/development/python-modules/aioftp/default.nix index 0dd62b68739c..614aea4f7bf7 100644 --- a/pkgs/development/python-modules/aioftp/default.nix +++ b/pkgs/development/python-modules/aioftp/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioftp" ]; - meta = with lib; { + meta = { description = "Python FTP client/server for asyncio"; homepage = "https://aioftp.readthedocs.io/"; changelog = "https://github.com/aio-libs/aioftp/blob/${version}/history.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aioguardian/default.nix b/pkgs/development/python-modules/aioguardian/default.nix index f20dd8d66fc0..a26fdf313b66 100644 --- a/pkgs/development/python-modules/aioguardian/default.nix +++ b/pkgs/development/python-modules/aioguardian/default.nix @@ -64,7 +64,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioguardian" ]; - meta = with lib; { + meta = { description = "Python library to interact with Elexa Guardian devices"; longDescription = '' aioguardian is an asyncio-focused library for interacting with the @@ -72,7 +72,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/bachya/aioguardian"; changelog = "https://github.com/bachya/aioguardian/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiohappyeyeballs/default.nix b/pkgs/development/python-modules/aiohappyeyeballs/default.nix index 1ed3bcfe9b66..7d9e914731aa 100644 --- a/pkgs/development/python-modules/aiohappyeyeballs/default.nix +++ b/pkgs/development/python-modules/aiohappyeyeballs/default.nix @@ -57,12 +57,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohappyeyeballs" ]; - meta = with lib; { + meta = { description = "Happy Eyeballs for pre-resolved hosts"; homepage = "https://github.com/bdraco/aiohappyeyeballs"; changelog = "https://github.com/bdraco/aiohappyeyeballs/blob/v${version}/CHANGELOG.md"; - license = licenses.psfl; - maintainers = with maintainers; [ + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ fab hexa ]; diff --git a/pkgs/development/python-modules/aioharmony/default.nix b/pkgs/development/python-modules/aioharmony/default.nix index da7a004b3d29..099581a01cf1 100644 --- a/pkgs/development/python-modules/aioharmony/default.nix +++ b/pkgs/development/python-modules/aioharmony/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "aioharmony.harmonyclient" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Harmony-Libs/aioharmony"; description = "Python library for interacting the Logitech Harmony devices"; mainProgram = "aioharmony"; - license = licenses.asl20; - maintainers = with maintainers; [ oro ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ oro ]; }; } diff --git a/pkgs/development/python-modules/aiohomekit/default.nix b/pkgs/development/python-modules/aiohomekit/default.nix index 8fb6e9b2a44e..949805859e10 100644 --- a/pkgs/development/python-modules/aiohomekit/default.nix +++ b/pkgs/development/python-modules/aiohomekit/default.nix @@ -62,7 +62,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohomekit" ]; - meta = with lib; { + meta = { description = "Python module that implements the HomeKit protocol"; longDescription = '' This Python library implements the HomeKit protocol for controlling @@ -70,8 +70,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/Jc2k/aiohomekit"; changelog = "https://github.com/Jc2k/aiohomekit/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "aiohomekitctl"; }; } diff --git a/pkgs/development/python-modules/aiohttp-apispec/default.nix b/pkgs/development/python-modules/aiohttp-apispec/default.nix index 55584cea286c..318b70c6c837 100644 --- a/pkgs/development/python-modules/aiohttp-apispec/default.nix +++ b/pkgs/development/python-modules/aiohttp-apispec/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_apispec" ]; - meta = with lib; { + meta = { description = "Build and document REST APIs with aiohttp and apispec"; homepage = "https://github.com/maximdanilchenko/aiohttp-apispec/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-basicauth/default.nix b/pkgs/development/python-modules/aiohttp-basicauth/default.nix index 0c6d0b622ab6..6d0a6148a63f 100644 --- a/pkgs/development/python-modules/aiohttp-basicauth/default.nix +++ b/pkgs/development/python-modules/aiohttp-basicauth/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_basicauth" ]; - meta = with lib; { + meta = { description = "HTTP basic authentication middleware for aiohttp 3.0"; homepage = "https://github.com/romis2012/aiohttp-basicauth"; - license = licenses.asl20; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-client-cache/default.nix b/pkgs/development/python-modules/aiohttp-client-cache/default.nix index 6a80eb170645..bacd4f96abe5 100644 --- a/pkgs/development/python-modules/aiohttp-client-cache/default.nix +++ b/pkgs/development/python-modules/aiohttp-client-cache/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { "test/integration/*" ]; - meta = with lib; { + meta = { description = "Async persistent cache for aiohttp requests"; homepage = "https://github.com/requests-cache/aiohttp-client-cache"; changelog = "https://github.com/requests-cache/aiohttp-client-cache/blob/v${version}/HISTORY.md"; - license = licenses.mit; - maintainers = with maintainers; [ seirl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seirl ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-cors/default.nix b/pkgs/development/python-modules/aiohttp-cors/default.nix index a0ca926c88ad..083b1a513063 100644 --- a/pkgs/development/python-modules/aiohttp-cors/default.nix +++ b/pkgs/development/python-modules/aiohttp-cors/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { # interactive browser tests using selenium disabledTestPaths = [ "tests/integration" ]; - meta = with lib; { + meta = { changelog = "https://github.com/aio-libs/aiohttp-cors/blob/${src.tag}/CHANGES.rst"; description = "CORS support for aiohttp"; homepage = "https://github.com/aio-libs/aiohttp-cors"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-fast-zlib/default.nix b/pkgs/development/python-modules/aiohttp-fast-zlib/default.nix index b95c98d4bd28..017a8685c791 100644 --- a/pkgs/development/python-modules/aiohttp-fast-zlib/default.nix +++ b/pkgs/development/python-modules/aiohttp-fast-zlib/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_fast_zlib" ]; - meta = with lib; { + meta = { description = "Use the fastest installed zlib compatible library with aiohttp"; homepage = "https://github.com/bdraco/aiohttp-fast-zlib"; changelog = "https://github.com/bdraco/aiohttp-fast-zlib/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-jinja2/default.nix b/pkgs/development/python-modules/aiohttp-jinja2/default.nix index b1994904e104..b37c5b46bdfd 100644 --- a/pkgs/development/python-modules/aiohttp-jinja2/default.nix +++ b/pkgs/development/python-modules/aiohttp-jinja2/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_jinja2" ]; - meta = with lib; { + meta = { description = "Jinja2 support for aiohttp"; homepage = "https://github.com/aio-libs/aiohttp_jinja2"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-middlewares/default.nix b/pkgs/development/python-modules/aiohttp-middlewares/default.nix index 8b086fd8114b..d23cc2253a65 100644 --- a/pkgs/development/python-modules/aiohttp-middlewares/default.nix +++ b/pkgs/development/python-modules/aiohttp-middlewares/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { "test_shield_middleware_funcitonal[PUT-False]" ]; - meta = with lib; { + meta = { description = "Collection of useful middlewares for aiohttp.web applications"; homepage = "https://github.com/playpauseandstop/aiohttp-middlewares"; changelog = "https://github.com/playpauseandstop/aiohttp-middlewares/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-oauthlib/default.nix b/pkgs/development/python-modules/aiohttp-oauthlib/default.nix index 31972760c132..9578c499a7fc 100644 --- a/pkgs/development/python-modules/aiohttp-oauthlib/default.nix +++ b/pkgs/development/python-modules/aiohttp-oauthlib/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # Package has no tests. doCheck = false; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~whynothugo/aiohttp-oauthlib"; description = "oauthlib integration for aiohttp clients"; - license = licenses.isc; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sumnerevans ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-openmetrics/default.nix b/pkgs/development/python-modules/aiohttp-openmetrics/default.nix index f91f30c39610..0d84b50b7d86 100644 --- a/pkgs/development/python-modules/aiohttp-openmetrics/default.nix +++ b/pkgs/development/python-modules/aiohttp-openmetrics/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_openmetrics" ]; - meta = with lib; { + meta = { description = "OpenMetrics provider for aiohttp"; homepage = "https://github.com/jelmer/aiohttp-openmetrics/"; changelog = "https://github.com/jelmer/aiohttp-openmetrics/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-remotes/default.nix b/pkgs/development/python-modules/aiohttp-remotes/default.nix index b9377de4daf1..3649995a20a2 100644 --- a/pkgs/development/python-modules/aiohttp-remotes/default.nix +++ b/pkgs/development/python-modules/aiohttp-remotes/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Set of useful tools for aiohttp.web server"; homepage = "https://github.com/wikibusiness/aiohttp-remotes"; - license = licenses.mit; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ qyliss ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-retry/default.nix b/pkgs/development/python-modules/aiohttp-retry/default.nix index faea017d26fd..34651b41fe0a 100644 --- a/pkgs/development/python-modules/aiohttp-retry/default.nix +++ b/pkgs/development/python-modules/aiohttp-retry/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pytestFlags = [ "--asyncio-mode=auto" ]; - meta = with lib; { + meta = { description = "Retry client for aiohttp"; homepage = "https://github.com/inyutin/aiohttp_retry"; changelog = "https://github.com/inyutin/aiohttp_retry/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-session/default.nix b/pkgs/development/python-modules/aiohttp-session/default.nix index 938cd1294860..b7ffd5565eed 100644 --- a/pkgs/development/python-modules/aiohttp-session/default.nix +++ b/pkgs/development/python-modules/aiohttp-session/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_session" ]; - meta = with lib; { + meta = { description = "Web sessions for aiohttp.web"; homepage = "https://github.com/aio-libs/aiohttp-session"; changelog = "https://github.com/aio-libs/aiohttp-session/blob/${src.rev}/CHANGES.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-wsgi/default.nix b/pkgs/development/python-modules/aiohttp-wsgi/default.nix index dfe6743d700f..8290360f3186 100644 --- a/pkgs/development/python-modules/aiohttp-wsgi/default.nix +++ b/pkgs/development/python-modules/aiohttp-wsgi/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_wsgi" ]; - meta = with lib; { + meta = { description = "WSGI adapter for aiohttp"; mainProgram = "aiohttp-wsgi-serve"; homepage = "https://github.com/etianen/aiohttp-wsgi"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix index 35d176e3f70b..2706b731c80a 100644 --- a/pkgs/development/python-modules/aiohttp/default.nix +++ b/pkgs/development/python-modules/aiohttp/default.nix @@ -164,11 +164,11 @@ buildPythonPackage rec { export TMPDIR="/tmp" ''; - meta = with lib; { + meta = { changelog = "https://docs.aiohttp.org/en/${src.tag}/changes.html"; description = "Asynchronous HTTP Client/Server for Python and asyncio"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/aio-libs/aiohttp"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/aiohue/default.nix b/pkgs/development/python-modules/aiohue/default.nix index 0dcbbfc2061f..fcf34184bf96 100644 --- a/pkgs/development/python-modules/aiohue/default.nix +++ b/pkgs/development/python-modules/aiohue/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "examples/" ]; - meta = with lib; { + meta = { description = "Python package to talk to Philips Hue"; homepage = "https://github.com/home-assistant-libs/aiohue"; changelog = "https://github.com/home-assistant-libs/aiohue/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiohwenergy/default.nix b/pkgs/development/python-modules/aiohwenergy/default.nix index 736d6805c7d3..2ee52d6f41e5 100644 --- a/pkgs/development/python-modules/aiohwenergy/default.nix +++ b/pkgs/development/python-modules/aiohwenergy/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohwenergy" ]; - meta = with lib; { + meta = { description = "Python library to interact with the HomeWizard Energy devices API"; homepage = "https://github.com/DCSBL/aiohwenergy"; changelog = "https://github.com/DCSBL/aiohwenergy/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioinflux/default.nix b/pkgs/development/python-modules/aioinflux/default.nix index 679b9ff5a3ff..72b6034cc80a 100644 --- a/pkgs/development/python-modules/aioinflux/default.nix +++ b/pkgs/development/python-modules/aioinflux/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioinflux" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for InfluxDB"; homepage = "https://github.com/gusutabopb/aioinflux"; changelog = "https://github.com/gusutabopb/aioinflux/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ liamdiprose lopsided98 ]; diff --git a/pkgs/development/python-modules/aioitertools/default.nix b/pkgs/development/python-modules/aioitertools/default.nix index 879d1d5c6b52..793d8fb2a9a4 100644 --- a/pkgs/development/python-modules/aioitertools/default.nix +++ b/pkgs/development/python-modules/aioitertools/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioitertools" ]; - meta = with lib; { + meta = { description = "Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables"; homepage = "https://aioitertools.omnilib.dev/"; changelog = "https://github.com/omnilib/aioitertools/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/aiojellyfin/default.nix b/pkgs/development/python-modules/aiojellyfin/default.nix index 6db4d9c66c59..1642706cccdc 100644 --- a/pkgs/development/python-modules/aiojellyfin/default.nix +++ b/pkgs/development/python-modules/aiojellyfin/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiojellyfin" ]; - meta = with lib; { + meta = { description = ""; homepage = "https://github.com/Jc2k/aiojellyfin"; changelog = "https://github.com/Jc2k/aiojellyfin/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/aiokafka/default.nix b/pkgs/development/python-modules/aiokafka/default.nix index b971ef3f3946..a1244ed7f0f8 100644 --- a/pkgs/development/python-modules/aiokafka/default.nix +++ b/pkgs/development/python-modules/aiokafka/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiokafka" ]; - meta = with lib; { + meta = { description = "Kafka integration with asyncio"; homepage = "https://aiokafka.readthedocs.org"; changelog = "https://github.com/aio-libs/aiokafka/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiokef/default.nix b/pkgs/development/python-modules/aiokef/default.nix index 25385430e2bb..a5ff261b3a04 100644 --- a/pkgs/development/python-modules/aiokef/default.nix +++ b/pkgs/development/python-modules/aiokef/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { enabledTestPaths = [ "tests" ]; pythonImportsCheck = [ "aiokef" ]; - meta = with lib; { + meta = { description = "Python API for KEF speakers"; homepage = "https://github.com/basnijholt/aiokef"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiolifx-connection/default.nix b/pkgs/development/python-modules/aiolifx-connection/default.nix index 4c024d45a378..c03a6b6bb000 100644 --- a/pkgs/development/python-modules/aiolifx-connection/default.nix +++ b/pkgs/development/python-modules/aiolifx-connection/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiolifx_connection" ]; - meta = with lib; { + meta = { description = "Wrapper for aiolifx to connect to a single LIFX device"; homepage = "https://github.com/bdraco/aiolifx_connection"; - license = licenses.bsd3; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lukegb ]; }; } diff --git a/pkgs/development/python-modules/aiolifx-effects/default.nix b/pkgs/development/python-modules/aiolifx-effects/default.nix index 975dce93766a..3960b059dd12 100644 --- a/pkgs/development/python-modules/aiolifx-effects/default.nix +++ b/pkgs/development/python-modules/aiolifx-effects/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiolifx_effects" ]; - meta = with lib; { + meta = { changelog = "https://github.com/amelchio/aiolifx_effects/releases/tag/v${version}"; description = "Light effects (pulse, colorloop ...) for LIFX lights running on aiolifx"; homepage = "https://github.com/amelchio/aiolifx_effects"; - license = licenses.mit; - maintainers = with maintainers; [ netixx ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ netixx ]; }; } diff --git a/pkgs/development/python-modules/aiolifx-themes/default.nix b/pkgs/development/python-modules/aiolifx-themes/default.nix index 60c64bf7abe4..3f518fe0f54d 100644 --- a/pkgs/development/python-modules/aiolifx-themes/default.nix +++ b/pkgs/development/python-modules/aiolifx-themes/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiolifx_themes" ]; - meta = with lib; { + meta = { description = "Color themes for LIFX lights running on aiolifx"; homepage = "https://github.com/Djelibeybi/aiolifx-themes"; changelog = "https://github.com/Djelibeybi/aiolifx-themes/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukegb ]; }; } diff --git a/pkgs/development/python-modules/aiolookin/default.nix b/pkgs/development/python-modules/aiolookin/default.nix index fa1d100cb914..0106cb75829e 100644 --- a/pkgs/development/python-modules/aiolookin/default.nix +++ b/pkgs/development/python-modules/aiolookin/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiolookin" ]; - meta = with lib; { + meta = { description = "Python client for interacting with LOOKin devices"; homepage = "https://github.com/ANMalko/aiolookin"; changelog = "https://github.com/ANMalko/aiolookin/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiolyric/default.nix b/pkgs/development/python-modules/aiolyric/default.nix index 07d8611fc94b..70bd17312027 100644 --- a/pkgs/development/python-modules/aiolyric/default.nix +++ b/pkgs/development/python-modules/aiolyric/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "tests/test__version.py" ]; - meta = with lib; { + meta = { description = "Python module for the Honeywell Lyric Platform"; homepage = "https://github.com/timmo001/aiolyric"; changelog = "https://github.com/timmo001/aiolyric/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiomcache/default.nix b/pkgs/development/python-modules/aiomcache/default.nix index f320ae7945d3..f4122d34ab2f 100644 --- a/pkgs/development/python-modules/aiomcache/default.nix +++ b/pkgs/development/python-modules/aiomcache/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiomcache" ]; - meta = with lib; { + meta = { changelog = "https://github.com/aio-libs/aiomcache/blob/${src.rev}/CHANGES.rst"; description = "Minimal asyncio memcached client"; homepage = "https://github.com/aio-libs/aiomcache/"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/aiomealie/default.nix b/pkgs/development/python-modules/aiomealie/default.nix index 15af58fac398..6c4236bbc010 100644 --- a/pkgs/development/python-modules/aiomealie/default.nix +++ b/pkgs/development/python-modules/aiomealie/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiomealie" ]; - meta = with lib; { + meta = { description = "Module to interact with Mealie"; homepage = "https://github.com/joostlek/python-mealie"; changelog = "https://github.com/joostlek/python-mealie/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiomisc-pytest/default.nix b/pkgs/development/python-modules/aiomisc-pytest/default.nix index 1db59e19c44b..4c5f8be44803 100644 --- a/pkgs/development/python-modules/aiomisc-pytest/default.nix +++ b/pkgs/development/python-modules/aiomisc-pytest/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Pytest integration for aiomisc"; homepage = "https://github.com/aiokitchen/aiomisc-pytest"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiomisc/default.nix b/pkgs/development/python-modules/aiomisc/default.nix index 7b2efe7507d3..018bda2a0d44 100644 --- a/pkgs/development/python-modules/aiomisc/default.nix +++ b/pkgs/development/python-modules/aiomisc/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { # "tests/test_raven_service.py" # ]; - meta = with lib; { + meta = { description = "Miscellaneous utils for asyncio"; homepage = "https://github.com/aiokitchen/aiomisc"; changelog = "https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiomodernforms/default.nix b/pkgs/development/python-modules/aiomodernforms/default.nix index bd3f05b94273..8d89103e33ad 100644 --- a/pkgs/development/python-modules/aiomodernforms/default.nix +++ b/pkgs/development/python-modules/aiomodernforms/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiomodernforms" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for Modern Forms fans"; homepage = "https://github.com/wonderslug/aiomodernforms"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/aiomqtt/default.nix b/pkgs/development/python-modules/aiomqtt/default.nix index 67afc6e13efe..7c9ef0ec9555 100644 --- a/pkgs/development/python-modules/aiomqtt/default.nix +++ b/pkgs/development/python-modules/aiomqtt/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "network" ]; - meta = with lib; { + meta = { description = "Idiomatic asyncio MQTT client, wrapped around paho-mqtt"; homepage = "https://github.com/sbtinstruments/aiomqtt"; changelog = "https://github.com/sbtinstruments/aiomqtt/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiomultiprocess/default.nix b/pkgs/development/python-modules/aiomultiprocess/default.nix index dd953a8281f9..b154e670b786 100644 --- a/pkgs/development/python-modules/aiomultiprocess/default.nix +++ b/pkgs/development/python-modules/aiomultiprocess/default.nix @@ -38,7 +38,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiomultiprocess" ]; - meta = with lib; { + meta = { description = "Python module to improve performance"; longDescription = '' aiomultiprocess presents a simple interface, while running a full @@ -48,7 +48,7 @@ buildPythonPackage rec { the workload and number of cores available. ''; homepage = "https://github.com/omnilib/aiomultiprocess"; - license = with licenses; [ mit ]; - maintainers = [ maintainers.fab ]; + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.fab ]; }; } diff --git a/pkgs/development/python-modules/aiomysql/default.nix b/pkgs/development/python-modules/aiomysql/default.nix index 3b83b5ff402d..3aa0a07b5acc 100644 --- a/pkgs/development/python-modules/aiomysql/default.nix +++ b/pkgs/development/python-modules/aiomysql/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiomysql" ]; - meta = with lib; { + meta = { description = "MySQL driver for asyncio"; homepage = "https://github.com/aio-libs/aiomysql"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aionanoleaf/default.nix b/pkgs/development/python-modules/aionanoleaf/default.nix index 0b7e756b2fad..ae0425d14118 100644 --- a/pkgs/development/python-modules/aionanoleaf/default.nix +++ b/pkgs/development/python-modules/aionanoleaf/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aionanoleaf" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Nanoleaf API"; homepage = "https://github.com/milanmeu/aionanoleaf"; changelog = "https://github.com/milanmeu/aionanoleaf/releases/tag/v${version}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aionotion/default.nix b/pkgs/development/python-modules/aionotion/default.nix index 048ef8c0518f..be10924ab03d 100644 --- a/pkgs/development/python-modules/aionotion/default.nix +++ b/pkgs/development/python-modules/aionotion/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aionotion" ]; - meta = with lib; { + meta = { description = "Python library for Notion Home Monitoring"; homepage = "https://github.com/bachya/aionotion"; changelog = "https://github.com/bachya/aionotion/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aionut/default.nix b/pkgs/development/python-modules/aionut/default.nix index 565ed0e89ecc..808ef7513651 100644 --- a/pkgs/development/python-modules/aionut/default.nix +++ b/pkgs/development/python-modules/aionut/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aionut" ]; - meta = with lib; { + meta = { description = "Asyncio Network UPS Tools"; homepage = "https://github.com/bdraco/aionut"; changelog = "https://github.com/bdraco/aionut/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiooncue/default.nix b/pkgs/development/python-modules/aiooncue/default.nix index 790d5a952f3f..db8031800ba8 100644 --- a/pkgs/development/python-modules/aiooncue/default.nix +++ b/pkgs/development/python-modules/aiooncue/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiooncue" ]; - meta = with lib; { + meta = { description = "Module to interact with the Kohler Oncue API"; homepage = "https://github.com/bdraco/aiooncue"; changelog = "https://github.com/bdraco/aiooncue/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioopenexchangerates/default.nix b/pkgs/development/python-modules/aioopenexchangerates/default.nix index b8b8dbf79e4d..3e6f1fa45992 100644 --- a/pkgs/development/python-modules/aioopenexchangerates/default.nix +++ b/pkgs/development/python-modules/aioopenexchangerates/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioopenexchangerates" ]; - meta = with lib; { + meta = { description = "Library for the Openexchangerates API"; homepage = "https://github.com/MartinHjelmare/aioopenexchangerates"; changelog = "https://github.com/MartinHjelmare/aioopenexchangerates/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiooss2/default.nix b/pkgs/development/python-modules/aiooss2/default.nix index 66cbbd0555a1..81685780fff7 100644 --- a/pkgs/development/python-modules/aiooss2/default.nix +++ b/pkgs/development/python-modules/aiooss2/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { "tests/unit/test_adapter.py" ]; - meta = with lib; { + meta = { description = "Library for aliyun OSS (Object Storage Service)"; homepage = "https://github.com/karajan1001/aiooss2"; changelog = "https://github.com/karajan1001/aiooss2/blob/${version}/CHANGES.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiooui/default.nix b/pkgs/development/python-modules/aiooui/default.nix index 1253047a04e3..1759c8c575d6 100644 --- a/pkgs/development/python-modules/aiooui/default.nix +++ b/pkgs/development/python-modules/aiooui/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiooui" ]; - meta = with lib; { + meta = { description = "Async OUI lookups"; homepage = "https://github.com/Bluetooth-Devices/aiooui"; changelog = "https://github.com/Bluetooth-Devices/aiooui/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopegelonline/default.nix b/pkgs/development/python-modules/aiopegelonline/default.nix index c7d67b67b184..96b1c8b0c041 100644 --- a/pkgs/development/python-modules/aiopegelonline/default.nix +++ b/pkgs/development/python-modules/aiopegelonline/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiopegelonline" ]; - meta = with lib; { + meta = { description = "Library to retrieve data from PEGELONLINE"; homepage = "https://github.com/mib1185/aiopegelonline"; changelog = "https://github.com/mib1185/aiopegelonline/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopg/default.nix b/pkgs/development/python-modules/aiopg/default.nix index 6225d1d9f0f6..638622a52ad5 100644 --- a/pkgs/development/python-modules/aiopg/default.nix +++ b/pkgs/development/python-modules/aiopg/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiopg" ]; - meta = with lib; { + meta = { description = "Python library for accessing a PostgreSQL database"; homepage = "https://aiopg.readthedocs.io/"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopinboard/default.nix b/pkgs/development/python-modules/aiopinboard/default.nix index fe245a6ddd1a..6668e6bd89bd 100644 --- a/pkgs/development/python-modules/aiopinboard/default.nix +++ b/pkgs/development/python-modules/aiopinboard/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiopinboard" ]; - meta = with lib; { + meta = { description = "Library to interact with the Pinboard API"; homepage = "https://github.com/bachya/aiopinboard"; changelog = "https://github.com/bachya/aiopinboard/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioprocessing/default.nix b/pkgs/development/python-modules/aioprocessing/default.nix index b54e16612f87..932eed1e2b92 100644 --- a/pkgs/development/python-modules/aioprocessing/default.nix +++ b/pkgs/development/python-modules/aioprocessing/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioprocessing" ]; - meta = with lib; { + meta = { description = "Library that integrates the multiprocessing module with asyncio"; homepage = "https://github.com/dano/aioprocessing"; - license = licenses.bsd2; - maintainers = with maintainers; [ uskudnik ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ uskudnik ]; }; } diff --git a/pkgs/development/python-modules/aioprometheus/default.nix b/pkgs/development/python-modules/aioprometheus/default.nix index 930ab1bbf080..71e55587ce58 100644 --- a/pkgs/development/python-modules/aioprometheus/default.nix +++ b/pkgs/development/python-modules/aioprometheus/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioprometheus" ]; - meta = with lib; { + meta = { description = "Prometheus Python client library for asyncio-based applications"; homepage = "https://github.com/claws/aioprometheus"; changelog = "https://github.com/claws/aioprometheus/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/aiopulse/default.nix b/pkgs/development/python-modules/aiopulse/default.nix index 5d3527104be8..3168a671de60 100644 --- a/pkgs/development/python-modules/aiopulse/default.nix +++ b/pkgs/development/python-modules/aiopulse/default.nix @@ -28,7 +28,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiopulse" ]; - meta = with lib; { + meta = { description = "Python Rollease Acmeda Automate Pulse hub protocol implementation"; longDescription = '' The Rollease Acmeda Pulse Hub is a WiFi hub that communicates with @@ -38,7 +38,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/atmurray/aiopulse"; changelog = "https://github.com/atmurray/aiopulse/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopurpleair/default.nix b/pkgs/development/python-modules/aiopurpleair/default.nix index 74352f3c3b41..34aa83ac6480 100644 --- a/pkgs/development/python-modules/aiopurpleair/default.nix +++ b/pkgs/development/python-modules/aiopurpleair/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiopurpleair" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the PurpleAir API"; homepage = "https://github.com/bachya/aiopurpleair"; changelog = "https://github.com/bachya/aiopurpleair/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopvapi/default.nix b/pkgs/development/python-modules/aiopvapi/default.nix index 38e01f33660c..675da1226bac 100644 --- a/pkgs/development/python-modules/aiopvapi/default.nix +++ b/pkgs/development/python-modules/aiopvapi/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { "test_remove_shade_from_scene" ]; - meta = with lib; { + meta = { description = "Python API for the PowerView API"; homepage = "https://github.com/sander76/aio-powerview-api"; changelog = "https://github.com/sander76/aio-powerview-api/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopvpc/default.nix b/pkgs/development/python-modules/aiopvpc/default.nix index 0db3a0ba5c85..a8a442481701 100644 --- a/pkgs/development/python-modules/aiopvpc/default.nix +++ b/pkgs/development/python-modules/aiopvpc/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiopvpc" ]; - meta = with lib; { + meta = { description = "Python module to download Spanish electricity hourly prices (PVPC)"; homepage = "https://github.com/azogue/aiopvpc"; changelog = "https://github.com/azogue/aiopvpc/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopyarr/default.nix b/pkgs/development/python-modules/aiopyarr/default.nix index f6ae771dfa8b..141c74a7362a 100644 --- a/pkgs/development/python-modules/aiopyarr/default.nix +++ b/pkgs/development/python-modules/aiopyarr/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiopyarr" ]; - meta = with lib; { + meta = { description = "Python API client for Lidarr/Radarr/Readarr/Sonarr"; homepage = "https://github.com/tkdrob/aiopyarr"; changelog = "https://github.com/tkdrob/aiopyarr/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiopylgtv/default.nix b/pkgs/development/python-modules/aiopylgtv/default.nix index 34330eb02914..d944e317421c 100644 --- a/pkgs/development/python-modules/aiopylgtv/default.nix +++ b/pkgs/development/python-modules/aiopylgtv/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "aiopylgtv" ]; - meta = with lib; { + meta = { description = "Python library to control webOS based LG TV units"; mainProgram = "aiopylgtvcommand"; homepage = "https://github.com/bendavid/aiopylgtv"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioqsw/default.nix b/pkgs/development/python-modules/aioqsw/default.nix index 00066f12ad4b..08011c184299 100644 --- a/pkgs/development/python-modules/aioqsw/default.nix +++ b/pkgs/development/python-modules/aioqsw/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioqsw" ]; - meta = with lib; { + meta = { description = "Library to fetch data from QNAP QSW switches"; homepage = "https://github.com/Noltari/aioqsw"; changelog = "https://github.com/Noltari/aioqsw/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioquic/default.nix b/pkgs/development/python-modules/aioquic/default.nix index 66d429018f1c..ceac8250767f 100644 --- a/pkgs/development/python-modules/aioquic/default.nix +++ b/pkgs/development/python-modules/aioquic/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Implementation of QUIC and HTTP/3"; homepage = "https://github.com/aiortc/aioquic"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/aioraven/default.nix b/pkgs/development/python-modules/aioraven/default.nix index c6776a07f5b6..bd2733fef50f 100644 --- a/pkgs/development/python-modules/aioraven/default.nix +++ b/pkgs/development/python-modules/aioraven/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioraven" ]; - meta = with lib; { + meta = { description = "Module for communication with RAVEn devices"; homepage = "https://github.com/cottsay/aioraven"; changelog = "https://github.com/cottsay/aioraven/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiorecollect/default.nix b/pkgs/development/python-modules/aiorecollect/default.nix index 4a6c1d671eb3..ad5e96548d0b 100644 --- a/pkgs/development/python-modules/aiorecollect/default.nix +++ b/pkgs/development/python-modules/aiorecollect/default.nix @@ -50,7 +50,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiorecollect" ]; - meta = with lib; { + meta = { description = "Python library for the Recollect Waste API"; longDescription = '' aiorecollect is a Python asyncio-based library for the ReCollect @@ -60,7 +60,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/bachya/aiorecollect"; changelog = "https://github.com/bachya/aiorecollect/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioredis/default.nix b/pkgs/development/python-modules/aioredis/default.nix index e941d557ca43..ac2142a54783 100644 --- a/pkgs/development/python-modules/aioredis/default.nix +++ b/pkgs/development/python-modules/aioredis/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { # Wants to run redis-server, hardcoded FHS paths, too much trouble. doCheck = false; - meta = with lib; { + meta = { description = "Asyncio (PEP 3156) Redis client library"; homepage = "https://github.com/aio-libs-abandoned/aioredis-py"; - license = licenses.mit; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/aioridwell/default.nix b/pkgs/development/python-modules/aioridwell/default.nix index c8838c22e11c..eec43d59bf08 100644 --- a/pkgs/development/python-modules/aioridwell/default.nix +++ b/pkgs/development/python-modules/aioridwell/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioridwell" ]; - meta = with lib; { + meta = { description = "Python library for interacting with Ridwell waste recycling"; homepage = "https://github.com/bachya/aioridwell"; changelog = "https://github.com/bachya/aioridwell/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiormq/default.nix b/pkgs/development/python-modules/aiormq/default.nix index 58ce082301dc..b06dc5fa3007 100644 --- a/pkgs/development/python-modules/aiormq/default.nix +++ b/pkgs/development/python-modules/aiormq/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiormq" ]; - meta = with lib; { + meta = { description = "AMQP 0.9.1 asynchronous client library"; homepage = "https://github.com/mosquito/aiormq"; changelog = "https://github.com/mosquito/aiormq/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/aiorpcx/default.nix b/pkgs/development/python-modules/aiorpcx/default.nix index a6b04230c5ba..7210ed7ce019 100644 --- a/pkgs/development/python-modules/aiorpcx/default.nix +++ b/pkgs/development/python-modules/aiorpcx/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiorpcx" ]; - meta = with lib; { + meta = { description = "Transport, protocol and framing-independent async RPC client and server implementation"; homepage = "https://github.com/kyuupichan/aiorpcX"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/aiortm/default.nix b/pkgs/development/python-modules/aiortm/default.nix index 2df8d7df31ad..50a574eb3008 100644 --- a/pkgs/development/python-modules/aiortm/default.nix +++ b/pkgs/development/python-modules/aiortm/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiortm" ]; - meta = with lib; { + meta = { description = "Library for the Remember the Milk API"; homepage = "https://github.com/MartinHjelmare/aiortm"; changelog = "https://github.com/MartinHjelmare/aiortm/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "aiortm"; }; } diff --git a/pkgs/development/python-modules/aiortsp/default.nix b/pkgs/development/python-modules/aiortsp/default.nix index 1b055e92b8e2..e65c60e037c9 100644 --- a/pkgs/development/python-modules/aiortsp/default.nix +++ b/pkgs/development/python-modules/aiortsp/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiortsp" ]; - meta = with lib; { + meta = { description = "Asyncio-based RTSP library"; homepage = "https://github.com/marss/aiortsp"; changelog = "https://github.com/marss/aiortsp/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/aioruckus/default.nix b/pkgs/development/python-modules/aioruckus/default.nix index 86eb1b659cdc..be432ff934be 100644 --- a/pkgs/development/python-modules/aioruckus/default.nix +++ b/pkgs/development/python-modules/aioruckus/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { "test_r1_connect_no_webserver_error" ]; - meta = with lib; { + meta = { description = "Python client for Ruckus Unleashed and Ruckus ZoneDirector"; homepage = "https://github.com/ms264556/aioruckus"; - license = licenses.bsd0; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiorun/default.nix b/pkgs/development/python-modules/aiorun/default.nix index 911c97e0af4e..6a7dd1b49af0 100644 --- a/pkgs/development/python-modules/aiorun/default.nix +++ b/pkgs/development/python-modules/aiorun/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiorun" ]; - meta = with lib; { + meta = { description = "Boilerplate for asyncio applications"; homepage = "https://github.com/cjrh/aiorun"; changelog = "https://github.com/cjrh/aiorun/blob/v${version}/CHANGES"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiorussound/default.nix b/pkgs/development/python-modules/aiorussound/default.nix index 91e1be9c6464..9f42d664085f 100644 --- a/pkgs/development/python-modules/aiorussound/default.nix +++ b/pkgs/development/python-modules/aiorussound/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiorussound" ]; - meta = with lib; { + meta = { changelog = "https://github.com/noahhusby/aiorussound/releases/tag/${src.tag}"; description = "Async python package for interfacing with Russound RIO hardware"; homepage = "https://github.com/noahhusby/aiorussound"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/aioruuvigateway/default.nix b/pkgs/development/python-modules/aioruuvigateway/default.nix index 55e27ec05fbd..ce69ccd1a2bd 100644 --- a/pkgs/development/python-modules/aioruuvigateway/default.nix +++ b/pkgs/development/python-modules/aioruuvigateway/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioruuvigateway" ]; - meta = with lib; { + meta = { description = "Asyncio-native library for requesting data from a Ruuvi Gateway"; homepage = "https://github.com/akx/aioruuvigateway"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/aiorwlock/default.nix b/pkgs/development/python-modules/aiorwlock/default.nix index 8fbdebeb9838..b45dc52b3de2 100644 --- a/pkgs/development/python-modules/aiorwlock/default.nix +++ b/pkgs/development/python-modules/aiorwlock/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiorwlock" ]; - meta = with lib; { + meta = { description = "Read write lock for asyncio"; homepage = "https://github.com/aio-libs/aiorwlock"; changelog = "https://github.com/aio-libs/aiorwlock/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ billhuang ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ billhuang ]; }; } diff --git a/pkgs/development/python-modules/aiosenz/default.nix b/pkgs/development/python-modules/aiosenz/default.nix index 9c3f26500bf6..c2870b79b0cc 100644 --- a/pkgs/development/python-modules/aiosenz/default.nix +++ b/pkgs/development/python-modules/aiosenz/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosenz" ]; - meta = with lib; { + meta = { description = "Python wrapper for the nVent Raychem SENZ RestAPI"; homepage = "https://github.com/milanmeu/aiosenz"; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioserial/default.nix b/pkgs/development/python-modules/aioserial/default.nix index d413591aaa3a..fa858cf49ec1 100644 --- a/pkgs/development/python-modules/aioserial/default.nix +++ b/pkgs/development/python-modules/aioserial/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioserial" ]; - meta = with lib; { + meta = { description = "Python module for async serial communication"; homepage = "https://github.com/changyuheng/aioserial"; - license = licenses.mpl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioshelly/default.nix b/pkgs/development/python-modules/aioshelly/default.nix index 23961641d9f7..aaebff39effa 100644 --- a/pkgs/development/python-modules/aioshelly/default.nix +++ b/pkgs/development/python-modules/aioshelly/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioshelly" ]; - meta = with lib; { + meta = { description = "Python library to control Shelly"; homepage = "https://github.com/home-assistant-libs/aioshelly"; changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioshutil/default.nix b/pkgs/development/python-modules/aioshutil/default.nix index 579fe33bd1de..e89b17392395 100644 --- a/pkgs/development/python-modules/aioshutil/default.nix +++ b/pkgs/development/python-modules/aioshutil/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioshutil" ]; - meta = with lib; { + meta = { description = "Asynchronous version of function of shutil module"; homepage = "https://github.com/kumaraditya303/aioshutil"; changelog = "https://github.com/kumaraditya303/aioshutil/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiosignal/default.nix b/pkgs/development/python-modules/aiosignal/default.nix index 2f4a7d85c878..9672c764ceb1 100644 --- a/pkgs/development/python-modules/aiosignal/default.nix +++ b/pkgs/development/python-modules/aiosignal/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosignal" ]; - meta = with lib; { + meta = { description = "Python list of registered asynchronous callbacks"; homepage = "https://github.com/aio-libs/aiosignal"; changelog = "https://github.com/aio-libs/aiosignal/blob/v${version}/CHANGES.rst"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioskybell/default.nix b/pkgs/development/python-modules/aioskybell/default.nix index ad4e4c883c36..f5d21132643a 100644 --- a/pkgs/development/python-modules/aioskybell/default.nix +++ b/pkgs/development/python-modules/aioskybell/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioskybell" ]; - meta = with lib; { + meta = { description = "API client for Skybell doorbells"; homepage = "https://github.com/tkdrob/aioskybell"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioslimproto/default.nix b/pkgs/development/python-modules/aioslimproto/default.nix index 0b8ad797b5ef..0d9913be4647 100644 --- a/pkgs/development/python-modules/aioslimproto/default.nix +++ b/pkgs/development/python-modules/aioslimproto/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioslimproto" ]; - meta = with lib; { + meta = { description = "Module to control Squeezebox players"; homepage = "https://github.com/home-assistant-libs/aioslimproto"; changelog = "https://github.com/home-assistant-libs/aioslimproto/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiosmb/default.nix b/pkgs/development/python-modules/aiosmb/default.nix index ad439d3b420c..ba4fb2bd08f8 100644 --- a/pkgs/development/python-modules/aiosmb/default.nix +++ b/pkgs/development/python-modules/aiosmb/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosmb" ]; - meta = with lib; { + meta = { description = "Python SMB library"; homepage = "https://github.com/skelsec/aiosmb"; changelog = "https://github.com/skelsec/aiosmb/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiosmtpd/default.nix b/pkgs/development/python-modules/aiosmtpd/default.nix index 72760643dffe..137fd81b18b4 100644 --- a/pkgs/development/python-modules/aiosmtpd/default.nix +++ b/pkgs/development/python-modules/aiosmtpd/default.nix @@ -58,7 +58,7 @@ buildPythonPackage rec { inherit django aiosmtplib; }; - meta = with lib; { + meta = { description = "Asyncio based SMTP server"; mainProgram = "aiosmtpd"; homepage = "https://aiosmtpd.readthedocs.io/"; @@ -67,7 +67,7 @@ buildPythonPackage rec { This is a server for SMTP and related protocols, similar in utility to the standard library's smtpd.py module. ''; - license = licenses.asl20; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/aiosmtplib/default.nix b/pkgs/development/python-modules/aiosmtplib/default.nix index 47f54c0f1c20..d5a93c5dbf97 100644 --- a/pkgs/development/python-modules/aiosmtplib/default.nix +++ b/pkgs/development/python-modules/aiosmtplib/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosmtplib" ]; - meta = with lib; { + meta = { description = "Module which provides a SMTP client"; homepage = "https://github.com/cole/aiosmtplib"; changelog = "https://github.com/cole/aiosmtplib/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiosql/default.nix b/pkgs/development/python-modules/aiosql/default.nix index 990d249e4e95..9e38db84b485 100644 --- a/pkgs/development/python-modules/aiosql/default.nix +++ b/pkgs/development/python-modules/aiosql/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosql" ]; - meta = with lib; { + meta = { description = "Simple SQL in Python"; homepage = "https://nackjicholson.github.io/aiosql/"; changelog = "https://github.com/nackjicholson/aiosql/releases/tag/${src.tag}"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ kaction ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/aiosqlite/default.nix b/pkgs/development/python-modules/aiosqlite/default.nix index a5107912b36d..4ca47d5e8a3a 100644 --- a/pkgs/development/python-modules/aiosqlite/default.nix +++ b/pkgs/development/python-modules/aiosqlite/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosqlite" ]; - meta = with lib; { + meta = { description = "Asyncio bridge to the standard sqlite3 module"; homepage = "https://github.com/jreese/aiosqlite"; changelog = "https://github.com/omnilib/aiosqlite/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiosteamist/default.nix b/pkgs/development/python-modules/aiosteamist/default.nix index dc4e98180c40..4438a245851d 100644 --- a/pkgs/development/python-modules/aiosteamist/default.nix +++ b/pkgs/development/python-modules/aiosteamist/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosteamist" ]; - meta = with lib; { + meta = { description = "Module to control Steamist steam systems"; homepage = "https://github.com/bdraco/aiosteamist"; changelog = "https://github.com/bdraco/aiosteamist/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiostream/default.nix b/pkgs/development/python-modules/aiostream/default.nix index 67466c7e685f..44d8e5acd175 100644 --- a/pkgs/development/python-modules/aiostream/default.nix +++ b/pkgs/development/python-modules/aiostream/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiostream" ]; - meta = with lib; { + meta = { description = "Generator-based operators for asynchronous iteration"; homepage = "https://aiostream.readthedocs.io"; changelog = "https://github.com/vxgmichel/aiostream/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ rmcgibbo ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ rmcgibbo ]; }; } diff --git a/pkgs/development/python-modules/aioswitcher/default.nix b/pkgs/development/python-modules/aioswitcher/default.nix index 38b2ed9b105c..0a40835e82a3 100644 --- a/pkgs/development/python-modules/aioswitcher/default.nix +++ b/pkgs/development/python-modules/aioswitcher/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioswitcher" ]; - meta = with lib; { + meta = { description = "Python module to interact with Switcher water heater"; homepage = "https://github.com/TomerFi/aioswitcher"; changelog = "https://github.com/TomerFi/aioswitcher/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiosyncthing/default.nix b/pkgs/development/python-modules/aiosyncthing/default.nix index 6385bac8e10d..88cfe9f96ebe 100644 --- a/pkgs/development/python-modules/aiosyncthing/default.nix +++ b/pkgs/development/python-modules/aiosyncthing/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosyncthing" ]; - meta = with lib; { + meta = { description = "Python client for the Syncthing REST API"; homepage = "https://github.com/zhulik/aiosyncthing"; changelog = "https://github.com/zhulik/aiosyncthing/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiotankerkoenig/default.nix b/pkgs/development/python-modules/aiotankerkoenig/default.nix index 11138e06768c..102be8f760e0 100644 --- a/pkgs/development/python-modules/aiotankerkoenig/default.nix +++ b/pkgs/development/python-modules/aiotankerkoenig/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiotankerkoenig" ]; - meta = with lib; { + meta = { description = "Python module for interacting with tankerkoenig.de"; homepage = "https://github.com/jpbede/aiotankerkoenig"; changelog = "https://github.com/jpbede/aiotankerkoenig/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiotedee/default.nix b/pkgs/development/python-modules/aiotedee/default.nix index 1b910913157d..e638d7db3ce7 100644 --- a/pkgs/development/python-modules/aiotedee/default.nix +++ b/pkgs/development/python-modules/aiotedee/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Module to interact with Tedee locks"; homepage = "https://github.com/zweckj/aiotedee"; changelog = "https://github.com/zweckj/aiotedee/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiotractive/default.nix b/pkgs/development/python-modules/aiotractive/default.nix index b5c297904331..b9360af17aed 100644 --- a/pkgs/development/python-modules/aiotractive/default.nix +++ b/pkgs/development/python-modules/aiotractive/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiotractive" ]; - meta = with lib; { + meta = { changelog = "https://github.com/zhulik/aiotractive/releases/tag/v${version}"; description = "Python client for the Tractive REST API"; homepage = "https://github.com/zhulik/aiotractive"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix index 1bb53a6763df..c2de52f0de5c 100644 --- a/pkgs/development/python-modules/aiounifi/default.nix +++ b/pkgs/development/python-modules/aiounifi/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiounifi" ]; - meta = with lib; { + meta = { description = "Python library for communicating with Unifi Controller API"; homepage = "https://github.com/Kane610/aiounifi"; changelog = "https://github.com/Kane610/aiounifi/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "aiounifi"; }; diff --git a/pkgs/development/python-modules/aiounittest/default.nix b/pkgs/development/python-modules/aiounittest/default.nix index 1739e5979aa3..064dd13703ef 100644 --- a/pkgs/development/python-modules/aiounittest/default.nix +++ b/pkgs/development/python-modules/aiounittest/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiounittest" ]; - meta = with lib; { + meta = { changelog = "https://github.com/kwarunek/aiounittest/releases/tag/${src.tag}"; description = "Test asyncio code more easily"; homepage = "https://github.com/kwarunek/aiounittest"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiovlc/default.nix b/pkgs/development/python-modules/aiovlc/default.nix index b954f6792f73..0c57466754c7 100644 --- a/pkgs/development/python-modules/aiovlc/default.nix +++ b/pkgs/development/python-modules/aiovlc/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiovlc" ]; - meta = with lib; { + meta = { description = "Python module to control VLC"; homepage = "https://github.com/MartinHjelmare/aiovlc"; changelog = "https://github.com/MartinHjelmare/aiovlc/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiowaqi/default.nix b/pkgs/development/python-modules/aiowaqi/default.nix index fbdf613c443c..9d79de96384e 100644 --- a/pkgs/development/python-modules/aiowaqi/default.nix +++ b/pkgs/development/python-modules/aiowaqi/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pytestFlags = [ "--snapshot-update" ]; - meta = with lib; { + meta = { description = "Module to interact with the WAQI API"; homepage = "https://github.com/joostlek/python-waqi"; changelog = "https://github.com/joostlek/python-waqi/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiowatttime/default.nix b/pkgs/development/python-modules/aiowatttime/default.nix index ab55efb83960..e1c9c7970844 100644 --- a/pkgs/development/python-modules/aiowatttime/default.nix +++ b/pkgs/development/python-modules/aiowatttime/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiowatttime" ]; - meta = with lib; { + meta = { description = "Python library for interacting with WattTime"; homepage = "https://github.com/bachya/aiowatttime"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiowebostv/default.nix b/pkgs/development/python-modules/aiowebostv/default.nix index 06b05806047a..2157dd1028db 100644 --- a/pkgs/development/python-modules/aiowebostv/default.nix +++ b/pkgs/development/python-modules/aiowebostv/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiowebostv" ]; - meta = with lib; { + meta = { description = "Module to interact with LG webOS based TV devices"; homepage = "https://github.com/home-assistant-libs/aiowebostv"; changelog = "https://github.com/home-assistant-libs/aiowebostv/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioweenect/default.nix b/pkgs/development/python-modules/aioweenect/default.nix index dda6c9234ce4..0cc632010a8e 100644 --- a/pkgs/development/python-modules/aioweenect/default.nix +++ b/pkgs/development/python-modules/aioweenect/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioweenect" ]; - meta = with lib; { + meta = { description = "Library for the weenect API"; homepage = "https://github.com/eifinger/aioweenect"; changelog = "https://github.com/eifinger/aioweenect/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiowinreg/default.nix b/pkgs/development/python-modules/aiowinreg/default.nix index fccc01f7eb8a..a21f465fe1cb 100644 --- a/pkgs/development/python-modules/aiowinreg/default.nix +++ b/pkgs/development/python-modules/aiowinreg/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiowinreg" ]; - meta = with lib; { + meta = { description = "Python module to parse the registry hive"; homepage = "https://github.com/skelsec/aiowinreg"; changelog = "https://github.com/skelsec/aiowinreg/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "awinreg"; }; } diff --git a/pkgs/development/python-modules/aiowithings/default.nix b/pkgs/development/python-modules/aiowithings/default.nix index a728f0a61b20..e58cd3644d3a 100644 --- a/pkgs/development/python-modules/aiowithings/default.nix +++ b/pkgs/development/python-modules/aiowithings/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { "test_unexpected_server_response" ]; - meta = with lib; { + meta = { description = "Module to interact with Withings"; homepage = "https://github.com/joostlek/python-withings"; changelog = "https://github.com/joostlek/python-withings/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioymaps/default.nix b/pkgs/development/python-modules/aioymaps/default.nix index 8567f23ee097..ea534dcb4a90 100644 --- a/pkgs/development/python-modules/aioymaps/default.nix +++ b/pkgs/development/python-modules/aioymaps/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioymaps" ]; - meta = with lib; { + meta = { description = "Python package fetch data from Yandex maps"; homepage = "https://github.com/devbis/aioymaps"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiozeroconf/default.nix b/pkgs/development/python-modules/aiozeroconf/default.nix index aba0ed77c731..ef72e04bda40 100644 --- a/pkgs/development/python-modules/aiozeroconf/default.nix +++ b/pkgs/development/python-modules/aiozeroconf/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiozeroconf" ]; - meta = with lib; { + meta = { description = "Implementation of multicast DNS service discovery"; homepage = "https://github.com/jstasiak/python-zeroconf"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ obadz ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ obadz ]; mainProgram = "aiozeroconf"; }; } diff --git a/pkgs/development/python-modules/aiozoneinfo/default.nix b/pkgs/development/python-modules/aiozoneinfo/default.nix index e177eb55607e..127db3a7c954 100644 --- a/pkgs/development/python-modules/aiozoneinfo/default.nix +++ b/pkgs/development/python-modules/aiozoneinfo/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiozoneinfo" ]; - meta = with lib; { + meta = { description = "Tools to fetch zoneinfo with asyncio"; homepage = "https://github.com/bluetooth-devices/aiozoneinfo"; changelog = "https://github.com/bluetooth-devices/aiozoneinfo/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/airgradient/default.nix b/pkgs/development/python-modules/airgradient/default.nix index e5469849210d..ab0d2aa1a7e1 100644 --- a/pkgs/development/python-modules/airgradient/default.nix +++ b/pkgs/development/python-modules/airgradient/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "airgradient" ]; - meta = with lib; { + meta = { description = "Module for AirGradient"; homepage = "https://github.com/airgradienthq/python-airgradient"; changelog = "https://github.com/airgradienthq/python-airgradient/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/airly/default.nix b/pkgs/development/python-modules/airly/default.nix index c9e3d2726e36..e98fe6623a36 100644 --- a/pkgs/development/python-modules/airly/default.nix +++ b/pkgs/development/python-modules/airly/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "airly" ]; - meta = with lib; { + meta = { description = "Python module for getting air quality data from Airly sensors"; homepage = "https://github.com/ak-ambi/python-airly"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/airthings-ble/default.nix b/pkgs/development/python-modules/airthings-ble/default.nix index 0e0bb8970d4c..b8a9bfab784c 100644 --- a/pkgs/development/python-modules/airthings-ble/default.nix +++ b/pkgs/development/python-modules/airthings-ble/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "airthings_ble" ]; - meta = with lib; { + meta = { description = "Library for Airthings BLE devices"; homepage = "https://github.com/vincegio/airthings-ble"; changelog = "https://github.com/vincegio/airthings-ble/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/airthings-cloud/default.nix b/pkgs/development/python-modules/airthings-cloud/default.nix index 730587850b87..777bb028f1dd 100644 --- a/pkgs/development/python-modules/airthings-cloud/default.nix +++ b/pkgs/development/python-modules/airthings-cloud/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "airthings" ]; - meta = with lib; { + meta = { description = "Python module for Airthings"; homepage = "https://github.com/Danielhiversen/pyAirthings"; changelog = "https://github.com/Danielhiversen/pyAirthings/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/airtouch4pyapi/default.nix b/pkgs/development/python-modules/airtouch4pyapi/default.nix index bbaf53718ad1..41526e50d76e 100644 --- a/pkgs/development/python-modules/airtouch4pyapi/default.nix +++ b/pkgs/development/python-modules/airtouch4pyapi/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "airtouch4pyapi" ]; - meta = with lib; { + meta = { description = "Python API for Airtouch 4 controllers"; homepage = "https://github.com/LonePurpleWolf/airtouch4pyapi"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/airtouch5py/default.nix b/pkgs/development/python-modules/airtouch5py/default.nix index ab6b3fa3507c..f87985b80295 100644 --- a/pkgs/development/python-modules/airtouch5py/default.nix +++ b/pkgs/development/python-modules/airtouch5py/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "airtouch5py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/danzel/airtouch5py/releases/tag/${src.tag}"; description = "Python client for the airtouch 5"; homepage = "https://github.com/danzel/airtouch5py"; - license = licenses.asl20; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/ajpy/default.nix b/pkgs/development/python-modules/ajpy/default.nix index b99bda50c601..50cd42432343 100644 --- a/pkgs/development/python-modules/ajpy/default.nix +++ b/pkgs/development/python-modules/ajpy/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # ajpy doesn't have tests doCheck = false; - meta = with lib; { + meta = { description = "AJP package crafting library"; homepage = "https://github.com/hypn0s/AJPy/"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/development/python-modules/ajsonrpc/default.nix b/pkgs/development/python-modules/ajsonrpc/default.nix index 66e94c019c59..4f1874fd264f 100644 --- a/pkgs/development/python-modules/ajsonrpc/default.nix +++ b/pkgs/development/python-modules/ajsonrpc/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ajsonrpc" ]; - meta = with lib; { + meta = { description = "Async JSON-RPC 2.0 protocol and asyncio server"; homepage = "https://github.com/pavlov99/ajsonrpc"; changelog = "https://github.com/pavlov99/ajsonrpc/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxzi ]; mainProgram = "async-json-rpc-server"; }; } diff --git a/pkgs/development/python-modules/aladdin-connect/default.nix b/pkgs/development/python-modules/aladdin-connect/default.nix index bca89d55ec95..2daa8dfe0a53 100644 --- a/pkgs/development/python-modules/aladdin-connect/default.nix +++ b/pkgs/development/python-modules/aladdin-connect/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aladdin_connect" ]; - meta = with lib; { + meta = { description = "Python library for interacting with Genie Aladdin Connect devices"; homepage = "https://github.com/shoejosh/aladdin-connect"; changelog = "https://github.com/shoejosh/aladdin-connect/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/alarmdecoder/default.nix b/pkgs/development/python-modules/alarmdecoder/default.nix index 9b049468fe95..92894369c2b9 100644 --- a/pkgs/development/python-modules/alarmdecoder/default.nix +++ b/pkgs/development/python-modules/alarmdecoder/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "alarmdecoder" ]; - meta = with lib; { + meta = { description = "Python interface for the Alarm Decoder (AD2USB, AD2SERIAL and AD2PI) devices"; homepage = "https://github.com/nutechsoftware/alarmdecoder"; changelog = "https://github.com/nutechsoftware/alarmdecoder/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/alectryon/default.nix b/pkgs/development/python-modules/alectryon/default.nix index 6f048b041230..035a272b3be1 100644 --- a/pkgs/development/python-modules/alectryon/default.nix +++ b/pkgs/development/python-modules/alectryon/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/cpitclaudel/alectryon"; description = "Collection of tools for writing technical documents that mix Coq code and prose"; mainProgram = "alectryon"; - license = licenses.mit; - maintainers = with maintainers; [ Zimmi48 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Zimmi48 ]; }; } diff --git a/pkgs/development/python-modules/alembic/default.nix b/pkgs/development/python-modules/alembic/default.nix index 1962325dc373..983c7e0dede4 100644 --- a/pkgs/development/python-modules/alembic/default.nix +++ b/pkgs/development/python-modules/alembic/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { python-dateutil ]; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/zzzeek/alembic"; description = "Database migration tool for SQLAlchemy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "alembic"; }; diff --git a/pkgs/development/python-modules/algebraic-data-types/default.nix b/pkgs/development/python-modules/algebraic-data-types/default.nix index 25b6a47366a8..48c045c5832a 100644 --- a/pkgs/development/python-modules/algebraic-data-types/default.nix +++ b/pkgs/development/python-modules/algebraic-data-types/default.nix @@ -35,9 +35,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "adt" ]; - meta = with lib; { + meta = { description = "Algebraic data types for Python"; homepage = "https://github.com/jspahrsummers/adt"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/alive-progress/default.nix b/pkgs/development/python-modules/alive-progress/default.nix index c795aed0f14d..fab29573d2df 100644 --- a/pkgs/development/python-modules/alive-progress/default.nix +++ b/pkgs/development/python-modules/alive-progress/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "alive_progress" ]; - meta = with lib; { + meta = { description = "New kind of Progress Bar, with real-time throughput, ETA, and very cool animations"; homepage = "https://github.com/rsalmei/alive-progress"; changelog = "https://github.com/rsalmei/alive-progress/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ thiagokokada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix index 646742cafd40..dc1c9f17edaf 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aliyunsdkcdn" ]; - meta = with lib; { + meta = { description = "CDN module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-cdn/ChangeLog.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix index 0a4763b5b995..8562e87dd4c4 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aliyunsdkconfig" ]; - meta = with lib; { + meta = { description = "Configuration module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-config/ChangeLog.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix index 65a5778310f6..023ad19269fb 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aliyunsdkcore" ]; - meta = with lib; { + meta = { description = "Core module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-core/ChangeLog.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix index a627ccce23b9..12654f8b87b8 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aliyunsdkdbfs" ]; - meta = with lib; { + meta = { description = "DBFS module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-dbfs/ChangeLog.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix index a2fa3bcc3c31..3d113b4756bd 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aliyunsdkiot" ]; - meta = with lib; { + meta = { description = "IoT module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-iot/ChangeLog.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix index 81ea4b621e08..df0b8c88cecf 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aliyunsdkkms" ]; - meta = with lib; { + meta = { description = "KMS module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-kms/ChangeLog.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix index 20b8b1d22494..46e5fe99a079 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aliyunsdksts" ]; - meta = with lib; { + meta = { description = "STS module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-sts/ChangeLog.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/allpairspy/default.nix b/pkgs/development/python-modules/allpairspy/default.nix index 54695555a239..037e1d6f06df 100644 --- a/pkgs/development/python-modules/allpairspy/default.nix +++ b/pkgs/development/python-modules/allpairspy/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "allpairspy" ]; - meta = with lib; { + meta = { description = "Pairwise test combinations generator"; homepage = "https://github.com/thombashi/allpairspy"; changelog = "https://github.com/thombashi/allpairspy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/allure-behave/default.nix b/pkgs/development/python-modules/allure-behave/default.nix index a4a8069039c4..984bbe4f882e 100644 --- a/pkgs/development/python-modules/allure-behave/default.nix +++ b/pkgs/development/python-modules/allure-behave/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "allure_behave" ]; - meta = with lib; { + meta = { description = "Allure behave integration"; homepage = "https://github.com/allure-framework/allure-python"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/allure-pytest/default.nix b/pkgs/development/python-modules/allure-pytest/default.nix index 4d6173f56c2c..c3b8ce653529 100644 --- a/pkgs/development/python-modules/allure-pytest/default.nix +++ b/pkgs/development/python-modules/allure-pytest/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "allure_pytest" ]; - meta = with lib; { + meta = { description = "Allure integrations for Python test frameworks"; homepage = "https://github.com/allure-framework/allure-python"; - license = licenses.asl20; - maintainers = with maintainers; [ evanjs ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ evanjs ]; }; } diff --git a/pkgs/development/python-modules/allure-python-commons-test/default.nix b/pkgs/development/python-modules/allure-python-commons-test/default.nix index cc6450b8d51a..bb04a05e406d 100644 --- a/pkgs/development/python-modules/allure-python-commons-test/default.nix +++ b/pkgs/development/python-modules/allure-python-commons-test/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "allure_commons_test" ]; - meta = with lib; { + meta = { description = "Just pack of hamcrest matchers for validation result in allure2 json format"; homepage = "https://github.com/allure-framework/allure-python"; - license = licenses.asl20; - maintainers = with maintainers; [ evanjs ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ evanjs ]; }; } diff --git a/pkgs/development/python-modules/allure-python-commons/default.nix b/pkgs/development/python-modules/allure-python-commons/default.nix index 57571c89095c..db71edb157fa 100644 --- a/pkgs/development/python-modules/allure-python-commons/default.nix +++ b/pkgs/development/python-modules/allure-python-commons/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { "allure_commons" ]; - meta = with lib; { + meta = { description = "Common engine for all modules. It is useful for make integration with your homemade frameworks"; homepage = "https://github.com/allure-framework/allure-python"; - license = licenses.asl20; - maintainers = with maintainers; [ evanjs ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ evanjs ]; }; } diff --git a/pkgs/development/python-modules/alpha-vantage/default.nix b/pkgs/development/python-modules/alpha-vantage/default.nix index e8071644058b..ae7f85c5505e 100644 --- a/pkgs/development/python-modules/alpha-vantage/default.nix +++ b/pkgs/development/python-modules/alpha-vantage/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "alpha_vantage" ]; - meta = with lib; { + meta = { description = "Python module for the Alpha Vantage API"; homepage = "https://github.com/RomelTorres/alpha_vantage"; changelog = "https://github.com/RomelTorres/alpha_vantage/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/altair/default.nix b/pkgs/development/python-modules/altair/default.nix index 23332d850960..9bf7c73401b1 100644 --- a/pkgs/development/python-modules/altair/default.nix +++ b/pkgs/development/python-modules/altair/default.nix @@ -79,13 +79,13 @@ buildPythonPackage rec { "tests/utils/test_compiler.py" ]; - meta = with lib; { + meta = { description = "Declarative statistical visualization library for Python"; homepage = "https://altair-viz.github.io"; downloadPage = "https://github.com/altair-viz/altair"; changelog = "https://altair-viz.github.io/releases/changes.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ teh vinetos ]; diff --git a/pkgs/development/python-modules/altgraph/default.nix b/pkgs/development/python-modules/altgraph/default.nix index 441c1b99b722..153e265f8609 100644 --- a/pkgs/development/python-modules/altgraph/default.nix +++ b/pkgs/development/python-modules/altgraph/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "altgraph" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ronaldoussoren/altgraph/tags${version}"; description = "Fork of graphlib: a graph (network) package for constructing graphs"; longDescription = '' @@ -34,7 +34,7 @@ buildPythonPackage rec { ''; homepage = "https://altgraph.readthedocs.io/"; downloadPage = "https://pypi.org/project/altgraph/"; - license = licenses.mit; - maintainers = with maintainers; [ septem9er ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ septem9er ]; }; } diff --git a/pkgs/development/python-modules/amaranth-boards/default.nix b/pkgs/development/python-modules/amaranth-boards/default.nix index 54724fdd898c..9e96b9100d74 100644 --- a/pkgs/development/python-modules/amaranth-boards/default.nix +++ b/pkgs/development/python-modules/amaranth-boards/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Board definitions for Amaranth HDL"; homepage = "https://github.com/amaranth-lang/amaranth-boards"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ thoughtpolice pbsds ]; diff --git a/pkgs/development/python-modules/amaranth-soc/default.nix b/pkgs/development/python-modules/amaranth-soc/default.nix index a33128a376d1..6107b35ae50c 100644 --- a/pkgs/development/python-modules/amaranth-soc/default.nix +++ b/pkgs/development/python-modules/amaranth-soc/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "System on Chip toolkit for Amaranth HDL"; homepage = "https://github.com/amaranth-lang/amaranth-soc"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ thoughtpolice pbsds ]; diff --git a/pkgs/development/python-modules/amaranth/default.nix b/pkgs/development/python-modules/amaranth/default.nix index 6ba46d5f90b2..d8e659b99b49 100644 --- a/pkgs/development/python-modules/amaranth/default.nix +++ b/pkgs/development/python-modules/amaranth/default.nix @@ -71,12 +71,12 @@ buildPythonPackage rec { "tests/test_lib_fifo.py" ]; - meta = with lib; { + meta = { description = "Modern hardware definition language and toolchain based on Python"; homepage = "https://amaranth-lang.org/docs/amaranth"; changelog = "https://github.com/amaranth-lang/amaranth/blob/${src.tag}/docs/changes.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ thoughtpolice pbsds ]; diff --git a/pkgs/development/python-modules/amarna/default.nix b/pkgs/development/python-modules/amarna/default.nix index 7ce6ea9378ac..c1a6ec220fab 100644 --- a/pkgs/development/python-modules/amarna/default.nix +++ b/pkgs/development/python-modules/amarna/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "amarna" ]; - meta = with lib; { + meta = { description = "Static-analyzer and linter for the Cairo programming language"; mainProgram = "amarna"; homepage = "https://github.com/crytic/amarna"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/amazon-ion/default.nix b/pkgs/development/python-modules/amazon-ion/default.nix index 0d4a9bd1578b..30901cbd0f5a 100644 --- a/pkgs/development/python-modules/amazon-ion/default.nix +++ b/pkgs/development/python-modules/amazon-ion/default.nix @@ -57,15 +57,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "amazon.ion" ]; - meta = with lib; { + meta = { description = "Python implementation of Amazon Ion"; homepage = "https://github.com/amazon-ion/ion-python"; changelog = "https://github.com/amazon-ion/ion-python/releases/tag/${src.tag}"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode ]; - license = licenses.asl20; - maintainers = with maintainers; [ terlar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ terlar ]; }; } diff --git a/pkgs/development/python-modules/amberelectric/default.nix b/pkgs/development/python-modules/amberelectric/default.nix index b8214fa5372b..471b81e70458 100644 --- a/pkgs/development/python-modules/amberelectric/default.nix +++ b/pkgs/development/python-modules/amberelectric/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "amberelectric" ]; - meta = with lib; { + meta = { description = "Python Amber Electric API interface"; homepage = "https://github.com/madpilot/amberelectric.py"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/amcrest/default.nix b/pkgs/development/python-modules/amcrest/default.nix index 2d48513f3fd3..5144a6b07adf 100644 --- a/pkgs/development/python-modules/amcrest/default.nix +++ b/pkgs/development/python-modules/amcrest/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "amcrest" ]; - meta = with lib; { + meta = { description = "Python module for Amcrest and Dahua Cameras"; homepage = "https://github.com/tchellomello/python-amcrest"; changelog = "https://github.com/tchellomello/python-amcrest/releases/tag/${src.tag}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/amply/default.nix b/pkgs/development/python-modules/amply/default.nix index 12af9b9da2eb..e09f6f82ded6 100644 --- a/pkgs/development/python-modules/amply/default.nix +++ b/pkgs/development/python-modules/amply/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "amply" ]; - meta = with lib; { + meta = { homepage = "https://github.com/willu47/amply"; description = '' Allows you to load and manipulate AMPL/GLPK data as Python data structures ''; - maintainers = with maintainers; [ ris ]; - license = licenses.epl10; + maintainers = with lib.maintainers; [ ris ]; + license = lib.licenses.epl10; }; } diff --git a/pkgs/development/python-modules/amqp/default.nix b/pkgs/development/python-modules/amqp/default.nix index 9b334e043f37..95c8eefc7744 100644 --- a/pkgs/development/python-modules/amqp/default.nix +++ b/pkgs/development/python-modules/amqp/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "amqp" ]; - meta = with lib; { + meta = { description = "Python client for the Advanced Message Queuing Procotol (AMQP). This is a fork of amqplib which is maintained by the Celery project"; homepage = "https://github.com/celery/py-amqp"; changelog = "https://github.com/celery/py-amqp/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/amqtt/default.nix b/pkgs/development/python-modules/amqtt/default.nix index fb4c667edb7f..8a1f778fada8 100644 --- a/pkgs/development/python-modules/amqtt/default.nix +++ b/pkgs/development/python-modules/amqtt/default.nix @@ -82,10 +82,10 @@ buildPythonPackage { pythonImportsCheck = [ "amqtt" ]; - meta = with lib; { + meta = { description = "Python MQTT client and broker implementation"; homepage = "https://amqtt.readthedocs.io/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ancp-bids/default.nix b/pkgs/development/python-modules/ancp-bids/default.nix index 3ad3f61553f5..4cea7ed8a7bd 100644 --- a/pkgs/development/python-modules/ancp-bids/default.nix +++ b/pkgs/development/python-modules/ancp-bids/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { disabledTests = [ "test_fetch_dataset" ]; - meta = with lib; { + meta = { homepage = "https://ancpbids.readthedocs.io"; description = "Read/write/validate/query BIDS datasets"; changelog = "https://github.com/ANCPLabOldenburg/ancp-bids/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/android-backup/default.nix b/pkgs/development/python-modules/android-backup/default.nix index cc153ab2e395..5c4d7cf4dc20 100644 --- a/pkgs/development/python-modules/android-backup/default.nix +++ b/pkgs/development/python-modules/android-backup/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "android_backup" ]; - meta = with lib; { + meta = { description = "Unpack and repack android backups"; homepage = "https://github.com/bluec0re/android-backup-tools"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/androidtv/default.nix b/pkgs/development/python-modules/androidtv/default.nix index 374602ae64dc..f59c46b8db28 100644 --- a/pkgs/development/python-modules/androidtv/default.nix +++ b/pkgs/development/python-modules/androidtv/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "androidtv" ]; - meta = with lib; { + meta = { description = "Communicate with an Android TV or Fire TV device via ADB over a network"; homepage = "https://github.com/JeffLIrion/python-androidtv/"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/androidtvremote2/default.nix b/pkgs/development/python-modules/androidtvremote2/default.nix index dc2828768c4f..9d863d46c7bf 100644 --- a/pkgs/development/python-modules/androidtvremote2/default.nix +++ b/pkgs/development/python-modules/androidtvremote2/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # Module only has a dummy test doCheck = false; - meta = with lib; { + meta = { description = "Library to interact with the Android TV Remote protocol v2"; homepage = "https://github.com/tronikos/androidtvremote2"; changelog = "https://github.com/tronikos/androidtvremote2/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/anel-pwrctrl-homeassistant/default.nix b/pkgs/development/python-modules/anel-pwrctrl-homeassistant/default.nix index 07b8cbb96c0c..b601670adbe4 100644 --- a/pkgs/development/python-modules/anel-pwrctrl-homeassistant/default.nix +++ b/pkgs/development/python-modules/anel-pwrctrl-homeassistant/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "anel_pwrctrl" ]; - meta = with lib; { + meta = { description = "Discover and control ANEL NET-PwrCtrl devices"; homepage = "https://github.com/mweinelt/anel-pwrctrl"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/angr/default.nix b/pkgs/development/python-modules/angr/default.nix index 170e8a92b48e..782b1c9ccc63 100644 --- a/pkgs/development/python-modules/angr/default.nix +++ b/pkgs/development/python-modules/angr/default.nix @@ -106,10 +106,10 @@ buildPythonPackage rec { "archinfo" ]; - meta = with lib; { + meta = { description = "Powerful and user-friendly binary analysis platform"; homepage = "https://angr.io/"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/angrcli/default.nix b/pkgs/development/python-modules/angrcli/default.nix index 20d8ab4ab5be..b05a09cce798 100644 --- a/pkgs/development/python-modules/angrcli/default.nix +++ b/pkgs/development/python-modules/angrcli/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "angrcli" ]; - meta = with lib; { + meta = { description = "Python modules to allow easier interactive use of angr"; homepage = "https://github.com/fmagin/angr-cli"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/angrop/default.nix b/pkgs/development/python-modules/angrop/default.nix index 6d34435d5c62..e6c1b92d6345 100644 --- a/pkgs/development/python-modules/angrop/default.nix +++ b/pkgs/development/python-modules/angrop/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "angrop" ]; - meta = with lib; { + meta = { description = "ROP gadget finder and chain builder"; homepage = "https://github.com/angr/angrop"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aniso8601/default.nix b/pkgs/development/python-modules/aniso8601/default.nix index 9951c28663d2..4be2d4150fb0 100644 --- a/pkgs/development/python-modules/aniso8601/default.nix +++ b/pkgs/development/python-modules/aniso8601/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aniso8601" ]; - meta = with lib; { + meta = { description = "Python Parser for ISO 8601 strings"; homepage = "https://bitbucket.org/nielsenb/aniso8601"; changelog = "https://bitbucket.org/nielsenb/aniso8601/src/v${version}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/anitopy/default.nix b/pkgs/development/python-modules/anitopy/default.nix index d7d3f2a0e56b..f6ad074bd0be 100644 --- a/pkgs/development/python-modules/anitopy/default.nix +++ b/pkgs/development/python-modules/anitopy/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "anitopy" ]; - meta = with lib; { + meta = { description = "Python library for parsing anime video filenames"; homepage = "https://github.com/igorcmoura/anitopy"; - license = licenses.mpl20; - maintainers = with maintainers; [ passivelemon ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ passivelemon ]; }; } diff --git a/pkgs/development/python-modules/annexremote/default.nix b/pkgs/development/python-modules/annexremote/default.nix index a015142c9b4f..352c3b76a134 100644 --- a/pkgs/development/python-modules/annexremote/default.nix +++ b/pkgs/development/python-modules/annexremote/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "annexremote" ]; - meta = with lib; { + meta = { description = "Helper module to easily develop git-annex remotes"; homepage = "https://github.com/Lykos153/AnnexRemote"; changelog = "https://github.com/Lykos153/AnnexRemote/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ montag451 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ montag451 ]; }; } diff --git a/pkgs/development/python-modules/annotated-types/default.nix b/pkgs/development/python-modules/annotated-types/default.nix index b75d18edbb51..197424c2a6b6 100644 --- a/pkgs/development/python-modules/annotated-types/default.nix +++ b/pkgs/development/python-modules/annotated-types/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Reusable constraint types to use with typing.Annotated"; homepage = "https://github.com/annotated-types/annotated-types"; changelog = "https://github.com/annotated-types/annotated-types/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/anonip/default.nix b/pkgs/development/python-modules/anonip/default.nix index 908db6726f5d..d0653de4c84e 100644 --- a/pkgs/development/python-modules/anonip/default.nix +++ b/pkgs/development/python-modules/anonip/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "anonip" ]; - meta = with lib; { + meta = { description = "Tool to anonymize IP addresses in log files"; mainProgram = "anonip"; homepage = "https://github.com/DigitaleGesellschaft/Anonip"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmahut ]; }; } diff --git a/pkgs/development/python-modules/anova-wifi/default.nix b/pkgs/development/python-modules/anova-wifi/default.nix index b7374b5caa86..b4296e2a305f 100644 --- a/pkgs/development/python-modules/anova-wifi/default.nix +++ b/pkgs/development/python-modules/anova-wifi/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "anova_wifi" ]; - meta = with lib; { + meta = { description = "Python package for reading anova sous vide api data"; homepage = "https://github.com/Lash-L/anova_wifi"; changelog = "https://github.com/Lash-L/anova_wifi/releases/tag/v${version}"; - maintainers = with maintainers; [ jamiemagee ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/ansi/default.nix b/pkgs/development/python-modules/ansi/default.nix index 753dc9e04cdb..25210b7758d3 100644 --- a/pkgs/development/python-modules/ansi/default.nix +++ b/pkgs/development/python-modules/ansi/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { "ansi.color" ]; - meta = with lib; { + meta = { description = "ANSI cursor movement and graphics"; homepage = "https://github.com/tehmaze/ansi/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/ansi2html/default.nix b/pkgs/development/python-modules/ansi2html/default.nix index faf70728277e..cf7e1e742d52 100644 --- a/pkgs/development/python-modules/ansi2html/default.nix +++ b/pkgs/development/python-modules/ansi2html/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ansi2html" ]; - meta = with lib; { + meta = { description = "Convert text with ANSI color codes to HTML"; mainProgram = "ansi2html"; homepage = "https://github.com/ralphbean/ansi2html"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ansi2image/default.nix b/pkgs/development/python-modules/ansi2image/default.nix index 4778737719f5..ae7bc2e70f9f 100644 --- a/pkgs/development/python-modules/ansi2image/default.nix +++ b/pkgs/development/python-modules/ansi2image/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/tests.py" ]; - meta = with lib; { + meta = { description = "Module to convert ANSI text to an image"; mainProgram = "ansi2image"; homepage = "https://github.com/helviojunior/ansi2image"; changelog = "https://github.com/helviojunior/ansi2image/blob/${version}/CHANGELOG"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ansible-builder/default.nix b/pkgs/development/python-modules/ansible-builder/default.nix index 670c182f8efa..8c124ac58914 100644 --- a/pkgs/development/python-modules/ansible-builder/default.nix +++ b/pkgs/development/python-modules/ansible-builder/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { packaging ]; - meta = with lib; { + meta = { description = "Ansible execution environment builder"; homepage = "https://ansible-builder.readthedocs.io/en/stable/"; - license = licenses.asl20; - maintainers = with maintainers; [ melkor333 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melkor333 ]; }; } diff --git a/pkgs/development/python-modules/ansible-kernel/default.nix b/pkgs/development/python-modules/ansible-kernel/default.nix index 3dd5dcba8463..ef11c8a03262 100644 --- a/pkgs/development/python-modules/ansible-kernel/default.nix +++ b/pkgs/development/python-modules/ansible-kernel/default.nix @@ -74,10 +74,10 @@ buildPythonPackage rec { ln -s ${kernelSpecFile} $out/share/jupyter/kernels/ansible/kernel.json ''; - meta = with lib; { + meta = { description = "Ansible kernel for Jupyter"; homepage = "https://github.com/ansible/ansible-jupyter-kernel"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ansible-pylibssh/default.nix b/pkgs/development/python-modules/ansible-pylibssh/default.nix index a5f68ffe3cdf..d4af4b030844 100644 --- a/pkgs/development/python-modules/ansible-pylibssh/default.nix +++ b/pkgs/development/python-modules/ansible-pylibssh/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylibsshext" ]; - meta = with lib; { + meta = { description = "Python bindings to client functionality of libssh specific to Ansible use case"; homepage = "https://github.com/ansible/pylibssh"; changelog = "https://github.com/ansible/pylibssh/releases/tag/v${version}"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/development/python-modules/ansible-vault-rw/default.nix b/pkgs/development/python-modules/ansible-vault-rw/default.nix index 1a772b3c639f..16b858e5a1b0 100644 --- a/pkgs/development/python-modules/ansible-vault-rw/default.nix +++ b/pkgs/development/python-modules/ansible-vault-rw/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "This project aim to R/W an ansible-vault yaml file"; homepage = "https://github.com/tomoh1r/ansible-vault"; changelog = "https://github.com/tomoh1r/ansible-vault/blob/master/CHANGES.txt"; - license = licenses.gpl3; - maintainers = with maintainers; [ StillerHarpo ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ StillerHarpo ]; }; } diff --git a/pkgs/development/python-modules/ansible/core.nix b/pkgs/development/python-modules/ansible/core.nix index 21e9d4c6d787..8d47672ed5f9 100644 --- a/pkgs/development/python-modules/ansible/core.nix +++ b/pkgs/development/python-modules/ansible/core.nix @@ -101,12 +101,12 @@ buildPythonPackage rec { # internal import errors, missing dependencies doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/ansible/ansible/blob/v${version}/changelogs/CHANGELOG-v${lib.versions.majorMinor version}.rst"; description = "Radically simple IT automation"; homepage = "https://www.ansible.com"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ HarisDotParis robsliwi ]; diff --git a/pkgs/development/python-modules/ansible/default.nix b/pkgs/development/python-modules/ansible/default.nix index 18c3ccee99e7..eff32e27fb77 100644 --- a/pkgs/development/python-modules/ansible/default.nix +++ b/pkgs/development/python-modules/ansible/default.nix @@ -90,13 +90,13 @@ buildPythonPackage { # difficult to test doCheck = false; - meta = with lib; { + meta = { description = "Radically simple IT automation"; mainProgram = "ansible-community"; homepage = "https://www.ansible.com"; changelog = "https://github.com/ansible-community/ansible-build-data/blob/${version}/${lib.versions.major version}/CHANGELOG-v${lib.versions.major version}.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ HarisDotParis robsliwi ]; diff --git a/pkgs/development/python-modules/ansicolor/default.nix b/pkgs/development/python-modules/ansicolor/default.nix index 3f0532d0d70c..4a101d2a94f2 100644 --- a/pkgs/development/python-modules/ansicolor/default.nix +++ b/pkgs/development/python-modules/ansicolor/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ansicolor" ]; - meta = with lib; { + meta = { description = "Library to produce ansi color output and colored highlighting and diffing"; homepage = "https://github.com/numerodix/ansicolor/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ansicolors/default.nix b/pkgs/development/python-modules/ansicolors/default.nix index 2d58ba770a89..2fab28de72c3 100644 --- a/pkgs/development/python-modules/ansicolors/default.nix +++ b/pkgs/development/python-modules/ansicolors/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { py.test ''; - meta = with lib; { + meta = { homepage = "https://github.com/verigak/colors/"; description = "ANSI colors for Python"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ansiconv/default.nix b/pkgs/development/python-modules/ansiconv/default.nix index 65244a9fe6d0..8944a73b01de 100644 --- a/pkgs/development/python-modules/ansiconv/default.nix +++ b/pkgs/development/python-modules/ansiconv/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { description = "Module for converting ANSI coded text and converts it to either plain text or HTML"; homepage = "https://github.com/ansible/ansiconv"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/ansimarkup/default.nix b/pkgs/development/python-modules/ansimarkup/default.nix index fedb0b060e07..ced9b7b68f0e 100644 --- a/pkgs/development/python-modules/ansimarkup/default.nix +++ b/pkgs/development/python-modules/ansimarkup/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ansimarkup" ]; - meta = with lib; { + meta = { description = "XML-like markup for producing colored terminal text"; homepage = "https://github.com/gvalkov/python-ansimarkup"; - license = licenses.bsd3; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/ansitable/default.nix b/pkgs/development/python-modules/ansitable/default.nix index 0080974e646d..422b4cdbaa80 100644 --- a/pkgs/development/python-modules/ansitable/default.nix +++ b/pkgs/development/python-modules/ansitable/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pandas ]; - meta = with lib; { + meta = { description = "Quick and easy display of tabular data and matrices with optional ANSI color and borders"; homepage = "https://pypi.org/project/ansitable/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ djacu a-camarillo ]; diff --git a/pkgs/development/python-modules/anthemav/default.nix b/pkgs/development/python-modules/anthemav/default.nix index 9f4b5908056d..19a7f7fbe32b 100644 --- a/pkgs/development/python-modules/anthemav/default.nix +++ b/pkgs/development/python-modules/anthemav/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "anthemav" ]; - meta = with lib; { + meta = { description = "Python asyncio module to interface with Anthem AVM and MRX receivers"; mainProgram = "anthemav_monitor"; homepage = "https://github.com/nugget/python-anthemav"; changelog = "https://github.com/nugget/python-anthemav/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/anyascii/default.nix b/pkgs/development/python-modules/anyascii/default.nix index 9304eec42f13..8304e7afeec9 100644 --- a/pkgs/development/python-modules/anyascii/default.nix +++ b/pkgs/development/python-modules/anyascii/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/anyascii/anyascii/blob/${version}/CHANGELOG.md"; description = "Unicode to ASCII transliteration"; homepage = "https://github.com/anyascii/anyascii"; - license = licenses.isc; - teams = [ teams.tts ]; + license = lib.licenses.isc; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/anyconfig/default.nix b/pkgs/development/python-modules/anyconfig/default.nix index 9d4d0ed58203..9cea4cd5891e 100644 --- a/pkgs/development/python-modules/anyconfig/default.nix +++ b/pkgs/development/python-modules/anyconfig/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "anyconfig" ]; - meta = with lib; { + meta = { description = "Python library provides common APIs to load and dump configuration files in various formats"; mainProgram = "anyconfig_cli"; homepage = "https://github.com/ssato/python-anyconfig"; - license = licenses.mit; - maintainers = with maintainers; [ tboerger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tboerger ]; }; } diff --git a/pkgs/development/python-modules/anyio/default.nix b/pkgs/development/python-modules/anyio/default.nix index 2565129d2215..77fa044a8dde 100644 --- a/pkgs/development/python-modules/anyio/default.nix +++ b/pkgs/development/python-modules/anyio/default.nix @@ -126,11 +126,11 @@ buildPythonPackage rec { inherit starlette; }; - meta = with lib; { + meta = { changelog = "https://github.com/agronholm/anyio/blob/${src.tag}/docs/versionhistory.rst"; description = "High level compatibility layer for multiple asynchronous event loop implementations on Python"; homepage = "https://github.com/agronholm/anyio"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/anysqlite/default.nix b/pkgs/development/python-modules/anysqlite/default.nix index 9f1ddb4fd898..bc04a22aa8b3 100644 --- a/pkgs/development/python-modules/anysqlite/default.nix +++ b/pkgs/development/python-modules/anysqlite/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "anysqlite" ]; - meta = with lib; { + meta = { description = "Sqlite3 for asyncio and trio"; homepage = "https://github.com/karpetrosyan/anysqlite"; changelog = "https://github.com/karpetrosyan/anysqlite/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/anywidget/default.nix b/pkgs/development/python-modules/anywidget/default.nix index 1420201e9707..b1cfaa2cf858 100644 --- a/pkgs/development/python-modules/anywidget/default.nix +++ b/pkgs/development/python-modules/anywidget/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "anywidget" ]; - meta = with lib; { + meta = { description = "Custom jupyter widgets made easy"; homepage = "https://github.com/manzt/anywidget"; changelog = "https://github.com/manzt/anywidget/releases/tag/anywidget%40${version}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/apcaccess/default.nix b/pkgs/development/python-modules/apcaccess/default.nix index 5fb60a8c6f82..f3ada5f2a5ad 100644 --- a/pkgs/development/python-modules/apcaccess/default.nix +++ b/pkgs/development/python-modules/apcaccess/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Library offers programmatic access to the status information provided by apcupsd over its Network Information Server"; mainProgram = "apcaccess"; homepage = "https://github.com/flyte/apcaccess"; - license = licenses.mit; - maintainers = with maintainers; [ uvnikita ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; }; } diff --git a/pkgs/development/python-modules/apipkg/default.nix b/pkgs/development/python-modules/apipkg/default.nix index 3d0a52f95a14..be010b2011cd 100644 --- a/pkgs/development/python-modules/apipkg/default.nix +++ b/pkgs/development/python-modules/apipkg/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apipkg" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pytest-dev/apipkg/blob/main/CHANGELOG"; description = "Namespace control and lazy-import mechanism"; homepage = "https://github.com/pytest-dev/apipkg"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/apischema/default.nix b/pkgs/development/python-modules/apischema/default.nix index 633e10805283..d1d823590fce 100644 --- a/pkgs/development/python-modules/apischema/default.nix +++ b/pkgs/development/python-modules/apischema/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apischema" ]; - meta = with lib; { + meta = { description = "JSON (de)serialization, GraphQL and JSON schema generation using typing"; homepage = "https://github.com/wyfo/apischema"; changelog = "https://github.com/wyfo/apischema/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/apispec-webframeworks/default.nix b/pkgs/development/python-modules/apispec-webframeworks/default.nix index 650ca09f5ddb..ba7febdc3cc7 100644 --- a/pkgs/development/python-modules/apispec-webframeworks/default.nix +++ b/pkgs/development/python-modules/apispec-webframeworks/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apispec_webframeworks" ]; - meta = with lib; { + meta = { description = "Web framework plugins for apispec"; homepage = "https://github.com/marshmallow-code/apispec-webframeworks"; changelog = "https://github.com/marshmallow-code/apispec-webframeworks/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/apispec/default.nix b/pkgs/development/python-modules/apispec/default.nix index fc47c87d7f98..1b4747faf4e9 100644 --- a/pkgs/development/python-modules/apispec/default.nix +++ b/pkgs/development/python-modules/apispec/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apispec" ]; - meta = with lib; { + meta = { changelog = "https://github.com/marshmallow-code/apispec/blob/${version}/CHANGELOG.rst"; description = "Pluggable API specification generator with support for the OpenAPI Specification"; homepage = "https://github.com/marshmallow-code/apispec"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/apkinspector/default.nix b/pkgs/development/python-modules/apkinspector/default.nix index 374b35a4065a..ed8a0975c36c 100644 --- a/pkgs/development/python-modules/apkinspector/default.nix +++ b/pkgs/development/python-modules/apkinspector/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "apkInspector" ]; - meta = with lib; { + meta = { description = "Module designed to provide detailed insights into the zip structure of APK files"; homepage = "https://github.com/erev0s/apkInspector"; changelog = "https://github.com/erev0s/apkInspector/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "apkInspector"; }; } diff --git a/pkgs/development/python-modules/aplpy/default.nix b/pkgs/development/python-modules/aplpy/default.nix index f3c0dc0e6ba4..812af5e1d027 100644 --- a/pkgs/development/python-modules/aplpy/default.nix +++ b/pkgs/development/python-modules/aplpy/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aplpy" ]; - meta = with lib; { + meta = { description = "Astronomical Plotting Library in Python"; homepage = "http://aplpy.github.io"; - license = licenses.mit; - maintainers = with maintainers; [ smaret ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ smaret ]; }; } diff --git a/pkgs/development/python-modules/app-model/default.nix b/pkgs/development/python-modules/app-model/default.nix index 3dc700a076b9..79c88ea2eff0 100644 --- a/pkgs/development/python-modules/app-model/default.nix +++ b/pkgs/development/python-modules/app-model/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "app_model" ]; - meta = with lib; { + meta = { description = "Module to implement generic application schema"; homepage = "https://github.com/pyapp-kit/app-model"; changelog = "https://github.com/pyapp-kit/app-model/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/apple-weatherkit/default.nix b/pkgs/development/python-modules/apple-weatherkit/default.nix index a905a17654d7..cd38737c53c5 100644 --- a/pkgs/development/python-modules/apple-weatherkit/default.nix +++ b/pkgs/development/python-modules/apple-weatherkit/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apple_weatherkit" ]; - meta = with lib; { + meta = { description = "Python library for Apple WeatherKit"; homepage = "https://github.com/tjhorner/python-weatherkit"; changelog = "https://github.com/tjhorner/python-weatherkit/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/applicationinsights/default.nix b/pkgs/development/python-modules/applicationinsights/default.nix index a4329ff4dc70..449256f4fe1e 100644 --- a/pkgs/development/python-modules/applicationinsights/default.nix +++ b/pkgs/development/python-modules/applicationinsights/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ portalocker ]; - meta = with lib; { + meta = { description = "This project extends the Application Insights API surface to support Python"; homepage = "https://github.com/Microsoft/ApplicationInsights-Python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/appthreat-vulnerability-db/default.nix b/pkgs/development/python-modules/appthreat-vulnerability-db/default.nix index ebe210c373c2..d930a762fb6b 100644 --- a/pkgs/development/python-modules/appthreat-vulnerability-db/default.nix +++ b/pkgs/development/python-modules/appthreat-vulnerability-db/default.nix @@ -72,12 +72,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "vdb" ]; - meta = with lib; { + meta = { description = "Vulnerability database and package search for sources such as OSV, NVD, GitHub and npm"; homepage = "https://github.com/appthreat/vulnerability-db"; changelog = "https://github.com/AppThreat/vulnerability-db/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "vdb"; }; } diff --git a/pkgs/development/python-modules/apptools/default.nix b/pkgs/development/python-modules/apptools/default.nix index ff9a12ce32ed..f25a32f2a2ad 100644 --- a/pkgs/development/python-modules/apptools/default.nix +++ b/pkgs/development/python-modules/apptools/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apptools" ]; - meta = with lib; { + meta = { description = "Set of packages that Enthought has found useful in creating a number of applications"; homepage = "https://github.com/enthought/apptools"; changelog = "https://github.com/enthought/apptools/releases/tag/${src.tag}"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/apricot-select/default.nix b/pkgs/development/python-modules/apricot-select/default.nix index c136607ac178..54a1e9938dcf 100644 --- a/pkgs/development/python-modules/apricot-select/default.nix +++ b/pkgs/development/python-modules/apricot-select/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { passthru.tests.check = apricot-select.overridePythonAttrs { doCheck = true; }; - meta = with lib; { + meta = { description = "Module for submodular optimization for the purpose of selecting subsets of massive data sets"; homepage = "https://github.com/jmschrei/apricot"; changelog = "https://github.com/jmschrei/apricot/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aprslib/default.nix b/pkgs/development/python-modules/aprslib/default.nix index 72f9d05d4e2b..b54b607636ed 100644 --- a/pkgs/development/python-modules/aprslib/default.nix +++ b/pkgs/development/python-modules/aprslib/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aprslib" ]; - meta = with lib; { + meta = { description = "Module for accessing APRS-IS and parsing APRS packets"; homepage = "https://github.com/rossengeorgiev/aprs-python"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/apt-repo/default.nix b/pkgs/development/python-modules/apt-repo/default.nix index 53063db2eb64..305960ab5938 100644 --- a/pkgs/development/python-modules/apt-repo/default.nix +++ b/pkgs/development/python-modules/apt-repo/default.nix @@ -27,10 +27,10 @@ buildPythonPackage { pythonImportsCheck = [ "apt_repo" ]; - meta = with lib; { + meta = { description = "Python library to query APT repositories"; homepage = "https://github.com/brennerm/python-apt-repo"; - license = licenses.mit; - maintainers = with maintainers; [ nicoo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicoo ]; }; } diff --git a/pkgs/development/python-modules/apycula/default.nix b/pkgs/development/python-modules/apycula/default.nix index a86ba1fe3139..55577fafb852 100644 --- a/pkgs/development/python-modules/apycula/default.nix +++ b/pkgs/development/python-modules/apycula/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apycula" ]; - meta = with lib; { + meta = { description = "Open Source tools for Gowin FPGAs"; homepage = "https://github.com/YosysHQ/apicula"; changelog = "https://github.com/YosysHQ/apicula/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ newam ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ newam ]; }; } diff --git a/pkgs/development/python-modules/aqipy-atmotech/default.nix b/pkgs/development/python-modules/aqipy-atmotech/default.nix index 549e49b3d486..d2a0b593048c 100644 --- a/pkgs/development/python-modules/aqipy-atmotech/default.nix +++ b/pkgs/development/python-modules/aqipy-atmotech/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aqipy" ]; - meta = with lib; { + meta = { description = "Library for AQI calculation"; homepage = "https://github.com/atmotube/aqipy"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aqualogic/default.nix b/pkgs/development/python-modules/aqualogic/default.nix index a058dea6ce1d..c002a4f6f887 100644 --- a/pkgs/development/python-modules/aqualogic/default.nix +++ b/pkgs/development/python-modules/aqualogic/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aqualogic" ]; - meta = with lib; { + meta = { description = "Python library to interface with Hayward/Goldline AquaLogic/ProLogic pool controllers"; homepage = "https://github.com/swilson/aqualogic"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/arabic-reshaper/default.nix b/pkgs/development/python-modules/arabic-reshaper/default.nix index 0669a2af3323..f1ceaaf412dd 100644 --- a/pkgs/development/python-modules/arabic-reshaper/default.nix +++ b/pkgs/development/python-modules/arabic-reshaper/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "arabic_reshaper" ]; - meta = with lib; { + meta = { description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic"; homepage = "https://github.com/mpcabd/python-arabic-reshaper"; changelog = "https://github.com/mpcabd/python-arabic-reshaper/releases/tag/v${version}"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aranet4/default.nix b/pkgs/development/python-modules/aranet4/default.nix index 95da1bb6ad8f..a3919038a94f 100644 --- a/pkgs/development/python-modules/aranet4/default.nix +++ b/pkgs/development/python-modules/aranet4/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "test_current_values" ]; - meta = with lib; { + meta = { description = "Module to interact with Aranet4 devices"; homepage = "https://github.com/Anrijs/Aranet4-Python"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "aranetctl"; }; } diff --git a/pkgs/development/python-modules/arc4/default.nix b/pkgs/development/python-modules/arc4/default.nix index e7350569462c..03411b44fdb3 100644 --- a/pkgs/development/python-modules/arc4/default.nix +++ b/pkgs/development/python-modules/arc4/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "arc4" ]; - meta = with lib; { + meta = { description = "ARCFOUR (RC4) cipher implementation"; homepage = "https://github.com/manicmaniac/arc4"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/arcam-fmj/default.nix b/pkgs/development/python-modules/arcam-fmj/default.nix index c0ba99e384f9..f94fb291c401 100644 --- a/pkgs/development/python-modules/arcam-fmj/default.nix +++ b/pkgs/development/python-modules/arcam-fmj/default.nix @@ -63,12 +63,12 @@ buildPythonPackage rec { "arcam.fmj.utils" ]; - meta = with lib; { + meta = { description = "Python library for speaking to Arcam receivers"; mainProgram = "arcam-fmj"; homepage = "https://github.com/elupus/arcam_fmj"; changelog = "https://github.com/elupus/arcam_fmj/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/archinfo/default.nix b/pkgs/development/python-modules/archinfo/default.nix index 765aff9a1a05..6a047838ef0b 100644 --- a/pkgs/development/python-modules/archinfo/default.nix +++ b/pkgs/development/python-modules/archinfo/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "archinfo" ]; - meta = with lib; { + meta = { description = "Classes with architecture-specific information"; homepage = "https://github.com/angr/archinfo"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/archspec/default.nix b/pkgs/development/python-modules/archspec/default.nix index 0158e9390c4b..e58a64c4eca8 100644 --- a/pkgs/development/python-modules/archspec/default.nix +++ b/pkgs/development/python-modules/archspec/default.nix @@ -35,15 +35,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "archspec" ]; - meta = with lib; { + meta = { description = "Library for detecting, labeling, and reasoning about microarchitectures"; homepage = "https://archspec.readthedocs.io/"; changelog = "https://github.com/archspec/archspec/releases/tag/${src.tag}"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ atila ]; + maintainers = with lib.maintainers; [ atila ]; mainProgram = "archspec"; }; } diff --git a/pkgs/development/python-modules/area/default.nix b/pkgs/development/python-modules/area/default.nix index 39b0ccd26cc2..30d8efbf6644 100644 --- a/pkgs/development/python-modules/area/default.nix +++ b/pkgs/development/python-modules/area/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # tests not working on the package from pypi doCheck = false; - meta = with lib; { + meta = { description = "Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox’s geojson-area for Python"; homepage = "https://github.com/scisco/area"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/aresponses/default.nix b/pkgs/development/python-modules/aresponses/default.nix index d3557ea7278e..0184ee4743b8 100644 --- a/pkgs/development/python-modules/aresponses/default.nix +++ b/pkgs/development/python-modules/aresponses/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aresponses" ]; - meta = with lib; { + meta = { changelog = "https://github.com/aresponses/aresponses/blob/${src.rev}/README.md#changelog"; description = "Asyncio testing server"; homepage = "https://github.com/aresponses/aresponses"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/argcomplete/default.nix b/pkgs/development/python-modules/argcomplete/default.nix index 9bb66f64b07b..2d601630f1c3 100644 --- a/pkgs/development/python-modules/argcomplete/default.nix +++ b/pkgs/development/python-modules/argcomplete/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "argcomplete" ]; - meta = with lib; { + meta = { description = "Bash tab completion for argparse"; homepage = "https://kislyuk.github.io/argcomplete/"; changelog = "https://github.com/kislyuk/argcomplete/blob/${src.tag}/Changes.rst"; downloadPage = "https://github.com/kislyuk/argcomplete"; - license = licenses.asl20; - maintainers = with maintainers; [ womfoo ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ womfoo ]; }; } diff --git a/pkgs/development/python-modules/argh/default.nix b/pkgs/development/python-modules/argh/default.nix index 476dfd6bb4ee..6107e43d8542 100644 --- a/pkgs/development/python-modules/argh/default.nix +++ b/pkgs/development/python-modules/argh/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "argh" ]; - meta = with lib; { + meta = { changelog = "https://github.com/neithere/argh/blob/v${version}/CHANGES"; homepage = "https://github.com/neithere/argh"; description = "Unobtrusive argparse wrapper with natural syntax"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/argilla/default.nix b/pkgs/development/python-modules/argilla/default.nix index 7d7a1c73c02a..337e348473a1 100644 --- a/pkgs/development/python-modules/argilla/default.nix +++ b/pkgs/development/python-modules/argilla/default.nix @@ -185,12 +185,12 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/server/datasets/test_dao.py" ]; - meta = with lib; { + meta = { description = "Open-source data curation platform for LLMs"; homepage = "https://github.com/argilla-io/argilla"; changelog = "https://github.com/argilla-io/argilla/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "argilla"; }; } diff --git a/pkgs/development/python-modules/argon2-cffi-bindings/default.nix b/pkgs/development/python-modules/argon2-cffi-bindings/default.nix index 2f9c1b7f70b7..b3d802196c69 100644 --- a/pkgs/development/python-modules/argon2-cffi-bindings/default.nix +++ b/pkgs/development/python-modules/argon2-cffi-bindings/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "_argon2_cffi_bindings" ]; - meta = with lib; { + meta = { changelog = "https://github.com/hynek/argon2-cffi-bindings/releases/tag/${src.tag}"; description = "Low-level CFFI bindings for Argon2"; homepage = "https://github.com/hynek/argon2-cffi-bindings"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/argon2-cffi/default.nix b/pkgs/development/python-modules/argon2-cffi/default.nix index ec4b5a4f9c37..ff51db8acddf 100644 --- a/pkgs/development/python-modules/argon2-cffi/default.nix +++ b/pkgs/development/python-modules/argon2-cffi/default.nix @@ -36,9 +36,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "argon2" ]; - meta = with lib; { + meta = { description = "Secure Password Hashes for Python"; homepage = "https://argon2-cffi.readthedocs.io/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/argos-translate-files/default.nix b/pkgs/development/python-modules/argos-translate-files/default.nix index 522ddeabbe35..1e3b2e7661d7 100644 --- a/pkgs/development/python-modules/argos-translate-files/default.nix +++ b/pkgs/development/python-modules/argos-translate-files/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "argostranslatefiles" ]; - meta = with lib; { + meta = { description = "Translate files using Argos Translate"; homepage = "https://www.argosopentech.com"; - license = licenses.mit; - maintainers = with maintainers; [ misuzu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/development/python-modules/argparse-addons/default.nix b/pkgs/development/python-modules/argparse-addons/default.nix index 1af3f55cd554..ac1645ab1a48 100644 --- a/pkgs/development/python-modules/argparse-addons/default.nix +++ b/pkgs/development/python-modules/argparse-addons/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "argparse_addons" ]; - meta = with lib; { + meta = { description = "Additional Python argparse types and actions"; homepage = "https://github.com/eerimoq/argparse_addons"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ frogamic sbruder ]; diff --git a/pkgs/development/python-modules/argparse-dataclass/default.nix b/pkgs/development/python-modules/argparse-dataclass/default.nix index 5de2533fb17b..7a7808390977 100644 --- a/pkgs/development/python-modules/argparse-dataclass/default.nix +++ b/pkgs/development/python-modules/argparse-dataclass/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "argparse_dataclass" ]; - meta = with lib; { + meta = { description = "Declarative CLIs with argparse and dataclasses"; homepage = "https://github.com/mivade/argparse_dataclass"; changelog = "https://github.com/mivade/argparse_dataclass/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ tm-drtina ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tm-drtina ]; }; } diff --git a/pkgs/development/python-modules/argparse-manpage/default.nix b/pkgs/development/python-modules/argparse-manpage/default.nix index 5b4fbdaeff6e..1c59c8c8e6a4 100644 --- a/pkgs/development/python-modules/argparse-manpage/default.nix +++ b/pkgs/development/python-modules/argparse-manpage/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { setuptools = [ setuptools ]; }; - meta = with lib; { + meta = { description = "Automatically build man-pages for your Python project"; homepage = "https://github.com/praiskup/argparse-manpage"; changelog = "https://github.com/praiskup/argparse-manpage/blob/${src.tag}/NEWS"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "argparse-manpage"; }; } diff --git a/pkgs/development/python-modules/ariadne/default.nix b/pkgs/development/python-modules/ariadne/default.nix index 3ec6f131f8fd..f258dd58d375 100644 --- a/pkgs/development/python-modules/ariadne/default.nix +++ b/pkgs/development/python-modules/ariadne/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { "tests/tracing/test_opentelemetry.py" ]; - meta = with lib; { + meta = { description = "Python library for implementing GraphQL servers using schema-first approach"; homepage = "https://ariadnegraphql.org"; changelog = "https://github.com/mirumee/ariadne/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/arpeggio/default.nix b/pkgs/development/python-modules/arpeggio/default.nix index da31dac82103..b179d9e0ee3f 100644 --- a/pkgs/development/python-modules/arpeggio/default.nix +++ b/pkgs/development/python-modules/arpeggio/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "arpeggio" ]; - meta = with lib; { + meta = { description = "Recursive descent parser with memoization based on PEG grammars (aka Packrat parser)"; homepage = "https://github.com/textX/Arpeggio"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/arpy/default.nix b/pkgs/development/python-modules/arpy/default.nix index bb06aa135b90..c349f5ceb9f8 100644 --- a/pkgs/development/python-modules/arpy/default.nix +++ b/pkgs/development/python-modules/arpy/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "arpy" ]; - meta = with lib; { + meta = { description = "Library for accessing the archive files and reading the contents"; homepage = "https://github.com/viraptor/arpy"; - license = licenses.bsd2; - maintainers = with maintainers; [ thornycrackers ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ thornycrackers ]; }; } diff --git a/pkgs/development/python-modules/arris-tg2492lg/default.nix b/pkgs/development/python-modules/arris-tg2492lg/default.nix index d2f6f2076b08..256b77faa6ab 100644 --- a/pkgs/development/python-modules/arris-tg2492lg/default.nix +++ b/pkgs/development/python-modules/arris-tg2492lg/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "arris_tg2492lg" ]; - meta = with lib; { + meta = { description = "Library to connect to an Arris TG2492LG"; homepage = "https://github.com/vanbalken/arris-tg2492lg"; changelog = "https://github.com/vanbalken/arris-tg2492lg/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/arrow/default.nix b/pkgs/development/python-modules/arrow/default.nix index 57645904f79f..06436b5ab902 100644 --- a/pkgs/development/python-modules/arrow/default.nix +++ b/pkgs/development/python-modules/arrow/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "arrow" ]; - meta = with lib; { + meta = { description = "Python library for date manipulation"; homepage = "https://github.com/crsmithdev/arrow"; - license = licenses.asl20; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/arsenic/default.nix b/pkgs/development/python-modules/arsenic/default.nix index f36d61baaaab..e765f31f2e16 100644 --- a/pkgs/development/python-modules/arsenic/default.nix +++ b/pkgs/development/python-modules/arsenic/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "arsenic" ]; - meta = with lib; { + meta = { description = "WebDriver implementation for asyncio and asyncio-compatible frameworks"; homepage = "https://github.com/HENNGE/arsenic/"; changelog = "https://github.com/HENNGE/arsenic/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/art/default.nix b/pkgs/development/python-modules/art/default.nix index 9a28f3774870..8a85059161c0 100644 --- a/pkgs/development/python-modules/art/default.nix +++ b/pkgs/development/python-modules/art/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "ASCII art library for Python"; mainProgram = "art"; homepage = "https://github.com/sepandhaghighi/art"; changelog = "https://github.com/sepandhaghighi/art/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/arxiv2bib/default.nix b/pkgs/development/python-modules/arxiv2bib/default.nix index 889159ccff34..90a9c31a4c07 100644 --- a/pkgs/development/python-modules/arxiv2bib/default.nix +++ b/pkgs/development/python-modules/arxiv2bib/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { "tests" ]; - meta = with lib; { + meta = { description = "Get a BibTeX entry from an arXiv id number, using the arxiv.org API"; mainProgram = "arxiv2bib"; homepage = "http://nathangrigg.github.io/arxiv2bib/"; - license = licenses.bsd3; - maintainers = [ maintainers.nico202 ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.nico202 ]; }; } diff --git a/pkgs/development/python-modules/asana/default.nix b/pkgs/development/python-modules/asana/default.nix index ef97c2ec1142..8c8991012814 100644 --- a/pkgs/development/python-modules/asana/default.nix +++ b/pkgs/development/python-modules/asana/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "build_tests/" ]; - meta = with lib; { + meta = { description = "Python client library for Asana"; homepage = "https://github.com/asana/python-asana"; changelog = "https://github.com/Asana/python-asana/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ascii-magic/default.nix b/pkgs/development/python-modules/ascii-magic/default.nix index 8f7b5ae5c428..5b1c01c97ff3 100644 --- a/pkgs/development/python-modules/ascii-magic/default.nix +++ b/pkgs/development/python-modules/ascii-magic/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "test_from_clipboard" ]; - meta = with lib; { + meta = { description = "Python module to converts pictures into ASCII art"; homepage = "https://github.com/LeandroBarone/python-ascii_magic"; changelog = "https://github.com/LeandroBarone/python-ascii_magic#changelog"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asciimatics/default.nix b/pkgs/development/python-modules/asciimatics/default.nix index ee536ff7177d..f5560bc2d079 100644 --- a/pkgs/development/python-modules/asciimatics/default.nix +++ b/pkgs/development/python-modules/asciimatics/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "asciimatics.screen" ]; - meta = with lib; { + meta = { description = "Module to create full-screen text UIs (from interactive forms to ASCII animations)"; homepage = "https://github.com/peterbrittain/asciimatics"; changelog = "https://github.com/peterbrittain/asciimatics/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/asciitree/default.nix b/pkgs/development/python-modules/asciitree/default.nix index ab8ec69bef49..710fc3ffec82 100644 --- a/pkgs/development/python-modules/asciitree/default.nix +++ b/pkgs/development/python-modules/asciitree/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Draws ASCII trees"; homepage = "https://github.com/mbr/asciitree"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/asdf-astropy/default.nix b/pkgs/development/python-modules/asdf-astropy/default.nix index 4f3afbb2f50c..b1b171796591 100644 --- a/pkgs/development/python-modules/asdf-astropy/default.nix +++ b/pkgs/development/python-modules/asdf-astropy/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asdf_astropy" ]; - meta = with lib; { + meta = { description = "Extension library for ASDF to provide support for Astropy"; homepage = "https://github.com/astropy/asdf-astropy"; changelog = "https://github.com/astropy/asdf-astropy/blob/${src.tag}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asdf-coordinates-schemas/default.nix b/pkgs/development/python-modules/asdf-coordinates-schemas/default.nix index 0a7505db1801..62bfa08def94 100644 --- a/pkgs/development/python-modules/asdf-coordinates-schemas/default.nix +++ b/pkgs/development/python-modules/asdf-coordinates-schemas/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asdf_coordinates_schemas" ]; - meta = with lib; { + meta = { description = "ASDF schemas for coordinates"; homepage = "https://github.com/asdf-format/asdf-coordinates-schemas"; changelog = "https://github.com/asdf-format/asdf-coordinates-schemas/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asdf-standard/default.nix b/pkgs/development/python-modules/asdf-standard/default.nix index b456c1d6212d..891f0c64ee71 100644 --- a/pkgs/development/python-modules/asdf-standard/default.nix +++ b/pkgs/development/python-modules/asdf-standard/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asdf_standard" ]; - meta = with lib; { + meta = { description = "Standards document describing ASDF"; homepage = "https://github.com/asdf-format/asdf-standard"; changelog = "https://github.com/asdf-format/asdf-standard/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asdf-transform-schemas/default.nix b/pkgs/development/python-modules/asdf-transform-schemas/default.nix index 964d87f7c66e..1b6b1fbacdb1 100644 --- a/pkgs/development/python-modules/asdf-transform-schemas/default.nix +++ b/pkgs/development/python-modules/asdf-transform-schemas/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asdf_transform_schemas" ]; - meta = with lib; { + meta = { description = "ASDF schemas for validating transform tags"; homepage = "https://github.com/asdf-format/asdf-transform-schemas"; changelog = "https://github.com/asdf-format/asdf-transform-schemas/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asdf-wcs-schemas/default.nix b/pkgs/development/python-modules/asdf-wcs-schemas/default.nix index 30e8f9b0b15b..3606e9943eee 100644 --- a/pkgs/development/python-modules/asdf-wcs-schemas/default.nix +++ b/pkgs/development/python-modules/asdf-wcs-schemas/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asdf_wcs_schemas" ]; - meta = with lib; { + meta = { description = "World Coordinate System (WCS) ASDF schemas"; homepage = "https://github.com/asdf-format/asdf-wcs-schemas"; changelog = "https://github.com/asdf-format/asdf-wcs-schemas/blob/${src.tag}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asdf/default.nix b/pkgs/development/python-modules/asdf/default.nix index d0dc783b7820..7756e810d7ec 100644 --- a/pkgs/development/python-modules/asdf/default.nix +++ b/pkgs/development/python-modules/asdf/default.nix @@ -71,10 +71,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asdf" ]; - meta = with lib; { + meta = { description = "Python tools to handle ASDF files"; homepage = "https://github.com/asdf-format/asdf"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/asf-search/default.nix b/pkgs/development/python-modules/asf-search/default.nix index 544ba040f042..a71cf7471754 100644 --- a/pkgs/development/python-modules/asf-search/default.nix +++ b/pkgs/development/python-modules/asf-search/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asf_search" ]; - meta = with lib; { + meta = { description = "Python wrapper for the ASF SearchAPI"; homepage = "https://github.com/asfadmin/Discovery-asf_search"; changelog = "https://github.com/asfadmin/Discovery-asf_search/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ bzizou ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bzizou ]; }; } diff --git a/pkgs/development/python-modules/asgi-csrf/default.nix b/pkgs/development/python-modules/asgi-csrf/default.nix index 58ce43e11407..f3ec2670d6f8 100644 --- a/pkgs/development/python-modules/asgi-csrf/default.nix +++ b/pkgs/development/python-modules/asgi-csrf/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asgi_csrf" ]; - meta = with lib; { + meta = { description = "ASGI middleware for protecting against CSRF attacks"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/simonw/asgi-csrf"; - maintainers = [ maintainers.ris ]; + maintainers = [ lib.maintainers.ris ]; }; } diff --git a/pkgs/development/python-modules/asgi-lifespan/default.nix b/pkgs/development/python-modules/asgi-lifespan/default.nix index 6787f4a91b20..0039ae04294e 100644 --- a/pkgs/development/python-modules/asgi-lifespan/default.nix +++ b/pkgs/development/python-modules/asgi-lifespan/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asgi_lifespan" ]; - meta = with lib; { + meta = { description = "Programmatic startup/shutdown of ASGI apps"; homepage = "https://github.com/florimondmanca/asgi-lifespan"; changelog = "https://github.com/florimondmanca/asgi-lifespan/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asgi-logger/default.nix b/pkgs/development/python-modules/asgi-logger/default.nix index 24068df24f2e..35360516b061 100644 --- a/pkgs/development/python-modules/asgi-logger/default.nix +++ b/pkgs/development/python-modules/asgi-logger/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "asgi_logger" ]; - meta = with lib; { + meta = { description = "Access logger for ASGI servers"; homepage = "https://github.com/Kludex/asgi-logger"; - license = licenses.mit; - teams = [ teams.wdz ]; + license = lib.licenses.mit; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/asgineer/default.nix b/pkgs/development/python-modules/asgineer/default.nix index 6d95f8d71a54..30f1b77fbbeb 100644 --- a/pkgs/development/python-modules/asgineer/default.nix +++ b/pkgs/development/python-modules/asgineer/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asgineer" ]; - meta = with lib; { + meta = { description = "Really thin ASGI web framework"; homepage = "https://asgineer.readthedocs.io"; changelog = "https://github.com/almarklein/asgineer/releases/tag/v${src.tag}"; - license = licenses.bsd2; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/asgiref/default.nix b/pkgs/development/python-modules/asgiref/default.nix index e603d8b8e84c..31bb50a14569 100644 --- a/pkgs/development/python-modules/asgiref/default.nix +++ b/pkgs/development/python-modules/asgiref/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asgiref" ]; - meta = with lib; { + meta = { changelog = "https://github.com/django/asgiref/blob/${src.rev}/CHANGELOG.txt"; description = "Reference ASGI adapters and channel layers"; homepage = "https://github.com/django/asgiref"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/asmog/default.nix b/pkgs/development/python-modules/asmog/default.nix index 39e77a2a15ba..eb2ec320e189 100644 --- a/pkgs/development/python-modules/asmog/default.nix +++ b/pkgs/development/python-modules/asmog/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asmog" ]; - meta = with lib; { + meta = { description = "Python module for Ampio Smog Sensors"; homepage = "https://github.com/kstaniek/python-ampio-smog-api"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asn1/default.nix b/pkgs/development/python-modules/asn1/default.nix index 3e51d566e8b3..ac88709e131d 100644 --- a/pkgs/development/python-modules/asn1/default.nix +++ b/pkgs/development/python-modules/asn1/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asn1" ]; - meta = with lib; { + meta = { description = "Python ASN.1 encoder and decoder"; homepage = "https://github.com/andrivet/python-asn1"; changelog = "https://github.com/andrivet/python-asn1/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asn1ate/default.nix b/pkgs/development/python-modules/asn1ate/default.nix index e03495d5f558..31fa4a7b2743 100644 --- a/pkgs/development/python-modules/asn1ate/default.nix +++ b/pkgs/development/python-modules/asn1ate/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ pyparsing ]; - meta = with lib; { + meta = { description = "Python library for translating ASN.1 into other forms"; mainProgram = "asn1ate"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/aspell-python/default.nix b/pkgs/development/python-modules/aspell-python/default.nix index 6a814931a6af..7bf0bd859bb6 100644 --- a/pkgs/development/python-modules/aspell-python/default.nix +++ b/pkgs/development/python-modules/aspell-python/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aspell" ]; - meta = with lib; { + meta = { description = "Python wrapper for aspell (C extension and Python version)"; homepage = "https://github.com/WojciechMula/aspell-python"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aspy-refactor-imports/default.nix b/pkgs/development/python-modules/aspy-refactor-imports/default.nix index dbc97cca6efb..962952e3e8fa 100644 --- a/pkgs/development/python-modules/aspy-refactor-imports/default.nix +++ b/pkgs/development/python-modules/aspy-refactor-imports/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # fails on darwin due to case-insensitive file system disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ "test_application_directory_case" ]; - meta = with lib; { + meta = { description = "Utilities for refactoring imports in python-like syntax"; homepage = "https://github.com/asottile/aspy.refactor_imports"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/aspy-yaml/default.nix b/pkgs/development/python-modules/aspy-yaml/default.nix index 5387b50c108d..2a17a3bd1e45 100644 --- a/pkgs/development/python-modules/aspy-yaml/default.nix +++ b/pkgs/development/python-modules/aspy-yaml/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { # Tests not included in PyPI tarball doCheck = false; - meta = with lib; { + meta = { description = "Few extensions to pyyaml"; homepage = "https://github.com/asottile/aspy.yaml"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/assay/default.nix b/pkgs/development/python-modules/assay/default.nix index abd756b2acfb..468e3254a451 100644 --- a/pkgs/development/python-modules/assay/default.nix +++ b/pkgs/development/python-modules/assay/default.nix @@ -19,10 +19,10 @@ buildPythonPackage { pythonImportsCheck = [ "assay" ]; - meta = with lib; { + meta = { homepage = "https://github.com/brandon-rhodes/assay"; description = "Attempt to write a Python testing framework I can actually stand"; - license = licenses.mit; - maintainers = with maintainers; [ zane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zane ]; }; } diff --git a/pkgs/development/python-modules/assertpy/default.nix b/pkgs/development/python-modules/assertpy/default.nix index a8e46e2ace44..186210157cad 100644 --- a/pkgs/development/python-modules/assertpy/default.nix +++ b/pkgs/development/python-modules/assertpy/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "assertpy" ]; - meta = with lib; { + meta = { description = "Simple assertion library for unit testing with a fluent API"; homepage = "https://github.com/assertpy/assertpy"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asterisk-mbox/default.nix b/pkgs/development/python-modules/asterisk-mbox/default.nix index 7b6af81ba033..a198e68d2118 100644 --- a/pkgs/development/python-modules/asterisk-mbox/default.nix +++ b/pkgs/development/python-modules/asterisk-mbox/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asterisk_mbox" ]; - meta = with lib; { + meta = { description = "Client side of a client/server to interact with Asterisk voicemail mailboxes"; homepage = "https://github.com/PhracturedBlue/asterisk_mbox"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/asteval/default.nix b/pkgs/development/python-modules/asteval/default.nix index 20949f3e581d..055d73f1824b 100644 --- a/pkgs/development/python-modules/asteval/default.nix +++ b/pkgs/development/python-modules/asteval/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { "test_set_default_nodehandler" ]; - meta = with lib; { + meta = { description = "AST evaluator of Python expression using ast module"; homepage = "https://github.com/lmfit/asteval"; changelog = "https://github.com/lmfit/asteval/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/astor/default.nix b/pkgs/development/python-modules/astor/default.nix index c13e6d4cfab0..6daa3d471320 100644 --- a/pkgs/development/python-modules/astor/default.nix +++ b/pkgs/development/python-modules/astor/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { "test_huge_int" ]; - meta = with lib; { + meta = { description = "Library for reading, writing and rewriting python AST"; homepage = "https://github.com/berkerpeksag/astor"; - license = licenses.bsd3; - maintainers = with maintainers; [ nixy ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nixy ]; }; } diff --git a/pkgs/development/python-modules/astral/default.nix b/pkgs/development/python-modules/astral/default.nix index ed996b727c26..bf77854dc5fa 100644 --- a/pkgs/development/python-modules/astral/default.nix +++ b/pkgs/development/python-modules/astral/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "astral" ]; - meta = with lib; { + meta = { description = "Calculations for the position of the sun and the moon"; homepage = "https://github.com/sffjunkie/astral/"; changelog = "https://github.com/sffjunkie/astral/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix index 645fa378aea7..6507eeba8c62 100644 --- a/pkgs/development/python-modules/astroid/default.nix +++ b/pkgs/development/python-modules/astroid/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { inherit pylint; }; - meta = with lib; { + meta = { changelog = "https://github.com/PyCQA/astroid/blob/v${version}/ChangeLog"; description = "Abstract syntax tree for Python with inference support"; homepage = "https://github.com/PyCQA/astroid"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/astropy-healpix/default.nix b/pkgs/development/python-modules/astropy-healpix/default.nix index d6fed0f21447..ef7ce9b8b9f8 100644 --- a/pkgs/development/python-modules/astropy-healpix/default.nix +++ b/pkgs/development/python-modules/astropy-healpix/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { cd build/lib* ''; - meta = with lib; { + meta = { description = "BSD-licensed HEALPix for Astropy"; homepage = "https://github.com/astropy/astropy-healpix"; - license = licenses.bsd3; - maintainers = [ maintainers.smaret ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.smaret ]; }; } diff --git a/pkgs/development/python-modules/astropy-iers-data/default.nix b/pkgs/development/python-modules/astropy-iers-data/default.nix index e7fd9b9ec84f..c737ec1190f2 100644 --- a/pkgs/development/python-modules/astropy-iers-data/default.nix +++ b/pkgs/development/python-modules/astropy-iers-data/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "IERS data maintained by @astrofrog and astropy.utils.iers maintainers"; homepage = "https://github.com/astropy/astropy-iers-data"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/asttokens/default.nix b/pkgs/development/python-modules/asttokens/default.nix index b8ec38924bbc..e260e2efdd59 100644 --- a/pkgs/development/python-modules/asttokens/default.nix +++ b/pkgs/development/python-modules/asttokens/default.nix @@ -39,9 +39,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "asttokens" ]; - meta = with lib; { + meta = { description = "Annotate Python AST trees with source text and token information"; homepage = "https://github.com/gristlabs/asttokens"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/astunparse/default.nix b/pkgs/development/python-modules/astunparse/default.nix index 6311e3739344..fdff2e83ebf9 100644 --- a/pkgs/development/python-modules/astunparse/default.nix +++ b/pkgs/development/python-modules/astunparse/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { # tests not included with pypi release doCheck = false; - meta = with lib; { + meta = { description = "This is a factored out version of unparse found in the Python source distribution"; homepage = "https://github.com/simonpercivall/astunparse"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/asyauth/default.nix b/pkgs/development/python-modules/asyauth/default.nix index 4ae2a5b9ea4d..6df5b6ee134b 100644 --- a/pkgs/development/python-modules/asyauth/default.nix +++ b/pkgs/development/python-modules/asyauth/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyauth" ]; - meta = with lib; { + meta = { description = "Unified authentication library"; homepage = "https://github.com/skelsec/asyauth"; changelog = "https://github.com/skelsec/asyauth/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/async-dns/default.nix b/pkgs/development/python-modules/async-dns/default.nix index 1df1b5b39976..a6a389931953 100644 --- a/pkgs/development/python-modules/async-dns/default.nix +++ b/pkgs/development/python-modules/async-dns/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_dns" ]; - meta = with lib; { + meta = { description = "Python DNS library"; homepage = "https://github.com/gera2ld/async_dns"; changelog = "https://github.com/gera2ld/async_dns/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/async-generator/default.nix b/pkgs/development/python-modules/async-generator/default.nix index 81efcc00d9ce..441b43e0f75d 100644 --- a/pkgs/development/python-modules/async-generator/default.nix +++ b/pkgs/development/python-modules/async-generator/default.nix @@ -26,13 +26,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_generator" ]; - meta = with lib; { + meta = { description = "Async generators and context managers for Python 3.5+"; homepage = "https://github.com/python-trio/async_generator"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/async-interrupt/default.nix b/pkgs/development/python-modules/async-interrupt/default.nix index 5bf276c12eb6..0085df42fbb5 100644 --- a/pkgs/development/python-modules/async-interrupt/default.nix +++ b/pkgs/development/python-modules/async-interrupt/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_interrupt" ]; - meta = with lib; { + meta = { description = "Context manager to raise an exception when a future is done"; homepage = "https://github.com/bdraco/async_interrupt"; changelog = "https://github.com/bdraco/async_interrupt/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/async-lru/default.nix b/pkgs/development/python-modules/async-lru/default.nix index e86fa73e88e4..2903446788fc 100644 --- a/pkgs/development/python-modules/async-lru/default.nix +++ b/pkgs/development/python-modules/async-lru/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_lru" ]; - meta = with lib; { + meta = { changelog = "https://github.com/aio-libs/async-lru/releases/tag/${src.tag}"; description = "Simple lru cache for asyncio"; homepage = "https://github.com/wikibusiness/async_lru"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/async-modbus/default.nix b/pkgs/development/python-modules/async-modbus/default.nix index ce18fc2268f2..c01af423152a 100644 --- a/pkgs/development/python-modules/async-modbus/default.nix +++ b/pkgs/development/python-modules/async-modbus/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_modbus" ]; - meta = with lib; { + meta = { description = "Library for Modbus communication"; homepage = "https://github.com/tiagocoutinho/async_modbus"; changelog = "https://github.com/tiagocoutinho/async_modbus/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/async-stagger/default.nix b/pkgs/development/python-modules/async-stagger/default.nix index ab3ec1da5e97..66911a84e4f8 100644 --- a/pkgs/development/python-modules/async-stagger/default.nix +++ b/pkgs/development/python-modules/async-stagger/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_stagger" ]; - meta = with lib; { + meta = { description = "Happy Eyeballs connection algorithm and underlying scheduling logic in asyncio"; homepage = "https://github.com/twisteroidambassador/async_stagger"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/async-tkinter-loop/default.nix b/pkgs/development/python-modules/async-tkinter-loop/default.nix index 91f2793ad985..c7c913f5c0e4 100644 --- a/pkgs/development/python-modules/async-tkinter-loop/default.nix +++ b/pkgs/development/python-modules/async-tkinter-loop/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_tkinter_loop" ]; - meta = with lib; { + meta = { description = "Implementation of asynchronous mainloop for tkinter, the use of which allows using async handler functions"; homepage = "https://github.com/insolor/async-tkinter-loop"; changelog = "https://github.com/insolor/async-tkinter-loop/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ AngryAnt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AngryAnt ]; }; } diff --git a/pkgs/development/python-modules/asyncarve/default.nix b/pkgs/development/python-modules/asyncarve/default.nix index dc760169c215..124aa3ba440f 100644 --- a/pkgs/development/python-modules/asyncarve/default.nix +++ b/pkgs/development/python-modules/asyncarve/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncarve" ]; - meta = with lib; { + meta = { description = "Simple Arve library"; homepage = "https://github.com/arvetech/asyncarve"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ pyrox0 ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/asyncclick/default.nix b/pkgs/development/python-modules/asyncclick/default.nix index a6064cada31e..0f19d82aa328 100644 --- a/pkgs/development/python-modules/asyncclick/default.nix +++ b/pkgs/development/python-modules/asyncclick/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncclick" ]; - meta = with lib; { + meta = { description = "Python composable command line utility"; homepage = "https://github.com/python-trio/asyncclick"; changelog = "https://github.com/python-trio/asyncclick/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asynccmd/default.nix b/pkgs/development/python-modules/asynccmd/default.nix index 1c19098cd4dd..fc4c0846b41d 100644 --- a/pkgs/development/python-modules/asynccmd/default.nix +++ b/pkgs/development/python-modules/asynccmd/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asynccmd" ]; - meta = with lib; { + meta = { description = "Asyncio implementation of Cmd Python library"; homepage = "https://github.com/valentinmk/asynccmd"; changelog = "https://github.com/valentinmk/asynccmd/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asyncinotify/default.nix b/pkgs/development/python-modules/asyncinotify/default.nix index 3c67324e45fc..f12ca523f336 100644 --- a/pkgs/development/python-modules/asyncinotify/default.nix +++ b/pkgs/development/python-modules/asyncinotify/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { enabledTestPaths = [ "test.py" ]; - meta = with lib; { + meta = { badPlatforms = [ # Unsupported and crashing on import in dlsym with symbol not found "aarch64-darwin" @@ -35,7 +35,7 @@ buildPythonPackage rec { description = "Module for inotify"; homepage = "https://github.com/absperf/asyncinotify/"; changelog = "https://github.com/absperf/asyncinotify/releases/tag/${src.tag}"; - license = licenses.mpl20; - maintainers = with maintainers; [ cynerd ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/development/python-modules/asyncio-dgram/default.nix b/pkgs/development/python-modules/asyncio-dgram/default.nix index f31f0f7fc6d5..ac0e0f39fb4c 100644 --- a/pkgs/development/python-modules/asyncio-dgram/default.nix +++ b/pkgs/development/python-modules/asyncio-dgram/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncio_dgram" ]; - meta = with lib; { + meta = { description = "Python support for higher level Datagram"; homepage = "https://github.com/jsbronder/asyncio-dgram"; changelog = "https://github.com/jsbronder/asyncio-dgram/blob/v${version}/ChangeLog"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asyncio-rlock/default.nix b/pkgs/development/python-modules/asyncio-rlock/default.nix index 89ee558136ea..84643380f9f1 100644 --- a/pkgs/development/python-modules/asyncio-rlock/default.nix +++ b/pkgs/development/python-modules/asyncio-rlock/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncio_rlock" ]; - meta = with lib; { + meta = { description = "Rlock like in threading module but for asyncio"; homepage = "https://gitlab.com/heckad/asyncio_rlock"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/asyncio-throttle/default.nix b/pkgs/development/python-modules/asyncio-throttle/default.nix index af543d5df11c..13d12d5bc9ab 100644 --- a/pkgs/development/python-modules/asyncio-throttle/default.nix +++ b/pkgs/development/python-modules/asyncio-throttle/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncio_throttle" ]; - meta = with lib; { + meta = { description = "Simple, easy-to-use throttler for asyncio"; homepage = "https://github.com/hallazzang/asyncio-throttle"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/asyncmy/default.nix b/pkgs/development/python-modules/asyncmy/default.nix index 5442c0c34d7d..756fda8c3d67 100644 --- a/pkgs/development/python-modules/asyncmy/default.nix +++ b/pkgs/development/python-modules/asyncmy/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncmy" ]; - meta = with lib; { + meta = { description = "Python module to interact with MySQL/mariaDB"; homepage = "https://github.com/long2ice/asyncmy"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asyncpg/default.nix b/pkgs/development/python-modules/asyncpg/default.nix index 9800efe325b9..8001182f5a3c 100644 --- a/pkgs/development/python-modules/asyncpg/default.nix +++ b/pkgs/development/python-modules/asyncpg/default.nix @@ -59,7 +59,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncpg" ]; - meta = with lib; { + meta = { description = "Asyncio PosgtreSQL driver"; homepage = "https://github.com/MagicStack/asyncpg"; changelog = "https://github.com/MagicStack/asyncpg/releases/tag/v${version}"; @@ -69,7 +69,7 @@ buildPythonPackage rec { implementation of PostgreSQL server binary protocol for use with Python's asyncio framework. ''; - license = licenses.asl20; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/asyncsleepiq/default.nix b/pkgs/development/python-modules/asyncsleepiq/default.nix index ad40e62ec14f..335331ec3c99 100644 --- a/pkgs/development/python-modules/asyncsleepiq/default.nix +++ b/pkgs/development/python-modules/asyncsleepiq/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncsleepiq" ]; - meta = with lib; { + meta = { description = "Async interface to SleepIQ API"; homepage = "https://github.com/kbickar/asyncsleepiq"; changelog = "https://github.com/kbickar/asyncsleepiq/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/asyncssh/default.nix b/pkgs/development/python-modules/asyncssh/default.nix index b2bd21365dfe..191c04b114d0 100644 --- a/pkgs/development/python-modules/asyncssh/default.nix +++ b/pkgs/development/python-modules/asyncssh/default.nix @@ -87,11 +87,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncssh" ]; - meta = with lib; { + meta = { description = "Asynchronous SSHv2 Python client and server library"; homepage = "https://asyncssh.readthedocs.io/"; changelog = "https://github.com/ronf/asyncssh/blob/v${version}/docs/changes.rst"; - license = with licenses; [ + license = with lib.licenses; [ epl20 # or gpl2Plus ]; diff --git a/pkgs/development/python-modules/asyncstdlib/default.nix b/pkgs/development/python-modules/asyncstdlib/default.nix index 27646b51e606..c26632f0a17c 100644 --- a/pkgs/development/python-modules/asyncstdlib/default.nix +++ b/pkgs/development/python-modules/asyncstdlib/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncstdlib" ]; - meta = with lib; { + meta = { description = "Python library that extends the Python asyncio standard library"; homepage = "https://asyncstdlib.readthedocs.io/"; changelog = "https://github.com/maxfischer2781/asyncstdlib/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asynctest/default.nix b/pkgs/development/python-modules/asynctest/default.nix index d8a97aaf302a..ffd3c0e7bdbf 100644 --- a/pkgs/development/python-modules/asynctest/default.nix +++ b/pkgs/development/python-modules/asynctest/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { ${python.interpreter} -m unittest test ''; - meta = with lib; { + meta = { description = "Enhance the standard unittest package with features for testing asyncio libraries"; homepage = "https://github.com/Martiusweb/asynctest"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/asyncua/default.nix b/pkgs/development/python-modules/asyncua/default.nix index a02509e9130b..bf1df7c357a3 100644 --- a/pkgs/development/python-modules/asyncua/default.nix +++ b/pkgs/development/python-modules/asyncua/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { "test_encrypted_private_key_handling_failure" ]; - meta = with lib; { + meta = { description = "OPC UA / IEC 62541 Client and Server for Python"; homepage = "https://github.com/FreeOpcUa/opcua-asyncio"; changelog = "https://github.com/FreeOpcUa/opcua-asyncio/releases/tag/${src.tag}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ harvidsen ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ harvidsen ]; }; } diff --git a/pkgs/development/python-modules/asyncwhois/default.nix b/pkgs/development/python-modules/asyncwhois/default.nix index c26d3c2f5a78..1fbc3da0d6d4 100644 --- a/pkgs/development/python-modules/asyncwhois/default.nix +++ b/pkgs/development/python-modules/asyncwhois/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncwhois" ]; - meta = with lib; { + meta = { description = "Python module for retrieving WHOIS information"; homepage = "https://github.com/pogzyb/asyncwhois"; changelog = "https://github.com/pogzyb/asyncwhois/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/asysocks/default.nix b/pkgs/development/python-modules/asysocks/default.nix index 00f1adbfe759..14d034063b15 100644 --- a/pkgs/development/python-modules/asysocks/default.nix +++ b/pkgs/development/python-modules/asysocks/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "asysocks" ]; - meta = with lib; { + meta = { description = "Python Socks4/5 client and server library"; homepage = "https://github.com/skelsec/asysocks"; changelog = "https://github.com/skelsec/asysocks/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/atc-ble/default.nix b/pkgs/development/python-modules/atc-ble/default.nix index 8b8775427305..58d2efec6cd4 100644 --- a/pkgs/development/python-modules/atc-ble/default.nix +++ b/pkgs/development/python-modules/atc-ble/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "atc_ble" ]; - meta = with lib; { + meta = { description = "Library for ATC devices with custom firmware"; homepage = "https://github.com/Bluetooth-Devices/atc-ble"; changelog = "https://github.com/Bluetooth-Devices/atc-ble/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/atenpdu/default.nix b/pkgs/development/python-modules/atenpdu/default.nix index 0ab5b86e94c9..580163fa440c 100644 --- a/pkgs/development/python-modules/atenpdu/default.nix +++ b/pkgs/development/python-modules/atenpdu/default.nix @@ -36,8 +36,8 @@ buildPythonPackage rec { description = "Python interface to control ATEN PE PDUs"; homepage = "https://github.com/mtdcr/pductl"; changelog = "https://github.com/mtdcr/pductl/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pductl"; broken = versionAtLeast pysnmp.version "7"; }; diff --git a/pkgs/development/python-modules/atlassian-python-api/default.nix b/pkgs/development/python-modules/atlassian-python-api/default.nix index 05396c3dc2ec..fdfcc6a6350e 100644 --- a/pkgs/development/python-modules/atlassian-python-api/default.nix +++ b/pkgs/development/python-modules/atlassian-python-api/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "atlassian" ]; - meta = with lib; { + meta = { description = "Python Atlassian REST API Wrapper"; homepage = "https://github.com/atlassian-api/atlassian-python-api"; changelog = "https://github.com/atlassian-api/atlassian-python-api/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/atom/default.nix b/pkgs/development/python-modules/atom/default.nix index 8e943f23357f..a07c00361ea6 100644 --- a/pkgs/development/python-modules/atom/default.nix +++ b/pkgs/development/python-modules/atom/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "atom.api" ]; - meta = with lib; { + meta = { description = "Memory efficient Python objects"; homepage = "https://github.com/nucleic/atom"; changelog = "https://github.com/nucleic/atom/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/atomiclong/default.nix b/pkgs/development/python-modules/atomiclong/default.nix index a5180221fc76..5cbdce2403c0 100644 --- a/pkgs/development/python-modules/atomiclong/default.nix +++ b/pkgs/development/python-modules/atomiclong/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "atomiclong" ]; - meta = with lib; { + meta = { description = "Long data type with atomic operations using CFFI"; homepage = "https://github.com/dreid/atomiclong"; - license = licenses.mit; - maintainers = with maintainers; [ robbinch ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ robbinch ]; }; } diff --git a/pkgs/development/python-modules/atomicwrites-homeassistant/default.nix b/pkgs/development/python-modules/atomicwrites-homeassistant/default.nix index aba94f1bfddc..7c7b1c87a056 100644 --- a/pkgs/development/python-modules/atomicwrites-homeassistant/default.nix +++ b/pkgs/development/python-modules/atomicwrites-homeassistant/default.nix @@ -23,10 +23,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Atomic file writes"; homepage = "https://pypi.org/project/atomicwrites-homeassistant/"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/atomicwrites/default.nix b/pkgs/development/python-modules/atomicwrites/default.nix index 1779a14148aa..2aabd0107f53 100644 --- a/pkgs/development/python-modules/atomicwrites/default.nix +++ b/pkgs/development/python-modules/atomicwrites/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { doCheck = false; nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { description = "Atomic file writes on POSIX"; homepage = "https://pypi.python.org/pypi/atomicwrites"; - maintainers = with maintainers; [ matthiasbeyer ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/atomman/default.nix b/pkgs/development/python-modules/atomman/default.nix index 62bcb17be2cd..76c9fc5e760f 100644 --- a/pkgs/development/python-modules/atomman/default.nix +++ b/pkgs/development/python-modules/atomman/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "atomman" ]; - meta = with lib; { + meta = { changelog = "https://github.com/usnistgov/atomman/blob/${src.rev}/UPDATES.rst"; description = "Atomistic Manipulation Toolkit"; homepage = "https://github.com/usnistgov/atomman/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/atpublic/default.nix b/pkgs/development/python-modules/atpublic/default.nix index 9789b8c47122..eab7dbf15cc5 100644 --- a/pkgs/development/python-modules/atpublic/default.nix +++ b/pkgs/development/python-modules/atpublic/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "public" ]; - meta = with lib; { + meta = { changelog = "https://gitlab.com/warsaw/public/-/blob/${version}/docs/NEWS.rst"; description = "Python decorator and function which populates a module's __all__ and globals"; homepage = "https://public.readthedocs.io/"; @@ -39,7 +39,7 @@ buildPythonPackage rec { This is a very simple decorator and function which populates a module's __all__ and optionally the module globals. ''; - license = licenses.asl20; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/atsim-potentials/default.nix b/pkgs/development/python-modules/atsim-potentials/default.nix index 592bf02ba91b..65f966271098 100644 --- a/pkgs/development/python-modules/atsim-potentials/default.nix +++ b/pkgs/development/python-modules/atsim-potentials/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "atsim.potentials" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mjdrushton/atsim-potentials"; description = "Provides tools for working with pair and embedded atom method potential models including tabulation routines for DL_POLY and LAMMPS"; mainProgram = "potable"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/attacut/default.nix b/pkgs/development/python-modules/attacut/default.nix index 2d00cfbb046f..3fe3fbfce7b3 100644 --- a/pkgs/development/python-modules/attacut/default.nix +++ b/pkgs/development/python-modules/attacut/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "attacut" ]; - meta = with lib; { + meta = { description = "Fast and Accurate Neural Thai Word Segmenter"; homepage = "https://github.com/PyThaiNLP/attacut"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; mainProgram = "attacut-cli"; }; } diff --git a/pkgs/development/python-modules/attrdict/default.nix b/pkgs/development/python-modules/attrdict/default.nix index b20f0065dfe5..2c7947a7b66b 100644 --- a/pkgs/development/python-modules/attrdict/default.nix +++ b/pkgs/development/python-modules/attrdict/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "attrdict" ]; - meta = with lib; { + meta = { description = "Dict with attribute-style access"; homepage = "https://github.com/bcj/AttrDict"; changelog = "https://github.com/bcj/AttrDict/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/attrs/default.nix b/pkgs/development/python-modules/attrs/default.nix index 540ba092eff9..fa02faf81a58 100644 --- a/pkgs/development/python-modules/attrs/default.nix +++ b/pkgs/development/python-modules/attrs/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pytest = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = "Python attributes without boilerplate"; homepage = "https://github.com/python-attrs/attrs"; changelog = "https://github.com/python-attrs/attrs/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aubio/default.nix b/pkgs/development/python-modules/aubio/default.nix index babb22ee434f..13fac161b8bf 100644 --- a/pkgs/development/python-modules/aubio/default.nix +++ b/pkgs/development/python-modules/aubio/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "test_assign_cvec_phas_slice" ]; - meta = with lib; { + meta = { description = "Library for audio and music analysis"; homepage = "https://aubio.org"; changelog = "https://github.com/aubio/aubio/blob/${version}/ChangeLog"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/audible/default.nix b/pkgs/development/python-modules/audible/default.nix index 617f67aeab4b..d7fcc4646f15 100644 --- a/pkgs/development/python-modules/audible/default.nix +++ b/pkgs/development/python-modules/audible/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "audible" ]; - meta = with lib; { + meta = { description = "A(Sync) Interface for internal Audible API written in pure Python"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; homepage = "https://github.com/mkb79/Audible"; - maintainers = with maintainers; [ jvanbruegge ]; + maintainers = with lib.maintainers; [ jvanbruegge ]; }; } diff --git a/pkgs/development/python-modules/audio-metadata/default.nix b/pkgs/development/python-modules/audio-metadata/default.nix index 6e589f4ff4f4..54f6f172ae2b 100644 --- a/pkgs/development/python-modules/audio-metadata/default.nix +++ b/pkgs/development/python-modules/audio-metadata/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "audio_metadata" ]; - meta = with lib; { + meta = { description = "Library for handling the metadata from audio files"; homepage = "https://github.com/thebigmunch/audio-metadata"; changelog = "https://github.com/thebigmunch/audio-metadata/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/audiotools/default.nix b/pkgs/development/python-modules/audiotools/default.nix index dcde1697e26b..940c8815ed5e 100644 --- a/pkgs/development/python-modules/audiotools/default.nix +++ b/pkgs/development/python-modules/audiotools/default.nix @@ -54,10 +54,10 @@ buildPythonPackage { hash = "sha256-iRakeV4Sg4oU0JtiA0O3jnmLJt99d89Hg6v9onUaSnw="; }; - meta = with lib; { + meta = { description = "Utilities and Python modules for handling audio"; homepage = "https://audiotools.sourceforge.net/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/auditok/default.nix b/pkgs/development/python-modules/auditok/default.nix index d6735c9c7909..24d943e9f735 100644 --- a/pkgs/development/python-modules/auditok/default.nix +++ b/pkgs/development/python-modules/auditok/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { # ffsubsync, which is pinned at 0.1.5. passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Audio Activity Detection tool that can process online data as well as audio files"; mainProgram = "auditok"; homepage = "https://github.com/amsehili/auditok/"; changelog = "https://github.com/amsehili/auditok/blob/v${version}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/auditwheel/default.nix b/pkgs/development/python-modules/auditwheel/default.nix index c2503316d3bb..e722aa26f240 100644 --- a/pkgs/development/python-modules/auditwheel/default.nix +++ b/pkgs/development/python-modules/auditwheel/default.nix @@ -59,17 +59,17 @@ buildPythonPackage rec { ]) ]; - meta = with lib; { + meta = { changelog = "https://github.com/pypa/auditwheel/blob/${version}/CHANGELOG.md"; description = "Auditing and relabeling cross-distribution Linux wheels"; homepage = "https://github.com/pypa/auditwheel"; - license = with licenses; [ + license = with lib.licenses; [ mit # auditwheel and nibabel bsd2 # from https://github.com/matthew-brett/delocate bsd3 # from https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py ]; mainProgram = "auditwheel"; - maintainers = with maintainers; [ davhau ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ davhau ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/augeas/default.nix b/pkgs/development/python-modules/augeas/default.nix index 6154b82465b9..fe208bb26a78 100644 --- a/pkgs/development/python-modules/augeas/default.nix +++ b/pkgs/development/python-modules/augeas/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "augeas" ]; - meta = with lib; { + meta = { changelog = "https://github.com/hercules-team/python-augeas/releases/tag/v${version}"; description = "Pure python bindings for augeas"; homepage = "https://github.com/hercules-team/python-augeas"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/augmax/default.nix b/pkgs/development/python-modules/augmax/default.nix index e48e4826e2a9..2ddb285b7061 100644 --- a/pkgs/development/python-modules/augmax/default.nix +++ b/pkgs/development/python-modules/augmax/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "augmax" ]; - meta = with lib; { + meta = { description = "Efficiently Composable Data Augmentation on the GPU with Jax"; homepage = "https://github.com/khdlr/augmax"; changelog = "https://github.com/khdlr/augmax/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/auroranoaa/default.nix b/pkgs/development/python-modules/auroranoaa/default.nix index 07b162cd32d8..16a6356195d0 100644 --- a/pkgs/development/python-modules/auroranoaa/default.nix +++ b/pkgs/development/python-modules/auroranoaa/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "auroranoaa" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Aurora API"; homepage = "https://github.com/djtimca/aurora-api"; changelog = "https://github.com/djtimca/aurora-api/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aurorapy/default.nix b/pkgs/development/python-modules/aurorapy/default.nix index 25d26affe6ce..30a5be99e417 100644 --- a/pkgs/development/python-modules/aurorapy/default.nix +++ b/pkgs/development/python-modules/aurorapy/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aurorapy" ]; - meta = with lib; { + meta = { description = "Implementation of the communication protocol for Power-One Aurora inverters"; homepage = "https://gitlab.com/energievalsabbia/aurorapy"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/autarco/default.nix b/pkgs/development/python-modules/autarco/default.nix index bd05131c0b99..728524308c60 100644 --- a/pkgs/development/python-modules/autarco/default.nix +++ b/pkgs/development/python-modules/autarco/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "autarco" ]; - meta = with lib; { + meta = { description = "Module for the Autarco Inverter"; homepage = "https://github.com/klaasnicolaas/python-autarco"; changelog = "https://github.com/klaasnicolaas/python-autarco/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/auth0-python/default.nix b/pkgs/development/python-modules/auth0-python/default.nix index 008c1ab2812a..d9ddbe7bca1f 100644 --- a/pkgs/development/python-modules/auth0-python/default.nix +++ b/pkgs/development/python-modules/auth0-python/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "auth0" ]; - meta = with lib; { + meta = { description = "Auth0 Python SDK"; homepage = "https://github.com/auth0/auth0-python"; changelog = "https://github.com/auth0/auth0-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/authcaptureproxy/default.nix b/pkgs/development/python-modules/authcaptureproxy/default.nix index a4ded3e39aac..790e2df33929 100644 --- a/pkgs/development/python-modules/authcaptureproxy/default.nix +++ b/pkgs/development/python-modules/authcaptureproxy/default.nix @@ -57,13 +57,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "authcaptureproxy" ]; - meta = with lib; { + meta = { changelog = "https://github.com/alandtse/auth_capture_proxy/releases/tag/v${version}"; description = "Proxy to capture authentication information from a webpage"; mainProgram = "auth_capture_proxy"; homepage = "https://github.com/alandtse/auth_capture_proxy"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ graham33 hexa ]; diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix index a5dae4cb897a..5ddf3def021a 100644 --- a/pkgs/development/python-modules/authheaders/default.nix +++ b/pkgs/development/python-modules/authheaders/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "test_authenticate_dmarc_psdsub" ]; - meta = with lib; { + meta = { description = "Python library for the generation of email authentication headers"; homepage = "https://github.com/ValiMail/authentication-headers"; changelog = "https://github.com/ValiMail/authentication-headers/blob${version}/CHANGES"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "dmarc-policy-find"; }; diff --git a/pkgs/development/python-modules/authlib/default.nix b/pkgs/development/python-modules/authlib/default.nix index ecd33ab50f7a..864f1b3cb2d1 100644 --- a/pkgs/development/python-modules/authlib/default.nix +++ b/pkgs/development/python-modules/authlib/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "tests/jose/test_chacha20.py" ]; - meta = with lib; { + meta = { description = "Library for building OAuth and OpenID Connect servers"; homepage = "https://github.com/lepture/authlib"; changelog = "https://github.com/lepture/authlib/blob/${src.tag}/docs/changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/authres/default.nix b/pkgs/development/python-modules/authres/default.nix index 5efeceea41bf..8f7d14a0dd42 100644 --- a/pkgs/development/python-modules/authres/default.nix +++ b/pkgs/development/python-modules/authres/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { ${python.interpreter} -m authres ''; - meta = with lib; { + meta = { description = "Email Authentication-Results Headers generation and parsing for Python/Python3"; longDescription = '' Python module that implements various internet RFC's: 5451/7001/7601 @@ -28,6 +28,6 @@ buildPythonPackage rec { Python/Python3. ''; homepage = "https://launchpad.net/authentication-results-python"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/autobahn/default.nix b/pkgs/development/python-modules/autobahn/default.nix index 403bf76705e1..e10fba4c46f1 100644 --- a/pkgs/development/python-modules/autobahn/default.nix +++ b/pkgs/development/python-modules/autobahn/default.nix @@ -123,11 +123,11 @@ buildPythonPackage rec { ui = [ pygobject3 ]; }); - meta = with lib; { + meta = { changelog = "https://github.com/crossbario/autobahn-python/blob/${src.rev}/docs/changelog.rst"; description = "WebSocket and WAMP in Python for Twisted and asyncio"; homepage = "https://crossbar.io/autobahn"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/autocommand/default.nix b/pkgs/development/python-modules/autocommand/default.nix index c5be2b7acdeb..cb57bf689447 100644 --- a/pkgs/development/python-modules/autocommand/default.nix +++ b/pkgs/development/python-modules/autocommand/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "autocommand" ]; - meta = with lib; { + meta = { description = "Autocommand turns a python function into a CLI program"; homepage = "https://github.com/Lucretiel/autocommand"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/autoflake/default.nix b/pkgs/development/python-modules/autoflake/default.nix index 135123760968..fc11acc19ac0 100644 --- a/pkgs/development/python-modules/autoflake/default.nix +++ b/pkgs/development/python-modules/autoflake/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "test_is_literal_or_name" ]; - meta = with lib; { + meta = { description = "Tool to remove unused imports and unused variables"; mainProgram = "autoflake"; homepage = "https://github.com/myint/autoflake"; - license = licenses.mit; - maintainers = with maintainers; [ yuriaisaka ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yuriaisaka ]; }; } diff --git a/pkgs/development/python-modules/autoit-ripper/default.nix b/pkgs/development/python-modules/autoit-ripper/default.nix index 47d54b20820b..0a948999e4f0 100644 --- a/pkgs/development/python-modules/autoit-ripper/default.nix +++ b/pkgs/development/python-modules/autoit-ripper/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "autoit_ripper" ]; - meta = with lib; { + meta = { description = "Python module to extract AutoIt scripts embedded in PE binaries"; mainProgram = "autoit-ripper"; homepage = "https://github.com/nazywam/AutoIt-Ripper"; changelog = "https://github.com/nazywam/AutoIt-Ripper/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/autologging/default.nix b/pkgs/development/python-modules/autologging/default.nix index f5b490389c3b..c95735bb0ced 100644 --- a/pkgs/development/python-modules/autologging/default.nix +++ b/pkgs/development/python-modules/autologging/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { extension = "zip"; }; - meta = with lib; { + meta = { homepage = "https://ninthtest.info/python-autologging/"; description = "Easier logging and tracing for Python classes"; - license = licenses.mit; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/automat/default.nix b/pkgs/development/python-modules/automat/default.nix index 878c37ee0398..393d2b5d9da0 100644 --- a/pkgs/development/python-modules/automat/default.nix +++ b/pkgs/development/python-modules/automat/default.nix @@ -40,11 +40,11 @@ let }); }; - meta = with lib; { + meta = { homepage = "https://github.com/glyph/Automat"; description = "Self-service finite-state machines for the programmer on the go"; mainProgram = "automat-visualize"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/automate-home/default.nix b/pkgs/development/python-modules/automate-home/default.nix index bfaa26afc761..a6bb1e91233e 100644 --- a/pkgs/development/python-modules/automate-home/default.nix +++ b/pkgs/development/python-modules/automate-home/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "home" ]; - meta = with lib; { + meta = { description = "Python module to automate (home) devices"; homepage = "https://github.com/majamassarini/automate-home"; changelog = "https://github.com/majamassarini/automate-home/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/autopage/default.nix b/pkgs/development/python-modules/autopage/default.nix index ee1366b25e5e..a6e2afb7d8e2 100644 --- a/pkgs/development/python-modules/autopage/default.nix +++ b/pkgs/development/python-modules/autopage/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "autopage" ]; - meta = with lib; { + meta = { description = "Library to provide automatic paging for console output"; homepage = "https://github.com/zaneb/autopage"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/autopep8/default.nix b/pkgs/development/python-modules/autopep8/default.nix index 639ca2e8873a..eecaf1272f7d 100644 --- a/pkgs/development/python-modules/autopep8/default.nix +++ b/pkgs/development/python-modules/autopep8/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { env.LC_ALL = "en_US.UTF-8"; - meta = with lib; { + meta = { changelog = "https://github.com/hhatto/autopep8/releases/tag/v${version}"; description = "Tool that automatically formats Python code to conform to the PEP 8 style guide"; homepage = "https://github.com/hhatto/autopep8"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "autopep8"; - maintainers = with maintainers; [ bjornfor ]; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/autoslot/default.nix b/pkgs/development/python-modules/autoslot/default.nix index 3b1b387d8de8..3d66c472dacd 100644 --- a/pkgs/development/python-modules/autoslot/default.nix +++ b/pkgs/development/python-modules/autoslot/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "autoslot" ]; - meta = with lib; { + meta = { description = "Automatic __slots__ for your Python classes"; homepage = "https://github.com/cjrh/autoslot"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/avea/default.nix b/pkgs/development/python-modules/avea/default.nix index 571bd438e04f..f7c98949fbea 100644 --- a/pkgs/development/python-modules/avea/default.nix +++ b/pkgs/development/python-modules/avea/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "avea" ]; - meta = with lib; { + meta = { description = "Python module for interacting with Elgato's Avea bulb"; homepage = "https://github.com/k0rventen/avea"; changelog = "https://github.com/k0rventen/avea/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/avidtools/default.nix b/pkgs/development/python-modules/avidtools/default.nix index 45a05753a10b..8e9196eece0c 100644 --- a/pkgs/development/python-modules/avidtools/default.nix +++ b/pkgs/development/python-modules/avidtools/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "avidtools" ]; - meta = with lib; { + meta = { description = "Developer tools for AVID"; homepage = "https://github.com/avidml/avidtools"; changelog = "https://github.com/avidml/avidtools/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/avion/default.nix b/pkgs/development/python-modules/avion/default.nix index d4b4a72148d9..8b8a2cfda5df 100644 --- a/pkgs/development/python-modules/avion/default.nix +++ b/pkgs/development/python-modules/avion/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { # bluepy/uuids.json is not found # pythonImportsCheck = [ "avion" ]; - meta = with lib; { + meta = { description = "Python API for controlling Avi-on Bluetooth dimmers"; homepage = "https://github.com/mjg59/python-avion"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/avro-python3/default.nix b/pkgs/development/python-modules/avro-python3/default.nix index df1e67017ab5..0555833e7772 100644 --- a/pkgs/development/python-modules/avro-python3/default.nix +++ b/pkgs/development/python-modules/avro-python3/default.nix @@ -24,15 +24,15 @@ buildPythonPackage rec { ]; doCheck = false; # No such file or directory: './run_tests.py - meta = with lib; { + meta = { description = "Serialization and RPC framework"; mainProgram = "avro"; homepage = "https://pypi.python.org/pypi/avro-python3/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ - maintainers.shlevy - maintainers.timma + lib.maintainers.shlevy + lib.maintainers.timma ]; }; } diff --git a/pkgs/development/python-modules/avro/default.nix b/pkgs/development/python-modules/avro/default.nix index 80cd0de5213b..3afd9eb57679 100644 --- a/pkgs/development/python-modules/avro/default.nix +++ b/pkgs/development/python-modules/avro/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "avro" ]; - meta = with lib; { + meta = { description = "Python serialization and RPC framework"; homepage = "https://github.com/apache/avro"; changelog = "https://github.com/apache/avro/releases/tag/release-${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zimbatm ]; mainProgram = "avro"; }; } diff --git a/pkgs/development/python-modules/avwx-engine/default.nix b/pkgs/development/python-modules/avwx-engine/default.nix index a0bd074e9294..1066c54f0bf0 100644 --- a/pkgs/development/python-modules/avwx-engine/default.nix +++ b/pkgs/development/python-modules/avwx-engine/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { "test_station_nearest_ip" ]; - meta = with lib; { + meta = { description = "Aviation Weather parsing engine"; homepage = "https://github.com/avwx-rest/avwx-engine"; changelog = "https://github.com/avwx-rest/avwx-engine/blob/${src.tag}/changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aw-client/default.nix b/pkgs/development/python-modules/aw-client/default.nix index 7dd50076eb47..facaf6d9c60e 100644 --- a/pkgs/development/python-modules/aw-client/default.nix +++ b/pkgs/development/python-modules/aw-client/default.nix @@ -51,12 +51,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aw_client" ]; - meta = with lib; { + meta = { description = "Client library for ActivityWatch"; homepage = "https://github.com/ActivityWatch/aw-client"; changelog = "https://github.com/ActivityWatch/aw-client/releases/tag/v${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ huantian ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ huantian ]; mainProgram = "aw-client"; }; } diff --git a/pkgs/development/python-modules/awesome-slugify/default.nix b/pkgs/development/python-modules/awesome-slugify/default.nix index f0ff466b9fce..30d1ebca1044 100644 --- a/pkgs/development/python-modules/awesome-slugify/default.nix +++ b/pkgs/development/python-modules/awesome-slugify/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/dimka665/awesome-slugify"; description = "Python flexible slugify function"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/awesomeversion/default.nix b/pkgs/development/python-modules/awesomeversion/default.nix index 70e9f56b430e..39794fc491fe 100644 --- a/pkgs/development/python-modules/awesomeversion/default.nix +++ b/pkgs/development/python-modules/awesomeversion/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python module to deal with versions"; homepage = "https://github.com/ludeeus/awesomeversion"; changelog = "https://github.com/ludeeus/awesomeversion/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aws-adfs/default.nix b/pkgs/development/python-modules/aws-adfs/default.nix index d5460d814e8d..8a06f2d16e11 100644 --- a/pkgs/development/python-modules/aws-adfs/default.nix +++ b/pkgs/development/python-modules/aws-adfs/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aws_adfs" ]; - meta = with lib; { + meta = { description = "Command line tool to ease AWS CLI authentication against ADFS"; homepage = "https://github.com/venth/aws-adfs"; changelog = "https://github.com/venth/aws-adfs/releases/tag/${src.tag}"; - license = licenses.psfl; + license = lib.licenses.psfl; mainProgram = "aws-adfs"; }; } diff --git a/pkgs/development/python-modules/aws-encryption-sdk/default.nix b/pkgs/development/python-modules/aws-encryption-sdk/default.nix index 65cbe0a9c099..08333191419c 100644 --- a/pkgs/development/python-modules/aws-encryption-sdk/default.nix +++ b/pkgs/development/python-modules/aws-encryption-sdk/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aws_encryption_sdk" ]; - meta = with lib; { + meta = { description = "Python implementation of the AWS Encryption SDK"; homepage = "https://aws-encryption-sdk-python.readthedocs.io/"; changelog = "https://github.com/aws/aws-encryption-sdk-python/blob/v${version}/CHANGELOG.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ anthonyroussel ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ anthonyroussel ]; }; } diff --git a/pkgs/development/python-modules/aws-lambda-builders/default.nix b/pkgs/development/python-modules/aws-lambda-builders/default.nix index 15c3effda6f2..22931621c8e8 100644 --- a/pkgs/development/python-modules/aws-lambda-builders/default.nix +++ b/pkgs/development/python-modules/aws-lambda-builders/default.nix @@ -72,7 +72,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "aws_lambda_builders" ]; - meta = with lib; { + meta = { description = "Tool to compile, build and package AWS Lambda functions"; mainProgram = "lambda-builders"; homepage = "https://github.com/awslabs/aws-lambda-builders"; @@ -81,7 +81,7 @@ buildPythonPackage rec { Lambda Builders is a Python library to compile, build and package AWS Lambda functions for several runtimes & frameworks. ''; - license = licenses.asl20; - maintainers = with maintainers; [ dhkl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dhkl ]; }; } diff --git a/pkgs/development/python-modules/aws-sam-translator/default.nix b/pkgs/development/python-modules/aws-sam-translator/default.nix index c9ba2878ef13..26a928da8b48 100644 --- a/pkgs/development/python-modules/aws-sam-translator/default.nix +++ b/pkgs/development/python-modules/aws-sam-translator/default.nix @@ -89,11 +89,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "samtranslator" ]; - meta = with lib; { + meta = { description = "Python library to transform SAM templates into AWS CloudFormation templates"; homepage = "https://github.com/aws/serverless-application-model"; changelog = "https://github.com/aws/serverless-application-model/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aws-secretsmanager-caching/default.nix b/pkgs/development/python-modules/aws-secretsmanager-caching/default.nix index f8df8da92d19..8efe83801cfd 100644 --- a/pkgs/development/python-modules/aws-secretsmanager-caching/default.nix +++ b/pkgs/development/python-modules/aws-secretsmanager-caching/default.nix @@ -63,14 +63,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "aws_secretsmanager_caching" ]; - meta = with lib; { + meta = { description = "Client-side AWS secrets manager caching library"; homepage = "https://github.com/aws/aws-secretsmanager-caching-python"; changelog = "https://github.com/aws/aws-secretsmanager-caching-python/releases/tag/v${version}"; longDescription = '' The AWS Secrets Manager Python caching client enables in-process caching of secrets for Python applications. ''; - license = licenses.asl20; - maintainers = with maintainers; [ tomaskala ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tomaskala ]; }; } diff --git a/pkgs/development/python-modules/aws-xray-sdk/default.nix b/pkgs/development/python-modules/aws-xray-sdk/default.nix index ee6ad97f7207..5926c1e0f315 100644 --- a/pkgs/development/python-modules/aws-xray-sdk/default.nix +++ b/pkgs/development/python-modules/aws-xray-sdk/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aws_xray_sdk" ]; - meta = with lib; { + meta = { description = "AWS X-Ray SDK for the Python programming language"; homepage = "https://github.com/aws/aws-xray-sdk-python"; changelog = "https://github.com/aws/aws-xray-sdk-python/blob/${version}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/awscrt/default.nix b/pkgs/development/python-modules/awscrt/default.nix index a23d82403998..2fa1ce1d8990 100644 --- a/pkgs/development/python-modules/awscrt/default.nix +++ b/pkgs/development/python-modules/awscrt/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { # https://github.com/awslabs/aws-crt-python/issues/281 doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/awslabs/aws-crt-python"; changelog = "https://github.com/awslabs/aws-crt-python/releases/tag/v${version}"; description = "Python bindings for the AWS Common Runtime"; - license = licenses.asl20; - maintainers = with maintainers; [ davegallant ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ davegallant ]; }; } diff --git a/pkgs/development/python-modules/awsiotpythonsdk/default.nix b/pkgs/development/python-modules/awsiotpythonsdk/default.nix index 151dabb399cd..ef5b67f9c067 100644 --- a/pkgs/development/python-modules/awsiotpythonsdk/default.nix +++ b/pkgs/development/python-modules/awsiotpythonsdk/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "AWSIoTPythonSDK" ]; - meta = with lib; { + meta = { description = "Python SDK for connecting to AWS IoT"; homepage = "https://github.com/aws/aws-iot-device-sdk-python"; changelog = "https://github.com/aws/aws-iot-device-sdk-python/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/awsipranges/default.nix b/pkgs/development/python-modules/awsipranges/default.nix index cc927030ce92..816eb9d70c01 100644 --- a/pkgs/development/python-modules/awsipranges/default.nix +++ b/pkgs/development/python-modules/awsipranges/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "tests/unit/test_data_loading.py" ]; - meta = with lib; { + meta = { description = "Module to work with the AWS IP address ranges"; homepage = "https://github.com/aws-samples/awsipranges"; changelog = "https://github.com/aws-samples/awsipranges/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/awslambdaric/default.nix b/pkgs/development/python-modules/awslambdaric/default.nix index 6147ee418a4f..8483ca9a57d1 100644 --- a/pkgs/development/python-modules/awslambdaric/default.nix +++ b/pkgs/development/python-modules/awslambdaric/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "runtime_client" ]; - meta = with lib; { + meta = { description = "AWS Lambda Runtime Interface Client for Python"; homepage = "https://github.com/aws/aws-lambda-python-runtime-interface-client"; - license = licenses.asl20; - maintainers = with maintainers; [ austinbutler ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ austinbutler ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/awswrangler/default.nix b/pkgs/development/python-modules/awswrangler/default.nix index 643295f72f2a..bc98786f4093 100644 --- a/pkgs/development/python-modules/awswrangler/default.nix +++ b/pkgs/development/python-modules/awswrangler/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { "tests/unit/test_moto.py" ]; - meta = with lib; { + meta = { description = "Pandas on AWS"; homepage = "https://github.com/aws/aws-sdk-pandas"; changelog = "https://github.com/aws/aws-sdk-pandas/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ mcwitt ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mcwitt ]; }; } diff --git a/pkgs/development/python-modules/axis/default.nix b/pkgs/development/python-modules/axis/default.nix index 3b5481bdb9a5..888cf7aff198 100644 --- a/pkgs/development/python-modules/axis/default.nix +++ b/pkgs/development/python-modules/axis/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "axis" ]; - meta = with lib; { + meta = { description = "Python library for communicating with devices from Axis Communications"; homepage = "https://github.com/Kane610/axis"; changelog = "https://github.com/Kane610/axis/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "axis"; }; } diff --git a/pkgs/development/python-modules/axisregistry/default.nix b/pkgs/development/python-modules/axisregistry/default.nix index e9cb74745b95..5c04cbcd336d 100644 --- a/pkgs/development/python-modules/axisregistry/default.nix +++ b/pkgs/development/python-modules/axisregistry/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "axisregistry" ]; - meta = with lib; { + meta = { description = "Google Fonts registry of OpenType variation axis tags"; homepage = "https://github.com/googlefonts/axisregistry"; changelog = "https://github.com/googlefonts/axisregistry/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/azure-appconfiguration/default.nix b/pkgs/development/python-modules/azure-appconfiguration/default.nix index d7614813c05b..f267baab70a5 100644 --- a/pkgs/development/python-modules/azure-appconfiguration/default.nix +++ b/pkgs/development/python-modules/azure-appconfiguration/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.appconfiguration" ]; - meta = with lib; { + meta = { description = "Microsoft App Configuration Data Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-appconfiguration_${version}/sdk/appconfiguration/azure-appconfiguration/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-applicationinsights/default.nix b/pkgs/development/python-modules/azure-applicationinsights/default.nix index 27e6275ab542..255a4d51f57b 100644 --- a/pkgs/development/python-modules/azure-applicationinsights/default.nix +++ b/pkgs/development/python-modules/azure-applicationinsights/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Application Insights Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-batch/default.nix b/pkgs/development/python-modules/azure-batch/default.nix index 3caa3c69de87..8b9f2a96c455 100644 --- a/pkgs/development/python-modules/azure-batch/default.nix +++ b/pkgs/development/python-modules/azure-batch/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.batch" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Batch Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/batch/azure-batch"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-batch_${version}/sdk/batch/azure-batch/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-common/default.nix b/pkgs/development/python-modules/azure-common/default.nix index b168e1b21cf2..f08f32623fc1 100644 --- a/pkgs/development/python-modules/azure-common/default.nix +++ b/pkgs/development/python-modules/azure-common/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure common code"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olcai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-containerregistry/default.nix b/pkgs/development/python-modules/azure-containerregistry/default.nix index 2c3e483c99b6..fb690b917c18 100644 --- a/pkgs/development/python-modules/azure-containerregistry/default.nix +++ b/pkgs/development/python-modules/azure-containerregistry/default.nix @@ -38,9 +38,9 @@ buildPythonPackage rec { "azure.containerregistry" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Container Registry client library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerregistry/azure-containerregistry"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/azure-core/default.nix b/pkgs/development/python-modules/azure-core/default.nix index 7513c365d737..bf0a28949ed7 100644 --- a/pkgs/development/python-modules/azure-core/default.nix +++ b/pkgs/development/python-modules/azure-core/default.nix @@ -109,11 +109,11 @@ buildPythonPackage rec { "tests/test_tracing_live.py" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Core Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-core_${version}/sdk/core/azure-core/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-cosmos/default.nix b/pkgs/development/python-modules/azure-cosmos/default.nix index 12389ddba27c..d3048a76629e 100644 --- a/pkgs/development/python-modules/azure-cosmos/default.nix +++ b/pkgs/development/python-modules/azure-cosmos/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.cosmos" ]; - meta = with lib; { + meta = { description = "Azure Cosmos DB API"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/cosmos/azure-cosmos"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-cosmos_${version}/sdk/cosmos/azure-cosmos/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix b/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix index f11653ef6d23..61dd20fe6909 100644 --- a/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix +++ b/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure CosmosDB namespace package"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-cosmosdb-table/default.nix b/pkgs/development/python-modules/azure-cosmosdb-table/default.nix index 4acf29beda33..4af20e189a28 100644 --- a/pkgs/development/python-modules/azure-cosmosdb-table/default.nix +++ b/pkgs/development/python-modules/azure-cosmosdb-table/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Log Analytics Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-data-tables/default.nix b/pkgs/development/python-modules/azure-data-tables/default.nix index 7232032c283a..c22a2705f7a1 100644 --- a/pkgs/development/python-modules/azure-data-tables/default.nix +++ b/pkgs/development/python-modules/azure-data-tables/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.data.tables" ]; - meta = with lib; { + meta = { description = "NoSQL data storage service that can be accessed from anywhere"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-data-tables_${version}/sdk/tables/azure-data-tables/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-datalake-store/default.nix b/pkgs/development/python-modules/azure-datalake-store/default.nix index 2491d213be6a..983db302d46a 100644 --- a/pkgs/development/python-modules/azure-datalake-store/default.nix +++ b/pkgs/development/python-modules/azure-datalake-store/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This project is the Python filesystem library for Azure Data Lake Store"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-eventgrid/default.nix b/pkgs/development/python-modules/azure-eventgrid/default.nix index e2c446b209e8..eaccbce42694 100644 --- a/pkgs/development/python-modules/azure-eventgrid/default.nix +++ b/pkgs/development/python-modules/azure-eventgrid/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.eventgrid" ]; - meta = with lib; { + meta = { description = "Fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/eventgrid/azure-eventgrid"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-eventgrid_${version}/sdk/eventgrid/azure-eventgrid/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-eventhub/default.nix b/pkgs/development/python-modules/azure-eventhub/default.nix index 814fc18681a1..16b464e25073 100644 --- a/pkgs/development/python-modules/azure-eventhub/default.nix +++ b/pkgs/development/python-modules/azure-eventhub/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { updateScript = gitUpdater { rev-prefix = "azure.eventhub."; }; }; - meta = with lib; { + meta = { description = "Microsoft Azure Event Hubs Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/eventhub/azure-eventhub"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/${src.tag}/sdk/eventhub/azure-eventhub/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/azure-graphrbac/default.nix b/pkgs/development/python-modules/azure-graphrbac/default.nix index 0b76f52c24d3..0b97806298f2 100644 --- a/pkgs/development/python-modules/azure-graphrbac/default.nix +++ b/pkgs/development/python-modules/azure-graphrbac/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Graph RBAC Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/graphrbac/azure-graphrbac"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-graphrbac_${version}/sdk/graphrbac/azure-graphrbac/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-identity/default.nix b/pkgs/development/python-modules/azure-identity/default.nix index ef5a195b1356..d0a0fa03f2e3 100644 --- a/pkgs/development/python-modules/azure-identity/default.nix +++ b/pkgs/development/python-modules/azure-identity/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { # https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/tests.yml doCheck = false; - meta = with lib; { + meta = { description = "Microsoft Azure Identity Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-identity_${version}/sdk/identity/azure-identity/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/azure-iot-device/default.nix b/pkgs/development/python-modules/azure-iot-device/default.nix index 08928f7bcba1..93d56a94c572 100644 --- a/pkgs/development/python-modules/azure-iot-device/default.nix +++ b/pkgs/development/python-modules/azure-iot-device/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { "azure.iot.device.aio" ]; - meta = with lib; { + meta = { # https://github.com/Azure/azure-iot-sdk-python/issues/1196 broken = lib.versionAtLeast paho-mqtt.version "2"; description = "Microsoft Azure IoT Device Library for Python"; homepage = "https://github.com/Azure/azure-iot-sdk-python"; - license = licenses.mit; - maintainers = with maintainers; [ mikut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mikut ]; }; } diff --git a/pkgs/development/python-modules/azure-keyvault-administration/default.nix b/pkgs/development/python-modules/azure-keyvault-administration/default.nix index 862b6a84d39a..713ef23a16c1 100644 --- a/pkgs/development/python-modules/azure-keyvault-administration/default.nix +++ b/pkgs/development/python-modules/azure-keyvault-administration/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.keyvault.administration" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Key Vault Administration Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-administration"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-keyvault-administration_${version}/sdk/keyvault/azure-keyvault-administration/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-keyvault-certificates/default.nix b/pkgs/development/python-modules/azure-keyvault-certificates/default.nix index 88bd0e180932..f2256f92ab04 100644 --- a/pkgs/development/python-modules/azure-keyvault-certificates/default.nix +++ b/pkgs/development/python-modules/azure-keyvault-certificates/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.keyvault.certificates" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Key Vault Certificates Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-certificates"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-keyvault-certificates_${version}/sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-keyvault-keys/default.nix b/pkgs/development/python-modules/azure-keyvault-keys/default.nix index 21cb1fa32c4d..19bd14db1382 100644 --- a/pkgs/development/python-modules/azure-keyvault-keys/default.nix +++ b/pkgs/development/python-modules/azure-keyvault-keys/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "azure.keyvault.keys" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Key Vault Keys Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-keys"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-keyvault-keys_${version}/sdk/keyvault/azure-keyvault-keys"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-keyvault-nspkg/default.nix b/pkgs/development/python-modules/azure-keyvault-nspkg/default.nix index 813b0d51d04c..950582b9d13b 100644 --- a/pkgs/development/python-modules/azure-keyvault-nspkg/default.nix +++ b/pkgs/development/python-modules/azure-keyvault-nspkg/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/keyvault/tests.yml doCheck = false; - meta = with lib; { + meta = { description = "Microsoft Azure Key Vault Namespace Package [Internal]"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/azure-keyvault-secrets/default.nix b/pkgs/development/python-modules/azure-keyvault-secrets/default.nix index 333477b5f007..92b226a73c20 100644 --- a/pkgs/development/python-modules/azure-keyvault-secrets/default.nix +++ b/pkgs/development/python-modules/azure-keyvault-secrets/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { # Tests require checkout from mono-repo doCheck = false; - meta = with lib; { + meta = { description = "Microsoft Azure Key Vault Secrets Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-secrets"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-keyvault-secrets_${version}/sdk/keyvault/azure-keyvault-secrets"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-keyvault/default.nix b/pkgs/development/python-modules/azure-keyvault/default.nix index 8b6a3524a04c..902e11d4238a 100644 --- a/pkgs/development/python-modules/azure-keyvault/default.nix +++ b/pkgs/development/python-modules/azure-keyvault/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { "azure.keyvault.secrets" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Key Vault Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-loganalytics/default.nix b/pkgs/development/python-modules/azure-loganalytics/default.nix index 8ec07494103a..ca9221e6d94f 100644 --- a/pkgs/development/python-modules/azure-loganalytics/default.nix +++ b/pkgs/development/python-modules/azure-loganalytics/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Log Analytics Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; diff --git a/pkgs/development/python-modules/azure-mgmt-advisor/default.nix b/pkgs/development/python-modules/azure-mgmt-advisor/default.nix index a7f68b3d1186..b94d2ea6ea18 100644 --- a/pkgs/development/python-modules/azure-mgmt-advisor/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-advisor/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Advisor Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-apimanagement/default.nix b/pkgs/development/python-modules/azure-mgmt-apimanagement/default.nix index 27687e4340d2..d2763402b0c3 100644 --- a/pkgs/development/python-modules/azure-mgmt-apimanagement/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-apimanagement/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "azure.mgmt.apimanagement" ]; - meta = with lib; { + meta = { description = "Microsoft Azure API Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/apimanagement/azure-mgmt-apimanagement"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-apimanagement_${version}/sdk/apimanagement/azure-mgmt-apimanagement/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-appconfiguration/default.nix b/pkgs/development/python-modules/azure-mgmt-appconfiguration/default.nix index 7b7a092de3e2..dc7d08ace1ec 100644 --- a/pkgs/development/python-modules/azure-mgmt-appconfiguration/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-appconfiguration/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "azure.mgmt.appconfiguration" ]; - meta = with lib; { + meta = { description = "Microsoft Azure App Configuration Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appconfiguration/azure-mgmt-appconfiguration"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-appconfiguration_${version}/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix index 9ea903c3c21d..dec8261dabbf 100644 --- a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.appcontainers" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Appcontainers Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appcontainers/azure-mgmt-appcontainers"; - license = licenses.mit; - maintainers = with maintainers; [ jfroche ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jfroche ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix b/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix index bddf1a0188d6..2bef3696e7f3 100644 --- a/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Application Insights Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/applicationinsights/azure-mgmt-applicationinsights"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-applicationinsights_${version}/sdk/applicationinsights/azure-mgmt-applicationinsights/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-authorization/default.nix b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix index 7ba940147623..5917734993a1 100644 --- a/pkgs/development/python-modules/azure-mgmt-authorization/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Authorization Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-automation/default.nix b/pkgs/development/python-modules/azure-mgmt-automation/default.nix index 8de27d0b7fcc..889140af5ba7 100644 --- a/pkgs/development/python-modules/azure-mgmt-automation/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-automation/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.automation" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Automation Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/automation/azure-mgmt-automation"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-automation_${version}/sdk/automation/azure-mgmt-automation/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ wfdewith ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wfdewith ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-batch/default.nix b/pkgs/development/python-modules/azure-mgmt-batch/default.nix index e098d8f63755..c13cf7a99e31 100644 --- a/pkgs/development/python-modules/azure-mgmt-batch/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-batch/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.batch" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Batch Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/batch/azure-mgmt-batch"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-batch_${version}/sdk/batch/azure-mgmt-batch"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-batchai/default.nix b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix index 8eeed30924e5..2a9b2020ec7e 100644 --- a/pkgs/development/python-modules/azure-mgmt-batchai/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Batch AI Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-batchai_${version}/sdk/batchai/azure-mgmt-batchai/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-billing/default.nix b/pkgs/development/python-modules/azure-mgmt-billing/default.nix index dfef1554ecc4..093a1297a4c7 100644 --- a/pkgs/development/python-modules/azure-mgmt-billing/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-billing/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Billing Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/billing/azure-mgmt-billing"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-billing_${version}/sdk/billing/azure-mgmt-billing/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-botservice/default.nix b/pkgs/development/python-modules/azure-mgmt-botservice/default.nix index 12379092c4a6..77a0b8bc95a4 100644 --- a/pkgs/development/python-modules/azure-mgmt-botservice/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-botservice/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "azure.mgmt.botservice" ]; - meta = with lib; { + meta = { description = "Microsoft Azure API Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/botservice/azure-mgmt-botservice"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-botservice_${version}/sdk/botservice/azure-mgmt-botservice"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-cdn/default.nix b/pkgs/development/python-modules/azure-mgmt-cdn/default.nix index c98f7f9f36aa..e929a98b7331 100644 --- a/pkgs/development/python-modules/azure-mgmt-cdn/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-cdn/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure CDN Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cdn_${version}/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix b/pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix index 79870bd3a1f1..46881b31e341 100644 --- a/pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.cognitiveservices" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Cognitive Services Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/cognitiveservices/azure-mgmt-cognitiveservices"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cognitiveservices_${version}/sdk/cognitiveservices/azure-mgmt-cognitiveservices/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-commerce/default.nix b/pkgs/development/python-modules/azure-mgmt-commerce/default.nix index 93875a62e84e..e5af60f7de31 100644 --- a/pkgs/development/python-modules/azure-mgmt-commerce/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-commerce/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "azure.mgmt.commerce" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Commerce Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-compute/default.nix b/pkgs/development/python-modules/azure-mgmt-compute/default.nix index ebfbb6414d17..089c43de63c6 100644 --- a/pkgs/development/python-modules/azure-mgmt-compute/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-compute/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.compute" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Compute Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-compute"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olcai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-mgmt-consumption/default.nix b/pkgs/development/python-modules/azure-mgmt-consumption/default.nix index 5e47775d2b1e..1330a0631290 100644 --- a/pkgs/development/python-modules/azure-mgmt-consumption/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-consumption/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Consumption Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix b/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix index aa25c6ad0e9d..240dfe5b9ef9 100644 --- a/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.containerinstance" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Container Instance Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-containerregistry/default.nix b/pkgs/development/python-modules/azure-mgmt-containerregistry/default.nix index 22550fed130b..7ed725a4773c 100644 --- a/pkgs/development/python-modules/azure-mgmt-containerregistry/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-containerregistry/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "azure.mgmt.containerregistry" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Container Registry Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerregistry/azure-mgmt-containerregistry"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-containerregistry_${version}/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix index e1a176f6a1ee..08244aa6393a 100644 --- a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.containerservice" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Container Service Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerservice/azure-mgmt-containerservice"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-containerservice_${version}/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix b/pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix index 67221f5c5077..6e1fe33cce21 100644 --- a/pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.cosmosdb" ]; - meta = with lib; { + meta = { description = "Module to work with the Microsoft Azure Cosmos DB Management"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cosmosdb_${version}/sdk/cosmos/azure-mgmt-cosmosdb/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix b/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix index 0f80f253dcc1..4b4b08f39775 100644 --- a/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.dashboard" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Dashboard Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/dashboard/azure-mgmt-dashboard/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-databoxedge/default.nix b/pkgs/development/python-modules/azure-mgmt-databoxedge/default.nix index 18ab824f0e8d..2bffbc9a00fd 100644 --- a/pkgs/development/python-modules/azure-mgmt-databoxedge/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-databoxedge/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.databoxedge" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Databoxedge Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/databox/azure-mgmt-databox"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-databoxedge_${version}/sdk/databox/azure-mgmt-databox/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-databricks/default.nix b/pkgs/development/python-modules/azure-mgmt-databricks/default.nix index b1d7a2a87d87..f3a5e224210f 100644 --- a/pkgs/development/python-modules/azure-mgmt-databricks/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-databricks/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Microsoft Azure Data Bricks Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/databricks/azure-mgmt-databricks"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-databricks_${version}/sdk/databricks/azure-mgmt-databricks/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix b/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix index 60f960f032cd..a65bf0d12538 100644 --- a/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.datafactory" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Data Factory Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datafactory_${version}/sdk/datafactory/azure-mgmt-datafactory"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix index 1c1a1d05b269..abf27d6ca401 100644 --- a/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Data Lake Analytics Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix index 322987f2039a..33ea84578d07 100644 --- a/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Data Lake Management namespace package"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix index 2d08ad2f43d3..7d189bb79ae1 100644 --- a/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Data Lake Store Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; diff --git a/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix b/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix index ced0974e83c3..be7348a018ed 100644 --- a/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Data Migration Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/datamigration/azure-mgmt-datamigration"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix b/pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix index 6370b33bd372..9d684b9e6e3d 100644 --- a/pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-deploymentmanager/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "azure.mgmt.deploymentmanager" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Deployment Manager Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/deploymentmanager/azure-mgmt-deploymentmanager"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-deploymentmanager_${version}/sdk/deploymentmanager/azure-mgmt-deploymentmanager/setup.py"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix b/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix index 196fadd01e1e..3a4230b0bdbe 100644 --- a/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Dev Spaces Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix b/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix index 1c1dd7a62634..bb7cf727cdaa 100644 --- a/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure DevTestLabs Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; diff --git a/pkgs/development/python-modules/azure-mgmt-dns/default.nix b/pkgs/development/python-modules/azure-mgmt-dns/default.nix index 72c63de021cc..a5d03e2e9136 100644 --- a/pkgs/development/python-modules/azure-mgmt-dns/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-dns/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # Tests are only available in the mono-repo doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure DNS Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-dns"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-dns_${version}/sdk/network/azure-mgmt-dns/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix b/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix index aded434c2fbf..5b257b80c66f 100644 --- a/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.eventgrid" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure EventGrid Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/eventgrid/azure-mgmt-eventgrid"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-eventgrid_${version}/sdk/eventgrid/azure-mgmt-eventgrid/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-eventhub/default.nix b/pkgs/development/python-modules/azure-mgmt-eventhub/default.nix index 312b26a27e1c..c7d745619e42 100644 --- a/pkgs/development/python-modules/azure-mgmt-eventhub/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-eventhub/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure EventHub Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/eventhub/azure-mgmt-eventhub"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-eventhub_${version}/sdk/eventhub/azure-mgmt-eventhub/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-extendedlocation/default.nix b/pkgs/development/python-modules/azure-mgmt-extendedlocation/default.nix index 94e4a143e6b6..8c66992d09a6 100644 --- a/pkgs/development/python-modules/azure-mgmt-extendedlocation/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-extendedlocation/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.extendedlocation" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Extendedlocation Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/extendedlocation/azure-mgmt-extendedlocation"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-extendedlocation_${version}/sdk/extendedlocation/azure-mgmt-extendedlocation"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-frontdoor/default.nix b/pkgs/development/python-modules/azure-mgmt-frontdoor/default.nix index 1ba6379d8887..e91d64f054be 100644 --- a/pkgs/development/python-modules/azure-mgmt-frontdoor/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-frontdoor/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.frontdoor" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Front Door Service Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-frontdoor"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-frontdoor_${version}/sdk/network/azure-mgmt-frontdoor/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix index f487f25cae62..dcd12e7b7306 100644 --- a/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure SAP Hana on Azure Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-hybridcompute/default.nix b/pkgs/development/python-modules/azure-mgmt-hybridcompute/default.nix index 6f8ffe084884..4a715cbc2c1f 100644 --- a/pkgs/development/python-modules/azure-mgmt-hybridcompute/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-hybridcompute/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.hybridcompute" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Hybrid Compute Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/hybridcompute/azure-mgmt-hybridcompute/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-imagebuilder/default.nix b/pkgs/development/python-modules/azure-mgmt-imagebuilder/default.nix index f565ddcd766b..6eef58f50a23 100644 --- a/pkgs/development/python-modules/azure-mgmt-imagebuilder/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-imagebuilder/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "azure.mgmt.imagebuilder" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Image Builder Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-imagebuilder"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-imagebuilder_${version}/sdk/compute/azure-mgmt-imagebuilder/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix b/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix index bce692fb53c0..7ad7300aa707 100644 --- a/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure IoTCentral Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-iothub/default.nix b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix index dc17c5d5a530..70b68479f2e4 100644 --- a/pkgs/development/python-modules/azure-mgmt-iothub/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.iothub" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure IoTHub Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/iothub/azure-mgmt-iothub"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-iothub_${version}/sdk/iothub/azure-mgmt-iothub/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix b/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix index 43f1de3c11bc..ba0212522a9d 100644 --- a/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure IoTHub Provisioning Services Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; diff --git a/pkgs/development/python-modules/azure-mgmt-keyvault/default.nix b/pkgs/development/python-modules/azure-mgmt-keyvault/default.nix index e26a0010caf7..d24a4eb116c9 100644 --- a/pkgs/development/python-modules/azure-mgmt-keyvault/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-keyvault/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Key Vault Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-keyvault_${version}/sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-kusto/default.nix b/pkgs/development/python-modules/azure-mgmt-kusto/default.nix index 171a16e57c9b..c4bf210950c3 100644 --- a/pkgs/development/python-modules/azure-mgmt-kusto/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-kusto/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "azure.mgmt.kusto" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Kusto Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-kusto_${version}/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix b/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix index 84e8197bbc3c..76d54e57b995 100644 --- a/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.loganalytics" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Log Analytics Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix b/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix index 118ba1701602..45255d441596 100644 --- a/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Machine Learning Compute Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-managedservices/default.nix b/pkgs/development/python-modules/azure-mgmt-managedservices/default.nix index 61f8804afa0b..b9c7228edb95 100644 --- a/pkgs/development/python-modules/azure-mgmt-managedservices/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-managedservices/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "azure.mgmt.managedservices" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Managed Services Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/managedservices/azure-mgmt-managedservices"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-managedservices_${version}/sdk/managedservices/azure-mgmt-managedservices/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix b/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix index 45132e178448..04b4af69a505 100644 --- a/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Management Groups Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix b/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix index ff45777f8970..7c4fe820cbc1 100644 --- a/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure ManagementPartner Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-maps/default.nix b/pkgs/development/python-modules/azure-mgmt-maps/default.nix index d4eb41d58de5..f4b8fbd6e4f3 100644 --- a/pkgs/development/python-modules/azure-mgmt-maps/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-maps/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.maps" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Maps Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/v${version}/sdk/maps/azure-mgmt-maps/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix b/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix index eac997e7c718..b58181cdfcce 100644 --- a/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Market Place Ordering Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-media/default.nix b/pkgs/development/python-modules/azure-mgmt-media/default.nix index 473fbf070079..cafe2e4d90d4 100644 --- a/pkgs/development/python-modules/azure-mgmt-media/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-media/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.media" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Media Services Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-monitor/default.nix b/pkgs/development/python-modules/azure-mgmt-monitor/default.nix index 575ccb77b587..e7d7dfd5e77f 100644 --- a/pkgs/development/python-modules/azure-mgmt-monitor/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-monitor/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Monitor Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-msi/default.nix b/pkgs/development/python-modules/azure-mgmt-msi/default.nix index 5c2fb8aeb572..4326bcbb2ba9 100644 --- a/pkgs/development/python-modules/azure-mgmt-msi/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-msi/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.msi" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure MSI Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-msi"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-netapp/default.nix b/pkgs/development/python-modules/azure-mgmt-netapp/default.nix index c7f46485f0f3..58528f09af9b 100644 --- a/pkgs/development/python-modules/azure-mgmt-netapp/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-netapp/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { "azure.mgmt.netapp" ]; - meta = with lib; { + meta = { description = "Microsoft Azure NetApp Files Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-netapp_${version}/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-network/default.nix b/pkgs/development/python-modules/azure-mgmt-network/default.nix index e6d5c2a442b9..526f7fa955ec 100644 --- a/pkgs/development/python-modules/azure-mgmt-network/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-network/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.network" ]; - meta = with lib; { + meta = { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-network"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-network_${version}/sdk/network/azure-mgmt-network/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olcai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix b/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix index c28e754429d8..9c15035259c5 100644 --- a/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Notification Hubs Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix b/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix index cb9642f45f87..c7906dc5200e 100644 --- a/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "azure.mgmt.policyinsights" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Policy Insights Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix b/pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix index b3db9d16407b..640fe2a2753f 100644 --- a/pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { # Module has only tests in mono-repo doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Power BI Embedded Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/powerbiembedded/azure-mgmt-powerbiembedded"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-powerbiembedded_${version}/sdk/powerbiembedded/azure-mgmt-powerbiembedded/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-privatedns/default.nix b/pkgs/development/python-modules/azure-mgmt-privatedns/default.nix index aeb519515beb..1af50578230b 100644 --- a/pkgs/development/python-modules/azure-mgmt-privatedns/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-privatedns/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "azure.mgmt.privatedns" ]; - meta = with lib; { + meta = { description = "Microsoft Azure DNS Private Zones Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-privatedns"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-privatedns_${version}/sdk/network/azure-mgmt-privatedns/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix index cd82f140007a..fe0ca38f2636 100644 --- a/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "azure.mgmt.rdbms" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure RDBMS Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix b/pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix index 50f89268f30f..cdbcfee0fd35 100644 --- a/pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.recoveryservices" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Recovery Services Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-recoveryservices_${version}/sdk/recoveryservices/azure-mgmt-recoveryservices/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix b/pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix index cffea93f11fb..6c56eb9ebe6c 100644 --- a/pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.recoveryservicesbackup" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Recovery Services Backup Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-recoveryservicesbackup_${version}/sdk/recoveryservices/azure-mgmt-recoveryservicesbackup/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-redhatopenshift/default.nix b/pkgs/development/python-modules/azure-mgmt-redhatopenshift/default.nix index 2d7315b4f54d..0fb03f0029f0 100644 --- a/pkgs/development/python-modules/azure-mgmt-redhatopenshift/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-redhatopenshift/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.redhatopenshift" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Red Hat Openshift Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-redis/default.nix b/pkgs/development/python-modules/azure-mgmt-redis/default.nix index cb8567f4183f..dda1e532bf7f 100644 --- a/pkgs/development/python-modules/azure-mgmt-redis/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-redis/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.redis" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Redis Cache Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-redis_${version}/sdk/redis/azure-mgmt-redis/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-resource-deployments/default.nix b/pkgs/development/python-modules/azure-mgmt-resource-deployments/default.nix index 5eb6019ea839..01e51468cfc9 100644 --- a/pkgs/development/python-modules/azure-mgmt-resource-deployments/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-resource-deployments/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "azure.mgmt.resource.deployments.models" ]; - meta = with lib; { + meta = { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource-deployments"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-deployments_${version}/sdk/resources/azure-mgmt-resource-deployments/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = azure-cli.meta.maintainers; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-resource-deploymentscripts/default.nix b/pkgs/development/python-modules/azure-mgmt-resource-deploymentscripts/default.nix index 3fbca5fec29b..5bd9af5840e2 100644 --- a/pkgs/development/python-modules/azure-mgmt-resource-deploymentscripts/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-resource-deploymentscripts/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "azure.mgmt.resource.deploymentscripts" ]; - meta = with lib; { + meta = { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource-deploymentscripts"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-deploymentscripts_${version}/sdk/resources/azure-mgmt-resource-deploymentscripts/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = azure-cli.meta.maintainers; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-resource-deploymentstacks/default.nix b/pkgs/development/python-modules/azure-mgmt-resource-deploymentstacks/default.nix index 7740e636ba4b..a2e290dfa831 100644 --- a/pkgs/development/python-modules/azure-mgmt-resource-deploymentstacks/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-resource-deploymentstacks/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "azure.mgmt.resource.deploymentstacks" ]; - meta = with lib; { + meta = { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource-deploymentstacks"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-deploymentstacks_${version}/sdk/resources/azure-mgmt-resource-deploymentstacks/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = azure-cli.meta.maintainers; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-resource-templatespecs/default.nix b/pkgs/development/python-modules/azure-mgmt-resource-templatespecs/default.nix index 75c261f3d5f8..128cb1a5fd45 100644 --- a/pkgs/development/python-modules/azure-mgmt-resource-templatespecs/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-resource-templatespecs/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "azure.mgmt.resource.templatespecs" ]; - meta = with lib; { + meta = { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource-templatespecs"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-templatespecs_${version}/sdk/resources/azure-mgmt-resource-templatespecs/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = azure-cli.meta.maintainers; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-resource/default.nix b/pkgs/development/python-modules/azure-mgmt-resource/default.nix index 17e7eb95c2c7..cd52377fecd5 100644 --- a/pkgs/development/python-modules/azure-mgmt-resource/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-resource/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.resource" ]; - meta = with lib; { + meta = { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource_${version}/sdk/resources/azure-mgmt-resource/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olcai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix b/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix index 3df70e35796a..00515e631713 100644 --- a/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.scheduler" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Scheduler Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-scheduler_7.0.0/sdk/scheduler/azure-mgmt-scheduler/CHANGELOG.md"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-scheduler_${version}/sdk/scheduler/azure-mgmt-scheduler/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-search/default.nix b/pkgs/development/python-modules/azure-mgmt-search/default.nix index b877e2995618..5d56d133df85 100644 --- a/pkgs/development/python-modules/azure-mgmt-search/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-search/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.search" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Search Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-search_${version}/sdk/search/azure-mgmt-search/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-security/default.nix b/pkgs/development/python-modules/azure-mgmt-security/default.nix index c74e8388e690..9324c084c966 100644 --- a/pkgs/development/python-modules/azure-mgmt-security/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-security/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { "azure.mgmt.security" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Security Center Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/security/azure-mgmt-security"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-security_${version}/sdk/security/azure-mgmt-security/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix index 916f785bf70b..585b0f168285 100644 --- a/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Service Fabric Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicefabric/azure-mgmt-servicefabric"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-servicefabric_${version}/sdk/servicefabric/azure-mgmt-servicefabric/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-servicefabricmanagedclusters/default.nix b/pkgs/development/python-modules/azure-mgmt-servicefabricmanagedclusters/default.nix index 4dbfb8a67be7..4273ceddf21e 100644 --- a/pkgs/development/python-modules/azure-mgmt-servicefabricmanagedclusters/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-servicefabricmanagedclusters/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # Module has tests in mono-repo doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Service Fabric Cluster Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicefabricmanagedclusters/azure-mgmt-servicefabricmanagedclusters"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-servicefabricmanagedclusters_${version}/sdk/servicefabricmanagedclusters/azure-mgmt-servicefabricmanagedclusters/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-servicelinker/default.nix b/pkgs/development/python-modules/azure-mgmt-servicelinker/default.nix index 16b8fd1a9f39..d2604ecafb78 100644 --- a/pkgs/development/python-modules/azure-mgmt-servicelinker/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-servicelinker/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # no tests with sdist doCheck = false; - meta = with lib; { + meta = { description = "Microsoft Azure Servicelinker Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-signalr/default.nix b/pkgs/development/python-modules/azure-mgmt-signalr/default.nix index e40c1670747f..b076e733466c 100644 --- a/pkgs/development/python-modules/azure-mgmt-signalr/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-signalr/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure SignalR Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-sql/default.nix b/pkgs/development/python-modules/azure-mgmt-sql/default.nix index ddf8cec9fcc0..94f6fe9b3e31 100644 --- a/pkgs/development/python-modules/azure-mgmt-sql/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-sql/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.sql" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure SQL Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix b/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix index 8a17230abf09..f2f227c699c1 100644 --- a/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "azure.mgmt.sqlvirtualmachine" ]; - meta = with lib; { + meta = { description = "Microsoft Azure SQL Virtual Machine Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/sql/azure-mgmt-sqlvirtualmachine"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-sqlvirtualmachine_${version}/sdk/sql/azure-mgmt-sqlvirtualmachine/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-storage/default.nix b/pkgs/development/python-modules/azure-mgmt-storage/default.nix index 5c430ada7a18..627d87e554ef 100644 --- a/pkgs/development/python-modules/azure-mgmt-storage/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-storage/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Storage Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-storage_${version}/sdk/storage/azure-mgmt-storage/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olcai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-mgmt-subscription/default.nix b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix index 8c3836cf89f5..20e7f761e5b9 100644 --- a/pkgs/development/python-modules/azure-mgmt-subscription/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "azure.mgmt.subscription" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Subscription Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-synapse/default.nix b/pkgs/development/python-modules/azure-mgmt-synapse/default.nix index a5449599400b..827164471eec 100644 --- a/pkgs/development/python-modules/azure-mgmt-synapse/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-synapse/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.synapse" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Synapse Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/synapse/azure-mgmt-synapse"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-synapse_${version}/sdk/synapse/azure-mgmt-synapse/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix b/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix index de63f5430b2b..babacce99b63 100644 --- a/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Traffic Manager Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-web/default.nix b/pkgs/development/python-modules/azure-mgmt-web/default.nix index c830ed879011..f977a52a317d 100644 --- a/pkgs/development/python-modules/azure-mgmt-web/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-web/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Web Apps Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-web_${version}/sdk/appservice/azure-mgmt-web/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-monitor-ingestion/default.nix b/pkgs/development/python-modules/azure-monitor-ingestion/default.nix index 28a6662641a9..ba28be690eab 100644 --- a/pkgs/development/python-modules/azure-monitor-ingestion/default.nix +++ b/pkgs/development/python-modules/azure-monitor-ingestion/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # requires checkout from mono-repo and a mock account doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-ingestion_${version}/sdk/monitor/azure-monitor-ingestion/CHANGELOG.md"; description = "Send custom logs to Azure Monitor using the Logs Ingestion API"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-ingestion"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/azure-nspkg/default.nix b/pkgs/development/python-modules/azure-nspkg/default.nix index 57fa09792493..e0ef56106320 100644 --- a/pkgs/development/python-modules/azure-nspkg/default.nix +++ b/pkgs/development/python-modules/azure-nspkg/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olcai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-servicebus/default.nix b/pkgs/development/python-modules/azure-servicebus/default.nix index 57bd7fff1ceb..fe6ae40112f4 100644 --- a/pkgs/development/python-modules/azure-servicebus/default.nix +++ b/pkgs/development/python-modules/azure-servicebus/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.servicebus" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Service Bus Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_${version}/sdk/servicebus/azure-servicebus/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-servicefabric/default.nix b/pkgs/development/python-modules/azure-servicefabric/default.nix index e7052a171651..43b2eaf0706b 100644 --- a/pkgs/development/python-modules/azure-servicefabric/default.nix +++ b/pkgs/development/python-modules/azure-servicefabric/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "This project provides a client library in Python that makes it easy to consume Microsoft Azure Storage services"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix b/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix index 6db4bc076a03..5e1548b8b9ab 100644 --- a/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix +++ b/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.servicemanagement" ]; - meta = with lib; { + meta = { description = "This is the Microsoft Azure Service Management Legacy Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-servicemanagement-legacy"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-servicemanagement-legacy_${version}/sdk/core/azure-servicemanagement-legacy/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ olcai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-storage-blob/default.nix b/pkgs/development/python-modules/azure-storage-blob/default.nix index 491f35a9c797..ee1e47623a1c 100644 --- a/pkgs/development/python-modules/azure-storage-blob/default.nix +++ b/pkgs/development/python-modules/azure-storage-blob/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Client library for Microsoft Azure Storage services containing the blob service APIs"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-blob_${version}/sdk/storage/azure-storage-blob/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cmcdragonkai maxwilson ]; diff --git a/pkgs/development/python-modules/azure-storage-common/default.nix b/pkgs/development/python-modules/azure-storage-common/default.nix index d426fb577a72..bdec55f4e0c1 100644 --- a/pkgs/development/python-modules/azure-storage-common/default.nix +++ b/pkgs/development/python-modules/azure-storage-common/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Client library for Microsoft Azure Storage services containing common code shared by blob, file and queue"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/azure-storage-file-share/default.nix b/pkgs/development/python-modules/azure-storage-file-share/default.nix index 35bd0337e11d..2f5a1710492c 100644 --- a/pkgs/development/python-modules/azure-storage-file-share/default.nix +++ b/pkgs/development/python-modules/azure-storage-file-share/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "azure.storage" ]; - meta = with lib; { + meta = { description = "Microsoft Azure File Share Storage Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-share"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-share_${version}/sdk/storage/azure-storage-file-share/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/azure-storage-file/default.nix b/pkgs/development/python-modules/azure-storage-file/default.nix index b7f810b6f107..f55cf02e2d07 100644 --- a/pkgs/development/python-modules/azure-storage-file/default.nix +++ b/pkgs/development/python-modules/azure-storage-file/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Client library for Microsoft Azure Storage services containing the file service APIs"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/azure-storage-nspkg/default.nix b/pkgs/development/python-modules/azure-storage-nspkg/default.nix index 3807fa100e40..c0c92cd8abbf 100644 --- a/pkgs/development/python-modules/azure-storage-nspkg/default.nix +++ b/pkgs/development/python-modules/azure-storage-nspkg/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Client library for Microsoft Azure Storage services owning the azure.storage namespace, user should not use this directly"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/azure-storage-queue/default.nix b/pkgs/development/python-modules/azure-storage-queue/default.nix index 325cd4fb6c46..235736c9ff79 100644 --- a/pkgs/development/python-modules/azure-storage-queue/default.nix +++ b/pkgs/development/python-modules/azure-storage-queue/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.storage.queue" ]; - meta = with lib; { + meta = { description = "Client library for Microsoft Azure Storage services containing the queue service APIs"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-queue_${version}/sdk/storage/azure-storage-queue/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/azure-synapse-accesscontrol/default.nix b/pkgs/development/python-modules/azure-synapse-accesscontrol/default.nix index 0e3b8ce8c4f3..ed0e2c2cf2b2 100644 --- a/pkgs/development/python-modules/azure-synapse-accesscontrol/default.nix +++ b/pkgs/development/python-modules/azure-synapse-accesscontrol/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.synapse.accesscontrol" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Synapse AccessControl Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/synapse/azure-synapse-accesscontrol"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-accesscontrol_${version}/sdk/synapse/azure-synapse-accesscontrol/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-synapse-artifacts/default.nix b/pkgs/development/python-modules/azure-synapse-artifacts/default.nix index da8ca5c7dbd5..45fc40afd544 100644 --- a/pkgs/development/python-modules/azure-synapse-artifacts/default.nix +++ b/pkgs/development/python-modules/azure-synapse-artifacts/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.synapse.artifacts" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Synapse Artifacts Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_${version}/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-synapse-managedprivateendpoints/default.nix b/pkgs/development/python-modules/azure-synapse-managedprivateendpoints/default.nix index dfceb8495839..1bf08dd1284a 100644 --- a/pkgs/development/python-modules/azure-synapse-managedprivateendpoints/default.nix +++ b/pkgs/development/python-modules/azure-synapse-managedprivateendpoints/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.synapse.managedprivateendpoints" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Synapse Managed Private Endpoints Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/synapse/azure-synapse-managedprivateendpoints"; changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-synapse-managedprivateendpoints_${version}/sdk/synapse/azure-synapse-managedprivateendpoints"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-synapse-spark/default.nix b/pkgs/development/python-modules/azure-synapse-spark/default.nix index 8c6e244e37bd..7a43bb551d56 100644 --- a/pkgs/development/python-modules/azure-synapse-spark/default.nix +++ b/pkgs/development/python-modules/azure-synapse-spark/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.synapse.spark" ]; - meta = with lib; { + meta = { description = "Microsoft Azure Synapse Spark Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/synapse/azure-synapse-spark"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-spark_${version}/sdk/synapse/azure-synapse-spark/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index 6495d9755f82..4010935371ed 100644 --- a/pkgs/development/python-modules/b2sdk/default.nix +++ b/pkgs/development/python-modules/b2sdk/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "b2sdk" ]; - meta = with lib; { + meta = { description = "Client library and utilities for access to B2 Cloud Storage (backblaze)"; homepage = "https://github.com/Backblaze/b2-sdk-python"; changelog = "https://github.com/Backblaze/b2-sdk-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ pmw ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pmw ]; }; } diff --git a/pkgs/development/python-modules/babelfish/default.nix b/pkgs/development/python-modules/babelfish/default.nix index 9c7a990cbc82..f7840ec533f4 100644 --- a/pkgs/development/python-modules/babelfish/default.nix +++ b/pkgs/development/python-modules/babelfish/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "babelfish" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Diaoul/babelfish"; description = "Module to work with countries and languages"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/babelfont/default.nix b/pkgs/development/python-modules/babelfont/default.nix index fe3beac36ac7..4b26b7b5e2e7 100644 --- a/pkgs/development/python-modules/babelfont/default.nix +++ b/pkgs/development/python-modules/babelfont/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/test_glyphs3_roundtrip.py" ]; - meta = with lib; { + meta = { description = "Python library to load, examine, and save fonts in a variety of formats"; mainProgram = "babelfont"; homepage = "https://github.com/simoncozens/babelfont"; - license = licenses.bsd3; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/babelgladeextractor/default.nix b/pkgs/development/python-modules/babelgladeextractor/default.nix index 901f4e1e020d..76e7cbbee996 100644 --- a/pkgs/development/python-modules/babelgladeextractor/default.nix +++ b/pkgs/development/python-modules/babelgladeextractor/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # SyntaxError: Non-ASCII character '\xc3' in file /build/BabelGladeExtractor-0.6.3/babelglade/tests/test_translate.py on line 20, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details doCheck = isPy3k; - meta = with lib; { + meta = { homepage = "https://github.com/gnome-keysign/babel-glade"; description = "Babel Glade XML files translatable strings extractor"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/backoff/default.nix b/pkgs/development/python-modules/backoff/default.nix index 1d7cb898d244..6c7ad6239018 100644 --- a/pkgs/development/python-modules/backoff/default.nix +++ b/pkgs/development/python-modules/backoff/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "backoff" ]; - meta = with lib; { + meta = { description = "Function decoration for backoff and retry"; homepage = "https://github.com/litl/backoff"; - license = licenses.mit; - maintainers = with maintainers; [ chkno ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chkno ]; }; } diff --git a/pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix b/pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix index f8255bc0d33a..4cb0ecd588c2 100644 --- a/pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix +++ b/pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "backports.datetime_fromisoformat" ]; - meta = with lib; { + meta = { changelog = "https://github.com/movermeyer/backports.datetime_fromisoformat/releases/tag/v${version}"; description = "Backport of Python 3.11's datetime.fromisoformat"; homepage = "https://github.com/movermeyer/backports.datetime_fromisoformat"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/backports-entry-points-selectable/default.nix b/pkgs/development/python-modules/backports-entry-points-selectable/default.nix index 7e5046f6b618..20dde1157254 100644 --- a/pkgs/development/python-modules/backports-entry-points-selectable/default.nix +++ b/pkgs/development/python-modules/backports-entry-points-selectable/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonNamespaces = [ "backports" ]; - meta = with lib; { + meta = { changelog = "https://github.com/jaraco/backports.entry_points_selectable/blob/v${version}/CHANGES.rst"; description = "Compatibility shim providing selectable entry points for older implementations"; homepage = "https://github.com/jaraco/backports.entry_points_selectable"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/backports-strenum/default.nix b/pkgs/development/python-modules/backports-strenum/default.nix index 8c2df112478c..816f8b412f11 100644 --- a/pkgs/development/python-modules/backports-strenum/default.nix +++ b/pkgs/development/python-modules/backports-strenum/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "backports.strenum" ]; - meta = with lib; { + meta = { description = "Base class for creating enumerated constants that are also subclasses of str"; homepage = "https://github.com/clbarnes/backports.strenum"; - license = with licenses; [ psfl ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ psfl ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/backports-tarfile/default.nix b/pkgs/development/python-modules/backports-tarfile/default.nix index 450db5506756..612f3d49f901 100644 --- a/pkgs/development/python-modules/backports-tarfile/default.nix +++ b/pkgs/development/python-modules/backports-tarfile/default.nix @@ -56,10 +56,10 @@ let passthru.tests.pytest = self.overridePythonAttrs { doCheck = true; }; - meta = with lib; { + meta = { description = "Backport of CPython tarfile module"; homepage = "https://github.com/jaraco/backports.tarfile"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/bacpypes/default.nix b/pkgs/development/python-modules/bacpypes/default.nix index 8819f55e0a66..8b604069d732 100644 --- a/pkgs/development/python-modules/bacpypes/default.nix +++ b/pkgs/development/python-modules/bacpypes/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bacpypes" ]; - meta = with lib; { + meta = { description = "Module for the BACnet application layer and network layer"; homepage = "https://github.com/JoelBender/bacpypes"; changelog = "https://github.com/JoelBender/bacpypes/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bachp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bachp ]; }; } diff --git a/pkgs/development/python-modules/bagit/default.nix b/pkgs/development/python-modules/bagit/default.nix index 954056ba86db..78f53a346173 100644 --- a/pkgs/development/python-modules/bagit/default.nix +++ b/pkgs/development/python-modules/bagit/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { enabledTestPaths = [ "test.py" ]; pythonImportsCheck = [ "bagit" ]; - meta = with lib; { + meta = { description = "Python library and command line utility for working with BagIt style packages"; mainProgram = "bagit.py"; homepage = "https://libraryofcongress.github.io/bagit-python/"; - license = with licenses; [ publicDomain ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ publicDomain ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/banal/default.nix b/pkgs/development/python-modules/banal/default.nix index a2b938a5f035..4e73816480f2 100644 --- a/pkgs/development/python-modules/banal/default.nix +++ b/pkgs/development/python-modules/banal/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "banal" ]; - meta = with lib; { + meta = { description = "Commons of banal micro-functions for Python"; homepage = "https://github.com/pudo/banal"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bandit/default.nix b/pkgs/development/python-modules/bandit/default.nix index 7f955498b482..b4045b47fc48 100644 --- a/pkgs/development/python-modules/bandit/default.nix +++ b/pkgs/development/python-modules/bandit/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bandit" ]; - meta = with lib; { + meta = { description = "Security oriented static analyser for python code"; homepage = "https://bandit.readthedocs.io/"; changelog = "https://github.com/PyCQA/bandit/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/bangla/default.nix b/pkgs/development/python-modules/bangla/default.nix index 46dcbbb43aba..78cc610d8219 100644 --- a/pkgs/development/python-modules/bangla/default.nix +++ b/pkgs/development/python-modules/bangla/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # https://github.com/arsho/bangla/issues/5 doCheck = false; - meta = with lib; { + meta = { description = "Bangla is a package for Bangla language users with various functionalities including Bangla date and Bangla numeric conversation"; homepage = "https://github.com/arsho/bangla"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/bap/default.nix b/pkgs/development/python-modules/bap/default.nix index f598b1aa7907..a00924865711 100644 --- a/pkgs/development/python-modules/bap/default.nix +++ b/pkgs/development/python-modules/bap/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Platform for binary analysis. It is written in OCaml, but can be used from other languages"; homepage = "https://github.com/BinaryAnalysisPlatform/bap/"; - maintainers = [ maintainers.maurer ]; - license = licenses.mit; + maintainers = [ lib.maintainers.maurer ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/barectf/default.nix b/pkgs/development/python-modules/barectf/default.nix index f3d7187a5e3e..a4eed6086b57 100644 --- a/pkgs/development/python-modules/barectf/default.nix +++ b/pkgs/development/python-modules/barectf/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest7CheckHook ]; - meta = with lib; { + meta = { description = "Generator of ANSI C tracers which output CTF data streams"; mainProgram = "barectf"; homepage = "https://github.com/efficios/barectf"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/baron/default.nix b/pkgs/development/python-modules/baron/default.nix index d3ef9ed6143e..3cee7e9a6222 100644 --- a/pkgs/development/python-modules/baron/default.nix +++ b/pkgs/development/python-modules/baron/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = isPy3k; - meta = with lib; { + meta = { homepage = "https://github.com/PyCQA/baron"; description = "Abstraction on top of baron, a FST for python to make writing refactoring code a realistic task"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/base2048/default.nix b/pkgs/development/python-modules/base2048/default.nix index 8e52a0aee8f2..7429aa8c77b9 100644 --- a/pkgs/development/python-modules/base2048/default.nix +++ b/pkgs/development/python-modules/base2048/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "base2048" ]; - meta = with lib; { + meta = { description = "Binary encoding with base-2048 in Python with Rust"; homepage = "https://github.com/ionite34/base2048"; changelog = "https://github.com/ionite34/base2048/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/base36/default.nix b/pkgs/development/python-modules/base36/default.nix index 68749f608e1d..e1fd894a2922 100644 --- a/pkgs/development/python-modules/base36/default.nix +++ b/pkgs/development/python-modules/base36/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { enabledTestPaths = [ "test_base36.py" ]; pythonImportsCheck = [ "base36" ]; - meta = with lib; { + meta = { description = "Python implementation for the positional numeral system using 36 as the radix"; homepage = "https://github.com/tonyseek/python-base36"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/base58/default.nix b/pkgs/development/python-modules/base58/default.nix index c3a615af3e08..a73af2060763 100644 --- a/pkgs/development/python-modules/base58/default.nix +++ b/pkgs/development/python-modules/base58/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "base58" ]; - meta = with lib; { + meta = { description = "Base58 and Base58Check implementation"; homepage = "https://github.com/keis/base58"; changelog = "https://github.com/keis/base58/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyanloutre ]; mainProgram = "base58"; }; } diff --git a/pkgs/development/python-modules/base58check/default.nix b/pkgs/development/python-modules/base58check/default.nix index b9e526ba2852..68c9eb0d5fd6 100644 --- a/pkgs/development/python-modules/base58check/default.nix +++ b/pkgs/development/python-modules/base58check/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "base58check" ]; - meta = with lib; { + meta = { description = "Implementation of the Base58Check encoding scheme"; homepage = "https://github.com/joeblackwaslike/base58check"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/base64io/default.nix b/pkgs/development/python-modules/base64io/default.nix index 26a0085092a1..37e16d725499 100644 --- a/pkgs/development/python-modules/base64io/default.nix +++ b/pkgs/development/python-modules/base64io/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { homepage = "https://base64io-python.readthedocs.io/"; changelog = "https://github.com/aws/base64io-python/blob/${version}/CHANGELOG.rst"; description = "Python stream implementation for base64 encoding/decoding"; - license = licenses.asl20; - maintainers = with maintainers; [ anthonyroussel ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ anthonyroussel ]; }; } diff --git a/pkgs/development/python-modules/baseline/default.nix b/pkgs/development/python-modules/baseline/default.nix index 8b3bb590b5aa..febab740c93d 100644 --- a/pkgs/development/python-modules/baseline/default.nix +++ b/pkgs/development/python-modules/baseline/default.nix @@ -21,7 +21,7 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Easy String Baseline"; mainProgram = "baseline"; longDescription = '' @@ -29,7 +29,7 @@ buildPythonPackage { string output against a baseline. ''; homepage = "https://github.com/dmgass/baseline"; - license = licenses.mit; - maintainers = with maintainers; [ dnr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dnr ]; }; } diff --git a/pkgs/development/python-modules/baselines/default.nix b/pkgs/development/python-modules/baselines/default.nix index 0221c57f1971..7077da5601e3 100644 --- a/pkgs/development/python-modules/baselines/default.nix +++ b/pkgs/development/python-modules/baselines/default.nix @@ -55,10 +55,10 @@ buildPythonPackage { nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { description = "High-quality implementations of reinforcement learning algorithms"; homepage = "https://github.com/openai/baselines"; - license = licenses.mit; - maintainers = with maintainers; [ timokau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ timokau ]; }; } diff --git a/pkgs/development/python-modules/basemap-data/default.nix b/pkgs/development/python-modules/basemap-data/default.nix index 4d80345558ba..5c8a754d8241 100644 --- a/pkgs/development/python-modules/basemap-data/default.nix +++ b/pkgs/development/python-modules/basemap-data/default.nix @@ -16,13 +16,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "mpl_toolkits.basemap_data" ]; - meta = with lib; { + meta = { homepage = "https://matplotlib.org/basemap/"; description = "Data assets for matplotlib basemap"; - license = with licenses; [ + license = with lib.licenses; [ mit lgpl3Plus ]; - teams = [ teams.geospatial ]; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/development/python-modules/basemap/default.nix b/pkgs/development/python-modules/basemap/default.nix index 8bafd07f952f..f2fc361c1ba1 100644 --- a/pkgs/development/python-modules/basemap/default.nix +++ b/pkgs/development/python-modules/basemap/default.nix @@ -57,7 +57,7 @@ buildPythonPackage rec { ${python.interpreter} run_all.py ''; - meta = with lib; { + meta = { homepage = "https://matplotlib.org/basemap/"; description = "Plot data on map projections with matplotlib"; longDescription = '' @@ -65,8 +65,8 @@ buildPythonPackage rec { coastlines, lakes, rivers and political boundaries. See https://matplotlib.org/basemap/stable/users/examples.html for examples of what it can do. ''; - teams = [ teams.geospatial ]; - license = with licenses; [ + teams = [ lib.teams.geospatial ]; + license = with lib.licenses; [ mit lgpl21 ]; diff --git a/pkgs/development/python-modules/bashlex/default.nix b/pkgs/development/python-modules/bashlex/default.nix index 0c6143f29e24..fd319178e678 100644 --- a/pkgs/development/python-modules/bashlex/default.nix +++ b/pkgs/development/python-modules/bashlex/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bashlex" ]; - meta = with lib; { + meta = { description = "Python parser for bash"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/idank/bashlex"; - maintainers = with maintainers; [ multun ]; + maintainers = with lib.maintainers; [ multun ]; }; } diff --git a/pkgs/development/python-modules/batchgenerators/default.nix b/pkgs/development/python-modules/batchgenerators/default.nix index 6c02b8e8cb20..1237a3197d85 100644 --- a/pkgs/development/python-modules/batchgenerators/default.nix +++ b/pkgs/development/python-modules/batchgenerators/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { "batchgenerators.utilities" ]; - meta = with lib; { + meta = { description = "2D and 3D image data augmentation for deep learning"; homepage = "https://github.com/MIC-DKFZ/batchgenerators"; - license = licenses.asl20; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/batinfo/default.nix b/pkgs/development/python-modules/batinfo/default.nix index 35b57ec922df..168dabc88a88 100644 --- a/pkgs/development/python-modules/batinfo/default.nix +++ b/pkgs/development/python-modules/batinfo/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "test_batinfo_name_default" ]; - meta = with lib; { + meta = { description = "Module to retrieve battery information"; homepage = "https://github.com/nicolargo/batinfo"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ koral ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ koral ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/bayespy/default.nix b/pkgs/development/python-modules/bayespy/default.nix index f5cfd044e850..b827aabed55f 100644 --- a/pkgs/development/python-modules/bayespy/default.nix +++ b/pkgs/development/python-modules/bayespy/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bayespy" ]; - meta = with lib; { + meta = { homepage = "http://www.bayespy.org"; description = "Variational Bayesian inference tools for Python"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/bc-detect-secrets/default.nix b/pkgs/development/python-modules/bc-detect-secrets/default.nix index 6f82d3c805d3..4174b216e131 100644 --- a/pkgs/development/python-modules/bc-detect-secrets/default.nix +++ b/pkgs/development/python-modules/bc-detect-secrets/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "detect_secrets" ]; - meta = with lib; { + meta = { description = "Tool to detect secrets in the code"; homepage = "https://github.com/bridgecrewio/detect-secrets"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bc-jsonpath-ng/default.nix b/pkgs/development/python-modules/bc-jsonpath-ng/default.nix index 350b558a6129..c9ba71577d0a 100644 --- a/pkgs/development/python-modules/bc-jsonpath-ng/default.nix +++ b/pkgs/development/python-modules/bc-jsonpath-ng/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bc_jsonpath_ng" ]; - meta = with lib; { + meta = { description = "JSONPath implementation for Python"; mainProgram = "bc_jsonpath_ng"; homepage = "https://github.com/bridgecrewio/jsonpath-ng"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bc-python-hcl2/default.nix b/pkgs/development/python-modules/bc-python-hcl2/default.nix index 51e9aa3d8da4..d91199eaa18c 100644 --- a/pkgs/development/python-modules/bc-python-hcl2/default.nix +++ b/pkgs/development/python-modules/bc-python-hcl2/default.nix @@ -30,15 +30,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "hcl2" ]; - meta = with lib; { + meta = { description = "Parser for HCL2 written in Python using Lark"; longDescription = '' This parser only supports HCL2 and isn't backwards compatible with HCL v1. It can be used to parse any HCL2 config file such as Terraform. ''; homepage = "https://github.com/bridgecrewio/python-hcl2"; - license = licenses.mit; - maintainers = with maintainers; [ anhdle14 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anhdle14 ]; mainProgram = "hcl2tojson"; }; } diff --git a/pkgs/development/python-modules/bcdoc/default.nix b/pkgs/development/python-modules/bcdoc/default.nix index 5d1c96392d0b..e83bc2eb946c 100644 --- a/pkgs/development/python-modules/bcdoc/default.nix +++ b/pkgs/development/python-modules/bcdoc/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { # Tests fail due to nix file timestamp normalization. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/boto/bcdoc"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "ReST document generation tools for botocore"; }; } diff --git a/pkgs/development/python-modules/bcf/default.nix b/pkgs/development/python-modules/bcf/default.nix index 8d9b29bb8daa..4bd204a4df28 100644 --- a/pkgs/development/python-modules/bcf/default.nix +++ b/pkgs/development/python-modules/bcf/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bcf" ]; doCheck = false; # Project provides no tests - meta = with lib; { + meta = { homepage = "https://github.com/hardwario/bch-firmware-tool"; description = "HARDWARIO Firmware Tool"; mainProgram = "bcf"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ cynerd ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/development/python-modules/bcg/default.nix b/pkgs/development/python-modules/bcg/default.nix index 4065c235861c..5932cbb898b0 100644 --- a/pkgs/development/python-modules/bcg/default.nix +++ b/pkgs/development/python-modules/bcg/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bcg" ]; - meta = with lib; { + meta = { homepage = "https://github.com/hardwario/bch-gateway"; description = "HARDWARIO Gateway (Python Application «bcg»)"; mainProgram = "bcg"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ cynerd ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/development/python-modules/bch/default.nix b/pkgs/development/python-modules/bch/default.nix index b29e2f0dfe94..c2f529fddee3 100644 --- a/pkgs/development/python-modules/bch/default.nix +++ b/pkgs/development/python-modules/bch/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bch" ]; - meta = with lib; { + meta = { homepage = "https://github.com/hardwario/bch-control-tool"; description = "HARDWARIO Hub Control Tool"; mainProgram = "bch"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ cynerd ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/development/python-modules/bcrypt/3.nix b/pkgs/development/python-modules/bcrypt/3.nix index 5251e5677fe3..a3cc36a991c3 100644 --- a/pkgs/development/python-modules/bcrypt/3.nix +++ b/pkgs/development/python-modules/bcrypt/3.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bcrypt" ]; - meta = with lib; { + meta = { description = "Modern password hashing for your software and your servers"; homepage = "https://github.com/pyca/bcrypt/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/beancount-black/default.nix b/pkgs/development/python-modules/beancount-black/default.nix index c19c28624b28..98155e951df7 100644 --- a/pkgs/development/python-modules/beancount-black/default.nix +++ b/pkgs/development/python-modules/beancount-black/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "beancount_black" ]; - meta = with lib; { + meta = { description = "Opinioned code formatter for Beancount"; mainProgram = "bean-black"; homepage = "https://github.com/LaunchPlatform/beancount-black/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ambroisie ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/beancount-docverif/default.nix b/pkgs/development/python-modules/beancount-docverif/default.nix index b53fab7c060a..f513c568b64b 100644 --- a/pkgs/development/python-modules/beancount-docverif/default.nix +++ b/pkgs/development/python-modules/beancount-docverif/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "beancount_docverif" ]; - meta = with lib; { + meta = { description = "Document verification plugin for Beancount"; homepage = "https://github.com/siriobalmelli/beancount_docverif"; longDescription = '' @@ -46,7 +46,7 @@ buildPythonPackage rec { - Associate (and require) a document with any type of entry, including open entries themselves. - Guarantee integrity: verify that every document declared does in fact exist on disk. ''; - license = licenses.mit; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/beancount-parser/default.nix b/pkgs/development/python-modules/beancount-parser/default.nix index 95e69d1787f3..620f0f199a8c 100644 --- a/pkgs/development/python-modules/beancount-parser/default.nix +++ b/pkgs/development/python-modules/beancount-parser/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "beancount_parser" ]; - meta = with lib; { + meta = { description = "Standalone Lark based Beancount syntax parser"; homepage = "https://github.com/LaunchPlatform/beancount-parser/"; changelog = "https://github.com/LaunchPlatform/beancount-parser/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ambroisie ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/beancount-plugin-utils/default.nix b/pkgs/development/python-modules/beancount-plugin-utils/default.nix index d4a6446dceea..4d4f6ee9f3bc 100644 --- a/pkgs/development/python-modules/beancount-plugin-utils/default.nix +++ b/pkgs/development/python-modules/beancount-plugin-utils/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "beancount" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Akuukis/beancount_plugin_utils"; description = "Utils for beancount plugin writers - BeancountError, mark, metaset, etc"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ alapshin ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ alapshin ]; }; } diff --git a/pkgs/development/python-modules/beancount/2.nix b/pkgs/development/python-modules/beancount/2.nix index 0422014ac36f..0af83d152560 100644 --- a/pkgs/development/python-modules/beancount/2.nix +++ b/pkgs/development/python-modules/beancount/2.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { # e.g. https://github.com/NixOS/nixpkgs/issues/380197 passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { homepage = "https://github.com/beancount/beancount"; description = "Double-entry bookkeeping computer language"; longDescription = '' @@ -61,8 +61,8 @@ buildPythonPackage rec { financial transaction records in a text file, read them in memory, generate a variety of reports from them, and provides a web interface. ''; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sharzy polarmutex ]; diff --git a/pkgs/development/python-modules/beanquery/default.nix b/pkgs/development/python-modules/beanquery/default.nix index fad735aa6a8d..10735db6f2df 100644 --- a/pkgs/development/python-modules/beanquery/default.nix +++ b/pkgs/development/python-modules/beanquery/default.nix @@ -45,15 +45,15 @@ buildPythonPackage rec { "beanquery" ]; - meta = with lib; { + meta = { homepage = "https://github.com/beancount/beanquery"; description = "Beancount Query Language"; longDescription = '' A customizable light-weight SQL query tool that works on tabular data, including Beancount. ''; - license = licenses.gpl2Only; - maintainers = with maintainers; [ alapshin ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ alapshin ]; mainProgram = "bean-query"; }; } diff --git a/pkgs/development/python-modules/beanstalkc/default.nix b/pkgs/development/python-modules/beanstalkc/default.nix index ce9d606553ef..d0a9b80498e5 100644 --- a/pkgs/development/python-modules/beanstalkc/default.nix +++ b/pkgs/development/python-modules/beanstalkc/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Simple beanstalkd client library for Python"; - maintainers = with maintainers; [ aanderse ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ aanderse ]; + license = lib.licenses.asl20; homepage = "https://github.com/earl/beanstalkc"; }; } diff --git a/pkgs/development/python-modules/beautiful-date/default.nix b/pkgs/development/python-modules/beautiful-date/default.nix index 8fcc791a8fd2..3492c4045291 100644 --- a/pkgs/development/python-modules/beautiful-date/default.nix +++ b/pkgs/development/python-modules/beautiful-date/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "beautiful_date" ]; - meta = with lib; { + meta = { description = "Simple and beautiful way to create date and datetime objects"; homepage = "https://github.com/kuzmoyev/beautiful-date"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/beautifulsoup4/default.nix b/pkgs/development/python-modules/beautifulsoup4/default.nix index a82044e74eea..405161169116 100644 --- a/pkgs/development/python-modules/beautifulsoup4/default.nix +++ b/pkgs/development/python-modules/beautifulsoup4/default.nix @@ -98,11 +98,11 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { changelog = "https://git.launchpad.net/beautifulsoup/tree/CHANGELOG?h=${version}"; description = "HTML and XML parser"; homepage = "http://crummy.com/software/BeautifulSoup/bs4/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/beautifultable/default.nix b/pkgs/development/python-modules/beautifultable/default.nix index d1687fd5f277..e4f5d250531a 100644 --- a/pkgs/development/python-modules/beautifultable/default.nix +++ b/pkgs/development/python-modules/beautifultable/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "beautifultable" ]; - meta = with lib; { + meta = { description = "Python package for printing visually appealing tables"; homepage = "https://github.com/pri22296/beautifultable"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/beautysh/default.nix b/pkgs/development/python-modules/beautysh/default.nix index b66f2b58173a..f70b20527825 100644 --- a/pkgs/development/python-modules/beautysh/default.nix +++ b/pkgs/development/python-modules/beautysh/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "beautysh" ]; - meta = with lib; { + meta = { description = "Tool for beautifying Bash scripts"; homepage = "https://github.com/lovesegfault/beautysh"; changelog = "https://github.com/lovesegfault/beautysh/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "beautysh"; }; } diff --git a/pkgs/development/python-modules/bech32/default.nix b/pkgs/development/python-modules/bech32/default.nix index faed8e5615ff..c9d17e722941 100644 --- a/pkgs/development/python-modules/bech32/default.nix +++ b/pkgs/development/python-modules/bech32/default.nix @@ -16,8 +16,8 @@ buildPythonPackage rec { hash = "sha256-fW24IUYDvXhx/PpsCCbvaLhbCr2Q+iHChanF4h0r2Jk="; }; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/bech32/"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/before-after/default.nix b/pkgs/development/python-modules/before-after/default.nix index 92158e98a65f..af65c35dc576 100644 --- a/pkgs/development/python-modules/before-after/default.nix +++ b/pkgs/development/python-modules/before-after/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "before_after" ]; - meta = with lib; { + meta = { description = "Sugar over the Mock library to help test race conditions"; homepage = "https://github.com/c-oreills/before_after"; maintainers = [ ]; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/development/python-modules/behave/default.nix b/pkgs/development/python-modules/behave/default.nix index 3e7ff095fe1c..094a048247c6 100644 --- a/pkgs/development/python-modules/behave/default.nix +++ b/pkgs/development/python-modules/behave/default.nix @@ -73,13 +73,13 @@ buildPythonPackage rec { ${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' issue.features/ ''; - meta = with lib; { + meta = { changelog = "https://github.com/behave/behave/blob/${src.tag}/CHANGES.rst"; homepage = "https://github.com/behave/behave"; description = "Behaviour-driven development, Python style"; mainProgram = "behave"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ alunduil maxxk ]; diff --git a/pkgs/development/python-modules/bellows/default.nix b/pkgs/development/python-modules/bellows/default.nix index f422d509e471..1eeb8456090a 100644 --- a/pkgs/development/python-modules/bellows/default.nix +++ b/pkgs/development/python-modules/bellows/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bellows" ]; - meta = with lib; { + meta = { description = "Python module to implement EZSP for EmberZNet devices"; homepage = "https://github.com/zigpy/bellows"; changelog = "https://github.com/zigpy/bellows/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mvnetbiz ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz ]; mainProgram = "bellows"; }; } diff --git a/pkgs/development/python-modules/bencode-py/default.nix b/pkgs/development/python-modules/bencode-py/default.nix index 3620f34fa701..f4c8ddf1c2e2 100644 --- a/pkgs/development/python-modules/bencode-py/default.nix +++ b/pkgs/development/python-modules/bencode-py/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Simple bencode parser (for Python 2, Python 3 and PyPy)"; homepage = "https://github.com/fuzeman/bencode.py"; - license = licenses.bitTorrent11; - maintainers = with maintainers; [ vamega ]; + license = lib.licenses.bitTorrent11; + maintainers = with lib.maintainers; [ vamega ]; }; } diff --git a/pkgs/development/python-modules/bencoder/default.nix b/pkgs/development/python-modules/bencoder/default.nix index f8be50a99e27..195898ac5562 100644 --- a/pkgs/development/python-modules/bencoder/default.nix +++ b/pkgs/development/python-modules/bencoder/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # There are no tests. doCheck = false; - meta = with lib; { + meta = { description = "Simple bencode decoder/encoder library in pure Python"; homepage = "https://github.com/utdemir/bencoder"; - license = licenses.gpl2; - maintainers = with maintainers; [ somasis ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ somasis ]; }; } diff --git a/pkgs/development/python-modules/bentoml/default.nix b/pkgs/development/python-modules/bentoml/default.nix index 5e5247c3fa91..691f92c7372f 100644 --- a/pkgs/development/python-modules/bentoml/default.nix +++ b/pkgs/development/python-modules/bentoml/default.nix @@ -247,12 +247,12 @@ buildPythonPackage { ] ++ optional-dependencies.grpc; - meta = with lib; { + meta = { description = "Build Production-Grade AI Applications"; homepage = "https://github.com/bentoml/BentoML"; changelog = "https://github.com/bentoml/BentoML/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada natsukium ]; diff --git a/pkgs/development/python-modules/berkeleydb/default.nix b/pkgs/development/python-modules/berkeleydb/default.nix index 1988a026f087..3f9cd22ac720 100644 --- a/pkgs/development/python-modules/berkeleydb/default.nix +++ b/pkgs/development/python-modules/berkeleydb/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { BERKELEYDB_LIBDIR = "${lib.getLib pkgs.db}/lib"; }; - meta = with lib; { + meta = { description = "Python bindings for Oracle Berkeley DB"; homepage = "https://www.jcea.es/programacion/pybsddb.htm"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bespon/default.nix b/pkgs/development/python-modules/bespon/default.nix index 2721bd0b4b1d..0cca1d5df3cb 100644 --- a/pkgs/development/python-modules/bespon/default.nix +++ b/pkgs/development/python-modules/bespon/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "bespon" ]; - meta = with lib; { + meta = { description = "Encodes and decodes data in the BespON format"; homepage = "https://github.com/gpoore/bespon_py"; - license = licenses.bsd3; - maintainers = with maintainers; [ synthetica ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ synthetica ]; }; } diff --git a/pkgs/development/python-modules/betamax-matchers/default.nix b/pkgs/development/python-modules/betamax-matchers/default.nix index dc85e7112e71..d1bbf9e45be6 100644 --- a/pkgs/development/python-modules/betamax-matchers/default.nix +++ b/pkgs/development/python-modules/betamax-matchers/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "betamax_matchers" ]; - meta = with lib; { + meta = { description = "Group of experimental matchers for Betamax"; homepage = "https://github.com/sigmavirus24/betamax_matchers"; changelog = "https://github.com/betamaxpy/betamax_matchers/blob/${version}/HISTORY.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/development/python-modules/betamax-serializers/default.nix b/pkgs/development/python-modules/betamax-serializers/default.nix index ca2494faa78f..0f3217269062 100644 --- a/pkgs/development/python-modules/betamax-serializers/default.nix +++ b/pkgs/development/python-modules/betamax-serializers/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { pyyaml ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/betamax/serializers"; description = "Set of third-party serializers for Betamax"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/betamax/default.nix b/pkgs/development/python-modules/betamax/default.nix index e22078ccf9aa..d888de298dd3 100644 --- a/pkgs/development/python-modules/betamax/default.nix +++ b/pkgs/development/python-modules/betamax/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "tests/regression/test_requests_2_11_body_matcher.py" ]; - meta = with lib; { + meta = { description = "VCR imitation for requests"; homepage = "https://betamax.readthedocs.org/"; changelog = "https://github.com/betamaxpy/betamax/blob/${version}/HISTORY.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/development/python-modules/bibtexparser/default.nix b/pkgs/development/python-modules/bibtexparser/default.nix index 43541b800862..c9e0059c1a05 100644 --- a/pkgs/development/python-modules/bibtexparser/default.nix +++ b/pkgs/development/python-modules/bibtexparser/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bibtexparser" ]; - meta = with lib; { + meta = { description = "Bibtex parser for Python"; homepage = "https://github.com/sciunto-org/python-bibtexparser"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Only # or bsd3 ]; diff --git a/pkgs/development/python-modules/bidict/default.nix b/pkgs/development/python-modules/bidict/default.nix index fb17c7d5f90d..b26d63c1eec8 100644 --- a/pkgs/development/python-modules/bidict/default.nix +++ b/pkgs/development/python-modules/bidict/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bidict" ]; - meta = with lib; { + meta = { homepage = "https://bidict.readthedocs.io"; changelog = "https://bidict.readthedocs.io/changelog.html"; description = "Bidirectional mapping library for Python"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ jab jakewaksbaum ]; diff --git a/pkgs/development/python-modules/biliass/default.nix b/pkgs/development/python-modules/biliass/default.nix index b1db00398b2b..edebdae52944 100644 --- a/pkgs/development/python-modules/biliass/default.nix +++ b/pkgs/development/python-modules/biliass/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "biliass" ]; - meta = with lib; { + meta = { homepage = "https://github.com/yutto-dev/biliass"; description = "Convert Bilibili XML/protobuf danmaku to ASS subtitle"; mainProgram = "biliass"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ linsui ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ linsui ]; }; } diff --git a/pkgs/development/python-modules/bimmer-connected/default.nix b/pkgs/development/python-modules/bimmer-connected/default.nix index 9bd324394aaf..4a7f6fc9850c 100644 --- a/pkgs/development/python-modules/bimmer-connected/default.nix +++ b/pkgs/development/python-modules/bimmer-connected/default.nix @@ -72,12 +72,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bimmer_connected" ]; - meta = with lib; { + meta = { changelog = "https://github.com/bimmerconnected/bimmer_connected/releases/tag/${version}"; description = "Library to read data from the BMW Connected Drive portal"; mainProgram = "bimmerconnected"; homepage = "https://github.com/bimmerconnected/bimmer_connected"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/binance-connector/default.nix b/pkgs/development/python-modules/binance-connector/default.nix index dfecac9e1faa..d79f5210f9d4 100644 --- a/pkgs/development/python-modules/binance-connector/default.nix +++ b/pkgs/development/python-modules/binance-connector/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { "binance.websocket" ]; - meta = with lib; { + meta = { description = "Simple connector to Binance Public API"; homepage = "https://github.com/binance/binance-connector-python"; - license = licenses.mit; - maintainers = with maintainers; [ trishtzy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ trishtzy ]; }; } diff --git a/pkgs/development/python-modules/binary/default.nix b/pkgs/development/python-modules/binary/default.nix index 13433d53ca9b..55b8e3018c02 100644 --- a/pkgs/development/python-modules/binary/default.nix +++ b/pkgs/development/python-modules/binary/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "binary.core" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ofek/binary/releases/tag/${src.tag}"; description = "Easily convert between binary and SI units (kibibyte, kilobyte, etc.)"; homepage = "https://github.com/ofek/binary"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/development/python-modules/binary2strings/default.nix b/pkgs/development/python-modules/binary2strings/default.nix index 44aca3c3871b..c770022190ef 100644 --- a/pkgs/development/python-modules/binary2strings/default.nix +++ b/pkgs/development/python-modules/binary2strings/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/test.py" ]; - meta = with lib; { + meta = { description = "Module to extract Ascii, Utf8, and Unicode strings from binary data"; homepage = "https://github.com/glmcdona/binary2strings"; changelog = "https://github.com/glmcdona/binary2strings/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/binaryornot/default.nix b/pkgs/development/python-modules/binaryornot/default.nix index dd57a7885aac..5cc150c6fa7f 100644 --- a/pkgs/development/python-modules/binaryornot/default.nix +++ b/pkgs/development/python-modules/binaryornot/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { nativeCheckInputs = [ hypothesis ]; - meta = with lib; { + meta = { homepage = "https://github.com/audreyr/binaryornot"; description = "Ultra-lightweight pure Python package to check if a file is binary or text"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/bincopy/default.nix b/pkgs/development/python-modules/bincopy/default.nix index 1732a42ea077..1f3a379a6b7d 100644 --- a/pkgs/development/python-modules/bincopy/default.nix +++ b/pkgs/development/python-modules/bincopy/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bincopy" ]; - meta = with lib; { + meta = { description = "Mangling of various file formats that conveys binary information (Motorola S-Record, Intel HEX, TI-TXT, ELF and binary files)"; mainProgram = "bincopy"; homepage = "https://github.com/eerimoq/bincopy"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ frogamic sbruder ]; diff --git a/pkgs/development/python-modules/bindep/default.nix b/pkgs/development/python-modules/bindep/default.nix index e4944cceaeae..c165d6935157 100644 --- a/pkgs/development/python-modules/bindep/default.nix +++ b/pkgs/development/python-modules/bindep/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bindep" ]; - meta = with lib; { + meta = { description = "Bindep is a tool for checking the presence of binary packages needed to use an application / library"; homepage = "https://opendev.org/opendev/bindep"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "bindep"; - teams = [ teams.openstack ]; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/binho-host-adapter/default.nix b/pkgs/development/python-modules/binho-host-adapter/default.nix index 78cd0e9b7ed9..0448fdb8145d 100644 --- a/pkgs/development/python-modules/binho-host-adapter/default.nix +++ b/pkgs/development/python-modules/binho-host-adapter/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "binhoHostAdapter" ]; - meta = with lib; { + meta = { description = "Python library for Binho Multi-Protocol USB Host Adapters"; homepage = "https://github.com/adafruit/Adafruit_Python_PlatformDetect"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bip-utils/default.nix b/pkgs/development/python-modules/bip-utils/default.nix index 39a408601e63..077314e2d192 100644 --- a/pkgs/development/python-modules/bip-utils/default.nix +++ b/pkgs/development/python-modules/bip-utils/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bip_utils" ]; - meta = with lib; { + meta = { description = "Implementation of BIP39, BIP32, BIP44, BIP49 and BIP84 for wallet seeds, keys and addresses generation"; homepage = "https://github.com/ebellocchia/bip_utils"; changelog = "https://github.com/ebellocchia/bip_utils/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ prusnak stargate01 ]; diff --git a/pkgs/development/python-modules/bip32/default.nix b/pkgs/development/python-modules/bip32/default.nix index 4d7c00430a9c..aaa9a185bfe2 100644 --- a/pkgs/development/python-modules/bip32/default.nix +++ b/pkgs/development/python-modules/bip32/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bip32" ]; - meta = with lib; { + meta = { description = "Minimalistic implementation of the BIP32 key derivation scheme"; homepage = "https://github.com/darosior/python-bip32"; changelog = "https://github.com/darosior/python-bip32/blob/${version}/CHANGELOG.md"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ arcnmx ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ arcnmx ]; }; } diff --git a/pkgs/development/python-modules/biplist/default.nix b/pkgs/development/python-modules/biplist/default.nix index 0ef428281a66..6128b19d823a 100644 --- a/pkgs/development/python-modules/biplist/default.nix +++ b/pkgs/development/python-modules/biplist/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "biplist" ]; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/wooster/biplist/src/master/"; description = "Binary plist parser/generator for Python"; longDescription = '' @@ -37,7 +37,7 @@ buildPythonPackage rec { This is a library for generating binary plists which can be read by OS X, iOS, or other clients. ''; - license = licenses.bsd3; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/birch/default.nix b/pkgs/development/python-modules/birch/default.nix index 772ab25109e4..39a9d12d6533 100644 --- a/pkgs/development/python-modules/birch/default.nix +++ b/pkgs/development/python-modules/birch/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { export HOME="$(mktemp -d)" ''; - meta = with lib; { + meta = { description = "Simple hierarchical configuration for Python packages"; homepage = "https://github.com/shaypal5/birch"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/bitarray/default.nix b/pkgs/development/python-modules/bitarray/default.nix index d685d1563756..65282c60740d 100644 --- a/pkgs/development/python-modules/bitarray/default.nix +++ b/pkgs/development/python-modules/bitarray/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitarray" ]; - meta = with lib; { + meta = { description = "Efficient arrays of booleans"; homepage = "https://github.com/ilanschnell/bitarray"; changelog = "https://github.com/ilanschnell/bitarray/raw/${version}/CHANGE_LOG"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python-modules/bitbox02/default.nix b/pkgs/development/python-modules/bitbox02/default.nix index 62c9ca5edcc1..2665ae9e6379 100644 --- a/pkgs/development/python-modules/bitbox02/default.nix +++ b/pkgs/development/python-modules/bitbox02/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitbox02" ]; - meta = with lib; { + meta = { description = "Firmware code of the BitBox02 hardware wallet"; homepage = "https://github.com/digitalbitbox/bitbox02-firmware/"; changelog = "https://github.com/digitalbitbox/bitbox02-firmware/blob/py-bitbox02-${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bitcoin-utils-fork-minimal/default.nix b/pkgs/development/python-modules/bitcoin-utils-fork-minimal/default.nix index f2c70dcadc7e..b127dd5164e4 100644 --- a/pkgs/development/python-modules/bitcoin-utils-fork-minimal/default.nix +++ b/pkgs/development/python-modules/bitcoin-utils-fork-minimal/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitcoinutils" ]; - meta = with lib; { + meta = { description = "Bitcoin utility functions"; homepage = "https://github.com/doersf/python-bitcoin-utils"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bitcoinrpc/default.nix b/pkgs/development/python-modules/bitcoinrpc/default.nix index cfdc523b1213..994563449db7 100644 --- a/pkgs/development/python-modules/bitcoinrpc/default.nix +++ b/pkgs/development/python-modules/bitcoinrpc/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitcoinrpc" ]; - meta = with lib; { + meta = { description = "Bitcoin JSON-RPC client"; homepage = "https://github.com/bibajz/bitcoin-python-async-rpc"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bitlist/default.nix b/pkgs/development/python-modules/bitlist/default.nix index c4c715c4a959..d7e6ad03f216 100644 --- a/pkgs/development/python-modules/bitlist/default.nix +++ b/pkgs/development/python-modules/bitlist/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitlist" ]; - meta = with lib; { + meta = { description = "Python library for working with little-endian list representation of bit strings"; homepage = "https://github.com/lapets/bitlist"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bitmath/default.nix b/pkgs/development/python-modules/bitmath/default.nix index dab0477350b7..52213081e0f5 100644 --- a/pkgs/development/python-modules/bitmath/default.nix +++ b/pkgs/development/python-modules/bitmath/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { mock ]; - meta = with lib; { + meta = { description = "Module for representing and manipulating file sizes with different prefix"; mainProgram = "bitmath"; homepage = "https://github.com/tbielawa/bitmath"; - license = licenses.mit; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/bitstring/default.nix b/pkgs/development/python-modules/bitstring/default.nix index d510271cbae9..a9c332a97d1c 100644 --- a/pkgs/development/python-modules/bitstring/default.nix +++ b/pkgs/development/python-modules/bitstring/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitstring" ]; - meta = with lib; { + meta = { description = "Module for binary data manipulation"; homepage = "https://github.com/scott-griffiths/bitstring"; changelog = "https://github.com/scott-griffiths/bitstring/releases/tag/${src.tag}"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/bitstruct/default.nix b/pkgs/development/python-modules/bitstruct/default.nix index 03cb7c8ad807..7e687582372f 100644 --- a/pkgs/development/python-modules/bitstruct/default.nix +++ b/pkgs/development/python-modules/bitstruct/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python bit pack/unpack package"; homepage = "https://github.com/eerimoq/bitstruct"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/bitvavo-aio/default.nix b/pkgs/development/python-modules/bitvavo-aio/default.nix index f8eb0cd49734..18bde98d19ee 100644 --- a/pkgs/development/python-modules/bitvavo-aio/default.nix +++ b/pkgs/development/python-modules/bitvavo-aio/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitvavo" ]; - meta = with lib; { + meta = { description = "Python client for Bitvavo crypto exchange API"; homepage = "https://github.com/cyberjunky/bitvavo-aio"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bitvector-for-humans/default.nix b/pkgs/development/python-modules/bitvector-for-humans/default.nix index 1faff1bf2c23..b8ad10e587a0 100644 --- a/pkgs/development/python-modules/bitvector-for-humans/default.nix +++ b/pkgs/development/python-modules/bitvector-for-humans/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitvector" ]; - meta = with lib; { + meta = { homepage = "https://github.com/JnyJny/bitvector"; description = "This simple bit vector implementation aims to make addressing single bits a little less fiddly"; - license = licenses.asl20; - teams = [ teams.helsinki-systems ]; + license = lib.licenses.asl20; + teams = [ lib.teams.helsinki-systems ]; }; } diff --git a/pkgs/development/python-modules/bizkaibus/default.nix b/pkgs/development/python-modules/bizkaibus/default.nix index c79a3c35b966..a5555a06786f 100644 --- a/pkgs/development/python-modules/bizkaibus/default.nix +++ b/pkgs/development/python-modules/bizkaibus/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bizkaibus" ]; - meta = with lib; { + meta = { description = "Python module to get information about Bizkaibus buses"; homepage = "https://github.com/UgaitzEtxebarria/BizkaibusRTPI"; changelog = "https://github.com/UgaitzEtxebarria/BizkaibusRTPI/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/black-macchiato/default.nix b/pkgs/development/python-modules/black-macchiato/default.nix index 307aaf38d5d0..cf31d4cff32c 100644 --- a/pkgs/development/python-modules/black-macchiato/default.nix +++ b/pkgs/development/python-modules/black-macchiato/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "black" ]; - meta = with lib; { + meta = { description = "This is a small utility built on top of the black Python code formatter to enable formatting of partial files"; mainProgram = "black-macchiato"; homepage = "https://github.com/wbolster/black-macchiato"; - license = licenses.bsd3; - maintainers = with maintainers; [ jperras ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jperras ]; }; } diff --git a/pkgs/development/python-modules/black/default.nix b/pkgs/development/python-modules/black/default.nix index 8cab13d38ac0..2ac7f9dfe250 100644 --- a/pkgs/development/python-modules/black/default.nix +++ b/pkgs/development/python-modules/black/default.nix @@ -125,13 +125,13 @@ buildPythonPackage rec { # multiple tests exceed max open files on hydra builders doCheck = !(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); - meta = with lib; { + meta = { description = "Uncompromising Python code formatter"; homepage = "https://github.com/psf/black"; changelog = "https://github.com/psf/black/blob/${version}/CHANGES.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "black"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sveitser autophagy ]; diff --git a/pkgs/development/python-modules/bleach-allowlist/default.nix b/pkgs/development/python-modules/bleach-allowlist/default.nix index 2ef358f71fa3..3aa7e57a71cd 100644 --- a/pkgs/development/python-modules/bleach-allowlist/default.nix +++ b/pkgs/development/python-modules/bleach-allowlist/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bleach_allowlist" ]; - meta = with lib; { + meta = { description = "Curated lists of tags and attributes for sanitizing html"; homepage = "https://github.com/yourcelf/bleach-allowlist"; - license = licenses.bsd2; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/bleach/default.nix b/pkgs/development/python-modules/bleach/default.nix index 36decbb1bef3..4a25ba76177e 100644 --- a/pkgs/development/python-modules/bleach/default.nix +++ b/pkgs/development/python-modules/bleach/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "bleach" ]; - meta = with lib; { + meta = { description = "Easy, HTML5, whitelisting HTML sanitizer"; longDescription = '' Bleach is an HTML sanitizing library that escapes or strips markup and @@ -58,7 +58,7 @@ buildPythonPackage rec { homepage = "https://github.com/mozilla/bleach"; downloadPage = "https://github.com/mozilla/bleach/releases"; changelog = "https://github.com/mozilla/bleach/blob/v${version}/CHANGES"; - license = licenses.asl20; - maintainers = with maintainers; [ prikhi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ prikhi ]; }; } diff --git a/pkgs/development/python-modules/bleak-esphome/default.nix b/pkgs/development/python-modules/bleak-esphome/default.nix index 66f10c7b5422..d957c8271837 100644 --- a/pkgs/development/python-modules/bleak-esphome/default.nix +++ b/pkgs/development/python-modules/bleak-esphome/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bleak_esphome" ]; - meta = with lib; { + meta = { description = "Bleak backend of ESPHome"; homepage = "https://github.com/bluetooth-devices/bleak-esphome"; changelog = "https://github.com/bluetooth-devices/bleak-esphome/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bleak-retry-connector/default.nix b/pkgs/development/python-modules/bleak-retry-connector/default.nix index 076d6bbd8ba2..9490795d769a 100644 --- a/pkgs/development/python-modules/bleak-retry-connector/default.nix +++ b/pkgs/development/python-modules/bleak-retry-connector/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bleak_retry_connector" ]; - meta = with lib; { + meta = { description = "Connector for Bleak Clients that handles transient connection failures"; homepage = "https://github.com/bluetooth-devices/bleak-retry-connector"; changelog = "https://github.com/Bluetooth-Devices/bleak-retry-connector/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bleak/default.nix b/pkgs/development/python-modules/bleak/default.nix index 7a00dac08740..3351fe872a8b 100644 --- a/pkgs/development/python-modules/bleak/default.nix +++ b/pkgs/development/python-modules/bleak/default.nix @@ -62,12 +62,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bleak" ]; - meta = with lib; { + meta = { description = "Bluetooth Low Energy platform agnostic client"; homepage = "https://github.com/hbldh/bleak"; changelog = "https://github.com/hbldh/bleak/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/blebox-uniapi/default.nix b/pkgs/development/python-modules/blebox-uniapi/default.nix index 9edb44d8873e..4453ae112e31 100644 --- a/pkgs/development/python-modules/blebox-uniapi/default.nix +++ b/pkgs/development/python-modules/blebox-uniapi/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "blebox_uniapi" ]; - meta = with lib; { + meta = { changelog = "https://github.com/blebox/blebox_uniapi/blob/v${version}/HISTORY.rst"; description = "Python API for accessing BleBox smart home devices"; homepage = "https://github.com/blebox/blebox_uniapi"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/bless/default.nix b/pkgs/development/python-modules/bless/default.nix index ec238c58e22a..b27eb498a87f 100644 --- a/pkgs/development/python-modules/bless/default.nix +++ b/pkgs/development/python-modules/bless/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bless" ]; - meta = with lib; { + meta = { broken = true; # not compatible with bleak>=1.0 and no maintenance since 2024-03 description = "Library for creating a BLE Generic Attribute Profile (GATT) server"; homepage = "https://github.com/kevincar/bless"; changelog = "https://github.com/kevincar/bless/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/blessed/default.nix b/pkgs/development/python-modules/blessed/default.nix index 2e416b2403eb..98e27dccac5b 100644 --- a/pkgs/development/python-modules/blessed/default.nix +++ b/pkgs/development/python-modules/blessed/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { homepage = "https://github.com/jquast/blessed"; description = "Thin, practical wrapper around terminal capabilities in Python"; - maintainers = with maintainers; [ eqyiel ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ eqyiel ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/blinker/default.nix b/pkgs/development/python-modules/blinker/default.nix index d338057e70a6..f7176e013ba4 100644 --- a/pkgs/development/python-modules/blinker/default.nix +++ b/pkgs/development/python-modules/blinker/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/pallets-eco/blinker/releases/tag/${version}"; description = "Fast Python in-process signal/event dispatching system"; homepage = "https://github.com/pallets-eco/blinker/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/blobfile/default.nix b/pkgs/development/python-modules/blobfile/default.nix index ca229e42139c..0aa93776a050 100644 --- a/pkgs/development/python-modules/blobfile/default.nix +++ b/pkgs/development/python-modules/blobfile/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "blobfile" ]; - meta = with lib; { + meta = { description = "Read Google Cloud Storage, Azure Blobs, and local paths with the same interface"; homepage = "https://github.com/christopher-hesse/blobfile"; changelog = "https://github.com/christopher-hesse/blobfile/blob/v${version}/CHANGES.md"; - license = licenses.unlicense; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/block-io/default.nix b/pkgs/development/python-modules/block-io/default.nix index d3a7b7213d6b..849cb475563c 100644 --- a/pkgs/development/python-modules/block-io/default.nix +++ b/pkgs/development/python-modules/block-io/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "block_io" ]; - meta = with lib; { + meta = { description = "Integrate Bitcoin, Dogecoin and Litecoin in your Python applications using block.io"; homepage = "https://github.com/BlockIo/block_io-python"; - license = licenses.mit; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/blockchain/default.nix b/pkgs/development/python-modules/blockchain/default.nix index 445836cda78d..8e0ded4e10be 100644 --- a/pkgs/development/python-modules/blockchain/default.nix +++ b/pkgs/development/python-modules/blockchain/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "blockchain" ]; - meta = with lib; { + meta = { description = "Python client Blockchain Bitcoin Developer API"; homepage = "https://github.com/blockchain/api-v1-client-python"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/blockdiag/default.nix b/pkgs/development/python-modules/blockdiag/default.nix index 23d94d26b388..95a42bff071b 100644 --- a/pkgs/development/python-modules/blockdiag/default.nix +++ b/pkgs/development/python-modules/blockdiag/default.nix @@ -80,13 +80,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "blockdiag" ]; - meta = with lib; { + meta = { description = "Generate block-diagram image from spec-text file (similar to Graphviz)"; homepage = "http://blockdiag.com/"; changelog = "https://github.com/blockdiag/blockdiag/blob/${version}/CHANGES.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "blockdiag"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/blockfrost-python/default.nix b/pkgs/development/python-modules/blockfrost-python/default.nix index 2e07ff795d01..d97884636aa5 100644 --- a/pkgs/development/python-modules/blockfrost-python/default.nix +++ b/pkgs/development/python-modules/blockfrost-python/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "blockfrost" ]; - meta = with lib; { + meta = { description = "Python SDK for the Blockfrost.io API"; homepage = "https://github.com/blockfrost/blockfrost-python"; - license = licenses.asl20; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aciceri ]; }; } diff --git a/pkgs/development/python-modules/blocksat-cli/default.nix b/pkgs/development/python-modules/blocksat-cli/default.nix index aee1deb15c52..3bf3371badb8 100644 --- a/pkgs/development/python-modules/blocksat-cli/default.nix +++ b/pkgs/development/python-modules/blocksat-cli/default.nix @@ -66,12 +66,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "blocksatcli" ]; - meta = with lib; { + meta = { description = "Blockstream Satellite CLI"; homepage = "https://github.com/Blockstream/satellite"; changelog = "https://github.com/Blockstream/satellite/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ prusnak ]; mainProgram = "blocksat-cli"; }; } diff --git a/pkgs/development/python-modules/bloodhound-py/default.nix b/pkgs/development/python-modules/bloodhound-py/default.nix index 6441ca7f94af..a7f71a1c241b 100644 --- a/pkgs/development/python-modules/bloodhound-py/default.nix +++ b/pkgs/development/python-modules/bloodhound-py/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bloodhound" ]; - meta = with lib; { + meta = { description = "Python based ingestor for BloodHound, based on Impacket"; mainProgram = "bloodhound-python"; homepage = "https://github.com/dirkjanm/BloodHound.py"; - license = licenses.mit; - maintainers = with maintainers; [ exploitoverload ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ exploitoverload ]; }; } diff --git a/pkgs/development/python-modules/blosc2/default.nix b/pkgs/development/python-modules/blosc2/default.nix index cec75daa220c..96acacf62d25 100644 --- a/pkgs/development/python-modules/blosc2/default.nix +++ b/pkgs/development/python-modules/blosc2/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { passthru.c-blosc2 = c-blosc2; - meta = with lib; { + meta = { description = "Python wrapper for the extremely fast Blosc2 compression library"; homepage = "https://github.com/Blosc/python-blosc2"; changelog = "https://github.com/Blosc/python-blosc2/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/bluemaestro-ble/default.nix b/pkgs/development/python-modules/bluemaestro-ble/default.nix index ee5f8e8b274a..490df29f727f 100644 --- a/pkgs/development/python-modules/bluemaestro-ble/default.nix +++ b/pkgs/development/python-modules/bluemaestro-ble/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bluemaestro_ble" ]; - meta = with lib; { + meta = { description = "Library for bluemaestro BLE devices"; homepage = "https://github.com/Bluetooth-Devices/bluemaestro-ble"; changelog = "https://github.com/Bluetooth-Devices/bluemaestro-ble/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bluepy-devices/default.nix b/pkgs/development/python-modules/bluepy-devices/default.nix index 85bce7b2c85d..ea87fd9d0ca2 100644 --- a/pkgs/development/python-modules/bluepy-devices/default.nix +++ b/pkgs/development/python-modules/bluepy-devices/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "bluepy_devices" ]; - meta = with lib; { + meta = { description = "Python BTLE Device Interface for bluepy"; homepage = "https://github.com/bimbar/bluepy_devices"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bluepy/default.nix b/pkgs/development/python-modules/bluepy/default.nix index 4a3256836c67..194a2ecd830c 100644 --- a/pkgs/development/python-modules/bluepy/default.nix +++ b/pkgs/development/python-modules/bluepy/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "bluepy" ]; - meta = with lib; { + meta = { description = "Python interface to Bluetooth LE on Linux"; homepage = "https://github.com/IanHarvey/bluepy"; - maintainers = with maintainers; [ georgewhewell ]; - platforms = platforms.linux; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ georgewhewell ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/bluetooth-auto-recovery/default.nix b/pkgs/development/python-modules/bluetooth-auto-recovery/default.nix index 5ba6a6b19caf..a61f5f6a23dc 100644 --- a/pkgs/development/python-modules/bluetooth-auto-recovery/default.nix +++ b/pkgs/development/python-modules/bluetooth-auto-recovery/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bluetooth_auto_recovery" ]; - meta = with lib; { + meta = { description = "Library for recovering Bluetooth adapters"; homepage = "https://github.com/Bluetooth-Devices/bluetooth-auto-recovery"; changelog = "https://github.com/Bluetooth-Devices/bluetooth-auto-recovery/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bluetooth-data-tools/default.nix b/pkgs/development/python-modules/bluetooth-data-tools/default.nix index f3479add8be5..c5f281c34f25 100644 --- a/pkgs/development/python-modules/bluetooth-data-tools/default.nix +++ b/pkgs/development/python-modules/bluetooth-data-tools/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bluetooth_data_tools" ]; - meta = with lib; { + meta = { description = "Library for converting bluetooth data and packets"; homepage = "https://github.com/Bluetooth-Devices/bluetooth-data-tools"; changelog = "https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bluetooth-sensor-state-data/default.nix b/pkgs/development/python-modules/bluetooth-sensor-state-data/default.nix index b52ab776cbfc..9a6376896df1 100644 --- a/pkgs/development/python-modules/bluetooth-sensor-state-data/default.nix +++ b/pkgs/development/python-modules/bluetooth-sensor-state-data/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bluetooth_sensor_state_data" ]; - meta = with lib; { + meta = { description = "Models for storing and converting Bluetooth Sensor State Data"; homepage = "https://github.com/bluetooth-devices/bluetooth-sensor-state-data"; changelog = "https://github.com/Bluetooth-Devices/bluetooth-sensor-state-data/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bme280spi/default.nix b/pkgs/development/python-modules/bme280spi/default.nix index 4fb429cd6d92..dcd043ecf8a2 100644 --- a/pkgs/development/python-modules/bme280spi/default.nix +++ b/pkgs/development/python-modules/bme280spi/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { description = "Library for BME280 sensor through spidev"; mainProgram = "bme280spi"; homepage = "https://github.com/Kuzj/bme280spi"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/bme680/default.nix b/pkgs/development/python-modules/bme680/default.nix index b3b54d8358d1..6c01bacba19b 100644 --- a/pkgs/development/python-modules/bme680/default.nix +++ b/pkgs/development/python-modules/bme680/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bme680" ]; - meta = with lib; { + meta = { description = "Python library for driving the Pimoroni BME680 Breakout"; homepage = "https://github.com/pimoroni/bme680-python"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/bnnumerizer/default.nix b/pkgs/development/python-modules/bnnumerizer/default.nix index 830ede49f963..f9a6a36daa4a 100644 --- a/pkgs/development/python-modules/bnnumerizer/default.nix +++ b/pkgs/development/python-modules/bnnumerizer/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # https://github.com/mnansary/bnUnicodeNormalizer/issues/10 doCheck = false; - meta = with lib; { + meta = { description = "Bangla Number text to String Converter"; homepage = "https://github.com/banglakit/number-to-bengali-word"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/bnunicodenormalizer/default.nix b/pkgs/development/python-modules/bnunicodenormalizer/default.nix index a54f933a4baf..8fad4c84e598 100644 --- a/pkgs/development/python-modules/bnunicodenormalizer/default.nix +++ b/pkgs/development/python-modules/bnunicodenormalizer/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bnunicodenormalizer" ]; - meta = with lib; { + meta = { description = "Bangla Unicode Normalization Toolkit"; homepage = "https://github.com/mnansary/bnUnicodeNormalizer"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/boiboite-opener-framework/default.nix b/pkgs/development/python-modules/boiboite-opener-framework/default.nix index c35da5090118..b4d174b6ea0c 100644 --- a/pkgs/development/python-modules/boiboite-opener-framework/default.nix +++ b/pkgs/development/python-modules/boiboite-opener-framework/default.nix @@ -70,12 +70,12 @@ buildPythonPackage rec { "test_0802_search_valid" ]; - meta = with lib; { + meta = { description = "Testing framework for industrial protocols implementations and devices"; homepage = "https://github.com/Orange-Cyberdefense/bof"; changelog = "https://github.com/Orange-Cyberdefense/bof/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/boilerpy3/default.nix b/pkgs/development/python-modules/boilerpy3/default.nix index 7c2e5027474c..222a3ed131c5 100644 --- a/pkgs/development/python-modules/boilerpy3/default.nix +++ b/pkgs/development/python-modules/boilerpy3/default.nix @@ -30,11 +30,11 @@ buildPythonPackage { pythonImportsCheck = [ "boilerpy3" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jmriebold/BoilerPy3"; description = "Python port of Boilerpipe library"; changelog = "https://github.com/jmriebold/BoilerPy3/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/boltons/default.nix b/pkgs/development/python-modules/boltons/default.nix index 0f19424445c9..cd599d8126be 100644 --- a/pkgs/development/python-modules/boltons/default.nix +++ b/pkgs/development/python-modules/boltons/default.nix @@ -30,7 +30,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "boltons" ]; - meta = with lib; { + meta = { description = "Constructs, recipes, and snippets extending the Python standard library"; longDescription = '' Boltons is a set of over 200 BSD-licensed, pure-Python utilities @@ -49,7 +49,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/mahmoud/boltons"; changelog = "https://github.com/mahmoud/boltons/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/boltztrap2/default.nix b/pkgs/development/python-modules/boltztrap2/default.nix index 56581c0981b8..a2b1b15bf848 100644 --- a/pkgs/development/python-modules/boltztrap2/default.nix +++ b/pkgs/development/python-modules/boltztrap2/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { "test_fitde3D_saved_noder" ]; - meta = with lib; { + meta = { description = "Band-structure interpolator and transport coefficient calculator"; mainProgram = "btp2"; homepage = "http://www.boltztrap.org/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bond-api/default.nix b/pkgs/development/python-modules/bond-api/default.nix index 2131fa0bfb2d..ce46d4abacc4 100644 --- a/pkgs/development/python-modules/bond-api/default.nix +++ b/pkgs/development/python-modules/bond-api/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bond_api" ]; - meta = with lib; { + meta = { description = "Asynchronous Python wrapper library over Bond Local API"; homepage = "https://github.com/prystupa/bond-api"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/bond-async/default.nix b/pkgs/development/python-modules/bond-async/default.nix index 94a593a89d44..98b5945c49a4 100644 --- a/pkgs/development/python-modules/bond-async/default.nix +++ b/pkgs/development/python-modules/bond-async/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bond_async" ]; - meta = with lib; { + meta = { description = "Asynchronous Python wrapper library over Bond Local API"; homepage = "https://github.com/bondhome/bond-async"; changelog = "https://github.com/bondhome/bond-async/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/boolean-py/default.nix b/pkgs/development/python-modules/boolean-py/default.nix index 6b279372e97d..e1df13e2b371 100644 --- a/pkgs/development/python-modules/boolean-py/default.nix +++ b/pkgs/development/python-modules/boolean-py/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "boolean" ]; - meta = with lib; { + meta = { description = "Implements boolean algebra in one module"; homepage = "https://github.com/bastikr/boolean.py"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bork/default.nix b/pkgs/development/python-modules/bork/default.nix index 44060463c25f..5efaf9bcd381 100644 --- a/pkgs/development/python-modules/bork/default.nix +++ b/pkgs/development/python-modules/bork/default.nix @@ -66,11 +66,11 @@ buildPythonPackage rec { passthru.tests = callPackage ./tests.nix { }; - meta = with lib; { + meta = { description = "Python build and release management tool"; mainProgram = "bork"; homepage = "https://github.com/duckinator/bork"; - license = licenses.mit; - maintainers = with maintainers; [ nicoo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicoo ]; }; } diff --git a/pkgs/development/python-modules/boschshcpy/default.nix b/pkgs/development/python-modules/boschshcpy/default.nix index 93b76a8b7dcd..866d9da0bdbc 100644 --- a/pkgs/development/python-modules/boschshcpy/default.nix +++ b/pkgs/development/python-modules/boschshcpy/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "boschshcpy" ]; - meta = with lib; { + meta = { description = "Python module to work with the Bosch Smart Home Controller API"; homepage = "https://github.com/tschamm/boschshcpy"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/boto3-stubs/default.nix b/pkgs/development/python-modules/boto3-stubs/default.nix index 190536103055..56f25a6e0cd4 100644 --- a/pkgs/development/python-modules/boto3-stubs/default.nix +++ b/pkgs/development/python-modules/boto3-stubs/default.nix @@ -1090,11 +1090,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "boto3-stubs" ]; - meta = with lib; { + meta = { description = "Type annotations for boto3"; homepage = "https://pypi.org/project/boto3-stubs/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab mbalatsko ]; diff --git a/pkgs/development/python-modules/botocore-stubs/default.nix b/pkgs/development/python-modules/botocore-stubs/default.nix index fe670420f369..db88b9c37111 100644 --- a/pkgs/development/python-modules/botocore-stubs/default.nix +++ b/pkgs/development/python-modules/botocore-stubs/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "botocore-stubs" ]; - meta = with lib; { + meta = { description = "Type annotations and code completion for botocore"; homepage = "https://pypi.org/project/botocore-stubs/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bottle/default.nix b/pkgs/development/python-modules/bottle/default.nix index 72df474668ac..8c7d962139f1 100644 --- a/pkgs/development/python-modules/bottle/default.nix +++ b/pkgs/development/python-modules/bottle/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { homepage = "https://bottlepy.org/"; description = "Fast and simple micro-framework for small web-applications"; mainProgram = "bottle.py"; downloadPage = "https://github.com/bottlepy/bottle"; - license = licenses.mit; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/bottleneck/default.nix b/pkgs/development/python-modules/bottleneck/default.nix index 80c81e842403..fada6d965ddb 100644 --- a/pkgs/development/python-modules/bottleneck/default.nix +++ b/pkgs/development/python-modules/bottleneck/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bottleneck" ]; - meta = with lib; { + meta = { description = "Fast NumPy array functions"; homepage = "https://github.com/pydata/bottleneck"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bottombar/default.nix b/pkgs/development/python-modules/bottombar/default.nix index b3c82bc66d5e..625157ca17b9 100644 --- a/pkgs/development/python-modules/bottombar/default.nix +++ b/pkgs/development/python-modules/bottombar/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "bottombar" ]; - meta = with lib; { + meta = { description = "Context manager that prints a status line at the bottom of a terminal window"; homepage = "https://github.com/evalf/bottombar"; changelog = "https://github.com/evalf/bottombar/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ conni2461 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ conni2461 ]; }; } diff --git a/pkgs/development/python-modules/bpemb/default.nix b/pkgs/development/python-modules/bpemb/default.nix index 03f4ae1cd216..570b52d46e8f 100644 --- a/pkgs/development/python-modules/bpemb/default.nix +++ b/pkgs/development/python-modules/bpemb/default.nix @@ -39,10 +39,10 @@ buildPythonPackage { pythonImportsCheck = [ "bpemb" ]; - meta = with lib; { + meta = { description = "Byte-pair embeddings in 275 languages"; homepage = "https://github.com/bheinzerling/bpemb"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/bpython/default.nix b/pkgs/development/python-modules/bpython/default.nix index f6e22a704a62..d71befaa6011 100644 --- a/pkgs/development/python-modules/bpython/default.nix +++ b/pkgs/development/python-modules/bpython/default.nix @@ -68,12 +68,12 @@ buildPythonPackage rec { rev-suffix = "-release"; }; - meta = with lib; { + meta = { changelog = "https://github.com/bpython/bpython/blob/${src.tag}/CHANGELOG.rst"; description = "Fancy curses interface to the Python interactive interpreter"; homepage = "https://bpython-interpreter.org/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli dotlambda ]; diff --git a/pkgs/development/python-modules/bracex/default.nix b/pkgs/development/python-modules/bracex/default.nix index da150d316a10..45a9a0758148 100644 --- a/pkgs/development/python-modules/bracex/default.nix +++ b/pkgs/development/python-modules/bracex/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bracex" ]; - meta = with lib; { + meta = { description = "Bash style brace expansion for Python"; homepage = "https://github.com/facelessuser/bracex"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/branca/default.nix b/pkgs/development/python-modules/branca/default.nix index af8da029044f..2f06b8ebd87a 100644 --- a/pkgs/development/python-modules/branca/default.nix +++ b/pkgs/development/python-modules/branca/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { "test_rendering_figure_notebook" ]; - meta = with lib; { + meta = { description = "Generate complex HTML+JS pages with Python"; homepage = "https://github.com/python-visualization/branca"; changelog = "https://github.com/python-visualization/branca/blob/v${version}/CHANGES.txt"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bravado-core/default.nix b/pkgs/development/python-modules/bravado-core/default.nix index 59c8d3342852..871be40eb1d3 100644 --- a/pkgs/development/python-modules/bravado-core/default.nix +++ b/pkgs/development/python-modules/bravado-core/default.nix @@ -63,12 +63,12 @@ buildPythonPackage rec { "tests/spec/Spec" ]; - meta = with lib; { + meta = { description = "Library for adding Swagger support to clients and servers"; homepage = "https://github.com/Yelp/bravado-core"; changelog = "https://github.com/Yelp/bravado-core/blob/v${version}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vanschelven nickcao ]; diff --git a/pkgs/development/python-modules/bravia-tv/default.nix b/pkgs/development/python-modules/bravia-tv/default.nix index bde10650661e..4510465997c9 100644 --- a/pkgs/development/python-modules/bravia-tv/default.nix +++ b/pkgs/development/python-modules/bravia-tv/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bravia_tv" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dcnielsen90/python-bravia-tv"; description = "Python library for Sony Bravia TV remote control"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/breezy/default.nix b/pkgs/development/python-modules/breezy/default.nix index a46d611f18ea..28db0b8cb0ed 100644 --- a/pkgs/development/python-modules/breezy/default.nix +++ b/pkgs/development/python-modules/breezy/default.nix @@ -118,7 +118,7 @@ buildPythonPackage rec { description = "Friendly distributed version control system"; homepage = "https://www.breezy-vcs.org/"; changelog = "https://github.com/breezy-team/breezy/blob/${src.rev}/doc/en/release-notes/brz-${versions.majorMinor version}.txt"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; mainProgram = "brz"; }; diff --git a/pkgs/development/python-modules/brelpy/default.nix b/pkgs/development/python-modules/brelpy/default.nix index b5edbe1e1aef..b36af0e4e93a 100644 --- a/pkgs/development/python-modules/brelpy/default.nix +++ b/pkgs/development/python-modules/brelpy/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "brelpy" ]; - meta = with lib; { + meta = { description = "Python to communicate with the Brel hubs"; homepage = "https://gitlab.com/rogiervandergeer/brelpy"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bring-api/default.nix b/pkgs/development/python-modules/bring-api/default.nix index 54a0053847b7..d2e61e91f91d 100644 --- a/pkgs/development/python-modules/bring-api/default.nix +++ b/pkgs/development/python-modules/bring-api/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bring_api" ]; - meta = with lib; { + meta = { description = "Module to access the Bring! shopping lists API"; homepage = "https://github.com/miaucl/bring-api"; changelog = "https://github.com/miaucl/bring-api/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/broadlink/default.nix b/pkgs/development/python-modules/broadlink/default.nix index 5f294fc24dfc..eb8404824c48 100644 --- a/pkgs/development/python-modules/broadlink/default.nix +++ b/pkgs/development/python-modules/broadlink/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "broadlink" ]; - meta = with lib; { + meta = { description = "Python API for controlling Broadlink IR controllers"; homepage = "https://github.com/mjg59/python-broadlink"; changelog = "https://github.com/mjg59/python-broadlink/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/brother-ql/default.nix b/pkgs/development/python-modules/brother-ql/default.nix index ec12adaa7f28..76be4ffc4631 100644 --- a/pkgs/development/python-modules/brother-ql/default.nix +++ b/pkgs/development/python-modules/brother-ql/default.nix @@ -34,15 +34,15 @@ buildPythonPackage rec { jsons ]; - meta = with lib; { + meta = { description = "Python package for the raster language protocol of the Brother QL series label printers"; longDescription = '' Python package for the raster language protocol of the Brother QL series label printers (QL-500, QL-550, QL-570, QL-700, QL-710W, QL-720NW, QL-800, QL-820NWB, QL-1050 and more) ''; homepage = "https://github.com/LunarEclipse363/brother_ql_next"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ grahamc ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ grahamc ]; mainProgram = "brother_ql"; }; } diff --git a/pkgs/development/python-modules/brother/default.nix b/pkgs/development/python-modules/brother/default.nix index a27660e90410..19c121c08e5f 100644 --- a/pkgs/development/python-modules/brother/default.nix +++ b/pkgs/development/python-modules/brother/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "brother" ]; - meta = with lib; { + meta = { description = "Python wrapper for getting data from Brother laser and inkjet printers via SNMP"; homepage = "https://github.com/bieniu/brother"; changelog = "https://github.com/bieniu/brother/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/brotli-asgi/default.nix b/pkgs/development/python-modules/brotli-asgi/default.nix index 5f96e62edc5a..ea763a57f640 100644 --- a/pkgs/development/python-modules/brotli-asgi/default.nix +++ b/pkgs/development/python-modules/brotli-asgi/default.nix @@ -43,10 +43,10 @@ buildPythonPackage { brotlipy ]; - meta = with lib; { + meta = { description = "Compression AGSI middleware using brotli"; homepage = "https://github.com/fullonic/brotli-asgi"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/brotlicffi/default.nix b/pkgs/development/python-modules/brotlicffi/default.nix index a581f738be4b..7f7171a6ebb9 100644 --- a/pkgs/development/python-modules/brotlicffi/default.nix +++ b/pkgs/development/python-modules/brotlicffi/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "brotlicffi" ]; - meta = with lib; { + meta = { description = "Python CFFI bindings to the Brotli library"; homepage = "https://github.com/python-hyper/brotlicffi"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/brottsplatskartan/default.nix b/pkgs/development/python-modules/brottsplatskartan/default.nix index 4df1f84bce77..6dd41b9c60cc 100644 --- a/pkgs/development/python-modules/brottsplatskartan/default.nix +++ b/pkgs/development/python-modules/brottsplatskartan/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "brottsplatskartan" ]; - meta = with lib; { + meta = { description = "Python API wrapper for brottsplatskartan.se"; homepage = "https://github.com/chrillux/brottsplatskartan"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/browser-cookie3/default.nix b/pkgs/development/python-modules/browser-cookie3/default.nix index 0d7b62cccd82..2e130b0daf35 100644 --- a/pkgs/development/python-modules/browser-cookie3/default.nix +++ b/pkgs/development/python-modules/browser-cookie3/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "browser_cookie3" ]; - meta = with lib; { + meta = { description = "Loads cookies from your browser into a cookiejar object"; homepage = "https://github.com/borisbabic/browser_cookie3"; changelog = "https://github.com/borisbabic/browser_cookie3/blob/master/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ borisbabic ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ borisbabic ]; }; } diff --git a/pkgs/development/python-modules/bsddb3/default.nix b/pkgs/development/python-modules/bsddb3/default.nix index af25971df03b..b2413d2f9359 100644 --- a/pkgs/development/python-modules/bsddb3/default.nix +++ b/pkgs/development/python-modules/bsddb3/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { ${python.interpreter} test.py ''; - meta = with lib; { + meta = { description = "Python bindings for Oracle Berkeley DB"; homepage = "https://www.jcea.es/programacion/pybsddb.htm"; - license = with licenses; [ agpl3Only ]; # License changed from bsd3 to agpl3 since 6.x + license = with lib.licenses; [ agpl3Only ]; # License changed from bsd3 to agpl3 since 6.x maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bsdiff4/default.nix b/pkgs/development/python-modules/bsdiff4/default.nix index 26229e3b9e5d..24a95634431b 100644 --- a/pkgs/development/python-modules/bsdiff4/default.nix +++ b/pkgs/development/python-modules/bsdiff4/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { python -c 'import bsdiff4; bsdiff4.test()' ''; - meta = with lib; { + meta = { description = "Binary diff and patch using the BSDIFF4-format"; homepage = "https://github.com/ilanschnell/bsdiff4"; changelog = "https://github.com/ilanschnell/bsdiff4/blob/${version}/CHANGELOG.txt"; - license = licenses.bsdProtection; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.bsdProtection; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/bson/default.nix b/pkgs/development/python-modules/bson/default.nix index 961a1f4d94f4..c7fc3443f7c5 100644 --- a/pkgs/development/python-modules/bson/default.nix +++ b/pkgs/development/python-modules/bson/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bson" ]; - meta = with lib; { + meta = { description = "BSON codec for Python"; homepage = "https://github.com/py-bson/bson"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bsuite/default.nix b/pkgs/development/python-modules/bsuite/default.nix index 71fed05fce76..d415ecc48e33 100644 --- a/pkgs/development/python-modules/bsuite/default.nix +++ b/pkgs/development/python-modules/bsuite/default.nix @@ -114,12 +114,12 @@ let }); }; - meta = with lib; { + meta = { description = "Collection of experiments that investigate core capabilities of a reinforcement learning (RL) agent"; homepage = "https://github.com/deepmind/bsuite"; changelog = "https://github.com/google-deepmind/bsuite/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ onny ]; }; }; in diff --git a/pkgs/development/python-modules/bt-proximity/default.nix b/pkgs/development/python-modules/bt-proximity/default.nix index 548c69d4e14d..d153cd94a6b0 100644 --- a/pkgs/development/python-modules/bt-proximity/default.nix +++ b/pkgs/development/python-modules/bt-proximity/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bt_proximity" ]; - meta = with lib; { + meta = { description = "Bluetooth Proximity Detection using Python"; homepage = "https://github.com/FrederikBolding/bluetooth-proximity"; - maintainers = with maintainers; [ peterhoeg ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ peterhoeg ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/btchip-python/default.nix b/pkgs/development/python-modules/btchip-python/default.nix index a15708b79394..0f6da29efb8a 100644 --- a/pkgs/development/python-modules/btchip-python/default.nix +++ b/pkgs/development/python-modules/btchip-python/default.nix @@ -35,9 +35,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "btchip.btchip" ]; - meta = with lib; { + meta = { description = "Python communication library for Ledger Hardware Wallet products"; homepage = "https://github.com/LedgerHQ/btchip-python"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/btest/default.nix b/pkgs/development/python-modules/btest/default.nix index 61c4c29b765f..66bbe0e0fc5a 100644 --- a/pkgs/development/python-modules/btest/default.nix +++ b/pkgs/development/python-modules/btest/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { # No tests available and no module to import doCheck = false; - meta = with lib; { + meta = { description = "Generic Driver for Powerful System Tests"; homepage = "https://github.com/zeek/btest"; changelog = "https://github.com/zeek/btest/blob/${src.tag}/CHANGES"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bthome-ble/default.nix b/pkgs/development/python-modules/bthome-ble/default.nix index a39d79049575..09b74d9c8a3c 100644 --- a/pkgs/development/python-modules/bthome-ble/default.nix +++ b/pkgs/development/python-modules/bthome-ble/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bthome_ble" ]; - meta = with lib; { + meta = { description = "Library for BThome BLE devices"; homepage = "https://github.com/Bluetooth-Devices/bthome-ble"; changelog = "https://github.com/bluetooth-devices/bthome-ble/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/btrees/default.nix b/pkgs/development/python-modules/btrees/default.nix index 9213248b67cb..44c72f99228e 100644 --- a/pkgs/development/python-modules/btrees/default.nix +++ b/pkgs/development/python-modules/btrees/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "BTrees.IFBTree" ]; - meta = with lib; { + meta = { description = "Scalable persistent components"; homepage = "http://packages.python.org/BTrees"; changelog = "https://github.com/zopefoundation/BTrees/blob/${version}/CHANGES.rst"; - license = licenses.zpl21; + license = lib.licenses.zpl21; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/btrfs/default.nix b/pkgs/development/python-modules/btrfs/default.nix index abd382c68aba..4715b96c9d06 100644 --- a/pkgs/development/python-modules/btrfs/default.nix +++ b/pkgs/development/python-modules/btrfs/default.nix @@ -18,12 +18,12 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "btrfs" ]; - meta = with lib; { + meta = { description = "Inspect btrfs filesystems"; homepage = "https://github.com/knorrie/python-btrfs"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Luflosi ]; }; diff --git a/pkgs/development/python-modules/btrfsutil/default.nix b/pkgs/development/python-modules/btrfsutil/default.nix index e5dcabfecb2d..753ce5be3759 100644 --- a/pkgs/development/python-modules/btrfsutil/default.nix +++ b/pkgs/development/python-modules/btrfsutil/default.nix @@ -39,11 +39,11 @@ buildPythonPackage { doCheck = false; pythonImportsCheck = [ "btrfsutil" ]; - meta = with lib; { + meta = { description = "Library for managing Btrfs filesystems"; homepage = "https://btrfs.wiki.kernel.org/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ raskin lopsided98 ]; diff --git a/pkgs/development/python-modules/btsmarthub-devicelist/default.nix b/pkgs/development/python-modules/btsmarthub-devicelist/default.nix index e55dd620e4e3..aebbdf78bb80 100644 --- a/pkgs/development/python-modules/btsmarthub-devicelist/default.nix +++ b/pkgs/development/python-modules/btsmarthub-devicelist/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { disabledTests = [ "test_btsmarthub2_detection_neither_router_present" ]; - meta = with lib; { + meta = { description = "Retrieve a list of devices from a bt smarthub or bt smarthub 2 on a local network"; homepage = "https://github.com/jxwolstenholme/btsmarthub_devicelist"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/btsocket/default.nix b/pkgs/development/python-modules/btsocket/default.nix index a11b49bb4d96..ffa461eb1af2 100644 --- a/pkgs/development/python-modules/btsocket/default.nix +++ b/pkgs/development/python-modules/btsocket/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "btsocket" ]; - meta = with lib; { + meta = { description = "Library to interact with the Bluez Bluetooth Management API"; homepage = "https://github.com/ukBaz/python-btsocket"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bubop/default.nix b/pkgs/development/python-modules/bubop/default.nix index 9c6c39fd25d2..bf0d2f760925 100644 --- a/pkgs/development/python-modules/bubop/default.nix +++ b/pkgs/development/python-modules/bubop/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bubop" ]; - meta = with lib; { + meta = { description = "Bergercookie's Useful Bits Of Python; helper libraries for Bergercookie's programs"; homepage = "https://github.com/bergercookie/bubop"; changelog = "https://github.com/bergercookie/bubop/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/bucketstore/default.nix b/pkgs/development/python-modules/bucketstore/default.nix index 71b7e1ec545a..f94e5f48ee1a 100644 --- a/pkgs/development/python-modules/bucketstore/default.nix +++ b/pkgs/development/python-modules/bucketstore/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bucketstore" ]; - meta = with lib; { + meta = { description = "Library for interacting with Amazon S3"; homepage = "https://github.com/jpetrucciani/bucketstore"; changelog = "https://github.com/jpetrucciani/bucketstore/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/bugsnag/default.nix b/pkgs/development/python-modules/bugsnag/default.nix index b9f416619acc..d209d50b31f4 100644 --- a/pkgs/development/python-modules/bugsnag/default.nix +++ b/pkgs/development/python-modules/bugsnag/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Automatic error monitoring for Python applications"; homepage = "https://github.com/bugsnag/bugsnag-python"; changelog = "https://github.com/bugsnag/bugsnag-python/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bugwarrior/default.nix b/pkgs/development/python-modules/bugwarrior/default.nix index 6510ce721f6c..52049e3e619a 100644 --- a/pkgs/development/python-modules/bugwarrior/default.nix +++ b/pkgs/development/python-modules/bugwarrior/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { # for the moment oauth2client <4.0.0 and megaplan>=1.4 are missing for running the test suite. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/GothenburgBitFactory/bugwarrior"; description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pierron ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pierron ]; }; } diff --git a/pkgs/development/python-modules/buienradar/default.nix b/pkgs/development/python-modules/buienradar/default.nix index e068e0655bf9..1c6bbdb29d0b 100644 --- a/pkgs/development/python-modules/buienradar/default.nix +++ b/pkgs/development/python-modules/buienradar/default.nix @@ -67,12 +67,12 @@ buildPythonPackage rec { "buienradar.constants" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mjj4791/python-buienradar/blob/${src.tag}/CHANGLOG.rst"; description = "Library and CLI tools for interacting with buienradar"; mainProgram = "buienradar"; homepage = "https://github.com/mjj4791/python-buienradar"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/build/default.nix b/pkgs/development/python-modules/build/default.nix index 61a426b2cf28..0fefab4aba17 100644 --- a/pkgs/development/python-modules/build/default.nix +++ b/pkgs/development/python-modules/build/default.nix @@ -94,7 +94,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "build" ]; - meta = with lib; { + meta = { mainProgram = "pyproject-build"; description = "Simple, correct PEP517 package builder"; longDescription = '' @@ -103,8 +103,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/pypa/build"; changelog = "https://github.com/pypa/build/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = [ maintainers.fab ]; - teams = [ teams.python ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.fab ]; + teams = [ lib.teams.python ]; }; } diff --git a/pkgs/development/python-modules/buildcatrust/default.nix b/pkgs/development/python-modules/buildcatrust/default.nix index c8d57ce48032..957b0a7c41fc 100644 --- a/pkgs/development/python-modules/buildcatrust/default.nix +++ b/pkgs/development/python-modules/buildcatrust/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { "buildcatrust.cli" ]; - meta = with lib; { + meta = { description = "Build SSL/TLS trust stores"; mainProgram = "buildcatrust"; homepage = "https://github.com/lukegb/buildcatrust"; - license = licenses.mit; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukegb ]; }; } diff --git a/pkgs/development/python-modules/bump2version/default.nix b/pkgs/development/python-modules/bump2version/default.nix index 4c589259b91e..d4ada6ebea2e 100644 --- a/pkgs/development/python-modules/bump2version/default.nix +++ b/pkgs/development/python-modules/bump2version/default.nix @@ -38,7 +38,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "bumpversion" ]; - meta = with lib; { + meta = { description = "Version-bump your software with a single command"; longDescription = '' A small command line tool to simplify releasing software by updating @@ -46,7 +46,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/c4urself/bump2version"; changelog = "https://github.com/c4urself/bump2version/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ jefflabonte ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jefflabonte ]; }; } diff --git a/pkgs/development/python-modules/bumps/default.nix b/pkgs/development/python-modules/bumps/default.nix index 7546c5228d2b..66d96ec78fd1 100644 --- a/pkgs/development/python-modules/bumps/default.nix +++ b/pkgs/development/python-modules/bumps/default.nix @@ -61,12 +61,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "bumps" ]; - meta = with lib; { + meta = { description = "Data fitting with bayesian uncertainty analysis"; mainProgram = "bumps"; homepage = "https://bumps.readthedocs.io/"; changelog = "https://github.com/bumps/bumps/releases/tag/v${version}"; - license = licenses.publicDomain; - maintainers = with maintainers; [ rprospero ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ rprospero ]; }; } diff --git a/pkgs/development/python-modules/bundlewrap-keepass/default.nix b/pkgs/development/python-modules/bundlewrap-keepass/default.nix index d69580a00de0..e207b1ca8be8 100644 --- a/pkgs/development/python-modules/bundlewrap-keepass/default.nix +++ b/pkgs/development/python-modules/bundlewrap-keepass/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bwkeepass" ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/bundlewrap-keepass"; description = "Use secrets from keepass in your BundleWrap repo"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bundlewrap-pass/default.nix b/pkgs/development/python-modules/bundlewrap-pass/default.nix index 40014fbe6587..e9f2e90cec75 100644 --- a/pkgs/development/python-modules/bundlewrap-pass/default.nix +++ b/pkgs/development/python-modules/bundlewrap-pass/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bwpass" ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/bundlewrap-pass"; description = "Use secrets from pass in your BundleWrap repo"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bundlewrap-teamvault/default.nix b/pkgs/development/python-modules/bundlewrap-teamvault/default.nix index cf13c2730203..cdff1290a573 100644 --- a/pkgs/development/python-modules/bundlewrap-teamvault/default.nix +++ b/pkgs/development/python-modules/bundlewrap-teamvault/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bwtv" ]; - meta = with lib; { + meta = { homepage = "https://github.com/trehn/bundlewrap-teamvault"; description = "Pull secrets from TeamVault into your BundleWrap repo"; - license = [ licenses.gpl3 ]; + license = [ lib.licenses.gpl3 ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/busylight-for-humans/default.nix b/pkgs/development/python-modules/busylight-for-humans/default.nix index b0018008f1f7..6b9742daf472 100644 --- a/pkgs/development/python-modules/busylight-for-humans/default.nix +++ b/pkgs/development/python-modules/busylight-for-humans/default.nix @@ -66,12 +66,12 @@ buildPythonPackage rec { $out/bin/busylight udev-rules -o $out/lib/udev/rules.d/99-busylight.rules ''; - meta = with lib; { + meta = { description = "Control USB connected presence lights from multiple vendors via the command-line or web API"; homepage = "https://github.com/JnyJny/busylight"; changelog = "https://github.com/JnyJny/busylight/releases/tag/${src.tag}"; - license = licenses.asl20; - teams = [ teams.helsinki-systems ]; + license = lib.licenses.asl20; + teams = [ lib.teams.helsinki-systems ]; mainProgram = "busylight"; }; } diff --git a/pkgs/development/python-modules/busypie/default.nix b/pkgs/development/python-modules/busypie/default.nix index 261bfd3b4d43..8f89e61d7362 100644 --- a/pkgs/development/python-modules/busypie/default.nix +++ b/pkgs/development/python-modules/busypie/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "busypie" ]; - meta = with lib; { + meta = { description = "Expressive busy wait for Python"; homepage = "https://github.com/rockem/busypie"; changelog = "https://github.com/rockem/busypie/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/bwapy/default.nix b/pkgs/development/python-modules/bwapy/default.nix index 19e37b1eaf68..11b27dcfd2c5 100644 --- a/pkgs/development/python-modules/bwapy/default.nix +++ b/pkgs/development/python-modules/bwapy/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "bwapy" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ACEnglish/bwapy"; description = "Python bindings to bwa mem aligner"; mainProgram = "bwamempy"; - license = licenses.mpl20; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/bytecode/default.nix b/pkgs/development/python-modules/bytecode/default.nix index 44c5d26b298c..958f61e80cae 100644 --- a/pkgs/development/python-modules/bytecode/default.nix +++ b/pkgs/development/python-modules/bytecode/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bytecode" ]; - meta = with lib; { + meta = { homepage = "https://github.com/vstinner/bytecode"; description = "Python module to generate and modify bytecode"; - license = licenses.mit; - maintainers = with maintainers; [ raboof ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raboof ]; }; } diff --git a/pkgs/development/python-modules/cachecontrol/default.nix b/pkgs/development/python-modules/cachecontrol/default.nix index 5872bd68c6a9..c25d7f157eed 100644 --- a/pkgs/development/python-modules/cachecontrol/default.nix +++ b/pkgs/development/python-modules/cachecontrol/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cachecontrol" ]; - meta = with lib; { + meta = { description = "Httplib2 caching for requests"; mainProgram = "doesitcache"; homepage = "https://github.com/ionrock/cachecontrol"; changelog = "https://github.com/psf/cachecontrol/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/cached-ipaddress/default.nix b/pkgs/development/python-modules/cached-ipaddress/default.nix index 9777541d270b..8cbd78573f83 100644 --- a/pkgs/development/python-modules/cached-ipaddress/default.nix +++ b/pkgs/development/python-modules/cached-ipaddress/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cached_ipaddress" ]; - meta = with lib; { + meta = { description = "Cache construction of ipaddress objects"; homepage = "https://github.com/bdraco/cached-ipaddress"; changelog = "https://github.com/bdraco/cached-ipaddress/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cached-property/default.nix b/pkgs/development/python-modules/cached-property/default.nix index 141a2115c28c..546faaee990a 100644 --- a/pkgs/development/python-modules/cached-property/default.nix +++ b/pkgs/development/python-modules/cached-property/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cached_property" ]; - meta = with lib; { + meta = { description = "Decorator for caching properties in classes"; homepage = "https://github.com/pydanny/cached-property"; changelog = "https://github.com/pydanny/cached-property/releases/tag/${version}"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cachelib/default.nix b/pkgs/development/python-modules/cachelib/default.nix index 4296099f4987..a61eb6b19791 100644 --- a/pkgs/development/python-modules/cachelib/default.nix +++ b/pkgs/development/python-modules/cachelib/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cachelib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pallets/cachelib"; description = "Collection of cache libraries in the same API interface"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cachetools/default.nix b/pkgs/development/python-modules/cachetools/default.nix index 39923013689a..65f79584bd61 100644 --- a/pkgs/development/python-modules/cachetools/default.nix +++ b/pkgs/development/python-modules/cachetools/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cachetools" ]; - meta = with lib; { + meta = { description = "Extensible memoizing collections and decorators"; homepage = "https://github.com/tkem/cachetools"; changelog = "https://github.com/tkem/cachetools/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cachey/default.nix b/pkgs/development/python-modules/cachey/default.nix index 94301f1dfee7..30fdb8cac76b 100644 --- a/pkgs/development/python-modules/cachey/default.nix +++ b/pkgs/development/python-modules/cachey/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "cachey" ]; - meta = with lib; { + meta = { description = "Caching based on computation time and storage space"; homepage = "https://github.com/dask/cachey/"; - license = licenses.bsd3; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/cachy/default.nix b/pkgs/development/python-modules/cachy/default.nix index 7a6caad1f20a..c59ef70c938c 100644 --- a/pkgs/development/python-modules/cachy/default.nix +++ b/pkgs/development/python-modules/cachy/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # https://github.com/NixOS/nixpkgs/pull/53599#discussion_r245855665 doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/sdispater/cachy"; description = "Cachy provides a simple yet effective caching library"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/caio/default.nix b/pkgs/development/python-modules/caio/default.nix index be7dbc35ee8a..0334a6490a25 100644 --- a/pkgs/development/python-modules/caio/default.nix +++ b/pkgs/development/python-modules/caio/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "caio" ]; - meta = with lib; { + meta = { description = "File operations with asyncio support"; homepage = "https://github.com/mosquito/caio"; changelog = "https://github.com/mosquito/caio/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cairocffi/default.nix b/pkgs/development/python-modules/cairocffi/default.nix index 3ea6b438e158..193981b437ab 100644 --- a/pkgs/development/python-modules/cairocffi/default.nix +++ b/pkgs/development/python-modules/cairocffi/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { # It's surfaced as a Cairo "out of memory" error in tests. __impureHostDeps = [ "/System/Library/Fonts" ]; - meta = with lib; { + meta = { changelog = "https://github.com/Kozea/cairocffi/blob/v${version}/NEWS.rst"; homepage = "https://github.com/SimonSapin/cairocffi"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; description = "cffi-based cairo bindings for Python"; }; diff --git a/pkgs/development/python-modules/caldav/default.nix b/pkgs/development/python-modules/caldav/default.nix index e6835896bd1a..9db0bc009f54 100644 --- a/pkgs/development/python-modules/caldav/default.nix +++ b/pkgs/development/python-modules/caldav/default.nix @@ -68,12 +68,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "caldav" ]; - meta = with lib; { + meta = { description = "CalDAV (RFC4791) client library"; homepage = "https://github.com/python-caldav/caldav"; changelog = "https://github.com/python-caldav/caldav/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ marenz dotlambda ]; diff --git a/pkgs/development/python-modules/callee/default.nix b/pkgs/development/python-modules/callee/default.nix index 9bec7a99952f..be72751f1447 100644 --- a/pkgs/development/python-modules/callee/default.nix +++ b/pkgs/development/python-modules/callee/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Argument matchers for unittest.mock"; homepage = "https://github.com/Xion/callee"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/calmjs-types/default.nix b/pkgs/development/python-modules/calmjs-types/default.nix index 906b372572c8..1f0d792b4c1d 100644 --- a/pkgs/development/python-modules/calmjs-types/default.nix +++ b/pkgs/development/python-modules/calmjs-types/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "calmjs.types" ]; - meta = with lib; { + meta = { description = "Types for the calmjs framework"; homepage = "https://github.com/calmjs/calmjs.types"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/calmjs/default.nix b/pkgs/development/python-modules/calmjs/default.nix index 17471b936443..4a796bc24ab0 100644 --- a/pkgs/development/python-modules/calmjs/default.nix +++ b/pkgs/development/python-modules/calmjs/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "calmjs" ]; - meta = with lib; { + meta = { description = "Framework for building toolchains and utilities for working with the Node.js ecosystem"; mainProgram = "calmjs"; homepage = "https://github.com/calmjs/calmjs"; - license = licenses.gpl2; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/calysto-scheme/default.nix b/pkgs/development/python-modules/calysto-scheme/default.nix index c4690a7cb11a..4e3b16f50fa2 100644 --- a/pkgs/development/python-modules/calysto-scheme/default.nix +++ b/pkgs/development/python-modules/calysto-scheme/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "calysto_scheme" ]; - meta = with lib; { + meta = { description = "Scheme kernel for Jupyter that can use Python libraries"; homepage = "https://github.com/Calysto/calysto_scheme"; changelog = "https://github.com/Calysto/calysto_scheme/blob/${src.rev}/ChangeLog.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/development/python-modules/calysto/default.nix b/pkgs/development/python-modules/calysto/default.nix index 04d428e9e6fc..8016ecb7798f 100644 --- a/pkgs/development/python-modules/calysto/default.nix +++ b/pkgs/development/python-modules/calysto/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "calysto" ]; - meta = with lib; { + meta = { description = "Tools for Jupyter and Python"; homepage = "https://github.com/Calysto/calysto"; - license = licenses.bsd2; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/development/python-modules/camel-converter/default.nix b/pkgs/development/python-modules/camel-converter/default.nix index ffeddc47c06b..418c62096842 100644 --- a/pkgs/development/python-modules/camel-converter/default.nix +++ b/pkgs/development/python-modules/camel-converter/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "test_camel_config" ]; - meta = with lib; { + meta = { description = "Module to convert strings from snake case to camel case or camel case to snake case"; homepage = "https://github.com/sanders41/camel-converter"; changelog = "https://github.com/sanders41/camel-converter/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/camelot/default.nix b/pkgs/development/python-modules/camelot/default.nix index 9903faf21807..e084444b3380 100644 --- a/pkgs/development/python-modules/camelot/default.nix +++ b/pkgs/development/python-modules/camelot/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "camelot" ]; - meta = with lib; { + meta = { description = "Python library to extract tabular data from PDFs"; mainProgram = "camelot"; homepage = "http://camelot-py.readthedocs.io"; changelog = "https://github.com/camelot-dev/camelot/blob/v${version}/HISTORY.md"; - license = licenses.mit; - maintainers = with maintainers; [ _2gn ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _2gn ]; }; } diff --git a/pkgs/development/python-modules/can-isotp/default.nix b/pkgs/development/python-modules/can-isotp/default.nix index 8394559f72c4..58f4b463decd 100644 --- a/pkgs/development/python-modules/can-isotp/default.nix +++ b/pkgs/development/python-modules/can-isotp/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "isotp" ]; - meta = with lib; { + meta = { description = "Python package that provides support for ISO-TP (ISO-15765) protocol"; homepage = "https://github.com/pylessard/python-can-isotp"; changelog = "https://github.com/pylessard/python-can-isotp/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jacobkoziej ]; }; diff --git a/pkgs/development/python-modules/canals/default.nix b/pkgs/development/python-modules/canals/default.nix index fc7a32dc0fb4..511c4eb2aa12 100644 --- a/pkgs/development/python-modules/canals/default.nix +++ b/pkgs/development/python-modules/canals/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "canals" ]; - meta = with lib; { + meta = { description = "Component orchestration engine"; homepage = "https://github.com/deepset-ai/canals"; changelog = "https://github.com/deepset-ai/canals/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/canmatrix/default.nix b/pkgs/development/python-modules/canmatrix/default.nix index 94195acf6388..67155c73d943 100644 --- a/pkgs/development/python-modules/canmatrix/default.nix +++ b/pkgs/development/python-modules/canmatrix/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "canmatrix" ]; - meta = with lib; { + meta = { description = "Support and convert several CAN (Controller Area Network) database formats"; homepage = "https://github.com/ebroecker/canmatrix"; changelog = "https://github.com/ebroecker/canmatrix/releases/tag/${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ sorki ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ sorki ]; }; } diff --git a/pkgs/development/python-modules/canonicaljson/default.nix b/pkgs/development/python-modules/canonicaljson/default.nix index 2dffe4fbec02..0b68d3ff750c 100644 --- a/pkgs/development/python-modules/canonicaljson/default.nix +++ b/pkgs/development/python-modules/canonicaljson/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "canonicaljson" ]; - meta = with lib; { + meta = { description = "Encodes objects and arrays as RFC 7159 JSON"; homepage = "https://github.com/matrix-org/python-canonicaljson"; changelog = "https://github.com/matrix-org/python-canonicaljson/blob/v${version}/CHANGES.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/canopen/default.nix b/pkgs/development/python-modules/canopen/default.nix index 9b7cff62808c..e10f251b20dc 100644 --- a/pkgs/development/python-modules/canopen/default.nix +++ b/pkgs/development/python-modules/canopen/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "canopen" ]; - meta = with lib; { + meta = { description = "CANopen stack implementation"; homepage = "https://github.com/christiansandberg/canopen/"; changelog = "https://github.com/christiansandberg/canopen/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ sorki ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sorki ]; }; } diff --git a/pkgs/development/python-modules/cantools/default.nix b/pkgs/development/python-modules/cantools/default.nix index cf2f1a59990b..ab223979d0d8 100644 --- a/pkgs/development/python-modules/cantools/default.nix +++ b/pkgs/development/python-modules/cantools/default.nix @@ -51,12 +51,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cantools" ]; - meta = with lib; { + meta = { description = "Tools to work with CAN bus"; homepage = "https://github.com/cantools/cantools"; changelog = "https://github.com/cantools/cantools/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ gray-heron ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gray-heron ]; mainProgram = "cantools"; }; } diff --git a/pkgs/development/python-modules/capstone/4.nix b/pkgs/development/python-modules/capstone/4.nix index 5ce7392bc9f8..e11c9ef69952 100644 --- a/pkgs/development/python-modules/capstone/4.nix +++ b/pkgs/development/python-modules/capstone/4.nix @@ -44,11 +44,11 @@ buildPythonPackage { make check ''; - meta = with lib; { + meta = { homepage = "http://www.capstone-engine.org/"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; description = "Python bindings for Capstone disassembly engine"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bennofs ris ]; diff --git a/pkgs/development/python-modules/capstone/default.nix b/pkgs/development/python-modules/capstone/default.nix index fb69a60666fe..7d734da98a29 100644 --- a/pkgs/development/python-modules/capstone/default.nix +++ b/pkgs/development/python-modules/capstone/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { popd ''; - meta = with lib; { + meta = { homepage = "http://www.capstone-engine.org/"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; description = "Python bindings for Capstone disassembly engine"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bennofs ris ]; diff --git a/pkgs/development/python-modules/captcha/default.nix b/pkgs/development/python-modules/captcha/default.nix index 6fe5fcaaf9f0..cb71b50493f7 100644 --- a/pkgs/development/python-modules/captcha/default.nix +++ b/pkgs/development/python-modules/captcha/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Captcha library that generates audio and image CAPTCHAs"; homepage = "https://github.com/lepture/captcha"; - license = licenses.bsd3; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ Flakebi ]; }; } diff --git a/pkgs/development/python-modules/capturer/default.nix b/pkgs/development/python-modules/capturer/default.nix index b9895dd18f97..091fb30e7577 100644 --- a/pkgs/development/python-modules/capturer/default.nix +++ b/pkgs/development/python-modules/capturer/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = !stdenv.hostPlatform.isDarwin; nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Easily capture stdout/stderr of the current process and subprocesses"; homepage = "https://github.com/xolox/python-capturer"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/cardano-tools/default.nix b/pkgs/development/python-modules/cardano-tools/default.nix index bf3edc9157ff..6163e0b0716d 100644 --- a/pkgs/development/python-modules/cardano-tools/default.nix +++ b/pkgs/development/python-modules/cardano-tools/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cardano_tools" ]; - meta = with lib; { + meta = { description = "Python module for interfacing with the Cardano blockchain"; homepage = "https://gitlab.com/viperscience/cardano-tools"; - license = licenses.asl20; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aciceri ]; }; } diff --git a/pkgs/development/python-modules/cart/default.nix b/pkgs/development/python-modules/cart/default.nix index 4a5aa5bff041..1bb340ac038c 100644 --- a/pkgs/development/python-modules/cart/default.nix +++ b/pkgs/development/python-modules/cart/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cart" ]; - meta = with lib; { + meta = { description = "Python module for the CaRT Neutering format"; mainProgram = "cart"; homepage = "https://github.com/CybercentreCanada/cart"; changelog = "https://github.com/CybercentreCanada/cart/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cartopy/default.nix b/pkgs/development/python-modules/cartopy/default.nix index 71791845c795..85ec59feca5e 100644 --- a/pkgs/development/python-modules/cartopy/default.nix +++ b/pkgs/development/python-modules/cartopy/default.nix @@ -92,11 +92,11 @@ buildPythonPackage rec { "test_gridliner_labels_bbox_style" ]; - meta = with lib; { + meta = { description = "Process geospatial data to create maps and perform analyses"; homepage = "https://scitools.org.uk/cartopy/docs/latest/"; changelog = "https://github.com/SciTools/cartopy/releases/tag/v${version}"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; mainProgram = "feature_download"; }; diff --git a/pkgs/development/python-modules/casa-formats-io/default.nix b/pkgs/development/python-modules/casa-formats-io/default.nix index 07b54344b6e6..b06db796e1d8 100644 --- a/pkgs/development/python-modules/casa-formats-io/default.nix +++ b/pkgs/development/python-modules/casa-formats-io/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "casa_formats_io" ]; - meta = with lib; { + meta = { description = "Dask-based reader for CASA data"; homepage = "https://casa-formats-io.readthedocs.io/"; changelog = "https://github.com/radio-astro-tools/casa-formats-io/blob/v${version}/CHANGES.rst"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ smaret ]; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ smaret ]; }; } diff --git a/pkgs/development/python-modules/casttube/default.nix b/pkgs/development/python-modules/casttube/default.nix index 4b6e6b1c243c..19a7a0926ced 100644 --- a/pkgs/development/python-modules/casttube/default.nix +++ b/pkgs/development/python-modules/casttube/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Interact with the Youtube Chromecast api"; homepage = "https://github.com/ur1katz/casttube"; - license = licenses.mit; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz ]; }; } diff --git a/pkgs/development/python-modules/catalogue/default.nix b/pkgs/development/python-modules/catalogue/default.nix index 0ad13f1f28c2..8b316141849a 100644 --- a/pkgs/development/python-modules/catalogue/default.nix +++ b/pkgs/development/python-modules/catalogue/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "catalogue" ]; - meta = with lib; { + meta = { description = "Tiny library for adding function or object registries"; homepage = "https://github.com/explosion/catalogue"; changelog = "https://github.com/explosion/catalogue/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/causal-conv1d/default.nix b/pkgs/development/python-modules/causal-conv1d/default.nix index c7273b4964cc..ec6a888cc9ea 100644 --- a/pkgs/development/python-modules/causal-conv1d/default.nix +++ b/pkgs/development/python-modules/causal-conv1d/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { } // lib.optionalAttrs cudaSupport { CUDA_HOME = "${lib.getDev cudaPackages.cuda_nvcc}"; }; - meta = with lib; { + meta = { description = "Causal depthwise conv1d in CUDA with a PyTorch interface"; homepage = "https://github.com/Dao-AILab/causal-conv1d"; - license = licenses.bsd3; + license = lib.licenses.bsd3; # The package requires CUDA or ROCm, the ROCm build hasn't # been completed or tested, so broken if not using cuda. broken = !cudaSupport; diff --git a/pkgs/development/python-modules/cbor/default.nix b/pkgs/development/python-modules/cbor/default.nix index 63d9ddfc7009..6dcdcf288a58 100644 --- a/pkgs/development/python-modules/cbor/default.nix +++ b/pkgs/development/python-modules/cbor/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # https://github.com/brianolson/cbor_py/issues/6 doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/brianolson/cbor_py"; description = "Concise Binary Object Representation (CBOR) library"; - license = licenses.asl20; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/cccolutils/default.nix b/pkgs/development/python-modules/cccolutils/default.nix index 53baa3c3e034..ff973885feb4 100644 --- a/pkgs/development/python-modules/cccolutils/default.nix +++ b/pkgs/development/python-modules/cccolutils/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cccolutils" ]; - meta = with lib; { + meta = { description = "Python Kerberos 5 Credential Cache Collection Utilities"; homepage = "https://pagure.io/cccolutils"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ disassembler ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ disassembler ]; }; } diff --git a/pkgs/development/python-modules/celery-redbeat/default.nix b/pkgs/development/python-modules/celery-redbeat/default.nix index cd5be7937ee2..9e58ef8a0d0b 100644 --- a/pkgs/development/python-modules/celery-redbeat/default.nix +++ b/pkgs/development/python-modules/celery-redbeat/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { # Tests require additional work doCheck = false; - meta = with lib; { + meta = { description = "Database-backed Periodic Tasks"; homepage = "https://github.com/celery/django-celery-beat"; changelog = "https://github.com/celery/django-celery-beat/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/celery-singleton/default.nix b/pkgs/development/python-modules/celery-singleton/default.nix index b4ad4d7301cb..1b01d76f49df 100644 --- a/pkgs/development/python-modules/celery-singleton/default.nix +++ b/pkgs/development/python-modules/celery-singleton/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "celery_singleton" ]; - meta = with lib; { + meta = { description = "Seamlessly prevent duplicate executions of celery tasks"; homepage = "https://github.com/steinitzu/celery-singleton"; changelog = "https://github.com/steinitzu/celery-singleton/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/celery-types/default.nix b/pkgs/development/python-modules/celery-types/default.nix index 7d2def019bdb..d5ce15b78207 100644 --- a/pkgs/development/python-modules/celery-types/default.nix +++ b/pkgs/development/python-modules/celery-types/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "PEP-484 stubs for Celery"; homepage = "https://github.com/sbdchd/celery-types"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cement/default.nix b/pkgs/development/python-modules/cement/default.nix index 972df6c10802..773ef8431759 100644 --- a/pkgs/development/python-modules/cement/default.nix +++ b/pkgs/development/python-modules/cement/default.nix @@ -76,12 +76,12 @@ buildPythonPackage rec { "tests/ext/test_ext_smtp.py" ]; - meta = with lib; { + meta = { description = "CLI Application Framework for Python"; homepage = "https://builtoncement.com/"; changelog = "https://github.com/datafolklabs/cement/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ eqyiel ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ eqyiel ]; mainProgram = "cement"; }; } diff --git a/pkgs/development/python-modules/cemm/default.nix b/pkgs/development/python-modules/cemm/default.nix index 70a99ec60f7e..fb3a3fb2ceed 100644 --- a/pkgs/development/python-modules/cemm/default.nix +++ b/pkgs/development/python-modules/cemm/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cemm" ]; - meta = with lib; { + meta = { description = "Module for interacting with CEMM devices"; homepage = "https://github.com/klaasnicolaas/python-cemm"; changelog = "https://github.com/klaasnicolaas/python-cemm/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/censys/default.nix b/pkgs/development/python-modules/censys/default.nix index 86b35539f5f9..33a1f3f4d98a 100644 --- a/pkgs/development/python-modules/censys/default.nix +++ b/pkgs/development/python-modules/censys/default.nix @@ -59,12 +59,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "censys" ]; - meta = with lib; { + meta = { description = "Python API wrapper for the Censys Search Engine (censys.io)"; homepage = "https://github.com/censys/censys-python"; changelog = "https://github.com/censys/censys-python/releases/tag/v${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "censys"; }; } diff --git a/pkgs/development/python-modules/cerberus/default.nix b/pkgs/development/python-modules/cerberus/default.nix index 0524a11daba2..7d15df6883ca 100644 --- a/pkgs/development/python-modules/cerberus/default.nix +++ b/pkgs/development/python-modules/cerberus/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { "cerberus/benchmarks/" ]; - meta = with lib; { + meta = { description = "Schema and data validation tool for Python dictionaries"; homepage = "http://python-cerberus.org/"; changelog = "https://github.com/pyeve/cerberus/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cert-chain-resolver/default.nix b/pkgs/development/python-modules/cert-chain-resolver/default.nix index 8d13959369fd..5f240499825f 100644 --- a/pkgs/development/python-modules/cert-chain-resolver/default.nix +++ b/pkgs/development/python-modules/cert-chain-resolver/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cert_chain_resolver" ]; - meta = with lib; { + meta = { description = "Resolve / obtain the certificate intermediates of a x509 certificate"; mainProgram = "cert-chain-resolver"; homepage = "https://github.com/rkoopmans/python-certificate-chain-resolver"; changelog = "https://github.com/rkoopmans/python-certificate-chain-resolver/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/certauth/default.nix b/pkgs/development/python-modules/certauth/default.nix index 32177d84c007..e513292d5a74 100644 --- a/pkgs/development/python-modules/certauth/default.nix +++ b/pkgs/development/python-modules/certauth/default.nix @@ -51,11 +51,11 @@ buildPythonPackage { "test_in_mem_parent_wildcard_cert_2" ]; - meta = with lib; { + meta = { description = "Simple CertificateAuthority and host certificate creation, useful for man-in-the-middle HTTPS proxy"; mainProgram = "certauth"; homepage = "https://github.com/ikreymer/certauth"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/certbot/default.nix b/pkgs/development/python-modules/certbot/default.nix index 2633d56cb4c6..662b4ca4c8a5 100644 --- a/pkgs/development/python-modules/certbot/default.nix +++ b/pkgs/development/python-modules/certbot/default.nix @@ -93,13 +93,13 @@ buildPythonPackage rec { ln -s ${pythonEnv}/bin/certbot ''; - meta = with lib; { + meta = { homepage = "https://github.com/certbot/certbot"; changelog = "https://github.com/certbot/certbot/blob/${src.tag}/certbot/CHANGELOG.md"; description = "ACME client that can obtain certs and extensibly update server configurations"; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "certbot"; maintainers = [ ]; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; }; } diff --git a/pkgs/development/python-modules/certifi/default.nix b/pkgs/development/python-modules/certifi/default.nix index 30ffb8552e6c..1f0a533d01bb 100644 --- a/pkgs/development/python-modules/certifi/default.nix +++ b/pkgs/development/python-modules/certifi/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "certifi" ]; - meta = with lib; { + meta = { homepage = "https://github.com/certifi/python-certifi"; description = "Python package for providing Mozilla's CA Bundle"; - license = licenses.isc; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/certipy-ad/default.nix b/pkgs/development/python-modules/certipy-ad/default.nix index 5162597fb21a..ce11aba66c94 100644 --- a/pkgs/development/python-modules/certipy-ad/default.nix +++ b/pkgs/development/python-modules/certipy-ad/default.nix @@ -67,12 +67,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "certipy" ]; - meta = with lib; { + meta = { description = "Library and CLI tool to enumerate and abuse misconfigurations in Active Directory Certificate Services"; homepage = "https://github.com/ly4k/Certipy"; changelog = "https://github.com/ly4k/Certipy/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "certipy"; }; } diff --git a/pkgs/development/python-modules/certipy/default.nix b/pkgs/development/python-modules/certipy/default.nix index 4f7f8f0d5057..9ca910cb9115 100644 --- a/pkgs/development/python-modules/certipy/default.nix +++ b/pkgs/development/python-modules/certipy/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "certipy" ]; - meta = with lib; { + meta = { description = "Utility to create and sign CAs and certificates"; homepage = "https://github.com/LLNL/certipy"; - license = licenses.bsd3; - maintainers = with maintainers; [ isgy ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ isgy ]; mainProgram = "certipy"; }; } diff --git a/pkgs/development/python-modules/certvalidator/default.nix b/pkgs/development/python-modules/certvalidator/default.nix index bfcf3ee02b1c..76580bff70c5 100644 --- a/pkgs/development/python-modules/certvalidator/default.nix +++ b/pkgs/development/python-modules/certvalidator/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "certvalidator" ]; - meta = with lib; { + meta = { homepage = "https://github.com/wbond/certvalidator"; description = "Validates X.509 certificates and paths"; - license = licenses.mit; - maintainers = with maintainers; [ baloo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ baloo ]; }; } diff --git a/pkgs/development/python-modules/cexprtk/default.nix b/pkgs/development/python-modules/cexprtk/default.nix index 7b680777e310..dbe641016cb2 100644 --- a/pkgs/development/python-modules/cexprtk/default.nix +++ b/pkgs/development/python-modules/cexprtk/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cexprtk" ]; - meta = with lib; { + meta = { description = "Mathematical expression parser, cython wrapper"; homepage = "https://github.com/mjdrushton/cexprtk"; - license = licenses.cpl10; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.cpl10; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/cffsubr/default.nix b/pkgs/development/python-modules/cffsubr/default.nix index 28332b92d734..8ee3e87aad1c 100644 --- a/pkgs/development/python-modules/cffsubr/default.nix +++ b/pkgs/development/python-modules/cffsubr/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cffsubr" ]; - meta = with lib; { + meta = { changelog = "https://github.com/adobe-type-tools/cffsubr/releases/tag/v${version}"; description = "Standalone CFF subroutinizer based on AFDKO tx"; mainProgram = "cffsubr"; homepage = "https://github.com/adobe-type-tools/cffsubr"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cfn-flip/default.nix b/pkgs/development/python-modules/cfn-flip/default.nix index e5ae3494d88b..bf9321557a6a 100644 --- a/pkgs/development/python-modules/cfn-flip/default.nix +++ b/pkgs/development/python-modules/cfn-flip/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cfn_flip" ]; - meta = with lib; { + meta = { description = "Tool for converting AWS CloudFormation templates between JSON and YAML formats"; mainProgram = "cfn-flip"; homepage = "https://github.com/awslabs/aws-cfn-template-flip"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kamadorueda psyanticy ]; diff --git a/pkgs/development/python-modules/cfn-lint/default.nix b/pkgs/development/python-modules/cfn-lint/default.nix index 3b61fba76186..259479646175 100644 --- a/pkgs/development/python-modules/cfn-lint/default.nix +++ b/pkgs/development/python-modules/cfn-lint/default.nix @@ -90,12 +90,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cfnlint" ]; - meta = with lib; { + meta = { description = "Checks cloudformation for practices and behaviour that could potentially be improved"; mainProgram = "cfn-lint"; homepage = "https://github.com/aws-cloudformation/cfn-lint"; changelog = "https://github.com/aws-cloudformation/cfn-lint/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cfscrape/default.nix b/pkgs/development/python-modules/cfscrape/default.nix index 9dd60bed9769..e8a2a1879d3a 100644 --- a/pkgs/development/python-modules/cfscrape/default.nix +++ b/pkgs/development/python-modules/cfscrape/default.nix @@ -20,11 +20,11 @@ buildPythonPackage { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/Anorov/cloudflare-scrape"; description = "Python module to bypass Cloudflare's anti-bot page"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cftime/default.nix b/pkgs/development/python-modules/cftime/default.nix index 06ef5881e993..cb3d900c04b7 100644 --- a/pkgs/development/python-modules/cftime/default.nix +++ b/pkgs/development/python-modules/cftime/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cftime" ]; - meta = with lib; { + meta = { description = "Time-handling functionality from netcdf4-python"; homepage = "https://github.com/Unidata/cftime"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chacha20poly1305-reuseable/default.nix b/pkgs/development/python-modules/chacha20poly1305-reuseable/default.nix index 0feb920c81ac..ffe8e4fe1af6 100644 --- a/pkgs/development/python-modules/chacha20poly1305-reuseable/default.nix +++ b/pkgs/development/python-modules/chacha20poly1305-reuseable/default.nix @@ -52,11 +52,11 @@ buildPythonPackage { pytestCheckHook ]; - meta = with lib; { + meta = { description = "ChaCha20Poly1305 that is reuseable for asyncio"; homepage = "https://github.com/bdraco/chacha20poly1305-reuseable"; changelog = "https://github.com/bdraco/chacha20poly1305-reuseable/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/chacha20poly1305/default.nix b/pkgs/development/python-modules/chacha20poly1305/default.nix index 0493f9b15ee0..d3da12cbc83c 100644 --- a/pkgs/development/python-modules/chacha20poly1305/default.nix +++ b/pkgs/development/python-modules/chacha20poly1305/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "chacha20poly1305" ]; - meta = with lib; { + meta = { description = "Module that implements ChaCha20Poly1305"; homepage = "https://github.com/ph4r05/py-chacha20poly1305"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chainmap/default.nix b/pkgs/development/python-modules/chainmap/default.nix index ec3bdce9c713..7a60c30ca71d 100644 --- a/pkgs/development/python-modules/chainmap/default.nix +++ b/pkgs/development/python-modules/chainmap/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # Requires tox doCheck = false; - meta = with lib; { + meta = { description = "Backport/clone of ChainMap"; homepage = "https://bitbucket.org/jeunice/chainmap"; - license = licenses.psfl; + license = lib.licenses.psfl; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chainstream/default.nix b/pkgs/development/python-modules/chainstream/default.nix index b48c42992bed..01c1964ef370 100644 --- a/pkgs/development/python-modules/chainstream/default.nix +++ b/pkgs/development/python-modules/chainstream/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "chainstream" ]; - meta = with lib; { + meta = { description = "Chain I/O streams together into a single stream"; homepage = "https://github.com/rrthomas/chainstream"; - license = licenses.cc-by-sa-40; - maintainers = with maintainers; [ cbley ]; + license = lib.licenses.cc-by-sa-40; + maintainers = with lib.maintainers; [ cbley ]; }; } diff --git a/pkgs/development/python-modules/chalice/default.nix b/pkgs/development/python-modules/chalice/default.nix index 07eaeea56bd6..bf543b4d6eac 100644 --- a/pkgs/development/python-modules/chalice/default.nix +++ b/pkgs/development/python-modules/chalice/default.nix @@ -83,12 +83,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "chalice" ]; - meta = with lib; { + meta = { description = "Python Serverless Microframework for AWS"; mainProgram = "chalice"; homepage = "https://github.com/aws/chalice"; changelog = "https://github.com/aws/chalice/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chameleon/default.nix b/pkgs/development/python-modules/chameleon/default.nix index 8ac89152f3a0..b0472aaedaed 100644 --- a/pkgs/development/python-modules/chameleon/default.nix +++ b/pkgs/development/python-modules/chameleon/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "chameleon" ]; - meta = with lib; { + meta = { changelog = "https://github.com/malthe/chameleon/blob/${src.tag}/CHANGES.rst"; description = "Fast HTML/XML Template Compiler"; downloadPage = "https://github.com/malthe/chameleon"; homepage = "https://chameleon.readthedocs.io"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/changefinder/default.nix b/pkgs/development/python-modules/changefinder/default.nix index 70c446cba3b0..4ba0b588350e 100644 --- a/pkgs/development/python-modules/changefinder/default.nix +++ b/pkgs/development/python-modules/changefinder/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { pythonImportsCheck = [ "changefinder" ]; - meta = with lib; { + meta = { description = "Online Change-Point Detection library based on ChangeFinder algorithm"; homepage = "https://github.com/shunsukeaihara/changefinder"; - license = licenses.mit; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/channels-redis/default.nix b/pkgs/development/python-modules/channels-redis/default.nix index 242520999b35..4de42e0353eb 100644 --- a/pkgs/development/python-modules/channels-redis/default.nix +++ b/pkgs/development/python-modules/channels-redis/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "channels_redis" ]; - meta = with lib; { + meta = { description = "Redis-backed ASGI channel layer implementation"; homepage = "https://github.com/django/channels_redis/"; changelog = "https://github.com/django/channels_redis/blob/${src.tag}/CHANGELOG.txt"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/channels/default.nix b/pkgs/development/python-modules/channels/default.nix index 0de401636e2b..81cc4da50b03 100644 --- a/pkgs/development/python-modules/channels/default.nix +++ b/pkgs/development/python-modules/channels/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "channels" ]; - meta = with lib; { + meta = { description = "Brings event-driven capabilities to Django with a channel system"; homepage = "https://github.com/django/channels"; changelog = "https://github.com/django/channels/blob/${src.tag}/CHANGELOG.txt"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/chardet/default.nix b/pkgs/development/python-modules/chardet/default.nix index b710fa984cfb..7da0e8911c6e 100644 --- a/pkgs/development/python-modules/chardet/default.nix +++ b/pkgs/development/python-modules/chardet/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "chardet" ]; - meta = with lib; { + meta = { changelog = "https://github.com/chardet/chardet/releases/tag/${version}"; description = "Universal encoding detector"; mainProgram = "chardetect"; homepage = "https://github.com/chardet/chardet"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/charset-normalizer/default.nix b/pkgs/development/python-modules/charset-normalizer/default.nix index f0392acde6a6..609126f572ce 100644 --- a/pkgs/development/python-modules/charset-normalizer/default.nix +++ b/pkgs/development/python-modules/charset-normalizer/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { inherit aiohttp requests; }; - meta = with lib; { + meta = { description = "Python module for encoding and language detection"; mainProgram = "normalizer"; homepage = "https://charset-normalizer.readthedocs.io/"; changelog = "https://github.com/jawah/charset_normalizer/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/chat-downloader/default.nix b/pkgs/development/python-modules/chat-downloader/default.nix index e19dd60a9269..00e853a5a20d 100644 --- a/pkgs/development/python-modules/chat-downloader/default.nix +++ b/pkgs/development/python-modules/chat-downloader/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "chat_downloader" ]; - meta = with lib; { + meta = { description = "Simple tool used to retrieve chat messages from livestreams, videos, clips and past broadcasts"; mainProgram = "chat_downloader"; homepage = "https://github.com/xenova/chat-downloader"; changelog = "https://github.com/xenova/chat-downloader/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/check-manifest/default.nix b/pkgs/development/python-modules/check-manifest/default.nix index d8e50380e313..fde74e750ae8 100644 --- a/pkgs/development/python-modules/check-manifest/default.nix +++ b/pkgs/development/python-modules/check-manifest/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "check_manifest" ]; - meta = with lib; { + meta = { description = "Check MANIFEST.in in a Python source package for completeness"; homepage = "https://github.com/mgedmin/check-manifest"; changelog = "https://github.com/mgedmin/check-manifest/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ lewo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lewo ]; mainProgram = "check-manifest"; }; } diff --git a/pkgs/development/python-modules/checkdmarc/default.nix b/pkgs/development/python-modules/checkdmarc/default.nix index 32ad00aaf1e0..58a0659ef570 100644 --- a/pkgs/development/python-modules/checkdmarc/default.nix +++ b/pkgs/development/python-modules/checkdmarc/default.nix @@ -68,12 +68,12 @@ buildPythonPackage rec { "testTooManySPFVoidDNSLookups" ]; - meta = with lib; { + meta = { description = "Parser for SPF and DMARC DNS records"; homepage = "https://github.com/domainaware/checkdmarc"; changelog = "https://github.com/domainaware/checkdmarc/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "checkdmarc"; }; } diff --git a/pkgs/development/python-modules/checksumdir/default.nix b/pkgs/development/python-modules/checksumdir/default.nix index 669f536d16c6..291f8b93893c 100644 --- a/pkgs/development/python-modules/checksumdir/default.nix +++ b/pkgs/development/python-modules/checksumdir/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; # Package does not contain tests pythonImportsCheck = [ "checksumdir" ]; - meta = with lib; { + meta = { description = "Simple package to compute a single deterministic hash of the file contents of a directory"; homepage = "https://github.com/to-mc/checksumdir"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/cheetah3/default.nix b/pkgs/development/python-modules/cheetah3/default.nix index 2e5a5bf16390..be3c7f06294e 100644 --- a/pkgs/development/python-modules/cheetah3/default.nix +++ b/pkgs/development/python-modules/cheetah3/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "Cheetah" ]; - meta = with lib; { + meta = { description = "Template engine and code generation tool"; homepage = "http://www.cheetahtemplate.org/"; changelog = "https://github.com/CheetahTemplate3/cheetah3/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ pjjw ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pjjw ]; }; } diff --git a/pkgs/development/python-modules/cheroot/default.nix b/pkgs/development/python-modules/cheroot/default.nix index 85f2c8e89627..0fd27ae91d33 100644 --- a/pkgs/development/python-modules/cheroot/default.nix +++ b/pkgs/development/python-modules/cheroot/default.nix @@ -94,11 +94,11 @@ buildPythonPackage rec { # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "High-performance, pure-Python HTTP"; mainProgram = "cheroot"; homepage = "https://github.com/cherrypy/cheroot"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cherrypy-cors/default.nix b/pkgs/development/python-modules/cherrypy-cors/default.nix index a151c9d8fd15..e1102594ffac 100644 --- a/pkgs/development/python-modules/cherrypy-cors/default.nix +++ b/pkgs/development/python-modules/cherrypy-cors/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "CORS support for CherryPy"; homepage = "https://github.com/cherrypy/cherrypy-cors"; - license = licenses.mit; - maintainers = with maintainers; [ jpts ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpts ]; }; } diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix index 31ee288bbc22..fb79a33bc45d 100644 --- a/pkgs/development/python-modules/cherrypy/default.nix +++ b/pkgs/development/python-modules/cherrypy/default.nix @@ -120,12 +120,12 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { description = "Object-oriented HTTP framework"; mainProgram = "cherryd"; homepage = "https://cherrypy.dev/"; changelog = "https://github.com/cherrypy/cherrypy/blob/v${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chess/default.nix b/pkgs/development/python-modules/chess/default.nix index 5d57f4f1918e..4cb403abcdc4 100644 --- a/pkgs/development/python-modules/chess/default.nix +++ b/pkgs/development/python-modules/chess/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { enabledTestPaths = [ "test.py" ]; - meta = with lib; { + meta = { description = "Chess library with move generation, move validation, and support for common formats"; homepage = "https://github.com/niklasf/python-chess"; changelog = "https://github.com/niklasf/python-chess/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ smancill ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ smancill ]; }; } diff --git a/pkgs/development/python-modules/chirpstack-api/default.nix b/pkgs/development/python-modules/chirpstack-api/default.nix index 6bb2751a9c5b..0f632d88de8e 100644 --- a/pkgs/development/python-modules/chirpstack-api/default.nix +++ b/pkgs/development/python-modules/chirpstack-api/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "chirpstack_api" ]; - meta = with lib; { + meta = { description = "ChirpStack gRPC API message and service wrappers for Python"; homepage = "https://github.com/brocaar/chirpstack-api"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/chispa/default.nix b/pkgs/development/python-modules/chispa/default.nix index 466aa6047ff1..1175b9f8532d 100644 --- a/pkgs/development/python-modules/chispa/default.nix +++ b/pkgs/development/python-modules/chispa/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # pythonImportsCheck needs spark installation - meta = with lib; { + meta = { description = "PySpark test helper methods with beautiful error messages"; homepage = "https://github.com/MrPowers/chispa"; - license = licenses.mit; - maintainers = with maintainers; [ ratsclub ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ratsclub ]; }; } diff --git a/pkgs/development/python-modules/chroma-hnswlib/default.nix b/pkgs/development/python-modules/chroma-hnswlib/default.nix index 2e00d1ae3df0..2867ae8a0b99 100644 --- a/pkgs/development/python-modules/chroma-hnswlib/default.nix +++ b/pkgs/development/python-modules/chroma-hnswlib/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hnswlib" ]; - meta = with lib; { + meta = { description = "Header-only C++/python library for fast approximate nearest neighbors"; homepage = "https://github.com/chroma-core/hnswlib"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/chromaprint/default.nix b/pkgs/development/python-modules/chromaprint/default.nix index bdf78d43b468..139eba2b6960 100644 --- a/pkgs/development/python-modules/chromaprint/default.nix +++ b/pkgs/development/python-modules/chromaprint/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "chromaprint" ]; - meta = with lib; { + meta = { description = "Facilitate effortless color terminal output"; homepage = "https://pypi.org/project/${pname}/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dschrempf peterhoeg ]; diff --git a/pkgs/development/python-modules/ci-info/default.nix b/pkgs/development/python-modules/ci-info/default.nix index 4c603940a144..d3035a11df13 100644 --- a/pkgs/development/python-modules/ci-info/default.nix +++ b/pkgs/development/python-modules/ci-info/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ci_info" ]; - meta = with lib; { + meta = { description = "Gather continuous integration information on the fly"; homepage = "https://github.com/mgxd/ci-info"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/ci-py/default.nix b/pkgs/development/python-modules/ci-py/default.nix index 9abd0d04b29b..d4e3287028af 100644 --- a/pkgs/development/python-modules/ci-py/default.nix +++ b/pkgs/development/python-modules/ci-py/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ci" ]; - meta = with lib; { + meta = { description = "Library for working with Continuous Integration services"; homepage = "https://github.com/grantmcconnaughey/ci.py"; changelog = "https://github.com/grantmcconnaughey/ci.py/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/cinemagoer/default.nix b/pkgs/development/python-modules/cinemagoer/default.nix index d87df6283746..6670c780516f 100644 --- a/pkgs/development/python-modules/cinemagoer/default.nix +++ b/pkgs/development/python-modules/cinemagoer/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "imdb" ]; # Former "imdbpy", upstream is yet to rename here - meta = with lib; { + meta = { description = "Python package for retrieving and managing the data of the IMDb movie database about movies and people"; downloadPage = "https://github.com/cinemagoer/cinemagoer/"; homepage = "https://cinemagoer.github.io/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/circuit-webhook/default.nix b/pkgs/development/python-modules/circuit-webhook/default.nix index cca4277525b2..8828cdc6658f 100644 --- a/pkgs/development/python-modules/circuit-webhook/default.nix +++ b/pkgs/development/python-modules/circuit-webhook/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "circuit_webhook" ]; - meta = with lib; { + meta = { description = "Module for Unify Circuit API webhooks"; homepage = "https://github.com/braam/unify/tree/master/circuit-webhook-python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/circuitbreaker/default.nix b/pkgs/development/python-modules/circuitbreaker/default.nix index 036f9657d222..19a5f0bcba49 100644 --- a/pkgs/development/python-modules/circuitbreaker/default.nix +++ b/pkgs/development/python-modules/circuitbreaker/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "circuitbreaker" ]; - meta = with lib; { + meta = { description = "Python Circuit Breaker implementation"; homepage = "https://github.com/fabfuel/circuitbreaker"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ciscomobilityexpress/default.nix b/pkgs/development/python-modules/ciscomobilityexpress/default.nix index 44d604e35132..57e127cc5c2a 100644 --- a/pkgs/development/python-modules/ciscomobilityexpress/default.nix +++ b/pkgs/development/python-modules/ciscomobilityexpress/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ciscomobilityexpress" ]; - meta = with lib; { + meta = { description = "Module to interact with Cisco Mobility Express APIs to fetch connected devices"; homepage = "https://github.com/fbradyirl/ciscomobilityexpress"; - license = licenses.mit; - maintainers = with maintainers; [ uvnikita ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; }; } diff --git a/pkgs/development/python-modules/ciso8601/default.nix b/pkgs/development/python-modules/ciso8601/default.nix index 2ee7f02383e6..c788999d2927 100644 --- a/pkgs/development/python-modules/ciso8601/default.nix +++ b/pkgs/development/python-modules/ciso8601/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ciso8601" ]; - meta = with lib; { + meta = { description = "Fast ISO8601 date time parser for Python written in C"; homepage = "https://github.com/closeio/ciso8601"; changelog = "https://github.com/closeio/ciso8601/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/ckcc-protocol/default.nix b/pkgs/development/python-modules/ckcc-protocol/default.nix index a8563a9ce085..152295e449e4 100644 --- a/pkgs/development/python-modules/ckcc-protocol/default.nix +++ b/pkgs/development/python-modules/ckcc-protocol/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ckcc" ]; - meta = with lib; { + meta = { description = "Communicate with your Coldcard using Python"; mainProgram = "ckcc"; homepage = "https://github.com/Coldcard/ckcc-protocol"; - license = licenses.mit; - maintainers = with maintainers; [ hkjn ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hkjn ]; }; } diff --git a/pkgs/development/python-modules/clarifai/default.nix b/pkgs/development/python-modules/clarifai/default.nix index 132a0c0fa52a..8074f2440039 100644 --- a/pkgs/development/python-modules/clarifai/default.nix +++ b/pkgs/development/python-modules/clarifai/default.nix @@ -121,12 +121,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "clarifai" ]; - meta = with lib; { + meta = { description = "Clarifai Python Utilities"; homepage = "https://github.com/Clarifai/clarifai-python"; changelog = "https://github.com/Clarifai/clarifai-python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; mainProgram = "clarifai"; }; } diff --git a/pkgs/development/python-modules/claripy/default.nix b/pkgs/development/python-modules/claripy/default.nix index 6ab586ac6db8..39aa73fe70f2 100644 --- a/pkgs/development/python-modules/claripy/default.nix +++ b/pkgs/development/python-modules/claripy/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "claripy" ]; - meta = with lib; { + meta = { description = "Python abstraction layer for constraint solvers"; homepage = "https://github.com/angr/claripy"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/class-doc/default.nix b/pkgs/development/python-modules/class-doc/default.nix index 70ea060fe501..90dd6a8c8ef6 100644 --- a/pkgs/development/python-modules/class-doc/default.nix +++ b/pkgs/development/python-modules/class-doc/default.nix @@ -37,10 +37,10 @@ buildPythonPackage { pythonImportsCheck = [ "class_doc" ]; - meta = with lib; { + meta = { description = "Extract attributes docstrings defined in various ways"; homepage = "https://github.com/danields761/class-doc"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/classify-imports/default.nix b/pkgs/development/python-modules/classify-imports/default.nix index acf532ee4d6a..aa44df32a7dc 100644 --- a/pkgs/development/python-modules/classify-imports/default.nix +++ b/pkgs/development/python-modules/classify-imports/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Utilities for refactoring imports in python-like syntax"; homepage = "https://github.com/asottile/classify-imports"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/cle/default.nix b/pkgs/development/python-modules/cle/default.nix index 682232b5bf1a..78907e2f1b45 100644 --- a/pkgs/development/python-modules/cle/default.nix +++ b/pkgs/development/python-modules/cle/default.nix @@ -79,10 +79,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Python loader for many binary formats"; homepage = "https://github.com/angr/cle"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/clean-fid/default.nix b/pkgs/development/python-modules/clean-fid/default.nix index e50ccf59b196..3e2441c55024 100644 --- a/pkgs/development/python-modules/clean-fid/default.nix +++ b/pkgs/development/python-modules/clean-fid/default.nix @@ -40,10 +40,10 @@ buildPythonPackage { # no tests1 doCheck = false; - meta = with lib; { + meta = { description = "PyTorch - FID calculation with proper image resizing and quantization steps [CVPR 2022]"; homepage = "https://github.com/GaParmar/clean-fid"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/cleo/default.nix b/pkgs/development/python-modules/cleo/default.nix index fffb99c0f4e0..8b7e95bd4f49 100644 --- a/pkgs/development/python-modules/cleo/default.nix +++ b/pkgs/development/python-modules/cleo/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/python-poetry/cleo"; changelog = "https://github.com/python-poetry/cleo/blob/${src.rev}/CHANGELOG.md"; description = "Allows you to create beautiful and testable command-line interfaces"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/clevercsv/default.nix b/pkgs/development/python-modules/clevercsv/default.nix index 053167518a8c..9640dc267b22 100644 --- a/pkgs/development/python-modules/clevercsv/default.nix +++ b/pkgs/development/python-modules/clevercsv/default.nix @@ -72,7 +72,7 @@ buildPythonPackage rec { "tests/test_unit/test_console.py" ]; - meta = with lib; { + meta = { description = "Python package for handling messy CSV files"; mainProgram = "clevercsv"; longDescription = '' @@ -83,7 +83,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/alan-turing-institute/CleverCSV"; changelog = "https://github.com/alan-turing-institute/CleverCSV/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/clf/default.nix b/pkgs/development/python-modules/clf/default.nix index acf60cba7e1e..de884a48b30f 100644 --- a/pkgs/development/python-modules/clf/default.nix +++ b/pkgs/development/python-modules/clf/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # No local packages or download links found for requests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/ncrocfer/clf"; description = "Command line tool to search snippets on Commandlinefu.com"; mainProgram = "clf"; - license = licenses.mit; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/cli-helpers/default.nix b/pkgs/development/python-modules/cli-helpers/default.nix index f9070cad7384..75460a31681e 100644 --- a/pkgs/development/python-modules/cli-helpers/default.nix +++ b/pkgs/development/python-modules/cli-helpers/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { ] ++ lib.concatAttrValues optional-dependencies; - meta = with lib; { + meta = { description = "Python helpers for common CLI tasks"; longDescription = '' CLI Helpers is a Python package that makes it easy to perform common @@ -62,7 +62,7 @@ buildPythonPackage rec { Read the documentation at http://cli-helpers.rtfd.io ''; homepage = "https://cli-helpers.readthedocs.io/en/stable/"; - license = licenses.bsd3; - maintainers = [ maintainers.kalbasit ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.kalbasit ]; }; } diff --git a/pkgs/development/python-modules/cli-ui/default.nix b/pkgs/development/python-modules/cli-ui/default.nix index 902e7ea3f108..5a0cafd7a7c9 100644 --- a/pkgs/development/python-modules/cli-ui/default.nix +++ b/pkgs/development/python-modules/cli-ui/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cli_ui" ]; - meta = with lib; { + meta = { description = "Build Nice User Interfaces In The Terminal"; homepage = "https://github.com/your-tools/python-cli-ui"; - license = licenses.bsd3; - maintainers = with maintainers; [ slashformotion ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ slashformotion ]; }; } diff --git a/pkgs/development/python-modules/cliche/default.nix b/pkgs/development/python-modules/cliche/default.nix index 4b0e63ed21c1..d7ccb36e2e12 100644 --- a/pkgs/development/python-modules/cliche/default.nix +++ b/pkgs/development/python-modules/cliche/default.nix @@ -29,11 +29,11 @@ buildPythonPackage { pythonImportsCheck = [ "cliche" ]; - meta = with lib; { + meta = { description = "Build a simple command-line interface from your functions :computer:"; mainProgram = "cliche"; homepage = "https://github.com/kootenpv/cliche"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/click-aliases/default.nix b/pkgs/development/python-modules/click-aliases/default.nix index cf1a33cf3140..a08bc786eafe 100644 --- a/pkgs/development/python-modules/click-aliases/default.nix +++ b/pkgs/development/python-modules/click-aliases/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_aliases" ]; - meta = with lib; { + meta = { homepage = "https://github.com/click-contrib/click-aliases"; description = "Enable aliases for click"; - license = licenses.mit; - maintainers = with maintainers; [ panicgh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ panicgh ]; }; } diff --git a/pkgs/development/python-modules/click-command-tree/default.nix b/pkgs/development/python-modules/click-command-tree/default.nix index 6ebdbe142851..b83dcda4f04f 100644 --- a/pkgs/development/python-modules/click-command-tree/default.nix +++ b/pkgs/development/python-modules/click-command-tree/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_command_tree" ]; - meta = with lib; { + meta = { description = "Click plugin to show the command tree of your CLI"; homepage = "https://github.com/whwright/click-command-tree"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/click-completion/default.nix b/pkgs/development/python-modules/click-completion/default.nix index f79d92ecffc8..5e06ace61034 100644 --- a/pkgs/development/python-modules/click-completion/default.nix +++ b/pkgs/development/python-modules/click-completion/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Add or enhance bash, fish, zsh and powershell completion in Click"; homepage = "https://github.com/click-contrib/click-completion"; - license = licenses.mit; - maintainers = with maintainers; [ mbode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbode ]; }; } diff --git a/pkgs/development/python-modules/click-configfile/default.nix b/pkgs/development/python-modules/click-configfile/default.nix index 47d43ca1fa2b..2a3b31f2b050 100644 --- a/pkgs/development/python-modules/click-configfile/default.nix +++ b/pkgs/development/python-modules/click-configfile/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { "test_matches_section__with_bad_arg" ]; - meta = with lib; { + meta = { description = "Add support for commands that use configuration files to Click"; homepage = "https://github.com/click-contrib/click-configfile"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/click-datetime/default.nix b/pkgs/development/python-modules/click-datetime/default.nix index b5c2e3774f38..5569bfddbb29 100644 --- a/pkgs/development/python-modules/click-datetime/default.nix +++ b/pkgs/development/python-modules/click-datetime/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_datetime" ]; - meta = with lib; { + meta = { description = "Datetime type support for click"; homepage = "https://github.com/click-contrib/click-datetime"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/click-default-group/default.nix b/pkgs/development/python-modules/click-default-group/default.nix index 061d2e3a0391..e8fa5928aeec 100644 --- a/pkgs/development/python-modules/click-default-group/default.nix +++ b/pkgs/development/python-modules/click-default-group/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_default_group" ]; - meta = with lib; { + meta = { description = "Group to invoke a command without explicit subcommand name"; homepage = "https://github.com/click-contrib/click-default-group"; - license = licenses.bsd3; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/click-didyoumean/default.nix b/pkgs/development/python-modules/click-didyoumean/default.nix index 6da6e6d1e4b5..4e294e5ab787 100644 --- a/pkgs/development/python-modules/click-didyoumean/default.nix +++ b/pkgs/development/python-modules/click-didyoumean/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Enable git-like did-you-mean feature in click"; homepage = "https://github.com/click-contrib/click-didyoumean"; - license = licenses.mit; - maintainers = with maintainers; [ mbode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbode ]; }; } diff --git a/pkgs/development/python-modules/click-help-colors/default.nix b/pkgs/development/python-modules/click-help-colors/default.nix index 5e62c173b708..794451f206b3 100644 --- a/pkgs/development/python-modules/click-help-colors/default.nix +++ b/pkgs/development/python-modules/click-help-colors/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_help_colors" ]; - meta = with lib; { + meta = { description = "Colorization of help messages in Click"; homepage = "https://github.com/click-contrib/click-help-colors"; changelog = "https://github.com/click-contrib/click-help-colors/blob/${version}/CHANGES.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/click-log/default.nix b/pkgs/development/python-modules/click-log/default.nix index fbf67e9b2a5f..1eac7a94e3a6 100644 --- a/pkgs/development/python-modules/click-log/default.nix +++ b/pkgs/development/python-modules/click-log/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ click ]; - meta = with lib; { + meta = { homepage = "https://github.com/click-contrib/click-log/"; description = "Logging integration for Click"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/click-odoo-contrib/default.nix b/pkgs/development/python-modules/click-odoo-contrib/default.nix index 6f3196895394..f2e8fc36f3ed 100644 --- a/pkgs/development/python-modules/click-odoo-contrib/default.nix +++ b/pkgs/development/python-modules/click-odoo-contrib/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_odoo_contrib" ]; - meta = with lib; { + meta = { description = "Collection of community-maintained scripts for Odoo maintenance"; homepage = "https://github.com/acsone/click-odoo-contrib"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/click-odoo/default.nix b/pkgs/development/python-modules/click-odoo/default.nix index de686dabc69a..7c1d0c69c5c5 100644 --- a/pkgs/development/python-modules/click-odoo/default.nix +++ b/pkgs/development/python-modules/click-odoo/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Odoo scripting helper library"; mainProgram = "click-odoo"; homepage = "https://github.com/acsone/click-odoo"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/click-option-group/default.nix b/pkgs/development/python-modules/click-option-group/default.nix index 752959fe8a19..7287b6d976d1 100644 --- a/pkgs/development/python-modules/click-option-group/default.nix +++ b/pkgs/development/python-modules/click-option-group/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_option_group" ]; - meta = with lib; { + meta = { description = "Option groups missing in Click"; longDescription = '' Option groups are convenient mechanism for logical structuring @@ -44,7 +44,7 @@ buildPythonPackage rec { functionality out of the box. ''; homepage = "https://github.com/click-contrib/click-option-group/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/click-plugins/default.nix b/pkgs/development/python-modules/click-plugins/default.nix index 2358097e1cad..a63394df32d2 100644 --- a/pkgs/development/python-modules/click-plugins/default.nix +++ b/pkgs/development/python-modules/click-plugins/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { description = "Extension module for click to enable registering CLI commands"; homepage = "https://github.com/click-contrib/click-plugins"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/click-repl/default.nix b/pkgs/development/python-modules/click-repl/default.nix index 00b8221e3bc9..7b57b60938b2 100644 --- a/pkgs/development/python-modules/click-repl/default.nix +++ b/pkgs/development/python-modules/click-repl/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { # https://github.com/click-contrib/click-repl/issues/128 broken = lib.versionAtLeast click.version "8.2.0"; homepage = "https://github.com/click-contrib/click-repl"; description = "Subcommand REPL for click apps"; - license = licenses.mit; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/click-shell/default.nix b/pkgs/development/python-modules/click-shell/default.nix index 5f4536439d3e..1cb575260210 100644 --- a/pkgs/development/python-modules/click-shell/default.nix +++ b/pkgs/development/python-modules/click-shell/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_shell" ]; - meta = with lib; { + meta = { description = "Extension to click that easily turns your click app into a shell utility"; longDescription = '' This is an extension to click that easily turns your click app into a @@ -43,7 +43,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/clarkperkins/click-shell"; changelog = "https://github.com/clarkperkins/click-shell/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ binsky ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ binsky ]; }; } diff --git a/pkgs/development/python-modules/click-spinner/default.nix b/pkgs/development/python-modules/click-spinner/default.nix index c022a33608a4..626b5c9c8cc0 100644 --- a/pkgs/development/python-modules/click-spinner/default.nix +++ b/pkgs/development/python-modules/click-spinner/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "click_spinner" ]; - meta = with lib; { + meta = { description = "Add support for showwing that command line app is active to Click"; homepage = "https://github.com/click-contrib/click-spinner"; changelog = "https://github.com/click-contrib/click-spinner/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clickclick/default.nix b/pkgs/development/python-modules/clickclick/default.nix index 666755eac583..baf60a69af7c 100644 --- a/pkgs/development/python-modules/clickclick/default.nix +++ b/pkgs/development/python-modules/clickclick/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { "test_cli" ]; - meta = with lib; { + meta = { description = "Click command line utilities"; homepage = "https://codeberg.org/hjacobs/python-clickclick/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clickgen/default.nix b/pkgs/development/python-modules/clickgen/default.nix index 4fed05d02c5d..a75d124a488f 100644 --- a/pkgs/development/python-modules/clickgen/default.nix +++ b/pkgs/development/python-modules/clickgen/default.nix @@ -44,14 +44,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "clickgen" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ful1e5/clickgen"; description = "Hassle-free cursor building toolbox"; longDescription = '' clickgen is API for building X11 and Windows Cursors from .png files. clickgen is using anicursorgen and xcursorgen under the hood. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # fails with: # ld: unknown option: -zdefs diff --git a/pkgs/development/python-modules/clickhouse-cityhash/default.nix b/pkgs/development/python-modules/clickhouse-cityhash/default.nix index 1ef113b016a6..7b4cd27b7ce3 100644 --- a/pkgs/development/python-modules/clickhouse-cityhash/default.nix +++ b/pkgs/development/python-modules/clickhouse-cityhash/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "clickhouse_cityhash" ]; - meta = with lib; { + meta = { description = "Python-bindings for CityHash, a fast non-cryptographic hash algorithm"; homepage = "https://github.com/xzkostyan/python-cityhash"; - license = licenses.upl; - maintainers = with maintainers; [ breakds ]; + license = lib.licenses.upl; + maintainers = with lib.maintainers; [ breakds ]; }; } diff --git a/pkgs/development/python-modules/clickhouse-cli/default.nix b/pkgs/development/python-modules/clickhouse-cli/default.nix index 15a700f684e1..1e2407e8d3e8 100644 --- a/pkgs/development/python-modules/clickhouse-cli/default.nix +++ b/pkgs/development/python-modules/clickhouse-cli/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "clickhouse_cli" ]; - meta = with lib; { + meta = { description = "Third-party client for the Clickhouse DBMS server"; mainProgram = "clickhouse-cli"; homepage = "https://github.com/hatarist/clickhouse-cli"; - license = licenses.mit; - maintainers = with maintainers; [ ivan-babrou ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ivan-babrou ]; }; } diff --git a/pkgs/development/python-modules/clickhouse-connect/default.nix b/pkgs/development/python-modules/clickhouse-connect/default.nix index 020ecd26d6df..d3743b39035b 100644 --- a/pkgs/development/python-modules/clickhouse-connect/default.nix +++ b/pkgs/development/python-modules/clickhouse-connect/default.nix @@ -77,10 +77,10 @@ buildPythonPackage rec { orjson = [ orjson ]; }; - meta = with lib; { + meta = { description = "ClickHouse Database Core Driver for Python, Pandas, and Superset"; homepage = "https://github.com/ClickHouse/clickhouse-connect"; - license = licenses.asl20; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/clickhouse-driver/default.nix b/pkgs/development/python-modules/clickhouse-driver/default.nix index 7f361148338a..d19aac86de6f 100644 --- a/pkgs/development/python-modules/clickhouse-driver/default.nix +++ b/pkgs/development/python-modules/clickhouse-driver/default.nix @@ -68,10 +68,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "clickhouse_driver" ]; - meta = with lib; { + meta = { description = "Python driver with native interface for ClickHouse"; homepage = "https://github.com/mymarilyn/clickhouse-driver"; - license = licenses.mit; - maintainers = with maintainers; [ breakds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ breakds ]; }; } diff --git a/pkgs/development/python-modules/cliff/default.nix b/pkgs/development/python-modules/cliff/default.nix index 084b86af0e67..60dc896af747 100644 --- a/pkgs/development/python-modules/cliff/default.nix +++ b/pkgs/development/python-modules/cliff/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pytest = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = "Command Line Interface Formulation Framework"; homepage = "https://github.com/openstack/cliff"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/clifford/default.nix b/pkgs/development/python-modules/clifford/default.nix index 3b6e68710b4b..3c43bd7d5a24 100644 --- a/pkgs/development/python-modules/clifford/default.nix +++ b/pkgs/development/python-modules/clifford/default.nix @@ -67,7 +67,7 @@ buildPythonPackage rec { description = "Numerical Geometric Algebra Module"; homepage = "https://clifford.readthedocs.io"; changelog = "https://github.com/pygae/clifford/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; # Broken with numba >= 0.54 # see https://github.com/pygae/clifford/issues/430 diff --git a/pkgs/development/python-modules/cligj/default.nix b/pkgs/development/python-modules/cligj/default.nix index b3fa6fd39f24..cf91b206452c 100644 --- a/pkgs/development/python-modules/cligj/default.nix +++ b/pkgs/development/python-modules/cligj/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytest tests ''; - meta = with lib; { + meta = { description = "Click params for command line interfaces to GeoJSON"; homepage = "https://github.com/mapbox/cligj"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clikit/default.nix b/pkgs/development/python-modules/clikit/default.nix index 8117e9b5e5cc..80f76872c10c 100644 --- a/pkgs/development/python-modules/clikit/default.nix +++ b/pkgs/development/python-modules/clikit/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "clikit" ]; - meta = with lib; { + meta = { description = "Group of utilities to build beautiful and testable command line interfaces"; homepage = "https://github.com/sdispater/clikit"; changelog = "https://github.com/sdispater/clikit/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/clint/default.nix b/pkgs/development/python-modules/clint/default.nix index 453f9edcf01f..e95c6f26c397 100644 --- a/pkgs/development/python-modules/clint/default.nix +++ b/pkgs/development/python-modules/clint/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "clint" ]; - meta = with lib; { + meta = { homepage = "https://github.com/kennethreitz/clint"; description = "Python Command Line Interface Tools"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clintermission/default.nix b/pkgs/development/python-modules/clintermission/default.nix index e9020e9d9b1a..d2e2973759ab 100644 --- a/pkgs/development/python-modules/clintermission/default.nix +++ b/pkgs/development/python-modules/clintermission/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "clintermission" ]; - meta = with lib; { + meta = { description = "Non-fullscreen command-line selection menu"; homepage = "https://github.com/sebageek/clintermission"; changelog = "https://github.com/sebageek/clintermission/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clip-anytorch/default.nix b/pkgs/development/python-modules/clip-anytorch/default.nix index 53bd9b5008d3..2a28cc0a65ba 100644 --- a/pkgs/development/python-modules/clip-anytorch/default.nix +++ b/pkgs/development/python-modules/clip-anytorch/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { # All tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Contrastive Language-Image Pretraining"; homepage = "https://github.com/rom1504/CLIP"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/clip/default.nix b/pkgs/development/python-modules/clip/default.nix index 1ea558cc86d6..b4ba5e8dcc30 100644 --- a/pkgs/development/python-modules/clip/default.nix +++ b/pkgs/development/python-modules/clip/default.nix @@ -31,10 +31,10 @@ buildPythonPackage { pythonImportsCheck = [ "clip" ]; - meta = with lib; { + meta = { description = "Contrastive Language-Image Pretraining"; homepage = "https://github.com/openai/CLIP"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/clize/default.nix b/pkgs/development/python-modules/clize/default.nix index 2de988250dbb..a452486ae7ce 100644 --- a/pkgs/development/python-modules/clize/default.nix +++ b/pkgs/development/python-modules/clize/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "clize" ]; - meta = with lib; { + meta = { description = "Command-line argument parsing for Python"; homepage = "https://github.com/epsy/clize"; changelog = "https://github.com/epsy/clize/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cloudpickle/default.nix b/pkgs/development/python-modules/cloudpickle/default.nix index ff5bad75b7dd..8fdb9ec23f12 100644 --- a/pkgs/development/python-modules/cloudpickle/default.nix +++ b/pkgs/development/python-modules/cloudpickle/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "tests/cloudpickle_test.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/cloudpipe/cloudpickle/blob/${src.tag}/CHANGES.md"; description = "Extended pickling support for Python objects"; homepage = "https://github.com/cloudpipe/cloudpickle"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cloudscraper/default.nix b/pkgs/development/python-modules/cloudscraper/default.nix index 8b20da7c7f45..23c72ece4fd3 100644 --- a/pkgs/development/python-modules/cloudscraper/default.nix +++ b/pkgs/development/python-modules/cloudscraper/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cloudscraper" ]; - meta = with lib; { + meta = { description = "Python module to bypass Cloudflare's anti-bot page"; homepage = "https://github.com/venomous/cloudscraper"; changelog = "https://github.com/VeNoMouS/cloudscraper/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kini ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kini ]; }; } diff --git a/pkgs/development/python-modules/cloudsplaining/default.nix b/pkgs/development/python-modules/cloudsplaining/default.nix index bb733c0978ce..0d0bfb7802c5 100644 --- a/pkgs/development/python-modules/cloudsplaining/default.nix +++ b/pkgs/development/python-modules/cloudsplaining/default.nix @@ -60,12 +60,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cloudsplaining" ]; - meta = with lib; { + meta = { description = "Python module for AWS IAM security assessment"; homepage = "https://github.com/salesforce/cloudsplaining"; changelog = "https://github.com/salesforce/cloudsplaining/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "cloudsplaining"; }; } diff --git a/pkgs/development/python-modules/cloup/default.nix b/pkgs/development/python-modules/cloup/default.nix index 06d946e3fc80..17cf13eb1282 100644 --- a/pkgs/development/python-modules/cloup/default.nix +++ b/pkgs/development/python-modules/cloup/default.nix @@ -29,14 +29,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "cloup" ]; - meta = with lib; { + meta = { homepage = "https://github.com/janLuke/cloup"; description = "Click extended with option groups, constraints, aliases, help themes"; changelog = "https://github.com/janluke/cloup/releases/tag/v${version}"; longDescription = '' Enriches Click with option groups, constraints, command aliases, help sections for subcommands, themes for --help and other stuff. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clr-loader/default.nix b/pkgs/development/python-modules/clr-loader/default.nix index d20dcaa51e2a..ec6adf8bc8f8 100644 --- a/pkgs/development/python-modules/clr-loader/default.nix +++ b/pkgs/development/python-modules/clr-loader/default.nix @@ -89,10 +89,10 @@ buildPythonPackage { passthru.fetch-deps = dotnet-build.fetch-deps; - meta = with lib; { + meta = { description = "Generic pure Python loader for .NET runtimes"; homepage = "https://pythonnet.github.io/clr-loader/"; - license = licenses.mit; - maintainers = with maintainers; [ mdarocha ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mdarocha ]; }; } diff --git a/pkgs/development/python-modules/clustershell/default.nix b/pkgs/development/python-modules/clustershell/default.nix index 3c72369dcd44..4b95ece74579 100644 --- a/pkgs/development/python-modules/clustershell/default.nix +++ b/pkgs/development/python-modules/clustershell/default.nix @@ -87,11 +87,11 @@ buildPythonPackage rec { installShellCompletion --bash bash_completion.d/* ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Scalable Python framework for cluster administration"; homepage = "https://cea-hpc.github.io/clustershell"; - license = licenses.lgpl21; - maintainers = [ maintainers.alexvorobiev ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.alexvorobiev ]; }; } diff --git a/pkgs/development/python-modules/cmaes/default.nix b/pkgs/development/python-modules/cmaes/default.nix index 133304f68a4e..0b776001e035 100644 --- a/pkgs/development/python-modules/cmaes/default.nix +++ b/pkgs/development/python-modules/cmaes/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "test_cma_tell" ]; - meta = with lib; { + meta = { description = "Python library for CMA evolution strategy"; homepage = "https://github.com/CyberAgentAILab/cmaes"; changelog = "https://github.com/CyberAgentAILab/cmaes/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/cmake/default.nix b/pkgs/development/python-modules/cmake/default.nix index 44211597c026..56e22d10c3c7 100644 --- a/pkgs/development/python-modules/cmake/default.nix +++ b/pkgs/development/python-modules/cmake/default.nix @@ -27,13 +27,13 @@ buildPythonPackage { pythonImportsCheck = [ "cmake" ]; - meta = with lib; { + meta = { description = "CMake is an open-source, cross-platform family of tools designed to build, test and package software"; longDescription = '' This is a stub of the cmake package on PyPI that uses the cmake program provided by nixpkgs instead of downloading cmake from the web. ''; homepage = "https://github.com/scikit-build/cmake-python-distributions"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/cmarkgfm/default.nix b/pkgs/development/python-modules/cmarkgfm/default.nix index 1b62e8af7d62..2cb67f023d2b 100644 --- a/pkgs/development/python-modules/cmarkgfm/default.nix +++ b/pkgs/development/python-modules/cmarkgfm/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cmarkgfm" ]; - meta = with lib; { + meta = { description = "Minimal bindings to GitHub's fork of cmark"; homepage = "https://github.com/jonparrott/cmarkgfm"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cmd2-ext-test/default.nix b/pkgs/development/python-modules/cmd2-ext-test/default.nix index 3f061b7449be..82103e05a2ca 100644 --- a/pkgs/development/python-modules/cmd2-ext-test/default.nix +++ b/pkgs/development/python-modules/cmd2-ext-test/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cmd2_ext_test" ]; - meta = with lib; { + meta = { description = "Plugin supports testing of a cmd2 application"; homepage = "https://github.com/python-cmd2/cmd2/tree/master/plugins/ext_test"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cmd2/default.nix b/pkgs/development/python-modules/cmd2/default.nix index 4f3a9c1330f7..0554e5ee4f93 100644 --- a/pkgs/development/python-modules/cmd2/default.nix +++ b/pkgs/development/python-modules/cmd2/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cmd2" ]; - meta = with lib; { + meta = { description = "Enhancements for standard library's cmd module"; homepage = "https://github.com/python-cmd2/cmd2"; changelog = "https://github.com/python-cmd2/cmd2/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ teto ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/cmdline/default.nix b/pkgs/development/python-modules/cmdline/default.nix index 82b901c1ce72..142400367073 100644 --- a/pkgs/development/python-modules/cmdline/default.nix +++ b/pkgs/development/python-modules/cmdline/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { doCheck = false; propagatedBuildInputs = [ pyyaml ]; - meta = with lib; { + meta = { description = "Utilities for consistent command line tools"; homepage = "https://github.com/rca/cmdline"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/cmigemo/default.nix b/pkgs/development/python-modules/cmigemo/default.nix index 86d0bc64231e..3af749df30d9 100644 --- a/pkgs/development/python-modules/cmigemo/default.nix +++ b/pkgs/development/python-modules/cmigemo/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cmigemo" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/mooz/python-cmigemo"; description = "Pure python binding for C/Migemo"; - license = licenses.mit; - maintainers = with maintainers; [ illustris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ illustris ]; }; } diff --git a/pkgs/development/python-modules/cmsdials/default.nix b/pkgs/development/python-modules/cmsdials/default.nix index 1a51a3d71119..67dd98c37ed7 100644 --- a/pkgs/development/python-modules/cmsdials/default.nix +++ b/pkgs/development/python-modules/cmsdials/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cmsdials" ]; - meta = with lib; { + meta = { description = "Python API client interface to CMS DIALS service"; homepage = "https://github.com/cms-DQM/dials-py"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ShamrockLee ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; } diff --git a/pkgs/development/python-modules/cmsis-pack-manager/default.nix b/pkgs/development/python-modules/cmsis-pack-manager/default.nix index 69eb6c9bc925..16de23b159dd 100644 --- a/pkgs/development/python-modules/cmsis-pack-manager/default.nix +++ b/pkgs/development/python-modules/cmsis-pack-manager/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "test_dump_parts_cli" ]; - meta = with lib; { + meta = { description = "Rust and Python module for handling CMSIS Pack files"; homepage = "https://github.com/pyocd/cmsis-pack-manager"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ frogamic sbruder ]; diff --git a/pkgs/development/python-modules/co2signal/default.nix b/pkgs/development/python-modules/co2signal/default.nix index 6db0885e582f..147e9c6e6de8 100644 --- a/pkgs/development/python-modules/co2signal/default.nix +++ b/pkgs/development/python-modules/co2signal/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "CO2Signal" ]; - meta = with lib; { + meta = { description = "Package to access the CO2 Signal API"; homepage = "https://github.com/danielsjf/CO2Signal"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ plabadens ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ plabadens ]; }; } diff --git a/pkgs/development/python-modules/coapthon3/default.nix b/pkgs/development/python-modules/coapthon3/default.nix index 0a2d2feb6a88..283633f6d04f 100644 --- a/pkgs/development/python-modules/coapthon3/default.nix +++ b/pkgs/development/python-modules/coapthon3/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "coapthon" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Python3 library to the CoAP protocol compliant with the RFC"; - license = licenses.mit; - maintainers = with maintainers; [ urbas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urbas ]; }; } diff --git a/pkgs/development/python-modules/cobs/default.nix b/pkgs/development/python-modules/cobs/default.nix index 306bc54e4119..d6dfdba88d88 100644 --- a/pkgs/development/python-modules/cobs/default.nix +++ b/pkgs/development/python-modules/cobs/default.nix @@ -32,13 +32,13 @@ buildPythonPackage rec { "cobs.cobsr" ]; - meta = with lib; { + meta = { description = "Python functions for encoding and decoding COBS"; longDescription = '' COBS is a method of encoding a packet of bytes into a form that contains no bytes with value zero (0x00). The input packet of bytes can contain bytes in the full range of 0x00 to 0xFF. The COBS encoded packet is guaranteed to generate packets with bytes only in the range 0x01 to 0xFF. Thus, in a communication protocol, packet boundaries can be reliably delimited with 0x00 bytes. ''; homepage = "https://github.com/cmcqueen/cobs-python/"; - license = licenses.mit; - teams = [ teams.ororatech ]; + license = lib.licenses.mit; + teams = [ lib.teams.ororatech ]; }; } diff --git a/pkgs/development/python-modules/cock/default.nix b/pkgs/development/python-modules/cock/default.nix index 762521b0c867..b93a106afdd8 100644 --- a/pkgs/development/python-modules/cock/default.nix +++ b/pkgs/development/python-modules/cock/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { pyyaml ]; - meta = with lib; { + meta = { homepage = "https://github.com/pohmelie/cock"; description = "Configuration file with click"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/coconut/default.nix b/pkgs/development/python-modules/coconut/default.nix index 2f8acae661c1..fa4027beaeef 100644 --- a/pkgs/development/python-modules/coconut/default.nix +++ b/pkgs/development/python-modules/coconut/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "coconut" ]; - meta = with lib; { + meta = { description = "Simple, elegant, Pythonic functional programming"; homepage = "http://coconut-lang.org/"; changelog = "https://github.com/evhub/coconut/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fabianhjr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fabianhjr ]; }; } diff --git a/pkgs/development/python-modules/cocotb-bus/default.nix b/pkgs/development/python-modules/cocotb-bus/default.nix index c817ebc5a3f2..22d05ebcc748 100644 --- a/pkgs/development/python-modules/cocotb-bus/default.nix +++ b/pkgs/development/python-modules/cocotb-bus/default.nix @@ -24,10 +24,10 @@ buildPythonPackage { # make test # ''; - meta = with lib; { + meta = { description = "Pre-packaged testbenching tools and reusable bus interfaces for cocotb"; homepage = "https://github.com/cocotb/cocotb-bus"; - license = licenses.bsd3; - maintainers = with maintainers; [ oskarwires ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ oskarwires ]; }; } diff --git a/pkgs/development/python-modules/codepy/default.nix b/pkgs/development/python-modules/codepy/default.nix index 2214fbe4dca8..7e9996dfeecc 100644 --- a/pkgs/development/python-modules/codepy/default.nix +++ b/pkgs/development/python-modules/codepy/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { doCheck = false; # tests require boost setup for ad hoc module compilation - meta = with lib; { + meta = { homepage = "https://github.com/inducer/codepy"; description = "Generate and execute native code at run time, from Python"; - license = licenses.mit; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ atila ]; }; } diff --git a/pkgs/development/python-modules/coinmetrics-api-client/default.nix b/pkgs/development/python-modules/coinmetrics-api-client/default.nix index 4f4caf6be44b..715fef560465 100644 --- a/pkgs/development/python-modules/coinmetrics-api-client/default.nix +++ b/pkgs/development/python-modules/coinmetrics-api-client/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "coinmetrics.api_client" ]; - meta = with lib; { + meta = { description = "Coin Metrics API v4 client library"; homepage = "https://coinmetrics.github.io/api-client-python/site/index.html"; - license = licenses.mit; - maintainers = with maintainers; [ centromere ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ centromere ]; mainProgram = "coinmetrics"; }; } diff --git a/pkgs/development/python-modules/colander/default.nix b/pkgs/development/python-modules/colander/default.nix index 1f61b36e9021..5230613d1bae 100644 --- a/pkgs/development/python-modules/colander/default.nix +++ b/pkgs/development/python-modules/colander/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Simple schema-based serialization and deserialization library"; homepage = "https://github.com/Pylons/colander"; - license = licenses.free; # http://repoze.org/LICENSE.txt + license = lib.licenses.free; # http://repoze.org/LICENSE.txt maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/colanderalchemy/default.nix b/pkgs/development/python-modules/colanderalchemy/default.nix index d8da759500d0..089c1c506927 100644 --- a/pkgs/development/python-modules/colanderalchemy/default.nix +++ b/pkgs/development/python-modules/colanderalchemy/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { # Tests are not included in Pypi doCheck = false; - meta = with lib; { + meta = { description = "Autogenerate Colander schemas based on SQLAlchemy models"; homepage = "https://github.com/stefanofontanelli/ColanderAlchemy"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/colorama/default.nix b/pkgs/development/python-modules/colorama/default.nix index 901750de1fe8..188567a831a1 100644 --- a/pkgs/development/python-modules/colorama/default.nix +++ b/pkgs/development/python-modules/colorama/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "colorama" ]; - meta = with lib; { + meta = { description = "Cross-platform colored terminal text"; homepage = "https://github.com/tartley/colorama"; changelog = "https://github.com/tartley/colorama/raw/${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/colorcet/default.nix b/pkgs/development/python-modules/colorcet/default.nix index b335897207fc..e7dacc08fd18 100644 --- a/pkgs/development/python-modules/colorcet/default.nix +++ b/pkgs/development/python-modules/colorcet/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "colorcet" ]; - meta = with lib; { + meta = { description = "Collection of perceptually uniform colormaps"; mainProgram = "colorcet"; homepage = "https://colorcet.pyviz.org"; - license = licenses.cc-by-40; + license = lib.licenses.cc-by-40; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/colorclass/default.nix b/pkgs/development/python-modules/colorclass/default.nix index 016aaacc1355..2efa1a0b95b1 100644 --- a/pkgs/development/python-modules/colorclass/default.nix +++ b/pkgs/development/python-modules/colorclass/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/Robpol86/colorclass"; - license = licenses.mit; + license = lib.licenses.mit; description = "Automatic support for console colors"; }; } diff --git a/pkgs/development/python-modules/colored-traceback/default.nix b/pkgs/development/python-modules/colored-traceback/default.nix index 8fc51701bf24..04b9cfa40bc0 100644 --- a/pkgs/development/python-modules/colored-traceback/default.nix +++ b/pkgs/development/python-modules/colored-traceback/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "colored_traceback" ]; - meta = with lib; { + meta = { homepage = "https://github.com/staticshock/colored-traceback.py"; description = "Automatically color Python's uncaught exception tracebacks"; - license = licenses.isc; - maintainers = with maintainers; [ pamplemousse ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ pamplemousse ]; }; } diff --git a/pkgs/development/python-modules/colored/default.nix b/pkgs/development/python-modules/colored/default.nix index 67d966989f13..7e58b41bcc87 100644 --- a/pkgs/development/python-modules/colored/default.nix +++ b/pkgs/development/python-modules/colored/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "colored" ]; - meta = with lib; { + meta = { description = "Simple library for color and formatting to terminal"; homepage = "https://gitlab.com/dslackw/colored"; changelog = "https://gitlab.com/dslackw/colored/-/raw/${version}/CHANGES.md"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/coloredlogs/default.nix b/pkgs/development/python-modules/coloredlogs/default.nix index c3852dc4ad07..888bbfde0a47 100644 --- a/pkgs/development/python-modules/coloredlogs/default.nix +++ b/pkgs/development/python-modules/coloredlogs/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "coloredlogs" ]; - meta = with lib; { + meta = { description = "Colored stream handler for Python's logging module"; mainProgram = "coloredlogs"; homepage = "https://github.com/xolox/python-coloredlogs"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/colorful/default.nix b/pkgs/development/python-modules/colorful/default.nix index 19f6890bb191..2961849dce57 100644 --- a/pkgs/development/python-modules/colorful/default.nix +++ b/pkgs/development/python-modules/colorful/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "colorful" ]; - meta = with lib; { + meta = { description = "Library for terminal string styling"; homepage = "https://github.com/timofurrer/colorful"; changelog = "https://github.com/timofurrer/colorful/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit l33tname ]; diff --git a/pkgs/development/python-modules/colorlover/default.nix b/pkgs/development/python-modules/colorlover/default.nix index f5efbbf13486..54c0924a151e 100644 --- a/pkgs/development/python-modules/colorlover/default.nix +++ b/pkgs/development/python-modules/colorlover/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # no tests included in distributed archive doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/jackparmer/colorlover"; description = "Color scales in Python for humans"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/colormath/default.nix b/pkgs/development/python-modules/colormath/default.nix index b423ea754c56..26e5c8772446 100644 --- a/pkgs/development/python-modules/colormath/default.nix +++ b/pkgs/development/python-modules/colormath/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "colormath" ]; - meta = with lib; { + meta = { description = "Color math and conversion library"; homepage = "https://github.com/gtaylor/python-colormath"; changelog = "https://github.com/gtaylor/python-colormath/releases/tag/${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ jonathanreeve ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jonathanreeve ]; }; } diff --git a/pkgs/development/python-modules/colorthief/default.nix b/pkgs/development/python-modules/colorthief/default.nix index 66fb4f9fe502..9275822f8abf 100644 --- a/pkgs/development/python-modules/colorthief/default.nix +++ b/pkgs/development/python-modules/colorthief/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "colorthief" ]; - meta = with lib; { + meta = { description = "Python module for grabbing the color palette from an image"; homepage = "https://github.com/fengsp/color-thief-py"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/colorzero/default.nix b/pkgs/development/python-modules/colorzero/default.nix index 589013649fc9..a793d0bad35d 100644 --- a/pkgs/development/python-modules/colorzero/default.nix +++ b/pkgs/development/python-modules/colorzero/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Yet another Python color library"; homepage = "https://github.com/waveform80/colorzero"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/colour/default.nix b/pkgs/development/python-modules/colour/default.nix index 7635affe7b8b..223ea2795333 100644 --- a/pkgs/development/python-modules/colour/default.nix +++ b/pkgs/development/python-modules/colour/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "colour" ]; - meta = with lib; { + meta = { description = "Converts and manipulates common color representation (RGB, HSV, web, ...)"; homepage = "https://github.com/vaab/colour"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/colout/default.nix b/pkgs/development/python-modules/colout/default.nix index b381ffc64ff0..3a8e966a2ac8 100644 --- a/pkgs/development/python-modules/colout/default.nix +++ b/pkgs/development/python-modules/colout/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # This project does not have a unit test doCheck = false; - meta = with lib; { + meta = { description = "Color Up Arbitrary Command Output"; mainProgram = "colout"; homepage = "https://github.com/nojhan/colout"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ badele ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ badele ]; }; } diff --git a/pkgs/development/python-modules/cometblue-lite/default.nix b/pkgs/development/python-modules/cometblue-lite/default.nix index d0216307b939..529af3eb07ed 100644 --- a/pkgs/development/python-modules/cometblue-lite/default.nix +++ b/pkgs/development/python-modules/cometblue-lite/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cometblue_lite" ]; - meta = with lib; { + meta = { description = "Module for Eurotronic Comet Blue thermostats"; homepage = "https://github.com/neffs/python-cometblue_lite"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/comm/default.nix b/pkgs/development/python-modules/comm/default.nix index 9ef330e6be2a..b501ec0797ac 100644 --- a/pkgs/development/python-modules/comm/default.nix +++ b/pkgs/development/python-modules/comm/default.nix @@ -28,10 +28,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc"; homepage = "https://github.com/ipython/comm"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/command-runner/default.nix b/pkgs/development/python-modules/command-runner/default.nix index 041499fe5076..f8c2ed2cb8da 100644 --- a/pkgs/development/python-modules/command-runner/default.nix +++ b/pkgs/development/python-modules/command-runner/default.nix @@ -31,14 +31,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "command_runner" ]; - meta = with lib; { + meta = { homepage = "https://github.com/netinvent/command_runner"; description = '' Platform agnostic command execution, timed background jobs with live stdout/stderr output capture, and UAC/sudo elevation ''; changelog = "https://github.com/netinvent/command_runner/releases/tag/${src.tag}"; - license = licenses.bsd3; - teams = [ teams.wdz ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/commandlines/default.nix b/pkgs/development/python-modules/commandlines/default.nix index aa5da9c0d37f..65f85c9110bd 100644 --- a/pkgs/development/python-modules/commandlines/default.nix +++ b/pkgs/development/python-modules/commandlines/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python library for command line argument parsing"; homepage = "https://github.com/chrissimpkins/commandlines"; - license = licenses.mit; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/commandparse/default.nix b/pkgs/development/python-modules/commandparse/default.nix index 88002d022c71..c72720447582 100644 --- a/pkgs/development/python-modules/commandparse/default.nix +++ b/pkgs/development/python-modules/commandparse/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "commandparse" ]; - meta = with lib; { + meta = { description = "Python module to parse command based CLI application"; homepage = "https://github.com/flgy/commandparse"; - license = with licenses; [ mit ]; - maintainers = [ maintainers.fab ]; + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.fab ]; }; } diff --git a/pkgs/development/python-modules/commentjson/default.nix b/pkgs/development/python-modules/commentjson/default.nix index f410d16628f4..f993b4e068ca 100644 --- a/pkgs/development/python-modules/commentjson/default.nix +++ b/pkgs/development/python-modules/commentjson/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "commentjson" ]; - meta = with lib; { + meta = { description = "Add JavaScript or Python style comments in JSON"; homepage = "https://github.com/vaidik/commentjson/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/commoncode/default.nix b/pkgs/development/python-modules/commoncode/default.nix index a107a6fd888d..3765e422b354 100644 --- a/pkgs/development/python-modules/commoncode/default.nix +++ b/pkgs/development/python-modules/commoncode/default.nix @@ -66,11 +66,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "commoncode" ]; - meta = with lib; { + meta = { description = "Set of common utilities, originally split from ScanCode"; homepage = "https://github.com/nexB/commoncode"; changelog = "https://github.com/nexB/commoncode/blob/v${version}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/commonmark/default.nix b/pkgs/development/python-modules/commonmark/default.nix index cccb852f381b..63fe33eb10b8 100644 --- a/pkgs/development/python-modules/commonmark/default.nix +++ b/pkgs/development/python-modules/commonmark/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python CommonMark parser "; mainProgram = "cmark"; homepage = "https://github.com/readthedocs/commonmark.py"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/commonregex/default.nix b/pkgs/development/python-modules/commonregex/default.nix index d5ceb4ee6c7a..0a8330cdced6 100644 --- a/pkgs/development/python-modules/commonregex/default.nix +++ b/pkgs/development/python-modules/commonregex/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { build-system = [ setuptools ]; - meta = with lib; { + meta = { description = "Collection of common regular expressions bundled with an easy to use interface"; homepage = "https://github.com/madisonmay/CommonRegex"; - maintainers = with maintainers; [ k900 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/compreffor/default.nix b/pkgs/development/python-modules/compreffor/default.nix index 5cf9169bb1a3..0c6ffcf68733 100644 --- a/pkgs/development/python-modules/compreffor/default.nix +++ b/pkgs/development/python-modules/compreffor/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "compreffor" ]; - meta = with lib; { + meta = { changelog = "https://github.com/googlefonts/compreffor/releases/tag/${version}"; description = "CFF table subroutinizer for FontTools"; mainProgram = "compreffor"; homepage = "https://github.com/googlefonts/compreffor"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/compressed-rtf/default.nix b/pkgs/development/python-modules/compressed-rtf/default.nix index d02f62372d37..44df3f1efd94 100644 --- a/pkgs/development/python-modules/compressed-rtf/default.nix +++ b/pkgs/development/python-modules/compressed-rtf/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { enabledTestPaths = [ "tests/tests.py" ]; - meta = with lib; { + meta = { description = "Compressed Rich Text Format (RTF) compression and decompression"; homepage = "https://github.com/delimitry/compressed_rtf"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/concurrent-log-handler/default.nix b/pkgs/development/python-modules/concurrent-log-handler/default.nix index 752a59b9222b..a87f8f0feed4 100644 --- a/pkgs/development/python-modules/concurrent-log-handler/default.nix +++ b/pkgs/development/python-modules/concurrent-log-handler/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; # upstream has no tests - meta = with lib; { + meta = { description = "Python logging handler that allows multiple processes to safely write to the same log file concurrently"; homepage = "https://github.com/Preston-Landers/concurrent-log-handler"; - license = licenses.asl20; - maintainers = [ maintainers.bbjubjub ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.bbjubjub ]; }; } diff --git a/pkgs/development/python-modules/confection/default.nix b/pkgs/development/python-modules/confection/default.nix index 8015aea9ce82..657edf643ac6 100644 --- a/pkgs/development/python-modules/confection/default.nix +++ b/pkgs/development/python-modules/confection/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "confection" ]; - meta = with lib; { + meta = { description = "Library that offers a configuration system"; homepage = "https://github.com/explosion/confection"; changelog = "https://github.com/explosion/confection/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/configargparse/default.nix b/pkgs/development/python-modules/configargparse/default.nix index d835924a0750..0aaac058c1ed 100644 --- a/pkgs/development/python-modules/configargparse/default.nix +++ b/pkgs/development/python-modules/configargparse/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "configargparse" ]; - meta = with lib; { + meta = { description = "Drop-in replacement for argparse"; homepage = "https://github.com/bw2/ConfigArgParse"; changelog = "https://github.com/bw2/ConfigArgParse/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/configclass/default.nix b/pkgs/development/python-modules/configclass/default.nix index 8ddca65737d6..014557e41aed 100644 --- a/pkgs/development/python-modules/configclass/default.nix +++ b/pkgs/development/python-modules/configclass/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "configclass" ]; - meta = with lib; { + meta = { description = "Python to class to hold configuration values"; homepage = "https://github.com/schettino72/configclass/"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/confight/default.nix b/pkgs/development/python-modules/confight/default.nix index d3e627b79bb2..9f35fa169dc3 100644 --- a/pkgs/development/python-modules/confight/default.nix +++ b/pkgs/development/python-modules/confight/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Python context manager for managing pid files"; mainProgram = "confight"; homepage = "https://github.com/avature/confight"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ mkg20001 ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/development/python-modules/configobj/default.nix b/pkgs/development/python-modules/configobj/default.nix index 832a98eec3f4..8f141993c7c0 100644 --- a/pkgs/development/python-modules/configobj/default.nix +++ b/pkgs/development/python-modules/configobj/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "configobj" ]; - meta = with lib; { + meta = { description = "Config file reading, writing and validation"; homepage = "https://github.com/DiffSK/configobj"; changelog = "https://github.com/DiffSK/configobj/blob/v${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/configparser/default.nix b/pkgs/development/python-modules/configparser/default.nix index ce7f9a3162fa..a5dd1ac7a08c 100644 --- a/pkgs/development/python-modules/configparser/default.nix +++ b/pkgs/development/python-modules/configparser/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Updated configparser from Python 3.7 for Python 2.6+"; homepage = "https://github.com/jaraco/configparser"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/configupdater/default.nix b/pkgs/development/python-modules/configupdater/default.nix index 4abf86805d36..959b0784624e 100644 --- a/pkgs/development/python-modules/configupdater/default.nix +++ b/pkgs/development/python-modules/configupdater/default.nix @@ -27,13 +27,13 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Parser like ConfigParser but for updating configuration files"; homepage = "https://configupdater.readthedocs.io/en/latest/"; - license = with licenses; [ + license = with lib.licenses; [ mit psfl ]; - maintainers = with maintainers; [ ris ]; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/confluent-kafka/default.nix b/pkgs/development/python-modules/confluent-kafka/default.nix index d73a38ce94b0..6ea5e9045aed 100644 --- a/pkgs/development/python-modules/confluent-kafka/default.nix +++ b/pkgs/development/python-modules/confluent-kafka/default.nix @@ -115,11 +115,11 @@ buildPythonPackage rec { "tests/test_kafka_error.py" ]; - meta = with lib; { + meta = { description = "Confluent's Apache Kafka client for Python"; homepage = "https://github.com/confluentinc/confluent-kafka-python"; changelog = "https://github.com/confluentinc/confluent-kafka-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ mlieberman85 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mlieberman85 ]; }; } diff --git a/pkgs/development/python-modules/connect-box/default.nix b/pkgs/development/python-modules/connect-box/default.nix index f0a52e39b249..ddb48783fb1f 100644 --- a/pkgs/development/python-modules/connect-box/default.nix +++ b/pkgs/development/python-modules/connect-box/default.nix @@ -46,7 +46,7 @@ buildPythonPackage rec { pytestFlags = [ "--vcr-record=none" ]; - meta = with lib; { + meta = { description = "Interact with a Compal CH7465LG cable modem/router"; longDescription = '' Python Client for interacting with the cable modem/router Compal @@ -56,7 +56,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/home-assistant-ecosystem/python-connect-box"; changelog = "https://github.com/home-assistant-ecosystem/python-connect-box/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/connection-pool/default.nix b/pkgs/development/python-modules/connection-pool/default.nix index b9767c7513ba..be52ca1306e9 100644 --- a/pkgs/development/python-modules/connection-pool/default.nix +++ b/pkgs/development/python-modules/connection-pool/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { doCheck = false; # no tests pythonImportsCheck = [ "connection_pool" ]; - meta = with lib; { + meta = { description = "Thread-safe connection pool"; homepage = "https://github.com/zhouyl/ConnectionPool"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/connio/default.nix b/pkgs/development/python-modules/connio/default.nix index 8cc851b8a347..9898fb50dcdd 100644 --- a/pkgs/development/python-modules/connio/default.nix +++ b/pkgs/development/python-modules/connio/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "connio" ]; - meta = with lib; { + meta = { description = "Library for concurrency agnostic communication"; homepage = "https://github.com/tiagocoutinho/connio"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cons/default.nix b/pkgs/development/python-modules/cons/default.nix index 14c4c08d0b13..c038628532ea 100644 --- a/pkgs/development/python-modules/cons/default.nix +++ b/pkgs/development/python-modules/cons/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cons" ]; - meta = with lib; { + meta = { description = "Implementation of Lisp/Scheme-like cons in Python"; homepage = "https://github.com/pythological/python-cons"; changelog = "https://github.com/pythological/python-cons/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Etjean ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Etjean ]; }; } diff --git a/pkgs/development/python-modules/constantly/default.nix b/pkgs/development/python-modules/constantly/default.nix index ac1474bc1a87..53e9ff37bdf4 100644 --- a/pkgs/development/python-modules/constantly/default.nix +++ b/pkgs/development/python-modules/constantly/default.nix @@ -48,10 +48,10 @@ let passthru.tests.constantly = self.overridePythonAttrs { doCheck = true; }; - meta = with lib; { + meta = { description = "Module for symbolic constant support"; homepage = "https://github.com/twisted/constantly"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/construct-classes/default.nix b/pkgs/development/python-modules/construct-classes/default.nix index bcfa798f614d..364875e320cd 100644 --- a/pkgs/development/python-modules/construct-classes/default.nix +++ b/pkgs/development/python-modules/construct-classes/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "construct_classes" ]; - meta = with lib; { + meta = { description = "Parse your binary data into dataclasses"; homepage = "https://github.com/matejcik/construct-classes"; changelog = "https://github.com/matejcik/construct-classes/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/construct/default.nix b/pkgs/development/python-modules/construct/default.nix index 8accaee36821..fbf12170c78f 100644 --- a/pkgs/development/python-modules/construct/default.nix +++ b/pkgs/development/python-modules/construct/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_multiprocessing" ]; - meta = with lib; { + meta = { description = "Powerful declarative parser (and builder) for binary data"; homepage = "https://construct.readthedocs.org/"; changelog = "https://github.com/construct/construct/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/consul/default.nix b/pkgs/development/python-modules/consul/default.nix index f4947ed4b438..90100895d749 100644 --- a/pkgs/development/python-modules/consul/default.nix +++ b/pkgs/development/python-modules/consul/default.nix @@ -111,11 +111,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "consul" ]; - meta = with lib; { + meta = { description = "Python client for Consul (https://www.consul.io/)"; homepage = "https://github.com/criteo/py-consul"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ panicgh ]; }; diff --git a/pkgs/development/python-modules/container-inspector/default.nix b/pkgs/development/python-modules/container-inspector/default.nix index eb31de01684e..60615de07e9e 100644 --- a/pkgs/development/python-modules/container-inspector/default.nix +++ b/pkgs/development/python-modules/container-inspector/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "container_inspector" ]; - meta = with lib; { + meta = { description = "Suite of analysis utilities and command line tools for container images"; homepage = "https://github.com/nexB/container-inspector"; changelog = "https://github.com/nexB/container-inspector/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/contourpy/default.nix b/pkgs/development/python-modules/contourpy/default.nix index d85e5f8dfbdf..b618eee9f087 100644 --- a/pkgs/development/python-modules/contourpy/default.nix +++ b/pkgs/development/python-modules/contourpy/default.nix @@ -91,11 +91,11 @@ let nuke-refs $out/${python.sitePackages}/contourpy/util/{_build_config.py,__pycache__/_build_config.*} ''; - meta = with lib; { + meta = { changelog = "https://github.com/contourpy/contourpy/releases/tag/${src.tag}"; description = "Python library for calculating contours in 2D quadrilateral grids"; homepage = "https://github.com/contourpy/contourpy"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/controku/default.nix b/pkgs/development/python-modules/controku/default.nix index 83aaf6a8118d..692f6b805925 100644 --- a/pkgs/development/python-modules/controku/default.nix +++ b/pkgs/development/python-modules/controku/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "controku" ]; - meta = with lib; { + meta = { changelog = "https://github.com/benthetechguy/controku/releases/tag/${version}"; description = "Control Roku devices from the comfort of your own desktop"; mainProgram = "controku"; homepage = "https://github.com/benthetechguy/controku"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mjm ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mjm ]; }; } diff --git a/pkgs/development/python-modules/convertdate/default.nix b/pkgs/development/python-modules/convertdate/default.nix index bddc8486013d..5dac39d2c7f2 100644 --- a/pkgs/development/python-modules/convertdate/default.nix +++ b/pkgs/development/python-modules/convertdate/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "convertdate" ]; - meta = with lib; { + meta = { description = "Utils for converting between date formats and calculating holidays"; mainProgram = "censusgeocode"; homepage = "https://github.com/fitnr/convertdate"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/convertertools/default.nix b/pkgs/development/python-modules/convertertools/default.nix index 2114a6955ed2..d14dda24230f 100644 --- a/pkgs/development/python-modules/convertertools/default.nix +++ b/pkgs/development/python-modules/convertertools/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "convertertools" ]; - meta = with lib; { + meta = { description = "Tools for converting python data types"; homepage = "https://github.com/bluetooth-devices/convertertools"; changelog = "https://github.com/bluetooth-devices/convertertools/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/conway-polynomials/default.nix b/pkgs/development/python-modules/conway-polynomials/default.nix index ba7ad497390b..c57db302ad2d 100644 --- a/pkgs/development/python-modules/conway-polynomials/default.nix +++ b/pkgs/development/python-modules/conway-polynomials/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "conway_polynomials" ]; - meta = with lib; { + meta = { description = "Python interface to Frank Lübeck's Conway polynomial database"; homepage = "https://github.com/sagemath/conway-polynomials"; - teams = [ teams.sage ]; - license = licenses.gpl3Plus; + teams = [ lib.teams.sage ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/cookiecutter/default.nix b/pkgs/development/python-modules/cookiecutter/default.nix index d4071552f112..c89be0107a43 100644 --- a/pkgs/development/python-modules/cookiecutter/default.nix +++ b/pkgs/development/python-modules/cookiecutter/default.nix @@ -74,12 +74,12 @@ buildPythonPackage rec { "test_should_invoke_main" ]; - meta = with lib; { + meta = { homepage = "https://github.com/audreyr/cookiecutter"; changelog = "https://github.com/cookiecutter/cookiecutter/blob/${version}/HISTORY.md"; description = "Command-line utility that creates projects from project templates"; mainProgram = "cookiecutter"; - license = licenses.bsd3; - maintainers = with maintainers; [ kragniz ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kragniz ]; }; } diff --git a/pkgs/development/python-modules/cookies/default.nix b/pkgs/development/python-modules/cookies/default.nix index bd58002178d1..11a336fcf2c4 100644 --- a/pkgs/development/python-modules/cookies/default.nix +++ b/pkgs/development/python-modules/cookies/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { "test_encoding_assumptions" ]; - meta = with lib; { + meta = { description = "Friendlier RFC 6265-compliant cookie parser/renderer"; homepage = "https://github.com/sashahart/cookies"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/coordinates/default.nix b/pkgs/development/python-modules/coordinates/default.nix index 4d4053f2bc53..51c85ec1429c 100644 --- a/pkgs/development/python-modules/coordinates/default.nix +++ b/pkgs/development/python-modules/coordinates/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "coordinates" ]; - meta = with lib; { + meta = { description = "Convenience class for doing maths with explicit coordinates"; homepage = "https://github.com/clbarnes/coordinates"; changelog = "https://github.com/clbarnes/coordinates/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/copier-template-tester/default.nix b/pkgs/development/python-modules/copier-template-tester/default.nix index d264c17402b4..2cf566a09f3f 100644 --- a/pkgs/development/python-modules/copier-template-tester/default.nix +++ b/pkgs/development/python-modules/copier-template-tester/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { corallium ]; - meta = with lib; { + meta = { description = "CLI and pre-commit tool for testing copier"; homepage = "https://copier-template-tester.kyleking.me"; - license = licenses.mit; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/coqpit/default.nix b/pkgs/development/python-modules/coqpit/default.nix index 6aae5c267f9e..c1db12bdc4a8 100644 --- a/pkgs/development/python-modules/coqpit/default.nix +++ b/pkgs/development/python-modules/coqpit/default.nix @@ -40,13 +40,13 @@ buildPythonPackage rec { disabledTestPaths = lib.optionals (pythonAtLeast "3.11") [ "tests/test_nested_configs.py" ]; - meta = with lib; { + meta = { description = "Simple but maybe too simple config management through python data classes"; longDescription = '' Simple, light-weight and no dependency config handling through python data classes with to/from JSON serialization/deserialization. ''; homepage = "https://github.com/idiap/coqui-ai-coqpit"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/corallium/default.nix b/pkgs/development/python-modules/corallium/default.nix index 9781cd9a6e20..5033ed80aed7 100644 --- a/pkgs/development/python-modules/corallium/default.nix +++ b/pkgs/development/python-modules/corallium/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { tomli ]; - meta = with lib; { + meta = { description = "Shared functionality for calcipy-ecosystem"; homepage = "https://corallium.kyleking.me"; - license = licenses.mit; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/coreapi/default.nix b/pkgs/development/python-modules/coreapi/default.nix index f70b8a73a65e..6a0dd2026df4 100644 --- a/pkgs/development/python-modules/coreapi/default.nix +++ b/pkgs/development/python-modules/coreapi/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "Python client library for Core API"; homepage = "https://github.com/core-api/python-client"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/coreschema/default.nix b/pkgs/development/python-modules/coreschema/default.nix index 1aede8b9f587..b9538caac7db 100644 --- a/pkgs/development/python-modules/coreschema/default.nix +++ b/pkgs/development/python-modules/coreschema/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "Python client library for Core Schema"; homepage = "https://github.com/ivegotasthma/python-coreschema"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cornice/default.nix b/pkgs/development/python-modules/cornice/default.nix index 639ddcacd487..c35930d1ff5d 100644 --- a/pkgs/development/python-modules/cornice/default.nix +++ b/pkgs/development/python-modules/cornice/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "cornice" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mozilla-services/cornice"; description = "Build Web Services with Pyramid"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/corsair-scan/default.nix b/pkgs/development/python-modules/corsair-scan/default.nix index bb0a0499d092..911b410f5f4d 100644 --- a/pkgs/development/python-modules/corsair-scan/default.nix +++ b/pkgs/development/python-modules/corsair-scan/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { "test_corsair_scan_origin" ]; - meta = with lib; { + meta = { description = "Python module to check for Cross-Origin Resource Sharing (CORS) misconfigurations"; mainProgram = "corsair"; homepage = "https://github.com/Santandersecurityresearch/corsair_scan"; changelog = "https://github.com/Santandersecurityresearch/corsair_scan/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cose/default.nix b/pkgs/development/python-modules/cose/default.nix index 087dcc6dbfbf..10258b7999c4 100644 --- a/pkgs/development/python-modules/cose/default.nix +++ b/pkgs/development/python-modules/cose/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycose" ]; - meta = with lib; { + meta = { description = "Python implementation of the COSE specification"; homepage = "https://github.com/TimothyClaeys/pycose"; - license = licenses.bsd3; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/courlan/default.nix b/pkgs/development/python-modules/courlan/default.nix index e28ad9c90786..f0e4714a46cd 100644 --- a/pkgs/development/python-modules/courlan/default.nix +++ b/pkgs/development/python-modules/courlan/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "courlan" ]; - meta = with lib; { + meta = { description = "Clean, filter and sample URLs to optimize data collection"; homepage = "https://github.com/adbar/courlan"; changelog = "https://github.com/adbar/courlan/blob/v${version}/HISTORY.md"; - license = licenses.asl20; - maintainers = with maintainers; [ jokatzke ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jokatzke ]; mainProgram = "courlan"; }; } diff --git a/pkgs/development/python-modules/cppheaderparser/default.nix b/pkgs/development/python-modules/cppheaderparser/default.nix index e692f2b804bb..13842e83a8d5 100644 --- a/pkgs/development/python-modules/cppheaderparser/default.nix +++ b/pkgs/development/python-modules/cppheaderparser/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "CppHeaderParser" ]; - meta = with lib; { + meta = { description = "Parse C++ header files using ply.lex to generate navigable class tree representing the class structure"; homepage = "https://sourceforge.net/projects/cppheaderparser/"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ pamplemousse ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ pamplemousse ]; }; } diff --git a/pkgs/development/python-modules/cpufeature/default.nix b/pkgs/development/python-modules/cpufeature/default.nix index ba51f794dd06..d7324ac312ce 100644 --- a/pkgs/development/python-modules/cpufeature/default.nix +++ b/pkgs/development/python-modules/cpufeature/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { cd cpufeature ''; - meta = with lib; { + meta = { description = "Python module for detection of CPU features"; homepage = "https://github.com/robbmcleod/cpufeature"; - license = licenses.cc0; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ fab ]; platforms = [ "x86_64-linux" "x86_64-windows" diff --git a/pkgs/development/python-modules/cpyparsing/default.nix b/pkgs/development/python-modules/cpyparsing/default.nix index 96fe9a569abc..1119f2ea695f 100644 --- a/pkgs/development/python-modules/cpyparsing/default.nix +++ b/pkgs/development/python-modules/cpyparsing/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cPyparsing" ]; - meta = with lib; { + meta = { description = "Cython PyParsing implementation"; homepage = "https://github.com/evhub/cpyparsing"; changelog = "https://github.com/evhub/cpyparsing/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fabianhjr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fabianhjr ]; }; } diff --git a/pkgs/development/python-modules/crashtest/default.nix b/pkgs/development/python-modules/crashtest/default.nix index e6c139578562..2ecd4adb0975 100644 --- a/pkgs/development/python-modules/crashtest/default.nix +++ b/pkgs/development/python-modules/crashtest/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { "crashtest.inspector" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sdispater/crashtest"; description = "Manage Python errors with ease"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/crate/default.nix b/pkgs/development/python-modules/crate/default.nix index 85a6699175e2..95bc92b9c972 100644 --- a/pkgs/development/python-modules/crate/default.nix +++ b/pkgs/development/python-modules/crate/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { "tests/client/test_http.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/crate/crate-python"; description = "Python client library for CrateDB"; changelog = "https://github.com/crate/crate-python/blob/${version}/CHANGES.txt"; - license = licenses.asl20; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/crayons/default.nix b/pkgs/development/python-modules/crayons/default.nix index 30810bb9d224..895f410bc30e 100644 --- a/pkgs/development/python-modules/crayons/default.nix +++ b/pkgs/development/python-modules/crayons/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ colorama ]; - meta = with lib; { + meta = { description = "TextUI colors for Python"; homepage = "https://github.com/kennethreitz/crayons"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/crc/default.nix b/pkgs/development/python-modules/crc/default.nix index 34e79fa8cb60..3ef8de3b8f98 100644 --- a/pkgs/development/python-modules/crc/default.nix +++ b/pkgs/development/python-modules/crc/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { disabledTestPaths = [ "test/bench" ]; - meta = with lib; { + meta = { description = "Python module for calculating and verifying predefined & custom CRC's"; homepage = "https://nicoretti.github.io/crc/"; changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ jleightcap ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jleightcap ]; mainProgram = "crc"; }; } diff --git a/pkgs/development/python-modules/crc16/default.nix b/pkgs/development/python-modules/crc16/default.nix index 2fb033d80b00..de195ff49e63 100644 --- a/pkgs/development/python-modules/crc16/default.nix +++ b/pkgs/development/python-modules/crc16/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crc16" ]; - meta = with lib; { + meta = { description = "Python library for calculating CRC16"; homepage = "https://code.google.com/archive/p/pycrc16/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/crccheck/default.nix b/pkgs/development/python-modules/crccheck/default.nix index 25f90363c517..d7fbc72b5be4 100644 --- a/pkgs/development/python-modules/crccheck/default.nix +++ b/pkgs/development/python-modules/crccheck/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "crccheck" ]; - meta = with lib; { + meta = { description = "Python library for CRCs and checksums"; homepage = "https://github.com/MartinScharrer/crccheck"; changelog = "https://github.com/MartinScharrer/crccheck/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/crcmod/default.nix b/pkgs/development/python-modules/crcmod/default.nix index beff240c986e..abc09b656042 100644 --- a/pkgs/development/python-modules/crcmod/default.nix +++ b/pkgs/development/python-modules/crcmod/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w"; }; - meta = with lib; { + meta = { description = "Python module for generating objects that compute the Cyclic Redundancy Check (CRC)"; homepage = "https://crcmod.sourceforge.net/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/credstash/default.nix b/pkgs/development/python-modules/credstash/default.nix index c9f44efdb9d6..38518398db44 100644 --- a/pkgs/development/python-modules/credstash/default.nix +++ b/pkgs/development/python-modules/credstash/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { "tests/key_service_test.py" ]; - meta = with lib; { + meta = { description = "Utility for managing secrets in the cloud using AWS KMS and DynamoDB"; homepage = "https://github.com/LuminalOSS/credstash"; changelog = "https://github.com/fugue/credstash/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "credstash"; }; diff --git a/pkgs/development/python-modules/crispy-bootstrap3/default.nix b/pkgs/development/python-modules/crispy-bootstrap3/default.nix index e7662f47548c..a2fa201ae5cc 100644 --- a/pkgs/development/python-modules/crispy-bootstrap3/default.nix +++ b/pkgs/development/python-modules/crispy-bootstrap3/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { # https://github.com/django-crispy-forms/crispy-bootstrap3/issues/12 doCheck = lib.versionOlder django.version "5.1"; - meta = with lib; { + meta = { description = "Bootstrap 3 template pack for django-crispy-forms"; homepage = "https://github.com/django-crispy-forms/crispy-bootstrap3"; changelog = "https://github.com/django-crispy-forms/crispy-bootstrap3/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/crispy-bootstrap4/default.nix b/pkgs/development/python-modules/crispy-bootstrap4/default.nix index 2a7cea92e215..fbdde0f8e28e 100644 --- a/pkgs/development/python-modules/crispy-bootstrap4/default.nix +++ b/pkgs/development/python-modules/crispy-bootstrap4/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "crispy_bootstrap4" ]; - meta = with lib; { + meta = { description = "Bootstrap 4 template pack for django-crispy-forms"; homepage = "https://github.com/django-crispy-forms/crispy-bootstrap4"; changelog = "https://github.com/django-crispy-forms/crispy-bootstrap4/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/crispy-bootstrap5/default.nix b/pkgs/development/python-modules/crispy-bootstrap5/default.nix index 2a7f01e9d360..c5ca1a7cf7c7 100644 --- a/pkgs/development/python-modules/crispy-bootstrap5/default.nix +++ b/pkgs/development/python-modules/crispy-bootstrap5/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "crispy_bootstrap5" ]; - meta = with lib; { + meta = { description = "Bootstrap 5 template pack for django-crispy-forms"; homepage = "https://github.com/django-crispy-forms/crispy-bootstrap5"; changelog = "https://github.com/django-crispy-forms/crispy-bootstrap5/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/cron-converter/default.nix b/pkgs/development/python-modules/cron-converter/default.nix index 64622f735215..c8ea6bf12473 100644 --- a/pkgs/development/python-modules/cron-converter/default.nix +++ b/pkgs/development/python-modules/cron-converter/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cron_converter" ]; - meta = with lib; { + meta = { description = "Cron string parser and iteration for the datetime object with a cron like format"; homepage = "https://github.com/Sonic0/cron-converter"; changelog = "https://github.com/Sonic0/cron-converter/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ b4dm4n ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ b4dm4n ]; }; } diff --git a/pkgs/development/python-modules/cron-descriptor/default.nix b/pkgs/development/python-modules/cron-descriptor/default.nix index f08a30e5a26f..57c4c0fb54d6 100644 --- a/pkgs/development/python-modules/cron-descriptor/default.nix +++ b/pkgs/development/python-modules/cron-descriptor/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cron_descriptor" ]; - meta = with lib; { + meta = { description = "Library that converts cron expressions into human readable strings"; homepage = "https://github.com/Salamek/cron-descriptor"; changelog = "https://github.com/Salamek/cron-descriptor/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ phaer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/development/python-modules/croniter/default.nix b/pkgs/development/python-modules/croniter/default.nix index 5492e118943f..b46d59cb6309 100644 --- a/pkgs/development/python-modules/croniter/default.nix +++ b/pkgs/development/python-modules/croniter/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "croniter" ]; - meta = with lib; { + meta = { description = "Library to iterate over datetime object with cron like format"; homepage = "https://github.com/kiorky/croniter"; changelog = "https://github.com/kiorky/croniter/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cronsim/default.nix b/pkgs/development/python-modules/cronsim/default.nix index 6793c4772a08..73d3f9aec7e9 100644 --- a/pkgs/development/python-modules/cronsim/default.nix +++ b/pkgs/development/python-modules/cronsim/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cronsim" ]; - meta = with lib; { + meta = { description = "Cron expression parser and evaluator"; homepage = "https://github.com/cuu508/cronsim"; - license = licenses.bsd3; - maintainers = with maintainers; [ phaer ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/development/python-modules/crontab/default.nix b/pkgs/development/python-modules/crontab/default.nix index 990cdb15a681..c6ac739959bc 100644 --- a/pkgs/development/python-modules/crontab/default.nix +++ b/pkgs/development/python-modules/crontab/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crontab" ]; - meta = with lib; { + meta = { description = "Parse and use crontab schedules in Python"; homepage = "https://gitlab.com/doctormo/python-crontab/"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/crossplane/default.nix b/pkgs/development/python-modules/crossplane/default.nix index e68ab04de4f7..a3b142bd4e04 100644 --- a/pkgs/development/python-modules/crossplane/default.nix +++ b/pkgs/development/python-modules/crossplane/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "crossplane" ]; - meta = with lib; { + meta = { description = "NGINX configuration file parser and builder"; mainProgram = "crossplane"; homepage = "https://github.com/nginxinc/crossplane"; - license = licenses.asl20; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/crownstone-cloud/default.nix b/pkgs/development/python-modules/crownstone-cloud/default.nix index 089d60fceb6f..6f0c8d7debb3 100644 --- a/pkgs/development/python-modules/crownstone-cloud/default.nix +++ b/pkgs/development/python-modules/crownstone-cloud/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crownstone_cloud" ]; - meta = with lib; { + meta = { description = "Python module for communicating with Crownstone Cloud and devices"; homepage = "https://github.com/Crownstone-Community/crownstone-lib-python-cloud"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/crownstone-core/default.nix b/pkgs/development/python-modules/crownstone-core/default.nix index 7e297cce4f55..121b6b53cbfb 100644 --- a/pkgs/development/python-modules/crownstone-core/default.nix +++ b/pkgs/development/python-modules/crownstone-core/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crownstone_core" ]; - meta = with lib; { + meta = { description = "Python module with shared classes, util functions and definition of Crownstone"; homepage = "https://github.com/crownstone/crownstone-lib-python-core"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/crownstone-sse/default.nix b/pkgs/development/python-modules/crownstone-sse/default.nix index 82f106d8f9ec..5cc21ca7e2fc 100644 --- a/pkgs/development/python-modules/crownstone-sse/default.nix +++ b/pkgs/development/python-modules/crownstone-sse/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crownstone_sse" ]; - meta = with lib; { + meta = { description = "Python module for listening to Crownstone SSE events"; homepage = "https://github.com/Crownstone-Community/crownstone-lib-python-sse"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/crownstone-uart/default.nix b/pkgs/development/python-modules/crownstone-uart/default.nix index 177b319ca4cb..6d45c0598e0a 100644 --- a/pkgs/development/python-modules/crownstone-uart/default.nix +++ b/pkgs/development/python-modules/crownstone-uart/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crownstone_uart" ]; - meta = with lib; { + meta = { description = "Python module for communicating with Crownstone USB dongles"; homepage = "https://github.com/crownstone/crownstone-lib-python-uart"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cryptg/default.nix b/pkgs/development/python-modules/cryptg/default.nix index 811214043133..937e286ce8b5 100644 --- a/pkgs/development/python-modules/cryptg/default.nix +++ b/pkgs/development/python-modules/cryptg/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { substituteInPlace pyproject.toml --replace-fail "setuptools[core]" "setuptools" ''; - meta = with lib; { + meta = { description = "Official Telethon extension to provide much faster cryptography for Telegram API requests"; homepage = "https://github.com/cher-nov/cryptg"; - license = licenses.cc0; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/cryptodatahub/default.nix b/pkgs/development/python-modules/cryptodatahub/default.nix index 113c60d85940..b608ee7688f8 100644 --- a/pkgs/development/python-modules/cryptodatahub/default.nix +++ b/pkgs/development/python-modules/cryptodatahub/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { rm test/common/test_utils.py ''; - meta = with lib; { + meta = { description = "Repository of cryptography-related data"; homepage = "https://gitlab.com/coroner/cryptodatahub"; changelog = "https://gitlab.com/coroner/cryptodatahub/-/blob/${version}/CHANGELOG.rst"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cryptography/vectors.nix b/pkgs/development/python-modules/cryptography/vectors.nix index f8614e08a240..832c4ce358a8 100644 --- a/pkgs/development/python-modules/cryptography/vectors.nix +++ b/pkgs/development/python-modules/cryptography/vectors.nix @@ -32,14 +32,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "cryptography_vectors" ]; - meta = with lib; { + meta = { description = "Test vectors for the cryptography package"; homepage = "https://cryptography.io/en/latest/development/test-vectors/"; downloadPage = "https://github.com/pyca/cryptography/tree/master/vectors"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 ]; - maintainers = with maintainers; [ mdaniels5757 ]; + maintainers = with lib.maintainers; [ mdaniels5757 ]; }; } diff --git a/pkgs/development/python-modules/cryptoparser/default.nix b/pkgs/development/python-modules/cryptoparser/default.nix index 3535b79d30d1..df67fc5f5a9b 100644 --- a/pkgs/development/python-modules/cryptoparser/default.nix +++ b/pkgs/development/python-modules/cryptoparser/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cryptoparser" ]; - meta = with lib; { + meta = { description = "Security protocol parser and generator"; homepage = "https://gitlab.com/coroner/cryptoparser"; changelog = "https://gitlab.com/coroner/cryptoparser/-/blob/v${version}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/development/python-modules/crysp/default.nix b/pkgs/development/python-modules/crysp/default.nix index 98bf52f12411..8d1c25065c92 100644 --- a/pkgs/development/python-modules/crysp/default.nix +++ b/pkgs/development/python-modules/crysp/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crysp" ]; - meta = with lib; { + meta = { description = "Module that provides crypto-related facilities"; homepage = "https://github.com/bdcht/crysp"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/crytic-compile/default.nix b/pkgs/development/python-modules/crytic-compile/default.nix index f14894abc9db..957adf9d3352 100644 --- a/pkgs/development/python-modules/crytic-compile/default.nix +++ b/pkgs/development/python-modules/crytic-compile/default.nix @@ -40,13 +40,13 @@ buildPythonPackage rec { env.HOME = "/tmp"; pythonImportsCheck = [ "crytic_compile" ]; - meta = with lib; { + meta = { description = "Abstraction layer for smart contract build systems"; mainProgram = "crytic-compile"; homepage = "https://github.com/crytic/crytic-compile"; changelog = "https://github.com/crytic/crytic-compile/releases/tag/${src.tag}"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ arturcygan hellwolf ]; diff --git a/pkgs/development/python-modules/csaf-tool/default.nix b/pkgs/development/python-modules/csaf-tool/default.nix index bfb547ea5e8f..2ec84ea87923 100644 --- a/pkgs/development/python-modules/csaf-tool/default.nix +++ b/pkgs/development/python-modules/csaf-tool/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { nativeCheckInputs = [ versionCheckHook ]; - meta = with lib; { + meta = { description = "CSAF generator and validator"; homepage = "https://github.com/anthonyharrison/csaf"; changelog = "https://github.com/anthonyharrison/csaf/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ teatwig ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teatwig ]; }; } diff --git a/pkgs/development/python-modules/cson/default.nix b/pkgs/development/python-modules/cson/default.nix index c32adee78e98..fca79b25cb40 100644 --- a/pkgs/development/python-modules/cson/default.nix +++ b/pkgs/development/python-modules/cson/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cson" ]; - meta = with lib; { + meta = { description = "Python parser for the Coffeescript Object Notation (CSON)"; homepage = "https://github.com/avakar/pycson"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ xworld21 ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ xworld21 ]; }; } diff --git a/pkgs/development/python-modules/csrmesh/default.nix b/pkgs/development/python-modules/csrmesh/default.nix index 19302c709000..4989e49d8fbf 100644 --- a/pkgs/development/python-modules/csrmesh/default.nix +++ b/pkgs/development/python-modules/csrmesh/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "csrmesh" ]; - meta = with lib; { + meta = { description = "Python implementation of the CSRMesh bridge protocol"; homepage = "https://github.com/nkaminski/csrmesh"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/css-html-js-minify/default.nix b/pkgs/development/python-modules/css-html-js-minify/default.nix index df6f74caa571..51368bb47b57 100644 --- a/pkgs/development/python-modules/css-html-js-minify/default.nix +++ b/pkgs/development/python-modules/css-html-js-minify/default.nix @@ -30,15 +30,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "css_html_js_minify" ]; - meta = with lib; { + meta = { description = "StandAlone Async cross-platform Minifier for the Web"; homepage = "https://github.com/juancarlospaco/css-html-js-minify"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus mit ]; - maintainers = with maintainers; [ FlorianFranzen ]; + maintainers = with lib.maintainers; [ FlorianFranzen ]; mainProgram = "css-html-js-minify"; }; } diff --git a/pkgs/development/python-modules/css-inline/default.nix b/pkgs/development/python-modules/css-inline/default.nix index 50ca2b9ed9dc..2359023fc984 100644 --- a/pkgs/development/python-modules/css-inline/default.nix +++ b/pkgs/development/python-modules/css-inline/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { "test_invalid_href" ]; - meta = with lib; { + meta = { description = "Inline CSS into style attributes"; homepage = "https://github.com/Stranger6667/css-inline"; changelog = "https://github.com/Stranger6667/css-inline/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/css-parser/default.nix b/pkgs/development/python-modules/css-parser/default.nix index abb1130c702d..e06881f1a144 100644 --- a/pkgs/development/python-modules/css-parser/default.nix +++ b/pkgs/development/python-modules/css-parser/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "css_parser" ]; - meta = with lib; { + meta = { description = "CSS Cascading Style Sheets library for Python"; homepage = "https://github.com/ebook-utils/css-parser"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ jethro ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ jethro ]; }; } diff --git a/pkgs/development/python-modules/cssbeautifier/default.nix b/pkgs/development/python-modules/cssbeautifier/default.nix index b5895251e8ec..d911ab7efbdc 100644 --- a/pkgs/development/python-modules/cssbeautifier/default.nix +++ b/pkgs/development/python-modules/cssbeautifier/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cssbeautifier" ]; - meta = with lib; { + meta = { description = "CSS unobfuscator and beautifier"; mainProgram = "css-beautify"; homepage = "https://github.com/beautifier/js-beautify"; changelog = "https://github.com/beautifier/js-beautify/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/csscompressor/default.nix b/pkgs/development/python-modules/csscompressor/default.nix index d1a185bc8e43..63ef02e24001 100644 --- a/pkgs/development/python-modules/csscompressor/default.nix +++ b/pkgs/development/python-modules/csscompressor/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { doCheck = false; # No tests - meta = with lib; { + meta = { description = "Python port of YUI CSS Compressor"; homepage = "https://pypi.python.org/pypi/csscompressor"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cssmin/default.nix b/pkgs/development/python-modules/cssmin/default.nix index 84b4b9fe2964..80b4304bf89f 100644 --- a/pkgs/development/python-modules/cssmin/default.nix +++ b/pkgs/development/python-modules/cssmin/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Python port of the YUI CSS compression algorithm"; mainProgram = "cssmin"; homepage = "https://github.com/zacharyvoase/cssmin"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/cssselect/default.nix b/pkgs/development/python-modules/cssselect/default.nix index 227c92946d3c..09eedfe40729 100644 --- a/pkgs/development/python-modules/cssselect/default.nix +++ b/pkgs/development/python-modules/cssselect/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cssselect" ]; - meta = with lib; { + meta = { description = "CSS Selectors for Python"; homepage = "https://cssselect.readthedocs.io/"; changelog = "https://github.com/scrapy/cssselect/v${version}//CHANGES"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cssselect2/default.nix b/pkgs/development/python-modules/cssselect2/default.nix index c024d3a2d680..3fa13b8bfd26 100644 --- a/pkgs/development/python-modules/cssselect2/default.nix +++ b/pkgs/development/python-modules/cssselect2/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cssselect2" ]; - meta = with lib; { + meta = { description = "CSS selectors for Python ElementTree"; homepage = "https://github.com/Kozea/cssselect2"; changelog = "https://github.com/Kozea/cssselect2/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cssutils/default.nix b/pkgs/development/python-modules/cssutils/default.nix index 54dcad2456dd..e60fc22a5f7a 100644 --- a/pkgs/development/python-modules/cssutils/default.nix +++ b/pkgs/development/python-modules/cssutils/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cssutils" ]; - meta = with lib; { + meta = { description = "CSS Cascading Style Sheets library for Python"; homepage = "https://github.com/jaraco/cssutils"; changelog = "https://github.com/jaraco/cssutils/blob/${src.rev}/NEWS.rst"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/cstruct/default.nix b/pkgs/development/python-modules/cstruct/default.nix index 2599e7f7ad82..d30f702ce6b5 100644 --- a/pkgs/development/python-modules/cstruct/default.nix +++ b/pkgs/development/python-modules/cstruct/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "C-style structs for Python"; homepage = "https://github.com/andreax79/python-cstruct"; changelog = "https://github.com/andreax79/python-cstruct/blob/${src.tag}/changelog.txt"; - license = licenses.mit; - maintainers = with maintainers; [ tnias ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tnias ]; }; } diff --git a/pkgs/development/python-modules/csvw/default.nix b/pkgs/development/python-modules/csvw/default.nix index 161a6769da79..08ff4fbb753e 100644 --- a/pkgs/development/python-modules/csvw/default.nix +++ b/pkgs/development/python-modules/csvw/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "csvw" ]; - meta = with lib; { + meta = { description = "CSV on the Web"; homepage = "https://github.com/cldf/csvw"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ctap-keyring-device/default.nix b/pkgs/development/python-modules/ctap-keyring-device/default.nix index ce81bfa36bca..b3d769e7e2f8 100644 --- a/pkgs/development/python-modules/ctap-keyring-device/default.nix +++ b/pkgs/development/python-modules/ctap-keyring-device/default.nix @@ -73,10 +73,10 @@ buildPythonPackage rec { "windows_hello_ctap_user_verifier" ]; - meta = with lib; { + meta = { description = "CTAP (client-to-authenticator-protocol) device backed by python's keyring library"; homepage = "https://github.com/dany74q/ctap-keyring-device"; - license = licenses.mit; - maintainers = with maintainers; [ jbgosselin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jbgosselin ]; }; } diff --git a/pkgs/development/python-modules/ctypesgen/default.nix b/pkgs/development/python-modules/ctypesgen/default.nix index d195d530811f..768a02a46e55 100644 --- a/pkgs/development/python-modules/ctypesgen/default.nix +++ b/pkgs/development/python-modules/ctypesgen/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ctypesgen" ]; - meta = with lib; { + meta = { description = "Pure-python wrapper generator for ctypes"; homepage = "https://github.com/ctypesgen/ctypesgen"; changelog = "https://github.com/ctypesgen/ctypesgen/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cu2qu/default.nix b/pkgs/development/python-modules/cu2qu/default.nix index 2d13183725d3..6b2163298035 100644 --- a/pkgs/development/python-modules/cu2qu/default.nix +++ b/pkgs/development/python-modules/cu2qu/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/googlefonts/cu2qu/releases/tag/v${version}"; description = "Cubic-to-quadratic bezier curve conversion"; mainProgram = "cu2qu"; homepage = "https://github.com/googlefonts/cu2qu"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cucumber-tag-expressions/default.nix b/pkgs/development/python-modules/cucumber-tag-expressions/default.nix index 300ec1eadf87..988c6c053f0a 100644 --- a/pkgs/development/python-modules/cucumber-tag-expressions/default.nix +++ b/pkgs/development/python-modules/cucumber-tag-expressions/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pyyaml ]; - meta = with lib; { + meta = { homepage = "https://github.com/cucumber/tag-expressions"; description = "Provides tag-expression parser for cucumber/behave"; - license = licenses.mit; - maintainers = with maintainers; [ maxxk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxxk ]; }; } diff --git a/pkgs/development/python-modules/cupy/default.nix b/pkgs/development/python-modules/cupy/default.nix index fbf48fe98d2b..ea7b4743f04c 100644 --- a/pkgs/development/python-modules/cupy/default.nix +++ b/pkgs/development/python-modules/cupy/default.nix @@ -122,15 +122,15 @@ buildPythonPackage rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "NumPy-compatible matrix library accelerated by CUDA"; homepage = "https://cupy.chainer.org/"; changelog = "https://github.com/cupy/cupy/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "aarch64-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ hyphon81 ]; + maintainers = with lib.maintainers; [ hyphon81 ]; }; } diff --git a/pkgs/development/python-modules/curated-tokenizers/default.nix b/pkgs/development/python-modules/curated-tokenizers/default.nix index 598b0fa5b5d7..991e8e720f7c 100644 --- a/pkgs/development/python-modules/curated-tokenizers/default.nix +++ b/pkgs/development/python-modules/curated-tokenizers/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "curated_tokenizers" ]; - meta = with lib; { + meta = { description = "Lightweight piece tokenization library"; homepage = "https://github.com/explosion/curated-tokenizers"; changelog = "https://github.com/explosion/curated-tokenizers/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ danieldk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danieldk ]; }; } diff --git a/pkgs/development/python-modules/curio/default.nix b/pkgs/development/python-modules/curio/default.nix index 8e30e56018dd..e6f636dc8209 100644 --- a/pkgs/development/python-modules/curio/default.nix +++ b/pkgs/development/python-modules/curio/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { # curio does not package new releaseas any more passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Library for performing concurrent I/O with coroutines in Python"; homepage = "https://github.com/dabeaz/curio"; changelog = "https://github.com/dabeaz/curio/raw/${version}/CHANGES"; - license = licenses.bsd3; - maintainers = [ maintainers.pbsds ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.pbsds ]; }; } diff --git a/pkgs/development/python-modules/curlify/default.nix b/pkgs/development/python-modules/curlify/default.nix index 7e1500b72d37..750abf841084 100644 --- a/pkgs/development/python-modules/curlify/default.nix +++ b/pkgs/development/python-modules/curlify/default.nix @@ -19,9 +19,9 @@ buildPythonPackage { propagatedBuildInputs = [ requests ]; - meta = with lib; { + meta = { description = "Convert python requests request object to cURL command"; homepage = "https://github.com/ofw/curlify"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/curtsies/default.nix b/pkgs/development/python-modules/curtsies/default.nix index 7e84a3a19662..4b853561aed9 100644 --- a/pkgs/development/python-modules/curtsies/default.nix +++ b/pkgs/development/python-modules/curtsies/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Curses-like terminal wrapper, with colored strings"; homepage = "https://github.com/bpython/curtsies"; changelog = "https://github.com/bpython/curtsies/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/development/python-modules/cvelib/default.nix b/pkgs/development/python-modules/cvelib/default.nix index 967fc991ab17..e81d6d0ab12b 100644 --- a/pkgs/development/python-modules/cvelib/default.nix +++ b/pkgs/development/python-modules/cvelib/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { passthru.tests.version = testers.testVersion { package = cve; }; - meta = with lib; { + meta = { description = "Library and a command line interface for the CVE Services API"; homepage = "https://github.com/RedHatProductSecurity/cvelib"; changelog = "https://github.com/RedHatProductSecurity/cvelib/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ raboof ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raboof ]; mainProgram = "cve"; }; } diff --git a/pkgs/development/python-modules/cvss/default.nix b/pkgs/development/python-modules/cvss/default.nix index c348337e0cca..e693a06eedc8 100644 --- a/pkgs/development/python-modules/cvss/default.nix +++ b/pkgs/development/python-modules/cvss/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { cd tests ''; - meta = with lib; { + meta = { description = "Library for CVSS2/3/4"; homepage = "https://github.com/RedHatProductSecurity/cvss"; changelog = "https://github.com/RedHatProductSecurity/cvss/releases/tag/${src.tag}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "cvss_calculator"; }; } diff --git a/pkgs/development/python-modules/cvxopt/default.nix b/pkgs/development/python-modules/cvxopt/default.nix index 59158e100072..e8bc9c76ad1a 100644 --- a/pkgs/development/python-modules/cvxopt/default.nix +++ b/pkgs/development/python-modules/cvxopt/default.nix @@ -70,7 +70,7 @@ buildPythonPackage rec { "tests" ]; - meta = with lib; { + meta = { homepage = "https://cvxopt.org/"; description = "Python Software for Convex Optimization"; longDescription = '' @@ -83,6 +83,6 @@ buildPythonPackage rec { standard library and on the strengths of Python as a high-level programming language. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/cwl-upgrader/default.nix b/pkgs/development/python-modules/cwl-upgrader/default.nix index a55c5c378a59..b43e28710373 100644 --- a/pkgs/development/python-modules/cwl-upgrader/default.nix +++ b/pkgs/development/python-modules/cwl-upgrader/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cwlupgrader" ]; - meta = with lib; { + meta = { description = "Library to upgrade CWL syntax to a newer version"; mainProgram = "cwl-upgrader"; homepage = "https://github.com/common-workflow-language/cwl-upgrader"; changelog = "https://github.com/common-workflow-language/cwl-upgrader/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cwl-utils/default.nix b/pkgs/development/python-modules/cwl-utils/default.nix index 2ef7846cd46b..7e542276d8c1 100644 --- a/pkgs/development/python-modules/cwl-utils/default.nix +++ b/pkgs/development/python-modules/cwl-utils/default.nix @@ -74,11 +74,11 @@ buildPythonPackage rec { "tests/test_graph_split.py" ]; - meta = with lib; { + meta = { description = "Utilities for CWL"; homepage = "https://github.com/common-workflow-language/cwl-utils"; changelog = "https://github.com/common-workflow-language/cwl-utils/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cwlformat/default.nix b/pkgs/development/python-modules/cwlformat/default.nix index 1144d815b03b..7977bb06c365 100644 --- a/pkgs/development/python-modules/cwlformat/default.nix +++ b/pkgs/development/python-modules/cwlformat/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "test_formatting_battery" ]; - meta = with lib; { + meta = { description = "Code formatter for CWL"; homepage = "https://github.com/rabix/cwl-format"; changelog = "https://github.com/rabix/cwl-format/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cx-oracle/default.nix b/pkgs/development/python-modules/cx-oracle/default.nix index 4adcbfe92f12..e5b5ad0cec64 100644 --- a/pkgs/development/python-modules/cx-oracle/default.nix +++ b/pkgs/development/python-modules/cx-oracle/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { # Check need an Oracle database to run doCheck = false; - meta = with lib; { + meta = { description = "Python interface to Oracle"; homepage = "https://oracle.github.io/python-cx_Oracle"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/cxxfilt/default.nix b/pkgs/development/python-modules/cxxfilt/default.nix index e82f5c6e880e..bce948304e9d 100644 --- a/pkgs/development/python-modules/cxxfilt/default.nix +++ b/pkgs/development/python-modules/cxxfilt/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cxxfilt" ]; - meta = with lib; { + meta = { description = "Demangling C++ symbols in Python / interface to abi::__cxa_demangle"; homepage = "https://github.com/afq984/python-cxxfilt"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix index b87c39e09357..53b612c9c60a 100644 --- a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix +++ b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix @@ -90,11 +90,11 @@ buildPythonPackage rec { "tests/test_output_xml.py" ]; - meta = with lib; { + meta = { description = "Python library for generating CycloneDX SBOMs"; homepage = "https://github.com/CycloneDX/cyclonedx-python-lib"; changelog = "https://github.com/CycloneDX/cyclonedx-python-lib/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cyclopts/default.nix b/pkgs/development/python-modules/cyclopts/default.nix index 8ec740d9d6a2..5cd7f5682b00 100644 --- a/pkgs/development/python-modules/cyclopts/default.nix +++ b/pkgs/development/python-modules/cyclopts/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "tests/test_sphinx_ext.py" ]; - meta = with lib; { + meta = { description = "Module to create CLIs based on Python type hints"; homepage = "https://github.com/BrianPugh/cyclopts"; changelog = "https://github.com/BrianPugh/cyclopts/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/cymem/default.nix b/pkgs/development/python-modules/cymem/default.nix index d5c6ec61cfa7..178bda5a1ea1 100644 --- a/pkgs/development/python-modules/cymem/default.nix +++ b/pkgs/development/python-modules/cymem/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cymem" ]; - meta = with lib; { + meta = { description = "Cython memory pool for RAII-style memory management"; homepage = "https://github.com/explosion/cymem"; changelog = "https://github.com/explosion/cymem/releases/tag/release-${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/cypari2/default.nix b/pkgs/development/python-modules/cypari2/default.nix index 204a3ff1e0d1..bdf788fbed23 100644 --- a/pkgs/development/python-modules/cypari2/default.nix +++ b/pkgs/development/python-modules/cypari2/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Cython bindings for PARI"; - license = licenses.gpl2Plus; - teams = [ teams.sage ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.sage ]; homepage = "https://github.com/defeo/cypari2"; }; } diff --git a/pkgs/development/python-modules/cyrtranslit/default.nix b/pkgs/development/python-modules/cyrtranslit/default.nix index 13cb468bf827..e0403bc1e49e 100644 --- a/pkgs/development/python-modules/cyrtranslit/default.nix +++ b/pkgs/development/python-modules/cyrtranslit/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cyrtranslit" ]; - meta = with lib; { + meta = { description = "Transliterate Cyrillic script to Latin script and vice versa"; homepage = "https://github.com/opendatakosovo/cyrillic-transliteration"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/cysignals/default.nix b/pkgs/development/python-modules/cysignals/default.nix index 839e3cfd2385..ca0dcdefee1d 100644 --- a/pkgs/development/python-modules/cysignals/default.nix +++ b/pkgs/development/python-modules/cysignals/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Interrupt and signal handling for Cython"; mainProgram = "cysignals-CSI"; homepage = "https://github.com/sagemath/cysignals/"; - teams = [ teams.sage ]; - license = licenses.lgpl3Plus; + teams = [ lib.teams.sage ]; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/cython-test-exception-raiser/default.nix b/pkgs/development/python-modules/cython-test-exception-raiser/default.nix index 70a2746b1c60..e3bf2ba1568b 100644 --- a/pkgs/development/python-modules/cython-test-exception-raiser/default.nix +++ b/pkgs/development/python-modules/cython-test-exception-raiser/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cython_test_exception_raiser" ]; - meta = with lib; { + meta = { description = "Testing only. A cython simple extension which is used as helper for twisted/twisted Failure tests"; homepage = "https://github.com/twisted/cython-test-exception-raiser"; changelog = "https://github.com/twisted/cython-test-exception-raiser/blob/${src.rev}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ publicDomain mit ]; diff --git a/pkgs/development/python-modules/cytoolz/default.nix b/pkgs/development/python-modules/cytoolz/default.nix index 03b0b8c106b5..7fb6f94d79be 100644 --- a/pkgs/development/python-modules/cytoolz/default.nix +++ b/pkgs/development/python-modules/cytoolz/default.nix @@ -44,9 +44,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/pytoolz/cytoolz/"; description = "Cython implementation of Toolz: High performance functional utilities"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/dacite/default.nix b/pkgs/development/python-modules/dacite/default.nix index ffc7deb5fe34..9426692a2088 100644 --- a/pkgs/development/python-modules/dacite/default.nix +++ b/pkgs/development/python-modules/dacite/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/performance" ]; - meta = with lib; { + meta = { description = "Python helper to create data classes from dictionaries"; homepage = "https://github.com/konradhalas/dacite"; changelog = "https://github.com/konradhalas/dacite/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/daemonize/default.nix b/pkgs/development/python-modules/daemonize/default.nix index c71b3be58701..961600e1bb94 100644 --- a/pkgs/development/python-modules/daemonize/default.nix +++ b/pkgs/development/python-modules/daemonize/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "1hwbl3gf9fdds9sc14zgjyjisjvxidrvqc11xlbb0b6jz17nw0nx"; }; - meta = with lib; { + meta = { description = "Library to enable your code run as a daemon process on Unix-like systems"; homepage = "https://github.com/thesharp/daemonize"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/daemonocle/default.nix b/pkgs/development/python-modules/daemonocle/default.nix index abe58995650f..3f912ffb8e21 100644 --- a/pkgs/development/python-modules/daemonocle/default.nix +++ b/pkgs/development/python-modules/daemonocle/default.nix @@ -43,7 +43,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "daemonocle" ]; - meta = with lib; { + meta = { description = "Python library for creating super fancy Unix daemons"; longDescription = '' daemonocle is a library for creating your own Unix-style daemons @@ -52,8 +52,8 @@ buildPythonPackage rec { often see in other daemons. ''; homepage = "https://github.com/jnrbsn/daemonocle"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/daff/default.nix b/pkgs/development/python-modules/daff/default.nix index 9c1433c5ed59..29aa642355d8 100644 --- a/pkgs/development/python-modules/daff/default.nix +++ b/pkgs/development/python-modules/daff/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "daff" ]; - meta = with lib; { + meta = { description = "Library for comparing tables, producing a summary of their differences, and using such a summary as a patch file"; homepage = "https://github.com/paulfitz/daff"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ turion ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ turion ]; }; } diff --git a/pkgs/development/python-modules/daiquiri/default.nix b/pkgs/development/python-modules/daiquiri/default.nix index ea99c794b593..b6290689fa67 100644 --- a/pkgs/development/python-modules/daiquiri/default.nix +++ b/pkgs/development/python-modules/daiquiri/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "daiquiri" ]; - meta = with lib; { + meta = { description = "Library to configure Python logging easily"; homepage = "https://github.com/Mergifyio/daiquiri"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/daphne/default.nix b/pkgs/development/python-modules/daphne/default.nix index 30d670359019..103bbccaf828 100644 --- a/pkgs/development/python-modules/daphne/default.nix +++ b/pkgs/development/python-modules/daphne/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "daphne" ]; - meta = with lib; { + meta = { description = "Django ASGI (HTTP/WebSocket) server"; homepage = "https://github.com/django/daphne"; changelog = "https://github.com/django/daphne/blob/${src.tag}/CHANGELOG.txt"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; mainProgram = "daphne"; }; diff --git a/pkgs/development/python-modules/daqp/default.nix b/pkgs/development/python-modules/daqp/default.nix index cc36c927cb6f..2ccf953f981f 100644 --- a/pkgs/development/python-modules/daqp/default.nix +++ b/pkgs/development/python-modules/daqp/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "daqp" ]; - meta = with lib; { + meta = { description = "Dual active-set algorithm for convex quadratic programming"; homepage = "https://github.com/darnstrom/daqp"; - license = licenses.mit; - maintainers = with maintainers; [ renesat ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ renesat ]; }; } diff --git a/pkgs/development/python-modules/darkdetect/default.nix b/pkgs/development/python-modules/darkdetect/default.nix index c51f22fb368d..4ff66cdc13b9 100644 --- a/pkgs/development/python-modules/darkdetect/default.nix +++ b/pkgs/development/python-modules/darkdetect/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { --replace "'gsettings'" "'${glib.bin}/bin/gsettings'" ''; - meta = with lib; { + meta = { description = "Detect OS Dark Mode from Python"; homepage = "https://github.com/albertosottile/darkdetect"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dasbus/default.nix b/pkgs/development/python-modules/dasbus/default.nix index 93f167bd0a14..09c5ec513268 100644 --- a/pkgs/development/python-modules/dasbus/default.nix +++ b/pkgs/development/python-modules/dasbus/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { "tests/test_unix.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rhinstaller/dasbus"; description = "DBus library in Python3"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/development/python-modules/dash-bootstrap-components/default.nix b/pkgs/development/python-modules/dash-bootstrap-components/default.nix index d72d7d11d11a..9e5d7919a186 100644 --- a/pkgs/development/python-modules/dash-bootstrap-components/default.nix +++ b/pkgs/development/python-modules/dash-bootstrap-components/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dash_bootstrap_components" ]; - meta = with lib; { + meta = { description = "Bootstrap components for Plotly Dash"; homepage = "https://github.com/facultyai/dash-bootstrap-components"; changelog = "https://github.com/facultyai/dash-bootstrap-components/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dash-core-components/default.nix b/pkgs/development/python-modules/dash-core-components/default.nix index 9d15db47e8ba..5a0ef31869b9 100644 --- a/pkgs/development/python-modules/dash-core-components/default.nix +++ b/pkgs/development/python-modules/dash-core-components/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Dash component starter pack"; homepage = "https://dash.plot.ly/dash-core-components"; - license = licenses.mit; - maintainers = [ maintainers.antoinerg ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.antoinerg ]; }; } diff --git a/pkgs/development/python-modules/dash-html-components/default.nix b/pkgs/development/python-modules/dash-html-components/default.nix index 968a6f5bd615..fd40f403f780 100644 --- a/pkgs/development/python-modules/dash-html-components/default.nix +++ b/pkgs/development/python-modules/dash-html-components/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "HTML components for Dash"; homepage = "https://dash.plot.ly/dash-html-components"; - license = licenses.mit; - maintainers = [ maintainers.antoinerg ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.antoinerg ]; }; } diff --git a/pkgs/development/python-modules/dash-table/default.nix b/pkgs/development/python-modules/dash-table/default.nix index 717ed9acd7d6..f17ac4af5ce0 100644 --- a/pkgs/development/python-modules/dash-table/default.nix +++ b/pkgs/development/python-modules/dash-table/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "First-Class Interactive DataTable for Dash"; homepage = "https://dash.plot.ly/datatable"; - license = licenses.mit; - maintainers = [ maintainers.antoinerg ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.antoinerg ]; }; } diff --git a/pkgs/development/python-modules/dashing/default.nix b/pkgs/development/python-modules/dashing/default.nix index 7382adf521b5..4a03d8e9f490 100644 --- a/pkgs/development/python-modules/dashing/default.nix +++ b/pkgs/development/python-modules/dashing/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ blessed ]; - meta = with lib; { + meta = { homepage = "https://github.com/FedericoCeratto/dashing"; description = "Terminal dashboards for Python"; - license = licenses.gpl3; - maintainers = with maintainers; [ juliusrickert ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ juliusrickert ]; }; } diff --git a/pkgs/development/python-modules/dask-gateway-server/default.nix b/pkgs/development/python-modules/dask-gateway-server/default.nix index f1aa0dbc6fb3..f9f162535250 100644 --- a/pkgs/development/python-modules/dask-gateway-server/default.nix +++ b/pkgs/development/python-modules/dask-gateway-server/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dask_gateway_server" ]; - meta = with lib; { + meta = { description = "Multi-tenant server for securely deploying and managing multiple Dask clusters"; homepage = "https://gateway.dask.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dask-gateway/default.nix b/pkgs/development/python-modules/dask-gateway/default.nix index 7ef14974e75e..a39eddbe36de 100644 --- a/pkgs/development/python-modules/dask-gateway/default.nix +++ b/pkgs/development/python-modules/dask-gateway/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dask_gateway" ]; - meta = with lib; { + meta = { description = "Client library for interacting with a dask-gateway server"; homepage = "https://gateway.dask.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dask-mpi/default.nix b/pkgs/development/python-modules/dask-mpi/default.nix index f51dccdc0377..684fd457a579 100644 --- a/pkgs/development/python-modules/dask-mpi/default.nix +++ b/pkgs/development/python-modules/dask-mpi/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dask_mpi" ]; - meta = with lib; { + meta = { description = "Deploy Dask using mpi4py"; mainProgram = "dask-mpi"; homepage = "https://github.com/dask/dask-mpi"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dask-yarn/default.nix b/pkgs/development/python-modules/dask-yarn/default.nix index bcdf1e1cd844..50f58c2c8e45 100644 --- a/pkgs/development/python-modules/dask-yarn/default.nix +++ b/pkgs/development/python-modules/dask-yarn/default.nix @@ -71,7 +71,7 @@ buildPythonPackage rec { "test_widget_and_html_reprs" ]; - meta = with lib; { + meta = { description = "Deploy dask on YARN clusters"; mainProgram = "dask-yarn"; longDescription = '' @@ -81,7 +81,7 @@ buildPythonPackage rec { stop, and scale Dask clusters natively from Python. ''; homepage = "https://yarn.dask.org/"; - license = licenses.bsd3; - maintainers = with maintainers; [ illustris ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ illustris ]; }; } diff --git a/pkgs/development/python-modules/databases/default.nix b/pkgs/development/python-modules/databases/default.nix index 9d894ee1c99f..0de83c7114c7 100644 --- a/pkgs/development/python-modules/databases/default.nix +++ b/pkgs/development/python-modules/databases/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "databases" ]; - meta = with lib; { + meta = { description = "Async database support for Python"; homepage = "https://github.com/encode/databases"; changelog = "https://github.com/encode/databases/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/databricks-cli/default.nix b/pkgs/development/python-modules/databricks-cli/default.nix index 4f333c494567..8142d92d3eb1 100644 --- a/pkgs/development/python-modules/databricks-cli/default.nix +++ b/pkgs/development/python-modules/databricks-cli/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "databricks_cli" ]; - meta = with lib; { + meta = { description = "Command line interface for Databricks"; homepage = "https://github.com/databricks/databricks-cli"; changelog = "https://github.com/databricks/databricks-cli/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ tbenst ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/databricks-connect/default.nix b/pkgs/development/python-modules/databricks-connect/default.nix index bd2f6ba83cfa..519f8bc69db0 100644 --- a/pkgs/development/python-modules/databricks-connect/default.nix +++ b/pkgs/development/python-modules/databricks-connect/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "py4j" ]; - meta = with lib; { + meta = { description = "Client for connecting to remote Databricks clusters"; homepage = "https://pypi.org/project/databricks-connect"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.databricks; - maintainers = with maintainers; [ kfollesdal ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.databricks; + maintainers = with lib.maintainers; [ kfollesdal ]; }; } diff --git a/pkgs/development/python-modules/databricks-sql-connector/default.nix b/pkgs/development/python-modules/databricks-sql-connector/default.nix index f351e8d0b03b..92af5f59799f 100644 --- a/pkgs/development/python-modules/databricks-sql-connector/default.nix +++ b/pkgs/development/python-modules/databricks-sql-connector/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "databricks" ]; - meta = with lib; { + meta = { description = "Databricks SQL Connector for Python"; homepage = "https://docs.databricks.com/dev-tools/python-sql-connector.html"; changelog = "https://github.com/databricks/databricks-sql-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ harvidsen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ harvidsen ]; }; } diff --git a/pkgs/development/python-modules/dataclass-factory/default.nix b/pkgs/development/python-modules/dataclass-factory/default.nix index cdb50a5e970b..fd7f1e2a1184 100644 --- a/pkgs/development/python-modules/dataclass-factory/default.nix +++ b/pkgs/development/python-modules/dataclass-factory/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Modern way to convert python dataclasses or other objects to and from more common types like dicts or json-like structures"; homepage = "https://github.com/reagento/dataclass-factory"; changelog = "https://github.com/reagento/dataclass-factory/releases/tag/${src.rev}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dataclass-wizard/default.nix b/pkgs/development/python-modules/dataclass-wizard/default.nix index 24ff8142cc3d..df243768ce9c 100644 --- a/pkgs/development/python-modules/dataclass-wizard/default.nix +++ b/pkgs/development/python-modules/dataclass-wizard/default.nix @@ -57,12 +57,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dataclass_wizard" ]; - meta = with lib; { + meta = { description = "Wizarding tools for interacting with the Python dataclasses module"; homepage = "https://github.com/rnag/dataclass-wizard"; changelog = "https://github.com/rnag/dataclass-wizard/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ codifryed ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ codifryed ]; mainProgram = "wiz"; }; } diff --git a/pkgs/development/python-modules/dataclasses-json/default.nix b/pkgs/development/python-modules/dataclasses-json/default.nix index 1227553fc55e..7a11e307b64e 100644 --- a/pkgs/development/python-modules/dataclasses-json/default.nix +++ b/pkgs/development/python-modules/dataclasses-json/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dataclasses_json" ]; - meta = with lib; { + meta = { description = "Simple API for encoding and decoding dataclasses to and from JSON"; homepage = "https://github.com/lidatong/dataclasses-json"; changelog = "https://github.com/lidatong/dataclasses-json/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ albakham ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ albakham ]; }; } diff --git a/pkgs/development/python-modules/datadiff/default.nix b/pkgs/development/python-modules/datadiff/default.nix index 926f8a9f08a1..6b7aa5d0e209 100644 --- a/pkgs/development/python-modules/datadiff/default.nix +++ b/pkgs/development/python-modules/datadiff/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "datadiff" ]; - meta = with lib; { + meta = { description = "Library to provide human-readable diffs of Python data structures"; homepage = "https://sourceforge.net/projects/datadiff/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/datamodeldict/default.nix b/pkgs/development/python-modules/datamodeldict/default.nix index e7c8f0b3af2c..dd0d00ef778d 100644 --- a/pkgs/development/python-modules/datamodeldict/default.nix +++ b/pkgs/development/python-modules/datamodeldict/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "DataModelDict" ]; - meta = with lib; { + meta = { description = "Class allowing for data models equivalently represented as Python dictionaries, JSON, and XML"; homepage = "https://github.com/usnistgov/DataModelDict/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dataprep-ml/default.nix b/pkgs/development/python-modules/dataprep-ml/default.nix index 185d7136ae80..4ae64b3eba77 100644 --- a/pkgs/development/python-modules/dataprep-ml/default.nix +++ b/pkgs/development/python-modules/dataprep-ml/default.nix @@ -77,10 +77,10 @@ buildPythonPackage rec { "dataprep_ml.splitters" ]; - meta = with lib; { + meta = { description = "Data utilities for Machine Learning pipelines"; homepage = "https://github.com/mindsdb/dataprep_ml"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/dataset/default.nix b/pkgs/development/python-modules/dataset/default.nix index d02b4ff9e980..361457eb66e9 100644 --- a/pkgs/development/python-modules/dataset/default.nix +++ b/pkgs/development/python-modules/dataset/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dataset" ]; - meta = with lib; { + meta = { description = "Toolkit for Python-based database access"; homepage = "https://dataset.readthedocs.io"; - license = licenses.mit; - maintainers = with maintainers; [ xfnw ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xfnw ]; }; } diff --git a/pkgs/development/python-modules/datasette-publish-fly/default.nix b/pkgs/development/python-modules/datasette-publish-fly/default.nix index f31f9b3e9ca7..521fc15f525c 100644 --- a/pkgs/development/python-modules/datasette-publish-fly/default.nix +++ b/pkgs/development/python-modules/datasette-publish-fly/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "datasette_publish_fly" ]; - meta = with lib; { + meta = { description = "Datasette plugin for publishing data using Fly"; homepage = "https://datasette.io/plugins/datasette-publish-fly"; changelog = "https://github.com/simonw/datasette-publish-fly/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/datasette-template-sql/default.nix b/pkgs/development/python-modules/datasette-template-sql/default.nix index cdc245458b43..a20972838b1e 100644 --- a/pkgs/development/python-modules/datasette-template-sql/default.nix +++ b/pkgs/development/python-modules/datasette-template-sql/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "datasette_template_sql" ]; - meta = with lib; { + meta = { description = "Datasette plugin for executing SQL queries from templates"; homepage = "https://datasette.io/plugins/datasette-template-sql"; - license = licenses.asl20; - maintainers = with maintainers; [ MostAwesomeDude ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ MostAwesomeDude ]; }; } diff --git a/pkgs/development/python-modules/datasette/default.nix b/pkgs/development/python-modules/datasette/default.nix index 61bd43a42884..9a74073a73a6 100644 --- a/pkgs/development/python-modules/datasette/default.nix +++ b/pkgs/development/python-modules/datasette/default.nix @@ -114,12 +114,12 @@ buildPythonPackage rec { "datasette.plugins" ]; - meta = with lib; { + meta = { description = "Multi-tool for exploring and publishing data"; mainProgram = "datasette"; homepage = "https://datasette.io/"; changelog = "https://github.com/simonw/datasette/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/datatable/default.nix b/pkgs/development/python-modules/datatable/default.nix index 573e24154f85..72136ff84659 100644 --- a/pkgs/development/python-modules/datatable/default.nix +++ b/pkgs/development/python-modules/datatable/default.nix @@ -80,10 +80,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "datatable" ]; - meta = with lib; { + meta = { description = "data.table for Python"; homepage = "https://github.com/h2oai/datatable"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/datauri/default.nix b/pkgs/development/python-modules/datauri/default.nix index ebee55a54094..66f881087b80 100644 --- a/pkgs/development/python-modules/datauri/default.nix +++ b/pkgs/development/python-modules/datauri/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "datauri" ]; - meta = with lib; { + meta = { description = "Module for Data URI manipulation"; homepage = "https://github.com/fcurella/python-datauri"; changelog = "https://github.com/fcurella/python-datauri/releases/tag/${src.tag}"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dateparser/default.nix b/pkgs/development/python-modules/dateparser/default.nix index 7fa8566caa50..2e5112558b6d 100644 --- a/pkgs/development/python-modules/dateparser/default.nix +++ b/pkgs/development/python-modules/dateparser/default.nix @@ -82,12 +82,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dateparser" ]; - meta = with lib; { + meta = { changelog = "https://github.com/scrapinghub/dateparser/blob/${src.tag}/HISTORY.rst"; description = "Date parsing library designed to parse dates from HTML pages"; homepage = "https://github.com/scrapinghub/dateparser"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "dateparser-download"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/datetime/default.nix b/pkgs/development/python-modules/datetime/default.nix index af5a9c92085a..d954c83c1c9f 100644 --- a/pkgs/development/python-modules/datetime/default.nix +++ b/pkgs/development/python-modules/datetime/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "DateTime" ]; - meta = with lib; { + meta = { description = "DateTime data type, as known from Zope"; homepage = "https://github.com/zopefoundation/DateTime"; changelog = "https://github.com/zopefoundation/DateTime/blob/${version}/CHANGES.rst"; - license = licenses.zpl21; - maintainers = with maintainers; [ icyrockcom ]; + license = lib.licenses.zpl21; + maintainers = with lib.maintainers; [ icyrockcom ]; }; } diff --git a/pkgs/development/python-modules/dateutils/default.nix b/pkgs/development/python-modules/dateutils/default.nix index f52c467fd3dd..323a4e05ec32 100644 --- a/pkgs/development/python-modules/dateutils/default.nix +++ b/pkgs/development/python-modules/dateutils/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dateutils" ]; - meta = with lib; { + meta = { description = "Utilities for working with datetime objects"; homepage = "https://github.com/jmcantrell/python-dateutils"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/datrie/default.nix b/pkgs/development/python-modules/datrie/default.nix index 2d8b72098220..324ee8b5ef41 100644 --- a/pkgs/development/python-modules/datrie/default.nix +++ b/pkgs/development/python-modules/datrie/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "datrie" ]; - meta = with lib; { + meta = { description = "Super-fast, efficiently stored Trie for Python"; homepage = "https://github.com/kmike/datrie"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ lewo ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ lewo ]; }; } diff --git a/pkgs/development/python-modules/db-dtypes/default.nix b/pkgs/development/python-modules/db-dtypes/default.nix index 23713484c397..48aae1bd883a 100644 --- a/pkgs/development/python-modules/db-dtypes/default.nix +++ b/pkgs/development/python-modules/db-dtypes/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "db_dtypes" ]; - meta = with lib; { + meta = { description = "Pandas Data Types for SQL systems (BigQuery, Spanner)"; homepage = "https://github.com/googleapis/python-db-dtypes-pandas"; changelog = "https://github.com/googleapis/python-db-dtypes-pandas/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dbf/default.nix b/pkgs/development/python-modules/dbf/default.nix index ae7d6675ea74..e5d3ffede4ab 100644 --- a/pkgs/development/python-modules/dbf/default.nix +++ b/pkgs/development/python-modules/dbf/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbf" ]; - meta = with lib; { + meta = { description = "Module for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files"; homepage = "https://github.com/ethanfurman/dbf"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dbfread/default.nix b/pkgs/development/python-modules/dbfread/default.nix index 26d8046ea8f2..8130e72ee8b2 100644 --- a/pkgs/development/python-modules/dbfread/default.nix +++ b/pkgs/development/python-modules/dbfread/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "07c8a9af06ffad3f6f03e8fe91ad7d2733e31a26d2b72c4dd4cfbae07ee3b73d"; }; - meta = with lib; { + meta = { description = "Read DBF Files with Python"; homepage = "https://dbfread.readthedocs.org/"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dbglib/default.nix b/pkgs/development/python-modules/dbglib/default.nix index 706d5018e233..19a29138679f 100644 --- a/pkgs/development/python-modules/dbglib/default.nix +++ b/pkgs/development/python-modules/dbglib/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { }; propagatedBuildInputs = [ poetry-core ]; pythonImportsCheck = [ "dbglib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/savioxavier/dbglib/"; - license = licenses.mit; - maintainers = [ maintainers.jetpackjackson ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jetpackjackson ]; }; } diff --git a/pkgs/development/python-modules/dbt-extractor/default.nix b/pkgs/development/python-modules/dbt-extractor/default.nix index 6566c4731cc4..7108f4841b9e 100644 --- a/pkgs/development/python-modules/dbt-extractor/default.nix +++ b/pkgs/development/python-modules/dbt-extractor/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbt_extractor" ]; - meta = with lib; { + meta = { description = "Tool that processes the most common jinja value templates in dbt model files"; homepage = "https://github.com/dbt-labs/dbt-extractor"; changelog = "https://github.com/dbt-labs/dbt-extractor/blob/main/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mausch ]; }; diff --git a/pkgs/development/python-modules/dbt-postgres/default.nix b/pkgs/development/python-modules/dbt-postgres/default.nix index 0b831ab2e73e..31251a6de6b3 100644 --- a/pkgs/development/python-modules/dbt-postgres/default.nix +++ b/pkgs/development/python-modules/dbt-postgres/default.nix @@ -42,9 +42,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbt.adapters.postgres" ]; - meta = with lib; { + meta = { description = "Plugin enabling dbt to work with a Postgres database"; homepage = "https://github.com/dbt-labs/dbt-core"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/dbt-redshift/default.nix b/pkgs/development/python-modules/dbt-redshift/default.nix index de7c86ca1d6a..4dba531451a0 100644 --- a/pkgs/development/python-modules/dbt-redshift/default.nix +++ b/pkgs/development/python-modules/dbt-redshift/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbt.adapters.redshift" ]; - meta = with lib; { + meta = { description = "Plugin enabling dbt to work with Amazon Redshift"; homepage = "https://github.com/dbt-labs/dbt-redshift"; changelog = "https://github.com/dbt-labs/dbt-redshift/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix b/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix index 17f5751ec2f3..e80272b28b70 100644 --- a/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix +++ b/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbt_semantic_interfaces" ]; - meta = with lib; { + meta = { description = "Shared interfaces used by dbt-core and MetricFlow projects"; homepage = "https://github.com/dbt-labs/dbt-semantic-interfaces"; changelog = "https://github.com/dbt-labs/dbt-semantic-interfaces/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/dbus-client-gen/default.nix b/pkgs/development/python-modules/dbus-client-gen/default.nix index bdc13650ff71..5991d695e8e6 100644 --- a/pkgs/development/python-modules/dbus-client-gen/default.nix +++ b/pkgs/development/python-modules/dbus-client-gen/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { hash = "sha256-vRXo72aWoreH/VwzdEAOgoGSRzRf7vy8Z/IA+lnLoWw="; }; - meta = with lib; { + meta = { description = "Python Library for Generating D-Bus Client Code"; homepage = "https://github.com/stratis-storage/dbus-client-gen"; - license = licenses.mpl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/dbus-deviation/default.nix b/pkgs/development/python-modules/dbus-deviation/default.nix index 158bf7f5d11b..c4c9cbdba187 100644 --- a/pkgs/development/python-modules/dbus-deviation/default.nix +++ b/pkgs/development/python-modules/dbus-deviation/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbusdeviation" ]; - meta = with lib; { + meta = { homepage = "https://tecnocode.co.uk/dbus-deviation/"; description = "Project for parsing D-Bus introspection XML and processing it in various ways"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix index 94fcde72678b..2a8d4809092c 100644 --- a/pkgs/development/python-modules/dbus-fast/default.nix +++ b/pkgs/development/python-modules/dbus-fast/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Faster version of dbus-next"; homepage = "https://github.com/bluetooth-devices/dbus-fast"; changelog = "https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dbus-next/default.nix b/pkgs/development/python-modules/dbus-next/default.nix index 5c1a6ba1f30d..256ecc5397c6 100644 --- a/pkgs/development/python-modules/dbus-next/default.nix +++ b/pkgs/development/python-modules/dbus-next/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Zero-dependency DBus library for Python with asyncio support"; homepage = "https://github.com/altdesktop/python-dbus-next"; changelog = "https://github.com/altdesktop/python-dbus-next/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dbus-python-client-gen/default.nix b/pkgs/development/python-modules/dbus-python-client-gen/default.nix index 14812cda3591..b968f478ffd3 100644 --- a/pkgs/development/python-modules/dbus-python-client-gen/default.nix +++ b/pkgs/development/python-modules/dbus-python-client-gen/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbus_python_client_gen" ]; - meta = with lib; { + meta = { description = "Python library for generating dbus-python client code"; homepage = "https://github.com/stratis-storage/dbus-python-client-gen"; changelog = "https://github.com/stratis-storage/dbus-python-client-gen/blob/v${version}/CHANGES.txt"; - license = licenses.mpl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/dbus-python/default.nix b/pkgs/development/python-modules/dbus-python/default.nix index 12f0246f8401..0cc3713723af 100644 --- a/pkgs/development/python-modules/dbus-python/default.nix +++ b/pkgs/development/python-modules/dbus-python/default.nix @@ -92,10 +92,10 @@ lib.fix ( runHook postCheck ''; - meta = with lib; { + meta = { description = "Python DBus bindings"; homepage = "https://gitlab.freedesktop.org/dbus/dbus-python"; - license = licenses.mit; + license = lib.licenses.mit; platforms = dbus.meta.platforms; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/dbus-signature-pyparsing/default.nix b/pkgs/development/python-modules/dbus-signature-pyparsing/default.nix index 41a09d8e4a3a..3385b90b6e0f 100644 --- a/pkgs/development/python-modules/dbus-signature-pyparsing/default.nix +++ b/pkgs/development/python-modules/dbus-signature-pyparsing/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dbus_signature_pyparsing" ]; - meta = with lib; { + meta = { description = "Parser for a D-Bus Signature"; homepage = "https://github.com/stratis-storage/dbus-signature-pyparsing"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/dcmstack/default.nix b/pkgs/development/python-modules/dcmstack/default.nix index f4982057e9e9..1a119a68d751 100644 --- a/pkgs/development/python-modules/dcmstack/default.nix +++ b/pkgs/development/python-modules/dcmstack/default.nix @@ -43,10 +43,10 @@ buildPythonPackage { "test/test_cli.py" ]; - meta = with lib; { + meta = { description = "DICOM to Nifti conversion preserving metadata"; homepage = "https://github.com/moloney/dcmstack"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/dctorch/default.nix b/pkgs/development/python-modules/dctorch/default.nix index 04e6a357cc5c..5c8359b9d285 100644 --- a/pkgs/development/python-modules/dctorch/default.nix +++ b/pkgs/development/python-modules/dctorch/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Fast discrete cosine transforms for pytorch"; homepage = "https://pypi.org/project/dctorch/"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/ddt/default.nix b/pkgs/development/python-modules/ddt/default.nix index 541ac2a3cdda..5c2b14df8596 100644 --- a/pkgs/development/python-modules/ddt/default.nix +++ b/pkgs/development/python-modules/ddt/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { changelog = "https://github.com/datadriventests/ddt/releases/tag/${version}"; description = "Data-Driven/Decorated Tests, a library to multiply test cases"; homepage = "https://github.com/txels/ddt"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/deal-solver/default.nix b/pkgs/development/python-modules/deal-solver/default.nix index 14d5074a0500..dd192aa39590 100644 --- a/pkgs/development/python-modules/deal-solver/default.nix +++ b/pkgs/development/python-modules/deal-solver/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "test_fuzz_math_floats" ]; - meta = with lib; { + meta = { description = "Z3-powered solver (theorem prover) for deal"; homepage = "https://github.com/life4/deal-solver"; changelog = "https://github.com/life4/deal-solver/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/deal/default.nix b/pkgs/development/python-modules/deal/default.nix index dc8a622f4772..a2c9da139d0c 100644 --- a/pkgs/development/python-modules/deal/default.nix +++ b/pkgs/development/python-modules/deal/default.nix @@ -91,7 +91,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "deal" ]; - meta = with lib; { + meta = { description = "Library for design by contract (DbC) and checking values, exceptions, and side-effects"; longDescription = '' In a nutshell, deal empowers you to write bug-free code. @@ -100,7 +100,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/life4/deal"; changelog = "https://github.com/life4/deal/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/deap/default.nix b/pkgs/development/python-modules/deap/default.nix index 87ebfdb7a188..a6eb71ee2d62 100644 --- a/pkgs/development/python-modules/deap/default.nix +++ b/pkgs/development/python-modules/deap/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Novel evolutionary computation framework for rapid prototyping and testing of ideas"; homepage = "https://github.com/DEAP/deap"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ getpsyched psyanticy ]; diff --git a/pkgs/development/python-modules/debian-inspector/default.nix b/pkgs/development/python-modules/debian-inspector/default.nix index e94c6fe0f644..cc73908d5da2 100644 --- a/pkgs/development/python-modules/debian-inspector/default.nix +++ b/pkgs/development/python-modules/debian-inspector/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "debian_inspector" ]; - meta = with lib; { + meta = { description = "Utilities to parse Debian package, copyright and control files"; homepage = "https://github.com/nexB/debian-inspector"; changelog = "https://github.com/aboutcode-org/debian-inspector/blob/v${version}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 mit diff --git a/pkgs/development/python-modules/debtcollector/default.nix b/pkgs/development/python-modules/debtcollector/default.nix index 574e1c5e6e4b..250805c7bfbe 100644 --- a/pkgs/development/python-modules/debtcollector/default.nix +++ b/pkgs/development/python-modules/debtcollector/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "debtcollector" ]; - meta = with lib; { + meta = { description = "Collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner"; homepage = "https://github.com/openstack/debtcollector"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/debts/default.nix b/pkgs/development/python-modules/debts/default.nix index 36e51d2b4477..ba8a49c20034 100644 --- a/pkgs/development/python-modules/debts/default.nix +++ b/pkgs/development/python-modules/debts/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { py.test tests ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Simple library and cli-tool to help you solve some debts settlement scenarios"; mainProgram = "debts"; - license = licenses.beerware; - maintainers = [ maintainers.symphorien ]; + license = lib.licenses.beerware; + maintainers = [ lib.maintainers.symphorien ]; }; } diff --git a/pkgs/development/python-modules/debuglater/default.nix b/pkgs/development/python-modules/debuglater/default.nix index eba80a50b26e..61ba02245904 100644 --- a/pkgs/development/python-modules/debuglater/default.nix +++ b/pkgs/development/python-modules/debuglater/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "debuglater" ]; - meta = with lib; { + meta = { description = "Module for post-mortem debugging of Python programs"; homepage = "https://github.com/ploomber/debuglater"; changelog = "https://github.com/ploomber/debuglater/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/decopatch/default.nix b/pkgs/development/python-modules/decopatch/default.nix index 814637801feb..0294f0110efa 100644 --- a/pkgs/development/python-modules/decopatch/default.nix +++ b/pkgs/development/python-modules/decopatch/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # Affected: makefun, pytest-cases doCheck = false; - meta = with lib; { + meta = { description = "Python helper for decorators"; homepage = "https://github.com/smarie/python-decopatch"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/decorator/default.nix b/pkgs/development/python-modules/decorator/default.nix index 914b3828e7a4..87aac6af1762 100644 --- a/pkgs/development/python-modules/decorator/default.nix +++ b/pkgs/development/python-modules/decorator/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/test.py " ]; - meta = with lib; { + meta = { changelog = "https://github.com/micheles/decorator/blob/${src.tag}/CHANGES.md"; homepage = "https://github.com/micheles/decorator"; description = "Better living through Python with decorators"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/deebot-client/default.nix b/pkgs/development/python-modules/deebot-client/default.nix index 8ff88995f9a6..53eeac1a9f1b 100644 --- a/pkgs/development/python-modules/deebot-client/default.nix +++ b/pkgs/development/python-modules/deebot-client/default.nix @@ -90,11 +90,11 @@ buildPythonPackage rec { "test_client_reconnect_on_broker_error" ]; - meta = with lib; { + meta = { description = "Deebot client library"; homepage = "https://github.com/DeebotUniverse/client.py"; changelog = "https://github.com/DeebotUniverse/client.py/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/deemix/default.nix b/pkgs/development/python-modules/deemix/default.nix index 40ee84f52aa2..9ccc7f2cf2c9 100644 --- a/pkgs/development/python-modules/deemix/default.nix +++ b/pkgs/development/python-modules/deemix/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "deezer" ]; - meta = with lib; { + meta = { description = "Deezer downloader built from the ashes of Deezloader Remix"; mainProgram = "deemix"; homepage = "https://gitlab.com/RemixDev/deemix-py"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ natto1784 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ natto1784 ]; }; } diff --git a/pkgs/development/python-modules/deep-chainmap/default.nix b/pkgs/development/python-modules/deep-chainmap/default.nix index 5e1c1baeabb2..f32feba1aaa3 100644 --- a/pkgs/development/python-modules/deep-chainmap/default.nix +++ b/pkgs/development/python-modules/deep-chainmap/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "deep_chainmap" ]; # See the guide for more information: https://nixos.org/nixpkgs/manual/#chap-meta - meta = with lib; { + meta = { description = "Recursive subclass of ChainMap"; homepage = "https://github.com/neutrinoceros/deep_chainmap"; - license = licenses.mit; - maintainers = with maintainers; [ rehno-lindeque ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rehno-lindeque ]; }; } diff --git a/pkgs/development/python-modules/deep-translator/default.nix b/pkgs/development/python-modules/deep-translator/default.nix index a0bbfd89d8e0..fd0248aa69c2 100644 --- a/pkgs/development/python-modules/deep-translator/default.nix +++ b/pkgs/development/python-modules/deep-translator/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { # Tests will fail. doCheck = false; - meta = with lib; { + meta = { description = "Python tool to translate between different languages by using multiple translators"; homepage = "https://deep-translator.readthedocs.io"; changelog = "https://github.com/nidhaloff/deep-translator/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/deepl/default.nix b/pkgs/development/python-modules/deepl/default.nix index cc7009d1fefa..285f57bbebc5 100644 --- a/pkgs/development/python-modules/deepl/default.nix +++ b/pkgs/development/python-modules/deepl/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "deepl" ]; - meta = with lib; { + meta = { description = "Language translation API that allows other computer programs to send texts and documents to DeepL's servers and receive high-quality translations"; mainProgram = "deepl"; homepage = "https://github.com/DeepLcom/deepl-python"; changelog = "https://github.com/DeepLcom/deepl-python/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ MaskedBelgian ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MaskedBelgian ]; }; } diff --git a/pkgs/development/python-modules/deepmerge/default.nix b/pkgs/development/python-modules/deepmerge/default.nix index 6b4f70745e62..6bbb79a3f9ef 100644 --- a/pkgs/development/python-modules/deepmerge/default.nix +++ b/pkgs/development/python-modules/deepmerge/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "deepmerge" ]; - meta = with lib; { + meta = { changelog = "https://github.com/toumorokoshi/deepmerge/releases/tag/v${version}"; description = "Toolset to deeply merge python dictionaries"; downloadPage = "https://github.com/toumorokoshi/deepmerge"; homepage = "http://deepmerge.readthedocs.io/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/deeptoolsintervals/default.nix b/pkgs/development/python-modules/deeptoolsintervals/default.nix index d458f671f6ea..27cafe9c3a64 100644 --- a/pkgs/development/python-modules/deeptoolsintervals/default.nix +++ b/pkgs/development/python-modules/deeptoolsintervals/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { homepage = "https://deeptools.readthedocs.io/en/develop"; description = "Helper library for deeptools"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/deepwave/default.nix b/pkgs/development/python-modules/deepwave/default.nix index 1a7b07fc6507..4366843b565c 100644 --- a/pkgs/development/python-modules/deepwave/default.nix +++ b/pkgs/development/python-modules/deepwave/default.nix @@ -66,8 +66,8 @@ buildPythonPackage rec { meta = with lib; { description = "Wave propagation modules for PyTorch"; homepage = "https://github.com/ar4/deepwave"; - license = licenses.mit; - platforms = intersectLists platforms.x86_64 platforms.linux; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.mit; + platforms = intersectLists lib.platforms.x86_64 lib.platforms.linux; + maintainers = with lib.maintainers; [ atila ]; }; } diff --git a/pkgs/development/python-modules/deezer-py/default.nix b/pkgs/development/python-modules/deezer-py/default.nix index 48228fcace34..adce65953648 100644 --- a/pkgs/development/python-modules/deezer-py/default.nix +++ b/pkgs/development/python-modules/deezer-py/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "requests" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/RemixDev/deezer-py"; description = "Wrapper for all Deezer's APIs"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ natto1784 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ natto1784 ]; }; } diff --git a/pkgs/development/python-modules/deezer-python/default.nix b/pkgs/development/python-modules/deezer-python/default.nix index 616905a77890..7150b1c7ebdb 100644 --- a/pkgs/development/python-modules/deezer-python/default.nix +++ b/pkgs/development/python-modules/deezer-python/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "test_with_language_header" ]; - meta = with lib; { + meta = { description = "Python wrapper around the Deezer API"; homepage = "https://github.com/browniebroke/deezer-python"; changelog = "https://github.com/browniebroke/deezer-python/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ synthetica ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ synthetica ]; }; } diff --git a/pkgs/development/python-modules/defang/default.nix b/pkgs/development/python-modules/defang/default.nix index ea9bfe22478c..df78afee3ac6 100644 --- a/pkgs/development/python-modules/defang/default.nix +++ b/pkgs/development/python-modules/defang/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "defang" ]; - meta = with lib; { + meta = { description = "Module to defang and refang malicious URLs"; homepage = "https://bitbucket.org/johannestaas/defang"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/defcon/default.nix b/pkgs/development/python-modules/defcon/default.nix index 4c9beacba974..64d7ef041858 100644 --- a/pkgs/development/python-modules/defcon/default.nix +++ b/pkgs/development/python-modules/defcon/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { lxml = [ fonttools ] ++ fonttools.optional-dependencies.lxml; }; - meta = with lib; { + meta = { description = "Set of UFO based objects for use in font editing applications"; homepage = "https://github.com/robotools/defcon"; changelog = "https://github.com/robotools/defcon/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/defusedcsv/default.nix b/pkgs/development/python-modules/defusedcsv/default.nix index 5fe4db7e1abe..7ff077da570c 100644 --- a/pkgs/development/python-modules/defusedcsv/default.nix +++ b/pkgs/development/python-modules/defusedcsv/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python library to protect your users from Excel injections in CSV-format exports, drop-in replacement for standard library's csv module"; homepage = "https://github.com/raphaelm/defusedcsv"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/defusedxml/default.nix b/pkgs/development/python-modules/defusedxml/default.nix index fc235a96192e..693f40ae4a67 100644 --- a/pkgs/development/python-modules/defusedxml/default.nix +++ b/pkgs/development/python-modules/defusedxml/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "defusedxml" ]; - meta = with lib; { + meta = { changelog = "https://github.com/tiran/defusedxml/blob/v${version}/CHANGES.txt"; description = "Python module to defuse XML issues"; homepage = "https://github.com/tiran/defusedxml"; - license = licenses.psfl; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dehinter/default.nix b/pkgs/development/python-modules/dehinter/default.nix index 55dc1c503fb4..21eba3ec6309 100644 --- a/pkgs/development/python-modules/dehinter/default.nix +++ b/pkgs/development/python-modules/dehinter/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Utility for removing hinting data from TrueType and OpenType fonts"; mainProgram = "dehinter"; homepage = "https://github.com/source-foundry/dehinter"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/dek/default.nix b/pkgs/development/python-modules/dek/default.nix index 4f528b855133..a4da76797f94 100644 --- a/pkgs/development/python-modules/dek/default.nix +++ b/pkgs/development/python-modules/dek/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dek" ]; - meta = with lib; { + meta = { description = "Decorator-decorator"; homepage = "https://github.com/rec/dek"; changelog = "https://github.com/rec/dek/blob/${src.rev}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/delorean/default.nix b/pkgs/development/python-modules/delorean/default.nix index 62f89be90f63..81bfbf076640 100644 --- a/pkgs/development/python-modules/delorean/default.nix +++ b/pkgs/development/python-modules/delorean/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { # test data not included doCheck = false; - meta = with lib; { + meta = { description = "Delorean: Time Travel Made Easy"; homepage = "https://github.com/myusuf3/delorean"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/deltalake/default.nix b/pkgs/development/python-modules/deltalake/default.nix index 1bd5b6634a56..c5c824467526 100644 --- a/pkgs/development/python-modules/deltalake/default.nix +++ b/pkgs/development/python-modules/deltalake/default.nix @@ -79,12 +79,12 @@ buildPythonPackage rec { rm -rf deltalake ''; - meta = with lib; { + meta = { description = "Native Rust library for Delta Lake, with bindings into Python"; homepage = "https://github.com/delta-io/delta-rs"; changelog = "https://github.com/delta-io/delta-rs/blob/python-v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kfollesdal mslingsby harvidsen diff --git a/pkgs/development/python-modules/deluge-client/default.nix b/pkgs/development/python-modules/deluge-client/default.nix index f03a347450d2..1cee9ccbb24d 100644 --- a/pkgs/development/python-modules/deluge-client/default.nix +++ b/pkgs/development/python-modules/deluge-client/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "deluge_client" ]; - meta = with lib; { + meta = { description = "Lightweight pure-python rpc client for deluge"; homepage = "https://github.com/JohnDoee/deluge-client"; changelog = "https://github.com/JohnDoee/deluge-client/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/demes/default.nix b/pkgs/development/python-modules/demes/default.nix index 610c9d0d0a01..3b36860777ad 100644 --- a/pkgs/development/python-modules/demes/default.nix +++ b/pkgs/development/python-modules/demes/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "demes" ]; - meta = with lib; { + meta = { description = "Tools for describing and manipulating demographic models"; mainProgram = "demes"; homepage = "https://github.com/popsim-consortium/demes-python"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/demesdraw/default.nix b/pkgs/development/python-modules/demesdraw/default.nix index 36e8fcb06208..a0554c5fc93d 100644 --- a/pkgs/development/python-modules/demesdraw/default.nix +++ b/pkgs/development/python-modules/demesdraw/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "demesdraw" ]; - meta = with lib; { + meta = { description = "Drawing functions for Demes demographic models"; mainProgram = "demesdraw"; homepage = "https://github.com/grahamgower/demesdraw"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/demetriek/default.nix b/pkgs/development/python-modules/demetriek/default.nix index b68ee3ad2364..9a7ca6c39ec7 100644 --- a/pkgs/development/python-modules/demetriek/default.nix +++ b/pkgs/development/python-modules/demetriek/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python client for LaMetric TIME devices"; homepage = "https://github.com/frenck/python-demetriek"; changelog = "https://github.com/frenck/python-demetriek/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/demjson3/default.nix b/pkgs/development/python-modules/demjson3/default.nix index 091a80cf8184..794b6c90ddb3 100644 --- a/pkgs/development/python-modules/demjson3/default.nix +++ b/pkgs/development/python-modules/demjson3/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "demjson3" ]; - meta = with lib; { + meta = { description = "Encoder/decoder and lint/validator for JSON (JavaScript Object Notation)"; mainProgram = "jsonlint"; homepage = "https://github.com/nielstron/demjson3/"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/demoji/default.nix b/pkgs/development/python-modules/demoji/default.nix index 5d3841c165b3..17acfd8512ed 100644 --- a/pkgs/development/python-modules/demoji/default.nix +++ b/pkgs/development/python-modules/demoji/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "demoji" ]; - meta = with lib; { + meta = { description = "Module to find/replace/remove emojis in text strings"; homepage = "https://github.com/bsolomon1124/demoji"; changelog = "https://github.com/bsolomon1124/demoji/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dependency-injector/default.nix b/pkgs/development/python-modules/dependency-injector/default.nix index e5e0213cb6c7..da5fdfe1e102 100644 --- a/pkgs/development/python-modules/dependency-injector/default.nix +++ b/pkgs/development/python-modules/dependency-injector/default.nix @@ -65,8 +65,8 @@ buildPythonPackage rec { description = "Dependency injection microframework for Python"; homepage = "https://github.com/ets-labs/python-dependency-injector"; changelog = "https://github.com/ets-labs/python-dependency-injector/blob/${src.tag}/docs/main/changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ gerschtli ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gerschtli ]; # https://github.com/ets-labs/python-dependency-injector/issues/726 broken = versionAtLeast pydantic.version "2"; }; diff --git a/pkgs/development/python-modules/deploykit/default.nix b/pkgs/development/python-modules/deploykit/default.nix index b2e1744f00ea..05f1dc6c5573 100644 --- a/pkgs/development/python-modules/deploykit/default.nix +++ b/pkgs/development/python-modules/deploykit/default.nix @@ -39,15 +39,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "deploykit" ]; - meta = with lib; { + meta = { description = "Execute commands remote via ssh and locally in parallel with python"; homepage = "https://github.com/numtide/deploykit"; changelog = "https://github.com/numtide/deploykit/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 zowoq ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/deprecated/default.nix b/pkgs/development/python-modules/deprecated/default.nix index b330d700489a..96b42737a957 100644 --- a/pkgs/development/python-modules/deprecated/default.nix +++ b/pkgs/development/python-modules/deprecated/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "deprecated" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tantale/deprecated"; description = "Python @deprecated decorator to deprecate old python classes, functions or methods"; - license = licenses.mit; - maintainers = with maintainers; [ tilpner ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tilpner ]; }; } diff --git a/pkgs/development/python-modules/deprecation/default.nix b/pkgs/development/python-modules/deprecation/default.nix index 7c3715cbfe78..21ab1bc24df2 100644 --- a/pkgs/development/python-modules/deprecation/default.nix +++ b/pkgs/development/python-modules/deprecation/default.nix @@ -30,9 +30,9 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Library to handle automated deprecations"; homepage = "https://deprecation.readthedocs.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/derpconf/default.nix b/pkgs/development/python-modules/derpconf/default.nix index a3fbc61e2c04..3a3cf8a2f87c 100644 --- a/pkgs/development/python-modules/derpconf/default.nix +++ b/pkgs/development/python-modules/derpconf/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "derpconf" ]; - meta = with lib; { + meta = { description = "Module to abstract loading configuration files for your app"; homepage = "https://github.com/globocom/derpconf"; changelog = "https://github.com/globocom/derpconf/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/desktop-entry-lib/default.nix b/pkgs/development/python-modules/desktop-entry-lib/default.nix index 69fca060ab38..4b79bac1e0f1 100644 --- a/pkgs/development/python-modules/desktop-entry-lib/default.nix +++ b/pkgs/development/python-modules/desktop-entry-lib/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "desktop_entry_lib" ]; - meta = with lib; { + meta = { description = "Allows reading and writing .desktop files according to the Desktop Entry Specification"; homepage = "https://codeberg.org/JakobDev/desktop-entry-lib"; changelog = "https://codeberg.org/JakobDev/desktop-entry-lib/releases/tag/${version}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/detect-secrets/default.nix b/pkgs/development/python-modules/detect-secrets/default.nix index fb9048fd5f53..edd8239748e3 100644 --- a/pkgs/development/python-modules/detect-secrets/default.nix +++ b/pkgs/development/python-modules/detect-secrets/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "detect_secrets" ]; - meta = with lib; { + meta = { description = "Enterprise friendly way of detecting and preventing secrets in code"; homepage = "https://github.com/Yelp/detect-secrets"; changelog = "https://github.com/Yelp/detect-secrets/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/devialet/default.nix b/pkgs/development/python-modules/devialet/default.nix index d4cacc00a8bd..4bf54f059c2d 100644 --- a/pkgs/development/python-modules/devialet/default.nix +++ b/pkgs/development/python-modules/devialet/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "devialet" ]; - meta = with lib; { + meta = { description = "Library to interact with the Devialet API"; homepage = "https://github.com/fwestenberg/devialet"; changelog = "https://github.com/fwestenberg/devialet/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/devolo-home-control-api/default.nix b/pkgs/development/python-modules/devolo-home-control-api/default.nix index 3aa8d3b9ae39..816b1ea36102 100644 --- a/pkgs/development/python-modules/devolo-home-control-api/default.nix +++ b/pkgs/development/python-modules/devolo-home-control-api/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "devolo_home_control_api" ]; - meta = with lib; { + meta = { description = "Python library to work with devolo Home Control"; homepage = "https://github.com/2Fake/devolo_home_control_api"; changelog = "https://github.com/2Fake/devolo_home_control_api/blob/${src.tag}/docs/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/devolo-plc-api/default.nix b/pkgs/development/python-modules/devolo-plc-api/default.nix index 89f1bbb6853b..98dd25734ea7 100644 --- a/pkgs/development/python-modules/devolo-plc-api/default.nix +++ b/pkgs/development/python-modules/devolo-plc-api/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "devolo_plc_api" ]; - meta = with lib; { + meta = { description = "Module to interact with Devolo PLC devices"; homepage = "https://github.com/2Fake/devolo_plc_api"; changelog = "https://github.com/2Fake/devolo_plc_api/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/devpi-common/default.nix b/pkgs/development/python-modules/devpi-common/default.nix index 99ddb9b692ef..cff21eceea95 100644 --- a/pkgs/development/python-modules/devpi-common/default.nix +++ b/pkgs/development/python-modules/devpi-common/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/devpi/devpi"; description = "Utilities jointly used by devpi-server and devpi-client"; changelog = "https://github.com/devpi/devpi/blob/common-${version}/common/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lewo makefu ]; diff --git a/pkgs/development/python-modules/devtools/default.nix b/pkgs/development/python-modules/devtools/default.nix index a2d4e5b9aa08..fd49d7e4cb10 100644 --- a/pkgs/development/python-modules/devtools/default.nix +++ b/pkgs/development/python-modules/devtools/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "devtools" ]; - meta = with lib; { + meta = { description = "Python's missing debug print command and other development tools"; homepage = "https://python-devtools.helpmanual.io/"; changelog = "https://github.com/samuelcolvin/python-devtools/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ jdahm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jdahm ]; }; } diff --git a/pkgs/development/python-modules/dfdiskcache/default.nix b/pkgs/development/python-modules/dfdiskcache/default.nix index 600818090024..284fc1c807f2 100644 --- a/pkgs/development/python-modules/dfdiskcache/default.nix +++ b/pkgs/development/python-modules/dfdiskcache/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "dfdiskcache" ]; - meta = with lib; { + meta = { description = "Python library for caching pandas.DataFrame objects to local disk"; homepage = "https://github.com/thombashi/df-diskcache"; - license = licenses.mit; - maintainers = with maintainers; [ henrirosten ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ henrirosten ]; }; } diff --git a/pkgs/development/python-modules/diagrams/default.nix b/pkgs/development/python-modules/diagrams/default.nix index 8b026ccb8b38..33d5919ae1a5 100644 --- a/pkgs/development/python-modules/diagrams/default.nix +++ b/pkgs/development/python-modules/diagrams/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "diagrams" ]; - meta = with lib; { + meta = { description = "Diagram as Code"; homepage = "https://diagrams.mingrammer.com/"; changelog = "https://github.com/mingrammer/diagrams/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ addict3d ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ addict3d ]; }; } diff --git a/pkgs/development/python-modules/diceware/default.nix b/pkgs/development/python-modules/diceware/default.nix index 6eaaf2362413..a38f3c763a5b 100644 --- a/pkgs/development/python-modules/diceware/default.nix +++ b/pkgs/development/python-modules/diceware/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "diceware" ]; - meta = with lib; { + meta = { description = "Generates passphrases by concatenating words randomly picked from wordlists"; mainProgram = "diceware"; homepage = "https://github.com/ulif/diceware"; changelog = "https://github.com/ulif/diceware/blob/v${version}/CHANGES.rst"; - license = licenses.gpl3; - maintainers = with maintainers; [ asymmetric ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ asymmetric ]; }; } diff --git a/pkgs/development/python-modules/dicom-numpy/default.nix b/pkgs/development/python-modules/dicom-numpy/default.nix index d71677bcf74e..2cf1931fce9c 100644 --- a/pkgs/development/python-modules/dicom-numpy/default.nix +++ b/pkgs/development/python-modules/dicom-numpy/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dicom_numpy" ]; - meta = with lib; { + meta = { description = "Read DICOM files into Numpy arrays"; homepage = "https://github.com/innolitics/dicom-numpy"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/dict2xml/default.nix b/pkgs/development/python-modules/dict2xml/default.nix index 07d12711e23c..b1114f8e625c 100644 --- a/pkgs/development/python-modules/dict2xml/default.nix +++ b/pkgs/development/python-modules/dict2xml/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dict2xml" ]; - meta = with lib; { + meta = { description = "Library to convert a Python dictionary into an XML string"; homepage = "https://github.com/delfick/python-dict2xml"; changelog = "https://github.com/delfick/python-dict2xml/releases/tag/release-${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ johnazoidberg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ johnazoidberg ]; }; } diff --git a/pkgs/development/python-modules/dictdiffer/default.nix b/pkgs/development/python-modules/dictdiffer/default.nix index bea434d0d500..bffa0cd04a95 100644 --- a/pkgs/development/python-modules/dictdiffer/default.nix +++ b/pkgs/development/python-modules/dictdiffer/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dictdiffer" ]; - meta = with lib; { + meta = { description = "Module to diff and patch dictionaries"; homepage = "https://github.com/inveniosoftware/dictdiffer"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dicttoxml2/default.nix b/pkgs/development/python-modules/dicttoxml2/default.nix index d056efe69919..7687813f7899 100644 --- a/pkgs/development/python-modules/dicttoxml2/default.nix +++ b/pkgs/development/python-modules/dicttoxml2/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dicttoxml2" ]; - meta = with lib; { + meta = { description = "Converts a Python dictionary or other native data type into a valid XML string"; homepage = "https://pypi.org/project/dicttoxml2/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/diff-cover/default.nix b/pkgs/development/python-modules/diff-cover/default.nix index cde2d617950c..aa668a240b63 100644 --- a/pkgs/development/python-modules/diff-cover/default.nix +++ b/pkgs/development/python-modules/diff-cover/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "diff_cover" ]; - meta = with lib; { + meta = { description = "Automatically find diff lines that need test coverage"; homepage = "https://github.com/Bachmann1234/diff-cover"; changelog = "https://github.com/Bachmann1234/diff_cover/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ dzabraev ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dzabraev ]; }; } diff --git a/pkgs/development/python-modules/diff-match-patch/default.nix b/pkgs/development/python-modules/diff-match-patch/default.nix index a794308df314..e805f60e6f09 100644 --- a/pkgs/development/python-modules/diff-match-patch/default.nix +++ b/pkgs/development/python-modules/diff-match-patch/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/diff-match-patch-python/diff-match-patch"; description = "Diff, Match and Patch libraries for Plain Text"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/diffimg/default.nix b/pkgs/development/python-modules/diffimg/default.nix index 5c0468a7ed1d..183af28cf4fb 100644 --- a/pkgs/development/python-modules/diffimg/default.nix +++ b/pkgs/development/python-modules/diffimg/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Differentiate images in python - get a ratio or percentage difference, and generate a diff image"; homepage = "https://github.com/nicolashahn/diffimg"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/diffsync/default.nix b/pkgs/development/python-modules/diffsync/default.nix index 8d7cbfd37e6f..728e91324137 100644 --- a/pkgs/development/python-modules/diffsync/default.nix +++ b/pkgs/development/python-modules/diffsync/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "diffsync" ]; - meta = with lib; { + meta = { description = "Utility library for comparing and synchronizing different datasets"; homepage = "https://github.com/networktocode/diffsync"; changelog = "https://github.com/networktocode/diffsync/blob/${src.tag}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ clerie ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ clerie ]; }; } diff --git a/pkgs/development/python-modules/digi-xbee/default.nix b/pkgs/development/python-modules/digi-xbee/default.nix index 319239b24123..0d659cf4833c 100644 --- a/pkgs/development/python-modules/digi-xbee/default.nix +++ b/pkgs/development/python-modules/digi-xbee/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "digi.xbee.xsocket" ]; - meta = with lib; { + meta = { description = "Python library to interact with Digi International's XBee radio frequency modules"; homepage = "https://github.com/digidotcom/xbee-python"; - license = licenses.mpl20; - maintainers = with maintainers; [ jefflabonte ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ jefflabonte ]; }; } diff --git a/pkgs/development/python-modules/dill/default.nix b/pkgs/development/python-modules/dill/default.nix index 767af0ded1a2..e79469d71ad4 100644 --- a/pkgs/development/python-modules/dill/default.nix +++ b/pkgs/development/python-modules/dill/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dill" ]; - meta = with lib; { + meta = { description = "Serialize all of python (almost)"; homepage = "https://github.com/uqfoundation/dill/"; changelog = "https://github.com/uqfoundation/dill/releases/tag/dill-${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/dinghy/default.nix b/pkgs/development/python-modules/dinghy/default.nix index 9e73d0a60013..e58a35021f1f 100644 --- a/pkgs/development/python-modules/dinghy/default.nix +++ b/pkgs/development/python-modules/dinghy/default.nix @@ -52,13 +52,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "dinghy.cli" ]; - meta = with lib; { + meta = { description = "GitHub activity digest tool"; mainProgram = "dinghy"; homepage = "https://github.com/nedbat/dinghy"; changelog = "https://github.com/nedbat/dinghy/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ trundle veehaitch ]; diff --git a/pkgs/development/python-modules/dingz/default.nix b/pkgs/development/python-modules/dingz/default.nix index 9f8d8a4a551f..e8700d98316e 100644 --- a/pkgs/development/python-modules/dingz/default.nix +++ b/pkgs/development/python-modules/dingz/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dingz" ]; - meta = with lib; { + meta = { description = "Python API for interacting with Dingz devices"; mainProgram = "dingz"; homepage = "https://github.com/home-assistant-ecosystem/python-dingz"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix b/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix index 11cf8d3682e4..d94103b060f4 100644 --- a/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix +++ b/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dio_chacon_wifi_api" ]; - meta = with lib; { + meta = { description = "Python API via wifi for DIO devices from Chacon. Useful for homeassistant or other automations"; homepage = "https://github.com/cnico/dio-chacon-wifi-api"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/diofant/default.nix b/pkgs/development/python-modules/diofant/default.nix index 0deaf22888cb..d0c9bb8e5c1e 100644 --- a/pkgs/development/python-modules/diofant/default.nix +++ b/pkgs/development/python-modules/diofant/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "diofant" ]; - meta = with lib; { + meta = { changelog = "https://diofant.readthedocs.io/en/latest/release/notes-${src.tag}.html"; description = "Python CAS library"; homepage = "https://github.com/diofant/diofant"; - license = licenses.bsd3; - maintainers = with maintainers; [ suhr ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ suhr ]; }; } diff --git a/pkgs/development/python-modules/dirigera/default.nix b/pkgs/development/python-modules/dirigera/default.nix index 48b4896ecfbb..25a03cbad94d 100644 --- a/pkgs/development/python-modules/dirigera/default.nix +++ b/pkgs/development/python-modules/dirigera/default.nix @@ -40,8 +40,8 @@ buildPythonPackage rec { description = "Module for controlling the IKEA Dirigera Smart Home Hub"; homepage = "https://github.com/Leggin/dirigera"; changelog = "https://github.com/Leggin/dirigera/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "generate-token"; broken = versionOlder pydantic.version "2"; }; diff --git a/pkgs/development/python-modules/dirty-equals/default.nix b/pkgs/development/python-modules/dirty-equals/default.nix index 7a8cbcb7e1c3..2b7cef774824 100644 --- a/pkgs/development/python-modules/dirty-equals/default.nix +++ b/pkgs/development/python-modules/dirty-equals/default.nix @@ -41,12 +41,12 @@ let pythonImportsCheck = [ "dirty_equals" ]; - meta = with lib; { + meta = { description = "Module for doing dirty (but extremely useful) things with equals"; homepage = "https://github.com/samuelcolvin/dirty-equals"; changelog = "https://github.com/samuelcolvin/dirty-equals/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; }; in diff --git a/pkgs/development/python-modules/dirtyjson/default.nix b/pkgs/development/python-modules/dirtyjson/default.nix index 3519d8ff4a56..a31ae4d8fb44 100644 --- a/pkgs/development/python-modules/dirtyjson/default.nix +++ b/pkgs/development/python-modules/dirtyjson/default.nix @@ -25,13 +25,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "dirtyjson" ]; - meta = with lib; { + meta = { description = "JSON decoder for Python that can extract data from the muck"; homepage = "https://github.com/codecobblers/dirtyjson"; - license = with licenses; [ + license = with lib.licenses; [ afl21 # and mit ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/discid/default.nix b/pkgs/development/python-modules/discid/default.nix index e2cfa9a0670b..c518fb18842b 100644 --- a/pkgs/development/python-modules/discid/default.nix +++ b/pkgs/development/python-modules/discid/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { "_open_library('${libdiscid}/lib/libdiscid${extension}')" ''; - meta = with lib; { + meta = { description = "Python binding of libdiscid"; homepage = "https://python-discid.readthedocs.org/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/discogs-client/default.nix b/pkgs/development/python-modules/discogs-client/default.nix index c4b57a0209ca..ca77c9bcfdc9 100644 --- a/pkgs/development/python-modules/discogs-client/default.nix +++ b/pkgs/development/python-modules/discogs-client/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "discogs_client" ]; - meta = with lib; { + meta = { description = "Unofficial Python API client for Discogs"; homepage = "https://github.com/joalla/discogs_client"; changelog = "https://github.com/joalla/discogs_client/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/discovery30303/default.nix b/pkgs/development/python-modules/discovery30303/default.nix index 958db4e7573d..3d6858c6a2fd 100644 --- a/pkgs/development/python-modules/discovery30303/default.nix +++ b/pkgs/development/python-modules/discovery30303/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "discovery30303" ]; - meta = with lib; { + meta = { description = "Module to discover devices that respond on port 30303"; homepage = "https://github.com/bdraco/discovery30303"; changelog = "https://github.com/bdraco/discovery30303/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/diskcache/default.nix b/pkgs/development/python-modules/diskcache/default.nix index 75ea4bb1df5b..a9e260691d99 100644 --- a/pkgs/development/python-modules/diskcache/default.nix +++ b/pkgs/development/python-modules/diskcache/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "diskcache" ]; - meta = with lib; { + meta = { description = "Disk and file backed persistent cache"; homepage = "http://www.grantjenks.com/docs/diskcache/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dissect-apfs/default.nix b/pkgs/development/python-modules/dissect-apfs/default.nix index a47cb0989005..0f1499511875 100644 --- a/pkgs/development/python-modules/dissect-apfs/default.nix +++ b/pkgs/development/python-modules/dissect-apfs/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "tests/test_apfs.py" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for APFS"; homepage = "https://github.com/fox-it/dissect.apfs"; changelog = "https://github.com/fox-it/dissect.apfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-archive/default.nix b/pkgs/development/python-modules/dissect-archive/default.nix index e3f1ca21591a..248706842ad2 100644 --- a/pkgs/development/python-modules/dissect-archive/default.nix +++ b/pkgs/development/python-modules/dissect-archive/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { "test_wim" ]; - meta = with lib; { + meta = { description = "Dissect module implementing parsers for various archive and backup formats"; homepage = "https://github.com/fox-it/dissect.archive"; changelog = "https://github.com/fox-it/dissect.archive/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-btrfs/default.nix b/pkgs/development/python-modules/dissect-btrfs/default.nix index f223bc6a46c6..1c1ca388a5c7 100644 --- a/pkgs/development/python-modules/dissect-btrfs/default.nix +++ b/pkgs/development/python-modules/dissect-btrfs/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.btrfs" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the BTRFS file system"; homepage = "https://github.com/fox-it/dissect.btrfs"; changelog = "https://github.com/fox-it/dissect.btrfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-cim/default.nix b/pkgs/development/python-modules/dissect-cim/default.nix index 271dfaaaa238..3b2256e5a14b 100644 --- a/pkgs/development/python-modules/dissect-cim/default.nix +++ b/pkgs/development/python-modules/dissect-cim/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # gzip.BadGzipFile: Not a gzipped file doCheck = false; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the Windows Common Information Model (CIM) database"; homepage = "https://github.com/fox-it/dissect.cim"; changelog = "https://github.com/fox-it/dissect.cim/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-clfs/default.nix b/pkgs/development/python-modules/dissect-clfs/default.nix index 3c83a9d2607d..dffd9e14006c 100644 --- a/pkgs/development/python-modules/dissect-clfs/default.nix +++ b/pkgs/development/python-modules/dissect-clfs/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.clfs" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system"; homepage = "https://github.com/fox-it/dissect.clfs"; changelog = "https://github.com/fox-it/dissect.clfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-cobaltstrike/default.nix b/pkgs/development/python-modules/dissect-cobaltstrike/default.nix index 058074403ca5..a414b3ffd5ab 100644 --- a/pkgs/development/python-modules/dissect-cobaltstrike/default.nix +++ b/pkgs/development/python-modules/dissect-cobaltstrike/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { "test_beacon_dump_guardrails" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for Cobalt Strike related data"; homepage = "https://github.com/fox-it/dissect.cobaltstrike"; changelog = "https://github.com/fox-it/dissect.cobaltstrike/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-cramfs/default.nix b/pkgs/development/python-modules/dissect-cramfs/default.nix index 9867389a8643..a0a8ed8f075f 100644 --- a/pkgs/development/python-modules/dissect-cramfs/default.nix +++ b/pkgs/development/python-modules/dissect-cramfs/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.cramfs" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the CRAMFS file system"; homepage = "https://github.com/fox-it/dissect.cramfs"; changelog = "https://github.com/fox-it/dissect.crmfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-cstruct/default.nix b/pkgs/development/python-modules/dissect-cstruct/default.nix index e211bcb3f19c..3d379304fac0 100644 --- a/pkgs/development/python-modules/dissect-cstruct/default.nix +++ b/pkgs/development/python-modules/dissect-cstruct/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.cstruct" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for C-like structures"; homepage = "https://github.com/fox-it/dissect.cstruct"; changelog = "https://github.com/fox-it/dissect.cstruct/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-database/default.nix b/pkgs/development/python-modules/dissect-database/default.nix index 3b03fccf0179..6fb61380bfc7 100644 --- a/pkgs/development/python-modules/dissect-database/default.nix +++ b/pkgs/development/python-modules/dissect-database/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.database" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for various database formats"; homepage = "https://github.com/fox-it/dissect.database"; changelog = "https://github.com/fox-it/dissect.database/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-esedb/default.nix b/pkgs/development/python-modules/dissect-esedb/default.nix index 36ab10d7bdb2..bc13350b3a06 100644 --- a/pkgs/development/python-modules/dissect-esedb/default.nix +++ b/pkgs/development/python-modules/dissect-esedb/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.esedb" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for Microsofts Extensible Storage Engine Database (ESEDB)"; homepage = "https://github.com/fox-it/dissect.esedb"; changelog = "https://github.com/fox-it/dissect.esedb/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-etl/default.nix b/pkgs/development/python-modules/dissect-etl/default.nix index 331fafeaf224..79fc193246b9 100644 --- a/pkgs/development/python-modules/dissect-etl/default.nix +++ b/pkgs/development/python-modules/dissect-etl/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "test_empty" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for Event Trace Log (ETL) files"; homepage = "https://github.com/fox-it/dissect.etl"; changelog = "https://github.com/fox-it/dissect.etl/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-eventlog/default.nix b/pkgs/development/python-modules/dissect-eventlog/default.nix index 9a9f7073f280..d932aa629895 100644 --- a/pkgs/development/python-modules/dissect-eventlog/default.nix +++ b/pkgs/development/python-modules/dissect-eventlog/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.eventlog" ]; - meta = with lib; { + meta = { description = "Dissect module implementing parsers for the Windows EVT, EVTX and WEVT log file formats"; homepage = "https://github.com/fox-it/dissect.eventlog"; changelog = "https://github.com/fox-it/dissect.eventlog/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-evidence/default.nix b/pkgs/development/python-modules/dissect-evidence/default.nix index ed23d33b70b1..fb4e347f2063 100644 --- a/pkgs/development/python-modules/dissect-evidence/default.nix +++ b/pkgs/development/python-modules/dissect-evidence/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.evidence" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parsers for various forensic evidence file containers"; homepage = "https://github.com/fox-it/dissect.evidence"; changelog = "https://github.com/fox-it/dissect.evidence/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-executable/default.nix b/pkgs/development/python-modules/dissect-executable/default.nix index c22b3f65e143..3a300996d191 100644 --- a/pkgs/development/python-modules/dissect-executable/default.nix +++ b/pkgs/development/python-modules/dissect-executable/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.executable" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for various executable formats such as PE, ELF and Macho-O"; homepage = "https://github.com/fox-it/dissect.executable"; changelog = "https://github.com/fox-it/dissect.executable/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-extfs/default.nix b/pkgs/development/python-modules/dissect-extfs/default.nix index 14c42c9cb177..d44e1179fd1a 100644 --- a/pkgs/development/python-modules/dissect-extfs/default.nix +++ b/pkgs/development/python-modules/dissect-extfs/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # Archive files seems to be corrupt doCheck = false; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the ExtFS file system"; homepage = "https://github.com/fox-it/dissect.extfs"; changelog = "https://github.com/fox-it/dissect.extfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-fat/default.nix b/pkgs/development/python-modules/dissect-fat/default.nix index eca9f00dc7a6..e7de5925cbb7 100644 --- a/pkgs/development/python-modules/dissect-fat/default.nix +++ b/pkgs/development/python-modules/dissect-fat/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.fat" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the FAT file system"; homepage = "https://github.com/fox-it/dissect.fat"; changelog = "https://github.com/fox-it/dissect.fat/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-ffs/default.nix b/pkgs/development/python-modules/dissect-ffs/default.nix index 3c1ae31b28f5..c2ea1e4b89e2 100644 --- a/pkgs/development/python-modules/dissect-ffs/default.nix +++ b/pkgs/development/python-modules/dissect-ffs/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.ffs" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the FFS file system"; homepage = "https://github.com/fox-it/dissect.ffs"; changelog = "https://github.com/fox-it/dissect.ffs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-fve/default.nix b/pkgs/development/python-modules/dissect-fve/default.nix index ae9a4badcf54..3928c194c7ec 100644 --- a/pkgs/development/python-modules/dissect-fve/default.nix +++ b/pkgs/development/python-modules/dissect-fve/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.fve" ]; - meta = with lib; { + meta = { description = "Dissect module implementing parsers for full volume encryption implementations"; homepage = "https://github.com/fox-it/dissect.fve"; changelog = "https://github.com/fox-it/dissect.fve/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-hypervisor/default.nix b/pkgs/development/python-modules/dissect-hypervisor/default.nix index 7facf5acd618..92784742b202 100644 --- a/pkgs/development/python-modules/dissect-hypervisor/default.nix +++ b/pkgs/development/python-modules/dissect-hypervisor/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.hypervisor" ]; - meta = with lib; { + meta = { description = "Dissect module implementing parsers for various hypervisor disk, backup and configuration files"; homepage = "https://github.com/fox-it/dissect.hypervisor"; changelog = "https://github.com/fox-it/dissect.hypervisor/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-jffs/default.nix b/pkgs/development/python-modules/dissect-jffs/default.nix index 44a20b0341f7..bdde5e090720 100644 --- a/pkgs/development/python-modules/dissect-jffs/default.nix +++ b/pkgs/development/python-modules/dissect-jffs/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.jffs" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the JFFS2 file system"; homepage = "https://github.com/fox-it/dissect.jffs"; changelog = "https://github.com/fox-it/dissect.jffs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-ntfs/default.nix b/pkgs/development/python-modules/dissect-ntfs/default.nix index 6d2670f1aabe..57751da636af 100644 --- a/pkgs/development/python-modules/dissect-ntfs/default.nix +++ b/pkgs/development/python-modules/dissect-ntfs/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "test_fragmented_mft" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the NTFS file system"; homepage = "https://github.com/fox-it/dissect.ntfs"; changelog = "https://github.com/fox-it/dissect.ntfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-ole/default.nix b/pkgs/development/python-modules/dissect-ole/default.nix index 851b392dd7c9..80b5123adbd8 100644 --- a/pkgs/development/python-modules/dissect-ole/default.nix +++ b/pkgs/development/python-modules/dissect-ole/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.ole" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the Object Linking & Embedding (OLE) format"; homepage = "https://github.com/fox-it/dissect.ole"; changelog = "https://github.com/fox-it/dissect.ole/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-regf/default.nix b/pkgs/development/python-modules/dissect-regf/default.nix index 27fd9d8c2442..b975f110fa0a 100644 --- a/pkgs/development/python-modules/dissect-regf/default.nix +++ b/pkgs/development/python-modules/dissect-regf/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.regf" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for Windows registry file format"; homepage = "https://github.com/fox-it/dissect.regf"; changelog = "https://github.com/fox-it/dissect.regf/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-shellitem/default.nix b/pkgs/development/python-modules/dissect-shellitem/default.nix index 4637d178d4e9..35cfa4afbb39 100644 --- a/pkgs/development/python-modules/dissect-shellitem/default.nix +++ b/pkgs/development/python-modules/dissect-shellitem/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { # Windows-specific tests doCheck = false; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the Shellitem structures"; homepage = "https://github.com/fox-it/dissect.shellitem"; changelog = "https://github.com/fox-it/dissect.shellitem/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "parse-lnk"; }; } diff --git a/pkgs/development/python-modules/dissect-sql/default.nix b/pkgs/development/python-modules/dissect-sql/default.nix index 5ab2044d0037..0c6b2b13d87c 100644 --- a/pkgs/development/python-modules/dissect-sql/default.nix +++ b/pkgs/development/python-modules/dissect-sql/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "test_empty" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parsers for the SQLite database file format"; homepage = "https://github.com/fox-it/dissect.sql"; changelog = "https://github.com/fox-it/dissect.sql/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-squashfs/default.nix b/pkgs/development/python-modules/dissect-squashfs/default.nix index 1e41576bc20d..0b35b03c028d 100644 --- a/pkgs/development/python-modules/dissect-squashfs/default.nix +++ b/pkgs/development/python-modules/dissect-squashfs/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.squashfs" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the SquashFS file system"; homepage = "https://github.com/fox-it/dissect.squashfs"; changelog = "https://github.com/fox-it/dissect.squashfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-target/default.nix b/pkgs/development/python-modules/dissect-target/default.nix index 4c3f4bed3c4d..9a81ca85a4bd 100644 --- a/pkgs/development/python-modules/dissect-target/default.nix +++ b/pkgs/development/python-modules/dissect-target/default.nix @@ -171,11 +171,11 @@ buildPythonPackage rec { "tests/loaders/" ]; - meta = with lib; { + meta = { description = "Dissect module that provides a programming API and command line tools"; homepage = "https://github.com/fox-it/dissect.target"; changelog = "https://github.com/fox-it/dissect.target/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-thumbcache/default.nix b/pkgs/development/python-modules/dissect-thumbcache/default.nix index 1b9c7d9e8be1..caf8f5aba83b 100644 --- a/pkgs/development/python-modules/dissect-thumbcache/default.nix +++ b/pkgs/development/python-modules/dissect-thumbcache/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "test_index_type" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the Windows thumbcache"; homepage = "https://github.com/fox-it/dissect.thumbcache"; changelog = "https://github.com/fox-it/dissect.thumbcache/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-util/default.nix b/pkgs/development/python-modules/dissect-util/default.nix index 9a23dbabb1bb..407d3d3a3e76 100644 --- a/pkgs/development/python-modules/dissect-util/default.nix +++ b/pkgs/development/python-modules/dissect-util/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { "test_cpio_formats" ]; - meta = with lib; { + meta = { description = "Dissect module implementing various utility functions for the other Dissect modules"; homepage = "https://github.com/fox-it/dissect.util"; changelog = "https://github.com/fox-it/dissect.util/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dump-nskeyedarchiver"; }; } diff --git a/pkgs/development/python-modules/dissect-vmfs/default.nix b/pkgs/development/python-modules/dissect-vmfs/default.nix index c07ca0119c65..6f25e787c55e 100644 --- a/pkgs/development/python-modules/dissect-vmfs/default.nix +++ b/pkgs/development/python-modules/dissect-vmfs/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "test_vmfs_jbosf" ]; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the VMFS file system"; homepage = "https://github.com/fox-it/dissect.vmfs"; changelog = "https://github.com/fox-it/dissect.vmfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-volume/default.nix b/pkgs/development/python-modules/dissect-volume/default.nix index 2bac002d52db..b6e4c46a18c5 100644 --- a/pkgs/development/python-modules/dissect-volume/default.nix +++ b/pkgs/development/python-modules/dissect-volume/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { "test_vinum" ]; - meta = with lib; { + meta = { description = "Dissect module implementing various utility functions for the other Dissect modules"; homepage = "https://github.com/fox-it/dissect.volume"; changelog = "https://github.com/fox-it/dissect.volume/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect-xfs/default.nix b/pkgs/development/python-modules/dissect-xfs/default.nix index 57d986d0dec4..422af582b895 100644 --- a/pkgs/development/python-modules/dissect-xfs/default.nix +++ b/pkgs/development/python-modules/dissect-xfs/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # Archive files seems to be corrupt doCheck = false; - meta = with lib; { + meta = { description = "Dissect module implementing a parser for the XFS file system"; homepage = "https://github.com/fox-it/dissect.xfs"; changelog = "https://github.com/fox-it/dissect.xfs/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissect/default.nix b/pkgs/development/python-modules/dissect/default.nix index 70d8aca0b4ea..def50df00c0f 100644 --- a/pkgs/development/python-modules/dissect/default.nix +++ b/pkgs/development/python-modules/dissect/default.nix @@ -94,11 +94,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect" ]; - meta = with lib; { + meta = { description = "Dissect meta module"; homepage = "https://github.com/fox-it/dissect"; changelog = "https://github.com/fox-it/dissect/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dissononce/default.nix b/pkgs/development/python-modules/dissononce/default.nix index b4745c059465..115b1866e1ae 100644 --- a/pkgs/development/python-modules/dissononce/default.nix +++ b/pkgs/development/python-modules/dissononce/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { transitions ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/dissononce/"; - license = licenses.mit; + license = lib.licenses.mit; description = "Python implementation for Noise Protocol Framework"; }; } diff --git a/pkgs/development/python-modules/distlib/default.nix b/pkgs/development/python-modules/distlib/default.nix index 02e084b0f686..900ca53e297a 100644 --- a/pkgs/development/python-modules/distlib/default.nix +++ b/pkgs/development/python-modules/distlib/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { # Tests use pypi.org. doCheck = false; - meta = with lib; { + meta = { description = "Low-level components of distutils2/packaging"; homepage = "https://distlib.readthedocs.io"; - license = licenses.psfl; - maintainers = with maintainers; [ lnl7 ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ lnl7 ]; }; } diff --git a/pkgs/development/python-modules/distorm3/default.nix b/pkgs/development/python-modules/distorm3/default.nix index 0ae9474e384a..d8870749e93c 100644 --- a/pkgs/development/python-modules/distorm3/default.nix +++ b/pkgs/development/python-modules/distorm3/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "distorm3" ]; - meta = with lib; { + meta = { description = "Disassembler library for x86/AMD64"; homepage = "https://github.com/gdabah/distorm"; changelog = "https://github.com/gdabah/distorm/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/distro/default.nix b/pkgs/development/python-modules/distro/default.nix index 0de0aee0c165..b29a9404dae6 100644 --- a/pkgs/development/python-modules/distro/default.nix +++ b/pkgs/development/python-modules/distro/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "distro" ]; - meta = with lib; { + meta = { homepage = "https://github.com/nir0s/distro"; description = "Linux Distribution - a Linux OS platform information API"; mainProgram = "distro"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/distutils-extra/default.nix b/pkgs/development/python-modules/distutils-extra/default.nix index 013ab75d37c3..3b9365f3038a 100644 --- a/pkgs/development/python-modules/distutils-extra/default.nix +++ b/pkgs/development/python-modules/distutils-extra/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "DistUtilsExtra" ]; - meta = with lib; { + meta = { description = "Enhancements to Python's distutils"; homepage = "https://launchpad.net/python-distutils-extra"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dj-email-url/default.nix b/pkgs/development/python-modules/dj-email-url/default.nix index 1214234bf8dd..b3ebeb4e64d9 100644 --- a/pkgs/development/python-modules/dj-email-url/default.nix +++ b/pkgs/development/python-modules/dj-email-url/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # tests not included with pypi release doCheck = false; - meta = with lib; { + meta = { description = "Use an URL to configure email backend settings in your Django Application"; homepage = "https://github.com/migonzalvar/dj-email-url"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dj-search-url/default.nix b/pkgs/development/python-modules/dj-search-url/default.nix index e57e66be59b8..72eb88df71c4 100644 --- a/pkgs/development/python-modules/dj-search-url/default.nix +++ b/pkgs/development/python-modules/dj-search-url/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "424d1a5852500b3c118abfdd0e30b3e0016fe68e7ed27b8553a67afa20d4fb40"; }; - meta = with lib; { + meta = { homepage = "https://github.com/dstufft/dj-search-url"; description = "Use Search URLs in your Django Haystack Application"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dj-static/default.nix b/pkgs/development/python-modules/dj-static/default.nix index 83e07a45bc04..5efdf0356837 100644 --- a/pkgs/development/python-modules/dj-static/default.nix +++ b/pkgs/development/python-modules/dj-static/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Serve production static files with Django"; homepage = "https://github.com/heroku-python/dj-static"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-admin-datta/default.nix b/pkgs/development/python-modules/django-admin-datta/default.nix index 284de300f2e8..5ca863f14eaf 100644 --- a/pkgs/development/python-modules/django-admin-datta/default.nix +++ b/pkgs/development/python-modules/django-admin-datta/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "admin_datta" ]; - meta = with lib; { + meta = { description = "Modern template for Django that covers Admin Section"; homepage = "https://appseed.us/product/datta-able/django"; changelog = "https://github.com/app-generator/django-admin-datta/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-annoying/default.nix b/pkgs/development/python-modules/django-annoying/default.nix index b8cdb8a5667d..20d5d3eee1fa 100644 --- a/pkgs/development/python-modules/django-annoying/default.nix +++ b/pkgs/development/python-modules/django-annoying/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Django application that tries to eliminate annoying things in the Django framework"; homepage = "https://skorokithakis.github.io/django-annoying/"; changelog = "https://github.com/skorokithakis/django-annoying/releases/tag/v$version"; - license = licenses.bsd3; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/django-anymail/default.nix b/pkgs/development/python-modules/django-anymail/default.nix index 27e35eb170a5..284e9df44995 100644 --- a/pkgs/development/python-modules/django-anymail/default.nix +++ b/pkgs/development/python-modules/django-anymail/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "anymail" ]; - meta = with lib; { + meta = { description = "Django email backends and webhooks for Mailgun"; homepage = "https://github.com/anymail/django-anymail"; changelog = "https://github.com/anymail/django-anymail/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-appconf/default.nix b/pkgs/development/python-modules/django-appconf/default.nix index d760900fae4b..212e2cb452f3 100644 --- a/pkgs/development/python-modules/django-appconf/default.nix +++ b/pkgs/development/python-modules/django-appconf/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "appconf" ]; - meta = with lib; { + meta = { description = "Helper class for handling configuration defaults of packaged apps gracefully"; homepage = "https://django-appconf.readthedocs.org/"; changelog = "https://github.com/django-compressor/django-appconf/blob/v${version}/docs/changelog.rst"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/django-auth-ldap/default.nix b/pkgs/development/python-modules/django-auth-ldap/default.nix index 55950c699878..3c377c151182 100644 --- a/pkgs/development/python-modules/django-auth-ldap/default.nix +++ b/pkgs/development/python-modules/django-auth-ldap/default.nix @@ -50,12 +50,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_auth_ldap" ]; - meta = with lib; { + meta = { changelog = "https://github.com/django-auth-ldap/django-auth-ldap/releases/tag/${src.tag}"; description = "Django authentication backend that authenticates against an LDAP service"; homepage = "https://github.com/django-auth-ldap/django-auth-ldap"; - license = licenses.bsd2; - maintainers = with maintainers; [ mmai ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mmai ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/development/python-modules/django-autocomplete-light/default.nix b/pkgs/development/python-modules/django-autocomplete-light/default.nix index 74114267b425..df0b8b33a0d7 100644 --- a/pkgs/development/python-modules/django-autocomplete-light/default.nix +++ b/pkgs/development/python-modules/django-autocomplete-light/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dal" ]; - meta = with lib; { + meta = { description = "Fresh approach to autocomplete implementations, specially for Django"; homepage = "https://django-autocomplete-light.readthedocs.io"; changelog = "https://github.com/yourlabs/django-autocomplete-light/blob/${version}/CHANGELOG"; - license = licenses.bsd3; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/django-bootstrap3/default.nix b/pkgs/development/python-modules/django-bootstrap3/default.nix index cc9d493ad8f0..1f5db03385ed 100644 --- a/pkgs/development/python-modules/django-bootstrap3/default.nix +++ b/pkgs/development/python-modules/django-bootstrap3/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { env.DJANGO_SETTINGS_MODULE = "tests.app.settings"; - meta = with lib; { + meta = { description = "Bootstrap 3 integration for Django"; homepage = "https://github.com/zostera/django-bootstrap3"; changelog = "https://github.com/zostera/django-bootstrap3/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-bootstrap4/default.nix b/pkgs/development/python-modules/django-bootstrap4/default.nix index 151aaea4894d..b316af4b37e4 100644 --- a/pkgs/development/python-modules/django-bootstrap4/default.nix +++ b/pkgs/development/python-modules/django-bootstrap4/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { export DJANGO_SETTINGS_MODULE=tests.app.settings ''; - meta = with lib; { + meta = { description = "Bootstrap 4 integration with Django"; homepage = "https://github.com/zostera/django-bootstrap4"; changelog = "https://github.com/zostera/django-bootstrap4/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-bootstrap5/default.nix b/pkgs/development/python-modules/django-bootstrap5/default.nix index 8d9229ac9bb4..b67136837e8e 100644 --- a/pkgs/development/python-modules/django-bootstrap5/default.nix +++ b/pkgs/development/python-modules/django-bootstrap5/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_bootstrap5" ]; - meta = with lib; { + meta = { description = "Bootstrap 5 integration with Django"; homepage = "https://github.com/zostera/django-bootstrap5"; changelog = "https://github.com/zostera/django-bootstrap5/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/development/python-modules/django-cachalot/default.nix b/pkgs/development/python-modules/django-cachalot/default.nix index 37e126c50621..be929b9fa30f 100644 --- a/pkgs/development/python-modules/django-cachalot/default.nix +++ b/pkgs/development/python-modules/django-cachalot/default.nix @@ -74,11 +74,11 @@ buildPythonPackage rec { "test_rendering" ]; - meta = with lib; { + meta = { description = "No effort, no worry, maximum performance"; homepage = "https://github.com/noripyt/django-cachalot"; changelog = "https://github.com/noripyt/django-cachalot/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-cache-url/default.nix b/pkgs/development/python-modules/django-cache-url/default.nix index 6caeb87cb973..a06531709968 100644 --- a/pkgs/development/python-modules/django-cache-url/default.nix +++ b/pkgs/development/python-modules/django-cache-url/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_cache_url" ]; - meta = with lib; { + meta = { description = "Use Cache URLs in your Django application"; homepage = "https://github.com/epicserve/django-cache-url"; changelog = "https://github.com/epicserve/django-cache-url/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-cacheops/default.nix b/pkgs/development/python-modules/django-cacheops/default.nix index 39e57deac515..38be1026bad3 100644 --- a/pkgs/development/python-modules/django-cacheops/default.nix +++ b/pkgs/development/python-modules/django-cacheops/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { DJANGO_SETTINGS_MODULE = "tests.settings"; - meta = with lib; { + meta = { description = "Slick ORM cache with automatic granular event-driven invalidation for Django"; homepage = "https://github.com/Suor/django-cacheops"; changelog = "https://github.com/Suor/django-cacheops/blob/${version}/CHANGELOG"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-celery-beat/default.nix b/pkgs/development/python-modules/django-celery-beat/default.nix index 2b80ed336234..bdccdae03418 100644 --- a/pkgs/development/python-modules/django-celery-beat/default.nix +++ b/pkgs/development/python-modules/django-celery-beat/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_celery_beat" ]; - meta = with lib; { + meta = { description = "Celery Periodic Tasks backed by the Django ORM"; homepage = "https://github.com/celery/django-celery-beat"; changelog = "https://github.com/celery/django-celery-beat/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-celery-email/default.nix b/pkgs/development/python-modules/django-celery-email/default.nix index 214551453f08..258db03a52a1 100644 --- a/pkgs/development/python-modules/django-celery-email/default.nix +++ b/pkgs/development/python-modules/django-celery-email/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "djcelery_email" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pmclanahan/django-celery-email"; description = "Django email backend that uses a celery task for sending the email"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-celery-results/default.nix b/pkgs/development/python-modules/django-celery-results/default.nix index 109611ba7eba..868980753607 100644 --- a/pkgs/development/python-modules/django-celery-results/default.nix +++ b/pkgs/development/python-modules/django-celery-results/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # Tests need access to a database. doCheck = false; - meta = with lib; { + meta = { description = "Celery result back end with django"; homepage = "https://github.com/celery/django-celery-results"; changelog = "https://github.com/celery/django-celery-results/blob/v${version}/Changelog"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-ckeditor/default.nix b/pkgs/development/python-modules/django-ckeditor/default.nix index ca3d81bc7abb..d69c80b2c6d0 100644 --- a/pkgs/development/python-modules/django-ckeditor/default.nix +++ b/pkgs/development/python-modules/django-ckeditor/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ckeditor" ]; - meta = with lib; { + meta = { description = "Django admin CKEditor integration"; homepage = "https://github.com/django-ckeditor/django-ckeditor"; changelog = "https://github.com/django-ckeditor/django-ckeditor/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; knownVulnerabilities = [ '' django-ckeditor bundles CKEditor 4.22.1 which isn’t supported anmyore and diff --git a/pkgs/development/python-modules/django-classy-tags/default.nix b/pkgs/development/python-modules/django-classy-tags/default.nix index a115015facee..d62978a82c3a 100644 --- a/pkgs/development/python-modules/django-classy-tags/default.nix +++ b/pkgs/development/python-modules/django-classy-tags/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "classytags" ]; - meta = with lib; { + meta = { description = "Class based template tags for Django"; homepage = "https://github.com/divio/django-classy-tags"; changelog = "https://github.com/django-cms/django-classy-tags/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-cleanup/default.nix b/pkgs/development/python-modules/django-cleanup/default.nix index 93416a3ee038..48099079a71a 100644 --- a/pkgs/development/python-modules/django-cleanup/default.nix +++ b/pkgs/development/python-modules/django-cleanup/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_cleanup" ]; - meta = with lib; { + meta = { description = "Automatically deletes old file for FileField and ImageField. It also deletes files on models instance deletion"; homepage = "https://github.com/un1t/django-cleanup"; changelog = "https://github.com/un1t/django-cleanup/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/django-colorful/default.nix b/pkgs/development/python-modules/django-colorful/default.nix index 43bf50fe47e3..ba99b1c0aff9 100644 --- a/pkgs/development/python-modules/django-colorful/default.nix +++ b/pkgs/development/python-modules/django-colorful/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "colorful" ]; - meta = with lib; { + meta = { description = "Django extension that provides database and form color fields"; homepage = "https://github.com/charettes/django-colorful"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-compression-middleware/default.nix b/pkgs/development/python-modules/django-compression-middleware/default.nix index ca893d0f9223..6a10d8e1074e 100644 --- a/pkgs/development/python-modules/django-compression-middleware/default.nix +++ b/pkgs/development/python-modules/django-compression-middleware/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { brotli ]; - meta = with lib; { + meta = { description = "Django middleware to compress responses using several algorithms"; homepage = "https://github.com/friedelwolff/django-compression-middleware"; changelog = "https://github.com/friedelwolff/django-compression-middleware/releases/tag/v${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ e1mo ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ e1mo ]; }; } diff --git a/pkgs/development/python-modules/django-compressor/default.nix b/pkgs/development/python-modules/django-compressor/default.nix index ea930b596a17..eedf03e28863 100644 --- a/pkgs/development/python-modules/django-compressor/default.nix +++ b/pkgs/development/python-modules/django-compressor/default.nix @@ -72,10 +72,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "compressor" ]; - meta = with lib; { + meta = { description = "Compresses linked and inline JavaScript or CSS into single cached files"; homepage = "https://django-compressor.readthedocs.org/"; changelog = "https://github.com/django-compressor/django-compressor/blob/${version}/docs/changelog.txt"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/django-configurations/default.nix b/pkgs/development/python-modules/django-configurations/default.nix index a7c944f98167..82195287a5da 100644 --- a/pkgs/development/python-modules/django-configurations/default.nix +++ b/pkgs/development/python-modules/django-configurations/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "configurations" ]; - meta = with lib; { + meta = { description = "Helper for organizing Django settings"; mainProgram = "django-cadmin"; homepage = "https://django-configurations.readthedocs.io/"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-context-decorator/default.nix b/pkgs/development/python-modules/django-context-decorator/default.nix index e1c6d17259fb..d4b3e52e0071 100644 --- a/pkgs/development/python-modules/django-context-decorator/default.nix +++ b/pkgs/development/python-modules/django-context-decorator/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Django @context decorator"; homepage = "https://github.com/rixx/django-context-decorator"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-contrib-comments/default.nix b/pkgs/development/python-modules/django-contrib-comments/default.nix index ae5872b120b7..9c3174e0d132 100644 --- a/pkgs/development/python-modules/django-contrib-comments/default.nix +++ b/pkgs/development/python-modules/django-contrib-comments/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ django ]; - meta = with lib; { + meta = { homepage = "https://github.com/django/django-contrib-comments"; description = "Code formerly known as django.contrib.comments"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/django-cors-headers/default.nix b/pkgs/development/python-modules/django-cors-headers/default.nix index 626abed1eff5..04ea3e8e633f 100644 --- a/pkgs/development/python-modules/django-cors-headers/default.nix +++ b/pkgs/development/python-modules/django-cors-headers/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "corsheaders" ]; - meta = with lib; { + meta = { description = "Django app for handling server Cross-Origin Resource Sharing (CORS) headers"; homepage = "https://github.com/OttoYiu/django-cors-headers"; changelog = "https://github.com/adamchainz/django-cors-headers/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-countries/default.nix b/pkgs/development/python-modules/django-countries/default.nix index 74649ef527b1..3d83eaf4dfe4 100644 --- a/pkgs/development/python-modules/django-countries/default.nix +++ b/pkgs/development/python-modules/django-countries/default.nix @@ -45,7 +45,7 @@ buildPythonPackage rec { pytest-django ]; - meta = with lib; { + meta = { description = "Provides a country field for Django models"; longDescription = '' A Django application that provides country choices for use with @@ -53,7 +53,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/SmileyChris/django-countries"; changelog = "https://github.com/SmileyChris/django-countries/blob/v${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-crispy-forms/default.nix b/pkgs/development/python-modules/django-crispy-forms/default.nix index b002566bfa33..c46fc7d9a48e 100644 --- a/pkgs/development/python-modules/django-crispy-forms/default.nix +++ b/pkgs/development/python-modules/django-crispy-forms/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crispy_forms" ]; - meta = with lib; { + meta = { description = "Best way to have DRY Django forms"; homepage = "https://django-crispy-forms.readthedocs.io/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/django-cryptography/default.nix b/pkgs/development/python-modules/django-cryptography/default.nix index 7f4d2804c4dd..02825509ebfe 100644 --- a/pkgs/development/python-modules/django-cryptography/default.nix +++ b/pkgs/development/python-modules/django-cryptography/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/georgemarshall/django-cryptography"; description = "Set of primitives for performing cryptography in Django"; - license = licenses.bsd3; - maintainers = with maintainers; [ centromere ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ centromere ]; }; } diff --git a/pkgs/development/python-modules/django-csp/default.nix b/pkgs/development/python-modules/django-csp/default.nix index 70ec6444eee8..6849e3cfb9bc 100644 --- a/pkgs/development/python-modules/django-csp/default.nix +++ b/pkgs/development/python-modules/django-csp/default.nix @@ -40,9 +40,9 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Adds Content-Security-Policy headers to Django"; homepage = "https://github.com/mozilla/django-csp"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/django-currentuser/default.nix b/pkgs/development/python-modules/django-currentuser/default.nix index d64d8093ba0e..76a46ed4788a 100644 --- a/pkgs/development/python-modules/django-currentuser/default.nix +++ b/pkgs/development/python-modules/django-currentuser/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Conveniently store reference to request user on thread/db level"; homepage = "https://github.com/zsoldosp/django-currentuser"; changelog = "https://github.com/zsoldosp/django-currentuser/#release-notes"; - license = licenses.bsd3; - maintainers = with maintainers; [ augustebaum ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ augustebaum ]; }; } diff --git a/pkgs/development/python-modules/django-debug-toolbar/default.nix b/pkgs/development/python-modules/django-debug-toolbar/default.nix index d8e2c79568b7..2cf6ad2490cf 100644 --- a/pkgs/development/python-modules/django-debug-toolbar/default.nix +++ b/pkgs/development/python-modules/django-debug-toolbar/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "debug_toolbar" ]; - meta = with lib; { + meta = { description = "Configurable set of panels that display debug information about the current request/response"; homepage = "https://github.com/jazzband/django-debug-toolbar"; changelog = "https://django-debug-toolbar.readthedocs.io/en/latest/changes.html"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-dynamic-preferences/default.nix b/pkgs/development/python-modules/django-dynamic-preferences/default.nix index d0bd44d36a4b..115220f3584f 100644 --- a/pkgs/development/python-modules/django-dynamic-preferences/default.nix +++ b/pkgs/development/python-modules/django-dynamic-preferences/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { env.DJANGO_SETTINGS = "tests.settings"; - meta = with lib; { + meta = { description = "Dynamic global and instance settings for your django project"; changelog = "https://github.com/agateblue/django-dynamic-preferences/blob/${version}/HISTORY.rst"; homepage = "https://github.com/agateblue/django-dynamic-preferences"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/django-encrypted-model-fields/default.nix b/pkgs/development/python-modules/django-encrypted-model-fields/default.nix index 52109a7a529b..aba27c01be02 100644 --- a/pkgs/development/python-modules/django-encrypted-model-fields/default.nix +++ b/pkgs/development/python-modules/django-encrypted-model-fields/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "encrypted_model_fields" ]; - meta = with lib; { + meta = { description = "Set of fields that wrap standard Django fields with encryption provided by the python cryptography library"; homepage = "https://gitlab.com/lansharkconsulting/django/django-encrypted-model-fields"; - license = licenses.mit; - maintainers = with maintainers; [ centromere ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ centromere ]; }; } diff --git a/pkgs/development/python-modules/django-environ/default.nix b/pkgs/development/python-modules/django-environ/default.nix index 6902020a449f..6a31ee62ef04 100644 --- a/pkgs/development/python-modules/django-environ/default.nix +++ b/pkgs/development/python-modules/django-environ/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "environ" ]; - meta = with lib; { + meta = { description = "Utilize environment variables to configure your Django application"; homepage = "https://github.com/joke2k/django-environ/"; changelog = "https://github.com/joke2k/django-environ/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-extensions/default.nix b/pkgs/development/python-modules/django-extensions/default.nix index 5fa5c8a231e8..b2295131331e 100644 --- a/pkgs/development/python-modules/django-extensions/default.nix +++ b/pkgs/development/python-modules/django-extensions/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { "tests/test_dumpscript.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/django-extensions/django-extensions/releases/tag/${src.tag}"; description = "Collection of custom extensions for the Django Framework"; homepage = "https://github.com/django-extensions/django-extensions"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/django-filter/default.nix b/pkgs/development/python-modules/django-filter/default.nix index 396e600134e3..57a687c4ce4e 100644 --- a/pkgs/development/python-modules/django-filter/default.nix +++ b/pkgs/development/python-modules/django-filter/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { env.DJANGO_SETTINGS_MODULE = "tests.settings"; - meta = with lib; { + meta = { description = "Reusable Django application for allowing users to filter querysets dynamically"; homepage = "https://github.com/carltongibson/django-filter"; changelog = "https://github.com/carltongibson/django-filter/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/django-formset-js-improved/default.nix b/pkgs/development/python-modules/django-formset-js-improved/default.nix index 067a6faab9c5..be7577afa50f 100644 --- a/pkgs/development/python-modules/django-formset-js-improved/default.nix +++ b/pkgs/development/python-modules/django-formset-js-improved/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Wrapper for a JavaScript formset helper"; homepage = "https://github.com/pretix/django-formset-js"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-formtools/default.nix b/pkgs/development/python-modules/django-formtools/default.nix index f5d247e47883..c5d2c4e0b253 100644 --- a/pkgs/development/python-modules/django-formtools/default.nix +++ b/pkgs/development/python-modules/django-formtools/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "formtools" ]; - meta = with lib; { + meta = { description = "Set of high-level abstractions for Django forms"; homepage = "https://github.com/jazzband/django-formtools"; changelog = "https://github.com/jazzband/django-formtools/blob/master/docs/changelog.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/django-graphiql-debug-toolbar/default.nix b/pkgs/development/python-modules/django-graphiql-debug-toolbar/default.nix index 3355b6e4af84..9975d82c921f 100644 --- a/pkgs/development/python-modules/django-graphiql-debug-toolbar/default.nix +++ b/pkgs/development/python-modules/django-graphiql-debug-toolbar/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { doCheck = false; # tests broke with django-debug-toolbar 6.0 - meta = with lib; { + meta = { changelog = "https://github.com/flavors/django-graphiql-debug-toolbar/releases/tag/${src.rev}"; description = "Django Debug Toolbar for GraphiQL IDE"; homepage = "https://github.com/flavors/django-graphiql-debug-toolbar"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-gravatar2/default.nix b/pkgs/development/python-modules/django-gravatar2/default.nix index fd6fdb0b47c5..6c8cc62477e2 100644 --- a/pkgs/development/python-modules/django-gravatar2/default.nix +++ b/pkgs/development/python-modules/django-gravatar2/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_gravatar" ]; - meta = with lib; { + meta = { description = "Essential Gravatar support for Django"; homepage = "https://github.com/twaddington/django-gravatar"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/django-guardian/default.nix b/pkgs/development/python-modules/django-guardian/default.nix index 36023fb0645d..820bd1077652 100644 --- a/pkgs/development/python-modules/django-guardian/default.nix +++ b/pkgs/development/python-modules/django-guardian/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "guardian" ]; - meta = with lib; { + meta = { description = "Per object permissions for Django"; homepage = "https://github.com/django-guardian/django-guardian"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-haystack/default.nix b/pkgs/development/python-modules/django-haystack/default.nix index 3074361bcc6e..6f8e4d898a1d 100644 --- a/pkgs/development/python-modules/django-haystack/default.nix +++ b/pkgs/development/python-modules/django-haystack/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Pluggable search for Django"; homepage = "http://haystacksearch.org/"; changelog = "https://github.com/django-haystack/django-haystack/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-hcaptcha/default.nix b/pkgs/development/python-modules/django-hcaptcha/default.nix index 7f0eff237700..a045811aeec9 100644 --- a/pkgs/development/python-modules/django-hcaptcha/default.nix +++ b/pkgs/development/python-modules/django-hcaptcha/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hcaptcha" ]; - meta = with lib; { + meta = { description = "Django hCaptcha provides a simple way to protect your django forms using hCaptcha"; homepage = "https://github.com/AndrejZbin/django-hcaptcha"; - license = licenses.bsd3; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/django-health-check/default.nix b/pkgs/development/python-modules/django-health-check/default.nix index 6c20c23688e4..56e08419723a 100644 --- a/pkgs/development/python-modules/django-health-check/default.nix +++ b/pkgs/development/python-modules/django-health-check/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "health_check" ]; - meta = with lib; { + meta = { description = "Pluggable app that runs a full check on the deployment"; homepage = "https://github.com/KristianOellegaard/django-health-check"; changelog = "https://github.com/revsys/django-health-check/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-hierarkey/default.nix b/pkgs/development/python-modules/django-hierarkey/default.nix index 21029c39516a..f7bcb1f94938 100644 --- a/pkgs/development/python-modules/django-hierarkey/default.nix +++ b/pkgs/development/python-modules/django-hierarkey/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { enabledTestPaths = [ "tests" ]; - meta = with lib; { + meta = { description = "Flexible and powerful hierarchical key-value store for your Django models"; homepage = "https://github.com/raphaelm/django-hierarkey"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-hijack/default.nix b/pkgs/development/python-modules/django-hijack/default.nix index b887daf5c631..a852b994012d 100644 --- a/pkgs/development/python-modules/django-hijack/default.nix +++ b/pkgs/development/python-modules/django-hijack/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { # needed for npmDeps update passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Allows superusers to hijack (=login as) and work on behalf of another user"; homepage = "https://github.com/django-hijack/django-hijack"; changelog = "https://github.com/django-hijack/django-hijack/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/django-i18nfield/default.nix b/pkgs/development/python-modules/django-i18nfield/default.nix index f6120fdfa871..679045ef76ed 100644 --- a/pkgs/development/python-modules/django-i18nfield/default.nix +++ b/pkgs/development/python-modules/django-i18nfield/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pyyaml ]; - meta = with lib; { + meta = { description = "Store internationalized strings in Django models"; homepage = "https://github.com/raphaelm/django-i18nfield"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-import-export/default.nix b/pkgs/development/python-modules/django-import-export/default.nix index 80c4a1c27fd2..572330c12ff7 100644 --- a/pkgs/development/python-modules/django-import-export/default.nix +++ b/pkgs/development/python-modules/django-import-export/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "import_export" ]; - meta = with lib; { + meta = { description = "Django application and library for importing and exporting data with admin integration"; homepage = "https://github.com/django-import-export/django-import-export"; changelog = "https://github.com/django-import-export/django-import-export/blob/${src.tag}/docs/changelog.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/django-ipware/default.nix b/pkgs/development/python-modules/django-ipware/default.nix index d6c195a9ec43..e1e90d9ad674 100644 --- a/pkgs/development/python-modules/django-ipware/default.nix +++ b/pkgs/development/python-modules/django-ipware/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # pythonImportsCheck fails with: # django.core.exceptions.ImproperlyConfigured: Requested setting IPWARE_META_PRECEDENCE_ORDER, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings. - meta = with lib; { + meta = { description = "Django application to retrieve user's IP address"; homepage = "https://github.com/un33k/django-ipware"; changelog = "https://github.com/un33k/django-ipware/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-jquery-js/default.nix b/pkgs/development/python-modules/django-jquery-js/default.nix index ed2441f31282..ef2d1435ab02 100644 --- a/pkgs/development/python-modules/django-jquery-js/default.nix +++ b/pkgs/development/python-modules/django-jquery-js/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "jQuery, bundled up so apps can depend upon it"; homepage = "https://bitbucket.org/tim_heap/django-jquery"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-js-asset/default.nix b/pkgs/development/python-modules/django-js-asset/default.nix index 8796509dec83..1a23bd6e0beb 100644 --- a/pkgs/development/python-modules/django-js-asset/default.nix +++ b/pkgs/development/python-modules/django-js-asset/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { export DJANGO_SETTINGS_MODULE=tests.testapp.settings ''; - meta = with lib; { + meta = { changelog = "https://github.com/matthiask/django-js-asset/blob/${version}/CHANGELOG.rst"; description = "Script tag with additional attributes for django.forms.Media"; homepage = "https://github.com/matthiask/django-js-asset"; - maintainers = with maintainers; [ hexa ]; - license = with licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ hexa ]; + license = with lib.licenses; [ bsd3 ]; }; } diff --git a/pkgs/development/python-modules/django-js-reverse/default.nix b/pkgs/development/python-modules/django-js-reverse/default.nix index 7d6af395b703..5acf47d3a565 100644 --- a/pkgs/development/python-modules/django-js-reverse/default.nix +++ b/pkgs/development/python-modules/django-js-reverse/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_js_reverse" ]; - meta = with lib; { + meta = { description = "Javascript URL handling for Django"; homepage = "https://django-js-reverse.readthedocs.io/"; changelog = "https://github.com/vintasoftware/django-js-reverse/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/django-libsass/default.nix b/pkgs/development/python-modules/django-libsass/default.nix index a3139d740936..725c21cf5ed6 100644 --- a/pkgs/development/python-modules/django-libsass/default.nix +++ b/pkgs/development/python-modules/django-libsass/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Django-compressor filter to compile SASS files using libsass"; homepage = "https://github.com/torchbox/django-libsass"; changelog = "https://github.com/torchbox/django-libsass/blob/${src.rev}/CHANGELOG.txt"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-localflavor/default.nix b/pkgs/development/python-modules/django-localflavor/default.nix index f93766058764..16561e2d5871 100644 --- a/pkgs/development/python-modules/django-localflavor/default.nix +++ b/pkgs/development/python-modules/django-localflavor/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { env.DJANGO_SETTINGS_MODULE = "tests.settings"; - meta = with lib; { + meta = { changelog = "https://github.com/django/django-localflavor/blob/${src.tag}/docs/changelog.rst"; description = "Country-specific Django helpers"; homepage = "https://github.com/django/django-localflavor"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-logentry-admin/default.nix b/pkgs/development/python-modules/django-logentry-admin/default.nix index 31c909237db2..cf6a575c3567 100644 --- a/pkgs/development/python-modules/django-logentry-admin/default.nix +++ b/pkgs/development/python-modules/django-logentry-admin/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ django ]; - meta = with lib; { + meta = { description = "Show all LogEntry objects in the Django admin site"; homepage = "https://github.com/yprez/django-logentry-admin"; - license = licenses.isc; - maintainers = with maintainers; [ mrmebelman ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/development/python-modules/django-login-required-middleware/default.nix b/pkgs/development/python-modules/django-login-required-middleware/default.nix index 05932eacd61d..fdfaaef53fcb 100644 --- a/pkgs/development/python-modules/django-login-required-middleware/default.nix +++ b/pkgs/development/python-modules/django-login-required-middleware/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { ${python.interpreter} -m django test --settings tests.settings ''; - meta = with lib; { + meta = { description = "Requires login to all requests through middleware in Django"; homepage = "https://github.com/CleitonDeLima/django-login-required-middleware"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-mailman3/default.nix b/pkgs/development/python-modules/django-mailman3/default.nix index b2836f93bc56..53db6d735155 100644 --- a/pkgs/development/python-modules/django-mailman3/default.nix +++ b/pkgs/development/python-modules/django-mailman3/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { inherit (nixosTests) mailman; }; - meta = with lib; { + meta = { description = "Django library for Mailman UIs"; homepage = "https://gitlab.com/mailman/django-mailman3"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ qyliss ]; broken = lib.versionAtLeast django-allauth.version "65.0.0"; }; } diff --git a/pkgs/development/python-modules/django-maintenance-mode/default.nix b/pkgs/development/python-modules/django-maintenance-mode/default.nix index 4cc67e257efa..c875097334ad 100644 --- a/pkgs/development/python-modules/django-maintenance-mode/default.nix +++ b/pkgs/development/python-modules/django-maintenance-mode/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "maintenance_mode" ]; - meta = with lib; { + meta = { description = "Shows a 503 error page when maintenance-mode is on"; homepage = "https://github.com/fabiocaccamo/django-maintenance-mode"; changelog = "https://github.com/fabiocaccamo/django-maintenance-mode/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ mrmebelman ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/development/python-modules/django-markdownx/default.nix b/pkgs/development/python-modules/django-markdownx/default.nix index ad967e5dc014..b1d61a79fec2 100644 --- a/pkgs/development/python-modules/django-markdownx/default.nix +++ b/pkgs/development/python-modules/django-markdownx/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "markdownx" ]; - meta = with lib; { + meta = { description = "Comprehensive Markdown plugin built for Django"; homepage = "https://github.com/neutronX/django-markdownx/"; changelog = "https://github.com/neutronX/django-markdownx/releases/tag/${src.tag}"; - license = licenses.bsd2; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-markup/default.nix b/pkgs/development/python-modules/django-markup/default.nix index 237ac8546a21..9815b9aa2d99 100644 --- a/pkgs/development/python-modules/django-markup/default.nix +++ b/pkgs/development/python-modules/django-markup/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { export DJANGO_SETTINGS_MODULE=django_markup.tests ''; - meta = with lib; { + meta = { description = "Generic Django application to convert text with specific markup to html"; homepage = "https://github.com/bartTC/django-markup"; changelog = "https://github.com/bartTC/django-markup/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-mdeditor/default.nix b/pkgs/development/python-modules/django-mdeditor/default.nix index 0a3694201d41..205c71de4f14 100644 --- a/pkgs/development/python-modules/django-mdeditor/default.nix +++ b/pkgs/development/python-modules/django-mdeditor/default.nix @@ -29,11 +29,11 @@ buildPythonPackage { doCheck = false; pythonImportsCheck = [ "mdeditor" ]; - meta = with lib; { + meta = { description = "Markdown Editor plugin application for django based on Editor.md"; homepage = "https://github.com/pylixm/django-mdeditor"; changelog = "https://github.com/pylixm/django-mdeditor/releases"; - license = licenses.gpl3; - maintainers = with maintainers; [ augustebaum ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ augustebaum ]; }; } diff --git a/pkgs/development/python-modules/django-model-utils/default.nix b/pkgs/development/python-modules/django-model-utils/default.nix index ef1af25115de..56695bde6b0f 100644 --- a/pkgs/development/python-modules/django-model-utils/default.nix +++ b/pkgs/development/python-modules/django-model-utils/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "model_utils" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jazzband/django-model-utils"; description = "Django model mixins and utilities"; changelog = "https://github.com/jazzband/django-model-utils/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-mptt/default.nix b/pkgs/development/python-modules/django-mptt/default.nix index 5cd5b63a76dc..7cc8c397f127 100644 --- a/pkgs/development/python-modules/django-mptt/default.nix +++ b/pkgs/development/python-modules/django-mptt/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { export PYTHONPATH=$(pwd)/tests:$PYTHONPATH ''; - meta = with lib; { + meta = { description = "Utilities for implementing a modified pre-order traversal tree in Django"; homepage = "https://github.com/django-mptt/django-mptt"; - maintainers = with maintainers; [ hexa ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ hexa ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/django-ninja/default.nix b/pkgs/development/python-modules/django-ninja/default.nix index 8813c6d2f9fa..f0424882f277 100644 --- a/pkgs/development/python-modules/django-ninja/default.nix +++ b/pkgs/development/python-modules/django-ninja/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/vitalik/django-ninja/releases/tag/${src.tag}"; description = "Web framework for building APIs with Django and Python type hints"; homepage = "https://django-ninja.dev"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-otp-webauthn/default.nix b/pkgs/development/python-modules/django-otp-webauthn/default.nix index 1b0ec670036e..4182e3a0903c 100644 --- a/pkgs/development/python-modules/django-otp-webauthn/default.nix +++ b/pkgs/development/python-modules/django-otp-webauthn/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_otp_webauthn" ]; - meta = with lib; { + meta = { description = "Passkey support for Django"; homepage = "https://github.com/Stormbase/django-otp-webauthn"; changelog = "https://github.com/Stormbase/django-otp-webauthn/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/django-otp/default.nix b/pkgs/development/python-modules/django-otp/default.nix index 5702ea88d7c8..b4159f72f899 100644 --- a/pkgs/development/python-modules/django-otp/default.nix +++ b/pkgs/development/python-modules/django-otp/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_otp" ]; - meta = with lib; { + meta = { homepage = "https://github.com/django-otp/django-otp"; changelog = "https://github.com/django-otp/django-otp/blob/${src.tag}/CHANGES.rst"; description = "Pluggable framework for adding two-factor authentication to Django using one-time passwords"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-paintstore/default.nix b/pkgs/development/python-modules/django-paintstore/default.nix index 6d4dd2d36535..66b744d422f5 100644 --- a/pkgs/development/python-modules/django-paintstore/default.nix +++ b/pkgs/development/python-modules/django-paintstore/default.nix @@ -16,9 +16,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Django app that integrates jQuery ColorPicker with the Django admin"; homepage = "https://github.com/gsiegman/django-paintstore"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/django-pattern-library/default.nix b/pkgs/development/python-modules/django-pattern-library/default.nix index 1650bf9723d5..8dddb5b7c971 100644 --- a/pkgs/development/python-modules/django-pattern-library/default.nix +++ b/pkgs/development/python-modules/django-pattern-library/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pattern_library" ]; - meta = with lib; { + meta = { description = "UI pattern libraries for Django templates"; homepage = "https://github.com/torchbox/django-pattern-library/"; changelog = "https://github.com/torchbox/django-pattern-library/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/django-payments/default.nix b/pkgs/development/python-modules/django-payments/default.nix index 872f3b4490ba..67757d235129 100644 --- a/pkgs/development/python-modules/django-payments/default.nix +++ b/pkgs/development/python-modules/django-payments/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { stripe = [ stripe ]; }; - meta = with lib; { + meta = { description = "Universal payment handling for Django"; homepage = "https://github.com/jazzband/django-payments/"; changelog = "https://github.com/jazzband/django-payments/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-phonenumber-field/default.nix b/pkgs/development/python-modules/django-phonenumber-field/default.nix index 97d08b977fa5..c568853b5186 100644 --- a/pkgs/development/python-modules/django-phonenumber-field/default.nix +++ b/pkgs/development/python-modules/django-phonenumber-field/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { phonenumberslite = [ phonenumberslite ]; }; - meta = with lib; { + meta = { description = "Django model and form field for normalised phone numbers using python-phonenumbers"; homepage = "https://github.com/stefanfoulis/django-phonenumber-field/"; changelog = "https://github.com/stefanfoulis/django-phonenumber-field/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/django-picklefield/default.nix b/pkgs/development/python-modules/django-picklefield/default.nix index 378b7086518b..0ed52dd7033b 100644 --- a/pkgs/development/python-modules/django-picklefield/default.nix +++ b/pkgs/development/python-modules/django-picklefield/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "picklefield" ]; - meta = with lib; { + meta = { description = "Pickled object field for Django"; homepage = "https://github.com/gintas/django-picklefield"; changelog = "https://github.com/gintas/django-picklefield/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-polymorphic/default.nix b/pkgs/development/python-modules/django-polymorphic/default.nix index bcc8f58aae38..e42cb80f4b2b 100644 --- a/pkgs/development/python-modules/django-polymorphic/default.nix +++ b/pkgs/development/python-modules/django-polymorphic/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "polymorphic" ]; - meta = with lib; { + meta = { changelog = "https://github.com/jazzband/django-polymorphic/releases/tag/${src.tag}"; homepage = "https://github.com/django-polymorphic/django-polymorphic"; description = "Improved Django model inheritance with automatic downcasting"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-postgres-extra/default.nix b/pkgs/development/python-modules/django-postgres-extra/default.nix index f3f3fd16ad56..9a4538d4d444 100644 --- a/pkgs/development/python-modules/django-postgres-extra/default.nix +++ b/pkgs/development/python-modules/django-postgres-extra/default.nix @@ -83,11 +83,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "psqlextra" ]; - meta = with lib; { + meta = { description = "Bringing all of PostgreSQL's awesomeness to Django"; homepage = "https://github.com/SectorLabs/django-postgres-extra"; changelog = "https://github.com/SectorLabs/django-postgres-extra/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ b4dm4n ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ b4dm4n ]; }; } diff --git a/pkgs/development/python-modules/django-postgresql-netfields/default.nix b/pkgs/development/python-modules/django-postgresql-netfields/default.nix index 26f18e51df3f..1e78db57cc11 100644 --- a/pkgs/development/python-modules/django-postgresql-netfields/default.nix +++ b/pkgs/development/python-modules/django-postgresql-netfields/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { postgresqlTestUserOptions = "LOGIN SUPERUSER"; env.DJANGO_SETTINGS_MODULE = "testsettings"; - meta = with lib; { + meta = { description = "Django PostgreSQL netfields implementation"; homepage = "https://github.com/jimfunk/django-postgresql-netfields"; changelog = "https://github.com/jimfunk/django-postgresql-netfields/blob/v${version}/CHANGELOG"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-prometheus/default.nix b/pkgs/development/python-modules/django-prometheus/default.nix index 0cac925692c6..ff97896101d6 100644 --- a/pkgs/development/python-modules/django-prometheus/default.nix +++ b/pkgs/development/python-modules/django-prometheus/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/django-commons/django-prometheus/releases/tag/v${version}"; description = "Django middlewares to monitor your application with Prometheus.io"; homepage = "https://github.com/django-commons/django-prometheus"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-pwa/default.nix b/pkgs/development/python-modules/django-pwa/default.nix index 9bf8ddb51e40..b07c4c60ed81 100644 --- a/pkgs/development/python-modules/django-pwa/default.nix +++ b/pkgs/development/python-modules/django-pwa/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Django app to include a manifest.json and Service Worker instance to enable progressive web app behavior"; homepage = "https://github.com/silviolleite/django-pwa"; changelog = "https://github.com/silviolleite/django-pwa/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-pydantic-field/default.nix b/pkgs/development/python-modules/django-pydantic-field/default.nix index bcd04d04b2c7..32abe0b1db8d 100644 --- a/pkgs/development/python-modules/django-pydantic-field/default.nix +++ b/pkgs/development/python-modules/django-pydantic-field/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { export DJANGO_SETTINGS_MODULE=tests.settings.django_test_settings ''; - meta = with lib; { + meta = { changelog = "https://github.com/surenkov/django-pydantic-field/releases/tag/${src.tag}"; description = "Django JSONField with Pydantic models as a Schema"; homepage = "https://github.com/surenkov/django-pydantic-field"; maintainers = with lib.maintainers; [ kiara ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/django-ranged-response/default.nix b/pkgs/development/python-modules/django-ranged-response/default.nix index 6391b3eb2091..3a2a7da1291f 100644 --- a/pkgs/development/python-modules/django-ranged-response/default.nix +++ b/pkgs/development/python-modules/django-ranged-response/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ django ]; - meta = with lib; { + meta = { description = "Modified FileResponse that returns `Content-Range` headers with the HTTP response, so browsers (read Safari 9+) that request the file, can stream the response properly"; homepage = "https://github.com/wearespindle/django-ranged-fileresponse"; - license = licenses.mit; - maintainers = with maintainers; [ mrmebelman ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/development/python-modules/django-raster/default.nix b/pkgs/development/python-modules/django-raster/default.nix index fc59c21893e7..9a5fa30422f9 100644 --- a/pkgs/development/python-modules/django-raster/default.nix +++ b/pkgs/development/python-modules/django-raster/default.nix @@ -41,9 +41,9 @@ buildPythonPackage rec { importlib-metadata ]; - meta = with lib; { + meta = { description = "Basic raster data integration for Django"; homepage = "https://github.com/geodesign/django-raster"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/django-ratelimit/default.nix b/pkgs/development/python-modules/django-ratelimit/default.nix index 3eee44851425..ede0fee8f6c2 100644 --- a/pkgs/development/python-modules/django-ratelimit/default.nix +++ b/pkgs/development/python-modules/django-ratelimit/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Cache-based rate-limiting for Django"; homepage = "https://github.com/jsocol/django-ratelimit"; changelog = "https://github.com/jsocol/django-ratelimit/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-redis/default.nix b/pkgs/development/python-modules/django-redis/default.nix index 681921f5be3e..867b1f72131e 100644 --- a/pkgs/development/python-modules/django-redis/default.nix +++ b/pkgs/development/python-modules/django-redis/default.nix @@ -79,11 +79,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Full featured redis cache backend for Django"; homepage = "https://github.com/jazzband/django-redis"; changelog = "https://github.com/jazzband/django-redis/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-rest-auth/default.nix b/pkgs/development/python-modules/django-rest-auth/default.nix index 316b07a274e0..b48c498eaa43 100644 --- a/pkgs/development/python-modules/django-rest-auth/default.nix +++ b/pkgs/development/python-modules/django-rest-auth/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_auth" ]; - meta = with lib; { + meta = { description = "Django app that makes registration and authentication easy"; homepage = "https://github.com/Tivix/django-rest-auth"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-rest-polymorphic/default.nix b/pkgs/development/python-modules/django-rest-polymorphic/default.nix index 6691daca93fd..13b2fdca3865 100644 --- a/pkgs/development/python-modules/django-rest-polymorphic/default.nix +++ b/pkgs/development/python-modules/django-rest-polymorphic/default.nix @@ -39,10 +39,10 @@ buildPythonPackage { pythonImportsCheck = [ "rest_polymorphic" ]; - meta = with lib; { + meta = { description = "Polymorphic serializers for Django REST Framework"; homepage = "https://github.com/apirobot/django-rest-polymorphic"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-reversion/default.nix b/pkgs/development/python-modules/django-reversion/default.nix index aa698ea02652..1cb5391dda0c 100644 --- a/pkgs/development/python-modules/django-reversion/default.nix +++ b/pkgs/development/python-modules/django-reversion/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "reversion" ]; - meta = with lib; { + meta = { description = "Extension to the Django web framework that provides comprehensive version control facilities"; homepage = "https://github.com/etianen/django-reversion"; changelog = "https://github.com/etianen/django-reversion/blob/v${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-rosetta/default.nix b/pkgs/development/python-modules/django-rosetta/default.nix index 2778f8e35320..6adb46338772 100644 --- a/pkgs/development/python-modules/django-rosetta/default.nix +++ b/pkgs/development/python-modules/django-rosetta/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rosetta" ]; - meta = with lib; { + meta = { description = "Rosetta is a Django application that facilitates the translation process of your Django projects"; homepage = "https://github.com/mbi/django-rosetta"; changelog = "https://github.com/mbi/django-rosetta/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-rq/default.nix b/pkgs/development/python-modules/django-rq/default.nix index e0ceb3a42fb4..52c43cf0781e 100644 --- a/pkgs/development/python-modules/django-rq/default.nix +++ b/pkgs/development/python-modules/django-rq/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { export DJANGO_SETTINGS_MODULE=tests.settings ''; - meta = with lib; { + meta = { description = "Simple app that provides django integration for RQ (Redis Queue)"; homepage = "https://github.com/rq/django-rq"; changelog = "https://github.com/rq/django-rq/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-scheduler/default.nix b/pkgs/development/python-modules/django-scheduler/default.nix index 3ffe10f0d65c..e7d768fb91d0 100644 --- a/pkgs/development/python-modules/django-scheduler/default.nix +++ b/pkgs/development/python-modules/django-scheduler/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "schedule" ]; - meta = with lib; { + meta = { description = "Calendar app for Django"; homepage = "https://github.com/llazzaro/django-scheduler"; changelog = "https://github.com/llazzaro/django-scheduler/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-scim2/default.nix b/pkgs/development/python-modules/django-scim2/default.nix index ecaf9502c8e3..28a2313cf548 100644 --- a/pkgs/development/python-modules/django-scim2/default.nix +++ b/pkgs/development/python-modules/django-scim2/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/15five/django-scim2/blob/${src.tag}/CHANGES.txt"; description = "SCIM 2.0 Service Provider Implementation (for Django)"; homepage = "https://github.com/15five/django-scim2"; - license = licenses.mit; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/development/python-modules/django-scopes/default.nix b/pkgs/development/python-modules/django-scopes/default.nix index 60d410e610e9..648c4c0544c9 100644 --- a/pkgs/development/python-modules/django-scopes/default.nix +++ b/pkgs/development/python-modules/django-scopes/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_scopes" ]; - meta = with lib; { + meta = { description = "Safely separate multiple tenants in a Django database"; homepage = "https://github.com/raphaelm/django-scopes"; - license = licenses.asl20; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/django-sekizai/default.nix b/pkgs/development/python-modules/django-sekizai/default.nix index 5727b5ac9990..36c9ce04a0ec 100644 --- a/pkgs/development/python-modules/django-sekizai/default.nix +++ b/pkgs/development/python-modules/django-sekizai/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { DJANGO_SETTINGS_MODULE = "tests.settings"; - meta = with lib; { + meta = { description = "Define placeholders where your blocks get rendered and append to those blocks"; homepage = "https://github.com/django-cms/django-sekizai"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/django-sesame/default.nix b/pkgs/development/python-modules/django-sesame/default.nix index 0cd763507429..8db031ecf268 100644 --- a/pkgs/development/python-modules/django-sesame/default.nix +++ b/pkgs/development/python-modules/django-sesame/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "URLs with authentication tokens for automatic login"; homepage = "https://github.com/aaugustin/django-sesame"; changelog = "https://github.com/aaugustin/django-sesame/blob/${version}/docs/changelog.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/django-shortuuidfield/default.nix b/pkgs/development/python-modules/django-shortuuidfield/default.nix index fe2580e20503..ab6fe6526b77 100644 --- a/pkgs/development/python-modules/django-shortuuidfield/default.nix +++ b/pkgs/development/python-modules/django-shortuuidfield/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "shortuuidfield" ]; - meta = with lib; { + meta = { description = "Short UUIDField for Django. Good for use in urls & file names"; homepage = "https://github.com/benrobster/django-shortuuidfield"; - license = licenses.bsd3; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-silk/default.nix b/pkgs/development/python-modules/django-silk/default.nix index 86c3fcecdf4e..13d286743e04 100644 --- a/pkgs/development/python-modules/django-silk/default.nix +++ b/pkgs/development/python-modules/django-silk/default.nix @@ -84,11 +84,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Silky smooth profiling for the Django Framework"; homepage = "https://github.com/jazzband/django-silk"; changelog = "https://github.com/jazzband/django-silk/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/django-simple-captcha/default.nix b/pkgs/development/python-modules/django-simple-captcha/default.nix index 0ca06217e42f..56323e781f2b 100644 --- a/pkgs/development/python-modules/django-simple-captcha/default.nix +++ b/pkgs/development/python-modules/django-simple-captcha/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Customizable Django application to add captcha images to any Django form"; homepage = "https://github.com/mbi/django-simple-captcha"; changelog = "https://github.com/mbi/django-simple-captcha/blob/${src.tag}/CHANGES"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mrmebelman ]; }; diff --git a/pkgs/development/python-modules/django-simple-history/default.nix b/pkgs/development/python-modules/django-simple-history/default.nix index 730217b039da..6278f1a8fa75 100644 --- a/pkgs/development/python-modules/django-simple-history/default.nix +++ b/pkgs/development/python-modules/django-simple-history/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "simple_history" ]; - meta = with lib; { + meta = { description = "Module to store Django model state on every create/update/delete"; homepage = "https://github.com/jazzband/django-simple-history/"; changelog = "https://github.com/jazzband/django-simple-history/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-statici18n/default.nix b/pkgs/development/python-modules/django-statici18n/default.nix index f78770643dcd..8a08d2e2f544 100644 --- a/pkgs/development/python-modules/django-statici18n/default.nix +++ b/pkgs/development/python-modules/django-statici18n/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Helper for generating Javascript catalog to static files"; homepage = "https://github.com/zyegfryed/django-statici18n"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/django-stubs-ext/default.nix b/pkgs/development/python-modules/django-stubs-ext/default.nix index cd5c80588366..d2f705011128 100644 --- a/pkgs/development/python-modules/django-stubs-ext/default.nix +++ b/pkgs/development/python-modules/django-stubs-ext/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_stubs_ext" ]; - meta = with lib; { + meta = { description = "Extensions and monkey-patching for django-stubs"; homepage = "https://github.com/typeddjango/django-stubs"; changelog = "https://github.com/typeddjango/django-stubs/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-stubs/default.nix b/pkgs/development/python-modules/django-stubs/default.nix index f3fcced7acb3..a66dcefb497f 100644 --- a/pkgs/development/python-modules/django-stubs/default.nix +++ b/pkgs/development/python-modules/django-stubs/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django-stubs" ]; - meta = with lib; { + meta = { description = "PEP-484 stubs for Django"; homepage = "https://github.com/typeddjango/django-stubs"; changelog = "https://github.com/typeddjango/django-stubs/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-tables2/default.nix b/pkgs/development/python-modules/django-tables2/default.nix index 72f43d6e6482..84be33edda64 100644 --- a/pkgs/development/python-modules/django-tables2/default.nix +++ b/pkgs/development/python-modules/django-tables2/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { ] ++ lib.concatAttrValues optional-dependencies; - meta = with lib; { + meta = { changelog = "https://github.com/jieter/django-tables2/blob/v${version}/CHANGELOG.md"; description = "Django app for creating HTML tables"; homepage = "https://github.com/jieter/django-tables2"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-taggit/default.nix b/pkgs/development/python-modules/django-taggit/default.nix index 97e717ed2497..70609e3354d0 100644 --- a/pkgs/development/python-modules/django-taggit/default.nix +++ b/pkgs/development/python-modules/django-taggit/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { ${python.interpreter} -m django test --settings=tests.settings ''; - meta = with lib; { + meta = { description = "Simple tagging for django"; homepage = "https://github.com/jazzband/django-taggit"; changelog = "https://github.com/jazzband/django-taggit/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/django-tastypie/default.nix b/pkgs/development/python-modules/django-tastypie/default.nix index 61f9080fc30b..8141785037e3 100644 --- a/pkgs/development/python-modules/django-tastypie/default.nix +++ b/pkgs/development/python-modules/django-tastypie/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tastypie" ]; - meta = with lib; { + meta = { description = "Utilities and helpers for writing Pylint plugins"; homepage = "https://github.com/django-tastypie/django-tastypie"; changelog = "https://github.com/django-tastypie/django-tastypie/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/django-timezone-field/default.nix b/pkgs/development/python-modules/django-timezone-field/default.nix index b0efb077d46b..781256638683 100644 --- a/pkgs/development/python-modules/django-timezone-field/default.nix +++ b/pkgs/development/python-modules/django-timezone-field/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pytz ]; - meta = with lib; { + meta = { description = "Django app providing database, form and serializer fields for pytz timezone objects"; homepage = "https://github.com/mfogel/django-timezone-field"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django-treebeard/default.nix b/pkgs/development/python-modules/django-treebeard/default.nix index 55c771d68731..0c98f7c07d07 100644 --- a/pkgs/development/python-modules/django-treebeard/default.nix +++ b/pkgs/development/python-modules/django-treebeard/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "treebeard" ]; - meta = with lib; { + meta = { description = "Efficient tree implementations for Django"; homepage = "https://tabo.pe/projects/django-treebeard/"; changelog = "https://github.com/django-treebeard/django-treebeard/blob/${version}/CHANGES.md"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/django-two-factor-auth/default.nix b/pkgs/development/python-modules/django-two-factor-auth/default.nix index 7cd848fdd492..9a854898786e 100644 --- a/pkgs/development/python-modules/django-two-factor-auth/default.nix +++ b/pkgs/development/python-modules/django-two-factor-auth/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "two_factor" ]; - meta = with lib; { + meta = { description = "Complete Two-Factor Authentication for Django"; homepage = "https://github.com/jazzband/django-two-factor-auth"; changelog = "https://github.com/jazzband/django-two-factor-auth/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-versatileimagefield/default.nix b/pkgs/development/python-modules/django-versatileimagefield/default.nix index 3545f011407c..549a21ff2ddd 100644 --- a/pkgs/development/python-modules/django-versatileimagefield/default.nix +++ b/pkgs/development/python-modules/django-versatileimagefield/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "versatileimagefield" ]; - meta = with lib; { + meta = { description = "Replaces django's ImageField with a more flexible interface"; homepage = "https://github.com/respondcreate/django-versatileimagefield/"; - license = licenses.mit; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/django-vite/default.nix b/pkgs/development/python-modules/django-vite/default.nix index 70abed4ba86c..99d2db98a84c 100644 --- a/pkgs/development/python-modules/django-vite/default.nix +++ b/pkgs/development/python-modules/django-vite/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_vite" ]; - meta = with lib; { + meta = { description = "Integration of ViteJS in a Django project"; homepage = "https://github.com/MrBin99/django-vite"; changelog = "https://github.com/MrBin99/django-vite/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/django-webpack-loader/default.nix b/pkgs/development/python-modules/django-webpack-loader/default.nix index 7e60dc34252e..589af0cc29a0 100644 --- a/pkgs/development/python-modules/django-webpack-loader/default.nix +++ b/pkgs/development/python-modules/django-webpack-loader/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "webpack_loader" ]; - meta = with lib; { + meta = { description = "Use webpack to generate your static bundles"; homepage = "https://github.com/owais/django-webpack-loader"; changelog = "https://github.com/django-webpack/django-webpack-loader/blob/${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/django-webpush/default.nix b/pkgs/development/python-modules/django-webpush/default.nix index 89499d969c15..d3eac14b7627 100644 --- a/pkgs/development/python-modules/django-webpush/default.nix +++ b/pkgs/development/python-modules/django-webpush/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "webpush" ]; - meta = with lib; { + meta = { description = "Module for integrating and sending Web Push Notification in Django Application"; homepage = "https://github.com/safwanrahman/django-webpush/"; changelog = "https://github.com/safwanrahman/django-webpush/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/django-widget-tweaks/default.nix b/pkgs/development/python-modules/django-widget-tweaks/default.nix index 9aa197fed0b8..2941b4c5db0f 100644 --- a/pkgs/development/python-modules/django-widget-tweaks/default.nix +++ b/pkgs/development/python-modules/django-widget-tweaks/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { ${python.interpreter} -m django test --settings=tests.settings ''; - meta = with lib; { + meta = { description = "Tweak the form field rendering in templates, not in python-level form definitions"; homepage = "https://github.com/jazzband/django-widget-tweaks"; changelog = "https://github.com/jazzband/django-widget-tweaks/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ maxxk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxxk ]; }; } diff --git a/pkgs/development/python-modules/django/4.nix b/pkgs/development/python-modules/django/4.nix index 6ec59f663502..342a30080432 100644 --- a/pkgs/development/python-modules/django/4.nix +++ b/pkgs/development/python-modules/django/4.nix @@ -164,12 +164,12 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://docs.djangoproject.com/en/${lib.versions.majorMinor version}/releases/${version}/"; description = "High-level Python Web framework that encourages rapid development and clean, pragmatic design"; mainProgram = "django-admin"; homepage = "https://www.djangoproject.com"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/django/5_2.nix b/pkgs/development/python-modules/django/5_2.nix index 6e85d00650d7..005df4abe306 100644 --- a/pkgs/development/python-modules/django/5_2.nix +++ b/pkgs/development/python-modules/django/5_2.nix @@ -134,11 +134,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://docs.djangoproject.com/en/${lib.versions.majorMinor version}/releases/${version}/"; description = "High-level Python Web framework that encourages rapid development and clean, pragmatic design"; homepage = "https://www.djangoproject.com"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/djangoql/default.nix b/pkgs/development/python-modules/djangoql/default.nix index 198dea2ec53b..3f0eba9b0cd0 100644 --- a/pkgs/development/python-modules/djangoql/default.nix +++ b/pkgs/development/python-modules/djangoql/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { ${python.executable} test_project/manage.py test core.tests ''; - meta = with lib; { + meta = { description = "Advanced search language for Django"; homepage = "https://github.com/ivelum/djangoql"; - license = licenses.mit; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-camel-case/default.nix b/pkgs/development/python-modules/djangorestframework-camel-case/default.nix index 1c1a0c14740d..bcb0d5c384f5 100644 --- a/pkgs/development/python-modules/djangorestframework-camel-case/default.nix +++ b/pkgs/development/python-modules/djangorestframework-camel-case/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "djangorestframework_camel_case" ]; - meta = with lib; { + meta = { description = "Camel case JSON support for Django REST framework"; homepage = "https://github.com/vbabiy/djangorestframework-camel-case"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-guardian/default.nix b/pkgs/development/python-modules/djangorestframework-guardian/default.nix index d722ff95ee74..ee14a342cb39 100644 --- a/pkgs/development/python-modules/djangorestframework-guardian/default.nix +++ b/pkgs/development/python-modules/djangorestframework-guardian/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_framework_guardian" ]; - meta = with lib; { + meta = { description = "Django-guardian support for Django REST Framework"; homepage = "https://github.com/rpkilby/django-rest-framework-guardian"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-recursive/default.nix b/pkgs/development/python-modules/djangorestframework-recursive/default.nix index d55dd2b8c90c..a25ed490d865 100644 --- a/pkgs/development/python-modules/djangorestframework-recursive/default.nix +++ b/pkgs/development/python-modules/djangorestframework-recursive/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_framework_recursive" ]; - meta = with lib; { + meta = { description = "Recursive Serialization for Django REST framework"; homepage = "https://github.com/heywbj/django-rest-framework-recursive"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-simplejwt/default.nix b/pkgs/development/python-modules/djangorestframework-simplejwt/default.nix index 07794f2a21d4..e2a4a7465589 100644 --- a/pkgs/development/python-modules/djangorestframework-simplejwt/default.nix +++ b/pkgs/development/python-modules/djangorestframework-simplejwt/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_framework_simplejwt" ]; - meta = with lib; { + meta = { description = "JSON Web Token authentication plugin for Django REST Framework"; homepage = "https://github.com/davesque/django-rest-framework-simplejwt"; changelog = "https://github.com/jazzband/djangorestframework-simplejwt/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-stubs/default.nix b/pkgs/development/python-modules/djangorestframework-stubs/default.nix index 27cd452e373c..cebffe5e31e9 100644 --- a/pkgs/development/python-modules/djangorestframework-stubs/default.nix +++ b/pkgs/development/python-modules/djangorestframework-stubs/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_framework-stubs" ]; - meta = with lib; { + meta = { description = "PEP-484 stubs for Django REST Framework"; homepage = "https://github.com/typeddjango/djangorestframework-stubs"; changelog = "https://github.com/typeddjango/djangorestframework-stubs/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework/default.nix b/pkgs/development/python-modules/djangorestframework/default.nix index f9f30317a35d..4e695f242e89 100644 --- a/pkgs/development/python-modules/djangorestframework/default.nix +++ b/pkgs/development/python-modules/djangorestframework/default.nix @@ -74,10 +74,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_framework" ]; - meta = with lib; { + meta = { changelog = "https://github.com/encode/django-rest-framework/releases/tag/3.15.1"; description = "Web APIs for Django, made easy"; homepage = "https://www.django-rest-framework.org/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/dkimpy/default.nix b/pkgs/development/python-modules/dkimpy/default.nix index eee2849c5f61..e3a97d08e5c5 100644 --- a/pkgs/development/python-modules/dkimpy/default.nix +++ b/pkgs/development/python-modules/dkimpy/default.nix @@ -37,7 +37,7 @@ buildPythonPackage rec { ${python.interpreter} ./test.py ''; - meta = with lib; { + meta = { description = "DKIM + ARC email signing/verification tools + Python module"; longDescription = '' Python module that implements DKIM (DomainKeys Identified Mail) email @@ -47,6 +47,6 @@ buildPythonPackage rec { Received Chain (ARC) protocol. ''; homepage = "https://launchpad.net/dkimpy"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/dllogger/default.nix b/pkgs/development/python-modules/dllogger/default.nix index b1a4bbfc4fe4..c23312e45f7e 100644 --- a/pkgs/development/python-modules/dllogger/default.nix +++ b/pkgs/development/python-modules/dllogger/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dllogger" ]; - meta = with lib; { + meta = { description = "Logging tool for deep learning"; homepage = "https://github.com/NVIDIA/dllogger"; changelog = "https://github.com/NVIDIA/dllogger/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/dlms-cosem/default.nix b/pkgs/development/python-modules/dlms-cosem/default.nix index ed9435cc8735..662344f1b9c4 100644 --- a/pkgs/development/python-modules/dlms-cosem/default.nix +++ b/pkgs/development/python-modules/dlms-cosem/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dlms_cosem" ]; - meta = with lib; { + meta = { description = "Python module to parse DLMS/COSEM"; homepage = "https://github.com/pwitab/dlms-cosem"; changelog = "https://github.com/pwitab/dlms-cosem/blob/${src.tag}/HISTORY.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dlx/default.nix b/pkgs/development/python-modules/dlx/default.nix index 588f47b127c5..55cdb3f7ffc4 100644 --- a/pkgs/development/python-modules/dlx/default.nix +++ b/pkgs/development/python-modules/dlx/default.nix @@ -26,10 +26,10 @@ buildPythonPackage { ${python.interpreter} ./examples/sudoku.py 3 "070285010008903500000000000500010008010000090900040003000000000002408600090632080" ''; - meta = with lib; { + meta = { description = "Implementation of Donald Knuth's Dancing Links algorithm"; homepage = "https://github.com/sraaphorst/dlx_python"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dm-env/default.nix b/pkgs/development/python-modules/dm-env/default.nix index 2b751b345cf8..433398c801a2 100644 --- a/pkgs/development/python-modules/dm-env/default.nix +++ b/pkgs/development/python-modules/dm-env/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dm_env" ]; - meta = with lib; { + meta = { description = "Pure Python client for Apache Kafka"; homepage = "https://github.com/dpkp/kafka-python"; - license = licenses.asl20; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/dnachisel/default.nix b/pkgs/development/python-modules/dnachisel/default.nix index b066b937d3c2..c7eabbb2365b 100644 --- a/pkgs/development/python-modules/dnachisel/default.nix +++ b/pkgs/development/python-modules/dnachisel/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dnachisel" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Edinburgh-Genome-Foundry/DnaChisel"; description = "Optimize DNA sequences under constraints"; changelog = "https://github.com/Edinburgh-Genome-Foundry/DnaChisel/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/dnf-plugins-core/default.nix b/pkgs/development/python-modules/dnf-plugins-core/default.nix index 906fe2de124d..ab7d1e951a4a 100644 --- a/pkgs/development/python-modules/dnf-plugins-core/default.nix +++ b/pkgs/development/python-modules/dnf-plugins-core/default.nix @@ -119,11 +119,11 @@ buildPythonPackage rec { makeWrapperArgs = [ ''--add-flags "--setopt=pluginpath=$out/${python.sitePackages}/dnf-plugins"'' ]; - meta = with lib; { + meta = { description = "Core plugins to use with DNF package manager"; homepage = "https://github.com/rpm-software-management/dnf-plugins-core"; changelog = "https://github.com/rpm-software-management/dnf-plugins-core/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ katexochen ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ katexochen ]; }; } diff --git a/pkgs/development/python-modules/dnf4/default.nix b/pkgs/development/python-modules/dnf4/default.nix index f1670daac402..33f1eebddcc2 100644 --- a/pkgs/development/python-modules/dnf4/default.nix +++ b/pkgs/development/python-modules/dnf4/default.nix @@ -92,13 +92,13 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Package manager based on libdnf and libsolv. Replaces YUM"; homepage = "https://github.com/rpm-software-management/dnf"; changelog = "https://github.com/rpm-software-management/dnf/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ katexochen ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ katexochen ]; mainProgram = "dnf"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/dnfile/default.nix b/pkgs/development/python-modules/dnfile/default.nix index 4279f0ea4859..10a92c586ae1 100644 --- a/pkgs/development/python-modules/dnfile/default.nix +++ b/pkgs/development/python-modules/dnfile/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dnfile" ]; - meta = with lib; { + meta = { description = "Module to parse .NET executable files"; homepage = "https://github.com/malwarefrank/dnfile"; changelog = "https://github.com/malwarefrank/dnfile/blob/${src.tag}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dns-lexicon/default.nix b/pkgs/development/python-modules/dns-lexicon/default.nix index 6f5e749472b0..45181d256485 100644 --- a/pkgs/development/python-modules/dns-lexicon/default.nix +++ b/pkgs/development/python-modules/dns-lexicon/default.nix @@ -99,12 +99,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "lexicon" ]; - meta = with lib; { + meta = { description = "Manipulate DNS records on various DNS providers in a standardized way"; mainProgram = "lexicon"; homepage = "https://github.com/AnalogJ/lexicon"; changelog = "https://github.com/AnalogJ/lexicon/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ aviallon ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ aviallon ]; }; } diff --git a/pkgs/development/python-modules/dnslib/default.nix b/pkgs/development/python-modules/dnslib/default.nix index 9b4bb3f6f064..3af082de1e04 100644 --- a/pkgs/development/python-modules/dnslib/default.nix +++ b/pkgs/development/python-modules/dnslib/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dnslib" ]; - meta = with lib; { + meta = { description = "Simple library to encode/decode DNS wire-format packets"; homepage = "https://github.com/paulc/dnslib"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docker/default.nix b/pkgs/development/python-modules/docker/default.nix index e848f3f1cdc4..2e889b5178fa 100644 --- a/pkgs/development/python-modules/docker/default.nix +++ b/pkgs/development/python-modules/docker/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { "socket_file" ]; - meta = with lib; { + meta = { changelog = "https://github.com/docker/docker-py/releases/tag/${version}"; description = "API client for docker written in Python"; homepage = "https://github.com/docker/docker-py"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dockerfile-parse/default.nix b/pkgs/development/python-modules/dockerfile-parse/default.nix index 7e7797ad6294..fb204c4a488b 100644 --- a/pkgs/development/python-modules/dockerfile-parse/default.nix +++ b/pkgs/development/python-modules/dockerfile-parse/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { "test_all_versions_match" ]; - meta = with lib; { + meta = { description = "Library for parsing Dockerfile files"; homepage = "https://github.com/DBuildService/dockerfile-parse"; changelog = "https://github.com/containerbuildsystem/dockerfile-parse/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/dockerpty/default.nix b/pkgs/development/python-modules/dockerpty/default.nix index 0e4fe12546df..26b7b00ccc89 100644 --- a/pkgs/development/python-modules/dockerpty/default.nix +++ b/pkgs/development/python-modules/dockerpty/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ six ]; - meta = with lib; { + meta = { description = "Functionality needed to operate the pseudo-tty (PTY) allocated to a docker container"; homepage = "https://github.com/d11wtq/dockerpty"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/dockerspawner/default.nix b/pkgs/development/python-modules/dockerspawner/default.nix index c9649bae45f2..ed4d7c2a8466 100644 --- a/pkgs/development/python-modules/dockerspawner/default.nix +++ b/pkgs/development/python-modules/dockerspawner/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dockerspawner" ]; - meta = with lib; { + meta = { description = "Custom spawner for Jupyterhub"; homepage = "https://github.com/jupyterhub/dockerspawner"; changelog = "https://github.com/jupyterhub/dockerspawner/blob/${version}/docs/source/changelog.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docloud/default.nix b/pkgs/development/python-modules/docloud/default.nix index cf7e5d333f0d..a15fc3ba7255 100644 --- a/pkgs/development/python-modules/docloud/default.nix +++ b/pkgs/development/python-modules/docloud/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "docloud" ]; - meta = with lib; { + meta = { description = "IBM Decision Optimization on Cloud Python client"; homepage = "https://onboarding-oaas.docloud.ibmcloud.com/software/analytics/docloud/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docopt-ng/default.nix b/pkgs/development/python-modules/docopt-ng/default.nix index 9e27ee1df20d..7544bccf0e66 100644 --- a/pkgs/development/python-modules/docopt-ng/default.nix +++ b/pkgs/development/python-modules/docopt-ng/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "docopt" ]; doCheck = false; # no tests in the package - meta = with lib; { + meta = { description = "More-magic command line arguments parser. Now with more maintenance"; homepage = "https://github.com/bazaar-projects/docopt-ng"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/python-modules/docopt/default.nix b/pkgs/development/python-modules/docopt/default.nix index 3f7c7c7a0ece..62504275a7fd 100644 --- a/pkgs/development/python-modules/docopt/default.nix +++ b/pkgs/development/python-modules/docopt/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "14f4hn6d1j4b99svwbaji8n2zj58qicyz19mm0x6pmhb50jsics9"; }; - meta = with lib; { + meta = { description = "Pythonic argument parser, that will make you smile"; homepage = "http://docopt.org/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/docplex/default.nix b/pkgs/development/python-modules/docplex/default.nix index 5c0cd075f546..23c123aa6c81 100644 --- a/pkgs/development/python-modules/docplex/default.nix +++ b/pkgs/development/python-modules/docplex/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "docplex" ]; - meta = with lib; { + meta = { description = "IBM Decision Optimization CPLEX Modeling for Python"; homepage = "https://onboarding-oaas.docloud.ibmcloud.com/software/analytics/docloud/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docstr-coverage/default.nix b/pkgs/development/python-modules/docstr-coverage/default.nix index 7dc9ee26543b..e5cfee6b0d76 100644 --- a/pkgs/development/python-modules/docstr-coverage/default.nix +++ b/pkgs/development/python-modules/docstr-coverage/default.nix @@ -39,12 +39,12 @@ buildPythonPackage { "test_set_config_defaults_with_ignore_patterns" ]; - meta = with lib; { + meta = { description = "Docstring coverage analysis and rating for Python"; mainProgram = "docstr-coverage"; homepage = "https://github.com/HunterMcGushion/docstr_coverage"; changelog = "https://github.com/HunterMcGushion/docstr_coverage/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ augustebaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ augustebaum ]; }; } diff --git a/pkgs/development/python-modules/docstring-parser/default.nix b/pkgs/development/python-modules/docstring-parser/default.nix index 651695963ec6..dc5b6c33bbe1 100644 --- a/pkgs/development/python-modules/docstring-parser/default.nix +++ b/pkgs/development/python-modules/docstring-parser/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "docstring_parser" ]; - meta = with lib; { + meta = { description = "Parse Python docstrings in various flavors"; homepage = "https://github.com/rr-/docstring_parser"; changelog = "https://github.com/rr-/docstring_parser/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/docstring-to-markdown/default.nix b/pkgs/development/python-modules/docstring-to-markdown/default.nix index c47f3f3338e0..ad4fd3baa82c 100644 --- a/pkgs/development/python-modules/docstring-to-markdown/default.nix +++ b/pkgs/development/python-modules/docstring-to-markdown/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "docstring_to_markdown" ]; - meta = with lib; { + meta = { homepage = "https://github.com/python-lsp/docstring-to-markdown"; description = "On the fly conversion of Python docstrings to markdown"; changelog = "https://github.com/python-lsp/docstring-to-markdown/releases/tag/${src.tag}"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/docx2python/default.nix b/pkgs/development/python-modules/docx2python/default.nix index c709a3d3bc5b..93a1b8af3952 100644 --- a/pkgs/development/python-modules/docx2python/default.nix +++ b/pkgs/development/python-modules/docx2python/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "docx2python" ]; - meta = with lib; { + meta = { description = "Extract docx headers, footers, (formatted) text, footnotes, endnotes, properties, and images"; homepage = "https://github.com/ShayHill/docx2python"; changelog = "https://github.com/ShayHill/docx2python/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docx2txt/default.nix b/pkgs/development/python-modules/docx2txt/default.nix index a41eaf15704c..3e4f64c341a0 100644 --- a/pkgs/development/python-modules/docx2txt/default.nix +++ b/pkgs/development/python-modules/docx2txt/default.nix @@ -16,11 +16,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "docx2txt" ]; - meta = with lib; { + meta = { description = "Pure python-based utility to extract text and images from docx files"; mainProgram = "docx2txt"; homepage = "https://github.com/ankushshah89/python-docx2txt"; - license = licenses.mit; - maintainers = with maintainers; [ ilkecan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ilkecan ]; }; } diff --git a/pkgs/development/python-modules/dogpile-cache/default.nix b/pkgs/development/python-modules/dogpile-cache/default.nix index de8a540fd806..e56f63e62153 100644 --- a/pkgs/development/python-modules/dogpile-cache/default.nix +++ b/pkgs/development/python-modules/dogpile-cache/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { mako ]; - meta = with lib; { + meta = { description = "Caching front-end based on the Dogpile lock"; homepage = "https://github.com/sqlalchemy/dogpile.cache"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dogtag-pki/default.nix b/pkgs/development/python-modules/dogtag-pki/default.nix index 2731e184eed2..6be9d50b47ea 100644 --- a/pkgs/development/python-modules/dogtag-pki/default.nix +++ b/pkgs/development/python-modules/dogtag-pki/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { description = "Enterprise-class Certificate Authority"; homepage = "https://github.com/dogtagpki/pki"; - license = licenses.gpl2; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/development/python-modules/dohq-artifactory/default.nix b/pkgs/development/python-modules/dohq-artifactory/default.nix index 835ac7409f86..efcef57ba417 100644 --- a/pkgs/development/python-modules/dohq-artifactory/default.nix +++ b/pkgs/development/python-modules/dohq-artifactory/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Python interface library for JFrog Artifactory"; homepage = "https://devopshq.github.io/artifactory/"; changelog = "https://github.com/devopshq/artifactory/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ h7x4 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ h7x4 ]; }; } diff --git a/pkgs/development/python-modules/doit-py/default.nix b/pkgs/development/python-modules/doit-py/default.nix index fef956d5b07a..371a4ff2d47b 100644 --- a/pkgs/development/python-modules/doit-py/default.nix +++ b/pkgs/development/python-modules/doit-py/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "doitpy" ]; - meta = with lib; { + meta = { description = "doit tasks for python stuff"; homepage = "http://pythonhosted.org/doit-py"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/doit/default.nix b/pkgs/development/python-modules/doit/default.nix index 756e980e091c..bbd8018ee2d3 100644 --- a/pkgs/development/python-modules/doit/default.nix +++ b/pkgs/development/python-modules/doit/default.nix @@ -59,11 +59,11 @@ let pythonImportsCheck = [ "doit" ]; - meta = with lib; { + meta = { homepage = "https://pydoit.org/"; description = "Task management & automation tool"; mainProgram = "doit"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' doit is a modern open-source build-tool written in python designed to be simple to use and flexible to deal with complex @@ -71,7 +71,7 @@ let custom work-flows where there is no out-of-the-box solution available. ''; - maintainers = with maintainers; [ pSub ]; + maintainers = with lib.maintainers; [ pSub ]; }; }; in diff --git a/pkgs/development/python-modules/dokuwiki/default.nix b/pkgs/development/python-modules/dokuwiki/default.nix index 698c370ce8e7..6e101680fbe2 100644 --- a/pkgs/development/python-modules/dokuwiki/default.nix +++ b/pkgs/development/python-modules/dokuwiki/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dokuwiki" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fmenabe/python-dokuwiki"; description = "Python module that aims to manage DokuWiki wikis by using the provided XML-RPC API"; - license = licenses.mit; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/development/python-modules/domeneshop/default.nix b/pkgs/development/python-modules/domeneshop/default.nix index a099301f5226..f6a921cdaadc 100644 --- a/pkgs/development/python-modules/domeneshop/default.nix +++ b/pkgs/development/python-modules/domeneshop/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "domeneshop" ]; - meta = with lib; { + meta = { changelog = "https://github.com/domeneshop/python-domeneshop/releases/tag/v${version}"; description = "Python library for working with the Domeneshop API"; homepage = "https://api.domeneshop.no/docs/"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/dominate/default.nix b/pkgs/development/python-modules/dominate/default.nix index e2bc2e06b6e8..d1c112ff4a3e 100644 --- a/pkgs/development/python-modules/dominate/default.nix +++ b/pkgs/development/python-modules/dominate/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "tests/test_svg.py" ]; - meta = with lib; { + meta = { description = "Library for creating and manipulating HTML documents using an elegant DOM API"; homepage = "https://github.com/Knio/dominate/"; changelog = "https://github.com/Knio/dominate/releases/tag/${version}"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dot2tex/default.nix b/pkgs/development/python-modules/dot2tex/default.nix index fc593d8a5871..90856b858521 100644 --- a/pkgs/development/python-modules/dot2tex/default.nix +++ b/pkgs/development/python-modules/dot2tex/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { )) ]; - meta = with lib; { + meta = { description = "Convert graphs generated by Graphviz to LaTeX friendly formats"; mainProgram = "dot2tex"; homepage = "https://github.com/kjellmf/dot2tex"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/dotmap/default.nix b/pkgs/development/python-modules/dotmap/default.nix index a6480528db34..ab04347f33cb 100644 --- a/pkgs/development/python-modules/dotmap/default.nix +++ b/pkgs/development/python-modules/dotmap/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dotmap" ]; - meta = with lib; { + meta = { description = "Python for dot-access dictionaries"; homepage = "https://github.com/drgrib/dotmap"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dotwiz/default.nix b/pkgs/development/python-modules/dotwiz/default.nix index da48a045c9ca..497b7683595e 100644 --- a/pkgs/development/python-modules/dotwiz/default.nix +++ b/pkgs/development/python-modules/dotwiz/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { disabledTestPaths = [ "benchmarks" ]; - meta = with lib; { + meta = { description = "Dict subclass that supports dot access notation"; homepage = "https://github.com/rnag/dotwiz"; changelog = "https://github.com/rnag/dotwiz/blob/v${src.tag}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/downloader-cli/default.nix b/pkgs/development/python-modules/downloader-cli/default.nix index 40da7c666929..ad2d972bf7a7 100644 --- a/pkgs/development/python-modules/downloader-cli/default.nix +++ b/pkgs/development/python-modules/downloader-cli/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "downloader_cli" ]; - meta = with lib; { + meta = { description = "Downloader with an awesome customizable progressbar"; mainProgram = "dw"; homepage = "https://github.com/deepjyoti30/downloader-cli"; changelog = "https://github.com/deepjyoti30/downloader-cli/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; }; } diff --git a/pkgs/development/python-modules/dparse/default.nix b/pkgs/development/python-modules/dparse/default.nix index d1e3cabd97b1..70f89776499f 100644 --- a/pkgs/development/python-modules/dparse/default.nix +++ b/pkgs/development/python-modules/dparse/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "test_update_pipfile" ]; - meta = with lib; { + meta = { description = "Parser for Python dependency files"; homepage = "https://github.com/pyupio/dparse"; changelog = "https://github.com/pyupio/dparse/blob/${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ thomasdesr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thomasdesr ]; }; } diff --git a/pkgs/development/python-modules/dparse2/default.nix b/pkgs/development/python-modules/dparse2/default.nix index c035109a6034..98b0560771da 100644 --- a/pkgs/development/python-modules/dparse2/default.nix +++ b/pkgs/development/python-modules/dparse2/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dparse2" ]; - meta = with lib; { + meta = { description = "Module to parse Python dependency files"; homepage = "https://github.com/nexB/dparse2"; changelog = "https://github.com/nexB/dparse2/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dpcontracts/default.nix b/pkgs/development/python-modules/dpcontracts/default.nix index eb687800b3a9..d2574eaf34ec 100644 --- a/pkgs/development/python-modules/dpcontracts/default.nix +++ b/pkgs/development/python-modules/dpcontracts/default.nix @@ -23,10 +23,10 @@ buildPythonPackage { pythonImportsCheck = [ "dpcontracts" ]; - meta = with lib; { + meta = { description = "Provides a collection of decorators that makes it easy to write software using contracts"; homepage = "https://github.com/deadpixi/contracts"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/dpkt/default.nix b/pkgs/development/python-modules/dpkt/default.nix index 564a1aade892..81d3b343ba73 100644 --- a/pkgs/development/python-modules/dpkt/default.nix +++ b/pkgs/development/python-modules/dpkt/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dpkt" ]; - meta = with lib; { + meta = { description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols"; homepage = "https://github.com/kbandla/dpkt"; - license = licenses.bsd3; - maintainers = with maintainers; [ bjornfor ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bjornfor ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/dploot/default.nix b/pkgs/development/python-modules/dploot/default.nix index 81b93b87d5bb..afcda375c837 100644 --- a/pkgs/development/python-modules/dploot/default.nix +++ b/pkgs/development/python-modules/dploot/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "DPAPI looting remotely in Python"; homepage = "https://github.com/zblurx/dploot"; changelog = "https://github.com/zblurx/dploot/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ vncsb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vncsb ]; mainProgram = "dploot"; }; } diff --git a/pkgs/development/python-modules/drafthorse/default.nix b/pkgs/development/python-modules/drafthorse/default.nix index 2c352dc33503..a34795ebcc1d 100644 --- a/pkgs/development/python-modules/drafthorse/default.nix +++ b/pkgs/development/python-modules/drafthorse/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "drafthorse" ]; - meta = with lib; { + meta = { description = "Pure-python ZUGFeRD implementation"; homepage = "https://github.com/pretix/python-drafthorse"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/draftjs-exporter/default.nix b/pkgs/development/python-modules/draftjs-exporter/default.nix index f60c84ec0f10..35315a9623ae 100644 --- a/pkgs/development/python-modules/draftjs-exporter/default.nix +++ b/pkgs/development/python-modules/draftjs-exporter/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "draftjs_exporter" ]; - meta = with lib; { + meta = { description = "Library to convert Draft.js ContentState to HTML"; homepage = "https://github.com/springload/draftjs_exporter"; changelog = "https://github.com/springload/draftjs_exporter/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/dragonfly/default.nix b/pkgs/development/python-modules/dragonfly/default.nix index 9a0910b81302..804c56d17b04 100644 --- a/pkgs/development/python-modules/dragonfly/default.nix +++ b/pkgs/development/python-modules/dragonfly/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dragonfly" ]; - meta = with lib; { + meta = { description = "Speech recognition framework allowing powerful Python-based scripting"; homepage = "https://github.com/dictation-toolbox/dragonfly"; changelog = "https://github.com/dictation-toolbox/dragonfly/blob/${version}/CHANGELOG.rst"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dramatiq/default.nix b/pkgs/development/python-modules/dramatiq/default.nix index 12535c9813b8..51644b59986a 100644 --- a/pkgs/development/python-modules/dramatiq/default.nix +++ b/pkgs/development/python-modules/dramatiq/default.nix @@ -100,10 +100,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dramatiq" ]; - meta = with lib; { + meta = { description = "Background Processing for Python 3"; homepage = "https://github.com/Bogdanp/dramatiq"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/drawille/default.nix b/pkgs/development/python-modules/drawille/default.nix index 648e9bf8e953..a4b483bd3cea 100644 --- a/pkgs/development/python-modules/drawille/default.nix +++ b/pkgs/development/python-modules/drawille/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "drawille" ]; - meta = with lib; { + meta = { description = "Drawing in terminal with unicode braille characters"; homepage = "https://github.com/asciimoo/drawille"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ nobbz ]; - platforms = platforms.all; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ nobbz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/drawilleplot/default.nix b/pkgs/development/python-modules/drawilleplot/default.nix index d03f75f438d1..4e922b90e8a7 100644 --- a/pkgs/development/python-modules/drawilleplot/default.nix +++ b/pkgs/development/python-modules/drawilleplot/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "drawilleplot" ]; - meta = with lib; { + meta = { description = "Matplotlib backend for graph output in unicode terminals using drawille"; homepage = "https://github.com/gooofy/drawilleplot"; - license = licenses.asl20; - maintainers = with maintainers; [ nobbz ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nobbz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/drawsvg/default.nix b/pkgs/development/python-modules/drawsvg/default.nix index eb9897a7c798..2360b947dee7 100644 --- a/pkgs/development/python-modules/drawsvg/default.nix +++ b/pkgs/development/python-modules/drawsvg/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "drawsvg" ]; - meta = with lib; { + meta = { description = "Programmatically generate SVG (vector) images, animations, and interactive Jupyter widgets"; homepage = "https://github.com/cduck/drawsvg"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dremel3dpy/default.nix b/pkgs/development/python-modules/dremel3dpy/default.nix index d2bcddbe180b..027e76630b9d 100644 --- a/pkgs/development/python-modules/dremel3dpy/default.nix +++ b/pkgs/development/python-modules/dremel3dpy/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dremel3dpy" ]; - meta = with lib; { + meta = { description = "Module for interacting with Dremel 3D printers"; homepage = "https://github.com/godely/dremel3dpy"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/drf-jwt/default.nix b/pkgs/development/python-modules/drf-jwt/default.nix index 9f062a9c5288..edb1b7dde7da 100644 --- a/pkgs/development/python-modules/drf-jwt/default.nix +++ b/pkgs/development/python-modules/drf-jwt/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { # "rest_framework_jwt.views" ]; - meta = with lib; { + meta = { description = "JSON Web Token based authentication for Django REST framework"; homepage = "https://github.com/Styria-Digital/django-rest-framework-jwt"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/drf-nested-routers/default.nix b/pkgs/development/python-modules/drf-nested-routers/default.nix index ce243c17e2dc..a0ca052e5a2f 100644 --- a/pkgs/development/python-modules/drf-nested-routers/default.nix +++ b/pkgs/development/python-modules/drf-nested-routers/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pytest-django ]; - meta = with lib; { + meta = { homepage = "https://github.com/alanjds/drf-nested-routers"; changelog = "https://github.com/alanjds/drf-nested-routers/blob/v${version}/CHANGELOG.md"; description = "Provides routers and fields to create nested resources in the Django Rest Framework"; - license = licenses.asl20; - maintainers = with maintainers; [ felschr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ felschr ]; }; } diff --git a/pkgs/development/python-modules/drf-pydantic/default.nix b/pkgs/development/python-modules/drf-pydantic/default.nix index 16cfd7b5f180..2be1211baed3 100644 --- a/pkgs/development/python-modules/drf-pydantic/default.nix +++ b/pkgs/development/python-modules/drf-pydantic/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/georgebv/drf-pydantic/releases/tag/${src.tag}"; description = "Use pydantic with the Django REST framework"; homepage = "https://github.com/georgebv/drf-pydantic"; - maintainers = [ maintainers.kiara ]; - license = licenses.mit; + maintainers = [ lib.maintainers.kiara ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix b/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix index 65598e73f619..2675a8163c94 100644 --- a/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix +++ b/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "drf_spectacular_sidecar" ]; - meta = with lib; { + meta = { description = "Serve self-contained distribution builds of Swagger UI and Redoc with Django"; homepage = "https://github.com/tfranzel/drf-spectacular-sidecar"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/drf-spectacular/default.nix b/pkgs/development/python-modules/drf-spectacular/default.nix index 21161cfa603b..9e96aefcb664 100644 --- a/pkgs/development/python-modules/drf-spectacular/default.nix +++ b/pkgs/development/python-modules/drf-spectacular/default.nix @@ -109,11 +109,11 @@ buildPythonPackage rec { optional-dependencies.sidecar = [ drf-spectacular-sidecar ]; - meta = with lib; { + meta = { description = "Sane and flexible OpenAPI 3 schema generation for Django REST framework"; homepage = "https://github.com/tfranzel/drf-spectacular"; changelog = "https://github.com/tfranzel/drf-spectacular/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/drf-standardized-errors/default.nix b/pkgs/development/python-modules/drf-standardized-errors/default.nix index 457849c8df4a..e1b116229d15 100644 --- a/pkgs/development/python-modules/drf-standardized-errors/default.nix +++ b/pkgs/development/python-modules/drf-standardized-errors/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { inflection ]; - meta = with lib; { + meta = { description = "Standardize your DRF API error responses"; homepage = "https://github.com/ghazi-git/drf-standardized-errors"; changelog = "https://github.com/ghazi-git/drf-standardized-errors/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/drf-ujson2/default.nix b/pkgs/development/python-modules/drf-ujson2/default.nix index 94be92161e00..a7b009e93100 100644 --- a/pkgs/development/python-modules/drf-ujson2/default.nix +++ b/pkgs/development/python-modules/drf-ujson2/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/Amertz08/drf_ujson2/releases/tag/v${version}"; description = "JSON parser and renderer using ujson for Django Rest Framework"; homepage = "https://github.com/Amertz08/drf_ujson2"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/drf-writable-nested/default.nix b/pkgs/development/python-modules/drf-writable-nested/default.nix index e4ec3231f856..227fad5b5b04 100644 --- a/pkgs/development/python-modules/drf-writable-nested/default.nix +++ b/pkgs/development/python-modules/drf-writable-nested/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Writable nested model serializer for Django REST Framework"; homepage = "https://github.com/beda-software/drf-writable-nested"; - license = licenses.bsd2; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/drf-yasg/default.nix b/pkgs/development/python-modules/drf-yasg/default.nix index 91edd3d73e9d..9cf5f63a7975 100644 --- a/pkgs/development/python-modules/drf-yasg/default.nix +++ b/pkgs/development/python-modules/drf-yasg/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "drf_yasg" ]; - meta = with lib; { + meta = { description = "Generation of Swagger/OpenAPI schemas for Django REST Framework"; homepage = "https://github.com/axnsan12/drf-yasg"; maintainers = [ ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/drivelib/default.nix b/pkgs/development/python-modules/drivelib/default.nix index 1f4c5fb93415..91391c9cf685 100644 --- a/pkgs/development/python-modules/drivelib/default.nix +++ b/pkgs/development/python-modules/drivelib/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "drivelib" ]; - meta = with lib; { + meta = { description = "Easy access to the most common Google Drive API calls"; homepage = "https://github.com/Lykos153/python-drivelib"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ gravndal ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ gravndal ]; }; } diff --git a/pkgs/development/python-modules/dronecan/default.nix b/pkgs/development/python-modules/dronecan/default.nix index 3f84bd653d9a..ce8184a4014e 100644 --- a/pkgs/development/python-modules/dronecan/default.nix +++ b/pkgs/development/python-modules/dronecan/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "dronecan" ]; - meta = with lib; { + meta = { description = "Python implementation of the DroneCAN v1 protocol stack"; mainProgram = "dronecan_bridge.py"; longDescription = '' DroneCAN is a lightweight protocol designed for reliable communication in aerospace and robotic applications via CAN bus. ''; homepage = "https://dronecan.github.io/"; - license = licenses.mit; - teams = [ teams.ororatech ]; + license = lib.licenses.mit; + teams = [ lib.teams.ororatech ]; }; } diff --git a/pkgs/development/python-modules/dropmqttapi/default.nix b/pkgs/development/python-modules/dropmqttapi/default.nix index f7d0f6bc0a0d..4c9a92b78bf6 100644 --- a/pkgs/development/python-modules/dropmqttapi/default.nix +++ b/pkgs/development/python-modules/dropmqttapi/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dropmqttapi" ]; - meta = with lib; { + meta = { description = "Python MQTT API for DROP water management products"; homepage = "https://github.com/ChandlerSystems/dropmqttapi"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ds-store/default.nix b/pkgs/development/python-modules/ds-store/default.nix index 5e22e754fb4f..de5041acb7b3 100644 --- a/pkgs/development/python-modules/ds-store/default.nix +++ b/pkgs/development/python-modules/ds-store/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ds_store" ]; - meta = with lib; { + meta = { homepage = "https://github.com/al45tair/ds_store"; description = "Manipulate Finder .DS_Store files from Python"; mainProgram = "ds_store"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/dsinternals/default.nix b/pkgs/development/python-modules/dsinternals/default.nix index d63321136055..89862f798caf 100644 --- a/pkgs/development/python-modules/dsinternals/default.nix +++ b/pkgs/development/python-modules/dsinternals/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/*.py" ]; - meta = with lib; { + meta = { description = "Module to interact with Windows Active Directory"; homepage = "https://github.com/p0dalirius/pydsinternals"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dsl2html/default.nix b/pkgs/development/python-modules/dsl2html/default.nix index 69af6cca431f..fa8fc2af0e19 100644 --- a/pkgs/development/python-modules/dsl2html/default.nix +++ b/pkgs/development/python-modules/dsl2html/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dsl" ]; - meta = with lib; { + meta = { description = "Python module for converting DSL dictionary texts into HTML"; homepage = "https://github.com/Crissium/python-dsl"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/dsmr-parser/default.nix b/pkgs/development/python-modules/dsmr-parser/default.nix index 1146b8177041..152d09b8df35 100644 --- a/pkgs/development/python-modules/dsmr-parser/default.nix +++ b/pkgs/development/python-modules/dsmr-parser/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dsmr_parser" ]; - meta = with lib; { + meta = { description = "Python module to parse Dutch Smart Meter Requirements (DSMR)"; homepage = "https://github.com/ndokter/dsmr_parser"; changelog = "https://github.com/ndokter/dsmr_parser/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dsmr_console"; }; } diff --git a/pkgs/development/python-modules/dsnap/default.nix b/pkgs/development/python-modules/dsnap/default.nix index ce3778e9bae8..56648e474e42 100644 --- a/pkgs/development/python-modules/dsnap/default.nix +++ b/pkgs/development/python-modules/dsnap/default.nix @@ -64,12 +64,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dsnap" ]; - meta = with lib; { + meta = { description = "Utility for downloading and mounting EBS snapshots using the EBS Direct API's"; homepage = "https://github.com/RhinoSecurityLabs/dsnap"; changelog = "https://github.com/RhinoSecurityLabs/dsnap/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dsnap"; }; } diff --git a/pkgs/development/python-modules/dtlssocket/default.nix b/pkgs/development/python-modules/dtlssocket/default.nix index 699032aee4e1..8fa7e1a7e255 100644 --- a/pkgs/development/python-modules/dtlssocket/default.nix +++ b/pkgs/development/python-modules/dtlssocket/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "DTLSSocket" ]; - meta = with lib; { + meta = { description = "Cython wrapper for tinydtls with a Socket like interface"; homepage = "https://git.fslab.de/jkonra2m/tinydtls-cython"; - license = licenses.epl10; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/dtschema/default.nix b/pkgs/development/python-modules/dtschema/default.nix index 162954207ecc..dbeeb2f726fc 100644 --- a/pkgs/development/python-modules/dtschema/default.nix +++ b/pkgs/development/python-modules/dtschema/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { description = "Tooling for devicetree validation using YAML and jsonschema"; homepage = "https://github.com/devicetree-org/dt-schema/"; changelog = "https://github.com/devicetree-org/dt-schema/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 # or gpl2Only ]; - maintainers = with maintainers; [ sorki ]; + maintainers = with lib.maintainers; [ sorki ]; broken = ( # Library not loaded: @rpath/libfdt.1.dylib diff --git a/pkgs/development/python-modules/dtw-python/default.nix b/pkgs/development/python-modules/dtw-python/default.nix index 9a6640ddc396..2066ade03f2a 100644 --- a/pkgs/development/python-modules/dtw-python/default.nix +++ b/pkgs/development/python-modules/dtw-python/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dtw" ]; - meta = with lib; { + meta = { description = "Python port of R's Comprehensive Dynamic Time Warp algorithms package"; homepage = "https://github.com/DynamicTimeWarping/dtw-python"; changelog = "https://github.com/DynamicTimeWarping/dtw-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mbalatsko ]; mainProgram = "dtw"; }; } diff --git a/pkgs/development/python-modules/duckdb/default.nix b/pkgs/development/python-modules/duckdb/default.nix index cc87702bb703..17b11e9e731c 100644 --- a/pkgs/development/python-modules/duckdb/default.nix +++ b/pkgs/development/python-modules/duckdb/default.nix @@ -148,10 +148,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "duckdb" ]; - meta = with lib; { + meta = { description = "Python binding for DuckDB"; homepage = "https://duckdb.org/"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/duct-py/default.nix b/pkgs/development/python-modules/duct-py/default.nix index 2d9b7ca504ce..cb7d092be27b 100644 --- a/pkgs/development/python-modules/duct-py/default.nix +++ b/pkgs/development/python-modules/duct-py/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { "test_full_env" ]; - meta = with lib; { + meta = { description = "Python library for running child processes"; homepage = "https://github.com/oconnor663/duct.py"; - license = licenses.mit; - maintainers = with maintainers; [ zmitchell ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zmitchell ]; }; } diff --git a/pkgs/development/python-modules/dufte/default.nix b/pkgs/development/python-modules/dufte/default.nix index 28ea2f8c420c..48c3fa996c34 100644 --- a/pkgs/development/python-modules/dufte/default.nix +++ b/pkgs/development/python-modules/dufte/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dufte" ]; - meta = with lib; { + meta = { description = "Clean matplotlib plots"; homepage = "https://github.com/nschloe/dufte"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/dulwich/default.nix b/pkgs/development/python-modules/dulwich/default.nix index 75de539d6bb9..d35379ceb8ab 100644 --- a/pkgs/development/python-modules/dulwich/default.nix +++ b/pkgs/development/python-modules/dulwich/default.nix @@ -105,7 +105,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "dulwich" ]; - meta = with lib; { + meta = { description = "Implementation of the Git file formats and protocols"; longDescription = '' Dulwich is a Python implementation of the Git file formats and protocols, which @@ -113,10 +113,10 @@ buildPythonPackage rec { ''; homepage = "https://www.dulwich.io/"; changelog = "https://github.com/jelmer/dulwich/blob/dulwich-${src.tag}/NEWS"; - license = with licenses; [ + license = with lib.licenses; [ asl20 gpl2Plus ]; - maintainers = with maintainers; [ koral ]; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/dungeon-eos/default.nix b/pkgs/development/python-modules/dungeon-eos/default.nix index 260a86af32fe..efcdae4126a8 100644 --- a/pkgs/development/python-modules/dungeon-eos/default.nix +++ b/pkgs/development/python-modules/dungeon-eos/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { doCheck = false; # there are no tests pythonImportsCheck = [ "dungeon_eos" ]; - meta = with lib; { + meta = { homepage = "https://github.com/SkyTemple/dungeon-eos"; description = "Package that simulates PMD EoS dungeon generation"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/duo-client/default.nix b/pkgs/development/python-modules/duo-client/default.nix index f07516f642ba..c101f9ac7157 100644 --- a/pkgs/development/python-modules/duo-client/default.nix +++ b/pkgs/development/python-modules/duo-client/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "test_set_telephony_credits" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the Duo Auth, Admin, and Accounts APIs"; homepage = "https://github.com/duosecurity/duo_client_python"; changelog = "https://github.com/duosecurity/duo_client_python/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/durus/default.nix b/pkgs/development/python-modules/durus/default.nix index 8db1f7c7f4c8..48fcab3a2053 100644 --- a/pkgs/development/python-modules/durus/default.nix +++ b/pkgs/development/python-modules/durus/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { "durus.sqlite_storage" ]; - meta = with lib; { + meta = { description = "Object persistence layer"; mainProgram = "durus"; homepage = "https://github.com/nascheme/durus"; - license = licenses.mit; - maintainers = with maintainers; [ grindhold ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ grindhold ]; }; } diff --git a/pkgs/development/python-modules/dvc-azure/default.nix b/pkgs/development/python-modules/dvc-azure/default.nix index 7aada9f9e75a..ffe77a5ada51 100644 --- a/pkgs/development/python-modules/dvc-azure/default.nix +++ b/pkgs/development/python-modules/dvc-azure/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { # "dvc_azure" # ]; - meta = with lib; { + meta = { description = "Azure plugin for dvc"; homepage = "https://pypi.org/project/dvc-azure/${version}"; changelog = "https://github.com/iterative/dvc-azure/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/dvc-data/default.nix b/pkgs/development/python-modules/dvc-data/default.nix index 42de801058a6..86730658f856 100644 --- a/pkgs/development/python-modules/dvc-data/default.nix +++ b/pkgs/development/python-modules/dvc-data/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dvc_data" ]; - meta = with lib; { + meta = { description = "DVC's data management subsystem"; homepage = "https://github.com/iterative/dvc-data"; changelog = "https://github.com/iterative/dvc-data/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dvc-data"; }; } diff --git a/pkgs/development/python-modules/dvc-gdrive/default.nix b/pkgs/development/python-modules/dvc-gdrive/default.nix index b54538a51821..d0151bf1acd7 100644 --- a/pkgs/development/python-modules/dvc-gdrive/default.nix +++ b/pkgs/development/python-modules/dvc-gdrive/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dvc_gdrive" ]; - meta = with lib; { + meta = { description = "Google Drive plugin for DVC"; homepage = "https://github.com/iterative/dvc-gdrive"; changelog = "https://github.com/iterative/dvc-gdrive/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dvc-gs/default.nix b/pkgs/development/python-modules/dvc-gs/default.nix index 4df57143e949..099c5512d3e7 100644 --- a/pkgs/development/python-modules/dvc-gs/default.nix +++ b/pkgs/development/python-modules/dvc-gs/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { # "dvc_gs" # ]; - meta = with lib; { + meta = { description = "gs plugin for dvc"; homepage = "https://pypi.org/project/dvc-gs/version"; changelog = "https://github.com/iterative/dvc-gs/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/dvc-hdfs/default.nix b/pkgs/development/python-modules/dvc-hdfs/default.nix index 6430b72a0e2d..165f86cd58e2 100644 --- a/pkgs/development/python-modules/dvc-hdfs/default.nix +++ b/pkgs/development/python-modules/dvc-hdfs/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dvc_hdfs" ]; - meta = with lib; { + meta = { description = "HDFS/WebHDFS plugin for dvc"; homepage = "https://github.com/iterative/dvc-hdfs"; changelog = "https://github.com/iterative/dvc-hdfs/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dvc-http/default.nix b/pkgs/development/python-modules/dvc-http/default.nix index e44e46c360d3..c31b5a1a1e32 100644 --- a/pkgs/development/python-modules/dvc-http/default.nix +++ b/pkgs/development/python-modules/dvc-http/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dvc_http" ]; - meta = with lib; { + meta = { description = "HTTP plugin for dvc"; homepage = "https://github.com/iterative/dvc-http"; changelog = "https://github.com/iterative/dvc-http/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dvc-objects/default.nix b/pkgs/development/python-modules/dvc-objects/default.nix index a2a504e6be54..eb47003dd03f 100644 --- a/pkgs/development/python-modules/dvc-objects/default.nix +++ b/pkgs/development/python-modules/dvc-objects/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "tests/benchmarks/" ]; - meta = with lib; { + meta = { description = "Library for DVC objects"; homepage = "https://github.com/iterative/dvc-objects"; changelog = "https://github.com/iterative/dvc-objects/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dvc-oss/default.nix b/pkgs/development/python-modules/dvc-oss/default.nix index e0f1eb220912..aebf7c284e45 100644 --- a/pkgs/development/python-modules/dvc-oss/default.nix +++ b/pkgs/development/python-modules/dvc-oss/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # Circular dependency # pythonImportsCheck = [ "dvc_ssh" ]; - meta = with lib; { + meta = { description = "Alibaba OSS plugin for dvc"; homepage = "https://pypi.org/project/dvc-oss/"; changelog = "https://github.com/iterative/dvc-oss/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dvc-render/default.nix b/pkgs/development/python-modules/dvc-render/default.nix index 09c434dc4e35..ce0c0101d30e 100644 --- a/pkgs/development/python-modules/dvc-render/default.nix +++ b/pkgs/development/python-modules/dvc-render/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dvc_render" ]; - meta = with lib; { + meta = { description = "Library for rendering DVC plots"; homepage = "https://github.com/iterative/dvc-render"; changelog = "https://github.com/iterative/dvc-render/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dvc-s3/default.nix b/pkgs/development/python-modules/dvc-s3/default.nix index 745461e645c8..8399dcb13a4c 100644 --- a/pkgs/development/python-modules/dvc-s3/default.nix +++ b/pkgs/development/python-modules/dvc-s3/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { # "dvc_s3" # ]; - meta = with lib; { + meta = { description = "S3 plugin for dvc"; homepage = "https://pypi.org/project/dvc-s3/${version}"; changelog = "https://github.com/iterative/dvc-s3/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/dvc-ssh/default.nix b/pkgs/development/python-modules/dvc-ssh/default.nix index 0ba38995c651..50110175619a 100644 --- a/pkgs/development/python-modules/dvc-ssh/default.nix +++ b/pkgs/development/python-modules/dvc-ssh/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { # "dvc_ssh" # ]; - meta = with lib; { + meta = { description = "SSH plugin for dvc"; homepage = "https://pypi.org/project/dvc-ssh/${version}"; changelog = "https://github.com/iterative/dvc-ssh/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/dvc-studio-client/default.nix b/pkgs/development/python-modules/dvc-studio-client/default.nix index 64a77130f92b..3c14570a0cc0 100644 --- a/pkgs/development/python-modules/dvc-studio-client/default.nix +++ b/pkgs/development/python-modules/dvc-studio-client/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # Tests try to access network doCheck = false; - meta = with lib; { + meta = { description = "Library to post data from DVC/DVCLive to Iterative Studio"; homepage = "https://github.com/iterative/dvc-studio-client"; changelog = "https://github.com/iterative/dvc-studio-client/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/dvc-task/default.nix b/pkgs/development/python-modules/dvc-task/default.nix index c7cfa2a4bd56..0b2dbcaa6276 100644 --- a/pkgs/development/python-modules/dvc-task/default.nix +++ b/pkgs/development/python-modules/dvc-task/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "celery_setup_worker" ]; - meta = with lib; { + meta = { description = "Celery task queue used in DVC"; homepage = "https://github.com/iterative/dvc-task"; changelog = "https://github.com/iterative/dvc-task/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/dvc/default.nix b/pkgs/development/python-modules/dvc/default.nix index c72c1de623c3..616737d2c961 100644 --- a/pkgs/development/python-modules/dvc/default.nix +++ b/pkgs/development/python-modules/dvc/default.nix @@ -162,12 +162,12 @@ buildPythonPackage rec { "dvc.api" ]; - meta = with lib; { + meta = { description = "Version Control System for Machine Learning Projects"; homepage = "https://dvc.org"; changelog = "https://github.com/iterative/dvc/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cmcdragonkai fab ]; diff --git a/pkgs/development/python-modules/dwdwfsapi/default.nix b/pkgs/development/python-modules/dwdwfsapi/default.nix index 8f72d8c974b7..0a3b967cdbec 100644 --- a/pkgs/development/python-modules/dwdwfsapi/default.nix +++ b/pkgs/development/python-modules/dwdwfsapi/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dwdwfsapi" ]; - meta = with lib; { + meta = { description = "Python client to retrieve data provided by DWD via their geoserver WFS API"; homepage = "https://github.com/stephan192/dwdwfsapi"; changelog = "https://github.com/stephan192/dwdwfsapi/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/dyn/default.nix b/pkgs/development/python-modules/dyn/default.nix index bd40c29d8dd0..cdade80a5dad 100644 --- a/pkgs/development/python-modules/dyn/default.nix +++ b/pkgs/development/python-modules/dyn/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dyn" ]; - meta = with lib; { + meta = { description = "Dynect dns lib"; homepage = "https://dyn.readthedocs.org"; changelog = "https://github.com/dyninc/dyn-python/blob/${version}/HISTORY.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dynalite-devices/default.nix b/pkgs/development/python-modules/dynalite-devices/default.nix index c826f181d41e..f1ee1671894f 100644 --- a/pkgs/development/python-modules/dynalite-devices/default.nix +++ b/pkgs/development/python-modules/dynalite-devices/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { # it would use the erroneous tag v0.47 passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Unofficial Dynalite DyNET interface creating devices"; homepage = "https://github.com/ziv1234/python-dynalite-devices"; changelog = "https://github.com/ziv1234/python-dynalite-devices/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/dynd/default.nix b/pkgs/development/python-modules/dynd/default.nix index b60e57b34c9c..e3a9a8425fcb 100644 --- a/pkgs/development/python-modules/dynd/default.nix +++ b/pkgs/development/python-modules/dynd/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dynd" ]; - meta = with lib; { + meta = { homepage = "http://libdynd.org"; - license = licenses.bsd2; + license = lib.licenses.bsd2; description = "Python exposure of dynd"; - maintainers = with maintainers; [ teh ]; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/e3-core/default.nix b/pkgs/development/python-modules/e3-core/default.nix index 6645c0fc1fd6..75b25b3b08fe 100644 --- a/pkgs/development/python-modules/e3-core/default.nix +++ b/pkgs/development/python-modules/e3-core/default.nix @@ -62,15 +62,15 @@ buildPythonPackage rec { # e3-core is tested with tox; it's hard to test without internet. doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/AdaCore/e3-core/releases/tag/${src.tag}"; homepage = "https://github.com/AdaCore/e3-core/"; description = "Core framework for developing portable automated build systems"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ atalii ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ atalii ]; mainProgram = "e3"; # See the comment regarding distro and psutil. Other platforms are supported # upstream, but not by this package. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/e3-testsuite/default.nix b/pkgs/development/python-modules/e3-testsuite/default.nix index 47f70c62039e..f0a95773a889 100644 --- a/pkgs/development/python-modules/e3-testsuite/default.nix +++ b/pkgs/development/python-modules/e3-testsuite/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "e3" ]; - meta = with lib; { + meta = { description = "Generic testsuite framework in Python"; changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${src.tag}"; homepage = "https://github.com/AdaCore/e3-testsuite/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ heijligen ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ heijligen ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/eagle100/default.nix b/pkgs/development/python-modules/eagle100/default.nix index 6d1bf6b34938..541cba484c0e 100644 --- a/pkgs/development/python-modules/eagle100/default.nix +++ b/pkgs/development/python-modules/eagle100/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "eagle100" ]; - meta = with lib; { + meta = { description = "Python library for interacting with Rainforest EAGLE devices"; homepage = "https://github.com/hastarin/eagle100"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/easydict/default.nix b/pkgs/development/python-modules/easydict/default.nix index 2194fcf11246..127b3c555bd2 100644 --- a/pkgs/development/python-modules/easydict/default.nix +++ b/pkgs/development/python-modules/easydict/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "easydict" ]; - meta = with lib; { + meta = { homepage = "https://github.com/makinacorpus/easydict"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; description = "Access dict values as attributes (works recursively)"; }; } diff --git a/pkgs/development/python-modules/easyenergy/default.nix b/pkgs/development/python-modules/easyenergy/default.nix index 86a6c19739eb..16fed014475d 100644 --- a/pkgs/development/python-modules/easyenergy/default.nix +++ b/pkgs/development/python-modules/easyenergy/default.nix @@ -66,11 +66,11 @@ buildPythonPackage rec { "test_electricity_midnight" ]; - meta = with lib; { + meta = { description = "Module for getting energy/gas prices from easyEnergy"; homepage = "https://github.com/klaasnicolaas/python-easyenergy"; changelog = "https://github.com/klaasnicolaas/python-easyenergy/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/easygui/default.nix b/pkgs/development/python-modules/easygui/default.nix index d19d378fde5d..f8eabbbf1fc2 100644 --- a/pkgs/development/python-modules/easygui/default.nix +++ b/pkgs/development/python-modules/easygui/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "easygui" ]; - meta = with lib; { + meta = { description = "Very simple, very easy GUI programming in Python"; homepage = "https://github.com/robertlugg/easygui"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/easyocr/default.nix b/pkgs/development/python-modules/easyocr/default.nix index 0c8b930f7b12..a0bf195cc696 100644 --- a/pkgs/development/python-modules/easyocr/default.nix +++ b/pkgs/development/python-modules/easyocr/default.nix @@ -76,12 +76,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "easyocr" ]; - meta = with lib; { + meta = { description = "Ready-to-use OCR with 80+ supported languages and all popular writing scripts"; mainProgram = "easyocr"; homepage = "https://github.com/JaidedAI/EasyOCR"; changelog = "https://github.com/JaidedAI/EasyOCR/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/development/python-modules/easyprocess/default.nix b/pkgs/development/python-modules/easyprocess/default.nix index 17d20b2b65dc..7d904d67f813 100644 --- a/pkgs/development/python-modules/easyprocess/default.nix +++ b/pkgs/development/python-modules/easyprocess/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "Easy to use python subprocess interface"; homepage = "https://github.com/ponty/EasyProcess"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ layus ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ layus ]; }; } diff --git a/pkgs/development/python-modules/easywatch/default.nix b/pkgs/development/python-modules/easywatch/default.nix index b51b4c5e8d78..ee3c39a3ca42 100644 --- a/pkgs/development/python-modules/easywatch/default.nix +++ b/pkgs/development/python-modules/easywatch/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "easywatch" ]; - meta = with lib; { + meta = { description = "Dead-simple way to watch a directory"; homepage = "https://github.com/Ceasar/easywatch"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/python-modules/ebaysdk/default.nix b/pkgs/development/python-modules/ebaysdk/default.nix index dcaa761e8d23..1590fff9efd4 100644 --- a/pkgs/development/python-modules/ebaysdk/default.nix +++ b/pkgs/development/python-modules/ebaysdk/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # requires network doCheck = false; - meta = with lib; { + meta = { description = "eBay SDK for Python"; homepage = "https://github.com/timotheus/ebaysdk-python"; - license = licenses.cddl; - maintainers = [ maintainers.mkg20001 ]; + license = lib.licenses.cddl; + maintainers = [ lib.maintainers.mkg20001 ]; }; } diff --git a/pkgs/development/python-modules/ebcdic/default.nix b/pkgs/development/python-modules/ebcdic/default.nix index c6b373e1bcba..8250f032fd41 100644 --- a/pkgs/development/python-modules/ebcdic/default.nix +++ b/pkgs/development/python-modules/ebcdic/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ebcdic" ]; - meta = with lib; { + meta = { description = "Additional EBCDIC codecs"; homepage = "https://github.com/roskakori/CodecMapper/tree/master/ebcdic"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ebooklib/default.nix b/pkgs/development/python-modules/ebooklib/default.nix index a39d7b0f35c0..5787ecad9388 100644 --- a/pkgs/development/python-modules/ebooklib/default.nix +++ b/pkgs/development/python-modules/ebooklib/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ebooklib" ]; - meta = with lib; { + meta = { description = "Python E-book library for handling books in EPUB2/EPUB3 format"; homepage = "https://github.com/aerkalov/ebooklib"; changelog = "https://github.com/aerkalov/ebooklib/blob/${src.tag}/CHANGES.txt"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/development/python-modules/echo/default.nix b/pkgs/development/python-modules/echo/default.nix index 79dbf6d91a88..ed5f5cafc4bc 100644 --- a/pkgs/development/python-modules/echo/default.nix +++ b/pkgs/development/python-modules/echo/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "echo" ]; - meta = with lib; { + meta = { homepage = "https://github.com/glue-viz/echo"; description = "Callback Properties in Python"; - license = licenses.mit; - maintainers = with maintainers; [ ifurther ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ifurther ]; }; } diff --git a/pkgs/development/python-modules/ecoaliface/default.nix b/pkgs/development/python-modules/ecoaliface/default.nix index ccdb69584138..70904203f80a 100644 --- a/pkgs/development/python-modules/ecoaliface/default.nix +++ b/pkgs/development/python-modules/ecoaliface/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ecoaliface" ]; - meta = with lib; { + meta = { description = "Python library for interacting with eCoal water boiler controllers"; homepage = "https://github.com/matkor/ecoaliface"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ecos/default.nix b/pkgs/development/python-modules/ecos/default.nix index 748e88cd25f0..d0d00b7f4f2e 100644 --- a/pkgs/development/python-modules/ecos/default.nix +++ b/pkgs/development/python-modules/ecos/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ecos" ]; - meta = with lib; { + meta = { description = "Python interface for ECOS"; homepage = "https://github.com/embotech/ecos-python"; changelog = "https://github.com/embotech/ecos-python/releases/tag/v${version}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ecpy/default.nix b/pkgs/development/python-modules/ecpy/default.nix index 4303f4806d44..16a859c39373 100644 --- a/pkgs/development/python-modules/ecpy/default.nix +++ b/pkgs/development/python-modules/ecpy/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ecpy" ]; - meta = with lib; { + meta = { description = "Pure Pyhton Elliptic Curve Library"; homepage = "https://github.com/ubinity/ECPy"; changelog = "https://github.com/cslashm/ECPy/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ecs-logging/default.nix b/pkgs/development/python-modules/ecs-logging/default.nix index fa1da330915b..09468baff24e 100644 --- a/pkgs/development/python-modules/ecs-logging/default.nix +++ b/pkgs/development/python-modules/ecs-logging/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ecs_logging" ]; - meta = with lib; { + meta = { description = "Logging formatters for the Elastic Common Schema (ECS) in Python"; homepage = "https://github.com/elastic/ecs-logging-python"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ed25519-blake2b/default.nix b/pkgs/development/python-modules/ed25519-blake2b/default.nix index a034bbb6424b..98e4b915d122 100644 --- a/pkgs/development/python-modules/ed25519-blake2b/default.nix +++ b/pkgs/development/python-modules/ed25519-blake2b/default.nix @@ -22,13 +22,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "ed25519_blake2b" ]; - meta = with lib; { + meta = { description = "Ed25519 public-key signatures (BLAKE2b fork)"; mainProgram = "edsig"; homepage = "https://github.com/Matoking/python-ed25519-blake2b"; changelog = "https://github.com/Matoking/python-ed25519-blake2b/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny stargate01 ]; diff --git a/pkgs/development/python-modules/ed25519/default.nix b/pkgs/development/python-modules/ed25519/default.nix index 78791985de12..36e6affa216d 100644 --- a/pkgs/development/python-modules/ed25519/default.nix +++ b/pkgs/development/python-modules/ed25519/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ed25519" ]; - meta = with lib; { + meta = { description = "Ed25519 public-key signatures"; mainProgram = "edsig"; homepage = "https://github.com/warner/python-ed25519"; changelog = "https://github.com/warner/python-ed25519/blob/${version}/NEWS"; - license = licenses.mit; - maintainers = with maintainers; [ np ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ np ]; }; } diff --git a/pkgs/development/python-modules/edalize/default.nix b/pkgs/development/python-modules/edalize/default.nix index 90db9ac64aa3..5ceab4bb2b86 100644 --- a/pkgs/development/python-modules/edalize/default.nix +++ b/pkgs/development/python-modules/edalize/default.nix @@ -99,12 +99,12 @@ buildPythonPackage rec { "tests/test_xsim.py" ]; - meta = with lib; { + meta = { description = "Abstraction library for interfacing EDA tools"; mainProgram = "el_docker"; homepage = "https://github.com/olofk/edalize"; changelog = "https://github.com/olofk/edalize/releases/tag/${src.tag}"; - license = licenses.bsd2; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ astro ]; }; } diff --git a/pkgs/development/python-modules/editdistance/default.nix b/pkgs/development/python-modules/editdistance/default.nix index 49aeb3227b13..f09670702baa 100644 --- a/pkgs/development/python-modules/editdistance/default.nix +++ b/pkgs/development/python-modules/editdistance/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "editdistance" ]; - meta = with lib; { + meta = { description = "Python implementation of the edit distance (Levenshtein distance)"; homepage = "https://github.com/roy-ht/editdistance"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/editor/default.nix b/pkgs/development/python-modules/editor/default.nix index 5cf8a6d2de33..f9873b25e8b9 100644 --- a/pkgs/development/python-modules/editor/default.nix +++ b/pkgs/development/python-modules/editor/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "editor" ]; - meta = with lib; { + meta = { description = "Open the default text editor"; homepage = "https://github.com/rec/editor"; changelog = "https://github.com/rec/editor/blob/${src.rev}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/editorconfig/default.nix b/pkgs/development/python-modules/editorconfig/default.nix index 1e4db46cff5f..07c3202d5311 100644 --- a/pkgs/development/python-modules/editorconfig/default.nix +++ b/pkgs/development/python-modules/editorconfig/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "editorconfig" ]; - meta = with lib; { + meta = { description = "EditorConfig File Locator and Interpreter for Python"; mainProgram = "editorconfig"; homepage = "https://github.com/editorconfig/editorconfig-core-py"; - license = licenses.psfl; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/edk2-pytool-library/default.nix b/pkgs/development/python-modules/edk2-pytool-library/default.nix index a7f996d33900..64312365ddf7 100644 --- a/pkgs/development/python-modules/edk2-pytool-library/default.nix +++ b/pkgs/development/python-modules/edk2-pytool-library/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "edk2toollib" ]; - meta = with lib; { + meta = { description = "Python library package that supports UEFI development"; homepage = "https://github.com/tianocore/edk2-pytool-library"; changelog = "https://github.com/tianocore/edk2-pytool-library/releases/tag/${src.tag}"; - license = licenses.bsd2Patent; - maintainers = with maintainers; [ nickcao ]; - platforms = platforms.linux; + license = lib.licenses.bsd2Patent; + maintainers = with lib.maintainers; [ nickcao ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/edward/default.nix b/pkgs/development/python-modules/edward/default.nix index 84a0b03b16e8..5ca81b8cca4b 100644 --- a/pkgs/development/python-modules/edward/default.nix +++ b/pkgs/development/python-modules/edward/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { tensorflow ]; - meta = with lib; { + meta = { description = "Probabilistic programming language using Tensorflow"; homepage = "https://github.com/blei-lab/edward"; - license = licenses.asl20; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/effect/default.nix b/pkgs/development/python-modules/effect/default.nix index fbc88f69d874..868d04edd2af 100644 --- a/pkgs/development/python-modules/effect/default.nix +++ b/pkgs/development/python-modules/effect/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "effect" ]; - meta = with lib; { + meta = { description = "Pure effects for Python"; homepage = "https://effect.readthedocs.io/"; changelog = "https://github.com/python-effect/effect/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eggdeps/default.nix b/pkgs/development/python-modules/eggdeps/default.nix index 9f09f0cdcf0c..5feaa5e35825 100644 --- a/pkgs/development/python-modules/eggdeps/default.nix +++ b/pkgs/development/python-modules/eggdeps/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # tests fail, see https://hydra.nixos.org/build/4316603/log/raw doCheck = false; - meta = with lib; { + meta = { description = "Tool which computes a dependency graph between active Python eggs"; mainProgram = "eggdeps"; homepage = "https://thomas-lotze.de/en/software/eggdeps/"; - license = licenses.zpl20; + license = lib.licenses.zpl20; }; } diff --git a/pkgs/development/python-modules/eigenpy/default.nix b/pkgs/development/python-modules/eigenpy/default.nix index f675729ef502..9edac97dd23f 100644 --- a/pkgs/development/python-modules/eigenpy/default.nix +++ b/pkgs/development/python-modules/eigenpy/default.nix @@ -74,15 +74,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "eigenpy" ]; - meta = with lib; { + meta = { description = "Bindings between Numpy and Eigen using Boost.Python"; homepage = "https://github.com/stack-of-tasks/eigenpy"; changelog = "https://github.com/stack-of-tasks/eigenpy/releases/tag/${src.tag}"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nim65s wegank ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/einops/default.nix b/pkgs/development/python-modules/einops/default.nix index b4048b660337..9d3ee6dd1627 100644 --- a/pkgs/development/python-modules/einops/default.nix +++ b/pkgs/development/python-modules/einops/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://github.com/arogozhnikov/einops/releases/tag/${src.tag}"; description = "Flexible and powerful tensor operations for readable and reliable code"; homepage = "https://github.com/arogozhnikov/einops"; - license = licenses.mit; - maintainers = with maintainers; [ yl3dy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yl3dy ]; }; } diff --git a/pkgs/development/python-modules/eiswarnung/default.nix b/pkgs/development/python-modules/eiswarnung/default.nix index d84153020701..23bcc41fb4b5 100644 --- a/pkgs/development/python-modules/eiswarnung/default.nix +++ b/pkgs/development/python-modules/eiswarnung/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "eiswarnung" ]; - meta = with lib; { + meta = { description = "Module for getting Eiswarning API forecasts"; homepage = "https://github.com/klaasnicolaas/python-eiswarnung"; changelog = "https://github.com/klaasnicolaas/python-eiswarnung/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/elastic-apm/default.nix b/pkgs/development/python-modules/elastic-apm/default.nix index 5d0043e79bb8..189bc10bc20d 100644 --- a/pkgs/development/python-modules/elastic-apm/default.nix +++ b/pkgs/development/python-modules/elastic-apm/default.nix @@ -91,12 +91,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "elasticapm" ]; - meta = with lib; { + meta = { description = "Python agent for the Elastic APM"; homepage = "https://github.com/elastic/apm-agent-python"; changelog = "https://github.com/elastic/apm-agent-python/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "elasticapm-run"; }; } diff --git a/pkgs/development/python-modules/elastic-transport/default.nix b/pkgs/development/python-modules/elastic-transport/default.nix index f083603fd0c7..a0ee04ae8f77 100644 --- a/pkgs/development/python-modules/elastic-transport/default.nix +++ b/pkgs/development/python-modules/elastic-transport/default.nix @@ -90,11 +90,11 @@ buildPythonPackage rec { "test_async_transport_httpbin" ]; - meta = with lib; { + meta = { description = "Transport classes and utilities shared among Python Elastic client libraries"; homepage = "https://github.com/elastic/elastic-transport-python"; changelog = "https://github.com/elastic/elastic-transport-python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/elasticsearch-dsl/default.nix b/pkgs/development/python-modules/elasticsearch-dsl/default.nix index d2401bc30882..035af99e87ef 100644 --- a/pkgs/development/python-modules/elasticsearch-dsl/default.nix +++ b/pkgs/development/python-modules/elasticsearch-dsl/default.nix @@ -38,7 +38,7 @@ buildPythonPackage rec { # Tests require a local instance of elasticsearch doCheck = false; - meta = with lib; { + meta = { description = "High level Python client for Elasticsearch"; longDescription = '' Elasticsearch DSL is a high-level library whose aim is to help with @@ -47,6 +47,6 @@ buildPythonPackage rec { ''; homepage = "https://github.com/elasticsearch/elasticsearch-dsl-py"; changelog = "https://github.com/elastic/elasticsearch-dsl-py/blob/v${version}/Changelog.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix index 0d745fa389d0..662b4cecb50a 100644 --- a/pkgs/development/python-modules/elasticsearch/default.nix +++ b/pkgs/development/python-modules/elasticsearch/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { # https://github.com/elasticsearch/elasticsearch-py/tree/master/test_elasticsearch doCheck = false; - meta = with lib; { + meta = { description = "Official low-level client for Elasticsearch"; homepage = "https://github.com/elasticsearch/elasticsearch-py"; changelog = "https://github.com/elastic/elasticsearch-py/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/elasticsearch8/default.nix b/pkgs/development/python-modules/elasticsearch8/default.nix index 0c2f7dc3a65a..2ca5b6155b4d 100644 --- a/pkgs/development/python-modules/elasticsearch8/default.nix +++ b/pkgs/development/python-modules/elasticsearch8/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "elasticsearch8" ]; - meta = with lib; { + meta = { description = "Official low-level client for Elasticsearch"; homepage = "https://github.com/elasticsearch/elasticsearch-py"; changelog = "https://github.com/elastic/elasticsearch-py/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/electrum-aionostr/default.nix b/pkgs/development/python-modules/electrum-aionostr/default.nix index 8fd18b50d89b..93ff8e024733 100644 --- a/pkgs/development/python-modules/electrum-aionostr/default.nix +++ b/pkgs/development/python-modules/electrum-aionostr/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { "test_command_line_interface" ]; - meta = with lib; { + meta = { description = "Asyncio nostr client"; homepage = "https://github.com/spesmilo/electrum-aionostr"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/electrum-ecc/default.nix b/pkgs/development/python-modules/electrum-ecc/default.nix index 15595435f24e..527f3693c511 100644 --- a/pkgs/development/python-modules/electrum-ecc/default.nix +++ b/pkgs/development/python-modules/electrum-ecc/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "electrum_ecc" ]; - meta = with lib; { + meta = { description = "Pure python ctypes wrapper for libsecp256k1"; homepage = "https://github.com/spesmilo/electrum-ecc"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/elementpath/default.nix b/pkgs/development/python-modules/elementpath/default.nix index 12a672b332b5..662b56357a8a 100644 --- a/pkgs/development/python-modules/elementpath/default.nix +++ b/pkgs/development/python-modules/elementpath/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "elementpath" ]; - meta = with lib; { + meta = { description = "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml"; homepage = "https://github.com/sissaschool/elementpath"; changelog = "https://github.com/sissaschool/elementpath/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/elevate/default.nix b/pkgs/development/python-modules/elevate/default.nix index 0db78266d320..225ce304ea06 100644 --- a/pkgs/development/python-modules/elevate/default.nix +++ b/pkgs/development/python-modules/elevate/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "elevate" ]; - meta = with lib; { + meta = { description = "Python module for re-launching the current process as super-user"; homepage = "https://github.com/barneygale/elevate"; - license = licenses.mit; - maintainers = with maintainers; [ rkitover ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rkitover ]; }; } diff --git a/pkgs/development/python-modules/elgato/default.nix b/pkgs/development/python-modules/elgato/default.nix index 6744422eb8bf..8d437d7d54e9 100644 --- a/pkgs/development/python-modules/elgato/default.nix +++ b/pkgs/development/python-modules/elgato/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "elgato" ]; - meta = with lib; { + meta = { description = "Python client for Elgato Key Lights"; homepage = "https://github.com/frenck/python-elgato"; changelog = "https://github.com/frenck/python-elgato/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/eliqonline/default.nix b/pkgs/development/python-modules/eliqonline/default.nix index 2b9b0e53c0bf..29890e344469 100644 --- a/pkgs/development/python-modules/eliqonline/default.nix +++ b/pkgs/development/python-modules/eliqonline/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "eliqonline" ]; - meta = with lib; { + meta = { description = "Python client to the Eliq Online API"; mainProgram = "eliqonline"; homepage = "https://github.com/molobrakos/eliqonline"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/elkm1-lib/default.nix b/pkgs/development/python-modules/elkm1-lib/default.nix index 5652526d88cf..d295511b9506 100644 --- a/pkgs/development/python-modules/elkm1-lib/default.nix +++ b/pkgs/development/python-modules/elkm1-lib/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "elkm1_lib" ]; - meta = with lib; { + meta = { description = "Python module for interacting with ElkM1 alarm/automation panel"; homepage = "https://github.com/gwww/elkm1"; changelog = "https://github.com/gwww/elkm1/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/elmax-api/default.nix b/pkgs/development/python-modules/elmax-api/default.nix index 3f9969637ecc..1de774c1a7f9 100644 --- a/pkgs/development/python-modules/elmax-api/default.nix +++ b/pkgs/development/python-modules/elmax-api/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "elmax_api" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the Elmax cloud"; homepage = "https://github.com/albertogeniola/elmax-api"; changelog = "https://github.com/albertogeniola/elmax-api/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/elmax/default.nix b/pkgs/development/python-modules/elmax/default.nix index 30bcb15c2106..0cb713d48d53 100644 --- a/pkgs/development/python-modules/elmax/default.nix +++ b/pkgs/development/python-modules/elmax/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "elmax" ]; - meta = with lib; { + meta = { description = "Python API client for the Elmax Cloud services"; mainProgram = "poetry-template"; homepage = "https://github.com/home-assistant-ecosystem/python-elmax"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/email-validator/default.nix b/pkgs/development/python-modules/email-validator/default.nix index 78463781f75d..6aa321ecbbc0 100644 --- a/pkgs/development/python-modules/email-validator/default.nix +++ b/pkgs/development/python-modules/email-validator/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "email_validator" ]; - meta = with lib; { + meta = { description = "Email syntax and deliverability validation library"; mainProgram = "email_validator"; homepage = "https://github.com/JoshData/python-email-validator"; changelog = "https://github.com/JoshData/python-email-validator/releases/tag/v${version}"; - license = licenses.cc0; - maintainers = with maintainers; [ siddharthist ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ siddharthist ]; }; } diff --git a/pkgs/development/python-modules/emailthreads/default.nix b/pkgs/development/python-modules/emailthreads/default.nix index b18d0f1e6d7b..21eced43f96c 100644 --- a/pkgs/development/python-modules/emailthreads/default.nix +++ b/pkgs/development/python-modules/emailthreads/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { PKGVER = version; - meta = with lib; { + meta = { homepage = "https://github.com/emersion/python-emailthreads"; description = "Python library to parse and format email threads"; - license = licenses.mit; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/embedding-reader/default.nix b/pkgs/development/python-modules/embedding-reader/default.nix index 43b8535e2008..2500110e1be4 100644 --- a/pkgs/development/python-modules/embedding-reader/default.nix +++ b/pkgs/development/python-modules/embedding-reader/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "embedding_reader" ]; - meta = with lib; { + meta = { description = "Efficiently read embedding in streaming from any filesystem"; homepage = "https://github.com/rom1504/embedding-reader"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/emborg/default.nix b/pkgs/development/python-modules/emborg/default.nix index 31d4a9950a54..37b22b109ebe 100644 --- a/pkgs/development/python-modules/emborg/default.nix +++ b/pkgs/development/python-modules/emborg/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "emborg" ]; - meta = with lib; { + meta = { description = "Interactive command line interface to Borg Backup"; homepage = "https://github.com/KenKundert/emborg"; changelog = "https://github.com/KenKundert/emborg/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/embrace/default.nix b/pkgs/development/python-modules/embrace/default.nix index 8fe77b069ead..3cebfa455016 100644 --- a/pkgs/development/python-modules/embrace/default.nix +++ b/pkgs/development/python-modules/embrace/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { # should remain usable. (https://todo.sr.ht/~olly/embrace-sql/4) doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Embrace SQL keeps your SQL queries in SQL files"; homepage = "https://pypi.org/project/embrace/"; - license = licenses.asl20; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ euxane ]; }; } diff --git a/pkgs/development/python-modules/emcee/default.nix b/pkgs/development/python-modules/emcee/default.nix index f276a239f6b7..7e64725bdd60 100644 --- a/pkgs/development/python-modules/emcee/default.nix +++ b/pkgs/development/python-modules/emcee/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "emcee" ]; - meta = with lib; { + meta = { description = "Kick ass affine-invariant ensemble MCMC sampling"; homepage = "https://emcee.readthedocs.io/"; changelog = "https://github.com/dfm/emcee/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/emoji/default.nix b/pkgs/development/python-modules/emoji/default.nix index b49ff084025b..c70a2ba534e8 100644 --- a/pkgs/development/python-modules/emoji/default.nix +++ b/pkgs/development/python-modules/emoji/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "emoji" ]; - meta = with lib; { + meta = { description = "Emoji for Python"; homepage = "https://github.com/carpedm20/emoji/"; changelog = "https://github.com/carpedm20/emoji/blob/${src.tag}/CHANGES.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ joachifm ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ joachifm ]; }; } diff --git a/pkgs/development/python-modules/empty-files/default.nix b/pkgs/development/python-modules/empty-files/default.nix index 27d7742fb853..524735355032 100644 --- a/pkgs/development/python-modules/empty-files/default.nix +++ b/pkgs/development/python-modules/empty-files/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "empty_files" ]; - meta = with lib; { + meta = { description = "Null Object pattern for files"; homepage = "https://github.com/approvals/EmptyFiles.Python"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/empy/default.nix b/pkgs/development/python-modules/empy/default.nix index abb1b361d1bd..81f3d07e025e 100644 --- a/pkgs/development/python-modules/empy/default.nix +++ b/pkgs/development/python-modules/empy/default.nix @@ -13,11 +13,11 @@ buildPythonPackage rec { hash = "sha256-hvFeHal0Pnmi6bLLrPGhPQt/sYNbYlTrJTyXi3Iof08="; }; pythonImportsCheck = [ "em" ]; - meta = with lib; { + meta = { homepage = "http://www.alcyone.com/software/empy/"; description = "Templating system for Python"; mainProgram = "em.py"; - maintainers = with maintainers; [ nkalupahana ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ nkalupahana ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/emv/default.nix b/pkgs/development/python-modules/emv/default.nix index faf9e00b5242..bbb4c28cb3e6 100644 --- a/pkgs/development/python-modules/emv/default.nix +++ b/pkgs/development/python-modules/emv/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "emv" ]; - meta = with lib; { + meta = { description = "Implementation of the EMV chip-and-pin smartcard protocol"; homepage = "https://github.com/russss/python-emv"; changelog = "https://github.com/russss/python-emv/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukegb ]; mainProgram = "emvtool"; }; } diff --git a/pkgs/development/python-modules/enaml/default.nix b/pkgs/development/python-modules/enaml/default.nix index 1c18e464787c..07447b19ddce 100644 --- a/pkgs/development/python-modules/enaml/default.nix +++ b/pkgs/development/python-modules/enaml/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "enaml.workbench" ]; - meta = with lib; { + meta = { description = "Declarative User Interfaces for Python"; homepage = "https://github.com/nucleic/enaml"; changelog = "https://github.com/nucleic/enaml/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ raboof ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ raboof ]; }; } diff --git a/pkgs/development/python-modules/enamlx/default.nix b/pkgs/development/python-modules/enamlx/default.nix index ad0e92622975..4d0a7421af5d 100644 --- a/pkgs/development/python-modules/enamlx/default.nix +++ b/pkgs/development/python-modules/enamlx/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "enamlx.widgets" ]; - meta = with lib; { + meta = { homepage = "https://github.com/frmdstryr/enamlx"; description = "Additional Qt Widgets for Enaml"; - license = licenses.mit; - maintainers = with maintainers; [ raboof ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raboof ]; }; } diff --git a/pkgs/development/python-modules/encodec/default.nix b/pkgs/development/python-modules/encodec/default.nix index ed07cbe6c15e..62ec821de1da 100644 --- a/pkgs/development/python-modules/encodec/default.nix +++ b/pkgs/development/python-modules/encodec/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # requires model data from the internet doCheck = false; - meta = with lib; { + meta = { description = "State-of-the-art deep learning based audio codec supporting both mono 24 kHz audio and stereo 48 kHz audio"; homepage = "https://github.com/facebookresearch/encodec"; changelog = "https://github.com/facebookresearch/encodec/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/energyflip-client/default.nix b/pkgs/development/python-modules/energyflip-client/default.nix index 032d4886884a..ffe84d2c6aab 100644 --- a/pkgs/development/python-modules/energyflip-client/default.nix +++ b/pkgs/development/python-modules/energyflip-client/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "energyflip" ]; - meta = with lib; { + meta = { description = "Library to communicate with the API behind EnergyFlip"; homepage = "https://github.com/dennisschroer/energyflip-client"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/energyzero/default.nix b/pkgs/development/python-modules/energyzero/default.nix index a3896ec4c5c9..e7641538a784 100644 --- a/pkgs/development/python-modules/energyzero/default.nix +++ b/pkgs/development/python-modules/energyzero/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "energyzero" ]; - meta = with lib; { + meta = { description = "Module for getting the dynamic prices from EnergyZero"; homepage = "https://github.com/klaasnicolaas/python-energyzero"; changelog = "https://github.com/klaasnicolaas/python-energyzero/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/enocean/default.nix b/pkgs/development/python-modules/enocean/default.nix index 7e56beb56d68..1419e19605ad 100644 --- a/pkgs/development/python-modules/enocean/default.nix +++ b/pkgs/development/python-modules/enocean/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { "enocean.utils" ]; - meta = with lib; { + meta = { changelog = "https://github.com/kipe/enocean/releases/tag/${version}"; description = "EnOcean serial protocol implementation"; mainProgram = "enocean_example.py"; homepage = "https://github.com/kipe/enocean"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/enochecker-core/default.nix b/pkgs/development/python-modules/enochecker-core/default.nix index eb4971e7a88f..30f579b54c36 100644 --- a/pkgs/development/python-modules/enochecker-core/default.nix +++ b/pkgs/development/python-modules/enochecker-core/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { # no tests upstream doCheck = false; - meta = with lib; { + meta = { description = "Base library for enochecker libs"; homepage = "https://github.com/enowars/enochecker_core"; changelog = "https://github.com/enowars/enochecker_core/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fwc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fwc ]; }; } diff --git a/pkgs/development/python-modules/enrich/default.nix b/pkgs/development/python-modules/enrich/default.nix index bccb74b2f837..717ba634426d 100644 --- a/pkgs/development/python-modules/enrich/default.nix +++ b/pkgs/development/python-modules/enrich/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "enrich" ]; - meta = with lib; { + meta = { description = "Enrich adds few missing features to the wonderful rich library"; homepage = "https://github.com/pycontribs/enrich"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/enterpriseattack/default.nix b/pkgs/development/python-modules/enterpriseattack/default.nix index fd2db5c2633c..9eafdf3fd828 100644 --- a/pkgs/development/python-modules/enterpriseattack/default.nix +++ b/pkgs/development/python-modules/enterpriseattack/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "enterpriseattack" ]; - meta = with lib; { + meta = { description = "Module to interact with the Mitre Att&ck Enterprise dataset"; homepage = "https://github.com/xakepnz/enterpriseattack"; changelog = "https://github.com/xakepnz/enterpriseattack/releases/tag/v.${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/entrance/default.nix b/pkgs/development/python-modules/entrance/default.nix index 2ce586482682..b92a2cf6bb2d 100644 --- a/pkgs/development/python-modules/entrance/default.nix +++ b/pkgs/development/python-modules/entrance/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { prePatch = opts.prePatch; - meta = with lib; { + meta = { description = "Server framework for web apps with an Elm frontend"; homepage = "https://github.com/ensoft/entrance"; - license = licenses.mit; - maintainers = with maintainers; [ simonchatts ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ simonchatts ]; }; } diff --git a/pkgs/development/python-modules/entry-points-txt/default.nix b/pkgs/development/python-modules/entry-points-txt/default.nix index 3c7f666e64cb..0ead5fc63ee3 100644 --- a/pkgs/development/python-modules/entry-points-txt/default.nix +++ b/pkgs/development/python-modules/entry-points-txt/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "entry_points_txt" ]; - meta = with lib; { + meta = { description = "Read & write entry_points.txt files"; homepage = "https://github.com/jwodder/entry-points-txt"; changelog = "https://github.com/wheelodex/entry-points-txt/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ ayazhafiz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ayazhafiz ]; }; } diff --git a/pkgs/development/python-modules/entrypoint2/default.nix b/pkgs/development/python-modules/entrypoint2/default.nix index 2e6ecc1a0bbd..dbbd90989db9 100644 --- a/pkgs/development/python-modules/entrypoint2/default.nix +++ b/pkgs/development/python-modules/entrypoint2/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "entrypoint2" ]; - meta = with lib; { + meta = { description = "Easy to use command-line interface for python modules"; homepage = "https://github.com/ponty/entrypoint2/"; - license = licenses.bsd2; - maintainers = with maintainers; [ austinbutler ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ austinbutler ]; }; } diff --git a/pkgs/development/python-modules/entrypoints/default.nix b/pkgs/development/python-modules/entrypoints/default.nix index 5277106f01d2..7ceeba5b7681 100644 --- a/pkgs/development/python-modules/entrypoints/default.nix +++ b/pkgs/development/python-modules/entrypoints/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Discover and load entry points from installed packages"; homepage = "https://github.com/takluyver/entrypoints"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/enturclient/default.nix b/pkgs/development/python-modules/enturclient/default.nix index 213e5941b74b..5099093632fb 100644 --- a/pkgs/development/python-modules/enturclient/default.nix +++ b/pkgs/development/python-modules/enturclient/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { "tests/dto/" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the Entur.org API"; homepage = "https://github.com/hfurubotten/enturclient"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/env-canada/default.nix b/pkgs/development/python-modules/env-canada/default.nix index c053da5a13f5..b03195edcdc4 100644 --- a/pkgs/development/python-modules/env-canada/default.nix +++ b/pkgs/development/python-modules/env-canada/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "env_canada" ]; - meta = with lib; { + meta = { description = "Python library to get Environment Canada weather data"; homepage = "https://github.com/michaeldavie/env_canada"; changelog = "https://github.com/michaeldavie/env_canada/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/environs/default.nix b/pkgs/development/python-modules/environs/default.nix index 22a6b0bb9735..45e6b2fe7c4e 100644 --- a/pkgs/development/python-modules/environs/default.nix +++ b/pkgs/development/python-modules/environs/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "environs" ]; - meta = with lib; { + meta = { description = "Python modle for environment variable parsing"; homepage = "https://github.com/sloria/environs"; changelog = "https://github.com/sloria/environs/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/envisage/default.nix b/pkgs/development/python-modules/envisage/default.nix index a9440766a2e7..de6f762a8838 100644 --- a/pkgs/development/python-modules/envisage/default.nix +++ b/pkgs/development/python-modules/envisage/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "envisage" ]; - meta = with lib; { + meta = { description = "Framework for building applications whose functionalities can be extended by adding plug-ins"; homepage = "https://github.com/enthought/envisage"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/envoy-reader/default.nix b/pkgs/development/python-modules/envoy-reader/default.nix index 46a8249d9e2f..a8af44d2bdd3 100644 --- a/pkgs/development/python-modules/envoy-reader/default.nix +++ b/pkgs/development/python-modules/envoy-reader/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "envoy_reader" ]; - meta = with lib; { + meta = { description = "Python module to read from Enphase Envoy units"; homepage = "https://github.com/jesserizzo/envoy_reader"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/envoy-utils/default.nix b/pkgs/development/python-modules/envoy-utils/default.nix index 6827f9727182..82b803690c19 100644 --- a/pkgs/development/python-modules/envoy-utils/default.nix +++ b/pkgs/development/python-modules/envoy-utils/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "envoy_utils" ]; - meta = with lib; { + meta = { description = "Python utilities for the Enphase Envoy"; homepage = "https://pypi.org/project/envoy-utils/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/enzyme/default.nix b/pkgs/development/python-modules/enzyme/default.nix index 5d969858c00f..0ee1e1fca716 100644 --- a/pkgs/development/python-modules/enzyme/default.nix +++ b/pkgs/development/python-modules/enzyme/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/Diaoul/enzyme"; - license = licenses.mit; + license = lib.licenses.mit; description = "Python video metadata parser"; }; } diff --git a/pkgs/development/python-modules/epc/default.nix b/pkgs/development/python-modules/epc/default.nix index 81864a3de9f1..735c8aa1ecc6 100644 --- a/pkgs/development/python-modules/epc/default.nix +++ b/pkgs/development/python-modules/epc/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ sexpdata ]; doCheck = false; - meta = with lib; { + meta = { description = "EPC (RPC stack for Emacs Lisp) implementation in Python"; homepage = "https://github.com/tkf/python-epc"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/ephem/default.nix b/pkgs/development/python-modules/ephem/default.nix index 0084907f7633..51acba5afb16 100644 --- a/pkgs/development/python-modules/ephem/default.nix +++ b/pkgs/development/python-modules/ephem/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ephem" ]; - meta = with lib; { + meta = { description = "Compute positions of the planets and stars"; homepage = "https://github.com/brandon-rhodes/pyephem"; - license = licenses.mit; - maintainers = with maintainers; [ chrisrosset ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chrisrosset ]; }; } diff --git a/pkgs/development/python-modules/ephemeral-port-reserve/default.nix b/pkgs/development/python-modules/ephemeral-port-reserve/default.nix index d582c5cfc37c..ebbbc206768b 100644 --- a/pkgs/development/python-modules/ephemeral-port-reserve/default.nix +++ b/pkgs/development/python-modules/ephemeral-port-reserve/default.nix @@ -32,11 +32,11 @@ buildPythonPackage { pythonImportsCheck = [ "ephemeral_port_reserve" ]; - meta = with lib; { + meta = { description = "Find an unused port, reliably"; mainProgram = "ephemeral-port-reserve"; homepage = "https://github.com/Yelp/ephemeral-port-reserve/"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/epion/default.nix b/pkgs/development/python-modules/epion/default.nix index 85aef48e4d52..a434b3f96802 100644 --- a/pkgs/development/python-modules/epion/default.nix +++ b/pkgs/development/python-modules/epion/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "epion" ]; - meta = with lib; { + meta = { description = "Module to access Epion sensor data"; homepage = "https://github.com/devenzo-com/epion_python"; changelog = "https://github.com/devenzo-com/epion_python/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/epitran/default.nix b/pkgs/development/python-modules/epitran/default.nix index f8f261a8c4e6..d0f84f587b11 100644 --- a/pkgs/development/python-modules/epitran/default.nix +++ b/pkgs/development/python-modules/epitran/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "epitran.vector" ]; - meta = with lib; { + meta = { description = "Tools for transcribing languages into IPA"; homepage = "https://github.com/dmort27/epitran"; changelog = "https://github.com/dmort27/epitran/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/epson-projector/default.nix b/pkgs/development/python-modules/epson-projector/default.nix index ba4a526d7e96..6e14746b2c2a 100644 --- a/pkgs/development/python-modules/epson-projector/default.nix +++ b/pkgs/development/python-modules/epson-projector/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { "epson_projector.projector_tcp" ]; - meta = with lib; { + meta = { description = "Epson projector support for Python"; homepage = "https://github.com/pszafer/epson_projector"; changelog = "https://github.com/pszafer/epson_projector/releases/tag/v.${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/eradicate/default.nix b/pkgs/development/python-modules/eradicate/default.nix index 621f0bdb5dd8..c409deabb149 100644 --- a/pkgs/development/python-modules/eradicate/default.nix +++ b/pkgs/development/python-modules/eradicate/default.nix @@ -26,12 +26,12 @@ buildPythonPackage rec { enabledTestPaths = [ "test_eradicate.py" ]; - meta = with lib; { + meta = { description = "Library to remove commented-out code from Python files"; mainProgram = "eradicate"; homepage = "https://github.com/myint/eradicate"; changelog = "https://github.com/wemake-services/eradicate/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ mmlb ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ mmlb ]; }; } diff --git a/pkgs/development/python-modules/es-client/default.nix b/pkgs/development/python-modules/es-client/default.nix index 1f02da027f90..767ea66ebf96 100644 --- a/pkgs/development/python-modules/es-client/default.nix +++ b/pkgs/development/python-modules/es-client/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { "TestCLIExample" ]; - meta = with lib; { + meta = { description = "Module for building Elasticsearch client objects"; homepage = "https://github.com/untergeek/es_client"; changelog = "https://github.com/untergeek/es_client/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/esig/default.nix b/pkgs/development/python-modules/esig/default.nix index 14d88b448b0c..b3282de08078 100644 --- a/pkgs/development/python-modules/esig/default.nix +++ b/pkgs/development/python-modules/esig/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "esig" ]; - meta = with lib; { + meta = { description = "This package provides \"rough path\" tools for analysing vector time series"; homepage = "https://github.com/datasig-ac-uk/esig"; changelog = "https://github.com/datasig-ac-uk/esig/blob/release/CHANGELOG"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/espeak-phonemizer/default.nix b/pkgs/development/python-modules/espeak-phonemizer/default.nix index 6b7304a7c895..a203d11707f5 100644 --- a/pkgs/development/python-modules/espeak-phonemizer/default.nix +++ b/pkgs/development/python-modules/espeak-phonemizer/default.nix @@ -27,13 +27,13 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/rhasspy/espeak-phonemizer/releases/tag/v${version}"; description = "Uses ctypes and libespeak-ng to transform test into IPA phonemes"; mainProgram = "espeak-phonemizer"; homepage = "https://github.com/rhasspy/espeak-phonemizer"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/esphome-dashboard-api/default.nix b/pkgs/development/python-modules/esphome-dashboard-api/default.nix index 48b7b31db203..acd61f52a193 100644 --- a/pkgs/development/python-modules/esphome-dashboard-api/default.nix +++ b/pkgs/development/python-modules/esphome-dashboard-api/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "esphome_dashboard_api" ]; - meta = with lib; { + meta = { description = "API to interact with ESPHome Dashboard"; homepage = "https://github.com/esphome/dashboard-api"; changelog = "https://github.com/esphome/dashboard-api/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/esprima/default.nix b/pkgs/development/python-modules/esprima/default.nix index 957b7bbb6f3c..36d1c20adf23 100644 --- a/pkgs/development/python-modules/esprima/default.nix +++ b/pkgs/development/python-modules/esprima/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "esprima" ]; - meta = with lib; { + meta = { description = "Python parser for standard-compliant ECMAScript"; mainProgram = "esprima"; homepage = "https://github.com/Kronuz/esprima-python"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/et-xmlfile/default.nix b/pkgs/development/python-modules/et-xmlfile/default.nix index b12bc700c5fb..5167f6064fd2 100644 --- a/pkgs/development/python-modules/et-xmlfile/default.nix +++ b/pkgs/development/python-modules/et-xmlfile/default.nix @@ -32,7 +32,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "et_xmlfile" ]; - meta = with lib; { + meta = { description = "Implementation of lxml.xmlfile for the standard library"; longDescription = '' et_xmlfile is a low memory library for creating large XML files. @@ -43,7 +43,7 @@ buildPythonPackage rec { but is now a standalone module. ''; homepage = "https://foss.heptapod.net/openpyxl/et_xmlfile"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/etcd/default.nix b/pkgs/development/python-modules/etcd/default.nix index d9dc4fcd0753..62be3cf63981 100644 --- a/pkgs/development/python-modules/etcd/default.nix +++ b/pkgs/development/python-modules/etcd/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { # No proper tests are available doCheck = false; - meta = with lib; { + meta = { description = "Python etcd client that just works"; homepage = "https://github.com/dsoprea/PythonEtcdClient"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/etebase/default.nix b/pkgs/development/python-modules/etebase/default.nix index aa1d71af9ada..51bf66e6ddac 100644 --- a/pkgs/development/python-modules/etebase/default.nix +++ b/pkgs/development/python-modules/etebase/default.nix @@ -72,10 +72,10 @@ buildPythonPackage rec { inherit (nixosTests) etebase-server; }; - meta = with lib; { + meta = { homepage = "https://www.etebase.com/"; description = "Python client library for Etebase"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/etelemetry/default.nix b/pkgs/development/python-modules/etelemetry/default.nix index 40322790665b..c3e837207ea9 100644 --- a/pkgs/development/python-modules/etelemetry/default.nix +++ b/pkgs/development/python-modules/etelemetry/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "etelemetry.config" ]; - meta = with lib; { + meta = { description = "Lightweight python client to communicate with the etelemetry server"; homepage = "https://github.com/sensein/etelemetry-client"; changelog = "https://github.com/sensein/etelemetry-client/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eternalegypt/default.nix b/pkgs/development/python-modules/eternalegypt/default.nix index 11624ebade7a..914d51bb2bc5 100644 --- a/pkgs/development/python-modules/eternalegypt/default.nix +++ b/pkgs/development/python-modules/eternalegypt/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "eternalegypt" ]; - meta = with lib; { + meta = { description = "Python API for Netgear LTE modems"; homepage = "https://github.com/amelchio/eternalegypt"; changelog = "https://github.com/amelchio/eternalegypt/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/etesync/default.nix b/pkgs/development/python-modules/etesync/default.nix index a871f3fb3a91..e1310b1ef37d 100644 --- a/pkgs/development/python-modules/etesync/default.nix +++ b/pkgs/development/python-modules/etesync/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pytest tests/test_crypto.py ''; - meta = with lib; { + meta = { homepage = "https://www.etesync.com/"; description = "Python API to interact with an EteSync server"; - license = licenses.lgpl3; - maintainers = with maintainers; [ valodim ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ valodim ]; }; } diff --git a/pkgs/development/python-modules/eth-rlp/default.nix b/pkgs/development/python-modules/eth-rlp/default.nix index 2b2d6e3597d6..4626189be48c 100644 --- a/pkgs/development/python-modules/eth-rlp/default.nix +++ b/pkgs/development/python-modules/eth-rlp/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "test_install_local_wheel" ]; - meta = with lib; { + meta = { description = "RLP definitions for common Ethereum objects"; homepage = "https://github.com/ethereum/eth-rlp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eth-utils/default.nix b/pkgs/development/python-modules/eth-utils/default.nix index 556a2df20827..1b3815a5d9f1 100644 --- a/pkgs/development/python-modules/eth-utils/default.nix +++ b/pkgs/development/python-modules/eth-utils/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { disabledTests = [ "test_install_local_wheel" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ethereum/eth-utils/blob/${src.rev}/docs/release_notes.rst"; description = "Common utility functions for codebases which interact with ethereum"; homepage = "https://github.com/ethereum/eth-utils"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/development/python-modules/ethtool/default.nix b/pkgs/development/python-modules/ethtool/default.nix index d4b522b12b7c..e261d6fc917e 100644 --- a/pkgs/development/python-modules/ethtool/default.nix +++ b/pkgs/development/python-modules/ethtool/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/fedora-python/python-ethtool/blob/${src.rev}/CHANGES.rst"; description = "Python bindings for the ethtool kernel interface"; homepage = "https://github.com/fedora-python/python-ethtool"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/python-modules/etils/default.nix b/pkgs/development/python-modules/etils/default.nix index 8d87ec860f53..c29bcfd8814f 100644 --- a/pkgs/development/python-modules/etils/default.nix +++ b/pkgs/development/python-modules/etils/default.nix @@ -126,11 +126,11 @@ buildPythonPackage rec { doCheck = false; # error: infinite recursion encountered - meta = with lib; { + meta = { changelog = "https://github.com/google/etils/blob/v${version}/CHANGELOG.md"; description = "Collection of eclectic utils"; homepage = "https://github.com/google/etils"; - license = licenses.asl20; - maintainers = with maintainers; [ mcwitt ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mcwitt ]; }; } diff --git a/pkgs/development/python-modules/etuples/default.nix b/pkgs/development/python-modules/etuples/default.nix index cbdcba528193..a0f982d5124d 100644 --- a/pkgs/development/python-modules/etuples/default.nix +++ b/pkgs/development/python-modules/etuples/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "etuples" ]; - meta = with lib; { + meta = { description = "Python S-expression emulation using tuple-like objects"; homepage = "https://github.com/pythological/etuples"; changelog = "https://github.com/pythological/etuples/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ Etjean ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Etjean ]; }; } diff --git a/pkgs/development/python-modules/euclid3/default.nix b/pkgs/development/python-modules/euclid3/default.nix index f929b4b7c0a1..2f538902f372 100644 --- a/pkgs/development/python-modules/euclid3/default.nix +++ b/pkgs/development/python-modules/euclid3/default.nix @@ -15,11 +15,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "euclid3" ]; - meta = with lib; { + meta = { description = "2D and 3D vector, matrix, quaternion and geometry module"; homepage = "http://code.google.com/p/pyeuclid/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ jfly matusf ]; diff --git a/pkgs/development/python-modules/eufylife-ble-client/default.nix b/pkgs/development/python-modules/eufylife-ble-client/default.nix index 5799c287c52f..778f774f08e3 100644 --- a/pkgs/development/python-modules/eufylife-ble-client/default.nix +++ b/pkgs/development/python-modules/eufylife-ble-client/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "eufylife_ble_client" ]; - meta = with lib; { + meta = { description = "Module for parsing data from Eufy smart scales"; homepage = "https://github.com/bdr99/eufylife-ble-client"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/evaluate/default.nix b/pkgs/development/python-modules/evaluate/default.nix index c57d7449f9f7..db3b85c07d68 100644 --- a/pkgs/development/python-modules/evaluate/default.nix +++ b/pkgs/development/python-modules/evaluate/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "evaluate" ]; - meta = with lib; { + meta = { homepage = "https://huggingface.co/docs/evaluate/index"; description = "Easily evaluate machine learning models and datasets"; changelog = "https://github.com/huggingface/evaluate/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; mainProgram = "evaluate-cli"; }; } diff --git a/pkgs/development/python-modules/evdev/default.nix b/pkgs/development/python-modules/evdev/default.nix index 74bdd90f7c2c..51ba3950b81b 100644 --- a/pkgs/development/python-modules/evdev/default.nix +++ b/pkgs/development/python-modules/evdev/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "evdev" ]; - meta = with lib; { + meta = { description = "Provides bindings to the generic input event interface in Linux"; homepage = "https://python-evdev.readthedocs.io/"; changelog = "https://github.com/gvalkov/python-evdev/blob/v${version}/docs/changelog.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/eve/default.nix b/pkgs/development/python-modules/eve/default.nix index 8e1157597db2..1fd6276282ad 100644 --- a/pkgs/development/python-modules/eve/default.nix +++ b/pkgs/development/python-modules/eve/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { # Tests call a running mongodb instance doCheck = false; - meta = with lib; { + meta = { description = "Open source Python REST API framework designed for human beings"; homepage = "https://python-eve.org/"; changelog = "https://github.com/pyeve/eve/blob/${src.tag}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eventkit/default.nix b/pkgs/development/python-modules/eventkit/default.nix index 764c1a1ee1e2..64416e0e7b78 100644 --- a/pkgs/development/python-modules/eventkit/default.nix +++ b/pkgs/development/python-modules/eventkit/default.nix @@ -17,10 +17,10 @@ buildPythonPackage { propagatedBuildInputs = [ numpy ]; - meta = with lib; { + meta = { homepage = "https://github.com/erdewit/eventkit"; description = "Event-driven data pipelines"; - license = licenses.bsd2; - maintainers = with maintainers; [ cab404 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ cab404 ]; }; } diff --git a/pkgs/development/python-modules/eventlet/default.nix b/pkgs/development/python-modules/eventlet/default.nix index 2a652cfe73f6..1f411adefc66 100644 --- a/pkgs/development/python-modules/eventlet/default.nix +++ b/pkgs/development/python-modules/eventlet/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "eventlet" ]; - meta = with lib; { + meta = { changelog = "https://github.com/eventlet/eventlet/blob/v${version}/NEWS"; description = "Concurrent networking library for Python"; homepage = "https://github.com/eventlet/eventlet/"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/events/default.nix b/pkgs/development/python-modules/events/default.nix index e2eafe01a308..e08f69476721 100644 --- a/pkgs/development/python-modules/events/default.nix +++ b/pkgs/development/python-modules/events/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { enabledTestPaths = [ "events/tests/tests.py" ]; - meta = with lib; { + meta = { description = "Bringing the elegance of C# EventHanlder to Python"; homepage = "https://events.readthedocs.org"; changelog = "https://github.com/pyeve/events/blob/v0.5/CHANGES"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/evohome-async/default.nix b/pkgs/development/python-modules/evohome-async/default.nix index 6cc7db132743..21be48298c5e 100644 --- a/pkgs/development/python-modules/evohome-async/default.nix +++ b/pkgs/development/python-modules/evohome-async/default.nix @@ -60,12 +60,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "evohomeasync2" ]; - meta = with lib; { + meta = { description = "Python client for connecting to Honeywell's TCC RESTful API"; homepage = "https://github.com/zxdavb/evohome-async"; changelog = "https://github.com/zxdavb/evohome-async/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "evo-client"; }; } diff --git a/pkgs/development/python-modules/evolutionhttp/default.nix b/pkgs/development/python-modules/evolutionhttp/default.nix index 99783fd8a6e5..71114014c632 100644 --- a/pkgs/development/python-modules/evolutionhttp/default.nix +++ b/pkgs/development/python-modules/evolutionhttp/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "evolutionhttp" ]; - meta = with lib; { + meta = { description = "HTTP client for controlling a Bryant Evolution HVAC system"; homepage = "https://github.com/danielsmyers/evolutionhttp"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/evtx/default.nix b/pkgs/development/python-modules/evtx/default.nix index b286bfd60ba4..0d89859be9fc 100644 --- a/pkgs/development/python-modules/evtx/default.nix +++ b/pkgs/development/python-modules/evtx/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "evtx" ]; - meta = with lib; { + meta = { description = "Bindings for evtx"; homepage = "https://github.com/omerbenamram/pyevtx-rs"; changelog = "https://github.com/omerbenamram/pyevtx-rs/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/exceptiongroup/default.nix b/pkgs/development/python-modules/exceptiongroup/default.nix index 8fb63dd1d074..2e8cdbff1c70 100644 --- a/pkgs/development/python-modules/exceptiongroup/default.nix +++ b/pkgs/development/python-modules/exceptiongroup/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "exceptiongroup" ]; - meta = with lib; { + meta = { description = "Backport of PEP 654 (exception groups)"; homepage = "https://github.com/agronholm/exceptiongroup"; changelog = "https://github.com/agronholm/exceptiongroup/blob/${version}/CHANGES.rst"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/exchangelib/default.nix b/pkgs/development/python-modules/exchangelib/default.nix index 43aa75b82a99..5631f18a3348 100644 --- a/pkgs/development/python-modules/exchangelib/default.nix +++ b/pkgs/development/python-modules/exchangelib/default.nix @@ -78,10 +78,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "exchangelib" ]; - meta = with lib; { + meta = { description = "Client for Microsoft Exchange Web Services (EWS)"; homepage = "https://github.com/ecederstrand/exchangelib"; changelog = "https://github.com/ecederstrand/exchangelib/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/exdown/default.nix b/pkgs/development/python-modules/exdown/default.nix index 9221ae0a1693..506d69a41a19 100644 --- a/pkgs/development/python-modules/exdown/default.nix +++ b/pkgs/development/python-modules/exdown/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "exdown" ]; - meta = with lib; { + meta = { description = "Extract code blocks from markdown"; homepage = "https://github.com/nschloe/exdown"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/execnb/default.nix b/pkgs/development/python-modules/execnb/default.nix index ab57e3323858..7567ac4e402d 100644 --- a/pkgs/development/python-modules/execnb/default.nix +++ b/pkgs/development/python-modules/execnb/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "execnb" ]; - meta = with lib; { + meta = { description = "Execute a jupyter notebook, fast, without needing jupyter"; homepage = "https://github.com/fastai/execnb"; changelog = "https://github.com/fastai/execnb/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ rxiao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rxiao ]; mainProgram = "exec_nb"; }; } diff --git a/pkgs/development/python-modules/executing/default.nix b/pkgs/development/python-modules/executing/default.nix index edf61a807868..840ee16d0b66 100644 --- a/pkgs/development/python-modules/executing/default.nix +++ b/pkgs/development/python-modules/executing/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "executing" ]; - meta = with lib; { + meta = { description = "Get information about what a frame is currently doing, particularly the AST node being executed"; homepage = "https://github.com/alexmojaki/executing"; - license = licenses.mit; - maintainers = with maintainers; [ renatoGarcia ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ renatoGarcia ]; }; } diff --git a/pkgs/development/python-modules/exif/default.nix b/pkgs/development/python-modules/exif/default.nix index 129e6e2863f3..46e03f663bdf 100644 --- a/pkgs/development/python-modules/exif/default.nix +++ b/pkgs/development/python-modules/exif/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "exif" ]; - meta = with lib; { + meta = { description = "Read and modify image EXIF metadata using Python"; homepage = "https://gitlab.com/TNThieding/exif"; changelog = "https://gitlab.com/TNThieding/exif/-/blob/v${version}/docs/release_notes.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dnr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dnr ]; }; } diff --git a/pkgs/development/python-modules/exifread/default.nix b/pkgs/development/python-modules/exifread/default.nix index 681730794e01..2a68c6a25923 100644 --- a/pkgs/development/python-modules/exifread/default.nix +++ b/pkgs/development/python-modules/exifread/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { build-system = [ setuptools ]; - meta = with lib; { + meta = { description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files"; mainProgram = "EXIF.py"; homepage = "https://github.com/ianare/exif-py"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/exitcode/default.nix b/pkgs/development/python-modules/exitcode/default.nix index 7ce60deaa335..22aeeed1e5ce 100644 --- a/pkgs/development/python-modules/exitcode/default.nix +++ b/pkgs/development/python-modules/exitcode/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "exitcode" ]; - meta = with lib; { + meta = { description = "Preferred system exit codes as defined by sysexits.h"; homepage = "https://github.com/rumpelsepp/exitcode"; changelog = "https://github.com/rumpelsepp/exitcode/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/expandvars/default.nix b/pkgs/development/python-modules/expandvars/default.nix index 63533d7f8a0c..444491175db4 100644 --- a/pkgs/development/python-modules/expandvars/default.nix +++ b/pkgs/development/python-modules/expandvars/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Expand system variables Unix style"; homepage = "https://github.com/sayanarijit/expandvars"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/expects/default.nix b/pkgs/development/python-modules/expects/default.nix index b2115b67f000..bc97ea19f76c 100644 --- a/pkgs/development/python-modules/expects/default.nix +++ b/pkgs/development/python-modules/expects/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "expects" ]; - meta = with lib; { + meta = { description = "Expressive and extensible TDD/BDD assertion library for Python"; homepage = "https://expects.readthedocs.io/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/expiring-dict/default.nix b/pkgs/development/python-modules/expiring-dict/default.nix index eade04f7d8b7..ce39c7151918 100644 --- a/pkgs/development/python-modules/expiring-dict/default.nix +++ b/pkgs/development/python-modules/expiring-dict/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "expiring_dict" ]; - meta = with lib; { + meta = { description = "Python dict with TTL support for auto-expiring caches"; homepage = "https://github.com/dparker2/py-expiring-dict"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/expiringdict/default.nix b/pkgs/development/python-modules/expiringdict/default.nix index fea17b36496c..117c3fbb0465 100644 --- a/pkgs/development/python-modules/expiringdict/default.nix +++ b/pkgs/development/python-modules/expiringdict/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "expiringdict" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mailgun/expiringdict/blob/${src.rev}/CHANGELOG.rst"; description = "Dictionary with auto-expiring values for caching purposes"; homepage = "https://github.com/mailgun/expiringdict"; - license = licenses.asl20; - maintainers = with maintainers; [ gravndal ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gravndal ]; }; } diff --git a/pkgs/development/python-modules/exrex/default.nix b/pkgs/development/python-modules/exrex/default.nix index 7d71c84d483d..3fe8c066783b 100644 --- a/pkgs/development/python-modules/exrex/default.nix +++ b/pkgs/development/python-modules/exrex/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "exrex" ]; - meta = with lib; { + meta = { description = "Irregular methods on regular expressions"; homepage = "https://github.com/asciimoo/exrex"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/extension-helpers/default.nix b/pkgs/development/python-modules/extension-helpers/default.nix index ba036029682a..55b0c47fdc86 100644 --- a/pkgs/development/python-modules/extension-helpers/default.nix +++ b/pkgs/development/python-modules/extension-helpers/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { "test_write_if_different" ]; - meta = with lib; { + meta = { description = "Helpers to assist with building Python packages with compiled C/Cython extensions"; homepage = "https://github.com/astropy/extension-helpers"; changelog = "https://github.com/astropy/extension-helpers/blob/${src.tag}/CHANGES.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/extract-msg/default.nix b/pkgs/development/python-modules/extract-msg/default.nix index 7e9f4cd1d098..89f5e3ed885b 100644 --- a/pkgs/development/python-modules/extract-msg/default.nix +++ b/pkgs/development/python-modules/extract-msg/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { enabledTestPaths = [ "extract_msg_tests/*.py" ]; - meta = with lib; { + meta = { description = "Extracts emails and attachments saved in Microsoft Outlook's .msg files"; homepage = "https://github.com/TeamMsgExtractor/msg-extractor"; changelog = "https://github.com/TeamMsgExtractor/msg-extractor/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/extruct/default.nix b/pkgs/development/python-modules/extruct/default.nix index eb48a31b9f59..6b8718b46bbe 100644 --- a/pkgs/development/python-modules/extruct/default.nix +++ b/pkgs/development/python-modules/extruct/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { "test_umicroformat" ]; - meta = with lib; { + meta = { description = "Extract embedded metadata from HTML markup"; mainProgram = "extruct"; homepage = "https://github.com/scrapinghub/extruct"; changelog = "https://github.com/scrapinghub/extruct/blob/v${version}/HISTORY.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/eyed3/default.nix b/pkgs/development/python-modules/eyed3/default.nix index 386a978d64e1..033ead543807 100644 --- a/pkgs/development/python-modules/eyed3/default.nix +++ b/pkgs/development/python-modules/eyed3/default.nix @@ -33,14 +33,14 @@ buildPythonPackage rec { # https://github.com/nicfit/eyeD3/blob/103198e265e3279384f35304e8218be6717c2976/Makefile#L97 doCheck = false; - meta = with lib; { + meta = { description = "Python module and command line program for processing ID3 tags"; mainProgram = "eyeD3"; downloadPage = "https://github.com/nicfit/eyeD3"; homepage = "https://eyed3.nicfit.net/"; - license = licenses.gpl2; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; longDescription = '' eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play diff --git a/pkgs/development/python-modules/ezdxf/default.nix b/pkgs/development/python-modules/ezdxf/default.nix index 5f69dcdb4723..fdc2702fc878 100644 --- a/pkgs/development/python-modules/ezdxf/default.nix +++ b/pkgs/development/python-modules/ezdxf/default.nix @@ -68,12 +68,12 @@ buildPythonPackage rec { "ezdxf.addons" ]; - meta = with lib; { + meta = { description = "Python package to read and write DXF drawings (interface to the DXF file format)"; mainProgram = "ezdxf"; homepage = "https://github.com/mozman/ezdxf/"; - license = licenses.mit; - maintainers = with maintainers; [ hodapp ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hodapp ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/f5-icontrol-rest/default.nix b/pkgs/development/python-modules/f5-icontrol-rest/default.nix index 2ea25246e63a..b09670e69817 100644 --- a/pkgs/development/python-modules/f5-icontrol-rest/default.nix +++ b/pkgs/development/python-modules/f5-icontrol-rest/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "icontrol" ]; - meta = with lib; { + meta = { description = "F5 BIG-IP iControl REST API client"; homepage = "https://github.com/F5Networks/f5-icontrol-rest-python"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/f5-sdk/default.nix b/pkgs/development/python-modules/f5-sdk/default.nix index 304f1daabbfb..954ff1aba1a8 100644 --- a/pkgs/development/python-modules/f5-sdk/default.nix +++ b/pkgs/development/python-modules/f5-sdk/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "f5" ]; - meta = with lib; { + meta = { description = "F5 Networks Python SDK"; homepage = "https://github.com/F5Networks/f5-common-python"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/faadelays/default.nix b/pkgs/development/python-modules/faadelays/default.nix index a0d13daecdca..1a79cf325e58 100644 --- a/pkgs/development/python-modules/faadelays/default.nix +++ b/pkgs/development/python-modules/faadelays/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "faadelays" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ntilley905/faadelays/releases/tag/v${version}"; description = "Python package to retrieve FAA airport status"; homepage = "https://github.com/ntilley905/faadelays"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/face-recognition/default.nix b/pkgs/development/python-modules/face-recognition/default.nix index 6385b51b936c..a2e20bf51964 100644 --- a/pkgs/development/python-modules/face-recognition/default.nix +++ b/pkgs/development/python-modules/face-recognition/default.nix @@ -40,8 +40,8 @@ buildPythonPackage rec { # Disables tests when running with cuda due to https://github.com/NixOS/nixpkgs/issues/225912 doCheck = !config.cudaSupport; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://github.com/ageitgey/face_recognition"; maintainers = [ ]; description = "World's simplest facial recognition api for Python and the command line"; diff --git a/pkgs/development/python-modules/face-recognition/models.nix b/pkgs/development/python-modules/face-recognition/models.nix index cc7dbe6481ad..40eb6ad5bbe2 100644 --- a/pkgs/development/python-modules/face-recognition/models.nix +++ b/pkgs/development/python-modules/face-recognition/models.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "face_recognition_models" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ageitgey/face_recognition_models"; - license = licenses.cc0; + license = lib.licenses.cc0; maintainers = [ ]; description = "Trained models for the face_recognition python library"; }; diff --git a/pkgs/development/python-modules/face/default.nix b/pkgs/development/python-modules/face/default.nix index 8bd757074f6d..537c17b186a9 100644 --- a/pkgs/development/python-modules/face/default.nix +++ b/pkgs/development/python-modules/face/default.nix @@ -34,14 +34,14 @@ buildPythonPackage rec { "test_module_shortcut" ]; - meta = with lib; { + meta = { description = "Command-line interface parser and framework"; longDescription = '' A command-line interface parser and framework, friendly for users, full-featured for developers. ''; homepage = "https://github.com/mahmoud/face"; - license = licenses.bsd3; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/factory-boy/default.nix b/pkgs/development/python-modules/factory-boy/default.nix index 0f64af0a7992..7a6b03f60ad3 100644 --- a/pkgs/development/python-modules/factory-boy/default.nix +++ b/pkgs/development/python-modules/factory-boy/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "factory" ]; - meta = with lib; { + meta = { description = "Python package to create factories for complex objects"; homepage = "https://github.com/rbarrois/factory_boy"; changelog = "https://github.com/FactoryBoy/factory_boy/blob/${version}/docs/changelog.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fairscale/default.nix b/pkgs/development/python-modules/fairscale/default.nix index 8c40ab74dda5..9dbcb27963a7 100644 --- a/pkgs/development/python-modules/fairscale/default.nix +++ b/pkgs/development/python-modules/fairscale/default.nix @@ -61,16 +61,16 @@ buildPythonPackage { pythonImportsCheck = [ "fairscale" ]; - meta = with lib; { + meta = { description = "PyTorch extensions for high performance and large scale training"; mainProgram = "wgit"; homepage = "https://github.com/facebookresearch/fairscale"; changelog = "https://github.com/facebookresearch/fairscale/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 bsd3 ]; - maintainers = with maintainers; [ happysalada ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/fairseq/default.nix b/pkgs/development/python-modules/fairseq/default.nix index 5db576e5e9f0..de769ab91614 100644 --- a/pkgs/development/python-modules/fairseq/default.nix +++ b/pkgs/development/python-modules/fairseq/default.nix @@ -113,13 +113,13 @@ buildPythonPackage rec { "test_dataclass_utils.py" ]; - meta = with lib; { + meta = { description = "Facebook AI Research Sequence-to-Sequence Toolkit"; homepage = "https://github.com/pytorch/fairseq"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; - maintainers = with maintainers; [ happysalada ]; + maintainers = with lib.maintainers; [ happysalada ]; broken = true; # requires numpy1 which is incompatible with sacrebleu depending on numpy2 }; } diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix index 6107ff2350e4..a8e2e565de9a 100644 --- a/pkgs/development/python-modules/faker/default.nix +++ b/pkgs/development/python-modules/faker/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/providers/test_ssn.py" ]; pythonImportsCheck = [ "faker" ]; - meta = with lib; { + meta = { description = "Python library for generating fake user data"; mainProgram = "faker"; homepage = "http://faker.rtfd.org"; - license = licenses.mit; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovek323 ]; }; } diff --git a/pkgs/development/python-modules/fakeredis/default.nix b/pkgs/development/python-modules/fakeredis/default.nix index 99893382c7b9..3d66424b51f2 100644 --- a/pkgs/development/python-modules/fakeredis/default.nix +++ b/pkgs/development/python-modules/fakeredis/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { redisTestPort=6390 ''; - meta = with lib; { + meta = { description = "Fake implementation of Redis API"; homepage = "https://github.com/dsoftwareinc/fakeredis-py"; changelog = "https://github.com/cunla/fakeredis-py/releases/tag/${src.tag}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/falcon/default.nix b/pkgs/development/python-modules/falcon/default.nix index 2e6e367fb1a3..6ea0703e6ad5 100644 --- a/pkgs/development/python-modules/falcon/default.nix +++ b/pkgs/development/python-modules/falcon/default.nix @@ -88,10 +88,10 @@ buildPythonPackage rec { "tests/asgi/test_cythonized_asgi.py" ]; - meta = with lib; { + meta = { changelog = "https://falcon.readthedocs.io/en/stable/changes/${version}.html"; description = "Ultra-reliable, fast ASGI+WSGI framework for building data plane APIs at scale"; homepage = "https://falconframework.org/"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix b/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix index b30decb96819..13581602bc2c 100644 --- a/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix +++ b/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_incorrect_version_requested" ]; - meta = with lib; { + meta = { description = "Collection of Faraday agent parameters types"; homepage = "https://github.com/infobyte/faraday_agent_parameters_types"; changelog = "https://github.com/infobyte/faraday_agent_parameters_types/blob/${version}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/faraday-plugins/default.nix b/pkgs/development/python-modules/faraday-plugins/default.nix index 58f7a0e3f984..cf2304f728d9 100644 --- a/pkgs/development/python-modules/faraday-plugins/default.nix +++ b/pkgs/development/python-modules/faraday-plugins/default.nix @@ -72,12 +72,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "faraday_plugins" ]; - meta = with lib; { + meta = { description = "Security tools report parsers for Faraday"; homepage = "https://github.com/infobyte/faraday_plugins"; changelog = "https://github.com/infobyte/faraday_plugins/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "faraday-plugins"; }; } diff --git a/pkgs/development/python-modules/farama-notifications/default.nix b/pkgs/development/python-modules/farama-notifications/default.nix index c2b4e7b4e1ac..1d9b81af6fe9 100644 --- a/pkgs/development/python-modules/farama-notifications/default.nix +++ b/pkgs/development/python-modules/farama-notifications/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "farama_notifications" ]; - meta = with lib; { + meta = { description = "Allows for providing notifications on import to all Farama Packages"; homepage = "https://github.com/Farama-Foundation/Farama-Notifications"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/fast-histogram/default.nix b/pkgs/development/python-modules/fast-histogram/default.nix index 83124c0d62b3..44b84969b2de 100644 --- a/pkgs/development/python-modules/fast-histogram/default.nix +++ b/pkgs/development/python-modules/fast-histogram/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "test_1d_compare_with_numpy" ]; - meta = with lib; { + meta = { description = "Fast 1D and 2D histogram functions in Python"; homepage = "https://github.com/astrofrog/fast-histogram"; changelog = "https://github.com/astrofrog/fast-histogram/blob/v${version}/CHANGES.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ ifurther ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ifurther ]; }; } diff --git a/pkgs/development/python-modules/fastai/default.nix b/pkgs/development/python-modules/fastai/default.nix index cb800b7e522c..117c3d36d07b 100644 --- a/pkgs/development/python-modules/fastai/default.nix +++ b/pkgs/development/python-modules/fastai/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "fastai" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fastai/fastai"; description = "Fastai deep learning library"; mainProgram = "configure_accelerate"; changelog = "https://github.com/fastai/fastai/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ rxiao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rxiao ]; }; } diff --git a/pkgs/development/python-modules/fastapi-cli/default.nix b/pkgs/development/python-modules/fastapi-cli/default.nix index b40e8800e684..aee604b738df 100644 --- a/pkgs/development/python-modules/fastapi-cli/default.nix +++ b/pkgs/development/python-modules/fastapi-cli/default.nix @@ -56,12 +56,12 @@ let pythonImportsCheck = [ "fastapi_cli" ]; - meta = with lib; { + meta = { description = "Run and manage FastAPI apps from the command line with FastAPI CLI"; homepage = "https://github.com/tiangolo/fastapi-cli"; changelog = "https://github.com/tiangolo/fastapi-cli/releases/tag/${src.tag}"; mainProgram = "fastapi"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # This package provides a `fastapi`-executable that is in conflict with the one from # python3Packages.fastapi. Because this package is primarily used for the purpose of diff --git a/pkgs/development/python-modules/fastapi-mail/default.nix b/pkgs/development/python-modules/fastapi-mail/default.nix index 4311c27f9bdb..a1eb8bfdf16a 100644 --- a/pkgs/development/python-modules/fastapi-mail/default.nix +++ b/pkgs/development/python-modules/fastapi-mail/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastapi_mail" ]; - meta = with lib; { + meta = { description = "Module for sending emails and attachments"; homepage = "https://github.com/sabuhish/fastapi-mail"; changelog = "https://github.com/sabuhish/fastapi-mail/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fastapi-sso/default.nix b/pkgs/development/python-modules/fastapi-sso/default.nix index 46e0788ff2bf..7c12309312ce 100644 --- a/pkgs/development/python-modules/fastapi-sso/default.nix +++ b/pkgs/development/python-modules/fastapi-sso/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastapi_sso" ]; - meta = with lib; { + meta = { description = "FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via Microsoft Office 365 Account"; homepage = "https://github.com/tomasvotava/fastapi-sso"; changelog = "https://github.com/tomasvotava/fastapi-sso/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fastapi/default.nix b/pkgs/development/python-modules/fastapi/default.nix index 77246fb7eb78..10e7b59fde18 100644 --- a/pkgs/development/python-modules/fastapi/default.nix +++ b/pkgs/development/python-modules/fastapi/default.nix @@ -135,11 +135,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastapi" ]; - meta = with lib; { + meta = { changelog = "https://github.com/fastapi/fastapi/releases/tag/${src.tag}"; description = "Web framework for building APIs"; homepage = "https://github.com/fastapi/fastapi"; - license = licenses.mit; - maintainers = with maintainers; [ wd15 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wd15 ]; }; } diff --git a/pkgs/development/python-modules/fastavro/default.nix b/pkgs/development/python-modules/fastavro/default.nix index 64b9eff1723c..f19380ca73cf 100644 --- a/pkgs/development/python-modules/fastavro/default.nix +++ b/pkgs/development/python-modules/fastavro/default.nix @@ -68,12 +68,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastavro" ]; - meta = with lib; { + meta = { description = "Fast read/write of AVRO files"; mainProgram = "fastavro"; homepage = "https://github.com/fastavro/fastavro"; changelog = "https://github.com/fastavro/fastavro/blob/${src.tag}/ChangeLog"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/fastbencode/default.nix b/pkgs/development/python-modules/fastbencode/default.nix index b56aca8ff290..f6dea8f1a33a 100644 --- a/pkgs/development/python-modules/fastbencode/default.nix +++ b/pkgs/development/python-modules/fastbencode/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Fast implementation of bencode"; homepage = "https://github.com/breezy-team/fastbencode"; changelog = "https://github.com/breezy-team/fastbencode/releases/tag/v${version}"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fastcache/default.nix b/pkgs/development/python-modules/fastcache/default.nix index 7ed356dcaae4..479b7bb4c77b 100644 --- a/pkgs/development/python-modules/fastcache/default.nix +++ b/pkgs/development/python-modules/fastcache/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastcache" ]; - meta = with lib; { + meta = { description = "C implementation of Python3 lru_cache"; homepage = "https://github.com/pbrady/fastcache"; changelog = "https://github.com/pbrady/fastcache/blob/v${version}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/fastcore/default.nix b/pkgs/development/python-modules/fastcore/default.nix index af729a73bacb..f5c7b74adfc0 100644 --- a/pkgs/development/python-modules/fastcore/default.nix +++ b/pkgs/development/python-modules/fastcore/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastcore" ]; - meta = with lib; { + meta = { description = "Python module for Fast AI"; homepage = "https://github.com/fastai/fastcore"; changelog = "https://github.com/fastai/fastcore/blob/${src.tag}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fastdiff/default.nix b/pkgs/development/python-modules/fastdiff/default.nix index 6d4bca13fc24..fa48eb1dc657 100644 --- a/pkgs/development/python-modules/fastdiff/default.nix +++ b/pkgs/development/python-modules/fastdiff/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastdiff" ]; - meta = with lib; { + meta = { description = "Fast native implementation of diff algorithm with a pure Python fallback"; homepage = "https://github.com/syrusakbary/fastdiff"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # resulting compiled object panics at import broken = stdenv.hostPlatform.is32bit; diff --git a/pkgs/development/python-modules/fastdownload/default.nix b/pkgs/development/python-modules/fastdownload/default.nix index 363230edcf81..ac32358a64e8 100644 --- a/pkgs/development/python-modules/fastdownload/default.nix +++ b/pkgs/development/python-modules/fastdownload/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "fastdownload" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fastai/fastdownload"; description = "Easily download, verify, and extract archives"; - license = licenses.asl20; - maintainers = with maintainers; [ rxiao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rxiao ]; }; } diff --git a/pkgs/development/python-modules/fastdtw/default.nix b/pkgs/development/python-modules/fastdtw/default.nix index 5fa542831a3d..2434ac312b9a 100644 --- a/pkgs/development/python-modules/fastdtw/default.nix +++ b/pkgs/development/python-modules/fastdtw/default.nix @@ -48,14 +48,14 @@ buildPythonPackage rec { popd ''; - meta = with lib; { + meta = { description = "Python implementation of FastDTW (Dynamic Time Warping)"; longDescription = '' FastDTW is an approximate Dynamic Time Warping (DTW) algorithm that provides optimal or near-optimal alignments with an O(N) time and memory complexity. ''; homepage = "https://github.com/slaypni/fastdtw"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fastecdsa/default.nix b/pkgs/development/python-modules/fastecdsa/default.nix index 58f80c336ab3..ae5535e86e71 100644 --- a/pkgs/development/python-modules/fastecdsa/default.nix +++ b/pkgs/development/python-modules/fastecdsa/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastecdsa" ]; - meta = with lib; { + meta = { description = "Fast elliptic curve digital signatures"; homepage = "https://github.com/AntonKueltz/fastecdsa"; changelog = "https://github.com/AntonKueltz/fastecdsa/blob/v${version}/CHANGELOG.md"; - license = licenses.unlicense; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/fasteners/default.nix b/pkgs/development/python-modules/fasteners/default.nix index f61cb7275e61..9e17b5720ea9 100644 --- a/pkgs/development/python-modules/fasteners/default.nix +++ b/pkgs/development/python-modules/fasteners/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/" ]; - meta = with lib; { + meta = { description = "Module that provides useful locks"; homepage = "https://github.com/harlowja/fasteners"; changelog = "https://github.com/harlowja/fasteners/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fastentrypoints/default.nix b/pkgs/development/python-modules/fastentrypoints/default.nix index 1c6de8a70c8d..44e9fe52cc4a 100644 --- a/pkgs/development/python-modules/fastentrypoints/default.nix +++ b/pkgs/development/python-modules/fastentrypoints/default.nix @@ -14,11 +14,11 @@ buildPythonPackage rec { sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z"; }; - meta = with lib; { + meta = { description = "Makes entry_points specified in setup.py load more quickly"; mainProgram = "fastep"; homepage = "https://github.com/ninjaaron/fast-entry_points"; - license = licenses.bsd2; - maintainers = with maintainers; [ nixy ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nixy ]; }; } diff --git a/pkgs/development/python-modules/faster-whisper/default.nix b/pkgs/development/python-modules/faster-whisper/default.nix index babb0f44cc68..8952cc49e4e1 100644 --- a/pkgs/development/python-modules/faster-whisper/default.nix +++ b/pkgs/development/python-modules/faster-whisper/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { changelog = "https://github.com/SYSTRAN/faster-whisper/releases/tag/${src.tag}"; description = "Faster Whisper transcription with CTranslate2"; homepage = "https://github.com/SYSTRAN/faster-whisper"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/fastimport/default.nix b/pkgs/development/python-modules/fastimport/default.nix index 93ce891c7d95..fb1fa6bfe194 100644 --- a/pkgs/development/python-modules/fastimport/default.nix +++ b/pkgs/development/python-modules/fastimport/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastimport" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jelmer/python-fastimport"; description = "VCS fastimport/fastexport parser"; - maintainers = with maintainers; [ koral ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ koral ]; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/python-modules/fastjsonschema/default.nix b/pkgs/development/python-modules/fastjsonschema/default.nix index db73ff4710d6..98111bbaa720 100644 --- a/pkgs/development/python-modules/fastjsonschema/default.nix +++ b/pkgs/development/python-modules/fastjsonschema/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastjsonschema" ]; - meta = with lib; { + meta = { description = "JSON schema validator for Python"; downloadPage = "https://github.com/horejsek/python-fastjsonschema"; homepage = "https://horejsek.github.io/python-fastjsonschema/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fastnumbers/default.nix b/pkgs/development/python-modules/fastnumbers/default.nix index 05fa830c1421..78470e1bdd44 100644 --- a/pkgs/development/python-modules/fastnumbers/default.nix +++ b/pkgs/development/python-modules/fastnumbers/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastnumbers" ]; - meta = with lib; { + meta = { description = "Python module for number conversion"; homepage = "https://github.com/SethMMorton/fastnumbers"; changelog = "https://github.com/SethMMorton/fastnumbers/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fastparquet/default.nix b/pkgs/development/python-modules/fastparquet/default.nix index 930498cc5a6e..3cff81f82de8 100644 --- a/pkgs/development/python-modules/fastparquet/default.nix +++ b/pkgs/development/python-modules/fastparquet/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastparquet" ]; - meta = with lib; { + meta = { description = "Implementation of the parquet format"; homepage = "https://github.com/dask/fastparquet"; changelog = "https://github.com/dask/fastparquet/blob/${version}/docs/source/releasenotes.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/fastpbkdf2/default.nix b/pkgs/development/python-modules/fastpbkdf2/default.nix index 2d6d68a3842d..c81240a916cc 100644 --- a/pkgs/development/python-modules/fastpbkdf2/default.nix +++ b/pkgs/development/python-modules/fastpbkdf2/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { ]; propagatedNativeBuildInputs = [ cffi ]; - meta = with lib; { + meta = { homepage = "https://github.com/Ayrx/python-fastpbkdf2"; description = "Python bindings for fastpbkdf2"; - license = licenses.bsd3; - maintainers = with maintainers; [ jqueiroz ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jqueiroz ]; }; } diff --git a/pkgs/development/python-modules/fastprogress/default.nix b/pkgs/development/python-modules/fastprogress/default.nix index 576a9784a055..374b62262c29 100644 --- a/pkgs/development/python-modules/fastprogress/default.nix +++ b/pkgs/development/python-modules/fastprogress/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "fastprogress" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fastai/fastprogress"; description = "Simple and flexible progress bar for Jupyter Notebook and console"; - license = licenses.asl20; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/fastrlock/default.nix b/pkgs/development/python-modules/fastrlock/default.nix index b9631adb65ae..f6a46cbf2918 100644 --- a/pkgs/development/python-modules/fastrlock/default.nix +++ b/pkgs/development/python-modules/fastrlock/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastrlock" ]; - meta = with lib; { + meta = { description = "RLock implementation for CPython"; homepage = "https://github.com/scoder/fastrlock"; - license = licenses.mit; - maintainers = with maintainers; [ hyphon81 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hyphon81 ]; }; } diff --git a/pkgs/development/python-modules/fasttext-predict/default.nix b/pkgs/development/python-modules/fasttext-predict/default.nix index 0c9dba55328e..db8a1477168a 100644 --- a/pkgs/development/python-modules/fasttext-predict/default.nix +++ b/pkgs/development/python-modules/fasttext-predict/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fasttext" ]; - meta = with lib; { + meta = { description = "fasttext with wheels and no external dependency, but only the predict method (<1MB)"; homepage = "https://github.com/searxng/fasttext-predict/"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/fasttext/default.nix b/pkgs/development/python-modules/fasttext/default.nix index 9d9aca986d36..b5cc7922b637 100644 --- a/pkgs/development/python-modules/fasttext/default.nix +++ b/pkgs/development/python-modules/fasttext/default.nix @@ -21,10 +21,10 @@ buildPythonPackage { HOME=$TMPDIR ''; - meta = with lib; { + meta = { description = "Python module for text classification and representation learning"; homepage = "https://fasttext.cc/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/favicon/default.nix b/pkgs/development/python-modules/favicon/default.nix index 46c951733710..c2c3306f1a22 100644 --- a/pkgs/development/python-modules/favicon/default.nix +++ b/pkgs/development/python-modules/favicon/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "favicon" ]; - meta = with lib; { + meta = { description = "Find a website's favicon"; homepage = "https://github.com/scottwernervt/favicon"; changelog = "https://github.com/scottwernervt/favicon/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/fe25519/default.nix b/pkgs/development/python-modules/fe25519/default.nix index f6a399024203..5fbbc5e971bd 100644 --- a/pkgs/development/python-modules/fe25519/default.nix +++ b/pkgs/development/python-modules/fe25519/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fe25519" ]; - meta = with lib; { + meta = { description = "Python field operations for Curve25519's prime"; homepage = "https://github.com/BjoernMHaase/fe25519"; - license = with licenses; [ cc0 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ cc0 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/feedfinder2/default.nix b/pkgs/development/python-modules/feedfinder2/default.nix index 0858653d8f16..60eaf2b06f64 100644 --- a/pkgs/development/python-modules/feedfinder2/default.nix +++ b/pkgs/development/python-modules/feedfinder2/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "feedfinder2" ]; - meta = with lib; { + meta = { description = "Python library for finding feed links on websites"; homepage = "https://github.com/dfm/feedfinder2"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/feedgen/default.nix b/pkgs/development/python-modules/feedgen/default.nix index e6b7866b0cd0..d1562d73e2e4 100644 --- a/pkgs/development/python-modules/feedgen/default.nix +++ b/pkgs/development/python-modules/feedgen/default.nix @@ -24,14 +24,14 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Python module to generate ATOM feeds, RSS feeds and Podcasts"; downloadPage = "https://github.com/lkiesow/python-feedgen/releases"; homepage = "https://github.com/lkiesow/python-feedgen"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 lgpl3 ]; - maintainers = with maintainers; [ casey ]; + maintainers = with lib.maintainers; [ casey ]; }; } diff --git a/pkgs/development/python-modules/feedgenerator/default.nix b/pkgs/development/python-modules/feedgenerator/default.nix index 0ae83f0514d9..75f007f146c4 100644 --- a/pkgs/development/python-modules/feedgenerator/default.nix +++ b/pkgs/development/python-modules/feedgenerator/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "feedgenerator" ]; - meta = with lib; { + meta = { description = "Standalone version of Django's feedgenerator module"; homepage = "https://github.com/getpelican/feedgenerator"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/feedparser/default.nix b/pkgs/development/python-modules/feedparser/default.nix index e6852577047b..f59c445bd6b1 100644 --- a/pkgs/development/python-modules/feedparser/default.nix +++ b/pkgs/development/python-modules/feedparser/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "feedparser" ]; - meta = with lib; { + meta = { description = "Universal feed parser"; homepage = "https://github.com/kurtmckee/feedparser"; changelog = "https://feedparser.readthedocs.io/en/latest/changelog.html"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ffmpy/default.nix b/pkgs/development/python-modules/ffmpy/default.nix index 9703bc808f45..7aabc9f56107 100644 --- a/pkgs/development/python-modules/ffmpy/default.nix +++ b/pkgs/development/python-modules/ffmpy/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { HOME=$(mktemp -d) go build -o tests/ffmpeg/ffmpeg tests/ffmpeg/ffmpeg.go ''; - meta = with lib; { + meta = { description = "Simple python interface for FFmpeg/FFprobe"; homepage = "https://github.com/Ch00k/ffmpy"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/fhir-py/default.nix b/pkgs/development/python-modules/fhir-py/default.nix index 26e1d6a00b52..beb96454d3bd 100644 --- a/pkgs/development/python-modules/fhir-py/default.nix +++ b/pkgs/development/python-modules/fhir-py/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fhirpy" ]; - meta = with lib; { + meta = { description = "Async/sync API for FHIR resources"; homepage = "https://github.com/beda-software/fhir-py"; changelog = "https://github.com/beda-software/fhir-py/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/fiblary3-fork/default.nix b/pkgs/development/python-modules/fiblary3-fork/default.nix index ab971979d692..c4c2d3610b3c 100644 --- a/pkgs/development/python-modules/fiblary3-fork/default.nix +++ b/pkgs/development/python-modules/fiblary3-fork/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fiblary3" ]; - meta = with lib; { + meta = { homepage = "https://github.com/graham33/fiblary"; description = "Fibaro Home Center API Python Library"; - license = licenses.asl20; - maintainers = with maintainers; [ graham33 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ graham33 ]; }; } diff --git a/pkgs/development/python-modules/fido2/default.nix b/pkgs/development/python-modules/fido2/default.nix index 48bafe381f7d..5ed38a04b68c 100644 --- a/pkgs/development/python-modules/fido2/default.nix +++ b/pkgs/development/python-modules/fido2/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fido2" ]; - meta = with lib; { + meta = { description = "Provides library functionality for FIDO 2.0, including communication with a device over USB"; homepage = "https://github.com/Yubico/python-fido2"; changelog = "https://github.com/Yubico/python-fido2/releases/tag/${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/fields/default.nix b/pkgs/development/python-modules/fields/default.nix index de8a7250da95..fa15f987657e 100644 --- a/pkgs/development/python-modules/fields/default.nix +++ b/pkgs/development/python-modules/fields/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fields" ]; - meta = with lib; { + meta = { description = "Container class boilerplate killer"; homepage = "https://github.com/ionelmc/python-fields"; - license = licenses.bsd2; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/file-read-backwards/default.nix b/pkgs/development/python-modules/file-read-backwards/default.nix index 37669b8f32b7..b6266d4dcaa0 100644 --- a/pkgs/development/python-modules/file-read-backwards/default.nix +++ b/pkgs/development/python-modules/file-read-backwards/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "file_read_backwards" ]; - meta = with lib; { + meta = { description = "Memory efficient way of reading files line-by-line from the end of file"; homepage = "https://github.com/RobinNil/file_read_backwards"; changelog = "https://github.com/RobinNil/file_read_backwards/blob/v${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; }; } diff --git a/pkgs/development/python-modules/filebrowser-safe/default.nix b/pkgs/development/python-modules/filebrowser-safe/default.nix index 6e9d84b1763e..2dcfa494db2a 100644 --- a/pkgs/development/python-modules/filebrowser-safe/default.nix +++ b/pkgs/development/python-modules/filebrowser-safe/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { # There is no test embedded doCheck = false; - meta = with lib; { + meta = { description = "Snapshot of django-filebrowser for the Mezzanine CMS"; longDescription = '' filebrowser-safe was created to provide a snapshot of the @@ -33,8 +33,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/stephenmcd/filebrowser-safe"; downloadPage = "https://pypi.python.org/pypi/filebrowser_safe/"; - license = licenses.bsd3; - maintainers = with maintainers; [ prikhi ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ prikhi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/filebytes/default.nix b/pkgs/development/python-modules/filebytes/default.nix index edfe2556fa74..332ec50596b7 100644 --- a/pkgs/development/python-modules/filebytes/default.nix +++ b/pkgs/development/python-modules/filebytes/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "0h97i6h525hg401dvvaa5krxi184qpvldbdn0izmirvr9pvh4hkn"; }; - meta = with lib; { + meta = { homepage = "https://scoding.de/filebytes-introduction"; - license = licenses.gpl2; + license = lib.licenses.gpl2; description = "Scripts to parse ELF, PE, Mach-O and OAT (Android Runtime)"; - maintainers = with maintainers; [ bennofs ]; + maintainers = with lib.maintainers; [ bennofs ]; }; } diff --git a/pkgs/development/python-modules/filecheck/default.nix b/pkgs/development/python-modules/filecheck/default.nix index f579cb0bf89f..700511ff30b1 100644 --- a/pkgs/development/python-modules/filecheck/default.nix +++ b/pkgs/development/python-modules/filecheck/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "filecheck" ]; - meta = with lib; { + meta = { changelog = "https://github.com/antonlydike/filecheck/releases/tag/${src.tag}"; homepage = "https://github.com/antonlydike/filecheck"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Python-native clone of LLVMs FileCheck tool"; mainProgram = "filecheck"; - maintainers = with maintainers; [ yorickvp ]; + maintainers = with lib.maintainers; [ yorickvp ]; }; } diff --git a/pkgs/development/python-modules/filedepot/default.nix b/pkgs/development/python-modules/filedepot/default.nix index f620aac9a360..54ec565662dc 100644 --- a/pkgs/development/python-modules/filedepot/default.nix +++ b/pkgs/development/python-modules/filedepot/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "depot" ]; - meta = with lib; { + meta = { description = "Toolkit for storing files and attachments in web applications"; homepage = "https://github.com/amol-/depot"; changelog = "https://github.com/amol-/depot/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/filelock/default.nix b/pkgs/development/python-modules/filelock/default.nix index bd33052a9c63..926bc2ad5cfd 100644 --- a/pkgs/development/python-modules/filelock/default.nix +++ b/pkgs/development/python-modules/filelock/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "tests/test_virtualenv.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/tox-dev/py-filelock/releases/tag/${version}"; description = "Platform independent file lock for Python"; homepage = "https://github.com/benediktschmitt/py-filelock"; - license = licenses.unlicense; - maintainers = with maintainers; [ hyphon81 ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ hyphon81 ]; }; } diff --git a/pkgs/development/python-modules/filetype/default.nix b/pkgs/development/python-modules/filetype/default.nix index 99292c8668cd..035b7a9d19b6 100644 --- a/pkgs/development/python-modules/filetype/default.nix +++ b/pkgs/development/python-modules/filetype/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { "tests/test_benchmark.py" ]; - meta = with lib; { + meta = { description = "Infer file type and MIME type of any file/buffer"; mainProgram = "filetype"; homepage = "https://github.com/h2non/filetype.py"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/filterpy/default.nix b/pkgs/development/python-modules/filterpy/default.nix index 9522b0c4c27e..11c103e5a040 100644 --- a/pkgs/development/python-modules/filterpy/default.nix +++ b/pkgs/development/python-modules/filterpy/default.nix @@ -39,10 +39,10 @@ buildPythonPackage { "test_multivariate_gaussian" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rlabbe/filterpy"; description = "Kalman filtering and optimal estimation library"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/finalfusion/default.nix b/pkgs/development/python-modules/finalfusion/default.nix index 2452a6cbf07d..f39e7e7970a5 100644 --- a/pkgs/development/python-modules/finalfusion/default.nix +++ b/pkgs/development/python-modules/finalfusion/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { PATH=$PATH:$out/bin tests/integration/all.sh ''; - meta = with lib; { + meta = { description = "Python module for using finalfusion, word2vec, and fastText word embeddings"; homepage = "https://github.com/finalfusion/finalfusion-python/"; maintainers = [ ]; - platforms = platforms.all; - license = licenses.blueOak100; + platforms = lib.platforms.all; + license = lib.licenses.blueOak100; }; } diff --git a/pkgs/development/python-modules/find-libpython/default.nix b/pkgs/development/python-modules/find-libpython/default.nix index 7c438afc8340..dfbc8e3043ad 100644 --- a/pkgs/development/python-modules/find-libpython/default.nix +++ b/pkgs/development/python-modules/find-libpython/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "find_libpython" ]; - meta = with lib; { + meta = { description = "Finds the libpython associated with your environment, wherever it may be hiding"; changelog = "https://github.com/ktbarrett/find_libpython/releases/tag/${src.tag}"; homepage = "https://github.com/ktbarrett/find_libpython"; - license = licenses.mit; - maintainers = with maintainers; [ jleightcap ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jleightcap ]; mainProgram = "find_libpython"; }; } diff --git a/pkgs/development/python-modules/findimports/default.nix b/pkgs/development/python-modules/findimports/default.nix index f15031b98ccb..7bb873cffe69 100644 --- a/pkgs/development/python-modules/findimports/default.nix +++ b/pkgs/development/python-modules/findimports/default.nix @@ -31,15 +31,15 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Module for the analysis of Python import statements"; homepage = "https://github.com/mgedmin/findimports"; changelog = "https://github.com/mgedmin/findimports/blob/${src.tag}/CHANGES.rst"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only # or gpl3Only ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "findimports"; }; } diff --git a/pkgs/development/python-modules/findpython/default.nix b/pkgs/development/python-modules/findpython/default.nix index d542e58d221e..8f093abaca8c 100644 --- a/pkgs/development/python-modules/findpython/default.nix +++ b/pkgs/development/python-modules/findpython/default.nix @@ -39,12 +39,12 @@ buildPythonPackage { pythonImportsCheck = [ "findpython" ]; - meta = with lib; { + meta = { description = "Utility to find python versions on your system"; mainProgram = "findpython"; homepage = "https://github.com/frostming/findpython"; changelog = "https://github.com/frostming/findpython/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/fingerprints/default.nix b/pkgs/development/python-modules/fingerprints/default.nix index da70838c607d..a8a4b207875d 100644 --- a/pkgs/development/python-modules/fingerprints/default.nix +++ b/pkgs/development/python-modules/fingerprints/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fingerprints" ]; - meta = with lib; { + meta = { description = "Library to generate entity fingerprints"; homepage = "https://github.com/alephdata/fingerprints"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fints/default.nix b/pkgs/development/python-modules/fints/default.nix index 61128bb7e8d0..17e62b78ff98 100644 --- a/pkgs/development/python-modules/fints/default.nix +++ b/pkgs/development/python-modules/fints/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pytest-mock ]; - meta = with lib; { + meta = { homepage = "https://github.com/raphaelm/python-fints/"; description = "Pure-python FinTS (formerly known as HBCI) implementation"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; diff --git a/pkgs/development/python-modules/finvizfinance/default.nix b/pkgs/development/python-modules/finvizfinance/default.nix index 7cff22f05680..68ee0db5cef9 100644 --- a/pkgs/development/python-modules/finvizfinance/default.nix +++ b/pkgs/development/python-modules/finvizfinance/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_screener_overview" ]; - meta = with lib; { + meta = { description = "Finviz Finance information downloader"; homepage = "https://github.com/lit26/finvizfinance"; changelog = "https://github.com/lit26/finvizfinance/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ icyrockcom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ icyrockcom ]; }; } diff --git a/pkgs/development/python-modules/fipy/default.nix b/pkgs/development/python-modules/fipy/default.nix index 24b4264a2c62..995962006f9f 100644 --- a/pkgs/development/python-modules/fipy/default.nix +++ b/pkgs/development/python-modules/fipy/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { # to start a daemon on the builder. # pythonImportsCheck = [ "fipy" ]; - meta = with lib; { + meta = { homepage = "https://www.ctcms.nist.gov/fipy/"; description = "Finite Volume PDE Solver Using Python"; changelog = "https://github.com/usnistgov/fipy/blob/${version}/CHANGELOG.rst"; - license = licenses.free; - maintainers = with maintainers; [ wd15 ]; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ wd15 ]; }; } diff --git a/pkgs/development/python-modules/fire/default.nix b/pkgs/development/python-modules/fire/default.nix index 757fce57706f..7d98679daf10 100644 --- a/pkgs/development/python-modules/fire/default.nix +++ b/pkgs/development/python-modules/fire/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "fire" ]; - meta = with lib; { + meta = { description = "Library for automatically generating command line interfaces"; longDescription = '' Python Fire is a library for automatically generating command line @@ -64,6 +64,6 @@ buildPythonPackage rec { ''; homepage = "https://github.com/google/python-fire"; changelog = "https://github.com/google/python-fire/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/firebase-messaging/default.nix b/pkgs/development/python-modules/firebase-messaging/default.nix index 0acfce6d1e93..874a6e7a0336 100644 --- a/pkgs/development/python-modules/firebase-messaging/default.nix +++ b/pkgs/development/python-modules/firebase-messaging/default.nix @@ -83,11 +83,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Library to subscribe to GCM/FCM and receive notifications within a python application"; homepage = "https://github.com/sdb9696/firebase-messaging"; changelog = "https://github.com/sdb9696/firebase-messaging/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/firetv/default.nix b/pkgs/development/python-modules/firetv/default.nix index baba36b127aa..882b86fcb756 100644 --- a/pkgs/development/python-modules/firetv/default.nix +++ b/pkgs/development/python-modules/firetv/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # No Tests doCheck = false; - meta = with lib; { + meta = { description = "Communicate with an Amazon Fire TV device via ADB over a network"; mainProgram = "firetv-server"; homepage = "https://github.com/happyleavesaoc/python-firetv/"; - license = licenses.mit; - maintainers = [ maintainers.makefu ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.makefu ]; }; } diff --git a/pkgs/development/python-modules/first/default.nix b/pkgs/development/python-modules/first/default.nix index 70edb1114542..7bb84452c94a 100644 --- a/pkgs/development/python-modules/first/default.nix +++ b/pkgs/development/python-modules/first/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "first" ]; - meta = with lib; { + meta = { description = "Function you always missed in Python"; homepage = "https://github.com/hynek/first/"; changelog = "https://github.com/hynek/first/blob/${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/development/python-modules/fitbit/default.nix b/pkgs/development/python-modules/fitbit/default.nix index f53eba81b2ea..6e7d641330d5 100644 --- a/pkgs/development/python-modules/fitbit/default.nix +++ b/pkgs/development/python-modules/fitbit/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fitbit" ]; - meta = with lib; { + meta = { description = "Fitbit API Python Client Implementation"; homepage = "https://github.com/orcasgit/python-fitbit"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fivem-api/default.nix b/pkgs/development/python-modules/fivem-api/default.nix index 747509a83868..8dec6744a4d0 100644 --- a/pkgs/development/python-modules/fivem-api/default.nix +++ b/pkgs/development/python-modules/fivem-api/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fivem" ]; - meta = with lib; { + meta = { description = "Module for interacting with FiveM servers"; homepage = "https://github.com/Sander0542/fivem-api"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fixerio/default.nix b/pkgs/development/python-modules/fixerio/default.nix index 8d8da7ae122a..8e309de085fa 100644 --- a/pkgs/development/python-modules/fixerio/default.nix +++ b/pkgs/development/python-modules/fixerio/default.nix @@ -40,14 +40,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "fixerio" ]; - meta = with lib; { + meta = { description = "Python client for Fixer.io"; longDescription = '' Fixer.io is a free JSON API for current and historical foreign exchange rates published by the European Central Bank. ''; homepage = "https://github.com/amatellanes/fixerio"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fjaraskupan/default.nix b/pkgs/development/python-modules/fjaraskupan/default.nix index 73460d2e089a..3f33478478b9 100644 --- a/pkgs/development/python-modules/fjaraskupan/default.nix +++ b/pkgs/development/python-modules/fjaraskupan/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fjaraskupan" ]; - meta = with lib; { + meta = { description = "Module for controlling Fjäråskupan kitchen fans"; homepage = "https://github.com/elupus/fjaraskupan"; changelog = "https://github.com/elupus/fjaraskupan/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/flake8-blind-except/default.nix b/pkgs/development/python-modules/flake8-blind-except/default.nix index b3fe8f160cb8..299aff0a837b 100644 --- a/pkgs/development/python-modules/flake8-blind-except/default.nix +++ b/pkgs/development/python-modules/flake8-blind-except/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flake8_blind_except" ]; - meta = with lib; { + meta = { description = "Flake8 extension that checks for blind except: statements"; homepage = "https://github.com/elijahandrews/flake8-blind-except"; - license = licenses.mit; - maintainers = with maintainers; [ johbo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ johbo ]; }; } diff --git a/pkgs/development/python-modules/flake8-bugbear/default.nix b/pkgs/development/python-modules/flake8-bugbear/default.nix index ee34a16e817b..892b41adde05 100644 --- a/pkgs/development/python-modules/flake8-bugbear/default.nix +++ b/pkgs/development/python-modules/flake8-bugbear/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "bugbear" ]; - meta = with lib; { + meta = { description = "Plugin for Flake8 to find bugs and design problems"; homepage = "https://github.com/PyCQA/flake8-bugbear"; changelog = "https://github.com/PyCQA/flake8-bugbear/blob/${src.tag}/README.rst#change-log"; @@ -47,7 +47,7 @@ buildPythonPackage rec { A plugin for flake8 finding likely bugs and design problems in your program. ''; - license = licenses.mit; - maintainers = with maintainers; [ newam ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ newam ]; }; } diff --git a/pkgs/development/python-modules/flake8-class-newline/default.nix b/pkgs/development/python-modules/flake8-class-newline/default.nix index 56648ea0924f..90dd04dc6255 100644 --- a/pkgs/development/python-modules/flake8-class-newline/default.nix +++ b/pkgs/development/python-modules/flake8-class-newline/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flake8_class_newline" ]; - meta = with lib; { + meta = { description = "Flake8 extension to check if a new line is present after a class definition"; homepage = "https://github.com/alexandervaneck/flake8-class-newline"; - license = licenses.mit; - maintainers = with maintainers; [ lopsided98 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/development/python-modules/flake8-debugger/default.nix b/pkgs/development/python-modules/flake8-debugger/default.nix index aa7e23ecd8df..170b0e2a46df 100644 --- a/pkgs/development/python-modules/flake8-debugger/default.nix +++ b/pkgs/development/python-modules/flake8-debugger/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flake8_debugger" ]; - meta = with lib; { + meta = { description = "ipdb/pdb statement checker plugin for flake8"; homepage = "https://github.com/jbkahn/flake8-debugger"; - license = licenses.mit; - maintainers = with maintainers; [ johbo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ johbo ]; }; } diff --git a/pkgs/development/python-modules/flake8-docstrings/default.nix b/pkgs/development/python-modules/flake8-docstrings/default.nix index bc2553e9555b..bcab5c48a614 100644 --- a/pkgs/development/python-modules/flake8-docstrings/default.nix +++ b/pkgs/development/python-modules/flake8-docstrings/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flake8_docstrings" ]; - meta = with lib; { + meta = { description = "Extension for flake8 which uses pydocstyle to check docstrings"; homepage = "https://github.com/pycqa/flake8-docstrings"; changelog = "https://github.com/PyCQA/flake8-docstrings/blob/${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ smaret ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ smaret ]; }; } diff --git a/pkgs/development/python-modules/flake8-future-import/default.nix b/pkgs/development/python-modules/flake8-future-import/default.nix index abefdde0ab47..2fd7b83b7ccb 100644 --- a/pkgs/development/python-modules/flake8-future-import/default.nix +++ b/pkgs/development/python-modules/flake8-future-import/default.nix @@ -54,9 +54,9 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Flake8 extension to check for the imported __future__ modules to make it easier to have a consistent code base"; homepage = "https://github.com/xZise/flake8-future-import"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/flake8-length/default.nix b/pkgs/development/python-modules/flake8-length/default.nix index 0f3e20073876..2f6b812bea40 100644 --- a/pkgs/development/python-modules/flake8-length/default.nix +++ b/pkgs/development/python-modules/flake8-length/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/" ]; - meta = with lib; { + meta = { description = "Flake8 plugin for a smart line length validation"; homepage = "https://github.com/orsinium-labs/flake8-length"; changelog = "https://github.com/orsinium-labs/flake8-length/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ sauyon ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sauyon ]; }; } diff --git a/pkgs/development/python-modules/flake8-polyfill/default.nix b/pkgs/development/python-modules/flake8-polyfill/default.nix index faf3c0bdb030..985cd74f7b84 100644 --- a/pkgs/development/python-modules/flake8-polyfill/default.nix +++ b/pkgs/development/python-modules/flake8-polyfill/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flake8_polyfill" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/pycqa/flake8-polyfill"; description = "Polyfill package for Flake8 plugins"; - license = licenses.mit; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/flaky/default.nix b/pkgs/development/python-modules/flaky/default.nix index ef6b8d64655c..3c2f0fd0d0ae 100644 --- a/pkgs/development/python-modules/flaky/default.nix +++ b/pkgs/development/python-modules/flaky/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pytest --force-flaky --max-runs 2 test/test_pytest/test_pytest_options_example.py ''; - meta = with lib; { + meta = { changelog = "https://github.com/box/flaky/blob/v${version}/HISTORY.rst"; homepage = "https://github.com/box/flaky"; description = "Plugin for nose or py.test that automatically reruns flaky tests"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/flametree/default.nix b/pkgs/development/python-modules/flametree/default.nix index 292659ba3f15..20dbb5af5acf 100644 --- a/pkgs/development/python-modules/flametree/default.nix +++ b/pkgs/development/python-modules/flametree/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flametree" ]; - meta = with lib; { + meta = { description = "Python file and zip operations made easy"; homepage = "https://github.com/Edinburgh-Genome-Foundry/Flametree"; changelog = "https://github.com/Edinburgh-Genome-Foundry/Flametree/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/flasgger/default.nix b/pkgs/development/python-modules/flasgger/default.nix index 7cd1174589c9..2b1f4105e59d 100644 --- a/pkgs/development/python-modules/flasgger/default.nix +++ b/pkgs/development/python-modules/flasgger/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { "tests/test_examples.py" ]; - meta = with lib; { + meta = { description = "Easy OpenAPI specs and Swagger UI for your Flask API"; homepage = "https://github.com/flasgger/flasgger/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flashtext/default.nix b/pkgs/development/python-modules/flashtext/default.nix index 7988af840628..89d4bf3cf8b3 100644 --- a/pkgs/development/python-modules/flashtext/default.nix +++ b/pkgs/development/python-modules/flashtext/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # json files that tests look for don't exist in the pypi dist doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/vi3k6i5/flashtext"; description = "Python package to replace keywords in sentences or extract keywords from sentences"; - maintainers = with maintainers; [ aanderse ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ aanderse ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/flask-admin/default.nix b/pkgs/development/python-modules/flask-admin/default.nix index 567b9749db0c..6f928527e165 100644 --- a/pkgs/development/python-modules/flask-admin/default.nix +++ b/pkgs/development/python-modules/flask-admin/default.nix @@ -90,11 +90,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_admin" ]; - meta = with lib; { + meta = { description = "Admin interface framework for Flask"; homepage = "https://github.com/flask-admin/flask-admin/"; changelog = "https://github.com/flask-admin/flask-admin/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/flask-alembic/default.nix b/pkgs/development/python-modules/flask-alembic/default.nix index 51221b306a66..b196c995f962 100644 --- a/pkgs/development/python-modules/flask-alembic/default.nix +++ b/pkgs/development/python-modules/flask-alembic/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_alembic" ]; - meta = with lib; { + meta = { # https://github.com/pallets-eco/flask-alembic/issues/47 broken = pythonAtLeast "3.13"; homepage = "https://github.com/pallets-eco/flask-alembic"; changelog = "https://github.com/pallets-eco/flask-alembic/blob/${src.tag}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/flask-allowed-hosts/default.nix b/pkgs/development/python-modules/flask-allowed-hosts/default.nix index f621ee2b81fc..c7796046e595 100644 --- a/pkgs/development/python-modules/flask-allowed-hosts/default.nix +++ b/pkgs/development/python-modules/flask-allowed-hosts/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_allowed_hosts" ]; - meta = with lib; { + meta = { description = "Flask extension that helps you limit access to your API endpoints"; homepage = "https://github.com/riad-azz/flask-allowedhosts"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/flask-api/default.nix b/pkgs/development/python-modules/flask-api/default.nix index 0f50244b6fc6..c25624075cc4 100644 --- a/pkgs/development/python-modules/flask-api/default.nix +++ b/pkgs/development/python-modules/flask-api/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/flask-api/flask-api"; changelog = "https://github.com/flask-api/flask-api/releases/tag/v${version}"; description = "Browsable web APIs for Flask"; - license = licenses.bsd2; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/flask-appbuilder/default.nix b/pkgs/development/python-modules/flask-appbuilder/default.nix index 8203e26e075a..9debd17c21a7 100644 --- a/pkgs/development/python-modules/flask-appbuilder/default.nix +++ b/pkgs/development/python-modules/flask-appbuilder/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_appbuilder" ]; - meta = with lib; { + meta = { description = "Application development framework, built on top of Flask"; homepage = "https://github.com/dpgaspar/flask-appbuilder/"; changelog = "https://github.com/dpgaspar/Flask-AppBuilder/blob/v${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; # Support for flask-sqlalchemy >= 3.0 is missing, https://github.com/dpgaspar/Flask-AppBuilder/pull/1940 broken = true; diff --git a/pkgs/development/python-modules/flask-babel/default.nix b/pkgs/development/python-modules/flask-babel/default.nix index 558f2937958f..20e5c5b92d4f 100644 --- a/pkgs/development/python-modules/flask-babel/default.nix +++ b/pkgs/development/python-modules/flask-babel/default.nix @@ -69,7 +69,7 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-babel/flask-babel/releases/tag/v${version}"; description = "Adds i18n/l10n support to Flask applications"; longDescription = '' @@ -77,9 +77,9 @@ buildPythonPackage rec { This is based on the Python babel module as well as pytz both of which are installed automatically for you if you install this library. ''; - license = licenses.bsd2; - maintainers = with maintainers; [ matejc ]; - teams = [ teams.sage ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ matejc ]; + teams = [ lib.teams.sage ]; homepage = "https://github.com/python-babel/flask-babel"; }; } diff --git a/pkgs/development/python-modules/flask-bcrypt/default.nix b/pkgs/development/python-modules/flask-bcrypt/default.nix index 83771359fcb6..14374f2627ff 100644 --- a/pkgs/development/python-modules/flask-bcrypt/default.nix +++ b/pkgs/development/python-modules/flask-bcrypt/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_bcrypt" ]; - meta = with lib; { + meta = { description = "Brcrypt hashing for Flask"; homepage = "https://github.com/maxcountryman/flask-bcrypt"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-caching/default.nix b/pkgs/development/python-modules/flask-caching/default.nix index 4d6b6f426972..2923d428f8af 100644 --- a/pkgs/development/python-modules/flask-caching/default.nix +++ b/pkgs/development/python-modules/flask-caching/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "test_cached_view_class" ]; - meta = with lib; { + meta = { description = "Caching extension for Flask"; homepage = "https://github.com/pallets-eco/flask-caching"; changelog = "https://github.com/pallets-eco/flask-caching/blob/v${version}/CHANGES.rst"; maintainers = [ ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/flask-dramatiq/default.nix b/pkgs/development/python-modules/flask-dramatiq/default.nix index 7ee16fbd9423..cded223066c1 100644 --- a/pkgs/development/python-modules/flask-dramatiq/default.nix +++ b/pkgs/development/python-modules/flask-dramatiq/default.nix @@ -68,10 +68,10 @@ buildPythonPackage { pythonImportsCheck = [ "flask_dramatiq" ]; - meta = with lib; { + meta = { description = "Adds Dramatiq support to your Flask application"; homepage = "https://gitlab.com/bersace/flask-dramatiq"; - license = licenses.bsd3; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/flask-elastic/default.nix b/pkgs/development/python-modules/flask-elastic/default.nix index 6697a9f714ef..8eab6c0ffef7 100644 --- a/pkgs/development/python-modules/flask-elastic/default.nix +++ b/pkgs/development/python-modules/flask-elastic/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { ]; doCheck = false; # no tests - meta = with lib; { + meta = { description = "Integrates official client for Elasticsearch into Flask"; - license = licenses.bsd3; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.mic92 ]; homepage = "https://github.com/marceltschoppch/flask-elastic"; }; } diff --git a/pkgs/development/python-modules/flask-expects-json/default.nix b/pkgs/development/python-modules/flask-expects-json/default.nix index d161d67b352c..550981483862 100644 --- a/pkgs/development/python-modules/flask-expects-json/default.nix +++ b/pkgs/development/python-modules/flask-expects-json/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "test_validation_invalid" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fischerfredl/flask-expects-json"; description = "Decorator for REST endpoints in flask. Validate JSON request data"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-gravatar/default.nix b/pkgs/development/python-modules/flask-gravatar/default.nix index 81a29a3c56fa..bf5deaa02186 100644 --- a/pkgs/development/python-modules/flask-gravatar/default.nix +++ b/pkgs/development/python-modules/flask-gravatar/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_gravatar" ]; - meta = with lib; { + meta = { homepage = "https://github.com/zzzsochi/Flask-Gravatar"; description = "Small and simple integration of gravatar into flask"; - license = licenses.bsd3; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/flask-httpauth/default.nix b/pkgs/development/python-modules/flask-httpauth/default.nix index f44384247552..2b2d798489d5 100644 --- a/pkgs/development/python-modules/flask-httpauth/default.nix +++ b/pkgs/development/python-modules/flask-httpauth/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ] ++ flask.optional-dependencies.async; - meta = with lib; { + meta = { description = "Extension that provides HTTP authentication for Flask routes"; homepage = "https://github.com/miguelgrinberg/Flask-HTTPAuth"; changelog = "https://github.com/miguelgrinberg/Flask-HTTPAuth/blob/v${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/flask-jwt-extended/default.nix b/pkgs/development/python-modules/flask-jwt-extended/default.nix index 86a28dd787b0..52580782bde3 100644 --- a/pkgs/development/python-modules/flask-jwt-extended/default.nix +++ b/pkgs/development/python-modules/flask-jwt-extended/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_jwt_extended" ]; - meta = with lib; { + meta = { changelog = "https://github.com/vimalloc/flask-jwt-extended/releases/tag/${version}"; description = "JWT extension for Flask"; homepage = "https://flask-jwt-extended.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ gerschtli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gerschtli ]; }; } diff --git a/pkgs/development/python-modules/flask-limiter/default.nix b/pkgs/development/python-modules/flask-limiter/default.nix index e86cddce2f5d..ce22901bba15 100644 --- a/pkgs/development/python-modules/flask-limiter/default.nix +++ b/pkgs/development/python-modules/flask-limiter/default.nix @@ -101,11 +101,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_limiter" ]; - meta = with lib; { + meta = { description = "Rate limiting for flask applications"; homepage = "https://flask-limiter.readthedocs.org/"; changelog = "https://github.com/alisaifee/flask-limiter/blob/${src.tag}/HISTORY.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-login/default.nix b/pkgs/development/python-modules/flask-login/default.nix index 291c89da6b01..862459456f52 100644 --- a/pkgs/development/python-modules/flask-login/default.nix +++ b/pkgs/development/python-modules/flask-login/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { semantic-version ]; - meta = with lib; { + meta = { changelog = "https://github.com/maxcountryman/flask-login/blob/${version}/CHANGES.md"; description = "User session management for Flask"; homepage = "https://github.com/maxcountryman/flask-login"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-mailman/default.nix b/pkgs/development/python-modules/flask-mailman/default.nix index dc7d12fcfe0b..580e80344f43 100644 --- a/pkgs/development/python-modules/flask-mailman/default.nix +++ b/pkgs/development/python-modules/flask-mailman/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_mailman" ]; - meta = with lib; { + meta = { changelog = "https://github.com/waynerv/flask-mailman/blob/${src.rev}/CHANGELOG.md"; homepage = "https://github.com/waynerv/flask-mailman"; description = "Flask extension providing simple email sending capabilities"; - license = licenses.bsd3; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/flask-migrate/default.nix b/pkgs/development/python-modules/flask-migrate/default.nix index 66bde21a9da1..b925c7c3d345 100644 --- a/pkgs/development/python-modules/flask-migrate/default.nix +++ b/pkgs/development/python-modules/flask-migrate/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { flask-script ]; - meta = with lib; { + meta = { description = "SQLAlchemy database migrations for Flask applications using Alembic"; homepage = "https://github.com/miguelgrinberg/Flask-Migrate"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index 81946417266b..34bbb3c7f9c7 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_mongoengine" ]; - meta = with lib; { + meta = { description = "Flask extension that provides integration with MongoEngine and WTF model forms"; homepage = "https://github.com/mongoengine/flask-mongoengine"; changelog = "https://github.com/MongoEngine/flask-mongoengine/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-mysqldb/default.nix b/pkgs/development/python-modules/flask-mysqldb/default.nix index 995d44efcc57..60961439c52e 100644 --- a/pkgs/development/python-modules/flask-mysqldb/default.nix +++ b/pkgs/development/python-modules/flask-mysqldb/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "MySQL connection support for Flask"; homepage = "https://github.com/alexferl/flask-mysqldb"; changelog = "https://github.com/alexferl/flask-mysqldb/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/development/python-modules/flask-openid/default.nix b/pkgs/development/python-modules/flask-openid/default.nix index 6fbcb0b29c8d..1da3ab9313cb 100644 --- a/pkgs/development/python-modules/flask-openid/default.nix +++ b/pkgs/development/python-modules/flask-openid/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # no tests for repo... doCheck = false; - meta = with lib; { + meta = { description = "OpenID support for Flask"; homepage = "https://pythonhosted.org/Flask-OpenID/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-paginate/default.nix b/pkgs/development/python-modules/flask-paginate/default.nix index 78d383baa84c..f24644347285 100644 --- a/pkgs/development/python-modules/flask-paginate/default.nix +++ b/pkgs/development/python-modules/flask-paginate/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/tests.py" ]; - meta = with lib; { + meta = { description = "Pagination support for Flask"; homepage = "https://github.com/lixxu/flask-paginate"; changelog = "https://github.com/lixxu/flask-paginate/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-paranoid/default.nix b/pkgs/development/python-modules/flask-paranoid/default.nix index fa63c693ba8c..77c82604e778 100644 --- a/pkgs/development/python-modules/flask-paranoid/default.nix +++ b/pkgs/development/python-modules/flask-paranoid/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_paranoid" ]; - meta = with lib; { + meta = { homepage = "https://github.com/miguelgrinberg/flask-paranoid/"; description = "Simple user session protection"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/flask-principal/default.nix b/pkgs/development/python-modules/flask-principal/default.nix index b86c6a52b6c6..90867d43f751 100644 --- a/pkgs/development/python-modules/flask-principal/default.nix +++ b/pkgs/development/python-modules/flask-principal/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { enabledTestPaths = [ "test_principal.py" ]; - meta = with lib; { + meta = { homepage = "http://packages.python.org/Flask-Principal/"; description = "Identity management for flask"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-restful/default.nix b/pkgs/development/python-modules/flask-restful/default.nix index cb3bdf117414..c07246c325f2 100644 --- a/pkgs/development/python-modules/flask-restful/default.nix +++ b/pkgs/development/python-modules/flask-restful/default.nix @@ -66,14 +66,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_restful" ]; - meta = with lib; { + meta = { description = "Framework for creating REST APIs"; homepage = "https://flask-restful.readthedocs.io"; longDescription = '' Flask-RESTful provides the building blocks for creating a great REST API. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-restx/default.nix b/pkgs/development/python-modules/flask-restx/default.nix index 9b66e93e96b6..44e1425ad508 100644 --- a/pkgs/development/python-modules/flask-restx/default.nix +++ b/pkgs/development/python-modules/flask-restx/default.nix @@ -87,11 +87,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_restx" ]; - meta = with lib; { + meta = { description = "Fully featured framework for fast, easy and documented API development with Flask"; homepage = "https://github.com/python-restx/flask-restx"; changelog = "https://github.com/python-restx/flask-restx/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-reverse-proxy-fix/default.nix b/pkgs/development/python-modules/flask-reverse-proxy-fix/default.nix index a4ea585c909c..295937b46dda 100644 --- a/pkgs/development/python-modules/flask-reverse-proxy-fix/default.nix +++ b/pkgs/development/python-modules/flask-reverse-proxy-fix/default.nix @@ -33,9 +33,9 @@ buildPythonPackage rec { werkzeug ]; - meta = with lib; { + meta = { description = "Python Flask middleware for applications running under a reverse proxy"; - maintainers = with maintainers; [ matthiasbeyer ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; homepage = "https://github.com/antarctica/flask-reverse-proxy-fix"; license = { diff --git a/pkgs/development/python-modules/flask-script/default.nix b/pkgs/development/python-modules/flask-script/default.nix index 781a5398670c..0a7c8f67446a 100644 --- a/pkgs/development/python-modules/flask-script/default.nix +++ b/pkgs/development/python-modules/flask-script/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/smurfix/flask-script"; description = "Scripting support for Flask"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flask-session-captcha/default.nix b/pkgs/development/python-modules/flask-session-captcha/default.nix index 3f28fb5a235a..4439ebfab87b 100644 --- a/pkgs/development/python-modules/flask-session-captcha/default.nix +++ b/pkgs/development/python-modules/flask-session-captcha/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_session_captcha" ]; - meta = with lib; { + meta = { description = "Captcha implemention for flask"; homepage = "https://github.com/Tethik/flask-session-captcha"; changelog = "https://github.com/Tethik/flask-session-captcha/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Flakebi ]; }; } diff --git a/pkgs/development/python-modules/flask-simpleldap/default.nix b/pkgs/development/python-modules/flask-simpleldap/default.nix index 968571ac8463..47dc05c7ba70 100644 --- a/pkgs/development/python-modules/flask-simpleldap/default.nix +++ b/pkgs/development/python-modules/flask-simpleldap/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_simpleldap" ]; - meta = with lib; { + meta = { description = "LDAP authentication extension for Flask"; homepage = "https://github.com/alexferl/flask-simpleldap"; - license = licenses.mit; - maintainers = with maintainers; [ kip93 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kip93 ]; }; } diff --git a/pkgs/development/python-modules/flask-sock/default.nix b/pkgs/development/python-modules/flask-sock/default.nix index 6270e17762c8..d0662b32e6a8 100644 --- a/pkgs/development/python-modules/flask-sock/default.nix +++ b/pkgs/development/python-modules/flask-sock/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "WebSocket support for Flask"; homepage = "https://github.com/miguelgrinberg/flask-sock/"; changelog = "https://github.com/miguelgrinberg/flask-sock/blob/main/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fmhoeger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fmhoeger ]; }; } diff --git a/pkgs/development/python-modules/flask-socketio/default.nix b/pkgs/development/python-modules/flask-socketio/default.nix index e1f2d3f66017..769cd6bff6f2 100644 --- a/pkgs/development/python-modules/flask-socketio/default.nix +++ b/pkgs/development/python-modules/flask-socketio/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_socketio" ]; - meta = with lib; { + meta = { description = "Socket.IO integration for Flask applications"; homepage = "https://github.com/miguelgrinberg/Flask-SocketIO/"; changelog = "https://github.com/miguelgrinberg/Flask-SocketIO/blob/${src.tag}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/flask-sqlalchemy/default.nix b/pkgs/development/python-modules/flask-sqlalchemy/default.nix index bfbe41f1860c..50cb8347d708 100644 --- a/pkgs/development/python-modules/flask-sqlalchemy/default.nix +++ b/pkgs/development/python-modules/flask-sqlalchemy/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_sqlalchemy" ]; - meta = with lib; { + meta = { description = "SQLAlchemy extension for Flask"; homepage = "http://flask-sqlalchemy.pocoo.org/"; changelog = "https://github.com/pallets-eco/flask-sqlalchemy/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ gerschtli ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gerschtli ]; }; } diff --git a/pkgs/development/python-modules/flask-swagger-ui/default.nix b/pkgs/development/python-modules/flask-swagger-ui/default.nix index 5b67e456d090..663209d06265 100644 --- a/pkgs/development/python-modules/flask-swagger-ui/default.nix +++ b/pkgs/development/python-modules/flask-swagger-ui/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ flask ]; - meta = with lib; { + meta = { homepage = "https://github.com/sveint/flask-swagger-ui"; - license = licenses.mit; + license = lib.licenses.mit; description = "Swagger UI blueprint for Flask"; - maintainers = with maintainers; [ vanschelven ]; + maintainers = with lib.maintainers; [ vanschelven ]; }; } diff --git a/pkgs/development/python-modules/flask-swagger/default.nix b/pkgs/development/python-modules/flask-swagger/default.nix index e71d148cb465..fe84a12912df 100644 --- a/pkgs/development/python-modules/flask-swagger/default.nix +++ b/pkgs/development/python-modules/flask-swagger/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pyyaml ]; - meta = with lib; { + meta = { homepage = "https://github.com/gangverk/flask-swagger"; - license = licenses.mit; + license = lib.licenses.mit; description = "Extract swagger specs from your flask project"; mainProgram = "flaskswagger"; - maintainers = with maintainers; [ vanschelven ]; + maintainers = with lib.maintainers; [ vanschelven ]; }; } diff --git a/pkgs/development/python-modules/flask-talisman/default.nix b/pkgs/development/python-modules/flask-talisman/default.nix index ba46319e5210..522f939ab2e6 100644 --- a/pkgs/development/python-modules/flask-talisman/default.nix +++ b/pkgs/development/python-modules/flask-talisman/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { nativeBuildInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "HTTP security headers for Flask"; homepage = "https://github.com/wntrblm/flask-talisman"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ lib.maintainers.symphorien ]; }; } diff --git a/pkgs/development/python-modules/flask-testing/default.nix b/pkgs/development/python-modules/flask-testing/default.nix index a03bf68c9465..17ee07c1f3a3 100644 --- a/pkgs/development/python-modules/flask-testing/default.nix +++ b/pkgs/development/python-modules/flask-testing/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_testing" ]; - meta = with lib; { + meta = { description = "Extension provides unit testing utilities for Flask"; homepage = "https://pythonhosted.org/Flask-Testing/"; - license = licenses.bsd3; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/flask-themer/default.nix b/pkgs/development/python-modules/flask-themer/default.nix index 1667b095ac4e..4482d8379c49 100644 --- a/pkgs/development/python-modules/flask-themer/default.nix +++ b/pkgs/development/python-modules/flask-themer/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_themer" ]; - meta = with lib; { + meta = { description = "Simple theming support for Flask apps"; homepage = "https://github.com/TkTech/flask-themer"; changelog = "https://github.com/TkTech/flask-themer/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/flask-themes2/default.nix b/pkgs/development/python-modules/flask-themes2/default.nix index 745e1e91655e..4f2159a7bf62 100644 --- a/pkgs/development/python-modules/flask-themes2/default.nix +++ b/pkgs/development/python-modules/flask-themes2/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Easily theme your Flask app"; homepage = "https://github.com/sysr-q/flask-themes2"; - license = licenses.mit; - maintainers = with maintainers; [ ruby0b ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ruby0b ]; }; } diff --git a/pkgs/development/python-modules/flask-webtest/default.nix b/pkgs/development/python-modules/flask-webtest/default.nix index 9f145f10f12b..ca6eca5564c2 100644 --- a/pkgs/development/python-modules/flask-webtest/default.nix +++ b/pkgs/development/python-modules/flask-webtest/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_webtest" ]; - meta = with lib; { + meta = { description = "Utilities for testing Flask applications with WebTest"; homepage = "https://github.com/level12/flask-webtest"; changelog = "https://github.com/level12/flask-webtest/blob/${src.rev}/changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/flask-wtf/default.nix b/pkgs/development/python-modules/flask-wtf/default.nix index adafdec67b2b..e676e08bf3f2 100644 --- a/pkgs/development/python-modules/flask-wtf/default.nix +++ b/pkgs/development/python-modules/flask-wtf/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_wtf" ]; - meta = with lib; { + meta = { description = "Simple integration of Flask and WTForms"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mic92 anthonyroussel ]; diff --git a/pkgs/development/python-modules/flatdict/default.nix b/pkgs/development/python-modules/flatdict/default.nix index 12efe3ac686d..93d495a6de6c 100644 --- a/pkgs/development/python-modules/flatdict/default.nix +++ b/pkgs/development/python-modules/flatdict/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flatdict" ]; - meta = with lib; { + meta = { description = "Python module for interacting with nested dicts as a single level dict with delimited keys"; homepage = "https://github.com/gmr/flatdict"; - license = licenses.bsd3; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/flatten-dict/default.nix b/pkgs/development/python-modules/flatten-dict/default.nix index 7b03cc00fc6a..7431ed024b13 100644 --- a/pkgs/development/python-modules/flatten-dict/default.nix +++ b/pkgs/development/python-modules/flatten-dict/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flatten_dict" ]; - meta = with lib; { + meta = { description = "Module for flattening and unflattening dict-like objects"; homepage = "https://github.com/ianlini/flatten-dict"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fleep/default.nix b/pkgs/development/python-modules/fleep/default.nix index 54fe116a8178..e276bc310225 100644 --- a/pkgs/development/python-modules/fleep/default.nix +++ b/pkgs/development/python-modules/fleep/default.nix @@ -27,10 +27,10 @@ buildPythonPackage { pythonImportsCheck = [ "fleep" ]; - meta = with lib; { + meta = { description = "File format determination library"; homepage = "https://github.com/floyernick/fleep-py"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flexcache/default.nix b/pkgs/development/python-modules/flexcache/default.nix index 12fcbf1a1f3f..d828755b4593 100644 --- a/pkgs/development/python-modules/flexcache/default.nix +++ b/pkgs/development/python-modules/flexcache/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flexcache" ]; - meta = with lib; { + meta = { description = "Robust and extensible package to cache on disk the result of expensive calculations"; homepage = "https://github.com/hgrecco/flexcache"; changelog = "https://github.com/hgrecco/flexcache/blob/${src.rev}/CHANGES"; - license = licenses.bsd3; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/flexmock/default.nix b/pkgs/development/python-modules/flexmock/default.nix index 7695f2cd1972..2622fd58a050 100644 --- a/pkgs/development/python-modules/flexmock/default.nix +++ b/pkgs/development/python-modules/flexmock/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flexmock" ]; - meta = with lib; { + meta = { description = "Testing library that makes it easy to create mocks,stubs and fakes"; homepage = "https://flexmock.readthedocs.org"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flexparser/default.nix b/pkgs/development/python-modules/flexparser/default.nix index 4cb3cfbf6c58..db20b68d7fc5 100644 --- a/pkgs/development/python-modules/flexparser/default.nix +++ b/pkgs/development/python-modules/flexparser/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flexparser" ]; - meta = with lib; { + meta = { description = "Parsing made fun ... using typing"; homepage = "https://github.com/hgrecco/flexparser"; changelog = "https://github.com/hgrecco/flexparser/blob/${src.rev}/CHANGES"; - license = licenses.bsd3; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/flickrapi/default.nix b/pkgs/development/python-modules/flickrapi/default.nix index 973e1c51827e..5e5ed0f20360 100644 --- a/pkgs/development/python-modules/flickrapi/default.nix +++ b/pkgs/development/python-modules/flickrapi/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flickrapi" ]; - meta = with lib; { + meta = { description = "Python interface to the Flickr API"; homepage = "https://stuvel.eu/flickrapi"; changelog = "https://github.com/sybrenstuvel/flickrapi/blob/version-${version}/CHANGELOG.md"; - license = licenses.psfl; - maintainers = with maintainers; [ obadz ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ obadz ]; }; } diff --git a/pkgs/development/python-modules/flipr-api/default.nix b/pkgs/development/python-modules/flipr-api/default.nix index d4e61b5b9b98..390da8047267 100644 --- a/pkgs/development/python-modules/flipr-api/default.nix +++ b/pkgs/development/python-modules/flipr-api/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "flipr_api" ]; - meta = with lib; { + meta = { description = "Python client for Flipr API"; mainProgram = "flipr-api"; homepage = "https://github.com/cnico/flipr-api"; changelog = "https://github.com/cnico/flipr-api/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/flit-core/default.nix b/pkgs/development/python-modules/flit-core/default.nix index 7a11691b8d4d..f9f3e8b08609 100644 --- a/pkgs/development/python-modules/flit-core/default.nix +++ b/pkgs/development/python-modules/flit-core/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { inherit flit; }; - meta = with lib; { + meta = { description = "Distribution-building parts of Flit. See flit package for more information"; homepage = "https://github.com/pypa/flit"; changelog = "https://github.com/pypa/flit/blob/${src.rev}/doc/history.rst"; - license = licenses.bsd3; - teams = [ teams.python ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.python ]; }; } diff --git a/pkgs/development/python-modules/flit-gettext/default.nix b/pkgs/development/python-modules/flit-gettext/default.nix index b6b9cfb3e077..819cefbe437c 100644 --- a/pkgs/development/python-modules/flit-gettext/default.nix +++ b/pkgs/development/python-modules/flit-gettext/default.nix @@ -68,10 +68,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flit_gettext" ]; - meta = with lib; { + meta = { description = "Compiling gettext i18n messages during project bundling"; homepage = "https://github.com/codingjoe/flit-gettext"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/flit-scm/default.nix b/pkgs/development/python-modules/flit-scm/default.nix index ee55abc0ff49..e47033090e3f 100644 --- a/pkgs/development/python-modules/flit-scm/default.nix +++ b/pkgs/development/python-modules/flit-scm/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "PEP 518 build backend that uses setuptools_scm to generate a version file from your version control system, then flit to build the package"; homepage = "https://gitlab.com/WillDaSilva/flit_scm"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/flit/default.nix b/pkgs/development/python-modules/flit/default.nix index 63e5f539bae6..f06ad0e44c3d 100644 --- a/pkgs/development/python-modules/flit/default.nix +++ b/pkgs/development/python-modules/flit/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { "test_symlink_module_pep621" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pypa/flit/blob/${version}/doc/history.rst"; description = "Simple packaging tool for simple packages"; mainProgram = "flit"; homepage = "https://github.com/pypa/flit"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/floret/default.nix b/pkgs/development/python-modules/floret/default.nix index 639f7072c1ec..378accc082a5 100644 --- a/pkgs/development/python-modules/floret/default.nix +++ b/pkgs/development/python-modules/floret/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "FastText + Bloom embeddings for compact, full-coverage vectors with spaCy"; homepage = "https://github.com/explosion/floret"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/flow-record/default.nix b/pkgs/development/python-modules/flow-record/default.nix index ac7ae5dfd014..e79264ac3898 100644 --- a/pkgs/development/python-modules/flow-record/default.nix +++ b/pkgs/development/python-modules/flow-record/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { disabledTests = [ "test_rdump_fieldtype_path_json" ]; - meta = with lib; { + meta = { description = "Library for defining and creating structured data"; homepage = "https://github.com/fox-it/flow.record"; changelog = "https://github.com/fox-it/flow.record/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/flower/default.nix b/pkgs/development/python-modules/flower/default.nix index 6999a333f284..f41a0833be25 100644 --- a/pkgs/development/python-modules/flower/default.nix +++ b/pkgs/development/python-modules/flower/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flower" ]; - meta = with lib; { + meta = { description = "Real-time monitor and web admin for Celery distributed task queue"; homepage = "https://github.com/mher/flower"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/flowlogs-reader/default.nix b/pkgs/development/python-modules/flowlogs-reader/default.nix index b74212f95f63..ec1a472e3999 100644 --- a/pkgs/development/python-modules/flowlogs-reader/default.nix +++ b/pkgs/development/python-modules/flowlogs-reader/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "flowlogs_reader" ]; - meta = with lib; { + meta = { description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier"; mainProgram = "flowlogs_reader"; homepage = "https://github.com/obsrvbl/flowlogs-reader"; - license = licenses.asl20; - maintainers = with maintainers; [ cransom ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cransom ]; }; } diff --git a/pkgs/development/python-modules/fluent-logger/default.nix b/pkgs/development/python-modules/fluent-logger/default.nix index 0e56a17c3a73..4a098ce568ab 100644 --- a/pkgs/development/python-modules/fluent-logger/default.nix +++ b/pkgs/development/python-modules/fluent-logger/default.nix @@ -38,9 +38,9 @@ buildPythonPackage rec { "fluent.sender" ]; - meta = with lib; { + meta = { description = "Structured logger for Fluentd (Python)"; homepage = "https://github.com/fluent/fluent-logger-python"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/flufl/bounce.nix b/pkgs/development/python-modules/flufl/bounce.nix index c527d036200b..c33f898c87d2 100644 --- a/pkgs/development/python-modules/flufl/bounce.nix +++ b/pkgs/development/python-modules/flufl/bounce.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonNamespaces = [ "flufl" ]; - meta = with lib; { + meta = { description = "Email bounce detectors"; homepage = "https://gitlab.com/warsaw/flufl.bounce"; changelog = "https://gitlab.com/warsaw/flufl.bounce/-/blob/${version}/flufl/bounce/NEWS.rst"; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/flufl/i18n.nix b/pkgs/development/python-modules/flufl/i18n.nix index acfa292cc821..b4a45b2a8ff3 100644 --- a/pkgs/development/python-modules/flufl/i18n.nix +++ b/pkgs/development/python-modules/flufl/i18n.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonNamespaces = [ "flufl" ]; - meta = with lib; { + meta = { description = "High level API for internationalizing Python libraries and applications"; homepage = "https://gitlab.com/warsaw/flufl.i18n"; changelog = "https://gitlab.com/warsaw/flufl.i18n/-/raw/${version}/docs/NEWS.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flufl/lock.nix b/pkgs/development/python-modules/flufl/lock.nix index 7fd0cf4ccaec..3b5f5a911620 100644 --- a/pkgs/development/python-modules/flufl/lock.nix +++ b/pkgs/development/python-modules/flufl/lock.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonNamespaces = [ "flufl" ]; - meta = with lib; { + meta = { description = "NFS-safe file locking with timeouts for POSIX and Windows"; homepage = "https://flufllock.readthedocs.io/"; changelog = "https://gitlab.com/warsaw/flufl.lock/-/blob/${version}/docs/NEWS.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qyliss ]; }; } diff --git a/pkgs/development/python-modules/flux-led/default.nix b/pkgs/development/python-modules/flux-led/default.nix index f9e65c5e3d6f..4d03004ad0af 100644 --- a/pkgs/development/python-modules/flux-led/default.nix +++ b/pkgs/development/python-modules/flux-led/default.nix @@ -43,13 +43,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "flux_led" ]; - meta = with lib; { + meta = { description = "Python library to communicate with the flux_led smart bulbs"; homepage = "https://github.com/Danielhiversen/flux_led"; changelog = "https://github.com/Danielhiversen/flux_led/releases/tag/${version}"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "flux_led"; }; } diff --git a/pkgs/development/python-modules/flyingsquid/default.nix b/pkgs/development/python-modules/flyingsquid/default.nix index fda3ae6613f0..58fb79f98610 100644 --- a/pkgs/development/python-modules/flyingsquid/default.nix +++ b/pkgs/development/python-modules/flyingsquid/default.nix @@ -33,10 +33,10 @@ buildPythonPackage { # no tests doCheck = false; - meta = with lib; { + meta = { description = "More interactive weak supervision with FlyingSquid"; homepage = "https://github.com/HazyResearch/flyingsquid"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/flynt/default.nix b/pkgs/development/python-modules/flynt/default.nix index 92e2c24ff46c..3dbc3fbf4e89 100644 --- a/pkgs/development/python-modules/flynt/default.nix +++ b/pkgs/development/python-modules/flynt/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { "test_mixed_quote_types_unsafe" ]; - meta = with lib; { + meta = { description = "Tool to automatically convert old string literal formatting to f-strings"; homepage = "https://github.com/ikamensh/flynt"; changelog = "https://github.com/ikamensh/flynt/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; mainProgram = "flynt"; }; } diff --git a/pkgs/development/python-modules/fnv-hash-fast/default.nix b/pkgs/development/python-modules/fnv-hash-fast/default.nix index 901e0bc65df7..864d3474c22d 100644 --- a/pkgs/development/python-modules/fnv-hash-fast/default.nix +++ b/pkgs/development/python-modules/fnv-hash-fast/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Fast version of fnv1a"; homepage = "https://github.com/bdraco/fnv-hash-fast"; changelog = "https://github.com/bdraco/fnv-hash-fast/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/fnvhash/default.nix b/pkgs/development/python-modules/fnvhash/default.nix index 1ee089150e1c..fa5f9d1bc908 100644 --- a/pkgs/development/python-modules/fnvhash/default.nix +++ b/pkgs/development/python-modules/fnvhash/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fnvhash" ]; - meta = with lib; { + meta = { changelog = "https://github.com/znerol/py-fnvhash/releases/tag/${src.tag}"; description = "Python FNV hash implementation"; homepage = "https://github.com/znerol/py-fnvhash"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/font-v/default.nix b/pkgs/development/python-modules/font-v/default.nix index fd2970d07a34..fe71c42d2996 100644 --- a/pkgs/development/python-modules/font-v/default.nix +++ b/pkgs/development/python-modules/font-v/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "test_utilities_get_gitrootpath_function" ]; - meta = with lib; { + meta = { description = "Python utility for manipulating font version headers"; mainProgram = "font-v"; homepage = "https://github.com/source-foundry/font-v"; - license = licenses.mit; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/fontawesomefree/default.nix b/pkgs/development/python-modules/fontawesomefree/default.nix index ebdf6c247cfc..5faebbf181a3 100644 --- a/pkgs/development/python-modules/fontawesomefree/default.nix +++ b/pkgs/development/python-modules/fontawesomefree/default.nix @@ -19,13 +19,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "fontawesomefree" ]; - meta = with lib; { + meta = { homepage = "https://github.com/FortAwesome/Font-Awesome"; description = "Icon library and toolkit"; - license = with licenses; [ + license = with lib.licenses; [ ofl cc-by-40 ]; - maintainers = with maintainers; [ netali ]; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/development/python-modules/fontbakery/default.nix b/pkgs/development/python-modules/fontbakery/default.nix index e00fac68a9a9..253af52acd22 100644 --- a/pkgs/development/python-modules/fontbakery/default.nix +++ b/pkgs/development/python-modules/fontbakery/default.nix @@ -161,12 +161,12 @@ buildPythonPackage rec { passthru.tests.simple = callPackage ./tests.nix { }; - meta = with lib; { + meta = { description = "Tool for checking the quality of font projects"; homepage = "https://github.com/googlefonts/fontbakery"; changelog = "https://github.com/fonttools/fontbakery/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "fontbakery"; - maintainers = with maintainers; [ danc86 ]; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/fontfeatures/default.nix b/pkgs/development/python-modules/fontfeatures/default.nix index 5648e37ed9f1..450380bb166d 100644 --- a/pkgs/development/python-modules/fontfeatures/default.nix +++ b/pkgs/development/python-modules/fontfeatures/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "tests/test_shaping_harfbuzz.py" ]; - meta = with lib; { + meta = { description = "Python library for compiling OpenType font features"; homepage = "https://github.com/simoncozens/fontFeatures"; - license = licenses.bsd3; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/fontmath/default.nix b/pkgs/development/python-modules/fontmath/default.nix index 95392c1aa5b6..1dc28adda5f1 100644 --- a/pkgs/development/python-modules/fontmath/default.nix +++ b/pkgs/development/python-modules/fontmath/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Collection of objects that implement fast font, glyph, etc. math"; homepage = "https://github.com/robotools/fontMath/"; changelog = "https://github.com/robotools/fontMath/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/fontparts/default.nix b/pkgs/development/python-modules/fontparts/default.nix index 9d63916abf11..30a78c832517 100644 --- a/pkgs/development/python-modules/fontparts/default.nix +++ b/pkgs/development/python-modules/fontparts/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "API for interacting with the parts of fonts during the font development process"; homepage = "https://github.com/robotools/fontParts"; changelog = "https://github.com/robotools/fontParts/releases/tag/${version}"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/fontpens/default.nix b/pkgs/development/python-modules/fontpens/default.nix index 79c171c9bbe1..0ed674c0de5a 100644 --- a/pkgs/development/python-modules/fontpens/default.nix +++ b/pkgs/development/python-modules/fontpens/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "transformPointPen" ]); - meta = with lib; { + meta = { description = "Collection of classes implementing the pen protocol for manipulating glyphs"; homepage = "https://github.com/robotools/fontPens"; - license = licenses.bsd3; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/fonttools/default.nix b/pkgs/development/python-modules/fonttools/default.nix index 056c4d8df771..595f9084eb15 100644 --- a/pkgs/development/python-modules/fonttools/default.nix +++ b/pkgs/development/python-modules/fonttools/default.nix @@ -97,11 +97,11 @@ buildPythonPackage rec { "test_ttcompile_timestamp_calcs" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fonttools/fonttools"; description = "Library to manipulate font files from Python"; changelog = "https://github.com/fonttools/fonttools/blob/${src.tag}/NEWS.rst"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/foobot-async/default.nix b/pkgs/development/python-modules/foobot-async/default.nix index 0145b4951155..58f754353ca4 100644 --- a/pkgs/development/python-modules/foobot-async/default.nix +++ b/pkgs/development/python-modules/foobot-async/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "foobot_async" ]; - meta = with lib; { + meta = { description = "API Client for Foobot Air Quality Monitoring devices"; homepage = "https://github.com/reefab/foobot_async"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/foolscap/default.nix b/pkgs/development/python-modules/foolscap/default.nix index 2af1174c66ca..c828ea4f0b88 100644 --- a/pkgs/development/python-modules/foolscap/default.nix +++ b/pkgs/development/python-modules/foolscap/default.nix @@ -56,7 +56,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "foolscap" ]; - meta = with lib; { + meta = { description = "RPC protocol for Python that follows the distributed object-capability model"; longDescription = '' "Foolscap" is the name for the next-generation RPC protocol, intended to @@ -64,7 +64,7 @@ buildPythonPackage rec { implement a distributed object-capabilities model in Python. ''; homepage = "https://github.com/warner/foolscap"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/forbiddenfruit/default.nix b/pkgs/development/python-modules/forbiddenfruit/default.nix index 408e1c6378e4..bbc3dd2cb6ee 100644 --- a/pkgs/development/python-modules/forbiddenfruit/default.nix +++ b/pkgs/development/python-modules/forbiddenfruit/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { doCheck = false; # uses nose - meta = with lib; { + meta = { description = "Patch python built-in objects"; homepage = "https://github.com/clarete/forbiddenfruit"; changelog = "https://github.com/clarete/forbiddenfruit/releases/tag/${version}"; - license = with licenses; [ + license = with lib.licenses; [ mit gpl3Plus ]; diff --git a/pkgs/development/python-modules/fordpass/default.nix b/pkgs/development/python-modules/fordpass/default.nix index 0a7d9f68e6ec..b72acf5f81e3 100644 --- a/pkgs/development/python-modules/fordpass/default.nix +++ b/pkgs/development/python-modules/fordpass/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fordpass" ]; - meta = with lib; { + meta = { description = "Python module for the FordPass API"; mainProgram = "demo.py"; homepage = "https://github.com/clarkd/fordpass-python"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/forecast-solar/default.nix b/pkgs/development/python-modules/forecast-solar/default.nix index eebede67f426..3c45f13453c3 100644 --- a/pkgs/development/python-modules/forecast-solar/default.nix +++ b/pkgs/development/python-modules/forecast-solar/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "test_status_429" ]; - meta = with lib; { + meta = { changelog = "https://github.com/home-assistant-libs/forecast_solar/releases/tag/v${version}"; description = "Asynchronous Python client for getting forecast solar information"; homepage = "https://github.com/home-assistant-libs/forecast_solar"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/formbox/default.nix b/pkgs/development/python-modules/formbox/default.nix index a67216ebf30f..50f3a10f7220 100644 --- a/pkgs/development/python-modules/formbox/default.nix +++ b/pkgs/development/python-modules/formbox/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { doCheck = false; # there's no test pythonImportsCheck = [ "formbox" ]; - meta = with lib; { + meta = { description = "Script to format mbox as HTML/XML"; mainProgram = "formbox"; homepage = "https://trong.loang.net/~cnx/formbox"; - license = licenses.agpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.agpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; }; } diff --git a/pkgs/development/python-modules/formulae/default.nix b/pkgs/development/python-modules/formulae/default.nix index b8c28b464746..b216d05bc19a 100644 --- a/pkgs/development/python-modules/formulae/default.nix +++ b/pkgs/development/python-modules/formulae/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "formulae.matrices" ]; - meta = with lib; { + meta = { homepage = "https://bambinos.github.io/formulae"; description = "Formulas for mixed-effects models in Python"; changelog = "https://github.com/bambinos/formulae/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/formulaic/default.nix b/pkgs/development/python-modules/formulaic/default.nix index 97d387abec91..e12096137b99 100644 --- a/pkgs/development/python-modules/formulaic/default.nix +++ b/pkgs/development/python-modules/formulaic/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "formulaic" ]; - meta = with lib; { + meta = { description = "High-performance implementation of Wilkinson formulas"; homepage = "https://matthewwardrop.github.io/formulaic/"; changelog = "https://github.com/matthewwardrop/formulaic/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ swflint ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ swflint ]; }; } diff --git a/pkgs/development/python-modules/fortiosapi/default.nix b/pkgs/development/python-modules/fortiosapi/default.nix index e34cdd3137ee..68442e3f2d90 100644 --- a/pkgs/development/python-modules/fortiosapi/default.nix +++ b/pkgs/development/python-modules/fortiosapi/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fortiosapi" ]; - meta = with lib; { + meta = { description = "Python module to work with Fortigate/Fortios devices"; homepage = "https://github.com/fortinet-solutions-cse/fortiosapi"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fountains/default.nix b/pkgs/development/python-modules/fountains/default.nix index 8596f2086643..153f97ab50fe 100644 --- a/pkgs/development/python-modules/fountains/default.nix +++ b/pkgs/development/python-modules/fountains/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fountains" ]; - meta = with lib; { + meta = { description = "Python library for generating and embedding data for unit testing"; homepage = "https://github.com/reity/fountains"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/foxdot/default.nix b/pkgs/development/python-modules/foxdot/default.nix index 1fdce0278694..407cdb444839 100644 --- a/pkgs/development/python-modules/foxdot/default.nix +++ b/pkgs/development/python-modules/foxdot/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # Requires a running SuperCollider instance doCheck = false; - meta = with lib; { + meta = { description = "Live coding music with SuperCollider"; mainProgram = "FoxDot"; homepage = "https://foxdot.org/"; - license = licenses.cc-by-sa-40; - maintainers = with maintainers; [ mrmebelman ]; + license = lib.licenses.cc-by-sa-40; + maintainers = with lib.maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/development/python-modules/fpylll/default.nix b/pkgs/development/python-modules/fpylll/default.nix index b6a0e447ea0a..d56368695df4 100644 --- a/pkgs/development/python-modules/fpylll/default.nix +++ b/pkgs/development/python-modules/fpylll/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Python interface for fplll"; changelog = "https://github.com/fplll/fpylll/releases/tag/${src.tag}"; homepage = "https://github.com/fplll/fpylll"; - teams = [ teams.sage ]; - license = licenses.gpl2Plus; + teams = [ lib.teams.sage ]; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/python-modules/fpyutils/default.nix b/pkgs/development/python-modules/fpyutils/default.nix index af8a0db8a00a..555bf01580ac 100644 --- a/pkgs/development/python-modules/fpyutils/default.nix +++ b/pkgs/development/python-modules/fpyutils/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fpyutils" ]; - meta = with lib; { + meta = { description = "Collection of useful non-standard Python functions"; homepage = "https://github.com/frnmst/fpyutils"; changelog = "https://blog.franco.net.eu.org/software/fpyutils-${version}/release.html"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fqdn/default.nix b/pkgs/development/python-modules/fqdn/default.nix index 4f896c084739..6dfa0f924501 100644 --- a/pkgs/development/python-modules/fqdn/default.nix +++ b/pkgs/development/python-modules/fqdn/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fqdn" ]; - meta = with lib; { + meta = { description = "RFC-compliant FQDN validation and manipulation"; homepage = "https://github.com/ypcrts/fqdn"; - license = licenses.mpl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/freebox-api/default.nix b/pkgs/development/python-modules/freebox-api/default.nix index f3a0b5463fd6..f4a31f6057f2 100644 --- a/pkgs/development/python-modules/freebox-api/default.nix +++ b/pkgs/development/python-modules/freebox-api/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "freebox_api" ]; - meta = with lib; { + meta = { description = "Python module to interact with the Freebox OS API"; homepage = "https://github.com/hacf-fr/freebox-api"; changelog = "https://github.com/hacf-fr/freebox-api/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "freebox_api"; }; } diff --git a/pkgs/development/python-modules/freenub/default.nix b/pkgs/development/python-modules/freenub/default.nix index c06a6c80830e..9feaee867139 100644 --- a/pkgs/development/python-modules/freenub/default.nix +++ b/pkgs/development/python-modules/freenub/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pubnub" ]; - meta = with lib; { + meta = { description = "Fork of pubnub"; homepage = "https://github.com/bdraco/freenub"; changelog = "https://github.com/bdraco/freenub/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/freertos-gdb/default.nix b/pkgs/development/python-modules/freertos-gdb/default.nix index 38e1d1222e7f..a6df26f2a60d 100644 --- a/pkgs/development/python-modules/freertos-gdb/default.nix +++ b/pkgs/development/python-modules/freertos-gdb/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "User-friendly view of FreeRTOS kernel objects in GDB"; homepage = "https://github.com/espressif/freertos-gdb"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; diff --git a/pkgs/development/python-modules/freezegun/default.nix b/pkgs/development/python-modules/freezegun/default.nix index 991a4d67c5b1..d86c905581a7 100644 --- a/pkgs/development/python-modules/freezegun/default.nix +++ b/pkgs/development/python-modules/freezegun/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "freezegun" ]; - meta = with lib; { + meta = { description = "Library that allows your Python tests to travel through time"; homepage = "https://github.com/spulec/freezegun"; changelog = "https://github.com/spulec/freezegun/blob/${version}/CHANGELOG"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/frelatage/default.nix b/pkgs/development/python-modules/frelatage/default.nix index be04e82e7aa6..150550380ec4 100644 --- a/pkgs/development/python-modules/frelatage/default.nix +++ b/pkgs/development/python-modules/frelatage/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "frelatage" ]; - meta = with lib; { + meta = { description = "Greybox and Coverage-based library to fuzz Python applications"; homepage = "https://github.com/Rog3rSm1th/frelatage"; changelog = "https://github.com/Rog3rSm1th/frelatage/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/frigidaire/default.nix b/pkgs/development/python-modules/frigidaire/default.nix index 841dc3932922..6e81fdf5ed20 100644 --- a/pkgs/development/python-modules/frigidaire/default.nix +++ b/pkgs/development/python-modules/frigidaire/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "frigidaire" ]; - meta = with lib; { + meta = { description = "Python API for the Frigidaire devices"; homepage = "https://github.com/bm1549/frigidaire"; changelog = "https://github.com/bm1549/frigidaire/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/frilouz/default.nix b/pkgs/development/python-modules/frilouz/default.nix index 962c0bc45884..5fc838c2ccab 100644 --- a/pkgs/development/python-modules/frilouz/default.nix +++ b/pkgs/development/python-modules/frilouz/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "frilouz" ]; - meta = with lib; { + meta = { homepage = "https://github.com/QuantStack/frilouz"; description = "Python AST parser adapter with partial error recovery"; - license = licenses.bsd3; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/fritzconnection/default.nix b/pkgs/development/python-modules/fritzconnection/default.nix index 3983f49256a2..86d4f0cf653f 100644 --- a/pkgs/development/python-modules/fritzconnection/default.nix +++ b/pkgs/development/python-modules/fritzconnection/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { "fritzconnection/tests/test_functional.py" ]; - meta = with lib; { + meta = { description = "Python module to communicate with the AVM Fritz!Box"; homepage = "https://github.com/kbr/fritzconnection"; changelog = "https://fritzconnection.readthedocs.io/en/${version}/sources/version_history.html"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda valodim ]; diff --git a/pkgs/development/python-modules/frozendict/default.nix b/pkgs/development/python-modules/frozendict/default.nix index db16aa1bafe7..0a4e33efdff2 100644 --- a/pkgs/development/python-modules/frozendict/default.nix +++ b/pkgs/development/python-modules/frozendict/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "frozendict" ]; - meta = with lib; { + meta = { description = "Module for immutable dictionary"; homepage = "https://github.com/Marco-Sulla/python-frozendict"; changelog = "https://github.com/Marco-Sulla/python-frozendict/releases/tag/v${version}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/frozenlist/default.nix b/pkgs/development/python-modules/frozenlist/default.nix index 3a18ffc017d6..0e3758a0e39d 100644 --- a/pkgs/development/python-modules/frozenlist/default.nix +++ b/pkgs/development/python-modules/frozenlist/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "frozenlist" ]; - meta = with lib; { + meta = { description = "Python module for list-like structure"; homepage = "https://github.com/aio-libs/frozenlist"; changelog = "https://github.com/aio-libs/frozenlist/blob/${src.tag}/CHANGES.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/frozenlist2/default.nix b/pkgs/development/python-modules/frozenlist2/default.nix index ca7ab067ea06..fbae78478ef8 100644 --- a/pkgs/development/python-modules/frozenlist2/default.nix +++ b/pkgs/development/python-modules/frozenlist2/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "frozenlist2" ]; - meta = with lib; { + meta = { description = "Immutable list for Python"; homepage = "https://github.com/rohanpm/frozenlist2"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/fs-s3fs/default.nix b/pkgs/development/python-modules/fs-s3fs/default.nix index 5372eb0b6d0c..3c707f2a13f8 100644 --- a/pkgs/development/python-modules/fs-s3fs/default.nix +++ b/pkgs/development/python-modules/fs-s3fs/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { # tests try to integrate an s3 bucket which can't be tested properly in an isolated environment. doCheck = false; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/fs-s3fs/"; - license = licenses.mit; + license = lib.licenses.mit; description = "Amazon S3 filesystem for PyFilesystem2"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/fs/default.nix b/pkgs/development/python-modules/fs/default.nix index 70284bcf8f6a..114ec31c20ba 100644 --- a/pkgs/development/python-modules/fs/default.nix +++ b/pkgs/development/python-modules/fs/default.nix @@ -77,12 +77,12 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Filesystem abstraction"; homepage = "https://github.com/PyFilesystem/pyfilesystem2"; changelog = "https://github.com/PyFilesystem/pyfilesystem2/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/fschat/default.nix b/pkgs/development/python-modules/fschat/default.nix index a60a61e055fc..ea4ceec9e434 100644 --- a/pkgs/development/python-modules/fschat/default.nix +++ b/pkgs/development/python-modules/fschat/default.nix @@ -90,10 +90,10 @@ buildPythonPackage { # tests require networking doCheck = false; - meta = with lib; { + meta = { description = "Open platform for training, serving, and evaluating large language models. Release repo for Vicuna and Chatbot Arena"; homepage = "https://github.com/lm-sys/FastChat"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/fst-pso/default.nix b/pkgs/development/python-modules/fst-pso/default.nix index 6deb524307de..33460eb86a92 100644 --- a/pkgs/development/python-modules/fst-pso/default.nix +++ b/pkgs/development/python-modules/fst-pso/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fstpso" ]; - meta = with lib; { + meta = { description = "Fuzzy Self-Tuning PSO global optimization library"; homepage = "https://github.com/aresio/fst-pso"; changelog = "https://github.com/aresio/fst-pso/releases/tag/${version}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ftfy/default.nix b/pkgs/development/python-modules/ftfy/default.nix index 03184eb9e2e4..486ec1db888c 100644 --- a/pkgs/development/python-modules/ftfy/default.nix +++ b/pkgs/development/python-modules/ftfy/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { export PATH=$out/bin:$PATH ''; - meta = with lib; { + meta = { changelog = "https://github.com/rspeer/python-ftfy/blob/${src.rev}/CHANGELOG.md"; description = "Given Unicode text, make its representation consistent and possibly less broken"; mainProgram = "ftfy"; homepage = "https://github.com/LuminosoInsight/python-ftfy"; - license = licenses.asl20; - maintainers = with maintainers; [ aborsu ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aborsu ]; }; } diff --git a/pkgs/development/python-modules/ftputil/default.nix b/pkgs/development/python-modules/ftputil/default.nix index 01ec0e9d616a..d5a6b0a68c7d 100644 --- a/pkgs/development/python-modules/ftputil/default.nix +++ b/pkgs/development/python-modules/ftputil/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ftputil" ]; - meta = with lib; { + meta = { description = "High-level FTP client library (virtual file system and more)"; homepage = "https://ftputil.sschwarzer.net/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fugashi/default.nix b/pkgs/development/python-modules/fugashi/default.nix index b2e5997ace6b..ee674751a551 100644 --- a/pkgs/development/python-modules/fugashi/default.nix +++ b/pkgs/development/python-modules/fugashi/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fugashi" ]; - meta = with lib; { + meta = { description = "Cython MeCab wrapper for fast, pythonic Japanese tokenization and morphological analysis"; homepage = "https://github.com/polm/fugashi"; changelog = "https://github.com/polm/fugashi/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ laurent-f1z1 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ laurent-f1z1 ]; }; } diff --git a/pkgs/development/python-modules/funcparserlib/default.nix b/pkgs/development/python-modules/funcparserlib/default.nix index 4273647c5aba..df3e7f861997 100644 --- a/pkgs/development/python-modules/funcparserlib/default.nix +++ b/pkgs/development/python-modules/funcparserlib/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "funcparserlib" ]; - meta = with lib; { + meta = { description = "Recursive descent parsing library based on functional combinators"; homepage = "https://github.com/vlasovskikh/funcparserlib"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/funcsigs/default.nix b/pkgs/development/python-modules/funcsigs/default.nix index bafdd58d56ce..fc2ae9722c9a 100644 --- a/pkgs/development/python-modules/funcsigs/default.nix +++ b/pkgs/development/python-modules/funcsigs/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "funcsigs" ]; - meta = with lib; { + meta = { description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+"; homepage = "https://github.com/aliles/funcsigs"; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/functiontrace/default.nix b/pkgs/development/python-modules/functiontrace/default.nix index e08ca4340ac1..41da92d3e0cb 100644 --- a/pkgs/development/python-modules/functiontrace/default.nix +++ b/pkgs/development/python-modules/functiontrace/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { --prefix PATH : ${lib.makeBinPath [ functiontrace-server ]} ''; - meta = with lib; { + meta = { homepage = "https://functiontrace.com"; description = "Python module for Functiontrace"; - license = licenses.prosperity30; - maintainers = with maintainers; [ + license = lib.licenses.prosperity30; + maintainers = with lib.maintainers; [ mathiassven tehmatt ]; diff --git a/pkgs/development/python-modules/funcy/default.nix b/pkgs/development/python-modules/funcy/default.nix index 45359c9adc18..cd01fc33cc38 100644 --- a/pkgs/development/python-modules/funcy/default.nix +++ b/pkgs/development/python-modules/funcy/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "Collection of fancy functional tools focused on practicality"; homepage = "https://funcy.readthedocs.org/"; changelog = "https://github.com/Suor/funcy/blob/2.0/CHANGELOG"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/furo/default.nix b/pkgs/development/python-modules/furo/default.nix index 2bb4606fada4..aaccb336fa97 100644 --- a/pkgs/development/python-modules/furo/default.nix +++ b/pkgs/development/python-modules/furo/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { inherit web; }; - meta = with lib; { + meta = { description = "Clean customizable documentation theme for Sphinx"; homepage = "https://github.com/pradyunsg/furo"; changelog = "https://github.com/pradyunsg/furo/blob/${version}/docs/changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/fuse-python/default.nix b/pkgs/development/python-modules/fuse-python/default.nix index 092ff612b318..5e0d22ea6655 100644 --- a/pkgs/development/python-modules/fuse-python/default.nix +++ b/pkgs/development/python-modules/fuse-python/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fuse" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Python bindings for FUSE"; homepage = "https://github.com/libfuse/python-fuse"; - license = licenses.lgpl21; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/fusepy/default.nix b/pkgs/development/python-modules/fusepy/default.nix index 01c858c72906..34e17fb6daf2 100644 --- a/pkgs/development/python-modules/fusepy/default.nix +++ b/pkgs/development/python-modules/fusepy/default.nix @@ -28,14 +28,14 @@ buildPythonPackage rec { "find_library('fuse')" "'${lib.getLib pkgs.fuse}/lib/libfuse.so'" ''; - meta = with lib; { + meta = { description = "Simple ctypes bindings for FUSE"; longDescription = '' Python module that provides a simple interface to FUSE and MacFUSE. It's just one file and is implemented using ctypes. ''; homepage = "https://github.com/terencehonles/fusepy"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/future-fstrings/default.nix b/pkgs/development/python-modules/future-fstrings/default.nix index b9c347e647c4..6e2782b698ee 100644 --- a/pkgs/development/python-modules/future-fstrings/default.nix +++ b/pkgs/development/python-modules/future-fstrings/default.nix @@ -19,12 +19,12 @@ buildPythonPackage rec { # No tests included in Pypi archive doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/asottile/future-fstrings"; description = "Backport of fstrings to python<3.6"; mainProgram = "future-fstrings-show"; - license = licenses.mit; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyanloutre ]; broken = pythonOlder "3.6"; # dependency tokenize-rt not packaged }; } diff --git a/pkgs/development/python-modules/future-typing/default.nix b/pkgs/development/python-modules/future-typing/default.nix index 291b26c8c452..0dcd260c118c 100644 --- a/pkgs/development/python-modules/future-typing/default.nix +++ b/pkgs/development/python-modules/future-typing/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "future_typing" ]; - meta = with lib; { + meta = { description = "Use generic type hints and new union syntax `|` with python 3.6+"; mainProgram = "future_typing"; homepage = "https://github.com/PrettyWood/future-typing"; - license = licenses.mit; - maintainers = with maintainers; [ kfollesdal ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kfollesdal ]; }; } diff --git a/pkgs/development/python-modules/fuzzyfinder/default.nix b/pkgs/development/python-modules/fuzzyfinder/default.nix index 20a922509bc6..6e49773aaac5 100644 --- a/pkgs/development/python-modules/fuzzyfinder/default.nix +++ b/pkgs/development/python-modules/fuzzyfinder/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fuzzyfinder" ]; - meta = with lib; { + meta = { changelog = "https://github.com/amjith/fuzzyfinder/blob/${src.tag}/CHANGELOG.rst"; description = "Fuzzy Finder implemented in Python"; homepage = "https://github.com/amjith/fuzzyfinder"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/fuzzytm/default.nix b/pkgs/development/python-modules/fuzzytm/default.nix index 3a86d0c55397..c8699c2f1edc 100644 --- a/pkgs/development/python-modules/fuzzytm/default.nix +++ b/pkgs/development/python-modules/fuzzytm/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "FuzzyTM" ]; - meta = with lib; { + meta = { description = "Library for Fuzzy Topic Models"; homepage = "https://github.com/ERijck/FuzzyTM"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fuzzywuzzy/default.nix b/pkgs/development/python-modules/fuzzywuzzy/default.nix index c3681fb1da83..bd28e2afa990 100644 --- a/pkgs/development/python-modules/fuzzywuzzy/default.nix +++ b/pkgs/development/python-modules/fuzzywuzzy/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pytest ]; - meta = with lib; { + meta = { description = "Fuzzy string matching for Python"; homepage = "https://github.com/seatgeek/fuzzywuzzy"; - license = licenses.gpl2; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/fvcore/default.nix b/pkgs/development/python-modules/fvcore/default.nix index a3f359bad457..7f094b1a70b1 100644 --- a/pkgs/development/python-modules/fvcore/default.nix +++ b/pkgs/development/python-modules/fvcore/default.nix @@ -54,10 +54,10 @@ buildPythonPackage { optional-dependencies = optional-dependencies; - meta = with lib; { + meta = { description = "Collection of common code that's shared among different research projects in FAIR computer vision team"; homepage = "https://github.com/facebookresearch/fvcore"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/fvs/default.nix b/pkgs/development/python-modules/fvs/default.nix index be14a7e56490..23ca56882968 100644 --- a/pkgs/development/python-modules/fvs/default.nix +++ b/pkgs/development/python-modules/fvs/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fvs" ]; - meta = with lib; { + meta = { description = "File Versioning System with hash comparison and data storage to create unlinked states that can be deleted"; mainProgram = "fvs"; homepage = "https://github.com/mirkobrombin/FVS"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fx2/default.nix b/pkgs/development/python-modules/fx2/default.nix index 7e99404d942a..5f040fbb4d3c 100644 --- a/pkgs/development/python-modules/fx2/default.nix +++ b/pkgs/development/python-modules/fx2/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { # installCheckPhase tries to run build_ext again and there are no tests doCheck = false; - meta = with lib; { + meta = { description = "Chip support package for Cypress EZ-USB FX2 series microcontrollers"; mainProgram = "fx2tool"; homepage = "https://github.com/whitequark/libfx2"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fyta-cli/default.nix b/pkgs/development/python-modules/fyta-cli/default.nix index 4c92997a7fa8..d2212c275a26 100644 --- a/pkgs/development/python-modules/fyta-cli/default.nix +++ b/pkgs/development/python-modules/fyta-cli/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pytestFlags = [ "--snapshot-update" ]; - meta = with lib; { + meta = { description = "Module to access the FYTA API"; homepage = "https://github.com/dontinelli/fyta_cli"; changelog = "https://github.com/dontinelli/fyta_cli/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/g2pkk/default.nix b/pkgs/development/python-modules/g2pkk/default.nix index 1f08e82b272f..f9e16e9e2a1d 100644 --- a/pkgs/development/python-modules/g2pkk/default.nix +++ b/pkgs/development/python-modules/g2pkk/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Cross-platform g2p for Korean"; homepage = "https://github.com/harmlessman/g2pkk"; - license = licenses.asl20; - teams = [ teams.tts ]; + license = lib.licenses.asl20; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/galois/default.nix b/pkgs/development/python-modules/galois/default.nix index dcc383b04188..4931d8b2e7b1 100644 --- a/pkgs/development/python-modules/galois/default.nix +++ b/pkgs/development/python-modules/galois/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "galois" ]; - meta = with lib; { + meta = { description = "Python package that extends NumPy arrays to operate over finite fields"; homepage = "https://github.com/mhostetter/galois"; changelog = "https://github.com/mhostetter/galois/releases/tag/${src.tag}"; downloadPage = "https://github.com/mhostetter/galois/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ chrispattison ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chrispattison ]; }; } diff --git a/pkgs/development/python-modules/gamble/default.nix b/pkgs/development/python-modules/gamble/default.nix index e063be70c3f0..2f7f5ed5afa2 100644 --- a/pkgs/development/python-modules/gamble/default.nix +++ b/pkgs/development/python-modules/gamble/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gamble" ]; - meta = with lib; { + meta = { description = "Collection of gambling classes/tools"; homepage = "https://github.com/jpetrucciani/gamble"; changelog = "https://github.com/jpetrucciani/gamble/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/gaphas/default.nix b/pkgs/development/python-modules/gaphas/default.nix index f9ae6c26140b..2623aa5ab48f 100644 --- a/pkgs/development/python-modules/gaphas/default.nix +++ b/pkgs/development/python-modules/gaphas/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gaphas" ]; - meta = with lib; { + meta = { description = "GTK+ based diagramming widget"; homepage = "https://github.com/gaphor/gaphas"; changelog = "https://github.com/gaphor/gaphas/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gardena-bluetooth/default.nix b/pkgs/development/python-modules/gardena-bluetooth/default.nix index c2265d3cf9dc..f72d7591abbd 100644 --- a/pkgs/development/python-modules/gardena-bluetooth/default.nix +++ b/pkgs/development/python-modules/gardena-bluetooth/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gardena_bluetooth" ]; - meta = with lib; { + meta = { description = "Module for interacting with Gardena Bluetooth"; homepage = "https://github.com/elupus/gardena-bluetooth"; changelog = "https://github.com/elupus/gardena-bluetooth/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/garminconnect-aio/default.nix b/pkgs/development/python-modules/garminconnect-aio/default.nix index 362ffd393e4e..93a3704ecba9 100644 --- a/pkgs/development/python-modules/garminconnect-aio/default.nix +++ b/pkgs/development/python-modules/garminconnect-aio/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "garminconnect_aio" ]; - meta = with lib; { + meta = { description = "Python module to interact with Garmin Connect"; homepage = "https://github.com/cyberjunky/python-garminconnect-aio"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/garminconnect/default.nix b/pkgs/development/python-modules/garminconnect/default.nix index 75bd93bdcb9d..3ed99ab97c4f 100644 --- a/pkgs/development/python-modules/garminconnect/default.nix +++ b/pkgs/development/python-modules/garminconnect/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "garminconnect" ]; - meta = with lib; { + meta = { description = "Garmin Connect Python API wrapper"; homepage = "https://github.com/cyberjunky/python-garminconnect"; changelog = "https://github.com/cyberjunky/python-garminconnect/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/garth/default.nix b/pkgs/development/python-modules/garth/default.nix index 633956e1d73b..6f8f4c71c07a 100644 --- a/pkgs/development/python-modules/garth/default.nix +++ b/pkgs/development/python-modules/garth/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "test_weekly" ]; - meta = with lib; { + meta = { description = "Garmin SSO auth and connect client"; homepage = "https://github.com/matin/garth"; changelog = "https://github.com/matin/garth/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gassist-text/default.nix b/pkgs/development/python-modules/gassist-text/default.nix index a0590da1fc7f..eaa73205fff7 100644 --- a/pkgs/development/python-modules/gassist-text/default.nix +++ b/pkgs/development/python-modules/gassist-text/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gassist_text" ]; - meta = with lib; { + meta = { description = "Module for interacting with Google Assistant API via text"; homepage = "https://github.com/tronikos/gassist_text"; changelog = "https://github.com/tronikos/gassist_text/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gatt/default.nix b/pkgs/development/python-modules/gatt/default.nix index 5a928d5c7991..0535985b324e 100644 --- a/pkgs/development/python-modules/gatt/default.nix +++ b/pkgs/development/python-modules/gatt/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gatt" ]; - meta = with lib; { + meta = { description = "Bluetooth (Generic Attribute Profile) GATT SDK for Python"; mainProgram = "gattctl"; homepage = "https://github.com/getsenic/gatt-python/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gattlib/default.nix b/pkgs/development/python-modules/gattlib/default.nix index a3f3a0d16e90..82aa2b4e3df8 100644 --- a/pkgs/development/python-modules/gattlib/default.nix +++ b/pkgs/development/python-modules/gattlib/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gattlib" ]; - meta = with lib; { + meta = { description = "Python library to use the GATT Protocol for Bluetooth LE devices"; homepage = "https://github.com/oscaracena/pygattlib"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/gb-io/default.nix b/pkgs/development/python-modules/gb-io/default.nix index 66325b22dd17..2bd51e80fa1c 100644 --- a/pkgs/development/python-modules/gb-io/default.nix +++ b/pkgs/development/python-modules/gb-io/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gb_io" ]; - meta = with lib; { + meta = { homepage = "https://github.com/althonos/gb-io.py"; description = "Python interface to gb-io, a fast GenBank parser written in Rust"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ dlesl ]; }; } diff --git a/pkgs/development/python-modules/gcal-sync/default.nix b/pkgs/development/python-modules/gcal-sync/default.nix index 36437526bf57..f0c86eb783ac 100644 --- a/pkgs/development/python-modules/gcal-sync/default.nix +++ b/pkgs/development/python-modules/gcal-sync/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gcal_sync" ]; - meta = with lib; { + meta = { description = "Library for syncing Google Calendar to local storage"; homepage = "https://github.com/allenporter/gcal_sync"; changelog = "https://github.com/allenporter/gcal_sync/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/gcodepy/default.nix b/pkgs/development/python-modules/gcodepy/default.nix index 6e62d9bb3bf6..1f39766b4155 100644 --- a/pkgs/development/python-modules/gcodepy/default.nix +++ b/pkgs/development/python-modules/gcodepy/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gcodepy" ]; - meta = with lib; { + meta = { description = "G-code generator for 3D printers that use Marlin Firmware"; homepage = "https://github.com/rmeno12/gcodepy"; changelog = "https://github.com/rmeno12/gcodepy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ n00b0ss ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ n00b0ss ]; }; } diff --git a/pkgs/development/python-modules/gcsa/default.nix b/pkgs/development/python-modules/gcsa/default.nix index 96e7070e5e06..cf1b127dce3a 100644 --- a/pkgs/development/python-modules/gcsa/default.nix +++ b/pkgs/development/python-modules/gcsa/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "gcsa" ]; - meta = with lib; { + meta = { description = "Pythonic wrapper for the Google Calendar API"; homepage = "https://github.com/kuzmoyev/google-calendar-simple-api"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/gdata/default.nix b/pkgs/development/python-modules/gdata/default.nix index e572a20f30f6..d35778905e3f 100644 --- a/pkgs/development/python-modules/gdata/default.nix +++ b/pkgs/development/python-modules/gdata/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # Fails with "error: invalid command 'test'" doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/google/gdata-python-client"; description = "Python client library for Google data APIs"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/gdb-pt-dump/default.nix b/pkgs/development/python-modules/gdb-pt-dump/default.nix index 26bcc50a1c9f..ea6a379bf531 100644 --- a/pkgs/development/python-modules/gdb-pt-dump/default.nix +++ b/pkgs/development/python-modules/gdb-pt-dump/default.nix @@ -21,10 +21,10 @@ buildPythonPackage { pythonImportsCheck = [ "pt" ]; - meta = with lib; { + meta = { description = "GDB script to enhance debugging of a QEMU-based virtual machine"; homepage = "https://github.com/martinradev/gdb-pt-dump"; - license = licenses.mit; - maintainers = with maintainers; [ msanft ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ msanft ]; }; } diff --git a/pkgs/development/python-modules/gdown/default.nix b/pkgs/development/python-modules/gdown/default.nix index 6077411fdeb3..200735a5279e 100644 --- a/pkgs/development/python-modules/gdown/default.nix +++ b/pkgs/development/python-modules/gdown/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gdown" ]; - meta = with lib; { + meta = { description = "CLI tool for downloading large files from Google Drive"; mainProgram = "gdown"; homepage = "https://github.com/wkentaro/gdown"; changelog = "https://github.com/wkentaro/gdown/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ breakds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ breakds ]; }; } diff --git a/pkgs/development/python-modules/ge25519/default.nix b/pkgs/development/python-modules/ge25519/default.nix index 695dbe7235dd..b119bc32a53a 100644 --- a/pkgs/development/python-modules/ge25519/default.nix +++ b/pkgs/development/python-modules/ge25519/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ge25519" ]; - meta = with lib; { + meta = { description = "Python implementation of Ed25519 group elements and operations"; homepage = "https://github.com/nthparty/ge25519"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gehomesdk/default.nix b/pkgs/development/python-modules/gehomesdk/default.nix index bcfbf5e8dad5..492f239d5ab7 100644 --- a/pkgs/development/python-modules/gehomesdk/default.nix +++ b/pkgs/development/python-modules/gehomesdk/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gehomesdk" ]; - meta = with lib; { + meta = { description = "Python SDK for GE smart appliances"; homepage = "https://github.com/simbaja/gehome"; changelog = "https://github.com/simbaja/gehome/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "gehome-appliance-data"; }; } diff --git a/pkgs/development/python-modules/gekitchen/default.nix b/pkgs/development/python-modules/gekitchen/default.nix index e5fa2ed0db41..144a91c7b09f 100644 --- a/pkgs/development/python-modules/gekitchen/default.nix +++ b/pkgs/development/python-modules/gekitchen/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gekitchen" ]; - meta = with lib; { + meta = { description = "Python SDK for GE smart appliances"; homepage = "https://github.com/ajmarks/gekitchen"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gekko/default.nix b/pkgs/development/python-modules/gekko/default.nix index e5e6776b4afa..9a965e516222 100644 --- a/pkgs/development/python-modules/gekko/default.nix +++ b/pkgs/development/python-modules/gekko/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gekko" ]; - meta = with lib; { + meta = { description = "Module for machine learning and optimization"; homepage = "https://github.com/BYU-PRISM/GEKKO"; changelog = "https://github.com/BYU-PRISM/GEKKO/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ BatteredBunny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ BatteredBunny ]; }; } diff --git a/pkgs/development/python-modules/gemfileparser/default.nix b/pkgs/development/python-modules/gemfileparser/default.nix index 057898dded4e..84fae97400db 100644 --- a/pkgs/development/python-modules/gemfileparser/default.nix +++ b/pkgs/development/python-modules/gemfileparser/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gemfileparser" ]; - meta = with lib; { + meta = { description = "Library to parse Ruby Gemfile, .gemspec and Cocoapod .podspec file using Python"; homepage = "https://github.com/gemfileparser/gemfileparser"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit ]; diff --git a/pkgs/development/python-modules/gemfileparser2/default.nix b/pkgs/development/python-modules/gemfileparser2/default.nix index de981df2e4aa..ff29e088f57a 100644 --- a/pkgs/development/python-modules/gemfileparser2/default.nix +++ b/pkgs/development/python-modules/gemfileparser2/default.nix @@ -31,14 +31,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "gemfileparser2" ]; - meta = with lib; { + meta = { description = "Library to parse Rubygem gemspec and Gemfile files"; homepage = "https://github.com/aboutcode-org/gemfileparser2"; changelog = "https://github.com/aboutcode-org/gemfileparser2/blob/v${version}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ mit # or gpl3Plus ]; - maintainers = with maintainers; [ harvidsen ]; + maintainers = with lib.maintainers; [ harvidsen ]; }; } diff --git a/pkgs/development/python-modules/genanki/default.nix b/pkgs/development/python-modules/genanki/default.nix index 0d3371813e5d..76417631dec1 100644 --- a/pkgs/development/python-modules/genanki/default.nix +++ b/pkgs/development/python-modules/genanki/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "genanki" ]; - meta = with lib; { + meta = { description = "Generate Anki decks programmatically"; homepage = "https://github.com/kerrickstaley/genanki"; - license = licenses.mit; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index ede3ebd541a9..d8b67a43d696 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "generic" ]; - meta = with lib; { + meta = { description = "Generic programming (Multiple dispatch) library for Python"; homepage = "https://github.com/gaphor/generic"; changelog = "https://github.com/gaphor/generic/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/geniushub-client/default.nix b/pkgs/development/python-modules/geniushub-client/default.nix index 2ef2373e755a..b04ef559ea50 100644 --- a/pkgs/development/python-modules/geniushub-client/default.nix +++ b/pkgs/development/python-modules/geniushub-client/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geniushubclient" ]; - meta = with lib; { + meta = { description = "Module to interact with Genius Hub systems"; homepage = "https://github.com/manzanotti/geniushub-client"; changelog = "https://github.com/manzanotti/geniushub-client/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/genome-collector/default.nix b/pkgs/development/python-modules/genome-collector/default.nix index 75d0afc32b79..be6ac3dd232b 100644 --- a/pkgs/development/python-modules/genome-collector/default.nix +++ b/pkgs/development/python-modules/genome-collector/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "genome_collector" ]; - meta = with lib; { + meta = { description = "Genomes and build BLAST/Bowtie indexes in Python"; homepage = "https://github.com/Edinburgh-Genome-Foundry/genome_collector"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/genpy/default.nix b/pkgs/development/python-modules/genpy/default.nix index 90686b3ec470..5591dfa861bb 100644 --- a/pkgs/development/python-modules/genpy/default.nix +++ b/pkgs/development/python-modules/genpy/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { numpy ]; - meta = with lib; { + meta = { description = "C/C++ source generation from an AST"; homepage = "https://github.com/inducer/genpy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/genshi/default.nix b/pkgs/development/python-modules/genshi/default.nix index 593cde34af38..99b18bca47c8 100644 --- a/pkgs/development/python-modules/genshi/default.nix +++ b/pkgs/development/python-modules/genshi/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { description = "Python components for parsing HTML, XML and other textual content"; longDescription = '' Python library that provides an integrated set of components for @@ -34,6 +34,6 @@ buildPythonPackage rec { content for output generation on the web. ''; homepage = "https://genshi.edgewall.org/"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/gentools/default.nix b/pkgs/development/python-modules/gentools/default.nix index 14e68d043e95..a74dafe7b0f9 100644 --- a/pkgs/development/python-modules/gentools/default.nix +++ b/pkgs/development/python-modules/gentools/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gentools" ]; - meta = with lib; { + meta = { description = "Tools for generators, generator functions, and generator-based coroutines"; homepage = "https://gentools.readthedocs.io/"; changelog = "https://github.com/ariebovenberg/gentools/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/genzshcomp/default.nix b/pkgs/development/python-modules/genzshcomp/default.nix index 58e267927773..cb3520efdd28 100644 --- a/pkgs/development/python-modules/genzshcomp/default.nix +++ b/pkgs/development/python-modules/genzshcomp/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { buildInputs = [ setuptools ]; - meta = with lib; { + meta = { description = "Automatically generated zsh completion function for Python's option parser modules"; mainProgram = "genzshcomp"; homepage = "https://bitbucket.org/hhatto/genzshcomp/"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/geoalchemy2/default.nix b/pkgs/development/python-modules/geoalchemy2/default.nix index 22f9b9ab8463..c77b1f743ec5 100644 --- a/pkgs/development/python-modules/geoalchemy2/default.nix +++ b/pkgs/development/python-modules/geoalchemy2/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { shapely = [ shapely ]; }; - meta = with lib; { + meta = { description = "Toolkit for working with spatial databases"; homepage = "https://geoalchemy-2.readthedocs.io/"; changelog = "https://github.com/geoalchemy/geoalchemy2/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/geoarrow-c/default.nix b/pkgs/development/python-modules/geoarrow-c/default.nix index ae46efd013bb..d406a4e321cf 100644 --- a/pkgs/development/python-modules/geoarrow-c/default.nix +++ b/pkgs/development/python-modules/geoarrow-c/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geoarrow.c" ]; - meta = with lib; { + meta = { description = "Experimental C and C++ implementation of the GeoArrow specification"; homepage = "https://github.com/geoarrow/geoarrow-c"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud ]; teams = [ lib.teams.geospatial ]; diff --git a/pkgs/development/python-modules/geoarrow-pandas/default.nix b/pkgs/development/python-modules/geoarrow-pandas/default.nix index 13ce64540391..80381f9c58ea 100644 --- a/pkgs/development/python-modules/geoarrow-pandas/default.nix +++ b/pkgs/development/python-modules/geoarrow-pandas/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geoarrow.pandas" ]; - meta = with lib; { + meta = { description = "Python implementation of the GeoArrow specification"; homepage = "https://github.com/geoarrow/geoarrow-python"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud ]; teams = [ lib.teams.geospatial ]; diff --git a/pkgs/development/python-modules/geoarrow-pyarrow/default.nix b/pkgs/development/python-modules/geoarrow-pyarrow/default.nix index 87ac659eeacb..4d3c6737bdd8 100644 --- a/pkgs/development/python-modules/geoarrow-pyarrow/default.nix +++ b/pkgs/development/python-modules/geoarrow-pyarrow/default.nix @@ -71,11 +71,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geoarrow.pyarrow" ]; - meta = with lib; { + meta = { description = "PyArrow implementation of geospatial data types"; homepage = "https://github.com/geoarrow/geoarrow-python"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud ]; teams = [ lib.teams.geospatial ]; diff --git a/pkgs/development/python-modules/geoarrow-types/default.nix b/pkgs/development/python-modules/geoarrow-types/default.nix index 6b142da9cfba..63c6e716eeda 100644 --- a/pkgs/development/python-modules/geoarrow-types/default.nix +++ b/pkgs/development/python-modules/geoarrow-types/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geoarrow.types" ]; - meta = with lib; { + meta = { description = "PyArrow types for geoarrow"; homepage = "https://github.com/geoarrow/geoarrow-python"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud ]; }; diff --git a/pkgs/development/python-modules/geocachingapi/default.nix b/pkgs/development/python-modules/geocachingapi/default.nix index d0a67315949c..0bb8b8db2af5 100644 --- a/pkgs/development/python-modules/geocachingapi/default.nix +++ b/pkgs/development/python-modules/geocachingapi/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geocachingapi" ]; - meta = with lib; { + meta = { description = "Python API to control the Geocaching API"; homepage = "https://github.com/Sholofly/geocachingapi-python"; changelog = "https://github.com/Sholofly/geocachingapi-python/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/geocoder/default.nix b/pkgs/development/python-modules/geocoder/default.nix index 8703ba774d46..d7518614b06a 100644 --- a/pkgs/development/python-modules/geocoder/default.nix +++ b/pkgs/development/python-modules/geocoder/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "geocoder" ]; - meta = with lib; { + meta = { description = "Module for geocoding"; homepage = "https://pypi.org/project/geocoder/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/geographiclib/default.nix b/pkgs/development/python-modules/geographiclib/default.nix index 4d91f5fb8a2e..34661b6b3c9e 100644 --- a/pkgs/development/python-modules/geographiclib/default.nix +++ b/pkgs/development/python-modules/geographiclib/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "geographiclib" ]; - meta = with lib; { + meta = { homepage = "https://geographiclib.sourceforge.io"; description = "Algorithms for geodesics (Karney, 2013) for solving the direct and inverse problems for an ellipsoid of revolution"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/geoip2/default.nix b/pkgs/development/python-modules/geoip2/default.nix index 0a397725ac9c..381bd70ca0a8 100644 --- a/pkgs/development/python-modules/geoip2/default.nix +++ b/pkgs/development/python-modules/geoip2/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { ] ++ lib.optionals (pythonAtLeast "3.10") [ "test_request" ]; - meta = with lib; { + meta = { description = "GeoIP2 webservice client and database reader"; homepage = "https://github.com/maxmind/GeoIP2-python"; changelog = "https://github.com/maxmind/GeoIP2-python/blob/v${version}/HISTORY.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/geojson-client/default.nix b/pkgs/development/python-modules/geojson-client/default.nix index 2bd095e715ba..66b8bbd75c28 100644 --- a/pkgs/development/python-modules/geojson-client/default.nix +++ b/pkgs/development/python-modules/geojson-client/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geojson_client" ]; - meta = with lib; { + meta = { description = "Python module for convenient access to GeoJSON feeds"; homepage = "https://github.com/exxamalte/python-geojson-client"; changelog = "https://github.com/exxamalte/python-geojson-client/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/geomet/default.nix b/pkgs/development/python-modules/geomet/default.nix index e3d44a305334..72979386a2f4 100644 --- a/pkgs/development/python-modules/geomet/default.nix +++ b/pkgs/development/python-modules/geomet/default.nix @@ -31,13 +31,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "geomet" ]; - meta = with lib; { + meta = { description = "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary) and vice versa"; mainProgram = "geomet"; homepage = "https://github.com/geomet/geomet"; changelog = "https://github.com/geomet/geomet/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ris ]; }; diff --git a/pkgs/development/python-modules/geometric/default.nix b/pkgs/development/python-modules/geometric/default.nix index f773239c6118..fad9b76079c7 100644 --- a/pkgs/development/python-modules/geometric/default.nix +++ b/pkgs/development/python-modules/geometric/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Geometry optimization code for molecular structures"; mainProgram = "geometric-optimize"; homepage = "https://github.com/leeping/geomeTRIC"; - license = [ licenses.bsd3 ]; - maintainers = [ maintainers.markuskowa ]; + license = [ lib.licenses.bsd3 ]; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/development/python-modules/geopandas/default.nix b/pkgs/development/python-modules/geopandas/default.nix index a7f5a5012ac7..210f522713db 100644 --- a/pkgs/development/python-modules/geopandas/default.nix +++ b/pkgs/development/python-modules/geopandas/default.nix @@ -95,11 +95,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geopandas" ]; - meta = with lib; { + meta = { description = "Python geospatial data analysis framework"; homepage = "https://geopandas.org"; changelog = "https://github.com/geopandas/geopandas/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - teams = [ teams.geospatial ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/development/python-modules/geopy/default.nix b/pkgs/development/python-modules/geopy/default.nix index 314918de4625..e77bedc01c8f 100644 --- a/pkgs/development/python-modules/geopy/default.nix +++ b/pkgs/development/python-modules/geopy/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { homepage = "https://github.com/geopy/geopy"; description = "Python Geocoding Toolbox"; changelog = "https://github.com/geopy/geopy/releases/tag/${version}"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/georss-generic-client/default.nix b/pkgs/development/python-modules/georss-generic-client/default.nix index d0ac06cf8122..bc8489152f31 100644 --- a/pkgs/development/python-modules/georss-generic-client/default.nix +++ b/pkgs/development/python-modules/georss-generic-client/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "georss_generic_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing generic GeoRSS feeds"; homepage = "https://github.com/exxamalte/python-georss-generic-client"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix b/pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix index d94fbbdf7a66..10f8fadc5c59 100644 --- a/pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix +++ b/pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "georss_ingv_centro_nazionale_terremoti_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing the INGV Centro Nazionale Terremoti GeoRSS feed"; homepage = "https://github.com/exxamalte/python-georss-ingv-centro-nazionale-terremoti-client"; changelog = "https://github.com/exxamalte/python-georss-ingv-centro-nazionale-terremoti-client/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; broken = true; # Sends a dict to georss_client.xml_parser which expects a string or character stream }; } diff --git a/pkgs/development/python-modules/georss-nrcan-earthquakes-client/default.nix b/pkgs/development/python-modules/georss-nrcan-earthquakes-client/default.nix index 299d78bd3c82..2b4f0a243178 100644 --- a/pkgs/development/python-modules/georss-nrcan-earthquakes-client/default.nix +++ b/pkgs/development/python-modules/georss-nrcan-earthquakes-client/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "georss_nrcan_earthquakes_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing Natural Resources Canada Earthquakes feed"; homepage = "https://github.com/exxamalte/python-georss-nrcan-earthquakes-client"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/georss-qld-bushfire-alert-client/default.nix b/pkgs/development/python-modules/georss-qld-bushfire-alert-client/default.nix index c149aa4c7705..ae5469df078e 100644 --- a/pkgs/development/python-modules/georss-qld-bushfire-alert-client/default.nix +++ b/pkgs/development/python-modules/georss-qld-bushfire-alert-client/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "georss_qld_bushfire_alert_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing Queensland Bushfire Alert feed"; homepage = "https://github.com/exxamalte/python-georss-qld-bushfire-alert-client"; changelog = "https://github.com/exxamalte/python-georss-qld-bushfire-alert-client/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/georss-tfs-incidents-client/default.nix b/pkgs/development/python-modules/georss-tfs-incidents-client/default.nix index 764fc3fc92f8..fb4adec4b512 100644 --- a/pkgs/development/python-modules/georss-tfs-incidents-client/default.nix +++ b/pkgs/development/python-modules/georss-tfs-incidents-client/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "georss_tfs_incidents_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing Tasmania Fire Service Incidents feed"; homepage = "https://github.com/exxamalte/python-georss-tfs-incidents-client"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/georss-wa-dfes-client/default.nix b/pkgs/development/python-modules/georss-wa-dfes-client/default.nix index d686f5049aef..3fcb003e5ae5 100644 --- a/pkgs/development/python-modules/georss-wa-dfes-client/default.nix +++ b/pkgs/development/python-modules/georss-wa-dfes-client/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "georss_wa_dfes_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing WA Department of Fire and Emergency Services (DFES) feed"; homepage = "https://github.com/exxamalte/python-georss-wa-dfes-client"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gerbonara/default.nix b/pkgs/development/python-modules/gerbonara/default.nix index ebef9f4a30a5..6294c13c7794 100644 --- a/pkgs/development/python-modules/gerbonara/default.nix +++ b/pkgs/development/python-modules/gerbonara/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Pythonic library for reading/modifying/writing Gerber/Excellon/IPC-356 files"; mainProgram = "gerbonara"; homepage = "https://github.com/jaseg/gerbonara"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ wulfsta ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ wulfsta ]; }; } diff --git a/pkgs/development/python-modules/get-video-properties/default.nix b/pkgs/development/python-modules/get-video-properties/default.nix index c6866c361872..55628d781f5a 100644 --- a/pkgs/development/python-modules/get-video-properties/default.nix +++ b/pkgs/development/python-modules/get-video-properties/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { pythonImportsCheck = [ "videoprops" ]; - meta = with lib; { + meta = { description = "Get video properties"; homepage = "https://github.com/mvasilkov/python-get-video-properties"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/getjump/default.nix b/pkgs/development/python-modules/getjump/default.nix index 0dd273e3d306..73d1272760be 100644 --- a/pkgs/development/python-modules/getjump/default.nix +++ b/pkgs/development/python-modules/getjump/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { # all the tests talk to the internet doCheck = false; - meta = with lib; { + meta = { description = "Get and save images from jump web viewer"; homepage = "https://github.com/eggplants/getjump"; changelog = "https://github.com/eggplants/getjump/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "jget"; }; diff --git a/pkgs/development/python-modules/getkey/default.nix b/pkgs/development/python-modules/getkey/default.nix index 98863e84816a..a4c6e406f49b 100644 --- a/pkgs/development/python-modules/getkey/default.nix +++ b/pkgs/development/python-modules/getkey/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Read single characters and key-strokes"; homepage = "https://github.com/kcsaff/getkey"; - license = licenses.mit; - maintainers = [ maintainers.symphorien ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.symphorien ]; }; } diff --git a/pkgs/development/python-modules/getmac/default.nix b/pkgs/development/python-modules/getmac/default.nix index 4ace186fccb5..101f1b676608 100644 --- a/pkgs/development/python-modules/getmac/default.nix +++ b/pkgs/development/python-modules/getmac/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "getmac" ]; - meta = with lib; { + meta = { description = "Python package to get the MAC address of network interfaces and hosts on the local network"; homepage = "https://github.com/GhostofGoes/getmac"; changelog = "https://github.com/GhostofGoes/getmac/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "getmac"; }; diff --git a/pkgs/development/python-modules/gevent-socketio/default.nix b/pkgs/development/python-modules/gevent-socketio/default.nix index aa592a876e1b..f92c3a3d3d15 100644 --- a/pkgs/development/python-modules/gevent-socketio/default.nix +++ b/pkgs/development/python-modules/gevent-socketio/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "socketio" ]; - meta = with lib; { + meta = { description = "SocketIO server based on the Gevent pywsgi server"; homepage = "https://github.com/abourget/gevent-socketio"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gevent-websocket/default.nix b/pkgs/development/python-modules/gevent-websocket/default.nix index a93c3dc6b925..73e4d5ae449f 100644 --- a/pkgs/development/python-modules/gevent-websocket/default.nix +++ b/pkgs/development/python-modules/gevent-websocket/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "geventwebsocket" ]; - meta = with lib; { + meta = { description = "Websocket handler for the gevent pywsgi server"; homepage = "https://www.gitlab.com/noppo/gevent-websocket"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gevent/default.nix b/pkgs/development/python-modules/gevent/default.nix index 4158ef056ad5..195255e652b7 100644 --- a/pkgs/development/python-modules/gevent/default.nix +++ b/pkgs/development/python-modules/gevent/default.nix @@ -74,11 +74,11 @@ buildPythonPackage rec { GEVENTSETUP_EMBED = "0"; - meta = with lib; { + meta = { description = "Coroutine-based networking library"; homepage = "http://www.gevent.org/"; - license = licenses.mit; - maintainers = with maintainers; [ bjornfor ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bjornfor ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/geventhttpclient/default.nix b/pkgs/development/python-modules/geventhttpclient/default.nix index 8e6f94e0bef7..a80b4602936c 100644 --- a/pkgs/development/python-modules/geventhttpclient/default.nix +++ b/pkgs/development/python-modules/geventhttpclient/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "geventhttpclient" ]; - meta = with lib; { + meta = { homepage = "https://github.com/geventhttpclient/geventhttpclient"; description = "High performance, concurrent HTTP client library using gevent"; changelog = "https://github.com/geventhttpclient/geventhttpclient/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/gfal2-python/default.nix b/pkgs/development/python-modules/gfal2-python/default.nix index 9447781cfb89..14be7fc6a6a0 100644 --- a/pkgs/development/python-modules/gfal2-python/default.nix +++ b/pkgs/development/python-modules/gfal2-python/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { } // lib.optionalAttrs (gfal2-util != null) gfal2-util.tests or { }; }; - meta = with lib; { + meta = { description = "Python binding for gfal2"; homepage = "https://github.com/cern-fts/gfal2-python"; - license = licenses.asl20; - maintainers = with maintainers; [ ShamrockLee ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; } diff --git a/pkgs/development/python-modules/gfal2-util/default.nix b/pkgs/development/python-modules/gfal2-util/default.nix index 7485f05c4dc9..408a265a5e0a 100644 --- a/pkgs/development/python-modules/gfal2-util/default.nix +++ b/pkgs/development/python-modules/gfal2-util/default.nix @@ -33,11 +33,11 @@ pythonImportsCheck = [ "gfal2_util" ]; - meta = with lib; { + meta = { description = "CLI for gfal2"; homepage = "https://github.com/cern-fts/gfal2-utils"; - license = licenses.asl20; - maintainers = with maintainers; [ ShamrockLee ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ShamrockLee ]; }; }).overrideAttrs ( diff --git a/pkgs/development/python-modules/gflanguages/default.nix b/pkgs/development/python-modules/gflanguages/default.nix index 170b92c90cba..2a05af41a4bc 100644 --- a/pkgs/development/python-modules/gflanguages/default.nix +++ b/pkgs/development/python-modules/gflanguages/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_sample_texts_are_in_script" ]; - meta = with lib; { + meta = { description = "Python library for Google Fonts language metadata"; homepage = "https://github.com/googlefonts/lang"; changelog = "https://github.com/googlefonts/lang/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/gfsubsets/default.nix b/pkgs/development/python-modules/gfsubsets/default.nix index ade037605dc2..8572b3182cc9 100644 --- a/pkgs/development/python-modules/gfsubsets/default.nix +++ b/pkgs/development/python-modules/gfsubsets/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "gfsubsets" ]; - meta = with lib; { + meta = { description = "Codepoint definitions for the Google Fonts subsetter"; homepage = "https://github.com/googlefonts/nam-files"; changelog = "https://github.com/googlefonts/nam-files/releases/tag/${gitTag}"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/gftools/default.nix b/pkgs/development/python-modules/gftools/default.nix index f7d5c5c8f6c2..18781ccc25b7 100644 --- a/pkgs/development/python-modules/gftools/default.nix +++ b/pkgs/development/python-modules/gftools/default.nix @@ -202,12 +202,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gftools" ]; - meta = with lib; { + meta = { description = "Misc tools for working with the Google Fonts library"; homepage = "https://github.com/googlefonts/gftools"; changelog = "https://github.com/googlefonts/gftools/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "gftools"; - maintainers = with maintainers; [ jopejoe1 ]; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/ghapi/default.nix b/pkgs/development/python-modules/ghapi/default.nix index e61eb3673090..355f421e8128 100644 --- a/pkgs/development/python-modules/ghapi/default.nix +++ b/pkgs/development/python-modules/ghapi/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ghapi" ]; - meta = with lib; { + meta = { description = "Python interface to GitHub's API"; homepage = "https://github.com/fastai/ghapi"; changelog = "https://github.com/fastai/ghapi/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ghdiff/default.nix b/pkgs/development/python-modules/ghdiff/default.nix index 6930655869d0..f200f0e17e5c 100644 --- a/pkgs/development/python-modules/ghdiff/default.nix +++ b/pkgs/development/python-modules/ghdiff/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { chardet ]; - meta = with lib; { + meta = { homepage = "https://github.com/kilink/ghdiff"; - license = licenses.mit; + license = lib.licenses.mit; description = "Generate Github-style HTML for unified diffs"; mainProgram = "ghdiff"; - maintainers = [ maintainers.mic92 ]; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/python-modules/ghp-import/default.nix b/pkgs/development/python-modules/ghp-import/default.nix index f0e393808132..a9b02f1e9ae7 100644 --- a/pkgs/development/python-modules/ghp-import/default.nix +++ b/pkgs/development/python-modules/ghp-import/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ghp_import" ]; - meta = with lib; { + meta = { description = "Copy your docs directly to the gh-pages branch"; mainProgram = "ghp-import"; homepage = "https://github.com/c-w/ghp-import"; - license = licenses.asl20; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/ghrepo-stats/default.nix b/pkgs/development/python-modules/ghrepo-stats/default.nix index f9fb5f2e166d..e7ae75419665 100644 --- a/pkgs/development/python-modules/ghrepo-stats/default.nix +++ b/pkgs/development/python-modules/ghrepo-stats/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ghrepo_stats" ]; - meta = with lib; { + meta = { description = "Python module and CLI tool for GitHub repo statistics"; mainProgram = "show-ghstats"; homepage = "https://github.com/mrbean-bremen/ghrepo-stats"; changelog = "https://github.com/mrbean-bremen/ghrepo-stats/blob/v${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gibberish-detector/default.nix b/pkgs/development/python-modules/gibberish-detector/default.nix index 9e361e1cc81c..e30677548552 100644 --- a/pkgs/development/python-modules/gibberish-detector/default.nix +++ b/pkgs/development/python-modules/gibberish-detector/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gibberish_detector" ]; - meta = with lib; { + meta = { description = "Python module to detect gibberish strings"; mainProgram = "gibberish-detector"; homepage = "https://github.com/domanchi/gibberish-detector"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gidgethub/default.nix b/pkgs/development/python-modules/gidgethub/default.nix index d8ee3d1a1d40..edaa1367e3c5 100644 --- a/pkgs/development/python-modules/gidgethub/default.nix +++ b/pkgs/development/python-modules/gidgethub/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { "test_get" ]; - meta = with lib; { + meta = { description = "Async GitHub API library"; homepage = "https://github.com/brettcannon/gidgethub"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gin-config/default.nix b/pkgs/development/python-modules/gin-config/default.nix index 4259da579642..02517d1d61c1 100644 --- a/pkgs/development/python-modules/gin-config/default.nix +++ b/pkgs/development/python-modules/gin-config/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gin" ]; - meta = with lib; { + meta = { description = "Gin provides a lightweight configuration framework for Python, based on dependency injection"; homepage = "https://github.com/google/gin-config"; - license = licenses.asl20; - maintainers = with maintainers; [ jethro ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jethro ]; }; } diff --git a/pkgs/development/python-modules/gios/default.nix b/pkgs/development/python-modules/gios/default.nix index 493361e0829d..6d6942981b38 100644 --- a/pkgs/development/python-modules/gios/default.nix +++ b/pkgs/development/python-modules/gios/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gios" ]; - meta = with lib; { + meta = { description = "Python client for getting air quality data from GIOS"; homepage = "https://github.com/bieniu/gios"; changelog = "https://github.com/bieniu/gios/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gipc/default.nix b/pkgs/development/python-modules/gipc/default.nix index 0057cd455a36..d0c1bb7260aa 100644 --- a/pkgs/development/python-modules/gipc/default.nix +++ b/pkgs/development/python-modules/gipc/default.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { "test_write_closewrite_read" ]; - meta = with lib; { + meta = { description = "Gevent-cooperative child processes and IPC"; longDescription = '' Usage of Python's multiprocessing package in a gevent-powered @@ -65,7 +65,7 @@ buildPythonPackage rec { ''; homepage = "http://gehrcke.de/gipc"; changelog = "https://github.com/jgehrcke/gipc/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gistyc/default.nix b/pkgs/development/python-modules/gistyc/default.nix index 40b1177830cb..3cd715971e1f 100644 --- a/pkgs/development/python-modules/gistyc/default.nix +++ b/pkgs/development/python-modules/gistyc/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "gistyc" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ThomasAlbin/gistyc"; description = "Python based GitHub GIST management tool"; longDescription = '' @@ -36,7 +36,7 @@ buildPythonPackage rec { actions). Files are separated in GIST sections depending on the separation blocks. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/git-annex-adapter/default.nix b/pkgs/development/python-modules/git-annex-adapter/default.nix index de88fb53556c..f479c0fb2d8c 100644 --- a/pkgs/development/python-modules/git-annex-adapter/default.nix +++ b/pkgs/development/python-modules/git-annex-adapter/default.nix @@ -71,10 +71,10 @@ buildPythonPackage rec { "test_process_annex_metadata_batch" ]; - meta = with lib; { + meta = { homepage = "https://github.com/alpernebbi/git-annex-adapter"; description = "Call git-annex commands from Python"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/git-filter-repo/default.nix b/pkgs/development/python-modules/git-filter-repo/default.nix index a6dc430685f5..815fb3a5d341 100644 --- a/pkgs/development/python-modules/git-filter-repo/default.nix +++ b/pkgs/development/python-modules/git-filter-repo/default.nix @@ -43,15 +43,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "git_filter_repo" ]; - meta = with lib; { + meta = { description = "Quickly rewrite git repository history"; homepage = "https://github.com/newren/git-filter-repo"; changelog = "https://github.com/newren/git-filter-repo/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ mit # or gpl2Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aiotter fab ]; diff --git a/pkgs/development/python-modules/git-revise/default.nix b/pkgs/development/python-modules/git-revise/default.nix index d7ea652184bd..fe6abe1a9cb2 100644 --- a/pkgs/development/python-modules/git-revise/default.nix +++ b/pkgs/development/python-modules/git-revise/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { "test_gpgsign" ]; - meta = with lib; { + meta = { description = "Efficiently update, split, and rearrange git commits"; homepage = "https://github.com/mystor/git-revise"; changelog = "https://github.com/mystor/git-revise/blob/${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "git-revise"; - maintainers = with maintainers; [ _9999years ]; + maintainers = with lib.maintainers; [ _9999years ]; }; } diff --git a/pkgs/development/python-modules/git-sweep/default.nix b/pkgs/development/python-modules/git-sweep/default.nix index 2adc0a2c9ed0..87f4b5057edf 100644 --- a/pkgs/development/python-modules/git-sweep/default.nix +++ b/pkgs/development/python-modules/git-sweep/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gitsweep" ]; - meta = with lib; { + meta = { description = "Command-line tool that helps you clean up Git branches"; mainProgram = "git-sweep"; homepage = "https://github.com/arc90/git-sweep"; - license = licenses.mit; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/development/python-modules/git-url-parse/default.nix b/pkgs/development/python-modules/git-url-parse/default.nix index ac99c02958ea..dd28d7c36390 100644 --- a/pkgs/development/python-modules/git-url-parse/default.nix +++ b/pkgs/development/python-modules/git-url-parse/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Simple GIT URL parser"; homepage = "https://github.com/coala/git-url-parse"; changelog = "https://github.com/coala/git-url-parse/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/git-versioner/default.nix b/pkgs/development/python-modules/git-versioner/default.nix index ed2fc5ec732e..e05d20dad3d4 100644 --- a/pkgs/development/python-modules/git-versioner/default.nix +++ b/pkgs/development/python-modules/git-versioner/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "__version__" ]; - meta = with lib; { + meta = { description = "Manage current / next version for project"; homepage = "https://gitlab.com/alelec/__version__"; - license = licenses.mit; - maintainers = with maintainers; [ slotThe ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ slotThe ]; }; } diff --git a/pkgs/development/python-modules/gitdb/default.nix b/pkgs/development/python-modules/gitdb/default.nix index 9fc4855385d9..ce791de708c1 100644 --- a/pkgs/development/python-modules/gitdb/default.nix +++ b/pkgs/development/python-modules/gitdb/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "test_stream_reading" ]; - meta = with lib; { + meta = { description = "Git Object Database"; homepage = "https://github.com/gitpython-developers/gitdb"; changelog = "https://github.com/gitpython-developers/gitdb/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/github-to-sqlite/default.nix b/pkgs/development/python-modules/github-to-sqlite/default.nix index c1929acefd81..f0f16d86c5cf 100644 --- a/pkgs/development/python-modules/github-to-sqlite/default.nix +++ b/pkgs/development/python-modules/github-to-sqlite/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { disabledTests = [ "test_scrape_dependents" ]; - meta = with lib; { + meta = { description = "Save data from GitHub to a SQLite database"; mainProgram = "github-to-sqlite"; homepage = "https://github.com/dogsheep/github-to-sqlite"; - license = licenses.asl20; - maintainers = with maintainers; [ sarcasticadmin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sarcasticadmin ]; }; } diff --git a/pkgs/development/python-modules/github-webhook/default.nix b/pkgs/development/python-modules/github-webhook/default.nix index 5f01cdb0536f..db273c082ab5 100644 --- a/pkgs/development/python-modules/github-webhook/default.nix +++ b/pkgs/development/python-modules/github-webhook/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { # touches network doCheck = false; - meta = with lib; { + meta = { description = "Framework for writing webhooks for GitHub"; homepage = "https://github.com/bloomberg/python-github-webhook"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/gitignore-parser/default.nix b/pkgs/development/python-modules/gitignore-parser/default.nix index c3610d6b80c7..1f527c234fe0 100644 --- a/pkgs/development/python-modules/gitignore-parser/default.nix +++ b/pkgs/development/python-modules/gitignore-parser/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gitignore_parser" ]; - meta = with lib; { + meta = { description = "Spec-compliant gitignore parser"; homepage = "https://github.com/mherrmann/gitignore_parser"; changelog = "https://github.com/mherrmann/gitignore_parser/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gitlike-commands/default.nix b/pkgs/development/python-modules/gitlike-commands/default.nix index 256a2a7294c1..4fde2c3dc0c4 100644 --- a/pkgs/development/python-modules/gitlike-commands/default.nix +++ b/pkgs/development/python-modules/gitlike-commands/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gitlike_commands" ]; - meta = with lib; { + meta = { description = "Easy python module for creating git-style subcommand handling"; homepage = "https://github.com/unixorn/gitlike-commands"; changelog = "https://github.com/unixorn/gitlike-commands/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gitpython/default.nix b/pkgs/development/python-modules/gitpython/default.nix index 5bfda634e136..50e762e24ca0 100644 --- a/pkgs/development/python-modules/gitpython/default.nix +++ b/pkgs/development/python-modules/gitpython/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "git" ]; - meta = with lib; { + meta = { description = "Python Git Library"; homepage = "https://github.com/gitpython-developers/GitPython"; changelog = "https://github.com/gitpython-developers/GitPython/blob/${src.tag}/doc/source/changes.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/glad/default.nix b/pkgs/development/python-modules/glad/default.nix index 8c9b40345a73..518def21d288 100644 --- a/pkgs/development/python-modules/glad/default.nix +++ b/pkgs/development/python-modules/glad/default.nix @@ -14,11 +14,11 @@ buildPythonPackage rec { hash = "sha256-P7ANv+x65t2+ugTiFUf2fzzPx5X8NFYkUM8/K7Gf28c="; }; - meta = with lib; { + meta = { description = "Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs"; mainProgram = "glad"; homepage = "https://github.com/Dav1dde/glad"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/glad2/default.nix b/pkgs/development/python-modules/glad2/default.nix index c2eb38490cc5..1a038314f6d2 100644 --- a/pkgs/development/python-modules/glad2/default.nix +++ b/pkgs/development/python-modules/glad2/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "glad" ]; - meta = with lib; { + meta = { description = "Multi-Language GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specifications"; mainProgram = "glad"; homepage = "https://github.com/Dav1dde/glad"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/development/python-modules/glances-api/default.nix b/pkgs/development/python-modules/glances-api/default.nix index 30bb095b24fd..8d4964880105 100644 --- a/pkgs/development/python-modules/glances-api/default.nix +++ b/pkgs/development/python-modules/glances-api/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "glances_api" ]; - meta = with lib; { + meta = { description = "Python API for interacting with Glances"; homepage = "https://github.com/home-assistant-ecosystem/python-glances-api"; changelog = "https://github.com/home-assistant-ecosystem/python-glances-api/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/glcontext/default.nix b/pkgs/development/python-modules/glcontext/default.nix index 01a52597e302..8124da832b00 100644 --- a/pkgs/development/python-modules/glcontext/default.nix +++ b/pkgs/development/python-modules/glcontext/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "glcontext" ]; - meta = with lib; { + meta = { homepage = "https://github.com/moderngl/glcontext"; description = "OpenGL implementation for ModernGL"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/glfw/default.nix b/pkgs/development/python-modules/glfw/default.nix index 7a181debf385..11bf9302cc9a 100644 --- a/pkgs/development/python-modules/glfw/default.nix +++ b/pkgs/development/python-modules/glfw/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "glfw" ]; - meta = with lib; { + meta = { description = "Python bindings for GLFW"; homepage = "https://github.com/FlorianRhiem/pyGLFW"; changelog = "https://github.com/FlorianRhiem/pyGLFW/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.McSinyx ]; }; } diff --git a/pkgs/development/python-modules/glom/default.nix b/pkgs/development/python-modules/glom/default.nix index a095a1a5df12..d85496e28adc 100644 --- a/pkgs/development/python-modules/glom/default.nix +++ b/pkgs/development/python-modules/glom/default.nix @@ -63,7 +63,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "glom" ]; - meta = with lib; { + meta = { description = "Module for restructuring data"; longDescription = '' glom helps pull together objects from other objects in a @@ -71,8 +71,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/mahmoud/glom"; changelog = "https://github.com/mahmoud/glom/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ twey ]; mainProgram = "glom"; }; } diff --git a/pkgs/development/python-modules/glueviz/default.nix b/pkgs/development/python-modules/glueviz/default.nix index d32b2f905345..e497f8f8164c 100644 --- a/pkgs/development/python-modules/glueviz/default.nix +++ b/pkgs/development/python-modules/glueviz/default.nix @@ -81,10 +81,10 @@ buildPythonPackage rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "https://glueviz.org"; description = "Linked Data Visualizations Across Multiple Files"; - license = licenses.bsd3; # https://github.com/glue-viz/glue/blob/main/LICENSE - maintainers = with maintainers; [ ifurther ]; + license = lib.licenses.bsd3; # https://github.com/glue-viz/glue/blob/main/LICENSE + maintainers = with lib.maintainers; [ ifurther ]; }; } diff --git a/pkgs/development/python-modules/glyphsets/default.nix b/pkgs/development/python-modules/glyphsets/default.nix index d2a33b40cb12..9bc16fa305b9 100644 --- a/pkgs/development/python-modules/glyphsets/default.nix +++ b/pkgs/development/python-modules/glyphsets/default.nix @@ -66,12 +66,12 @@ buildPythonPackage rec { "test_definitions" ]; - meta = with lib; { + meta = { description = "Google Fonts glyph set metadata"; homepage = "https://github.com/googlefonts/glyphsets"; changelog = "https://github.com/googlefonts/glyphsets/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; mainProgram = "glyphsets"; }; } diff --git a/pkgs/development/python-modules/glyphtools/default.nix b/pkgs/development/python-modules/glyphtools/default.nix index 814c7a74d037..df2ee43ae348 100644 --- a/pkgs/development/python-modules/glyphtools/default.nix +++ b/pkgs/development/python-modules/glyphtools/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "glyphtools" ]; - meta = with lib; { + meta = { description = "Python library for extracting information from font glyphs"; homepage = "https://github.com/simoncozens/glyphtools"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/gntp/default.nix b/pkgs/development/python-modules/gntp/default.nix index 2f2661700d92..62acd02f7284 100644 --- a/pkgs/development/python-modules/gntp/default.nix +++ b/pkgs/development/python-modules/gntp/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { # requires a growler service to be running doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/kfdm/gntp/"; description = "Python library for working with the Growl Notification Transport Protocol"; mainProgram = "gntp"; - license = licenses.mit; - maintainers = [ maintainers.jfroche ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jfroche ]; }; } diff --git a/pkgs/development/python-modules/gnureadline/default.nix b/pkgs/development/python-modules/gnureadline/default.nix index 0770f6264304..4f03b8533867 100644 --- a/pkgs/development/python-modules/gnureadline/default.nix +++ b/pkgs/development/python-modules/gnureadline/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { substituteInPlace setup.py --replace "/bin/bash" "${pkgs.bash}/bin/bash" ''; - meta = with lib; { + meta = { description = "Standard Python readline extension statically linked against the GNU readline library"; homepage = "https://github.com/ludwigschwardt/python-gnureadline"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/goalzero/default.nix b/pkgs/development/python-modules/goalzero/default.nix index 21cdfcdc594d..28e82bc5e724 100644 --- a/pkgs/development/python-modules/goalzero/default.nix +++ b/pkgs/development/python-modules/goalzero/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "goalzero" ]; - meta = with lib; { + meta = { description = "Goal Zero Yeti REST Api Library"; homepage = "https://github.com/tkdrob/goalzero"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/gocardless-pro/default.nix b/pkgs/development/python-modules/gocardless-pro/default.nix index 181da9d1f769..a04c898a727b 100644 --- a/pkgs/development/python-modules/gocardless-pro/default.nix +++ b/pkgs/development/python-modules/gocardless-pro/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { responses ]; - meta = with lib; { + meta = { description = "Client library for the GoCardless Pro API"; homepage = "https://github.com/gocardless/gocardless-pro-python"; changelog = "https://github.com/gocardless/gocardless-pro-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/goocalendar/default.nix b/pkgs/development/python-modules/goocalendar/default.nix index 75111fd1bc78..df9b534809d1 100644 --- a/pkgs/development/python-modules/goocalendar/default.nix +++ b/pkgs/development/python-modules/goocalendar/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "goocalendar" ]; - meta = with lib; { + meta = { description = "Calendar widget for GTK using PyGoocanvas"; homepage = "https://goocalendar.tryton.org/"; changelog = "https://foss.heptapod.net/tryton/goocalendar/-/blob/${version}/CHANGELOG"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ udono ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ udono ]; }; } diff --git a/pkgs/development/python-modules/goodwe/default.nix b/pkgs/development/python-modules/goodwe/default.nix index ee53c0dd7a61..931f48ffd8aa 100644 --- a/pkgs/development/python-modules/goodwe/default.nix +++ b/pkgs/development/python-modules/goodwe/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "goodwe" ]; - meta = with lib; { + meta = { description = "Python library for connecting to GoodWe inverter"; homepage = "https://github.com/marcelblijleven/goodwe"; changelog = "https://github.com/marcelblijleven/goodwe/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-ai-generativelanguage/default.nix b/pkgs/development/python-modules/google-ai-generativelanguage/default.nix index 307066a46888..600828a9000f 100644 --- a/pkgs/development/python-modules/google-ai-generativelanguage/default.nix +++ b/pkgs/development/python-modules/google-ai-generativelanguage/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "google.ai.generativelanguage_v1beta2" ]; - meta = with lib; { + meta = { description = "Google Ai Generativelanguage API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-ai-generativelanguage"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-ai-generativelanguage-v${version}/packages/google-ai-generativelanguage/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix b/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix index 166687954d0f..bd6b4954f440 100644 --- a/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix +++ b/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.identity.accesscontextmanager" ]; - meta = with lib; { + meta = { description = "Protobufs for Google Access Context Manager"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-access-context-manager"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-access-context-manager-v${version}/packages/google-cloud-access-context-manager/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ austinbutler ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ austinbutler ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-appengine-logging/default.nix b/pkgs/development/python-modules/google-cloud-appengine-logging/default.nix index 7d77619f889c..25be696a30ff 100644 --- a/pkgs/development/python-modules/google-cloud-appengine-logging/default.nix +++ b/pkgs/development/python-modules/google-cloud-appengine-logging/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "google.cloud.appengine_logging_v1" ]; - meta = with lib; { + meta = { description = "Appengine logging client library"; homepage = "https://github.com/googleapis/python-appengine-logging"; changelog = "https://github.com/googleapis/python-appengine-logging/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix b/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix index 965c6bab7362..07016cd0f025 100644 --- a/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix +++ b/pkgs/development/python-modules/google-cloud-artifact-registry/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "google.cloud.artifactregistry_v1beta2" ]; - meta = with lib; { + meta = { description = "Google Cloud Artifact Registry API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-artifact-registry"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-artifact-registry-v${version}/packages/google-cloud-artifact-registry/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-audit-log/default.nix b/pkgs/development/python-modules/google-cloud-audit-log/default.nix index 8d86a1a35601..860811946fba 100644 --- a/pkgs/development/python-modules/google-cloud-audit-log/default.nix +++ b/pkgs/development/python-modules/google-cloud-audit-log/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.cloud.audit" ]; - meta = with lib; { + meta = { description = "Google Cloud Audit Protos"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-audit-log"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-audit-log-v${version}/packages/google-cloud-audit-log/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-automl/default.nix b/pkgs/development/python-modules/google-cloud-automl/default.nix index 7e779b2a9ba5..78247da0aebc 100644 --- a/pkgs/development/python-modules/google-cloud-automl/default.nix +++ b/pkgs/development/python-modules/google-cloud-automl/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { "google.cloud.automl_v1beta1" ]; - meta = with lib; { + meta = { description = "Cloud AutoML API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-automl"; changelog = "https://github.com/googleapis/google-cloud-python/tree/google-cloud-automl-v${version}/packages/google-cloud-automl"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix index 65c961c9a8b8..342cd14226b5 100644 --- a/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix +++ b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "test_list_data_sources" ]; - meta = with lib; { + meta = { description = "BigQuery Data Transfer API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-bigquery-datatransfer"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-bigquery-datatransfer-v${version}/packages/google-cloud-bigquery-datatransfer/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-bigquery-logging/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-logging/default.nix index 4efc4823f76d..62839f83c36a 100644 --- a/pkgs/development/python-modules/google-cloud-bigquery-logging/default.nix +++ b/pkgs/development/python-modules/google-cloud-bigquery-logging/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "google.cloud.bigquery_logging_v1" ]; - meta = with lib; { + meta = { description = "Bigquery logging client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-bigquery-logging"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-bigquery-logging-v${version}/packages/google-cloud-bigquery-logging/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix index f146ff26ee1d..7d62a8a442b4 100644 --- a/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix +++ b/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { "google.cloud.bigquery_storage_v1beta2" ]; - meta = with lib; { + meta = { description = "BigQuery Storage API API client library"; homepage = "https://github.com/googleapis/python-bigquery-storage"; changelog = "https://github.com/googleapis/python-bigquery-storage/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "fixup_bigquery_storage_v1_keywords.py"; }; diff --git a/pkgs/development/python-modules/google-cloud-compute/default.nix b/pkgs/development/python-modules/google-cloud-compute/default.nix index 0efefc82c91a..5d94b8ad1c4f 100644 --- a/pkgs/development/python-modules/google-cloud-compute/default.nix +++ b/pkgs/development/python-modules/google-cloud-compute/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "tests/system/test_smoke.py" ]; - meta = with lib; { + meta = { description = "API Client library for Google Cloud Compute"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-compute"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-compute-v${version}/packages/google-cloud-compute/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-container/default.nix b/pkgs/development/python-modules/google-cloud-container/default.nix index ee481619546d..b51ae9ffd229 100644 --- a/pkgs/development/python-modules/google-cloud-container/default.nix +++ b/pkgs/development/python-modules/google-cloud-container/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "google.cloud.container_v1beta1" ]; - meta = with lib; { + meta = { description = "Google Container Engine API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-container"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-container-v${version}/packages/google-cloud-container/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-core/default.nix b/pkgs/development/python-modules/google-cloud-core/default.nix index 4ca56061c17d..177d0697d72d 100644 --- a/pkgs/development/python-modules/google-cloud-core/default.nix +++ b/pkgs/development/python-modules/google-cloud-core/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.cloud" ]; - meta = with lib; { + meta = { description = "API Client library for Google Cloud: Core Helpers"; homepage = "https://github.com/googleapis/python-cloud-core"; changelog = "https://github.com/googleapis/python-cloud-core/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-dataproc/default.nix b/pkgs/development/python-modules/google-cloud-dataproc/default.nix index 772dd3577cc5..b56b310f2e79 100644 --- a/pkgs/development/python-modules/google-cloud-dataproc/default.nix +++ b/pkgs/development/python-modules/google-cloud-dataproc/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "google.cloud.dataproc_v1" ]; - meta = with lib; { + meta = { description = "Google Cloud Dataproc API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-dataproc"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-dataproc-v${version}/packages/google-cloud-dataproc/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-datastore/default.nix b/pkgs/development/python-modules/google-cloud-datastore/default.nix index 080e126e52e5..d545c499af3a 100644 --- a/pkgs/development/python-modules/google-cloud-datastore/default.nix +++ b/pkgs/development/python-modules/google-cloud-datastore/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { "google.cloud.datastore_v1" ]; - meta = with lib; { + meta = { description = "Google Cloud Datastore API client library"; homepage = "https://github.com/googleapis/python-datastore"; changelog = "https://github.com/googleapis/python-datastore/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-dlp/default.nix b/pkgs/development/python-modules/google-cloud-dlp/default.nix index cc097cd5dbbd..ae6307fcc187 100644 --- a/pkgs/development/python-modules/google-cloud-dlp/default.nix +++ b/pkgs/development/python-modules/google-cloud-dlp/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "google.cloud.dlp_v2" ]; - meta = with lib; { + meta = { description = "Cloud Data Loss Prevention (DLP) API API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-dlp"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-dlp-v${version}/packages/google-cloud-dlp/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-dns/default.nix b/pkgs/development/python-modules/google-cloud-dns/default.nix index b329fd471ca9..2d72c0712d58 100644 --- a/pkgs/development/python-modules/google-cloud-dns/default.nix +++ b/pkgs/development/python-modules/google-cloud-dns/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.cloud.dns" ]; - meta = with lib; { + meta = { description = "Google Cloud DNS API client library"; homepage = "https://github.com/googleapis/python-dns"; changelog = "https://github.com/googleapis/python-dns/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-firestore/default.nix b/pkgs/development/python-modules/google-cloud-firestore/default.nix index a74a680e240a..f1d1f4937608 100644 --- a/pkgs/development/python-modules/google-cloud-firestore/default.nix +++ b/pkgs/development/python-modules/google-cloud-firestore/default.nix @@ -71,11 +71,11 @@ buildPythonPackage rec { "google.cloud.firestore_admin_v1" ]; - meta = with lib; { + meta = { description = "Google Cloud Firestore API client library"; homepage = "https://github.com/googleapis/python-firestore"; changelog = "https://github.com/googleapis/python-firestore/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-iam-logging/default.nix b/pkgs/development/python-modules/google-cloud-iam-logging/default.nix index beb566975a2f..444470ae045b 100644 --- a/pkgs/development/python-modules/google-cloud-iam-logging/default.nix +++ b/pkgs/development/python-modules/google-cloud-iam-logging/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "google.cloud.iam_logging_v1" ]; - meta = with lib; { + meta = { description = "IAM Service Logging client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-iam-logging"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-iam-logging-v${version}/packages/google-cloud-iam-logging/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-iot/default.nix b/pkgs/development/python-modules/google-cloud-iot/default.nix index 3ba1152f0f26..4d4edf977805 100644 --- a/pkgs/development/python-modules/google-cloud-iot/default.nix +++ b/pkgs/development/python-modules/google-cloud-iot/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { "google.cloud.iot_v1" ]; - meta = with lib; { + meta = { description = "Cloud IoT API API client library"; homepage = "https://github.com/googleapis/python-iot"; changelog = "https://github.com/googleapis/python-iot/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-language/default.nix b/pkgs/development/python-modules/google-cloud-language/default.nix index 810d587d8206..98b04c7fb8c0 100644 --- a/pkgs/development/python-modules/google-cloud-language/default.nix +++ b/pkgs/development/python-modules/google-cloud-language/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "google.cloud.language_v1beta2" ]; - meta = with lib; { + meta = { description = "Google Cloud Natural Language API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-language"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-language-v${version}/packages/google-cloud-language/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-logging/default.nix b/pkgs/development/python-modules/google-cloud-logging/default.nix index 11a57fbafe3e..0f768c08a982 100644 --- a/pkgs/development/python-modules/google-cloud-logging/default.nix +++ b/pkgs/development/python-modules/google-cloud-logging/default.nix @@ -85,11 +85,11 @@ buildPythonPackage rec { "google.cloud.logging_v2" ]; - meta = with lib; { + meta = { description = "Stackdriver Logging API client library"; homepage = "https://github.com/googleapis/python-logging"; changelog = "https://github.com/googleapis/python-logging/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-monitoring/default.nix b/pkgs/development/python-modules/google-cloud-monitoring/default.nix index 07e629eaa493..b999ad0c9d19 100644 --- a/pkgs/development/python-modules/google-cloud-monitoring/default.nix +++ b/pkgs/development/python-modules/google-cloud-monitoring/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "google.cloud.monitoring_v3" ]; - meta = with lib; { + meta = { description = "Stackdriver Monitoring API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-monitoring"; changelog = "https://github.com/googleapis/google-cloud-python/tree/google-cloud-monitoring-v${version}/packages/google-cloud-monitoring"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-network-connectivity/default.nix b/pkgs/development/python-modules/google-cloud-network-connectivity/default.nix index f56cc87aea13..c296db195177 100644 --- a/pkgs/development/python-modules/google-cloud-network-connectivity/default.nix +++ b/pkgs/development/python-modules/google-cloud-network-connectivity/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "google.cloud.networkconnectivity_v1" ]; - meta = with lib; { + meta = { description = "API Client library for Google Cloud Network Connectivity Center"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-network-connectivity"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-network-connectivity-v${version}/packages/google-cloud-network-connectivity/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ aksiksi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aksiksi ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-org-policy/default.nix b/pkgs/development/python-modules/google-cloud-org-policy/default.nix index adad718a2b2e..6e98b77e95aa 100644 --- a/pkgs/development/python-modules/google-cloud-org-policy/default.nix +++ b/pkgs/development/python-modules/google-cloud-org-policy/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.cloud.orgpolicy" ]; - meta = with lib; { + meta = { description = "Protobufs for Google Cloud Organization Policy"; homepage = "https://github.com/googleapis/python-org-policy"; changelog = "https://github.com/googleapis/python-org-policy/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ austinbutler ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ austinbutler ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-os-config/default.nix b/pkgs/development/python-modules/google-cloud-os-config/default.nix index 3bf88361e6cd..588353b17c39 100644 --- a/pkgs/development/python-modules/google-cloud-os-config/default.nix +++ b/pkgs/development/python-modules/google-cloud-os-config/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_list_patch_jobs" ]; - meta = with lib; { + meta = { description = "Google Cloud OS Config API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-os-config"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-os-config-v${version}/packages/google-cloud-os-config/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-pubsub/default.nix b/pkgs/development/python-modules/google-cloud-pubsub/default.nix index 5851550c7153..c48fd244b4db 100644 --- a/pkgs/development/python-modules/google-cloud-pubsub/default.nix +++ b/pkgs/development/python-modules/google-cloud-pubsub/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.cloud.pubsub" ]; - meta = with lib; { + meta = { description = "Google Cloud Pub/Sub API client library"; homepage = "https://github.com/googleapis/python-pubsub"; changelog = "https://github.com/googleapis/python-pubsub/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "fixup_pubsub_v1_keywords.py"; }; diff --git a/pkgs/development/python-modules/google-cloud-redis/default.nix b/pkgs/development/python-modules/google-cloud-redis/default.nix index 47c60816d0a5..e8fac81a98a4 100644 --- a/pkgs/development/python-modules/google-cloud-redis/default.nix +++ b/pkgs/development/python-modules/google-cloud-redis/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "google.cloud.redis_v1beta1" ]; - meta = with lib; { + meta = { description = "Google Cloud Memorystore for Redis API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-redis"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-redis-v${version}/packages/google-cloud-redis/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-resource-manager/default.nix b/pkgs/development/python-modules/google-cloud-resource-manager/default.nix index c30401c91f67..d15bd3a49938 100644 --- a/pkgs/development/python-modules/google-cloud-resource-manager/default.nix +++ b/pkgs/development/python-modules/google-cloud-resource-manager/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "google.cloud.resourcemanager_v3" ]; - meta = with lib; { + meta = { description = "Google Cloud Resource Manager API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-resource-manager"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-resource-manager-v${version}/packages/google-cloud-resource-manager/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix b/pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix index 7f6cc83c1c97..b80db05053de 100644 --- a/pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix +++ b/pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.cloud.runtimeconfig" ]; - meta = with lib; { + meta = { description = "Google Cloud RuntimeConfig API client library"; homepage = "https://github.com/googleapis/python-runtimeconfig"; changelog = "https://github.com/googleapis/python-runtimeconfig/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-secret-manager/default.nix b/pkgs/development/python-modules/google-cloud-secret-manager/default.nix index 0aa32919d435..8301e3ab1a07 100644 --- a/pkgs/development/python-modules/google-cloud-secret-manager/default.nix +++ b/pkgs/development/python-modules/google-cloud-secret-manager/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "google.cloud.secretmanager_v1beta1" ]; - meta = with lib; { + meta = { description = "Secret Manager API API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-secret-manager"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-secret-manager-v${version}/packages/google-cloud-secret-manager/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix index f95be0a370b6..43a1983c6a4e 100644 --- a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix +++ b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "google.cloud.securitycenter_v1p1beta1" ]; - meta = with lib; { + meta = { description = "Cloud Security Command Center API API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-securitycenter"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-securitycenter-v${version}/packages/google-cloud-securitycenter/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-shell/default.nix b/pkgs/development/python-modules/google-cloud-shell/default.nix index ff87c32cbe2a..48f3e4100abf 100644 --- a/pkgs/development/python-modules/google-cloud-shell/default.nix +++ b/pkgs/development/python-modules/google-cloud-shell/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "google.cloud.shell_v1" ]; - meta = with lib; { + meta = { description = "Python Client for Cloud Shell"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-shell"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-shell-v${version}/packages/google-cloud-shell/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-speech/default.nix b/pkgs/development/python-modules/google-cloud-speech/default.nix index 2965b2a5b304..b9f58c7a7608 100644 --- a/pkgs/development/python-modules/google-cloud-speech/default.nix +++ b/pkgs/development/python-modules/google-cloud-speech/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "google.cloud.speech_v1p1beta1" ]; - meta = with lib; { + meta = { description = "Google Cloud Speech API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-speech"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-speech-v${version}/packages/google-cloud-speech/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-tasks/default.nix b/pkgs/development/python-modules/google-cloud-tasks/default.nix index ffa2d7f48683..78cc6475d419 100644 --- a/pkgs/development/python-modules/google-cloud-tasks/default.nix +++ b/pkgs/development/python-modules/google-cloud-tasks/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { "google.cloud.tasks_v2beta3" ]; - meta = with lib; { + meta = { description = "Cloud Tasks API API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-tasks"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-tasks-v${version}/packages/google-cloud-tasks/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-texttospeech/default.nix b/pkgs/development/python-modules/google-cloud-texttospeech/default.nix index 1286c6facfd3..e8a6cfe871af 100644 --- a/pkgs/development/python-modules/google-cloud-texttospeech/default.nix +++ b/pkgs/development/python-modules/google-cloud-texttospeech/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "google.cloud.texttospeech_v1beta1" ]; - meta = with lib; { + meta = { description = "Google Cloud Text-to-Speech API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-texttospeech"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-texttospeech-v${version}/packages/google-cloud-texttospeech/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-trace/default.nix b/pkgs/development/python-modules/google-cloud-trace/default.nix index 3f2b2173ea35..063ee9118edd 100644 --- a/pkgs/development/python-modules/google-cloud-trace/default.nix +++ b/pkgs/development/python-modules/google-cloud-trace/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "google.cloud.trace_v2" ]; - meta = with lib; { + meta = { description = "Cloud Trace API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-trace"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-trace-v${version}/packages/google-cloud-trace/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-translate/default.nix b/pkgs/development/python-modules/google-cloud-translate/default.nix index 745e5c96b823..6ef348d8187e 100644 --- a/pkgs/development/python-modules/google-cloud-translate/default.nix +++ b/pkgs/development/python-modules/google-cloud-translate/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { "test_list_glossaries" ]; - meta = with lib; { + meta = { description = "Google Cloud Translation API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-translate"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-translate-v${version}/packages/google-cloud-translate/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-videointelligence/default.nix b/pkgs/development/python-modules/google-cloud-videointelligence/default.nix index 8ec1197ec2e6..817c3bd3bc72 100644 --- a/pkgs/development/python-modules/google-cloud-videointelligence/default.nix +++ b/pkgs/development/python-modules/google-cloud-videointelligence/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { "google.cloud.videointelligence_v1p3beta1" ]; - meta = with lib; { + meta = { description = "Google Cloud Video Intelligence API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-videointelligence"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-videointelligence-v${version}/packages/google-cloud-videointelligence/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-vision/default.nix b/pkgs/development/python-modules/google-cloud-vision/default.nix index 5d232589127e..3084409b16b3 100644 --- a/pkgs/development/python-modules/google-cloud-vision/default.nix +++ b/pkgs/development/python-modules/google-cloud-vision/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "test_list_products" ]; - meta = with lib; { + meta = { description = "Cloud Vision API API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-vision"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-vision-v${version}/packages/google-cloud-vision/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-vpc-access/default.nix b/pkgs/development/python-modules/google-cloud-vpc-access/default.nix index 72365208b378..38c85619a893 100644 --- a/pkgs/development/python-modules/google-cloud-vpc-access/default.nix +++ b/pkgs/development/python-modules/google-cloud-vpc-access/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "google.cloud.vpcaccess_v1" ]; - meta = with lib; { + meta = { description = "Python Client for Virtual Private Cloud"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-vpc-access"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-vpc-access-v${version}/packages/google-cloud-vpc-access/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-webrisk/default.nix b/pkgs/development/python-modules/google-cloud-webrisk/default.nix index 81a1af721fb0..46e764069b38 100644 --- a/pkgs/development/python-modules/google-cloud-webrisk/default.nix +++ b/pkgs/development/python-modules/google-cloud-webrisk/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "google.cloud.webrisk_v1beta1" ]; - meta = with lib; { + meta = { description = "Python Client for Web Risk"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-webrisk"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-webrisk-v${version}/packages/google-cloud-webrisk/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix b/pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix index c2b5a2fb06fa..9ee0545f750f 100644 --- a/pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix +++ b/pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { "google.cloud.websecurityscanner_v1beta" ]; - meta = with lib; { + meta = { description = "Google Cloud Web Security Scanner API client library"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-websecurityscanner"; changelog = "https://github.com/googleapis/google-cloud-python/tree/google-cloud-websecurityscanner-v${version}/packages/google-cloud-websecurityscanner"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-workflows/default.nix b/pkgs/development/python-modules/google-cloud-workflows/default.nix index d54d22e75f9f..05934c9cbe08 100644 --- a/pkgs/development/python-modules/google-cloud-workflows/default.nix +++ b/pkgs/development/python-modules/google-cloud-workflows/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "google.cloud.workflows_v1beta" ]; - meta = with lib; { + meta = { description = "Python Client for Cloud Workflows"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-workflows"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-workflows-v${version}/packages/google-cloud-workflows/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-cloud-workstations/default.nix b/pkgs/development/python-modules/google-cloud-workstations/default.nix index 435e1af48a26..9d63727928b5 100644 --- a/pkgs/development/python-modules/google-cloud-workstations/default.nix +++ b/pkgs/development/python-modules/google-cloud-workstations/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "google.cloud.workstations_v1beta" ]; - meta = with lib; { + meta = { description = "Python Client for Cloud Workstations"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-workstations"; changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-workstations-v${version}/packages/google-cloud-workstations/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-crc32c/default.nix b/pkgs/development/python-modules/google-crc32c/default.nix index 2e381cce2b47..282cb7d325c6 100644 --- a/pkgs/development/python-modules/google-crc32c/default.nix +++ b/pkgs/development/python-modules/google-crc32c/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google_crc32c" ]; - meta = with lib; { + meta = { description = "Wrapper the google/crc32c hardware-based implementation of the CRC32C hashing algorithm"; homepage = "https://github.com/googleapis/python-crc32c"; changelog = "https://github.com/googleapis/python-crc32c/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google-generativeai/default.nix b/pkgs/development/python-modules/google-generativeai/default.nix index 812da630b951..c393c85e65ce 100644 --- a/pkgs/development/python-modules/google-generativeai/default.nix +++ b/pkgs/development/python-modules/google-generativeai/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.generativeai" ]; - meta = with lib; { + meta = { description = "Python client library for Google's large language model PaLM API"; homepage = "https://github.com/google/generative-ai-python"; changelog = "https://github.com/google/generative-ai-python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/google-i18n-address/default.nix b/pkgs/development/python-modules/google-i18n-address/default.nix index f89e044783cb..e82ea8415be6 100644 --- a/pkgs/development/python-modules/google-i18n-address/default.nix +++ b/pkgs/development/python-modules/google-i18n-address/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "i18naddress" ]; - meta = with lib; { + meta = { description = "Google's i18n address data packaged for Python"; homepage = "https://github.com/mirumee/google-i18n-address"; changelog = "https://github.com/mirumee/google-i18n-address/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; mainProgram = "update-validation-files"; }; diff --git a/pkgs/development/python-modules/google-nest-sdm/default.nix b/pkgs/development/python-modules/google-nest-sdm/default.nix index 8ab8261a5e15..39f0f0314a74 100644 --- a/pkgs/development/python-modules/google-nest-sdm/default.nix +++ b/pkgs/development/python-modules/google-nest-sdm/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { "test_event_manager_event_expiration_with_transcode" ]; - meta = with lib; { + meta = { description = "Module for Google Nest Device Access using the Smart Device Management API"; homepage = "https://github.com/allenporter/python-google-nest-sdm"; changelog = "https://github.com/allenporter/python-google-nest-sdm/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "google_nest"; }; } diff --git a/pkgs/development/python-modules/google-re2/default.nix b/pkgs/development/python-modules/google-re2/default.nix index f6de94b80552..e9c6c6a6e390 100644 --- a/pkgs/development/python-modules/google-re2/default.nix +++ b/pkgs/development/python-modules/google-re2/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "re2" ]; - meta = with lib; { + meta = { description = "RE2 Python bindings"; homepage = "https://github.com/google/re2"; - license = licenses.bsd3; - maintainers = with maintainers; [ alexbakker ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ alexbakker ]; }; } diff --git a/pkgs/development/python-modules/google-resumable-media/default.nix b/pkgs/development/python-modules/google-resumable-media/default.nix index c18ed1e89a01..e97b8503bd62 100644 --- a/pkgs/development/python-modules/google-resumable-media/default.nix +++ b/pkgs/development/python-modules/google-resumable-media/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "google.resumable_media" ]; - meta = with lib; { + meta = { description = "Utilities for Google Media Downloads and Resumable Uploads"; homepage = "https://github.com/GoogleCloudPlatform/google-resumable-media-python"; changelog = "https://github.com/googleapis/google-resumable-media-python/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/google/default.nix b/pkgs/development/python-modules/google/default.nix index 8d5589300279..8fa7a9056d18 100644 --- a/pkgs/development/python-modules/google/default.nix +++ b/pkgs/development/python-modules/google/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "googlesearch" ]; - meta = with lib; { + meta = { description = "Python bindings to the Google search engine"; mainProgram = "google"; homepage = "https://pypi.org/project/google/"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/googletrans/default.nix b/pkgs/development/python-modules/googletrans/default.nix index 07639c419e05..596ae5dc7f60 100644 --- a/pkgs/development/python-modules/googletrans/default.nix +++ b/pkgs/development/python-modules/googletrans/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "googletrans" ]; - meta = with lib; { + meta = { description = "Library to interact with Google Translate API"; homepage = "https://py-googletrans.readthedocs.io"; changelog = "https://github.com/ssut/py-googletrans/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ unode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ unode ]; mainProgram = "translate"; }; } diff --git a/pkgs/development/python-modules/gophish/default.nix b/pkgs/development/python-modules/gophish/default.nix index 42d01e5a02b5..dc8b89b87e5b 100644 --- a/pkgs/development/python-modules/gophish/default.nix +++ b/pkgs/development/python-modules/gophish/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { # Module has no test doCheck = false; - meta = with lib; { + meta = { description = "Module to interact with Gophish"; homepage = "https://github.com/gophish/api-client-python"; changelog = "https://github.com/gophish/api-client-python/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gorilla/default.nix b/pkgs/development/python-modules/gorilla/default.nix index 8b61584a3af4..a29b6e71460c 100644 --- a/pkgs/development/python-modules/gorilla/default.nix +++ b/pkgs/development/python-modules/gorilla/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { disabledTests = lib.optionals (pythonAtLeast "3.12") [ "test_find_patches_2" ]; - meta = with lib; { + meta = { description = "Convenient approach to monkey patching"; homepage = "https://github.com/christophercrouzet/gorilla"; changelog = "https://github.com/christophercrouzet/gorilla/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ tbenst ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/gotailwind/default.nix b/pkgs/development/python-modules/gotailwind/default.nix index b3a70580266a..ce90484d09bc 100644 --- a/pkgs/development/python-modules/gotailwind/default.nix +++ b/pkgs/development/python-modules/gotailwind/default.nix @@ -65,12 +65,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gotailwind" ]; - meta = with lib; { + meta = { description = "Modul to communicate with Tailwind garage door openers"; homepage = "https://github.com/frenck/python-gotailwind"; changelog = "https://github.com/frenck/python-gotailwind/releases/tag/v$version"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "tailwind"; }; } diff --git a/pkgs/development/python-modules/gotenberg-client/default.nix b/pkgs/development/python-modules/gotenberg-client/default.nix index ecd811b2ff00..197c9246b085 100644 --- a/pkgs/development/python-modules/gotenberg-client/default.nix +++ b/pkgs/development/python-modules/gotenberg-client/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gotenberg_client" ]; - meta = with lib; { + meta = { description = "Python client for interfacing with the Gotenberg API"; homepage = "https://github.com/stumpylog/gotenberg-client"; changelog = "https://github.com/stumpylog/gotenberg-client/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ leona ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ leona ]; }; } diff --git a/pkgs/development/python-modules/govee-led-wez/default.nix b/pkgs/development/python-modules/govee-led-wez/default.nix index 25b60113a8da..a56205ac1c5f 100644 --- a/pkgs/development/python-modules/govee-led-wez/default.nix +++ b/pkgs/development/python-modules/govee-led-wez/default.nix @@ -43,10 +43,10 @@ buildPythonPackage { pythonImportsCheck = [ "govee_led_wez" ]; - meta = with lib; { + meta = { description = "Control Govee Lights from Python"; homepage = "https://github.com/wez/govee-py"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/govee-local-api/default.nix b/pkgs/development/python-modules/govee-local-api/default.nix index dbcd90d96609..58f4d905ae1e 100644 --- a/pkgs/development/python-modules/govee-local-api/default.nix +++ b/pkgs/development/python-modules/govee-local-api/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "govee_local_api" ]; - meta = with lib; { + meta = { description = "Library to communicate with Govee local API"; homepage = "https://github.com/Galorhallen/govee-local-api"; changelog = "https://github.com/Galorhallen/govee-local-api/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/goveelights/default.nix b/pkgs/development/python-modules/goveelights/default.nix index f12caa93c6be..ecf7a5cee2d8 100644 --- a/pkgs/development/python-modules/goveelights/default.nix +++ b/pkgs/development/python-modules/goveelights/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "goveelights" ]; - meta = with lib; { + meta = { description = "Python module for interacting with the Govee API"; homepage = "https://github.com/arcanearronax/govee_lights"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gower/default.nix b/pkgs/development/python-modules/gower/default.nix index bc46f000ada5..f161c25406f5 100644 --- a/pkgs/development/python-modules/gower/default.nix +++ b/pkgs/development/python-modules/gower/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Gower's distance calculation in Python"; homepage = "https://github.com/wwwjk366/gower"; - license = licenses.mit; - maintainers = with maintainers; [ b-rodrigues ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ b-rodrigues ]; }; } diff --git a/pkgs/development/python-modules/gpaw/default.nix b/pkgs/development/python-modules/gpaw/default.nix index 61a54536569c..a4b4a4d6e60c 100644 --- a/pkgs/development/python-modules/gpaw/default.nix +++ b/pkgs/development/python-modules/gpaw/default.nix @@ -136,11 +136,11 @@ buildPythonPackage rec { inherit mpi; }; - meta = with lib; { + meta = { description = "Density functional theory and beyond within the projector-augmented wave method"; homepage = "https://wiki.fysik.dtu.dk/gpaw/index.html"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/gpib-ctypes/default.nix b/pkgs/development/python-modules/gpib-ctypes/default.nix index 98feeb7749fa..059dbfbb68af 100644 --- a/pkgs/development/python-modules/gpib-ctypes/default.nix +++ b/pkgs/development/python-modules/gpib-ctypes/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gpib_ctypes.gpib" ]; - meta = with lib; { + meta = { description = "Cross-platform Python bindings for the NI GPIB and linux-gpib C interfaces"; homepage = "https://github.com/tivek/gpib_ctypes/"; changelog = "https://github.com/tivek/gpib_ctypes/blob/${version}/HISTORY.rst"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fsagbuya ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fsagbuya ]; }; } diff --git a/pkgs/development/python-modules/gpiozero/default.nix b/pkgs/development/python-modules/gpiozero/default.nix index 516de75e2d74..244ea87e049c 100644 --- a/pkgs/development/python-modules/gpiozero/default.nix +++ b/pkgs/development/python-modules/gpiozero/default.nix @@ -61,12 +61,12 @@ buildPythonPackage rec { "test_spi_hardware_write" ]; - meta = with lib; { + meta = { description = "Simple interface to GPIO devices with Raspberry Pi"; homepage = "https://github.com/gpiozero/gpiozero"; changelog = "https://github.com/gpiozero/gpiozero/blob/v${version}/docs/changelog.rst"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/gprof2dot/default.nix b/pkgs/development/python-modules/gprof2dot/default.nix index da3fb9513442..a3bf984ba114 100644 --- a/pkgs/development/python-modules/gprof2dot/default.nix +++ b/pkgs/development/python-modules/gprof2dot/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python script to convert the output from many profilers into a dot graph"; mainProgram = "gprof2dot"; homepage = "https://github.com/jrfonseca/gprof2dot"; changelog = "https://github.com/jrfonseca/gprof2dot/releases/tag/${src.tag}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ pmiddend ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ pmiddend ]; }; } diff --git a/pkgs/development/python-modules/gps3/default.nix b/pkgs/development/python-modules/gps3/default.nix index 8a2a89998a96..972c73da8224 100644 --- a/pkgs/development/python-modules/gps3/default.nix +++ b/pkgs/development/python-modules/gps3/default.nix @@ -20,10 +20,10 @@ buildPythonPackage { doCheck = false; pythonImportsCheck = [ "gps3" ]; - meta = with lib; { + meta = { description = "Python client for GPSD"; homepage = "https://github.com/wadda/gps3"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gpsoauth/default.nix b/pkgs/development/python-modules/gpsoauth/default.nix index bf604c9f7138..92e3d85709aa 100644 --- a/pkgs/development/python-modules/gpsoauth/default.nix +++ b/pkgs/development/python-modules/gpsoauth/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gpsoauth" ]; - meta = with lib; { + meta = { description = "Library for Google Play Services OAuth"; homepage = "https://github.com/simon-weber/gpsoauth"; - license = licenses.mit; - maintainers = with maintainers; [ jgillich ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jgillich ]; }; } diff --git a/pkgs/development/python-modules/gpt-2-simple/default.nix b/pkgs/development/python-modules/gpt-2-simple/default.nix index 6d12f2629793..3cbf109911a7 100644 --- a/pkgs/development/python-modules/gpt-2-simple/default.nix +++ b/pkgs/development/python-modules/gpt-2-simple/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { doCheck = false; # no tests in upstream - meta = with lib; { + meta = { description = "Easily retrain OpenAI's GPT-2 text-generating model on new texts"; homepage = "https://github.com/minimaxir/gpt-2-simple"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gptcache/default.nix b/pkgs/development/python-modules/gptcache/default.nix index ad36b8dbc503..7b79d8d9d261 100644 --- a/pkgs/development/python-modules/gptcache/default.nix +++ b/pkgs/development/python-modules/gptcache/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gptcache" ]; - meta = with lib; { + meta = { description = "Semantic cache for LLMs and fully integrated with LangChain and llama_index"; mainProgram = "gptcache_server"; homepage = "https://github.com/zilliztech/GPTCache"; changelog = "https://github.com/zilliztech/GPTCache/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/gpuctypes/default.nix b/pkgs/development/python-modules/gpuctypes/default.nix index 1a27da65f4e2..8c6d8d7dfaac 100644 --- a/pkgs/development/python-modules/gpuctypes/default.nix +++ b/pkgs/development/python-modules/gpuctypes/default.nix @@ -109,11 +109,11 @@ buildPythonPackage rec { # If neither rocmSupport or cudaSupport is enabled, no tests are selected dontUsePytestCheck = !(rocmSupport || cudaSupport) && (!testOpenclRuntime); - meta = with lib; { + meta = { description = "Ctypes wrappers for HIP, CUDA, and OpenCL"; homepage = "https://github.com/tinygrad/gpuctypes"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage matthewcroughan wozeparrot diff --git a/pkgs/development/python-modules/gpustat/default.nix b/pkgs/development/python-modules/gpustat/default.nix index d3a06d7f8900..80dd371fc58a 100644 --- a/pkgs/development/python-modules/gpustat/default.nix +++ b/pkgs/development/python-modules/gpustat/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gpustat" ]; - meta = with lib; { + meta = { description = "Simple command-line utility for querying and monitoring GPU status"; mainProgram = "gpustat"; homepage = "https://github.com/wookayin/gpustat"; changelog = "https://github.com/wookayin/gpustat/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ billhuang ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ billhuang ]; }; } diff --git a/pkgs/development/python-modules/gpxpy/default.nix b/pkgs/development/python-modules/gpxpy/default.nix index 74cb4e096d91..55602a697cc2 100644 --- a/pkgs/development/python-modules/gpxpy/default.nix +++ b/pkgs/development/python-modules/gpxpy/default.nix @@ -26,12 +26,12 @@ buildPythonPackage rec { ${python.interpreter} -m unittest test ''; - meta = with lib; { + meta = { description = "Python GPX (GPS eXchange format) parser"; mainProgram = "gpxinfo"; homepage = "https://github.com/tkrajina/gpxpy"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/development/python-modules/gradient-statsd/default.nix b/pkgs/development/python-modules/gradient-statsd/default.nix index e77c8b2afcb0..192300d6cfe1 100644 --- a/pkgs/development/python-modules/gradient-statsd/default.nix +++ b/pkgs/development/python-modules/gradient-statsd/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { # Pypi does not contain tests doCheck = false; - meta = with lib; { + meta = { description = "Wrapper around the DogStatsd client"; homepage = "https://paperspace.com"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/gradient-utils/default.nix b/pkgs/development/python-modules/gradient-utils/default.nix index ce95c1df87ab..033f7fb62746 100644 --- a/pkgs/development/python-modules/gradient-utils/default.nix +++ b/pkgs/development/python-modules/gradient-utils/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gradient_utils" ]; - meta = with lib; { + meta = { description = "Python utils and helpers library for Gradient"; homepage = "https://github.com/Paperspace/gradient-utils"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/gradient/default.nix b/pkgs/development/python-modules/gradient/default.nix index f8a9896b1f8b..76e4830516f3 100644 --- a/pkgs/development/python-modules/gradient/default.nix +++ b/pkgs/development/python-modules/gradient/default.nix @@ -72,12 +72,12 @@ buildPythonPackage rec { # "gradient" # ]; - meta = with lib; { + meta = { description = "Command line interface for Gradient"; mainProgram = "gradient"; homepage = "https://github.com/Paperspace/gradient-cli"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/grafanalib/default.nix b/pkgs/development/python-modules/grafanalib/default.nix index f25dac27ce0a..c3a74feeb418 100644 --- a/pkgs/development/python-modules/grafanalib/default.nix +++ b/pkgs/development/python-modules/grafanalib/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "grafanalib" ]; - meta = with lib; { + meta = { description = "Library for building Grafana dashboards"; homepage = "https://github.com/weaveworks/grafanalib/"; changelog = "https://github.com/weaveworks/grafanalib/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ michaelgrahamevans ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ michaelgrahamevans ]; }; } diff --git a/pkgs/development/python-modules/grandalf/default.nix b/pkgs/development/python-modules/grandalf/default.nix index eab783bf4f94..856d04bed570 100644 --- a/pkgs/development/python-modules/grandalf/default.nix +++ b/pkgs/development/python-modules/grandalf/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "grandalf" ]; - meta = with lib; { + meta = { description = "Module for experimentations with graphs and drawing algorithms"; homepage = "https://github.com/bdcht/grandalf"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/grapheme/default.nix b/pkgs/development/python-modules/grapheme/default.nix index d16224cca557..d04ef9855cb4 100644 --- a/pkgs/development/python-modules/grapheme/default.nix +++ b/pkgs/development/python-modules/grapheme/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "grapheme" ]; - meta = with lib; { + meta = { description = "Python package for grapheme aware string handling"; homepage = "https://github.com/alvinlindstam/grapheme"; - license = licenses.mit; - maintainers = with maintainers; [ creator54 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ creator54 ]; }; } diff --git a/pkgs/development/python-modules/graphene-django/default.nix b/pkgs/development/python-modules/graphene-django/default.nix index 87c81a0c54c9..311f83ef2f2f 100644 --- a/pkgs/development/python-modules/graphene-django/default.nix +++ b/pkgs/development/python-modules/graphene-django/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { "test_should_filepath_convert_string" ]; - meta = with lib; { + meta = { description = "Integrate GraphQL into your Django project"; homepage = "https://github.com/graphql-python/graphene-django"; changelog = "https://github.com/graphql-python/graphene-django/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/graphene/default.nix b/pkgs/development/python-modules/graphene/default.nix index 76689c5c555f..775f31c1b3e1 100644 --- a/pkgs/development/python-modules/graphene/default.nix +++ b/pkgs/development/python-modules/graphene/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "graphene" ]; - meta = with lib; { + meta = { description = "GraphQL Framework for Python"; homepage = "https://github.com/graphql-python/graphene"; changelog = "https://github.com/graphql-python/graphene/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/graphlib-backport/default.nix b/pkgs/development/python-modules/graphlib-backport/default.nix index 7f91976b4c21..7089d0817aa2 100644 --- a/pkgs/development/python-modules/graphlib-backport/default.nix +++ b/pkgs/development/python-modules/graphlib-backport/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "graphlib" ]; - meta = with lib; { + meta = { description = "Backport of the Python 3.9 graphlib module for Python 3.6+"; homepage = "https://github.com/mariushelf/graphlib_backport"; - license = licenses.psfl; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/graphql-core/default.nix b/pkgs/development/python-modules/graphql-core/default.nix index c1c49ee45448..5ad49b0dae6c 100644 --- a/pkgs/development/python-modules/graphql-core/default.nix +++ b/pkgs/development/python-modules/graphql-core/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "graphql" ]; - meta = with lib; { + meta = { changelog = "https://github.com/graphql-python/graphql-core/releases/tag/${src.tag}"; description = "Port of graphql-js to Python"; homepage = "https://github.com/graphql-python/graphql-core"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/graphql-relay/default.nix b/pkgs/development/python-modules/graphql-relay/default.nix index 1d53dc62587d..1ad177300de7 100644 --- a/pkgs/development/python-modules/graphql-relay/default.nix +++ b/pkgs/development/python-modules/graphql-relay/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "graphql_relay" ]; - meta = with lib; { + meta = { description = "Library to help construct a graphql-py server supporting react-relay"; homepage = "https://github.com/graphql-python/graphql-relay-py/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/graphql-server-core/default.nix b/pkgs/development/python-modules/graphql-server-core/default.nix index c774c8c39d88..45da70a5ccf1 100644 --- a/pkgs/development/python-modules/graphql-server-core/default.nix +++ b/pkgs/development/python-modules/graphql-server-core/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Core package for using GraphQL in a custom server easily"; homepage = "https://github.com/graphql-python/graphql-server-core"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/graphql-subscription-manager/default.nix b/pkgs/development/python-modules/graphql-subscription-manager/default.nix index cf10cb27b841..ebef5856e4a6 100644 --- a/pkgs/development/python-modules/graphql-subscription-manager/default.nix +++ b/pkgs/development/python-modules/graphql-subscription-manager/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "graphql_subscription_manager" ]; - meta = with lib; { + meta = { description = "Python3 library for graphql subscription manager"; homepage = "https://github.com/Danielhiversen/PyGraphqlWebsocketManager"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/graphqlclient/default.nix b/pkgs/development/python-modules/graphqlclient/default.nix index 34d7889513db..e0c85fbd3751 100644 --- a/pkgs/development/python-modules/graphqlclient/default.nix +++ b/pkgs/development/python-modules/graphqlclient/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "graphqlclient" ]; - meta = with lib; { + meta = { description = "Simple GraphQL client for Python"; homepage = "https://github.com/prisma-labs/python-graphql-client"; - license = licenses.mit; - maintainers = with maintainers; [ lde ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lde ]; }; } diff --git a/pkgs/development/python-modules/graphtage/default.nix b/pkgs/development/python-modules/graphtage/default.nix index b856608ded61..2369b0377109 100644 --- a/pkgs/development/python-modules/graphtage/default.nix +++ b/pkgs/development/python-modules/graphtage/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "graphtage" ]; - meta = with lib; { + meta = { description = "Utility to diff tree-like files such as JSON and XML"; homepage = "https://github.com/trailofbits/graphtage"; changelog = "https://github.com/trailofbits/graphtage/releases/tag/v${version}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ veehaitch ]; mainProgram = "graphtage"; }; } diff --git a/pkgs/development/python-modules/grappelli-safe/default.nix b/pkgs/development/python-modules/grappelli-safe/default.nix index 8c7207f8a6b0..7cc622fb7fd7 100644 --- a/pkgs/development/python-modules/grappelli-safe/default.nix +++ b/pkgs/development/python-modules/grappelli-safe/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "grappelli_safe" ]; - meta = with lib; { + meta = { description = "Snapshot of django-grappelli for the Mezzanine CMS"; longDescription = '' grappelli_safe was created to provide a snapshot of the @@ -41,7 +41,7 @@ buildPythonPackage rec { homepage = "https://github.com/stephenmcd/grappelli-safe"; downloadPage = "http://pypi.python.org/pypi/grappelli_safe/"; changelog = "https://github.com/stephenmcd/grappelli-safe/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ prikhi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ prikhi ]; }; } diff --git a/pkgs/development/python-modules/graspologic-native/default.nix b/pkgs/development/python-modules/graspologic-native/default.nix index c0928551c287..dee882025222 100644 --- a/pkgs/development/python-modules/graspologic-native/default.nix +++ b/pkgs/development/python-modules/graspologic-native/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { cd packages/pyo3 ''; - meta = with lib; { + meta = { description = "Library of rust components to add additional capability to graspologic a python library for intelligently building networks and network embeddings, and for analyzing connected data"; homepage = "https://github.com/graspologic-org/graspologic-native"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/greeclimate/default.nix b/pkgs/development/python-modules/greeclimate/default.nix index ee705a9087d9..6a07d615e578 100644 --- a/pkgs/development/python-modules/greeclimate/default.nix +++ b/pkgs/development/python-modules/greeclimate/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { "greeclimate.network" ]; - meta = with lib; { + meta = { description = "Discover, connect and control Gree based minisplit systems"; homepage = "https://github.com/cmroche/greeclimate"; changelog = "https://github.com/cmroche/greeclimate/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/greek-accentuation/default.nix b/pkgs/development/python-modules/greek-accentuation/default.nix index 7d3e9c681de4..b42d5ef270b6 100644 --- a/pkgs/development/python-modules/greek-accentuation/default.nix +++ b/pkgs/development/python-modules/greek-accentuation/default.nix @@ -11,10 +11,10 @@ buildPythonPackage rec { inherit pname version; hash = "sha256-l2HZXdqlLubvy2bWhhZVYGMpF0DXVKTDFehkcGF5xdk="; }; - meta = with lib; { + meta = { description = "Python 3 library for accenting (and analyzing the accentuation of) Ancient Greek words"; homepage = "https://github.com/jtauber/greek-accentuation"; - license = licenses.mit; - maintainers = with maintainers; [ kmein ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kmein ]; }; } diff --git a/pkgs/development/python-modules/green/default.nix b/pkgs/development/python-modules/green/default.nix index 6e0e4af49b7e..85c4dcc9f7d9 100644 --- a/pkgs/development/python-modules/green/default.nix +++ b/pkgs/development/python-modules/green/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "green" ]; - meta = with lib; { + meta = { description = "Python test runner"; homepage = "https://github.com/CleanCut/green"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/greeneye-monitor/default.nix b/pkgs/development/python-modules/greeneye-monitor/default.nix index 4c50379952c1..5dbb0c0cdd58 100644 --- a/pkgs/development/python-modules/greeneye-monitor/default.nix +++ b/pkgs/development/python-modules/greeneye-monitor/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "greeneye.monitor" ]; - meta = with lib; { + meta = { description = "Receive data packets from GreenEye Monitor"; homepage = "https://github.com/jkeljo/greeneye-monitor"; changelog = "https://github.com/jkeljo/greeneye-monitor/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/greenlet/default.nix b/pkgs/development/python-modules/greenlet/default.nix index bde1bee459cd..a67e6ce71b6b 100644 --- a/pkgs/development/python-modules/greenlet/default.nix +++ b/pkgs/development/python-modules/greenlet/default.nix @@ -55,11 +55,11 @@ let doCheck = true; }); - meta = with lib; { + meta = { changelog = "https://github.com/python-greenlet/greenlet/blob/${version}/CHANGES.rst"; homepage = "https://github.com/python-greenlet/greenlet"; description = "Module for lightweight in-process concurrent programming"; - license = with licenses; [ + license = with lib.licenses; [ psfl # src/greenlet/slp_platformselect.h & files in src/greenlet/platform/ directory mit ]; diff --git a/pkgs/development/python-modules/gremlinpython/default.nix b/pkgs/development/python-modules/gremlinpython/default.nix index 8d8f8f0f1f57..370b702f14de 100644 --- a/pkgs/development/python-modules/gremlinpython/default.nix +++ b/pkgs/development/python-modules/gremlinpython/default.nix @@ -97,11 +97,11 @@ buildPythonPackage rec { "test_transaction_close_tx_from_parent" ]; - meta = with lib; { + meta = { changelog = "https://github.com/apache/tinkerpop/blob/${src.tag}/CHANGELOG.asciidoc"; description = "Gremlin-Python implements Gremlin, the graph traversal language of Apache TinkerPop, within the Python language"; homepage = "https://tinkerpop.apache.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/grequests/default.nix b/pkgs/development/python-modules/grequests/default.nix index a442a6e5d727..ee8bd9fdaed3 100644 --- a/pkgs/development/python-modules/grequests/default.nix +++ b/pkgs/development/python-modules/grequests/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { gevent ]; - meta = with lib; { + meta = { description = "Asynchronous HTTP requests"; homepage = "https://github.com/kennethreitz/grequests"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ matejc ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ matejc ]; }; } diff --git a/pkgs/development/python-modules/greynoise/default.nix b/pkgs/development/python-modules/greynoise/default.nix index 2ffdbcc4c8de..3627efc57890 100644 --- a/pkgs/development/python-modules/greynoise/default.nix +++ b/pkgs/development/python-modules/greynoise/default.nix @@ -71,12 +71,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "greynoise" ]; - meta = with lib; { + meta = { description = "Python3 library and command line for GreyNoise"; mainProgram = "greynoise"; homepage = "https://github.com/GreyNoise-Intelligence/pygreynoise"; changelog = "https://github.com/GreyNoise-Intelligence/pygreynoise/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/gridnet/default.nix b/pkgs/development/python-modules/gridnet/default.nix index 6b89ae50b019..b53d9a7ba67d 100644 --- a/pkgs/development/python-modules/gridnet/default.nix +++ b/pkgs/development/python-modules/gridnet/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gridnet" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for NET2GRID devices"; homepage = "https://github.com/klaasnicolaas/python-gridnet"; changelog = "https://github.com/klaasnicolaas/python-gridnet/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/grip/default.nix b/pkgs/development/python-modules/grip/default.nix index f29e44d2f440..1a689426877d 100644 --- a/pkgs/development/python-modules/grip/default.nix +++ b/pkgs/development/python-modules/grip/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { py.test -xm "not assumption" ''; - meta = with lib; { + meta = { description = "Preview GitHub Markdown files like Readme locally before committing them"; mainProgram = "grip"; homepage = "https://github.com/joeyespo/grip"; - license = licenses.mit; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/groestlcoin-hash/default.nix b/pkgs/development/python-modules/groestlcoin-hash/default.nix index 369b7a93b148..76cde83ddfd8 100644 --- a/pkgs/development/python-modules/groestlcoin-hash/default.nix +++ b/pkgs/development/python-modules/groestlcoin-hash/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "groestlcoin_hash" ]; - meta = with lib; { + meta = { description = "Bindings for groestl key derivation function library used in Groestlcoin"; homepage = "https://pypi.org/project/groestlcoin_hash/"; - maintainers = with maintainers; [ gruve-p ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ gruve-p ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/growattserver/default.nix b/pkgs/development/python-modules/growattserver/default.nix index 6c66ac1fa15e..a1ced89cd953 100644 --- a/pkgs/development/python-modules/growattserver/default.nix +++ b/pkgs/development/python-modules/growattserver/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "growattServer" ]; - meta = with lib; { + meta = { description = "Python package to retrieve information from Growatt units"; homepage = "https://github.com/indykoning/PyPi_GrowattServer"; changelog = "https://github.com/indykoning/PyPi_GrowattServer/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/grpc-google-iam-v1/default.nix b/pkgs/development/python-modules/grpc-google-iam-v1/default.nix index aba72a96b8aa..cc782b962948 100644 --- a/pkgs/development/python-modules/grpc-google-iam-v1/default.nix +++ b/pkgs/development/python-modules/grpc-google-iam-v1/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "-Wignore::DeprecationWarning" ]; - meta = with lib; { + meta = { description = "GRPC library for the google-iam-v1 service"; homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/grpc-google-iam-v1"; changelog = "https://github.com/googleapis/google-cloud-python/blob/${src.tag}/packages/grpc-google-iam-v1/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/grpc-interceptor/default.nix b/pkgs/development/python-modules/grpc-interceptor/default.nix index 7120f41222a6..44a741185b3f 100644 --- a/pkgs/development/python-modules/grpc-interceptor/default.nix +++ b/pkgs/development/python-modules/grpc-interceptor/default.nix @@ -40,7 +40,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "grpc_interceptor" ]; - meta = with lib; { + meta = { description = "Simplified gRPC interceptors"; homepage = "https://github.com/d5h-foss/grpc-interceptor"; changelog = "https://github.com/d5h-foss/grpc-interceptor/releases/tag/v${version}"; @@ -53,7 +53,7 @@ buildPythonPackage rec { context. Access to these are often desired, to be able to log data in the request or response, or set status codes on the context. ''; - license = licenses.mit; - maintainers = with maintainers; [ tomaskala ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomaskala ]; }; } diff --git a/pkgs/development/python-modules/grpcio-channelz/default.nix b/pkgs/development/python-modules/grpcio-channelz/default.nix index 04c7b91a6dc3..9bc503ab1b3f 100644 --- a/pkgs/development/python-modules/grpcio-channelz/default.nix +++ b/pkgs/development/python-modules/grpcio-channelz/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Channel Level Live Debug Information Service for gRPC"; homepage = "https://pypi.org/project/grpcio-channelz"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ happysalada ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/grpcio-gcp/default.nix b/pkgs/development/python-modules/grpcio-gcp/default.nix index 74c2d76f6c4a..3e42ab42f171 100644 --- a/pkgs/development/python-modules/grpcio-gcp/default.nix +++ b/pkgs/development/python-modules/grpcio-gcp/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ grpcio ]; - meta = with lib; { + meta = { description = "gRPC extensions for Google Cloud Platform"; homepage = "https://grpc.io"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/grpcio-health-checking/default.nix b/pkgs/development/python-modules/grpcio-health-checking/default.nix index 461484ac9645..92b297dad980 100644 --- a/pkgs/development/python-modules/grpcio-health-checking/default.nix +++ b/pkgs/development/python-modules/grpcio-health-checking/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Standard Health Checking Service for gRPC"; homepage = "https://pypi.org/project/grpcio-health-checking/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ happysalada ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/grpcio-reflection/default.nix b/pkgs/development/python-modules/grpcio-reflection/default.nix index 5374f5da493d..0f86b98deda3 100644 --- a/pkgs/development/python-modules/grpcio-reflection/default.nix +++ b/pkgs/development/python-modules/grpcio-reflection/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Standard Protobuf Reflection Service for gRPC"; homepage = "https://pypi.org/project/grpcio-reflection"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ happysalada ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/grpcio-status/default.nix b/pkgs/development/python-modules/grpcio-status/default.nix index f7d888c7e22d..e5417475cfe3 100644 --- a/pkgs/development/python-modules/grpcio-status/default.nix +++ b/pkgs/development/python-modules/grpcio-status/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "grpc_status" ]; - meta = with lib; { + meta = { description = "GRPC Python status proto mapping"; homepage = "https://github.com/grpc/grpc/tree/master/src/python/grpcio_status"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/grpcio-testing/default.nix b/pkgs/development/python-modules/grpcio-testing/default.nix index 7a5d7e0ef693..d14c7f3f9c10 100644 --- a/pkgs/development/python-modules/grpcio-testing/default.nix +++ b/pkgs/development/python-modules/grpcio-testing/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Testing utilities for gRPC Python"; homepage = "https://grpc.io/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/grpcio-tools/default.nix b/pkgs/development/python-modules/grpcio-tools/default.nix index 95baa1a69e6e..cd0e267d9c2b 100644 --- a/pkgs/development/python-modules/grpcio-tools/default.nix +++ b/pkgs/development/python-modules/grpcio-tools/default.nix @@ -46,9 +46,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "grpc_tools" ]; - meta = with lib; { + meta = { description = "Protobuf code generator for gRPC"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://grpc.io/grpc/python/"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/grpcio/default.nix b/pkgs/development/python-modules/grpcio/default.nix index e88a79dd7f12..dce4695f01ec 100644 --- a/pkgs/development/python-modules/grpcio/default.nix +++ b/pkgs/development/python-modules/grpcio/default.nix @@ -74,11 +74,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "grpc" ]; - meta = with lib; { + meta = { description = "HTTP/2-based RPC framework"; homepage = "https://grpc.io/grpc/python/"; changelog = "https://github.com/grpc/grpc/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/grpclib/default.nix b/pkgs/development/python-modules/grpclib/default.nix index e4964bee1541..3dc8d48cb010 100644 --- a/pkgs/development/python-modules/grpclib/default.nix +++ b/pkgs/development/python-modules/grpclib/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "grpclib" ]; - meta = with lib; { + meta = { description = "Pure-Python gRPC implementation for asyncio"; homepage = "https://github.com/vmagamedov/grpclib"; changelog = "https://github.com/vmagamedov/grpclib/blob/v${version}/docs/changelog/index.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ nikstur ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nikstur ]; }; } diff --git a/pkgs/development/python-modules/gruut-ipa/default.nix b/pkgs/development/python-modules/gruut-ipa/default.nix index 56e29e3272e7..862c0750a82d 100644 --- a/pkgs/development/python-modules/gruut-ipa/default.nix +++ b/pkgs/development/python-modules/gruut-ipa/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gruut_ipa" ]; - meta = with lib; { + meta = { description = "Library for manipulating pronunciations using the International Phonetic Alphabet (IPA)"; mainProgram = "gruut-ipa"; homepage = "https://github.com/rhasspy/gruut-ipa"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/gruut/default.nix b/pkgs/development/python-modules/gruut/default.nix index 34db362216ec..234318e7491b 100644 --- a/pkgs/development/python-modules/gruut/default.nix +++ b/pkgs/development/python-modules/gruut/default.nix @@ -105,11 +105,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gruut" ]; - meta = with lib; { + meta = { description = "Tokenizer, text cleaner, and phonemizer for many human languages"; mainProgram = "gruut"; homepage = "https://github.com/rhasspy/gruut"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/gruut/language-pack.nix b/pkgs/development/python-modules/gruut/language-pack.nix index 2cc742d8b54e..37c3d909284c 100644 --- a/pkgs/development/python-modules/gruut/language-pack.nix +++ b/pkgs/development/python-modules/gruut/language-pack.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Language files for gruut tokenizer/phonemizer"; homepage = "https://github.com/rhasspy/gruut"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/gsd/default.nix b/pkgs/development/python-modules/gsd/default.nix index de4e8032dddd..cadea7df43ed 100644 --- a/pkgs/development/python-modules/gsd/default.nix +++ b/pkgs/development/python-modules/gsd/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { popd ''; - meta = with lib; { + meta = { description = "General simulation data file format"; mainProgram = "gsd"; homepage = "https://github.com/glotzerlab/gsd"; changelog = "https://github.com/glotzerlab/gsd/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gsm0338/default.nix b/pkgs/development/python-modules/gsm0338/default.nix index e6153f48a58f..6a3e142a6ce3 100644 --- a/pkgs/development/python-modules/gsm0338/default.nix +++ b/pkgs/development/python-modules/gsm0338/default.nix @@ -24,10 +24,10 @@ buildPythonPackage { pythonImportsCheck = [ "gsm0338" ]; - meta = with lib; { + meta = { description = "Python codec for GSM 03.38"; homepage = "https://github.com/dsch/gsm0338"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/gspread/default.nix b/pkgs/development/python-modules/gspread/default.nix index 201460b18868..947728af6307 100644 --- a/pkgs/development/python-modules/gspread/default.nix +++ b/pkgs/development/python-modules/gspread/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gspread" ]; - meta = with lib; { + meta = { description = "Google Spreadsheets client library"; homepage = "https://github.com/burnash/gspread"; changelog = "https://github.com/burnash/gspread/blob/${src.tag}/HISTORY.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gssapi/default.nix b/pkgs/development/python-modules/gssapi/default.nix index 1684577b011d..ed1930cf1e67 100644 --- a/pkgs/development/python-modules/gssapi/default.nix +++ b/pkgs/development/python-modules/gssapi/default.nix @@ -72,9 +72,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "gssapi" ]; - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/gssapi"; description = "Python GSSAPI Wrapper"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/gtfs-realtime-bindings/default.nix b/pkgs/development/python-modules/gtfs-realtime-bindings/default.nix index 50979a36d10a..3e829f12fedf 100644 --- a/pkgs/development/python-modules/gtfs-realtime-bindings/default.nix +++ b/pkgs/development/python-modules/gtfs-realtime-bindings/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "google.transit" ]; - meta = with lib; { + meta = { description = "Python bindings generated from the GTFS Realtime protocol buffer spec"; homepage = "https://github.com/MobilityData/gtfs-realtime-bindings"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gto/default.nix b/pkgs/development/python-modules/gto/default.nix index 72ddf2639ed3..6cd63fc8e876 100644 --- a/pkgs/development/python-modules/gto/default.nix +++ b/pkgs/development/python-modules/gto/default.nix @@ -89,12 +89,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gto" ]; - meta = with lib; { + meta = { description = "Module for Git Tag Operations"; homepage = "https://github.com/iterative/gto"; changelog = "https://github.com/iterative/gto/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "gto"; }; } diff --git a/pkgs/development/python-modules/gtts-token/default.nix b/pkgs/development/python-modules/gtts-token/default.nix index a747522827ca..c4e128042b32 100644 --- a/pkgs/development/python-modules/gtts-token/default.nix +++ b/pkgs/development/python-modules/gtts-token/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # requires internet access disabledTests = [ "test_real" ]; - meta = with lib; { + meta = { description = "Calculates a token to run the Google Translate text to speech"; homepage = "https://github.com/boudewijn26/gTTS-token"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/guessit/default.nix b/pkgs/development/python-modules/guessit/default.nix index adaefe1da1a2..a906e9da95f4 100644 --- a/pkgs/development/python-modules/guessit/default.nix +++ b/pkgs/development/python-modules/guessit/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "guessit" ]; - meta = with lib; { + meta = { description = "Python library that extracts as much information as possible from a video filename"; mainProgram = "guessit"; homepage = "https://guessit-io.github.io/guessit/"; changelog = "https://github.com/guessit-io/guessit/raw/v${version}/CHANGELOG.md"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/guppy3/default.nix b/pkgs/development/python-modules/guppy3/default.nix index 7a4ea114b931..a77277a3d373 100644 --- a/pkgs/development/python-modules/guppy3/default.nix +++ b/pkgs/development/python-modules/guppy3/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "guppy" ]; - meta = with lib; { + meta = { description = "Python Programming Environment & Heap analysis toolset"; homepage = "https://zhuyifei1999.github.io/guppy3/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/guzzle-sphinx-theme/default.nix b/pkgs/development/python-modules/guzzle-sphinx-theme/default.nix index 59fdf748e2ca..8517cf74d1fe 100644 --- a/pkgs/development/python-modules/guzzle-sphinx-theme/default.nix +++ b/pkgs/development/python-modules/guzzle-sphinx-theme/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "guzzle_sphinx_theme" ]; - meta = with lib; { + meta = { description = "Sphinx theme used by Guzzle: http://guzzlephp.org"; homepage = "https://github.com/guzzle/guzzle_sphinx_theme/"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/gviz-api/default.nix b/pkgs/development/python-modules/gviz-api/default.nix index 72e1692aa851..47fdc10c23a8 100644 --- a/pkgs/development/python-modules/gviz-api/default.nix +++ b/pkgs/development/python-modules/gviz-api/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ six ]; - meta = with lib; { + meta = { description = "Python API for Google Visualization"; homepage = "https://developers.google.com/chart/interactive/docs/dev/gviz_api_lib"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/gvm-tools/default.nix b/pkgs/development/python-modules/gvm-tools/default.nix index 7759eba1e6ac..fbcbda81c977 100644 --- a/pkgs/development/python-modules/gvm-tools/default.nix +++ b/pkgs/development/python-modules/gvm-tools/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gvmtools" ]; - meta = with lib; { + meta = { description = "Collection of APIs that help with remote controlling a Greenbone Security Manager"; homepage = "https://github.com/greenbone/gvm-tools"; changelog = "https://github.com/greenbone/gvm-tools/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gwcs/default.nix b/pkgs/development/python-modules/gwcs/default.nix index 540a326a23f7..1efa3fa8d282 100644 --- a/pkgs/development/python-modules/gwcs/default.nix +++ b/pkgs/development/python-modules/gwcs/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gwcs" ]; - meta = with lib; { + meta = { description = "Module to manage the Generalized World Coordinate System"; homepage = "https://github.com/spacetelescope/gwcs"; changelog = "https://github.com/spacetelescope/gwcs/blob/${src.tag}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/gym-notices/default.nix b/pkgs/development/python-modules/gym-notices/default.nix index 1132fa795d5b..6a3a6aff0ae6 100644 --- a/pkgs/development/python-modules/gym-notices/default.nix +++ b/pkgs/development/python-modules/gym-notices/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gym_notices" ]; - meta = with lib; { + meta = { description = "Notices for Python package Gym"; homepage = "https://github.com/Farama-Foundation/gym-notices"; - license = licenses.mit; - maintainers = with maintainers; [ billhuang ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ billhuang ]; }; } diff --git a/pkgs/development/python-modules/gyp/default.nix b/pkgs/development/python-modules/gyp/default.nix index 6a0cd4876e63..9d7fe03783d8 100644 --- a/pkgs/development/python-modules/gyp/default.nix +++ b/pkgs/development/python-modules/gyp/default.nix @@ -39,11 +39,11 @@ buildPythonPackage { chmod +x "$out/${python.sitePackages}/gyp/mac_tool.py" ''; - meta = with lib; { + meta = { description = "Tool to generate native build files"; mainProgram = "gyp"; homepage = "https://gyp.gsrc.io"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/h11/default.nix b/pkgs/development/python-modules/h11/default.nix index 0594cc3537a4..25905f36006c 100644 --- a/pkgs/development/python-modules/h11/default.nix +++ b/pkgs/development/python-modules/h11/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { inherit httpcore httpx wsproto; }; - meta = with lib; { + meta = { description = "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1"; homepage = "https://github.com/python-hyper/h11"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/h2/default.nix b/pkgs/development/python-modules/h2/default.nix index 6ba3afe39fde..4fb7b930debe 100644 --- a/pkgs/development/python-modules/h2/default.nix +++ b/pkgs/development/python-modules/h2/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "h2.config" ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-hyper/h2/blob/${src.tag}/CHANGELOG.rst"; description = "HTTP/2 State-Machine based protocol implementation"; homepage = "https://github.com/python-hyper/h2"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/h5netcdf/default.nix b/pkgs/development/python-modules/h5netcdf/default.nix index 97577acf567f..733cabe24d75 100644 --- a/pkgs/development/python-modules/h5netcdf/default.nix +++ b/pkgs/development/python-modules/h5netcdf/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "h5netcdf" ]; - meta = with lib; { + meta = { description = "Pythonic interface to netCDF4 via h5py"; homepage = "https://github.com/shoyer/h5netcdf"; changelog = "https://github.com/h5netcdf/h5netcdf/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ha-ffmpeg/default.nix b/pkgs/development/python-modules/ha-ffmpeg/default.nix index 3908c424f9e5..80ab9e8bf0ae 100644 --- a/pkgs/development/python-modules/ha-ffmpeg/default.nix +++ b/pkgs/development/python-modules/ha-ffmpeg/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "haffmpeg.tools" ]; - meta = with lib; { + meta = { description = "Library for Home Assistant to handle ffmpeg"; homepage = "https://github.com/home-assistant-libs/ha-ffmpeg/"; changelog = "https://github.com/home-assistant-libs/ha-ffmpeg/releases/tag/${version}"; - license = licenses.bsd3; - teams = [ teams.home-assistant ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/development/python-modules/ha-iotawattpy/default.nix b/pkgs/development/python-modules/ha-iotawattpy/default.nix index c50c500e31f5..35b6b9638e39 100644 --- a/pkgs/development/python-modules/ha-iotawattpy/default.nix +++ b/pkgs/development/python-modules/ha-iotawattpy/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "iotawattpy" ]; - meta = with lib; { + meta = { description = "Python library for the IoTaWatt Energy device"; homepage = "https://github.com/gtdiehl/iotawattpy"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ha-mqtt-discoverable/default.nix b/pkgs/development/python-modules/ha-mqtt-discoverable/default.nix index 227eefc821ea..ceb8de5a9175 100644 --- a/pkgs/development/python-modules/ha-mqtt-discoverable/default.nix +++ b/pkgs/development/python-modules/ha-mqtt-discoverable/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ha_mqtt_discoverable" ]; - meta = with lib; { + meta = { description = "Python module to create MQTT entities that are automatically discovered by Home Assistant"; homepage = "https://github.com/unixorn/ha-mqtt-discoverable"; changelog = "https://github.com/unixorn/ha-mqtt-discoverable/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ha-philipsjs/default.nix b/pkgs/development/python-modules/ha-philipsjs/default.nix index 707dc402cf4c..f1f9494eced6 100644 --- a/pkgs/development/python-modules/ha-philipsjs/default.nix +++ b/pkgs/development/python-modules/ha-philipsjs/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "haphilipsjs" ]; - meta = with lib; { + meta = { description = "Library to interact with Philips TVs with jointSPACE API"; homepage = "https://github.com/danielperna84/ha-philipsjs"; changelog = "https://github.com/danielperna84/ha-philipsjs/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/habitipy/default.nix b/pkgs/development/python-modules/habitipy/default.nix index 4362bffcf575..6846b629a29b 100644 --- a/pkgs/development/python-modules/habitipy/default.nix +++ b/pkgs/development/python-modules/habitipy/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "habitipy" ]; - meta = with lib; { + meta = { description = "Tools and library for Habitica restful API"; mainProgram = "habitipy"; homepage = "https://github.com/ASMfreaK/habitipy"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/habluetooth/default.nix b/pkgs/development/python-modules/habluetooth/default.nix index 257d14049555..5cbd2f92221c 100644 --- a/pkgs/development/python-modules/habluetooth/default.nix +++ b/pkgs/development/python-modules/habluetooth/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "habluetooth" ]; - meta = with lib; { + meta = { description = "Library for high availability Bluetooth"; homepage = "https://github.com/Bluetooth-Devices/habluetooth"; changelog = "https://github.com/Bluetooth-Devices/habluetooth/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hachoir/default.nix b/pkgs/development/python-modules/hachoir/default.nix index 7d371f166563..4737f493c340 100644 --- a/pkgs/development/python-modules/hachoir/default.nix +++ b/pkgs/development/python-modules/hachoir/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hachoir" ]; - meta = with lib; { + meta = { description = "Python library to view and edit a binary stream"; homepage = "https://hachoir.readthedocs.io/"; changelog = "https://github.com/vstinner/hachoir/blob/${version}/doc/changelog.rst"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hacking/default.nix b/pkgs/development/python-modules/hacking/default.nix index b233e1aeb042..cbc65e8b9a47 100644 --- a/pkgs/development/python-modules/hacking/default.nix +++ b/pkgs/development/python-modules/hacking/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hacking" ]; - meta = with lib; { + meta = { description = "OpenStack Hacking Guideline Enforcement"; homepage = "https://github.com/openstack/hacking"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/hakuin/default.nix b/pkgs/development/python-modules/hakuin/default.nix index 6176641ed96e..4f9ba766166e 100644 --- a/pkgs/development/python-modules/hakuin/default.nix +++ b/pkgs/development/python-modules/hakuin/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hakuin" ]; - meta = with lib; { + meta = { description = "Blind SQL Injection optimization and automation framework"; homepage = "https://github.com/pruzko/hakuin"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/halo/default.nix b/pkgs/development/python-modules/halo/default.nix index a2372b73eb4c..baf4cad0a0c3 100644 --- a/pkgs/development/python-modules/halo/default.nix +++ b/pkgs/development/python-modules/halo/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "halo" ]; - meta = with lib; { + meta = { description = "Beautiful Spinners for Terminal, IPython and Jupyter"; homepage = "https://github.com/manrajgrover/halo"; - license = licenses.mit; - maintainers = with maintainers; [ urbas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urbas ]; }; } diff --git a/pkgs/development/python-modules/halohome/default.nix b/pkgs/development/python-modules/halohome/default.nix index b4d79a6a5a7e..d11df490f0f5 100644 --- a/pkgs/development/python-modules/halohome/default.nix +++ b/pkgs/development/python-modules/halohome/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "halohome" ]; - meta = with lib; { + meta = { description = "Python library to control Eaton HALO Home Smart Lights"; homepage = "https://github.com/nayaverdier/halohome"; changelog = "https://github.com/nayaverdier/halohome/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/handout/default.nix b/pkgs/development/python-modules/handout/default.nix index 975e3003ba59..74560b630e9d 100644 --- a/pkgs/development/python-modules/handout/default.nix +++ b/pkgs/development/python-modules/handout/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { imageio-ffmpeg ]; - meta = with lib; { + meta = { description = "Turn Python scripts into handouts with Markdown and figures"; homepage = "https://github.com/danijar/handout"; - license = licenses.gpl3; - maintainers = with maintainers; [ averelld ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ averelld ]; }; } diff --git a/pkgs/development/python-modules/hass-nabucasa/default.nix b/pkgs/development/python-modules/hass-nabucasa/default.nix index 3af023c0f9ee..a5af8eb18d02 100644 --- a/pkgs/development/python-modules/hass-nabucasa/default.nix +++ b/pkgs/development/python-modules/hass-nabucasa/default.nix @@ -88,11 +88,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hass_nabucasa" ]; - meta = with lib; { + meta = { description = "Python module for the Home Assistant cloud integration"; homepage = "https://github.com/NabuCasa/hass-nabucasa"; changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/hassil/default.nix b/pkgs/development/python-modules/hassil/default.nix index 15aa2a036ab0..bcf1f4c54b3f 100644 --- a/pkgs/development/python-modules/hassil/default.nix +++ b/pkgs/development/python-modules/hassil/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { "tests/test_fuzzy.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/home-assistant/hassil/blob/${src.tag}/CHANGELOG.md"; description = "Intent parsing for Home Assistant"; mainProgram = "hassil"; homepage = "https://github.com/home-assistant/hassil"; - license = licenses.asl20; - teams = [ teams.home-assistant ]; + license = lib.licenses.asl20; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/development/python-modules/hatasmota/default.nix b/pkgs/development/python-modules/hatasmota/default.nix index 6d8f582e0419..fbde7ed04da5 100644 --- a/pkgs/development/python-modules/hatasmota/default.nix +++ b/pkgs/development/python-modules/hatasmota/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hatasmota" ]; - meta = with lib; { + meta = { description = "Python module to help parse and construct Tasmota MQTT messages"; homepage = "https://github.com/emontnemery/hatasmota"; changelog = "https://github.com/emontnemery/hatasmota/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hatch-fancy-pypi-readme/default.nix b/pkgs/development/python-modules/hatch-fancy-pypi-readme/default.nix index fef25b9aeaae..990c5d334295 100644 --- a/pkgs/development/python-modules/hatch-fancy-pypi-readme/default.nix +++ b/pkgs/development/python-modules/hatch-fancy-pypi-readme/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hatch_fancy_pypi_readme" ]; - meta = with lib; { + meta = { description = "Fancy PyPI READMEs with Hatch"; mainProgram = "hatch-fancy-pypi-readme"; homepage = "https://github.com/hynek/hatch-fancy-pypi-readme"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/hatch-jupyter-builder/default.nix b/pkgs/development/python-modules/hatch-jupyter-builder/default.nix index a071f07b2313..e211585c3940 100644 --- a/pkgs/development/python-modules/hatch-jupyter-builder/default.nix +++ b/pkgs/development/python-modules/hatch-jupyter-builder/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { "test_hatch_build" ]; - meta = with lib; { + meta = { changelog = "https://github.com/jupyterlab/hatch-jupyter-builder/releases/tag/v${version}"; description = "Hatch plugin to help build Jupyter packages"; mainProgram = "hatch-jupyter-builder"; homepage = "https://github.com/jupyterlab/hatch-jupyter-builder"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hatch-nodejs-version/default.nix b/pkgs/development/python-modules/hatch-nodejs-version/default.nix index e46a1d40b92f..5a91b9186849 100644 --- a/pkgs/development/python-modules/hatch-nodejs-version/default.nix +++ b/pkgs/development/python-modules/hatch-nodejs-version/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hatch_nodejs_version" ]; - meta = with lib; { + meta = { description = "Plugins for dealing with NodeJS versions"; homepage = "https://github.com/agoose77/hatch-nodejs-version"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/hatch-odoo/default.nix b/pkgs/development/python-modules/hatch-odoo/default.nix index 81f191db59b4..83f07c43caf6 100644 --- a/pkgs/development/python-modules/hatch-odoo/default.nix +++ b/pkgs/development/python-modules/hatch-odoo/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { tomli ]; - meta = with lib; { + meta = { description = "Hatch plugin to develop and package Odoo projects"; homepage = "https://github.com/acsone/hatch-odoo"; - license = licenses.mit; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/hatch-regex-commit/default.nix b/pkgs/development/python-modules/hatch-regex-commit/default.nix index 451455b6d4c2..673dd0853aa6 100644 --- a/pkgs/development/python-modules/hatch-regex-commit/default.nix +++ b/pkgs/development/python-modules/hatch-regex-commit/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hatch_regex_commit" ]; - meta = with lib; { + meta = { description = "Hatch plugin to create a commit and tag when bumping version"; homepage = "https://github.com/frankie567/hatch-regex-commit"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hatch-requirements-txt/default.nix b/pkgs/development/python-modules/hatch-requirements-txt/default.nix index e324c50c82bd..fd2e1d6e6150 100644 --- a/pkgs/development/python-modules/hatch-requirements-txt/default.nix +++ b/pkgs/development/python-modules/hatch-requirements-txt/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/repo-helper/hatch-requirements-txt/releases/tag/${version}"; description = "Hatchling plugin to read project dependencies from requirements.txt"; homepage = "https://github.com/repo-helper/hatch-requirements-txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hatch-vcs/default.nix b/pkgs/development/python-modules/hatch-vcs/default.nix index 2bdb4e7622a5..be86aed225ae 100644 --- a/pkgs/development/python-modules/hatch-vcs/default.nix +++ b/pkgs/development/python-modules/hatch-vcs/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hatch_vcs" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ofek/hatch-vcs/releases/tag/v${version}"; description = "Plugin for Hatch that uses your preferred version control system (like Git) to determine project versions"; homepage = "https://github.com/ofek/hatch-vcs"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/haversine/default.nix b/pkgs/development/python-modules/haversine/default.nix index dbfc2346df2e..e4361534e94b 100644 --- a/pkgs/development/python-modules/haversine/default.nix +++ b/pkgs/development/python-modules/haversine/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "haversine" ]; - meta = with lib; { + meta = { description = "Python module the distance between 2 points on earth"; homepage = "https://github.com/mapado/haversine"; changelog = "https://github.com/mapado/haversine/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hawkauthlib/default.nix b/pkgs/development/python-modules/hawkauthlib/default.nix index 8c552f909f60..3cca7ffea268 100644 --- a/pkgs/development/python-modules/hawkauthlib/default.nix +++ b/pkgs/development/python-modules/hawkauthlib/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/mozilla-services/hawkauthlib"; description = "Hawk Access Authentication protocol"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/haystack-ai/default.nix b/pkgs/development/python-modules/haystack-ai/default.nix index ba792ffa3e7f..015372fc0c5f 100644 --- a/pkgs/development/python-modules/haystack-ai/default.nix +++ b/pkgs/development/python-modules/haystack-ai/default.nix @@ -264,8 +264,8 @@ buildPythonPackage rec { ''; changelog = "https://github.com/deepset-ai/haystack/releases/tag/${src.tag}"; homepage = "https://github.com/deepset-ai/haystack"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; # https://github.com/deepset-ai/haystack/issues/5304 broken = versionAtLeast pydantic.version "2"; }; diff --git a/pkgs/development/python-modules/hcloud/default.nix b/pkgs/development/python-modules/hcloud/default.nix index c458d692ce4c..da79f5871b8b 100644 --- a/pkgs/development/python-modules/hcloud/default.nix +++ b/pkgs/development/python-modules/hcloud/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hcloud" ]; - meta = with lib; { + meta = { description = "Library for the Hetzner Cloud API"; homepage = "https://github.com/hetznercloud/hcloud-python"; changelog = "https://github.com/hetznercloud/hcloud-python/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ liff ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ liff ]; }; } diff --git a/pkgs/development/python-modules/hdate/default.nix b/pkgs/development/python-modules/hdate/default.nix index 47d047f501ce..d70fc70a2a23 100644 --- a/pkgs/development/python-modules/hdate/default.nix +++ b/pkgs/development/python-modules/hdate/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hdate" ]; - meta = with lib; { + meta = { description = "Python module for Jewish/Hebrew date and Zmanim"; homepage = "https://github.com/py-libhdate/py-libhdate"; changelog = "https://github.com/py-libhdate/py-libhdate/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hdf5plugin/default.nix b/pkgs/development/python-modules/hdf5plugin/default.nix index 29fee28b2d25..935fa2f65dc8 100644 --- a/pkgs/development/python-modules/hdf5plugin/default.nix +++ b/pkgs/development/python-modules/hdf5plugin/default.nix @@ -69,14 +69,14 @@ buildPythonPackage rec { mkdir src/hdf5plugin/plugins ''; - meta = with lib; { + meta = { description = "Additional compression filters for h5py"; longDescription = '' hdf5plugin provides HDF5 compression filters and makes them usable from h5py. Supported encodings: Blosc, Blosc2, BitShuffle, BZip2, FciDecomp, LZ4, SZ, SZ3, Zfp, ZStd ''; homepage = "http://www.silx.org/doc/hdf5plugin/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/hdfs/default.nix b/pkgs/development/python-modules/hdfs/default.nix index bc114e568571..2d8163d0dbf3 100644 --- a/pkgs/development/python-modules/hdfs/default.nix +++ b/pkgs/development/python-modules/hdfs/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "hdfs" ]; - meta = with lib; { + meta = { description = "Python API and command line interface for HDFS"; homepage = "https://github.com/mtth/hdfs"; changelog = "https://github.com/mtth/hdfs/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; mainProgram = "hdfscli"; }; } diff --git a/pkgs/development/python-modules/hdmedians/default.nix b/pkgs/development/python-modules/hdmedians/default.nix index 0b175669db51..558755bbfcb6 100644 --- a/pkgs/development/python-modules/hdmedians/default.nix +++ b/pkgs/development/python-modules/hdmedians/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { cd $out ''; - meta = with lib; { + meta = { homepage = "https://github.com/daleroberts/hdmedians"; description = "High-dimensional medians"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/headerparser/default.nix b/pkgs/development/python-modules/headerparser/default.nix index 9407b48e0700..39b140d213c0 100644 --- a/pkgs/development/python-modules/headerparser/default.nix +++ b/pkgs/development/python-modules/headerparser/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "headerparser" ]; - meta = with lib; { + meta = { description = "Module to parse key-value pairs in the style of RFC 822 (e-mail) headers"; homepage = "https://github.com/jwodder/headerparser"; changelog = "https://github.com/wheelodex/headerparser/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ayazhafiz ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ayazhafiz ]; }; } diff --git a/pkgs/development/python-modules/heapdict/default.nix b/pkgs/development/python-modules/heapdict/default.nix index af5bf61db989..77d0b34bf044 100644 --- a/pkgs/development/python-modules/heapdict/default.nix +++ b/pkgs/development/python-modules/heapdict/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "heapdict" ]; - meta = with lib; { + meta = { description = "Heap with decrease-key and increase-key operations"; homepage = "https://github.com/DanielStutzbach/heapdict"; - license = licenses.bsd3; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/heatshrink2/default.nix b/pkgs/development/python-modules/heatshrink2/default.nix index 02ffbeb7183a..908777cd43ab 100644 --- a/pkgs/development/python-modules/heatshrink2/default.nix +++ b/pkgs/development/python-modules/heatshrink2/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "heatshrink2" ]; - meta = with lib; { + meta = { description = "Compression using the Heatshrink algorithm"; homepage = "https://github.com/eerimoq/pyheatshrink"; - license = licenses.isc; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/heatzypy/default.nix b/pkgs/development/python-modules/heatzypy/default.nix index 3b250e4d32e5..ec1fa4d54017 100644 --- a/pkgs/development/python-modules/heatzypy/default.nix +++ b/pkgs/development/python-modules/heatzypy/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "heatzypy" ]; - meta = with lib; { + meta = { description = "Module to interact with Heatzy devices"; homepage = "https://github.com/Cyr-ius/heatzypy"; changelog = "https://github.com/cyr-ius/heatzypy/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/help2man/default.nix b/pkgs/development/python-modules/help2man/default.nix index 134e0429e842..c6d4c902097a 100644 --- a/pkgs/development/python-modules/help2man/default.nix +++ b/pkgs/development/python-modules/help2man/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "help2man" ]; - meta = with lib; { + meta = { description = "Convert --help and --version to man page"; homepage = "https://github.com/Freed-Wu/help2man"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ natsukium ]; mainProgram = "help2man"; }; } diff --git a/pkgs/development/python-modules/helper/default.nix b/pkgs/development/python-modules/helper/default.nix index 533f3c74c9cd..12cdd3ac1d15 100644 --- a/pkgs/development/python-modules/helper/default.nix +++ b/pkgs/development/python-modules/helper/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { "helper.config" ]; - meta = with lib; { + meta = { description = "Development library for quickly writing configurable applications and daemons"; homepage = "https://helper.readthedocs.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/herepy/default.nix b/pkgs/development/python-modules/herepy/default.nix index 5cd34b16a855..a6e057b88288 100644 --- a/pkgs/development/python-modules/herepy/default.nix +++ b/pkgs/development/python-modules/herepy/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "herepy" ]; - meta = with lib; { + meta = { changelog = "https://github.com/abdullahselek/HerePy/releases/tag/${version}"; description = "Library that provides a Python interface to the HERE APIs"; homepage = "https://github.com/abdullahselek/HerePy"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/hetzner/default.nix b/pkgs/development/python-modules/hetzner/default.nix index fd4eb8496ce9..592804449801 100644 --- a/pkgs/development/python-modules/hetzner/default.nix +++ b/pkgs/development/python-modules/hetzner/default.nix @@ -16,11 +16,11 @@ buildPythonPackage rec { sha256 = "0nhm7j2y4rgmrl0c1rklg982qllp7fky34dchqwd4czbsdnv9j7a"; }; - meta = with lib; { + meta = { homepage = "https://github.com/RedMoonStudios/hetzner"; description = "High-level Python API for accessing the Hetzner robot"; mainProgram = "hetznerctl"; - license = licenses.bsd3; - maintainers = with maintainers; [ aszlig ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ aszlig ]; }; } diff --git a/pkgs/development/python-modules/hexbytes/default.nix b/pkgs/development/python-modules/hexbytes/default.nix index ea1e5692a54d..c5706af23b88 100644 --- a/pkgs/development/python-modules/hexbytes/default.nix +++ b/pkgs/development/python-modules/hexbytes/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hexbytes" ]; - meta = with lib; { + meta = { description = "`bytes` subclass that decodes hex, with a readable console output"; homepage = "https://github.com/ethereum/hexbytes"; changelog = "https://github.com/ethereum/hexbytes/blob/v${version}/docs/release_notes.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hexdump/default.nix b/pkgs/development/python-modules/hexdump/default.nix index 0a2c57ab7bbb..1009169bd5b7 100644 --- a/pkgs/development/python-modules/hexdump/default.nix +++ b/pkgs/development/python-modules/hexdump/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hexdump" ]; - meta = with lib; { + meta = { description = "Library to dump binary data to hex format and restore from there"; homepage = "https://pypi.org/project/hexdump/"; # BitBucket site returns 404 - license = licenses.publicDomain; - maintainers = with maintainers; [ + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ frogamic sbruder ]; diff --git a/pkgs/development/python-modules/hfst/default.nix b/pkgs/development/python-modules/hfst/default.nix index 37869ffad3e3..b5ac581d95f8 100644 --- a/pkgs/development/python-modules/hfst/default.nix +++ b/pkgs/development/python-modules/hfst/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { export DYLD_LIBRARY_PATH="${foma}/lib" ''; - meta = with lib; { + meta = { description = "Python bindings for HFST"; homepage = "https://github.com/hfst/hfst"; - license = licenses.gpl3; - maintainers = with maintainers; [ lurkki ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ lurkki ]; }; } diff --git a/pkgs/development/python-modules/hg-commitsigs/default.nix b/pkgs/development/python-modules/hg-commitsigs/default.nix index 39a50194fafc..84cda6e4325d 100644 --- a/pkgs/development/python-modules/hg-commitsigs/default.nix +++ b/pkgs/development/python-modules/hg-commitsigs/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { $out/${python.sitePackages}/hgext3rd/ ''; - meta = with lib; { + meta = { description = "Automatic signing of changeset hashes"; longDescription = '' This packages provides a Mercurial extension that lets you sign @@ -35,8 +35,8 @@ stdenv.mkDerivation { commits. Either GnuPG or OpenSSL can be used to sign the hashes. ''; homepage = "https://foss.heptapod.net/mercurial/commitsigs"; - maintainers = with maintainers; [ yoctocell ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; # same as Mercurial + maintainers = with lib.maintainers; [ yoctocell ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; # same as Mercurial }; } diff --git a/pkgs/development/python-modules/hg-evolve/default.nix b/pkgs/development/python-modules/hg-evolve/default.nix index bbcbc3873565..30f0893788b9 100644 --- a/pkgs/development/python-modules/hg-evolve/default.nix +++ b/pkgs/development/python-modules/hg-evolve/default.nix @@ -54,13 +54,13 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Enables the “changeset evolution” feature of Mercurial core"; homepage = "https://www.mercurial-scm.org/doc/evolution/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ xavierzwirtz lukegb ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/python-modules/hg-git/default.nix b/pkgs/development/python-modules/hg-git/default.nix index e714a9f5ee1b..9d1db924d595 100644 --- a/pkgs/development/python-modules/hg-git/default.nix +++ b/pkgs/development/python-modules/hg-git/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hggit" ]; - meta = with lib; { + meta = { description = "Push and pull from a Git server using Mercurial"; homepage = "https://hg-git.github.io/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/hickle/default.nix b/pkgs/development/python-modules/hickle/default.nix index 48190f2cfa18..1051ed0bf912 100644 --- a/pkgs/development/python-modules/hickle/default.nix +++ b/pkgs/development/python-modules/hickle/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hickle" ]; - meta = with lib; { + meta = { description = "Serialize Python data to HDF5"; homepage = "https://github.com/telegraphic/hickle"; changelog = "https://github.com/telegraphic/hickle/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/hid-parser/default.nix b/pkgs/development/python-modules/hid-parser/default.nix index 91cb21d24cfa..dae57d0ac5d1 100644 --- a/pkgs/development/python-modules/hid-parser/default.nix +++ b/pkgs/development/python-modules/hid-parser/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hid_parser" ]; - meta = with lib; { + meta = { description = "Typed pure Python library to parse HID report descriptors"; homepage = "https://github.com/usb-tools/python-hid-parser"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/development/python-modules/hid/default.nix b/pkgs/development/python-modules/hid/default.nix index 2dfdcc6b7f76..8e02f2f48d1e 100644 --- a/pkgs/development/python-modules/hid/default.nix +++ b/pkgs/development/python-modules/hid/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hid" ]; - meta = with lib; { + meta = { description = "Hidapi bindings in ctypes"; homepage = "https://github.com/apmorton/pyhidapi"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hidapi/default.nix b/pkgs/development/python-modules/hidapi/default.nix index c0dc4509ec43..d57c747bafe4 100644 --- a/pkgs/development/python-modules/hidapi/default.nix +++ b/pkgs/development/python-modules/hidapi/default.nix @@ -42,16 +42,16 @@ buildPythonPackage rec { pythonImportsCheck = [ "hid" ]; - meta = with lib; { + meta = { description = "Cython interface to the hidapi from https://github.com/libusb/hidapi"; homepage = "https://github.com/trezor/cython-hidapi"; # license can actually be either bsd3 or gpl3 # see https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt - license = with licenses; [ + license = with lib.licenses; [ bsd3 gpl3Only ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ np prusnak ]; diff --git a/pkgs/development/python-modules/hieroglyph/default.nix b/pkgs/development/python-modules/hieroglyph/default.nix index 848bb9cac979..e7b633e420a2 100644 --- a/pkgs/development/python-modules/hieroglyph/default.nix +++ b/pkgs/development/python-modules/hieroglyph/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { # test_absolute_paths_made_relative (hieroglyph.tests.test_path_fixing.PostProcessImageTests) ... ERROR doCheck = false; - meta = with lib; { + meta = { description = "Generate HTML presentations from plain text sources"; homepage = "https://github.com/nyergler/hieroglyph/"; - license = licenses.bsd3; - maintainers = with maintainers; [ juliendehos ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ juliendehos ]; }; } diff --git a/pkgs/development/python-modules/highspy/default.nix b/pkgs/development/python-modules/highspy/default.nix index 6d1847d100dd..89b771987443 100644 --- a/pkgs/development/python-modules/highspy/default.nix +++ b/pkgs/development/python-modules/highspy/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Linear optimization software"; homepage = "https://github.com/ERGO-Code/HiGHS"; - license = licenses.mit; - maintainers = with maintainers; [ renesat ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ renesat ]; }; } diff --git a/pkgs/development/python-modules/hijridate/default.nix b/pkgs/development/python-modules/hijridate/default.nix index 904159b7144a..f440f6c427ce 100644 --- a/pkgs/development/python-modules/hijridate/default.nix +++ b/pkgs/development/python-modules/hijridate/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hijridate" ]; - meta = with lib; { + meta = { description = "Accurate Hijri-Gregorian date converter based on the Umm al-Qura calendar"; homepage = "https://github.com/dralshehri/hijridate"; changelog = "https://github.com/dralshehri/hijridate/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/hikari-lightbulb/default.nix b/pkgs/development/python-modules/hikari-lightbulb/default.nix index 92d2ea4d1f0f..7c47b7349417 100644 --- a/pkgs/development/python-modules/hikari-lightbulb/default.nix +++ b/pkgs/development/python-modules/hikari-lightbulb/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "lightbulb" ]; - meta = with lib; { + meta = { broken = true; # missing linkd and confspec dependencies description = "Command handler for Hikari, the Python Discord API wrapper library"; longDescription = '' @@ -43,7 +43,7 @@ buildPythonPackage rec { ''; homepage = "https://hikari-lightbulb.readthedocs.io/en/latest/"; # https://github.com/tandemdude/hikari-lightbulb/blob/d87df463488d1c1d947144ac0bafa4304e12ddfd/setup.py#L68 - license = licenses.lgpl3Only; - maintainers = with maintainers; [ tomodachi94 ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ tomodachi94 ]; }; } diff --git a/pkgs/development/python-modules/hikvision/default.nix b/pkgs/development/python-modules/hikvision/default.nix index da15a3523899..5970d35cdd02 100644 --- a/pkgs/development/python-modules/hikvision/default.nix +++ b/pkgs/development/python-modules/hikvision/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hikvision.api" ]; - meta = with lib; { + meta = { description = "Python module for interacting with Hikvision IP Cameras"; homepage = "https://github.com/fbradyirl/hikvision"; changelog = "https://github.com/fbradyirl/hikvision/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hiredis/default.nix b/pkgs/development/python-modules/hiredis/default.nix index e6bc6c169a1e..cf18b05d7858 100644 --- a/pkgs/development/python-modules/hiredis/default.nix +++ b/pkgs/development/python-modules/hiredis/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { rm -rf hiredis ''; - meta = with lib; { + meta = { description = "Wraps protocol parsing code in hiredis, speeds up parsing of multi bulk replies"; homepage = "https://github.com/redis/hiredis-py"; changelog = "https://github.com/redis/hiredis-py/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/hiro/default.nix b/pkgs/development/python-modules/hiro/default.nix index 7b7f7d8dbf05..1b0ca5464f99 100644 --- a/pkgs/development/python-modules/hiro/default.nix +++ b/pkgs/development/python-modules/hiro/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { mock ]; - meta = with lib; { + meta = { description = "Time manipulation utilities for Python"; homepage = "https://hiro.readthedocs.io/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ nyarly ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyarly ]; }; } diff --git a/pkgs/development/python-modules/hishel/default.nix b/pkgs/development/python-modules/hishel/default.nix index ce93ef214501..c226fb96b68a 100644 --- a/pkgs/development/python-modules/hishel/default.nix +++ b/pkgs/development/python-modules/hishel/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { "tests/_sync/test_storages.py" ]; - meta = with lib; { + meta = { description = "HTTP Cache implementation for HTTPX and HTTP Core"; homepage = "https://github.com/karpetrosyan/hishel"; changelog = "https://github.com/karpetrosyan/hishel/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hist/default.nix b/pkgs/development/python-modules/hist/default.nix index 932d50a4c9de..2c022e5a284b 100644 --- a/pkgs/development/python-modules/hist/default.nix +++ b/pkgs/development/python-modules/hist/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pytest-mpl ]; - meta = with lib; { + meta = { description = "Histogramming for analysis powered by boost-histogram"; mainProgram = "hist"; homepage = "https://hist.readthedocs.io/"; changelog = "https://github.com/scikit-hep/hist/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/histoprint/default.nix b/pkgs/development/python-modules/histoprint/default.nix index b6e3f310f7ac..0791320af9ac 100644 --- a/pkgs/development/python-modules/histoprint/default.nix +++ b/pkgs/development/python-modules/histoprint/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pretty print histograms to the console"; mainProgram = "histoprint"; homepage = "https://github.com/scikit-hep/histoprint"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/hiyapyco/default.nix b/pkgs/development/python-modules/hiyapyco/default.nix index 98de45b7604c..b47c5a3cc006 100644 --- a/pkgs/development/python-modules/hiyapyco/default.nix +++ b/pkgs/development/python-modules/hiyapyco/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hiyapyco" ]; - meta = with lib; { + meta = { description = "Python library allowing hierarchical overlay of config files in YAML syntax"; homepage = "https://github.com/zerwes/hiyapyco"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/hjson/default.nix b/pkgs/development/python-modules/hjson/default.nix index fd7f8c813e00..82baf3e75fed 100644 --- a/pkgs/development/python-modules/hjson/default.nix +++ b/pkgs/development/python-modules/hjson/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "hjson/tests/test_tool.py" ]; - meta = with lib; { + meta = { description = "User interface for JSON"; homepage = "https://github.com/hjson/hjson-py"; changelog = "https://github.com/hjson/hjson-py/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "hjson"; }; } diff --git a/pkgs/development/python-modules/hkavr/default.nix b/pkgs/development/python-modules/hkavr/default.nix index c981affe092c..74980b5dc869 100644 --- a/pkgs/development/python-modules/hkavr/default.nix +++ b/pkgs/development/python-modules/hkavr/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hkavr" ]; - meta = with lib; { + meta = { description = "Library for interacting with Harman Kardon AVR controllers"; homepage = "https://github.com/Devqon/hkavr"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hledger-utils/default.nix b/pkgs/development/python-modules/hledger-utils/default.nix index 0dd811f5a7be..9eaf44e3b819 100644 --- a/pkgs/development/python-modules/hledger-utils/default.nix +++ b/pkgs/development/python-modules/hledger-utils/default.nix @@ -55,15 +55,15 @@ buildPythonPackage rec { export PATH=$out/bin:$PATH ''; - meta = with lib; { + meta = { description = "Utilities extending hledger"; homepage = "https://gitlab.com/nobodyinperson/hledger-utils"; - license = with licenses; [ + license = with lib.licenses; [ cc0 cc-by-40 gpl3 ]; - maintainers = with maintainers; [ nobbz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ nobbz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/hlk-sw16/default.nix b/pkgs/development/python-modules/hlk-sw16/default.nix index 49a2da2686e4..89225e349534 100644 --- a/pkgs/development/python-modules/hlk-sw16/default.nix +++ b/pkgs/development/python-modules/hlk-sw16/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hlk_sw16" ]; - meta = with lib; { + meta = { description = "Python client for HLK-SW16"; homepage = "https://github.com/jameshilliard/hlk-sw16"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/hmmlearn/default.nix b/pkgs/development/python-modules/hmmlearn/default.nix index b12d9b415349..58e132538dfc 100644 --- a/pkgs/development/python-modules/hmmlearn/default.nix +++ b/pkgs/development/python-modules/hmmlearn/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { "hmmlearn" ]; - meta = with lib; { + meta = { description = "Hidden Markov Models in Python with scikit-learn like API"; homepage = "https://github.com/hmmlearn/hmmlearn"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hocr-tools/default.nix b/pkgs/development/python-modules/hocr-tools/default.nix index 705fc7b6013d..5a1f3e7895d0 100644 --- a/pkgs/development/python-modules/hocr-tools/default.nix +++ b/pkgs/development/python-modules/hocr-tools/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { reportlab ]; - meta = with lib; { + meta = { description = "Tools for manipulating and evaluating the hOCR format for representing multi-lingual OCR results by embedding them into HTML"; homepage = "https://github.com/tmbdev/hocr-tools"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hole/default.nix b/pkgs/development/python-modules/hole/default.nix index 5a1435e89164..aaf2ac24370c 100644 --- a/pkgs/development/python-modules/hole/default.nix +++ b/pkgs/development/python-modules/hole/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hole" ]; - meta = with lib; { + meta = { description = "Python API for interacting with a Pihole instance"; homepage = "https://github.com/home-assistant-ecosystem/python-hole"; changelog = "https://github.com/home-assistant-ecosystem/python-hole/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hologram/default.nix b/pkgs/development/python-modules/hologram/default.nix index 9d17983e152a..adc72e9c6615 100644 --- a/pkgs/development/python-modules/hologram/default.nix +++ b/pkgs/development/python-modules/hologram/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hologram" ]; - meta = with lib; { + meta = { description = "Library for automatically generating Draft 7 JSON Schemas from Python dataclasses"; homepage = "https://github.com/dbt-labs/hologram"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mausch ]; }; diff --git a/pkgs/development/python-modules/home-assistant-chip-clusters/default.nix b/pkgs/development/python-modules/home-assistant-chip-clusters/default.nix index ffea5b7cd820..6aff2b81c332 100644 --- a/pkgs/development/python-modules/home-assistant-chip-clusters/default.nix +++ b/pkgs/development/python-modules/home-assistant-chip-clusters/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Python-base APIs and tools for CHIP"; homepage = "https://github.com/home-assistant-libs/chip-wheels"; changelog = "https://github.com/home-assistant-libs/chip-wheels/releases/tag/${version}"; - license = licenses.asl20; - teams = [ teams.home-assistant ]; + license = lib.licenses.asl20; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/development/python-modules/home-assistant-chip-core/default.nix b/pkgs/development/python-modules/home-assistant-chip-core/default.nix index fbbc011d0b6a..2cf2b5602511 100644 --- a/pkgs/development/python-modules/home-assistant-chip-core/default.nix +++ b/pkgs/development/python-modules/home-assistant-chip-core/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Python-base APIs and tools for CHIP"; homepage = "https://github.com/home-assistant-libs/chip-wheels"; changelog = "https://github.com/home-assistant-libs/chip-wheels/releases/tag/${version}"; - license = licenses.asl20; - teams = [ teams.home-assistant ]; + license = lib.licenses.asl20; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/development/python-modules/homeconnect/default.nix b/pkgs/development/python-modules/homeconnect/default.nix index ad1ce2a29102..f3bcabc3be9e 100644 --- a/pkgs/development/python-modules/homeconnect/default.nix +++ b/pkgs/development/python-modules/homeconnect/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "homeconnect" ]; - meta = with lib; { + meta = { description = "Python client for the BSH Home Connect REST API"; homepage = "https://github.com/DavidMStraub/homeconnect"; changelog = "https://github.com/DavidMStraub/homeconnect/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/homematicip/default.nix b/pkgs/development/python-modules/homematicip/default.nix index 0b21d57e57ae..a46dd176da42 100644 --- a/pkgs/development/python-modules/homematicip/default.nix +++ b/pkgs/development/python-modules/homematicip/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "homematicip" ]; - meta = with lib; { + meta = { description = "Module for the homematicIP REST API"; homepage = "https://github.com/hahn-th/homematicip-rest-api"; changelog = "https://github.com/hahn-th/homematicip-rest-api/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/homepluscontrol/default.nix b/pkgs/development/python-modules/homepluscontrol/default.nix index 056e26bc8f22..abee9d427a6a 100644 --- a/pkgs/development/python-modules/homepluscontrol/default.nix +++ b/pkgs/development/python-modules/homepluscontrol/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "homepluscontrol" ]; - meta = with lib; { + meta = { description = "Python API to interact with the Legrand Eliot Home and Control"; homepage = "https://github.com/chemaaa/homepluscontrol"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/homf/default.nix b/pkgs/development/python-modules/homf/default.nix index 861e145b2034..a1a27bfee4ed 100644 --- a/pkgs/development/python-modules/homf/default.nix +++ b/pkgs/development/python-modules/homf/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { # (Ab)using `callPackage` as a fix-point operator, so tests can use the `homf` drv passthru.tests = callPackage ./tests.nix { }; - meta = with lib; { + meta = { description = "Asset download tool for GitHub Releases, PyPi, etc"; mainProgram = "homf"; homepage = "https://github.com/duckinator/homf"; - license = licenses.mit; - maintainers = with maintainers; [ nicoo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicoo ]; }; } diff --git a/pkgs/development/python-modules/hoomd-blue/default.nix b/pkgs/development/python-modules/hoomd-blue/default.nix index 248a2f8cb258..9adcb87f8ee8 100644 --- a/pkgs/development/python-modules/hoomd-blue/default.nix +++ b/pkgs/development/python-modules/hoomd-blue/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { doCheck = false; checkTarget = "test"; - meta = with lib; { + meta = { homepage = "http://glotzerlab.engin.umich.edu/hoomd-blue/"; description = "HOOMD-blue is a general-purpose particle simulation toolkit"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; platforms = [ "x86_64-linux" ]; maintainers = [ ]; # Has compilation errors since some dependencies got updated, will probably diff --git a/pkgs/development/python-modules/hopcroftkarp/default.nix b/pkgs/development/python-modules/hopcroftkarp/default.nix index defbcdeaeb8d..15827c783486 100644 --- a/pkgs/development/python-modules/hopcroftkarp/default.nix +++ b/pkgs/development/python-modules/hopcroftkarp/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # tests fail due to bad package name doCheck = false; - meta = with lib; { + meta = { description = "Implementation of HopcroftKarp's algorithm"; homepage = "https://github.com/sofiat-olaosebikan/hopcroftkarp"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/howdoi/default.nix b/pkgs/development/python-modules/howdoi/default.nix index f87d61631abb..ac24d4b8d135 100644 --- a/pkgs/development/python-modules/howdoi/default.nix +++ b/pkgs/development/python-modules/howdoi/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "howdoi" ]; - meta = with lib; { + meta = { description = "Instant coding answers via the command line"; homepage = "https://github.com/gleitz/howdoi"; changelog = "https://github.com/gleitz/howdoi/blob/v${version}/CHANGES.txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hpack/default.nix b/pkgs/development/python-modules/hpack/default.nix index f77f5bdd71ea..da16cd0896b8 100644 --- a/pkgs/development/python-modules/hpack/default.nix +++ b/pkgs/development/python-modules/hpack/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hpack" ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-hyper/hpack/blob/${src.rev}/CHANGELOG.rst"; description = "Pure-Python HPACK header compression"; homepage = "https://github.com/python-hyper/hpack"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hs-dbus-signature/default.nix b/pkgs/development/python-modules/hs-dbus-signature/default.nix index 2656b55e7f0f..dae22d251dac 100644 --- a/pkgs/development/python-modules/hs-dbus-signature/default.nix +++ b/pkgs/development/python-modules/hs-dbus-signature/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hs_dbus_signature" ]; - meta = with lib; { + meta = { description = "Hypothesis Strategy for Generating Arbitrary DBus Signatures"; homepage = "https://github.com/stratis-storage/hs-dbus-signature"; - license = licenses.mpl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/hsaudiotag3k/default.nix b/pkgs/development/python-modules/hsaudiotag3k/default.nix index 39d4546ee53e..0b56ee91e224 100644 --- a/pkgs/development/python-modules/hsaudiotag3k/default.nix +++ b/pkgs/development/python-modules/hsaudiotag3k/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Pure Python library that lets one to read metadata from media files"; homepage = "http://hg.hardcoded.net/hsaudiotag/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/hsh/default.nix b/pkgs/development/python-modules/hsh/default.nix index f7efbc14e8ae..cdaf058abe3c 100644 --- a/pkgs/development/python-modules/hsh/default.nix +++ b/pkgs/development/python-modules/hsh/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hsh" ]; - meta = with lib; { + meta = { description = "Cross-platform command line application that generates file hash digests and performs file integrity checks via file hash digest comparisons"; homepage = "https://github.com/chrissimpkins/hsh"; downloadPage = "https://github.com/chrissimpkins/hsh/releases"; - license = licenses.mit; - maintainers = [ maintainers.lucasew ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/hsluv/default.nix b/pkgs/development/python-modules/hsluv/default.nix index 063137b74e4d..62e83cf392ed 100644 --- a/pkgs/development/python-modules/hsluv/default.nix +++ b/pkgs/development/python-modules/hsluv/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hsluv" ]; - meta = with lib; { + meta = { description = "Python implementation of HSLuv"; homepage = "https://github.com/hsluv/hsluv-python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hstspreload/default.nix b/pkgs/development/python-modules/hstspreload/default.nix index 1db18fe05203..a364d73d0b2c 100644 --- a/pkgs/development/python-modules/hstspreload/default.nix +++ b/pkgs/development/python-modules/hstspreload/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hstspreload" ]; - meta = with lib; { + meta = { description = "Chromium HSTS Preload list"; homepage = "https://github.com/sethmlarson/hstspreload"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/html-tag-names/default.nix b/pkgs/development/python-modules/html-tag-names/default.nix index e61fee5d89ab..a41cd6d167f1 100644 --- a/pkgs/development/python-modules/html-tag-names/default.nix +++ b/pkgs/development/python-modules/html-tag-names/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "HtmlTagNames" ]; - meta = with lib; { + meta = { description = "List of known HTML tags"; homepage = "https://github.com/Riverside-Healthcare/html-tag-names"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/html-text/default.nix b/pkgs/development/python-modules/html-text/default.nix index 041614c8a439..6964221e31ac 100644 --- a/pkgs/development/python-modules/html-text/default.nix +++ b/pkgs/development/python-modules/html-text/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "html_text" ]; - meta = with lib; { + meta = { description = "Extract text from HTML"; homepage = "https://github.com/zytedata/html-text"; changelog = "https://github.com/zytedata/html-text/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/html-void-elements/default.nix b/pkgs/development/python-modules/html-void-elements/default.nix index 41cbefbf7ada..ce733c80b31f 100644 --- a/pkgs/development/python-modules/html-void-elements/default.nix +++ b/pkgs/development/python-modules/html-void-elements/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "HtmlVoidElements" ]; - meta = with lib; { + meta = { description = "List of HTML void tag names"; homepage = "https://github.com/Riverside-Healthcare/html-void-elements"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/html2image/default.nix b/pkgs/development/python-modules/html2image/default.nix index b6990aa5ca9a..4fd25b0d145a 100644 --- a/pkgs/development/python-modules/html2image/default.nix +++ b/pkgs/development/python-modules/html2image/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "html2image" ]; - meta = with lib; { + meta = { description = "Package acting as a wrapper around the headless mode of existing web browsers to generate images from URLs and from HTML+CSS strings or files"; homepage = "https://github.com/vgalin/html2image"; changelog = "https://github.com/vgalin/html2image/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/html2text/default.nix b/pkgs/development/python-modules/html2text/default.nix index bf13a97b9561..423356ad7396 100644 --- a/pkgs/development/python-modules/html2text/default.nix +++ b/pkgs/development/python-modules/html2text/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "html2text" ]; - meta = with lib; { + meta = { description = "Turn HTML into equivalent Markdown-structured text"; homepage = "https://github.com/Alir3z4/html2text/"; changelog = "https://github.com/Alir3z4/html2text/blob/${src.tag}/ChangeLog.rst"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "html2text"; }; diff --git a/pkgs/development/python-modules/html5-parser/default.nix b/pkgs/development/python-modules/html5-parser/default.nix index 64c7796b5bc3..c2b29efa57d2 100644 --- a/pkgs/development/python-modules/html5-parser/default.nix +++ b/pkgs/development/python-modules/html5-parser/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { enabledTestPaths = [ "test/*.py" ]; - meta = with lib; { + meta = { description = "Fast C based HTML 5 parsing for python"; homepage = "https://html5-parser.readthedocs.io"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/html5tagger/default.nix b/pkgs/development/python-modules/html5tagger/default.nix index 527e3660481b..da131e015889 100644 --- a/pkgs/development/python-modules/html5tagger/default.nix +++ b/pkgs/development/python-modules/html5tagger/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "html5tagger" ]; - meta = with lib; { + meta = { description = "Create HTML documents from Python"; homepage = "https://github.com/sanic-org/html5tagger"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/htmldate/default.nix b/pkgs/development/python-modules/htmldate/default.nix index b6664646514a..08968d791213 100644 --- a/pkgs/development/python-modules/htmldate/default.nix +++ b/pkgs/development/python-modules/htmldate/default.nix @@ -61,12 +61,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "htmldate" ]; - meta = with lib; { + meta = { description = "Module for the extraction of original and updated publication dates from URLs and web pages"; homepage = "https://htmldate.readthedocs.io"; changelog = "https://github.com/adbar/htmldate/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ jokatzke ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jokatzke ]; mainProgram = "htmldate"; }; } diff --git a/pkgs/development/python-modules/htmllistparse/default.nix b/pkgs/development/python-modules/htmllistparse/default.nix index 5bd467bed385..87c9795a8d3c 100644 --- a/pkgs/development/python-modules/htmllistparse/default.nix +++ b/pkgs/development/python-modules/htmllistparse/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "htmllistparse" ]; - meta = with lib; { + meta = { homepage = "https://github.com/gumblex/htmllisting-parser"; description = "Python parser for Apache/nginx-style HTML directory listing"; mainProgram = "rehttpfs"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/htseq/default.nix b/pkgs/development/python-modules/htseq/default.nix index 014b2121b2ef..da4fdbb92200 100644 --- a/pkgs/development/python-modules/htseq/default.nix +++ b/pkgs/development/python-modules/htseq/default.nix @@ -62,9 +62,9 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { homepage = "https://htseq.readthedocs.io/"; description = "Framework to work with high-throughput sequencing data"; - maintainers = with maintainers; [ unode ]; + maintainers = with lib.maintainers; [ unode ]; }; } diff --git a/pkgs/development/python-modules/httmock/default.nix b/pkgs/development/python-modules/httmock/default.nix index 2fb2e64825c5..47060703933b 100644 --- a/pkgs/development/python-modules/httmock/default.nix +++ b/pkgs/development/python-modules/httmock/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "httmock" ]; - meta = with lib; { + meta = { description = "Mocking library for requests"; homepage = "https://github.com/patrys/httmock"; - license = licenses.asl20; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/http-sf/default.nix b/pkgs/development/python-modules/http-sf/default.nix index 345f11736317..3ac2f394c719 100644 --- a/pkgs/development/python-modules/http-sf/default.nix +++ b/pkgs/development/python-modules/http-sf/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "http_sf" ]; - meta = with lib; { + meta = { description = "Module to parse and serialise HTTP structured field values"; homepage = "https://github.com/mnot/http-sf"; changelog = "https://github.com/mnot/http-sf/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/http-sfv/default.nix b/pkgs/development/python-modules/http-sfv/default.nix index 0afeba88c082..0d6d4b2e6364 100644 --- a/pkgs/development/python-modules/http-sfv/default.nix +++ b/pkgs/development/python-modules/http-sfv/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "http_sfv" ]; - meta = with lib; { + meta = { description = "Module to parse and serialise HTTP structured field values"; homepage = "https://github.com/mnot/http_sfv"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/httpagentparser/default.nix b/pkgs/development/python-modules/httpagentparser/default.nix index b85f77398453..de430aeb8f5d 100644 --- a/pkgs/development/python-modules/httpagentparser/default.nix +++ b/pkgs/development/python-modules/httpagentparser/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "httpagentparser" ]; - meta = with lib; { + meta = { description = "Module to extract OS, Browser, etc. information from http user agent string"; homepage = "https://github.com/shon/httpagentparser"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/httpauth/default.nix b/pkgs/development/python-modules/httpauth/default.nix index 80362a801d36..6601cd73078c 100644 --- a/pkgs/development/python-modules/httpauth/default.nix +++ b/pkgs/development/python-modules/httpauth/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "WSGI HTTP Digest Authentication middleware"; homepage = "https://github.com/jonashaag/httpauth"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/httpbin/default.nix b/pkgs/development/python-modules/httpbin/default.nix index ef9fe211f55c..c28d4dfabcb5 100644 --- a/pkgs/development/python-modules/httpbin/default.nix +++ b/pkgs/development/python-modules/httpbin/default.nix @@ -71,10 +71,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "httpbin" ]; - meta = with lib; { + meta = { description = "HTTP Request and Response Service"; homepage = "https://github.com/psf/httpbin"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/httpcore/default.nix b/pkgs/development/python-modules/httpcore/default.nix index 10f8b37b2c4a..3382c25bf625 100644 --- a/pkgs/development/python-modules/httpcore/default.nix +++ b/pkgs/development/python-modules/httpcore/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { inherit httpx httpx-socks respx; }; - meta = with lib; { + meta = { changelog = "https://github.com/encode/httpcore/blob/${version}/CHANGELOG.md"; description = "Minimal low-level HTTP client"; homepage = "https://github.com/encode/httpcore"; - license = licenses.bsd3; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/httpie-ntlm/default.nix b/pkgs/development/python-modules/httpie-ntlm/default.nix index fddee51c99fc..345df5e3ce4d 100644 --- a/pkgs/development/python-modules/httpie-ntlm/default.nix +++ b/pkgs/development/python-modules/httpie-ntlm/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "httpie_ntlm" ]; - meta = with lib; { + meta = { description = "NTLM auth plugin for HTTPie"; homepage = "https://github.com/httpie/httpie-ntlm"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ kfollesdal ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ kfollesdal ]; }; } diff --git a/pkgs/development/python-modules/httpie/default.nix b/pkgs/development/python-modules/httpie/default.nix index 6988642bef4d..60277b771ea9 100644 --- a/pkgs/development/python-modules/httpie/default.nix +++ b/pkgs/development/python-modules/httpie/default.nix @@ -112,12 +112,12 @@ buildPythonPackage rec { "test_daemon_runner" ]; - meta = with lib; { + meta = { description = "Command line HTTP client whose goal is to make CLI human-friendly"; homepage = "https://httpie.org/"; changelog = "https://github.com/httpie/httpie/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ antono relrod ]; diff --git a/pkgs/development/python-modules/httplib2/default.nix b/pkgs/development/python-modules/httplib2/default.nix index 07d8a590a1a2..ef7141fbc59d 100644 --- a/pkgs/development/python-modules/httplib2/default.nix +++ b/pkgs/development/python-modules/httplib2/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "httplib2" ]; - meta = with lib; { + meta = { description = "Comprehensive HTTP client library"; homepage = "https://github.com/httplib2/httplib2"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/httpretty/default.nix b/pkgs/development/python-modules/httpretty/default.nix index 30418edc1acb..9a65c1dbab5d 100644 --- a/pkgs/development/python-modules/httpretty/default.nix +++ b/pkgs/development/python-modules/httpretty/default.nix @@ -44,9 +44,9 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { homepage = "https://httpretty.readthedocs.org/"; description = "HTTP client request mocking tool"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/httpsig/default.nix b/pkgs/development/python-modules/httpsig/default.nix index f18ee0857bfc..dd7034304f25 100644 --- a/pkgs/development/python-modules/httpsig/default.nix +++ b/pkgs/development/python-modules/httpsig/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "httpsig" ]; - meta = with lib; { + meta = { description = "Sign HTTP requests with secure signatures"; - license = licenses.mit; - maintainers = with maintainers; [ srhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ srhb ]; homepage = "https://github.com/ahknight/httpsig"; }; } diff --git a/pkgs/development/python-modules/httptools/default.nix b/pkgs/development/python-modules/httptools/default.nix index 65537e346929..139d7e501d03 100644 --- a/pkgs/development/python-modules/httptools/default.nix +++ b/pkgs/development/python-modules/httptools/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "httptools" ]; - meta = with lib; { + meta = { description = "Collection of framework independent HTTP protocol utils"; homepage = "https://github.com/MagicStack/httptools"; changelog = "https://github.com/MagicStack/httptools/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/httpx-auth/default.nix b/pkgs/development/python-modules/httpx-auth/default.nix index e34eaf44ee7d..c21341ef2598 100644 --- a/pkgs/development/python-modules/httpx-auth/default.nix +++ b/pkgs/development/python-modules/httpx-auth/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Authentication classes to be used with httpx"; homepage = "https://github.com/Colin-b/httpx_auth"; changelog = "https://github.com/Colin-b/httpx_auth/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/httpx-ntlm/default.nix b/pkgs/development/python-modules/httpx-ntlm/default.nix index de83c397d68a..be011c8e8061 100644 --- a/pkgs/development/python-modules/httpx-ntlm/default.nix +++ b/pkgs/development/python-modules/httpx-ntlm/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "httpx_ntlm" ]; - meta = with lib; { + meta = { description = "NTLM authentication support for HTTPX"; homepage = "https://github.com/ulodciv/httpx-ntlm"; changelog = "https://github.com/ulodciv/httpx-ntlm/releases/tag/${version}"; - license = licenses.isc; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/httpx-oauth/default.nix b/pkgs/development/python-modules/httpx-oauth/default.nix index 41234fda1d2a..745974061188 100644 --- a/pkgs/development/python-modules/httpx-oauth/default.nix +++ b/pkgs/development/python-modules/httpx-oauth/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "httpx_oauth" ]; - meta = with lib; { + meta = { description = "Async OAuth client using HTTPX"; homepage = "https://github.com/frankie567/httpx-oauth"; changelog = "https://github.com/frankie567/httpx-oauth/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/httpx-socks/default.nix b/pkgs/development/python-modules/httpx-socks/default.nix index 75ab7886ad01..36ff4ad8ac55 100644 --- a/pkgs/development/python-modules/httpx-socks/default.nix +++ b/pkgs/development/python-modules/httpx-socks/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { "test_secure_proxy" ]; - meta = with lib; { + meta = { description = "Proxy (HTTP, SOCKS) transports for httpx"; homepage = "https://github.com/romis2012/httpx-socks"; changelog = "https://github.com/romis2012/httpx-socks/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/httpx-sse/default.nix b/pkgs/development/python-modules/httpx-sse/default.nix index 2e5ea0eb947d..a039511e8129 100644 --- a/pkgs/development/python-modules/httpx-sse/default.nix +++ b/pkgs/development/python-modules/httpx-sse/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { starlette ]; - meta = with lib; { + meta = { description = "Consume Server-Sent Event (SSE) messages with HTTPX"; homepage = "https://github.com/florimondmanca/httpx-sse"; changelog = "https://github.com/florimondmanca/httpx-sse/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/httpx-ws/default.nix b/pkgs/development/python-modules/httpx-ws/default.nix index 226bf83b4940..65f9b2401215 100644 --- a/pkgs/development/python-modules/httpx-ws/default.nix +++ b/pkgs/development/python-modules/httpx-ws/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { "tests/test_api.py" ]; - meta = with lib; { + meta = { description = "WebSocket support for HTTPX"; homepage = "https://github.com/frankie567/httpx-ws"; changelog = "https://github.com/frankie567/httpx-ws/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/httpx/default.nix b/pkgs/development/python-modules/httpx/default.nix index 1ac2ea694b2a..af03975ae7c6 100644 --- a/pkgs/development/python-modules/httpx/default.nix +++ b/pkgs/development/python-modules/httpx/default.nix @@ -111,12 +111,12 @@ buildPythonPackage rec { # FileNotFoundError: [Errno 2] No such file or directory setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { changelog = "https://github.com/encode/httpx/blob/${src.rev}/CHANGELOG.md"; description = "Next generation HTTP client"; mainProgram = "httpx"; homepage = "https://github.com/encode/httpx"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/huawei-lte-api/default.nix b/pkgs/development/python-modules/huawei-lte-api/default.nix index 5e324589457e..681ec3c9ffda 100644 --- a/pkgs/development/python-modules/huawei-lte-api/default.nix +++ b/pkgs/development/python-modules/huawei-lte-api/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "huawei_lte_api.Connection" ]; - meta = with lib; { + meta = { description = "API For huawei LAN/WAN LTE Modems"; homepage = "https://github.com/Salamek/huawei-lte-api"; changelog = "https://github.com/Salamek/huawei-lte-api/releases/tag/${src.tag}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/huey/default.nix b/pkgs/development/python-modules/huey/default.nix index d5ed08950081..fcb133119e2f 100644 --- a/pkgs/development/python-modules/huey/default.nix +++ b/pkgs/development/python-modules/huey/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # connects to redis doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/coleifer/huey/blob/${src.tag}/CHANGELOG.md"; description = "Little task queue for python"; homepage = "https://github.com/coleifer/huey"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/human-readable/default.nix b/pkgs/development/python-modules/human-readable/default.nix index 23c771079c76..9e0b2be29335 100644 --- a/pkgs/development/python-modules/human-readable/default.nix +++ b/pkgs/development/python-modules/human-readable/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { hatch-vcs ]; - meta = with lib; { + meta = { description = "Library to make data intended for machines, readable to humans"; homepage = "https://github.com/staticdev/human-readable"; - license = licenses.mit; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/development/python-modules/humanfriendly/default.nix b/pkgs/development/python-modules/humanfriendly/default.nix index 8c217e3ac228..c21d2b0dfc91 100644 --- a/pkgs/development/python-modules/humanfriendly/default.nix +++ b/pkgs/development/python-modules/humanfriendly/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # build this package so we have to disable the test suite :( doCheck = false; - meta = with lib; { + meta = { description = "Human friendly output for text interfaces using Python"; mainProgram = "humanfriendly"; homepage = "https://humanfriendly.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ montag451 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ montag451 ]; }; } diff --git a/pkgs/development/python-modules/humanize/default.nix b/pkgs/development/python-modules/humanize/default.nix index f5d98902e2e3..84217dacdc6f 100644 --- a/pkgs/development/python-modules/humanize/default.nix +++ b/pkgs/development/python-modules/humanize/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "humanize" ]; - meta = with lib; { + meta = { description = "Python humanize utilities"; homepage = "https://github.com/python-humanize/humanize"; changelog = "https://github.com/python-humanize/humanize/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rmcgibbo Luflosi ]; diff --git a/pkgs/development/python-modules/hupper/default.nix b/pkgs/development/python-modules/hupper/default.nix index 592c4487d872..dbf50b5259a8 100644 --- a/pkgs/development/python-modules/hupper/default.nix +++ b/pkgs/development/python-modules/hupper/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hupper" ]; - meta = with lib; { + meta = { description = "In-process file monitor/reloader for reloading your code automatically during development"; mainProgram = "hupper"; homepage = "https://github.com/Pylons/hupper"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hurry-filesize/default.nix b/pkgs/development/python-modules/hurry-filesize/default.nix index e9eb079cf518..01466bf92233 100644 --- a/pkgs/development/python-modules/hurry-filesize/default.nix +++ b/pkgs/development/python-modules/hurry-filesize/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hurry.filesize" ]; - meta = with lib; { + meta = { description = "Simple Python library for human readable file sizes (or anything sized in bytes)"; homepage = "https://pypi.org/project/hurry.filesize/"; - license = licenses.zpl21; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.zpl21; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/huum/default.nix b/pkgs/development/python-modules/huum/default.nix index 6ca367b693b3..cae8c5b3c33e 100644 --- a/pkgs/development/python-modules/huum/default.nix +++ b/pkgs/development/python-modules/huum/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "huum" ]; - meta = with lib; { + meta = { description = "Library for Huum saunas"; homepage = "https://github.com/frwickst/pyhuum"; changelog = "https://github.com/frwickst/pyhuum/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hvac/default.nix b/pkgs/development/python-modules/hvac/default.nix index 19edfec9439f..3c9ad8101dd2 100644 --- a/pkgs/development/python-modules/hvac/default.nix +++ b/pkgs/development/python-modules/hvac/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hvac" ]; - meta = with lib; { + meta = { description = "HashiCorp Vault API client"; homepage = "https://github.com/ianunruh/hvac"; changelog = "https://github.com/hvac/hvac/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hwdata/default.nix b/pkgs/development/python-modules/hwdata/default.nix index 2931839bf6c9..3470fcc40e2b 100644 --- a/pkgs/development/python-modules/hwdata/default.nix +++ b/pkgs/development/python-modules/hwdata/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Python bindings to hwdata"; homepage = "https://github.com/xsuchy/python-hwdata"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ lurkki ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lurkki ]; }; } diff --git a/pkgs/development/python-modules/hwi/default.nix b/pkgs/development/python-modules/hwi/default.nix index d371ea85ee7c..9c0f84c211ad 100644 --- a/pkgs/development/python-modules/hwi/default.nix +++ b/pkgs/development/python-modules/hwi/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hwilib" ]; - meta = with lib; { + meta = { description = "Bitcoin Hardware Wallet Interface"; homepage = "https://github.com/bitcoin-core/hwi"; changelog = "https://github.com/bitcoin-core/HWI/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ prusnak ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/hy/default.nix b/pkgs/development/python-modules/hy/default.nix index 75fd66a2c678..368f4b550f58 100644 --- a/pkgs/development/python-modules/hy/default.nix +++ b/pkgs/development/python-modules/hy/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { }); }; - meta = with lib; { + meta = { description = "LISP dialect embedded in Python"; homepage = "https://hylang.org/"; changelog = "https://github.com/hylang/hy/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mazurel nixy ]; diff --git a/pkgs/development/python-modules/hydrawiser/default.nix b/pkgs/development/python-modules/hydrawiser/default.nix index e7c0a71a4834..5582d1912d06 100644 --- a/pkgs/development/python-modules/hydrawiser/default.nix +++ b/pkgs/development/python-modules/hydrawiser/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hydrawiser" ]; - meta = with lib; { + meta = { description = "Python library for Hydrawise API"; homepage = "https://github.com/ptcryan/hydrawiser"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hydrogram/default.nix b/pkgs/development/python-modules/hydrogram/default.nix index d0430d7e06a6..e76f9832bc5c 100644 --- a/pkgs/development/python-modules/hydrogram/default.nix +++ b/pkgs/development/python-modules/hydrogram/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "hydrogram.types" ]; - meta = with lib; { + meta = { description = "Asynchronous Telegram MTProto API framework for fluid user and bot interactions"; homepage = "https://github.com/hydrogram/hydrogram"; changelog = "https://github.com/hydrogram/hydrogram/releases/tag/${src.tag}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ tholo ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ tholo ]; }; } diff --git a/pkgs/development/python-modules/hydrus-api/default.nix b/pkgs/development/python-modules/hydrus-api/default.nix index ac833579a09e..9462b2717ad0 100644 --- a/pkgs/development/python-modules/hydrus-api/default.nix +++ b/pkgs/development/python-modules/hydrus-api/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # There are no unit tests doCheck = false; - meta = with lib; { + meta = { description = "Python module implementing the Hydrus API"; homepage = "https://gitlab.com/cryzed/hydrus-api"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/python-modules/hypercorn/default.nix b/pkgs/development/python-modules/hypercorn/default.nix index ae8b9cf44396..36b3bc2a572e 100644 --- a/pkgs/development/python-modules/hypercorn/default.nix +++ b/pkgs/development/python-modules/hypercorn/default.nix @@ -63,12 +63,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "hypercorn" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pgjones/hypercorn/blob/${src.tag}/CHANGELOG.rst"; homepage = "https://github.com/pgjones/hypercorn"; description = "ASGI web server inspired by Gunicorn"; mainProgram = "hypercorn"; - license = licenses.mit; - maintainers = with maintainers; [ dgliwka ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dgliwka ]; }; } diff --git a/pkgs/development/python-modules/hyperframe/default.nix b/pkgs/development/python-modules/hyperframe/default.nix index 97fc966ce984..33b619b0ebf8 100644 --- a/pkgs/development/python-modules/hyperframe/default.nix +++ b/pkgs/development/python-modules/hyperframe/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hyperframe" ]; - meta = with lib; { + meta = { description = "HTTP/2 framing layer for Python"; homepage = "https://github.com/python-hyper/hyperframe/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hyperion-py/default.nix b/pkgs/development/python-modules/hyperion-py/default.nix index a6803e8bc26e..a11fb1a9fd0d 100644 --- a/pkgs/development/python-modules/hyperion-py/default.nix +++ b/pkgs/development/python-modules/hyperion-py/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hyperion" ]; - meta = with lib; { + meta = { description = "Python package for Hyperion Ambient Lighting"; homepage = "https://github.com/dermotduffy/hyperion-py"; changelog = "https://github.com/dermotduffy/hyperion-py/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/hyperlink/default.nix b/pkgs/development/python-modules/hyperlink/default.nix index 579cfb065fa6..f449c9673585 100644 --- a/pkgs/development/python-modules/hyperlink/default.nix +++ b/pkgs/development/python-modules/hyperlink/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { propagatedBuildInputs = [ idna ] ++ lib.optionals isPy27 [ typing ]; - meta = with lib; { + meta = { description = "Featureful, correct URL for Python"; homepage = "https://github.com/python-hyper/hyperlink"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ apeschar ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ apeschar ]; }; } diff --git a/pkgs/development/python-modules/hyperopt/default.nix b/pkgs/development/python-modules/hyperopt/default.nix index 849ac9604323..0ac498452801 100644 --- a/pkgs/development/python-modules/hyperopt/default.nix +++ b/pkgs/development/python-modules/hyperopt/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "hyperopt" ]; - meta = with lib; { + meta = { description = "Distributed Asynchronous Hyperparameter Optimization"; mainProgram = "hyperopt-mongo-worker"; homepage = "http://hyperopt.github.io/hyperopt/"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hyperpyyaml/default.nix b/pkgs/development/python-modules/hyperpyyaml/default.nix index 9fef53418e3f..c09d10e7dc7c 100644 --- a/pkgs/development/python-modules/hyperpyyaml/default.nix +++ b/pkgs/development/python-modules/hyperpyyaml/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hyperpyyaml" ]; - meta = with lib; { + meta = { description = "Extensions to YAML syntax for better python interaction"; homepage = "https://github.com/speechbrain/HyperPyYAML"; changelog = "https://github.com/speechbrain/HyperPyYAML/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/hypothesis-auto/default.nix b/pkgs/development/python-modules/hypothesis-auto/default.nix index 13457576cdb4..02c2b2babe0d 100644 --- a/pkgs/development/python-modules/hypothesis-auto/default.nix +++ b/pkgs/development/python-modules/hypothesis-auto/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Enables fully automatic tests for type annotated functions"; homepage = "https://github.com/timothycrosley/hypothesis-auto/"; changelog = "https://github.com/timothycrosley/hypothesis-auto/blob/master/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hypothesmith/default.nix b/pkgs/development/python-modules/hypothesmith/default.nix index fa40d34c8a82..2ac80c7fabae 100644 --- a/pkgs/development/python-modules/hypothesmith/default.nix +++ b/pkgs/development/python-modules/hypothesmith/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hypothesmith" ]; - meta = with lib; { + meta = { description = "Hypothesis strategies for generating Python programs, something like CSmith"; homepage = "https://github.com/Zac-HD/hypothesmith"; changelog = "https://github.com/Zac-HD/hypothesmith/blob/master/CHANGELOG.md"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hyrule/default.nix b/pkgs/development/python-modules/hyrule/default.nix index 91b44e8b6bf5..197c9c00f5c5 100644 --- a/pkgs/development/python-modules/hyrule/default.nix +++ b/pkgs/development/python-modules/hyrule/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hyrule" ]; - meta = with lib; { + meta = { description = "Utility library for the Hy programming language"; homepage = "https://github.com/hylang/hyrule"; changelog = "https://github.com/hylang/hyrule/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/i-pi/default.nix b/pkgs/development/python-modules/i-pi/default.nix index 5a12b999a900..56f12cca135f 100644 --- a/pkgs/development/python-modules/i-pi/default.nix +++ b/pkgs/development/python-modules/i-pi/default.nix @@ -60,14 +60,14 @@ buildPythonPackage rec { --set IPI_ROOT $out ''; - meta = with lib; { + meta = { description = "Universal force engine for ab initio and force field driven (path integral) molecular dynamics"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only mit ]; homepage = "https://ipi-code.org/"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/i2c-tools/default.nix b/pkgs/development/python-modules/i2c-tools/default.nix index 4f3ec3dfb0c3..b6d21e76923b 100644 --- a/pkgs/development/python-modules/i2c-tools/default.nix +++ b/pkgs/development/python-modules/i2c-tools/default.nix @@ -13,12 +13,12 @@ buildPythonPackage { preConfigure = "cd py-smbus"; - meta = with lib; { + meta = { inherit (i2c-tools.meta) homepage platforms; description = "Wrapper for i2c-tools' smbus stuff"; # from py-smbus/smbusmodule.c - license = [ licenses.gpl2Only ]; + license = [ lib.licenses.gpl2Only ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/i2csense/default.nix b/pkgs/development/python-modules/i2csense/default.nix index 2aa74cedb2f8..b41dd6426652 100644 --- a/pkgs/development/python-modules/i2csense/default.nix +++ b/pkgs/development/python-modules/i2csense/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { "i2csense.htu21d" ]; - meta = with lib; { + meta = { description = "Library to handle i2c sensors with the Raspberry Pi"; mainProgram = "i2csense"; homepage = "https://github.com/azogue/i2csense"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/i3-py/default.nix b/pkgs/development/python-modules/i3-py/default.nix index b90e0aeafafe..5cd1d9346768 100644 --- a/pkgs/development/python-modules/i3-py/default.nix +++ b/pkgs/development/python-modules/i3-py/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # no tests in tarball doCheck = false; - meta = with lib; { + meta = { description = "Tools for i3 users and developers"; homepage = "https://github.com/ziberna/i3-py"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/iammeter/default.nix b/pkgs/development/python-modules/iammeter/default.nix index 4a9ba50b91ac..3b80f6cff365 100644 --- a/pkgs/development/python-modules/iammeter/default.nix +++ b/pkgs/development/python-modules/iammeter/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "iammeter" ]; - meta = with lib; { + meta = { description = "Module to work with the IamMeter API"; homepage = "https://pypi.org/project/iammeter/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/iapws/default.nix b/pkgs/development/python-modules/iapws/default.nix index 2b373aa359da..b146f948d7bd 100644 --- a/pkgs/development/python-modules/iapws/default.nix +++ b/pkgs/development/python-modules/iapws/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ scipy ]; - meta = with lib; { + meta = { description = "Python implementation of standard from IAPWS"; homepage = "https://github.com/jjgomera/iapws"; - license = licenses.gpl3; - maintainers = with maintainers; [ dawidsowa ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ dawidsowa ]; }; } diff --git a/pkgs/development/python-modules/iaqualink/default.nix b/pkgs/development/python-modules/iaqualink/default.nix index b746301ac122..519712568574 100644 --- a/pkgs/development/python-modules/iaqualink/default.nix +++ b/pkgs/development/python-modules/iaqualink/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "iaqualink" ]; - meta = with lib; { + meta = { description = "Python library for Jandy iAqualink"; homepage = "https://github.com/flz/iaqualink-py"; changelog = "https://github.com/flz/iaqualink-py/releases/tag/v${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ibeacon-ble/default.nix b/pkgs/development/python-modules/ibeacon-ble/default.nix index 68f2f22ff245..ac46544c5684 100644 --- a/pkgs/development/python-modules/ibeacon-ble/default.nix +++ b/pkgs/development/python-modules/ibeacon-ble/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ibeacon_ble" ]; - meta = with lib; { + meta = { description = "Library for iBeacon BLE devices"; homepage = "https://github.com/Bluetooth-Devices/ibeacon-ble"; changelog = "https://github.com/Bluetooth-Devices/ibeacon-ble/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ibis/default.nix b/pkgs/development/python-modules/ibis/default.nix index f0401e56cf75..ed50ab86bdf9 100644 --- a/pkgs/development/python-modules/ibis/default.nix +++ b/pkgs/development/python-modules/ibis/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ibis" ]; - meta = with lib; { + meta = { description = "Lightweight template engine"; homepage = "https://github.com/dmulholland/ibis"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix b/pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix index f58fa2958a03..0f2b483863fb 100644 --- a/pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix +++ b/pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { "test_integration/" ]; - meta = with lib; { + meta = { description = "Client library for the IBM Cloud services"; homepage = "https://github.com/IBM/python-sdk-core"; changelog = "https://github.com/IBM/python-sdk-core/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ibm-watson/default.nix b/pkgs/development/python-modules/ibm-watson/default.nix index 8af57edb8956..00dcea98d10a 100644 --- a/pkgs/development/python-modules/ibm-watson/default.nix +++ b/pkgs/development/python-modules/ibm-watson/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ibm_watson" ]; - meta = with lib; { + meta = { description = "Client library to use the IBM Watson Services"; homepage = "https://github.com/watson-developer-cloud/python-sdk"; changelog = "https://github.com/watson-developer-cloud/python-sdk/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/icalendar/default.nix b/pkgs/development/python-modules/icalendar/default.nix index 7c57cb80f6da..c6523be27e13 100644 --- a/pkgs/development/python-modules/icalendar/default.nix +++ b/pkgs/development/python-modules/icalendar/default.nix @@ -67,12 +67,12 @@ buildPythonPackage rec { enabledTestPaths = [ "src/icalendar" ]; - meta = with lib; { + meta = { changelog = "https://github.com/collective/icalendar/blob/${src.tag}/CHANGES.rst"; description = "Parser/generator of iCalendar files"; mainProgram = "icalendar"; homepage = "https://github.com/collective/icalendar"; - license = licenses.bsd2; - maintainers = with maintainers; [ olcai ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ olcai ]; }; } diff --git a/pkgs/development/python-modules/icalevents/default.nix b/pkgs/development/python-modules/icalevents/default.nix index 550965904ff8..3ac3087c9e74 100644 --- a/pkgs/development/python-modules/icalevents/default.nix +++ b/pkgs/development/python-modules/icalevents/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "icalevents" ]; - meta = with lib; { + meta = { changelog = "https://github.com/jazzband/icalevents/releases/tag/${src.tag}"; description = "Python module for iCal URL/file parsing and querying"; homepage = "https://github.com/jazzband/icalevents"; - maintainers = with maintainers; [ jamiemagee ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/icecream/default.nix b/pkgs/development/python-modules/icecream/default.nix index f3ed505cfae5..dd3ed339f854 100644 --- a/pkgs/development/python-modules/icecream/default.nix +++ b/pkgs/development/python-modules/icecream/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { "testEnableDisable" ]; - meta = with lib; { + meta = { description = "Little library for sweet and creamy print debugging"; homepage = "https://github.com/gruns/icecream"; - license = licenses.mit; - maintainers = with maintainers; [ renatoGarcia ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ renatoGarcia ]; }; } diff --git a/pkgs/development/python-modules/iceportal/default.nix b/pkgs/development/python-modules/iceportal/default.nix index cc5c82f0e647..f06510ef0665 100644 --- a/pkgs/development/python-modules/iceportal/default.nix +++ b/pkgs/development/python-modules/iceportal/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "iceportal" ]; - meta = with lib; { + meta = { description = "Library for getting data from the ICE Portal"; homepage = "https://github.com/home-assistant-ecosystem/python-iceportal"; changelog = "https://github.com/home-assistant-ecosystem/python-iceportal/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/icmplib/default.nix b/pkgs/development/python-modules/icmplib/default.nix index e82d4e5b87f1..5054247fdca2 100644 --- a/pkgs/development/python-modules/icmplib/default.nix +++ b/pkgs/development/python-modules/icmplib/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "icmplib" ]; - meta = with lib; { + meta = { description = "Python implementation of the ICMP protocol"; homepage = "https://github.com/ValentinBELYN/icmplib"; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/icnsutil/default.nix b/pkgs/development/python-modules/icnsutil/default.nix index 0eee0595f0f2..0a10ac06e055 100644 --- a/pkgs/development/python-modules/icnsutil/default.nix +++ b/pkgs/development/python-modules/icnsutil/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "icnsutil" ]; - meta = with lib; { + meta = { description = "Create and extract .icns files"; homepage = "https://github.com/relikd/icnsutil"; changelog = "https://github.com/relikd/icnsutil/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ reckenrode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ reckenrode ]; }; } diff --git a/pkgs/development/python-modules/icontract/default.nix b/pkgs/development/python-modules/icontract/default.nix index 1d2f95869227..471a66ed4a6f 100644 --- a/pkgs/development/python-modules/icontract/default.nix +++ b/pkgs/development/python-modules/icontract/default.nix @@ -74,12 +74,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "icontract" ]; - meta = with lib; { + meta = { description = "Provide design-by-contract with informative violation messages"; homepage = "https://github.com/Parquery/icontract"; changelog = "https://github.com/Parquery/icontract/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador thiagokokada ]; diff --git a/pkgs/development/python-modules/ics/default.nix b/pkgs/development/python-modules/ics/default.nix index 8c950e04d384..e3046329fd18 100644 --- a/pkgs/development/python-modules/ics/default.nix +++ b/pkgs/development/python-modules/ics/default.nix @@ -54,7 +54,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "ics" ]; - meta = with lib; { + meta = { description = "Pythonic and easy iCalendar library (RFC 5545)"; longDescription = '' Ics.py is a pythonic and easy iCalendar library. Its goals are to read and @@ -62,7 +62,7 @@ buildPythonPackage rec { ''; homepage = "http://icspy.readthedocs.org/"; changelog = "https://github.com/ics-py/ics-py/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/id/default.nix b/pkgs/development/python-modules/id/default.nix index 697bb14a328c..abd2116ccfdf 100644 --- a/pkgs/development/python-modules/id/default.nix +++ b/pkgs/development/python-modules/id/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "id" ]; - meta = with lib; { + meta = { description = "Tool for generating OIDC identities"; homepage = "https://github.com/di/id"; changelog = "https://github.com/di/id/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/idasen/default.nix b/pkgs/development/python-modules/idasen/default.nix index 929294d88934..400762d61668 100644 --- a/pkgs/development/python-modules/idasen/default.nix +++ b/pkgs/development/python-modules/idasen/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "idasen" ]; - meta = with lib; { + meta = { description = "Python API and CLI for the ikea IDÅSEN desk"; mainProgram = "idasen"; homepage = "https://github.com/newAM/idasen"; changelog = "https://github.com/newAM/idasen/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ newam ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ newam ]; }; } diff --git a/pkgs/development/python-modules/idna-ssl/default.nix b/pkgs/development/python-modules/idna-ssl/default.nix index cc0c12f70999..84c89aa5258f 100644 --- a/pkgs/development/python-modules/idna-ssl/default.nix +++ b/pkgs/development/python-modules/idna-ssl/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl doCheck = false; - meta = with lib; { + meta = { description = "Patch ssl.match_hostname for Unicode(idna) domains support"; homepage = "https://github.com/aio-libs/idna-ssl"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/ifaddr/default.nix b/pkgs/development/python-modules/ifaddr/default.nix index e313d7bc7102..4d9eaa4cd706 100644 --- a/pkgs/development/python-modules/ifaddr/default.nix +++ b/pkgs/development/python-modules/ifaddr/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ifaddr" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pydron/ifaddr"; description = "Enumerates all IP addresses on all network adapters of the system"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ifconfig-parser/default.nix b/pkgs/development/python-modules/ifconfig-parser/default.nix index 448e61b0a8c0..a0bf59c496c3 100644 --- a/pkgs/development/python-modules/ifconfig-parser/default.nix +++ b/pkgs/development/python-modules/ifconfig-parser/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { pythonImportsCheck = [ "ifconfigparser" ]; - meta = with lib; { + meta = { description = "Module for parsing raw output of ifconfig"; homepage = "https://github.com/KnightWhoSayNi/ifconfig-parser"; - license = licenses.mit; - maintainers = with maintainers; [ atemu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ atemu ]; }; } diff --git a/pkgs/development/python-modules/ifcopenshell/default.nix b/pkgs/development/python-modules/ifcopenshell/default.nix index fa6d2b99b5c3..084bf0db9a53 100644 --- a/pkgs/development/python-modules/ifcopenshell/default.nix +++ b/pkgs/development/python-modules/ifcopenshell/default.nix @@ -205,11 +205,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Open source IFC library and geometry engine"; homepage = "https://ifcopenshell.org/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ autra ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ autra ]; }; } diff --git a/pkgs/development/python-modules/igraph/default.nix b/pkgs/development/python-modules/igraph/default.nix index e5e2c82463c6..c4ce17d79e26 100644 --- a/pkgs/development/python-modules/igraph/default.nix +++ b/pkgs/development/python-modules/igraph/default.nix @@ -71,13 +71,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "igraph" ]; - meta = with lib; { + meta = { description = "High performance graph data structures and algorithms"; mainProgram = "igraph"; homepage = "https://igraph.org/python/"; changelog = "https://github.com/igraph/python-igraph/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ MostAwesomeDude dotlambda ]; diff --git a/pkgs/development/python-modules/ihm/default.nix b/pkgs/development/python-modules/ihm/default.nix index f6ff9245d69b..08223acd1b79 100644 --- a/pkgs/development/python-modules/ihm/default.nix +++ b/pkgs/development/python-modules/ihm/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ihm" ]; - meta = with lib; { + meta = { description = "Python package for handling IHM mmCIF and BinaryCIF files"; homepage = "https://github.com/ihmwg/python-ihm"; changelog = "https://github.com/ihmwg/python-ihm/blob/${src.tag}/ChangeLog.rst"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/iisignature/default.nix b/pkgs/development/python-modules/iisignature/default.nix index 8be12a0ef76f..7d11d4cbd226 100644 --- a/pkgs/development/python-modules/iisignature/default.nix +++ b/pkgs/development/python-modules/iisignature/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "iisignature" ]; - meta = with lib; { + meta = { description = "Iterated integral signature calculations"; homepage = "https://pypi.org/project/iisignature"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/ijson/default.nix b/pkgs/development/python-modules/ijson/default.nix index 78d61facb2fe..f5d5f4c8be8c 100644 --- a/pkgs/development/python-modules/ijson/default.nix +++ b/pkgs/development/python-modules/ijson/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ijson" ]; - meta = with lib; { + meta = { description = "Iterative JSON parser with a standard Python iterator interface"; homepage = "https://github.com/ICRAR/ijson"; changelog = "https://github.com/ICRAR/ijson/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ilua/default.nix b/pkgs/development/python-modules/ilua/default.nix index 4e4899ebc74d..8294832586d8 100644 --- a/pkgs/development/python-modules/ilua/default.nix +++ b/pkgs/development/python-modules/ilua/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ilua" ]; - meta = with lib; { + meta = { description = "Portable Lua kernel for Jupyter"; mainProgram = "ilua"; homepage = "https://github.com/guysv/ilua"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/image-diff/default.nix b/pkgs/development/python-modules/image-diff/default.nix index 20515a38c161..e2f990801088 100644 --- a/pkgs/development/python-modules/image-diff/default.nix +++ b/pkgs/development/python-modules/image-diff/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "CLI tool for comparing images"; mainProgram = "image-diff"; homepage = "https://github.com/simonw/image-diff"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/imagecodecs-lite/default.nix b/pkgs/development/python-modules/imagecodecs-lite/default.nix index 1e2f172da593..d1c487113754 100644 --- a/pkgs/development/python-modules/imagecodecs-lite/default.nix +++ b/pkgs/development/python-modules/imagecodecs-lite/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions"; homepage = "https://www.lfd.uci.edu/~gohlke/"; - maintainers = [ maintainers.tbenst ]; - license = licenses.bsd3; + maintainers = [ lib.maintainers.tbenst ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/imagecorruptions/default.nix b/pkgs/development/python-modules/imagecorruptions/default.nix index 280770b8a63e..c55b05e98510 100644 --- a/pkgs/development/python-modules/imagecorruptions/default.nix +++ b/pkgs/development/python-modules/imagecorruptions/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "imagecorruptions" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bethgelab/imagecorruptions"; description = "This package provides a set of image corruptions"; - license = licenses.asl20; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/imagededup/default.nix b/pkgs/development/python-modules/imagededup/default.nix index d2e38df325ba..5e9ec6fca9a3 100644 --- a/pkgs/development/python-modules/imagededup/default.nix +++ b/pkgs/development/python-modules/imagededup/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "imagededup" ]; - meta = with lib; { + meta = { homepage = "https://idealo.github.io/imagededup/"; changelog = "https://github.com/idealo/imagededup/releases/tag/${src.tag}"; description = "Finding duplicate images made easy"; - license = licenses.asl20; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; } diff --git a/pkgs/development/python-modules/imagehash/default.nix b/pkgs/development/python-modules/imagehash/default.nix index a774ba3b4de4..b736749a3916 100644 --- a/pkgs/development/python-modules/imagehash/default.nix +++ b/pkgs/development/python-modules/imagehash/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "imagehash" ]; - meta = with lib; { + meta = { description = "Python Perceptual Image Hashing Module"; homepage = "https://github.com/JohannesBuchner/imagehash"; changelog = "https://github.com/JohannesBuchner/imagehash/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ e1mo ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ e1mo ]; mainProgram = "find_similar_images.py"; }; } diff --git a/pkgs/development/python-modules/imageio-ffmpeg/default.nix b/pkgs/development/python-modules/imageio-ffmpeg/default.nix index a49ac3e344a0..3b8d432016a5 100644 --- a/pkgs/development/python-modules/imageio-ffmpeg/default.nix +++ b/pkgs/development/python-modules/imageio-ffmpeg/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "imageio_ffmpeg" ]; - meta = with lib; { + meta = { changelog = "https://github.com/imageio/imageio-ffmpeg/releases/tag/${src.tag}"; description = "FFMPEG wrapper for Python"; homepage = "https://github.com/imageio/imageio-ffmpeg"; - license = licenses.bsd2; - maintainers = [ maintainers.pmiddend ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.pmiddend ]; }; } diff --git a/pkgs/development/python-modules/imagesize/default.nix b/pkgs/development/python-modules/imagesize/default.nix index 4420190e98de..9a4f6515023a 100644 --- a/pkgs/development/python-modules/imagesize/default.nix +++ b/pkgs/development/python-modules/imagesize/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { hash = "sha256-aRUERK/7nLDVzFqSs2dvCy+3zZrjnpR6XhGja0SXzUo="; }; - meta = with lib; { + meta = { description = "Getting image size from png/jpeg/jpeg2000/gif file"; homepage = "https://github.com/shibukawa/imagesize_py"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/imantics/default.nix b/pkgs/development/python-modules/imantics/default.nix index 7c54901baa8e..cf7d21f680e7 100644 --- a/pkgs/development/python-modules/imantics/default.nix +++ b/pkgs/development/python-modules/imantics/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { pythonImportsCheck = [ "imantics" ]; - meta = with lib; { + meta = { description = "Convert and visualize many annotation formats for object dectection and localization"; homepage = "https://github.com/jsbroks/imantics"; - license = with licenses; [ mit ]; - maintainers = [ maintainers.rakesh4g ]; + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/imap-tools/default.nix b/pkgs/development/python-modules/imap-tools/default.nix index ec192f63fbc0..033cad18c38a 100644 --- a/pkgs/development/python-modules/imap-tools/default.nix +++ b/pkgs/development/python-modules/imap-tools/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "imap_tools" ]; - meta = with lib; { + meta = { description = "Work with email and mailbox by IMAP"; homepage = "https://github.com/ikvk/imap_tools"; changelog = "https://github.com/ikvk/imap_tools/blob/${src.tag}/docs/release_notes.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/imapclient/default.nix b/pkgs/development/python-modules/imapclient/default.nix index ca2dd7174cff..f46f0b2f34a4 100644 --- a/pkgs/development/python-modules/imapclient/default.nix +++ b/pkgs/development/python-modules/imapclient/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "imapclient.tls" ]; - meta = with lib; { + meta = { homepage = "https://imapclient.readthedocs.io"; description = "Easy-to-use, Pythonic and complete IMAP client library"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ almac dotlambda ]; diff --git a/pkgs/development/python-modules/imaplib2/default.nix b/pkgs/development/python-modules/imaplib2/default.nix index 5df25d7ca5ee..e0c41c575494 100644 --- a/pkgs/development/python-modules/imaplib2/default.nix +++ b/pkgs/development/python-modules/imaplib2/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "imaplib2" ]; - meta = with lib; { + meta = { description = "Threaded Python IMAP4 client"; homepage = "https://github.com/jazzband/imaplib2"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/imgdiff/default.nix b/pkgs/development/python-modules/imgdiff/default.nix index cd49b215cea5..f4e9efafd459 100644 --- a/pkgs/development/python-modules/imgdiff/default.nix +++ b/pkgs/development/python-modules/imgdiff/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { unittestCheckHook ]; - meta = with lib; { + meta = { description = "Compare two images side-by-side"; mainProgram = "imgdiff"; homepage = "https://github.com/mgedmin/imgdiff"; changelog = "https://github.com/mgedmin/imgdiff/blob/${src.rev}/CHANGES.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/imia/default.nix b/pkgs/development/python-modules/imia/default.nix index 04de0b10feb1..34e9ad4b525a 100644 --- a/pkgs/development/python-modules/imia/default.nix +++ b/pkgs/development/python-modules/imia/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "imia" ]; - meta = with lib; { + meta = { description = "Authentication library for Starlette and FastAPI"; changelog = "https://github.com/alex-oleshkevich/imia/releases/tag/v${version}"; homepage = "https://github.com/alex-oleshkevich/imia"; - license = licenses.mit; - teams = [ teams.wdz ]; + license = lib.licenses.mit; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/iminuit/default.nix b/pkgs/development/python-modules/iminuit/default.nix index 026c239bbf25..f0c109c89265 100644 --- a/pkgs/development/python-modules/iminuit/default.nix +++ b/pkgs/development/python-modules/iminuit/default.nix @@ -43,14 +43,14 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/scikit-hep/iminuit"; changelog = "https://github.com/scikit-hep/iminuit/releases/tag/v${version}"; description = "Python interface for the Minuit2 C++ library"; - license = with licenses; [ + license = with lib.licenses; [ mit lgpl2Only ]; - maintainers = with maintainers; [ veprbl ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/immutabledict/default.nix b/pkgs/development/python-modules/immutabledict/default.nix index 222cc3ffabd4..35ab10d56044 100644 --- a/pkgs/development/python-modules/immutabledict/default.nix +++ b/pkgs/development/python-modules/immutabledict/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { "test_performance" ]; - meta = with lib; { + meta = { description = "Fork of frozendict, an immutable wrapper around dictionaries"; homepage = "https://github.com/corenting/immutabledict"; changelog = "https://github.com/corenting/immutabledict/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/immutables/default.nix b/pkgs/development/python-modules/immutables/default.nix index 480c1389cb81..5365aff3c4b1 100644 --- a/pkgs/development/python-modules/immutables/default.nix +++ b/pkgs/development/python-modules/immutables/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "immutables" ]; - meta = with lib; { + meta = { description = "Immutable mapping type"; homepage = "https://github.com/MagicStack/immutables"; changelog = "https://github.com/MagicStack/immutables/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; }; } diff --git a/pkgs/development/python-modules/impacket/default.nix b/pkgs/development/python-modules/impacket/default.nix index a69cb87f89a0..15ff73ee42d6 100644 --- a/pkgs/development/python-modules/impacket/default.nix +++ b/pkgs/development/python-modules/impacket/default.nix @@ -61,7 +61,7 @@ buildPythonPackage rec { "https://github.com/fortra/impacket/releases/tag/impacket_" + replaceStrings [ "." ] [ "_" ] version; # Modified Apache Software License, Version 1.1 - license = licenses.free; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/importlab/default.nix b/pkgs/development/python-modules/importlab/default.nix index 2341129dfec5..32b91dbca71a 100644 --- a/pkgs/development/python-modules/importlab/default.nix +++ b/pkgs/development/python-modules/importlab/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "importlab" ]; - meta = with lib; { + meta = { description = "Library that automatically infers dependencies for Python files"; mainProgram = "importlab"; homepage = "https://github.com/google/importlab"; - license = licenses.mit; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sei40kr ]; }; } diff --git a/pkgs/development/python-modules/importlib-metadata/default.nix b/pkgs/development/python-modules/importlib-metadata/default.nix index 2200c0477410..33bda9804e04 100644 --- a/pkgs/development/python-modules/importlib-metadata/default.nix +++ b/pkgs/development/python-modules/importlib-metadata/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Read metadata from Python packages"; homepage = "https://importlib-metadata.readthedocs.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; diff --git a/pkgs/development/python-modules/importlib-resources/default.nix b/pkgs/development/python-modules/importlib-resources/default.nix index 235699ad6554..87ae52547bbb 100644 --- a/pkgs/development/python-modules/importlib-resources/default.nix +++ b/pkgs/development/python-modules/importlib-resources/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Read resources from Python packages"; homepage = "https://importlib-resources.readthedocs.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/imread/default.nix b/pkgs/development/python-modules/imread/default.nix index cedd3a7ee1e6..a26b89fb2b02 100644 --- a/pkgs/development/python-modules/imread/default.nix +++ b/pkgs/development/python-modules/imread/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { export OMP_NUM_THREADS=1 ''; - meta = with lib; { + meta = { description = "Python package to load images as numpy arrays"; homepage = "https://imread.readthedocs.io/"; changelog = "https://github.com/luispedro/imread/blob/v${version}/ChangeLog"; - maintainers = with maintainers; [ luispedro ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ luispedro ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/imutils/default.nix b/pkgs/development/python-modules/imutils/default.nix index 03a1dd03a426..8a1ec92d2d43 100644 --- a/pkgs/development/python-modules/imutils/default.nix +++ b/pkgs/development/python-modules/imutils/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { "imutils.face_utils" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jrosebr1/imutils"; description = "Series of convenience functions to make basic image processing functions"; mainProgram = "range-detector"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/in-n-out/default.nix b/pkgs/development/python-modules/in-n-out/default.nix index 320841f5d4dd..139a3aa112b2 100644 --- a/pkgs/development/python-modules/in-n-out/default.nix +++ b/pkgs/development/python-modules/in-n-out/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "tests/test_store.py" ]; - meta = with lib; { + meta = { description = "Module for dependency injection and result processing"; homepage = "https://github.com/pyapp-kit/in-n-out"; changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/in-place/default.nix b/pkgs/development/python-modules/in-place/default.nix index dd7c6f099825..bdc456a4a9c0 100644 --- a/pkgs/development/python-modules/in-place/default.nix +++ b/pkgs/development/python-modules/in-place/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "in_place" ]; - meta = with lib; { + meta = { description = "In-place file processing"; homepage = "https://github.com/jwodder/inplace"; changelog = "https://github.com/jwodder/inplace/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/incomfort-client/default.nix b/pkgs/development/python-modules/incomfort-client/default.nix index a90140df6d77..a1ac630b6e40 100644 --- a/pkgs/development/python-modules/incomfort-client/default.nix +++ b/pkgs/development/python-modules/incomfort-client/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "incomfortclient" ]; - meta = with lib; { + meta = { description = "Python module to poll Intergas boilers via a Lan2RF gateway"; homepage = "https://github.com/zxdavb/incomfort-client"; changelog = "https://github.com/jbouwh/incomfort-client/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/indexed-bzip2/default.nix b/pkgs/development/python-modules/indexed-bzip2/default.nix index 20205ebfc4a6..a435a5088e44 100644 --- a/pkgs/development/python-modules/indexed-bzip2/default.nix +++ b/pkgs/development/python-modules/indexed-bzip2/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "indexed_bzip2" ]; - meta = with lib; { + meta = { description = "Python library for parallel decompression and seeking within compressed bzip2 files"; mainProgram = "ibzip2"; homepage = "https://github.com/mxmlnkn/indexed_bzip2"; - license = licenses.mit; # dual MIT and asl20, https://internals.rust-lang.org/t/rationale-of-apache-dual-licensing/8952 + license = lib.licenses.mit; # dual MIT and asl20, https://internals.rust-lang.org/t/rationale-of-apache-dual-licensing/8952 maintainers = with lib.maintainers; [ mxmlnkn ]; }; } diff --git a/pkgs/development/python-modules/indexed-gzip/default.nix b/pkgs/development/python-modules/indexed-gzip/default.nix index 65aa4f434251..5f6abfa7b7de 100644 --- a/pkgs/development/python-modules/indexed-gzip/default.nix +++ b/pkgs/development/python-modules/indexed-gzip/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "indexed_gzip" ]; - meta = with lib; { + meta = { description = "Python library to seek within compressed gzip files"; homepage = "https://github.com/pauldmccarthy/indexed_gzip"; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = with lib.maintainers; [ mxmlnkn ]; }; } diff --git a/pkgs/development/python-modules/indexed-zstd/default.nix b/pkgs/development/python-modules/indexed-zstd/default.nix index a689a37fbbda..8bc2993898e7 100644 --- a/pkgs/development/python-modules/indexed-zstd/default.nix +++ b/pkgs/development/python-modules/indexed-zstd/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "indexed_zstd" ]; - meta = with lib; { + meta = { description = "Python library to seek within compressed zstd files"; homepage = "https://github.com/martinellimarco/indexed_zstd"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ mxmlnkn ]; }; } diff --git a/pkgs/development/python-modules/infinity/default.nix b/pkgs/development/python-modules/infinity/default.nix index a2f24331a697..e9ec298c3088 100644 --- a/pkgs/development/python-modules/infinity/default.nix +++ b/pkgs/development/python-modules/infinity/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { description = "All-in-one infinity value for Python. Can be compared to any object"; homepage = "https://github.com/kvesteri/infinity"; - license = licenses.bsd3; - maintainers = with maintainers; [ mupdt ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mupdt ]; }; } diff --git a/pkgs/development/python-modules/influxdb-client/default.nix b/pkgs/development/python-modules/influxdb-client/default.nix index 003a4e59013e..62c900b171e0 100644 --- a/pkgs/development/python-modules/influxdb-client/default.nix +++ b/pkgs/development/python-modules/influxdb-client/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "influxdb_client" ]; - meta = with lib; { + meta = { description = "InfluxDB client library"; homepage = "https://github.com/influxdata/influxdb-client-python"; changelog = "https://github.com/influxdata/influxdb-client-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/influxdb/default.nix b/pkgs/development/python-modules/influxdb/default.nix index 356d68a88c97..d6785f77f8a9 100644 --- a/pkgs/development/python-modules/influxdb/default.nix +++ b/pkgs/development/python-modules/influxdb/default.nix @@ -83,11 +83,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "influxdb" ]; - meta = with lib; { + meta = { description = "Python client for InfluxDB"; homepage = "https://github.com/influxdb/influxdb-python"; changelog = "https://github.com/influxdata/influxdb-python/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/influxdb3-python/default.nix b/pkgs/development/python-modules/influxdb3-python/default.nix index 783b019dd4f0..6e81aa20fa72 100644 --- a/pkgs/development/python-modules/influxdb3-python/default.nix +++ b/pkgs/development/python-modules/influxdb3-python/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { # "influxdb_client_3" # ]; - meta = with lib; { + meta = { description = "Python module that provides a simple and convenient way to interact with InfluxDB 3.0"; homepage = "https://github.com/InfluxCommunity/influxdb3-python"; changelog = "https://github.com/InfluxCommunity/influxdb3-python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/inform/default.nix b/pkgs/development/python-modules/inform/default.nix index cebf54bbf486..7ce744e5d447 100644 --- a/pkgs/development/python-modules/inform/default.nix +++ b/pkgs/development/python-modules/inform/default.nix @@ -47,7 +47,7 @@ buildPythonPackage rec { "test_inform" ]; - meta = with lib; { + meta = { description = "Print and logging utilities"; longDescription = '' Inform is designed to display messages from programs that are typically @@ -56,7 +56,7 @@ buildPythonPackage rec { ''; homepage = "https://inform.readthedocs.io"; changelog = "https://github.com/KenKundert/inform/blob/${src.tag}/doc/releases.rst"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jeremyschlatter ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jeremyschlatter ]; }; } diff --git a/pkgs/development/python-modules/iniconfig/default.nix b/pkgs/development/python-modules/iniconfig/default.nix index 1694f92f626b..29aa32c17416 100644 --- a/pkgs/development/python-modules/iniconfig/default.nix +++ b/pkgs/development/python-modules/iniconfig/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # recursion. See also: https://github.com/NixOS/nixpkgs/issues/63168 doCheck = false; - meta = with lib; { + meta = { description = "Brain-dead simple parsing of ini files"; homepage = "https://github.com/pytest-dev/iniconfig"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/inifile/default.nix b/pkgs/development/python-modules/inifile/default.nix index a03e4070326f..98e06c3108e0 100644 --- a/pkgs/development/python-modules/inifile/default.nix +++ b/pkgs/development/python-modules/inifile/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "d9e5eb4708ebf13353c4cfce798ad47890a8bcc5fbae04630223d15d79f55e96"; }; - meta = with lib; { + meta = { description = "Small INI library for Python"; homepage = "https://github.com/mitsuhiko/python-inifile"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/iniparse/default.nix b/pkgs/development/python-modules/iniparse/default.nix index 3d0c93c07e27..18d922c90e48 100644 --- a/pkgs/development/python-modules/iniparse/default.nix +++ b/pkgs/development/python-modules/iniparse/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # Does not install tests doCheck = false; - meta = with lib; { + meta = { description = "Accessing and Modifying INI files"; homepage = "https://github.com/candlepin/python-iniparse"; - license = licenses.mit; - maintainers = with maintainers; [ danbst ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danbst ]; }; } diff --git a/pkgs/development/python-modules/injector/default.nix b/pkgs/development/python-modules/injector/default.nix index f696c4e77a7f..0eda9e9e6bde 100644 --- a/pkgs/development/python-modules/injector/default.nix +++ b/pkgs/development/python-modules/injector/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "injector" ]; - meta = with lib; { + meta = { description = "Python dependency injection framework, inspired by Guice"; homepage = "https://github.com/alecthomas/injector"; maintainers = [ ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/inkbird-ble/default.nix b/pkgs/development/python-modules/inkbird-ble/default.nix index f8b3b054bcfa..2ead9ba67e90 100644 --- a/pkgs/development/python-modules/inkbird-ble/default.nix +++ b/pkgs/development/python-modules/inkbird-ble/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "inkbird_ble" ]; - meta = with lib; { + meta = { description = "Library for Inkbird BLE devices"; homepage = "https://github.com/Bluetooth-Devices/inkbird-ble"; changelog = "https://github.com/Bluetooth-Devices/inkbird-ble/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/inline-snapshot/default.nix b/pkgs/development/python-modules/inline-snapshot/default.nix index 2b495f7dc510..24b9e580be6f 100644 --- a/pkgs/development/python-modules/inline-snapshot/default.nix +++ b/pkgs/development/python-modules/inline-snapshot/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { "tests/test_typing.py" ]; - meta = with lib; { + meta = { description = "Create and update inline snapshots in Python tests"; homepage = "https://github.com/15r10nk/inline-snapshot/"; changelog = "https://github.com/15r10nk/inline-snapshot/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/inotify-simple/default.nix b/pkgs/development/python-modules/inotify-simple/default.nix index e5f523ffeb9a..6bcab191c5b7 100644 --- a/pkgs/development/python-modules/inotify-simple/default.nix +++ b/pkgs/development/python-modules/inotify-simple/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "inotify_simple" ]; - meta = with lib; { + meta = { description = "Simple Python wrapper around inotify"; homepage = "https://github.com/chrisjbillington/inotify_simple"; - license = licenses.bsd2; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/inotifyrecursive/default.nix b/pkgs/development/python-modules/inotifyrecursive/default.nix index 678e45c14d20..5413632c92b5 100644 --- a/pkgs/development/python-modules/inotifyrecursive/default.nix +++ b/pkgs/development/python-modules/inotifyrecursive/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ pname ]; - meta = with lib; { + meta = { description = "Simple recursive inotify watches for Python"; homepage = "https://github.com/letorbi/inotifyrecursive"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ Flakebi ]; }; } diff --git a/pkgs/development/python-modules/inquirer/default.nix b/pkgs/development/python-modules/inquirer/default.nix index 469697052380..9379d105a320 100644 --- a/pkgs/development/python-modules/inquirer/default.nix +++ b/pkgs/development/python-modules/inquirer/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "inquirer" ]; - meta = with lib; { + meta = { description = "Collection of common interactive command line user interfaces, based on Inquirer.js"; homepage = "https://github.com/magmax/python-inquirer"; changelog = "https://github.com/magmax/python-inquirer/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmahut ]; }; } diff --git a/pkgs/development/python-modules/inquirerpy/default.nix b/pkgs/development/python-modules/inquirerpy/default.nix index 43fa1fa7cb05..308ae17f1675 100644 --- a/pkgs/development/python-modules/inquirerpy/default.nix +++ b/pkgs/development/python-modules/inquirerpy/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { "tests/base/test_list.py" ]; - meta = with lib; { + meta = { description = "Python port of Inquirer.js"; homepage = "https://github.com/kazhala/InquirerPy"; changelog = "https://github.com/kazhala/InquirerPy/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/inscriptis/default.nix b/pkgs/development/python-modules/inscriptis/default.nix index 034cd9c196e0..721994ce0900 100644 --- a/pkgs/development/python-modules/inscriptis/default.nix +++ b/pkgs/development/python-modules/inscriptis/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "inscriptis" ]; - meta = with lib; { + meta = { description = "HTML to text converter"; mainProgram = "inscript.py"; homepage = "https://github.com/weblyzard/inscriptis"; changelog = "https://github.com/weblyzard/inscriptis/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/insegel/default.nix b/pkgs/development/python-modules/insegel/default.nix index 57f87a5a7b07..3100128f5ecc 100644 --- a/pkgs/development/python-modules/insegel/default.nix +++ b/pkgs/development/python-modules/insegel/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "insegel" ]; - meta = with lib; { + meta = { homepage = "https://github.com/autophagy/insegel"; description = "Monochrome 2 column Sphinx theme"; - license = licenses.mit; - maintainers = with maintainers; [ autophagy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ autophagy ]; }; } diff --git a/pkgs/development/python-modules/installer/default.nix b/pkgs/development/python-modules/installer/default.nix index 7170c110673e..3d2069370eb4 100644 --- a/pkgs/development/python-modules/installer/default.nix +++ b/pkgs/development/python-modules/installer/default.nix @@ -50,12 +50,12 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "Low-level library for installing a Python package from a wheel distribution"; homepage = "https://github.com/pypa/installer"; changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md"; - license = licenses.mit; - maintainers = [ maintainers.cpcloud ]; - teams = [ teams.python ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.cpcloud ]; + teams = [ lib.teams.python ]; }; } diff --git a/pkgs/development/python-modules/insteon-frontend-home-assistant/default.nix b/pkgs/development/python-modules/insteon-frontend-home-assistant/default.nix index 946e807c44c4..dae6d98f7650 100644 --- a/pkgs/development/python-modules/insteon-frontend-home-assistant/default.nix +++ b/pkgs/development/python-modules/insteon-frontend-home-assistant/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "insteon_frontend" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pyinsteon/insteon-panel/releases/tag/${version}"; description = "Insteon frontend for Home Assistant"; homepage = "https://github.com/pyinsteon/insteon-panel"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/intake-parquet/default.nix b/pkgs/development/python-modules/intake-parquet/default.nix index a9503eddcfaf..ebbf23185c19 100644 --- a/pkgs/development/python-modules/intake-parquet/default.nix +++ b/pkgs/development/python-modules/intake-parquet/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { #pythonImportsCheck = [ "intake_parquet" ]; - meta = with lib; { + meta = { description = "Parquet plugin for Intake"; homepage = "https://github.com/intake/intake-parquet"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/intake/default.nix b/pkgs/development/python-modules/intake/default.nix index d4f4b05437c9..edd4e90feeb7 100644 --- a/pkgs/development/python-modules/intake/default.nix +++ b/pkgs/development/python-modules/intake/default.nix @@ -135,11 +135,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "intake" ]; - meta = with lib; { + meta = { description = "Data load and catalog system"; homepage = "https://github.com/ContinuumIO/intake"; changelog = "https://github.com/intake/intake/blob/${version}/docs/source/changelog.rst"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/intellifire4py/default.nix b/pkgs/development/python-modules/intellifire4py/default.nix index a37f378939b7..a77e4dd3e9c9 100644 --- a/pkgs/development/python-modules/intellifire4py/default.nix +++ b/pkgs/development/python-modules/intellifire4py/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "intellifire4py" ]; - meta = with lib; { + meta = { description = "Module to read Intellifire fireplace status data"; homepage = "https://github.com/jeeftor/intellifire4py"; changelog = "https://github.com/jeeftor/intellifire4py/releases/tag/v${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "intellifire4py"; }; diff --git a/pkgs/development/python-modules/interegular/default.nix b/pkgs/development/python-modules/interegular/default.nix index 6ca3cd0c4959..cc5a193a52c8 100644 --- a/pkgs/development/python-modules/interegular/default.nix +++ b/pkgs/development/python-modules/interegular/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "interegular" ]; - meta = with lib; { + meta = { description = "Library to check a subset of python regexes for intersections"; homepage = "https://github.com/MegaIng/interegular"; - license = licenses.mit; - maintainers = with maintainers; [ lach ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lach ]; }; } diff --git a/pkgs/development/python-modules/interruptingcow/default.nix b/pkgs/development/python-modules/interruptingcow/default.nix index 300b39b2d802..cbcd976c5624 100644 --- a/pkgs/development/python-modules/interruptingcow/default.nix +++ b/pkgs/development/python-modules/interruptingcow/default.nix @@ -13,10 +13,10 @@ buildPythonPackage rec { sha256 = "3e8cd5058b651e625702cba53e3b1fb76d7a5ec07ab69c52a167a9f784e3306c"; }; - meta = with lib; { + meta = { description = "Watchdog that interrupts long running code"; homepage = "https://bitbucket.org/evzijst/interruptingcow"; - license = licenses.mit; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ benley ]; }; } diff --git a/pkgs/development/python-modules/intervaltree/default.nix b/pkgs/development/python-modules/intervaltree/default.nix index eb9511c9e70a..ed18a50246e0 100644 --- a/pkgs/development/python-modules/intervaltree/default.nix +++ b/pkgs/development/python-modules/intervaltree/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { rm -rf build ''; - meta = with lib; { + meta = { description = "Editable interval tree data structure for Python 2 and 3"; homepage = "https://github.com/chaimleib/intervaltree"; - license = [ licenses.asl20 ]; - maintainers = [ maintainers.bennofs ]; + license = [ lib.licenses.asl20 ]; + maintainers = [ lib.maintainers.bennofs ]; }; } diff --git a/pkgs/development/python-modules/into-dbus-python/default.nix b/pkgs/development/python-modules/into-dbus-python/default.nix index 62b3448473a2..f64397577875 100644 --- a/pkgs/development/python-modules/into-dbus-python/default.nix +++ b/pkgs/development/python-modules/into-dbus-python/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "into_dbus_python" ]; - meta = with lib; { + meta = { description = "Transformer to dbus-python types"; homepage = "https://github.com/stratis-storage/into-dbus-python"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/invocations/default.nix b/pkgs/development/python-modules/invocations/default.nix index abf5299df53c..a25a9d6525df 100644 --- a/pkgs/development/python-modules/invocations/default.nix +++ b/pkgs/development/python-modules/invocations/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { "status_" ]; - meta = with lib; { + meta = { description = "Common/best-practice Invoke tasks and collections"; homepage = "https://invocations.readthedocs.io/"; changelog = "https://github.com/pyinvoke/invocations/blob/${version}/docs/changelog.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/invoke/default.nix b/pkgs/development/python-modules/invoke/default.nix index 019ebd243f2c..be5f60fd0287 100644 --- a/pkgs/development/python-modules/invoke/default.nix +++ b/pkgs/development/python-modules/invoke/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { $out/bin/inv --print-completion-script=fish >$out/share/fish/vendor_completions.d/inv.fish ''; - meta = with lib; { + meta = { changelog = "https://www.pyinvoke.org/changelog.html"; description = "Pythonic task execution"; homepage = "https://www.pyinvoke.org/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/iocapture/default.nix b/pkgs/development/python-modules/iocapture/default.nix index 715abd657b56..c7a00b3f420a 100644 --- a/pkgs/development/python-modules/iocapture/default.nix +++ b/pkgs/development/python-modules/iocapture/default.nix @@ -28,9 +28,9 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Capture stdout, stderr easily"; homepage = "https://github.com/oinume/iocapture"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/iocextract/default.nix b/pkgs/development/python-modules/iocextract/default.nix index c83b73c641b9..bd8b379b9b25 100644 --- a/pkgs/development/python-modules/iocextract/default.nix +++ b/pkgs/development/python-modules/iocextract/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { "test_refang_data" ]; - meta = with lib; { + meta = { description = "Module to extract Indicator of Compromises (IOC)"; mainProgram = "iocextract"; homepage = "https://github.com/InQuest/python-iocextract"; changelog = "https://github.com/InQuest/python-iocextract/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/iocsearcher/default.nix b/pkgs/development/python-modules/iocsearcher/default.nix index 67c18054eedb..42cc79000e17 100644 --- a/pkgs/development/python-modules/iocsearcher/default.nix +++ b/pkgs/development/python-modules/iocsearcher/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "iocsearcher" ]; - meta = with lib; { + meta = { description = "Library and command line tool for extracting indicators of compromise (IOCs)"; homepage = "https://github.com/malicialab/iocsearcher"; changelog = "https://github.com/malicialab/iocsearcher/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "iocsearcher"; }; } diff --git a/pkgs/development/python-modules/iodata/default.nix b/pkgs/development/python-modules/iodata/default.nix index 2d5619c6434c..4c894f61c5db 100644 --- a/pkgs/development/python-modules/iodata/default.nix +++ b/pkgs/development/python-modules/iodata/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python library for reading, writing, and converting computational chemistry file formats and generating input files"; mainProgram = "iodata-convert"; homepage = "https://github.com/theochem/iodata"; - license = licenses.lgpl3Only; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.lgpl3Only; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/ionoscloud/default.nix b/pkgs/development/python-modules/ionoscloud/default.nix index e369d55f7509..8c22b57f1589 100644 --- a/pkgs/development/python-modules/ionoscloud/default.nix +++ b/pkgs/development/python-modules/ionoscloud/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ionoscloud" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ionos-cloud/sdk-python"; description = "Python API client for ionoscloud"; changelog = "https://github.com/ionos-cloud/sdk-python/blob/v${version}/docs/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/iopath/default.nix b/pkgs/development/python-modules/iopath/default.nix index 2f18e9de0744..680ff908d9ef 100644 --- a/pkgs/development/python-modules/iopath/default.nix +++ b/pkgs/development/python-modules/iopath/default.nix @@ -56,11 +56,11 @@ buildPythonPackage { aws = [ boto3 ]; }; - meta = with lib; { + meta = { description = "Python library that provides common I/O interface across different storage backends"; homepage = "https://github.com/facebookresearch/iopath"; changelog = "https://github.com/facebookresearch/iopath/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/ipaddr/default.nix b/pkgs/development/python-modules/ipaddr/default.nix index f42decd345b3..5f8c0efaa8b8 100644 --- a/pkgs/development/python-modules/ipaddr/default.nix +++ b/pkgs/development/python-modules/ipaddr/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { python ipaddr_test.py ''; - meta = with lib; { + meta = { description = "IP address manipulation library"; homepage = "https://github.com/google/ipaddr-py"; - license = licenses.asl20; - maintainers = [ maintainers.astro ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.astro ]; }; } diff --git a/pkgs/development/python-modules/ipadic/default.nix b/pkgs/development/python-modules/ipadic/default.nix index cb2bed955849..4fb58b541e0c 100644 --- a/pkgs/development/python-modules/ipadic/default.nix +++ b/pkgs/development/python-modules/ipadic/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ipadic" ]; - meta = with lib; { + meta = { description = "Contemporary Written Japanese dictionary"; homepage = "https://github.com/polm/ipadic-py"; - license = licenses.mit; - maintainers = with maintainers; [ laurent-f1z1 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ laurent-f1z1 ]; }; } diff --git a/pkgs/development/python-modules/ipdb/default.nix b/pkgs/development/python-modules/ipdb/default.nix index 66f08d1fd04f..1c5e9252660c 100644 --- a/pkgs/development/python-modules/ipdb/default.nix +++ b/pkgs/development/python-modules/ipdb/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "tests/test_opts.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/gotcha/ipdb"; description = "IPython-enabled pdb"; mainProgram = "ipdb3"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ipfshttpclient/default.nix b/pkgs/development/python-modules/ipfshttpclient/default.nix index 06b95c8d12d9..331c07a8b45f 100644 --- a/pkgs/development/python-modules/ipfshttpclient/default.nix +++ b/pkgs/development/python-modules/ipfshttpclient/default.nix @@ -85,11 +85,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ipfshttpclient" ]; - meta = with lib; { + meta = { description = "Python client library for the IPFS API"; homepage = "https://github.com/ipfs-shipyard/py-ipfs-http-client"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mguentner Luflosi ]; diff --git a/pkgs/development/python-modules/iptools/default.nix b/pkgs/development/python-modules/iptools/default.nix index 96dc39af38b2..a93620615b66 100644 --- a/pkgs/development/python-modules/iptools/default.nix +++ b/pkgs/development/python-modules/iptools/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/iptools/iptools_test.py" ]; - meta = with lib; { + meta = { description = "Utilities for manipulating IP addresses including a class that can be used to include CIDR network blocks in Django's INTERNAL_IPS setting"; homepage = "https://github.com/bd808/python-iptools"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/ipv8-rust-tunnels/default.nix b/pkgs/development/python-modules/ipv8-rust-tunnels/default.nix index 10d83e315c42..2f75cad47f18 100644 --- a/pkgs/development/python-modules/ipv8-rust-tunnels/default.nix +++ b/pkgs/development/python-modules/ipv8-rust-tunnels/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { maturinBuildHook ]; - meta = with lib; { + meta = { description = "A set of performance enhancements to the TunnelCommunity, the anonymization layer used in IPv8 and Tribler"; homepage = "https://github.com/Tribler/ipv8-rust-tunnels"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ mlaradji ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ mlaradji ]; }; } diff --git a/pkgs/development/python-modules/ipwhl/default.nix b/pkgs/development/python-modules/ipwhl/default.nix index c7f2f621a2f6..d0ba36c9fb2c 100644 --- a/pkgs/development/python-modules/ipwhl/default.nix +++ b/pkgs/development/python-modules/ipwhl/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { doCheck = false; # there's no test pythonImportsCheck = [ "ipwhl" ]; - meta = with lib; { + meta = { description = "Utilities for the InterPlanetary Wheels"; homepage = "https://git.sr.ht/~cnx/ipwhl-utils"; - license = licenses.agpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.agpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; }; } diff --git a/pkgs/development/python-modules/ipwhois/default.nix b/pkgs/development/python-modules/ipwhois/default.nix index c538720db57f..9139b7f361b2 100644 --- a/pkgs/development/python-modules/ipwhois/default.nix +++ b/pkgs/development/python-modules/ipwhois/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { "test_get_http_json" ]; - meta = with lib; { + meta = { description = "Library to retrieve and parse whois data"; homepage = "https://github.com/secynic/ipwhois"; changelog = "https://github.com/secynic/ipwhois/blob/v${version}/CHANGES.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ipy/default.nix b/pkgs/development/python-modules/ipy/default.nix index 70617033394a..8da474ed305b 100644 --- a/pkgs/development/python-modules/ipy/default.nix +++ b/pkgs/development/python-modules/ipy/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Class and tools for handling of IPv4 and IPv6 addresses and networks"; homepage = "https://github.com/autocracy/python-ipy"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; }; } diff --git a/pkgs/development/python-modules/ipycanvas/default.nix b/pkgs/development/python-modules/ipycanvas/default.nix index bfaf91ff974d..4376c1ea5cce 100644 --- a/pkgs/development/python-modules/ipycanvas/default.nix +++ b/pkgs/development/python-modules/ipycanvas/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { doCheck = false; # tests are in Typescript and require `npx` and `chromium` pythonImportsCheck = [ "ipycanvas" ]; - meta = with lib; { + meta = { description = "Expose the browser's Canvas API to IPython"; homepage = "https://ipycanvas.readthedocs.io"; changelog = "https://github.com/jupyter-widgets-contrib/ipycanvas/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/ipymarkup/default.nix b/pkgs/development/python-modules/ipymarkup/default.nix index 10dccf3f262a..18b6a3f584ed 100644 --- a/pkgs/development/python-modules/ipymarkup/default.nix +++ b/pkgs/development/python-modules/ipymarkup/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # Upstream has no tests: doCheck = false; - meta = with lib; { + meta = { description = "Collection of NLP visualizations for NER and syntax tree markup"; homepage = "https://github.com/natasha/ipymarkup"; - license = licenses.mit; - maintainers = with maintainers; [ npatsakula ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ npatsakula ]; }; } diff --git a/pkgs/development/python-modules/ipympl/default.nix b/pkgs/development/python-modules/ipympl/default.nix index fb40d729a7b9..58b313c4a752 100644 --- a/pkgs/development/python-modules/ipympl/default.nix +++ b/pkgs/development/python-modules/ipympl/default.nix @@ -43,13 +43,13 @@ buildPythonPackage rec { "ipympl.backend_nbagg" ]; - meta = with lib; { + meta = { description = "Matplotlib Jupyter Extension"; homepage = "https://github.com/matplotlib/jupyter-matplotlib"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jluttine fabiangd ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/ipyniivue/default.nix b/pkgs/development/python-modules/ipyniivue/default.nix index cdc0a1d2308d..4aa77ea2f66a 100644 --- a/pkgs/development/python-modules/ipyniivue/default.nix +++ b/pkgs/development/python-modules/ipyniivue/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "ipyniivue" ]; - meta = with lib; { + meta = { description = "Show a nifti image in a webgl 2.0 canvas within a jupyter notebook cell"; homepage = "https://github.com/niivue/ipyniivue"; changelog = "https://github.com/niivue/ipyniivue/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/ipyparallel/default.nix b/pkgs/development/python-modules/ipyparallel/default.nix index 2eefd719b2a7..542dfaed2922 100644 --- a/pkgs/development/python-modules/ipyparallel/default.nix +++ b/pkgs/development/python-modules/ipyparallel/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ipyparallel" ]; - meta = with lib; { + meta = { description = "Interactive Parallel Computing with IPython"; homepage = "https://ipyparallel.readthedocs.io/"; changelog = "https://github.com/ipython/ipyparallel/blob/${version}/docs/source/changelog.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/ipytablewidgets/default.nix b/pkgs/development/python-modules/ipytablewidgets/default.nix index e536861e1061..41086f3926b6 100644 --- a/pkgs/development/python-modules/ipytablewidgets/default.nix +++ b/pkgs/development/python-modules/ipytablewidgets/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ipytablewidgets" ]; - meta = with lib; { + meta = { description = "Traitlets and widgets to efficiently data tables (e.g. Pandas DataFrame) using the jupyter notebook"; homepage = "https://github.com/progressivis/ipytablewidgets"; - license = licenses.bsd3; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/ipython-sql/default.nix b/pkgs/development/python-modules/ipython-sql/default.nix index bf4430c3e6ce..465fea015526 100644 --- a/pkgs/development/python-modules/ipython-sql/default.nix +++ b/pkgs/development/python-modules/ipython-sql/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sql" ]; - meta = with lib; { + meta = { description = "Introduces a %sql (or %%sql) magic"; homepage = "https://github.com/catherinedevlin/ipython-sql"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/ipyvue/default.nix b/pkgs/development/python-modules/ipyvue/default.nix index 6fc90d99fd77..64894faf238e 100644 --- a/pkgs/development/python-modules/ipyvue/default.nix +++ b/pkgs/development/python-modules/ipyvue/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { doCheck = false; # No tests in package or GitHub pythonImportsCheck = [ "ipyvue" ]; - meta = with lib; { + meta = { description = "Jupyter widgets base for Vue libraries"; homepage = "https://github.com/mariobuikhuizen/ipyvue"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ipyvuetify/default.nix b/pkgs/development/python-modules/ipyvuetify/default.nix index 4f37bd1b055d..5a52b11e044f 100644 --- a/pkgs/development/python-modules/ipyvuetify/default.nix +++ b/pkgs/development/python-modules/ipyvuetify/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; # no tests on PyPi/GitHub pythonImportsCheck = [ "ipyvuetify" ]; - meta = with lib; { + meta = { description = "Jupyter widgets based on Vuetify UI Components"; homepage = "https://github.com/mariobuikhuizen/ipyvuetify"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ipyxact/default.nix b/pkgs/development/python-modules/ipyxact/default.nix index 2f4e700cf90f..cf246551b52f 100644 --- a/pkgs/development/python-modules/ipyxact/default.nix +++ b/pkgs/development/python-modules/ipyxact/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ipyxact" ]; - meta = with lib; { + meta = { homepage = "https://github.com/olofk/ipyxact"; description = "IP-XACT parser"; mainProgram = "ipxact2v"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/irc/default.nix b/pkgs/development/python-modules/irc/default.nix index 5e6fb96ecb5e..f73305fc2d00 100644 --- a/pkgs/development/python-modules/irc/default.nix +++ b/pkgs/development/python-modules/irc/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "irc" ]; - meta = with lib; { + meta = { description = "IRC (Internet Relay Chat) protocol library for Python"; homepage = "https://github.com/jaraco/irc"; changelog = "https://github.com/jaraco/irc/blob/v${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ircrobots/default.nix b/pkgs/development/python-modules/ircrobots/default.nix index d8d35a093d61..852a05a9db62 100644 --- a/pkgs/development/python-modules/ircrobots/default.nix +++ b/pkgs/development/python-modules/ircrobots/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ircrobots" ]; - meta = with lib; { + meta = { description = "Asynchronous bare-bones IRC bot framework for python3"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jesopo/ircrobots"; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/ircstates/default.nix b/pkgs/development/python-modules/ircstates/default.nix index c6e8f06dea30..d227c9cac034 100644 --- a/pkgs/development/python-modules/ircstates/default.nix +++ b/pkgs/development/python-modules/ircstates/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ircstates" ]; - meta = with lib; { + meta = { description = "sans-I/O IRC session state parsing library"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jesopo/ircstates"; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/irctokens/default.nix b/pkgs/development/python-modules/irctokens/default.nix index 5c5f74d01f9c..4155ef180a28 100644 --- a/pkgs/development/python-modules/irctokens/default.nix +++ b/pkgs/development/python-modules/irctokens/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "irctokens" ]; - meta = with lib; { + meta = { description = "RFC1459 and IRCv3 protocol tokeniser library for python3"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jesopo/irctokens"; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/isal/default.nix b/pkgs/development/python-modules/isal/default.nix index d1344d106f54..fc3c9a496209 100644 --- a/pkgs/development/python-modules/isal/default.nix +++ b/pkgs/development/python-modules/isal/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "isal" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pycompression/python-isal/blob/${src.rev}/CHANGELOG.rst"; description = "Faster zlib and gzip compatible compression and decompression by providing python bindings for the isa-l library"; homepage = "https://github.com/pycompression/python-isal"; - license = licenses.psfl; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/isbnlib/default.nix b/pkgs/development/python-modules/isbnlib/default.nix index ec020ed85399..afa64d0f522f 100644 --- a/pkgs/development/python-modules/isbnlib/default.nix +++ b/pkgs/development/python-modules/isbnlib/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "isbnlib.registry" ]; - meta = with lib; { + meta = { description = "Extract, clean, transform, hyphenate and metadata for ISBNs"; homepage = "https://github.com/xlcnd/isbnlib"; changelog = "https://github.com/xlcnd/isbnlib/blob/v${version}/CHANGES.txt"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/ismartgate/default.nix b/pkgs/development/python-modules/ismartgate/default.nix index 87e1cf31bf40..b3e8c3493b6f 100644 --- a/pkgs/development/python-modules/ismartgate/default.nix +++ b/pkgs/development/python-modules/ismartgate/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ismartgate" ]; - meta = with lib; { + meta = { description = "Python module to work with the ismartgate and gogogate2 API"; homepage = "https://github.com/bdraco/ismartgate"; changelog = "https://github.com/bdraco/ismartgate/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/iso-639/default.nix b/pkgs/development/python-modules/iso-639/default.nix index a971722a4194..f40aadb9ef25 100644 --- a/pkgs/development/python-modules/iso-639/default.nix +++ b/pkgs/development/python-modules/iso-639/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/noumar/iso639"; description = "ISO 639 library for Python"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ zraexy ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ zraexy ]; }; } diff --git a/pkgs/development/python-modules/iso3166/default.nix b/pkgs/development/python-modules/iso3166/default.nix index 30dee04e8ced..4edb40d65245 100644 --- a/pkgs/development/python-modules/iso3166/default.nix +++ b/pkgs/development/python-modules/iso3166/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "iso3166" ]; - meta = with lib; { + meta = { description = "Self-contained ISO 3166-1 country definitions"; homepage = "https://github.com/deactivated/python-iso3166"; changelog = "https://github.com/deactivated/python-iso3166/blob/v${version}/CHANGES"; - license = licenses.mit; - maintainers = with maintainers; [ zraexy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zraexy ]; }; } diff --git a/pkgs/development/python-modules/iso4217/default.nix b/pkgs/development/python-modules/iso4217/default.nix index ea27ffdd45fa..9dd428c43517 100644 --- a/pkgs/development/python-modules/iso4217/default.nix +++ b/pkgs/development/python-modules/iso4217/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "iso4217" ]; - meta = with lib; { + meta = { description = "ISO 4217 currency data package for Python"; homepage = "https://github.com/dahlia/iso4217"; - license = with licenses; [ publicDomain ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ publicDomain ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/iso8601/default.nix b/pkgs/development/python-modules/iso8601/default.nix index 7fb179d4c850..ea20b42a8ce5 100644 --- a/pkgs/development/python-modules/iso8601/default.nix +++ b/pkgs/development/python-modules/iso8601/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "iso8601" ]; - meta = with lib; { + meta = { description = "Simple module to parse ISO 8601 dates"; homepage = "https://pyiso8601.readthedocs.io/"; changelog = "https://github.com/micktwomey/pyiso8601/blob/${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/isodate/default.nix b/pkgs/development/python-modules/isodate/default.nix index 8a5517cd705a..4b2cfbfa156b 100644 --- a/pkgs/development/python-modules/isodate/default.nix +++ b/pkgs/development/python-modules/isodate/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/gweis/isodate/blob/${version}/CHANGES.txt"; description = "ISO 8601 date/time parser"; homepage = "https://github.com/gweis/isodate/"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/isoduration/default.nix b/pkgs/development/python-modules/isoduration/default.nix index fbe3c34f8f45..fc7aabbdd862 100644 --- a/pkgs/development/python-modules/isoduration/default.nix +++ b/pkgs/development/python-modules/isoduration/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "isoduration" ]; - meta = with lib; { + meta = { description = "Library for operations with ISO 8601 durations"; homepage = "https://github.com/bolsote/isoduration"; - license = licenses.isc; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/isort/default.nix b/pkgs/development/python-modules/isort/default.nix index af72a6adc212..45369602063e 100644 --- a/pkgs/development/python-modules/isort/default.nix +++ b/pkgs/development/python-modules/isort/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { "test_isort_should_warn_on_empty_custom_config_issue_1433" ]; - meta = with lib; { + meta = { description = "Python utility / library to sort Python imports"; homepage = "https://github.com/PyCQA/isort"; - license = licenses.mit; - maintainers = with maintainers; [ couchemar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ couchemar ]; mainProgram = "isort"; }; } diff --git a/pkgs/development/python-modules/isosurfaces/default.nix b/pkgs/development/python-modules/isosurfaces/default.nix index 79de8ce0df38..21ab11f64341 100644 --- a/pkgs/development/python-modules/isosurfaces/default.nix +++ b/pkgs/development/python-modules/isosurfaces/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "isosurfaces" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jared-hughes/isosurfaces"; description = "Construct isolines/isosurfaces of a 2D/3D scalar field defined by a function"; longDescription = '' @@ -32,7 +32,7 @@ buildPythonPackage rec { uniform grid, but this uses a quadtree to avoid wasting time sampling many far from the implicit surface. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/isounidecode/default.nix b/pkgs/development/python-modules/isounidecode/default.nix index c8b0607b0244..611819ef5467 100644 --- a/pkgs/development/python-modules/isounidecode/default.nix +++ b/pkgs/development/python-modules/isounidecode/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # no real tests included, fails to run doCheck = false; - meta = with lib; { + meta = { description = "Python package for conversion and transliteration of unicode into ascii or iso-8859-1"; homepage = "https://github.com/redvasily/isounidecode"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/isoweek/default.nix b/pkgs/development/python-modules/isoweek/default.nix index 70c38d790430..31c74f35b35f 100644 --- a/pkgs/development/python-modules/isoweek/default.nix +++ b/pkgs/development/python-modules/isoweek/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "isoweek" ]; - meta = with lib; { + meta = { description = "Module work with ISO weeks"; homepage = "https://github.com/gisle/isoweek"; changelog = "https://github.com/gisle/isoweek/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ mrmebelman ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/development/python-modules/itanium-demangler/default.nix b/pkgs/development/python-modules/itanium-demangler/default.nix index 59b4430fe2f1..3b328c161f21 100644 --- a/pkgs/development/python-modules/itanium-demangler/default.nix +++ b/pkgs/development/python-modules/itanium-demangler/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "itanium_demangler" ]; - meta = with lib; { + meta = { description = "Python parser for the Itanium C++ ABI symbol mangling language"; homepage = "https://github.com/whitequark/python-itanium_demangler"; - license = licenses.bsd0; - maintainers = with maintainers; [ + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ fab pamplemousse ]; diff --git a/pkgs/development/python-modules/item-synchronizer/default.nix b/pkgs/development/python-modules/item-synchronizer/default.nix index 5e8ecf202995..7bd43720cdb3 100644 --- a/pkgs/development/python-modules/item-synchronizer/default.nix +++ b/pkgs/development/python-modules/item-synchronizer/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "item_synchronizer" ]; - meta = with lib; { + meta = { description = ""; homepage = "https://github.com/bergercookie/item_synchronizer"; changelog = "https://github.com/bergercookie/item_synchronizer/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/itemadapter/default.nix b/pkgs/development/python-modules/itemadapter/default.nix index 72c2d930334d..5c0b0b888985 100644 --- a/pkgs/development/python-modules/itemadapter/default.nix +++ b/pkgs/development/python-modules/itemadapter/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "itemadapter" ]; - meta = with lib; { + meta = { description = "Common interface for data container classes"; homepage = "https://github.com/scrapy/itemadapter"; changelog = "https://github.com/scrapy/itemadapter/raw/v${version}/Changelog.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/itemdb/default.nix b/pkgs/development/python-modules/itemdb/default.nix index e55f1b4eb948..1c3f7a0b397f 100644 --- a/pkgs/development/python-modules/itemdb/default.nix +++ b/pkgs/development/python-modules/itemdb/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { sha256 = "sha256-HXdOERq2td6CME8zWN0DRVkSlmdqTg2po7aJrOuITHE="; }; - meta = with lib; { + meta = { description = "Easy transactional database for Python dicts, backed by SQLite"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://itemdb.readthedocs.io"; - maintainers = [ maintainers.matthiasbeyer ]; + maintainers = [ lib.maintainers.matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/itemloaders/default.nix b/pkgs/development/python-modules/itemloaders/default.nix index 5dc7f4fb8d67..01d49651a878 100644 --- a/pkgs/development/python-modules/itemloaders/default.nix +++ b/pkgs/development/python-modules/itemloaders/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "itemloaders" ]; - meta = with lib; { + meta = { description = "Library to populate items using XPath and CSS with a convenient API"; homepage = "https://github.com/scrapy/itemloaders"; changelog = "https://github.com/scrapy/itemloaders/raw/v${version}/docs/release-notes.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/iteration-utilities/default.nix b/pkgs/development/python-modules/iteration-utilities/default.nix index a0c048f8ba67..bf02780e0559 100644 --- a/pkgs/development/python-modules/iteration-utilities/default.nix +++ b/pkgs/development/python-modules/iteration-utilities/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "iteration_utilities" ]; - meta = with lib; { + meta = { description = "Utilities based on Pythons iterators and generators"; homepage = "https://github.com/MSeifert04/iteration_utilities"; changelog = "https://github.com/MSeifert04/iteration_utilities/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/iterative-telemetry/default.nix b/pkgs/development/python-modules/iterative-telemetry/default.nix index 64ee06e02927..e89ea2ce0c7e 100644 --- a/pkgs/development/python-modules/iterative-telemetry/default.nix +++ b/pkgs/development/python-modules/iterative-telemetry/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "iterative_telemetry" ]; - meta = with lib; { + meta = { description = "Common library to send usage telemetry"; homepage = "https://github.com/iterative/iterative-telemetry"; changelog = "https://github.com/iterative/iterative-telemetry/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/iterm2/default.nix b/pkgs/development/python-modules/iterm2/default.nix index 6e92003720ef..650077742e73 100644 --- a/pkgs/development/python-modules/iterm2/default.nix +++ b/pkgs/development/python-modules/iterm2/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "iterm2" ]; - meta = with lib; { + meta = { description = "Python interface to iTerm2's scripting API"; homepage = "https://github.com/gnachman/iTerm2"; - license = licenses.gpl2; - platforms = platforms.darwin; - maintainers = with maintainers; [ jeremyschlatter ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ jeremyschlatter ]; }; } diff --git a/pkgs/development/python-modules/itsdangerous/default.nix b/pkgs/development/python-modules/itsdangerous/default.nix index 29d9ea285a55..4e28f98e1c13 100644 --- a/pkgs/development/python-modules/itsdangerous/default.nix +++ b/pkgs/development/python-modules/itsdangerous/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/pallets/itsdangerous/blob/${version}/CHANGES.rst"; description = "Safely pass data to untrusted environments and back"; homepage = "https://itsdangerous.palletsprojects.com"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/itunespy/default.nix b/pkgs/development/python-modules/itunespy/default.nix index 367b595356f9..156cba6383cb 100644 --- a/pkgs/development/python-modules/itunespy/default.nix +++ b/pkgs/development/python-modules/itunespy/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "itunespy" ]; - meta = with lib; { + meta = { description = "Simple library to fetch data from the iTunes Store API"; homepage = "https://github.com/sleepyfran/itunespy"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; }; } diff --git a/pkgs/development/python-modules/itypes/default.nix b/pkgs/development/python-modules/itypes/default.nix index 9f74eeaf392c..f98f3b77b7e6 100644 --- a/pkgs/development/python-modules/itypes/default.nix +++ b/pkgs/development/python-modules/itypes/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pytest tests.py ''; - meta = with lib; { + meta = { description = "Simple immutable types for python"; homepage = "https://github.com/tomchristie/itypes"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/iwlib/default.nix b/pkgs/development/python-modules/iwlib/default.nix index 08348a6de3ab..774845f67bf2 100644 --- a/pkgs/development/python-modules/iwlib/default.nix +++ b/pkgs/development/python-modules/iwlib/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { checkInputs = [ pytest ]; checkPhase = "python iwlib/_iwlib_build.py; pytest -v"; - meta = with lib; { + meta = { homepage = "https://github.com/nhoad/python-iwlib"; description = "Python interface for the Wireless Tools utility collection"; changelog = "https://github.com/nhoad/python-iwlib#change-history"; - maintainers = with maintainers; [ jcspeegs ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ jcspeegs ]; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/development/python-modules/j2cli/default.nix b/pkgs/development/python-modules/j2cli/default.nix index 87cd4d3e022f..1971cf8a1b77 100644 --- a/pkgs/development/python-modules/j2cli/default.nix +++ b/pkgs/development/python-modules/j2cli/default.nix @@ -26,16 +26,16 @@ buildPythonPackage rec { setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/kolypto/j2cli"; description = "Jinja2 Command-Line Tool"; mainProgram = "j2"; - license = licenses.bsd2; + license = lib.licenses.bsd2; longDescription = '' J2Cli is a command-line tool for templating in shell-scripts, leveraging the Jinja2 library. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rushmorem SuperSandro2000 ]; diff --git a/pkgs/development/python-modules/j2lint/default.nix b/pkgs/development/python-modules/j2lint/default.nix index c51312dc24c0..bb777d5bb660 100644 --- a/pkgs/development/python-modules/j2lint/default.nix +++ b/pkgs/development/python-modules/j2lint/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { ]; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { homepage = "https://github.com/aristanetworks/j2lint"; description = "Jinja2 Linter CLI"; - license = licenses.mit; - maintainers = with maintainers; [ polyfloyd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ polyfloyd ]; }; } diff --git a/pkgs/development/python-modules/jaconv/default.nix b/pkgs/development/python-modules/jaconv/default.nix index 3304ed3e82fe..2b65dfc5dd5e 100644 --- a/pkgs/development/python-modules/jaconv/default.nix +++ b/pkgs/development/python-modules/jaconv/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaconv" ]; - meta = with lib; { + meta = { description = "Python Japanese character interconverter for Hiragana, Katakana, Hankaku and Zenkaku"; homepage = "https://github.com/ikegami-yukino/jaconv"; changelog = "https://github.com/ikegami-yukino/jaconv/blob/v${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/jamo/default.nix b/pkgs/development/python-modules/jamo/default.nix index 8f4ec491f7c1..0786cb031561 100644 --- a/pkgs/development/python-modules/jamo/default.nix +++ b/pkgs/development/python-modules/jamo/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/JDongian/python-jamo/releases/tag/v${version}"; description = "Hangul syllable decomposition and synthesis using jamo"; homepage = "https://github.com/JDongian/python-jamo"; - license = licenses.asl20; - teams = [ teams.tts ]; + license = lib.licenses.asl20; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/janus/default.nix b/pkgs/development/python-modules/janus/default.nix index b4cfb2d61264..6be74674a63b 100644 --- a/pkgs/development/python-modules/janus/default.nix +++ b/pkgs/development/python-modules/janus/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pytestFlags = [ "--benchmark-disable" ]; - meta = with lib; { + meta = { description = "Mixed sync-async queue"; homepage = "https://github.com/aio-libs/janus"; - license = licenses.asl20; - maintainers = [ maintainers.simonchatts ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.simonchatts ]; }; } diff --git a/pkgs/development/python-modules/jaraco-classes/default.nix b/pkgs/development/python-modules/jaraco-classes/default.nix index 669fa12f96d5..722b7f89e727 100644 --- a/pkgs/development/python-modules/jaraco-classes/default.nix +++ b/pkgs/development/python-modules/jaraco-classes/default.nix @@ -30,9 +30,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Utility functions for Python class constructs"; homepage = "https://github.com/jaraco/jaraco.classes"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/jaraco-collections/default.nix b/pkgs/development/python-modules/jaraco-collections/default.nix index 8f913f2d11a3..8eb35a80a8f5 100644 --- a/pkgs/development/python-modules/jaraco-collections/default.nix +++ b/pkgs/development/python-modules/jaraco-collections/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.collections" ]; - meta = with lib; { + meta = { description = "Models and classes to supplement the stdlib 'collections' module"; homepage = "https://github.com/jaraco/jaraco.collections"; changelog = "https://github.com/jaraco/jaraco.collections/blob/v${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jaraco-context/default.nix b/pkgs/development/python-modules/jaraco-context/default.nix index 6bf235513e27..a8f20a56f108 100644 --- a/pkgs/development/python-modules/jaraco-context/default.nix +++ b/pkgs/development/python-modules/jaraco-context/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.context" ]; - meta = with lib; { + meta = { description = "Python module for context management"; homepage = "https://github.com/jaraco/jaraco.context"; changelog = "https://github.com/jaraco/jaraco.context/blob/v${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/jaraco-functools/default.nix b/pkgs/development/python-modules/jaraco-functools/default.nix index 90b983a1c504..7d5cf98a8b5d 100644 --- a/pkgs/development/python-modules/jaraco-functools/default.nix +++ b/pkgs/development/python-modules/jaraco-functools/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.functools" ]; - meta = with lib; { + meta = { description = "Additional functools in the spirit of stdlib's functools"; homepage = "https://github.com/jaraco/jaraco.functools"; changelog = "https://github.com/jaraco/jaraco.functools/blob/v${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jaraco-itertools/default.nix b/pkgs/development/python-modules/jaraco-itertools/default.nix index 971dbd9aba1c..d138cb2f8e1f 100644 --- a/pkgs/development/python-modules/jaraco-itertools/default.nix +++ b/pkgs/development/python-modules/jaraco-itertools/default.nix @@ -38,9 +38,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.itertools" ]; - meta = with lib; { + meta = { description = "Tools for working with iterables"; homepage = "https://github.com/jaraco/jaraco.itertools"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/jaraco-logging/default.nix b/pkgs/development/python-modules/jaraco-logging/default.nix index 44e8ad050bcf..1a01a5d50bd2 100644 --- a/pkgs/development/python-modules/jaraco-logging/default.nix +++ b/pkgs/development/python-modules/jaraco-logging/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.logging" ]; - meta = with lib; { + meta = { description = "Support for Python logging facility"; homepage = "https://github.com/jaraco/jaraco.logging"; changelog = "https://github.com/jaraco/jaraco.logging/blob/v${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jaraco-stream/default.nix b/pkgs/development/python-modules/jaraco-stream/default.nix index 33b0ea2e9d33..0cb6246f9ac2 100644 --- a/pkgs/development/python-modules/jaraco-stream/default.nix +++ b/pkgs/development/python-modules/jaraco-stream/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.stream" ]; - meta = with lib; { + meta = { description = "Module with routines for handling streaming data"; homepage = "https://github.com/jaraco/jaraco.stream"; changelog = "https://github.com/jaraco/jaraco.stream/blob/v${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jaraco-test/default.nix b/pkgs/development/python-modules/jaraco-test/default.nix index f97cbf0ade2f..dfd0a2829924 100644 --- a/pkgs/development/python-modules/jaraco-test/default.nix +++ b/pkgs/development/python-modules/jaraco-test/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.test" ]; - meta = with lib; { + meta = { description = "Testing support by jaraco"; homepage = "https://github.com/jaraco/jaraco.test"; changelog = "https://github.com/jaraco/jaraco.test/blob/${src.rev}/NEWS.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/jaraco-text/default.nix b/pkgs/development/python-modules/jaraco-text/default.nix index f58b76d1f35c..f866a6809cf0 100644 --- a/pkgs/development/python-modules/jaraco-text/default.nix +++ b/pkgs/development/python-modules/jaraco-text/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jaraco.text" ]; - meta = with lib; { + meta = { description = "Module for text manipulation"; homepage = "https://github.com/jaraco/jaraco.text"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jarowinkler/default.nix b/pkgs/development/python-modules/jarowinkler/default.nix index d9c86afb8f08..f3f9ef9cdb42 100644 --- a/pkgs/development/python-modules/jarowinkler/default.nix +++ b/pkgs/development/python-modules/jarowinkler/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jarowinkler" ]; - meta = with lib; { + meta = { description = "Library for fast approximate string matching using Jaro and Jaro-Winkler similarity"; homepage = "https://github.com/maxbachmann/JaroWinkler"; changelog = "https://github.com/maxbachmann/JaroWinkler/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/javaobj-py3/default.nix b/pkgs/development/python-modules/javaobj-py3/default.nix index fecd77a50300..72696d60e7a2 100644 --- a/pkgs/development/python-modules/javaobj-py3/default.nix +++ b/pkgs/development/python-modules/javaobj-py3/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "javaobj" ]; - meta = with lib; { + meta = { description = "Module for serializing and de-serializing Java objects"; homepage = "https://github.com/tcalmant/python-javaobj"; - license = licenses.asl20; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/jax-jumpy/default.nix b/pkgs/development/python-modules/jax-jumpy/default.nix index ac15b08f9203..347497b414e2 100644 --- a/pkgs/development/python-modules/jax-jumpy/default.nix +++ b/pkgs/development/python-modules/jax-jumpy/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jumpy" ]; - meta = with lib; { + meta = { description = "Jumpy is a common backend for NumPy and optionally JAX"; homepage = "https://github.com/Farama-Foundation/Jumpy"; - license = licenses.asl20; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/jaxlib/default.nix b/pkgs/development/python-modules/jaxlib/default.nix index a9600204a9c2..a12fe4f9d29f 100644 --- a/pkgs/development/python-modules/jaxlib/default.nix +++ b/pkgs/development/python-modules/jaxlib/default.nix @@ -64,18 +64,18 @@ let stdenv = throw "Use effectiveStdenv instead"; effectiveStdenv = if cudaSupport then cudaPackages.backendStdenv else inputs.stdenv; - meta = with lib; { + meta = { description = "Source-built JAX backend. JAX is Autograd and XLA, brought together for high-performance machine learning research"; homepage = "https://github.com/google/jax"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; # Make this platforms.unix once Darwin is supported. # The top-level jaxlib now falls back to jaxlib-bin on unsupported platforms. # aarch64-darwin is broken because of https://github.com/bazelbuild/rules_cc/pull/136 # however even with that fix applied, it doesn't work for everyone: # https://github.com/NixOS/nixpkgs/pull/184395#issuecomment-1207287129 - platforms = platforms.linux; + platforms = lib.platforms.linux; # Needs update for Bazel 7. broken = true; diff --git a/pkgs/development/python-modules/jaydebeapi/default.nix b/pkgs/development/python-modules/jaydebeapi/default.nix index 0f8b13535ca7..a8f1b072c9ee 100644 --- a/pkgs/development/python-modules/jaydebeapi/default.nix +++ b/pkgs/development/python-modules/jaydebeapi/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ jpype1 ]; - meta = with lib; { + meta = { homepage = "https://github.com/baztian/jaydebeapi"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; description = "Use JDBC database drivers from Python 2/3 or Jython with a DB-API"; }; } diff --git a/pkgs/development/python-modules/jc/default.nix b/pkgs/development/python-modules/jc/default.nix index cea0b88296b8..7c325657fd8f 100644 --- a/pkgs/development/python-modules/jc/default.nix +++ b/pkgs/development/python-modules/jc/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { # tests require timezone to set America/Los_Angeles doCheck = false; - meta = with lib; { + meta = { description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output"; homepage = "https://github.com/kellyjonbrazil/jc"; - license = licenses.mit; - maintainers = with maintainers; [ atemu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ atemu ]; changelog = "https://github.com/kellyjonbrazil/jc/blob/${src.tag}/CHANGELOG"; mainProgram = "jc"; }; diff --git a/pkgs/development/python-modules/jdatetime/default.nix b/pkgs/development/python-modules/jdatetime/default.nix index 34ff46b4c310..269830c1a209 100644 --- a/pkgs/development/python-modules/jdatetime/default.nix +++ b/pkgs/development/python-modules/jdatetime/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jdatetime" ]; - meta = with lib; { + meta = { description = "Jalali datetime binding"; homepage = "https://github.com/slashmili/python-jalali"; changelog = "https://github.com/slashmili/python-jalali/blob/v${version}/CHANGELOG.md"; - license = licenses.psfl; + license = lib.licenses.psfl; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jedi/default.nix b/pkgs/development/python-modules/jedi/default.nix index 0c51b535ea88..65ee7b942b3c 100644 --- a/pkgs/development/python-modules/jedi/default.nix +++ b/pkgs/development/python-modules/jedi/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_dict_completion" ]; - meta = with lib; { + meta = { description = "Autocompletion tool for Python that can be used for text editors"; homepage = "https://github.com/davidhalter/jedi"; changelog = "https://github.com/davidhalter/jedi/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jeepney/default.nix b/pkgs/development/python-modules/jeepney/default.nix index 28ebd4e5c8cc..b66d5e8d7abf 100644 --- a/pkgs/development/python-modules/jeepney/default.nix +++ b/pkgs/development/python-modules/jeepney/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { "jeepney.io.trio" ]; - meta = with lib; { + meta = { changelog = "https://gitlab.com/takluyver/jeepney/-/blob/${src.tag}/docs/release-notes.rst"; homepage = "https://gitlab.com/takluyver/jeepney"; description = "Pure Python DBus interface"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/jello/default.nix b/pkgs/development/python-modules/jello/default.nix index d5f676dc854a..cb60641b6465 100644 --- a/pkgs/development/python-modules/jello/default.nix +++ b/pkgs/development/python-modules/jello/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { installManPage man/jello.1 ''; - meta = with lib; { + meta = { description = "CLI tool to filter JSON and JSON Lines data with Python syntax"; mainProgram = "jello"; homepage = "https://github.com/kellyjonbrazil/jello"; changelog = "https://github.com/kellyjonbrazil/jello/blob/${src.tag}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix b/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix index 61b99ba33044..86eb56ad2f67 100644 --- a/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix +++ b/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jellyfin_apiclient_python" ]; - meta = with lib; { + meta = { description = "Python API client for Jellyfin"; homepage = "https://github.com/jellyfin/jellyfin-apiclient-python"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/development/python-modules/jenkinsapi/default.nix b/pkgs/development/python-modules/jenkinsapi/default.nix index 7cca5d9a67ac..662f6e64dfea 100644 --- a/pkgs/development/python-modules/jenkinsapi/default.nix +++ b/pkgs/development/python-modules/jenkinsapi/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "jenkinsapi.utils.jenkins_launcher" ]; - meta = with lib; { + meta = { description = "Python API for accessing resources on a Jenkins continuous-integration server"; homepage = "https://github.com/salimfadhley/jenkinsapi"; - maintainers = with maintainers; [ drets ]; - teams = [ teams.deshaw ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ drets ]; + teams = [ lib.teams.deshaw ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/jieba/default.nix b/pkgs/development/python-modules/jieba/default.nix index e67942b68207..edaf27047e84 100644 --- a/pkgs/development/python-modules/jieba/default.nix +++ b/pkgs/development/python-modules/jieba/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { ${python.interpreter} test/test_tokenize.py ''; - meta = with lib; { + meta = { description = "Chinese Words Segementation Utilities"; homepage = "https://github.com/fxsjy/jieba"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/jinja2-ansible-filters/default.nix b/pkgs/development/python-modules/jinja2-ansible-filters/default.nix index 3e007d326d88..f04b19fd896e 100644 --- a/pkgs/development/python-modules/jinja2-ansible-filters/default.nix +++ b/pkgs/development/python-modules/jinja2-ansible-filters/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jinja2_ansible_filters" ]; - meta = with lib; { + meta = { description = "Jinja2 Ansible Filters"; homepage = "https://pypi.org/project/jinja2-ansible-filters/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jinja2-git/default.nix b/pkgs/development/python-modules/jinja2-git/default.nix index e6fdd006f5ca..88d8ed8ec33f 100644 --- a/pkgs/development/python-modules/jinja2-git/default.nix +++ b/pkgs/development/python-modules/jinja2-git/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jinja2_git" ]; - meta = with lib; { + meta = { homepage = "https://github.com/wemake-services/jinja2-git"; description = "Jinja2 extension to handle git-specific things"; changelog = "https://github.com/wemake-services/jinja2-git/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/jinja2-pluralize/default.nix b/pkgs/development/python-modules/jinja2-pluralize/default.nix index 5a6013e88468..d0ed378f7b85 100644 --- a/pkgs/development/python-modules/jinja2-pluralize/default.nix +++ b/pkgs/development/python-modules/jinja2-pluralize/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jinja2_pluralize" ]; - meta = with lib; { + meta = { description = "Jinja2 pluralize filters"; homepage = "https://github.com/audreyr/jinja2_pluralize"; - license = licenses.bsd3; - maintainers = with maintainers; [ dzabraev ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dzabraev ]; }; } diff --git a/pkgs/development/python-modules/jinja2-time/default.nix b/pkgs/development/python-modules/jinja2-time/default.nix index b0783c69f4ba..397fe292664c 100644 --- a/pkgs/development/python-modules/jinja2-time/default.nix +++ b/pkgs/development/python-modules/jinja2-time/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jinja2_time" ]; - meta = with lib; { + meta = { homepage = "https://github.com/hackebrot/jinja2-time"; description = "Jinja2 Extension for Dates and Times"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jinja2/default.nix b/pkgs/development/python-modules/jinja2/default.nix index ccd2577b09af..523c1de9ca0d 100644 --- a/pkgs/development/python-modules/jinja2/default.nix +++ b/pkgs/development/python-modules/jinja2/default.nix @@ -85,17 +85,17 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { changelog = "https://github.com/pallets/jinja/blob/${version}/CHANGES.rst"; description = "Very fast and expressive template engine"; downloadPage = "https://github.com/pallets/jinja"; homepage = "https://jinja.palletsprojects.com"; - license = licenses.bsd3; + license = lib.licenses.bsd3; longDescription = '' Jinja is a fast, expressive, extensible templating engine. Special placeholders in the template allow writing code similar to Python syntax. Then the template is passed data to render the final document. ''; - maintainers = with maintainers; [ pierron ]; + maintainers = with lib.maintainers; [ pierron ]; }; } diff --git a/pkgs/development/python-modules/jira/default.nix b/pkgs/development/python-modules/jira/default.nix index b5037b50f169..d40dc1d0ee5e 100644 --- a/pkgs/development/python-modules/jira/default.nix +++ b/pkgs/development/python-modules/jira/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { # impure tests because of connectivity attempts to jira servers doCheck = false; - meta = with lib; { + meta = { description = "Library to interact with the JIRA REST API"; homepage = "https://github.com/pycontribs/jira"; changelog = "https://github.com/pycontribs/jira/releases/tag/${src.tag}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "jirashell"; }; diff --git a/pkgs/development/python-modules/jiwer/default.nix b/pkgs/development/python-modules/jiwer/default.nix index 3694c1a741de..1262633f7a2e 100644 --- a/pkgs/development/python-modules/jiwer/default.nix +++ b/pkgs/development/python-modules/jiwer/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "jiwer" ]; - meta = with lib; { + meta = { description = "Simple and fast python package to evaluate an automatic speech recognition system"; mainProgram = "jiwer"; homepage = "https://github.com/jitsi/jiwer"; changelog = "https://github.com/jitsi/jiwer/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/jmespath/default.nix b/pkgs/development/python-modules/jmespath/default.nix index a01dc0b7984d..d64699d43500 100644 --- a/pkgs/development/python-modules/jmespath/default.nix +++ b/pkgs/development/python-modules/jmespath/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/jmespath/jmespath.py"; description = "JMESPath allows you to declaratively specify how to extract elements from a JSON document"; mainProgram = "jp.py"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jmp/default.nix b/pkgs/development/python-modules/jmp/default.nix index 4cfd27d57a8f..27dcdc7ed601 100644 --- a/pkgs/development/python-modules/jmp/default.nix +++ b/pkgs/development/python-modules/jmp/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "This library implements support for mixed precision training in JAX"; homepage = "https://github.com/deepmind/jmp"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/joblib/default.nix b/pkgs/development/python-modules/joblib/default.nix index 4959b53e2283..362fa5077ad9 100644 --- a/pkgs/development/python-modules/joblib/default.nix +++ b/pkgs/development/python-modules/joblib/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { "test_background_thread_parallelism" ]; - meta = with lib; { + meta = { changelog = "https://github.com/joblib/joblib/releases/tag/${version}"; description = "Lightweight pipelining: using Python functions as pipeline jobs"; homepage = "https://joblib.readthedocs.io/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/johnnycanencrypt/default.nix b/pkgs/development/python-modules/johnnycanencrypt/default.nix index 2d2533c566de..cb3be6d2fc46 100644 --- a/pkgs/development/python-modules/johnnycanencrypt/default.nix +++ b/pkgs/development/python-modules/johnnycanencrypt/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "johnnycanencrypt" ]; - meta = with lib; { + meta = { description = "Python module for OpenPGP written in Rust"; homepage = "https://github.com/kushaldas/johnnycanencrypt"; changelog = "https://github.com/kushaldas/johnnycanencrypt/blob/v${version}/changelog.md"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ _0x4A6F ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ _0x4A6F ]; }; } diff --git a/pkgs/development/python-modules/joserfc/default.nix b/pkgs/development/python-modules/joserfc/default.nix index 6c7580873c31..42e20b524812 100644 --- a/pkgs/development/python-modules/joserfc/default.nix +++ b/pkgs/development/python-modules/joserfc/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "joserfc" ]; - meta = with lib; { + meta = { changelog = "https://github.com/authlib/joserfc/blob/${src.tag}/docs/changelog.rst"; description = "Implementations of JOSE RFCs in Python"; homepage = "https://github.com/authlib/joserfc"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jplephem/default.nix b/pkgs/development/python-modules/jplephem/default.nix index 05d2075a0e51..b3c8d5c24fe5 100644 --- a/pkgs/development/python-modules/jplephem/default.nix +++ b/pkgs/development/python-modules/jplephem/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jplephem" ]; - meta = with lib; { + meta = { homepage = "https://github.com/brandon-rhodes/python-jplephem/"; description = "Python version of NASA DE4xx ephemerides, the basis for the Astronomical Alamanac"; - license = licenses.mit; - maintainers = with maintainers; [ zane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zane ]; }; } diff --git a/pkgs/development/python-modules/jproperties/default.nix b/pkgs/development/python-modules/jproperties/default.nix index 1705f73d2605..420959580737 100644 --- a/pkgs/development/python-modules/jproperties/default.nix +++ b/pkgs/development/python-modules/jproperties/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jproperties" ]; - meta = with lib; { + meta = { description = "Java Property file parser and writer for Python"; homepage = "https://github.com/Tblue/python-jproperties"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "propconv"; }; } diff --git a/pkgs/development/python-modules/jpylyzer/default.nix b/pkgs/development/python-modules/jpylyzer/default.nix index 43803a6d67b3..1c2a4dee72bc 100644 --- a/pkgs/development/python-modules/jpylyzer/default.nix +++ b/pkgs/development/python-modules/jpylyzer/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { withFullCheck = jpylyzer.override { doFullCheck = true; }; }; - meta = with lib; { + meta = { description = "JP2 (JPEG 2000 Part 1) image validator and properties extractor"; mainProgram = "jpylyzer"; homepage = "https://jpylyzer.openpreservation.org/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/jpype1/default.nix b/pkgs/development/python-modules/jpype1/default.nix index a0bec9ca7408..bfb58b5382d5 100644 --- a/pkgs/development/python-modules/jpype1/default.nix +++ b/pkgs/development/python-modules/jpype1/default.nix @@ -55,13 +55,13 @@ buildPythonPackage rec { "jpype.types" ]; - meta = with lib; { + meta = { homepage = "https://github.com/originell/jpype/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode ]; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Python to Java bridge"; }; } diff --git a/pkgs/development/python-modules/jq/default.nix b/pkgs/development/python-modules/jq/default.nix index d8ed319e2673..9291c54ed1cc 100644 --- a/pkgs/development/python-modules/jq/default.nix +++ b/pkgs/development/python-modules/jq/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jq" ]; - meta = with lib; { + meta = { description = "Python bindings for jq, the flexible JSON processor"; homepage = "https://github.com/mwilliamson/jq.py"; changelog = "https://github.com/mwilliamson/jq.py/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ benley ]; }; } diff --git a/pkgs/development/python-modules/jsbeautifier/default.nix b/pkgs/development/python-modules/jsbeautifier/default.nix index e3860c74215b..57eaa4dda6ad 100644 --- a/pkgs/development/python-modules/jsbeautifier/default.nix +++ b/pkgs/development/python-modules/jsbeautifier/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { enabledTestPaths = [ "jsbeautifier/tests/testindentation.py" ]; - meta = with lib; { + meta = { description = "JavaScript unobfuscator and beautifier"; mainProgram = "js-beautify"; homepage = "http://jsbeautifier.org"; changelog = "https://github.com/beautify-web/js-beautify/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ apeyroux ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ apeyroux ]; }; } diff --git a/pkgs/development/python-modules/jschema-to-python/default.nix b/pkgs/development/python-modules/jschema-to-python/default.nix index 773327b85cfb..8d4d02de48c0 100644 --- a/pkgs/development/python-modules/jschema-to-python/default.nix +++ b/pkgs/development/python-modules/jschema-to-python/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jschema_to_python" ]; - meta = with lib; { + meta = { description = "Generate source code for Python classes from a JSON schema"; homepage = "https://github.com/microsoft/jschema-to-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jschon/default.nix b/pkgs/development/python-modules/jschon/default.nix index 3bf7e228b31e..a733318dbeba 100644 --- a/pkgs/development/python-modules/jschon/default.nix +++ b/pkgs/development/python-modules/jschon/default.nix @@ -71,11 +71,11 @@ buildPythonPackage rec { # used in checks __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Object-oriented JSON Schema implementation for Python"; homepage = "https://github.com/marksparkza/jschon"; changelog = "https://github.com/marksparkza/jschon/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/jsmin/default.nix b/pkgs/development/python-modules/jsmin/default.nix index 42be27661c03..7dbe63b11d16 100644 --- a/pkgs/development/python-modules/jsmin/default.nix +++ b/pkgs/development/python-modules/jsmin/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsmin" ]; - meta = with lib; { + meta = { description = "JavaScript minifier"; homepage = "https://github.com/tikitu/jsmin/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/json-home-client/default.nix b/pkgs/development/python-modules/json-home-client/default.nix index fa74eec1676a..b3c6ddfcbbe6 100644 --- a/pkgs/development/python-modules/json-home-client/default.nix +++ b/pkgs/development/python-modules/json-home-client/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "json_home_client" ]; - meta = with lib; { + meta = { description = "Client class for calling http+json APIs in Python"; homepage = "https://github.com/plinss/json_home_client"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/json-logging/default.nix b/pkgs/development/python-modules/json-logging/default.nix index 0663b6d61635..c5cc9a4f9969 100644 --- a/pkgs/development/python-modules/json-logging/default.nix +++ b/pkgs/development/python-modules/json-logging/default.nix @@ -60,7 +60,7 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python library to emit logs in JSON format"; longDescription = '' Python logging library to emit JSON log that can be easily indexed and searchable by logging @@ -68,7 +68,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/bobbui/json-logging-python"; changelog = "https://github.com/bobbui/json-logging-python/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/json-merge-patch/default.nix b/pkgs/development/python-modules/json-merge-patch/default.nix index 3562eb6f743e..0aaa3b3f4e48 100644 --- a/pkgs/development/python-modules/json-merge-patch/default.nix +++ b/pkgs/development/python-modules/json-merge-patch/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { build-system = [ setuptools ]; - meta = with lib; { + meta = { description = "JSON Merge Patch library"; mainProgram = "json-merge-patch"; homepage = "https://github.com/open-contracting/json-merge-patch"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/json-rpc/default.nix b/pkgs/development/python-modules/json-rpc/default.nix index e9d39c3c5863..1b960d9ff83c 100644 --- a/pkgs/development/python-modules/json-rpc/default.nix +++ b/pkgs/development/python-modules/json-rpc/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeBuildInputs = pythonEnv; - meta = with lib; { + meta = { description = "JSON-RPC 1/2 transport implementation"; homepage = "https://github.com/pavlov99/json-rpc"; - license = licenses.mit; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/json-schema-for-humans/default.nix b/pkgs/development/python-modules/json-schema-for-humans/default.nix index 5a47a4574ec3..4d4ed6294eeb 100644 --- a/pkgs/development/python-modules/json-schema-for-humans/default.nix +++ b/pkgs/development/python-modules/json-schema-for-humans/default.nix @@ -67,12 +67,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "json_schema_for_humans" ]; - meta = with lib; { + meta = { description = "Quickly generate HTML documentation from a JSON schema"; homepage = "https://github.com/coveooss/json-schema-for-humans"; changelog = "https://github.com/coveooss/json-schema-for-humans/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ astro ]; mainProgram = "generate-schema-doc"; }; } diff --git a/pkgs/development/python-modules/json-stream-rs-tokenizer/default.nix b/pkgs/development/python-modules/json-stream-rs-tokenizer/default.nix index aa8347189ee2..ae3f54732416 100644 --- a/pkgs/development/python-modules/json-stream-rs-tokenizer/default.nix +++ b/pkgs/development/python-modules/json-stream-rs-tokenizer/default.nix @@ -59,10 +59,10 @@ buildPythonPackage rec { }); }; - meta = with lib; { + meta = { description = "Faster tokenizer for the json-stream Python library"; homepage = "https://github.com/smheidrich/py-json-stream-rs-tokenizer"; - license = licenses.mit; - maintainers = with maintainers; [ winter ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ winter ]; }; } diff --git a/pkgs/development/python-modules/json-stream/default.nix b/pkgs/development/python-modules/json-stream/default.nix index e9d41a9bf637..5a052f19d89b 100644 --- a/pkgs/development/python-modules/json-stream/default.nix +++ b/pkgs/development/python-modules/json-stream/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { disabledTests = [ "test_writer" ]; - meta = with lib; { + meta = { description = "Streaming JSON parser"; homepage = "https://github.com/daggaz/json-stream"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/json-tricks/default.nix b/pkgs/development/python-modules/json-tricks/default.nix index ff77b545414c..e1ec0451c1c8 100644 --- a/pkgs/development/python-modules/json-tricks/default.nix +++ b/pkgs/development/python-modules/json-tricks/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "json_tricks" ]; - meta = with lib; { + meta = { description = "Extra features for Python JSON handling"; homepage = "https://github.com/mverleg/pyjson_tricks"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/json5/default.nix b/pkgs/development/python-modules/json5/default.nix index affea87f7b13..fa303250c3ee 100644 --- a/pkgs/development/python-modules/json5/default.nix +++ b/pkgs/development/python-modules/json5/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "json5" ]; - meta = with lib; { + meta = { description = "Python implementation of the JSON5 data format"; homepage = "https://github.com/dpranke/pyjson5"; changelog = "https://github.com/dpranke/pyjson5/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; mainProgram = "pyjson5"; }; } diff --git a/pkgs/development/python-modules/jsonargparse/default.nix b/pkgs/development/python-modules/jsonargparse/default.nix index 37b7e43ae8b5..d60d056ebcab 100644 --- a/pkgs/development/python-modules/jsonargparse/default.nix +++ b/pkgs/development/python-modules/jsonargparse/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonargparse" ]; - meta = with lib; { + meta = { description = "Module to implement minimal boilerplate CLIs derived from various sources"; homepage = "https://github.com/omni-us/jsonargparse"; changelog = "https://github.com/omni-us/jsonargparse/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/jsonconversion/default.nix b/pkgs/development/python-modules/jsonconversion/default.nix index c2a796ac0613..31187551459b 100644 --- a/pkgs/development/python-modules/jsonconversion/default.nix +++ b/pkgs/development/python-modules/jsonconversion/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { disabledTests = lib.optionals (pythonAtLeast "3.13") [ "test_dict" ]; - meta = with lib; { + meta = { description = "This python module helps converting arbitrary Python objects into JSON strings and back"; homepage = "https://github.com/DLR-RM/python-jsonconversion"; changelog = "https://github.com/DLR-RM/python-jsonconversion/releases/tag/${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ terlar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ terlar ]; }; } diff --git a/pkgs/development/python-modules/jsonfeed/default.nix b/pkgs/development/python-modules/jsonfeed/default.nix index 8cde64656acc..e6a9395fb8ef 100644 --- a/pkgs/development/python-modules/jsonfeed/default.nix +++ b/pkgs/development/python-modules/jsonfeed/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonfeed" ]; - meta = with lib; { + meta = { description = "Module to process json feed"; homepage = "https://pypi.org/project/jsonfeed/"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/jsonformatter/default.nix b/pkgs/development/python-modules/jsonformatter/default.nix index 5351a490835b..23158b8f9b02 100644 --- a/pkgs/development/python-modules/jsonformatter/default.nix +++ b/pkgs/development/python-modules/jsonformatter/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonformatter" ]; - meta = with lib; { + meta = { description = "Formatter to output JSON log, e.g. output LogStash needed log"; homepage = "https://github.com/MyColorfulDays/jsonformatter"; changelog = "https://github.com/MyColorfulDays/jsonformatter/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/jsonlines/default.nix b/pkgs/development/python-modules/jsonlines/default.nix index ba7b8bebcdc8..d6d0c788e5bc 100644 --- a/pkgs/development/python-modules/jsonlines/default.nix +++ b/pkgs/development/python-modules/jsonlines/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonlines" ]; - meta = with lib; { + meta = { description = "Python library to simplify working with jsonlines and ndjson data"; homepage = "https://github.com/wbolster/jsonlines"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jsonmerge/default.nix b/pkgs/development/python-modules/jsonmerge/default.nix index 208d4dd78fbc..1bcf41ccbcf7 100644 --- a/pkgs/development/python-modules/jsonmerge/default.nix +++ b/pkgs/development/python-modules/jsonmerge/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Merge a series of JSON documents"; homepage = "https://github.com/avian2/jsonmerge"; changelog = "https://github.com/avian2/jsonmerge/blob/jsonmerge-${version}/ChangeLog"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jsonpatch/default.nix b/pkgs/development/python-modules/jsonpatch/default.nix index 4e428924c130..2da630113f2c 100644 --- a/pkgs/development/python-modules/jsonpatch/default.nix +++ b/pkgs/development/python-modules/jsonpatch/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { enabledTestPaths = [ "tests.py" ]; - meta = with lib; { + meta = { description = "Library to apply JSON Patches according to RFC 6902"; homepage = "https://github.com/stefankoegl/python-json-patch"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jsonpath-ng/default.nix b/pkgs/development/python-modules/jsonpath-ng/default.nix index 9bc38a979f78..caa472bc3cbf 100644 --- a/pkgs/development/python-modules/jsonpath-ng/default.nix +++ b/pkgs/development/python-modules/jsonpath-ng/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonpath_ng" ]; - meta = with lib; { + meta = { description = "JSONPath implementation"; homepage = "https://github.com/h2non/jsonpath-ng"; changelog = "https://github.com/h2non/jsonpath-ng/blob/v${version}/History.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "jsonpath_ng"; }; } diff --git a/pkgs/development/python-modules/jsonpath-python/default.nix b/pkgs/development/python-modules/jsonpath-python/default.nix index 2b4c40bee69e..abb7ec231aa8 100644 --- a/pkgs/development/python-modules/jsonpath-python/default.nix +++ b/pkgs/development/python-modules/jsonpath-python/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonpath" ]; enabledTestPaths = [ "test/test*.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sean2077/jsonpath-python"; description = "More powerful JSONPath implementations in modern python"; - maintainers = with maintainers; [ dadada ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ dadada ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/jsonpath-rw/default.nix b/pkgs/development/python-modules/jsonpath-rw/default.nix index 736283bf04c2..bfcdf597ae67 100644 --- a/pkgs/development/python-modules/jsonpath-rw/default.nix +++ b/pkgs/development/python-modules/jsonpath-rw/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # ImportError: No module named tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/kennknowles/python-jsonpath-rw"; description = "Robust and significantly extended implementation of JSONPath for Python, with a clear AST for metaprogramming"; mainProgram = "jsonpath.py"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/jsonpickle/default.nix b/pkgs/development/python-modules/jsonpickle/default.nix index c67eb0b78f00..a2eed6d1834f 100644 --- a/pkgs/development/python-modules/jsonpickle/default.nix +++ b/pkgs/development/python-modules/jsonpickle/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "test_thing_with_submodule" ]; - meta = with lib; { + meta = { description = "Python library for serializing any arbitrary object graph into JSON"; downloadPage = "https://github.com/jsonpickle/jsonpickle"; homepage = "http://jsonpickle.github.io/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/jsonpointer/default.nix b/pkgs/development/python-modules/jsonpointer/default.nix index 5017a0da27d6..b35689eb9b38 100644 --- a/pkgs/development/python-modules/jsonpointer/default.nix +++ b/pkgs/development/python-modules/jsonpointer/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { hash = "sha256-Ky1ynyCRUi1hw7MfguEYcPYLaPQ/vHBct2v0uDKvWe8="; }; - meta = with lib; { + meta = { description = "Resolve JSON Pointers in Python"; mainProgram = "jsonpointer"; homepage = "https://github.com/stefankoegl/python-json-pointer"; - license = licenses.bsd2; # "Modified BSD license, says pypi" + license = lib.licenses.bsd2; # "Modified BSD license, says pypi" }; } diff --git a/pkgs/development/python-modules/jsonref/default.nix b/pkgs/development/python-modules/jsonref/default.nix index 1c76d37d598b..b92f8aae5162 100644 --- a/pkgs/development/python-modules/jsonref/default.nix +++ b/pkgs/development/python-modules/jsonref/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonref" ]; - meta = with lib; { + meta = { description = "Implementation of JSON Reference for Python"; homepage = "https://github.com/gazpachoking/jsonref"; changelog = "https://github.com/gazpachoking/jsonref/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jsonrpc-async/default.nix b/pkgs/development/python-modules/jsonrpc-async/default.nix index cde9fcf1114e..77d61bacfa58 100644 --- a/pkgs/development/python-modules/jsonrpc-async/default.nix +++ b/pkgs/development/python-modules/jsonrpc-async/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonrpc_async" ]; - meta = with lib; { + meta = { description = "JSON-RPC client library for asyncio"; homepage = "https://github.com/emlove/jsonrpc-async"; - license = licenses.bsd3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/jsonrpc-base/default.nix b/pkgs/development/python-modules/jsonrpc-base/default.nix index c0607f33a8fa..75f5880cd1da 100644 --- a/pkgs/development/python-modules/jsonrpc-base/default.nix +++ b/pkgs/development/python-modules/jsonrpc-base/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonrpc_base" ]; - meta = with lib; { + meta = { description = "JSON-RPC client library base interface"; homepage = "https://github.com/emlove/jsonrpc-base"; - license = licenses.bsd3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/jsonrpc-websocket/default.nix b/pkgs/development/python-modules/jsonrpc-websocket/default.nix index 25b1255c537d..d24068757e6d 100644 --- a/pkgs/development/python-modules/jsonrpc-websocket/default.nix +++ b/pkgs/development/python-modules/jsonrpc-websocket/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonrpc_websocket" ]; - meta = with lib; { + meta = { description = "JSON-RPC websocket client library for asyncio"; homepage = "https://github.com/emlove/jsonrpc-websocket"; - license = licenses.bsd3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/jsons/default.nix b/pkgs/development/python-modules/jsons/default.nix index 750655338d45..4fca72f3565d 100644 --- a/pkgs/development/python-modules/jsons/default.nix +++ b/pkgs/development/python-modules/jsons/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsons" ]; - meta = with lib; { + meta = { description = "Turn Python objects into dicts or json strings and back"; homepage = "https://github.com/ramonhagenaars/jsons"; changelog = "https://github.com/ramonhagenaars/jsons/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fmoda3 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fmoda3 ]; }; } diff --git a/pkgs/development/python-modules/jsonschema-spec/default.nix b/pkgs/development/python-modules/jsonschema-spec/default.nix index 1358e9282ed2..d9babbedd6d9 100644 --- a/pkgs/development/python-modules/jsonschema-spec/default.nix +++ b/pkgs/development/python-modules/jsonschema-spec/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { passthru.skipBulkUpdate = true; # newer versions under the jsonschema-path name - meta = with lib; { + meta = { changelog = "https://github.com/p1c2u/jsonschema-spec/releases/tag/${version}"; description = "JSONSchema Spec with object-oriented paths"; homepage = "https://github.com/p1c2u/jsonschema-spec"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/jsonschema-specifications/default.nix b/pkgs/development/python-modules/jsonschema-specifications/default.nix index 76d21eaacfe2..29641eb152fb 100644 --- a/pkgs/development/python-modules/jsonschema-specifications/default.nix +++ b/pkgs/development/python-modules/jsonschema-specifications/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonschema_specifications" ]; - meta = with lib; { + meta = { description = "Support files exposing JSON from the JSON Schema specifications"; homepage = "https://github.com/python-jsonschema/jsonschema-specifications"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/jsonschema/default.nix b/pkgs/development/python-modules/jsonschema/default.nix index d41e74543f91..dac12f2f81a8 100644 --- a/pkgs/development/python-modules/jsonschema/default.nix +++ b/pkgs/development/python-modules/jsonschema/default.nix @@ -85,11 +85,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonschema" ]; - meta = with lib; { + meta = { description = "Implementation of JSON Schema validation"; homepage = "https://github.com/python-jsonschema/jsonschema"; changelog = "https://github.com/python-jsonschema/jsonschema/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "jsonschema"; }; diff --git a/pkgs/development/python-modules/jsonslicer/default.nix b/pkgs/development/python-modules/jsonslicer/default.nix index 73250a986437..65eacb5001d4 100644 --- a/pkgs/development/python-modules/jsonslicer/default.nix +++ b/pkgs/development/python-modules/jsonslicer/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Stream JSON parser for Python"; homepage = "https://github.com/AMDmi3/jsonslicer"; changelog = "https://github.com/AMDmi3/jsonslicer/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ jopejoe1 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/jsonstreams/default.nix b/pkgs/development/python-modules/jsonstreams/default.nix index 7fef695cf559..5227d722c3dc 100644 --- a/pkgs/development/python-modules/jsonstreams/default.nix +++ b/pkgs/development/python-modules/jsonstreams/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { "jsonstreams" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "JSON streaming writer"; homepage = "https://github.com/dcbaker/jsonstreams"; - license = licenses.mit; - maintainers = with maintainers; [ chkno ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chkno ]; }; } diff --git a/pkgs/development/python-modules/jstyleson/default.nix b/pkgs/development/python-modules/jstyleson/default.nix index 45cb07cf48be..fc30cfad3564 100644 --- a/pkgs/development/python-modules/jstyleson/default.nix +++ b/pkgs/development/python-modules/jstyleson/default.nix @@ -22,10 +22,10 @@ buildPythonPackage { pythonImportsCheck = [ "jstyleson" ]; - meta = with lib; { + meta = { description = "Python library to parse JSON with js-style comments"; homepage = "https://github.com/linjackson78/jstyleson"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/jug/default.nix b/pkgs/development/python-modules/jug/default.nix index b8e921969b60..63359f40c83f 100644 --- a/pkgs/development/python-modules/jug/default.nix +++ b/pkgs/development/python-modules/jug/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jug" ]; - meta = with lib; { + meta = { description = "Task-Based Parallelization Framework"; homepage = "https://jug.readthedocs.io/"; changelog = "https://github.com/luispedro/jug/blob/v${version}/ChangeLog"; - license = licenses.mit; - maintainers = with maintainers; [ luispedro ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ luispedro ]; }; } diff --git a/pkgs/development/python-modules/julius/default.nix b/pkgs/development/python-modules/julius/default.nix index 5efa7622b962..caaf0fa97f69 100644 --- a/pkgs/development/python-modules/julius/default.nix +++ b/pkgs/development/python-modules/julius/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "julius" ]; - meta = with lib; { + meta = { description = "Nice DSP sweets: resampling, FFT Convolutions. All with PyTorch, differentiable and with CUDA support"; homepage = "https://pypi.org/project/julius/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/junit-xml/default.nix b/pkgs/development/python-modules/junit-xml/default.nix index 853a1ef160f2..5bc9d646e294 100644 --- a/pkgs/development/python-modules/junit-xml/default.nix +++ b/pkgs/development/python-modules/junit-xml/default.nix @@ -24,10 +24,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Creates JUnit XML test result documents that can be read by tools such as Jenkins"; homepage = "https://github.com/kyrus/python-junit-xml"; - maintainers = with maintainers; [ multun ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ multun ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/junit2html/default.nix b/pkgs/development/python-modules/junit2html/default.nix index b53bf1edcea8..309421ee28de 100644 --- a/pkgs/development/python-modules/junit2html/default.nix +++ b/pkgs/development/python-modules/junit2html/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "junit2htmlreport" ]; - meta = with lib; { + meta = { description = "Generate HTML reports from Junit results"; homepage = "https://gitlab.com/inorton/junit2html"; - license = licenses.mit; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ otavio ]; mainProgram = "junit2html"; }; } diff --git a/pkgs/development/python-modules/junitparser/default.nix b/pkgs/development/python-modules/junitparser/default.nix index efb5b0bae7a3..be695611cd60 100644 --- a/pkgs/development/python-modules/junitparser/default.nix +++ b/pkgs/development/python-modules/junitparser/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { glibcLocales ]; - meta = with lib; { + meta = { description = "Manipulates JUnit/xUnit Result XML files"; mainProgram = "junitparser"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/weiwei/junitparser"; - maintainers = with maintainers; [ multun ]; + maintainers = with lib.maintainers; [ multun ]; }; } diff --git a/pkgs/development/python-modules/junos-eznc/default.nix b/pkgs/development/python-modules/junos-eznc/default.nix index 0e1110e2e5ec..56a500a1f2b1 100644 --- a/pkgs/development/python-modules/junos-eznc/default.nix +++ b/pkgs/development/python-modules/junos-eznc/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jnpr.junos" ]; - meta = with lib; { + meta = { description = "Junos 'EZ' automation for non-programmers"; homepage = "https://github.com/Juniper/py-junos-eznc"; changelog = "https://github.com/Juniper/py-junos-eznc/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ xnaveira ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ xnaveira ]; }; } diff --git a/pkgs/development/python-modules/jupysql-plugin/default.nix b/pkgs/development/python-modules/jupysql-plugin/default.nix index 357a971cb17d..10116551c3ab 100644 --- a/pkgs/development/python-modules/jupysql-plugin/default.nix +++ b/pkgs/development/python-modules/jupysql-plugin/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupysql_plugin" ]; - meta = with lib; { + meta = { description = "Better SQL in Jupyter"; homepage = "https://github.com/ploomber/jupysql-plugin"; changelog = "https://github.com/ploomber/jupysql-plugin/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ euxane ]; }; } diff --git a/pkgs/development/python-modules/jupyter-c-kernel/default.nix b/pkgs/development/python-modules/jupyter-c-kernel/default.nix index ba5b3ff85d40..1318f265992a 100644 --- a/pkgs/development/python-modules/jupyter-c-kernel/default.nix +++ b/pkgs/development/python-modules/jupyter-c-kernel/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # no tests in repository doCheck = false; - meta = with lib; { + meta = { description = "Minimalistic C kernel for Jupyter"; mainProgram = "install_c_kernel"; homepage = "https://github.com/brendanrius/jupyter-c-kernel/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyter-cache/default.nix b/pkgs/development/python-modules/jupyter-cache/default.nix index f996f3a593a5..f37455e52185 100644 --- a/pkgs/development/python-modules/jupyter-cache/default.nix +++ b/pkgs/development/python-modules/jupyter-cache/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyter_cache" ]; - meta = with lib; { + meta = { description = "Defined interface for working with a cache of jupyter notebooks"; mainProgram = "jcache"; homepage = "https://github.com/executablebooks/jupyter-cache"; changelog = "https://github.com/executablebooks/jupyter-cache/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyter-contrib-core/default.nix b/pkgs/development/python-modules/jupyter-contrib-core/default.nix index 73d4d1a3b143..9351c2c26e5c 100644 --- a/pkgs/development/python-modules/jupyter-contrib-core/default.nix +++ b/pkgs/development/python-modules/jupyter-contrib-core/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyter_contrib_core" ]; - meta = with lib; { + meta = { description = "Common utilities for jupyter-contrib projects"; mainProgram = "jupyter-contrib"; homepage = "https://github.com/jupyter-contrib/jupyter_contrib_core"; - license = licenses.bsd3; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/jupyter-core/default.nix b/pkgs/development/python-modules/jupyter-core/default.nix index 776befd777ef..db2ea3958f14 100644 --- a/pkgs/development/python-modules/jupyter-core/default.nix +++ b/pkgs/development/python-modules/jupyter-core/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Base package on which Jupyter projects rely"; homepage = "https://jupyter.org/"; changelog = "https://github.com/jupyter/jupyter_core/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd3; - teams = [ teams.jupyter ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.jupyter ]; }; } diff --git a/pkgs/development/python-modules/jupyter-highlight-selected-word/default.nix b/pkgs/development/python-modules/jupyter-highlight-selected-word/default.nix index c819c33de103..11c2dba0d0fd 100644 --- a/pkgs/development/python-modules/jupyter-highlight-selected-word/default.nix +++ b/pkgs/development/python-modules/jupyter-highlight-selected-word/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyter_highlight_selected_word" ]; - meta = with lib; { + meta = { description = "Jupyter notebook extension that enables highlighting every instance of the current word in the notebook"; homepage = "https://github.com/jcb91/jupyter_highlight_selected_word"; - license = licenses.bsd3; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/jupyter-lsp/default.nix b/pkgs/development/python-modules/jupyter-lsp/default.nix index d2c97fb65985..c17d1bf0d465 100644 --- a/pkgs/development/python-modules/jupyter-lsp/default.nix +++ b/pkgs/development/python-modules/jupyter-lsp/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "jupyter_lsp" ]; - meta = with lib; { + meta = { description = "Multi-Language Server WebSocket proxy for your Jupyter notebook or lab server"; homepage = "https://jupyterlab-lsp.readthedocs.io/en/latest/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyter-packaging/default.nix b/pkgs/development/python-modules/jupyter-packaging/default.nix index d1c9851f7655..a542501eaed2 100644 --- a/pkgs/development/python-modules/jupyter-packaging/default.nix +++ b/pkgs/development/python-modules/jupyter-packaging/default.nix @@ -66,9 +66,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyter_packaging" ]; - meta = with lib; { + meta = { description = "Jupyter Packaging Utilities"; homepage = "https://github.com/jupyter/jupyter-packaging"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/jupyter-repo2docker/default.nix b/pkgs/development/python-modules/jupyter-repo2docker/default.nix index bcf31bfb43af..0a5b947de0bc 100644 --- a/pkgs/development/python-modules/jupyter-repo2docker/default.nix +++ b/pkgs/development/python-modules/jupyter-repo2docker/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { "repo2docker.contentproviders.base" ]; - meta = with lib; { + meta = { description = "Turn code repositories into Jupyter enabled Docker Images"; homepage = "https://repo2docker.readthedocs.io/"; changelog = "https://github.com/jupyterhub/repo2docker/blob/${src.tag}/docs/source/changelog.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyter-server-mathjax/default.nix b/pkgs/development/python-modules/jupyter-server-mathjax/default.nix index a3937b5d8bdb..c91d22ea3c8d 100644 --- a/pkgs/development/python-modules/jupyter-server-mathjax/default.nix +++ b/pkgs/development/python-modules/jupyter-server-mathjax/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "MathJax resources as a Jupyter Server Extension"; homepage = "https://github.com/jupyter-server/jupyter_server_mathjax"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyter-server-terminals/default.nix b/pkgs/development/python-modules/jupyter-server-terminals/default.nix index b7921afffb7d..4d64c3e3ee39 100644 --- a/pkgs/development/python-modules/jupyter-server-terminals/default.nix +++ b/pkgs/development/python-modules/jupyter-server-terminals/default.nix @@ -47,11 +47,11 @@ let }); }; - meta = with lib; { + meta = { changelog = "https://github.com/jupyter-server/jupyter_server_terminals/releases/tag/v${version}"; description = "Jupyter Server Extension Providing Support for Terminals"; homepage = "https://github.com/jupyter-server/jupyter_server_terminals"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/jupyter-sphinx/default.nix b/pkgs/development/python-modules/jupyter-sphinx/default.nix index 6f51f78a2902..680a43fed5b0 100644 --- a/pkgs/development/python-modules/jupyter-sphinx/default.nix +++ b/pkgs/development/python-modules/jupyter-sphinx/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Jupyter Sphinx Extensions"; homepage = "https://github.com/jupyter/jupyter-sphinx/"; changelog = "https://github.com/jupyter/jupyter-sphinx/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/jupyter/default.nix b/pkgs/development/python-modules/jupyter/default.nix index a3c9be651059..df18444ba5b8 100644 --- a/pkgs/development/python-modules/jupyter/default.nix +++ b/pkgs/development/python-modules/jupyter/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { dontUsePythonImportsCheck = true; - meta = with lib; { + meta = { description = "Installs all the Jupyter components in one go"; homepage = "https://jupyter.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; priority = 100; # This is a metapackage which is unimportant }; } diff --git a/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix b/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix index 114177120de6..802481aec358 100644 --- a/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix +++ b/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { "test_ldap_auth" ]; - meta = with lib; { + meta = { description = "Simple LDAP Authenticator Plugin for JupyterHub"; homepage = "https://github.com/jupyterhub/ldapauthenticator"; changelog = "https://github.com/jupyterhub/ldapauthenticator/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/jupyterhub-systemdspawner/default.nix b/pkgs/development/python-modules/jupyterhub-systemdspawner/default.nix index 9504c80437a0..2ce689d53805 100644 --- a/pkgs/development/python-modules/jupyterhub-systemdspawner/default.nix +++ b/pkgs/development/python-modules/jupyterhub-systemdspawner/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "systemdspawner" ]; - meta = with lib; { + meta = { description = "JupyterHub Spawner using systemd for resource isolation"; mainProgram = "check-kernel.bash"; homepage = "https://github.com/jupyterhub/systemdspawner"; changelog = "https://github.com/jupyterhub/systemdspawner/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix b/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix index 02c366d34c60..b883fe5c720b 100644 --- a/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix +++ b/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tmpauthenticator" ]; - meta = with lib; { + meta = { description = "Simple Jupyterhub authenticator that allows anyone to log in"; homepage = "https://github.com/jupyterhub/tmpauthenticator"; changelog = "https://github.com/jupyterhub/tmpauthenticator/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ chiroptical ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ chiroptical ]; }; } diff --git a/pkgs/development/python-modules/jupyterlab-git/default.nix b/pkgs/development/python-modules/jupyterlab-git/default.nix index d2804be4420e..e118bd9f9f27 100644 --- a/pkgs/development/python-modules/jupyterlab-git/default.nix +++ b/pkgs/development/python-modules/jupyterlab-git/default.nix @@ -85,11 +85,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Jupyter lab extension for version control with Git"; homepage = "https://github.com/jupyterlab/jupyterlab-git"; changelog = "https://github.com/jupyterlab/jupyterlab-git/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ chiroptical ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ chiroptical ]; }; } diff --git a/pkgs/development/python-modules/jupyterlab-lsp/default.nix b/pkgs/development/python-modules/jupyterlab-lsp/default.nix index 56c3717fbc68..8c411b54105f 100644 --- a/pkgs/development/python-modules/jupyterlab-lsp/default.nix +++ b/pkgs/development/python-modules/jupyterlab-lsp/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "jupyterlab_lsp" ]; - meta = with lib; { + meta = { description = "Language Server Protocol integration for Jupyter(Lab)"; homepage = "https://github.com/jupyter-lsp/jupyterlab-lsp"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyterlab-pygments/default.nix b/pkgs/development/python-modules/jupyterlab-pygments/default.nix index 204516e39d5a..d7efb693bcd4 100644 --- a/pkgs/development/python-modules/jupyterlab-pygments/default.nix +++ b/pkgs/development/python-modules/jupyterlab-pygments/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyterlab_pygments" ]; - meta = with lib; { + meta = { description = "Jupyterlab syntax coloring theme for pygments"; homepage = "https://github.com/jupyterlab/jupyterlab_pygments"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jupyterlab-vim/default.nix b/pkgs/development/python-modules/jupyterlab-vim/default.nix index 6fa64f240d43..1c3e05d3e4bb 100644 --- a/pkgs/development/python-modules/jupyterlab-vim/default.nix +++ b/pkgs/development/python-modules/jupyterlab-vim/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Vim notebook cell bindings for JupyterLab"; homepage = "https://github.com/jupyterlab-contrib/jupyterlab-vim"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ mart-mihkel ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mart-mihkel ]; }; } diff --git a/pkgs/development/python-modules/jupyterlab/default.nix b/pkgs/development/python-modules/jupyterlab/default.nix index d4c5d57c6518..0ea72b1cac0c 100644 --- a/pkgs/development/python-modules/jupyterlab/default.nix +++ b/pkgs/development/python-modules/jupyterlab/default.nix @@ -89,10 +89,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyterlab" ]; - meta = with lib; { + meta = { changelog = "https://github.com/jupyterlab/jupyterlab/blob/${src.tag}/CHANGELOG.md"; description = "Jupyter lab environment notebook server extension"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://jupyter.org/"; teams = [ lib.teams.jupyter ]; mainProgram = "jupyter-lab"; diff --git a/pkgs/development/python-modules/justbackoff/default.nix b/pkgs/development/python-modules/justbackoff/default.nix index b41a856afb02..795e17c79e61 100644 --- a/pkgs/development/python-modules/justbackoff/default.nix +++ b/pkgs/development/python-modules/justbackoff/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "justbackoff" ]; - meta = with lib; { + meta = { description = "Simple backoff algorithm in Python"; homepage = "https://github.com/alexferl/justbackoff"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/justbases/default.nix b/pkgs/development/python-modules/justbases/default.nix index 45a7ae51ec8a..3a863a5de1e7 100644 --- a/pkgs/development/python-modules/justbases/default.nix +++ b/pkgs/development/python-modules/justbases/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { hypothesis ]; - meta = with lib; { + meta = { description = "Conversion of ints and rationals to any base"; homepage = "https://github.com/mulkieran/justbases"; changelog = "https://github.com/mulkieran/justbases/blob/v${version}/CHANGES.txt"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/justbytes/default.nix b/pkgs/development/python-modules/justbytes/default.nix index 42b23692f5aa..a62120d180ea 100644 --- a/pkgs/development/python-modules/justbytes/default.nix +++ b/pkgs/development/python-modules/justbytes/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { hypothesis ]; - meta = with lib; { + meta = { description = "Computing with and displaying bytes"; homepage = "https://github.com/mulkieran/justbytes"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/justext/default.nix b/pkgs/development/python-modules/justext/default.nix index 3b3d9abbe6a1..20bd1d5cac74 100644 --- a/pkgs/development/python-modules/justext/default.nix +++ b/pkgs/development/python-modules/justext/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "justext" ]; - meta = with lib; { + meta = { description = "Heuristic based boilerplate removal tool"; homepage = "https://github.com/miso-belica/jusText"; changelog = "https://github.com/miso-belica/jusText/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ jokatzke ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jokatzke ]; }; } diff --git a/pkgs/development/python-modules/justnimbus/default.nix b/pkgs/development/python-modules/justnimbus/default.nix index 5a05cc259ee1..f8775be9ef8c 100644 --- a/pkgs/development/python-modules/justnimbus/default.nix +++ b/pkgs/development/python-modules/justnimbus/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "justnimbus" ]; - meta = with lib; { + meta = { description = "Library for the JustNimbus API"; homepage = "https://github.com/kvanzuijlen/justnimbus"; changelog = "https://github.com/kvanzuijlen/justnimbus/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/jwcrypto/default.nix b/pkgs/development/python-modules/jwcrypto/default.nix index 80e4159a03b7..f38b6932590b 100644 --- a/pkgs/development/python-modules/jwcrypto/default.nix +++ b/pkgs/development/python-modules/jwcrypto/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jwcrypto" ]; - meta = with lib; { + meta = { description = "Implementation of JOSE Web standards"; homepage = "https://github.com/latchset/jwcrypto"; changelog = "https://github.com/latchset/jwcrypto/releases/tag/v${version}"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/jxmlease/default.nix b/pkgs/development/python-modules/jxmlease/default.nix index 3364b86686e7..8f7cf07d496d 100644 --- a/pkgs/development/python-modules/jxmlease/default.nix +++ b/pkgs/development/python-modules/jxmlease/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { unittestFlagsArray = [ "-v" ]; - meta = with lib; { + meta = { description = "Converts between XML and intelligent Python data structures"; homepage = "https://github.com/Juniper/jxmlease"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/k-diffusion/default.nix b/pkgs/development/python-modules/k-diffusion/default.nix index 8fa3660c0365..540295f07bc1 100644 --- a/pkgs/development/python-modules/k-diffusion/default.nix +++ b/pkgs/development/python-modules/k-diffusion/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Karras et al. (2022) diffusion models for PyTorch"; homepage = "https://github.com/crowsonkb/k-diffusion"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/k5test/default.nix b/pkgs/development/python-modules/k5test/default.nix index f1bfd4097c78..689622f2db60 100644 --- a/pkgs/development/python-modules/k5test/default.nix +++ b/pkgs/development/python-modules/k5test/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "k5test" ]; - meta = with lib; { + meta = { description = "Library for setting up self-contained Kerberos 5 environment"; homepage = "https://github.com/pythongssapi/k5test"; changelog = "https://github.com/pythongssapi/k5test/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kaa-base/default.nix b/pkgs/development/python-modules/kaa-base/default.nix index ac4b1cf52f73..8796adcc56c6 100644 --- a/pkgs/development/python-modules/kaa-base/default.nix +++ b/pkgs/development/python-modules/kaa-base/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Generic application framework, providing the foundation for other modules"; homepage = "https://github.com/freevo/kaa-base"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kaa-metadata/default.nix b/pkgs/development/python-modules/kaa-metadata/default.nix index bb8fe831c2b9..5d7391452860 100644 --- a/pkgs/development/python-modules/kaa-metadata/default.nix +++ b/pkgs/development/python-modules/kaa-metadata/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Python library for parsing media metadata, which can extract metadata (e.g., such as id3 tags) from a wide range of media files"; homepage = "https://github.com/freevo/kaa-metadata"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kaggle/default.nix b/pkgs/development/python-modules/kaggle/default.nix index d2276e0cf35e..c4542ed87743 100644 --- a/pkgs/development/python-modules/kaggle/default.nix +++ b/pkgs/development/python-modules/kaggle/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "kaggle" ]; - meta = with lib; { + meta = { description = "Official API for https://www.kaggle.com, accessible using a command line tool implemented in Python 3"; mainProgram = "kaggle"; homepage = "https://github.com/Kaggle/kaggle-api"; - license = licenses.asl20; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/kaitaistruct/default.nix b/pkgs/development/python-modules/kaitaistruct/default.nix index 8e677ef815fc..5723570c03c0 100644 --- a/pkgs/development/python-modules/kaitaistruct/default.nix +++ b/pkgs/development/python-modules/kaitaistruct/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { "kaitai.compress" ]; - meta = with lib; { + meta = { description = "Kaitai Struct: runtime library for Python"; homepage = "https://github.com/kaitai-io/kaitai_struct_python_runtime"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kajiki/default.nix b/pkgs/development/python-modules/kajiki/default.nix index c239604f6b90..56729f3d34d0 100644 --- a/pkgs/development/python-modules/kajiki/default.nix +++ b/pkgs/development/python-modules/kajiki/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "kajiki" ]; - meta = with lib; { + meta = { description = "Module provides fast well-formed XML templates"; mainProgram = "kajiki"; homepage = "https://github.com/nandoflorestan/kajiki"; changelog = "https://github.com/jackrosenthal/kajiki/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/kaldi-active-grammar/default.nix b/pkgs/development/python-modules/kaldi-active-grammar/default.nix index 154809e96f76..e9edd1c17252 100644 --- a/pkgs/development/python-modules/kaldi-active-grammar/default.nix +++ b/pkgs/development/python-modules/kaldi-active-grammar/default.nix @@ -71,12 +71,12 @@ buildPythonPackage rec { doCheck = false; # no tests exist - meta = with lib; { + meta = { description = "Python Kaldi speech recognition"; homepage = "https://github.com/daanzu/kaldi-active-grammar"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; maintainers = [ ]; # Other platforms are supported upstream. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/kaldi-active-grammar/fork.nix b/pkgs/development/python-modules/kaldi-active-grammar/fork.nix index 00d2e2802f09..a12d8c2923e3 100644 --- a/pkgs/development/python-modules/kaldi-active-grammar/fork.nix +++ b/pkgs/development/python-modules/kaldi-active-grammar/fork.nix @@ -102,11 +102,11 @@ stdenv.mkDerivation rec { $out/lib/* ''; - meta = with lib; { + meta = { description = "Speech Recognition Toolkit"; homepage = "https://kaldi-asr.org"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/kanidm/default.nix b/pkgs/development/python-modules/kanidm/default.nix index fe62e6cff1a1..39675905e0d1 100644 --- a/pkgs/development/python-modules/kanidm/default.nix +++ b/pkgs/development/python-modules/kanidm/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "kanidm" ]; - meta = with lib; { + meta = { description = "Kanidm client library"; homepage = "https://github.com/kanidm/kanidm/tree/master/pykanidm"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ arianvp hexa ]; diff --git a/pkgs/development/python-modules/kaptan/default.nix b/pkgs/development/python-modules/kaptan/default.nix index c27221611b86..7d70d70f4a70 100644 --- a/pkgs/development/python-modules/kaptan/default.nix +++ b/pkgs/development/python-modules/kaptan/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Configuration manager for python applications"; mainProgram = "kaptan"; homepage = "https://kaptan.readthedocs.io/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/karton-asciimagic/default.nix b/pkgs/development/python-modules/karton-asciimagic/default.nix index cfba1810c0bf..6ede2e77a9d0 100644 --- a/pkgs/development/python-modules/karton-asciimagic/default.nix +++ b/pkgs/development/python-modules/karton-asciimagic/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "karton.asciimagic" ]; - meta = with lib; { + meta = { description = "Decoders for ascii-encoded executables for the Karton framework"; mainProgram = "karton-asciimagic"; homepage = "https://github.com/CERT-Polska/karton-asciimagic"; changelog = "https://github.com/CERT-Polska/karton-asciimagic/releases/tag/v${version}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/karton-autoit-ripper/default.nix b/pkgs/development/python-modules/karton-autoit-ripper/default.nix index e56415fe7e78..fac1f43cdd0c 100644 --- a/pkgs/development/python-modules/karton-autoit-ripper/default.nix +++ b/pkgs/development/python-modules/karton-autoit-ripper/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "karton.autoit_ripper" ]; - meta = with lib; { + meta = { description = "AutoIt script ripper for Karton framework"; mainProgram = "karton-autoit-ripper"; homepage = "https://github.com/CERT-Polska/karton-autoit-ripper"; changelog = "https://github.com/CERT-Polska/karton-autoit-ripper/releases/tag/v${version}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/karton-classifier/default.nix b/pkgs/development/python-modules/karton-classifier/default.nix index c37533c8561d..156e18cc8187 100644 --- a/pkgs/development/python-modules/karton-classifier/default.nix +++ b/pkgs/development/python-modules/karton-classifier/default.nix @@ -51,12 +51,12 @@ buildPythonPackage rec { "test_process_runnable_win32_lnk" ]; - meta = with lib; { + meta = { description = "File type classifier for the Karton framework"; homepage = "https://github.com/CERT-Polska/karton-classifier"; changelog = "https://github.com/CERT-Polska/karton-classifier/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "karton-classifier"; }; } diff --git a/pkgs/development/python-modules/karton-config-extractor/default.nix b/pkgs/development/python-modules/karton-config-extractor/default.nix index 369eb4659fa4..76c6006e1fe4 100644 --- a/pkgs/development/python-modules/karton-config-extractor/default.nix +++ b/pkgs/development/python-modules/karton-config-extractor/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "karton.config_extractor" ]; - meta = with lib; { + meta = { description = "Static configuration extractor for the Karton framework"; mainProgram = "karton-config-extractor"; homepage = "https://github.com/CERT-Polska/karton-config-extractor"; changelog = "https://github.com/CERT-Polska/karton-config-extractor/releases/tag/${src.tag}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/karton-core/default.nix b/pkgs/development/python-modules/karton-core/default.nix index 105b7f63ba24..ded83d1e887b 100644 --- a/pkgs/development/python-modules/karton-core/default.nix +++ b/pkgs/development/python-modules/karton-core/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "karton.core" ]; - meta = with lib; { + meta = { description = "Distributed malware processing framework"; homepage = "https://karton-core.readthedocs.io/"; changelog = "https://github.com/CERT-Polska/karton/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ chivay fab ]; diff --git a/pkgs/development/python-modules/karton-dashboard/default.nix b/pkgs/development/python-modules/karton-dashboard/default.nix index d2b74a54e626..5197ab9dcfdc 100644 --- a/pkgs/development/python-modules/karton-dashboard/default.nix +++ b/pkgs/development/python-modules/karton-dashboard/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { # Project has no tests. pythonImportsCheck requires MinIO configuration doCheck = false; - meta = with lib; { + meta = { description = "Web application that allows for Karton task and queue introspection"; mainProgram = "karton-dashboard"; homepage = "https://github.com/CERT-Polska/karton-dashboard"; changelog = "https://github.com/CERT-Polska/karton-dashboard/releases/tag/v${version}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/karton-mwdb-reporter/default.nix b/pkgs/development/python-modules/karton-mwdb-reporter/default.nix index 9c63036226ac..57bfc832fba2 100644 --- a/pkgs/development/python-modules/karton-mwdb-reporter/default.nix +++ b/pkgs/development/python-modules/karton-mwdb-reporter/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "karton.mwdb_reporter" ]; - meta = with lib; { + meta = { description = "Karton service that uploads analyzed artifacts and metadata to MWDB Core"; mainProgram = "karton-mwdb-reporter"; homepage = "https://github.com/CERT-Polska/karton-mwdb-reporter"; changelog = "https://github.com/CERT-Polska/karton-mwdb-reporter/releases/tag/v${version}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/karton-yaramatcher/default.nix b/pkgs/development/python-modules/karton-yaramatcher/default.nix index 523dba33e895..f5a14901df04 100644 --- a/pkgs/development/python-modules/karton-yaramatcher/default.nix +++ b/pkgs/development/python-modules/karton-yaramatcher/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "karton.yaramatcher" ]; - meta = with lib; { + meta = { description = "File and analysis artifacts yara matcher for the Karton framework"; mainProgram = "karton-yaramatcher"; homepage = "https://github.com/CERT-Polska/karton-yaramatcher"; changelog = "https://github.com/CERT-Polska/karton-yaramatcher/releases/tag/v${version}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/kasa-crypt/default.nix b/pkgs/development/python-modules/kasa-crypt/default.nix index e48ed869bc95..1570db48c76b 100644 --- a/pkgs/development/python-modules/kasa-crypt/default.nix +++ b/pkgs/development/python-modules/kasa-crypt/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "kasa_crypt" ]; - meta = with lib; { + meta = { description = "Fast kasa crypt"; homepage = "https://github.com/bdraco/kasa-crypt"; changelog = "https://github.com/bdraco/kasa-crypt/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/kazoo/default.nix b/pkgs/development/python-modules/kazoo/default.nix index 538e8e525601..06ddce72862c 100644 --- a/pkgs/development/python-modules/kazoo/default.nix +++ b/pkgs/development/python-modules/kazoo/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # tests take a long time to run and leave threads hanging doCheck = false; - meta = with lib; { + meta = { homepage = "https://kazoo.readthedocs.org"; description = "Higher Level Zookeeper Client"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kconfiglib/default.nix b/pkgs/development/python-modules/kconfiglib/default.nix index e94ef18a9896..2ed4d2554e6c 100644 --- a/pkgs/development/python-modules/kconfiglib/default.nix +++ b/pkgs/development/python-modules/kconfiglib/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # doesnt work out of the box but might be possible doCheck = false; - meta = with lib; { + meta = { description = "Flexible Python 2/3 Kconfig implementation and library"; homepage = "https://github.com/ulfalizer/Kconfiglib"; - license = licenses.isc; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/keba-kecontact/default.nix b/pkgs/development/python-modules/keba-kecontact/default.nix index 261f46f59756..94e1c74fdf2d 100644 --- a/pkgs/development/python-modules/keba-kecontact/default.nix +++ b/pkgs/development/python-modules/keba-kecontact/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "keba_kecontact" ]; - meta = with lib; { + meta = { description = "Python library for controlling KEBA charging stations"; homepage = "https://github.com/dannerph/keba-kecontact"; changelog = "https://github.com/dannerph/keba-kecontact/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/keepalive/default.nix b/pkgs/development/python-modules/keepalive/default.nix index 1228dc78f28e..8477c592b633 100644 --- a/pkgs/development/python-modules/keepalive/default.nix +++ b/pkgs/development/python-modules/keepalive/default.nix @@ -28,9 +28,9 @@ buildPythonPackage rec { # No tests included doCheck = false; - meta = with lib; { + meta = { description = "HTTP handler for `urllib` that supports HTTP 1.1 and keepalive"; homepage = "https://github.com/wikier/keepalive"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/development/python-modules/keepkey-agent/default.nix b/pkgs/development/python-modules/keepkey-agent/default.nix index df3f5444772d..96da71f35b7d 100644 --- a/pkgs/development/python-modules/keepkey-agent/default.nix +++ b/pkgs/development/python-modules/keepkey-agent/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "keepkey_agent" ]; - meta = with lib; { + meta = { description = "Using KeepKey as hardware-based SSH/PGP agent"; homepage = "https://github.com/romanz/trezor-agent"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ hkjn np mmahut diff --git a/pkgs/development/python-modules/keepkey/default.nix b/pkgs/development/python-modules/keepkey/default.nix index f0633a06b838..9b63a34aa008 100644 --- a/pkgs/development/python-modules/keepkey/default.nix +++ b/pkgs/development/python-modules/keepkey/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # Remove impossible dependency constraint postPatch = "sed -i -e 's|hidapi==|hidapi>=|' setup.py"; - meta = with lib; { + meta = { description = "KeepKey Python client"; mainProgram = "keepkeyctl"; homepage = "https://github.com/keepkey/python-keepkey"; - license = licenses.gpl3; - maintainers = with maintainers; [ np ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ np ]; }; } diff --git a/pkgs/development/python-modules/kegtron-ble/default.nix b/pkgs/development/python-modules/kegtron-ble/default.nix index 0e9984381019..03de08a307e6 100644 --- a/pkgs/development/python-modules/kegtron-ble/default.nix +++ b/pkgs/development/python-modules/kegtron-ble/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "kegtron_ble" ]; - meta = with lib; { + meta = { description = "Library for Kegtron BLE devices"; homepage = "https://github.com/Bluetooth-Devices/kegtron-ble"; changelog = "https://github.com/Bluetooth-Devices/kegtron-ble/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/kerberos/default.nix b/pkgs/development/python-modules/kerberos/default.nix index 8f6f8c7682e0..2bfa064a16c4 100644 --- a/pkgs/development/python-modules/kerberos/default.nix +++ b/pkgs/development/python-modules/kerberos/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Kerberos high-level interface"; homepage = "https://pypi.org/project/kerberos/"; - license = licenses.asl20; + license = lib.licenses.asl20; knownVulnerabilities = [ "CVE-2015-3206" ]; }; } diff --git a/pkgs/development/python-modules/keyboard/default.nix b/pkgs/development/python-modules/keyboard/default.nix index 169d3c068318..3fa11c3a7646 100644 --- a/pkgs/development/python-modules/keyboard/default.nix +++ b/pkgs/development/python-modules/keyboard/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { # AttributeError: module 'ctypes' has no attribute 'WinDLL' doCheck = false; - meta = with lib; { + meta = { description = "Hook and simulate keyboard events on Windows and Linux"; homepage = "https://github.com/boppreh/keyboard"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/keyring/default.nix b/pkgs/development/python-modules/keyring/default.nix index 0583cbb5160f..0aa328f53091 100644 --- a/pkgs/development/python-modules/keyring/default.nix +++ b/pkgs/development/python-modules/keyring/default.nix @@ -70,16 +70,16 @@ buildPythonPackage rec { # These tests fail when sandboxing is enabled because they are unable to get a password from keychain. ++ lib.optional stdenv.hostPlatform.isDarwin "tests/test_multiprocess.py"; - meta = with lib; { + meta = { description = "Store and access your passwords safely"; homepage = "https://github.com/jaraco/keyring"; changelog = "https://github.com/jaraco/keyring/blob/${src.tag}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "keyring"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 dotlambda ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/keyrings-alt/default.nix b/pkgs/development/python-modules/keyrings-alt/default.nix index d4bae3184163..550db87d92cf 100644 --- a/pkgs/development/python-modules/keyrings-alt/default.nix +++ b/pkgs/development/python-modules/keyrings-alt/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "keyrings.alt" ]; - meta = with lib; { + meta = { description = "Alternate keyring implementations"; homepage = "https://github.com/jaraco/keyrings.alt"; changelog = "https://github.com/jaraco/keyrings.alt/blob/v${version}/NEWS.rst"; - license = licenses.mit; - maintainers = with maintainers; [ nyarly ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyarly ]; }; } diff --git a/pkgs/development/python-modules/keyrings-cryptfile/default.nix b/pkgs/development/python-modules/keyrings-cryptfile/default.nix index a6631f6d963f..8789939f06c2 100644 --- a/pkgs/development/python-modules/keyrings-cryptfile/default.nix +++ b/pkgs/development/python-modules/keyrings-cryptfile/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { "TestEncryptedFileKeyring" ]; - meta = with lib; { + meta = { description = "Encrypted file keyring backend"; mainProgram = "cryptfile-convert"; homepage = "https://github.com/frispete/keyrings.cryptfile"; changelog = "https://github.com/frispete/keyrings.cryptfile/blob/v${version}/CHANGES.md"; - license = licenses.mit; - maintainers = [ maintainers.bbjubjub ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.bbjubjub ]; }; } diff --git a/pkgs/development/python-modules/keystone-engine/default.nix b/pkgs/development/python-modules/keystone-engine/default.nix index 4e526346dced..b2b730e2b881 100644 --- a/pkgs/development/python-modules/keystone-engine/default.nix +++ b/pkgs/development/python-modules/keystone-engine/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "keystone" ]; - meta = with lib; { + meta = { description = "Lightweight multi-platform, multi-architecture assembler framework"; homepage = "https://www.keystone-engine.org"; - maintainers = with maintainers; [ dump_stack ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ dump_stack ]; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/development/python-modules/keystoneauth1/default.nix b/pkgs/development/python-modules/keystoneauth1/default.nix index bf3ee99c9cbc..4a62c9591990 100644 --- a/pkgs/development/python-modules/keystoneauth1/default.nix +++ b/pkgs/development/python-modules/keystoneauth1/default.nix @@ -80,10 +80,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "keystoneauth1" ]; - meta = with lib; { + meta = { description = "Authentication Library for OpenStack Identity"; homepage = "https://github.com/openstack/keystoneauth"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/khanaa/default.nix b/pkgs/development/python-modules/khanaa/default.nix index 81f76091c593..b4f31668d079 100644 --- a/pkgs/development/python-modules/khanaa/default.nix +++ b/pkgs/development/python-modules/khanaa/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "khanaa" ]; - meta = with lib; { + meta = { description = "Tool to make spelling Thai more convenient"; homepage = "https://github.com/cakimpei/khanaa"; changelog = "https://github.com/cakimpei/khanaa/blob/main/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/kiss-headers/default.nix b/pkgs/development/python-modules/kiss-headers/default.nix index 8e858c60945a..c8a8a6aaec8d 100644 --- a/pkgs/development/python-modules/kiss-headers/default.nix +++ b/pkgs/development/python-modules/kiss-headers/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "kiss_headers" ]; - meta = with lib; { + meta = { description = "Python package for HTTP/1.1 style headers"; homepage = "https://github.com/Ousret/kiss-headers"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kitchen/default.nix b/pkgs/development/python-modules/kitchen/default.nix index 931017a198ff..7dae3cf35b24 100644 --- a/pkgs/development/python-modules/kitchen/default.nix +++ b/pkgs/development/python-modules/kitchen/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "kitchen" ]; - meta = with lib; { + meta = { description = "Kitchen contains a cornucopia of useful code"; homepage = "https://github.com/fedora-infra/kitchen"; changelog = "https://github.com/fedora-infra/kitchen/blob/${version}/NEWS.rst"; - license = licenses.lgpl2Only; + license = lib.licenses.lgpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kivy-garden/default.nix b/pkgs/development/python-modules/kivy-garden/default.nix index 34792e64d144..da34c8dfb95f 100644 --- a/pkgs/development/python-modules/kivy-garden/default.nix +++ b/pkgs/development/python-modules/kivy-garden/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # There are no tests doCheck = false; - meta = with lib; { + meta = { description = "Kivy garden installation script, split into its own package for convenient use in buildozer"; homepage = "https://github.com/kivy-garden/garden"; - license = licenses.mit; - maintainers = with maintainers; [ risson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ risson ]; }; } diff --git a/pkgs/development/python-modules/kiwiki-client/default.nix b/pkgs/development/python-modules/kiwiki-client/default.nix index dbc1d53d90ef..1177679c7d96 100644 --- a/pkgs/development/python-modules/kiwiki-client/default.nix +++ b/pkgs/development/python-modules/kiwiki-client/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "kiwiki" ]; - meta = with lib; { + meta = { description = "Module to interact with the KIWI.KI API"; homepage = "https://github.com/c7h/kiwiki_client"; changelog = "https://github.com/c7h/kiwiki_client/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/kiwisolver/default.nix b/pkgs/development/python-modules/kiwisolver/default.nix index 5cdc5b463bf2..29e3ae580398 100644 --- a/pkgs/development/python-modules/kiwisolver/default.nix +++ b/pkgs/development/python-modules/kiwisolver/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "kiwisolver" ]; - meta = with lib; { + meta = { description = "Implementation of the Cassowary constraint solver"; homepage = "https://github.com/nucleic/kiwi"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/klaus/default.nix b/pkgs/development/python-modules/klaus/default.nix index 4d0ffdefcde3..d1c39e11c790 100644 --- a/pkgs/development/python-modules/klaus/default.nix +++ b/pkgs/development/python-modules/klaus/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { # Needs to set up some git repos doCheck = false; - meta = with lib; { + meta = { description = "First Git web viewer that Just Works"; mainProgram = "klaus"; homepage = "https://github.com/jonashaag/klaus"; - license = licenses.isc; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/development/python-modules/klayout/default.nix b/pkgs/development/python-modules/klayout/default.nix index e76f58dd91c0..08a06b34e9b5 100644 --- a/pkgs/development/python-modules/klayout/default.nix +++ b/pkgs/development/python-modules/klayout/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "klayout" ]; - meta = with lib; { + meta = { description = "KLayout’s Python API"; homepage = "https://github.com/KLayout/klayout"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fbeffa ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fbeffa ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/development/python-modules/klein/default.nix b/pkgs/development/python-modules/klein/default.nix index f51145fe718c..b2da74535b99 100644 --- a/pkgs/development/python-modules/klein/default.nix +++ b/pkgs/development/python-modules/klein/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "klein" ]; - meta = with lib; { + meta = { changelog = "https://github.com/twisted/klein/releases/tag/${version}"; description = "Klein Web Micro-Framework"; homepage = "https://github.com/twisted/klein"; - license = licenses.mit; - maintainers = with maintainers; [ exarkun ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ exarkun ]; }; } diff --git a/pkgs/development/python-modules/kml2geojson/default.nix b/pkgs/development/python-modules/kml2geojson/default.nix index 7674d73770f0..fbea0b513f12 100644 --- a/pkgs/development/python-modules/kml2geojson/default.nix +++ b/pkgs/development/python-modules/kml2geojson/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "kml2geojson" ]; - meta = with lib; { + meta = { description = "Library to convert KML to GeoJSON"; mainProgram = "k2g"; homepage = "https://github.com/mrcagney/kml2geojson"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/knack/default.nix b/pkgs/development/python-modules/knack/default.nix index 60f4229d2243..9d24191f3df5 100644 --- a/pkgs/development/python-modules/knack/default.nix +++ b/pkgs/development/python-modules/knack/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "knack" ]; - meta = with lib; { + meta = { homepage = "https://github.com/microsoft/knack"; description = "Command-Line Interface framework"; changelog = "https://github.com/microsoft/knack/blob/v${version}/HISTORY.rst"; - platforms = platforms.all; - license = licenses.mit; + platforms = lib.platforms.all; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kneed/default.nix b/pkgs/development/python-modules/kneed/default.nix index f94f9fe64cc7..a065a089b175 100644 --- a/pkgs/development/python-modules/kneed/default.nix +++ b/pkgs/development/python-modules/kneed/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "tests/test_no_matplotlib.py" ]; - meta = with lib; { + meta = { description = "Knee point detection in Python"; homepage = "https://github.com/arvkevi/kneed"; - license = licenses.bsd3; - maintainers = with maintainers; [ tm-drtina ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ tm-drtina ]; }; } diff --git a/pkgs/development/python-modules/knocki/default.nix b/pkgs/development/python-modules/knocki/default.nix index 44ddf26a0b19..4ed68700afc5 100644 --- a/pkgs/development/python-modules/knocki/default.nix +++ b/pkgs/development/python-modules/knocki/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "knocki" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for Knocki vibration / door sensors"; homepage = "https://github.com/swan-solutions/knocki-homeassistant"; changelog = "https://github.com/swan-solutions/knocki-homeassistant/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ mindstorms6 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mindstorms6 ]; }; } diff --git a/pkgs/development/python-modules/knx-frontend/default.nix b/pkgs/development/python-modules/knx-frontend/default.nix index 4f02d0a710d1..499006aca930 100644 --- a/pkgs/development/python-modules/knx-frontend/default.nix +++ b/pkgs/development/python-modules/knx-frontend/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/XKNX/knx-frontend/releases/tag/${version}"; description = "Home Assistant Panel for managing the KNX integration"; homepage = "https://github.com/XKNX/knx-frontend"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/kombu/default.nix b/pkgs/development/python-modules/kombu/default.nix index 9c014b9683c3..a343866d7397 100644 --- a/pkgs/development/python-modules/kombu/default.nix +++ b/pkgs/development/python-modules/kombu/default.nix @@ -95,11 +95,11 @@ buildPythonPackage rec { "test_global_keyprefix_transaction" ]; - meta = with lib; { + meta = { description = "Messaging library for Python"; homepage = "https://github.com/celery/kombu"; changelog = "https://github.com/celery/kombu/blob/v${version}/Changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/konnected/default.nix b/pkgs/development/python-modules/konnected/default.nix index e7d7055dfa7d..c2e11edc4e83 100644 --- a/pkgs/development/python-modules/konnected/default.nix +++ b/pkgs/development/python-modules/konnected/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "konnected" ]; - meta = with lib; { + meta = { description = "Async Python library for interacting with Konnected home automation controllers"; homepage = "https://github.com/konnected-io/konnected-py"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/korean-lunar-calendar/default.nix b/pkgs/development/python-modules/korean-lunar-calendar/default.nix index 98c04b0e6665..c748de317a41 100644 --- a/pkgs/development/python-modules/korean-lunar-calendar/default.nix +++ b/pkgs/development/python-modules/korean-lunar-calendar/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no real tests pythonImportsCheck = [ "korean_lunar_calendar" ]; - meta = with lib; { + meta = { description = "Library to convert Korean lunar-calendar to Gregorian calendar"; homepage = "https://github.com/usingsky/korean_lunar_calendar_py"; - license = licenses.mit; - maintainers = [ maintainers.ris ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ris ]; }; } diff --git a/pkgs/development/python-modules/kotsu/default.nix b/pkgs/development/python-modules/kotsu/default.nix index 30063a80fd65..9d6e083a2cdf 100644 --- a/pkgs/development/python-modules/kotsu/default.nix +++ b/pkgs/development/python-modules/kotsu/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "kotsu" ]; - meta = with lib; { + meta = { description = "Lightweight framework for structured and repeatable model validation"; homepage = "https://github.com/datavaluepeople/kotsu"; changelog = "https://github.com/datavaluepeople/kotsu/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/krakenex/default.nix b/pkgs/development/python-modules/krakenex/default.nix index fb756b65ae64..5419d31ca70d 100644 --- a/pkgs/development/python-modules/krakenex/default.nix +++ b/pkgs/development/python-modules/krakenex/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "krakenex" ]; - meta = with lib; { + meta = { changelog = "https://github.com/veox/python3-krakenex/blob/${src.rev}/CHANGELOG.rst"; description = "Kraken.com cryptocurrency exchange API"; homepage = "https://github.com/veox/python3-krakenex"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/krb5/default.nix b/pkgs/development/python-modules/krb5/default.nix index c3eaf8f81b20..4bc6300e38ff 100644 --- a/pkgs/development/python-modules/krb5/default.nix +++ b/pkgs/development/python-modules/krb5/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "krb5" ]; - meta = with lib; { + meta = { changelog = "https://github.com/jborean93/pykrb5/blob/v${version}/CHANGELOG.md"; description = "Kerberos API bindings for Python"; homepage = "https://github.com/jborean93/pykrb5"; - license = licenses.mit; - teams = [ teams.deshaw ]; + license = lib.licenses.mit; + teams = [ lib.teams.deshaw ]; broken = stdenv.hostPlatform.isDarwin; # TODO: figure out how to build on Darwin }; } diff --git a/pkgs/development/python-modules/krfzf-py/default.nix b/pkgs/development/python-modules/krfzf-py/default.nix index d1007876591f..fd52cdc1d704 100644 --- a/pkgs/development/python-modules/krfzf-py/default.nix +++ b/pkgs/development/python-modules/krfzf-py/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fzf" ]; - meta = with lib; { + meta = { description = "Pythonic Fzf Wrapper"; downloadPage = "https://github.com/justfoolingaround/fzf.py"; homepage = "https://pypi.org/project/krfzf-py/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/kubernetes/default.nix b/pkgs/development/python-modules/kubernetes/default.nix index cfb53b58ff88..e4a3f46082d7 100644 --- a/pkgs/development/python-modules/kubernetes/default.nix +++ b/pkgs/development/python-modules/kubernetes/default.nix @@ -68,10 +68,10 @@ buildPythonPackage rec { "test_rest_proxycare" ]; - meta = with lib; { + meta = { description = "Kubernetes Python client"; homepage = "https://github.com/kubernetes-client/python"; changelog = "https://github.com/kubernetes-client/python/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/kurbopy/default.nix b/pkgs/development/python-modules/kurbopy/default.nix index 86774c95758e..551d4edae1cc 100644 --- a/pkgs/development/python-modules/kurbopy/default.nix +++ b/pkgs/development/python-modules/kurbopy/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { rm -r kurbopy ''; - meta = with lib; { + meta = { description = "Python wrapper around the Rust kurbo library for 2D curve manipulation"; homepage = "https://github.com/simoncozens/kurbopy"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/l18n/default.nix b/pkgs/development/python-modules/l18n/default.nix index 76491a4699ca..e91f3e033177 100644 --- a/pkgs/development/python-modules/l18n/default.nix +++ b/pkgs/development/python-modules/l18n/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "l18n" ]; - meta = with lib; { + meta = { description = "Locale internationalization package"; homepage = "https://github.com/tkhyn/l18n"; changelog = "https://github.com/tkhyn/l18n/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/labgrid/default.nix b/pkgs/development/python-modules/labgrid/default.nix index a73a98615485..52cdf89f4e0d 100644 --- a/pkgs/development/python-modules/labgrid/default.nix +++ b/pkgs/development/python-modules/labgrid/default.nix @@ -97,11 +97,11 @@ buildPythonPackage rec { pytestFlags = [ "--benchmark-disable" ]; - meta = with lib; { + meta = { description = "Embedded control & testing library"; homepage = "https://github.com/labgrid-project/labgrid"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ emantor ]; - platforms = with platforms; linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ emantor ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/development/python-modules/labmath/default.nix b/pkgs/development/python-modules/labmath/default.nix index b17fe6ed0698..f3b4d7b73b4e 100644 --- a/pkgs/development/python-modules/labmath/default.nix +++ b/pkgs/development/python-modules/labmath/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "labmath" ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/labmath"; description = "Module for basic math in the general vicinity of computational number theory"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/development/python-modules/laces/default.nix b/pkgs/development/python-modules/laces/default.nix index 3c802209cd34..699715f5912f 100644 --- a/pkgs/development/python-modules/laces/default.nix +++ b/pkgs/development/python-modules/laces/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "laces" ]; - meta = with lib; { + meta = { description = "Django components that know how to render themselves"; homepage = "https://github.com/tbrlpld/laces"; changelog = "https://github.com/tbrlpld/laces/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/lacuscore/default.nix b/pkgs/development/python-modules/lacuscore/default.nix index 14924e955cb1..fc6087030270 100644 --- a/pkgs/development/python-modules/lacuscore/default.nix +++ b/pkgs/development/python-modules/lacuscore/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lacuscore" ]; - meta = with lib; { + meta = { description = "Modulable part of Lacus"; homepage = "https://github.com/ail-project/LacusCore"; changelog = "https://github.com/ail-project/LacusCore/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lakeside/default.nix b/pkgs/development/python-modules/lakeside/default.nix index 4d889e90d25b..b05025b91c93 100644 --- a/pkgs/development/python-modules/lakeside/default.nix +++ b/pkgs/development/python-modules/lakeside/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lakeside" ]; - meta = with lib; { + meta = { description = "Library for controlling LED bulbs from Eufy"; homepage = "https://github.com/nkgilley/python-lakeside"; changelog = "https://github.com/nkgilley/python-lakeside/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/langcodes/default.nix b/pkgs/development/python-modules/langcodes/default.nix index 0bd1227a1b8b..aba5dfc00c6e 100644 --- a/pkgs/development/python-modules/langcodes/default.nix +++ b/pkgs/development/python-modules/langcodes/default.nix @@ -42,9 +42,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "langcodes" ]; - meta = with lib; { + meta = { description = "Python toolkit for working with and comparing the standardized codes for languages"; homepage = "https://github.com/georgkrause/langcodes"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/langdetect/default.nix b/pkgs/development/python-modules/langdetect/default.nix index 5db13ad9c4db..46e0e3fdd462 100644 --- a/pkgs/development/python-modules/langdetect/default.nix +++ b/pkgs/development/python-modules/langdetect/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "langdetect" ]; - meta = with lib; { + meta = { description = "Python port of Google's language-detection library"; homepage = "https://github.com/Mimino666/langdetect"; - license = licenses.asl20; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/langid/default.nix b/pkgs/development/python-modules/langid/default.nix index 8c6bd3c211a3..0430c1f55ae7 100644 --- a/pkgs/development/python-modules/langid/default.nix +++ b/pkgs/development/python-modules/langid/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { doCheck = false; # Package has no tests pythonImportsCheck = [ "langid" ]; - meta = with lib; { + meta = { description = "Langid.py is a standalone Language Identification (LangID) tool"; mainProgram = "langid"; homepage = "https://pypi.org/project/langid/"; - license = licenses.bsd2; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/language-data/default.nix b/pkgs/development/python-modules/language-data/default.nix index 171e355ace08..34e653902018 100644 --- a/pkgs/development/python-modules/language-data/default.nix +++ b/pkgs/development/python-modules/language-data/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # No unittests doCheck = false; - meta = with lib; { + meta = { description = "Supplement module for langcodes"; homepage = "https://github.com/georgkrause/language_data"; changelog = "https://github.com/georgkrause/language_data/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/language-tags/default.nix b/pkgs/development/python-modules/language-tags/default.nix index 7bbd3f9a65ab..e25827f76dbc 100644 --- a/pkgs/development/python-modules/language-tags/default.nix +++ b/pkgs/development/python-modules/language-tags/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "language_tags" ]; - meta = with lib; { + meta = { description = "Dealing with IANA language tags in Python"; homepage = "https://language-tags.readthedocs.io/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/lanms-neo/default.nix b/pkgs/development/python-modules/lanms-neo/default.nix index d829be9a0b3e..077d0cbe9734 100644 --- a/pkgs/development/python-modules/lanms-neo/default.nix +++ b/pkgs/development/python-modules/lanms-neo/default.nix @@ -31,10 +31,10 @@ buildPythonPackage { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Standalone module for Locality-Aware NMS"; homepage = "https://github.com/gen-ko/lanms-neo"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/lark/default.nix b/pkgs/development/python-modules/lark/default.nix index 5c7f2ff3e549..95c3eeb8e9e9 100644 --- a/pkgs/development/python-modules/lark/default.nix +++ b/pkgs/development/python-modules/lark/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # Js2py is needed for tests but it's unmaintained and insecure doCheck = false; - meta = with lib; { + meta = { description = "Modern parsing library for Python, implementing Earley & LALR(1) and an easy interface"; homepage = "https://lark-parser.readthedocs.io/"; changelog = "https://github.com/lark-parser/lark/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/laspy/default.nix b/pkgs/development/python-modules/laspy/default.nix index 39057be18dcc..c9c1d6780fb6 100644 --- a/pkgs/development/python-modules/laspy/default.nix +++ b/pkgs/development/python-modules/laspy/default.nix @@ -40,13 +40,13 @@ buildPythonPackage rec { "lazrs" ]; - meta = with lib; { + meta = { description = "Interface for reading/modifying/creating .LAS LIDAR files"; mainProgram = "laspy"; homepage = "https://github.com/laspy/laspy"; changelog = "https://github.com/laspy/laspy/blob/${version}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ matthewcroughan ]; - teams = [ teams.geospatial ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ matthewcroughan ]; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/development/python-modules/laszip/default.nix b/pkgs/development/python-modules/laszip/default.nix index eb09169ae560..4ef919bc013f 100644 --- a/pkgs/development/python-modules/laszip/default.nix +++ b/pkgs/development/python-modules/laszip/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "laszip" ]; - meta = with lib; { + meta = { description = "Unofficial bindings between Python and LASzip made using pybind11"; homepage = "https://github.com/tmontaigu/laszip-python"; changelog = "https://github.com/tmontaigu/laszip-python/blob/${src.rev}/Changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/latexcodec/default.nix b/pkgs/development/python-modules/latexcodec/default.nix index addebc1f44f6..55ed9ed80a1f 100644 --- a/pkgs/development/python-modules/latexcodec/default.nix +++ b/pkgs/development/python-modules/latexcodec/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { homepage = "https://github.com/mcmtroffaes/latexcodec"; description = "Lexer and codec to work with LaTeX code in Python"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/latexify-py/default.nix b/pkgs/development/python-modules/latexify-py/default.nix index 68150bc9fb06..3ff612352940 100644 --- a/pkgs/development/python-modules/latexify-py/default.nix +++ b/pkgs/development/python-modules/latexify-py/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { cd src ''; - meta = with lib; { + meta = { description = "Generates LaTeX math description from Python functions"; homepage = "https://github.com/google/latexify_py"; changelog = "https://github.com/google/latexify_py/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/launchpadlib/default.nix b/pkgs/development/python-modules/launchpadlib/default.nix index 25b8f96c80d6..db6e0c9ab8e0 100644 --- a/pkgs/development/python-modules/launchpadlib/default.nix +++ b/pkgs/development/python-modules/launchpadlib/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "launchpadlib.credentials" ]; - meta = with lib; { + meta = { description = "Script Launchpad through its web services interfaces. Officially supported"; homepage = "https://help.launchpad.net/API/launchpadlib"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/laundrify-aio/default.nix b/pkgs/development/python-modules/laundrify-aio/default.nix index b5b8b5cdbc26..24ba4073797c 100644 --- a/pkgs/development/python-modules/laundrify-aio/default.nix +++ b/pkgs/development/python-modules/laundrify-aio/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "laundrify_aio" ]; - meta = with lib; { + meta = { description = "Module to communicate with the laundrify API"; homepage = "https://github.com/laundrify/laundrify-pypi"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/layoutparser/default.nix b/pkgs/development/python-modules/layoutparser/default.nix index cf4187decb6c..8339c38aee19 100644 --- a/pkgs/development/python-modules/layoutparser/default.nix +++ b/pkgs/development/python-modules/layoutparser/default.nix @@ -93,11 +93,11 @@ buildPythonPackage { optional-dependencies = optional-dependencies; - meta = with lib; { + meta = { description = "Unified toolkit for Deep Learning Based Document Image Analysis"; homepage = "https://github.com/Layout-Parser/layout-parser"; changelog = "https://github.com/Layout-Parser/layout-parser/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/lazy-imports/default.nix b/pkgs/development/python-modules/lazy-imports/default.nix index 7edb6f883228..a2b53b024bbb 100644 --- a/pkgs/development/python-modules/lazy-imports/default.nix +++ b/pkgs/development/python-modules/lazy-imports/default.nix @@ -27,11 +27,11 @@ buildPythonPackage { packaging ]; - meta = with lib; { + meta = { description = "Python tool to support lazy imports"; homepage = "https://github.com/telekom/lazy-imports"; changelog = "https://github.com/telekom/lazy-imports/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/lazy-loader/default.nix b/pkgs/development/python-modules/lazy-loader/default.nix index de49729634cb..13e560eee151 100644 --- a/pkgs/development/python-modules/lazy-loader/default.nix +++ b/pkgs/development/python-modules/lazy-loader/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lazy_loader" ]; - meta = with lib; { + meta = { description = "Populate library namespace without incurring immediate import costs"; homepage = "https://github.com/scientific-python/lazy_loader"; changelog = "https://github.com/scientific-python/lazy_loader/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/lazy-object-proxy/default.nix b/pkgs/development/python-modules/lazy-object-proxy/default.nix index a3d7834f7f50..6d8ac6476b48 100644 --- a/pkgs/development/python-modules/lazy-object-proxy/default.nix +++ b/pkgs/development/python-modules/lazy-object-proxy/default.nix @@ -25,9 +25,9 @@ buildPythonPackage rec { # Broken tests. Seem to be fixed upstream according to Travis. doCheck = false; - meta = with lib; { + meta = { description = "Fast and thorough lazy object proxy"; homepage = "https://github.com/ionelmc/python-lazy-object-proxy"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; }; } diff --git a/pkgs/development/python-modules/lc7001/default.nix b/pkgs/development/python-modules/lc7001/default.nix index 478fe1a2f825..944e0e529b6b 100644 --- a/pkgs/development/python-modules/lc7001/default.nix +++ b/pkgs/development/python-modules/lc7001/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lc7001" ]; - meta = with lib; { + meta = { description = "Python module for interacting with Legrand LC7001"; homepage = "https://github.com/rtyle/lc7001"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lcd-i2c/default.nix b/pkgs/development/python-modules/lcd-i2c/default.nix index 554b30b9bfd0..239c8f8d7f3e 100644 --- a/pkgs/development/python-modules/lcd-i2c/default.nix +++ b/pkgs/development/python-modules/lcd-i2c/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # Needs /dev/i2c-1 # pythonImportsCheck = [ "lcd_i2c" ]; - meta = with lib; { + meta = { description = "Library for interacting with an I2C LCD screen through Python"; homepage = "https://pypi.org/project/lcd-i2c/"; - license = licenses.mit; - maintainers = with maintainers; [ oliver-koss ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oliver-koss ]; mainProgram = "lcd-i2c"; }; } diff --git a/pkgs/development/python-modules/lcgit/default.nix b/pkgs/development/python-modules/lcgit/default.nix index bf0ca03a7ac8..208d5022a6a9 100644 --- a/pkgs/development/python-modules/lcgit/default.nix +++ b/pkgs/development/python-modules/lcgit/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lcgit" ]; - meta = with lib; { + meta = { description = "Pythonic Linear Congruential Generator iterator"; homepage = "https://github.com/cisagov/lcgit"; changelog = "https://github.com/cisagov/lcgit/releases/tag/${src.tag}"; - license = licenses.cc0; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ld2410-ble/default.nix b/pkgs/development/python-modules/ld2410-ble/default.nix index 7836c5fdffd0..9b69dcd5bea9 100644 --- a/pkgs/development/python-modules/ld2410-ble/default.nix +++ b/pkgs/development/python-modules/ld2410-ble/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ld2410_ble" ]; - meta = with lib; { + meta = { description = "Library for the LD2410B modules from HiLinks"; homepage = "https://github.com/930913/ld2410-ble"; changelog = "https://github.com/930913/ld2410-ble/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ldap3/default.nix b/pkgs/development/python-modules/ldap3/default.nix index 4d4b6997409a..eb3530cb9572 100644 --- a/pkgs/development/python-modules/ldap3/default.nix +++ b/pkgs/development/python-modules/ldap3/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { export SERVER=NONE ''; - meta = with lib; { + meta = { homepage = "https://github.com/cannatag/ldap3"; description = "Strictly RFC 4510 conforming LDAP V3 pure Python client library"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ldapdomaindump/default.nix b/pkgs/development/python-modules/ldapdomaindump/default.nix index a7879120804a..03b080a61748 100644 --- a/pkgs/development/python-modules/ldapdomaindump/default.nix +++ b/pkgs/development/python-modules/ldapdomaindump/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ldapdomaindump" ]; - meta = with lib; { + meta = { description = "Active Directory information dumper via LDAP"; homepage = "https://github.com/dirkjanm/ldapdomaindump/"; changelog = "https://github.com/dirkjanm/ldapdomaindump/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ldappool/default.nix b/pkgs/development/python-modules/ldappool/default.nix index 8184d7cd433f..2b59a76ceb61 100644 --- a/pkgs/development/python-modules/ldappool/default.nix +++ b/pkgs/development/python-modules/ldappool/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ldappool" ]; - meta = with lib; { + meta = { description = "Simple connector pool for python-ldap"; homepage = "https://opendev.org/openstack/ldappool/"; - license = with licenses; [ + license = with lib.licenses; [ mpl11 lgpl21Plus gpl2Plus diff --git a/pkgs/development/python-modules/ldaptor/default.nix b/pkgs/development/python-modules/ldaptor/default.nix index c996f7700332..b26e2c18c2f8 100644 --- a/pkgs/development/python-modules/ldaptor/default.nix +++ b/pkgs/development/python-modules/ldaptor/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { trial -j$NIX_BUILD_CORES ldaptor ''; - meta = with lib; { + meta = { description = "Pure-Python Twisted library for LDAP"; homepage = "https://github.com/twisted/ldaptor"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ldfparser/default.nix b/pkgs/development/python-modules/ldfparser/default.nix index a73651db76fc..1ff79adb14a1 100644 --- a/pkgs/development/python-modules/ldfparser/default.nix +++ b/pkgs/development/python-modules/ldfparser/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { "tests/test_performance.py" ]; - meta = with lib; { + meta = { description = "LIN Description File parser written in Python"; homepage = "https://github.com/c4deszes/ldfparser"; changelog = "https://github.com/c4deszes/ldfparser/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ldfparser"; }; } diff --git a/pkgs/development/python-modules/leather/default.nix b/pkgs/development/python-modules/leather/default.nix index 6cac7476142f..c2ea8fe968c5 100644 --- a/pkgs/development/python-modules/leather/default.nix +++ b/pkgs/development/python-modules/leather/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "http://leather.rtfd.io"; description = "Python charting library"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/leb128/default.nix b/pkgs/development/python-modules/leb128/default.nix index 5cafea606a0e..52e9c6a29e0a 100644 --- a/pkgs/development/python-modules/leb128/default.nix +++ b/pkgs/development/python-modules/leb128/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "leb128" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mohanson/leb128/releases/tag/v${version}"; description = "Utility to encode and decode Little Endian Base 128"; homepage = "https://github.com/mohanson/leb128"; - license = licenses.mit; - maintainers = with maintainers; [ urlordjames ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urlordjames ]; }; } diff --git a/pkgs/development/python-modules/led-ble/default.nix b/pkgs/development/python-modules/led-ble/default.nix index 62a3aee12bf5..ef0d4d160303 100644 --- a/pkgs/development/python-modules/led-ble/default.nix +++ b/pkgs/development/python-modules/led-ble/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "led_ble" ]; - meta = with lib; { + meta = { description = "Library for LED BLE devices"; homepage = "https://github.com/Bluetooth-Devices/led-ble"; changelog = "https://github.com/Bluetooth-Devices/led-ble/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ledger-agent/default.nix b/pkgs/development/python-modules/ledger-agent/default.nix index 553dbc92bcfe..12a16dc0ecad 100644 --- a/pkgs/development/python-modules/ledger-agent/default.nix +++ b/pkgs/development/python-modules/ledger-agent/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Using Ledger as hardware-based SSH/PGP agent"; homepage = "https://github.com/romanz/trezor-agent"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ hkjn np mmahut diff --git a/pkgs/development/python-modules/ledger-bitcoin/default.nix b/pkgs/development/python-modules/ledger-bitcoin/default.nix index 0c4b5a1704c6..008e52fab835 100644 --- a/pkgs/development/python-modules/ledger-bitcoin/default.nix +++ b/pkgs/development/python-modules/ledger-bitcoin/default.nix @@ -33,9 +33,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "ledger_bitcoin" ]; - meta = with lib; { + meta = { description = "Client library for Ledger Bitcoin application"; homepage = "https://github.com/LedgerHQ/app-bitcoin-new/tree/develop/bitcoin_client/ledger_bitcoin"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/ledgerblue/default.nix b/pkgs/development/python-modules/ledgerblue/default.nix index 95c9c6cb6474..2778e1cc3afd 100644 --- a/pkgs/development/python-modules/ledgerblue/default.nix +++ b/pkgs/development/python-modules/ledgerblue/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ledgerblue" ]; - meta = with lib; { + meta = { description = "Python library to communicate with Ledger Blue/Nano S"; homepage = "https://github.com/LedgerHQ/blue-loader-python"; - license = licenses.asl20; - maintainers = with maintainers; [ np ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ np ]; }; } diff --git a/pkgs/development/python-modules/ledgercomm/default.nix b/pkgs/development/python-modules/ledgercomm/default.nix index b23b29638558..3243e31507a0 100644 --- a/pkgs/development/python-modules/ledgercomm/default.nix +++ b/pkgs/development/python-modules/ledgercomm/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ledgercomm" ]; - meta = with lib; { + meta = { description = "Python library to send and receive APDU through HID or TCP socket. It can be used with a Ledger Nano S/X or with the Speculos emulator"; mainProgram = "ledgercomm-send"; homepage = "https://github.com/LedgerHQ/ledgercomm"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/ledgerwallet/default.nix b/pkgs/development/python-modules/ledgerwallet/default.nix index 2cf714efa8e0..a09e1548080b 100644 --- a/pkgs/development/python-modules/ledgerwallet/default.nix +++ b/pkgs/development/python-modules/ledgerwallet/default.nix @@ -60,12 +60,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ledgerwallet" ]; - meta = with lib; { + meta = { homepage = "https://github.com/LedgerHQ/ledgerctl"; description = "Library to control Ledger devices"; mainProgram = "ledgerctl"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erdnaxe ]; }; diff --git a/pkgs/development/python-modules/leveldb/default.nix b/pkgs/development/python-modules/leveldb/default.nix index a13f11c74206..fd37ed3dcc0c 100644 --- a/pkgs/development/python-modules/leveldb/default.nix +++ b/pkgs/development/python-modules/leveldb/default.nix @@ -21,14 +21,14 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ]; - meta = with lib; { + meta = { homepage = "https://code.google.com/archive/p/py-leveldb/"; description = "Thread-safe Python bindings for LevelDB"; platforms = [ "x86_64-linux" "i686-linux" ]; - license = licenses.bsd3; - maintainers = [ maintainers.aanderse ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.aanderse ]; }; } diff --git a/pkgs/development/python-modules/lexid/default.nix b/pkgs/development/python-modules/lexid/default.nix index c41d02822cf4..9d402d64eefe 100644 --- a/pkgs/development/python-modules/lexid/default.nix +++ b/pkgs/development/python-modules/lexid/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Micro library to increment lexically ordered numerical ids"; mainProgram = "lexid_incr"; homepage = "https://pypi.org/project/lexid/"; - license = licenses.mit; - maintainers = with maintainers; [ kfollesdal ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kfollesdal ]; }; } diff --git a/pkgs/development/python-modules/lib4sbom/default.nix b/pkgs/development/python-modules/lib4sbom/default.nix index d8914b2ad5dc..dcf9bc60f149 100644 --- a/pkgs/development/python-modules/lib4sbom/default.nix +++ b/pkgs/development/python-modules/lib4sbom/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lib4sbom" ]; - meta = with lib; { + meta = { description = "Library to ingest and generate SBOMs"; homepage = "https://github.com/anthonyharrison/lib4sbom"; changelog = "https://github.com/anthonyharrison/lib4sbom/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ teatwig ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teatwig ]; }; } diff --git a/pkgs/development/python-modules/lib4vex/default.nix b/pkgs/development/python-modules/lib4vex/default.nix index 5eca654f074b..e40c2165155f 100644 --- a/pkgs/development/python-modules/lib4vex/default.nix +++ b/pkgs/development/python-modules/lib4vex/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lib4vex" ]; - meta = with lib; { + meta = { description = "Library to ingest and generate VEX documents"; homepage = "https://github.com/anthonyharrison/lib4vex"; changelog = "https://github.com/anthonyharrison/lib4vex/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ teatwig ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teatwig ]; }; } diff --git a/pkgs/development/python-modules/libagent/default.nix b/pkgs/development/python-modules/libagent/default.nix index aa83a42d08aa..269057107506 100644 --- a/pkgs/development/python-modules/libagent/default.nix +++ b/pkgs/development/python-modules/libagent/default.nix @@ -73,10 +73,10 @@ buildPythonPackage rec { "test_get_agent_sock_path" ]; - meta = with lib; { + meta = { description = "Using hardware wallets as SSH/GPG agent"; homepage = "https://github.com/romanz/trezor-agent"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ np ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ np ]; }; } diff --git a/pkgs/development/python-modules/libais/default.nix b/pkgs/development/python-modules/libais/default.nix index df31f4c53fec..0e459a21a13d 100644 --- a/pkgs/development/python-modules/libais/default.nix +++ b/pkgs/development/python-modules/libais/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ais" ]; - meta = with lib; { + meta = { description = "Library for decoding maritime Automatic Identification System messages"; homepage = "https://github.com/schwehr/libais"; changelog = "https://github.com/schwehr/libais/blob/master/Changelog.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/libarchive-c/default.nix b/pkgs/development/python-modules/libarchive-c/default.nix index f72bf7b43cdc..9501f9bc7cbc 100644 --- a/pkgs/development/python-modules/libarchive-c/default.nix +++ b/pkgs/development/python-modules/libarchive-c/default.nix @@ -45,9 +45,9 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/Changaco/python-libarchive-c"; description = "Python interface to libarchive"; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/development/python-modules/libarcus/default.nix b/pkgs/development/python-modules/libarcus/default.nix index 6188f2c5aaa7..c95ca012cd5d 100644 --- a/pkgs/development/python-modules/libarcus/default.nix +++ b/pkgs/development/python-modules/libarcus/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake ''; - meta = with lib; { + meta = { description = "Communication library between internal components for Ultimaker software"; homepage = "https://github.com/Ultimaker/libArcus"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/libasyncns/default.nix b/pkgs/development/python-modules/libasyncns/default.nix index e7fe03bd8698..c22fdca4296c 100644 --- a/pkgs/development/python-modules/libasyncns/default.nix +++ b/pkgs/development/python-modules/libasyncns/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libasyncns" ]; - meta = with lib; { + meta = { description = "Libasyncns-python is a python binding for the asynchronous name service query library"; - license = licenses.lgpl21; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.mic92 ]; homepage = "https://launchpad.net/libasyncns-python"; }; } diff --git a/pkgs/development/python-modules/libcloud/default.nix b/pkgs/development/python-modules/libcloud/default.nix index 8fe46bd9572a..abfde8127a66 100644 --- a/pkgs/development/python-modules/libcloud/default.nix +++ b/pkgs/development/python-modules/libcloud/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "libcloud" ]; - meta = with lib; { + meta = { description = "Unified interface to many cloud providers"; homepage = "https://libcloud.apache.org/"; changelog = "https://github.com/apache/libcloud/blob/v${version}/CHANGES.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/libevdev/default.nix b/pkgs/development/python-modules/libevdev/default.nix index 814dee247324..315f02759c91 100644 --- a/pkgs/development/python-modules/libevdev/default.nix +++ b/pkgs/development/python-modules/libevdev/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python wrapper around the libevdev C library"; homepage = "https://gitlab.freedesktop.org/libevdev/python-libevdev"; - license = licenses.mit; - maintainers = with maintainers; [ nickhu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickhu ]; }; } diff --git a/pkgs/development/python-modules/libgpiod/default.nix b/pkgs/development/python-modules/libgpiod/default.nix index 8ea7089985bd..6a1c3ca6f1d5 100644 --- a/pkgs/development/python-modules/libgpiod/default.nix +++ b/pkgs/development/python-modules/libgpiod/default.nix @@ -17,10 +17,10 @@ buildPythonPackage { doCheck = false; pythonImportsCheck = [ "gpiod" ]; - meta = with lib; { + meta = { description = "Python bindings for libgpiod"; homepage = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ lopsided98 ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/development/python-modules/libgravatar/default.nix b/pkgs/development/python-modules/libgravatar/default.nix index 0464efc2cebc..87186272a438 100644 --- a/pkgs/development/python-modules/libgravatar/default.nix +++ b/pkgs/development/python-modules/libgravatar/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "libgravatar" ]; - meta = with lib; { + meta = { description = "Library that provides a Python 3 interface for the Gravatar API"; homepage = "https://github.com/pabluk/libgravatar"; changelog = "https://github.com/pabluk/libgravatar/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/libkeepass/default.nix b/pkgs/development/python-modules/libkeepass/default.nix index 4b6faad610ec..6d65cbcf6e2f 100644 --- a/pkgs/development/python-modules/libkeepass/default.nix +++ b/pkgs/development/python-modules/libkeepass/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # No tests on PyPI doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/libkeepass/libkeepass"; description = "Library to access KeePass 1.x/KeePassX (v3) and KeePass 2.x (v4) files"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ jqueiroz ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ jqueiroz ]; }; } diff --git a/pkgs/development/python-modules/libknot/default.nix b/pkgs/development/python-modules/libknot/default.nix index fc29d6ce7d01..ea102d8f55a6 100644 --- a/pkgs/development/python-modules/libknot/default.nix +++ b/pkgs/development/python-modules/libknot/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libknot" ]; - meta = with lib; { + meta = { description = "Python bindings for libknot"; homepage = "https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/libknot"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/liblarch/default.nix b/pkgs/development/python-modules/liblarch/default.nix index 65e4c578dff9..e6e40f850220 100644 --- a/pkgs/development/python-modules/liblarch/default.nix +++ b/pkgs/development/python-modules/liblarch/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python library built to easily handle data structure such are lists, trees and acyclic graphs"; homepage = "https://github.com/getting-things-gnome/liblarch"; downloadPage = "https://github.com/getting-things-gnome/liblarch/releases"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ oyren ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ oyren ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/liblzfse/default.nix b/pkgs/development/python-modules/liblzfse/default.nix index 9967a48934e5..3051713bfc80 100644 --- a/pkgs/development/python-modules/liblzfse/default.nix +++ b/pkgs/development/python-modules/liblzfse/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "liblzfse" ]; - meta = with lib; { + meta = { description = "Python bindings for LZFSE"; homepage = "https://github.com/ydkhatri/pyliblzfse"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/libmr/default.nix b/pkgs/development/python-modules/libmr/default.nix index 3bdae94b8d34..83a29565ba88 100644 --- a/pkgs/development/python-modules/libmr/default.nix +++ b/pkgs/development/python-modules/libmr/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # No tests in the pypi tarball doCheck = false; - meta = with lib; { + meta = { description = "LibMR provides core MetaRecognition and Weibull fitting functionality"; homepage = "https://github.com/Vastlab/libMR"; - license = licenses.bsd3; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/libnacl/default.nix b/pkgs/development/python-modules/libnacl/default.nix index 863c624368e4..0264a193677a 100644 --- a/pkgs/development/python-modules/libnacl/default.nix +++ b/pkgs/development/python-modules/libnacl/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "libnacl" ]; - meta = with lib; { + meta = { description = "Python bindings for libsodium based on ctypes"; homepage = "https://libnacl.readthedocs.io/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ xvapx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ xvapx ]; }; } diff --git a/pkgs/development/python-modules/libpcap/default.nix b/pkgs/development/python-modules/libpcap/default.nix index 7ac9f785a71e..e9c8e7b73ea0 100644 --- a/pkgs/development/python-modules/libpcap/default.nix +++ b/pkgs/development/python-modules/libpcap/default.nix @@ -51,7 +51,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "libpcap" ]; - meta = with lib; { + meta = { description = "Python binding for the libpcap C library"; longDescription = '' Python libpcap module is a low-level binding for libpcap C library. @@ -64,7 +64,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/karpierz/libpcap/"; changelog = "https://github.com/karpierz/libpcap/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; - teams = [ teams.ororatech ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.ororatech ]; }; } diff --git a/pkgs/development/python-modules/libpurecool/default.nix b/pkgs/development/python-modules/libpurecool/default.nix index 5564bb1d22a7..48d3b74c49db 100644 --- a/pkgs/development/python-modules/libpurecool/default.nix +++ b/pkgs/development/python-modules/libpurecool/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "libpurecool" ]; - meta = with lib; { + meta = { description = "Python library for Dyson devices"; homepage = "http://libpurecool.readthedocs.io"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/libpyvivotek/default.nix b/pkgs/development/python-modules/libpyvivotek/default.nix index 4adcefc505a0..a1f83dadc339 100644 --- a/pkgs/development/python-modules/libpyvivotek/default.nix +++ b/pkgs/development/python-modules/libpyvivotek/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "libpyvivotek" ]; - meta = with lib; { + meta = { description = "Python Library for Vivotek IP Cameras"; homepage = "https://github.com/HarlemSquirrel/python-vivotek"; changelog = "https://github.com/HarlemSquirrel/python-vivotek/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/librespot/default.nix b/pkgs/development/python-modules/librespot/default.nix index 1a7ecaca6738..4a100635ca72 100644 --- a/pkgs/development/python-modules/librespot/default.nix +++ b/pkgs/development/python-modules/librespot/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "librespot" ]; - meta = with lib; { + meta = { description = "Open Source Spotify Client"; homepage = "https://github.com/kokarare1212/librespot-python"; changelog = "https://github.com/kokarare1212/librespot-python/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/libretranslate/default.nix b/pkgs/development/python-modules/libretranslate/default.nix index f6961d33b45a..4af6b9bedc73 100644 --- a/pkgs/development/python-modules/libretranslate/default.nix +++ b/pkgs/development/python-modules/libretranslate/default.nix @@ -109,11 +109,11 @@ buildPythonPackage rec { ''; }; - meta = with lib; { + meta = { description = "Free and Open Source Machine Translation API. Self-hosted, no limits, no ties to proprietary services"; homepage = "https://libretranslate.com"; changelog = "https://github.com/LibreTranslate/LibreTranslate/releases/tag/${src.tag}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ misuzu ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/development/python-modules/librouteros/default.nix b/pkgs/development/python-modules/librouteros/default.nix index 2dc53cc0c7d4..eab7947360df 100644 --- a/pkgs/development/python-modules/librouteros/default.nix +++ b/pkgs/development/python-modules/librouteros/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "librouteros" ]; - meta = with lib; { + meta = { description = "Python implementation of the MikroTik RouterOS API"; homepage = "https://librouteros.readthedocs.io/"; changelog = "https://github.com/luqasz/librouteros/blob/${version}/CHANGELOG.rst"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/libsixel/default.nix b/pkgs/development/python-modules/libsixel/default.nix index 9046cc3f8130..54ceb2f7ca89 100644 --- a/pkgs/development/python-modules/libsixel/default.nix +++ b/pkgs/development/python-modules/libsixel/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libsixel" ]; - meta = with lib; { + meta = { description = "SIXEL graphics encoder/decoder implementation"; homepage = "https://github.com/libsixel/libsixel"; - license = licenses.mit; - maintainers = with maintainers; [ rmcgibbo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rmcgibbo ]; }; } diff --git a/pkgs/development/python-modules/libsoundtouch/default.nix b/pkgs/development/python-modules/libsoundtouch/default.nix index 3f9112e59139..ec2d64145132 100644 --- a/pkgs/development/python-modules/libsoundtouch/default.nix +++ b/pkgs/development/python-modules/libsoundtouch/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libsoundtouch" ]; - meta = with lib; { + meta = { description = "Bose Soundtouch Python library"; homepage = "https://github.com/CharlesBlonde/libsoundtouch"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/libthumbor/default.nix b/pkgs/development/python-modules/libthumbor/default.nix index f53bf2e56550..be57e1bfabe7 100644 --- a/pkgs/development/python-modules/libthumbor/default.nix +++ b/pkgs/development/python-modules/libthumbor/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libthumbor" ]; - meta = with lib; { + meta = { description = "Python extension to thumbor"; homepage = "https://github.com/heynemann/libthumbor"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/libusb1/default.nix b/pkgs/development/python-modules/libusb1/default.nix index 552a2d4081a7..b655e14fd77a 100644 --- a/pkgs/development/python-modules/libusb1/default.nix +++ b/pkgs/development/python-modules/libusb1/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { enabledTestPaths = [ "usb1/testUSB1.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/vpelletier/python-libusb1"; description = "Python ctype-based wrapper around libusb1"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ prusnak rnhmjoj ]; diff --git a/pkgs/development/python-modules/libusbsio/default.nix b/pkgs/development/python-modules/libusbsio/default.nix index ab099c119279..4923a764a72d 100644 --- a/pkgs/development/python-modules/libusbsio/default.nix +++ b/pkgs/development/python-modules/libusbsio/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "libusbsio" ]; - meta = with lib; { + meta = { description = "LIBUSBSIO Host Library for USB Enabled MCUs"; homepage = "https://www.nxp.com/design/design-center/software/development-software/libusbsio-host-library-for-usb-enabled-mcus:LIBUSBSIO"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ frogamic sbruder ]; diff --git a/pkgs/development/python-modules/libversion/default.nix b/pkgs/development/python-modules/libversion/default.nix index b311d6888d6c..bf1b608d6766 100644 --- a/pkgs/development/python-modules/libversion/default.nix +++ b/pkgs/development/python-modules/libversion/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libversion" ]; - meta = with lib; { + meta = { description = "Python bindings for libversion, which provides fast, powerful and correct generic version string comparison algorithm"; homepage = "https://github.com/repology/py-libversion"; - license = licenses.mit; - maintainers = with maintainers; [ ryantm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ryantm ]; }; } diff --git a/pkgs/development/python-modules/libvirt/default.nix b/pkgs/development/python-modules/libvirt/default.nix index 441efbdbade1..0c52334592ca 100644 --- a/pkgs/development/python-modules/libvirt/default.nix +++ b/pkgs/development/python-modules/libvirt/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://libvirt.org/python.html"; description = "Libvirt Python bindings"; - license = licenses.lgpl2; - maintainers = [ maintainers.fpletz ]; + license = lib.licenses.lgpl2; + maintainers = [ lib.maintainers.fpletz ]; }; } diff --git a/pkgs/development/python-modules/liccheck/default.nix b/pkgs/development/python-modules/liccheck/default.nix index 4be930d0dcb3..511bcb5e0ce5 100644 --- a/pkgs/development/python-modules/liccheck/default.nix +++ b/pkgs/development/python-modules/liccheck/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "liccheck" ]; - meta = with lib; { + meta = { description = "Check python packages from requirement.txt and report issues"; homepage = "https://github.com/dhatim/python-license-check"; changelog = "https://github.com/dhatim/python-license-check/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "liccheck"; }; } diff --git a/pkgs/development/python-modules/license-expression/default.nix b/pkgs/development/python-modules/license-expression/default.nix index f7b5610ef1c2..5b6dad42d473 100644 --- a/pkgs/development/python-modules/license-expression/default.nix +++ b/pkgs/development/python-modules/license-expression/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "license_expression" ]; - meta = with lib; { + meta = { description = "Utility library to parse, normalize and compare License expressions"; homepage = "https://github.com/aboutcode-org/license-expression"; changelog = "https://github.com/aboutcode-org/license-expression/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/life360/default.nix b/pkgs/development/python-modules/life360/default.nix index 9c01495c6c0b..b80df0047d46 100644 --- a/pkgs/development/python-modules/life360/default.nix +++ b/pkgs/development/python-modules/life360/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "life360" ]; - meta = with lib; { + meta = { description = "Module to interact with Life360"; homepage = "https://github.com/pnbruckner/life360"; changelog = "https://github.com/pnbruckner/life360/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lightwave/default.nix b/pkgs/development/python-modules/lightwave/default.nix index 514b3349e029..127a413898e9 100644 --- a/pkgs/development/python-modules/lightwave/default.nix +++ b/pkgs/development/python-modules/lightwave/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # Requires physical hardware doCheck = false; - meta = with lib; { + meta = { description = "Module for interacting with LightwaveRF hubs"; homepage = "https://github.com/GeoffAtHome/lightwave"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lightwave2/default.nix b/pkgs/development/python-modules/lightwave2/default.nix index 02ed2c606863..d67135fd99c3 100644 --- a/pkgs/development/python-modules/lightwave2/default.nix +++ b/pkgs/development/python-modules/lightwave2/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lightwave2" ]; - meta = with lib; { + meta = { description = "Library to interact with LightWaveRF 2nd Gen lights and switches"; homepage = "https://github.com/bigbadblunt/lightwave2"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lima/default.nix b/pkgs/development/python-modules/lima/default.nix index 9244b2630f4e..e830b81b6b4e 100644 --- a/pkgs/development/python-modules/lima/default.nix +++ b/pkgs/development/python-modules/lima/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lima" ]; - meta = with lib; { + meta = { description = "Lightweight Marshalling of Python Objects"; homepage = "https://github.com/b6d/lima"; changelog = "https://github.com/b6d/lima/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/development/python-modules/limiter/default.nix b/pkgs/development/python-modules/limiter/default.nix index ab7dc2851c51..dbb689deb86c 100644 --- a/pkgs/development/python-modules/limiter/default.nix +++ b/pkgs/development/python-modules/limiter/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "limiter" ]; - meta = with lib; { + meta = { description = "Python rate-limiting, thread-safe and asynchronous decorators and context managers"; homepage = "https://github.com/alexdelorenzo/limiter"; - license = with licenses; [ agpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/limitlessled/default.nix b/pkgs/development/python-modules/limitlessled/default.nix index ff2d2dbc87b9..08015669fb34 100644 --- a/pkgs/development/python-modules/limitlessled/default.nix +++ b/pkgs/development/python-modules/limitlessled/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "0pd71wxqjvznx10brsj1sgy3420bz7awbzk9jlj422rrdxql754j"; }; - meta = with lib; { + meta = { description = "Control LimitlessLED products"; homepage = "https://github.com/happyleavesaoc/python-limitlessled/"; - license = licenses.mit; - maintainers = with maintainers; [ sephalon ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephalon ]; }; } diff --git a/pkgs/development/python-modules/limnoria/default.nix b/pkgs/development/python-modules/limnoria/default.nix index af330c86e237..f74f775a23b6 100644 --- a/pkgs/development/python-modules/limnoria/default.nix +++ b/pkgs/development/python-modules/limnoria/default.nix @@ -59,10 +59,10 @@ buildPythonPackage rec { "supybot" ]; - meta = with lib; { + meta = { description = "Modified version of Supybot, an IRC bot"; homepage = "https://github.com/ProgVal/Limnoria"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/line-profiler/default.nix b/pkgs/development/python-modules/line-profiler/default.nix index 5bc0a75e4209..0d113cfe39c6 100644 --- a/pkgs/development/python-modules/line-profiler/default.nix +++ b/pkgs/development/python-modules/line-profiler/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "line_profiler" ]; - meta = with lib; { + meta = { description = "Line-by-line profiler"; mainProgram = "kernprof"; homepage = "https://github.com/pyutils/line_profiler"; changelog = "https://github.com/pyutils/line_profiler/blob/v${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/linear-operator/default.nix b/pkgs/development/python-modules/linear-operator/default.nix index a328227ae396..7a00d4115e69 100644 --- a/pkgs/development/python-modules/linear-operator/default.nix +++ b/pkgs/development/python-modules/linear-operator/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { "test_svd" ]; - meta = with lib; { + meta = { description = "LinearOperator implementation to wrap the numerical nuts and bolts of GPyTorch"; homepage = "https://github.com/cornellius-gp/linear_operator/"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/linecache2/default.nix b/pkgs/development/python-modules/linecache2/default.nix index 2d183c3ef690..64d45ab14422 100644 --- a/pkgs/development/python-modules/linecache2/default.nix +++ b/pkgs/development/python-modules/linecache2/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { # circular dependencies for tests doCheck = false; - meta = with lib; { + meta = { description = "Backport of linecache to older supported Pythons"; homepage = "https://github.com/testing-cabal/linecache2"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python-modules/lineedit/default.nix b/pkgs/development/python-modules/lineedit/default.nix index dd892eca9981..b91330156b9a 100644 --- a/pkgs/development/python-modules/lineedit/default.nix +++ b/pkgs/development/python-modules/lineedit/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lineedit" ]; - meta = with lib; { + meta = { description = "Readline library based on prompt_toolkit which supports multiple modes"; homepage = "https://github.com/randy3k/lineedit"; - license = licenses.mit; - maintainers = with maintainers; [ savyajha ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ savyajha ]; }; } diff --git a/pkgs/development/python-modules/linetable/default.nix b/pkgs/development/python-modules/linetable/default.nix index 515535872fcf..e238b286225d 100644 --- a/pkgs/development/python-modules/linetable/default.nix +++ b/pkgs/development/python-modules/linetable/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "linetable" ]; - meta = with lib; { + meta = { description = "Library to parse and generate co_linetable attributes in Python code objects"; homepage = "https://github.com/amol-/linetable"; changelog = "https://github.com/amol-/linetable/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lingua/default.nix b/pkgs/development/python-modules/lingua/default.nix index d3cae940f121..629188d4c9e6 100644 --- a/pkgs/development/python-modules/lingua/default.nix +++ b/pkgs/development/python-modules/lingua/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lingua" ]; - meta = with lib; { + meta = { description = "Translation toolset"; homepage = "https://github.com/wichert/lingua"; - license = licenses.bsd3; - maintainers = with maintainers; [ np ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ np ]; }; } diff --git a/pkgs/development/python-modules/lingva/default.nix b/pkgs/development/python-modules/lingva/default.nix index 434cd052d5d1..96ff9d366d15 100644 --- a/pkgs/development/python-modules/lingva/default.nix +++ b/pkgs/development/python-modules/lingva/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lingva" ]; - meta = with lib; { + meta = { description = "Module with tools to extract translatable texts from your code"; homepage = "https://github.com/vacanza/lingva"; changelog = "https://github.com/vacanza/lingva/blob/${src.tag}/changes.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/linkify-it-py/default.nix b/pkgs/development/python-modules/linkify-it-py/default.nix index 2f4bb1c01422..de355c2c3eaa 100644 --- a/pkgs/development/python-modules/linkify-it-py/default.nix +++ b/pkgs/development/python-modules/linkify-it-py/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Links recognition library with full unicode support"; homepage = "https://github.com/tsutsu3/linkify-it-py"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/linknlink/default.nix b/pkgs/development/python-modules/linknlink/default.nix index 973ee6de1346..a5d8ae751203 100644 --- a/pkgs/development/python-modules/linknlink/default.nix +++ b/pkgs/development/python-modules/linknlink/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # Module has no test doCheck = false; - meta = with lib; { + meta = { description = "Module and CLI for controlling Linklink devices locally"; homepage = "https://github.com/xuanxuan000/python-linknlink"; changelog = "https://github.com/xuanxuan000/python-linknlink/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/linode/default.nix b/pkgs/development/python-modules/linode/default.nix index ce34a64ee913..58fffef62924 100644 --- a/pkgs/development/python-modules/linode/default.nix +++ b/pkgs/development/python-modules/linode/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ requests ]; - meta = with lib; { + meta = { homepage = "https://github.com/ghickman/linode"; description = "Thin python wrapper around Linode's API"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/linuxpy/default.nix b/pkgs/development/python-modules/linuxpy/default.nix index 4b96e11e019f..caac85c94a45 100644 --- a/pkgs/development/python-modules/linuxpy/default.nix +++ b/pkgs/development/python-modules/linuxpy/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { setuptools ]; - meta = with lib; { + meta = { description = "Human friendly interface to Linux subsystems using Python"; homepage = "https://github.com/tiagocoutinho/linuxpy"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ willow ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/development/python-modules/lion-pytorch/default.nix b/pkgs/development/python-modules/lion-pytorch/default.nix index 64c21d87f464..bf4d5d7831da 100644 --- a/pkgs/development/python-modules/lion-pytorch/default.nix +++ b/pkgs/development/python-modules/lion-pytorch/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lion_pytorch" ]; doCheck = false; # no tests currently - meta = with lib; { + meta = { description = "Optimizer tuned by Google Brain using genetic algorithms"; homepage = "https://github.com/lucidrains/lion-pytorch"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/liquidctl/default.nix b/pkgs/development/python-modules/liquidctl/default.nix index 75bfe87174ce..425c96d0859f 100644 --- a/pkgs/development/python-modules/liquidctl/default.nix +++ b/pkgs/development/python-modules/liquidctl/default.nix @@ -76,12 +76,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "liquidctl" ]; - meta = with lib; { + meta = { description = "Cross-platform CLI and Python drivers for AIO liquid coolers and other devices"; homepage = "https://github.com/liquidctl/liquidctl"; changelog = "https://github.com/liquidctl/liquidctl/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ arturcygan ]; mainProgram = "liquidctl"; diff --git a/pkgs/development/python-modules/litemapy/default.nix b/pkgs/development/python-modules/litemapy/default.nix index 0f3ec4659100..fc2b7a574e55 100644 --- a/pkgs/development/python-modules/litemapy/default.nix +++ b/pkgs/development/python-modules/litemapy/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "litemapy" ]; - meta = with lib; { + meta = { description = "Python library to read and edit Litematica's schematic file format"; homepage = "https://github.com/SmylerMC/litemapy"; changelog = "https://github.com/SmylerMC/litemapy/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ gdd kuflierl ]; diff --git a/pkgs/development/python-modules/littleutils/default.nix b/pkgs/development/python-modules/littleutils/default.nix index a349c0ded16d..8d76de79c1e3 100644 --- a/pkgs/development/python-modules/littleutils/default.nix +++ b/pkgs/development/python-modules/littleutils/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "littleutils" ]; - meta = with lib; { + meta = { description = "Small collection of Python utility functions"; homepage = "https://github.com/alexmojaki/littleutils"; changelog = "https://github.com/alexmojaki/littleutils/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/lizard/default.nix b/pkgs/development/python-modules/lizard/default.nix index a177c8ef9f9f..d289c07f861f 100644 --- a/pkgs/development/python-modules/lizard/default.nix +++ b/pkgs/development/python-modules/lizard/default.nix @@ -41,13 +41,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "lizard" ]; - meta = with lib; { + meta = { changelog = "https://github.com/terryyin/lizard/blob/${version}/CHANGELOG.md"; description = "Code analyzer without caring the C/C++ header files"; mainProgram = "lizard"; downloadPage = "https://github.com/terryyin/lizard"; homepage = "http://www.lizard.ws"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/llama-cloud/default.nix b/pkgs/development/python-modules/llama-cloud/default.nix index 35f0d81e4797..15ba862789b8 100644 --- a/pkgs/development/python-modules/llama-cloud/default.nix +++ b/pkgs/development/python-modules/llama-cloud/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_cloud" ]; - meta = with lib; { + meta = { description = "LlamaIndex Python Client"; homepage = "https://pypi.org/project/llama-cloud/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-cli/default.nix b/pkgs/development/python-modules/llama-index-cli/default.nix index f0c79c3b6672..21629c634042 100644 --- a/pkgs/development/python-modules/llama-index-cli/default.nix +++ b/pkgs/development/python-modules/llama-index-cli/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.cli" ]; - meta = with lib; { + meta = { description = "LlamaIndex CLI"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-cli"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-core/default.nix b/pkgs/development/python-modules/llama-index-core/default.nix index c5575e3f7155..c89f08e475c9 100644 --- a/pkgs/development/python-modules/llama-index-core/default.nix +++ b/pkgs/development/python-modules/llama-index-core/default.nix @@ -160,11 +160,11 @@ buildPythonPackage rec { "test_str" ]; - meta = with lib; { + meta = { description = "Data framework for your LLM applications"; homepage = "https://github.com/run-llama/llama_index/"; changelog = "https://github.com/run-llama/llama_index/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-embeddings-gemini/default.nix b/pkgs/development/python-modules/llama-index-embeddings-gemini/default.nix index 03db0458f22b..9f1e9297e0c4 100644 --- a/pkgs/development/python-modules/llama-index-embeddings-gemini/default.nix +++ b/pkgs/development/python-modules/llama-index-embeddings-gemini/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.embeddings.gemini" ]; - meta = with lib; { + meta = { description = "LlamaIndex Llms Integration for Gemini"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/embeddings/llama-index-embeddings-gemini"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-embeddings-google/default.nix b/pkgs/development/python-modules/llama-index-embeddings-google/default.nix index b090bbe6308d..d60b881f5fbf 100644 --- a/pkgs/development/python-modules/llama-index-embeddings-google/default.nix +++ b/pkgs/development/python-modules/llama-index-embeddings-google/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.embeddings.google" ]; - meta = with lib; { + meta = { description = "LlamaIndex Embeddings Integration for Google"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/embeddings/llama-index-embeddings-google"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-embeddings-huggingface/default.nix b/pkgs/development/python-modules/llama-index-embeddings-huggingface/default.nix index 2513be64acba..70e96df56b49 100644 --- a/pkgs/development/python-modules/llama-index-embeddings-huggingface/default.nix +++ b/pkgs/development/python-modules/llama-index-embeddings-huggingface/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.embeddings.huggingface" ]; - meta = with lib; { + meta = { description = "LlamaIndex Embeddings Integration for Huggingface"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/embeddings/llama-index-embeddings-huggingface"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-embeddings-ollama/default.nix b/pkgs/development/python-modules/llama-index-embeddings-ollama/default.nix index ef279d274def..fc8ade18774b 100644 --- a/pkgs/development/python-modules/llama-index-embeddings-ollama/default.nix +++ b/pkgs/development/python-modules/llama-index-embeddings-ollama/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.embeddings.ollama" ]; - meta = with lib; { + meta = { description = "LlamaIndex Llms Integration for Ollama"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/embeddings/llama-index-embeddings-ollama"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix b/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix index 14e5727d3843..7014ca81838d 100644 --- a/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.embeddings.openai" ]; - meta = with lib; { + meta = { description = "LlamaIndex Embeddings Integration for OpenAI"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-s3"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-graph-stores-nebula/default.nix b/pkgs/development/python-modules/llama-index-graph-stores-nebula/default.nix index fb5f330df72f..a162918e84e8 100644 --- a/pkgs/development/python-modules/llama-index-graph-stores-nebula/default.nix +++ b/pkgs/development/python-modules/llama-index-graph-stores-nebula/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.graph_stores.nebula" ]; - meta = with lib; { + meta = { description = "LlamaIndex Graph Store Integration for Nebula"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-nebula"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-graph-stores-neo4j/default.nix b/pkgs/development/python-modules/llama-index-graph-stores-neo4j/default.nix index 08beab28e8b9..64821433b352 100644 --- a/pkgs/development/python-modules/llama-index-graph-stores-neo4j/default.nix +++ b/pkgs/development/python-modules/llama-index-graph-stores-neo4j/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.graph_stores.neo4j" ]; - meta = with lib; { + meta = { description = "LlamaIndex Graph Store Integration for Neo4j"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-neo4j"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-graph-stores-neptune/default.nix b/pkgs/development/python-modules/llama-index-graph-stores-neptune/default.nix index 5d257b51ea56..e7f42932e773 100644 --- a/pkgs/development/python-modules/llama-index-graph-stores-neptune/default.nix +++ b/pkgs/development/python-modules/llama-index-graph-stores-neptune/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.graph_stores.neptune" ]; - meta = with lib; { + meta = { description = "LlamaIndex Graph Store Integration for Neptune"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/graph_stores/llama-index-graph-stores-neptune"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix b/pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix index 50c1efe96390..a23605a5199c 100644 --- a/pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix +++ b/pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.indices.managed.llama_cloud" ]; - meta = with lib; { + meta = { description = "LlamaCloud Index and Retriever"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/indices/llama-index-indices-managed-llama-cloud"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-legacy/default.nix b/pkgs/development/python-modules/llama-index-legacy/default.nix index 06d32b341bcd..2540d25799f0 100644 --- a/pkgs/development/python-modules/llama-index-legacy/default.nix +++ b/pkgs/development/python-modules/llama-index-legacy/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # Tests are only available in the mono repo doCheck = false; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for files"; homepage = "https://github.com/run-llama/llama_index/tree/v0.9.48"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-llms-ollama/default.nix b/pkgs/development/python-modules/llama-index-llms-ollama/default.nix index 34f9d0a7da8c..b365c75a1269 100644 --- a/pkgs/development/python-modules/llama-index-llms-ollama/default.nix +++ b/pkgs/development/python-modules/llama-index-llms-ollama/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.llms.ollama" ]; - meta = with lib; { + meta = { description = "LlamaIndex LLMS Integration for ollama"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/llms/llama-index-llms-ollama"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-llms-openai-like/default.nix b/pkgs/development/python-modules/llama-index-llms-openai-like/default.nix index 65f96aae0e5c..6608c7fdca82 100644 --- a/pkgs/development/python-modules/llama-index-llms-openai-like/default.nix +++ b/pkgs/development/python-modules/llama-index-llms-openai-like/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.llms.openai_like" ]; - meta = with lib; { + meta = { description = "LlamaIndex LLMS Integration for OpenAI like"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/llms/llama-index-llms-openai-like"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-llms-openai/default.nix b/pkgs/development/python-modules/llama-index-llms-openai/default.nix index cf7086cc482b..34b7fc53e5d0 100644 --- a/pkgs/development/python-modules/llama-index-llms-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-llms-openai/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.llms.openai" ]; - meta = with lib; { + meta = { description = "LlamaIndex LLMS Integration for OpenAI"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/llms/llama-index-llms-openai"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix b/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix index 2b04242e3ebc..be55162974e6 100644 --- a/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.multi_modal_llms.openai" ]; - meta = with lib; { + meta = { description = "LlamaIndex Multi-Modal-Llms Integration for OpenAI"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-openai"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-database/default.nix b/pkgs/development/python-modules/llama-index-readers-database/default.nix index 01791a63a51e..d46e3ea8108d 100644 --- a/pkgs/development/python-modules/llama-index-readers-database/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-database/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.database" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for Databases"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-database"; changelog = "https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/readers/llama-index-readers-database/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-file/default.nix b/pkgs/development/python-modules/llama-index-readers-file/default.nix index a411e6042abe..54e32d8e5762 100644 --- a/pkgs/development/python-modules/llama-index-readers-file/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-file/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.file" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for files"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-file"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-json/default.nix b/pkgs/development/python-modules/llama-index-readers-json/default.nix index 46674cb77332..faaf7fb6335e 100644 --- a/pkgs/development/python-modules/llama-index-readers-json/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-json/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.json" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for Json"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-json"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix b/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix index 0518e6ee2813..e27b361252e1 100644 --- a/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.llama_parse" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for files"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-llama-parse"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-s3/default.nix b/pkgs/development/python-modules/llama-index-readers-s3/default.nix index ce11f676015d..85d4073983d0 100644 --- a/pkgs/development/python-modules/llama-index-readers-s3/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-s3/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.s3" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for S3"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-s3"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-twitter/default.nix b/pkgs/development/python-modules/llama-index-readers-twitter/default.nix index 43c23bd48d70..e8bf6186aa1f 100644 --- a/pkgs/development/python-modules/llama-index-readers-twitter/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-twitter/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.twitter" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for Twitter"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-twitter"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-txtai/default.nix b/pkgs/development/python-modules/llama-index-readers-txtai/default.nix index 886e2df0f011..b49a04f0ef69 100644 --- a/pkgs/development/python-modules/llama-index-readers-txtai/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-txtai/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.txtai" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for txtai"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-txtai"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-readers-weather/default.nix b/pkgs/development/python-modules/llama-index-readers-weather/default.nix index 32183a5b415d..c8d663a18e88 100644 --- a/pkgs/development/python-modules/llama-index-readers-weather/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-weather/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.readers.weather" ]; - meta = with lib; { + meta = { description = "LlamaIndex Readers Integration for Weather"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-weather"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-vector-stores-chroma/default.nix b/pkgs/development/python-modules/llama-index-vector-stores-chroma/default.nix index 8639b2e6c798..a4c40aa65462 100644 --- a/pkgs/development/python-modules/llama-index-vector-stores-chroma/default.nix +++ b/pkgs/development/python-modules/llama-index-vector-stores-chroma/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.vector_stores.chroma" ]; - meta = with lib; { + meta = { description = "LlamaIndex Vector Store Integration for Chroma"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-chroma"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix b/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix index ba67be106286..7883de042d8c 100644 --- a/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix +++ b/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.vector_stores.google" ]; - meta = with lib; { + meta = { description = "LlamaIndex Vector Store Integration for Google"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-google"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix b/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix index 988942c7c2e2..30bbc532e1e9 100644 --- a/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix +++ b/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.vector_stores.qdrant" ]; - meta = with lib; { + meta = { description = "LlamaIndex Vector Store Integration for Qdrant"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-qdrant"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llama-parse/default.nix b/pkgs/development/python-modules/llama-parse/default.nix index 91612c0250b0..ea9562a5b7ea 100644 --- a/pkgs/development/python-modules/llama-parse/default.nix +++ b/pkgs/development/python-modules/llama-parse/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_parse" ]; - meta = with lib; { + meta = { description = "Parse files into RAG-Optimized formats"; homepage = "https://pypi.org/project/llama-parse/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llamaindex-py-client/default.nix b/pkgs/development/python-modules/llamaindex-py-client/default.nix index 65b897bfef39..2b4d63f4bcef 100644 --- a/pkgs/development/python-modules/llamaindex-py-client/default.nix +++ b/pkgs/development/python-modules/llamaindex-py-client/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index_client" ]; - meta = with lib; { + meta = { description = "Client for LlamaIndex"; homepage = "https://pypi.org/project/llamaindex-py-client/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix index 205abfc7b384..0e80950ea2a1 100644 --- a/pkgs/development/python-modules/llfuse/default.nix +++ b/pkgs/development/python-modules/llfuse/default.nix @@ -56,13 +56,13 @@ buildPythonPackage rec { "test_listdir" # accesses /usr/bin ]; - meta = with lib; { + meta = { description = "Python bindings for the low-level FUSE API"; homepage = "https://github.com/python-llfuse/python-llfuse"; changelog = "https://github.com/python-llfuse/python-llfuse/raw/release-${version}/Changes.rst"; - license = licenses.lgpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor dotlambda ]; diff --git a/pkgs/development/python-modules/llmx/default.nix b/pkgs/development/python-modules/llmx/default.nix index 7e122e793618..0753860cc3d1 100644 --- a/pkgs/development/python-modules/llmx/default.nix +++ b/pkgs/development/python-modules/llmx/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "llmx" ]; - meta = with lib; { + meta = { description = "Library for LLM Text Generation"; homepage = "https://github.com/victordibia/llmx"; mainProgram = "llmx"; - license = licenses.mit; - maintainers = with maintainers; [ moraxyc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moraxyc ]; }; } diff --git a/pkgs/development/python-modules/lm-format-enforcer/default.nix b/pkgs/development/python-modules/lm-format-enforcer/default.nix index c375566b1848..78487f2b8a56 100644 --- a/pkgs/development/python-modules/lm-format-enforcer/default.nix +++ b/pkgs/development/python-modules/lm-format-enforcer/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lmformatenforcer" ]; - meta = with lib; { + meta = { description = "Enforce the output format (JSON Schema, Regex etc) of a language model"; changelog = "https://github.com/noamgat/lm-format-enforcer/releases/tag/${src.tag}"; homepage = "https://github.com/noamgat/lm-format-enforcer"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/lmnotify/default.nix b/pkgs/development/python-modules/lmnotify/default.nix index 77876dfb2174..5d55092f81cc 100644 --- a/pkgs/development/python-modules/lmnotify/default.nix +++ b/pkgs/development/python-modules/lmnotify/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lmnotify" ]; - meta = with lib; { + meta = { description = "Python package for sending notifications to LaMetric Time"; homepage = "https://github.com/keans/lmnotify"; - license = licenses.mit; - maintainers = with maintainers; [ rhoriguchi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rhoriguchi ]; }; } diff --git a/pkgs/development/python-modules/lmtpd/default.nix b/pkgs/development/python-modules/lmtpd/default.nix index fce22c244937..9e50439a0a1f 100644 --- a/pkgs/development/python-modules/lmtpd/default.nix +++ b/pkgs/development/python-modules/lmtpd/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lmtpd" ]; - meta = with lib; { + meta = { description = "LMTP counterpart to smtpd in the Python standard library"; homepage = "https://github.com/moggers87/lmtpd"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/lnkparse3/default.nix b/pkgs/development/python-modules/lnkparse3/default.nix index 6748c54eb69f..f702cab97aa0 100644 --- a/pkgs/development/python-modules/lnkparse3/default.nix +++ b/pkgs/development/python-modules/lnkparse3/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "LnkParse3" ]; - meta = with lib; { + meta = { description = "Windows Shortcut file (LNK) parser"; homepage = "https://github.com/Matmaus/LnkParse3"; changelog = "https://github.com/Matmaus/LnkParse3/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/loca/default.nix b/pkgs/development/python-modules/loca/default.nix index 87969790bb89..34722bb74ef5 100644 --- a/pkgs/development/python-modules/loca/default.nix +++ b/pkgs/development/python-modules/loca/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { doCheck = false; # all checks are static analyses pythonImportsCheck = [ "loca" ]; - meta = with lib; { + meta = { description = "Local locations"; homepage = "https://pypi.org/project/loca"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; }; } diff --git a/pkgs/development/python-modules/localimport/default.nix b/pkgs/development/python-modules/localimport/default.nix index 6b913495a6f8..ca6f7e3e0286 100644 --- a/pkgs/development/python-modules/localimport/default.nix +++ b/pkgs/development/python-modules/localimport/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "localimport" ]; - meta = with lib; { + meta = { homepage = "https://github.com/NiklasRosenstein/py-localimport"; description = "Isolated import of Python modules"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/localstack-client/default.nix b/pkgs/development/python-modules/localstack-client/default.nix index 0e1a630f0cc9..b8c347c33e20 100644 --- a/pkgs/development/python-modules/localstack-client/default.nix +++ b/pkgs/development/python-modules/localstack-client/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { inherit (pkgs) localstack; }; - meta = with lib; { + meta = { description = "Lightweight Python client for LocalStack"; homepage = "https://github.com/localstack/localstack-python-client"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/localzone/default.nix b/pkgs/development/python-modules/localzone/default.nix index 3839d19b6954..9a171d898163 100644 --- a/pkgs/development/python-modules/localzone/default.nix +++ b/pkgs/development/python-modules/localzone/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { --replace-fail 'raises((AttributeError, DNSSyntaxError))' 'raises((AttributeError, DNSSyntaxError, ValueError))' ''; - meta = with lib; { + meta = { description = "Simple DNS library for managing zone files"; homepage = "https://localzone.iomaestro.com"; changelog = "https://github.com/ags-slc/localzone/blob/v${version}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ flyfloh ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ flyfloh ]; }; } diff --git a/pkgs/development/python-modules/locket/default.nix b/pkgs/development/python-modules/locket/default.nix index 5af41f471ca4..5dd96e504819 100644 --- a/pkgs/development/python-modules/locket/default.nix +++ b/pkgs/development/python-modules/locket/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "locket" ]; - meta = with lib; { + meta = { description = "Library which provides a lock that can be used by multiple processes"; homepage = "https://github.com/mwilliamson/locket.py"; - license = licenses.bsd2; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/logbook/default.nix b/pkgs/development/python-modules/logbook/default.nix index a5ec93ce6652..1f86ca901bd1 100644 --- a/pkgs/development/python-modules/logbook/default.nix +++ b/pkgs/development/python-modules/logbook/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { "test_redis_handler" ]; - meta = with lib; { + meta = { description = "Logging replacement for Python"; homepage = "https://logbook.readthedocs.io/"; changelog = "https://github.com/getlogbook/logbook/blob/${src.tag}/CHANGES"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/logfury/default.nix b/pkgs/development/python-modules/logfury/default.nix index fcd3fd9baa83..ae42c7085c29 100644 --- a/pkgs/development/python-modules/logfury/default.nix +++ b/pkgs/development/python-modules/logfury/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "logfury" ]; - meta = with lib; { + meta = { description = "Python module that allows for responsible, low-boilerplate logging of method calls"; homepage = "https://github.com/ppolewicz/logfury"; - license = licenses.bsd3; - maintainers = with maintainers; [ jwiegley ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jwiegley ]; }; } diff --git a/pkgs/development/python-modules/logging-journald/default.nix b/pkgs/development/python-modules/logging-journald/default.nix index 3dd36d8d1b2b..62354d5d005b 100644 --- a/pkgs/development/python-modules/logging-journald/default.nix +++ b/pkgs/development/python-modules/logging-journald/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "logging_journald" ]; - meta = with lib; { + meta = { description = "Logging handler for writing logs to the journald"; homepage = "https://github.com/mosquito/logging-journald"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/logical-unification/default.nix b/pkgs/development/python-modules/logical-unification/default.nix index f3b5d6e990be..749c975f784f 100644 --- a/pkgs/development/python-modules/logical-unification/default.nix +++ b/pkgs/development/python-modules/logical-unification/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "unification" ]; - meta = with lib; { + meta = { description = "Straightforward unification in Python that's extensible via generic functions"; homepage = "https://github.com/pythological/unification"; changelog = "https://github.com/pythological/unification/releases"; - license = licenses.bsd3; - maintainers = with maintainers; [ Etjean ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ Etjean ]; }; } diff --git a/pkgs/development/python-modules/logilab/common.nix b/pkgs/development/python-modules/logilab/common.nix index cdfa19c1acc2..2068c88702a8 100644 --- a/pkgs/development/python-modules/logilab/common.nix +++ b/pkgs/development/python-modules/logilab/common.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { export COLLECT_DEPRECATION_WARNINGS_PACKAGE_NAME=true ''; - meta = with lib; { + meta = { description = "Python packages and modules used by Logilab"; homepage = "https://logilab-common.readthedocs.io/"; changelog = "https://forge.extranet.logilab.fr/open-source/logilab-common/-/blob/branch/default/CHANGELOG.md"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; mainProgram = "logilab-pytest"; }; diff --git a/pkgs/development/python-modules/logilab/constraint.nix b/pkgs/development/python-modules/logilab/constraint.nix index e5b25be76b13..4def7b34eab0 100644 --- a/pkgs/development/python-modules/logilab/constraint.nix +++ b/pkgs/development/python-modules/logilab/constraint.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "logilab.constraint" ]; - meta = with lib; { + meta = { description = "Logilab-database provides some classes to make unified access to different"; homepage = "https://forge.extranet.logilab.fr/open-source/logilab-constraint"; changelog = "https://forge.extranet.logilab.fr/open-source/logilab-constraint/-/blob/${version}/CHANGELOG.md"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/logmatic-python/default.nix b/pkgs/development/python-modules/logmatic-python/default.nix index d129a16f7f9b..6caa08d7cf8e 100644 --- a/pkgs/development/python-modules/logmatic-python/default.nix +++ b/pkgs/development/python-modules/logmatic-python/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "logmatic" ]; - meta = with lib; { + meta = { description = "Python helpers to send logs to Logmatic.io"; homepage = "https://github.com/logmatic/logmatic-python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/logster/default.nix b/pkgs/development/python-modules/logster/default.nix index 0db0a88dacb6..1d34e72baafa 100644 --- a/pkgs/development/python-modules/logster/default.nix +++ b/pkgs/development/python-modules/logster/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ pygtail ]; - meta = with lib; { + meta = { description = "Parses log files, generates metrics for Graphite and Ganglia"; mainProgram = "logster"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/etsy/logster"; }; } diff --git a/pkgs/development/python-modules/logutils/default.nix b/pkgs/development/python-modules/logutils/default.nix index 71ba14b499a1..c610742cab03 100644 --- a/pkgs/development/python-modules/logutils/default.nix +++ b/pkgs/development/python-modules/logutils/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "logutils" ]; - meta = with lib; { + meta = { description = "Logging utilities"; homepage = "https://bitbucket.org/vinay.sajip/logutils/"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/logzero/default.nix b/pkgs/development/python-modules/logzero/default.nix index de6403d1eabd..3cf5a2e8e05b 100644 --- a/pkgs/development/python-modules/logzero/default.nix +++ b/pkgs/development/python-modules/logzero/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { homepage = "https://github.com/metachris/logzero"; description = "Robust and effective logging for Python 2 and 3"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/lomond/default.nix b/pkgs/development/python-modules/lomond/default.nix index 027e068fa544..c5468e91a754 100644 --- a/pkgs/development/python-modules/lomond/default.nix +++ b/pkgs/development/python-modules/lomond/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { "tests/test_integration.py" ]; - meta = with lib; { + meta = { description = "Websocket Client Library"; homepage = "https://github.com/wildfoundry/dataplicity-lomond"; - license = licenses.bsd3; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/looseversion/default.nix b/pkgs/development/python-modules/looseversion/default.nix index 2e87b083fe1a..5e20305804ab 100644 --- a/pkgs/development/python-modules/looseversion/default.nix +++ b/pkgs/development/python-modules/looseversion/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "looseversion" ]; - meta = with lib; { + meta = { description = "Version numbering for anarchists and software realists"; homepage = "https://github.com/effigies/looseversion"; changelog = "https://github.com/effigies/looseversion/blob/${version}/CHANGES.md"; - license = licenses.psfl; - maintainers = with maintainers; [ pelme ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ pelme ]; }; } diff --git a/pkgs/development/python-modules/loqedapi/default.nix b/pkgs/development/python-modules/loqedapi/default.nix index 2f3c1fdc405a..2bad2d41ee99 100644 --- a/pkgs/development/python-modules/loqedapi/default.nix +++ b/pkgs/development/python-modules/loqedapi/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "loqedAPI" ]; - meta = with lib; { + meta = { description = "Module to interact with the Loqed Smart Door Lock API"; homepage = "https://github.com/cpolhout/loqedAPI"; changelog = "https://github.com/cpolhout/loqedAPI/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/losant-rest/default.nix b/pkgs/development/python-modules/losant-rest/default.nix index 189a94b72c50..b7530c41ae31 100644 --- a/pkgs/development/python-modules/losant-rest/default.nix +++ b/pkgs/development/python-modules/losant-rest/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "platformrest" ]; - meta = with lib; { + meta = { description = "Python module for consuming the Losant IoT Platform API"; homepage = "https://github.com/Losant/losant-rest-python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lottie/default.nix b/pkgs/development/python-modules/lottie/default.nix index 5edfc4058d2c..17a0536e3817 100644 --- a/pkgs/development/python-modules/lottie/default.nix +++ b/pkgs/development/python-modules/lottie/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lottie" ]; - meta = with lib; { + meta = { description = "Framework to work with lottie files and telegram animated stickers (tgs)"; homepage = "https://gitlab.com/mattbas/python-lottie/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/development/python-modules/lpc-checksum/default.nix b/pkgs/development/python-modules/lpc-checksum/default.nix index 810878cec585..ded800bf4bcf 100644 --- a/pkgs/development/python-modules/lpc-checksum/default.nix +++ b/pkgs/development/python-modules/lpc-checksum/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lpc_checksum" ]; - meta = with lib; { + meta = { description = "Python script to calculate LPC firmware checksums"; mainProgram = "lpc_checksum"; homepage = "https://pypi.org/project/lpc-checksum/"; - license = licenses.mit; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ otavio ]; }; } diff --git a/pkgs/development/python-modules/lrcalc-python/default.nix b/pkgs/development/python-modules/lrcalc-python/default.nix index 65f9373629e4..448e07d8e2fd 100644 --- a/pkgs/development/python-modules/lrcalc-python/default.nix +++ b/pkgs/development/python-modules/lrcalc-python/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lrcalc" ]; - meta = with lib; { + meta = { description = "Littlewood-Richardson Calculator bindings"; homepage = "https://sites.math.rutgers.edu/~asbuch/lrcalc/"; - teams = [ teams.sage ]; - license = licenses.gpl3; + teams = [ lib.teams.sage ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/lru-dict/default.nix b/pkgs/development/python-modules/lru-dict/default.nix index 96c9c57c91fb..b52803a1fb4c 100644 --- a/pkgs/development/python-modules/lru-dict/default.nix +++ b/pkgs/development/python-modules/lru-dict/default.nix @@ -28,11 +28,11 @@ buildPythonPackage { pythonImportsCheck = [ "lru" ]; - meta = with lib; { + meta = { description = "Fast and memory efficient LRU cache for Python"; homepage = "https://github.com/amitdev/lru-dict"; changelog = "https://github.com/amitdev/lru-dict/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/lsassy/default.nix b/pkgs/development/python-modules/lsassy/default.nix index 00bdd5e17fdd..0980f13c25fc 100644 --- a/pkgs/development/python-modules/lsassy/default.nix +++ b/pkgs/development/python-modules/lsassy/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "lsassy" ]; - meta = with lib; { + meta = { description = "Python module to extract data from Local Security Authority Subsystem Service (LSASS)"; homepage = "https://github.com/Hackndo/lsassy"; changelog = "https://github.com/Hackndo/lsassy/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "lsassy"; }; } diff --git a/pkgs/development/python-modules/luddite/default.nix b/pkgs/development/python-modules/luddite/default.nix index a41e37244d66..e96063b22dc6 100644 --- a/pkgs/development/python-modules/luddite/default.nix +++ b/pkgs/development/python-modules/luddite/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pytest-mock ]; - meta = with lib; { + meta = { description = "Checks for out-of-date package versions"; mainProgram = "luddite"; homepage = "https://github.com/jumptrading/luddite"; - license = licenses.asl20; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/luftdaten/default.nix b/pkgs/development/python-modules/luftdaten/default.nix index 213db1480c14..c006695cb75f 100644 --- a/pkgs/development/python-modules/luftdaten/default.nix +++ b/pkgs/development/python-modules/luftdaten/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "luftdaten" ]; - meta = with lib; { + meta = { description = "Python API for interacting with luftdaten.info"; homepage = "https://github.com/home-assistant-ecosystem/python-luftdaten"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda fab ]; diff --git a/pkgs/development/python-modules/luhn/default.nix b/pkgs/development/python-modules/luhn/default.nix index 39c0a42a0278..6e8c8b7cff6b 100644 --- a/pkgs/development/python-modules/luhn/default.nix +++ b/pkgs/development/python-modules/luhn/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "luhn" ]; - meta = with lib; { + meta = { description = "Python module for generate and verify Luhn check digits"; homepage = "https://github.com/mmcloughlin/luhn"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lupa/default.nix b/pkgs/development/python-modules/lupa/default.nix index 3acc709a3023..9392a85e9a3a 100644 --- a/pkgs/development/python-modules/lupa/default.nix +++ b/pkgs/development/python-modules/lupa/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lupa" ]; - meta = with lib; { + meta = { description = "Lua in Python"; homepage = "https://github.com/scoder/lupa"; changelog = "https://github.com/scoder/lupa/blob/lupa-${version}/CHANGES.rst"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lupupy/default.nix b/pkgs/development/python-modules/lupupy/default.nix index 424e7a583ff0..6b62193f2218 100644 --- a/pkgs/development/python-modules/lupupy/default.nix +++ b/pkgs/development/python-modules/lupupy/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "lupupy" ]; - meta = with lib; { + meta = { description = "Python module to control Lupusec alarm control panels"; mainProgram = "lupupy"; homepage = "https://github.com/majuss/lupupy"; changelog = "https://github.com/majuss/lupupy/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/luqum/default.nix b/pkgs/development/python-modules/luqum/default.nix index 2a374d8ab3e7..21e21835ccf2 100644 --- a/pkgs/development/python-modules/luqum/default.nix +++ b/pkgs/development/python-modules/luqum/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "tests/test_elasticsearch/test_es_naming.py" ]; - meta = with lib; { + meta = { description = "Lucene query parser generating ElasticSearch queries"; homepage = "https://github.com/jurismarches/luqum"; changelog = "https://github.com/jurismarches/luqum/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/luxtronik/default.nix b/pkgs/development/python-modules/luxtronik/default.nix index fd1f6c474fa0..a39dda7d3617 100644 --- a/pkgs/development/python-modules/luxtronik/default.nix +++ b/pkgs/development/python-modules/luxtronik/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "luxtronik" ]; - meta = with lib; { + meta = { description = "Python library to interact with Luxtronik heatpump controllers"; homepage = "https://github.com/Bouni/python-luxtronik"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/lxmf/default.nix b/pkgs/development/python-modules/lxmf/default.nix index b49e18f29e1b..c8fd74940661 100644 --- a/pkgs/development/python-modules/lxmf/default.nix +++ b/pkgs/development/python-modules/lxmf/default.nix @@ -27,14 +27,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "LXMF" ]; - meta = with lib; { + meta = { description = "Lightweight Extensible Message Format for Reticulum"; homepage = "https://github.com/markqvist/lxmf"; changelog = "https://github.com/markqvist/LXMF/releases/tag/${src.tag}"; # Reticulum License # https://github.com/markqvist/LXMF/blob/master/LICENSE - license = licenses.unfree; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "lxmd"; }; } diff --git a/pkgs/development/python-modules/lxml/default.nix b/pkgs/development/python-modules/lxml/default.nix index 8780137b1c04..ca4523d99cf1 100644 --- a/pkgs/development/python-modules/lxml/default.nix +++ b/pkgs/development/python-modules/lxml/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { "lxml.etree" ]; - meta = with lib; { + meta = { changelog = "https://github.com/lxml/lxml/blob/lxml-${version}/CHANGES.txt"; description = "Pythonic binding for the libxml2 and libxslt libraries"; homepage = "https://lxml.de"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/lyricwikia/default.nix b/pkgs/development/python-modules/lyricwikia/default.nix index 24b46b47a25b..1d1c3398dc62 100644 --- a/pkgs/development/python-modules/lyricwikia/default.nix +++ b/pkgs/development/python-modules/lyricwikia/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { "test_integration" ]; - meta = with lib; { + meta = { description = "LyricWikia API for song lyrics"; mainProgram = "lyrics"; homepage = "https://github.com/enricobacis/lyricwikia"; changelog = "https://github.com/enricobacis/lyricwikia/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kmein ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kmein ]; }; } diff --git a/pkgs/development/python-modules/lz4/default.nix b/pkgs/development/python-modules/lz4/default.nix index a1f123b8ea2d..2384cf0b5e51 100644 --- a/pkgs/development/python-modules/lz4/default.nix +++ b/pkgs/development/python-modules/lz4/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ''; - meta = with lib; { + meta = { description = "LZ4 Bindings for Python"; homepage = "https://github.com/python-lz4/python-lz4"; changelog = "https://github.com/python-lz4/python-lz4/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/lzallright/default.nix b/pkgs/development/python-modules/lzallright/default.nix index 02e2f2308932..2cf0c27c84c1 100644 --- a/pkgs/development/python-modules/lzallright/default.nix +++ b/pkgs/development/python-modules/lzallright/default.nix @@ -41,13 +41,13 @@ buildPythonPackage rec { pytest = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = '' A Python 3.8+ binding for lzokay library which is an MIT licensed a minimal, C++14 implementation of the LZO compression format. ''; homepage = "https://github.com/vlaci/lzallright"; - license = licenses.mit; - maintainers = with maintainers; [ vlaci ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vlaci ]; }; } diff --git a/pkgs/development/python-modules/m2crypto/default.nix b/pkgs/development/python-modules/m2crypto/default.nix index da94945fa869..069974d30da1 100644 --- a/pkgs/development/python-modules/m2crypto/default.nix +++ b/pkgs/development/python-modules/m2crypto/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "M2Crypto" ]; - meta = with lib; { + meta = { description = "Python crypto and SSL toolkit"; homepage = "https://gitlab.com/m2crypto/m2crypto"; changelog = "https://gitlab.com/m2crypto/m2crypto/-/blob/${version}/CHANGES"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/m2r/default.nix b/pkgs/development/python-modules/m2r/default.nix index 24e752dd8d55..10a7f11e7e43 100644 --- a/pkgs/development/python-modules/m2r/default.nix +++ b/pkgs/development/python-modules/m2r/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://github.com/miyakogi/m2r"; description = "Markdown to reStructuredText converter"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # https://github.com/miyakogi/m2r/issues/66 broken = versionAtLeast mistune.version "2"; diff --git a/pkgs/development/python-modules/m3u8/default.nix b/pkgs/development/python-modules/m3u8/default.nix index 896ccb51d19c..9c1702ef6904 100644 --- a/pkgs/development/python-modules/m3u8/default.nix +++ b/pkgs/development/python-modules/m3u8/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "m3u8" ]; - meta = with lib; { + meta = { description = "Python m3u8 parser"; homepage = "https://github.com/globocom/m3u8"; changelog = "https://github.com/globocom/m3u8/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/mac-alias/default.nix b/pkgs/development/python-modules/mac-alias/default.nix index 8cdb98fc6c08..7ef8f3e69cd0 100644 --- a/pkgs/development/python-modules/mac-alias/default.nix +++ b/pkgs/development/python-modules/mac-alias/default.nix @@ -23,7 +23,7 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "mac_alias" ]; - meta = with lib; { + meta = { homepage = "https://github.com/al45tair/mac_alias"; description = "Generate or read binary Alias and Bookmark records from Python code"; mainProgram = "mac_alias"; @@ -34,7 +34,7 @@ buildPythonPackage rec { to generate a proper Alias or Bookmark record for a given file, so this module currently is not portable to other platforms. ''; - license = licenses.mit; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/mac-vendor-lookup/default.nix b/pkgs/development/python-modules/mac-vendor-lookup/default.nix index 2981d9b469d4..a088973a28e3 100644 --- a/pkgs/development/python-modules/mac-vendor-lookup/default.nix +++ b/pkgs/development/python-modules/mac-vendor-lookup/default.nix @@ -31,11 +31,11 @@ buildPythonPackage { pythonImportsCheck = [ "mac_vendor_lookup" ]; - meta = with lib; { + meta = { description = "Find the vendor for a given MAC address"; mainProgram = "mac_vendor_lookup"; homepage = "https://github.com/bauerj/mac_vendor_lookup"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/macaddress/default.nix b/pkgs/development/python-modules/macaddress/default.nix index b37e7313ec1f..f1f2063c2d88 100644 --- a/pkgs/development/python-modules/macaddress/default.nix +++ b/pkgs/development/python-modules/macaddress/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { enabledTestPaths = [ "test.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mentalisttraceur/python-macaddress"; description = "Module for handling hardware identifiers like MAC addresses"; - license = licenses.bsd0; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/development/python-modules/macholib/default.nix b/pkgs/development/python-modules/macholib/default.nix index aa32dfe02740..7efe8a3d717a 100644 --- a/pkgs/development/python-modules/macholib/default.nix +++ b/pkgs/development/python-modules/macholib/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { export PATH="$PATH:$out/bin" ''; - meta = with lib; { + meta = { description = "Analyze and edit Mach-O headers, the executable format used by Mac OS X"; homepage = "https://github.com/ronaldoussoren/macholib"; changelog = "https://github.com/ronaldoussoren/macholib/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ eveeifyeve ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eveeifyeve ]; }; } diff --git a/pkgs/development/python-modules/maestral/default.nix b/pkgs/development/python-modules/maestral/default.nix index 41b9fcc99646..bfb24b69f2f2 100644 --- a/pkgs/development/python-modules/maestral/default.nix +++ b/pkgs/development/python-modules/maestral/default.nix @@ -116,13 +116,13 @@ buildPythonPackage rec { passthru.tests.maestral = nixosTests.maestral; - meta = with lib; { + meta = { description = "Open-source Dropbox client for macOS and Linux"; mainProgram = "maestral"; homepage = "https://maestral.app"; changelog = "https://github.com/samschott/maestral/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium peterhoeg sfrijters diff --git a/pkgs/development/python-modules/magic-filter/default.nix b/pkgs/development/python-modules/magic-filter/default.nix index 1d0589d50ad7..5ab7873caf77 100644 --- a/pkgs/development/python-modules/magic-filter/default.nix +++ b/pkgs/development/python-modules/magic-filter/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "magic_filter" ]; - meta = with lib; { + meta = { description = "Magic filter based on dynamic attribute getter"; homepage = "https://github.com/aiogram/magic-filter"; changelog = "https://github.com/aiogram/magic-filter/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/development/python-modules/magic/default.nix b/pkgs/development/python-modules/magic/default.nix index adfad7f727a9..81c2e2b72e56 100644 --- a/pkgs/development/python-modules/magic/default.nix +++ b/pkgs/development/python-modules/magic/default.nix @@ -20,9 +20,9 @@ buildPythonPackage { # No test suite doCheck = false; - meta = with lib; { + meta = { description = "Python wrapper around libmagic"; homepage = "http://www.darwinsys.com/file/"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/development/python-modules/magicgui/default.nix b/pkgs/development/python-modules/magicgui/default.nix index ee84f8d39bb1..1a9b0e2ab9fb 100644 --- a/pkgs/development/python-modules/magicgui/default.nix +++ b/pkgs/development/python-modules/magicgui/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { inherit napari; }; - meta = with lib; { + meta = { description = "Build GUIs from python functions, using magic. (napari/magicgui)"; homepage = "https://github.com/pyapp-kit/magicgui"; changelog = "https://github.com/pyapp-kit/magicgui/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/mahotas/default.nix b/pkgs/development/python-modules/mahotas/default.nix index bf7430d249bd..f993c7a61b00 100644 --- a/pkgs/development/python-modules/mahotas/default.nix +++ b/pkgs/development/python-modules/mahotas/default.nix @@ -51,12 +51,12 @@ buildPythonPackage rec { disabled = stdenv.hostPlatform.isi686; # Failing tests - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Computer vision package based on numpy"; homepage = "https://mahotas.readthedocs.io/"; - maintainers = with maintainers; [ luispedro ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ luispedro ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/mailcap-fix/default.nix b/pkgs/development/python-modules/mailcap-fix/default.nix index 102d1f51a144..dbad311633e9 100644 --- a/pkgs/development/python-modules/mailcap-fix/default.nix +++ b/pkgs/development/python-modules/mailcap-fix/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "02lijkq6v379r8zkqg9q2srin3i80m4wvwik3hcbih0s14v0ng0i"; }; - meta = with lib; { + meta = { description = "Patched mailcap module that conforms to RFC 1524"; homepage = "https://github.com/michael-lazar/mailcap_fix"; - license = licenses.unlicense; + license = lib.licenses.unlicense; }; } diff --git a/pkgs/development/python-modules/mailchecker/default.nix b/pkgs/development/python-modules/mailchecker/default.nix index 92f962a1bc7f..6120717368f6 100644 --- a/pkgs/development/python-modules/mailchecker/default.nix +++ b/pkgs/development/python-modules/mailchecker/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "MailChecker" ]; - meta = with lib; { + meta = { description = "Module for temporary (disposable/throwaway) email detection"; homepage = "https://github.com/FGRibreau/mailchecker"; changelog = "https://github.com/FGRibreau/mailchecker/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mailchimp/default.nix b/pkgs/development/python-modules/mailchimp/default.nix index fc7e4a212b7c..ba1c503193dc 100644 --- a/pkgs/development/python-modules/mailchimp/default.nix +++ b/pkgs/development/python-modules/mailchimp/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { sed -i 's/==/>=/' setup.py ''; - meta = with lib; { + meta = { description = "CLI client and Python API library for the MailChimp email platform"; homepage = "http://apidocs.mailchimp.com/api/2.0/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/mailmanclient/default.nix b/pkgs/development/python-modules/mailmanclient/default.nix index 4a6091aab271..afd2b79a8be6 100644 --- a/pkgs/development/python-modules/mailmanclient/default.nix +++ b/pkgs/development/python-modules/mailmanclient/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mailmanclient" ]; - meta = with lib; { + meta = { description = "REST client for driving Mailman 3"; homepage = "https://www.gnu.org/software/mailman/"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/maison/default.nix b/pkgs/development/python-modules/maison/default.nix index 8202ab42651a..fc73d5435d47 100644 --- a/pkgs/development/python-modules/maison/default.nix +++ b/pkgs/development/python-modules/maison/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "maison" ]; - meta = with lib; { + meta = { description = "Library to read settings from config files"; homepage = "https://github.com/dbatten5/maison"; changelog = "https://github.com/dbatten5/maison/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "maison"; }; } diff --git a/pkgs/development/python-modules/makefun/default.nix b/pkgs/development/python-modules/makefun/default.nix index 2929f361f5c2..2065105ac8b1 100644 --- a/pkgs/development/python-modules/makefun/default.nix +++ b/pkgs/development/python-modules/makefun/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "makefun" ]; - meta = with lib; { + meta = { homepage = "https://github.com/smarie/python-makefun"; description = "Small library to dynamically create python functions"; - license = licenses.bsd2; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/mako/default.nix b/pkgs/development/python-modules/mako/default.nix index 26722271b75d..69395d3124e2 100644 --- a/pkgs/development/python-modules/mako/default.nix +++ b/pkgs/development/python-modules/mako/default.nix @@ -61,13 +61,13 @@ buildPythonPackage rec { "test_bytestring_passthru" ]; - meta = with lib; { + meta = { description = "Super-fast templating language"; mainProgram = "mako-render"; homepage = "https://www.makotemplates.org/"; changelog = "https://docs.makotemplates.org/en/latest/changelog.html"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/malduck/default.nix b/pkgs/development/python-modules/malduck/default.nix index 43a915f16a0b..1594f6c60e79 100644 --- a/pkgs/development/python-modules/malduck/default.nix +++ b/pkgs/development/python-modules/malduck/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "malduck" ]; - meta = with lib; { + meta = { description = "Helper for malware analysis"; homepage = "https://github.com/CERT-Polska/malduck"; changelog = "https://github.com/CERT-Polska/malduck/releases/tag/v${version}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "malduck"; }; } diff --git a/pkgs/development/python-modules/mamba-ssm/default.nix b/pkgs/development/python-modules/mamba-ssm/default.nix index edbda8265577..3d6b7cfa0512 100644 --- a/pkgs/development/python-modules/mamba-ssm/default.nix +++ b/pkgs/development/python-modules/mamba-ssm/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { # pytest tests not enabled due to nvidia GPU dependency pythonImportsCheck = [ "mamba_ssm" ]; - meta = with lib; { + meta = { description = "Linear-Time Sequence Modeling with Selective State Spaces"; homepage = "https://github.com/state-spaces/mamba"; - license = licenses.asl20; + license = lib.licenses.asl20; # The package requires CUDA or ROCm, the ROCm build hasn't # been completed or tested, so broken if not using cuda. broken = !cudaSupport; diff --git a/pkgs/development/python-modules/managesieve/default.nix b/pkgs/development/python-modules/managesieve/default.nix index a00f5f207db0..83fd69f51101 100644 --- a/pkgs/development/python-modules/managesieve/default.nix +++ b/pkgs/development/python-modules/managesieve/default.nix @@ -25,15 +25,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "managesieve" ]; - meta = with lib; { + meta = { description = "ManageSieve client library for remotely managing Sieve scripts"; homepage = "https://managesieve.readthedocs.io/"; # PSFL for the python module, GPLv3 only for sieveshell - license = with licenses; [ + license = with lib.licenses; [ gpl3Only psfl ]; - maintainers = with maintainers; [ dadada ]; + maintainers = with lib.maintainers; [ dadada ]; mainProgram = "sieveshell"; }; } diff --git a/pkgs/development/python-modules/mando/default.nix b/pkgs/development/python-modules/mando/default.nix index d6b8055a730c..174dbfdcdafe 100644 --- a/pkgs/development/python-modules/mando/default.nix +++ b/pkgs/development/python-modules/mando/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mando" ]; - meta = with lib; { + meta = { description = "Create Python CLI apps with little to no effort at all"; homepage = "https://mando.readthedocs.org"; changelog = "https://github.com/rubik/mando/blob/v${version}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/manga-ocr/default.nix b/pkgs/development/python-modules/manga-ocr/default.nix index a3163a1258cc..5e4d9ac98dec 100644 --- a/pkgs/development/python-modules/manga-ocr/default.nix +++ b/pkgs/development/python-modules/manga-ocr/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { unidic-lite ]; - meta = with lib; { + meta = { mainProgram = "manga_ocr"; description = "Optical character recognition for Japanese text, with the main focus being Japanese manga"; homepage = "https://github.com/kha-white/manga-ocr"; changelog = "https://github.com/kha-white/manga-ocr/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ laurent-f1z1 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ laurent-f1z1 ]; }; } diff --git a/pkgs/development/python-modules/manhole/default.nix b/pkgs/development/python-modules/manhole/default.nix index 940dc355e482..892915da25f1 100644 --- a/pkgs/development/python-modules/manhole/default.nix +++ b/pkgs/development/python-modules/manhole/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { py.test -vv -k "not test_uwsgi" ''; - meta = with lib; { + meta = { homepage = "https://github.com/ionelmc/python-manhole"; description = "Debugging manhole for Python applications"; mainProgram = "manhole-cli"; - license = licenses.bsd2; - maintainers = with maintainers; [ ivan ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ivan ]; }; } diff --git a/pkgs/development/python-modules/manifest-ml/default.nix b/pkgs/development/python-modules/manifest-ml/default.nix index f21bb697429a..8ef85ab93beb 100644 --- a/pkgs/development/python-modules/manifest-ml/default.nix +++ b/pkgs/development/python-modules/manifest-ml/default.nix @@ -114,11 +114,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "manifest" ]; - meta = with lib; { + meta = { description = "Manifest for Prompting Foundation Models"; homepage = "https://github.com/HazyResearch/manifest"; changelog = "https://github.com/HazyResearch/manifest/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/manifestoo-core/default.nix b/pkgs/development/python-modules/manifestoo-core/default.nix index 21f3278deb4b..7221627eaefc 100644 --- a/pkgs/development/python-modules/manifestoo-core/default.nix +++ b/pkgs/development/python-modules/manifestoo-core/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Library to reason about Odoo addons manifests"; homepage = "https://github.com/acsone/manifestoo-core"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/manifestoo/default.nix b/pkgs/development/python-modules/manifestoo/default.nix index fbaf2469856b..b02a563f2fdd 100644 --- a/pkgs/development/python-modules/manifestoo/default.nix +++ b/pkgs/development/python-modules/manifestoo/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Tool to reason about Odoo addons manifests"; homepage = "https://github.com/acsone/manifestoo"; - license = licenses.mit; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/manimpango/default.nix b/pkgs/development/python-modules/manimpango/default.nix index 22b8fa31bf6e..aa6c54dc8337 100644 --- a/pkgs/development/python-modules/manimpango/default.nix +++ b/pkgs/development/python-modules/manimpango/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "manimpango" ]; - meta = with lib; { + meta = { description = "Binding for Pango"; homepage = "https://github.com/ManimCommunity/ManimPango"; changelog = "https://github.com/ManimCommunity/ManimPango/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/manuel/default.nix b/pkgs/development/python-modules/manuel/default.nix index 52aede44e28c..af03bd46263e 100644 --- a/pkgs/development/python-modules/manuel/default.nix +++ b/pkgs/development/python-modules/manuel/default.nix @@ -33,9 +33,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ six ]; nativeCheckInputs = [ zope-testing ]; - meta = with lib; { + meta = { description = "Documentation builder"; homepage = "https://pypi.python.org/pypi/manuel"; - license = licenses.zpl20; + license = lib.licenses.zpl20; }; } diff --git a/pkgs/development/python-modules/manuf/default.nix b/pkgs/development/python-modules/manuf/default.nix index 9e520ee6caad..06704f6e7a58 100644 --- a/pkgs/development/python-modules/manuf/default.nix +++ b/pkgs/development/python-modules/manuf/default.nix @@ -47,15 +47,15 @@ buildPythonPackage rec { ''; }; - meta = with lib; { + meta = { homepage = "https://github.com/coolbho3k/manuf"; description = "Parser library for Wireshark's OUI database"; mainProgram = "manuf"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ lgpl3Plus asl20 ]; - maintainers = with maintainers; [ dsuetin ]; + maintainers = with lib.maintainers; [ dsuetin ]; }; } diff --git a/pkgs/development/python-modules/mapbox-earcut/default.nix b/pkgs/development/python-modules/mapbox-earcut/default.nix index 30d87f3beb41..8159486f2e8d 100644 --- a/pkgs/development/python-modules/mapbox-earcut/default.nix +++ b/pkgs/development/python-modules/mapbox-earcut/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mapbox_earcut" ]; - meta = with lib; { + meta = { homepage = "https://github.com/skogler/mapbox_earcut_python"; changelog = "https://github.com/skogler/mapbox_earcut_python/releases/tag/${src.tag}"; - license = licenses.isc; + license = lib.licenses.isc; description = "Mapbox-earcut fast triangulation of 2D-polygons"; longDescription = '' Python bindings for the C++ implementation of the Mapbox Earcut diff --git a/pkgs/development/python-modules/marisa-trie/default.nix b/pkgs/development/python-modules/marisa-trie/default.nix index d7d9fb0a63e1..e47cbef20291 100644 --- a/pkgs/development/python-modules/marisa-trie/default.nix +++ b/pkgs/development/python-modules/marisa-trie/default.nix @@ -49,7 +49,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "marisa_trie" ]; - meta = with lib; { + meta = { description = "Static memory-efficient Trie-like structures for Python based on marisa-trie C++ library"; longDescription = '' There are official SWIG-based Python bindings included in C++ library distribution. @@ -57,6 +57,6 @@ buildPythonPackage rec { ''; homepage = "https://github.com/kmike/marisa-trie"; changelog = "https://github.com/pytries/marisa-trie/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/markdown-include/default.nix b/pkgs/development/python-modules/markdown-include/default.nix index a1797b5ecd8d..f10f266f4b33 100644 --- a/pkgs/development/python-modules/markdown-include/default.nix +++ b/pkgs/development/python-modules/markdown-include/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Extension to Python-Markdown which provides an include function"; homepage = "https://github.com/cmacmackin/markdown-include"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/markdown-it-py/default.nix b/pkgs/development/python-modules/markdown-it-py/default.nix index 5aec1a636887..e62866961867 100644 --- a/pkgs/development/python-modules/markdown-it-py/default.nix +++ b/pkgs/development/python-modules/markdown-it-py/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { description = "Markdown parser in Python"; homepage = "https://markdown-it-py.readthedocs.io/"; changelog = "https://github.com/executablebooks/markdown-it-py/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "markdown-it"; }; } diff --git a/pkgs/development/python-modules/markdown-macros/default.nix b/pkgs/development/python-modules/markdown-macros/default.nix index aad691159b69..685151184f34 100644 --- a/pkgs/development/python-modules/markdown-macros/default.nix +++ b/pkgs/development/python-modules/markdown-macros/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Extension for python-markdown that makes writing trac-like macros easy"; homepage = "https://github.com/wnielson/markdown-macros"; - license = licenses.mit; - maintainers = [ maintainers.abigailbuccaneer ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.abigailbuccaneer ]; }; } diff --git a/pkgs/development/python-modules/markdown/default.nix b/pkgs/development/python-modules/markdown/default.nix index 18711d9c4dd7..259813eb918e 100644 --- a/pkgs/development/python-modules/markdown/default.nix +++ b/pkgs/development/python-modules/markdown/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "markdown" ]; - meta = with lib; { + meta = { changelog = "https://github.com/Python-Markdown/markdown/blob/${src.tag}/docs/changelog.md"; description = "Python implementation of John Gruber's Markdown"; mainProgram = "markdown_py"; homepage = "https://github.com/Python-Markdown/markdown"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/markdownify/default.nix b/pkgs/development/python-modules/markdownify/default.nix index 3d8ba9d94402..e342d3df4c68 100644 --- a/pkgs/development/python-modules/markdownify/default.nix +++ b/pkgs/development/python-modules/markdownify/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "markdownify" ]; - meta = with lib; { + meta = { description = "HTML to Markdown converter"; homepage = "https://github.com/matthewwithanm/python-markdownify"; changelog = "https://github.com/matthewwithanm/python-markdownify/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ McSinyx ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ McSinyx ]; mainProgram = "markdownify"; }; } diff --git a/pkgs/development/python-modules/markuppy/default.nix b/pkgs/development/python-modules/markuppy/default.nix index 97ba3e34528f..bfa1a21dfbf8 100644 --- a/pkgs/development/python-modules/markuppy/default.nix +++ b/pkgs/development/python-modules/markuppy/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "MarkupPy" ]; - meta = with lib; { + meta = { description = "HTML/XML generator"; homepage = "https://github.com/tylerbakke/MarkupPy"; - license = licenses.mit; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/markups/default.nix b/pkgs/development/python-modules/markups/default.nix index 82189a623df6..a91c83a738d4 100644 --- a/pkgs/development/python-modules/markups/default.nix +++ b/pkgs/development/python-modules/markups/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "markups" ]; - meta = with lib; { + meta = { description = "Wrapper around various text markup languages"; homepage = "https://github.com/retext-project/pymarkups"; - license = licenses.bsd3; - maintainers = with maintainers; [ klntsky ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ klntsky ]; }; } diff --git a/pkgs/development/python-modules/markupsafe/default.nix b/pkgs/development/python-modules/markupsafe/default.nix index afc0b824b38d..ff05a550813d 100644 --- a/pkgs/development/python-modules/markupsafe/default.nix +++ b/pkgs/development/python-modules/markupsafe/default.nix @@ -52,7 +52,7 @@ buildPythonPackage rec { }"; description = "Implements a XML/HTML/XHTML Markup safe string"; homepage = "https://palletsprojects.com/p/markupsafe/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/marqo/default.nix b/pkgs/development/python-modules/marqo/default.nix index 3e9c98a5d5f4..a4f68be28e89 100644 --- a/pkgs/development/python-modules/marqo/default.nix +++ b/pkgs/development/python-modules/marqo/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "marqo" ]; - meta = with lib; { + meta = { description = "Unified embedding generation and search engine"; homepage = "https://marqo.ai"; changelog = "https://github.com/marqo-ai/py-marqo/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ naufik ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ naufik ]; }; } diff --git a/pkgs/development/python-modules/marshmallow-dataclass/default.nix b/pkgs/development/python-modules/marshmallow-dataclass/default.nix index 04d5d53ebc75..a6dcdd19f13c 100644 --- a/pkgs/development/python-modules/marshmallow-dataclass/default.nix +++ b/pkgs/development/python-modules/marshmallow-dataclass/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "marshmallow_dataclass" ]; - meta = with lib; { + meta = { description = "Automatic generation of marshmallow schemas from dataclasses"; homepage = "https://github.com/lovasoa/marshmallow_dataclass"; changelog = "https://github.com/lovasoa/marshmallow_dataclass/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/marshmallow-oneofschema/default.nix b/pkgs/development/python-modules/marshmallow-oneofschema/default.nix index 2bcd4c4037fc..37b708c2eb16 100644 --- a/pkgs/development/python-modules/marshmallow-oneofschema/default.nix +++ b/pkgs/development/python-modules/marshmallow-oneofschema/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "marshmallow_oneofschema" ]; - meta = with lib; { + meta = { description = "Marshmallow library extension that allows schema (de)multiplexing"; changelog = "https://github.com/marshmallow-code/marshmallow-oneofschema/blob/${version}/CHANGELOG.rst"; homepage = "https://github.com/marshmallow-code/marshmallow-oneofschema"; - license = licenses.mit; - maintainers = with maintainers; [ ivan-tkatchev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ivan-tkatchev ]; }; } diff --git a/pkgs/development/python-modules/marshmallow-polyfield/default.nix b/pkgs/development/python-modules/marshmallow-polyfield/default.nix index 5230a614c6b1..bb2a4231dc7f 100644 --- a/pkgs/development/python-modules/marshmallow-polyfield/default.nix +++ b/pkgs/development/python-modules/marshmallow-polyfield/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "marshmallow" ]; - meta = with lib; { + meta = { description = "Extension to Marshmallow to allow for polymorphic fields"; homepage = "https://github.com/Bachmann1234/marshmallow-polyfield"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix index 481acaee550e..72f63dfa0d06 100644 --- a/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix +++ b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "SQLAlchemy integration with marshmallow"; homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy"; changelog = "https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/marshmallow/default.nix b/pkgs/development/python-modules/marshmallow/default.nix index 0ab9cf7f5dab..4c065eb081de 100644 --- a/pkgs/development/python-modules/marshmallow/default.nix +++ b/pkgs/development/python-modules/marshmallow/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "marshmallow" ]; - meta = with lib; { + meta = { description = "Library for converting complex objects to and from simple Python datatypes"; homepage = "https://github.com/marshmallow-code/marshmallow"; changelog = "https://github.com/marshmallow-code/marshmallow/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ cript0nauta ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cript0nauta ]; }; } diff --git a/pkgs/development/python-modules/masky/default.nix b/pkgs/development/python-modules/masky/default.nix index 0a19b4a18da9..8fd662a12800 100644 --- a/pkgs/development/python-modules/masky/default.nix +++ b/pkgs/development/python-modules/masky/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "masky" ]; - meta = with lib; { + meta = { description = "Library to remotely dump domain credentials"; mainProgram = "masky"; homepage = "https://github.com/Z4kSec/Masky"; changelog = "https://github.com/Z4kSec/Masky/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ elasticdog ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ elasticdog ]; }; } diff --git a/pkgs/development/python-modules/mastodon-py/default.nix b/pkgs/development/python-modules/mastodon-py/default.nix index ccf75e802b79..fa7c29b4452c 100644 --- a/pkgs/development/python-modules/mastodon-py/default.nix +++ b/pkgs/development/python-modules/mastodon-py/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mastodon" ]; - meta = with lib; { + meta = { changelog = "https://github.com/halcy/Mastodon.py/blob/${src.tag}/CHANGELOG.rst"; description = "Python wrapper for the Mastodon API"; homepage = "https://github.com/halcy/Mastodon.py"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/matchpy/default.nix b/pkgs/development/python-modules/matchpy/default.nix index d582af3fbecf..b66bfccc410e 100644 --- a/pkgs/development/python-modules/matchpy/default.nix +++ b/pkgs/development/python-modules/matchpy/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "matchpy" ]; - meta = with lib; { + meta = { description = "Library for pattern matching on symbolic expressions"; homepage = "https://github.com/HPAC/matchpy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/material-color-utilities/default.nix b/pkgs/development/python-modules/material-color-utilities/default.nix index 64d6cf576b56..38d4c63fcfaa 100644 --- a/pkgs/development/python-modules/material-color-utilities/default.nix +++ b/pkgs/development/python-modules/material-color-utilities/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "material_color_utilities_python" ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/material_color_utilities_python"; description = "Python port of material_color_utilities used for Material You colors"; - license = licenses.asl20; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/development/python-modules/matplotlib-inline/default.nix b/pkgs/development/python-modules/matplotlib-inline/default.nix index 424a4510ae2a..5362892a7173 100644 --- a/pkgs/development/python-modules/matplotlib-inline/default.nix +++ b/pkgs/development/python-modules/matplotlib-inline/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { inherit ipython; }; - meta = with lib; { + meta = { description = "Matplotlib Inline Back-end for IPython and Jupyter"; homepage = "https://github.com/ipython/matplotlib-inline"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/matplotlib-sixel/default.nix b/pkgs/development/python-modules/matplotlib-sixel/default.nix index 98da9405ad1b..b1ef83b41900 100644 --- a/pkgs/development/python-modules/matplotlib-sixel/default.nix +++ b/pkgs/development/python-modules/matplotlib-sixel/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sixel" ]; - meta = with lib; { + meta = { description = "Sixel graphics backend for matplotlib"; homepage = "https://github.com/jonathf/matplotlib-sixel"; - license = licenses.bsd3; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index 4c23466b9880..fb984e1064c7 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -197,15 +197,15 @@ buildPythonPackage rec { cd $out ''; - meta = with lib; { + meta = { description = "Python plotting library, making publication quality plots"; homepage = "https://matplotlib.org/"; changelog = "https://github.com/matplotlib/matplotlib/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ psfl bsd0 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 veprbl ]; diff --git a/pkgs/development/python-modules/matrix-common/default.nix b/pkgs/development/python-modules/matrix-common/default.nix index 3f6b50d6e265..b1801b861d6d 100644 --- a/pkgs/development/python-modules/matrix-common/default.nix +++ b/pkgs/development/python-modules/matrix-common/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "matrix_common" ]; - meta = with lib; { + meta = { description = "Common utilities for Synapse, Sydent and Sygnal"; homepage = "https://github.com/matrix-org/matrix-python-common"; - license = licenses.asl20; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sumnerevans ]; }; } diff --git a/pkgs/development/python-modules/matrix-nio/default.nix b/pkgs/development/python-modules/matrix-nio/default.nix index fba252975c70..75385ef5f24f 100644 --- a/pkgs/development/python-modules/matrix-nio/default.nix +++ b/pkgs/development/python-modules/matrix-nio/default.nix @@ -161,12 +161,12 @@ buildPythonPackage rec { inherit opsdroid pantalaimon zulip; }; - meta = with lib; { + meta = { homepage = "https://github.com/poljar/matrix-nio"; changelog = "https://github.com/poljar/matrix-nio/blob/${version}/CHANGELOG.md"; description = "Python Matrix client library, designed according to sans I/O principles"; - license = licenses.isc; - maintainers = with maintainers; [ + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ tilpner symphorien ]; diff --git a/pkgs/development/python-modules/mattermostdriver/default.nix b/pkgs/development/python-modules/mattermostdriver/default.nix index ce139015640d..d041e112027f 100644 --- a/pkgs/development/python-modules/mattermostdriver/default.nix +++ b/pkgs/development/python-modules/mattermostdriver/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Python Mattermost Driver"; homepage = "https://github.com/Vaelor/python-mattermost-driver"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mautrix/default.nix b/pkgs/development/python-modules/mautrix/default.nix index 7925ccdefc57..b4cf17e735d5 100644 --- a/pkgs/development/python-modules/mautrix/default.nix +++ b/pkgs/development/python-modules/mautrix/default.nix @@ -75,12 +75,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "mautrix" ]; - meta = with lib; { + meta = { description = "Asyncio Matrix framework"; homepage = "https://github.com/tulir/mautrix-python"; changelog = "https://github.com/mautrix/python/releases/tag/v${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nyanloutre ma27 sumnerevans diff --git a/pkgs/development/python-modules/maxcube-api/default.nix b/pkgs/development/python-modules/maxcube-api/default.nix index f82fc861bb4e..7b952e368322 100644 --- a/pkgs/development/python-modules/maxcube-api/default.nix +++ b/pkgs/development/python-modules/maxcube-api/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { "maxcube.cube" ]; - meta = with lib; { + meta = { description = "eQ-3/ELV MAX! Cube Python API"; homepage = "https://github.com/hackercowboy/python-maxcube-api"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/maxminddb/default.nix b/pkgs/development/python-modules/maxminddb/default.nix index df4ea5f300a9..e587e7143886 100644 --- a/pkgs/development/python-modules/maxminddb/default.nix +++ b/pkgs/development/python-modules/maxminddb/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # resulting in an exception when it can’t pickle the `lookup` local function. disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ "multiprocessing" ]; - meta = with lib; { + meta = { description = "Reader for the MaxMind DB format"; homepage = "https://github.com/maxmind/MaxMind-DB-Reader-python"; changelog = "https://github.com/maxmind/MaxMind-DB-Reader-python/blob/v${version}/HISTORY.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/maya/default.nix b/pkgs/development/python-modules/maya/default.nix index 64bb26167322..a3f33d38c0d3 100644 --- a/pkgs/development/python-modules/maya/default.nix +++ b/pkgs/development/python-modules/maya/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { "test_parse_iso8601" ]; - meta = with lib; { + meta = { description = "Datetimes for Humans"; homepage = "https://github.com/timofurrer/maya"; changelog = "https://github.com/timofurrer/maya/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mayavi/default.nix b/pkgs/development/python-modules/mayavi/default.nix index e8501f49a801..b645e5afa7fe 100644 --- a/pkgs/development/python-modules/mayavi/default.nix +++ b/pkgs/development/python-modules/mayavi/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { # stripping the ico file on macos cause segfault stripExclude = [ "*.ico" ]; - meta = with lib; { + meta = { description = "3D visualization of scientific data in Python"; homepage = "https://github.com/enthought/mayavi"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; mainProgram = "mayavi2"; }; diff --git a/pkgs/development/python-modules/mayim/default.nix b/pkgs/development/python-modules/mayim/default.nix index 8fd4a5732aa2..4f10e581ad05 100644 --- a/pkgs/development/python-modules/mayim/default.nix +++ b/pkgs/development/python-modules/mayim/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mayim" ]; - meta = with lib; { + meta = { description = "Asynchronous SQL hydrator"; homepage = "https://github.com/ahopkins/mayim"; - license = licenses.mit; - maintainers = with maintainers; [ huyngo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ huyngo ]; }; } diff --git a/pkgs/development/python-modules/mbddns/default.nix b/pkgs/development/python-modules/mbddns/default.nix index d738cca95394..d73f20b8f89d 100644 --- a/pkgs/development/python-modules/mbddns/default.nix +++ b/pkgs/development/python-modules/mbddns/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mbddns" ]; - meta = with lib; { + meta = { description = "Mythic Beasts Dynamic DNS updater"; homepage = "https://github.com/thinkl33t/mb-ddns"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mbstrdecoder/default.nix b/pkgs/development/python-modules/mbstrdecoder/default.nix index c914816defa5..5b8288f53eb9 100644 --- a/pkgs/development/python-modules/mbstrdecoder/default.nix +++ b/pkgs/development/python-modules/mbstrdecoder/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { checkInputs = [ faker ]; - meta = with lib; { + meta = { homepage = "https://github.com/thombashi/mbstrdecoder"; description = "Library for decoding multi-byte character strings"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/mccabe/default.nix b/pkgs/development/python-modules/mccabe/default.nix index 7c556d0b382f..35c6ab7e37ed 100644 --- a/pkgs/development/python-modules/mccabe/default.nix +++ b/pkgs/development/python-modules/mccabe/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # https://github.com/PyCQA/mccabe/issues/93 doCheck = false; - meta = with lib; { + meta = { description = "McCabe checker, plugin for flake8"; homepage = "https://github.com/flintwork/mccabe"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mcuuid/default.nix b/pkgs/development/python-modules/mcuuid/default.nix index c26cad00155c..aa1c91acd8d2 100644 --- a/pkgs/development/python-modules/mcuuid/default.nix +++ b/pkgs/development/python-modules/mcuuid/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mcuuid" ]; - meta = with lib; { + meta = { description = "Getting Minecraft player information from Mojang API"; homepage = "https://github.com/clerie/mcuuid"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ clerie ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ clerie ]; }; } diff --git a/pkgs/development/python-modules/md-toc/default.nix b/pkgs/development/python-modules/md-toc/default.nix index a10cd61c3cfb..24f489eadd54 100644 --- a/pkgs/development/python-modules/md-toc/default.nix +++ b/pkgs/development/python-modules/md-toc/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "md_toc" ]; - meta = with lib; { + meta = { description = "Table of contents generator for Markdown"; mainProgram = "md_toc"; homepage = "https://docs.franco.net.eu.org/md-toc/"; changelog = "https://blog.franco.net.eu.org/software/CHANGELOG-md-toc.html"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/md2gemini/default.nix b/pkgs/development/python-modules/md2gemini/default.nix index 08a39b7fb5e9..af493efa63a0 100644 --- a/pkgs/development/python-modules/md2gemini/default.nix +++ b/pkgs/development/python-modules/md2gemini/default.nix @@ -29,8 +29,8 @@ buildPythonPackage rec { meta = with lib; { description = "Markdown to Gemini text format conversion library"; homepage = "https://github.com/makeworld-the-better-one/md2gemini"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.kaction ]; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.kaction ]; broken = versionAtLeast mistune.version "3"; }; } diff --git a/pkgs/development/python-modules/mdformat-admon/default.nix b/pkgs/development/python-modules/mdformat-admon/default.nix index 4870e256a3c6..1f26b5f3e543 100644 --- a/pkgs/development/python-modules/mdformat-admon/default.nix +++ b/pkgs/development/python-modules/mdformat-admon/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Mdformat plugin for admonitions"; homepage = "https://github.com/KyleKing/mdformat-admon"; - license = licenses.mit; - maintainers = with maintainers; [ aldoborrero ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/development/python-modules/mdformat-beautysh/default.nix b/pkgs/development/python-modules/mdformat-beautysh/default.nix index 015b26f27b87..db372b5c4231 100644 --- a/pkgs/development/python-modules/mdformat-beautysh/default.nix +++ b/pkgs/development/python-modules/mdformat-beautysh/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_beautysh" ]; - meta = with lib; { + meta = { description = "Mdformat plugin to beautify Bash scripts"; homepage = "https://github.com/hukkin/mdformat-beautysh"; changelog = "https://github.com/hukkin/mdformat-beautysh/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ aldoborrero ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/development/python-modules/mdformat-frontmatter/default.nix b/pkgs/development/python-modules/mdformat-frontmatter/default.nix index 95406c5c8eba..ab6d879221de 100644 --- a/pkgs/development/python-modules/mdformat-frontmatter/default.nix +++ b/pkgs/development/python-modules/mdformat-frontmatter/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_frontmatter" ]; - meta = with lib; { + meta = { description = "Mdformat plugin to ensure frontmatter is respected"; homepage = "https://github.com/butler54/mdformat-frontmatter"; changelog = "https://github.com/butler54/mdformat-frontmatter/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero polarmutex ]; diff --git a/pkgs/development/python-modules/mdformat-gfm/default.nix b/pkgs/development/python-modules/mdformat-gfm/default.nix index 75bed656fa06..d90cca6c4cc9 100644 --- a/pkgs/development/python-modules/mdformat-gfm/default.nix +++ b/pkgs/development/python-modules/mdformat-gfm/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_gfm" ]; - meta = with lib; { + meta = { description = "Mdformat plugin for GitHub Flavored Markdown compatibility"; homepage = "https://github.com/hukkin/mdformat-gfm"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero polarmutex ]; diff --git a/pkgs/development/python-modules/mdformat-mkdocs/default.nix b/pkgs/development/python-modules/mdformat-mkdocs/default.nix index 73c91c380429..c824dd32655e 100644 --- a/pkgs/development/python-modules/mdformat-mkdocs/default.nix +++ b/pkgs/development/python-modules/mdformat-mkdocs/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_mkdocs" ]; - meta = with lib; { + meta = { description = "Mdformat plugin for MkDocs"; homepage = "https://github.com/KyleKing/mdformat-mkdocs"; changelog = "https://github.com/KyleKing/mdformat-mkdocs/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ aldoborrero ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/development/python-modules/mdformat-nix-alejandra/default.nix b/pkgs/development/python-modules/mdformat-nix-alejandra/default.nix index 6224f2ad3372..f8a4fd5ea1b5 100644 --- a/pkgs/development/python-modules/mdformat-nix-alejandra/default.nix +++ b/pkgs/development/python-modules/mdformat-nix-alejandra/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Mdformat plugin format Nix code blocks with alejandra"; homepage = "https://github.com/aldoborrero/mdformat-nix-alejandra"; - license = licenses.mit; - maintainers = with maintainers; [ aldoborrero ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/development/python-modules/mdformat-simple-breaks/default.nix b/pkgs/development/python-modules/mdformat-simple-breaks/default.nix index 0f7c36fc86b2..8515390167ee 100644 --- a/pkgs/development/python-modules/mdformat-simple-breaks/default.nix +++ b/pkgs/development/python-modules/mdformat-simple-breaks/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_simple_breaks" ]; - meta = with lib; { + meta = { description = "Mdformat plugin to render thematic breaks using three dashes"; homepage = "https://github.com/csala/mdformat-simple-breaks"; - license = licenses.mit; - maintainers = with maintainers; [ aldoborrero ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/development/python-modules/mdformat-tables/default.nix b/pkgs/development/python-modules/mdformat-tables/default.nix index c600efbb2f72..918022355185 100644 --- a/pkgs/development/python-modules/mdformat-tables/default.nix +++ b/pkgs/development/python-modules/mdformat-tables/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_tables" ]; - meta = with lib; { + meta = { description = "Mdformat plugin for rendering tables"; homepage = "https://github.com/executablebooks/mdformat-tables"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero polarmutex ]; diff --git a/pkgs/development/python-modules/mdformat-toc/default.nix b/pkgs/development/python-modules/mdformat-toc/default.nix index 1b2fd6af0164..0a0526e90f0b 100644 --- a/pkgs/development/python-modules/mdformat-toc/default.nix +++ b/pkgs/development/python-modules/mdformat-toc/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_toc" ]; - meta = with lib; { + meta = { description = "Mdformat plugin to generate a table of contents"; homepage = "https://github.com/hukkin/mdformat-toc"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero polarmutex ]; diff --git a/pkgs/development/python-modules/mdformat/default.nix b/pkgs/development/python-modules/mdformat/default.nix index c9c3040424d9..e498e4c5c727 100644 --- a/pkgs/development/python-modules/mdformat/default.nix +++ b/pkgs/development/python-modules/mdformat/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { withPlugins = throw "Use pkgs.mdformat.withPlugins, i.e. the top-level attribute."; }; - meta = with lib; { + meta = { description = "CommonMark compliant Markdown formatter"; homepage = "https://mdformat.rtfd.io/"; changelog = "https://github.com/executablebooks/mdformat/blob/${version}/docs/users/changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab aldoborrero ]; diff --git a/pkgs/development/python-modules/mdit-py-plugins/default.nix b/pkgs/development/python-modules/mdit-py-plugins/default.nix index e15183ec07f2..840737850357 100644 --- a/pkgs/development/python-modules/mdit-py-plugins/default.nix +++ b/pkgs/development/python-modules/mdit-py-plugins/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdit_py_plugins" ]; - meta = with lib; { + meta = { description = "Collection of core plugins for markdown-it-py"; homepage = "https://github.com/executablebooks/mdit-py-plugins"; changelog = "https://github.com/executablebooks/mdit-py-plugins/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mdtraj/default.nix b/pkgs/development/python-modules/mdtraj/default.nix index fcbc8f4c931c..54292509ab70 100644 --- a/pkgs/development/python-modules/mdtraj/default.nix +++ b/pkgs/development/python-modules/mdtraj/default.nix @@ -107,11 +107,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdtraj" ]; - meta = with lib; { + meta = { description = "Open library for the analysis of molecular dynamics trajectories"; homepage = "https://github.com/mdtraj/mdtraj"; changelog = "https://github.com/mdtraj/mdtraj/releases/tag/${src.tag}"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/mdurl/default.nix b/pkgs/development/python-modules/mdurl/default.nix index 8e053530f396..3da52898b727 100644 --- a/pkgs/development/python-modules/mdurl/default.nix +++ b/pkgs/development/python-modules/mdurl/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdurl" ]; - meta = with lib; { + meta = { description = "URL utilities for markdown-it"; homepage = "https://github.com/hukkin/mdurl"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/meater-python/default.nix b/pkgs/development/python-modules/meater-python/default.nix index 1d707837ebe7..28fdfb22a65f 100644 --- a/pkgs/development/python-modules/meater-python/default.nix +++ b/pkgs/development/python-modules/meater-python/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "meater" ]; - meta = with lib; { + meta = { description = "Library for the Apption Labs Meater cooking probe"; homepage = "https://github.com/Sotolotl/meater-python"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mecab-python3/default.nix b/pkgs/development/python-modules/mecab-python3/default.nix index af59ff250ee4..1f5ef0f27ba9 100644 --- a/pkgs/development/python-modules/mecab-python3/default.nix +++ b/pkgs/development/python-modules/mecab-python3/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "MeCab" ]; - meta = with lib; { + meta = { description = "Python wrapper for mecab: Morphological Analysis engine"; homepage = "https://github.com/SamuraiT/mecab-python3"; changelog = "https://github.com/SamuraiT/mecab-python3/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl21 bsd3 diff --git a/pkgs/development/python-modules/mechanicalsoup/default.nix b/pkgs/development/python-modules/mechanicalsoup/default.nix index 50f9b41924fd..ae2e94e5a2fe 100644 --- a/pkgs/development/python-modules/mechanicalsoup/default.nix +++ b/pkgs/development/python-modules/mechanicalsoup/default.nix @@ -58,12 +58,12 @@ buildPythonPackage rec { "test_select_form_associated_elements" ]; - meta = with lib; { + meta = { description = "Python library for automating interaction with websites"; homepage = "https://github.com/hickford/MechanicalSoup"; changelog = "https://github.com/MechanicalSoup/MechanicalSoup/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jgillich fab ]; diff --git a/pkgs/development/python-modules/mechanize/default.nix b/pkgs/development/python-modules/mechanize/default.nix index ae9aca2c360a..5c9754e7f009 100644 --- a/pkgs/development/python-modules/mechanize/default.nix +++ b/pkgs/development/python-modules/mechanize/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "test_password_manager" ]; - meta = with lib; { + meta = { description = "Stateful programmatic web browsing in Python"; homepage = "https://github.com/python-mechanize/mechanize"; changelog = "https://github.com/python-mechanize/mechanize/blob/v${version}/ChangeLog"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/medallion/default.nix b/pkgs/development/python-modules/medallion/default.nix index a39bbe4bdda7..a6676d4a70a1 100644 --- a/pkgs/development/python-modules/medallion/default.nix +++ b/pkgs/development/python-modules/medallion/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "medallion" ]; - meta = with lib; { + meta = { description = "Minimal implementation of a TAXII 2.1 Server in Python"; homepage = "https://medallion.readthedocs.io/en/latest/"; changelog = "https://github.com/oasis-open/cti-taxii-server/blob/v${version}/CHANGES.txt"; - license = licenses.bsd3; - maintainers = with maintainers; [ PapayaJackal ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ PapayaJackal ]; }; } diff --git a/pkgs/development/python-modules/mediafile/default.nix b/pkgs/development/python-modules/mediafile/default.nix index ddf3f147eaff..205dd9605bde 100644 --- a/pkgs/development/python-modules/mediafile/default.nix +++ b/pkgs/development/python-modules/mediafile/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mediafile" ]; - meta = with lib; { + meta = { description = "Python interface to the metadata tags for many audio file formats"; homepage = "https://github.com/beetbox/mediafile"; changelog = "https://github.com/beetbox/mediafile/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/mediafire-dl/default.nix b/pkgs/development/python-modules/mediafire-dl/default.nix index 86c1f341a569..9c3b31399984 100644 --- a/pkgs/development/python-modules/mediafire-dl/default.nix +++ b/pkgs/development/python-modules/mediafire-dl/default.nix @@ -27,11 +27,11 @@ buildPythonPackage { pythonImportsCheck = [ "mediafire_dl" ]; - meta = with lib; { + meta = { description = "Simple command-line script to download files from mediafire based on gdown"; homepage = "https://github.com/Juvenal-Yescas/mediafire-dl"; - license = licenses.mit; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ euxane ]; mainProgram = "mediafire-dl"; }; } diff --git a/pkgs/development/python-modules/mediapy/default.nix b/pkgs/development/python-modules/mediapy/default.nix index bbee510b8d6d..600bf177340a 100644 --- a/pkgs/development/python-modules/mediapy/default.nix +++ b/pkgs/development/python-modules/mediapy/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mediapy" ]; - meta = with lib; { + meta = { description = "Read/write/show images and videos in an IPython notebook"; homepage = "https://github.com/google/mediapy"; changelog = "https://github.com/google/mediapy/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ mcwitt ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mcwitt ]; }; } diff --git a/pkgs/development/python-modules/medpy/default.nix b/pkgs/development/python-modules/medpy/default.nix index 8a3891bef272..1ca8011791da 100644 --- a/pkgs/development/python-modules/medpy/default.nix +++ b/pkgs/development/python-modules/medpy/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "medpy.utilities" ]; - meta = with lib; { + meta = { description = "Medical image processing library"; homepage = "https://loli.github.io/medpy"; changelog = "https://github.com/loli/medpy/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/meilisearch/default.nix b/pkgs/development/python-modules/meilisearch/default.nix index bdc9debb5566..1374887798b7 100644 --- a/pkgs/development/python-modules/meilisearch/default.nix +++ b/pkgs/development/python-modules/meilisearch/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { # Tests spin up a local server and are not mocking the requests doCheck = false; - meta = with lib; { + meta = { description = "Client for the Meilisearch API"; homepage = "https://github.com/meilisearch/meilisearch-python"; changelog = "https://github.com/meilisearch/meilisearch-python/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/meld3/default.nix b/pkgs/development/python-modules/meld3/default.nix index 482fb76afee5..cc67de2ee01c 100644 --- a/pkgs/development/python-modules/meld3/default.nix +++ b/pkgs/development/python-modules/meld3/default.nix @@ -16,9 +16,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "HTML/XML templating engine used by supervisor"; homepage = "https://github.com/supervisor/meld3"; - license = licenses.free; + license = lib.licenses.free; }; } diff --git a/pkgs/development/python-modules/memestra/default.nix b/pkgs/development/python-modules/memestra/default.nix index d9add2a93460..0e93275b2ff2 100644 --- a/pkgs/development/python-modules/memestra/default.nix +++ b/pkgs/development/python-modules/memestra/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "memestra" ]; - meta = with lib; { + meta = { description = "Linter that tracks reference to deprecated functions"; homepage = "https://github.com/QuantStack/memestra"; - license = licenses.bsd3; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/memory-allocator/default.nix b/pkgs/development/python-modules/memory-allocator/default.nix index df8fd162fd41..50846d0c09b8 100644 --- a/pkgs/development/python-modules/memory-allocator/default.nix +++ b/pkgs/development/python-modules/memory-allocator/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Extension class to allocate memory easily with cython"; homepage = "https://github.com/sagemath/memory_allocator/"; - teams = [ teams.sage ]; - license = licenses.lgpl3Plus; + teams = [ lib.teams.sage ]; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/memory-profiler/default.nix b/pkgs/development/python-modules/memory-profiler/default.nix index a23929a52be2..4bc43fcc11c1 100644 --- a/pkgs/development/python-modules/memory-profiler/default.nix +++ b/pkgs/development/python-modules/memory-profiler/default.nix @@ -20,7 +20,7 @@ python.pkgs.buildPythonPackage rec { matplotlib # needed for plotting memory usage ]; - meta = with lib; { + meta = { description = "Module for monitoring memory usage of a process"; mainProgram = "mprof"; longDescription = '' @@ -28,6 +28,6 @@ python.pkgs.buildPythonPackage rec { well as line-by-line analysis of memory consumption for python programs. ''; homepage = "https://pypi.python.org/pypi/memory_profiler"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/memory-tempfile/default.nix b/pkgs/development/python-modules/memory-tempfile/default.nix index a50a7c50de60..c3f8a612663f 100644 --- a/pkgs/development/python-modules/memory-tempfile/default.nix +++ b/pkgs/development/python-modules/memory-tempfile/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "memory_tempfile" ]; - meta = with lib; { + meta = { description = "Create temporary files and temporary dirs in memory-based filesystems on Linux"; homepage = "https://github.com/mbello/memory-tempfile"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/merge3/default.nix b/pkgs/development/python-modules/merge3/default.nix index b40b9aca05a3..54ea35daab4f 100644 --- a/pkgs/development/python-modules/merge3/default.nix +++ b/pkgs/development/python-modules/merge3/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "merge3" ]; - meta = with lib; { + meta = { description = "Python implementation of 3-way merge"; mainProgram = "merge3"; homepage = "https://github.com/breezy-team/merge3"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mergedb/default.nix b/pkgs/development/python-modules/mergedb/default.nix index cbf4baafc355..e065f9c5238e 100644 --- a/pkgs/development/python-modules/mergedb/default.nix +++ b/pkgs/development/python-modules/mergedb/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mergedb" ]; - meta = with lib; { + meta = { description = "Tool/library for deep merging YAML files"; mainProgram = "mergedb"; homepage = "https://github.com/graysonhead/mergedb"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ graysonhead ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ graysonhead ]; }; } diff --git a/pkgs/development/python-modules/mergedeep/default.nix b/pkgs/development/python-modules/mergedeep/default.nix index ebb396a99089..eeb055381880 100644 --- a/pkgs/development/python-modules/mergedeep/default.nix +++ b/pkgs/development/python-modules/mergedeep/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { checkPhase = "pytest"; pythonImportsCheck = [ "mergedeep" ]; - meta = with lib; { + meta = { homepage = "https://github.com/clarketm/mergedeep"; description = "Deep merge function for python"; - license = licenses.mit; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/mergedict/default.nix b/pkgs/development/python-modules/mergedict/default.nix index d68c9d9af361..8095593919b1 100644 --- a/pkgs/development/python-modules/mergedict/default.nix +++ b/pkgs/development/python-modules/mergedict/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mergedict" ]; - meta = with lib; { + meta = { description = "Python dict with a merge() method"; homepage = "https://github.com/schettino72/mergedict"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/merkletools/default.nix b/pkgs/development/python-modules/merkletools/default.nix index 5dc519c801c1..c06d14da00e0 100644 --- a/pkgs/development/python-modules/merkletools/default.nix +++ b/pkgs/development/python-modules/merkletools/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "merkletools" ]; - meta = with lib; { + meta = { description = "Python tools for creating Merkle trees, generating Merkle proofs, and verification of Merkle proofs"; homepage = "https://github.com/Tierion/pymerkletools"; changelog = "https://github.com/Tierion/pymerkletools/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/meross-iot/default.nix b/pkgs/development/python-modules/meross-iot/default.nix index 73f0b3220105..865fd09978a8 100644 --- a/pkgs/development/python-modules/meross-iot/default.nix +++ b/pkgs/development/python-modules/meross-iot/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "meross_iot" ]; - meta = with lib; { + meta = { description = "Python library to interact with Meross devices"; homepage = "https://github.com/albertogeniola/MerossIot"; changelog = "https://github.com/albertogeniola/MerossIot/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/meshcat/default.nix b/pkgs/development/python-modules/meshcat/default.nix index da2329596bd4..1cb7410a039e 100644 --- a/pkgs/development/python-modules/meshcat/default.nix +++ b/pkgs/development/python-modules/meshcat/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { # requires a running MeshCat viewer doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/rdeits/meshcat-python"; description = "WebGL-based 3D visualizer for Python"; mainProgram = "meshcat-server"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/python-modules/meshcore/default.nix b/pkgs/development/python-modules/meshcore/default.nix index 752d5d88d896..0fb38fbcb28f 100644 --- a/pkgs/development/python-modules/meshcore/default.nix +++ b/pkgs/development/python-modules/meshcore/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "meshcore" ]; - meta = with lib; { + meta = { description = "Python library for communicating with meshcore companion radios"; homepage = "https://github.com/meshcore-dev/meshcore_py"; - license = licenses.mit; - maintainers = [ maintainers.haylin ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.haylin ]; }; } diff --git a/pkgs/development/python-modules/meshlabxml/default.nix b/pkgs/development/python-modules/meshlabxml/default.nix index f3ed182c0515..9e9a6025390c 100644 --- a/pkgs/development/python-modules/meshlabxml/default.nix +++ b/pkgs/development/python-modules/meshlabxml/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "meshlabxml" ]; - meta = with lib; { + meta = { homepage = "https://github.com/3DLIRIOUS/MeshLabXML"; description = "Create and run MeshLab XML scripts with Python"; - license = licenses.lgpl21; - maintainers = with maintainers; [ nh2 ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ nh2 ]; }; } diff --git a/pkgs/development/python-modules/meshtastic/default.nix b/pkgs/development/python-modules/meshtastic/default.nix index f95265c204d4..7dc6dc981ab0 100644 --- a/pkgs/development/python-modules/meshtastic/default.nix +++ b/pkgs/development/python-modules/meshtastic/default.nix @@ -120,11 +120,11 @@ buildPythonPackage rec { "test_TCPInterface" ]; - meta = with lib; { + meta = { description = "Python API for talking to Meshtastic devices"; homepage = "https://github.com/meshtastic/python"; changelog = "https://github.com/meshtastic/python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/messagebird/default.nix b/pkgs/development/python-modules/messagebird/default.nix index 302ce5087bc6..a3a1b6ec2902 100644 --- a/pkgs/development/python-modules/messagebird/default.nix +++ b/pkgs/development/python-modules/messagebird/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "tests/test_request_validator.py" ]; - meta = with lib; { + meta = { description = "Client for MessageBird's REST API"; homepage = "https://github.com/messagebird/python-rest-api"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/metakernel/default.nix b/pkgs/development/python-modules/metakernel/default.nix index b02e080ada61..7b52ee58bed6 100644 --- a/pkgs/development/python-modules/metakernel/default.nix +++ b/pkgs/development/python-modules/metakernel/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "metakernel" ]; - meta = with lib; { + meta = { description = "Jupyter/IPython Kernel Tools"; homepage = "https://github.com/Calysto/metakernel"; changelog = "https://github.com/Calysto/metakernel/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ thomasjm ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ thomasjm ]; }; } diff --git a/pkgs/development/python-modules/metar/default.nix b/pkgs/development/python-modules/metar/default.nix index 2377ec39d48b..7781634e3161 100644 --- a/pkgs/development/python-modules/metar/default.nix +++ b/pkgs/development/python-modules/metar/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "metar" ]; - meta = with lib; { + meta = { description = "Python parser for coded METAR weather reports"; homepage = "https://github.com/python-metar/python-metar"; changelog = "https://github.com/python-metar/python-metar/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ bsd1 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd1 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/metawear/default.nix b/pkgs/development/python-modules/metawear/default.nix index 526e216a2309..a9f4e429ccab 100644 --- a/pkgs/development/python-modules/metawear/default.nix +++ b/pkgs/development/python-modules/metawear/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "mbientlab.metawear" ]; - meta = with lib; { + meta = { description = "Python bindings for the MetaWear C++ SDK by MbientLab"; homepage = "https://github.com/mbientlab/metawear-sdk-python"; - license = with licenses; [ unfree ]; - maintainers = with maintainers; [ stepbrobd ]; - platforms = platforms.linux; + license = with lib.licenses; [ unfree ]; + maintainers = with lib.maintainers; [ stepbrobd ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/meteoalertapi/default.nix b/pkgs/development/python-modules/meteoalertapi/default.nix index a2f84a590fd5..49e95f02c96e 100644 --- a/pkgs/development/python-modules/meteoalertapi/default.nix +++ b/pkgs/development/python-modules/meteoalertapi/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "meteoalertapi" ]; - meta = with lib; { + meta = { description = "Python wrapper for MeteoAlarm.org"; homepage = "https://github.com/rolfberkenbosch/meteoalert-api"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/meteocalc/default.nix b/pkgs/development/python-modules/meteocalc/default.nix index 75008e31fd1a..c27ead35c87b 100644 --- a/pkgs/development/python-modules/meteocalc/default.nix +++ b/pkgs/development/python-modules/meteocalc/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "meteocalc" ]; - meta = with lib; { + meta = { description = "Module for calculation of meteorological variables"; homepage = "https://github.com/malexer/meteocalc"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/meteofrance-api/default.nix b/pkgs/development/python-modules/meteofrance-api/default.nix index 7435395da31a..ed506fc4d49d 100644 --- a/pkgs/development/python-modules/meteofrance-api/default.nix +++ b/pkgs/development/python-modules/meteofrance-api/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { "test_workflow" ]; - meta = with lib; { + meta = { description = "Module to access information from the Meteo-France API"; homepage = "https://github.com/hacf-fr/meteofrance-api"; changelog = "https://github.com/hacf-fr/meteofrance-api/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "meteofrance-api"; }; } diff --git a/pkgs/development/python-modules/methodtools/default.nix b/pkgs/development/python-modules/methodtools/default.nix index 88898db177ee..6c525ab06a5f 100644 --- a/pkgs/development/python-modules/methodtools/default.nix +++ b/pkgs/development/python-modules/methodtools/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Expands the functools lru_cache to classes"; homepage = "https://github.com/youknowone/methodtools"; changelog = "https://github.com/youknowone/methodtools/releases/tag/${version}"; - license = licenses.bsd2WithViews; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.bsd2WithViews; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/mezzanine/default.nix b/pkgs/development/python-modules/mezzanine/default.nix index e96d65184f84..2e4f36b1dc16 100644 --- a/pkgs/development/python-modules/mezzanine/default.nix +++ b/pkgs/development/python-modules/mezzanine/default.nix @@ -67,7 +67,7 @@ buildPythonPackage rec { requirements-parser ]; - meta = with lib; { + meta = { description = "Content management platform built using the Django framework"; mainProgram = "mezzanine-project"; longDescription = '' @@ -87,8 +87,8 @@ buildPythonPackage rec { ''; homepage = "http://mezzanine.jupo.org/"; downloadPage = "https://github.com/stephenmcd/mezzanine/releases"; - license = licenses.bsd2; - maintainers = with maintainers; [ prikhi ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ prikhi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/mf2py/default.nix b/pkgs/development/python-modules/mf2py/default.nix index 10926deaeb77..9d5d69ca4ebb 100644 --- a/pkgs/development/python-modules/mf2py/default.nix +++ b/pkgs/development/python-modules/mf2py/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mf2py" ]; - meta = with lib; { + meta = { description = "Microformats2 parser written in Python"; homepage = "https://microformats.org/wiki/mf2py"; changelog = "https://github.com/microformats/mf2py/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/mhcgnomes/default.nix b/pkgs/development/python-modules/mhcgnomes/default.nix index f409daef50ec..b5a1660e5774 100644 --- a/pkgs/development/python-modules/mhcgnomes/default.nix +++ b/pkgs/development/python-modules/mhcgnomes/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { pythonImportsCheck = [ "mhcgnomes" ]; - meta = with lib; { + meta = { description = "Parsing MHC nomenclature in the wild"; homepage = "https://github.com/pirl-unc/mhcgnomes"; - license = licenses.asl20; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/miauth/default.nix b/pkgs/development/python-modules/miauth/default.nix index aec9084ed773..fbf45abcc1b1 100644 --- a/pkgs/development/python-modules/miauth/default.nix +++ b/pkgs/development/python-modules/miauth/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "miauth" ]; - meta = with lib; { + meta = { description = "Authenticate and interact with Xiaomi devices over BLE"; homepage = "https://github.com/dnandha/miauth"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "miauth"; }; } diff --git a/pkgs/development/python-modules/micawber/default.nix b/pkgs/development/python-modules/micawber/default.nix index 1bb99b81d534..a4cec517c377 100644 --- a/pkgs/development/python-modules/micawber/default.nix +++ b/pkgs/development/python-modules/micawber/default.nix @@ -20,16 +20,16 @@ buildPythonPackage rec { propagatedBuildInputs = [ beautifulsoup4 ]; - meta = with lib; { + meta = { homepage = "https://micawber.readthedocs.io/en/latest/"; description = "Module for extracting rich content from URLs"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' micawber supplies a few methods for retrieving rich metadata about a variety of links, such as links to youtube videos. micawber also provides functions for parsing blocks of text and html and replacing links to videos with rich embedded content. ''; - maintainers = with maintainers; [ davidak ]; + maintainers = with lib.maintainers; [ davidak ]; }; } diff --git a/pkgs/development/python-modules/micloud/default.nix b/pkgs/development/python-modules/micloud/default.nix index b6d325395c8f..8e917c51b758 100644 --- a/pkgs/development/python-modules/micloud/default.nix +++ b/pkgs/development/python-modules/micloud/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "micloud" ]; - meta = with lib; { + meta = { description = "Xiaomi cloud connect library"; mainProgram = "micloud"; homepage = "https://github.com/Squachen/micloud"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/microdata/default.nix b/pkgs/development/python-modules/microdata/default.nix index d53ecea8defc..cb3e852900c0 100644 --- a/pkgs/development/python-modules/microdata/default.nix +++ b/pkgs/development/python-modules/microdata/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "microdata" ]; - meta = with lib; { + meta = { description = "Library for extracting html microdata"; mainProgram = "microdata"; homepage = "https://github.com/edsu/microdata"; - license = licenses.cc0; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/microsoft-kiota-abstractions/default.nix b/pkgs/development/python-modules/microsoft-kiota-abstractions/default.nix index 51b9c580fc54..624baae907d6 100644 --- a/pkgs/development/python-modules/microsoft-kiota-abstractions/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-abstractions/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { rev-prefix = "microsoft-kiota-abstractions-v"; }; - meta = with lib; { + meta = { description = "Abstractions library for Kiota generated Python clients"; homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/abstractions/"; changelog = "https://github.com/microsoft/kiota-python/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/microsoft-kiota-authentication-azure/default.nix b/pkgs/development/python-modules/microsoft-kiota-authentication-azure/default.nix index 92cd33b30412..c27136f94caf 100644 --- a/pkgs/development/python-modules/microsoft-kiota-authentication-azure/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-authentication-azure/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { rev-prefix = "microsoft-kiota-authentication-azure-v"; }; - meta = with lib; { + meta = { description = "Kiota Azure authentication provider"; homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/authentication/azure"; changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-authentication-azure-${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/microsoft-kiota-http/default.nix b/pkgs/development/python-modules/microsoft-kiota-http/default.nix index 4780a0b2df93..19f499b4cda9 100644 --- a/pkgs/development/python-modules/microsoft-kiota-http/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-http/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { rev-prefix = "microsoft-kiota-http-v"; }; - meta = with lib; { + meta = { description = "HTTP request adapter implementation for Kiota clients for Python"; homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/http/httpx"; changelog = "https://github.com/microsoft/kiota-python/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/microsoft-kiota-serialization-form/default.nix b/pkgs/development/python-modules/microsoft-kiota-serialization-form/default.nix index 99776c5a8fd5..e13a9b9f1fed 100644 --- a/pkgs/development/python-modules/microsoft-kiota-serialization-form/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-serialization-form/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { rev-prefix = "microsoft-kiota-serialization-form-v"; }; - meta = with lib; { + meta = { description = "Form serialization implementation for Kiota clients in Python"; homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/serialization/form"; changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-serialization-form-${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix b/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix index 5cad54c01f12..bdc41127c2b2 100644 --- a/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-serialization-json/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { rev-prefix = "microsoft-kiota-serialization-json-v"; }; - meta = with lib; { + meta = { description = "JSON serialization implementation for Kiota clients in Python"; homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/serialization/json"; changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-serialization-json-${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/microsoft-kiota-serialization-multipart/default.nix b/pkgs/development/python-modules/microsoft-kiota-serialization-multipart/default.nix index 6c1324fc3aa1..b5bf69efad3b 100644 --- a/pkgs/development/python-modules/microsoft-kiota-serialization-multipart/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-serialization-multipart/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { rev-prefix = "microsoft-kiota-serialization-multipart-v"; }; - meta = with lib; { + meta = { description = "Multipart serialization implementation for Kiota clients in Python"; homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/serialization/multipart"; changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-serialization-multipart-${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/microsoft-kiota-serialization-text/default.nix b/pkgs/development/python-modules/microsoft-kiota-serialization-text/default.nix index 033ea8db3e05..5fcf7d460dc9 100644 --- a/pkgs/development/python-modules/microsoft-kiota-serialization-text/default.nix +++ b/pkgs/development/python-modules/microsoft-kiota-serialization-text/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { rev-prefix = "microsoft-kiota-serialization-text-v"; }; - meta = with lib; { + meta = { description = "Text serialization implementation for Kiota generated clients in Python"; homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/serialization/text"; changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-serialization-text-${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/midea-beautiful-air/default.nix b/pkgs/development/python-modules/midea-beautiful-air/default.nix index 22cbfb5fbd99..c2edd1f5c6af 100644 --- a/pkgs/development/python-modules/midea-beautiful-air/default.nix +++ b/pkgs/development/python-modules/midea-beautiful-air/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "midea_beautiful" ]; - meta = with lib; { + meta = { description = "Python client for accessing Midea air conditioners and dehumidifiers (Midea, Comfee, Inventor EVO) via local network"; homepage = "https://github.com/nbogojevic/midea-beautiful-air"; changelog = "https://github.com/nbogojevic/midea-beautiful-air/releases/tag/v${version}"; - maintainers = with maintainers; [ k900 ]; + maintainers = with lib.maintainers; [ k900 ]; mainProgram = "midea-beautiful-air-cli"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/midea-local/default.nix b/pkgs/development/python-modules/midea-local/default.nix index 68bbab053129..e6aed0538dc6 100644 --- a/pkgs/development/python-modules/midea-local/default.nix +++ b/pkgs/development/python-modules/midea-local/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { platformdirs ]; - meta = with lib; { + meta = { description = "Control your Midea M-Smart appliances via local area network"; homepage = "https://github.com/midea-lan/midea-local"; changelog = "https://github.com/midea-lan/midea-local/releases/tag/${src.tag}"; - maintainers = with maintainers; [ k900 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/midiutil/default.nix b/pkgs/development/python-modules/midiutil/default.nix index 82a4464b07fc..1ea3b74e569d 100644 --- a/pkgs/development/python-modules/midiutil/default.nix +++ b/pkgs/development/python-modules/midiutil/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { sha256 = "02m9sqv36zrzgz5zg2w9qmz8snzlm27yg3ways2hgipgs4xriykr"; }; - meta = with lib; { + meta = { homepage = "https://github.com/MarkCWirt/MIDIUtil"; description = "Pure python library for creating multi-track MIDI files"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mido/default.nix b/pkgs/development/python-modules/mido/default.nix index 0a4547b1fd1f..af8177f1cdef 100644 --- a/pkgs/development/python-modules/mido/default.nix +++ b/pkgs/development/python-modules/mido/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mido" ]; - meta = with lib; { + meta = { description = "MIDI Objects for Python"; homepage = "https://mido.readthedocs.io"; changelog = "https://github.com/mido/mido/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/milc/default.nix b/pkgs/development/python-modules/milc/default.nix index bfd09db372c0..7fc9d4afc1c4 100644 --- a/pkgs/development/python-modules/milc/default.nix +++ b/pkgs/development/python-modules/milc/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "milc" ]; - meta = with lib; { + meta = { description = "Opinionated Batteries-Included Python 3 CLI Framework"; mainProgram = "milc-color"; homepage = "https://milc.clueboard.co"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/milksnake/default.nix b/pkgs/development/python-modules/milksnake/default.nix index 16b0bf2a9577..f1d58a12b3e4 100644 --- a/pkgs/development/python-modules/milksnake/default.nix +++ b/pkgs/development/python-modules/milksnake/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # tests rely on pip/venv doCheck = false; - meta = with lib; { + meta = { description = "Python library that extends setuptools for binary extensions"; homepage = "https://github.com/getsentry/milksnake"; - license = licenses.asl20; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/mill-local/default.nix b/pkgs/development/python-modules/mill-local/default.nix index 2b298fa1f0a4..c171dbf4a157 100644 --- a/pkgs/development/python-modules/mill-local/default.nix +++ b/pkgs/development/python-modules/mill-local/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mill_local" ]; - meta = with lib; { + meta = { description = "Python module to communicate locally with Mill heaters"; homepage = "https://github.com/Danielhiversen/pyMillLocal"; changelog = "https://github.com/Danielhiversen/pyMillLocal/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/millheater/default.nix b/pkgs/development/python-modules/millheater/default.nix index 85168053a234..e43d3e2559c0 100644 --- a/pkgs/development/python-modules/millheater/default.nix +++ b/pkgs/development/python-modules/millheater/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mill" ]; - meta = with lib; { + meta = { description = "Python library for Mill heater devices"; homepage = "https://github.com/Danielhiversen/pymill"; changelog = "https://github.com/Danielhiversen/pymill/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/minexr/default.nix b/pkgs/development/python-modules/minexr/default.nix index d99149d8b568..48dbc0ed2b73 100644 --- a/pkgs/development/python-modules/minexr/default.nix +++ b/pkgs/development/python-modules/minexr/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pillow ]; - meta = with lib; { + meta = { description = "Minimal, standalone OpenEXR reader for single-part, uncompressed scan line files"; homepage = "https://github.com/cheind/py-minexr"; - license = licenses.mit; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/miniaudio/default.nix b/pkgs/development/python-modules/miniaudio/default.nix index 6d857d248e76..050a24bc2d25 100644 --- a/pkgs/development/python-modules/miniaudio/default.nix +++ b/pkgs/development/python-modules/miniaudio/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "miniaudio" ]; - meta = with lib; { + meta = { changelog = "https://github.com/irmen/pyminiaudio/releases/tag/v${version}"; description = "Python bindings for the miniaudio library and its decoders"; homepage = "https://github.com/irmen/pyminiaudio"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/minichain/default.nix b/pkgs/development/python-modules/minichain/default.nix index 4c87c4c9e2c9..58475976b568 100644 --- a/pkgs/development/python-modules/minichain/default.nix +++ b/pkgs/development/python-modules/minichain/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Tiny library for coding with large language models"; homepage = "https://srush-minichain.hf.space"; changelog = "https://github.com/srush/MiniChain/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/minidb/default.nix b/pkgs/development/python-modules/minidb/default.nix index 84dc6e01501f..17ff273efcb7 100644 --- a/pkgs/development/python-modules/minidb/default.nix +++ b/pkgs/development/python-modules/minidb/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "minidb" ]; - meta = with lib; { + meta = { description = "SQLite3-based store for Python objects"; homepage = "https://thp.io/2010/minidb/"; - license = licenses.isc; - maintainers = with maintainers; [ tv ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ tv ]; }; } diff --git a/pkgs/development/python-modules/minidump/default.nix b/pkgs/development/python-modules/minidump/default.nix index d50fdfaeedfc..9c9456028ad5 100644 --- a/pkgs/development/python-modules/minidump/default.nix +++ b/pkgs/development/python-modules/minidump/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "minidump" ]; - meta = with lib; { + meta = { description = "Python library to parse and read Microsoft minidump file format"; homepage = "https://github.com/skelsec/minidump"; changelog = "https://github.com/skelsec/minidump/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "minidump"; }; } diff --git a/pkgs/development/python-modules/miniful/default.nix b/pkgs/development/python-modules/miniful/default.nix index 53bdf601899e..db046f213b17 100644 --- a/pkgs/development/python-modules/miniful/default.nix +++ b/pkgs/development/python-modules/miniful/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "miniful" ]; - meta = with lib; { + meta = { description = "Minimal Fuzzy Library"; homepage = "https://github.com/aresio/miniful"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/minikanren/default.nix b/pkgs/development/python-modules/minikanren/default.nix index 911b6edbbd65..ecfc66738735 100644 --- a/pkgs/development/python-modules/minikanren/default.nix +++ b/pkgs/development/python-modules/minikanren/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "kanren" ]; - meta = with lib; { + meta = { description = "Relational programming in Python"; homepage = "https://github.com/pythological/kanren"; changelog = "https://github.com/pythological/kanren/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ Etjean ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ Etjean ]; }; } diff --git a/pkgs/development/python-modules/minikerberos/default.nix b/pkgs/development/python-modules/minikerberos/default.nix index a049cbcdf0cf..a500a9cf0414 100644 --- a/pkgs/development/python-modules/minikerberos/default.nix +++ b/pkgs/development/python-modules/minikerberos/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "minikerberos" ]; - meta = with lib; { + meta = { description = "Kerberos manipulation library in Python"; homepage = "https://github.com/skelsec/minikerberos"; changelog = "https://github.com/skelsec/minikerberos/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/minimal-snowplow-tracker/default.nix b/pkgs/development/python-modules/minimal-snowplow-tracker/default.nix index 2cf47bd6c186..75d2be1b9569 100644 --- a/pkgs/development/python-modules/minimal-snowplow-tracker/default.nix +++ b/pkgs/development/python-modules/minimal-snowplow-tracker/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "snowplow_tracker" ]; - meta = with lib; { + meta = { description = "Minimal snowplow event tracker"; homepage = "https://github.com/dbt-labs/snowplow-python-tracker"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mausch ]; }; diff --git a/pkgs/development/python-modules/minimock/default.nix b/pkgs/development/python-modules/minimock/default.nix index 543c32987f85..2c8baecd56f5 100644 --- a/pkgs/development/python-modules/minimock/default.nix +++ b/pkgs/development/python-modules/minimock/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "minimock" ]; - meta = with lib; { + meta = { description = "Minimalistic mocking library"; homepage = "https://pypi.python.org/pypi/MiniMock"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/minio/default.nix b/pkgs/development/python-modules/minio/default.nix index 4d0fbec40c94..a90137d566d5 100644 --- a/pkgs/development/python-modules/minio/default.nix +++ b/pkgs/development/python-modules/minio/default.nix @@ -59,10 +59,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "minio" ]; - meta = with lib; { + meta = { description = "Simple APIs to access any Amazon S3 compatible object storage server"; homepage = "https://github.com/minio/minio-py"; changelog = "https://github.com/minio/minio-py/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/miniupnpc/default.nix b/pkgs/development/python-modules/miniupnpc/default.nix index 2e88758b0ec7..3b7f3b08a6d7 100644 --- a/pkgs/development/python-modules/miniupnpc/default.nix +++ b/pkgs/development/python-modules/miniupnpc/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { which ]; - meta = with lib; { + meta = { description = "MiniUPnP client"; homepage = "http://miniupnp.free.fr/"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/mip/default.nix b/pkgs/development/python-modules/mip/default.nix index 18e8360ed063..45abd7fcff7b 100644 --- a/pkgs/development/python-modules/mip/default.nix +++ b/pkgs/development/python-modules/mip/default.nix @@ -84,13 +84,13 @@ buildPythonPackage rec { inherit gurobipy numpy; }; - meta = with lib; { + meta = { homepage = "https://python-mip.com/"; description = "Collection of Python tools for the modeling and solution of Mixed-Integer Linear programs (MIPs)"; downloadPage = "https://github.com/coin-or/python-mip/releases"; changelog = "https://github.com/coin-or/python-mip/releases/tag/${version}"; - license = licenses.epl20; + license = lib.licenses.epl20; broken = stdenv.hostPlatform.isAarch64; - maintainers = with maintainers; [ nessdoor ]; + maintainers = with lib.maintainers; [ nessdoor ]; }; } diff --git a/pkgs/development/python-modules/mir-eval/default.nix b/pkgs/development/python-modules/mir-eval/default.nix index e72fe775c5fc..ba1bca747865 100644 --- a/pkgs/development/python-modules/mir-eval/default.nix +++ b/pkgs/development/python-modules/mir-eval/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mir_eval" ]; - meta = with lib; { + meta = { description = "Common metrics for common audio/music processing tasks"; homepage = "https://github.com/craffel/mir_eval"; - license = licenses.mit; - maintainers = with maintainers; [ carlthome ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ carlthome ]; }; } diff --git a/pkgs/development/python-modules/mirakuru/default.nix b/pkgs/development/python-modules/mirakuru/default.nix index 168a3175a703..f385d0761d74 100644 --- a/pkgs/development/python-modules/mirakuru/default.nix +++ b/pkgs/development/python-modules/mirakuru/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_daemons_killing" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dbfixtures/mirakuru"; description = "Process orchestration tool designed for functional and integration tests"; changelog = "https://github.com/ClearcodeHQ/mirakuru/blob/v${version}/CHANGES.rst"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/misaka/default.nix b/pkgs/development/python-modules/misaka/default.nix index 11ac651828a5..afa1f76f5646 100644 --- a/pkgs/development/python-modules/misaka/default.nix +++ b/pkgs/development/python-modules/misaka/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { # The tests require write access to $out doCheck = false; - meta = with lib; { + meta = { description = "CFFI binding for Hoedown, a markdown parsing library"; mainProgram = "misaka"; homepage = "https://misaka.61924.nl"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/python-modules/mistletoe/default.nix b/pkgs/development/python-modules/mistletoe/default.nix index 5a63e64af4db..0fa3778bebb2 100644 --- a/pkgs/development/python-modules/mistletoe/default.nix +++ b/pkgs/development/python-modules/mistletoe/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Fast and extensible Markdown parser"; mainProgram = "mistletoe"; homepage = "https://github.com/miyuchina/mistletoe"; changelog = "https://github.com/miyuchina/mistletoe/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/mitmproxy-rs/default.nix b/pkgs/development/python-modules/mitmproxy-rs/default.nix index 563123629d4e..fc18dc650786 100644 --- a/pkgs/development/python-modules/mitmproxy-rs/default.nix +++ b/pkgs/development/python-modules/mitmproxy-rs/default.nix @@ -44,13 +44,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "mitmproxy_rs" ]; - meta = with lib; { + meta = { description = "Rust bits in mitmproxy"; homepage = "https://github.com/mitmproxy/mitmproxy_rs"; changelog = "https://github.com/mitmproxy/mitmproxy_rs/blob/${src.rev}/CHANGELOG.md#${ lib.replaceStrings [ "." ] [ "" ] version }"; - license = licenses.mit; + license = lib.licenses.mit; inherit (mitmproxy.meta) maintainers; }; } diff --git a/pkgs/development/python-modules/mitmproxy/default.nix b/pkgs/development/python-modules/mitmproxy/default.nix index 31fc2db49508..ac8c44685f6c 100644 --- a/pkgs/development/python-modules/mitmproxy/default.nix +++ b/pkgs/development/python-modules/mitmproxy/default.nix @@ -149,11 +149,11 @@ buildPythonPackage rec { inherit (nixosTests) mitmproxy; }; - meta = with lib; { + meta = { description = "Man-in-the-middle proxy"; homepage = "https://mitmproxy.org/"; changelog = "https://github.com/mitmproxy/mitmproxy/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/mitogen/default.nix b/pkgs/development/python-modules/mitogen/default.nix index 1af088fc8ded..e07e07a28587 100644 --- a/pkgs/development/python-modules/mitogen/default.nix +++ b/pkgs/development/python-modules/mitogen/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mitogen" ]; - meta = with lib; { + meta = { description = "Python Library for writing distributed self-replicating programs"; homepage = "https://github.com/mitogen-hq/mitogen"; changelog = "https://github.com/mitogen-hq/mitogen/blob/${src.tag}/docs/changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mixins/default.nix b/pkgs/development/python-modules/mixins/default.nix index 655f129b8ab6..ab4f04aa5b2b 100644 --- a/pkgs/development/python-modules/mixins/default.nix +++ b/pkgs/development/python-modules/mixins/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mixins" ]; - meta = with lib; { + meta = { homepage = "https://github.com/nickderobertis/py-mixins"; description = "Mixin classes which may be added to your own classes to add certain functionality to them"; - maintainers = with maintainers; [ aanderse ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ aanderse ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/mixpanel/default.nix b/pkgs/development/python-modules/mixpanel/default.nix index d93d9cb3fc9f..5f232d58047b 100644 --- a/pkgs/development/python-modules/mixpanel/default.nix +++ b/pkgs/development/python-modules/mixpanel/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { responses ]; - meta = with lib; { + meta = { homepage = "https://github.com/mixpanel/mixpanel-python"; description = "Official Mixpanel Python library"; - license = licenses.asl20; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-autolinks-plugin/default.nix b/pkgs/development/python-modules/mkdocs-autolinks-plugin/default.nix index 202fe31ff0f2..5000ace07d71 100644 --- a/pkgs/development/python-modules/mkdocs-autolinks-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-autolinks-plugin/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_autolinks_plugin" ]; - meta = with lib; { + meta = { description = "MkDocs plugin that simplifies relative linking between documents"; homepage = "https://github.com/zachhannum/mkdocs-autolinks-plugin"; - license = licenses.mit; - maintainers = with maintainers; [ lucas-deangelis ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucas-deangelis ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-awesome-nav/default.nix b/pkgs/development/python-modules/mkdocs-awesome-nav/default.nix index 715ee093c246..cfb577a75aa2 100644 --- a/pkgs/development/python-modules/mkdocs-awesome-nav/default.nix +++ b/pkgs/development/python-modules/mkdocs-awesome-nav/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "tests/compatibility/test_static_i18n_suffix.py" ]; - meta = with lib; { + meta = { description = "Plugin for customizing the navigation structure of your MkDocs site"; homepage = "https://github.com/lukasgeiter/mkdocs-awesome-nav"; changelog = "https://github.com/lukasgeiter/mkdocs-awesome-nav/blob/${src.tag}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ phaer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-drawio-exporter/default.nix b/pkgs/development/python-modules/mkdocs-drawio-exporter/default.nix index 7d3146f9288d..7c217bc09141 100644 --- a/pkgs/development/python-modules/mkdocs-drawio-exporter/default.nix +++ b/pkgs/development/python-modules/mkdocs-drawio-exporter/default.nix @@ -34,14 +34,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_drawio_exporter" ]; - meta = with lib; { + meta = { description = "Module for exporting Draw.io diagrams"; longDescription = '' Exports your Draw.io diagrams at build time for easier embedding into your documentation. ''; homepage = "https://github.com/LukeCarrier/mkdocs-drawio-exporter/"; changelog = "https://github.com/LukeCarrier/mkdocs-drawio-exporter/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ snpschaaf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ snpschaaf ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-exclude/default.nix b/pkgs/development/python-modules/mkdocs-exclude/default.nix index c791e9dea6c2..c84e30d0a98c 100644 --- a/pkgs/development/python-modules/mkdocs-exclude/default.nix +++ b/pkgs/development/python-modules/mkdocs-exclude/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { # though. This package has no tests. doCheck = false; - meta = with lib; { + meta = { description = "Mkdocs plugin to exclude files from input using globs or regexes"; homepage = "https://github.com/apenwarr/mkdocs-exclude"; - license = licenses.asl20; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-get-deps/default.nix b/pkgs/development/python-modules/mkdocs-get-deps/default.nix index 42fd535a4c77..a29912306dbf 100644 --- a/pkgs/development/python-modules/mkdocs-get-deps/default.nix +++ b/pkgs/development/python-modules/mkdocs-get-deps/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_get_deps" ]; - meta = with lib; { + meta = { description = "Extra command for MkDocs that infers required PyPI packages from `plugins` in mkdocs.yml"; homepage = "https://github.com/mkdocs/get-deps"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-git-revision-date-localized-plugin/default.nix b/pkgs/development/python-modules/mkdocs-git-revision-date-localized-plugin/default.nix index 1517d96cebf2..805b6d3e6f63 100644 --- a/pkgs/development/python-modules/mkdocs-git-revision-date-localized-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-git-revision-date-localized-plugin/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_git_revision_date_localized_plugin" ]; - meta = with lib; { + meta = { description = "MkDocs plugin that enables displaying the date of the last git modification of a page"; homepage = "https://github.com/timvink/mkdocs-git-revision-date-localized-plugin"; changelog = "https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ totoroot ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ totoroot ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-gitlab-plugin/default.nix b/pkgs/development/python-modules/mkdocs-gitlab-plugin/default.nix index b5c9c683e78f..fa7e7691393c 100644 --- a/pkgs/development/python-modules/mkdocs-gitlab-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-gitlab-plugin/default.nix @@ -27,7 +27,7 @@ buildPythonPackage { pythonImportsCheck = [ "mkdocs_gitlab_plugin" ]; - meta = with lib; { + meta = { description = "MkDocs plugin to transform strings into links to a Gitlab repository"; longDescription = '' Transform handles such as #1234, %56, !789, &12 or $34 into links to a gitlab repository, @@ -35,7 +35,7 @@ buildPythonPackage { Before the #/%/!/&/$ is needed either a space, a '(', or a '['. ''; homepage = "https://gitlab.inria.fr/vidjil/mkdocs-gitlab-plugin"; - license = licenses.mit; - maintainers = with maintainers; [ snpschaaf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ snpschaaf ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-jupyter/default.nix b/pkgs/development/python-modules/mkdocs-jupyter/default.nix index c0286491927c..b5ed50e97365 100644 --- a/pkgs/development/python-modules/mkdocs-jupyter/default.nix +++ b/pkgs/development/python-modules/mkdocs-jupyter/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Use Jupyter Notebook in mkdocs"; homepage = "https://github.com/danielfrg/mkdocs-jupyter"; changelog = "https://github.com/danielfrg/mkdocs-jupyter/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ net-mist ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ net-mist ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-linkcheck/default.nix b/pkgs/development/python-modules/mkdocs-linkcheck/default.nix index 8da7fda26f2e..3e5082c8cfe8 100644 --- a/pkgs/development/python-modules/mkdocs-linkcheck/default.nix +++ b/pkgs/development/python-modules/mkdocs-linkcheck/default.nix @@ -28,7 +28,7 @@ buildPythonPackage { pythonImportsCheck = [ "mkdocs_linkcheck" ]; - meta = with lib; { + meta = { description = "Validate links in Markdown files for static site generators like MkDocs, Hugo or Jekyll"; mainProgram = "mkdocs-linkcheck"; longDescription = '' @@ -36,7 +36,7 @@ buildPythonPackage { static site generators like MkDocs, Hugo or Jekyll. It can be used with any text files containing links. ''; homepage = "https://github.com/byrnereese/mkdocs-linkcheck"; - license = licenses.mit; - maintainers = with maintainers; [ totoroot ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ totoroot ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-material/default.nix b/pkgs/development/python-modules/mkdocs-material/default.nix index 5ffb2dd1c5c7..dc191c126b2d 100644 --- a/pkgs/development/python-modules/mkdocs-material/default.nix +++ b/pkgs/development/python-modules/mkdocs-material/default.nix @@ -83,13 +83,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs" ]; - meta = with lib; { + meta = { changelog = "https://github.com/squidfunk/mkdocs-material/blob/${src.tag}/CHANGELOG"; description = "Material for mkdocs"; downloadPage = "https://github.com/squidfunk/mkdocs-material"; homepage = "https://squidfunk.github.io/mkdocs-material/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dandellion jaysa68 ]; diff --git a/pkgs/development/python-modules/mkdocs-material/mkdocs-material-extensions.nix b/pkgs/development/python-modules/mkdocs-material/mkdocs-material-extensions.nix index e519284956d3..591892c7c629 100644 --- a/pkgs/development/python-modules/mkdocs-material/mkdocs-material-extensions.nix +++ b/pkgs/development/python-modules/mkdocs-material/mkdocs-material-extensions.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "materialx" ]; - meta = with lib; { + meta = { description = "Markdown extension resources for MkDocs Material"; homepage = "https://github.com/facelessuser/mkdocs-material-extensions"; - license = licenses.mit; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-mermaid2-plugin/default.nix b/pkgs/development/python-modules/mkdocs-mermaid2-plugin/default.nix index c97cd755c8e6..d38589978f1e 100644 --- a/pkgs/development/python-modules/mkdocs-mermaid2-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-mermaid2-plugin/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mermaid2" ]; - meta = with lib; { + meta = { description = "MkDocs plugin for including mermaid graphs in markdown sources"; homepage = "https://github.com/fralau/mkdocs-mermaid2-plugin"; changelog = "https://github.com/fralau/mkdocs-mermaid2-plugin/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-minify-plugin/default.nix b/pkgs/development/python-modules/mkdocs-minify-plugin/default.nix index 7269a69b5be6..cf2aaff7dab8 100644 --- a/pkgs/development/python-modules/mkdocs-minify-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-minify-plugin/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs" ]; - meta = with lib; { + meta = { description = "Mkdocs plugin to minify the HTML of a page before it is written to disk"; homepage = "https://github.com/byrnereese/mkdocs-minify-plugin"; - license = licenses.mit; - maintainers = with maintainers; [ tfc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tfc ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-redirects/default.nix b/pkgs/development/python-modules/mkdocs-redirects/default.nix index db31a2076db7..c718e28f43e4 100644 --- a/pkgs/development/python-modules/mkdocs-redirects/default.nix +++ b/pkgs/development/python-modules/mkdocs-redirects/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_redirects" ]; - meta = with lib; { + meta = { description = "Open source plugin for Mkdocs page redirects"; homepage = "https://github.com/mkdocs/mkdocs-redirects"; - license = licenses.mit; - maintainers = with maintainers; [ tfc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tfc ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-redoc-tag/default.nix b/pkgs/development/python-modules/mkdocs-redoc-tag/default.nix index 0b0acf41e228..71e536b571f8 100644 --- a/pkgs/development/python-modules/mkdocs-redoc-tag/default.nix +++ b/pkgs/development/python-modules/mkdocs-redoc-tag/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pytestFlags = [ "-s" ]; - meta = with lib; { + meta = { description = "MkDocs plugin supports for add Redoc UI in page"; homepage = "https://github.com/blueswen/mkdocs-redoc-tag"; changelog = "https://github.com/blueswen/mkdocs-redoc-tag/blob/v${version}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ benhiemer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ benhiemer ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-rss-plugin/default.nix b/pkgs/development/python-modules/mkdocs-rss-plugin/default.nix index 6869b5555cd7..4178933513d4 100644 --- a/pkgs/development/python-modules/mkdocs-rss-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-rss-plugin/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { "tests/test_build.py" ]; - meta = with lib; { + meta = { description = "MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter"; homepage = "https://github.com/Guts/mkdocs-rss-plugin"; changelog = "https://github.com/Guts/mkdocs-rss-plugin/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-swagger-ui-tag/default.nix b/pkgs/development/python-modules/mkdocs-swagger-ui-tag/default.nix index b36b105a091a..9670e28562ce 100644 --- a/pkgs/development/python-modules/mkdocs-swagger-ui-tag/default.nix +++ b/pkgs/development/python-modules/mkdocs-swagger-ui-tag/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "test_no_console_errors" ]; - meta = with lib; { + meta = { description = "MkDocs plugin supports for add Swagger UI in page"; homepage = "https://github.com/Blueswen/mkdocs-swagger-ui-tag"; changelog = "https://github.com/blueswen/mkdocs-swagger-ui-tag/blob/${src.tag}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ snpschaaf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ snpschaaf ]; }; } diff --git a/pkgs/development/python-modules/mkdocs/default.nix b/pkgs/development/python-modules/mkdocs/default.nix index 469780d1eaa5..b90abe5ad3b3 100644 --- a/pkgs/development/python-modules/mkdocs/default.nix +++ b/pkgs/development/python-modules/mkdocs/default.nix @@ -91,7 +91,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mkdocs/mkdocs/releases/tag/${version}"; description = "Project documentation with Markdown / static website generator"; mainProgram = "mkdocs"; @@ -104,8 +104,8 @@ buildPythonPackage rec { MkDocs can also be used to generate general-purpose websites. ''; homepage = "http://mkdocs.org/"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ rkoe ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ rkoe ]; }; } diff --git a/pkgs/development/python-modules/mkl-service/default.nix b/pkgs/development/python-modules/mkl-service/default.nix index acada1f651ae..7131fbcaf605 100644 --- a/pkgs/development/python-modules/mkl-service/default.nix +++ b/pkgs/development/python-modules/mkl-service/default.nix @@ -43,9 +43,9 @@ buildPythonPackage rec { "test_cbwr_branch" ]; - meta = with lib; { + meta = { description = "Python hooks for Intel(R) Math Kernel Library runtime control settings"; homepage = "https://github.com/IntelPython/mkl-service"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/mlrose/default.nix b/pkgs/development/python-modules/mlrose/default.nix index c10866a6408c..9a75d4bb162d 100644 --- a/pkgs/development/python-modules/mlrose/default.nix +++ b/pkgs/development/python-modules/mlrose/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { # Fix random seed during tests pytestFlags = [ "--randomly-seed=0" ]; - meta = with lib; { + meta = { description = "Machine Learning, Randomized Optimization and SEarch"; homepage = "https://github.com/gkhayes/mlrose"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mmcif-pdbx/default.nix b/pkgs/development/python-modules/mmcif-pdbx/default.nix index e343faaa20dc..8720d2ada44e 100644 --- a/pkgs/development/python-modules/mmcif-pdbx/default.nix +++ b/pkgs/development/python-modules/mmcif-pdbx/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pdbx" ]; - meta = with lib; { + meta = { description = "Yet another version of PDBx/mmCIF Python implementation"; homepage = "https://github.com/Electrostatics/mmcif_pdbx"; changelog = "https://github.com/Electrostatics/mmcif_pdbx/releases/tag/v${version}"; - license = licenses.cc0; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/mmpython/default.nix b/pkgs/development/python-modules/mmpython/default.nix index 6a980c242e8f..195fae72773c 100644 --- a/pkgs/development/python-modules/mmpython/default.nix +++ b/pkgs/development/python-modules/mmpython/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { disabled = isPyPy || isPy3k; - meta = with lib; { + meta = { description = "Media Meta Data retrieval framework"; homepage = "https://sourceforge.net/projects/mmpython/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/mnemonic/default.nix b/pkgs/development/python-modules/mnemonic/default.nix index 4250e048430e..f0f46c22a461 100644 --- a/pkgs/development/python-modules/mnemonic/default.nix +++ b/pkgs/development/python-modules/mnemonic/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mnemonic" ]; - meta = with lib; { + meta = { description = "Reference implementation of BIP-0039"; homepage = "https://github.com/trezor/python-mnemonic"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ np prusnak ]; diff --git a/pkgs/development/python-modules/mnist/default.nix b/pkgs/development/python-modules/mnist/default.nix index a9fdd0ebf2b5..23cb82eaf307 100644 --- a/pkgs/development/python-modules/mnist/default.nix +++ b/pkgs/development/python-modules/mnist/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { "test_train_labels_has_right_size" ]; - meta = with lib; { + meta = { description = "Python utilities to download and parse the MNIST dataset"; homepage = "https://github.com/datapythonista/mnist"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/moat-ble/default.nix b/pkgs/development/python-modules/moat-ble/default.nix index ef9d3f53f148..f2b7d61b7937 100644 --- a/pkgs/development/python-modules/moat-ble/default.nix +++ b/pkgs/development/python-modules/moat-ble/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "moat_ble" ]; - meta = with lib; { + meta = { description = "Library for Moat BLE devices"; homepage = "https://github.com/Bluetooth-Devices/moat-ble"; changelog = "https://github.com/Bluetooth-Devices/moat-ble/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mobi/default.nix b/pkgs/development/python-modules/mobi/default.nix index 826b259b119a..61ed41fcd21d 100644 --- a/pkgs/development/python-modules/mobi/default.nix +++ b/pkgs/development/python-modules/mobi/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mobi" ]; - meta = with lib; { + meta = { description = "Library for unpacking unencrypted mobi files"; mainProgram = "mobiunpack"; homepage = "https://github.com/iscc/mobi"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mobly/default.nix b/pkgs/development/python-modules/mobly/default.nix index d5421e56fd92..4351f692dfe5 100644 --- a/pkgs/development/python-modules/mobly/default.nix +++ b/pkgs/development/python-modules/mobly/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://github.com/google/mobly/blob/${src.rev}/CHANGELOG.md"; description = "Automation framework for special end-to-end test cases"; homepage = "https://github.com/google/mobly"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/mock-open/default.nix b/pkgs/development/python-modules/mock-open/default.nix index ee0cade32736..a69afacb77e0 100644 --- a/pkgs/development/python-modules/mock-open/default.nix +++ b/pkgs/development/python-modules/mock-open/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { sha256 = "0qlz4y8jqxsnmqg03yp9f87rmnjrvmxm5qvm6n1218gm9k5dixbm"; }; - meta = with lib; { + meta = { homepage = "https://github.com/nivbend/mock-open"; description = "Better mock for file I/O"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/mock-services/default.nix b/pkgs/development/python-modules/mock-services/default.nix index 723ec6f78233..14158d4f6e3b 100644 --- a/pkgs/development/python-modules/mock-services/default.nix +++ b/pkgs/development/python-modules/mock-services/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mock_services" ]; - meta = with lib; { + meta = { description = "Mock an entire service API based on requests-mock"; homepage = "https://github.com/peopledoc/mock-services"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/mock-ssh-server/default.nix b/pkgs/development/python-modules/mock-ssh-server/default.nix index 91e5bd573920..46554d13b377 100644 --- a/pkgs/development/python-modules/mock-ssh-server/default.nix +++ b/pkgs/development/python-modules/mock-ssh-server/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mockssh" ]; - meta = with lib; { + meta = { description = "Python mock SSH server for testing purposes"; homepage = "https://github.com/carletes/mock-ssh-server"; changelog = "https://github.com/carletes/mock-ssh-server/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mock/default.nix b/pkgs/development/python-modules/mock/default.nix index 9f8895131c6d..e64240590064 100644 --- a/pkgs/development/python-modules/mock/default.nix +++ b/pkgs/development/python-modules/mock/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mock" ]; - meta = with lib; { + meta = { description = "Rolling backport of unittest.mock for all Pythons"; homepage = "https://github.com/testing-cabal/mock"; changelog = "https://github.com/testing-cabal/mock/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mocket/default.nix b/pkgs/development/python-modules/mocket/default.nix index 44c957292faa..0f946f075a2c 100644 --- a/pkgs/development/python-modules/mocket/default.nix +++ b/pkgs/development/python-modules/mocket/default.nix @@ -96,11 +96,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mocket" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mindflayer/python-mocket/releases/tag/${version}"; description = "Socket mock framework for all kinds of sockets including web-clients"; homepage = "https://github.com/mindflayer/python-mocket"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mockfs/default.nix b/pkgs/development/python-modules/mockfs/default.nix index 5e6da22c91d4..40c145838843 100644 --- a/pkgs/development/python-modules/mockfs/default.nix +++ b/pkgs/development/python-modules/mockfs/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Simple mock filesystem for use in unit tests"; homepage = "https://github.com/mockfs/mockfs"; changelog = "https://github.com/mockfs/mockfs/blob/${src.rev}/CHANGES.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mockito/default.nix b/pkgs/development/python-modules/mockito/default.nix index b35b540686a7..2f24ae28670f 100644 --- a/pkgs/development/python-modules/mockito/default.nix +++ b/pkgs/development/python-modules/mockito/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mockito" ]; - meta = with lib; { + meta = { description = "Spying framework"; homepage = "https://github.com/kaste/mockito-python"; changelog = "https://github.com/kaste/mockito-python/blob/${version}/CHANGES.txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mockupdb/default.nix b/pkgs/development/python-modules/mockupdb/default.nix index 69d9aa2ea3ad..1ef0a68ee826 100644 --- a/pkgs/development/python-modules/mockupdb/default.nix +++ b/pkgs/development/python-modules/mockupdb/default.nix @@ -36,9 +36,9 @@ buildPythonPackage rec { "test_unix_domain_socket" ]; - meta = with lib; { + meta = { description = "Simulate a MongoDB server"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/ajdavis/mongo-mockup-db"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/moddb/default.nix b/pkgs/development/python-modules/moddb/default.nix index c1f5f6e62b49..a53342277b83 100644 --- a/pkgs/development/python-modules/moddb/default.nix +++ b/pkgs/development/python-modules/moddb/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; # Tests try to access the internet. - meta = with lib; { + meta = { description = "Python scrapper to access ModDB mods, games and more as objects"; homepage = "https://github.com/ClementJ18/moddb"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/development/python-modules/model-bakery/default.nix b/pkgs/development/python-modules/model-bakery/default.nix index 788bff73db02..4f78b4f168fe 100644 --- a/pkgs/development/python-modules/model-bakery/default.nix +++ b/pkgs/development/python-modules/model-bakery/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "model_bakery" ]; - meta = with lib; { + meta = { description = "Object factory for Django"; homepage = "https://github.com/model-bakers/model_bakery"; changelog = "https://github.com/model-bakers/model_bakery/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/model-checker/default.nix b/pkgs/development/python-modules/model-checker/default.nix index cc95fd51bb96..052b0d2bed0b 100644 --- a/pkgs/development/python-modules/model-checker/default.nix +++ b/pkgs/development/python-modules/model-checker/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "model_checker" ]; - meta = with lib; { + meta = { description = "Hyperintensional theorem prover for counterfactual conditionals and modal operators"; homepage = "https://pypi.org/project/model-checker/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/modelcif/default.nix b/pkgs/development/python-modules/modelcif/default.nix index 79efba47008c..a0180ce04ec0 100644 --- a/pkgs/development/python-modules/modelcif/default.nix +++ b/pkgs/development/python-modules/modelcif/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "modelcif" ]; - meta = with lib; { + meta = { description = "Python package for handling ModelCIF mmCIF and BinaryCIF files"; homepage = "https://github.com/ihmwg/python-modelcif"; changelog = "https://github.com/ihmwg/python-modelcif/blob/${src.tag}/ChangeLog.rst"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/modeled/default.nix b/pkgs/development/python-modules/modeled/default.nix index 43459fc5a598..6b1c05e79f25 100644 --- a/pkgs/development/python-modules/modeled/default.nix +++ b/pkgs/development/python-modules/modeled/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "modeled" ]; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; description = "Universal data modeling for Python"; homepage = "https://github.com/modeled/modeled"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/moderngl/default.nix b/pkgs/development/python-modules/moderngl/default.nix index 8852d313ec82..c505ae54dbe2 100644 --- a/pkgs/development/python-modules/moderngl/default.nix +++ b/pkgs/development/python-modules/moderngl/default.nix @@ -41,13 +41,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "moderngl" ]; - meta = with lib; { + meta = { description = "High performance rendering for Python"; homepage = "https://github.com/moderngl/moderngl"; changelog = "https://github.com/moderngl/moderngl/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ c0deaddict ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ c0deaddict ]; # should be mesa.meta.platforms, darwin build breaks. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/molbar/default.nix b/pkgs/development/python-modules/molbar/default.nix index 943a16ac3c5a..b50d45d60f43 100644 --- a/pkgs/development/python-modules/molbar/default.nix +++ b/pkgs/development/python-modules/molbar/default.nix @@ -62,10 +62,10 @@ buildPythonPackage rec { doCheck = false; # Doesn't find the fortran libs before installation - meta = with lib; { + meta = { description = "Unique molecular identifiers for molecular barcoding"; homepage = "https://git.rwth-aachen.de/bannwarthlab/molbar"; - license = licenses.mit; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/molecule/default.nix b/pkgs/development/python-modules/molecule/default.nix index 3f6f27d26c51..02071cc07bcc 100644 --- a/pkgs/development/python-modules/molecule/default.nix +++ b/pkgs/development/python-modules/molecule/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { HOME = "$(mktemp -d)"; }); - meta = with lib; { + meta = { description = "Aids in the development and testing of Ansible roles"; homepage = "https://github.com/ansible-community/molecule"; changelog = "https://github.com/ansible/molecule/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "molecule"; }; diff --git a/pkgs/development/python-modules/molecule/plugins.nix b/pkgs/development/python-modules/molecule/plugins.nix index 18966476a3a1..21faeda5c7b8 100644 --- a/pkgs/development/python-modules/molecule/plugins.nix +++ b/pkgs/development/python-modules/molecule/plugins.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # Tests require container runtimes doCheck = false; - meta = with lib; { + meta = { description = "Collection on molecule plugins"; homepage = "https://github.com/ansible-community/molecule-plugins"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/monai/default.nix b/pkgs/development/python-modules/monai/default.nix index 2b46ecb02d93..2fe3c62f1673 100644 --- a/pkgs/development/python-modules/monai/default.nix +++ b/pkgs/development/python-modules/monai/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { "monai.visualize" ]; - meta = with lib; { + meta = { description = "Pytorch framework (based on Ignite) for deep learning in medical imaging"; homepage = "https://github.com/Project-MONAI/MONAI"; changelog = "https://github.com/Project-MONAI/MONAI/releases/tag/${version}"; - license = licenses.asl20; - maintainers = [ maintainers.bcdarwin ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/monero/default.nix b/pkgs/development/python-modules/monero/default.nix index af2afd3d7502..6753a6bad419 100644 --- a/pkgs/development/python-modules/monero/default.nix +++ b/pkgs/development/python-modules/monero/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { responses ]; - meta = with lib; { + meta = { description = "Comprehensive Python module for handling Monero"; homepage = "https://github.com/monero-ecosystem/monero-python"; - license = licenses.bsd3; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/mongodict/default.nix b/pkgs/development/python-modules/mongodict/default.nix index cb18f270726e..ab8c181be343 100644 --- a/pkgs/development/python-modules/mongodict/default.nix +++ b/pkgs/development/python-modules/mongodict/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ pymongo ]; - meta = with lib; { + meta = { description = "MongoDB-backed Python dict-like interface"; homepage = "https://github.com/turicas/mongodict/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/mongoengine/default.nix b/pkgs/development/python-modules/mongoengine/default.nix index a65c74c5c27e..0c7e59f6a6fa 100644 --- a/pkgs/development/python-modules/mongoengine/default.nix +++ b/pkgs/development/python-modules/mongoengine/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mongoengine" ]; - meta = with lib; { + meta = { description = "MongoEngine is a Python Object-Document Mapper for working with MongoDB"; homepage = "http://mongoengine.org/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mongomock/default.nix b/pkgs/development/python-modules/mongomock/default.nix index 1dbe742f0471..c7d80274106e 100644 --- a/pkgs/development/python-modules/mongomock/default.nix +++ b/pkgs/development/python-modules/mongomock/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mongomock" ]; - meta = with lib; { + meta = { description = "Fake pymongo stub for testing simple MongoDB-dependent code"; homepage = "https://github.com/mongomock/mongomock"; changelog = "https://github.com/mongomock/mongomock/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/mongoquery/default.nix b/pkgs/development/python-modules/mongoquery/default.nix index 4c2289e18c84..01a1985031df 100644 --- a/pkgs/development/python-modules/mongoquery/default.nix +++ b/pkgs/development/python-modules/mongoquery/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mongoquery" ]; - meta = with lib; { + meta = { description = "Python implementation of mongodb queries"; homepage = "https://github.com/kapouille/mongoquery"; - license = with licenses; [ unlicense ]; - maintainers = with maintainers; [ misuzu ]; + license = with lib.licenses; [ unlicense ]; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/development/python-modules/monkeyhex/default.nix b/pkgs/development/python-modules/monkeyhex/default.nix index c07fe91a8c74..7c46c59609cd 100644 --- a/pkgs/development/python-modules/monkeyhex/default.nix +++ b/pkgs/development/python-modules/monkeyhex/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { # Verify import still works. pythonImportsCheck = [ "monkeyhex" ]; - meta = with lib; { + meta = { description = "Small library to assist users of the python shell who work in contexts where printed numbers are more usefully viewed in hexadecimal"; homepage = "https://github.com/rhelmot/monkeyhex"; - license = licenses.mit; - maintainers = [ maintainers.pamplemousse ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.pamplemousse ]; }; } diff --git a/pkgs/development/python-modules/monotonic/default.nix b/pkgs/development/python-modules/monotonic/default.nix index 46e8e0f35492..fdd4cd03ca44 100644 --- a/pkgs/development/python-modules/monotonic/default.nix +++ b/pkgs/development/python-modules/monotonic/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { "ctypes.util.find_library('c')" "'${stdenv.cc.libc}/lib/libc.so'" ''; - meta = with lib; { + meta = { description = "Implementation of time.monotonic() for Python 2 & < 3.3"; homepage = "https://github.com/atdt/monotonic"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/monzopy/default.nix b/pkgs/development/python-modules/monzopy/default.nix index 610803f9befa..68774651d8e0 100644 --- a/pkgs/development/python-modules/monzopy/default.nix +++ b/pkgs/development/python-modules/monzopy/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "monzopy" ]; - meta = with lib; { + meta = { description = "Module to work with the Monzo API"; homepage = "https://github.com/JakeMartin-ICL/monzopy"; changelog = "https://github.com/JakeMartin-ICL/monzopy/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/moonraker-api/default.nix b/pkgs/development/python-modules/moonraker-api/default.nix index 0e7e4cbb1b7e..b06695c9aa58 100644 --- a/pkgs/development/python-modules/moonraker-api/default.nix +++ b/pkgs/development/python-modules/moonraker-api/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "moonraker_api" ]; - meta = with lib; { + meta = { description = "Python API for the Moonraker API"; homepage = "https://github.com/cmroche/moonraker-api"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mopeka-iot-ble/default.nix b/pkgs/development/python-modules/mopeka-iot-ble/default.nix index 77ef5219bde2..a5999c5e40b2 100644 --- a/pkgs/development/python-modules/mopeka-iot-ble/default.nix +++ b/pkgs/development/python-modules/mopeka-iot-ble/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mopeka_iot_ble" ]; - meta = with lib; { + meta = { description = "Library for Mopeka IoT BLE devices"; homepage = "https://github.com/bluetooth-devices/mopeka-iot-ble"; changelog = "https://github.com/Bluetooth-Devices/mopeka-iot-ble/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/more-itertools/default.nix b/pkgs/development/python-modules/more-itertools/default.nix index 45b4573620e8..326c44d761df 100644 --- a/pkgs/development/python-modules/more-itertools/default.nix +++ b/pkgs/development/python-modules/more-itertools/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { # OverflowError: Python int too large to convert to C long doCheck = !stdenv.hostPlatform.is32bit; - meta = with lib; { + meta = { homepage = "https://more-itertools.readthedocs.org"; changelog = "https://more-itertools.readthedocs.io/en/stable/versions.html"; description = "Expansion of the itertools module"; downloadPage = "https://github.com/more-itertools/more-itertools"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/moretools/default.nix b/pkgs/development/python-modules/moretools/default.nix index 7787360d5835..091964aabf74 100644 --- a/pkgs/development/python-modules/moretools/default.nix +++ b/pkgs/development/python-modules/moretools/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { ]; propagatedBuildInputs = [ decorator ]; - meta = with lib; { + meta = { description = '' Many more basic tools for python 2/3 extending itertools, functools, operator and collections ''; homepage = "https://bitbucket.org/userzimmermann/python-moretools"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/morfessor/default.nix b/pkgs/development/python-modules/morfessor/default.nix index c8e71ac20ed0..969e2f347a99 100644 --- a/pkgs/development/python-modules/morfessor/default.nix +++ b/pkgs/development/python-modules/morfessor/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "morfessor" ]; - meta = with lib; { + meta = { description = "Tool for unsupervised and semi-supervised morphological segmentation"; homepage = "https://github.com/aalto-speech/morfessor"; - license = licenses.bsd2; - maintainers = with maintainers; [ misuzu ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/development/python-modules/morphys/default.nix b/pkgs/development/python-modules/morphys/default.nix index bfd201cf2d6f..d191eea20850 100644 --- a/pkgs/development/python-modules/morphys/default.nix +++ b/pkgs/development/python-modules/morphys/default.nix @@ -17,10 +17,10 @@ buildPythonPackage { pythonImportsCheck = [ "morphys" ]; - meta = with lib; { + meta = { description = "Smart conversions between unicode and bytes types"; homepage = "https://github.com/mkalinski/morphys"; - license = licenses.mit; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/mortgage/default.nix b/pkgs/development/python-modules/mortgage/default.nix index 218dcc1577a4..cd8306e92c87 100644 --- a/pkgs/development/python-modules/mortgage/default.nix +++ b/pkgs/development/python-modules/mortgage/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mortgage" ]; - meta = with lib; { + meta = { description = "Mortgage calculator"; homepage = "https://github.com/jlumbroso/mortgage"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/motionblinds/default.nix b/pkgs/development/python-modules/motionblinds/default.nix index 822aa5bcc0e6..071c3b96c62b 100644 --- a/pkgs/development/python-modules/motionblinds/default.nix +++ b/pkgs/development/python-modules/motionblinds/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "motionblinds" ]; - meta = with lib; { + meta = { description = "Python library for interfacing with Motion Blinds"; homepage = "https://github.com/starkillerOG/motion-blinds"; changelog = "https://github.com/starkillerOG/motion-blinds/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/motionblindsble/default.nix b/pkgs/development/python-modules/motionblindsble/default.nix index 8c1e2d3523d1..1b355b63ef41 100644 --- a/pkgs/development/python-modules/motionblindsble/default.nix +++ b/pkgs/development/python-modules/motionblindsble/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { "test_establish_connection" ]; - meta = with lib; { + meta = { description = "Module to interface with Motionblinds motors using Bluetooth Low Energy (BLE)"; homepage = "https://github.com/LennP/motionblindsble"; changelog = "https://github.com/LennP/motionblindsble/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/motioneye-client/default.nix b/pkgs/development/python-modules/motioneye-client/default.nix index 4ab36924c061..7cb387f06c04 100644 --- a/pkgs/development/python-modules/motioneye-client/default.nix +++ b/pkgs/development/python-modules/motioneye-client/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "motioneye_client" ]; - meta = with lib; { + meta = { description = "Python library for motionEye"; homepage = "https://github.com/dermotduffy/motioneye-client"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/development/python-modules/mouseinfo/default.nix b/pkgs/development/python-modules/mouseinfo/default.nix index 8ae77f3f5612..1cf2449460a7 100644 --- a/pkgs/development/python-modules/mouseinfo/default.nix +++ b/pkgs/development/python-modules/mouseinfo/default.nix @@ -33,10 +33,10 @@ buildPythonPackage { pillow ]; - meta = with lib; { + meta = { description = "Application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3"; homepage = "https://github.com/asweigart/mouseinfo"; - license = licenses.gpl3; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/mpd2/default.nix b/pkgs/development/python-modules/mpd2/default.nix index 7ca19c597c16..7638e1b7dcf4 100644 --- a/pkgs/development/python-modules/mpd2/default.nix +++ b/pkgs/development/python-modules/mpd2/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ] ++ optional-dependencies.twisted; - meta = with lib; { + meta = { changelog = "https://github.com/Mic92/python-mpd2/blob/v${version}/doc/changes.rst"; description = "Python client module for the Music Player Daemon"; homepage = "https://github.com/Mic92/python-mpd2"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ mic92 hexa ]; diff --git a/pkgs/development/python-modules/mpl-scatter-density/default.nix b/pkgs/development/python-modules/mpl-scatter-density/default.nix index bbf5d732b29c..e3eaff5aee62 100644 --- a/pkgs/development/python-modules/mpl-scatter-density/default.nix +++ b/pkgs/development/python-modules/mpl-scatter-density/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mpl_scatter_density" ]; - meta = with lib; { + meta = { homepage = "https://github.com/astrofrog/mpl-scatter-density"; description = "Fast scatter density plots for Matplotlib"; - license = licenses.bsd2; - maintainers = with maintainers; [ ifurther ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ifurther ]; }; } diff --git a/pkgs/development/python-modules/mpldatacursor/default.nix b/pkgs/development/python-modules/mpldatacursor/default.nix index ca1721ea8ecf..ffeedb3b3a8f 100644 --- a/pkgs/development/python-modules/mpldatacursor/default.nix +++ b/pkgs/development/python-modules/mpldatacursor/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mpldatacursor" ]; - meta = with lib; { + meta = { homepage = "https://github.com/joferkington/mpldatacursor"; description = "Interactive data cursors for matplotlib"; - license = licenses.mit; - maintainers = with maintainers; [ bzizou ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bzizou ]; }; } diff --git a/pkgs/development/python-modules/mplfinance/default.nix b/pkgs/development/python-modules/mplfinance/default.nix index c4aadcaefe82..26f55b5a4fa4 100644 --- a/pkgs/development/python-modules/mplfinance/default.nix +++ b/pkgs/development/python-modules/mplfinance/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "mplfinance" ]; - meta = with lib; { + meta = { description = "Matplotlib utilities for the visualization, and visual analysis, of financial data"; homepage = "https://github.com/matplotlib/mplfinance"; - license = [ licenses.bsd3 ]; + license = [ lib.licenses.bsd3 ]; }; } diff --git a/pkgs/development/python-modules/mplhep-data/default.nix b/pkgs/development/python-modules/mplhep-data/default.nix index f70992714977..5fedb4588f68 100644 --- a/pkgs/development/python-modules/mplhep-data/default.nix +++ b/pkgs/development/python-modules/mplhep-data/default.nix @@ -24,14 +24,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "mplhep_data" ]; - meta = with lib; { + meta = { description = "Sub-package to hold data (fonts) for mplhep"; homepage = "https://github.com/scikit-hep/mplhep_data"; - license = with licenses; [ + license = with lib.licenses; [ mit gfl ofl ]; - maintainers = with maintainers; [ veprbl ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/mpmath/default.nix b/pkgs/development/python-modules/mpmath/default.nix index 53e6dc8250b9..d76ec52cb8bf 100644 --- a/pkgs/development/python-modules/mpmath/default.nix +++ b/pkgs/development/python-modules/mpmath/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://mpmath.org/"; description = "Pure-Python library for multiprecision floating arithmetic"; - license = licenses.bsd3; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/mpv/default.nix b/pkgs/development/python-modules/mpv/default.nix index 716a51f00d86..ee67082631ac 100644 --- a/pkgs/development/python-modules/mpv/default.nix +++ b/pkgs/development/python-modules/mpv/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mpv" ]; - meta = with lib; { + meta = { description = "Python interface to the mpv media player"; homepage = "https://github.com/jaseg/python-mpv"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/mqtt2influxdb/default.nix b/pkgs/development/python-modules/mqtt2influxdb/default.nix index 32040eb5b975..64f4e0cf1d3b 100644 --- a/pkgs/development/python-modules/mqtt2influxdb/default.nix +++ b/pkgs/development/python-modules/mqtt2influxdb/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/test.py" ]; - meta = with lib; { + meta = { description = "Flexible MQTT to InfluxDB Bridge"; homepage = "https://github.com/hardwario/bch-mqtt2influxdb"; changelog = "https://github.com/hardwario/bch-mqtt2influxdb/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ cynerd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cynerd ]; mainProgram = "mqtt2influxdb"; }; } diff --git a/pkgs/development/python-modules/mrjob/default.nix b/pkgs/development/python-modules/mrjob/default.nix index 2c0978688800..214dfeff8b55 100644 --- a/pkgs/development/python-modules/mrjob/default.nix +++ b/pkgs/development/python-modules/mrjob/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { unittestFlagsArray = [ "-v" ]; - meta = with lib; { + meta = { changelog = "https://github.com/Yelp/mrjob/blob/v${version}/CHANGES.txt"; description = "Run MapReduce jobs on Hadoop or Amazon Web Services"; homepage = "https://github.com/Yelp/mrjob"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ms-active-directory/default.nix b/pkgs/development/python-modules/ms-active-directory/default.nix index 4509eb0a4e0e..be801a0e67ab 100644 --- a/pkgs/development/python-modules/ms-active-directory/default.nix +++ b/pkgs/development/python-modules/ms-active-directory/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ms_active_directory" ]; - meta = with lib; { + meta = { description = "Python module for integrating with Microsoft Active Directory domains"; homepage = "https://github.com/zorn96/ms_active_directory/"; changelog = "https://github.com/zorn96/ms_active_directory/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ms-cv/default.nix b/pkgs/development/python-modules/ms-cv/default.nix index d651ce1a3771..840a1a7a2285 100644 --- a/pkgs/development/python-modules/ms-cv/default.nix +++ b/pkgs/development/python-modules/ms-cv/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Correlation vector implementation in python"; homepage = "https://github.com/OpenXbox/ms_cv"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/msal-extensions/default.nix b/pkgs/development/python-modules/msal-extensions/default.nix index 4a8d74f7768f..2b6f28090c0d 100644 --- a/pkgs/development/python-modules/msal-extensions/default.nix +++ b/pkgs/development/python-modules/msal-extensions/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "msal_extensions" ]; - meta = with lib; { + meta = { description = "Microsoft Authentication Library Extensions (MSAL-Extensions) for Python"; homepage = "https://github.com/AzureAD/microsoft-authentication-extensions-for-python"; changelog = "https://github.com/AzureAD/microsoft-authentication-extensions-for-python/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/msal/default.nix b/pkgs/development/python-modules/msal/default.nix index 2d570ab0d594..b59d55516aaf 100644 --- a/pkgs/development/python-modules/msal/default.nix +++ b/pkgs/development/python-modules/msal/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "msal" ]; - meta = with lib; { + meta = { description = "Library to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA) using industry standard OAuth2 and OpenID Connect"; homepage = "https://github.com/AzureAD/microsoft-authentication-library-for-python"; changelog = "https://github.com/AzureAD/microsoft-authentication-library-for-python/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/mscerts/default.nix b/pkgs/development/python-modules/mscerts/default.nix index da2095ec25de..d9914bb6e858 100644 --- a/pkgs/development/python-modules/mscerts/default.nix +++ b/pkgs/development/python-modules/mscerts/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mscerts" ]; - meta = with lib; { + meta = { description = "Makes the Microsoft Trusted Root Program's Certificate Trust Lists available in Python"; homepage = "https://github.com/ralphje/mscerts"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/msg-parser/default.nix b/pkgs/development/python-modules/msg-parser/default.nix index f2ebb4108970..abffa68723a5 100644 --- a/pkgs/development/python-modules/msg-parser/default.nix +++ b/pkgs/development/python-modules/msg-parser/default.nix @@ -29,11 +29,11 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python module to read, parse and converting Microsoft Outlook MSG E-Mail files"; mainProgram = "msg_parser"; homepage = "https://github.com/vikramarsid/msg_parser"; - license = licenses.bsd2; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/msgpack-numpy/default.nix b/pkgs/development/python-modules/msgpack-numpy/default.nix index ff41fa354ebb..4dbb824dd23c 100644 --- a/pkgs/development/python-modules/msgpack-numpy/default.nix +++ b/pkgs/development/python-modules/msgpack-numpy/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { ${python.interpreter} msgpack_numpy.py ''; - meta = with lib; { + meta = { description = "Numpy data type serialization using msgpack"; homepage = "https://github.com/lebedov/msgpack-numpy"; - license = licenses.bsd3; - maintainers = with maintainers; [ aborsu ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ aborsu ]; }; } diff --git a/pkgs/development/python-modules/msgpack/default.nix b/pkgs/development/python-modules/msgpack/default.nix index 36f886ad7609..7b7b43e2460a 100644 --- a/pkgs/development/python-modules/msgpack/default.nix +++ b/pkgs/development/python-modules/msgpack/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { make cython ''; - meta = with lib; { + meta = { description = "MessagePack serializer implementation"; homepage = "https://github.com/msgpack/msgpack-python"; changelog = "https://github.com/msgpack/msgpack-python/blob/${src.tag}/ChangeLog.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/msgraph-sdk/default.nix b/pkgs/development/python-modules/msgraph-sdk/default.nix index 548f24f26a34..26d06c8fc579 100644 --- a/pkgs/development/python-modules/msgraph-sdk/default.nix +++ b/pkgs/development/python-modules/msgraph-sdk/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "msgraph" ]; - meta = with lib; { + meta = { description = "Microsoft Graph SDK for Python"; homepage = "https://github.com/microsoftgraph/msgraph-sdk-python"; changelog = "https://github.com/microsoftgraph/msgraph-sdk-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/msgspec/default.nix b/pkgs/development/python-modules/msgspec/default.nix index 5ef6bbfb4ce2..8749bcbc9cde 100644 --- a/pkgs/development/python-modules/msgspec/default.nix +++ b/pkgs/development/python-modules/msgspec/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "msgspec" ]; - meta = with lib; { + meta = { description = "Module to handle JSON/MessagePack"; homepage = "https://github.com/jcrist/msgspec"; changelog = "https://github.com/jcrist/msgspec/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/msldap/default.nix b/pkgs/development/python-modules/msldap/default.nix index ae09d1f9b602..6a7222974ef1 100644 --- a/pkgs/development/python-modules/msldap/default.nix +++ b/pkgs/development/python-modules/msldap/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "msldap" ]; - meta = with lib; { + meta = { description = "Python LDAP library for auditing MS AD"; homepage = "https://github.com/skelsec/msldap"; changelog = "https://github.com/skelsec/msldap/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/msmart-ng/default.nix b/pkgs/development/python-modules/msmart-ng/default.nix index 2675cb56fc6d..5c6e269ce13e 100644 --- a/pkgs/development/python-modules/msmart-ng/default.nix +++ b/pkgs/development/python-modules/msmart-ng/default.nix @@ -43,13 +43,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "msmart" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mill1000/midea-msmart/releases/tag/${src.tag}"; description = "Python library for local control of Midea (and associated brands) smart air conditioners"; homepage = "https://github.com/mill1000/midea-msmart"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "msmart-ng"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hexa emilylange ]; diff --git a/pkgs/development/python-modules/msoffcrypto-tool/default.nix b/pkgs/development/python-modules/msoffcrypto-tool/default.nix index 4fe26195ad9e..c9f2ed530de9 100644 --- a/pkgs/development/python-modules/msoffcrypto-tool/default.nix +++ b/pkgs/development/python-modules/msoffcrypto-tool/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "msoffcrypto" ]; - meta = with lib; { + meta = { description = "Python tool and library for decrypting MS Office files with passwords or other keys"; homepage = "https://github.com/nolze/msoffcrypto-tool"; changelog = "https://github.com/nolze/msoffcrypto-tool/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "msoffcrypto-tool"; }; } diff --git a/pkgs/development/python-modules/msprime/default.nix b/pkgs/development/python-modules/msprime/default.nix index 7cafa528dd24..8bc54f2b810f 100644 --- a/pkgs/development/python-modules/msprime/default.nix +++ b/pkgs/development/python-modules/msprime/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "msprime" ]; - meta = with lib; { + meta = { description = "Simulate genealogical trees and genomic sequence data using population genetic models"; homepage = "https://github.com/tskit-dev/msprime"; changelog = "https://github.com/tskit-dev/msprime/blob/${version}/CHANGELOG.md"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/msrest/default.nix b/pkgs/development/python-modules/msrest/default.nix index 07e94b76aaa4..0e3062e4de94 100644 --- a/pkgs/development/python-modules/msrest/default.nix +++ b/pkgs/development/python-modules/msrest/default.nix @@ -72,11 +72,11 @@ buildPythonPackage { pythonImportsCheck = [ "msrest" ]; - meta = with lib; { + meta = { description = "Runtime library for AutoRest generated Python clients"; homepage = "https://github.com/Azure/msrest-for-python"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bendlas maxwilson ]; diff --git a/pkgs/development/python-modules/msrestazure/default.nix b/pkgs/development/python-modules/msrestazure/default.nix index be3f9961f403..60698796e852 100644 --- a/pkgs/development/python-modules/msrestazure/default.nix +++ b/pkgs/development/python-modules/msrestazure/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "msrest" ]; - meta = with lib; { + meta = { description = "Runtime library 'msrestazure' for AutoRest generated Python clients"; homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bendlas ]; }; diff --git a/pkgs/development/python-modules/mss/default.nix b/pkgs/development/python-modules/mss/default.nix index a7436cd646d0..f33d7bd3707a 100644 --- a/pkgs/development/python-modules/mss/default.nix +++ b/pkgs/development/python-modules/mss/default.nix @@ -62,12 +62,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "mss" ]; - meta = with lib; { + meta = { description = "Cross-platform multiple screenshots module"; mainProgram = "mss"; homepage = "https://github.com/BoboTiG/python-mss"; changelog = "https://github.com/BoboTiG/python-mss/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ austinbutler ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ austinbutler ]; }; } diff --git a/pkgs/development/python-modules/mt-940/default.nix b/pkgs/development/python-modules/mt-940/default.nix index 74d296b53d81..64cc97b25f02 100644 --- a/pkgs/development/python-modules/mt-940/default.nix +++ b/pkgs/development/python-modules/mt-940/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mt940" ]; - meta = with lib; { + meta = { description = "Module to parse MT940 files and returns smart Python collections for statistics and manipulation"; homepage = "https://github.com/WoLpH/mt940"; changelog = "https://github.com/wolph/mt940/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mujson/default.nix b/pkgs/development/python-modules/mujson/default.nix index 6d980fd74f49..d22c7e0992cf 100644 --- a/pkgs/development/python-modules/mujson/default.nix +++ b/pkgs/development/python-modules/mujson/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "mujson" ]; - meta = with lib; { + meta = { description = "Use the fastest JSON functions available at import time"; homepage = "https://github.com/mattgiles/mujson"; - license = licenses.mit; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/development/python-modules/mullvad-api/default.nix b/pkgs/development/python-modules/mullvad-api/default.nix index 2074766ebe6e..427746b9b17d 100644 --- a/pkgs/development/python-modules/mullvad-api/default.nix +++ b/pkgs/development/python-modules/mullvad-api/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "mullvad_api" ]; - meta = with lib; { + meta = { description = "Python client for the Mullvad API"; homepage = "https://github.com/meichthys/mullvad-api"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mullvad-closest/default.nix b/pkgs/development/python-modules/mullvad-closest/default.nix index e395d6cea406..e15a16943383 100644 --- a/pkgs/development/python-modules/mullvad-closest/default.nix +++ b/pkgs/development/python-modules/mullvad-closest/default.nix @@ -34,11 +34,11 @@ buildPythonPackage { pythonImportsCheck = [ "mullvad_closest" ]; - meta = with lib; { + meta = { description = "Find Mullvad servers with the lowest latency at your location"; mainProgram = "mullvad-closest"; homepage = "https://github.com/Ch00k/mullvad-closest"; - license = licenses.unlicense; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/development/python-modules/mulpyplexer/default.nix b/pkgs/development/python-modules/mulpyplexer/default.nix index 5ff36083ef86..9c0938fe00aa 100644 --- a/pkgs/development/python-modules/mulpyplexer/default.nix +++ b/pkgs/development/python-modules/mulpyplexer/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "mulpyplexer" ]; - meta = with lib; { + meta = { description = "Multiplex interactions with lists of Python objects"; homepage = "https://github.com/zardus/mulpyplexer"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/multi-key-dict/default.nix b/pkgs/development/python-modules/multi-key-dict/default.nix index 5e9e11cc2617..a4ead4ea1122 100644 --- a/pkgs/development/python-modules/multi-key-dict/default.nix +++ b/pkgs/development/python-modules/multi-key-dict/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "multi_key_dict" ]; - meta = with lib; { + meta = { description = "Multi_key_dict"; homepage = "https://github.com/formiaczek/multi_key_dict"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/multimethod/default.nix b/pkgs/development/python-modules/multimethod/default.nix index b26a7b0829f1..cfc5f20bf9ed 100644 --- a/pkgs/development/python-modules/multimethod/default.nix +++ b/pkgs/development/python-modules/multimethod/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "multimethod" ]; - meta = with lib; { + meta = { description = "Multiple argument dispatching"; homepage = "https://coady.github.io/multimethod/"; changelog = "https://github.com/coady/multimethod/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/multiprocess/default.nix b/pkgs/development/python-modules/multiprocess/default.nix index c7b031213e9a..f08b76ddd02e 100644 --- a/pkgs/development/python-modules/multiprocess/default.nix +++ b/pkgs/development/python-modules/multiprocess/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "multiprocess" ]; - meta = with lib; { + meta = { description = "Multiprocessing and multithreading in Python"; homepage = "https://github.com/uqfoundation/multiprocess"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/multiset/default.nix b/pkgs/development/python-modules/multiset/default.nix index ea8ee3f03f72..939254cfb9dc 100644 --- a/pkgs/development/python-modules/multiset/default.nix +++ b/pkgs/development/python-modules/multiset/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "multiset" ]; - meta = with lib; { + meta = { description = "Implementation of a multiset"; homepage = "https://github.com/wheerd/multiset"; changelog = "https://github.com/wheerd/multiset/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/multitasking/default.nix b/pkgs/development/python-modules/multitasking/default.nix index f41f27e14693..d57f0bce0aa8 100644 --- a/pkgs/development/python-modules/multitasking/default.nix +++ b/pkgs/development/python-modules/multitasking/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; # No tests included pythonImportsCheck = [ "multitasking" ]; - meta = with lib; { + meta = { description = "Non-blocking Python methods using decorators"; homepage = "https://github.com/ranaroussi/multitasking"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/munch/default.nix b/pkgs/development/python-modules/munch/default.nix index e81fc579ce0b..eb59ba246778 100644 --- a/pkgs/development/python-modules/munch/default.nix +++ b/pkgs/development/python-modules/munch/default.nix @@ -45,9 +45,9 @@ buildPythonPackage rec { pyyaml ]; - meta = with lib; { + meta = { description = "Dot-accessible dictionary (a la JavaScript objects)"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/Infinidat/munch"; }; } diff --git a/pkgs/development/python-modules/mung/default.nix b/pkgs/development/python-modules/mung/default.nix index 81d90a301257..243030eecd23 100644 --- a/pkgs/development/python-modules/mung/default.nix +++ b/pkgs/development/python-modules/mung/default.nix @@ -35,11 +35,11 @@ buildPythonPackage { pythonImportsCheck = [ "mung" ]; - meta = with lib; { + meta = { description = "Music Notation Graph: a data model for optical music recognition"; homepage = "https://github.com/OMR-Research/mung"; changelog = "https://github.com/OMR-Research/mung/blob/${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ piegames ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ piegames ]; }; } diff --git a/pkgs/development/python-modules/munkres/default.nix b/pkgs/development/python-modules/munkres/default.nix index 8be25085c047..a2aea5b33a8c 100644 --- a/pkgs/development/python-modules/munkres/default.nix +++ b/pkgs/development/python-modules/munkres/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "http://bmc.github.com/munkres/"; description = "Munkres algorithm for the Assignment Problem"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/murmurhash/default.nix b/pkgs/development/python-modules/murmurhash/default.nix index a508e3257ff8..ba1a3caa4d91 100644 --- a/pkgs/development/python-modules/murmurhash/default.nix +++ b/pkgs/development/python-modules/murmurhash/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "murmurhash" ]; - meta = with lib; { + meta = { description = "Cython bindings for MurmurHash2"; homepage = "https://github.com/explosion/murmurhash"; - license = licenses.mit; - maintainers = with maintainers; [ aborsu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aborsu ]; }; } diff --git a/pkgs/development/python-modules/muscima/default.nix b/pkgs/development/python-modules/muscima/default.nix index 03bdd1989b52..747eac85060b 100644 --- a/pkgs/development/python-modules/muscima/default.nix +++ b/pkgs/development/python-modules/muscima/default.nix @@ -41,11 +41,11 @@ buildPythonPackage { "test/test_dataset.py" ]; - meta = with lib; { + meta = { description = "Tools for working with the MUSCIMA++ dataset of handwritten music notation"; homepage = "https://github.com/hajicj/muscima"; changelog = "https://github.com/hajicj/muscima/blob/${rev}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ piegames ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ piegames ]; }; } diff --git a/pkgs/development/python-modules/music-tag/default.nix b/pkgs/development/python-modules/music-tag/default.nix index 0343aacb795d..8c181f74aa93 100644 --- a/pkgs/development/python-modules/music-tag/default.nix +++ b/pkgs/development/python-modules/music-tag/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "music_tag" ]; - meta = with lib; { + meta = { description = "Simple interface to edit audio file metadata"; homepage = "https://github.com/KristoforMaynard/music-tag"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/musicbrainzngs/default.nix b/pkgs/development/python-modules/musicbrainzngs/default.nix index e7bc56d4808a..7992af9e1fbe 100644 --- a/pkgs/development/python-modules/musicbrainzngs/default.nix +++ b/pkgs/development/python-modules/musicbrainzngs/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { rm test/test_submit.py ''; - meta = with lib; { + meta = { homepage = "https://python-musicbrainzngs.readthedocs.org/"; description = "Python bindings for musicbrainz NGS webservice"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mutagen/default.nix b/pkgs/development/python-modules/mutagen/default.nix index 9c9f5c32bb86..ea4e73d84254 100644 --- a/pkgs/development/python-modules/mutagen/default.nix +++ b/pkgs/development/python-modules/mutagen/default.nix @@ -69,7 +69,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "mutagen" ]; - meta = with lib; { + meta = { description = "Python module for handling audio metadata"; longDescription = '' Mutagen is a Python module to handle audio metadata. It supports @@ -85,7 +85,7 @@ buildPythonPackage rec { changelog = "https://mutagen.readthedocs.io/en/latest/changelog.html#release-${ lib.replaceStrings [ "." ] [ "-" ] version }"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mutatormath/default.nix b/pkgs/development/python-modules/mutatormath/default.nix index ce5f8d0a522c..3aa52ea26af1 100644 --- a/pkgs/development/python-modules/mutatormath/default.nix +++ b/pkgs/development/python-modules/mutatormath/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { fs ]; - meta = with lib; { + meta = { description = "Piecewise linear interpolation in multiple dimensions with multiple, arbitrarily placed, masters"; homepage = "https://github.com/LettError/MutatorMath"; - license = licenses.bsd3; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/mutesync/default.nix b/pkgs/development/python-modules/mutesync/default.nix index d998c5ff8013..59b3ff668ef2 100644 --- a/pkgs/development/python-modules/mutesync/default.nix +++ b/pkgs/development/python-modules/mutesync/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mutesync" ]; - meta = with lib; { + meta = { description = "Python module for interacting with mutesync buttons"; homepage = "https://github.com/currentoor/pymutesync"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mutf8/default.nix b/pkgs/development/python-modules/mutf8/default.nix index ab7bde62fc6b..bd045451d265 100644 --- a/pkgs/development/python-modules/mutf8/default.nix +++ b/pkgs/development/python-modules/mutf8/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mutf8" ]; - meta = with lib; { + meta = { description = "Fast MUTF-8 encoder & decoder"; homepage = "https://github.com/TkTech/mutf8"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mwcli/default.nix b/pkgs/development/python-modules/mwcli/default.nix index 9c644cf9c41b..d322a469dca1 100644 --- a/pkgs/development/python-modules/mwcli/default.nix +++ b/pkgs/development/python-modules/mwcli/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # Tests require mwxml which itself depends on this package (circular dependency) doCheck = false; - meta = with lib; { + meta = { description = "Set of helper functions and classes for mediawiki-utilities command-line utilities"; homepage = "https://github.com/mediawiki-utilities/python-mwcli"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/mwclient/default.nix b/pkgs/development/python-modules/mwclient/default.nix index 719bc45eb8bb..121087158c67 100644 --- a/pkgs/development/python-modules/mwclient/default.nix +++ b/pkgs/development/python-modules/mwclient/default.nix @@ -41,9 +41,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "mwclient" ]; - meta = with lib; { + meta = { description = "Python client library to the MediaWiki API"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/mwclient/mwclient"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/mwdblib/default.nix b/pkgs/development/python-modules/mwdblib/default.nix index 9572545f1abc..11c002df24bf 100644 --- a/pkgs/development/python-modules/mwdblib/default.nix +++ b/pkgs/development/python-modules/mwdblib/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "mwdblib" ]; - meta = with lib; { + meta = { description = "Python client library for the mwdb service"; homepage = "https://github.com/CERT-Polska/mwdblib"; changelog = "https://github.com/CERT-Polska/mwdblib/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "mwdb"; }; } diff --git a/pkgs/development/python-modules/mwoauth/default.nix b/pkgs/development/python-modules/mwoauth/default.nix index ed1b59ddb32e..e321b30f924c 100644 --- a/pkgs/development/python-modules/mwoauth/default.nix +++ b/pkgs/development/python-modules/mwoauth/default.nix @@ -36,9 +36,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "mwoauth" ]; - meta = with lib; { + meta = { description = "Python library to perform OAuth handshakes with a MediaWiki installation"; homepage = "https://github.com/mediawiki-utilities/python-mwoauth"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/mwparserfromhell/default.nix b/pkgs/development/python-modules/mwparserfromhell/default.nix index b4f5e86efcbe..ef697ca333e2 100644 --- a/pkgs/development/python-modules/mwparserfromhell/default.nix +++ b/pkgs/development/python-modules/mwparserfromhell/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mwparserfromhell" ]; - meta = with lib; { + meta = { description = "MWParserFromHell is a parser for MediaWiki wikicode"; homepage = "https://mwparserfromhell.readthedocs.io/"; changelog = "https://github.com/earwig/mwparserfromhell/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/myhdl/default.nix b/pkgs/development/python-modules/myhdl/default.nix index 457f8663cc9d..d51d9d86d1ad 100644 --- a/pkgs/development/python-modules/myhdl/default.nix +++ b/pkgs/development/python-modules/myhdl/default.nix @@ -42,10 +42,10 @@ buildPythonPackage { runHook postCheck ''; - meta = with lib; { + meta = { description = "Free, open-source package for using Python as a hardware description and verification language"; homepage = "https://www.myhdl.org/"; - license = licenses.lgpl21; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/myhome/default.nix b/pkgs/development/python-modules/myhome/default.nix index a8a1485522ef..fe7b31219829 100644 --- a/pkgs/development/python-modules/myhome/default.nix +++ b/pkgs/development/python-modules/myhome/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "myhome" ]; - meta = with lib; { + meta = { description = "Python library for interacting with MyHomeSERVER1"; homepage = "https://github.com/speijnik/myhome"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index efd88258712f..1c23531d2ea1 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -33,11 +33,11 @@ let pythonImportsCheck = [ "mypy_boto3_${toUnderscore serviceName}" ]; - meta = with lib; { + meta = { description = "Type annotations for boto3 ${serviceName}"; homepage = "https://github.com/youtype/mypy_boto3_builder"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab mbalatsko ]; diff --git a/pkgs/development/python-modules/mysql-connector/default.nix b/pkgs/development/python-modules/mysql-connector/default.nix index be6966cd9a1e..1c9334e56174 100644 --- a/pkgs/development/python-modules/mysql-connector/default.nix +++ b/pkgs/development/python-modules/mysql-connector/default.nix @@ -56,7 +56,7 @@ buildPythonPackage rec { # Tests require a running MySQL instance doCheck = false; - meta = with lib; { + meta = { description = "MySQL driver"; longDescription = '' A MySQL driver that does not depend on MySQL C client libraries and @@ -64,8 +64,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/mysql/mysql-connector-python"; changelog = "https://raw.githubusercontent.com/mysql/mysql-connector-python/${version}/CHANGES.txt"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ neosimsim ]; }; diff --git a/pkgs/development/python-modules/mysqlclient/default.nix b/pkgs/development/python-modules/mysqlclient/default.nix index 9421d73d43ee..231a702c3614 100644 --- a/pkgs/development/python-modules/mysqlclient/default.nix +++ b/pkgs/development/python-modules/mysqlclient/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { hash = "sha256-JK4itZQW1fzOfpnJ03VINQtFZbqsgvleFJysbOQWOEU="; }; - meta = with lib; { + meta = { description = "Python interface to MySQL"; homepage = "https://github.com/PyMySQL/mysqlclient-python"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/development/python-modules/myst-docutils/default.nix b/pkgs/development/python-modules/myst-docutils/default.nix index 6bddcc128c96..20bd477e2654 100644 --- a/pkgs/development/python-modules/myst-docutils/default.nix +++ b/pkgs/development/python-modules/myst-docutils/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { "tests/test_sphinx/" ]; - meta = with lib; { + meta = { description = "Extended commonmark compliant parser, with bridges to docutils/sphinx"; homepage = "https://github.com/executablebooks/MyST-Parser"; changelog = "https://github.com/executablebooks/MyST-Parser/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ dpausp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dpausp ]; }; } diff --git a/pkgs/development/python-modules/myst-nb/default.nix b/pkgs/development/python-modules/myst-nb/default.nix index cba8ec711379..96cc15b968da 100644 --- a/pkgs/development/python-modules/myst-nb/default.nix +++ b/pkgs/development/python-modules/myst-nb/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { "myst_nb.sphinx_ext" ]; - meta = with lib; { + meta = { description = "Jupyter Notebook Sphinx reader built on top of the MyST markdown parser"; homepage = "https://github.com/executablebooks/MyST-NB"; changelog = "https://github.com/executablebooks/MyST-NB/raw/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/myst-parser/default.nix b/pkgs/development/python-modules/myst-parser/default.nix index 447ceff2c2da..bd992cb1713c 100644 --- a/pkgs/development/python-modules/myst-parser/default.nix +++ b/pkgs/development/python-modules/myst-parser/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonRelaxDeps = [ "docutils" ]; - meta = with lib; { + meta = { description = "Sphinx and Docutils extension to parse MyST"; homepage = "https://myst-parser.readthedocs.io/"; changelog = "https://raw.githubusercontent.com/executablebooks/MyST-Parser/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ loicreynier ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ loicreynier ]; }; } diff --git a/pkgs/development/python-modules/myuplink/default.nix b/pkgs/development/python-modules/myuplink/default.nix index dcfe77f78c85..5f48547c74a8 100644 --- a/pkgs/development/python-modules/myuplink/default.nix +++ b/pkgs/development/python-modules/myuplink/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "myuplink" ]; - meta = with lib; { + meta = { description = "Module to interact with the myUplink API"; homepage = "https://github.com/pajzo/myuplink"; changelog = "https://github.com/pajzo/myuplink/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nad-receiver/default.nix b/pkgs/development/python-modules/nad-receiver/default.nix index 35b6cacf54f8..03201adc6082 100644 --- a/pkgs/development/python-modules/nad-receiver/default.nix +++ b/pkgs/development/python-modules/nad-receiver/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nad_receiver" ]; - meta = with lib; { + meta = { description = "Python interface for NAD receivers"; homepage = "https://github.com/joopert/nad_receiver"; changelog = "https://github.com/joopert/nad_receiver/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nagiosplugin/default.nix b/pkgs/development/python-modules/nagiosplugin/default.nix index ca165cf02109..bbb6758a069a 100644 --- a/pkgs/development/python-modules/nagiosplugin/default.nix +++ b/pkgs/development/python-modules/nagiosplugin/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nagiosplugin" ]; - meta = with lib; { + meta = { description = "Python class library which helps with writing Nagios (Icinga) compatible plugins"; homepage = "https://github.com/mpounsett/nagiosplugin"; - license = licenses.zpl21; - maintainers = with maintainers; [ symphorien ]; + license = lib.licenses.zpl21; + maintainers = with lib.maintainers; [ symphorien ]; }; } diff --git a/pkgs/development/python-modules/naked/default.nix b/pkgs/development/python-modules/naked/default.nix index adabd6c6f5aa..b169b2e0a649 100644 --- a/pkgs/development/python-modules/naked/default.nix +++ b/pkgs/development/python-modules/naked/default.nix @@ -104,11 +104,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "Naked" ]; - meta = with lib; { + meta = { description = "Python command line application framework"; homepage = "https://github.com/chrissimpkins/naked"; downloadPage = "https://github.com/chrissimpkins/naked/tags"; - license = licenses.mit; - maintainers = [ maintainers.lucasew ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/name-that-hash/default.nix b/pkgs/development/python-modules/name-that-hash/default.nix index 27aeb4255e84..0e0f1e4bfdaf 100644 --- a/pkgs/development/python-modules/name-that-hash/default.nix +++ b/pkgs/development/python-modules/name-that-hash/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "name_that_hash" ]; - meta = with lib; { + meta = { longDescription = "Don't know what type of hash it is? Name That Hash will name that hash type! Identify MD5, SHA256 and 300+ other hashes."; description = "Module and CLI for the identification of hashes"; homepage = "https://github.com/HashPals/Name-That-Hash"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ eyjhb ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/namedlist/default.nix b/pkgs/development/python-modules/namedlist/default.nix index f4ddbb7dd7ab..ff038c79b96f 100644 --- a/pkgs/development/python-modules/namedlist/default.nix +++ b/pkgs/development/python-modules/namedlist/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "test_ABC" ]; - meta = with lib; { + meta = { description = "Similar to namedtuple, but instances are mutable"; homepage = "https://gitlab.com/ericvsmith/namedlist"; - license = licenses.asl20; - maintainers = with maintainers; [ ivan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ivan ]; }; } diff --git a/pkgs/development/python-modules/nameko/default.nix b/pkgs/development/python-modules/nameko/default.nix index 11730ac66487..2dd39c80f655 100644 --- a/pkgs/development/python-modules/nameko/default.nix +++ b/pkgs/development/python-modules/nameko/default.nix @@ -58,12 +58,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "nameko" ]; - meta = with lib; { + meta = { description = "Microservices framework that lets service developers concentrate on application logic and encourages testability"; mainProgram = "nameko"; homepage = "https://www.nameko.io/"; changelog = "https://github.com/nameko/nameko/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ siddharthdhakane ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ siddharthdhakane ]; }; } diff --git a/pkgs/development/python-modules/nameparser/default.nix b/pkgs/development/python-modules/nameparser/default.nix index dffd114bd075..9a826e237907 100644 --- a/pkgs/development/python-modules/nameparser/default.nix +++ b/pkgs/development/python-modules/nameparser/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nameparser" ]; - meta = with lib; { + meta = { description = "Module for parsing human names into their individual components"; homepage = "https://github.com/derek73/python-nameparser"; changelog = "https://github.com/derek73/python-nameparser/releases/tag/v${version}"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nampa/default.nix b/pkgs/development/python-modules/nampa/default.nix index b4738f5dd261..c0a81528d06d 100644 --- a/pkgs/development/python-modules/nampa/default.nix +++ b/pkgs/development/python-modules/nampa/default.nix @@ -30,11 +30,11 @@ buildPythonPackage { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Python implementation of the FLIRT technology"; homepage = "https://github.com/thebabush/nampa"; changelog = "https://github.com/thebabush/nampa/commits/cb6a63aae64324f57bdc296064bc6aa2b99ff99a/"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nanoid/default.nix b/pkgs/development/python-modules/nanoid/default.nix index 1570c28f9e66..23e8bb598b41 100644 --- a/pkgs/development/python-modules/nanoid/default.nix +++ b/pkgs/development/python-modules/nanoid/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nanoid" ]; - meta = with lib; { + meta = { description = "Tiny, secure, URL-friendly, unique string ID generator for Python"; homepage = "https://github.com/puyuan/py-nanoid"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nanoleaf/default.nix b/pkgs/development/python-modules/nanoleaf/default.nix index 59f9e82d48c4..758f7eda23a7 100644 --- a/pkgs/development/python-modules/nanoleaf/default.nix +++ b/pkgs/development/python-modules/nanoleaf/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nanoleaf" ]; - meta = with lib; { + meta = { description = "Module for interacting with Nanoleaf Aurora lighting"; homepage = "https://github.com/software-2/nanoleaf"; changelog = "https://github.com/software-2/nanoleaf/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nanomsg-python/default.nix b/pkgs/development/python-modules/nanomsg-python/default.nix index 1125b88c0e4e..ba788fef118b 100644 --- a/pkgs/development/python-modules/nanomsg-python/default.nix +++ b/pkgs/development/python-modules/nanomsg-python/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { pythonImportsCheck = [ "nanomsg" ]; - meta = with lib; { + meta = { description = "Bindings for nanomsg"; homepage = "https://github.com/tonysimpson/nanomsg-python"; - license = licenses.mit; - maintainers = with maintainers; [ bgamari ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bgamari ]; }; } diff --git a/pkgs/development/python-modules/nanotime/default.nix b/pkgs/development/python-modules/nanotime/default.nix index d41126916b0b..fdc84e087126 100644 --- a/pkgs/development/python-modules/nanotime/default.nix +++ b/pkgs/development/python-modules/nanotime/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nanotime" ]; - meta = with lib; { + meta = { description = "Provides a time object that keeps time as the number of nanoseconds since the UNIX epoch"; homepage = "https://github.com/jbenet/nanotime/tree/master/python"; - license = licenses.mit; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/napalm/default.nix b/pkgs/development/python-modules/napalm/default.nix index 45976cf378d5..762e5ea92a21 100644 --- a/pkgs/development/python-modules/napalm/default.nix +++ b/pkgs/development/python-modules/napalm/default.nix @@ -87,9 +87,9 @@ buildPythonPackage rec { ddt ]; - meta = with lib; { + meta = { description = "Network Automation and Programmability Abstraction Layer with Multivendor support"; homepage = "https://github.com/napalm-automation/napalm"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/napalm/hp-procurve.nix b/pkgs/development/python-modules/napalm/hp-procurve.nix index cf0cfe0d4ffe..40299d3321f0 100644 --- a/pkgs/development/python-modules/napalm/hp-procurve.nix +++ b/pkgs/development/python-modules/napalm/hp-procurve.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "napalm_procurve" ]; - meta = with lib; { + meta = { description = "HP ProCurve Driver for NAPALM automation frontend"; homepage = "https://github.com/napalm-automation-community/napalm-hp-procurve"; changelog = "https://github.com/napalm-automation-community/napalm-hp-procurve/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/napari-plugin-engine/default.nix b/pkgs/development/python-modules/napari-plugin-engine/default.nix index 194575643117..ec9fc9739117 100644 --- a/pkgs/development/python-modules/napari-plugin-engine/default.nix +++ b/pkgs/development/python-modules/napari-plugin-engine/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "napari_plugin_engine" ]; - meta = with lib; { + meta = { description = "First generation napari plugin engine"; homepage = "https://github.com/napari/napari-plugin-engine"; - license = licenses.mit; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/nasdaq-data-link/default.nix b/pkgs/development/python-modules/nasdaq-data-link/default.nix index 484c0f08d2d3..2a88eee0f7dc 100644 --- a/pkgs/development/python-modules/nasdaq-data-link/default.nix +++ b/pkgs/development/python-modules/nasdaq-data-link/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nasdaqdatalink" ]; - meta = with lib; { + meta = { description = "Library for Nasdaq Data Link's RESTful API"; homepage = "https://github.com/Nasdaq/data-link-python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/natasha/default.nix b/pkgs/development/python-modules/natasha/default.nix index 237ac3b78b76..9548b5ed3451 100644 --- a/pkgs/development/python-modules/natasha/default.nix +++ b/pkgs/development/python-modules/natasha/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/" ]; pythonImportsCheck = [ "natasha" ]; - meta = with lib; { + meta = { description = "NLP framework for Russian language"; homepage = "https://github.com/natasha/natasha"; - license = licenses.mit; - maintainers = with maintainers; [ npatsakula ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ npatsakula ]; }; } diff --git a/pkgs/development/python-modules/nats-py/default.nix b/pkgs/development/python-modules/nats-py/default.nix index ea16db8dfc1d..ca1a9e55fcfa 100644 --- a/pkgs/development/python-modules/nats-py/default.nix +++ b/pkgs/development/python-modules/nats-py/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nats" ]; - meta = with lib; { + meta = { description = "Python client for NATS.io"; homepage = "https://github.com/nats-io/nats.py"; changelog = "https://github.com/nats-io/nats.py/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nats-python/default.nix b/pkgs/development/python-modules/nats-python/default.nix index b9fc85216a53..d8b6e7bd788f 100644 --- a/pkgs/development/python-modules/nats-python/default.nix +++ b/pkgs/development/python-modules/nats-python/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynats" ]; - meta = with lib; { + meta = { description = "Python client for NATS messaging system"; homepage = "https://github.com/Gr1N/nats-python"; changelog = "https://github.com/Gr1N/nats-python/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/natsort/default.nix b/pkgs/development/python-modules/natsort/default.nix index 4183a65e56c0..1f58cd5a77f9 100644 --- a/pkgs/development/python-modules/natsort/default.nix +++ b/pkgs/development/python-modules/natsort/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "natsort" ]; - meta = with lib; { + meta = { description = "Natural sorting for Python"; mainProgram = "natsort"; homepage = "https://github.com/SethMMorton/natsort"; changelog = "https://github.com/SethMMorton/natsort/blob/${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/naturalsort/default.nix b/pkgs/development/python-modules/naturalsort/default.nix index 7c82eb5de9c7..8c31f046ccc6 100644 --- a/pkgs/development/python-modules/naturalsort/default.nix +++ b/pkgs/development/python-modules/naturalsort/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "natsort" ]; - meta = with lib; { + meta = { description = "Simple natural order sorting API for Python that just works"; homepage = "https://github.com/xolox/python-naturalsort"; changelog = "https://github.com/xolox/python-naturalsort/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/navec/default.nix b/pkgs/development/python-modules/navec/default.nix index 8369edba2169..2516ce1a1ab5 100644 --- a/pkgs/development/python-modules/navec/default.nix +++ b/pkgs/development/python-modules/navec/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { disabledTests = [ "test_gensim" ]; pythonImportsCheck = [ "navec" ]; - meta = with lib; { + meta = { description = "Compact high quality word embeddings for Russian language"; mainProgram = "navec-train"; homepage = "https://github.com/natasha/navec"; - license = licenses.mit; - maintainers = with maintainers; [ npatsakula ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ npatsakula ]; }; } diff --git a/pkgs/development/python-modules/nbclassic/default.nix b/pkgs/development/python-modules/nbclassic/default.nix index dd7576aebbea..8493b904fa09 100644 --- a/pkgs/development/python-modules/nbclassic/default.nix +++ b/pkgs/development/python-modules/nbclassic/default.nix @@ -50,9 +50,9 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Jupyter lab environment notebook server extension"; homepage = "https://github.com/jupyter/nbclassic"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; }; } diff --git a/pkgs/development/python-modules/nbconflux/default.nix b/pkgs/development/python-modules/nbconflux/default.nix index 0802f5066314..660e9f80fee5 100644 --- a/pkgs/development/python-modules/nbconflux/default.nix +++ b/pkgs/development/python-modules/nbconflux/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "test_optional_components" ]; - meta = with lib; { + meta = { description = "Converts Jupyter Notebooks to Atlassian Confluence (R) pages using nbconvert"; mainProgram = "nbconflux"; homepage = "https://github.com/Valassis-Digital-Media/nbconflux"; - license = licenses.bsd3; - maintainers = [ maintainers.arnoldfarkas ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/nbdev/default.nix b/pkgs/development/python-modules/nbdev/default.nix index ca0ba59d3e0d..b76c06395da5 100644 --- a/pkgs/development/python-modules/nbdev/default.nix +++ b/pkgs/development/python-modules/nbdev/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nbdev" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fastai/nbdev"; description = "Create delightful software with Jupyter Notebooks"; changelog = "https://github.com/fastai/nbdev/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ rxiao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rxiao ]; }; } diff --git a/pkgs/development/python-modules/nbexec/default.nix b/pkgs/development/python-modules/nbexec/default.nix index f39ad10df7e7..fedfa6591f01 100644 --- a/pkgs/development/python-modules/nbexec/default.nix +++ b/pkgs/development/python-modules/nbexec/default.nix @@ -57,12 +57,12 @@ buildPythonPackage { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Dead-simple tool for executing Jupyter notebooks from the command line"; mainProgram = "nbexec"; homepage = "https://github.com/jsvine/nbexec"; changelog = "https://github.com/jsvine/nbexec/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/nbsmoke/default.nix b/pkgs/development/python-modules/nbsmoke/default.nix index 14cd544647a6..aae9e7d86427 100644 --- a/pkgs/development/python-modules/nbsmoke/default.nix +++ b/pkgs/development/python-modules/nbsmoke/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "nbsmoke" ]; - meta = with lib; { + meta = { description = "Basic notebook checks and linting"; homepage = "https://github.com/pyviz/nbsmoke"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nbsphinx/default.nix b/pkgs/development/python-modules/nbsphinx/default.nix index 4ad780b353b8..ad0ae5ae61b3 100644 --- a/pkgs/development/python-modules/nbsphinx/default.nix +++ b/pkgs/development/python-modules/nbsphinx/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nbsphinx" ]; - meta = with lib; { + meta = { description = "Jupyter Notebook Tools for Sphinx"; homepage = "https://nbsphinx.readthedocs.io/"; changelog = "https://github.com/spatialaudio/nbsphinx/blob/${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nbtlib/default.nix b/pkgs/development/python-modules/nbtlib/default.nix index cb4a0ad4f6f3..ccf97950769b 100644 --- a/pkgs/development/python-modules/nbtlib/default.nix +++ b/pkgs/development/python-modules/nbtlib/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "nbtlib" ]; - meta = with lib; { + meta = { description = "Python library to read and edit nbt data"; mainProgram = "nbt"; homepage = "https://github.com/vberlier/nbtlib"; changelog = "https://github.com/vberlier/nbtlib/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ gdd ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gdd ]; }; } diff --git a/pkgs/development/python-modules/nbval/default.nix b/pkgs/development/python-modules/nbval/default.nix index 920314b9e45d..67b5d3152cd7 100644 --- a/pkgs/development/python-modules/nbval/default.nix +++ b/pkgs/development/python-modules/nbval/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nbval" ]; - meta = with lib; { + meta = { description = "Py.test plugin to validate Jupyter notebooks"; homepage = "https://github.com/computationalmodelling/nbval"; changelog = "https://github.com/computationalmodelling/nbval/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nbxmpp/default.nix b/pkgs/development/python-modules/nbxmpp/default.nix index e562551ec9b0..2a503513cb46 100644 --- a/pkgs/development/python-modules/nbxmpp/default.nix +++ b/pkgs/development/python-modules/nbxmpp/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nbxmpp" ]; - meta = with lib; { + meta = { homepage = "https://dev.gajim.org/gajim/python-nbxmpp"; description = "Non-blocking Jabber/XMPP module"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nc-dnsapi/default.nix b/pkgs/development/python-modules/nc-dnsapi/default.nix index cf6511b1eb97..f81841ba942a 100644 --- a/pkgs/development/python-modules/nc-dnsapi/default.nix +++ b/pkgs/development/python-modules/nc-dnsapi/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "API wrapper for the netcup DNS api"; homepage = "https://github.com/nbuchwitz/nc_dnsapi"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ veehaitch trundle ]; diff --git a/pkgs/development/python-modules/nclib/default.nix b/pkgs/development/python-modules/nclib/default.nix index 8d84993e6259..52f8d5f24acc 100644 --- a/pkgs/development/python-modules/nclib/default.nix +++ b/pkgs/development/python-modules/nclib/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nclib" ]; - meta = with lib; { + meta = { description = "Python module that provides netcat features"; homepage = "https://nclib.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "serve-stdio"; }; } diff --git a/pkgs/development/python-modules/ndeflib/default.nix b/pkgs/development/python-modules/ndeflib/default.nix index a44b9aaa7999..5037a710a109 100644 --- a/pkgs/development/python-modules/ndeflib/default.nix +++ b/pkgs/development/python-modules/ndeflib/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { ] ++ lib.optionals (pythonAtLeast "3.12") [ "test_encode_error" ]; - meta = with lib; { + meta = { description = "Python package for parsing and generating NFC Data Exchange Format messages"; homepage = "https://github.com/nfcpy/ndeflib"; changelog = "https://github.com/nfcpy/ndeflib/releases/tag/v${version}"; - license = licenses.isc; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ndg-httpsclient/default.nix b/pkgs/development/python-modules/ndg-httpsclient/default.nix index 6773eed000c8..d8bd04d81b0a 100644 --- a/pkgs/development/python-modules/ndg-httpsclient/default.nix +++ b/pkgs/development/python-modules/ndg-httpsclient/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { # uses networking doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/cedadev/ndg_httpsclient/"; description = "Provide enhanced HTTPS support for httplib and urllib2 using PyOpenSSL"; mainProgram = "ndg_httpclient"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ndindex/default.nix b/pkgs/development/python-modules/ndindex/default.nix index 906b7976516e..2e72d8510b38 100644 --- a/pkgs/development/python-modules/ndindex/default.nix +++ b/pkgs/development/python-modules/ndindex/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { "--hypothesis-profile=ci" ]; - meta = with lib; { + meta = { description = "Python library for manipulating indices of ndarrays"; homepage = "https://github.com/Quansight-Labs/ndindex"; changelog = "https://github.com/Quansight-Labs/ndindex/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ndjson/default.nix b/pkgs/development/python-modules/ndjson/default.nix index b79733de8040..eb5afd34f401 100644 --- a/pkgs/development/python-modules/ndjson/default.nix +++ b/pkgs/development/python-modules/ndjson/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ndjson" ]; - meta = with lib; { + meta = { description = "Module supports ndjson"; homepage = "https://github.com/rhgrant10/ndjson"; changelog = "https://github.com/rhgrant10/ndjson/blob/v${version}/HISTORY.rst"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ndms2-client/default.nix b/pkgs/development/python-modules/ndms2-client/default.nix index 619cbe171cfa..fb18a778ca31 100644 --- a/pkgs/development/python-modules/ndms2-client/default.nix +++ b/pkgs/development/python-modules/ndms2-client/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ndms2_client" ]; - meta = with lib; { + meta = { description = "Keenetic NDMS 2.x and 3.x client"; homepage = "https://github.com/foxel/python_ndms2_client"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/ndspy/default.nix b/pkgs/development/python-modules/ndspy/default.nix index f769f2132561..f697ad007ab7 100644 --- a/pkgs/development/python-modules/ndspy/default.nix +++ b/pkgs/development/python-modules/ndspy/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { cd tests ''; - meta = with lib; { + meta = { description = "Python library for many Nintendo DS file formats"; homepage = "https://github.com/RoadrunnerWMC/ndspy"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/nebula3-python/default.nix b/pkgs/development/python-modules/nebula3-python/default.nix index a53459ba64d0..65fafcccc1b4 100644 --- a/pkgs/development/python-modules/nebula3-python/default.nix +++ b/pkgs/development/python-modules/nebula3-python/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "tests/test_ssl_pool.py" ]; - meta = with lib; { + meta = { description = "Client API of Nebula Graph in Python"; homepage = "https://github.com/vesoft-inc/nebula-python"; changelog = "https://github.com/vesoft-inc/nebula-python/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nengo/default.nix b/pkgs/development/python-modules/nengo/default.nix index 740975b03b2f..144568fd080e 100644 --- a/pkgs/development/python-modules/nengo/default.nix +++ b/pkgs/development/python-modules/nengo/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nengo" ]; - meta = with lib; { + meta = { description = "Python library for creating and simulating large-scale brain models"; homepage = "https://nengo.ai/"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/neo/default.nix b/pkgs/development/python-modules/neo/default.nix index 50199c6cfe99..4af08d2f9162 100644 --- a/pkgs/development/python-modules/neo/default.nix +++ b/pkgs/development/python-modules/neo/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "neo" ]; - meta = with lib; { + meta = { description = "Package for representing electrophysiology data"; homepage = "https://neuralensemble.org/neo/"; changelog = "https://neo.readthedocs.io/en/${src.tag}/releases/${src.tag}.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/neo4j/default.nix b/pkgs/development/python-modules/neo4j/default.nix index 82ff3aee6f8c..8296ca891374 100644 --- a/pkgs/development/python-modules/neo4j/default.nix +++ b/pkgs/development/python-modules/neo4j/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "neo4j" ]; - meta = with lib; { + meta = { description = "Neo4j Bolt Driver for Python"; homepage = "https://github.com/neo4j/neo4j-python-driver"; changelog = "https://github.com/neo4j/neo4j-python-driver/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/neoteroi-mkdocs/default.nix b/pkgs/development/python-modules/neoteroi-mkdocs/default.nix index d631593257ca..99dc737c324c 100644 --- a/pkgs/development/python-modules/neoteroi-mkdocs/default.nix +++ b/pkgs/development/python-modules/neoteroi-mkdocs/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { "tests/test_http.py" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Neoteroi/mkdocs-plugins"; description = "Plugins for MkDocs"; changelog = "https://github.com/Neoteroi/mkdocs-plugins/releases/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero zimbatm ]; diff --git a/pkgs/development/python-modules/nessclient/default.nix b/pkgs/development/python-modules/nessclient/default.nix index 58c3aa5bf0b8..ded5437a4b2a 100644 --- a/pkgs/development/python-modules/nessclient/default.nix +++ b/pkgs/development/python-modules/nessclient/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "nessclient" ]; - meta = with lib; { + meta = { description = "Python implementation/abstraction of the Ness D8x/D16x Serial Interface ASCII protocol"; homepage = "https://github.com/nickw444/nessclient"; changelog = "https://github.com/nickw444/nessclient/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ness-cli"; }; } diff --git a/pkgs/development/python-modules/nest-asyncio/default.nix b/pkgs/development/python-modules/nest-asyncio/default.nix index 16e8fbddc63c..7e900e6b6ee7 100644 --- a/pkgs/development/python-modules/nest-asyncio/default.nix +++ b/pkgs/development/python-modules/nest-asyncio/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nest_asyncio" ]; - meta = with lib; { + meta = { description = "Patch asyncio to allow nested event loops"; homepage = "https://github.com/erdewit/nest_asyncio"; changelog = "https://github.com/erdewit/nest_asyncio/releases/tag/v${version}"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nested-lookup/default.nix b/pkgs/development/python-modules/nested-lookup/default.nix index 3eff01d9480d..3bd648638c8b 100644 --- a/pkgs/development/python-modules/nested-lookup/default.nix +++ b/pkgs/development/python-modules/nested-lookup/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nested_lookup" ]; - meta = with lib; { + meta = { description = "Python functions for working with deeply nested documents (lists and dicts)"; homepage = "https://github.com/russellballestrini/nested-lookup"; - license = licenses.publicDomain; - maintainers = with maintainers; [ tboerger ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ tboerger ]; }; } diff --git a/pkgs/development/python-modules/nestedtext/default.nix b/pkgs/development/python-modules/nestedtext/default.nix index 40aa93be7120..2d9d7bf07be4 100644 --- a/pkgs/development/python-modules/nestedtext/default.nix +++ b/pkgs/development/python-modules/nestedtext/default.nix @@ -58,7 +58,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "nestedtext" ]; - meta = with lib; { + meta = { description = "Human friendly data format"; longDescription = '' NestedText is a file format for holding data that is to be entered, @@ -73,7 +73,7 @@ buildPythonPackage rec { ''; homepage = "https://nestedtext.org"; changelog = "https://github.com/KenKundert/nestedtext/blob/v${version}/doc/releases.rst"; - license = licenses.mit; - maintainers = with maintainers; [ jeremyschlatter ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jeremyschlatter ]; }; } diff --git a/pkgs/development/python-modules/netaddr/default.nix b/pkgs/development/python-modules/netaddr/default.nix index 8d04bc106b07..0a9c8457e96d 100644 --- a/pkgs/development/python-modules/netaddr/default.nix +++ b/pkgs/development/python-modules/netaddr/default.nix @@ -25,13 +25,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "netaddr" ]; - meta = with lib; { + meta = { description = "Network address manipulation library for Python"; mainProgram = "netaddr"; homepage = "https://netaddr.readthedocs.io/"; downloadPage = "https://github.com/netaddr/netaddr/releases"; changelog = "https://github.com/netaddr/netaddr/blob/${version}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/netapp-lib/default.nix b/pkgs/development/python-modules/netapp-lib/default.nix index ef80f214ea8f..fb35340eedee 100644 --- a/pkgs/development/python-modules/netapp-lib/default.nix +++ b/pkgs/development/python-modules/netapp-lib/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "netapp_lib" ]; - meta = with lib; { + meta = { description = "Netapp-lib is required for Ansible deployments to interact with NetApp storage systems"; homepage = "https://netapp.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/netapp-ontap/default.nix b/pkgs/development/python-modules/netapp-ontap/default.nix index 893318a90d6a..b6ea2846f813 100644 --- a/pkgs/development/python-modules/netapp-ontap/default.nix +++ b/pkgs/development/python-modules/netapp-ontap/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "netapp_ontap" ]; - meta = with lib; { + meta = { description = "Library for working with ONTAP's REST APIs simply in Python"; homepage = "https://library.netapp.com/ecmdocs/ECMLP3331665/html/index.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "ontap-cli"; }; } diff --git a/pkgs/development/python-modules/netbox-floorplan-plugin/default.nix b/pkgs/development/python-modules/netbox-floorplan-plugin/default.nix index e6791bb20741..61b703f8b37d 100644 --- a/pkgs/development/python-modules/netbox-floorplan-plugin/default.nix +++ b/pkgs/development/python-modules/netbox-floorplan-plugin/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "netbox_floorplan" ]; - meta = with lib; { + meta = { description = "Netbox plugin providing floorplan mapping capability for locations and sites"; homepage = "https://github.com/netbox-community/netbox-floorplan-plugin"; changelog = "https://github.com/netbox-community/netbox-floorplan-plugin/releases/tag/${src.tag}"; - license = licenses.lgpl3; - maintainers = with maintainers; [ cobalt ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ cobalt ]; }; } diff --git a/pkgs/development/python-modules/netbox-plugin-prometheus-sd/default.nix b/pkgs/development/python-modules/netbox-plugin-prometheus-sd/default.nix index 4a7d621eec7a..ad3b1d8ab79f 100644 --- a/pkgs/development/python-modules/netbox-plugin-prometheus-sd/default.nix +++ b/pkgs/development/python-modules/netbox-plugin-prometheus-sd/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "netbox_prometheus_sd" ]; - meta = with lib; { + meta = { description = "Netbox plugin to provide Netbox entires to Prometheus HTTP service discovery"; homepage = "https://github.com/FlxPeters/netbox-plugin-prometheus-sd"; changelog = "https://github.com/FlxPeters/netbox-plugin-prometheus-sd/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ xanderio ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xanderio ]; }; } diff --git a/pkgs/development/python-modules/netcdf4/default.nix b/pkgs/development/python-modules/netcdf4/default.nix index aa5ec4c56cc1..ddd8221f021c 100644 --- a/pkgs/development/python-modules/netcdf4/default.nix +++ b/pkgs/development/python-modules/netcdf4/default.nix @@ -81,11 +81,11 @@ buildPythonPackage { pythonImportsCheck = [ "netCDF4" ]; - meta = with lib; { + meta = { description = "Interface to netCDF library (versions 3 and 4)"; homepage = "https://github.com/Unidata/netcdf4-python"; changelog = "https://github.com/Unidata/netcdf4-python/raw/${tag}/Changelog"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/netdata-pandas/default.nix b/pkgs/development/python-modules/netdata-pandas/default.nix index ebe10fceaccb..cbf8838ef090 100644 --- a/pkgs/development/python-modules/netdata-pandas/default.nix +++ b/pkgs/development/python-modules/netdata-pandas/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "netdata_pandas" ]; - meta = with lib; { + meta = { description = "Library to pull data from the netdata REST API into a pandas dataframe"; homepage = "https://github.com/netdata/netdata-pandas"; - license = licenses.asl20; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/netdata/default.nix b/pkgs/development/python-modules/netdata/default.nix index 6aef6c9f75e1..0704c61c1a3b 100644 --- a/pkgs/development/python-modules/netdata/default.nix +++ b/pkgs/development/python-modules/netdata/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "netdata" ]; - meta = with lib; { + meta = { description = "Python API for interacting with Netdata"; homepage = "https://github.com/home-assistant-ecosystem/python-netdata"; changelog = "https://github.com/home-assistant-ecosystem/python-netdata/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/netdisco/default.nix b/pkgs/development/python-modules/netdisco/default.nix index 3b90aaed74b4..b058ee9bb123 100644 --- a/pkgs/development/python-modules/netdisco/default.nix +++ b/pkgs/development/python-modules/netdisco/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "netdisco.discovery" ]; - meta = with lib; { + meta = { description = "Python library to scan local network for services and devices"; homepage = "https://github.com/home-assistant/netdisco"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/nethsm/default.nix b/pkgs/development/python-modules/nethsm/default.nix index 426e93f4bba6..b7eea7a95882 100644 --- a/pkgs/development/python-modules/nethsm/default.nix +++ b/pkgs/development/python-modules/nethsm/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "tests/test_nethsm_users.py" ]; - meta = with lib; { + meta = { description = "Client-side Python SDK for NetHSM"; homepage = "https://github.com/Nitrokey/nethsm-sdk-py"; changelog = "https://github.com/Nitrokey/nethsm-sdk-py/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ frogamic ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ frogamic ]; }; } diff --git a/pkgs/development/python-modules/netifaces/default.nix b/pkgs/development/python-modules/netifaces/default.nix index 8133131a4277..6261729362eb 100644 --- a/pkgs/development/python-modules/netifaces/default.nix +++ b/pkgs/development/python-modules/netifaces/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "netifaces" ]; - meta = with lib; { + meta = { description = "Portable access to network interfaces from Python"; homepage = "https://github.com/al45tair/netifaces"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/netio/default.nix b/pkgs/development/python-modules/netio/default.nix index 5b1e5d47889b..366a8fe79e27 100644 --- a/pkgs/development/python-modules/netio/default.nix +++ b/pkgs/development/python-modules/netio/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Module for interacting with NETIO devices"; mainProgram = "Netio"; homepage = "https://github.com/netioproducts/PyNetio"; changelog = "https://github.com/netioproducts/PyNetio/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/netmap/default.nix b/pkgs/development/python-modules/netmap/default.nix index 81d326f50e41..b9266051d09d 100644 --- a/pkgs/development/python-modules/netmap/default.nix +++ b/pkgs/development/python-modules/netmap/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nmap" ]; - meta = with lib; { + meta = { description = "Python class to use nmap and access scan results from python3"; homepage = "https://github.com/home-assistant-libs/python-nmap"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/netmiko/default.nix b/pkgs/development/python-modules/netmiko/default.nix index 659151015602..1e7a1028e27f 100644 --- a/pkgs/development/python-modules/netmiko/default.nix +++ b/pkgs/development/python-modules/netmiko/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "netmiko" ]; - meta = with lib; { + meta = { description = "Multi-vendor library to simplify Paramiko SSH connections to network devices"; homepage = "https://github.com/ktbyers/netmiko/"; changelog = "https://github.com/ktbyers/netmiko/releases/tag/v${version}"; - license = licenses.mit; - maintainers = [ maintainers.astro ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.astro ]; }; } diff --git a/pkgs/development/python-modules/nettigo-air-monitor/default.nix b/pkgs/development/python-modules/nettigo-air-monitor/default.nix index 3a68b5330ef3..34722e5fb7e0 100644 --- a/pkgs/development/python-modules/nettigo-air-monitor/default.nix +++ b/pkgs/development/python-modules/nettigo-air-monitor/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nettigo_air_monitor" ]; - meta = with lib; { + meta = { description = "Python module to get air quality data from Nettigo Air Monitor devices"; homepage = "https://github.com/bieniu/nettigo-air-monitor"; changelog = "https://github.com/bieniu/nettigo-air-monitor/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/netutils/default.nix b/pkgs/development/python-modules/netutils/default.nix index 26784e013ca5..4f5b83854004 100644 --- a/pkgs/development/python-modules/netutils/default.nix +++ b/pkgs/development/python-modules/netutils/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { "test_encrypt_cisco_type5" ]; - meta = with lib; { + meta = { description = "Library that is a collection of objects for common network automation tasks"; homepage = "https://github.com/networktocode/netutils"; changelog = "https://github.com/networktocode/netutils/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nevow/default.nix b/pkgs/development/python-modules/nevow/default.nix index 04ada67634ca..852863e1b7d9 100644 --- a/pkgs/development/python-modules/nevow/default.nix +++ b/pkgs/development/python-modules/nevow/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { trial formless nevow ''; - meta = with lib; { + meta = { description = "Nevow, a web application construction kit for Python"; longDescription = '' Nevow - Pronounced as the French "nouveau", or "noo-voh", Nevow @@ -46,6 +46,6 @@ buildPythonPackage rec { successfully, the method will be called with the coerced values. ''; homepage = "https://github.com/twisted/nevow"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/newick/default.nix b/pkgs/development/python-modules/newick/default.nix index ec0b78467093..9f60954a93f0 100644 --- a/pkgs/development/python-modules/newick/default.nix +++ b/pkgs/development/python-modules/newick/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "newick" ]; - meta = with lib; { + meta = { description = "Python package to read and write the Newick format"; homepage = "https://github.com/dlce-eva/python-newick"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/newversion/default.nix b/pkgs/development/python-modules/newversion/default.nix index 3cb87173d135..57b12a335018 100644 --- a/pkgs/development/python-modules/newversion/default.nix +++ b/pkgs/development/python-modules/newversion/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "newversion" ]; - meta = with lib; { + meta = { description = "PEP 440 version manager"; homepage = "https://github.com/vemel/newversion"; changelog = "https://github.com/vemel/newversion/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "newversion"; }; } diff --git a/pkgs/development/python-modules/nexia/default.nix b/pkgs/development/python-modules/nexia/default.nix index b30f41985415..1a48b6fd8437 100644 --- a/pkgs/development/python-modules/nexia/default.nix +++ b/pkgs/development/python-modules/nexia/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nexia" ]; - meta = with lib; { + meta = { description = "Python module for Nexia thermostats"; homepage = "https://github.com/bdraco/nexia"; changelog = "https://github.com/bdraco/nexia/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nextcloudmonitor/default.nix b/pkgs/development/python-modules/nextcloudmonitor/default.nix index 86de7cd55eab..6201899cf07a 100644 --- a/pkgs/development/python-modules/nextcloudmonitor/default.nix +++ b/pkgs/development/python-modules/nextcloudmonitor/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nextcloudmonitor" ]; - meta = with lib; { + meta = { changelog = "https://github.com/meichthys/nextcloud_monitor/blob/${src.tag}/README.md#change-log"; description = "Python wrapper around nextcloud monitor api"; homepage = "https://github.com/meichthys/nextcloud_monitor"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/nextcord/default.nix b/pkgs/development/python-modules/nextcord/default.nix index 4dea44796108..2f3345ffc4eb 100644 --- a/pkgs/development/python-modules/nextcord/default.nix +++ b/pkgs/development/python-modules/nextcord/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { "nextcord.ext.tasks" ]; - meta = with lib; { + meta = { changelog = "https://github.com/nextcord/nextcord/blob/${src.tag}/docs/whats_new.rst"; description = "Python wrapper for the Discord API forked from discord.py"; homepage = "https://github.com/nextcord/nextcord"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/nextdns/default.nix b/pkgs/development/python-modules/nextdns/default.nix index fa61b3889a03..e3017921e5c5 100644 --- a/pkgs/development/python-modules/nextdns/default.nix +++ b/pkgs/development/python-modules/nextdns/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nextdns" ]; - meta = with lib; { + meta = { description = "Module for the NextDNS API"; homepage = "https://github.com/bieniu/nextdns"; changelog = "https://github.com/bieniu/nextdns/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nexusformat/default.nix b/pkgs/development/python-modules/nexusformat/default.nix index e0bdb75a6365..63c7e304d3d3 100644 --- a/pkgs/development/python-modules/nexusformat/default.nix +++ b/pkgs/development/python-modules/nexusformat/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nexusformat.nexus" ]; - meta = with lib; { + meta = { description = "Python API to open, create, and manipulate NeXus data written in the HDF5 format"; homepage = "https://github.com/nexpy/nexusformat"; changelog = "https://github.com/nexpy/nexusformat/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ oberth-effect ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ oberth-effect ]; }; } diff --git a/pkgs/development/python-modules/nfcpy/default.nix b/pkgs/development/python-modules/nfcpy/default.nix index 21886328854b..0d9cc4cdbd65 100644 --- a/pkgs/development/python-modules/nfcpy/default.nix +++ b/pkgs/development/python-modules/nfcpy/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { "tests/test_clf_udp.py" ]; - meta = with lib; { + meta = { description = "Python module to read/write NFC tags or communicate with another NFC device"; homepage = "https://github.com/nfcpy/nfcpy"; changelog = "https://github.com/nfcpy/nfcpy/blob/v${version}/HISTORY.rst"; - license = licenses.eupl11; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.eupl11; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nh3/default.nix b/pkgs/development/python-modules/nh3/default.nix index 2e5bd5687fe6..67a4295c7b2f 100644 --- a/pkgs/development/python-modules/nh3/default.nix +++ b/pkgs/development/python-modules/nh3/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { pythonImportsCheck = [ "nh3" ]; - meta = with lib; { + meta = { description = "Python binding to Ammonia HTML sanitizer Rust crate"; homepage = "https://github.com/messense/nh3"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/niaaml/default.nix b/pkgs/development/python-modules/niaaml/default.nix index 3202698383aa..f690bf1b1c6a 100644 --- a/pkgs/development/python-modules/niaaml/default.nix +++ b/pkgs/development/python-modules/niaaml/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "niaaml" ]; - meta = with lib; { + meta = { description = "Python automated machine learning framework"; homepage = "https://github.com/firefly-cpp/NiaAML"; changelog = "https://github.com/firefly-cpp/NiaAML/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/development/python-modules/niaclass/default.nix b/pkgs/development/python-modules/niaclass/default.nix index 19ac2d30ee30..b34c46446339 100644 --- a/pkgs/development/python-modules/niaclass/default.nix +++ b/pkgs/development/python-modules/niaclass/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "niaclass" ]; - meta = with lib; { + meta = { description = "Framework for solving classification tasks using Nature-inspired algorithms"; homepage = "https://github.com/firefly-cpp/NiaClass"; changelog = "https://github.com/firefly-cpp/NiaClass/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/development/python-modules/nianet/default.nix b/pkgs/development/python-modules/nianet/default.nix index bcdcb08bb9df..a5d8370029c1 100644 --- a/pkgs/development/python-modules/nianet/default.nix +++ b/pkgs/development/python-modules/nianet/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nianet" ]; - meta = with lib; { + meta = { description = "Designing and constructing neural network topologies using nature-inspired algorithms"; homepage = "https://github.com/SasoPavlic/NiaNet"; changelog = "https://github.com/SasoPavlic/NiaNet/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/development/python-modules/niapy/default.nix b/pkgs/development/python-modules/niapy/default.nix index 15a1736b2703..2d17315de54b 100644 --- a/pkgs/development/python-modules/niapy/default.nix +++ b/pkgs/development/python-modules/niapy/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "niapy" ]; - meta = with lib; { + meta = { description = "Micro framework for building nature-inspired algorithms"; homepage = "https://niapy.org/"; changelog = "https://github.com/NiaOrg/NiaPy/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nibabel/default.nix b/pkgs/development/python-modules/nibabel/default.nix index 14127b352169..8107c2f6760e 100644 --- a/pkgs/development/python-modules/nibabel/default.nix +++ b/pkgs/development/python-modules/nibabel/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { export PATH=$out/bin:$PATH ''; - meta = with lib; { + meta = { homepage = "https://nipy.org/nibabel"; changelog = "https://github.com/nipy/nibabel/blob/${version}/Changelog"; description = "Access a multitude of neuroimaging data formats"; - license = licenses.mit; - maintainers = with maintainers; [ ashgillman ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ashgillman ]; }; } diff --git a/pkgs/development/python-modules/nibe/default.nix b/pkgs/development/python-modules/nibe/default.nix index 7c94bfeed8aa..5078046fcfa0 100644 --- a/pkgs/development/python-modules/nibe/default.nix +++ b/pkgs/development/python-modules/nibe/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nibe" ]; - meta = with lib; { + meta = { description = "Library for the communication with Nibe heatpumps"; homepage = "https://github.com/yozik04/nibe"; changelog = "https://github.com/yozik04/nibe/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nikola/default.nix b/pkgs/development/python-modules/nikola/default.nix index 296b34cb159e..796665e2a9de 100644 --- a/pkgs/development/python-modules/nikola/default.nix +++ b/pkgs/development/python-modules/nikola/default.nix @@ -111,12 +111,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "nikola" ]; - meta = with lib; { + meta = { description = "Static website and blog generator"; homepage = "https://getnikola.com/"; changelog = "https://github.com/getnikola/nikola/blob/v${version}/CHANGES.txt"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; mainProgram = "nikola"; }; } diff --git a/pkgs/development/python-modules/niluclient/default.nix b/pkgs/development/python-modules/niluclient/default.nix index 6e667a277616..b0494e138d0b 100644 --- a/pkgs/development/python-modules/niluclient/default.nix +++ b/pkgs/development/python-modules/niluclient/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "niluclient" ]; - meta = with lib; { + meta = { description = "Python client for getting air pollution data from NILU sensor stations"; homepage = "https://github.com/hfurubotten/niluclient"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nine/default.nix b/pkgs/development/python-modules/nine/default.nix index c85eef313070..26c8373c1243 100644 --- a/pkgs/development/python-modules/nine/default.nix +++ b/pkgs/development/python-modules/nine/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { build-system = [ poetry-core ]; - meta = with lib; { + meta = { description = "Let's write Python 3 right now"; homepage = "https://github.com/nandoflorestan/nine"; - license = licenses.free; + license = lib.licenses.free; }; } diff --git a/pkgs/development/python-modules/ninebot-ble/default.nix b/pkgs/development/python-modules/ninebot-ble/default.nix index 905acd753c85..1571c02b5921 100644 --- a/pkgs/development/python-modules/ninebot-ble/default.nix +++ b/pkgs/development/python-modules/ninebot-ble/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ninebot_ble" ]; - meta = with lib; { + meta = { description = "Ninebot scooter BLE client"; mainProgram = "ninebot-ble"; homepage = "https://github.com/ownbee/ninebot-ble"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ninja/default.nix b/pkgs/development/python-modules/ninja/default.nix index d37cf0bffec9..9b4359c49cb4 100644 --- a/pkgs/development/python-modules/ninja/default.nix +++ b/pkgs/development/python-modules/ninja/default.nix @@ -34,7 +34,7 @@ buildPythonPackage { "ninja.ninja_syntax" ]; - meta = with lib; { + meta = { description = "Small build system with a focus on speed"; mainProgram = "ninja"; longDescription = '' @@ -42,8 +42,8 @@ buildPythonPackage { provided by nixpkgs instead of downloading ninja from the web. ''; homepage = "https://github.com/scikit-build/ninja-python-distributions"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ _999eagle ]; }; diff --git a/pkgs/development/python-modules/nipreps-versions/default.nix b/pkgs/development/python-modules/nipreps-versions/default.nix index 6771ef5fce05..51d68035964b 100644 --- a/pkgs/development/python-modules/nipreps-versions/default.nix +++ b/pkgs/development/python-modules/nipreps-versions/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "nipreps_versions" ]; - meta = with lib; { + meta = { description = "Setuptools_scm plugin for nipreps version schemes"; homepage = "https://github.com/nipreps/version-schemes"; changelog = "https://github.com/nipreps/version-schemes/blob/${src.rev}/CHANGES.md"; - license = licenses.asl20; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/nipy/default.nix b/pkgs/development/python-modules/nipy/default.nix index 0b9690d62815..2bab29a2b790 100644 --- a/pkgs/development/python-modules/nipy/default.nix +++ b/pkgs/development/python-modules/nipy/default.nix @@ -76,10 +76,10 @@ buildPythonPackage rec { "nipy.algorithms" ]; - meta = with lib; { + meta = { homepage = "https://nipy.org/nipy"; description = "Software for structural and functional neuroimaging analysis"; downloadPage = "https://github.com/nipy/nipy"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/nitime/default.nix b/pkgs/development/python-modules/nitime/default.nix index d6295005e693..be3a20a69b47 100644 --- a/pkgs/development/python-modules/nitime/default.nix +++ b/pkgs/development/python-modules/nitime/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nitime" ]; - meta = with lib; { + meta = { homepage = "https://nipy.org/nitime"; description = "Algorithms and containers for time-series analysis in time and spectral domains"; - license = licenses.bsd3; - maintainers = [ maintainers.bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/nitrokey/default.nix b/pkgs/development/python-modules/nitrokey/default.nix index 8ad52bc039c6..57c75076d633 100644 --- a/pkgs/development/python-modules/nitrokey/default.nix +++ b/pkgs/development/python-modules/nitrokey/default.nix @@ -46,14 +46,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "nitrokey" ]; - meta = with lib; { + meta = { description = "Python SDK for Nitrokey devices"; homepage = "https://github.com/Nitrokey/nitrokey-sdk-py"; changelog = "https://github.com/Nitrokey/nitrokey-sdk-py/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ panicgh ]; + maintainers = with lib.maintainers; [ panicgh ]; }; } diff --git a/pkgs/development/python-modules/nix-kernel/default.nix b/pkgs/development/python-modules/nix-kernel/default.nix index 335b77e2cde6..360a2c65024c 100644 --- a/pkgs/development/python-modules/nix-kernel/default.nix +++ b/pkgs/development/python-modules/nix-kernel/default.nix @@ -44,10 +44,10 @@ buildPythonPackage { pythonImportsCheck = [ "nix-kernel" ]; - meta = with lib; { + meta = { description = "Simple jupyter kernel for nix-repl"; homepage = "https://github.com/GTrunSec/nix-kernel"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nix-prefetch-github/default.nix b/pkgs/development/python-modules/nix-prefetch-github/default.nix index ee006549aaa0..c8a2775df7a0 100644 --- a/pkgs/development/python-modules/nix-prefetch-github/default.nix +++ b/pkgs/development/python-modules/nix-prefetch-github/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { # ignore tests which are impure DISABLED_TESTS = "network requires_nix_build"; - meta = with lib; { + meta = { description = "Prefetch sources from github"; homepage = "https://github.com/seppeljordan/nix-prefetch-github"; - license = licenses.gpl3; - maintainers = with maintainers; [ seppeljordan ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ seppeljordan ]; }; } diff --git a/pkgs/development/python-modules/nixpkgs-pytools/default.nix b/pkgs/development/python-modules/nixpkgs-pytools/default.nix index a8bedf7bc2e0..103286a0f0b1 100644 --- a/pkgs/development/python-modules/nixpkgs-pytools/default.nix +++ b/pkgs/development/python-modules/nixpkgs-pytools/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # tests require network .. doCheck = false; - meta = with lib; { + meta = { description = "Tools for removing the tedious nature of creating nixpkgs derivations"; homepage = "https://github.com/nix-community/nixpkgs-pytools"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nkdfu/default.nix b/pkgs/development/python-modules/nkdfu/default.nix index 0ebb513c2b18..6e7586a7b56f 100644 --- a/pkgs/development/python-modules/nkdfu/default.nix +++ b/pkgs/development/python-modules/nkdfu/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nkdfu" ]; - meta = with lib; { + meta = { description = "Python tool for Nitrokeys' firmware update"; mainProgram = "nkdfu"; homepage = "https://github.com/Nitrokey/nkdfu"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ frogamic ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ frogamic ]; }; } diff --git a/pkgs/development/python-modules/nlpcloud/default.nix b/pkgs/development/python-modules/nlpcloud/default.nix index e8dfdb7b116a..fbe46ee85db7 100644 --- a/pkgs/development/python-modules/nlpcloud/default.nix +++ b/pkgs/development/python-modules/nlpcloud/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nlpcloud" ]; - meta = with lib; { + meta = { description = "Python client for the NLP Cloud API"; homepage = "https://nlpcloud.com/"; changelog = "https://github.com/nlpcloud/nlpcloud-python/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/nltk/default.nix b/pkgs/development/python-modules/nltk/default.nix index b8efb799587c..10504c850318 100644 --- a/pkgs/development/python-modules/nltk/default.nix +++ b/pkgs/development/python-modules/nltk/default.nix @@ -99,11 +99,11 @@ buildPythonPackage rec { dataDir = pkgs.callPackage ./data-dir.nix { }; }; - meta = with lib; { + meta = { description = "Natural Language Processing ToolKit"; mainProgram = "nltk"; homepage = "http://nltk.org/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ lib.maintainers.bengsparks ]; }; } diff --git a/pkgs/development/python-modules/nmapthon2/default.nix b/pkgs/development/python-modules/nmapthon2/default.nix index 54bf8ad6ffab..aae2265af7c3 100644 --- a/pkgs/development/python-modules/nmapthon2/default.nix +++ b/pkgs/development/python-modules/nmapthon2/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nmapthon2" ]; - meta = with lib; { + meta = { description = "Python library to automate nmap"; homepage = "https://github.com/cblopez/nmapthon2"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nocasedict/default.nix b/pkgs/development/python-modules/nocasedict/default.nix index b1b5f08a1cfc..29f623b6da7d 100644 --- a/pkgs/development/python-modules/nocasedict/default.nix +++ b/pkgs/development/python-modules/nocasedict/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nocasedict" ]; - meta = with lib; { + meta = { description = "Case-insensitive ordered dictionary for Python"; homepage = "https://github.com/pywbem/nocasedict"; changelog = "https://github.com/pywbem/nocasedict/blob/${version}/docs/changes.rst"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nocaselist/default.nix b/pkgs/development/python-modules/nocaselist/default.nix index 0d66b766cfe6..7b27b896805c 100644 --- a/pkgs/development/python-modules/nocaselist/default.nix +++ b/pkgs/development/python-modules/nocaselist/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nocaselist" ]; - meta = with lib; { + meta = { description = "Case-insensitive list for Python"; homepage = "https://github.com/pywbem/nocaselist"; changelog = "https://github.com/pywbem/nocaselist/blob/${version}/docs/changes.rst"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/node-semver/default.nix b/pkgs/development/python-modules/node-semver/default.nix index dd7169083f84..ea6cb006e1c0 100644 --- a/pkgs/development/python-modules/node-semver/default.nix +++ b/pkgs/development/python-modules/node-semver/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nodesemver" ]; - meta = with lib; { + meta = { changelog = "https://github.com/podhmo/python-node-semver/blob/${version}/CHANGES.txt"; description = "Port of node-semver"; homepage = "https://github.com/podhmo/python-semver"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nodeenv/default.nix b/pkgs/development/python-modules/nodeenv/default.nix index 81e6d7b7a329..88a9870648dc 100644 --- a/pkgs/development/python-modules/nodeenv/default.nix +++ b/pkgs/development/python-modules/nodeenv/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { "test_smoke" ]; - meta = with lib; { + meta = { description = "Node.js virtual environment builder"; mainProgram = "nodeenv"; homepage = "https://github.com/ekalinin/nodeenv"; changelog = "https://github.com/ekalinin/nodeenv/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nodepy-runtime/default.nix b/pkgs/development/python-modules/nodepy-runtime/default.nix index 840ce04f1dcc..ec0b74c1c9d3 100644 --- a/pkgs/development/python-modules/nodepy-runtime/default.nix +++ b/pkgs/development/python-modules/nodepy-runtime/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "nodepy" ]; - meta = with lib; { + meta = { homepage = "https://github.com/nodepy/nodepy"; description = "Runtime for Python inspired by Node.JS"; longDescription = '' @@ -41,7 +41,7 @@ buildPythonPackage rec { dependencies of the package manager you must specify the [pm] install extra. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/noise/default.nix b/pkgs/development/python-modules/noise/default.nix index fc00d09f8033..b66f2ce62198 100644 --- a/pkgs/development/python-modules/noise/default.nix +++ b/pkgs/development/python-modules/noise/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "noise" ]; - meta = with lib; { + meta = { description = "Native-code and shader implementations of Perlin noise"; homepage = "https://github.com/caseman/noise"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/noiseprotocol/default.nix b/pkgs/development/python-modules/noiseprotocol/default.nix index 1117b961e218..d651a4e21ff6 100644 --- a/pkgs/development/python-modules/noiseprotocol/default.nix +++ b/pkgs/development/python-modules/noiseprotocol/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "noise" ]; - meta = with lib; { + meta = { description = "Noise Protocol Framework"; homepage = "https://github.com/plizonczyk/noiseprotocol/"; changelog = "https://github.com/plizonczyk/noiseprotocol/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nomadnet/default.nix b/pkgs/development/python-modules/nomadnet/default.nix index 24c774b8c0db..45b4b62d451d 100644 --- a/pkgs/development/python-modules/nomadnet/default.nix +++ b/pkgs/development/python-modules/nomadnet/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "nomadnet" ]; - meta = with lib; { + meta = { description = "Off-grid, resilient mesh communication"; homepage = "https://github.com/markqvist/NomadNet"; changelog = "https://github.com/markqvist/NomadNet/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "nomadnet"; }; } diff --git a/pkgs/development/python-modules/norfair/default.nix b/pkgs/development/python-modules/norfair/default.nix index 59b915746344..3bcbed3fa316 100644 --- a/pkgs/development/python-modules/norfair/default.nix +++ b/pkgs/development/python-modules/norfair/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "norfair" ]; - meta = with lib; { + meta = { description = "Lightweight Python library for adding real-time multi-object tracking to any detector"; changelog = "https://github.com/tryolabs/norfair/releases/tag/${src.tag}"; homepage = "https://github.com/tryolabs/norfair"; - license = licenses.bsd3; - maintainers = with maintainers; [ fleaz ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fleaz ]; }; } diff --git a/pkgs/development/python-modules/notebook-shim/default.nix b/pkgs/development/python-modules/notebook-shim/default.nix index 216afbb96da5..aed3414e3dd5 100644 --- a/pkgs/development/python-modules/notebook-shim/default.nix +++ b/pkgs/development/python-modules/notebook-shim/default.nix @@ -39,14 +39,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "notebook_shim" ]; - meta = with lib; { + meta = { description = "Switch frontends to Jupyter Server"; longDescription = '' This project provides a way for JupyterLab and other frontends to switch to Jupyter Server for their Python Web application backend. ''; homepage = "https://github.com/jupyter/notebook_shim"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/notifications-android-tv/default.nix b/pkgs/development/python-modules/notifications-android-tv/default.nix index ee52b7e54eab..fb49eb37fa90 100644 --- a/pkgs/development/python-modules/notifications-android-tv/default.nix +++ b/pkgs/development/python-modules/notifications-android-tv/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pytest-httpx ]; - meta = with lib; { + meta = { description = "Python API for sending notifications to Android/Fire TVs"; homepage = "https://github.com/engrbm87/notifications_android_tv"; changelog = "https://github.com/engrbm87/notifications_android_tv/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dominikh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dominikh ]; }; } diff --git a/pkgs/development/python-modules/notifications-python-client/default.nix b/pkgs/development/python-modules/notifications-python-client/default.nix index c0e2f8f9fabf..6fc175138111 100644 --- a/pkgs/development/python-modules/notifications-python-client/default.nix +++ b/pkgs/development/python-modules/notifications-python-client/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "notifications_python_client" ]; - meta = with lib; { + meta = { description = "Python client for the GOV.UK Notify API"; homepage = "https://github.com/alphagov/notifications-python-client"; changelog = "https://github.com/alphagov/notifications-python-client/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/notify-py/default.nix b/pkgs/development/python-modules/notify-py/default.nix index 76e334c8ba9c..9e8a4b0faded 100644 --- a/pkgs/development/python-modules/notify-py/default.nix +++ b/pkgs/development/python-modules/notify-py/default.nix @@ -80,13 +80,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "notifypy" ]; - meta = with lib; { + meta = { description = "Cross-platform desktop notification library for Python"; mainProgram = "notifypy"; homepage = "https://github.com/ms7m/notify-py"; changelog = "https://github.com/ms7m/notify-py/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ austinbutler dotlambda ]; diff --git a/pkgs/development/python-modules/notion-client/default.nix b/pkgs/development/python-modules/notion-client/default.nix index 438c7bd1a323..7d3574f6c3e3 100644 --- a/pkgs/development/python-modules/notion-client/default.nix +++ b/pkgs/development/python-modules/notion-client/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { "test_api_http_response_error" ]; - meta = with lib; { + meta = { description = "Python client for the official Notion API"; homepage = "https://github.com/ramnes/notion-sdk-py"; changelog = "https://github.com/ramnes/notion-sdk-py/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/notmuch/default.nix b/pkgs/development/python-modules/notmuch/default.nix index 47f23ed99fed..edec6b8d5e21 100644 --- a/pkgs/development/python-modules/notmuch/default.nix +++ b/pkgs/development/python-modules/notmuch/default.nix @@ -27,10 +27,10 @@ buildPythonPackage { doCheck = false; pythonImportsCheck = [ "notmuch" ]; - meta = with lib; { + meta = { description = "Python wrapper around notmuch"; homepage = "https://notmuchmail.org/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/notmuch2/default.nix b/pkgs/development/python-modules/notmuch2/default.nix index e2bba858580e..6c9d52617154 100644 --- a/pkgs/development/python-modules/notmuch2/default.nix +++ b/pkgs/development/python-modules/notmuch2/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { doCheck = false; pythonImportsCheck = [ "notmuch2" ]; - meta = with lib; { + meta = { description = "Pythonic bindings for the notmuch mail database using CFFI"; homepage = "https://notmuchmail.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/notus-scanner/default.nix b/pkgs/development/python-modules/notus-scanner/default.nix index 36a5ac578e97..a39b17982376 100644 --- a/pkgs/development/python-modules/notus-scanner/default.nix +++ b/pkgs/development/python-modules/notus-scanner/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "notus.scanner" ]; - meta = with lib; { + meta = { description = "Helper to create results from local security checks"; homepage = "https://github.com/greenbone/notus-scanner"; changelog = "https://github.com/greenbone/notus-scanner/releases/tag/${src.tag}"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nplusone/default.nix b/pkgs/development/python-modules/nplusone/default.nix index 5ddd76f88333..5f4bdc99f89d 100644 --- a/pkgs/development/python-modules/nplusone/default.nix +++ b/pkgs/development/python-modules/nplusone/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nplusone" ]; - meta = with lib; { + meta = { description = "Detecting the n+1 queries problem in Python"; homepage = "https://github.com/jmcarp/nplusone"; - maintainers = with maintainers; [ cript0nauta ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ cript0nauta ]; + license = lib.licenses.mit; broken = lib.versionAtLeast django.version "4"; }; } diff --git a/pkgs/development/python-modules/nptyping/default.nix b/pkgs/development/python-modules/nptyping/default.nix index a27dadeb48fc..e0ca1af16584 100644 --- a/pkgs/development/python-modules/nptyping/default.nix +++ b/pkgs/development/python-modules/nptyping/default.nix @@ -63,12 +63,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "nptyping" ]; - meta = with lib; { + meta = { description = "Type hints for numpy"; homepage = "https://github.com/ramonhagenaars/nptyping"; changelog = "https://github.com/ramonhagenaars/nptyping/blob/v${version}/HISTORY.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin pandapip1 ]; diff --git a/pkgs/development/python-modules/npyscreen/default.nix b/pkgs/development/python-modules/npyscreen/default.nix index 7141bdc32ff8..28031b113b4a 100644 --- a/pkgs/development/python-modules/npyscreen/default.nix +++ b/pkgs/development/python-modules/npyscreen/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # Tests are outdated doCheck = false; - meta = with lib; { + meta = { description = "Framework for developing console applications using Python and curses"; homepage = "https://www.npcole.com/npyscreen/"; - maintainers = with maintainers; [ dump_stack ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ dump_stack ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/nsz/default.nix b/pkgs/development/python-modules/nsz/default.nix index 75c2dc1f770b..c7dc2841c4bd 100644 --- a/pkgs/development/python-modules/nsz/default.nix +++ b/pkgs/development/python-modules/nsz/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { # dumped from a Nintendo Switch. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/nicoboss/nsz"; description = "Homebrew compatible NSP/XCI compressor/decompressor"; mainProgram = "nsz"; changelog = "https://github.com/nicoboss/nsz/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/ntc-templates/default.nix b/pkgs/development/python-modules/ntc-templates/default.nix index 892a20b56dce..ef3deab1a4bb 100644 --- a/pkgs/development/python-modules/ntc-templates/default.nix +++ b/pkgs/development/python-modules/ntc-templates/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { yamllint ]; - meta = with lib; { + meta = { description = "TextFSM templates for parsing show commands of network devices"; homepage = "https://github.com/networktocode/ntc-templates"; changelog = "https://github.com/networktocode/ntc-templates/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ntplib/default.nix b/pkgs/development/python-modules/ntplib/default.nix index 9c388e0437d3..29844518e020 100644 --- a/pkgs/development/python-modules/ntplib/default.nix +++ b/pkgs/development/python-modules/ntplib/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # Require networking doCheck = false; - meta = with lib; { + meta = { description = "Python NTP library"; homepage = "http://code.google.com/p/ntplib/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/nuclear/default.nix b/pkgs/development/python-modules/nuclear/default.nix index 04e682722efa..090c453d0d1e 100644 --- a/pkgs/development/python-modules/nuclear/default.nix +++ b/pkgs/development/python-modules/nuclear/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "nuclear" ]; - meta = with lib; { + meta = { homepage = "https://igrek51.github.io/nuclear/"; description = "Binding glue for CLI Python applications"; - license = licenses.mit; - maintainers = with maintainers; [ parras ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ parras ]; }; } diff --git a/pkgs/development/python-modules/nuheat/default.nix b/pkgs/development/python-modules/nuheat/default.nix index ae8efe13a995..ee57ea105f26 100644 --- a/pkgs/development/python-modules/nuheat/default.nix +++ b/pkgs/development/python-modules/nuheat/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nuheat" ]; - meta = with lib; { + meta = { description = "Library to interact with NuHeat Signature and Mapei Mapeheat radiant floor thermostats"; homepage = "https://github.com/broox/python-nuheat"; changelog = "https://github.com/broox/python-nuheat/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nuitka/default.nix b/pkgs/development/python-modules/nuitka/default.nix index a1cc5706074f..acde02d89404 100644 --- a/pkgs/development/python-modules/nuitka/default.nix +++ b/pkgs/development/python-modules/nuitka/default.nix @@ -46,9 +46,9 @@ buildPythonPackage rec { # Requires CPython disabled = isPyPy; - meta = with lib; { + meta = { description = "Python compiler with full language support and CPython compatibility"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://nuitka.net/"; # never built on darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/development/python-modules/nulltype/default.nix b/pkgs/development/python-modules/nulltype/default.nix index 0d735b695eaf..9588940625e3 100644 --- a/pkgs/development/python-modules/nulltype/default.nix +++ b/pkgs/development/python-modules/nulltype/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nulltype" ]; - meta = with lib; { + meta = { description = "Python library to handle Null values and sentinels like (but not) None, False and True"; homepage = "https://pypi.org/project/nulltype/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/num2words/default.nix b/pkgs/development/python-modules/num2words/default.nix index 3e818f7c33f0..eb1d80b1f1ab 100644 --- a/pkgs/development/python-modules/num2words/default.nix +++ b/pkgs/development/python-modules/num2words/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pytest -k 'not cli_with_lang' ''; - meta = with lib; { + meta = { description = "Modules to convert numbers to words. 42 --> forty-two"; mainProgram = "num2words"; homepage = "https://github.com/savoirfairelinux/num2words"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; longDescription = "num2words is a library that converts numbers like 42 to words like forty-two. It supports multiple languages (see the list below for full list of languages) and can even generate ordinal numbers like forty-second"; diff --git a/pkgs/development/python-modules/numba-scipy/default.nix b/pkgs/development/python-modules/numba-scipy/default.nix index 05c07632a979..95da7c897ad0 100644 --- a/pkgs/development/python-modules/numba-scipy/default.nix +++ b/pkgs/development/python-modules/numba-scipy/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "numba_scipy" ]; - meta = with lib; { + meta = { description = "Extends Numba to make it aware of SciPy"; homepage = "https://github.com/numba/numba-scipy"; changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG"; - license = licenses.bsd2; - maintainers = with maintainers; [ Etjean ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ Etjean ]; }; } diff --git a/pkgs/development/python-modules/numba/default.nix b/pkgs/development/python-modules/numba/default.nix index 21320a651c2e..81528b752c37 100644 --- a/pkgs/development/python-modules/numba/default.nix +++ b/pkgs/development/python-modules/numba/default.nix @@ -148,11 +148,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { changelog = "https://numba.readthedocs.io/en/stable/release/${version}-notes.html"; description = "Compiling Python code using LLVM"; homepage = "https://numba.pydata.org/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; mainProgram = "numba"; }; } diff --git a/pkgs/development/python-modules/numdifftools/default.nix b/pkgs/development/python-modules/numdifftools/default.nix index bd7fb86615f7..316a17e58caf 100644 --- a/pkgs/development/python-modules/numdifftools/default.nix +++ b/pkgs/development/python-modules/numdifftools/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "numdifftools" ]; - meta = with lib; { + meta = { description = "Library to solve automatic numerical differentiation problems in one or more variables"; homepage = "https://github.com/pbrod/numdifftools"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/numexpr/default.nix b/pkgs/development/python-modules/numexpr/default.nix index 48ec1179cc67..f4b552c108ec 100644 --- a/pkgs/development/python-modules/numexpr/default.nix +++ b/pkgs/development/python-modules/numexpr/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "numexpr" ]; - meta = with lib; { + meta = { description = "Fast numerical array expression evaluator for NumPy"; homepage = "https://github.com/pydata/numexpr"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/numpy-stl/default.nix b/pkgs/development/python-modules/numpy-stl/default.nix index 7a1e6ce33fab..014a2761edff 100644 --- a/pkgs/development/python-modules/numpy-stl/default.nix +++ b/pkgs/development/python-modules/numpy-stl/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stl" ]; - meta = with lib; { + meta = { description = "Library to make reading, writing and modifying both binary and ascii STL files easy"; homepage = "https://github.com/WoLpH/numpy-stl/"; changelog = "https://github.com/wolph/numpy-stl/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nunavut/default.nix b/pkgs/development/python-modules/nunavut/default.nix index c6650b4324e4..dcee76bf67c1 100644 --- a/pkgs/development/python-modules/nunavut/default.nix +++ b/pkgs/development/python-modules/nunavut/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "nunavut" ]; - meta = with lib; { + meta = { description = "UAVCAN DSDL template engine"; mainProgram = "nnvg"; longDescription = '' @@ -51,8 +51,8 @@ buildPythonPackage rec { ''; homepage = "https://nunavut.readthedocs.io/"; changelog = "https://github.com/OpenCyphal/nunavut/releases/tag/${version}"; - maintainers = with maintainers; [ wucke13 ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ wucke13 ]; + license = with lib.licenses; [ bsd3 mit ]; diff --git a/pkgs/development/python-modules/nutils/default.nix b/pkgs/development/python-modules/nutils/default.nix index 0a493af3926a..30df76f586d3 100644 --- a/pkgs/development/python-modules/nutils/default.nix +++ b/pkgs/development/python-modules/nutils/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nutils" ]; - meta = with lib; { + meta = { description = "Numerical Utilities for Finite Element Analysis"; changelog = "https://github.com/evalf/nutils/releases/tag/${src.tag}"; homepage = "https://www.nutils.org/"; - license = licenses.mit; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/nvdlib/default.nix b/pkgs/development/python-modules/nvdlib/default.nix index d0221e2df0ff..3ddd4ab93fd2 100644 --- a/pkgs/development/python-modules/nvdlib/default.nix +++ b/pkgs/development/python-modules/nvdlib/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nvdlib" ]; - meta = with lib; { + meta = { description = "Module to interact with the National Vulnerability CVE/CPE API"; homepage = "https://github.com/Vehemont/nvdlib/"; changelog = "https://github.com/vehemont/nvdlib/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nwdiag/default.nix b/pkgs/development/python-modules/nwdiag/default.nix index ee0311a70708..92502b4f6a40 100644 --- a/pkgs/development/python-modules/nwdiag/default.nix +++ b/pkgs/development/python-modules/nwdiag/default.nix @@ -40,13 +40,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "nwdiag" ]; - meta = with lib; { + meta = { description = "Generate network-diagram image from spec-text file (similar to Graphviz)"; homepage = "http://blockdiag.com/"; changelog = "https://github.com/blockdiag/nwdiag/blob/${version}/CHANGES.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "rackdiag"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/oasatelematics/default.nix b/pkgs/development/python-modules/oasatelematics/default.nix index fc6cec6ca347..907a7fc8b092 100644 --- a/pkgs/development/python-modules/oasatelematics/default.nix +++ b/pkgs/development/python-modules/oasatelematics/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oasatelematics" ]; - meta = with lib; { + meta = { description = "Python wrapper for the OASA Telematics API"; homepage = "https://github.com/panosmz/oasatelematics"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/oath/default.nix b/pkgs/development/python-modules/oath/default.nix index 3eb51d6866fe..fc245e0b94f2 100644 --- a/pkgs/development/python-modules/oath/default.nix +++ b/pkgs/development/python-modules/oath/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oath" ]; - meta = with lib; { + meta = { description = "Python implementation of the three main OATH specifications: HOTP, TOTP and OCRA"; homepage = "https://github.com/bdauvergne/python-oath"; - license = licenses.bsd3; - maintainers = with maintainers; [ aw ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ aw ]; }; } diff --git a/pkgs/development/python-modules/oauth2client/default.nix b/pkgs/development/python-modules/oauth2client/default.nix index 895c988381e9..1fa9918a4e20 100644 --- a/pkgs/development/python-modules/oauth2client/default.nix +++ b/pkgs/development/python-modules/oauth2client/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { ]; doCheck = false; - meta = with lib; { + meta = { description = "Client library for OAuth 2.0"; homepage = "https://github.com/google/oauth2client/"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/oauthenticator/default.nix b/pkgs/development/python-modules/oauthenticator/default.nix index f1077f87f572..69b0566df2ad 100644 --- a/pkgs/development/python-modules/oauthenticator/default.nix +++ b/pkgs/development/python-modules/oauthenticator/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "oauthenticator" ]; - meta = with lib; { + meta = { description = "Authenticate JupyterHub users with common OAuth providers"; homepage = "https://github.com/jupyterhub/oauthenticator"; changelog = "https://github.com/jupyterhub/oauthenticator/blob/${version}/docs/source/reference/changelog.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/oauthlib/default.nix b/pkgs/development/python-modules/oauthlib/default.nix index 5c41ef0edf3a..12b7a29daea5 100644 --- a/pkgs/development/python-modules/oauthlib/default.nix +++ b/pkgs/development/python-modules/oauthlib/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { changelog = "https://github.com/oauthlib/oauthlib/blob/${src.tag}/CHANGELOG.rst"; description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic"; homepage = "https://github.com/oauthlib/oauthlib"; - license = licenses.bsd3; - maintainers = with maintainers; [ prikhi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ prikhi ]; }; } diff --git a/pkgs/development/python-modules/obfsproxy/default.nix b/pkgs/development/python-modules/obfsproxy/default.nix index c9b7f9f13c4c..13dfcec11fb0 100644 --- a/pkgs/development/python-modules/obfsproxy/default.nix +++ b/pkgs/development/python-modules/obfsproxy/default.nix @@ -34,9 +34,9 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Pluggable transport proxy"; homepage = "https://www.torproject.org/projects/obfsproxy"; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/objgraph/default.nix b/pkgs/development/python-modules/objgraph/default.nix index 9f4cf86fa761..b249f096b331 100644 --- a/pkgs/development/python-modules/objgraph/default.nix +++ b/pkgs/development/python-modules/objgraph/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Draws Python object reference graphs with graphviz"; homepage = "https://mg.pov.lt/objgraph/"; changelog = "https://github.com/mgedmin/objgraph/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/objsize/default.nix b/pkgs/development/python-modules/objsize/default.nix index ede53ebf4a12..878c4bbcd6a8 100644 --- a/pkgs/development/python-modules/objsize/default.nix +++ b/pkgs/development/python-modules/objsize/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { enabledTestPaths = [ "test_objsize.py" ]; - meta = with lib; { + meta = { description = "Traversal over objects subtree and calculate the total size"; homepage = "https://github.com/liran-funaro/objsize"; - license = licenses.bsd3; - maintainers = with maintainers; [ ocfox ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ocfox ]; }; } diff --git a/pkgs/development/python-modules/ochre/default.nix b/pkgs/development/python-modules/ochre/default.nix index 836ee041fbfb..c4375a52a50b 100644 --- a/pkgs/development/python-modules/ochre/default.nix +++ b/pkgs/development/python-modules/ochre/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ochre" ]; - meta = with lib; { + meta = { description = "Down-to-earth approach to colors"; homepage = "https://github.com/getcuia/ochre"; changelog = "https://github.com/getcuia/ochre/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ocifs/default.nix b/pkgs/development/python-modules/ocifs/default.nix index 55d9ddc790dd..529257a39056 100644 --- a/pkgs/development/python-modules/ocifs/default.nix +++ b/pkgs/development/python-modules/ocifs/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ocifs" ]; - meta = with lib; { + meta = { description = "Oracle Cloud Infrastructure Object Storage fsspec implementation"; homepage = "https://ocifs.readthedocs.io"; changelog = "https://github.com/oracle/ocifs/releases/tag/v${version}"; - license = licenses.upl; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.upl; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/od/default.nix b/pkgs/development/python-modules/od/default.nix index 1c3c8bf8ff4b..73dde48f7cb3 100644 --- a/pkgs/development/python-modules/od/default.nix +++ b/pkgs/development/python-modules/od/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "od" ]; - meta = with lib; { + meta = { description = "Shorthand syntax for building OrderedDicts"; homepage = "https://github.com/epsy/od"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/oddsprout/default.nix b/pkgs/development/python-modules/oddsprout/default.nix index 6aaf0535a412..3c02f24b6338 100644 --- a/pkgs/development/python-modules/oddsprout/default.nix +++ b/pkgs/development/python-modules/oddsprout/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "oddsprout" ]; - meta = with lib; { + meta = { changelog = "https://github.com/trag1c/oddsprout/blob/${src.rev}/CHANGELOG.md"; description = "Generate random JSON with no schemas involved"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://trag1c.github.io/oddsprout"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ itepastra sigmanificient ]; diff --git a/pkgs/development/python-modules/odp-amsterdam/default.nix b/pkgs/development/python-modules/odp-amsterdam/default.nix index 0a025021e1f7..984862d5e65a 100644 --- a/pkgs/development/python-modules/odp-amsterdam/default.nix +++ b/pkgs/development/python-modules/odp-amsterdam/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "odp_amsterdam" ]; - meta = with lib; { + meta = { description = "Python client for getting garage occupancy in Amsterdam"; homepage = "https://github.com/klaasnicolaas/python-odp-amsterdam"; changelog = "https://github.com/klaasnicolaas/python-odp-amsterdam/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/oemthermostat/default.nix b/pkgs/development/python-modules/oemthermostat/default.nix index 0a3d0c18939e..d6a03544c62c 100644 --- a/pkgs/development/python-modules/oemthermostat/default.nix +++ b/pkgs/development/python-modules/oemthermostat/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "oemthermostat" ]; - meta = with lib; { + meta = { description = "Python module to interact with OpenEnergyMonitor thermostats"; homepage = "https://github.com/Cadair/openenergymonitor_thermostat"; changelog = "https://github.com/Cadair/openenergymonitor_thermostat/blob/v${version}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/offtrac/default.nix b/pkgs/development/python-modules/offtrac/default.nix index 268346ce38d3..667f797ef108 100644 --- a/pkgs/development/python-modules/offtrac/default.nix +++ b/pkgs/development/python-modules/offtrac/default.nix @@ -16,9 +16,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { homepage = "http://fedorahosted.org/offtrac"; description = "Trac xmlrpc library"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/ofxclient/default.nix b/pkgs/development/python-modules/ofxclient/default.nix index f763c6f23294..36d1899ab2a3 100644 --- a/pkgs/development/python-modules/ofxclient/default.nix +++ b/pkgs/development/python-modules/ofxclient/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { keyring ]; - meta = with lib; { + meta = { homepage = "https://github.com/captin411/ofxclient"; description = "OFX client for dowloading transactions from banks"; mainProgram = "ofxclient"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/ofxparse/default.nix b/pkgs/development/python-modules/ofxparse/default.nix index 6d1da80a8c04..3401313a215f 100644 --- a/pkgs/development/python-modules/ofxparse/default.nix +++ b/pkgs/development/python-modules/ofxparse/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { lxml ]; - meta = with lib; { + meta = { homepage = "http://sites.google.com/site/ofxparse"; description = "Tools for working with the OFX (Open Financial Exchange) file format"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/ofxtools/default.nix b/pkgs/development/python-modules/ofxtools/default.nix index f7eaff97f382..37173520b28c 100644 --- a/pkgs/development/python-modules/ofxtools/default.nix +++ b/pkgs/development/python-modules/ofxtools/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { export HOME=$(mktemp -d) ''; - meta = with lib; { + meta = { homepage = "https://github.com/csingley/ofxtools"; description = "Library for working with Open Financial Exchange (OFX) formatted data used by financial institutions"; mainProgram = "ofxget"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/ogmios/default.nix b/pkgs/development/python-modules/ogmios/default.nix index fb16b93c8ff1..a754e2165a96 100644 --- a/pkgs/development/python-modules/ogmios/default.nix +++ b/pkgs/development/python-modules/ogmios/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ogmios" ]; - meta = with lib; { + meta = { description = "Python client for Ogmios"; homepage = "https://gitlab.com/viperscience/ogmios-python"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aciceri ]; }; } diff --git a/pkgs/development/python-modules/okonomiyaki/default.nix b/pkgs/development/python-modules/okonomiyaki/default.nix index bd258fea9fea..936035ab2f07 100644 --- a/pkgs/development/python-modules/okonomiyaki/default.nix +++ b/pkgs/development/python-modules/okonomiyaki/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "okonomiyaki" ]; - meta = with lib; { + meta = { description = "Experimental library aimed at consolidating a lot of low-level code used for Enthought's eggs"; homepage = "https://github.com/enthought/okonomiyaki"; changelog = "https://github.com/enthought/okonomiyaki/releases/tag/${src.tag}"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/okta/default.nix b/pkgs/development/python-modules/okta/default.nix index c5a59b064598..f141680a1d60 100644 --- a/pkgs/development/python-modules/okta/default.nix +++ b/pkgs/development/python-modules/okta/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { "okta.request_executor" ]; - meta = with lib; { + meta = { description = "Python SDK for the Okta Management API"; homepage = "https://github.com/okta/okta-sdk-python"; changelog = "https://github.com/okta/okta-sdk-python/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ jbgosselin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jbgosselin ]; }; } diff --git a/pkgs/development/python-modules/oldest-supported-numpy/default.nix b/pkgs/development/python-modules/oldest-supported-numpy/default.nix index 0ac12dfffdac..a6c401b07888 100644 --- a/pkgs/development/python-modules/oldest-supported-numpy/default.nix +++ b/pkgs/development/python-modules/oldest-supported-numpy/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { # package has no tests doCheck = false; - meta = with lib; { + meta = { description = "Meta-package providing the oldest supported Numpy for a given Python version and platform"; homepage = "https://github.com/scipy/oldest-supported-numpy"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/olefile/default.nix b/pkgs/development/python-modules/olefile/default.nix index adf8784a501e..f756864f5d7e 100644 --- a/pkgs/development/python-modules/olefile/default.nix +++ b/pkgs/development/python-modules/olefile/default.nix @@ -20,15 +20,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "olefile" ]; - meta = with lib; { + meta = { description = "Python package to parse, read and write Microsoft OLE2 files"; homepage = "https://www.decalage.info/python/olefileio"; # BSD2 + reference to Pillow # http://olefile.readthedocs.io/en/latest/License.html - license = with licenses; [ + license = with lib.licenses; [ bsd2 # and hpnd ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/oletools/default.nix b/pkgs/development/python-modules/oletools/default.nix index 03a1e53eea69..6d322d29f291 100644 --- a/pkgs/development/python-modules/oletools/default.nix +++ b/pkgs/development/python-modules/oletools/default.nix @@ -50,13 +50,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "oletools" ]; - meta = with lib; { + meta = { description = "Module to analyze MS OLE2 files and MS Office documents"; homepage = "https://github.com/decalage2/oletools"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 # and mit ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/omegaconf/default.nix b/pkgs/development/python-modules/omegaconf/default.nix index c55f1b4ccd1e..7ba58d29143b 100644 --- a/pkgs/development/python-modules/omegaconf/default.nix +++ b/pkgs/development/python-modules/omegaconf/default.nix @@ -81,11 +81,11 @@ buildPythonPackage rec { "test_type_str" ]; - meta = with lib; { + meta = { description = "Framework for configuring complex applications"; homepage = "https://github.com/omry/omegaconf"; changelog = "https://github.com/omry/omegaconf/blob/v${version}/NEWS.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/omemo-dr/default.nix b/pkgs/development/python-modules/omemo-dr/default.nix index 83e221c729c6..313742f475c3 100644 --- a/pkgs/development/python-modules/omemo-dr/default.nix +++ b/pkgs/development/python-modules/omemo-dr/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "omemo_dr" ]; - meta = with lib; { + meta = { description = "OMEMO Double Ratchet"; homepage = "https://dev.gajim.org/gajim/omemo-dr/"; changelog = "https://dev.gajim.org/gajim/omemo-dr/-/blob/v${version}/CHANGELOG.md"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/omnikinverter/default.nix b/pkgs/development/python-modules/omnikinverter/default.nix index 4557405a6331..a2114a4ba10e 100644 --- a/pkgs/development/python-modules/omnikinverter/default.nix +++ b/pkgs/development/python-modules/omnikinverter/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "omnikinverter" ]; - meta = with lib; { + meta = { description = "Python module for the Omnik Inverter"; homepage = "https://github.com/klaasnicolaas/python-omnikinverter"; changelog = "https://github.com/klaasnicolaas/python-omnikinverter/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/omnilogic/default.nix b/pkgs/development/python-modules/omnilogic/default.nix index 472115a6d0fe..228ab02246c1 100644 --- a/pkgs/development/python-modules/omnilogic/default.nix +++ b/pkgs/development/python-modules/omnilogic/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "omnilogic" ]; - meta = with lib; { + meta = { description = "Python interface for the Hayward Omnilogic pool control system"; homepage = "https://github.com/djtimca/omnilogic-api"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/omniorbpy/default.nix b/pkgs/development/python-modules/omniorbpy/default.nix index c541ddd2ba7d..326ccb9a384e 100644 --- a/pkgs/development/python-modules/omniorbpy/default.nix +++ b/pkgs/development/python-modules/omniorbpy/default.nix @@ -45,14 +45,14 @@ buildPythonPackage rec { "omniORB" ]; - meta = with lib; { + meta = { description = "Python backend for omniorb"; homepage = "http://omniorb.sourceforge.net"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ nim65s ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ nim65s ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/omorfi/default.nix b/pkgs/development/python-modules/omorfi/default.nix index ab78e6eda120..38eebe9393f4 100644 --- a/pkgs/development/python-modules/omorfi/default.nix +++ b/pkgs/development/python-modules/omorfi/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # Apply patch relative to source/src patchFlags = [ "-p3" ]; - meta = with lib; { + meta = { description = "Python interface for Omorfi"; homepage = "https://github.com/flammie/omorfi"; - license = licenses.gpl3; - maintainers = with maintainers; [ lurkki ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ lurkki ]; }; } diff --git a/pkgs/development/python-modules/omrdatasettools/default.nix b/pkgs/development/python-modules/omrdatasettools/default.nix index b20189e3e972..a4f117ccca01 100644 --- a/pkgs/development/python-modules/omrdatasettools/default.nix +++ b/pkgs/development/python-modules/omrdatasettools/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { "test_render_node_masks_semantic_segmentation_of_nodes" ]; - meta = with lib; { + meta = { description = "Collection of datasets used for Optical Music Recognition"; homepage = "https://github.com/apacha/OMR-Datasets"; changelog = "https://github.com/apacha/OMR-Datasets/blob/${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ piegames ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ piegames ]; }; } diff --git a/pkgs/development/python-modules/oncalendar/default.nix b/pkgs/development/python-modules/oncalendar/default.nix index 2a38ae073245..c1e9f65590da 100644 --- a/pkgs/development/python-modules/oncalendar/default.nix +++ b/pkgs/development/python-modules/oncalendar/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oncalendar" ]; - meta = with lib; { + meta = { description = "Systemd OnCalendar expression parser and evaluator"; homepage = "https://github.com/cuu508/oncalendar"; - license = licenses.bsd3; - maintainers = with maintainers; [ phaer ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/development/python-modules/ondilo/default.nix b/pkgs/development/python-modules/ondilo/default.nix index 8ad584bbb62c..e66a2340218b 100644 --- a/pkgs/development/python-modules/ondilo/default.nix +++ b/pkgs/development/python-modules/ondilo/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ondilo" ]; - meta = with lib; { + meta = { description = "Python package to access Ondilo ICO APIs"; homepage = "https://github.com/JeromeHXP/ondilo"; changelog = "https://github.com/JeromeHXP/ondilo/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/onetimepass/default.nix b/pkgs/development/python-modules/onetimepass/default.nix index 6c0134af870f..e01ef0f238ed 100644 --- a/pkgs/development/python-modules/onetimepass/default.nix +++ b/pkgs/development/python-modules/onetimepass/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "onetimepass" ]; - meta = with lib; { + meta = { description = "One-time password library for HMAC-based (HOTP) and time-based (TOTP) passwords"; homepage = "https://github.com/tadeck/onetimepass"; changelog = "https://github.com/tadeck/onetimepass/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/onigurumacffi/default.nix b/pkgs/development/python-modules/onigurumacffi/default.nix index 8946644efaec..ae7b65ce63ec 100644 --- a/pkgs/development/python-modules/onigurumacffi/default.nix +++ b/pkgs/development/python-modules/onigurumacffi/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { cffi ]; - meta = with lib; { + meta = { description = "Python cffi bindings for the oniguruma regex engine"; homepage = "https://github.com/asottile/onigurumacffi"; - license = licenses.mit; - maintainers = with maintainers; [ melkor333 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ melkor333 ]; }; } diff --git a/pkgs/development/python-modules/onkyo-eiscp/default.nix b/pkgs/development/python-modules/onkyo-eiscp/default.nix index ab82ef0b7bdf..18faff5bdc27 100644 --- a/pkgs/development/python-modules/onkyo-eiscp/default.nix +++ b/pkgs/development/python-modules/onkyo-eiscp/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { netifaces ]; - meta = with lib; { + meta = { description = "Control Onkyo receivers over ethernet"; mainProgram = "onkyo"; homepage = "https://github.com/miracle2k/onkyo-eiscp"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/online-judge-api-client/default.nix b/pkgs/development/python-modules/online-judge-api-client/default.nix index 48bed76e8f03..20ef9a47c3d6 100644 --- a/pkgs/development/python-modules/online-judge-api-client/default.nix +++ b/pkgs/development/python-modules/online-judge-api-client/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "onlinejudge_api" ]; - meta = with lib; { + meta = { description = "API client to develop tools for competitive programming"; mainProgram = "oj-api"; homepage = "https://github.com/online-judge-tools/api-client"; - license = licenses.mit; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sei40kr ]; }; } diff --git a/pkgs/development/python-modules/online-judge-tools/default.nix b/pkgs/development/python-modules/online-judge-tools/default.nix index a4276bfd568d..da0dbe857fdf 100644 --- a/pkgs/development/python-modules/online-judge-tools/default.nix +++ b/pkgs/development/python-modules/online-judge-tools/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # Requires internet access doCheck = false; - meta = with lib; { + meta = { description = "Tools for various online judges. Download sample cases, generate additional test cases, test your code, and submit it"; mainProgram = "oj"; homepage = "https://github.com/online-judge-tools/oj"; - license = licenses.mit; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sei40kr ]; }; } diff --git a/pkgs/development/python-modules/onlykey-solo-python/default.nix b/pkgs/development/python-modules/onlykey-solo-python/default.nix index bff5a0dca626..0e64e90b6420 100644 --- a/pkgs/development/python-modules/onlykey-solo-python/default.nix +++ b/pkgs/development/python-modules/onlykey-solo-python/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "solo" ]; - meta = with lib; { + meta = { homepage = "https://github.com/trustcrypto/onlykey-solo-python"; description = "Python library for OnlyKey with Solo FIDO2"; mainProgram = "solo"; - maintainers = with maintainers; [ kalbasit ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/onvif-zeep-async/default.nix b/pkgs/development/python-modules/onvif-zeep-async/default.nix index 3b222f67f0be..0e3b06dd4f0b 100644 --- a/pkgs/development/python-modules/onvif-zeep-async/default.nix +++ b/pkgs/development/python-modules/onvif-zeep-async/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { # Tests are not shipped doCheck = false; - meta = with lib; { + meta = { description = "ONVIF Client Implementation in Python"; homepage = "https://github.com/hunterjm/python-onvif-zeep-async"; changelog = "https://github.com/openvideolibs/python-onvif-zeep-async/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "onvif-cli"; }; } diff --git a/pkgs/development/python-modules/onvif-zeep/default.nix b/pkgs/development/python-modules/onvif-zeep/default.nix index 07a7141e4867..c3008e0f5cbe 100644 --- a/pkgs/development/python-modules/onvif-zeep/default.nix +++ b/pkgs/development/python-modules/onvif-zeep/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { # Tests require hardware doCheck = false; - meta = with lib; { + meta = { description = "Python Client for ONVIF Camera"; mainProgram = "onvif-cli"; homepage = "https://github.com/quatanium/python-onvif"; - license = licenses.mit; - maintainers = with maintainers; [ fleaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fleaz ]; }; } diff --git a/pkgs/development/python-modules/oocsi/default.nix b/pkgs/development/python-modules/oocsi/default.nix index 0bf286c3263b..1b354e2569b8 100644 --- a/pkgs/development/python-modules/oocsi/default.nix +++ b/pkgs/development/python-modules/oocsi/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oocsi" ]; - meta = with lib; { + meta = { description = "OOCSI library for Python"; homepage = "https://github.com/iddi/oocsi-python"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/open-garage/default.nix b/pkgs/development/python-modules/open-garage/default.nix index ff50be9476e4..7a5c3131a9a3 100644 --- a/pkgs/development/python-modules/open-garage/default.nix +++ b/pkgs/development/python-modules/open-garage/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "opengarage" ]; - meta = with lib; { + meta = { description = "Python module to communicate with opengarage.io"; homepage = "https://github.com/Danielhiversen/pyOpenGarage"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/open-meteo/default.nix b/pkgs/development/python-modules/open-meteo/default.nix index e32a8e91bf51..b0758de93fc1 100644 --- a/pkgs/development/python-modules/open-meteo/default.nix +++ b/pkgs/development/python-modules/open-meteo/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "open_meteo" ]; - meta = with lib; { + meta = { changelog = "https://github.com/frenck/python-open-meteo/releases/tag/v${version}"; description = "Python client for the Open-Meteo API"; homepage = "https://github.com/frenck/python-open-meteo"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/openaiauth/default.nix b/pkgs/development/python-modules/openaiauth/default.nix index 517d98eff06d..83159632b073 100644 --- a/pkgs/development/python-modules/openaiauth/default.nix +++ b/pkgs/development/python-modules/openaiauth/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "OpenAIAuth" ]; - meta = with lib; { + meta = { description = "Library for authenticating with the OpenAI API"; homepage = "https://github.com/acheong08/OpenAIAuth"; changelog = "https://github.com/acheong08/OpenAIAuth/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ logger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ logger ]; }; } diff --git a/pkgs/development/python-modules/openant/default.nix b/pkgs/development/python-modules/openant/default.nix index e0d8263fbbc2..c5808e9f6711 100644 --- a/pkgs/development/python-modules/openant/default.nix +++ b/pkgs/development/python-modules/openant/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "openant" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Tigge/openant"; description = "ANT and ANT-FS Python Library"; mainProgram = "openant"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/openapi-core/default.nix b/pkgs/development/python-modules/openapi-core/default.nix index b62745c9691b..7adf333d2f28 100644 --- a/pkgs/development/python-modules/openapi-core/default.nix +++ b/pkgs/development/python-modules/openapi-core/default.nix @@ -96,11 +96,11 @@ buildPythonPackage rec { "openapi_core.validation.response.validators" ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-openapi/openapi-core/releases/tag/${version}"; description = "Client-side and server-side support for the OpenAPI Specification v3"; homepage = "https://github.com/python-openapi/openapi-core"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/openapi-schema-validator/default.nix b/pkgs/development/python-modules/openapi-schema-validator/default.nix index 44c9de211e4e..0f4bf52960f1 100644 --- a/pkgs/development/python-modules/openapi-schema-validator/default.nix +++ b/pkgs/development/python-modules/openapi-schema-validator/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "openapi_schema_validator" ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-openapi/openapi-schema-validator/releases/tag/${src.tag}"; description = "Validates OpenAPI schema against the OpenAPI Schema Specification v3.0"; homepage = "https://github.com/python-openapi/openapi-schema-validator"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/openapi-spec-validator/default.nix b/pkgs/development/python-modules/openapi-spec-validator/default.nix index 9e87a51128d1..6ebf8ebac5eb 100644 --- a/pkgs/development/python-modules/openapi-spec-validator/default.nix +++ b/pkgs/development/python-modules/openapi-spec-validator/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { "openapi_spec_validator.readers" ]; - meta = with lib; { + meta = { changelog = "https://github.com/p1c2u/openapi-spec-validator/releases/tag/${src.tag}"; description = "Validates OpenAPI Specs against the OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0.0 specification"; mainProgram = "openapi-spec-validator"; homepage = "https://github.com/p1c2u/openapi-spec-validator"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/openapi3/default.nix b/pkgs/development/python-modules/openapi3/default.nix index ee4a35dd011c..f080ada653dc 100644 --- a/pkgs/development/python-modules/openapi3/default.nix +++ b/pkgs/development/python-modules/openapi3/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "openapi3" ]; - meta = with lib; { + meta = { changelog = "https://github.com/Dorthu/openapi3/releases/tag/${version}"; description = "Python3 OpenAPI 3 Spec Parser"; homepage = "https://github.com/Dorthu/openapi3"; - license = licenses.bsd3; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/development/python-modules/opencensus-context/default.nix b/pkgs/development/python-modules/opencensus-context/default.nix index 1f3d568e27f3..d96f489ce43f 100644 --- a/pkgs/development/python-modules/opencensus-context/default.nix +++ b/pkgs/development/python-modules/opencensus-context/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; # No tests in archive - meta = with lib; { + meta = { description = "OpenCensus Runtime Context"; homepage = "https://github.com/census-instrumentation/opencensus-python/tree/master/context/opencensus-context"; - license = licenses.asl20; - maintainers = with maintainers; [ billhuang ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ billhuang ]; }; } diff --git a/pkgs/development/python-modules/opencensus-ext-azure/default.nix b/pkgs/development/python-modules/opencensus-ext-azure/default.nix index 63d751a13194..215c252c2048 100644 --- a/pkgs/development/python-modules/opencensus-ext-azure/default.nix +++ b/pkgs/development/python-modules/opencensus-ext-azure/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { doCheck = false; # tests are not included in the PyPi tarball - meta = with lib; { + meta = { homepage = "https://github.com/census-instrumentation/opencensus-python/tree/master/contrib/opencensus-ext-azure"; description = "OpenCensus Azure Monitor Exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ billhuang evilmav ]; diff --git a/pkgs/development/python-modules/opencensus/default.nix b/pkgs/development/python-modules/opencensus/default.nix index d7d4ac6ddc0c..269b89733742 100644 --- a/pkgs/development/python-modules/opencensus/default.nix +++ b/pkgs/development/python-modules/opencensus/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "opencensus.common" ]; - meta = with lib; { + meta = { description = "Stats collection and distributed tracing framework"; homepage = "https://github.com/census-instrumentation/opencensus-python"; - license = licenses.asl20; - maintainers = with maintainers; [ billhuang ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ billhuang ]; }; } diff --git a/pkgs/development/python-modules/opencontainers/default.nix b/pkgs/development/python-modules/opencontainers/default.nix index 1790209b8323..4f6c716066c2 100644 --- a/pkgs/development/python-modules/opencontainers/default.nix +++ b/pkgs/development/python-modules/opencontainers/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python module for oci specifications"; homepage = "https://github.com/vsoch/oci-python"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/openerz-api/default.nix b/pkgs/development/python-modules/openerz-api/default.nix index e78b44531b40..517e40031f4e 100644 --- a/pkgs/development/python-modules/openerz-api/default.nix +++ b/pkgs/development/python-modules/openerz-api/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "openerz_api" ]; - meta = with lib; { + meta = { description = "Python module to interact with the OpenERZ API"; homepage = "https://github.com/misialq/openerz-api"; changelog = "https://github.com/misialq/openerz-api/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/openevsewifi/default.nix b/pkgs/development/python-modules/openevsewifi/default.nix index 8a65b3e56f34..968e3b9c1470 100644 --- a/pkgs/development/python-modules/openevsewifi/default.nix +++ b/pkgs/development/python-modules/openevsewifi/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "openevsewifi" ]; - meta = with lib; { + meta = { description = "Module for communicating with the wifi module from OpenEVSE"; homepage = "https://github.com/miniconfig/python-openevse-wifi"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/openhomedevice/default.nix b/pkgs/development/python-modules/openhomedevice/default.nix index e486b8236000..6d951b59f453 100644 --- a/pkgs/development/python-modules/openhomedevice/default.nix +++ b/pkgs/development/python-modules/openhomedevice/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/*.py" ]; - meta = with lib; { + meta = { description = "Python module to access Linn Ds and Openhome devices"; homepage = "https://github.com/bazwilliams/openhomedevice"; changelog = "https://github.com/bazwilliams/openhomedevice/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/openidc-client/default.nix b/pkgs/development/python-modules/openidc-client/default.nix index 99a00cde6621..ee7b57a9c807 100644 --- a/pkgs/development/python-modules/openidc-client/default.nix +++ b/pkgs/development/python-modules/openidc-client/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "CLI python OpenID Connect client with token caching and management"; homepage = "https://github.com/puiterwijk"; - license = licenses.mit; - maintainers = with maintainers; [ disassembler ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ disassembler ]; }; } diff --git a/pkgs/development/python-modules/openpyxl/default.nix b/pkgs/development/python-modules/openpyxl/default.nix index f973232edbfd..070ddafd6d6d 100644 --- a/pkgs/development/python-modules/openpyxl/default.nix +++ b/pkgs/development/python-modules/openpyxl/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "openpyxl" ]; - meta = with lib; { + meta = { description = "Python library to read/write Excel 2010 xlsx/xlsm files"; homepage = "https://openpyxl.readthedocs.org"; changelog = "https://foss.heptapod.net/openpyxl/openpyxl/-/blob/${version}/doc/changes.rst"; - license = licenses.mit; - maintainers = with maintainers; [ lihop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lihop ]; }; } diff --git a/pkgs/development/python-modules/openrgb-python/default.nix b/pkgs/development/python-modules/openrgb-python/default.nix index 490c63c1c1f9..702c4f725bd1 100644 --- a/pkgs/development/python-modules/openrgb-python/default.nix +++ b/pkgs/development/python-modules/openrgb-python/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "openrgb" ]; - meta = with lib; { + meta = { description = "Module for the OpenRGB SDK"; homepage = "https://openrgb-python.readthedocs.io/"; changelog = "https://github.com/jath03/openrgb-python/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/openrouteservice/default.nix b/pkgs/development/python-modules/openrouteservice/default.nix index eae98abfeeb9..fd4ebb3b805b 100644 --- a/pkgs/development/python-modules/openrouteservice/default.nix +++ b/pkgs/development/python-modules/openrouteservice/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { "test_raise_timeout_retriable_requests" ]; - meta = with lib; { + meta = { homepage = "https://github.com/GIScience/openrouteservice-py"; description = "Python API to consume openrouteservice(s) painlessly"; - license = licenses.asl20; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/opensensemap-api/default.nix b/pkgs/development/python-modules/opensensemap-api/default.nix index 6cdc335f5fc6..3904674124c9 100644 --- a/pkgs/development/python-modules/opensensemap-api/default.nix +++ b/pkgs/development/python-modules/opensensemap-api/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "opensensemap_api" ]; - meta = with lib; { + meta = { description = "OpenSenseMap API Python client"; longDescription = '' Python Client for interacting with the openSenseMap API. All @@ -39,7 +39,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/home-assistant-ecosystem/python-opensensemap-api"; changelog = "https://github.com/home-assistant-ecosystem/python-opensensemap-api/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/openshift/default.nix b/pkgs/development/python-modules/openshift/default.nix index 4afdab81fee8..06d53827e0f7 100644 --- a/pkgs/development/python-modules/openshift/default.nix +++ b/pkgs/development/python-modules/openshift/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { "test/integration" ]; - meta = with lib; { + meta = { description = "Python client for the OpenShift API"; homepage = "https://github.com/openshift/openshift-restclient-python"; - license = licenses.asl20; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/opensimplex/default.nix b/pkgs/development/python-modules/opensimplex/default.nix index 4ba6ade2be18..401b7befc2b8 100644 --- a/pkgs/development/python-modules/opensimplex/default.nix +++ b/pkgs/development/python-modules/opensimplex/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/test_opensimplex.py" ]; pythonImportsCheck = [ "opensimplex" ]; - meta = with lib; { + meta = { description = "OpenSimplex Noise functions for 2D, 3D and 4D"; longDescription = '' OpenSimplex noise is an n-dimensional gradient noise function that was @@ -33,7 +33,7 @@ buildPythonPackage rec { directional artifacts characteristic of Perlin noise. ''; homepage = "https://github.com/lmas/opensimplex"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ emilytrau ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/openstackdocstheme/default.nix b/pkgs/development/python-modules/openstackdocstheme/default.nix index b2bf0e31080f..666d116b45f9 100644 --- a/pkgs/development/python-modules/openstackdocstheme/default.nix +++ b/pkgs/development/python-modules/openstackdocstheme/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "openstackdocstheme" ]; - meta = with lib; { + meta = { description = "Sphinx theme for RST-sourced documentation published to docs.openstack.org"; homepage = "https://github.com/openstack/openstackdocstheme"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/openstacksdk/default.nix b/pkgs/development/python-modules/openstacksdk/default.nix index 2d0e7f930217..7f071ed81004 100644 --- a/pkgs/development/python-modules/openstacksdk/default.nix +++ b/pkgs/development/python-modules/openstacksdk/default.nix @@ -74,11 +74,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "openstack" ]; - meta = with lib; { + meta = { description = "SDK for building applications to work with OpenStack"; mainProgram = "openstack-inventory"; homepage = "https://github.com/openstack/openstacksdk"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/opentelemetry-api/default.nix b/pkgs/development/python-modules/opentelemetry-api/default.nix index d07e04b57065..320e8d59341f 100644 --- a/pkgs/development/python-modules/opentelemetry-api/default.nix +++ b/pkgs/development/python-modules/opentelemetry-api/default.nix @@ -62,13 +62,13 @@ let tests.${self.pname} = self.overridePythonAttrs { doCheck = true; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-api"; description = "OpenTelemetry Python API"; changelog = "https://github.com/open-telemetry/opentelemetry-python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = [ maintainers.natsukium ]; - teams = [ teams.deshaw ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.natsukium ]; + teams = [ lib.teams.deshaw ]; }; }; in diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix index 6c53d178e7f9..e83b0ce82280 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { passthru.updateScript = opentelemetry-api.updateScript; - meta = with lib; { + meta = { description = "Instrumentation Tools & Auto Instrumentation for OpenTelemetry Python"; homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/opentelemetry-instrumentation"; changelog = "https://github.com/open-telemetry/opentelemetry-python-contrib/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = [ maintainers.natsukium ]; - teams = [ teams.deshaw ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.natsukium ]; + teams = [ lib.teams.deshaw ]; }; } diff --git a/pkgs/development/python-modules/opentimestamps/default.nix b/pkgs/development/python-modules/opentimestamps/default.nix index 2f7936888b69..20e7be598b97 100644 --- a/pkgs/development/python-modules/opentimestamps/default.nix +++ b/pkgs/development/python-modules/opentimestamps/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "opentimestamps" ]; - meta = with lib; { + meta = { description = "Create and verify OpenTimestamps proofs"; homepage = "https://github.com/opentimestamps/python-opentimestamps"; changelog = "https://github.com/opentimestamps/python-opentimestamps/releases/tag/python-opentimestamps-v${version}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/opentsne/default.nix b/pkgs/development/python-modules/opentsne/default.nix index 4418599015e2..bf35157cc7d4 100644 --- a/pkgs/development/python-modules/opentsne/default.nix +++ b/pkgs/development/python-modules/opentsne/default.nix @@ -60,12 +60,12 @@ let }); }; - meta = with lib; { + meta = { description = "Modular Python implementation of t-Distributed Stochasitc Neighbor Embedding"; homepage = "https://github.com/pavlin-policar/openTSNE"; changelog = "https://github.com/pavlin-policar/openTSNE/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lucasew ]; }; }; in diff --git a/pkgs/development/python-modules/opentypespec/default.nix b/pkgs/development/python-modules/opentypespec/default.nix index 8359a2687d5d..d7577f1fafa8 100644 --- a/pkgs/development/python-modules/opentypespec/default.nix +++ b/pkgs/development/python-modules/opentypespec/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { "-v" ]; - meta = with lib; { + meta = { description = "Python library for OpenType specification metadata"; homepage = "https://github.com/simoncozens/opentypespec-py"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/openvino/default.nix b/pkgs/development/python-modules/openvino/default.nix index b43534bfd8af..51a18f4be190 100644 --- a/pkgs/development/python-modules/openvino/default.nix +++ b/pkgs/development/python-modules/openvino/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { "openvino.runtime" ]; - meta = with lib; { + meta = { description = "OpenVINO(TM) Runtime"; homepage = "https://github.com/openvinotoolkit/openvino"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/openwebifpy/default.nix b/pkgs/development/python-modules/openwebifpy/default.nix index d538adc9b1cb..50044a66b6a9 100644 --- a/pkgs/development/python-modules/openwebifpy/default.nix +++ b/pkgs/development/python-modules/openwebifpy/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { "test_get_picon_name" ]; - meta = with lib; { + meta = { description = "Provides a python interface to interact with a device running OpenWebIf"; downloadPage = "https://github.com/autinerd/openwebifpy"; homepage = "https://openwebifpy.readthedocs.io/"; changelog = "https://github.com/autinerd/openwebifpy/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/openwrt-luci-rpc/default.nix b/pkgs/development/python-modules/openwrt-luci-rpc/default.nix index 1d955c7c8446..d182cba6c474 100644 --- a/pkgs/development/python-modules/openwrt-luci-rpc/default.nix +++ b/pkgs/development/python-modules/openwrt-luci-rpc/default.nix @@ -28,7 +28,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "openwrt_luci_rpc" ]; - meta = with lib; { + meta = { description = "Python module for interacting with the OpenWrt Luci RPC interface"; longDescription = '' This module allows you to use the Luci RPC interface to fetch connected devices @@ -36,7 +36,7 @@ buildPythonPackage rec { OpenWrt. ''; homepage = "https://github.com/fbradyirl/openwrt-luci-rpc"; - license = licenses.asl20; - maintainers = with maintainers; [ matt-snider ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matt-snider ]; }; } diff --git a/pkgs/development/python-modules/openwrt-ubus-rpc/default.nix b/pkgs/development/python-modules/openwrt-ubus-rpc/default.nix index 4465dba11587..92a9b926ac61 100644 --- a/pkgs/development/python-modules/openwrt-ubus-rpc/default.nix +++ b/pkgs/development/python-modules/openwrt-ubus-rpc/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "openwrt.ubus" ]; - meta = with lib; { + meta = { description = "Python API for OpenWrt ubus RPC"; homepage = "https://github.com/Noltari/python-ubus-rpc"; changelog = "https://github.com/Noltari/python-ubus-rpc/releases/tag/${version}"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/opower/default.nix b/pkgs/development/python-modules/opower/default.nix index e67ddad254fb..42b4f96df1d4 100644 --- a/pkgs/development/python-modules/opower/default.nix +++ b/pkgs/development/python-modules/opower/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "test_invalid_auth" ]; - meta = with lib; { + meta = { description = "Module for getting historical and forecasted usage/cost from utilities that use opower.com"; homepage = "https://github.com/tronikos/opower"; changelog = "https://github.com/tronikos/opower/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/opsdroid-get-image-size/default.nix b/pkgs/development/python-modules/opsdroid-get-image-size/default.nix index 55083bdd47e3..d59e3d0a1c5f 100644 --- a/pkgs/development/python-modules/opsdroid-get-image-size/default.nix +++ b/pkgs/development/python-modules/opsdroid-get-image-size/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "get_image_size" ]; - meta = with lib; { + meta = { description = "Get image width and height given a file path using minimal dependencies"; homepage = "https://github.com/opsdroid/image_size"; changelog = "https://github.com/opsdroid/image_size/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "get-image-size"; }; diff --git a/pkgs/development/python-modules/opt-einsum/default.nix b/pkgs/development/python-modules/opt-einsum/default.nix index 131d11d310c4..27728ab53f9a 100644 --- a/pkgs/development/python-modules/opt-einsum/default.nix +++ b/pkgs/development/python-modules/opt-einsum/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "opt_einsum" ]; - meta = with lib; { + meta = { description = "Optimizing NumPy's einsum function with order optimization and GPU support"; homepage = "https://github.com/dgasmith/opt_einsum"; - license = licenses.mit; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/opuslib/default.nix b/pkgs/development/python-modules/opuslib/default.nix index 02d2caa52373..4061aa2f7db8 100644 --- a/pkgs/development/python-modules/opuslib/default.nix +++ b/pkgs/development/python-modules/opuslib/default.nix @@ -54,11 +54,11 @@ buildPythonPackage { "tests/hl_encoder.py" ]; - meta = with lib; { + meta = { description = "Python bindings to the libopus, IETF low-delay audio codec"; homepage = "https://github.com/orion-labs/opuslib"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ thelegy ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thelegy ]; }; } diff --git a/pkgs/development/python-modules/opytimark/default.nix b/pkgs/development/python-modules/opytimark/default.nix index 29b5fcee2c51..625acc7c20a9 100644 --- a/pkgs/development/python-modules/opytimark/default.nix +++ b/pkgs/development/python-modules/opytimark/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "opytimark" ]; - meta = with lib; { + meta = { description = "Library consisting of optimization benchmarking functions"; homepage = "https://github.com/gugarosa/opytimark"; changelog = "https://github.com/gugarosa/opytimark/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/development/python-modules/oralb-ble/default.nix b/pkgs/development/python-modules/oralb-ble/default.nix index f1dc008697d2..2bfb3795fb0f 100644 --- a/pkgs/development/python-modules/oralb-ble/default.nix +++ b/pkgs/development/python-modules/oralb-ble/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "test_async_poll" ]; - meta = with lib; { + meta = { description = "Library for Oral B BLE devices"; homepage = "https://github.com/Bluetooth-Devices/oralb-ble"; changelog = "https://github.com/Bluetooth-Devices/oralb-ble/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/oras/default.nix b/pkgs/development/python-modules/oras/default.nix index c7d64b1bf271..b86771b2598e 100644 --- a/pkgs/development/python-modules/oras/default.nix +++ b/pkgs/development/python-modules/oras/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "test_ssl" ]; - meta = with lib; { + meta = { description = "ORAS Python SDK"; homepage = "https://github.com/oras-project/oras-py"; changelog = "https://github.com/oras-project/oras-py/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ordered-set/default.nix b/pkgs/development/python-modules/ordered-set/default.nix index adaaa210cdd4..893732fe203f 100644 --- a/pkgs/development/python-modules/ordered-set/default.nix +++ b/pkgs/development/python-modules/ordered-set/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ordered_set" ]; - meta = with lib; { + meta = { description = "MutableSet that remembers its order, so that every entry has an index"; homepage = "https://github.com/rspeer/ordered-set"; - license = licenses.mit; - maintainers = with maintainers; [ MostAwesomeDude ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MostAwesomeDude ]; }; } diff --git a/pkgs/development/python-modules/orgparse/default.nix b/pkgs/development/python-modules/orgparse/default.nix index cfa8a419666c..33c598df4a76 100644 --- a/pkgs/development/python-modules/orgparse/default.nix +++ b/pkgs/development/python-modules/orgparse/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "test_level_0_timestamps" ]; - meta = with lib; { + meta = { description = "Emacs org-mode parser in Python"; homepage = "https://github.com/karlicoss/orgparse"; changelog = "https://github.com/karlicoss/orgparse/releases/tag/${src.tag}"; - license = licenses.bsd2; - maintainers = with maintainers; [ twitchy0 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ twitchy0 ]; }; } diff --git a/pkgs/development/python-modules/orjson/default.nix b/pkgs/development/python-modules/orjson/default.nix index 9111239fe8d6..7c5216a98dab 100644 --- a/pkgs/development/python-modules/orjson/default.nix +++ b/pkgs/development/python-modules/orjson/default.nix @@ -83,15 +83,15 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"; homepage = "https://github.com/ijl/orjson"; changelog = "https://github.com/ijl/orjson/blob/${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ misuzu ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/development/python-modules/ormar/default.nix b/pkgs/development/python-modules/ormar/default.nix index 80a8b9fbdcae..d2723d926ed3 100644 --- a/pkgs/development/python-modules/ormar/default.nix +++ b/pkgs/development/python-modules/ormar/default.nix @@ -139,12 +139,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ormar" ]; - meta = with lib; { + meta = { description = "Async ORM with fastapi in mind and pydantic validation"; homepage = "https://github.com/collerek/ormar"; changelog = "https://github.com/collerek/ormar/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ andreasfelix ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ andreasfelix ]; broken = true; }; } diff --git a/pkgs/development/python-modules/orvibo/default.nix b/pkgs/development/python-modules/orvibo/default.nix index 15ff4dcee51b..3f83167de473 100644 --- a/pkgs/development/python-modules/orvibo/default.nix +++ b/pkgs/development/python-modules/orvibo/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "orvibo" ]; - meta = with lib; { + meta = { description = "Python client to work with Orvibo devices"; homepage = "https://github.com/happyleavesaoc/python-orvibo"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/os-client-config/default.nix b/pkgs/development/python-modules/os-client-config/default.nix index f16b5743d3b0..6b95f5bb3462 100644 --- a/pkgs/development/python-modules/os-client-config/default.nix +++ b/pkgs/development/python-modules/os-client-config/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "os_client_config" ]; - meta = with lib; { + meta = { description = "Unified config handling for client libraries and programs"; homepage = "https://github.com/openstack/os-client-config"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/os-service-types/default.nix b/pkgs/development/python-modules/os-service-types/default.nix index 9dff6a428ed2..8332320848c4 100644 --- a/pkgs/development/python-modules/os-service-types/default.nix +++ b/pkgs/development/python-modules/os-service-types/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "os_service_types" ]; - meta = with lib; { + meta = { description = "Python library for consuming OpenStack service-types-authority data"; homepage = "https://github.com/openstack/os-service-types"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/osc-diagram/default.nix b/pkgs/development/python-modules/osc-diagram/default.nix index a411e2b4824e..1008dd4d3cec 100644 --- a/pkgs/development/python-modules/osc-diagram/default.nix +++ b/pkgs/development/python-modules/osc-diagram/default.nix @@ -28,11 +28,11 @@ buildPythonPackage { pythonImportsCheck = [ "osc_diagram" ]; - meta = with lib; { + meta = { description = "Build Outscale cloud diagrams"; mainProgram = "osc-diagram"; homepage = "https://github.com/outscale-mgo/osc-diagram"; - license = licenses.free; - maintainers = with maintainers; [ nicolas-goudry ]; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ nicolas-goudry ]; }; } diff --git a/pkgs/development/python-modules/osc-lib/default.nix b/pkgs/development/python-modules/osc-lib/default.nix index 657b3ffa8a41..4897b4cf2157 100644 --- a/pkgs/development/python-modules/osc-lib/default.nix +++ b/pkgs/development/python-modules/osc-lib/default.nix @@ -68,10 +68,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "osc_lib" ]; - meta = with lib; { + meta = { description = "OpenStackClient Library"; homepage = "https://github.com/openstack/osc-lib"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/osc-sdk-python/default.nix b/pkgs/development/python-modules/osc-sdk-python/default.nix index 3b4ad3686bc2..1833fbf101bf 100644 --- a/pkgs/development/python-modules/osc-sdk-python/default.nix +++ b/pkgs/development/python-modules/osc-sdk-python/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "osc_sdk_python" ]; - meta = with lib; { + meta = { description = "SDK to perform actions on Outscale API"; homepage = "https://github.com/outscale/osc-sdk-python"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/osc/default.nix b/pkgs/development/python-modules/osc/default.nix index e6ca2d065a88..5d1e3dd5cbc0 100644 --- a/pkgs/development/python-modules/osc/default.nix +++ b/pkgs/development/python-modules/osc/default.nix @@ -49,14 +49,14 @@ buildPythonPackage rec { preCheck = "HOME=$TOP/tmp"; - meta = with lib; { + meta = { homepage = "https://github.com/openSUSE/osc"; description = "Opensuse-commander with svn like handling"; mainProgram = "osc"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ peti saschagrunert ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/oscpy/default.nix b/pkgs/development/python-modules/oscpy/default.nix index 9889b746405a..3f81b0d0e937 100644 --- a/pkgs/development/python-modules/oscpy/default.nix +++ b/pkgs/development/python-modules/oscpy/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "oscpy" ]; - meta = with lib; { + meta = { description = "Modern implementation of OSC for python2/3"; mainProgram = "oscli"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/kivy/oscpy"; - maintainers = [ maintainers.yurkobb ]; + maintainers = [ lib.maintainers.yurkobb ]; }; } diff --git a/pkgs/development/python-modules/oscrypto/default.nix b/pkgs/development/python-modules/oscrypto/default.nix index 6f3f8e123585..bd558af7b9ba 100644 --- a/pkgs/development/python-modules/oscrypto/default.nix +++ b/pkgs/development/python-modules/oscrypto/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { "TrustListTests" ]; - meta = with lib; { + meta = { description = "Encryption library for Python"; homepage = "https://github.com/wbond/oscrypto"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/oscscreen/default.nix b/pkgs/development/python-modules/oscscreen/default.nix index adcb2f669dc9..0d329f2ca3c8 100644 --- a/pkgs/development/python-modules/oscscreen/default.nix +++ b/pkgs/development/python-modules/oscscreen/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "oscscreen" ]; - meta = with lib; { + meta = { description = "Framework for developing console applications using Python and curses"; homepage = "https://github.com/outscale/npyscreen"; changelog = "https://github.com/outscale/npyscreen/blob/${src.rev}/CHANGELOG"; - license = licenses.bsd2; - maintainers = with maintainers; [ nicolas-goudry ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nicolas-goudry ]; }; } diff --git a/pkgs/development/python-modules/oset/default.nix b/pkgs/development/python-modules/oset/default.nix index e1c79446e397..9b0d93fd20ad 100644 --- a/pkgs/development/python-modules/oset/default.nix +++ b/pkgs/development/python-modules/oset/default.nix @@ -16,8 +16,8 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Ordered set"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python-modules/oslo-concurrency/default.nix b/pkgs/development/python-modules/oslo-concurrency/default.nix index 2ecfdda87e27..2e473ae3e58d 100644 --- a/pkgs/development/python-modules/oslo-concurrency/default.nix +++ b/pkgs/development/python-modules/oslo-concurrency/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_concurrency" ]; - meta = with lib; { + meta = { description = "Oslo Concurrency library"; mainProgram = "lockutils-wrapper"; homepage = "https://github.com/openstack/oslo.concurrency"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oslo-config/default.nix b/pkgs/development/python-modules/oslo-config/default.nix index 2faf7e27005a..9fe2ee234fc7 100644 --- a/pkgs/development/python-modules/oslo-config/default.nix +++ b/pkgs/development/python-modules/oslo-config/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_config" ]; - meta = with lib; { + meta = { description = "Oslo Configuration API"; homepage = "https://github.com/openstack/oslo.config"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oslo-context/default.nix b/pkgs/development/python-modules/oslo-context/default.nix index 76bffa2b54aa..57d9562b32d9 100644 --- a/pkgs/development/python-modules/oslo-context/default.nix +++ b/pkgs/development/python-modules/oslo-context/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_context" ]; - meta = with lib; { + meta = { description = "Oslo Context library"; homepage = "https://github.com/openstack/oslo.context"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oslo-db/default.nix b/pkgs/development/python-modules/oslo-db/default.nix index b41153433575..031645894afc 100644 --- a/pkgs/development/python-modules/oslo-db/default.nix +++ b/pkgs/development/python-modules/oslo-db/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_db" ]; - meta = with lib; { + meta = { description = "Oslo Database library"; homepage = "https://github.com/openstack/oslo.db"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oslo-i18n/default.nix b/pkgs/development/python-modules/oslo-i18n/default.nix index fea9ae7fb8b8..3f37007a8f09 100644 --- a/pkgs/development/python-modules/oslo-i18n/default.nix +++ b/pkgs/development/python-modules/oslo-i18n/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_i18n" ]; - meta = with lib; { + meta = { description = "Oslo i18n library"; homepage = "https://github.com/openstack/oslo.i18n"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oslo-metrics/default.nix b/pkgs/development/python-modules/oslo-metrics/default.nix index 41371f0f864f..9ffca9456e20 100644 --- a/pkgs/development/python-modules/oslo-metrics/default.nix +++ b/pkgs/development/python-modules/oslo-metrics/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_metrics" ]; - meta = with lib; { + meta = { description = "OpenStack library for collecting metrics from Oslo libraries"; homepage = "https://opendev.org/openstack/oslo.metrics"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oslo-serialization/default.nix b/pkgs/development/python-modules/oslo-serialization/default.nix index 251a6b08a4af..6ba3939f9734 100644 --- a/pkgs/development/python-modules/oslo-serialization/default.nix +++ b/pkgs/development/python-modules/oslo-serialization/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_serialization" ]; - meta = with lib; { + meta = { description = "Oslo Serialization library"; homepage = "https://github.com/openstack/oslo.serialization"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oslotest/default.nix b/pkgs/development/python-modules/oslotest/default.nix index 09b018e94673..f6bd182a3778 100644 --- a/pkgs/development/python-modules/oslotest/default.nix +++ b/pkgs/development/python-modules/oslotest/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslotest" ]; - meta = with lib; { + meta = { description = "Oslo test framework"; homepage = "https://github.com/openstack/oslotest"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/ospd/default.nix b/pkgs/development/python-modules/ospd/default.nix index a933bedc85a4..cffeb4e6cb68 100644 --- a/pkgs/development/python-modules/ospd/default.nix +++ b/pkgs/development/python-modules/ospd/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ospd" ]; - meta = with lib; { + meta = { description = "Framework for vulnerability scanners which support OSP"; homepage = "https://github.com/greenbone/ospd"; changelog = "https://github.com/greenbone/ospd/releases/tag/v${version}"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/osprofiler/default.nix b/pkgs/development/python-modules/osprofiler/default.nix index fc9a160cdb2a..f4eb83ef4c3c 100644 --- a/pkgs/development/python-modules/osprofiler/default.nix +++ b/pkgs/development/python-modules/osprofiler/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "osprofiler" ]; - meta = with lib; { + meta = { description = "OpenStack Library to profile request between all involved services"; homepage = "https://opendev.org/openstack/osprofiler/"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "osprofiler"; - teams = [ teams.openstack ]; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/oss2/default.nix b/pkgs/development/python-modules/oss2/default.nix index d20e494c990e..7b75275c0d1c 100644 --- a/pkgs/development/python-modules/oss2/default.nix +++ b/pkgs/development/python-modules/oss2/default.nix @@ -106,11 +106,11 @@ buildPythonPackage rec { "test_write_get_object_response" ]; - meta = with lib; { + meta = { description = "Alibaba Cloud OSS SDK for Python"; homepage = "https://github.com/aliyun/aliyun-oss-python-sdk"; changelog = "https://github.com/aliyun/aliyun-oss-python-sdk/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ossfs/default.nix b/pkgs/development/python-modules/ossfs/default.nix index b8df86e21460..28fc812348b1 100644 --- a/pkgs/development/python-modules/ossfs/default.nix +++ b/pkgs/development/python-modules/ossfs/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ossfs" ]; - meta = with lib; { + meta = { description = "Filesystem for Alibaba Cloud (Aliyun) Object Storage System (OSS)"; homepage = "https://github.com/fsspec/ossfs"; changelog = "https://github.com/fsspec/ossfs/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/otpauth/default.nix b/pkgs/development/python-modules/otpauth/default.nix index e3d43c8e0515..39dfd31fa762 100644 --- a/pkgs/development/python-modules/otpauth/default.nix +++ b/pkgs/development/python-modules/otpauth/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "otpauth" ]; - meta = with lib; { + meta = { description = "Implements one time password of HOTP/TOTP"; homepage = "https://otp.authlib.org/"; changelog = "https://github.com/authlib/otpauth/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/ots-python/default.nix b/pkgs/development/python-modules/ots-python/default.nix index ca91bfeaacee..6171b5ed7d9b 100644 --- a/pkgs/development/python-modules/ots-python/default.nix +++ b/pkgs/development/python-modules/ots-python/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python wrapper for ots (OpenType Sanitizer)"; homepage = "https://github.com/googlefonts/ots-python"; - license = licenses.bsd3; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/overpy/default.nix b/pkgs/development/python-modules/overpy/default.nix index 8dc2d0463cbd..3f75b5d96b4f 100644 --- a/pkgs/development/python-modules/overpy/default.nix +++ b/pkgs/development/python-modules/overpy/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "overpy" ]; - meta = with lib; { + meta = { description = "Python Wrapper to access the Overpass API"; homepage = "https://github.com/DinoTools/python-overpy"; - license = licenses.mit; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/development/python-modules/overrides/default.nix b/pkgs/development/python-modules/overrides/default.nix index 058ab327c4d5..b2ba9a83d241 100644 --- a/pkgs/development/python-modules/overrides/default.nix +++ b/pkgs/development/python-modules/overrides/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "overrides" ]; - meta = with lib; { + meta = { description = "Decorator to automatically detect mismatch when overriding a method"; homepage = "https://github.com/mkorpela/overrides"; changelog = "https://github.com/mkorpela/overrides/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ovh/default.nix b/pkgs/development/python-modules/ovh/default.nix index f32ebc23797a..bd2b84679408 100644 --- a/pkgs/development/python-modules/ovh/default.nix +++ b/pkgs/development/python-modules/ovh/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "test_config_incompatible_oauth2" ]; - meta = with lib; { + meta = { description = "Thin wrapper around OVH's APIs"; homepage = "https://github.com/ovh/python-ovh"; changelog = "https://github.com/ovh/python-ovh/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/ovmfvartool/default.nix b/pkgs/development/python-modules/ovmfvartool/default.nix index d1462221f9d2..9dea32157d9b 100644 --- a/pkgs/development/python-modules/ovmfvartool/default.nix +++ b/pkgs/development/python-modules/ovmfvartool/default.nix @@ -24,12 +24,12 @@ buildPythonPackage { pythonImportsCheck = [ "ovmfvartool" ]; - meta = with lib; { + meta = { description = "Parse and generate OVMF_VARS.fd from Yaml"; mainProgram = "ovmfvartool"; homepage = "https://github.com/hlandau/ovmfvartool"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ baloo raitobezarius ]; diff --git a/pkgs/development/python-modules/ovoenergy/default.nix b/pkgs/development/python-modules/ovoenergy/default.nix index 13ade4e3f38d..fcb2e2207313 100644 --- a/pkgs/development/python-modules/ovoenergy/default.nix +++ b/pkgs/development/python-modules/ovoenergy/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ovoenergy" ]; - meta = with lib; { + meta = { description = "Python client for getting data from OVO's API"; homepage = "https://github.com/timmo001/ovoenergy"; changelog = "https://github.com/timmo001/ovoenergy/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/owslib/default.nix b/pkgs/development/python-modules/owslib/default.nix index a59de97573a7..a774559da0e1 100644 --- a/pkgs/development/python-modules/owslib/default.nix +++ b/pkgs/development/python-modules/owslib/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { "tests/test_ogcapi_connectedsystems_osh.py" ]; - meta = with lib; { + meta = { description = "Client for Open Geospatial Consortium web service interface standards"; homepage = "https://www.osgeo.org/projects/owslib/"; changelog = "https://github.com/geopython/OWSLib/releases/tag/${src.tag}"; - license = licenses.bsd3; - teams = [ teams.geospatial ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/development/python-modules/oyaml/default.nix b/pkgs/development/python-modules/oyaml/default.nix index a52d9012919a..a777e0a110c2 100644 --- a/pkgs/development/python-modules/oyaml/default.nix +++ b/pkgs/development/python-modules/oyaml/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { pythonImportsCheck = [ "oyaml" ]; - meta = with lib; { + meta = { description = "Drop-in replacement for PyYAML which preserves dict ordering"; homepage = "https://github.com/wimglenn/oyaml"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/p1monitor/default.nix b/pkgs/development/python-modules/p1monitor/default.nix index 713c6913628c..b737908c1797 100644 --- a/pkgs/development/python-modules/p1monitor/default.nix +++ b/pkgs/development/python-modules/p1monitor/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "p1monitor" ]; - meta = with lib; { + meta = { description = "Module for interacting with the P1 Monitor"; homepage = "https://github.com/klaasnicolaas/python-p1monitor"; changelog = "https://github.com/klaasnicolaas/python-p1monitor/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/packageurl-python/default.nix b/pkgs/development/python-modules/packageurl-python/default.nix index 86cda036beb5..993cfbe266fd 100644 --- a/pkgs/development/python-modules/packageurl-python/default.nix +++ b/pkgs/development/python-modules/packageurl-python/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "packageurl" ]; - meta = with lib; { + meta = { description = "Python parser and builder for package URLs"; homepage = "https://github.com/package-url/packageurl-python"; changelog = "https://github.com/package-url/packageurl-python/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ armijnhemel ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ armijnhemel ]; }; } diff --git a/pkgs/development/python-modules/packaging/default.nix b/pkgs/development/python-modules/packaging/default.nix index 368687b06fd0..02033a7cc348 100644 --- a/pkgs/development/python-modules/packaging/default.nix +++ b/pkgs/development/python-modules/packaging/default.nix @@ -48,17 +48,17 @@ let doCheck = true; }); - meta = with lib; { + meta = { changelog = "https://github.com/pypa/packaging/blob/${version}/CHANGELOG.rst"; description = "Core utilities for Python packages"; downloadPage = "https://github.com/pypa/packaging"; homepage = "https://packaging.pypa.io/"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 asl20 ]; - maintainers = with maintainers; [ bennofs ]; - teams = [ teams.python ]; + maintainers = with lib.maintainers; [ bennofs ]; + teams = [ lib.teams.python ]; }; }; in diff --git a/pkgs/development/python-modules/packbits/default.nix b/pkgs/development/python-modules/packbits/default.nix index c47983b060f1..95f72c2909db 100644 --- a/pkgs/development/python-modules/packbits/default.nix +++ b/pkgs/development/python-modules/packbits/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "bc6b370bb34e04ac8cfa835e06c0484380affc6d593adb8009dd6c0f7bfff034"; }; - meta = with lib; { + meta = { description = "PackBits encoder/decoder for Python"; homepage = "https://github.com/psd-tools/packbits"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ grahamc ]; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ grahamc ]; }; } diff --git a/pkgs/development/python-modules/packet-python/default.nix b/pkgs/development/python-modules/packet-python/default.nix index 631248fe8bad..6a2caa777655 100644 --- a/pkgs/development/python-modules/packet-python/default.nix +++ b/pkgs/development/python-modules/packet-python/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "packet" ]; - meta = with lib; { + meta = { description = "Python client for the Packet API"; homepage = "https://github.com/packethost/packet-python"; changelog = "https://github.com/packethost/packet-python/blob/v${version}/CHANGELOG.md"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ dipinhora ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ dipinhora ]; }; } diff --git a/pkgs/development/python-modules/packvers/default.nix b/pkgs/development/python-modules/packvers/default.nix index 55caf191b467..49652a204120 100644 --- a/pkgs/development/python-modules/packvers/default.nix +++ b/pkgs/development/python-modules/packvers/default.nix @@ -39,14 +39,14 @@ buildPythonPackage rec { "test_invalid_file_urls" ]; - meta = with lib; { + meta = { description = "Module for version handling of modules"; homepage = "https://github.com/aboutcode-org/packvers"; changelog = "https://github.com/nexB/packvers/blob/${version}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # and bsd2 ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pad4pi/default.nix b/pkgs/development/python-modules/pad4pi/default.nix index a5e0a8ebca69..6d1d979a29df 100644 --- a/pkgs/development/python-modules/pad4pi/default.nix +++ b/pkgs/development/python-modules/pad4pi/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # therefore it fails on other systems doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/brettmclean/pad4pi"; description = "Interrupt-based matrix keypad library for Raspberry Pi"; - license = licenses.lgpl3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/paddle-bfloat/default.nix b/pkgs/development/python-modules/paddle-bfloat/default.nix index 351c617d8ca0..07b1eaf62686 100644 --- a/pkgs/development/python-modules/paddle-bfloat/default.nix +++ b/pkgs/development/python-modules/paddle-bfloat/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { # upstream has no tests doCheck = false; - meta = with lib; { + meta = { description = "Paddle numpy bfloat16 package"; homepage = "https://pypi.org/project/paddle-bfloat"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/pagelabels/default.nix b/pkgs/development/python-modules/pagelabels/default.nix index 60049696b498..9ec16df309e0 100644 --- a/pkgs/development/python-modules/pagelabels/default.nix +++ b/pkgs/development/python-modules/pagelabels/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # upstream doesn't contain tests doCheck = false; - meta = with lib; { + meta = { description = "Python library to manipulate PDF page labels"; homepage = "https://github.com/lovasoa/pagelabels-py"; - maintainers = with maintainers; [ teto ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ teto ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/paginate/default.nix b/pkgs/development/python-modules/paginate/default.nix index 096fdb92719f..e73845f67356 100644 --- a/pkgs/development/python-modules/paginate/default.nix +++ b/pkgs/development/python-modules/paginate/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { "test_unsliceable_sequence3" ]; - meta = with lib; { + meta = { description = "Python pagination module"; homepage = "https://github.com/Pylons/paginate"; changelog = "https://github.com/Pylons/paginate/blob/${src.rev}/CHANGELOG.txt"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/paho-mqtt/default.nix b/pkgs/development/python-modules/paho-mqtt/default.nix index 6bbfc42e8279..5fda8624127c 100644 --- a/pkgs/development/python-modules/paho-mqtt/default.nix +++ b/pkgs/development/python-modules/paho-mqtt/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { export PYTHONPATH=".:$PYTHONPATH" ''; - meta = with lib; { + meta = { changelog = "https://github.com/eclipse/paho.mqtt.python/blob/${src.rev}/ChangeLog.txt"; description = "MQTT version 5.0/3.1.1 client class"; homepage = "https://eclipse.org/paho"; - license = licenses.epl20; - maintainers = with maintainers; [ + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ mog dotlambda ]; diff --git a/pkgs/development/python-modules/palace/default.nix b/pkgs/development/python-modules/palace/default.nix index b6937f9258da..ae5a669380ee 100644 --- a/pkgs/development/python-modules/palace/default.nix +++ b/pkgs/development/python-modules/palace/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "palace" ]; - meta = with lib; { + meta = { description = "Pythonic Audio Library and Codecs Environment"; homepage = "https://mcsinyx.gitlab.io/palace"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.McSinyx ]; }; } diff --git a/pkgs/development/python-modules/palettable/default.nix b/pkgs/development/python-modules/palettable/default.nix index aa7876f4644a..0cdaa0c7972a 100644 --- a/pkgs/development/python-modules/palettable/default.nix +++ b/pkgs/development/python-modules/palettable/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { "palettable.tableau" ]; - meta = with lib; { + meta = { description = "Library of color palettes"; homepage = "https://jiffyclub.github.io/palettable/"; changelog = "https://github.com/jiffyclub/palettable/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/pamela/default.nix b/pkgs/development/python-modules/pamela/default.nix index 746beca0a9cf..328865d0836f 100644 --- a/pkgs/development/python-modules/pamela/default.nix +++ b/pkgs/development/python-modules/pamela/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "PAM interface using ctypes"; homepage = "https://github.com/minrk/pamela"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pamqp/default.nix b/pkgs/development/python-modules/pamqp/default.nix index 184df403f5e7..c089bca21289 100644 --- a/pkgs/development/python-modules/pamqp/default.nix +++ b/pkgs/development/python-modules/pamqp/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "pamqp.heartbeat" ]; - meta = with lib; { + meta = { changelog = "https://github.com/gmr/pamqp/blob/${src.rev}/docs/changelog.rst"; description = "RabbitMQ Focused AMQP low-level library"; homepage = "https://github.com/gmr/pamqp"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/panacotta/default.nix b/pkgs/development/python-modules/panacotta/default.nix index d9f198ea9ba8..9b4bd1ffa2be 100644 --- a/pkgs/development/python-modules/panacotta/default.nix +++ b/pkgs/development/python-modules/panacotta/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "panacotta" ]; - meta = with lib; { + meta = { description = "Python API for controlling Panasonic Blu-Ray players"; homepage = "https://github.com/u1f35c/python-panacotta"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pandas-datareader/default.nix b/pkgs/development/python-modules/pandas-datareader/default.nix index 0520c04d2391..aaf21fa3b025 100644 --- a/pkgs/development/python-modules/pandas-datareader/default.nix +++ b/pkgs/development/python-modules/pandas-datareader/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pandas_datareader" ]; - meta = with lib; { + meta = { description = "Up to date remote data access for pandas, works for multiple versions of pandas"; homepage = "https://github.com/pydata/pandas-datareader"; - license = licenses.bsd3; - maintainers = with maintainers; [ evax ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ evax ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix index f6445d838ee2..fdc623ef775b 100644 --- a/pkgs/development/python-modules/pandas/default.nix +++ b/pkgs/development/python-modules/pandas/default.nix @@ -247,20 +247,20 @@ let pythonImportsCheck = [ "pandas" ]; - meta = with lib; { + meta = { # pandas devs no longer test i686, it's commonly broken # broken = stdenv.hostPlatform.isi686; changelog = "https://pandas.pydata.org/docs/whatsnew/index.html"; description = "Powerful data structures for data analysis, time series, and statistics"; downloadPage = "https://github.com/pandas-dev/pandas"; homepage = "https://pandas.pydata.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; longDescription = '' Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ]; }; diff --git a/pkgs/development/python-modules/pandocfilters/default.nix b/pkgs/development/python-modules/pandocfilters/default.nix index 876637cdfe51..775d2e0af98c 100644 --- a/pkgs/development/python-modules/pandocfilters/default.nix +++ b/pkgs/development/python-modules/pandocfilters/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # No tests available doCheck = false; - meta = with lib; { + meta = { description = "Python module for writing pandoc filters, with a collection of examples"; homepage = "https://github.com/jgm/pandocfilters"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/panel/default.nix b/pkgs/development/python-modules/panel/default.nix index 85779346c836..51480f98b010 100644 --- a/pkgs/development/python-modules/panel/default.nix +++ b/pkgs/development/python-modules/panel/default.nix @@ -50,12 +50,12 @@ buildPythonPackage rec { # infinite recursion in test dependencies (hvplot) doCheck = false; - meta = with lib; { + meta = { description = "High level dashboarding library for python visualization libraries"; mainProgram = "panel"; homepage = "https://github.com/holoviz/panel"; changelog = "https://github.com/holoviz/panel/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/panflute/default.nix b/pkgs/development/python-modules/panflute/default.nix index e8d115a3c9c6..96e8b786bc6d 100644 --- a/pkgs/development/python-modules/panflute/default.nix +++ b/pkgs/development/python-modules/panflute/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "panflute" ]; - meta = with lib; { + meta = { description = "Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions"; homepage = "https://scorreia.com/software/panflute"; changelog = "https://github.com/sergiocorreia/panflute/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ synthetica ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ synthetica ]; }; } diff --git a/pkgs/development/python-modules/panphon/default.nix b/pkgs/development/python-modules/panphon/default.nix index 0fed2124ee78..c13895ae5644 100644 --- a/pkgs/development/python-modules/panphon/default.nix +++ b/pkgs/development/python-modules/panphon/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { "panphon.distance" ]; - meta = with lib; { + meta = { description = "Tools for using the International Phonetic Alphabet with phonological features"; homepage = "https://github.com/dmort27/panphon"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/param/default.nix b/pkgs/development/python-modules/param/default.nix index b1df69476699..1c565bf36dc1 100644 --- a/pkgs/development/python-modules/param/default.nix +++ b/pkgs/development/python-modules/param/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "param" ]; - meta = with lib; { + meta = { description = "Declarative Python programming using Parameters"; homepage = "https://param.holoviz.org/"; changelog = "https://github.com/holoviz/param/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/parameter-expansion-patched/default.nix b/pkgs/development/python-modules/parameter-expansion-patched/default.nix index 0ef429721408..06ba855e3406 100644 --- a/pkgs/development/python-modules/parameter-expansion-patched/default.nix +++ b/pkgs/development/python-modules/parameter-expansion-patched/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "parameter_expansion" ]; - meta = with lib; { + meta = { description = "POSIX parameter expansion in Python"; homepage = "https://github.com/nexB/parameter_expansion_patched"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/parameterized/default.nix b/pkgs/development/python-modules/parameterized/default.nix index 0e14c59f6f2e..22b0287956e0 100644 --- a/pkgs/development/python-modules/parameterized/default.nix +++ b/pkgs/development/python-modules/parameterized/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "parameterized" ]; - meta = with lib; { + meta = { description = "Parameterized testing with any Python test framework"; homepage = "https://github.com/wolever/parameterized"; changelog = "https://github.com/wolever/parameterized/blob/v${version}/CHANGELOG.txt"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/parametrize-from-file/default.nix b/pkgs/development/python-modules/parametrize-from-file/default.nix index 1f116f46e7e6..2599316ab65d 100644 --- a/pkgs/development/python-modules/parametrize-from-file/default.nix +++ b/pkgs/development/python-modules/parametrize-from-file/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "test_load_suite_params_err" ]; - meta = with lib; { + meta = { description = "Read unit test parameters from config files"; homepage = "https://github.com/kalekundert/parametrize_from_file"; changelog = "https://github.com/kalekundert/parametrize_from_file/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/paranoid-crypto/default.nix b/pkgs/development/python-modules/paranoid-crypto/default.nix index 65299f9f22db..4c98c76a2476 100644 --- a/pkgs/development/python-modules/paranoid-crypto/default.nix +++ b/pkgs/development/python-modules/paranoid-crypto/default.nix @@ -60,10 +60,10 @@ buildPythonPackage { pythonImportsCheck = [ "paranoid_crypto" ]; - meta = with lib; { + meta = { description = "Library contains checks for well known weaknesses on cryptographic artifacts"; homepage = "https://github.com/google/paranoid_crypto"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/parquet/default.nix b/pkgs/development/python-modules/parquet/default.nix index fe45aab74aa6..676424a10bd4 100644 --- a/pkgs/development/python-modules/parquet/default.nix +++ b/pkgs/development/python-modules/parquet/default.nix @@ -55,12 +55,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "parquet" ]; - meta = with lib; { + meta = { description = "Python implementation of the parquet columnar file format"; homepage = "https://github.com/jcrobak/parquet-python"; changelog = "https://github.com/jcrobak/parquet-python/releases/tag/${src.tag}"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "parquet"; }; } diff --git a/pkgs/development/python-modules/parse-type/default.nix b/pkgs/development/python-modules/parse-type/default.nix index b9af06723939..956095d65cab 100644 --- a/pkgs/development/python-modules/parse-type/default.nix +++ b/pkgs/development/python-modules/parse-type/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "parse_type" ]; - meta = with lib; { + meta = { description = "Simplifies to build parse types based on the parse module"; homepage = "https://github.com/jenisys/parse_type"; - license = licenses.bsd3; - maintainers = with maintainers; [ alunduil ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ alunduil ]; }; } diff --git a/pkgs/development/python-modules/parse/default.nix b/pkgs/development/python-modules/parse/default.nix index 4cc83d5879f0..0a2e423a5b5d 100644 --- a/pkgs/development/python-modules/parse/default.nix +++ b/pkgs/development/python-modules/parse/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/r1chardj0n3s/parse"; description = "parse() is the opposite of format()"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ alunduil ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ alunduil ]; }; } diff --git a/pkgs/development/python-modules/parsedatetime/default.nix b/pkgs/development/python-modules/parsedatetime/default.nix index 6241b021bba4..d604adcf6162 100644 --- a/pkgs/development/python-modules/parsedatetime/default.nix +++ b/pkgs/development/python-modules/parsedatetime/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "parsedatetime" ]; - meta = with lib; { + meta = { description = "Parse human-readable date/time text"; homepage = "https://github.com/bear/parsedatetime"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/parsel/default.nix b/pkgs/development/python-modules/parsel/default.nix index e78c495f90c5..583ed2e99d6a 100644 --- a/pkgs/development/python-modules/parsel/default.nix +++ b/pkgs/development/python-modules/parsel/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_set_xpathfunc" ]; - meta = with lib; { + meta = { description = "Python library to extract data from HTML and XML using XPath and CSS selectors"; homepage = "https://github.com/scrapy/parsel"; changelog = "https://github.com/scrapy/parsel/blob/v${version}/NEWS"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/parsimonious/default.nix b/pkgs/development/python-modules/parsimonious/default.nix index c99aafd447ea..0bc0305f4c78 100644 --- a/pkgs/development/python-modules/parsimonious/default.nix +++ b/pkgs/development/python-modules/parsimonious/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "parsimonious.nodes" ]; - meta = with lib; { + meta = { description = "Arbitrary-lookahead parser"; homepage = "https://github.com/erikrose/parsimonious"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/parsley/default.nix b/pkgs/development/python-modules/parsley/default.nix index 0e5c95c928e6..1da008231b18 100644 --- a/pkgs/development/python-modules/parsley/default.nix +++ b/pkgs/development/python-modules/parsley/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { # Tests fail although the package works just fine. Unfortunately # the tests as run by the upstream CI server travis.org are broken. doCheck = false; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://launchpad.net/parsley"; description = "Parser generator library based on OMeta, and other useful parsing tools"; - maintainers = with maintainers; [ seppeljordan ]; + maintainers = with lib.maintainers; [ seppeljordan ]; }; } diff --git a/pkgs/development/python-modules/parso/default.nix b/pkgs/development/python-modules/parso/default.nix index e39173147e7d..b7248d9a1b41 100644 --- a/pkgs/development/python-modules/parso/default.nix +++ b/pkgs/development/python-modules/parso/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { "test_python_exception_matches" ]; - meta = with lib; { + meta = { description = "Python Parser"; homepage = "https://parso.readthedocs.io/en/latest/"; changelog = "https://github.com/davidhalter/parso/blob/master/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/parsy/default.nix b/pkgs/development/python-modules/parsy/default.nix index d8fea45dd13a..a7c1d5aa4802 100644 --- a/pkgs/development/python-modules/parsy/default.nix +++ b/pkgs/development/python-modules/parsy/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "parsy" ]; - meta = with lib; { + meta = { homepage = "https://github.com/python-parsy/parsy"; description = "Easy-to-use parser combinators, for parsing in pure Python"; changelog = "https://github.com/python-parsy/parsy/blob/v${version}/docs/history.rst"; - license = licenses.mit; - maintainers = with maintainers; [ milibopp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ milibopp ]; }; } diff --git a/pkgs/development/python-modules/partial-json-parser/default.nix b/pkgs/development/python-modules/partial-json-parser/default.nix index 6c177db0aee1..22296b65fabc 100644 --- a/pkgs/development/python-modules/partial-json-parser/default.nix +++ b/pkgs/development/python-modules/partial-json-parser/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pytest ]; - meta = with lib; { + meta = { description = "Parse partial JSON generated by LLM"; homepage = "https://github.com/promplate/partial-json-parser"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/parts/default.nix b/pkgs/development/python-modules/parts/default.nix index f39bf318d4e0..e67b2d83752b 100644 --- a/pkgs/development/python-modules/parts/default.nix +++ b/pkgs/development/python-modules/parts/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "parts" ]; - meta = with lib; { + meta = { description = "Library for common list functions related to partitioning lists"; homepage = "https://github.com/lapets/parts"; changelog = "https://github.com/lapets/parts/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/parver/default.nix b/pkgs/development/python-modules/parver/default.nix index 2db10a0653b1..b4d3f524cc86 100644 --- a/pkgs/development/python-modules/parver/default.nix +++ b/pkgs/development/python-modules/parver/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pretend ]; - meta = with lib; { + meta = { description = "Allows parsing and manipulation of PEP 440 version numbers"; homepage = "https://github.com/RazerM/parver"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pasimple/default.nix b/pkgs/development/python-modules/pasimple/default.nix index 515fb636ae31..32efb190cab7 100644 --- a/pkgs/development/python-modules/pasimple/default.nix +++ b/pkgs/development/python-modules/pasimple/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Python wrapper for the \"PulseAudio simple API\". Supports playing and recording audio via PulseAudio and PipeWire"; homepage = "https://github.com/henrikschnor/pasimple"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/paste/default.nix b/pkgs/development/python-modules/paste/default.nix index 5674b4ceb3f1..0e5f05d4aa21 100644 --- a/pkgs/development/python-modules/paste/default.nix +++ b/pkgs/development/python-modules/paste/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonNamespaces = [ "paste" ]; - meta = with lib; { + meta = { description = "Tools for using a Web Server Gateway Interface stack"; homepage = "https://pythonpaste.readthedocs.io/"; changelog = "https://github.com/pasteorg/paste/blob/${version}/docs/news.txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pastel/default.nix b/pkgs/development/python-modules/pastel/default.nix index 2ed649704fe1..60ac6810eea6 100644 --- a/pkgs/development/python-modules/pastel/default.nix +++ b/pkgs/development/python-modules/pastel/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { homepage = "https://github.com/sdispater/pastel"; description = "Bring colors to your terminal"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/pastescript/default.nix b/pkgs/development/python-modules/pastescript/default.nix index cfc5f477b011..72111ff26728 100644 --- a/pkgs/development/python-modules/pastescript/default.nix +++ b/pkgs/development/python-modules/pastescript/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "paste.util" ]; - meta = with lib; { + meta = { description = "Pluggable command-line frontend, including commands to setup package file layouts"; mainProgram = "paster"; homepage = "https://github.com/cdent/pastescript/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/patator/default.nix b/pkgs/development/python-modules/patator/default.nix index bf68ba363a43..12af22bc6733 100644 --- a/pkgs/development/python-modules/patator/default.nix +++ b/pkgs/development/python-modules/patator/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { # tests require docker-compose and vagrant doCheck = false; - meta = with lib; { + meta = { description = "Multi-purpose brute-forcer"; homepage = "https://github.com/lanjelot/patator"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; # Still uses cx-oracle which is broken and was replaced by oracledb # https://github.com/lanjelot/patator/issues/234 broken = true; diff --git a/pkgs/development/python-modules/patch-ng/default.nix b/pkgs/development/python-modules/patch-ng/default.nix index cf0d81c7bd9e..5b114e81d774 100644 --- a/pkgs/development/python-modules/patch-ng/default.nix +++ b/pkgs/development/python-modules/patch-ng/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "sha256-Uv1G7kb2yGZ2kmgsH9cTTtxlotLQhOvsHSlaYIf8ApE="; }; - meta = with lib; { + meta = { description = "Library to parse and apply unified diffs"; homepage = "https://github.com/conan-io/python-patch"; - license = licenses.mit; - maintainers = with maintainers; [ HaoZeke ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ HaoZeke ]; }; } diff --git a/pkgs/development/python-modules/patch/default.nix b/pkgs/development/python-modules/patch/default.nix index 1dea1cf9f178..a2488a6214f6 100644 --- a/pkgs/development/python-modules/patch/default.nix +++ b/pkgs/development/python-modules/patch/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # No tests included in archive doCheck = false; - meta = with lib; { + meta = { description = "Library to parse and apply unified diffs"; homepage = "https://github.com/techtonik/python-patch/"; - license = licenses.mit; - maintainers = [ maintainers.igsha ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.igsha ]; }; } diff --git a/pkgs/development/python-modules/path-and-address/default.nix b/pkgs/development/python-modules/path-and-address/default.nix index 09918dec9309..769003db0f8a 100644 --- a/pkgs/development/python-modules/path-and-address/default.nix +++ b/pkgs/development/python-modules/path-and-address/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { py.test ''; - meta = with lib; { + meta = { description = "Functions for server CLI applications used by humans"; homepage = "https://github.com/joeyespo/path-and-address"; - license = licenses.mit; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/path/default.nix b/pkgs/development/python-modules/path/default.nix index 1fa86795c4af..094e9f31c689 100644 --- a/pkgs/development/python-modules/path/default.nix +++ b/pkgs/development/python-modules/path/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "path" ]; - meta = with lib; { + meta = { description = "Object-oriented file system path manipulation"; homepage = "https://github.com/jaraco/path"; changelog = "https://github.com/jaraco/path/blob/v${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pathable/default.nix b/pkgs/development/python-modules/pathable/default.nix index 4bc3de530787..2d1ef1e8ddbd 100644 --- a/pkgs/development/python-modules/pathable/default.nix +++ b/pkgs/development/python-modules/pathable/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pathable" ]; - meta = with lib; { + meta = { description = "Library for object-oriented paths"; homepage = "https://github.com/p1c2u/pathable"; changelog = "https://github.com/p1c2u/pathable/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pathlib2/default.nix b/pkgs/development/python-modules/pathlib2/default.nix index 1f6d48e5f1a4..afb3a3af3a58 100644 --- a/pkgs/development/python-modules/pathlib2/default.nix +++ b/pkgs/development/python-modules/pathlib2/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { typing ]; - meta = with lib; { + meta = { description = "This module offers classes representing filesystem paths with semantics appropriate for different operating systems"; homepage = "https://pypi.org/project/pathlib2/"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pathos/default.nix b/pkgs/development/python-modules/pathos/default.nix index 8b711ae52256..078879d4182b 100644 --- a/pkgs/development/python-modules/pathos/default.nix +++ b/pkgs/development/python-modules/pathos/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pathos" ]; - meta = with lib; { + meta = { description = "Parallel graph management and execution in heterogeneous computing"; homepage = "https://pathos.readthedocs.io/"; changelog = "https://github.com/uqfoundation/pathos/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pathtools/default.nix b/pkgs/development/python-modules/pathtools/default.nix index b34a24ea6f4b..a15226a69292 100644 --- a/pkgs/development/python-modules/pathtools/default.nix +++ b/pkgs/development/python-modules/pathtools/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { sha256 = "1h7iam33vwxk8bvslfj4qlsdprdnwf8bvzhqh3jq5frr391cadbw"; }; - meta = with lib; { + meta = { description = "Pattern matching and various utilities for file systems paths"; homepage = "https://github.com/gorakhargosh/pathtools"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pathvalidate/default.nix b/pkgs/development/python-modules/pathvalidate/default.nix index d94596c9d7b8..89f7a066809f 100644 --- a/pkgs/development/python-modules/pathvalidate/default.nix +++ b/pkgs/development/python-modules/pathvalidate/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pathvalidate" ]; - meta = with lib; { + meta = { description = "Library to sanitize/validate a string such as filenames/file-paths/etc"; homepage = "https://github.com/thombashi/pathvalidate"; changelog = "https://github.com/thombashi/pathvalidate/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ oxalica ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxalica ]; }; } diff --git a/pkgs/development/python-modules/pathy/default.nix b/pkgs/development/python-modules/pathy/default.nix index 64e4cfbb9c28..a5ca1473d8f0 100644 --- a/pkgs/development/python-modules/pathy/default.nix +++ b/pkgs/development/python-modules/pathy/default.nix @@ -47,14 +47,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pathy" ]; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because it has failed on Hydra for at least one year. broken = true; # https://github.com/justindujardin/pathy/issues/113 description = "Path interface for local and cloud bucket storage"; mainProgram = "pathy"; homepage = "https://github.com/justindujardin/pathy"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/patiencediff/default.nix b/pkgs/development/python-modules/patiencediff/default.nix index bcc3d0bfed56..3ad893abb64f 100644 --- a/pkgs/development/python-modules/patiencediff/default.nix +++ b/pkgs/development/python-modules/patiencediff/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "patiencediff" ]; - meta = with lib; { + meta = { description = "C implementation of patiencediff algorithm for Python"; mainProgram = "patiencediff"; homepage = "https://github.com/breezy-team/patiencediff"; changelog = "https://github.com/breezy-team/patiencediff/releases/tag/v${version}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ wildsebastian ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ wildsebastian ]; }; } diff --git a/pkgs/development/python-modules/patrowl4py/default.nix b/pkgs/development/python-modules/patrowl4py/default.nix index ada7a272918f..84ab58ebdcce 100644 --- a/pkgs/development/python-modules/patrowl4py/default.nix +++ b/pkgs/development/python-modules/patrowl4py/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "patrowl4py" ]; - meta = with lib; { + meta = { description = "Python API Client for PatrOwl"; homepage = "https://github.com/Patrowl/Patrowl4py"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/paypal-checkout-serversdk/default.nix b/pkgs/development/python-modules/paypal-checkout-serversdk/default.nix index a4d15de4bf17..7db5b1a863ad 100644 --- a/pkgs/development/python-modules/paypal-checkout-serversdk/default.nix +++ b/pkgs/development/python-modules/paypal-checkout-serversdk/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "testOrderGetRequestTest" ]; - meta = with lib; { + meta = { changelog = "https://github.com/paypal/Checkout-Python-SDK/releases/tag/${version}"; description = "Python SDK for Checkout RESTful APIs"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/paypalhttp/default.nix b/pkgs/development/python-modules/paypalhttp/default.nix index 4665571bc18a..362eff693d03 100644 --- a/pkgs/development/python-modules/paypalhttp/default.nix +++ b/pkgs/development/python-modules/paypalhttp/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { responses ]; - meta = with lib; { + meta = { changelog = "https://github.com/paypal/paypalhttp_python/releases/tag/${version}"; description = "PayPalHttp is a generic HTTP Client"; homepage = "https://github.com/paypal/paypalhttp_python"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pbar/default.nix b/pkgs/development/python-modules/pbar/default.nix index 91c194ceb9e4..c4dc1393e63f 100644 --- a/pkgs/development/python-modules/pbar/default.nix +++ b/pkgs/development/python-modules/pbar/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { build-system = [ setuptools ]; pythonImportsCheck = [ "pbar" ]; - meta = with lib; { + meta = { description = "Display customizable progress bars on the terminal easily"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://darvil82.github.io/PBar"; - maintainers = with maintainers; [ sigmanificient ]; + maintainers = with lib.maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/pbr/default.nix b/pkgs/development/python-modules/pbr/default.nix index f1274fa59bf4..2c4d342f03e1 100644 --- a/pkgs/development/python-modules/pbr/default.nix +++ b/pkgs/development/python-modules/pbr/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pbr" ]; - meta = with lib; { + meta = { description = "Python Build Reasonableness"; mainProgram = "pbr"; homepage = "https://github.com/openstack/pbr"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/pbs-installer/default.nix b/pkgs/development/python-modules/pbs-installer/default.nix index 9f0b0c1506a4..a8205065a300 100644 --- a/pkgs/development/python-modules/pbs-installer/default.nix +++ b/pkgs/development/python-modules/pbs-installer/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { # upstream has no test doCheck = false; - meta = with lib; { + meta = { description = "Installer for Python Build Standalone"; homepage = "https://github.com/frostming/pbs-installer"; changelog = "https://github.com/frostming/pbs-installer/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pcapy-ng/default.nix b/pkgs/development/python-modules/pcapy-ng/default.nix index c5a44b26db87..da01a7b0c7d9 100644 --- a/pkgs/development/python-modules/pcapy-ng/default.nix +++ b/pkgs/development/python-modules/pcapy-ng/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { enabledTestPaths = [ "pcapytests.py" ]; - meta = with lib; { + meta = { description = "Module to interface with the libpcap packet capture library"; homepage = "https://github.com/stamparm/pcapy-ng/"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pcbnewtransition/default.nix b/pkgs/development/python-modules/pcbnewtransition/default.nix index 77d59c1851c8..7d6362b0bc5c 100644 --- a/pkgs/development/python-modules/pcbnewtransition/default.nix +++ b/pkgs/development/python-modules/pcbnewtransition/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pcbnewTransition" ]; - meta = with lib; { + meta = { description = "Library that allows you to support both, KiCad 5, 6 and 7 in your plugins"; homepage = "https://github.com/yaqwsx/pcbnewTransition"; changelog = "https://github.com/yaqwsx/pcbnewTransition/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jfly matusf ]; diff --git a/pkgs/development/python-modules/pcodedmp/default.nix b/pkgs/development/python-modules/pcodedmp/default.nix index 79576ea2c9e8..b6f91ff8d994 100644 --- a/pkgs/development/python-modules/pcodedmp/default.nix +++ b/pkgs/development/python-modules/pcodedmp/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pcodedmp" ]; - meta = with lib; { + meta = { description = "Python VBA p-code disassembler"; mainProgram = "pcodedmp"; homepage = "https://github.com/bontchev/pcodedmp"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pcpp/default.nix b/pkgs/development/python-modules/pcpp/default.nix index 60dba3332b9c..e160b3236215 100644 --- a/pkgs/development/python-modules/pcpp/default.nix +++ b/pkgs/development/python-modules/pcpp/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { fetchSubmodules = true; }; - meta = with lib; { + meta = { homepage = "https://github.com/ned14/pcpp"; description = "C99 preprocessor written in pure Python"; mainProgram = "pcpp"; - license = licenses.bsd0; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/pdb2pqr/default.nix b/pkgs/development/python-modules/pdb2pqr/default.nix index 9d3065934ab0..414a973157d3 100644 --- a/pkgs/development/python-modules/pdb2pqr/default.nix +++ b/pkgs/development/python-modules/pdb2pqr/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pdb2pqr" ]; - meta = with lib; { + meta = { description = "Software for determining titration states, adding missing atoms, and assigning charges/radii to biomolecules"; homepage = "https://www.poissonboltzmann.org/"; changelog = "https://github.com/Electrostatics/pdb2pqr/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/pdbfixer/default.nix b/pkgs/development/python-modules/pdbfixer/default.nix index aed34f07d255..aefb43c91215 100644 --- a/pkgs/development/python-modules/pdbfixer/default.nix +++ b/pkgs/development/python-modules/pdbfixer/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pdbfixer" ]; - meta = with lib; { + meta = { description = "PDBFixer fixes problems in PDB files"; homepage = "https://github.com/openmm/pdbfixer"; changelog = "https://github.com/openmm/pdbfixer/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; mainProgram = "pdbfixer"; }; } diff --git a/pkgs/development/python-modules/pdf2docx/default.nix b/pkgs/development/python-modules/pdf2docx/default.nix index 64f69ecb3416..0d473a505537 100644 --- a/pkgs/development/python-modules/pdf2docx/default.nix +++ b/pkgs/development/python-modules/pdf2docx/default.nix @@ -57,12 +57,12 @@ buildPythonPackage { # Test fails due to "RuntimeError: cannot find builtin font with name 'Arial'": disabledTests = [ "test_unnamed_fonts" ]; - meta = with lib; { + meta = { description = "Convert PDF to DOCX"; mainProgram = "pdf2docx"; homepage = "https://github.com/ArtifexSoftware/pdf2docx"; changelog = "https://github.com/ArtifexSoftware/pdf2docx/releases/tag/v${version}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/pdf2image/default.nix b/pkgs/development/python-modules/pdf2image/default.nix index 150682c9d3da..60a4041b9344 100644 --- a/pkgs/development/python-modules/pdf2image/default.nix +++ b/pkgs/development/python-modules/pdf2image/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pdf2image" ]; - meta = with lib; { + meta = { description = "Module that wraps the pdftoppm utility to convert PDF to PIL Image object"; homepage = "https://github.com/Belval/pdf2image"; changelog = "https://github.com/Belval/pdf2image/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ gerschtli ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gerschtli ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/pdfkit/default.nix b/pkgs/development/python-modules/pdfkit/default.nix index 2ed46f02c65d..f46b6263d183 100644 --- a/pkgs/development/python-modules/pdfkit/default.nix +++ b/pkgs/development/python-modules/pdfkit/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # tests are not distributed doCheck = false; - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/pdfkit"; description = "Wkhtmltopdf python wrapper to convert html to pdf using the webkit rendering engine and qt"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pdfrw/default.nix b/pkgs/development/python-modules/pdfrw/default.nix index 61649f4d0dfc..9e23839d6dab 100644 --- a/pkgs/development/python-modules/pdfrw/default.nix +++ b/pkgs/development/python-modules/pdfrw/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # tests require the extra download of github.com/pmaupin/static_pdfs doCheck = false; - meta = with lib; { + meta = { description = "Pure Python library that reads and writes PDFs"; homepage = "https://github.com/pmaupin/pdfrw"; - maintainers = with maintainers; [ teto ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ teto ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pdfrw2/default.nix b/pkgs/development/python-modules/pdfrw2/default.nix index 55373aaca906..1d27e45de822 100644 --- a/pkgs/development/python-modules/pdfrw2/default.nix +++ b/pkgs/development/python-modules/pdfrw2/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pdfrw" ]; - meta = with lib; { + meta = { description = "Pure Python library that reads and writes PDFs"; homepage = "https://github.com/sarnold/pdfrw"; - maintainers = with maintainers; [ loicreynier ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ loicreynier ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pdftotext/default.nix b/pkgs/development/python-modules/pdftotext/default.nix index a5d58d186fb8..ac71960910f2 100644 --- a/pkgs/development/python-modules/pdftotext/default.nix +++ b/pkgs/development/python-modules/pdftotext/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { buildInputs = [ poppler ]; - meta = with lib; { + meta = { description = "Simple PDF text extraction"; homepage = "https://github.com/jalan/pdftotext"; - license = licenses.mit; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/pdm-backend/default.nix b/pkgs/development/python-modules/pdm-backend/default.nix index 8e536996aca7..98c808f960b6 100644 --- a/pkgs/development/python-modules/pdm-backend/default.nix +++ b/pkgs/development/python-modules/pdm-backend/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { homepage = "https://github.com/pdm-project/pdm-backend"; changelog = "https://github.com/pdm-project/pdm-backend/releases/tag/${version}"; description = "Yet another PEP 517 backend"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pdm-pep517/default.nix b/pkgs/development/python-modules/pdm-pep517/default.nix index 29829575fcbd..0970d6b9f1a9 100644 --- a/pkgs/development/python-modules/pdm-pep517/default.nix +++ b/pkgs/development/python-modules/pdm-pep517/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { setuptools ]; - meta = with lib; { + meta = { homepage = "https://github.com/pdm-project/pdm-pep517"; description = "Yet another PEP 517 backend"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pdoc/default.nix b/pkgs/development/python-modules/pdoc/default.nix index b87d85c42797..bdd47175273a 100644 --- a/pkgs/development/python-modules/pdoc/default.nix +++ b/pkgs/development/python-modules/pdoc/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/mitmproxy/pdoc/blob/${src.rev}/CHANGELOG.md"; homepage = "https://pdoc.dev/"; description = "API Documentation for Python Projects"; mainProgram = "pdoc"; - license = licenses.unlicense; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/pdunehd/default.nix b/pkgs/development/python-modules/pdunehd/default.nix index cfcb37d7c3c1..b97a4d7a2b8a 100644 --- a/pkgs/development/python-modules/pdunehd/default.nix +++ b/pkgs/development/python-modules/pdunehd/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pdunehd" ]; - meta = with lib; { + meta = { description = "Python wrapper for Dune HD media player API"; homepage = "https://github.com/valentinalexeev/pdunehd"; changelog = "https://github.com/valentinalexeev/pdunehd/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/peaqevcore/default.nix b/pkgs/development/python-modules/peaqevcore/default.nix index d50e79262bbe..04f35be176db 100644 --- a/pkgs/development/python-modules/peaqevcore/default.nix +++ b/pkgs/development/python-modules/peaqevcore/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "peaqevcore" ]; - meta = with lib; { + meta = { description = "Library for interacting with Peaqev car charging"; homepage = "https://github.com/elden1337/peaqev-core"; changelog = "https://github.com/elden1337/peaqev-core/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pecan/default.nix b/pkgs/development/python-modules/pecan/default.nix index 7d13cac4281f..da378e88f51c 100644 --- a/pkgs/development/python-modules/pecan/default.nix +++ b/pkgs/development/python-modules/pecan/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pecan" ]; - meta = with lib; { + meta = { description = "WSGI object-dispatching web framework"; homepage = "https://www.pecanpy.org/"; changelog = "https://github.com/pecan/pecan/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ applePrincess ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ applePrincess ]; }; } diff --git a/pkgs/development/python-modules/peco/default.nix b/pkgs/development/python-modules/peco/default.nix index 6497063c4f7d..d16032849363 100644 --- a/pkgs/development/python-modules/peco/default.nix +++ b/pkgs/development/python-modules/peco/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "peco" ]; - meta = with lib; { + meta = { description = "Library for interacting with the PECO outage map"; homepage = "https://github.com/IceBotYT/peco-outage-api"; changelog = "https://github.com/IceBotYT/peco-outage-api/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/peewee-migrate/default.nix b/pkgs/development/python-modules/peewee-migrate/default.nix index f07be16744b1..7bcab7117eb8 100644 --- a/pkgs/development/python-modules/peewee-migrate/default.nix +++ b/pkgs/development/python-modules/peewee-migrate/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { "test_migrator" ]; - meta = with lib; { + meta = { description = "Simple migration engine for Peewee"; homepage = "https://github.com/klen/peewee_migrate"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/peewee/default.nix b/pkgs/development/python-modules/peewee/default.nix index 884c324b5863..12c3588c1334 100644 --- a/pkgs/development/python-modules/peewee/default.nix +++ b/pkgs/development/python-modules/peewee/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "peewee" ]; - meta = with lib; { + meta = { description = "Python ORM with support for various database implementation"; homepage = "http://peewee-orm.com"; changelog = "https://github.com/coleifer/peewee/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "pwiz.py"; }; diff --git a/pkgs/development/python-modules/pefile/default.nix b/pkgs/development/python-modules/pefile/default.nix index 5a6aa99e462e..d53252e9dcf9 100644 --- a/pkgs/development/python-modules/pefile/default.nix +++ b/pkgs/development/python-modules/pefile/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pefile" ]; - meta = with lib; { + meta = { description = "Multi-platform Python module to parse and work with Portable Executable (aka PE) files"; homepage = "https://github.com/erocarrera/pefile"; changelog = "https://github.com/erocarrera/pefile/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ pamplemousse ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pamplemousse ]; }; } diff --git a/pkgs/development/python-modules/pegen/default.nix b/pkgs/development/python-modules/pegen/default.nix index 405236e2a203..20d4748e8190 100644 --- a/pkgs/development/python-modules/pegen/default.nix +++ b/pkgs/development/python-modules/pegen/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "tests/python_parser/test_unsupported_syntax.py" ]; - meta = with lib; { + meta = { description = "Library to generate PEG parsers"; homepage = "https://github.com/we-like-parsers/pegen"; changelog = "https://github.com/we-like-parsers/pegen/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pelican/default.nix b/pkgs/development/python-modules/pelican/default.nix index 68bb52d21e26..af792335030a 100644 --- a/pkgs/development/python-modules/pelican/default.nix +++ b/pkgs/development/python-modules/pelican/default.nix @@ -128,12 +128,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pelican" ]; - meta = with lib; { + meta = { description = "Static site generator that requires no database or server-side logic"; homepage = "https://getpelican.com/"; changelog = "https://github.com/getpelican/pelican/blob/${src.tag}/docs/changelog.rst"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ offline prikhi ]; diff --git a/pkgs/development/python-modules/pem/default.nix b/pkgs/development/python-modules/pem/default.nix index 7d5f50f4cca9..d6a1476a5e1f 100644 --- a/pkgs/development/python-modules/pem/default.nix +++ b/pkgs/development/python-modules/pem/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pem" ]; - meta = with lib; { + meta = { description = "Easy PEM file parsing in Python"; homepage = "https://pem.readthedocs.io/"; changelog = "https://github.com/hynek/pem/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ nyanotech ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyanotech ]; }; } diff --git a/pkgs/development/python-modules/pencompy/default.nix b/pkgs/development/python-modules/pencompy/default.nix index 3bf69fa1192d..06fd15b8c852 100644 --- a/pkgs/development/python-modules/pencompy/default.nix +++ b/pkgs/development/python-modules/pencompy/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pencompy" ]; - meta = with lib; { + meta = { description = "Library for interacting with Pencom relay boards"; homepage = "https://github.com/dubnom/pencompy"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pendulum/default.nix b/pkgs/development/python-modules/pendulum/default.nix index d1070a79a376..272d800e46d1 100644 --- a/pkgs/development/python-modules/pendulum/default.nix +++ b/pkgs/development/python-modules/pendulum/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { "tests/testing/test_time_travel.py" ]; - meta = with lib; { + meta = { description = "Python datetimes made easy"; homepage = "https://github.com/sdispater/pendulum"; changelog = "https://github.com/sdispater/pendulum/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pep440/default.nix b/pkgs/development/python-modules/pep440/default.nix index 8bf685faaecc..213a7e70a633 100644 --- a/pkgs/development/python-modules/pep440/default.nix +++ b/pkgs/development/python-modules/pep440/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pep440" ]; - meta = with lib; { + meta = { description = "Python module to check whether versions number match PEP 440"; mainProgram = "pep440"; homepage = "https://github.com/Carreau/pep440"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pep8-naming/default.nix b/pkgs/development/python-modules/pep8-naming/default.nix index 6fabf507a2d0..4175ae9b093d 100644 --- a/pkgs/development/python-modules/pep8-naming/default.nix +++ b/pkgs/development/python-modules/pep8-naming/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pep8ext_naming" ]; - meta = with lib; { + meta = { description = "Check PEP-8 naming conventions, plugin for flake8"; homepage = "https://github.com/PyCQA/pep8-naming"; changelog = "https://github.com/PyCQA/pep8-naming/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/pep8/default.nix b/pkgs/development/python-modules/pep8/default.nix index 7a9c442d4219..0154616fea39 100644 --- a/pkgs/development/python-modules/pep8/default.nix +++ b/pkgs/development/python-modules/pep8/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { # FAIL: test_checkers_testsuite (testsuite.test_all.Pep8TestCase) doCheck = false; - meta = with lib; { + meta = { homepage = "https://pep8.readthedocs.org/"; description = "Python style guide checker"; mainProgram = "pep8"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/peppercorn/default.nix b/pkgs/development/python-modules/peppercorn/default.nix index f6e74f90df22..e93f7e5ef44c 100644 --- a/pkgs/development/python-modules/peppercorn/default.nix +++ b/pkgs/development/python-modules/peppercorn/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "1ip4bfwcpwkq9hz2dai14k2cyabvwrnvcvrcmzxmqm04g8fnimwn"; }; - meta = with lib; { + meta = { description = "Library for converting a token stream into a data structure for use in web form posts"; homepage = "https://docs.pylonsproject.org/projects/peppercorn/en/latest/"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/perfplot/default.nix b/pkgs/development/python-modules/perfplot/default.nix index 1e20583dc9ff..ba563911fed8 100644 --- a/pkgs/development/python-modules/perfplot/default.nix +++ b/pkgs/development/python-modules/perfplot/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "perfplot" ]; - meta = with lib; { + meta = { description = "Performance plots for Python code snippets"; homepage = "https://github.com/nschloe/perfplot"; changelog = "https://github.com/nschloe/perfplot/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/permissionedforms/default.nix b/pkgs/development/python-modules/permissionedforms/default.nix index 053786250673..abca6a5fd675 100644 --- a/pkgs/development/python-modules/permissionedforms/default.nix +++ b/pkgs/development/python-modules/permissionedforms/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "permissionedforms" ]; - meta = with lib; { + meta = { description = "Django extension for creating forms that vary according to user permissions"; homepage = "https://github.com/wagtail/django-permissionedforms"; changelog = "https://github.com/wagtail/django-permissionedforms/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/persim/default.nix b/pkgs/development/python-modules/persim/default.nix index 5defc977a7b3..acc90fdf41ae 100644 --- a/pkgs/development/python-modules/persim/default.nix +++ b/pkgs/development/python-modules/persim/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "test_exact_critical_pairs" ]; - meta = with lib; { + meta = { description = "Distances and representations of persistence diagrams"; homepage = "https://persim.scikit-tda.org"; changelog = "https://github.com/scikit-tda/persim/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/persistent/default.nix b/pkgs/development/python-modules/persistent/default.nix index 5bbf27bf2193..fe21606ebe3d 100644 --- a/pkgs/development/python-modules/persistent/default.nix +++ b/pkgs/development/python-modules/persistent/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "persistent" ]; - meta = with lib; { + meta = { description = "Automatic persistence for Python objects"; homepage = "https://github.com/zopefoundation/persistent/"; changelog = "https://github.com/zopefoundation/persistent/blob/${version}/CHANGES.rst"; - license = licenses.zpl21; + license = lib.licenses.zpl21; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/persisting-theory/default.nix b/pkgs/development/python-modules/persisting-theory/default.nix index 9dca828eb367..5f6ff5f7e7da 100644 --- a/pkgs/development/python-modules/persisting-theory/default.nix +++ b/pkgs/development/python-modules/persisting-theory/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "persisting_theory" ]; - meta = with lib; { + meta = { homepage = "https://code.agate.blue/agate/persisting-theory"; description = "Automate data discovering and access inside a list of packages"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/pescea/default.nix b/pkgs/development/python-modules/pescea/default.nix index 41f0c0ca6165..443cbe1c69db 100644 --- a/pkgs/development/python-modules/pescea/default.nix +++ b/pkgs/development/python-modules/pescea/default.nix @@ -47,10 +47,10 @@ buildPythonPackage { pythonImportsCheck = [ "pescea" ]; - meta = with lib; { + meta = { description = "Python interface to Escea fireplaces"; homepage = "https://github.com/lazdavila/pescea"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pex/default.nix b/pkgs/development/python-modules/pex/default.nix index 85829bedd2c1..9ea3f75960c8 100644 --- a/pkgs/development/python-modules/pex/default.nix +++ b/pkgs/development/python-modules/pex/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pex" ]; - meta = with lib; { + meta = { description = "Python library and tool for generating .pex (Python EXecutable) files"; homepage = "https://github.com/pantsbuild/pex"; changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pexif/default.nix b/pkgs/development/python-modules/pexif/default.nix index 9b2f9e16ead9..4d105fbaf76c 100644 --- a/pkgs/development/python-modules/pexif/default.nix +++ b/pkgs/development/python-modules/pexif/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "45a3be037c7ba8b64bbfc48f3586402cc17de55bb9d7357ef2bc99954a18da3f"; }; - meta = with lib; { + meta = { description = "Module for editing JPEG EXIF data"; homepage = "http://www.benno.id.au/code/pexif/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pexpect/default.nix b/pkgs/development/python-modules/pexpect/default.nix index cb34296f7f79..c3e40ec2bbfc 100644 --- a/pkgs/development/python-modules/pexpect/default.nix +++ b/pkgs/development/python-modules/pexpect/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { homepage = "http://www.noah.org/wiki/Pexpect"; description = "Automate interactive console applications such as ssh, ftp, etc"; downloadPage = "https://github.com/pexpect/pexpect"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; longDescription = '' Pexpect is similar to the Don Libes "Expect" system, but Pexpect diff --git a/pkgs/development/python-modules/pfzy/default.nix b/pkgs/development/python-modules/pfzy/default.nix index dfd3f4ec2f04..263cd6235776 100644 --- a/pkgs/development/python-modules/pfzy/default.nix +++ b/pkgs/development/python-modules/pfzy/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pfzy" ]; - meta = with lib; { + meta = { description = "Python port of the fzy fuzzy string matching algorithm"; homepage = "https://github.com/kazhala/pfzy"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pg8000/default.nix b/pkgs/development/python-modules/pg8000/default.nix index 22dc8a2811fc..8e6394b6bc11 100644 --- a/pkgs/development/python-modules/pg8000/default.nix +++ b/pkgs/development/python-modules/pg8000/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pg8000" ]; - meta = with lib; { + meta = { description = "Python driver for PostgreSQL"; homepage = "https://github.com/tlocke/pg8000"; changelog = "https://github.com/tlocke/pg8000#release-notes"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pgcli/default.nix b/pkgs/development/python-modules/pgcli/default.nix index 51ab5f2f0189..d867cb4187a1 100644 --- a/pkgs/development/python-modules/pgcli/default.nix +++ b/pkgs/development/python-modules/pgcli/default.nix @@ -62,7 +62,7 @@ buildPythonPackage rec { ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_application_name_db_uri" ]; - meta = with lib; { + meta = { description = "Command-line interface for PostgreSQL"; mainProgram = "pgcli"; longDescription = '' @@ -71,8 +71,8 @@ buildPythonPackage rec { ''; homepage = "https://pgcli.com"; changelog = "https://github.com/dbcli/pgcli/raw/v${version}/changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; diff --git a/pkgs/development/python-modules/pglast/default.nix b/pkgs/development/python-modules/pglast/default.nix index 86e0f9d81c94..64615d04e362 100644 --- a/pkgs/development/python-modules/pglast/default.nix +++ b/pkgs/development/python-modules/pglast/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "pglast.parser" ]; - meta = with lib; { + meta = { description = "PostgreSQL Languages AST and statements prettifier"; homepage = "https://github.com/lelit/pglast"; changelog = "https://github.com/lelit/pglast/blob/v${version}/CHANGES.rst"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "pgpp"; }; diff --git a/pkgs/development/python-modules/pgpdump/default.nix b/pkgs/development/python-modules/pgpdump/default.nix index 832b2e46c960..e49def42fc4f 100644 --- a/pkgs/development/python-modules/pgpdump/default.nix +++ b/pkgs/development/python-modules/pgpdump/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18 doCheck = false; - meta = with lib; { + meta = { description = "Python library for parsing PGP packets"; homepage = "https://github.com/toofishes/python-pgpdump"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pgsanity/default.nix b/pkgs/development/python-modules/pgsanity/default.nix index c9bb47e33d1e..debb75faae01 100644 --- a/pkgs/development/python-modules/pgsanity/default.nix +++ b/pkgs/development/python-modules/pgsanity/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { # To find "ecpg" nativeBuildInputs = [ (lib.getDev postgresql) ]; - meta = with lib; { + meta = { homepage = "https://github.com/markdrago/pgsanity"; description = "Checks the syntax of Postgresql SQL files"; mainProgram = "pgsanity"; @@ -38,7 +38,7 @@ buildPythonPackage rec { run it through ecpg and let ecpg report on the syntax errors of the SQL. ''; - license = licenses.mit; - maintainers = with maintainers; [ nalbyuites ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nalbyuites ]; }; } diff --git a/pkgs/development/python-modules/pgspecial/default.nix b/pkgs/development/python-modules/pgspecial/default.nix index e00421c7be03..b481f1e6b411 100644 --- a/pkgs/development/python-modules/pgspecial/default.nix +++ b/pkgs/development/python-modules/pgspecial/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { "test_slash_ddp_pattern" ]; - meta = with lib; { + meta = { description = "Meta-commands handler for Postgres Database"; homepage = "https://github.com/dbcli/pgspecial"; changelog = "https://github.com/dbcli/pgspecial/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ lib.maintainers.SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/phe/default.nix b/pkgs/development/python-modules/phe/default.nix index c48e4a8ab41a..aea25b378ea3 100644 --- a/pkgs/development/python-modules/phe/default.nix +++ b/pkgs/development/python-modules/phe/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { numpy ]; - meta = with lib; { + meta = { description = "Library for Partially Homomorphic Encryption in Python"; mainProgram = "pheutil"; homepage = "https://github.com/data61/python-paillier"; - license = licenses.gpl3; - maintainers = with maintainers; [ tomasajt ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/phik/default.nix b/pkgs/development/python-modules/phik/default.nix index e9a0e76aeeca..808dba01550c 100644 --- a/pkgs/development/python-modules/phik/default.nix +++ b/pkgs/development/python-modules/phik/default.nix @@ -65,7 +65,7 @@ buildPythonPackage rec { "test_phik_calculation" ]; - meta = with lib; { + meta = { description = "Phi_K correlation analyzer library"; longDescription = '' Phi_K is a new and practical correlation coefficient based on several refinements to @@ -73,7 +73,7 @@ buildPythonPackage rec { ''; homepage = "https://phik.readthedocs.io/"; changelog = "https://github.com/KaveIO/PhiK/blob/${src.tag}/CHANGES.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ melsigl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melsigl ]; }; } diff --git a/pkgs/development/python-modules/phone-modem/default.nix b/pkgs/development/python-modules/phone-modem/default.nix index aea3e26e3e6a..de2ed3142045 100644 --- a/pkgs/development/python-modules/phone-modem/default.nix +++ b/pkgs/development/python-modules/phone-modem/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "phone_modem" ]; - meta = with lib; { + meta = { description = "Python module for receiving caller ID and call rejection"; homepage = "https://github.com/tkdrob/phone_modem"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/phonenumbers/default.nix b/pkgs/development/python-modules/phonenumbers/default.nix index 1cb96a27a078..9fbb83527c37 100644 --- a/pkgs/development/python-modules/phonenumbers/default.nix +++ b/pkgs/development/python-modules/phonenumbers/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "phonenumbers" ]; - meta = with lib; { + meta = { description = "Python module for handling international phone numbers"; homepage = "https://github.com/daviddrysdale/python-phonenumbers"; changelog = "https://github.com/daviddrysdale/python-phonenumbers/blob/v${version}/python/HISTORY.md"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/photutils/default.nix b/pkgs/development/python-modules/photutils/default.nix index 72397bfb9f6a..f59df6139a9e 100644 --- a/pkgs/development/python-modules/photutils/default.nix +++ b/pkgs/development/python-modules/photutils/default.nix @@ -71,11 +71,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "photutils" ]; - meta = with lib; { + meta = { description = "Astropy package for source detection and photometry"; homepage = "https://github.com/astropy/photutils"; changelog = "https://github.com/astropy/photutils/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/phply/default.nix b/pkgs/development/python-modules/phply/default.nix index b3550f79a49f..392c5e264a33 100644 --- a/pkgs/development/python-modules/phply/default.nix +++ b/pkgs/development/python-modules/phply/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "phply" ]; - meta = with lib; { + meta = { description = "Lexer and parser for PHP source implemented using PLY"; homepage = "https://github.com/viraptor/phply"; - license = licenses.bsd3; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/phunspell/default.nix b/pkgs/development/python-modules/phunspell/default.nix index 2070a98df3e5..68f307c9f13f 100644 --- a/pkgs/development/python-modules/phunspell/default.nix +++ b/pkgs/development/python-modules/phunspell/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "phunspell" ]; - meta = with lib; { + meta = { description = "Pure Python spell checker, wrapping spylls a port of Hunspell"; homepage = "https://github.com/dvwright/phunspell"; changelog = "https://github.com/dvwright/phunspell/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/phx-class-registry/default.nix b/pkgs/development/python-modules/phx-class-registry/default.nix index 03b771d93671..889e38139d2e 100644 --- a/pkgs/development/python-modules/phx-class-registry/default.nix +++ b/pkgs/development/python-modules/phx-class-registry/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "class_registry" ]; - meta = with lib; { + meta = { description = "Factory and registry pattern for Python classes"; homepage = "https://class-registry.readthedocs.io/en/latest/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pi1wire/default.nix b/pkgs/development/python-modules/pi1wire/default.nix index 5ba5ef0aa870..6795974c7a7b 100644 --- a/pkgs/development/python-modules/pi1wire/default.nix +++ b/pkgs/development/python-modules/pi1wire/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pi1wire" ]; - meta = with lib; { + meta = { description = "1Wire Sensor Library for Raspberry PI"; homepage = "https://github.com/ushiboy/pi1wire"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/piano-transcription-inference/default.nix b/pkgs/development/python-modules/piano-transcription-inference/default.nix index 855a1e0f012b..ee27efa042b5 100644 --- a/pkgs/development/python-modules/piano-transcription-inference/default.nix +++ b/pkgs/development/python-modules/piano-transcription-inference/default.nix @@ -74,10 +74,10 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "piano_transcription_inference" ]; - meta = with lib; { + meta = { description = "Piano transcription inference package"; homepage = "https://github.com/qiuqiangkong/piano_transcription_inference"; - license = licenses.mit; - maintainers = with maintainers; [ azuwis ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azuwis ]; }; } diff --git a/pkgs/development/python-modules/piccata/default.nix b/pkgs/development/python-modules/piccata/default.nix index fcb2bad54b58..720433461cf1 100644 --- a/pkgs/development/python-modules/piccata/default.nix +++ b/pkgs/development/python-modules/piccata/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "piccata" ]; - meta = with lib; { + meta = { description = "Simple CoAP (RFC7252) toolkit"; homepage = "https://github.com/NordicSemiconductor/piccata"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/piccolo-theme/default.nix b/pkgs/development/python-modules/piccolo-theme/default.nix index 6f736f142961..1d0582c98b10 100644 --- a/pkgs/development/python-modules/piccolo-theme/default.nix +++ b/pkgs/development/python-modules/piccolo-theme/default.nix @@ -26,14 +26,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "piccolo_theme" ]; - meta = with lib; { + meta = { description = "Clean and modern Sphinx theme"; homepage = "https://piccolo-theme.readthedocs.io"; changelog = "https://github.com/piccolo-orm/piccolo_theme/releases/tag/${version}"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ loicreynier ]; + maintainers = with lib.maintainers; [ loicreynier ]; }; } diff --git a/pkgs/development/python-modules/pick/default.nix b/pkgs/development/python-modules/pick/default.nix index 6508e79b4f33..b2119a937441 100644 --- a/pkgs/development/python-modules/pick/default.nix +++ b/pkgs/development/python-modules/pick/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pick" ]; - meta = with lib; { + meta = { description = "Module to create curses-based interactive selection list in the terminal"; homepage = "https://github.com/wong2/pick"; changelog = "https://github.com/wong2/pick/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pickleshare/default.nix b/pkgs/development/python-modules/pickleshare/default.nix index be52d4d0e4f1..59ae4082f783 100644 --- a/pkgs/development/python-modules/pickleshare/default.nix +++ b/pkgs/development/python-modules/pickleshare/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { # No proper test suite doCheck = false; - meta = with lib; { + meta = { description = "Tiny 'shelve'-like database with concurrency support"; homepage = "https://github.com/vivainio/pickleshare"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/picobox/default.nix b/pkgs/development/python-modules/picobox/default.nix index c6988b261813..c37bc12675a6 100644 --- a/pkgs/development/python-modules/picobox/default.nix +++ b/pkgs/development/python-modules/picobox/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "picobox" ]; - meta = with lib; { + meta = { description = "Opinionated dependency injection framework"; homepage = "https://github.com/ikalnytskyi/picobox"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/picosvg/default.nix b/pkgs/development/python-modules/picosvg/default.nix index 9b6a355fa36f..0e6b4aabee6f 100644 --- a/pkgs/development/python-modules/picosvg/default.nix +++ b/pkgs/development/python-modules/picosvg/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # a few tests are failing on aarch64 doCheck = !stdenv.hostPlatform.isAarch64; - meta = with lib; { + meta = { description = "Tool to simplify SVGs"; mainProgram = "picosvg"; homepage = "https://github.com/googlefonts/picosvg"; - license = licenses.asl20; - maintainers = with maintainers; [ _999eagle ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ _999eagle ]; }; } diff --git a/pkgs/development/python-modules/pid/default.nix b/pkgs/development/python-modules/pid/default.nix index 0add8799be8b..72a303014c9b 100644 --- a/pkgs/development/python-modules/pid/default.nix +++ b/pkgs/development/python-modules/pid/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pidfile featuring stale detection and file-locking"; homepage = "https://github.com/trbs/pid/"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/piep/default.nix b/pkgs/development/python-modules/piep/default.nix index 6fc53f1bec97..ac08df1e2f94 100644 --- a/pkgs/development/python-modules/piep/default.nix +++ b/pkgs/development/python-modules/piep/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Bringing the power of python to stream editing"; homepage = "https://github.com/timbertson/piep"; - maintainers = with maintainers; [ timbertson ]; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ timbertson ]; + license = lib.licenses.gpl3Only; mainProgram = "piep"; }; } diff --git a/pkgs/development/python-modules/piexif/default.nix b/pkgs/development/python-modules/piexif/default.nix index 9abd4d5cdc10..5ef21ec158a9 100644 --- a/pkgs/development/python-modules/piexif/default.nix +++ b/pkgs/development/python-modules/piexif/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # Pillow needed for unit tests nativeCheckInputs = [ pillow ]; - meta = with lib; { + meta = { description = "Simplify Exif manipulations with Python"; homepage = "https://github.com/hMatoba/Piexif"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/pijuice/default.nix b/pkgs/development/python-modules/pijuice/default.nix index 1f4513ec6d89..a0f80ec8e1d4 100644 --- a/pkgs/development/python-modules/pijuice/default.nix +++ b/pkgs/development/python-modules/pijuice/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Library and resources for PiJuice HAT for Raspberry Pi"; mainProgram = "pijuice_cli"; homepage = "https://github.com/PiSupply/PiJuice"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexagonal-sun ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hexagonal-sun ]; }; } diff --git a/pkgs/development/python-modules/pika-pool/default.nix b/pkgs/development/python-modules/pika-pool/default.nix index 1a458de4076a..9292a70487a2 100644 --- a/pkgs/development/python-modules/pika-pool/default.nix +++ b/pkgs/development/python-modules/pika-pool/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { doCheck = false; dependencies = [ pika ]; - meta = with lib; { + meta = { homepage = "https://github.com/bninja/pika-pool"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; description = "Pools for pikas"; }; } diff --git a/pkgs/development/python-modules/pika/default.nix b/pkgs/development/python-modules/pika/default.nix index 57800a6a7b75..a1e3658fc7d4 100644 --- a/pkgs/development/python-modules/pika/default.nix +++ b/pkgs/development/python-modules/pika/default.nix @@ -62,12 +62,12 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { changelog = "https://github.com/pika/pika/releases/tag/${version}"; description = "Pure-Python implementation of the AMQP 0-9-1 protocol"; downloadPage = "https://github.com/pika/pika"; homepage = "https://pika.readthedocs.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pikepdf/default.nix b/pkgs/development/python-modules/pikepdf/default.nix index 4c636e8e40ea..ba5b0106353a 100644 --- a/pkgs/development/python-modules/pikepdf/default.nix +++ b/pkgs/development/python-modules/pikepdf/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pikepdf" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pikepdf/pikepdf"; description = "Read and write PDFs with Python, powered by qpdf"; - license = licenses.mpl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ dotlambda ]; changelog = "https://github.com/pikepdf/pikepdf/blob/${src.tag}/docs/releasenotes/version${lib.versions.major version}.md"; }; } diff --git a/pkgs/development/python-modules/pilkit/default.nix b/pkgs/development/python-modules/pilkit/default.nix index 71fe0d6bf552..7a252a241b33 100644 --- a/pkgs/development/python-modules/pilkit/default.nix +++ b/pkgs/development/python-modules/pilkit/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pilkit" ]; - meta = with lib; { + meta = { description = "Collection of utilities and processors for the Python Imaging Library"; homepage = "https://github.com/matthewwithanm/pilkit/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pillow-jpls/default.nix b/pkgs/development/python-modules/pillow-jpls/default.nix index 9f7ae858a90d..ad02871df2a6 100644 --- a/pkgs/development/python-modules/pillow-jpls/default.nix +++ b/pkgs/development/python-modules/pillow-jpls/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pillow_jpls" ]; - meta = with lib; { + meta = { description = "JPEG-LS plugin for the Python Pillow library"; homepage = "https://github.com/planetmarshall/pillow-jpls"; changelog = "https://github.com/planetmarshall/pillow-jpls/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pillow/default.nix b/pkgs/development/python-modules/pillow/default.nix index 556236b3b998..04a1ef8b6369 100644 --- a/pkgs/development/python-modules/pillow/default.nix +++ b/pkgs/development/python-modules/pillow/default.nix @@ -141,7 +141,7 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { homepage = "https://python-pillow.github.io/"; changelog = "https://pillow.readthedocs.io/en/stable/releasenotes/${version}.html"; description = "Friendly PIL fork (Python Imaging Library)"; @@ -151,8 +151,8 @@ buildPythonPackage rec { supports many file formats, and provides powerful image processing and graphics capabilities. ''; - license = licenses.mit-cmu; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit-cmu; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pillowfight/default.nix b/pkgs/development/python-modules/pillowfight/default.nix index e4536867e074..14c705e01808 100644 --- a/pkgs/development/python-modules/pillowfight/default.nix +++ b/pkgs/development/python-modules/pillowfight/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ pillow ]; - meta = with lib; { + meta = { description = "Eases the transition from PIL to Pillow for Python packages"; homepage = "https://github.com/beanbaginc/pillowfight"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pims/default.nix b/pkgs/development/python-modules/pims/default.nix index 7a3736de7a3a..2305d5af310c 100644 --- a/pkgs/development/python-modules/pims/default.nix +++ b/pkgs/development/python-modules/pims/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { "pims/tests/test_display.py" ]; - meta = with lib; { + meta = { description = "Module to load video and sequential images in various formats"; homepage = "https://github.com/soft-matter/pims"; changelog = "https://github.com/soft-matter/pims/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pinboard/default.nix b/pkgs/development/python-modules/pinboard/default.nix index 848a926488ad..95fa46176602 100644 --- a/pkgs/development/python-modules/pinboard/default.nix +++ b/pkgs/development/python-modules/pinboard/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { # tests require an API key doCheck = false; - meta = with lib; { + meta = { description = "Python wrapper for Pinboard.in"; mainProgram = "pinboard"; - maintainers = with maintainers; [ djanatyn ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ djanatyn ]; + license = lib.licenses.asl20; homepage = "https://github.com/lionheart/pinboard.py"; }; } diff --git a/pkgs/development/python-modules/ping3/default.nix b/pkgs/development/python-modules/ping3/default.nix index 667b988f17a3..dd21da6f79ce 100644 --- a/pkgs/development/python-modules/ping3/default.nix +++ b/pkgs/development/python-modules/ping3/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ping3" ]; - meta = with lib; { + meta = { description = "ICMP ping implementation using raw socket"; homepage = "https://github.com/kyan001/ping3"; changelog = "https://github.com/kyan001/ping3/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "ping3"; }; } diff --git a/pkgs/development/python-modules/pins/default.nix b/pkgs/development/python-modules/pins/default.nix index 8910dc7d6146..06575046a7b2 100644 --- a/pkgs/development/python-modules/pins/default.nix +++ b/pkgs/development/python-modules/pins/default.nix @@ -90,11 +90,11 @@ buildPythonPackage rec { "pins/tests/test_rsconnect_api.py" ]; - meta = with lib; { + meta = { description = "Module to publishes data, models and other Python objects"; homepage = "https://github.com/rstudio/pins-python"; changelog = "https://github.com/rstudio/pins-python/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pip-api/default.nix b/pkgs/development/python-modules/pip-api/default.nix index 398440a91833..13229eeaa423 100644 --- a/pkgs/development/python-modules/pip-api/default.nix +++ b/pkgs/development/python-modules/pip-api/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "test_isolation" ]; - meta = with lib; { + meta = { description = "Importable pip API"; homepage = "https://github.com/di/pip-api"; changelog = "https://github.com/di/pip-api/blob/${version}/CHANGELOG"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pip-requirements-parser/default.nix b/pkgs/development/python-modules/pip-requirements-parser/default.nix index 61ed71d1b4c8..ae126e917dc6 100644 --- a/pkgs/development/python-modules/pip-requirements-parser/default.nix +++ b/pkgs/development/python-modules/pip-requirements-parser/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { "test_legacy_version_is_deprecated" ]; - meta = with lib; { + meta = { description = "Module to parse pip requirements"; homepage = "https://github.com/nexB/pip-requirements-parser"; changelog = "https://github.com/nexB/pip-requirements-parser/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pip-system-certs/default.nix b/pkgs/development/python-modules/pip-system-certs/default.nix index aeb92eb61f01..038f20a48ea5 100644 --- a/pkgs/development/python-modules/pip-system-certs/default.nix +++ b/pkgs/development/python-modules/pip-system-certs/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { "pip_system_certs.bootstrap" ]; - meta = with lib; { + meta = { description = "Live patches pip and requests to use system certs by default"; homepage = "https://gitlab.com/alelec/pip-system-certs"; - license = licenses.bsd2; - maintainers = with maintainers; [ slotThe ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ slotThe ]; }; } diff --git a/pkgs/development/python-modules/pip-tools/default.nix b/pkgs/development/python-modules/pip-tools/default.nix index 594d00194db2..a84ad25d1aeb 100644 --- a/pkgs/development/python-modules/pip-tools/default.nix +++ b/pkgs/development/python-modules/pip-tools/default.nix @@ -102,11 +102,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "piptools" ]; - meta = with lib; { + meta = { description = "Keeps your pinned dependencies fresh"; homepage = "https://github.com/jazzband/pip-tools/"; changelog = "https://github.com/jazzband/pip-tools/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/development/python-modules/pipdate/default.nix b/pkgs/development/python-modules/pipdate/default.nix index 751b8de30004..f957ce089c75 100644 --- a/pkgs/development/python-modules/pipdate/default.nix +++ b/pkgs/development/python-modules/pipdate/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { # Tests require network access and pythonImportsCheck requires configuration file doCheck = false; - meta = with lib; { + meta = { description = "Pip update helpers"; mainProgram = "pipdate"; homepage = "https://github.com/nschloe/pipdate"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pipdeptree/default.nix b/pkgs/development/python-modules/pipdeptree/default.nix index b3115c303aa7..d8d2a33df614 100644 --- a/pkgs/development/python-modules/pipdeptree/default.nix +++ b/pkgs/development/python-modules/pipdeptree/default.nix @@ -64,12 +64,12 @@ buildPythonPackage rec { "test_console" ]; - meta = with lib; { + meta = { description = "Command line utility to show dependency tree of packages"; homepage = "https://github.com/tox-dev/pipdeptree"; changelog = "https://github.com/tox-dev/pipdeptree/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ charlesbaynham mdaniels5757 ]; diff --git a/pkgs/development/python-modules/pipe/default.nix b/pkgs/development/python-modules/pipe/default.nix index 2038828e8cc4..1664f682febd 100644 --- a/pkgs/development/python-modules/pipe/default.nix +++ b/pkgs/development/python-modules/pipe/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { "test_netcat" ]; - meta = with lib; { + meta = { description = "Module to use infix notation"; homepage = "https://github.com/JulienPalard/Pipe"; changelog = "https://github.com/JulienPalard/Pipe/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pipx/default.nix b/pkgs/development/python-modules/pipx/default.nix index a6f5a98a36fd..66ab799acab5 100644 --- a/pkgs/development/python-modules/pipx/default.nix +++ b/pkgs/development/python-modules/pipx/default.nix @@ -107,12 +107,12 @@ buildPythonPackage rec { --fish <(register-python-argcomplete pipx --shell fish) ''; - meta = with lib; { + meta = { description = "Install and run Python applications in isolated environments"; mainProgram = "pipx"; homepage = "https://github.com/pypa/pipx"; changelog = "https://github.com/pypa/pipx/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ yshym ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yshym ]; }; } diff --git a/pkgs/development/python-modules/pixcat/default.nix b/pkgs/development/python-modules/pixcat/default.nix index 0ca0a099f39b..af0e9cd067a0 100644 --- a/pkgs/development/python-modules/pixcat/default.nix +++ b/pkgs/development/python-modules/pixcat/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pixcat" ]; - meta = with lib; { + meta = { description = "Display images on a kitty terminal with optional resizing"; mainProgram = "pixcat"; homepage = "https://github.com/mirukan/pixcat"; - license = licenses.lgpl3; - maintainers = [ maintainers.tilcreator ]; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.tilcreator ]; }; } diff --git a/pkgs/development/python-modules/pixel-ring/default.nix b/pkgs/development/python-modules/pixel-ring/default.nix index 1628276f5b19..0a6a3f19c2d4 100644 --- a/pkgs/development/python-modules/pixel-ring/default.nix +++ b/pkgs/development/python-modules/pixel-ring/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "RGB LED library for ReSpeaker 4 Mic Array, ReSpeaker V2 & ReSpeaker USB 6+1 Mic Array"; mainProgram = "pixel_ring_check"; homepage = "https://github.com/respeaker/pixel_ring/tree/master"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pkce/default.nix b/pkgs/development/python-modules/pkce/default.nix index 05092226a4c0..8a1654d96ed2 100644 --- a/pkgs/development/python-modules/pkce/default.nix +++ b/pkgs/development/python-modules/pkce/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pkce" ]; - meta = with lib; { + meta = { description = "Python module to work with PKCE"; homepage = "https://github.com/RomeoDespres/pkce"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pkg-about/default.nix b/pkgs/development/python-modules/pkg-about/default.nix index 492bbeeaf1dc..14122e60969b 100644 --- a/pkgs/development/python-modules/pkg-about/default.nix +++ b/pkgs/development/python-modules/pkg-about/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pkg_about" ]; - meta = with lib; { + meta = { description = "Python metadata sharing at runtime"; homepage = "https://github.com/karpierz/pkg_about/"; changelog = "https://github.com/karpierz/pkg_about/blob/${version}/CHANGES.rst"; - license = licenses.zlib; - teams = [ teams.ororatech ]; + license = lib.licenses.zlib; + teams = [ lib.teams.ororatech ]; }; } diff --git a/pkgs/development/python-modules/pkgconfig/default.nix b/pkgs/development/python-modules/pkgconfig/default.nix index aa69c7f286ca..4f19caa99296 100644 --- a/pkgs/development/python-modules/pkgconfig/default.nix +++ b/pkgs/development/python-modules/pkgconfig/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pkgconfig" ]; - meta = with lib; { + meta = { description = "Interface Python with pkg-config"; homepage = "https://github.com/matze/pkgconfig"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/pkginfo2/default.nix b/pkgs/development/python-modules/pkginfo2/default.nix index 504994331579..23aa3c41945b 100644 --- a/pkgs/development/python-modules/pkginfo2/default.nix +++ b/pkgs/development/python-modules/pkginfo2/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { "test_ctor_w_path" ]; - meta = with lib; { + meta = { description = "Query metadatdata from sdists, bdists or installed packages"; homepage = "https://github.com/nexB/pkginfo2"; changelog = "https://github.com/aboutcode-org/pkginfo2/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pkginfo2"; }; } diff --git a/pkgs/development/python-modules/pkuseg/default.nix b/pkgs/development/python-modules/pkuseg/default.nix index 5afc1ceeb89c..a74da172d232 100644 --- a/pkgs/development/python-modules/pkuseg/default.nix +++ b/pkgs/development/python-modules/pkuseg/default.nix @@ -30,9 +30,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "pkuseg" ]; - meta = with lib; { + meta = { description = "Toolkit for multi-domain Chinese word segmentation"; homepage = "https://github.com/lancopku/pkuseg-python"; - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/development/python-modules/plac/default.nix b/pkgs/development/python-modules/plac/default.nix index d263ee27fce5..c57827d4f4da 100644 --- a/pkgs/development/python-modules/plac/default.nix +++ b/pkgs/development/python-modules/plac/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "plac" ]; - meta = with lib; { + meta = { description = "Parsing the Command Line the Easy Way"; mainProgram = "plac_runner.py"; homepage = "https://github.com/micheles/plac"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plaid-python/default.nix b/pkgs/development/python-modules/plaid-python/default.nix index 716159f034f0..a365b2f23425 100644 --- a/pkgs/development/python-modules/plaid-python/default.nix +++ b/pkgs/development/python-modules/plaid-python/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "plaid" ]; - meta = with lib; { + meta = { description = "Python client library for the Plaid API and Link"; homepage = "https://github.com/plaid/plaid-python"; changelog = "https://github.com/plaid/plaid-python/blob/master/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/plantuml/default.nix b/pkgs/development/python-modules/plantuml/default.nix index 068bbfd899af..29d89e69935e 100644 --- a/pkgs/development/python-modules/plantuml/default.nix +++ b/pkgs/development/python-modules/plantuml/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { pythonImportsCheck = [ "plantuml" ]; - meta = with lib; { + meta = { description = "Python interface to a plantuml web service instead of having to run java locally"; homepage = "https://github.com/dougn/python-plantuml"; - license = licenses.bsd2; - maintainers = with maintainers; [ nikstur ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nikstur ]; }; } diff --git a/pkgs/development/python-modules/plaster-pastedeploy/default.nix b/pkgs/development/python-modules/plaster-pastedeploy/default.nix index 0585d596e74a..05e7a02e49b7 100644 --- a/pkgs/development/python-modules/plaster-pastedeploy/default.nix +++ b/pkgs/development/python-modules/plaster-pastedeploy/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "PasteDeploy binding to the plaster configuration loader"; homepage = "https://github.com/Pylons/plaster_pastedeploy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/playsound/default.nix b/pkgs/development/python-modules/playsound/default.nix index fd06a196cea8..97b0c1c462e6 100644 --- a/pkgs/development/python-modules/playsound/default.nix +++ b/pkgs/development/python-modules/playsound/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "playsound" ]; - meta = with lib; { + meta = { homepage = "https://github.com/TaylorSMarks/playsound"; description = "Pure Python, cross platform, single function module with no dependencies for playing sounds"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/playwright/default.nix b/pkgs/development/python-modules/playwright/default.nix index cc80d4947502..680bd1b1f8d7 100644 --- a/pkgs/development/python-modules/playwright/default.nix +++ b/pkgs/development/python-modules/playwright/default.nix @@ -102,12 +102,12 @@ buildPythonPackage rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Python version of the Playwright testing and automation library"; mainProgram = "playwright"; homepage = "https://github.com/microsoft/playwright-python"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ techknowlogick yrd ]; diff --git a/pkgs/development/python-modules/playwrightcapture/default.nix b/pkgs/development/python-modules/playwrightcapture/default.nix index 89159740321b..e32188f5bd4f 100644 --- a/pkgs/development/python-modules/playwrightcapture/default.nix +++ b/pkgs/development/python-modules/playwrightcapture/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "playwrightcapture" ]; - meta = with lib; { + meta = { description = "Capture a URL with Playwright"; homepage = "https://github.com/Lookyloo/PlaywrightCapture"; changelog = "https://github.com/Lookyloo/PlaywrightCapture/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pleroma-bot/default.nix b/pkgs/development/python-modules/pleroma-bot/default.nix index 462473b3507e..c08e2533070e 100644 --- a/pkgs/development/python-modules/pleroma-bot/default.nix +++ b/pkgs/development/python-modules/pleroma-bot/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pleroma_bot" ]; - meta = with lib; { + meta = { description = "Bot for mirroring one or multiple Twitter accounts in Pleroma/Mastodon"; mainProgram = "pleroma-bot"; homepage = "https://robertoszek.github.io/pleroma-bot/"; - license = licenses.mit; - maintainers = with maintainers; [ robertoszek ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ robertoszek ]; }; } diff --git a/pkgs/development/python-modules/plexapi/default.nix b/pkgs/development/python-modules/plexapi/default.nix index fb3599fca048..994591131a25 100644 --- a/pkgs/development/python-modules/plexapi/default.nix +++ b/pkgs/development/python-modules/plexapi/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "plexapi" ]; - meta = with lib; { + meta = { description = "Python bindings for the Plex API"; homepage = "https://github.com/pkkid/python-plexapi"; changelog = "https://github.com/pkkid/python-plexapi/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plexauth/default.nix b/pkgs/development/python-modules/plexauth/default.nix index 9a8b40517c23..aba650e2cbef 100644 --- a/pkgs/development/python-modules/plexauth/default.nix +++ b/pkgs/development/python-modules/plexauth/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # at least guarantee the module can be imported pythonImportsCheck = [ "plexauth" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jjlawren/python-plexauth/"; description = "Handles the authorization flow to obtain tokens from Plex.tv via external redirection"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plexwebsocket/default.nix b/pkgs/development/python-modules/plexwebsocket/default.nix index a9dd67f82556..10ea44eb1f39 100644 --- a/pkgs/development/python-modules/plexwebsocket/default.nix +++ b/pkgs/development/python-modules/plexwebsocket/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "plexwebsocket" ]; - meta = with lib; { + meta = { description = "Library to react to events issued over Plex websockets"; homepage = "https://github.com/jjlawren/python-plexwebsocket/"; changelog = "https://github.com/jjlawren/python-plexwebsocket/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plotext/default.nix b/pkgs/development/python-modules/plotext/default.nix index 1ed735a5fea0..a7bc9449c64b 100644 --- a/pkgs/development/python-modules/plotext/default.nix +++ b/pkgs/development/python-modules/plotext/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "plotext" ]; - meta = with lib; { + meta = { description = "Plotting directly in the terminal"; mainProgram = "plotext"; homepage = "https://github.com/piccolomo/plotext"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/plugincode/default.nix b/pkgs/development/python-modules/plugincode/default.nix index 9d82132c196b..87852214e9ed 100644 --- a/pkgs/development/python-modules/plugincode/default.nix +++ b/pkgs/development/python-modules/plugincode/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "test_skeleton_codestyle" ]; - meta = with lib; { + meta = { description = "Library that provides plugin functionality for ScanCode toolkit"; homepage = "https://github.com/nexB/plugincode"; changelog = "https://github.com/nexB/plugincode/blob/v${version}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plugnplay/default.nix b/pkgs/development/python-modules/plugnplay/default.nix index 4882641e538e..bd909a8357e5 100644 --- a/pkgs/development/python-modules/plugnplay/default.nix +++ b/pkgs/development/python-modules/plugnplay/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "plugnplay" ]; - meta = with lib; { + meta = { description = "Generic plug-in system for python applications"; homepage = "https://github.com/daltonmatos/plugnplay"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plugp100/default.nix b/pkgs/development/python-modules/plugp100/default.nix index 9e139df6a276..49e19bb6f08d 100644 --- a/pkgs/development/python-modules/plugp100/default.nix +++ b/pkgs/development/python-modules/plugp100/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { "tests/unit/test_klap_protocol.py" ]; - meta = with lib; { + meta = { description = "Python library to control Tapo Plug P100 devices"; homepage = "https://github.com/petretiandrea/plugp100"; - license = licenses.gpl3; - maintainers = with maintainers; [ pyle ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pyle ]; }; } diff --git a/pkgs/development/python-modules/plugwise/default.nix b/pkgs/development/python-modules/plugwise/default.nix index 7f4447837b5d..ddb48afc17b1 100644 --- a/pkgs/development/python-modules/plugwise/default.nix +++ b/pkgs/development/python-modules/plugwise/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python module for Plugwise Smiles, Stretch and USB stick"; homepage = "https://github.com/plugwise/python-plugwise"; changelog = "https://github.com/plugwise/python-plugwise/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/plum-py/default.nix b/pkgs/development/python-modules/plum-py/default.nix index 9c2fb7d77247..959a924a8e43 100644 --- a/pkgs/development/python-modules/plum-py/default.nix +++ b/pkgs/development/python-modules/plum-py/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "tests/flag/test_flag_invalid.py" ]; - meta = with lib; { + meta = { description = "Classes and utilities for packing/unpacking bytes"; homepage = "https://plum-py.readthedocs.io/"; changelog = "https://gitlab.com/dangass/plum/-/blob/${version}/docs/release_notes.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dnr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dnr ]; }; } diff --git a/pkgs/development/python-modules/plumbum/default.nix b/pkgs/development/python-modules/plumbum/default.nix index 45173aec4cba..4fd464c20382 100644 --- a/pkgs/development/python-modules/plumbum/default.nix +++ b/pkgs/development/python-modules/plumbum/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { "tests/test_remote.py" ]; - meta = with lib; { + meta = { description = "Module Shell Combinators"; changelog = "https://github.com/tomerfiliba/plumbum/releases/tag/v${version}"; homepage = "https://github.com/tomerfiliba/plumbum"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pluthon/default.nix b/pkgs/development/python-modules/pluthon/default.nix index 8c3470c80947..d200e540f398 100644 --- a/pkgs/development/python-modules/pluthon/default.nix +++ b/pkgs/development/python-modules/pluthon/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pluthon" ]; - meta = with lib; { + meta = { description = "Pluto-like programming language for Cardano Smart Contracts in Python"; homepage = "https://github.com/OpShin/pluthon"; - license = licenses.mit; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aciceri ]; }; } diff --git a/pkgs/development/python-modules/plux/default.nix b/pkgs/development/python-modules/plux/default.nix index 4bacb6954ab8..3a469665f582 100644 --- a/pkgs/development/python-modules/plux/default.nix +++ b/pkgs/development/python-modules/plux/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "plugin.core" ]; - meta = with lib; { + meta = { description = "Dynamic code loading framework for building pluggable Python distributions"; homepage = "https://github.com/localstack/plux"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plyvel/default.nix b/pkgs/development/python-modules/plyvel/default.nix index 5e7874057258..6525ee68dade 100644 --- a/pkgs/development/python-modules/plyvel/default.nix +++ b/pkgs/development/python-modules/plyvel/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # no tests for python2 doCheck = isPy3k; - meta = with lib; { + meta = { description = "Fast and feature-rich Python interface to LevelDB"; - platforms = platforms.unix; + platforms = lib.platforms.unix; homepage = "https://github.com/wbolster/plyvel"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pmdsky-debug-py/default.nix b/pkgs/development/python-modules/pmdsky-debug-py/default.nix index 06b0c7c85b89..c1893d5a9577 100644 --- a/pkgs/development/python-modules/pmdsky-debug-py/default.nix +++ b/pkgs/development/python-modules/pmdsky-debug-py/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ]; - meta = with lib; { + meta = { description = "Autogenerated and statically check-able pmdsky-debug symbol definitions for Python"; homepage = "https://github.com/SkyTemple/pmdsky-debug-py"; - license = licenses.mit; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/pmsensor/default.nix b/pkgs/development/python-modules/pmsensor/default.nix index 0ec79d38ff13..a13f92af4b7e 100644 --- a/pkgs/development/python-modules/pmsensor/default.nix +++ b/pkgs/development/python-modules/pmsensor/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { "pmsensor.serial_pm" ]; - meta = with lib; { + meta = { description = "Library to read data from environment sensors"; homepage = "https://github.com/open-homeautomation/pmsensor"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pnglatex/default.nix b/pkgs/development/python-modules/pnglatex/default.nix index 5f8bed5f0dbe..d4b4bdb9816b 100644 --- a/pkgs/development/python-modules/pnglatex/default.nix +++ b/pkgs/development/python-modules/pnglatex/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { # There are no tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/MaT1g3R/pnglatex"; description = "Small program that converts LaTeX snippets to png"; mainProgram = "pnglatex"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/pocket/default.nix b/pkgs/development/python-modules/pocket/default.nix index 2c65e29dd980..9783da3ac051 100644 --- a/pkgs/development/python-modules/pocket/default.nix +++ b/pkgs/development/python-modules/pocket/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { buildInputs = [ requests ]; - meta = with lib; { + meta = { description = "Wrapper for the pocket API"; homepage = "https://github.com/tapanpandita/pocket"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pocketsphinx/default.nix b/pkgs/development/python-modules/pocketsphinx/default.nix index 770d86aa53ca..c532ea90bb5b 100644 --- a/pkgs/development/python-modules/pocketsphinx/default.nix +++ b/pkgs/development/python-modules/pocketsphinx/default.nix @@ -40,15 +40,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "pocketsphinx" ]; - meta = with lib; { + meta = { description = "Small speech recognizer"; homepage = "https://github.com/cmusphinx/pocketsphinx"; changelog = "https://github.com/cmusphinx/pocketsphinx/blob/v${version}/NEWS"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 mit ]; - maintainers = with maintainers; [ jopejoe1 ]; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/podcastparser/default.nix b/pkgs/development/python-modules/podcastparser/default.nix index 09cf1ce86689..bb9461d42380 100644 --- a/pkgs/development/python-modules/podcastparser/default.nix +++ b/pkgs/development/python-modules/podcastparser/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "podcastparser" ]; - meta = with lib; { + meta = { description = "Module to parse podcasts"; homepage = "http://gpodder.org/podcastparser/"; changelog = "https://github.com/gpodder/podcastparser/releases/tag/${src.tag}"; - license = licenses.bsd2; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/podman/default.nix b/pkgs/development/python-modules/podman/default.nix index 82fc7e7cb3be..7926856bc942 100644 --- a/pkgs/development/python-modules/podman/default.nix +++ b/pkgs/development/python-modules/podman/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { "podman/tests/unit/test_utils.py" ]; - meta = with lib; { + meta = { description = "Python bindings for Podman's RESTful API"; homepage = "https://github.com/containers/podman-py"; changelog = "https://github.com/containers/podman-py/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix b/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix index c5910a0d79dd..45dcbdcd8701 100644 --- a/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix +++ b/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Plugin for Poetry to enable dynamic versioning based on VCS tags"; mainProgram = "poetry-dynamic-versioning"; homepage = "https://github.com/mtkennerly/poetry-dynamic-versioning"; changelog = "https://github.com/mtkennerly/poetry-dynamic-versioning/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/poetry-semver/default.nix b/pkgs/development/python-modules/poetry-semver/default.nix index df4ef9c76f0e..4525ee83f83c 100644 --- a/pkgs/development/python-modules/poetry-semver/default.nix +++ b/pkgs/development/python-modules/poetry-semver/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Semantic versioning library for Python"; homepage = "https://github.com/python-poetry/semver"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/polarizationsolver/default.nix b/pkgs/development/python-modules/polarizationsolver/default.nix index d2deda5fd8e5..7adfedf56be4 100644 --- a/pkgs/development/python-modules/polarizationsolver/default.nix +++ b/pkgs/development/python-modules/polarizationsolver/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { pythonImportsCheck = [ "polarizationsolver" ]; - meta = with lib; { + meta = { description = "Multipole moment solver for quantum chemistry and polarisable embedding"; homepage = "https://gitlab.com/reinholdt/polarizationsolver"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/polib/default.nix b/pkgs/development/python-modules/polib/default.nix index c4f4726c5e89..f7370bbc27e5 100644 --- a/pkgs/development/python-modules/polib/default.nix +++ b/pkgs/development/python-modules/polib/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # error: invalid command 'test' doCheck = false; - meta = with lib; { + meta = { description = "Library to manipulate gettext files (po and mo files)"; homepage = "https://bitbucket.org/izi/polib/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/policy-sentry/default.nix b/pkgs/development/python-modules/policy-sentry/default.nix index b994f1b4803c..80d36c4efb8f 100644 --- a/pkgs/development/python-modules/policy-sentry/default.nix +++ b/pkgs/development/python-modules/policy-sentry/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "policy_sentry" ]; - meta = with lib; { + meta = { description = "Python module for generating IAM least privilege policies"; homepage = "https://github.com/salesforce/policy_sentry"; changelog = "https://github.com/salesforce/policy_sentry/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "policy_sentry"; }; } diff --git a/pkgs/development/python-modules/policyuniverse/default.nix b/pkgs/development/python-modules/policyuniverse/default.nix index 99a37254018c..e061475f75d7 100644 --- a/pkgs/development/python-modules/policyuniverse/default.nix +++ b/pkgs/development/python-modules/policyuniverse/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "policyuniverse" ]; - meta = with lib; { + meta = { description = "Parse and Process AWS IAM Policies, Statements, ARNs and wildcards"; homepage = "https://github.com/Netflix-Skunkworks/policyuniverse"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/polling/default.nix b/pkgs/development/python-modules/polling/default.nix index bbf858356234..c9bc91bdd0b6 100644 --- a/pkgs/development/python-modules/polling/default.nix +++ b/pkgs/development/python-modules/polling/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Powerful polling utility in Python"; homepage = "https://github.com/justiniso/polling"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/polygon3/default.nix b/pkgs/development/python-modules/polygon3/default.nix index 80a3a5ea7256..932208227dbf 100644 --- a/pkgs/development/python-modules/polygon3/default.nix +++ b/pkgs/development/python-modules/polygon3/default.nix @@ -25,10 +25,10 @@ buildPythonPackage { # > /nix/store/vbi8rnz0k3jyh4h4g16bbkchdd8mnxw7-setuptools-check-hook/nix-support/setup-hook: line 4: 30620 Abort trap: 6 /nix/store/5cxanhipcbfxnrqgw2qsr3zqr4z711bj-python3-3.10.12/bin/python3.10 nix_run_setup test doCheck = false; - meta = with lib; { + meta = { description = "Polygon is a python package that handles polygonal shapes in 2D"; homepage = "https://github.com/jraedler/Polygon3"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/polyline/default.nix b/pkgs/development/python-modules/polyline/default.nix index fbe56c2c4d69..629cdf251247 100644 --- a/pkgs/development/python-modules/polyline/default.nix +++ b/pkgs/development/python-modules/polyline/default.nix @@ -35,7 +35,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "polyline" ]; - meta = with lib; { + meta = { description = "Python implementation of Google's Encoded Polyline Algorithm Format"; longDescription = '' polyline is a Python implementation of Google's Encoded Polyline Algorithm Format. It is @@ -43,7 +43,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/frederickjansen/polyline"; changelog = "https://github.com/frederickjansen/polyline/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ ersin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ersin ]; }; } diff --git a/pkgs/development/python-modules/polyswarm-api/default.nix b/pkgs/development/python-modules/polyswarm-api/default.nix index 59a10938b29e..6f5f5abf1398 100644 --- a/pkgs/development/python-modules/polyswarm-api/default.nix +++ b/pkgs/development/python-modules/polyswarm-api/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "polyswarm_api" ]; - meta = with lib; { + meta = { description = "Library to interface with the PolySwarm consumer APIs"; homepage = "https://github.com/polyswarm/polyswarm-api"; changelog = "https://github.com/polyswarm/polyswarm-api/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pontos/default.nix b/pkgs/development/python-modules/pontos/default.nix index c692f434fedd..f563b9f0b013 100644 --- a/pkgs/development/python-modules/pontos/default.nix +++ b/pkgs/development/python-modules/pontos/default.nix @@ -75,11 +75,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pontos" ]; - meta = with lib; { + meta = { description = "Collection of Python utilities, tools, classes and functions"; homepage = "https://github.com/greenbone/pontos"; changelog = "https://github.com/greenbone/pontos/releases/tag/${src.tag}"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pony/default.nix b/pkgs/development/python-modules/pony/default.nix index 13a941558c82..834558d81c44 100644 --- a/pkgs/development/python-modules/pony/default.nix +++ b/pkgs/development/python-modules/pony/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pony" ]; - meta = with lib; { + meta = { description = "Library for advanced object-relational mapping"; homepage = "https://ponyorm.org/"; changelog = "https://github.com/ponyorm/pony/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ d-goldin xvapx ]; diff --git a/pkgs/development/python-modules/ponywhoosh/default.nix b/pkgs/development/python-modules/ponywhoosh/default.nix index 52d982173d47..4d067f0b0af4 100644 --- a/pkgs/development/python-modules/ponywhoosh/default.nix +++ b/pkgs/development/python-modules/ponywhoosh/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { whoosh ]; - meta = with lib; { + meta = { homepage = "https://pythonhosted.org/ponywhoosh/"; description = "Make your database over PonyORM searchable"; - license = licenses.mit; - maintainers = with maintainers; [ alexarice ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alexarice ]; }; } diff --git a/pkgs/development/python-modules/pooch/default.nix b/pkgs/development/python-modules/pooch/default.nix index e60d1d34d2df..819575505975 100644 --- a/pkgs/development/python-modules/pooch/default.nix +++ b/pkgs/development/python-modules/pooch/default.nix @@ -71,10 +71,10 @@ buildPythonPackage rec { "test_stream_download" ]; - meta = with lib; { + meta = { description = "Friend to fetch your data files"; homepage = "https://github.com/fatiando/pooch"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pook/default.nix b/pkgs/development/python-modules/pook/default.nix index ba904883f880..dc94f7cb6ef1 100644 --- a/pkgs/development/python-modules/pook/default.nix +++ b/pkgs/development/python-modules/pook/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { # Tests use sockets __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "HTTP traffic mocking and testing"; homepage = "https://github.com/h2non/pook"; changelog = "https://github.com/h2non/pook/blob/v${src.tag}/History.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/poolsense/default.nix b/pkgs/development/python-modules/poolsense/default.nix index fb69913c6bc1..08535bd38102 100644 --- a/pkgs/development/python-modules/poolsense/default.nix +++ b/pkgs/development/python-modules/poolsense/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "poolsense" ]; - meta = with lib; { + meta = { description = "Python module to access PoolSense device"; homepage = "https://github.com/haemishkyd/poolsense"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/poppler-qt5/default.nix b/pkgs/development/python-modules/poppler-qt5/default.nix index 0ac8753d382d..d19551451929 100644 --- a/pkgs/development/python-modules/poppler-qt5/default.nix +++ b/pkgs/development/python-modules/poppler-qt5/default.nix @@ -53,9 +53,9 @@ buildPythonPackage rec { dontWrapQtApps = true; - meta = with lib; { + meta = { homepage = "https://github.com/frescobaldi/python-poppler-qt5"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/port-for/default.nix b/pkgs/development/python-modules/port-for/default.nix index b4b2d9cfff1e..c3ab66a53d2d 100644 --- a/pkgs/development/python-modules/port-for/default.nix +++ b/pkgs/development/python-modules/port-for/default.nix @@ -26,12 +26,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "port_for" ]; - meta = with lib; { + meta = { homepage = "https://github.com/kmike/port-for"; description = "Command-line utility and library that helps with TCP port managment"; mainProgram = "port-for"; changelog = "https://github.com/kmike/port-for/blob/v${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/portalocker/default.nix b/pkgs/development/python-modules/portalocker/default.nix index 4c45509dc8de..491f7bca79c2 100644 --- a/pkgs/development/python-modules/portalocker/default.nix +++ b/pkgs/development/python-modules/portalocker/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "portalocker" ]; - meta = with lib; { + meta = { changelog = "https://github.com/wolph/portalocker/releases/tag/v${version}"; description = "Library to provide an easy API to file locking"; homepage = "https://github.com/WoLpH/portalocker"; - license = licenses.psfl; + license = lib.licenses.psfl; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/portend/default.nix b/pkgs/development/python-modules/portend/default.nix index 6411878265e2..e4a51c679925 100644 --- a/pkgs/development/python-modules/portend/default.nix +++ b/pkgs/development/python-modules/portend/default.nix @@ -35,9 +35,9 @@ buildPythonPackage rec { # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Monitor TCP ports for bound or unbound states"; homepage = "https://github.com/jaraco/portend"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/portpicker/default.nix b/pkgs/development/python-modules/portpicker/default.nix index 61fd71319fad..af121e663f1c 100644 --- a/pkgs/development/python-modules/portpicker/default.nix +++ b/pkgs/development/python-modules/portpicker/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "portpicker" ]; - meta = with lib; { + meta = { description = "Library to choose unique available network ports"; mainProgram = "portserver.py"; homepage = "https://github.com/google/python_portpicker"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/posix-ipc/default.nix b/pkgs/development/python-modules/posix-ipc/default.nix index 18f418eadaa0..044921447497 100644 --- a/pkgs/development/python-modules/posix-ipc/default.nix +++ b/pkgs/development/python-modules/posix-ipc/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "posix_ipc" ]; - meta = with lib; { + meta = { description = "POSIX IPC primitives (semaphores, shared memory and message queues)"; homepage = "https://github.com/osvenskan/posix_ipc"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pot/default.nix b/pkgs/development/python-modules/pot/default.nix index 8767a7f56239..95288d6f4485 100644 --- a/pkgs/development/python-modules/pot/default.nix +++ b/pkgs/development/python-modules/pot/default.nix @@ -137,10 +137,10 @@ buildPythonPackage rec { "ot.lp" ]; - meta = with lib; { + meta = { description = "Python Optimal Transport Library"; homepage = "https://pythonot.github.io/"; - license = licenses.mit; - maintainers = with maintainers; [ yl3dy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yl3dy ]; }; } diff --git a/pkgs/development/python-modules/potr/default.nix b/pkgs/development/python-modules/potr/default.nix index 87985aa0ef27..50a0a1e6d3fc 100644 --- a/pkgs/development/python-modules/potr/default.nix +++ b/pkgs/development/python-modules/potr/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ pycrypto ]; - meta = with lib; { + meta = { description = "Pure Python OTR implementation"; homepage = "http://python-otr.pentabarf.de/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/power/default.nix b/pkgs/development/python-modules/power/default.nix index 708f3e40a222..aef9acaf2bcf 100644 --- a/pkgs/development/python-modules/power/default.nix +++ b/pkgs/development/python-modules/power/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # Tests can't work because there is no power information available. doCheck = false; - meta = with lib; { + meta = { description = "Cross-platform system power status information"; homepage = "https://github.com/Kentzo/Power"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/powerline-mem-segment/default.nix b/pkgs/development/python-modules/powerline-mem-segment/default.nix index 99a38c7d6248..faaeb8890b7f 100644 --- a/pkgs/development/python-modules/powerline-mem-segment/default.nix +++ b/pkgs/development/python-modules/powerline-mem-segment/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "powerlinemem" ]; - meta = with lib; { + meta = { description = "Segment for Powerline showing the current memory usage in percent or absolute values"; homepage = "https://github.com/mKaloer/powerline_mem_segment"; - license = licenses.asl20; - maintainers = with maintainers; [ thomasjm ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thomasjm ]; }; } diff --git a/pkgs/development/python-modules/pox/default.nix b/pkgs/development/python-modules/pox/default.nix index cae070e71203..e404dc83def2 100644 --- a/pkgs/development/python-modules/pox/default.nix +++ b/pkgs/development/python-modules/pox/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pox" ]; - meta = with lib; { + meta = { description = "Utilities for filesystem exploration and automated builds"; mainProgram = "pox"; homepage = "https://pox.readthedocs.io/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/poyo/default.nix b/pkgs/development/python-modules/poyo/default.nix index 6b18f11fd5ca..37e1fb3e99c8 100644 --- a/pkgs/development/python-modules/poyo/default.nix +++ b/pkgs/development/python-modules/poyo/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "1pflivs6j22frz0v3dqxnvc8yb8fb52g11lqr88z0i8cg2m5csg2"; }; - meta = with lib; { + meta = { homepage = "https://github.com/hackebrot/poyo"; description = "Lightweight YAML Parser for Python"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/ppdeep/default.nix b/pkgs/development/python-modules/ppdeep/default.nix index 23e5d184daaa..035e67afcd04 100644 --- a/pkgs/development/python-modules/ppdeep/default.nix +++ b/pkgs/development/python-modules/ppdeep/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ppdeep" ]; - meta = with lib; { + meta = { description = "Python library for computing fuzzy hashes (ssdeep)"; homepage = "https://github.com/elceef/ppdeep"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ppft/default.nix b/pkgs/development/python-modules/ppft/default.nix index bffb83169ef7..80b2dad0f261 100644 --- a/pkgs/development/python-modules/ppft/default.nix +++ b/pkgs/development/python-modules/ppft/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ppft" ]; - meta = with lib; { + meta = { description = "Distributed and parallel Python"; mainProgram = "ppserver"; homepage = "https://ppft.readthedocs.io/"; changelog = "https://github.com/uqfoundation/ppft/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ppk2-api/default.nix b/pkgs/development/python-modules/ppk2-api/default.nix index a7a5f2dce191..238dd2c36311 100644 --- a/pkgs/development/python-modules/ppk2-api/default.nix +++ b/pkgs/development/python-modules/ppk2-api/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ppk2_api" ]; - meta = with lib; { + meta = { description = "Power Profiling Kit 2 unofficial Python API"; homepage = "https://github.com/IRNAS/ppk2-api-python"; changelog = "https://github.com/IRNAS/ppk2-api-python/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pplpy/default.nix b/pkgs/development/python-modules/pplpy/default.nix index ac03516955bd..bc35c58857c3 100644 --- a/pkgs/development/python-modules/pplpy/default.nix +++ b/pkgs/development/python-modules/pplpy/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Python wrapper for ppl"; homepage = "https://gitlab.com/videlec/pplpy"; - teams = [ teams.sage ]; - license = licenses.gpl3; + teams = [ lib.teams.sage ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/pprintpp/default.nix b/pkgs/development/python-modules/pprintpp/default.nix index d791e77972b9..dcafb320ea87 100644 --- a/pkgs/development/python-modules/pprintpp/default.nix +++ b/pkgs/development/python-modules/pprintpp/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Drop-in replacement for pprint that's actually pretty"; homepage = "https://github.com/wolever/pprintpp"; changelog = "https://github.com/wolever/pprintpp/blob/${version}/CHANGELOG.txt"; - license = licenses.bsd2; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jakewaksbaum ]; mainProgram = "pypprint"; }; } diff --git a/pkgs/development/python-modules/pproxy/default.nix b/pkgs/development/python-modules/pproxy/default.nix index 8a379777a2fa..a48c2f7acb88 100644 --- a/pkgs/development/python-modules/pproxy/default.nix +++ b/pkgs/development/python-modules/pproxy/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { done ''; - meta = with lib; { + meta = { description = "Proxy server that can tunnel among remote servers by regex rules"; mainProgram = "pproxy"; homepage = "https://github.com/qwj/python-proxy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ppscore/default.nix b/pkgs/development/python-modules/ppscore/default.nix index 2dcafee09403..82ac6020420d 100644 --- a/pkgs/development/python-modules/ppscore/default.nix +++ b/pkgs/development/python-modules/ppscore/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ppscore" ]; - meta = with lib; { + meta = { description = "Python implementation of the Predictive Power Score (PPS)"; homepage = "https://github.com/8080labs/ppscore/"; changelog = "https://github.com/8080labs/ppscore/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ evax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evax ]; }; } diff --git a/pkgs/development/python-modules/pq/default.nix b/pkgs/development/python-modules/pq/default.nix index 533382cdca26..63f4fc43c848 100644 --- a/pkgs/development/python-modules/pq/default.nix +++ b/pkgs/development/python-modules/pq/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pq" ]; - meta = with lib; { + meta = { description = "PQ is a transactional queue for PostgreSQL"; homepage = "https://github.com/malthe/pq/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/prance/default.nix b/pkgs/development/python-modules/prance/default.nix index f789a3fab12d..6650322a328a 100644 --- a/pkgs/development/python-modules/prance/default.nix +++ b/pkgs/development/python-modules/prance/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "prance" ]; - meta = with lib; { + meta = { description = "Resolving Swagger/OpenAPI 2.0 and 3.0.0 Parser"; homepage = "https://github.com/RonnyPfannschmidt/prance"; changelog = "https://github.com/RonnyPfannschmidt/prance/blob/${src.rev}/CHANGES.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "prance"; }; diff --git a/pkgs/development/python-modules/praw/default.nix b/pkgs/development/python-modules/praw/default.nix index 2f46c5b50044..4e10694163ab 100644 --- a/pkgs/development/python-modules/praw/default.nix +++ b/pkgs/development/python-modules/praw/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "praw" ]; - meta = with lib; { + meta = { description = "Python Reddit API wrapper"; homepage = "https://praw.readthedocs.org/"; changelog = "https://github.com/praw-dev/praw/blob/v${version}/CHANGES.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/prawcore/default.nix b/pkgs/development/python-modules/prawcore/default.nix index 83df3edfe4e5..78cab2ddebf6 100644 --- a/pkgs/development/python-modules/prawcore/default.nix +++ b/pkgs/development/python-modules/prawcore/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "prawcore" ]; - meta = with lib; { + meta = { description = "Low-level communication layer for PRAW"; homepage = "https://praw.readthedocs.org/"; changelog = "https://github.com/praw-dev/prawcore/blob/v${version}/CHANGES.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pre-commit-hooks/default.nix b/pkgs/development/python-modules/pre-commit-hooks/default.nix index a105ca7f21e8..862ce501ac3a 100644 --- a/pkgs/development/python-modules/pre-commit-hooks/default.nix +++ b/pkgs/development/python-modules/pre-commit-hooks/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pre_commit_hooks" ]; - meta = with lib; { + meta = { description = "Some out-of-the-box hooks for pre-commit"; homepage = "https://github.com/pre-commit/pre-commit-hooks"; changelog = "https://github.com/pre-commit/pre-commit-hooks/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/development/python-modules/precis-i18n/default.nix b/pkgs/development/python-modules/precis-i18n/default.nix index 7bc8741fa8c5..e38083936fcb 100644 --- a/pkgs/development/python-modules/precis-i18n/default.nix +++ b/pkgs/development/python-modules/precis-i18n/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "precis_i18n" ]; - meta = with lib; { + meta = { description = "Internationalized usernames and passwords"; homepage = "https://github.com/byllyfish/precis_i18n"; changelog = "https://github.com/byllyfish/precis_i18n/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/prefixed/default.nix b/pkgs/development/python-modules/prefixed/default.nix index c869b7c2e04b..3cb11b27093d 100644 --- a/pkgs/development/python-modules/prefixed/default.nix +++ b/pkgs/development/python-modules/prefixed/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "prefixed" ]; - meta = with lib; { + meta = { description = "Prefixed alternative numeric library"; homepage = "https://github.com/Rockhopper-Technologies/prefixed"; changelog = "https://github.com/Rockhopper-Technologies/prefixed/releases/tag/${version}"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/preggy/default.nix b/pkgs/development/python-modules/preggy/default.nix index db95ae127885..0054e56ae73f 100644 --- a/pkgs/development/python-modules/preggy/default.nix +++ b/pkgs/development/python-modules/preggy/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ pytest8_3CheckHook ]; - meta = with lib; { + meta = { description = "Assertion library for Python"; homepage = "http://heynemann.github.io/preggy/"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/preprocess-cancellation/default.nix b/pkgs/development/python-modules/preprocess-cancellation/default.nix index 58c381d04740..3c21dd84ec48 100644 --- a/pkgs/development/python-modules/preprocess-cancellation/default.nix +++ b/pkgs/development/python-modules/preprocess-cancellation/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "preprocess_cancellation" ]; - meta = with lib; { + meta = { description = "Klipper GCode Preprocessor for Object Cancellation"; homepage = "https://github.com/kageurufu/cancelobject-preprocessor"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/development/python-modules/presenterm-export/default.nix b/pkgs/development/python-modules/presenterm-export/default.nix index b508f284d982..e7a125828e62 100644 --- a/pkgs/development/python-modules/presenterm-export/default.nix +++ b/pkgs/development/python-modules/presenterm-export/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "presenterm_export" ]; - meta = with lib; { + meta = { description = "PDF exporter for presenterm"; homepage = "https://github.com/mfontanini/presenterm-export"; changelog = "https://github.com/mfontanini/presenterm-export/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ shivaraj-bh ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ shivaraj-bh ]; }; } diff --git a/pkgs/development/python-modules/preshed/default.nix b/pkgs/development/python-modules/preshed/default.nix index dcd022909e81..711244215d00 100644 --- a/pkgs/development/python-modules/preshed/default.nix +++ b/pkgs/development/python-modules/preshed/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { # don't update to 4.0.0, version was yanked passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Cython hash tables that assume keys are pre-hashed"; homepage = "https://github.com/explosion/preshed"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pretend/default.nix b/pkgs/development/python-modules/pretend/default.nix index 725f4a5ed746..a8b39c6689b3 100644 --- a/pkgs/development/python-modules/pretend/default.nix +++ b/pkgs/development/python-modules/pretend/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretend" ]; - meta = with lib; { + meta = { description = "Module for stubbing"; homepage = "https://github.com/alex/pretend"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pretty-errors/default.nix b/pkgs/development/python-modules/pretty-errors/default.nix index 64e769b8ddd9..e5a56712300f 100644 --- a/pkgs/development/python-modules/pretty-errors/default.nix +++ b/pkgs/development/python-modules/pretty-errors/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # No test doCheck = false; - meta = with lib; { + meta = { description = "Prettifies Python exception output to make it legible"; homepage = "https://pypi.org/project/pretty-errors/"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/primecountpy/default.nix b/pkgs/development/python-modules/primecountpy/default.nix index 40e5921f3e90..5c50b43b7352 100644 --- a/pkgs/development/python-modules/primecountpy/default.nix +++ b/pkgs/development/python-modules/primecountpy/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Cython interface for C++ primecount library"; homepage = "https://github.com/dimpase/primecountpy/"; - teams = [ teams.sage ]; - license = licenses.gpl3Only; + teams = [ lib.teams.sage ]; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/development/python-modules/primepy/default.nix b/pkgs/development/python-modules/primepy/default.nix index f8c7dff7b9eb..4e44394cfec7 100644 --- a/pkgs/development/python-modules/primepy/default.nix +++ b/pkgs/development/python-modules/primepy/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "primePy" ]; - meta = with lib; { + meta = { description = "This module contains several useful functions to work with prime numbers. from primePy import primes"; homepage = "https://pypi.org/project/primePy/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/primer3/default.nix b/pkgs/development/python-modules/primer3/default.nix index 7e15a122711a..20c40c2eee43 100644 --- a/pkgs/development/python-modules/primer3/default.nix +++ b/pkgs/development/python-modules/primer3/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "primer3" ]; - meta = with lib; { + meta = { description = "Oligo analysis and primer design"; homepage = "https://github.com/libnano/primer3-py"; changelog = "https://github.com/libnano/primer3-py/blob/${src.tag}/CHANGES"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/print-color/default.nix b/pkgs/development/python-modules/print-color/default.nix index 4ae3d43fd123..549db50efa6f 100644 --- a/pkgs/development/python-modules/print-color/default.nix +++ b/pkgs/development/python-modules/print-color/default.nix @@ -27,14 +27,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "print_color" ]; - meta = with lib; { + meta = { description = "Module to print color messages in the terminal"; homepage = "https://github.com/xy3/print-color"; changelog = "https://github.com/xy3/print-color/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/priority/default.nix b/pkgs/development/python-modules/priority/default.nix index 9ab126ec911b..511140ae952a 100644 --- a/pkgs/development/python-modules/priority/default.nix +++ b/pkgs/development/python-modules/priority/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pure-Python implementation of the HTTP/2 priority tree"; homepage = "https://github.com/python-hyper/priority/"; - license = licenses.mit; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ qyliss ]; }; } diff --git a/pkgs/development/python-modules/prisma/default.nix b/pkgs/development/python-modules/prisma/default.nix index d2f6c7b04553..dc4883b0cc26 100644 --- a/pkgs/development/python-modules/prisma/default.nix +++ b/pkgs/development/python-modules/prisma/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "prisma" ]; - meta = with lib; { + meta = { description = "Auto-generated and fully type-safe database client for prisma"; homepage = "https://github.com/RobertCraigie/prisma-client-py"; changelog = "https://github.com/RobertCraigie/prisma-client-py/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/prison/default.nix b/pkgs/development/python-modules/prison/default.nix index 5abb41f26910..4469ef96329f 100644 --- a/pkgs/development/python-modules/prison/default.nix +++ b/pkgs/development/python-modules/prison/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Rison encoder/decoder"; homepage = "https://github.com/betodealmeida/python-rison"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/process-tests/default.nix b/pkgs/development/python-modules/process-tests/default.nix index 3f557c8de242..1f28517d8a4c 100644 --- a/pkgs/development/python-modules/process-tests/default.nix +++ b/pkgs/development/python-modules/process-tests/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "Tools for testing processes"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://github.com/ionelmc/python-process-tests"; }; } diff --git a/pkgs/development/python-modules/procmon-parser/default.nix b/pkgs/development/python-modules/procmon-parser/default.nix index 6a0bba9c3bb6..c8048b7e65ca 100644 --- a/pkgs/development/python-modules/procmon-parser/default.nix +++ b/pkgs/development/python-modules/procmon-parser/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "procmon_parser" ]; - meta = with lib; { + meta = { description = "Parser to process monitor file formats"; homepage = "https://github.com/eronnen/procmon-parser/"; changelog = "https://github.com/eronnen/procmon-parser/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/proglog/default.nix b/pkgs/development/python-modules/proglog/default.nix index 1e7605b0907d..81afce1e65ed 100644 --- a/pkgs/development/python-modules/proglog/default.nix +++ b/pkgs/development/python-modules/proglog/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { dependencies = [ tqdm ]; - meta = with lib; { + meta = { description = "Logs and progress bars manager for Python"; homepage = "https://github.com/Edinburgh-Genome-Foundry/Proglog"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/progress/default.nix b/pkgs/development/python-modules/progress/default.nix index 26edbf0a1d58..455b6667ef22 100644 --- a/pkgs/development/python-modules/progress/default.nix +++ b/pkgs/development/python-modules/progress/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/verigak/progress/"; description = "Easy to use progress bars"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/progressbar/default.nix b/pkgs/development/python-modules/progressbar/default.nix index a0d3fa8b2431..64d275b1ad1a 100644 --- a/pkgs/development/python-modules/progressbar/default.nix +++ b/pkgs/development/python-modules/progressbar/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # invalid command 'test' doCheck = false; - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/progressbar"; description = "Text progressbar library for python"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/progressbar2/default.nix b/pkgs/development/python-modules/progressbar2/default.nix index b10e37b9d461..2ca8a9d3a712 100644 --- a/pkgs/development/python-modules/progressbar2/default.nix +++ b/pkgs/development/python-modules/progressbar2/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "progressbar" ]; - meta = with lib; { + meta = { description = "Text progressbar library"; homepage = "https://progressbar-2.readthedocs.io/"; - license = licenses.bsd3; - maintainers = with maintainers; [ ashgillman ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ashgillman ]; }; } diff --git a/pkgs/development/python-modules/progressbar33/default.nix b/pkgs/development/python-modules/progressbar33/default.nix index ba11ecd893de..41e9665ba20e 100644 --- a/pkgs/development/python-modules/progressbar33/default.nix +++ b/pkgs/development/python-modules/progressbar33/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/progressbar33"; description = "Text progressbar library for python"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/prometheus-api-client/default.nix b/pkgs/development/python-modules/prometheus-api-client/default.nix index 9ddc610b5c01..f0a8db7f0dbe 100644 --- a/pkgs/development/python-modules/prometheus-api-client/default.nix +++ b/pkgs/development/python-modules/prometheus-api-client/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "prometheus_api_client" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Prometheus HTTP API"; longDescription = '' The prometheus-api-client library consists of multiple modules which @@ -51,7 +51,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/4n4nd/prometheus-api-client-python"; changelog = "https://github.com/4n4nd/prometheus-api-client-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/prometheus-async/default.nix b/pkgs/development/python-modules/prometheus-async/default.nix index a8c89b503d61..c7668870e601 100644 --- a/pkgs/development/python-modules/prometheus-async/default.nix +++ b/pkgs/development/python-modules/prometheus-async/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "prometheus_async" ]; - meta = with lib; { + meta = { description = "Async helpers for prometheus_client"; homepage = "https://github.com/hynek/prometheus-async"; changelog = "https://github.com/hynek/prometheus-async/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/prometheus-client/default.nix b/pkgs/development/python-modules/prometheus-client/default.nix index 0eb0ae66474f..c55a7aadf8f0 100644 --- a/pkgs/development/python-modules/prometheus-client/default.nix +++ b/pkgs/development/python-modules/prometheus-client/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "test_instance_ip_grouping_key" ]; - meta = with lib; { + meta = { description = "Prometheus instrumentation library for Python applications"; homepage = "https://github.com/prometheus/client_python"; changelog = "https://github.com/prometheus/client_python/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/prometheus-flask-exporter/default.nix b/pkgs/development/python-modules/prometheus-flask-exporter/default.nix index 8b7f991f279b..32a3ed949336 100644 --- a/pkgs/development/python-modules/prometheus-flask-exporter/default.nix +++ b/pkgs/development/python-modules/prometheus-flask-exporter/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { "test_group_by_lambda_is_not_supported" ]; - meta = with lib; { + meta = { description = "Prometheus exporter for Flask applications"; homepage = "https://github.com/rycus86/prometheus_flask_exporter"; - license = licenses.mit; - maintainers = with maintainers; [ lbpdt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lbpdt ]; }; } diff --git a/pkgs/development/python-modules/prometheus-pandas/default.nix b/pkgs/development/python-modules/prometheus-pandas/default.nix index 670d9c4cf560..3b4f8549e362 100644 --- a/pkgs/development/python-modules/prometheus-pandas/default.nix +++ b/pkgs/development/python-modules/prometheus-pandas/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "prometheus_pandas" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dcoles/prometheus-pandas"; - license = licenses.mit; + license = lib.licenses.mit; description = "Pandas integration for Prometheus"; - maintainers = with maintainers; [ viktornordling ]; + maintainers = with lib.maintainers; [ viktornordling ]; }; } diff --git a/pkgs/development/python-modules/prometrix/default.nix b/pkgs/development/python-modules/prometrix/default.nix index 0d4bfec6d4cf..0e6ff0dff720 100644 --- a/pkgs/development/python-modules/prometrix/default.nix +++ b/pkgs/development/python-modules/prometrix/default.nix @@ -59,7 +59,7 @@ buildPythonPackage { to connect to and query various types of Prometheus instances. ''; homepage = "https://github.com/robusta-dev/prometrix"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # prometheus-api-client 0.5.5 is not working # https://github.com/robusta-dev/prometrix/issues/14 diff --git a/pkgs/development/python-modules/promise/default.nix b/pkgs/development/python-modules/promise/default.nix index d182becf95be..74f61bf8c476 100644 --- a/pkgs/development/python-modules/promise/default.nix +++ b/pkgs/development/python-modules/promise/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "promise" ]; - meta = with lib; { + meta = { description = "Ultra-performant Promise implementation in Python"; homepage = "https://github.com/syrusakbary/promise"; changelog = "https://github.com/syrusakbary/promise/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/prompt-toolkit/default.nix b/pkgs/development/python-modules/prompt-toolkit/default.nix index e1ad03755362..30ae15617a0e 100644 --- a/pkgs/development/python-modules/prompt-toolkit/default.nix +++ b/pkgs/development/python-modules/prompt-toolkit/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "prompt_toolkit" ]; - meta = with lib; { + meta = { description = "Python library for building powerful interactive command lines"; longDescription = '' prompt_toolkit could be a replacement for readline, but it can be @@ -49,7 +49,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/jonathanslenders/python-prompt-toolkit"; changelog = "https://github.com/prompt-toolkit/python-prompt-toolkit/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ sarahec ]; }; } diff --git a/pkgs/development/python-modules/prompthub-py/default.nix b/pkgs/development/python-modules/prompthub-py/default.nix index b10a06cd6ffb..dbc23edc4541 100644 --- a/pkgs/development/python-modules/prompthub-py/default.nix +++ b/pkgs/development/python-modules/prompthub-py/default.nix @@ -32,11 +32,11 @@ buildPythonPackage { requests ]; - meta = with lib; { + meta = { description = "Simple client to fetch prompts from Prompt Hub using its REST API"; homepage = "https://github.com/deepset-ai/prompthub-py"; changelog = "https://github.com/deepset-ai/prompthub-py/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/property-manager/default.nix b/pkgs/development/python-modules/property-manager/default.nix index 02c0b6accd46..94762bed5b6f 100644 --- a/pkgs/development/python-modules/property-manager/default.nix +++ b/pkgs/development/python-modules/property-manager/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Useful property variants for Python programming"; homepage = "https://github.com/xolox/python-property-manager"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/propka/default.nix b/pkgs/development/python-modules/propka/default.nix index d63c5e6f2c4d..dc0b9b079764 100644 --- a/pkgs/development/python-modules/propka/default.nix +++ b/pkgs/development/python-modules/propka/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "propka" ]; - meta = with lib; { + meta = { description = "Predictor of the pKa values of ionizable groups in proteins and protein-ligand complexes based in the 3D structure"; mainProgram = "propka3"; homepage = "https://github.com/jensengroup/propka"; changelog = "https://github.com/jensengroup/propka/releases/tag/v${version}"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/protego/default.nix b/pkgs/development/python-modules/protego/default.nix index 372715859af0..fe30e530a81a 100644 --- a/pkgs/development/python-modules/protego/default.nix +++ b/pkgs/development/python-modules/protego/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "protego" ]; - meta = with lib; { + meta = { description = "Module to parse robots.txt files with support for modern conventions"; homepage = "https://github.com/scrapy/protego"; changelog = "https://github.com/scrapy/protego/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proto-plus/default.nix b/pkgs/development/python-modules/proto-plus/default.nix index f211febbe5c4..26477b186423 100644 --- a/pkgs/development/python-modules/proto-plus/default.nix +++ b/pkgs/development/python-modules/proto-plus/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "proto" ]; - meta = with lib; { + meta = { description = "Beautiful, idiomatic protocol buffers in Python"; homepage = "https://github.com/googleapis/proto-plus-python"; - license = licenses.asl20; - maintainers = with maintainers; [ ruuda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ruuda ]; }; } diff --git a/pkgs/development/python-modules/protobuf/3.nix b/pkgs/development/python-modules/protobuf/3.nix index 93b753b53d39..8e4fccc31c43 100644 --- a/pkgs/development/python-modules/protobuf/3.nix +++ b/pkgs/development/python-modules/protobuf/3.nix @@ -84,10 +84,10 @@ buildPythonPackage { inherit protobuf; }; - meta = with lib; { + meta = { description = "Protocol Buffers are Google's data interchange format"; homepage = "https://developers.google.com/protocol-buffers/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/protobuf/4.nix b/pkgs/development/python-modules/protobuf/4.nix index b99cdb868a3c..29879ae3c9d8 100644 --- a/pkgs/development/python-modules/protobuf/4.nix +++ b/pkgs/development/python-modules/protobuf/4.nix @@ -126,10 +126,10 @@ buildPythonPackage { inherit protobuf; }; - meta = with lib; { + meta = { description = "Protocol Buffers are Google's data interchange format"; homepage = "https://developers.google.com/protocol-buffers/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; broken = lib.versionAtLeast protobuf.version "26"; }; diff --git a/pkgs/development/python-modules/protobuf3-to-dict/default.nix b/pkgs/development/python-modules/protobuf3-to-dict/default.nix index 91fec62cc63b..7f65a21e30df 100644 --- a/pkgs/development/python-modules/protobuf3-to-dict/default.nix +++ b/pkgs/development/python-modules/protobuf3-to-dict/default.nix @@ -25,9 +25,9 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { description = "Teeny Python library for creating Python dicts from protocol buffers and the reverse"; homepage = "https://github.com/kaporzhu/protobuf-to-dict"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/development/python-modules/proton-client/default.nix b/pkgs/development/python-modules/proton-client/default.nix index b7a4db2ae9b0..e23f9c286957 100644 --- a/pkgs/development/python-modules/proton-client/default.nix +++ b/pkgs/development/python-modules/proton-client/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "proton" ]; - meta = with lib; { + meta = { description = "Python Proton client module"; homepage = "https://github.com/ProtonMail/proton-python-client"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/protonup-ng/default.nix b/pkgs/development/python-modules/protonup-ng/default.nix index b082dd68299c..3b8b0de8392b 100644 --- a/pkgs/development/python-modules/protonup-ng/default.nix +++ b/pkgs/development/python-modules/protonup-ng/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { doCheck = false; # protonup does not have any tests pythonImportsCheck = [ "protonup" ]; - meta = with lib; { + meta = { homepage = "https://github.com/cloudishBenne/protonup-ng"; description = "CLI program and API to automate the installation and update of GloriousEggroll's Proton-GE"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ cafkafk ]; mainProgram = "protonup"; diff --git a/pkgs/development/python-modules/prov/default.nix b/pkgs/development/python-modules/prov/default.nix index ef7361277d5e..727568421917 100644 --- a/pkgs/development/python-modules/prov/default.nix +++ b/pkgs/development/python-modules/prov/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "prov" ]; - meta = with lib; { + meta = { description = "Python library for W3C Provenance Data Model (PROV)"; homepage = "https://github.com/trungdong/prov"; - license = licenses.mit; - maintainers = with maintainers; [ ashgillman ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ashgillman ]; }; } diff --git a/pkgs/development/python-modules/prox-tv/default.nix b/pkgs/development/python-modules/prox-tv/default.nix index ee2862361081..9021664ef10e 100644 --- a/pkgs/development/python-modules/prox-tv/default.nix +++ b/pkgs/development/python-modules/prox-tv/default.nix @@ -43,10 +43,10 @@ buildPythonPackage { disabledTests = [ "test_tvp_1d" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_tv2_1d" ]; - meta = with lib; { + meta = { homepage = "https://github.com/albarji/proxTV"; description = "Toolbox for fast Total Variation proximity operators"; - license = licenses.bsd2; - maintainers = with maintainers; [ multun ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ multun ]; }; } diff --git a/pkgs/development/python-modules/proxmoxer/default.nix b/pkgs/development/python-modules/proxmoxer/default.nix index 8bd6804fd9ce..7826ffc64a29 100644 --- a/pkgs/development/python-modules/proxmoxer/default.nix +++ b/pkgs/development/python-modules/proxmoxer/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "proxmoxer" ]; - meta = with lib; { + meta = { description = "Python wrapper for Proxmox API v2"; homepage = "https://github.com/proxmoxer/proxmoxer"; changelog = "https://github.com/proxmoxer/proxmoxer/releases/tag/${version}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/proxy-db/default.nix b/pkgs/development/python-modules/proxy-db/default.nix index 9eca7c975861..09e90e791767 100644 --- a/pkgs/development/python-modules/proxy-db/default.nix +++ b/pkgs/development/python-modules/proxy-db/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "proxy_db" ]; - meta = with lib; { + meta = { description = "Module to manage proxies in a local database"; mainProgram = "proxy-db"; homepage = "https://github.com/Nekmo/proxy-db/"; changelog = "https://github.com/Nekmo/proxy-db/blob/v${version}/HISTORY.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/proxy-py/default.nix b/pkgs/development/python-modules/proxy-py/default.nix index 7011a191dc07..dd3b0d3a79e2 100644 --- a/pkgs/development/python-modules/proxy-py/default.nix +++ b/pkgs/development/python-modules/proxy-py/default.nix @@ -85,11 +85,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "proxy" ]; - meta = with lib; { + meta = { description = "Python proxy framework"; homepage = "https://github.com/abhinavsingh/proxy.py"; changelog = "https://github.com/abhinavsingh/proxy.py/releases/tag/${src.tag}"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/proxy-tools/default.nix b/pkgs/development/python-modules/proxy-tools/default.nix index b7c858d05200..35186b275835 100644 --- a/pkgs/development/python-modules/proxy-tools/default.nix +++ b/pkgs/development/python-modules/proxy-tools/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "proxy_tools" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jtushman/proxy_tools"; description = "Simple (hopefuly useful) Proxy (as in the GoF design pattern) implementation for Python"; - license = licenses.bsd2; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/development/python-modules/psautohint/default.nix b/pkgs/development/python-modules/psautohint/default.nix index d6489aa0f97b..056b119e17cd 100644 --- a/pkgs/development/python-modules/psautohint/default.nix +++ b/pkgs/development/python-modules/psautohint/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { fullTestsuite = psautohint.override { runAllTests = true; }; }; - meta = with lib; { + meta = { description = "Script to normalize the XML and other data inside of a UFO"; homepage = "https://github.com/adobe-type-tools/psautohint"; - license = licenses.bsd3; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/pscript/default.nix b/pkgs/development/python-modules/pscript/default.nix index c9673c7eb900..e1344052d1e1 100644 --- a/pkgs/development/python-modules/pscript/default.nix +++ b/pkgs/development/python-modules/pscript/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "test_async_and_await" ]; - meta = with lib; { + meta = { description = "Python to JavaScript compiler"; homepage = "https://pscript.readthedocs.io"; changelog = "https://github.com/flexxui/pscript/blob/${src.tag}/docs/releasenotes.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/psrpcore/default.nix b/pkgs/development/python-modules/psrpcore/default.nix index 11e8be6d92a1..dcffcf27ab9e 100644 --- a/pkgs/development/python-modules/psrpcore/default.nix +++ b/pkgs/development/python-modules/psrpcore/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "psrpcore" ]; - meta = with lib; { + meta = { description = "Library for the PowerShell Remoting Protocol (PSRP)"; homepage = "https://github.com/jborean93/psrpcore"; changelog = "https://github.com/jborean93/psrpcore/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/development/python-modules/psutil-home-assistant/default.nix b/pkgs/development/python-modules/psutil-home-assistant/default.nix index c7d83164377f..aef56eac4952 100644 --- a/pkgs/development/python-modules/psutil-home-assistant/default.nix +++ b/pkgs/development/python-modules/psutil-home-assistant/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/home-assistant-libs/psutil-home-assistant/releases/tag/${version}"; description = "Wrapper of psutil that removes reliance on globals"; homepage = "https://github.com/home-assistant-libs/psutil-home-assistant"; - license = licenses.asl20; - teams = [ teams.home-assistant ]; + license = lib.licenses.asl20; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/development/python-modules/psychrolib/default.nix b/pkgs/development/python-modules/psychrolib/default.nix index 273f35ac2d5f..51e26c04e68f 100644 --- a/pkgs/development/python-modules/psychrolib/default.nix +++ b/pkgs/development/python-modules/psychrolib/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "psychrolib" ]; - meta = with lib; { + meta = { description = "Library of psychrometric functions to calculate thermodynamic properties"; homepage = "https://github.com/psychrometrics/psychrolib"; changelog = "https://github.com/psychrometrics/psychrolib/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/psycopg2/default.nix b/pkgs/development/python-modules/psycopg2/default.nix index 026ddf281e48..b985f5120b23 100644 --- a/pkgs/development/python-modules/psycopg2/default.nix +++ b/pkgs/development/python-modules/psycopg2/default.nix @@ -73,10 +73,10 @@ buildPythonPackage rec { buildPackages.libpq ]; - meta = with lib; { + meta = { description = "PostgreSQL database adapter for the Python programming language"; homepage = "https://www.psycopg.org"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus zpl20 ]; diff --git a/pkgs/development/python-modules/psycopg2cffi/default.nix b/pkgs/development/python-modules/psycopg2cffi/default.nix index 723c803cf621..8f361c109dee 100644 --- a/pkgs/development/python-modules/psycopg2cffi/default.nix +++ b/pkgs/development/python-modules/psycopg2cffi/default.nix @@ -62,10 +62,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "psycopg2cffi" ]; - meta = with lib; { + meta = { description = "Implementation of the psycopg2 module using cffi"; homepage = "https://pypi.org/project/psycopg2cffi/"; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ lovesegfault ]; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/psygnal/default.nix b/pkgs/development/python-modules/psygnal/default.nix index 40191587278b..af800859961c 100644 --- a/pkgs/development/python-modules/psygnal/default.nix +++ b/pkgs/development/python-modules/psygnal/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "psygnal" ]; - meta = with lib; { + meta = { description = "Implementation of Qt Signals"; homepage = "https://github.com/pyapp-kit/psygnal"; changelog = "https://github.com/pyapp-kit/psygnal/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/ptpython/default.nix b/pkgs/development/python-modules/ptpython/default.nix index a15354b1dd11..d9d4bfbbb857 100644 --- a/pkgs/development/python-modules/ptpython/default.nix +++ b/pkgs/development/python-modules/ptpython/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ptpython" ]; - meta = with lib; { + meta = { description = "Advanced Python REPL"; homepage = "https://github.com/prompt-toolkit/ptpython"; changelog = "https://github.com/prompt-toolkit/ptpython/blob/${version}/CHANGELOG"; - license = licenses.bsd3; - maintainers = with maintainers; [ mlieberman85 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mlieberman85 ]; }; } diff --git a/pkgs/development/python-modules/publicsuffix/default.nix b/pkgs/development/python-modules/publicsuffix/default.nix index c0f0d87477ff..b3cb03d01858 100644 --- a/pkgs/development/python-modules/publicsuffix/default.nix +++ b/pkgs/development/python-modules/publicsuffix/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "publicsuffix" ]; - meta = with lib; { + meta = { description = "Allows to get the public suffix of a domain name"; homepage = "https://pypi.python.org/pypi/publicsuffix/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/publicsuffix2/default.nix b/pkgs/development/python-modules/publicsuffix2/default.nix index c11880a620c3..227fab9e1ee5 100644 --- a/pkgs/development/python-modules/publicsuffix2/default.nix +++ b/pkgs/development/python-modules/publicsuffix2/default.nix @@ -31,10 +31,10 @@ buildPythonPackage { pythonImportsCheck = [ "publicsuffix2" ]; - meta = with lib; { + meta = { description = "Get a public suffix for a domain name using the Public Suffix List"; homepage = "https://github.com/nexB/python-publicsuffix2"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/publicsuffixlist/default.nix b/pkgs/development/python-modules/publicsuffixlist/default.nix index 7c6f14d508d8..16732c89b875 100644 --- a/pkgs/development/python-modules/publicsuffixlist/default.nix +++ b/pkgs/development/python-modules/publicsuffixlist/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { enabledTestPaths = [ "publicsuffixlist/test.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ko-zu/psl/blob/v${version}-gha/CHANGES.md"; description = "Public Suffix List parser implementation"; homepage = "https://github.com/ko-zu/psl"; - license = licenses.mpl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "publicsuffixlist-download"; }; } diff --git a/pkgs/development/python-modules/pubnub/default.nix b/pkgs/development/python-modules/pubnub/default.nix index bb4d41087b6f..5f80badd3e3a 100644 --- a/pkgs/development/python-modules/pubnub/default.nix +++ b/pkgs/development/python-modules/pubnub/default.nix @@ -63,13 +63,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "pubnub" ]; - meta = with lib; { + meta = { description = "Python-based APIs for PubNub"; homepage = "https://github.com/pubnub/python"; changelog = "https://github.com/pubnub/python/releases/tag/${src.tag}"; # PubNub Software Development Kit License Agreement # https://github.com/pubnub/python/blob/master/LICENSE - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pubnubsub-handler/default.nix b/pkgs/development/python-modules/pubnubsub-handler/default.nix index 8938d9df1ce4..042226cd7c9e 100644 --- a/pkgs/development/python-modules/pubnubsub-handler/default.nix +++ b/pkgs/development/python-modules/pubnubsub-handler/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pubnubsubhandler" ]; - meta = with lib; { + meta = { description = "PubNub subscription between PubNub and Home Assistant"; homepage = "https://github.com/w1ll1am23/pubnubsub-handler"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pudb/default.nix b/pkgs/development/python-modules/pudb/default.nix index bf30bc910e55..b3d30b012423 100644 --- a/pkgs/development/python-modules/pudb/default.nix +++ b/pkgs/development/python-modules/pudb/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pudb" ]; - meta = with lib; { + meta = { description = "Full-screen, console-based Python debugger"; mainProgram = "pudb"; homepage = "https://github.com/inducer/pudb"; changelog = "https://github.com/inducer/pudb/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pueblo/default.nix b/pkgs/development/python-modules/pueblo/default.nix index 6a38aa69eec2..df2733f43ea7 100644 --- a/pkgs/development/python-modules/pueblo/default.nix +++ b/pkgs/development/python-modules/pueblo/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pueblo" ]; - meta = with lib; { + meta = { description = "Python toolbox library"; homepage = "https://github.com/pyveci/pueblo"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/pulp/default.nix b/pkgs/development/python-modules/pulp/default.nix index 73813e2eaedc..78f177bdc097 100644 --- a/pkgs/development/python-modules/pulp/default.nix +++ b/pkgs/development/python-modules/pulp/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pulp" ]; - meta = with lib; { + meta = { description = "Module to generate MPS or LP files"; mainProgram = "pulptest"; homepage = "https://github.com/coin-or/pulp"; - license = licenses.mit; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/pulsectl-asyncio/default.nix b/pkgs/development/python-modules/pulsectl-asyncio/default.nix index 59974681cf1b..acb34dc9e9e6 100644 --- a/pkgs/development/python-modules/pulsectl-asyncio/default.nix +++ b/pkgs/development/python-modules/pulsectl-asyncio/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pulsectl_asyncio" ]; - meta = with lib; { + meta = { description = "Python bindings library for PulseAudio"; homepage = "https://github.com/mhthies/pulsectl-asyncio"; changelog = "https://github.com/mhthies/pulsectl-asyncio/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pulsectl/default.nix b/pkgs/development/python-modules/pulsectl/default.nix index a4340c4a7fc8..b7dabb2abaa0 100644 --- a/pkgs/development/python-modules/pulsectl/default.nix +++ b/pkgs/development/python-modules/pulsectl/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { description = "Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)"; homepage = "https://github.com/mk-fg/python-pulse-control"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pulumi-aws/default.nix b/pkgs/development/python-modules/pulumi-aws/default.nix index ca894ac55f06..b7c14d3e2760 100644 --- a/pkgs/development/python-modules/pulumi-aws/default.nix +++ b/pkgs/development/python-modules/pulumi-aws/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pulumi_aws" ]; - meta = with lib; { + meta = { description = "Pulumi python amazon web services provider"; homepage = "https://github.com/pulumi/pulumi-aws"; changelog = "https://github.com/pulumi/pulumi-aws/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pure-cdb/default.nix b/pkgs/development/python-modules/pure-cdb/default.nix index 2f9c57ce994a..b43530e01724 100644 --- a/pkgs/development/python-modules/pure-cdb/default.nix +++ b/pkgs/development/python-modules/pure-cdb/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cdblib" ]; - meta = with lib; { + meta = { description = "Python library for working with constant databases"; homepage = "https://python-pure-cdb.readthedocs.io/en/latest"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/pure-eval/default.nix b/pkgs/development/python-modules/pure-eval/default.nix index 1906b2d7cb26..0ce70f543c2b 100644 --- a/pkgs/development/python-modules/pure-eval/default.nix +++ b/pkgs/development/python-modules/pure-eval/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pure_eval" ]; - meta = with lib; { + meta = { description = "Safely evaluate AST nodes without side effects"; homepage = "https://github.com/alexmojaki/pure_eval"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pure-pcapy3/default.nix b/pkgs/development/python-modules/pure-pcapy3/default.nix index d037fc7af5b8..0f07a416d445 100644 --- a/pkgs/development/python-modules/pure-pcapy3/default.nix +++ b/pkgs/development/python-modules/pure-pcapy3/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pure_pcapy" ]; - meta = with lib; { + meta = { description = "Reimplementation of pcapy"; homepage = "https://github.com/rcloran/pure-pcapy-3"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pure-protobuf/default.nix b/pkgs/development/python-modules/pure-protobuf/default.nix index 0bab1e6a6194..cca171f08ee3 100644 --- a/pkgs/development/python-modules/pure-protobuf/default.nix +++ b/pkgs/development/python-modules/pure-protobuf/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pure_protobuf" ]; - meta = with lib; { + meta = { description = "Python implementation of Protocol Buffers with dataclass-based schemas"; homepage = "https://github.com/eigenein/protobuf"; changelog = "https://github.com/eigenein/protobuf/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ chuangzhu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chuangzhu ]; }; } diff --git a/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix b/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix index 974a70f2f7a6..ef1f99b95c39 100644 --- a/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix +++ b/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "adb_messenger" ]; - meta = with lib; { + meta = { description = "Python implementation of the ADB client"; homepage = "https://github.com/JeffLIrion/pure-python-adb"; - license = licenses.mit; - maintainers = [ maintainers.makefu ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.makefu ]; }; } diff --git a/pkgs/development/python-modules/pure-python-adb/default.nix b/pkgs/development/python-modules/pure-python-adb/default.nix index 9b861f821a4a..e1b919bb1162 100644 --- a/pkgs/development/python-modules/pure-python-adb/default.nix +++ b/pkgs/development/python-modules/pure-python-adb/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ppadb.client" ] ++ lib.optionals doCheck [ "ppadb.client_async" ]; - meta = with lib; { + meta = { description = "Pure python implementation of the adb client"; homepage = "https://github.com/Swind/pure-python-adb"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/puremagic/default.nix b/pkgs/development/python-modules/puremagic/default.nix index 97b6561f8e88..dea32d171355 100644 --- a/pkgs/development/python-modules/puremagic/default.nix +++ b/pkgs/development/python-modules/puremagic/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "puremagic" ]; - meta = with lib; { + meta = { description = "Implementation of magic file detection"; homepage = "https://github.com/cdgriffith/puremagic"; changelog = "https://github.com/cdgriffith/puremagic/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/purepng/default.nix b/pkgs/development/python-modules/purepng/default.nix index 056532f8e1cc..39fd2e387239 100644 --- a/pkgs/development/python-modules/purepng/default.nix +++ b/pkgs/development/python-modules/purepng/default.nix @@ -54,10 +54,10 @@ buildPythonPackage { runHook postCheck ''; - meta = with lib; { + meta = { description = "Pure Python library for PNG image encoding/decoding"; homepage = "https://github.com/scondo/purepng"; - license = licenses.mit; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/purl/default.nix b/pkgs/development/python-modules/purl/default.nix index 493ac2fd2960..e5716f259421 100644 --- a/pkgs/development/python-modules/purl/default.nix +++ b/pkgs/development/python-modules/purl/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "purl" ]; - meta = with lib; { + meta = { description = "Immutable URL class for easy URL-building and manipulation"; homepage = "https://github.com/codeinthehole/purl"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pushbullet-py/default.nix b/pkgs/development/python-modules/pushbullet-py/default.nix index f1dde0f34e9b..5051f503cf2a 100644 --- a/pkgs/development/python-modules/pushbullet-py/default.nix +++ b/pkgs/development/python-modules/pushbullet-py/default.nix @@ -47,9 +47,9 @@ buildPythonPackage rec { "test_new_chat_ok" ]; - meta = with lib; { + meta = { description = "Simple python client for pushbullet.com"; homepage = "https://github.com/randomchars/pushbullet.py"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pushover-complete/default.nix b/pkgs/development/python-modules/pushover-complete/default.nix index d6ff3d39096c..b61dc05365b2 100644 --- a/pkgs/development/python-modules/pushover-complete/default.nix +++ b/pkgs/development/python-modules/pushover-complete/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pushover_complete" ]; - meta = with lib; { + meta = { description = "Python package for interacting with *all* aspects of the Pushover API"; homepage = "https://github.com/scolby33/pushover_complete"; - license = licenses.mit; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/python-modules/pvextractor/default.nix b/pkgs/development/python-modules/pvextractor/default.nix index 08bdbc505452..70b34b4a21e8 100644 --- a/pkgs/development/python-modules/pvextractor/default.nix +++ b/pkgs/development/python-modules/pvextractor/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pvextractor" ]; - meta = with lib; { + meta = { homepage = "http://pvextractor.readthedocs.io"; description = "Position-velocity diagram extractor"; - license = licenses.bsd3; - maintainers = with maintainers; [ ifurther ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ifurther ]; }; } diff --git a/pkgs/development/python-modules/pvlib/default.nix b/pkgs/development/python-modules/pvlib/default.nix index aa4afc0eda36..cd42acc0c142 100644 --- a/pkgs/development/python-modules/pvlib/default.nix +++ b/pkgs/development/python-modules/pvlib/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pvlib" ]; - meta = with lib; { + meta = { description = "Simulate the performance of photovoltaic energy systems"; homepage = "https://pvlib-python.readthedocs.io"; changelog = "https://pvlib-python.readthedocs.io/en/v${version}/whatsnew.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/pvo/default.nix b/pkgs/development/python-modules/pvo/default.nix index 9da666746217..c8927b9b19b3 100644 --- a/pkgs/development/python-modules/pvo/default.nix +++ b/pkgs/development/python-modules/pvo/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pvo" ]; - meta = with lib; { + meta = { description = "Python module to interact with the PVOutput API"; homepage = "https://github.com/frenck/python-pvoutput"; changelog = "https://github.com/frenck/python-pvoutput/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pweave/default.nix b/pkgs/development/python-modules/pweave/default.nix index b5721e278269..1050a5fbdb73 100644 --- a/pkgs/development/python-modules/pweave/default.nix +++ b/pkgs/development/python-modules/pweave/default.nix @@ -38,9 +38,9 @@ buildPythonPackage rec { # fails due to trying to run CSS as test doCheck = false; - meta = with lib; { + meta = { description = "Scientific reports with embedded python computations with reST, LaTeX or markdown"; homepage = "https://mpastell.com/pweave/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pwkit/default.nix b/pkgs/development/python-modules/pwkit/default.nix index af74fcaf30c2..e8eee642e16c 100644 --- a/pkgs/development/python-modules/pwkit/default.nix +++ b/pkgs/development/python-modules/pwkit/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pwkit" ]; - meta = with lib; { + meta = { description = "Miscellaneous science/astronomy tools"; homepage = "https://github.com/pkgw/pwkit/"; changelog = "https://github.com/pkgw/pwkit/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pwntools/default.nix b/pkgs/development/python-modules/pwntools/default.nix index db47ca9e0e49..f095c11f4896 100644 --- a/pkgs/development/python-modules/pwntools/default.nix +++ b/pkgs/development/python-modules/pwntools/default.nix @@ -98,12 +98,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pwn" ]; - meta = with lib; { + meta = { description = "CTF framework and exploit development library"; homepage = "https://pwntools.com"; changelog = "https://github.com/Gallopsled/pwntools/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bennofs kristoff3r pamplemousse diff --git a/pkgs/development/python-modules/py-air-control-exporter/default.nix b/pkgs/development/python-modules/py-air-control-exporter/default.nix index b38fe6cf0cd5..45e69dd12445 100644 --- a/pkgs/development/python-modules/py-air-control-exporter/default.nix +++ b/pkgs/development/python-modules/py-air-control-exporter/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { inherit (nixosTests.prometheus-exporters) py-air-control; }; - meta = with lib; { + meta = { description = "Exports Air Quality Metrics to Prometheus"; mainProgram = "py-air-control-exporter"; homepage = "https://github.com/urbas/py-air-control-exporter"; - license = licenses.mit; - maintainers = with maintainers; [ urbas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urbas ]; }; } diff --git a/pkgs/development/python-modules/py-air-control/default.nix b/pkgs/development/python-modules/py-air-control/default.nix index ce88995cd598..964575d108ef 100644 --- a/pkgs/development/python-modules/py-air-control/default.nix +++ b/pkgs/development/python-modules/py-air-control/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyairctrl" ]; - meta = with lib; { + meta = { description = "Command Line App for Controlling Philips Air Purifiers"; homepage = "https://github.com/rgerganov/py-air-control"; - license = licenses.mit; - maintainers = with maintainers; [ urbas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urbas ]; }; } diff --git a/pkgs/development/python-modules/py-bip39-bindings/default.nix b/pkgs/development/python-modules/py-bip39-bindings/default.nix index 8738a1267b10..a2a657b78252 100644 --- a/pkgs/development/python-modules/py-bip39-bindings/default.nix +++ b/pkgs/development/python-modules/py-bip39-bindings/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bip39" ]; - meta = with lib; { + meta = { description = "Python bindings for the tiny-bip39 library"; homepage = "https://github.com/polkascan/py-bip39-bindings"; - license = licenses.asl20; - maintainers = with maintainers; [ stargate01 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ stargate01 ]; }; } diff --git a/pkgs/development/python-modules/py-canary/default.nix b/pkgs/development/python-modules/py-canary/default.nix index 05f9d26c87b5..cf78c71fa09a 100644 --- a/pkgs/development/python-modules/py-canary/default.nix +++ b/pkgs/development/python-modules/py-canary/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { "test_location_with_motion_entry" ]; - meta = with lib; { + meta = { description = "Python package for Canary Security Camera"; homepage = "https://github.com/snjoetw/py-canary"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py-cid/default.nix b/pkgs/development/python-modules/py-cid/default.nix index 19966c227f02..23e44bec2343 100644 --- a/pkgs/development/python-modules/py-cid/default.nix +++ b/pkgs/development/python-modules/py-cid/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cid" ]; - meta = with lib; { + meta = { description = "Self-describing content-addressed identifiers for distributed systems implementation in Python"; homepage = "https://github.com/ipld/py-cid"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/py-cpuinfo/default.nix b/pkgs/development/python-modules/py-cpuinfo/default.nix index 4ac79186e324..662ea8453ff1 100644 --- a/pkgs/development/python-modules/py-cpuinfo/default.nix +++ b/pkgs/development/python-modules/py-cpuinfo/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "cpuinfo" ]; - meta = with lib; { + meta = { description = "Get CPU info with pure Python"; mainProgram = "cpuinfo"; longDescription = '' @@ -44,7 +44,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/workhorsy/py-cpuinfo"; changelog = "https://github.com/workhorsy/py-cpuinfo/blob/v${version}/ChangeLog"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/py-deprecate/default.nix b/pkgs/development/python-modules/py-deprecate/default.nix index 53fcfe049f14..76c5a630ea8c 100644 --- a/pkgs/development/python-modules/py-deprecate/default.nix +++ b/pkgs/development/python-modules/py-deprecate/default.nix @@ -28,10 +28,10 @@ buildPythonPackage { pythonImportsCheck = [ "deprecate" ]; - meta = with lib; { + meta = { description = "Module for marking deprecated functions or classes and re-routing to the new successors' instance. Used by torchmetrics"; homepage = "https://borda.github.io/pyDeprecate/"; - license = licenses.asl20; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/py-desmume/default.nix b/pkgs/development/python-modules/py-desmume/default.nix index e8fdadc8feab..189dde22fec1 100644 --- a/pkgs/development/python-modules/py-desmume/default.nix +++ b/pkgs/development/python-modules/py-desmume/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "desmume" ]; - meta = with lib; { + meta = { description = "Python library to interface with DeSmuME, the Nintendo DS emulator"; homepage = "https://github.com/SkyTemple/py-desmume"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/py-dmidecode/default.nix b/pkgs/development/python-modules/py-dmidecode/default.nix index 6114c564942a..2997f4032c76 100644 --- a/pkgs/development/python-modules/py-dmidecode/default.nix +++ b/pkgs/development/python-modules/py-dmidecode/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "dmidecode" ]; - meta = with lib; { + meta = { description = "Python library that parses the output of dmidecode"; homepage = "https://github.com/zaibon/py-dmidecode/"; changelog = "https://github.com/zaibon/py-dmidecode/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/py-dormakaba-dkey/default.nix b/pkgs/development/python-modules/py-dormakaba-dkey/default.nix index 1c0c4273c43a..a100a32eb461 100644 --- a/pkgs/development/python-modules/py-dormakaba-dkey/default.nix +++ b/pkgs/development/python-modules/py-dormakaba-dkey/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "py_dormakaba_dkey" ]; - meta = with lib; { + meta = { description = "Library to interact with a Dormakaba dkey lock"; homepage = "https://github.com/emontnemery/py-dormakaba-dkey"; changelog = "https://github.com/emontnemery/py-dormakaba-dkey/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py-ecc/default.nix b/pkgs/development/python-modules/py-ecc/default.nix index d39204e9dd92..49e297b7f677 100644 --- a/pkgs/development/python-modules/py-ecc/default.nix +++ b/pkgs/development/python-modules/py-ecc/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "py_ecc" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ethereum/py_ecc/blob/${src.rev}/CHANGELOG.rst"; description = "ECC pairing and bn_128 and bls12_381 curve operations"; homepage = "https://github.com/ethereum/py_ecc"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/py-expression-eval/default.nix b/pkgs/development/python-modules/py-expression-eval/default.nix index f184c025e218..3cf32c836a13 100644 --- a/pkgs/development/python-modules/py-expression-eval/default.nix +++ b/pkgs/development/python-modules/py-expression-eval/default.nix @@ -16,11 +16,11 @@ buildPythonPackage rec { sha256 = "YxhZd8V6ofphcNdcbBbrT5mc37O9c6W1mfhsvFVC+KM="; }; - meta = with lib; { + meta = { homepage = "https://github.com/AxiaCore/py-expression-eval/"; description = "Python Mathematical Expression Evaluator"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ cynerd ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/development/python-modules/py-libzfs/default.nix b/pkgs/development/python-modules/py-libzfs/default.nix index d049fd5ee206..3b6395232ec4 100644 --- a/pkgs/development/python-modules/py-libzfs/default.nix +++ b/pkgs/development/python-modules/py-libzfs/default.nix @@ -47,13 +47,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "libzfs" ]; - meta = with lib; { + meta = { description = "Python libzfs bindings"; homepage = "https://github.com/truenas/py-libzfs"; - license = licenses.bsd2; - maintainers = with maintainers; [ chuangzhu ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ chuangzhu ]; # The project also supports macOS (OpenZFS on OSX, O3X), FreeBSD and OpenSolaris # I don't have a machine to test out, thus only packaged for Linux - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/py-lru-cache/default.nix b/pkgs/development/python-modules/py-lru-cache/default.nix index a9d748869501..d445157a3897 100644 --- a/pkgs/development/python-modules/py-lru-cache/default.nix +++ b/pkgs/development/python-modules/py-lru-cache/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { sha256 = "1w3a8l3ckl1zz0f2vlfrawl9a402r458p7xzhy4sgq8k9rl37pq2"; }; - meta = with lib; { + meta = { description = "In-memory LRU cache for python"; homepage = "https://github.com/stucchio/Python-LRU-cache"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/py-multiaddr/default.nix b/pkgs/development/python-modules/py-multiaddr/default.nix index 92bc2ac0987d..d00ba7b4e117 100644 --- a/pkgs/development/python-modules/py-multiaddr/default.nix +++ b/pkgs/development/python-modules/py-multiaddr/default.nix @@ -42,13 +42,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "multiaddr" ]; - meta = with lib; { + meta = { description = "Composable and future-proof network addresses"; homepage = "https://github.com/multiformats/py-multiaddr"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ Luflosi ]; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/py-multibase/default.nix b/pkgs/development/python-modules/py-multibase/default.nix index 250c1290579d..f9722d83ce81 100644 --- a/pkgs/development/python-modules/py-multibase/default.nix +++ b/pkgs/development/python-modules/py-multibase/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "multibase" ]; - meta = with lib; { + meta = { description = "Module for distinguishing base encodings and other simple string encodings"; homepage = "https://github.com/multiformats/py-multibase"; changelog = "https://github.com/multiformats/py-multibase/blob/v${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/py-multicodec/default.nix b/pkgs/development/python-modules/py-multicodec/default.nix index cd502996e0d0..bcecfd1979d4 100644 --- a/pkgs/development/python-modules/py-multicodec/default.nix +++ b/pkgs/development/python-modules/py-multicodec/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "multicodec" ]; - meta = with lib; { + meta = { description = "Compact self-describing codecs"; homepage = "https://github.com/multiformats/py-multicodec"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/py-multihash/default.nix b/pkgs/development/python-modules/py-multihash/default.nix index 50c4c3787098..dc6540b559f8 100644 --- a/pkgs/development/python-modules/py-multihash/default.nix +++ b/pkgs/development/python-modules/py-multihash/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "multihash" ]; - meta = with lib; { + meta = { description = "Self describing hashes - for future proofing"; homepage = "https://github.com/multiformats/py-multihash"; - license = licenses.mit; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/py-nextbusnext/default.nix b/pkgs/development/python-modules/py-nextbusnext/default.nix index 145062b09ff4..4c33145571b5 100644 --- a/pkgs/development/python-modules/py-nextbusnext/default.nix +++ b/pkgs/development/python-modules/py-nextbusnext/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "acceptance/client_test.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ViViDboarder/py_nextbusnext/releases/tag/${src.tag}"; description = "Minimalistic Python client for the NextBus public API"; homepage = "https://github.com/ViViDboarder/py_nextbus"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/py-nightscout/default.nix b/pkgs/development/python-modules/py-nightscout/default.nix index edfc25ee0527..a5e1c435d4d2 100644 --- a/pkgs/development/python-modules/py-nightscout/default.nix +++ b/pkgs/development/python-modules/py-nightscout/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "py_nightscout" ]; - meta = with lib; { + meta = { description = "Python library that provides an interface to Nightscout"; homepage = "https://github.com/marciogranzotto/py-nightscout"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py-opensonic/default.nix b/pkgs/development/python-modules/py-opensonic/default.nix index 957ae8cf1607..a44d6bed414c 100644 --- a/pkgs/development/python-modules/py-opensonic/default.nix +++ b/pkgs/development/python-modules/py-opensonic/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { "libopensonic" ]; - meta = with lib; { + meta = { description = "Python library to wrap the Open Subsonic REST API"; homepage = "https://github.com/khers/py-opensonic"; changelog = "https://github.com/khers/py-opensonic/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/py-partiql-parser/default.nix b/pkgs/development/python-modules/py-partiql-parser/default.nix index 6bd322ec9c84..45081389e6a6 100644 --- a/pkgs/development/python-modules/py-partiql-parser/default.nix +++ b/pkgs/development/python-modules/py-partiql-parser/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "py_partiql_parser" ]; - meta = with lib; { + meta = { description = "Tokenizer/parser/executor for the PartiQL-language"; homepage = "https://github.com/getmoto/py-partiql-parser"; changelog = "https://github.com/getmoto/py-partiql-parser/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ centromere ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ centromere ]; }; } diff --git a/pkgs/development/python-modules/py-pdf-parser/default.nix b/pkgs/development/python-modules/py-pdf-parser/default.nix index 551eaea8cc62..760e6ae94da3 100644 --- a/pkgs/development/python-modules/py-pdf-parser/default.nix +++ b/pkgs/development/python-modules/py-pdf-parser/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "py_pdf_parser.loaders" ]; - meta = with lib; { + meta = { description = "Tool to help extracting information from structured PDFs"; homepage = "https://github.com/jstockwin/py-pdf-parser"; changelog = "https://github.com/jstockwin/py-pdf-parser/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/py-radix-sr/default.nix b/pkgs/development/python-modules/py-radix-sr/default.nix index 4b6bad8a83d4..6bb6c83726ed 100644 --- a/pkgs/development/python-modules/py-radix-sr/default.nix +++ b/pkgs/development/python-modules/py-radix-sr/default.nix @@ -36,13 +36,13 @@ buildPythonPackage rec { "test_000_check_incref" ]; - meta = with lib; { + meta = { description = "Python radix tree for IPv4 and IPv6 prefix matching"; homepage = "https://github.com/SEKOIA-IO/py-radix"; - license = with licenses; [ + license = with lib.licenses; [ isc bsdOriginal ]; - teams = [ teams.wdz ]; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/py-serializable/default.nix b/pkgs/development/python-modules/py-serializable/default.nix index 7b48a7c04950..237508f5208a 100644 --- a/pkgs/development/python-modules/py-serializable/default.nix +++ b/pkgs/development/python-modules/py-serializable/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "test_serializable_with_defaultNS" ]; - meta = with lib; { + meta = { description = "Library to aid with serialisation and deserialisation to/from JSON and XML"; homepage = "https://github.com/madpah/serializable"; changelog = "https://github.com/madpah/serializable/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py-sneakers/default.nix b/pkgs/development/python-modules/py-sneakers/default.nix index bcb9c07fb323..66433247977f 100644 --- a/pkgs/development/python-modules/py-sneakers/default.nix +++ b/pkgs/development/python-modules/py-sneakers/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "py_sneakers" ]; - meta = with lib; { + meta = { description = "Library to emulate the Sneakers movie effect"; mainProgram = "py-sneakers"; homepage = "https://github.com/aenima-x/py-sneakers"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py-sonic/default.nix b/pkgs/development/python-modules/py-sonic/default.nix index d2546edb1acc..322454a2f59d 100644 --- a/pkgs/development/python-modules/py-sonic/default.nix +++ b/pkgs/development/python-modules/py-sonic/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "libsonic" ]; - meta = with lib; { + meta = { homepage = "https://github.com/crustymonkey/py-sonic"; description = "Python wrapper library for the Subsonic REST API"; - license = licenses.gpl3; - maintainers = with maintainers; [ wenngle ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ wenngle ]; }; } diff --git a/pkgs/development/python-modules/py-sr25519-bindings/default.nix b/pkgs/development/python-modules/py-sr25519-bindings/default.nix index 929f744f2754..c64251b41e50 100644 --- a/pkgs/development/python-modules/py-sr25519-bindings/default.nix +++ b/pkgs/development/python-modules/py-sr25519-bindings/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sr25519" ]; - meta = with lib; { + meta = { description = "Python bindings for sr25519 library"; homepage = "https://github.com/polkascan/py-sr25519-bindings"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ onny stargate01 ]; diff --git a/pkgs/development/python-modules/py-stringmatching/default.nix b/pkgs/development/python-modules/py-stringmatching/default.nix index e1b4f98718d7..6f7af538369c 100644 --- a/pkgs/development/python-modules/py-stringmatching/default.nix +++ b/pkgs/development/python-modules/py-stringmatching/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "py_stringmatching" ]; - meta = with lib; { + meta = { broken = lib.versionAtLeast numpy.version "2"; description = "Python string matching library including string tokenizers and string similarity measures"; homepage = "https://github.com/anhaidgroup/py_stringmatching"; changelog = "https://github.com/anhaidgroup/py_stringmatching/blob/v${version}/CHANGES.txt"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/py-synologydsm-api/default.nix b/pkgs/development/python-modules/py-synologydsm-api/default.nix index 50785a4d2f2b..43da55d1e879 100644 --- a/pkgs/development/python-modules/py-synologydsm-api/default.nix +++ b/pkgs/development/python-modules/py-synologydsm-api/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "synology_dsm" ]; - meta = with lib; { + meta = { description = "Python API for Synology DSM"; mainProgram = "synologydsm-api"; homepage = "https://github.com/mib1185/py-synologydsm-api"; changelog = "https://github.com/mib1185/py-synologydsm-api/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ uvnikita ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; }; } diff --git a/pkgs/development/python-modules/py-tes/default.nix b/pkgs/development/python-modules/py-tes/default.nix index 4429a8816794..b6e80367a18e 100644 --- a/pkgs/development/python-modules/py-tes/default.nix +++ b/pkgs/development/python-modules/py-tes/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "tests/integration" ]; - meta = with lib; { + meta = { description = "Python SDK for the GA4GH Task Execution API"; homepage = "https://github.com/ohsu-comp-bio/py-tes"; changelog = "https://github.com/ohsu-comp-bio/py-tes/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py-ubjson/default.nix b/pkgs/development/python-modules/py-ubjson/default.nix index b4f2838d41a6..0a162ced9955 100644 --- a/pkgs/development/python-modules/py-ubjson/default.nix +++ b/pkgs/development/python-modules/py-ubjson/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ubjson" ]; - meta = with lib; { + meta = { description = "Universal Binary JSON draft-12 serializer for Python"; homepage = "https://github.com/Iotic-Labs/py-ubjson"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py-vapid/default.nix b/pkgs/development/python-modules/py-vapid/default.nix index 83042bf54525..00922933d9ad 100644 --- a/pkgs/development/python-modules/py-vapid/default.nix +++ b/pkgs/development/python-modules/py-vapid/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Library for VAPID header generation"; mainProgram = "vapid"; homepage = "https://github.com/mozilla-services/vapid"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/py-zabbix/default.nix b/pkgs/development/python-modules/py-zabbix/default.nix index 353b1710eca0..466c7596a44b 100644 --- a/pkgs/development/python-modules/py-zabbix/default.nix +++ b/pkgs/development/python-modules/py-zabbix/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "config" ]; - meta = with lib; { + meta = { description = "Python module to interact with Zabbix"; homepage = "https://github.com/adubkov/py-zabbix"; changelog = "https://github.com/adubkov/py-zabbix/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/py/default.nix b/pkgs/development/python-modules/py/default.nix index 7cfe0a7e05b7..6ea8602f8d59 100644 --- a/pkgs/development/python-modules/py/default.nix +++ b/pkgs/development/python-modules/py/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "py" ]; - meta = with lib; { + meta = { description = "Library with cross-python path, ini-parsing, io, code, log facilities"; homepage = "https://py.readthedocs.io/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/py3dns/default.nix b/pkgs/development/python-modules/py3dns/default.nix index a036ba2707cf..709ab24f93c2 100644 --- a/pkgs/development/python-modules/py3dns/default.nix +++ b/pkgs/development/python-modules/py3dns/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Python 3 DNS library"; homepage = "https://launchpad.net/py3dns"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python-modules/py3exiv2/default.nix b/pkgs/development/python-modules/py3exiv2/default.nix index c01eaaf57fea..a646c88768d7 100644 --- a/pkgs/development/python-modules/py3exiv2/default.nix +++ b/pkgs/development/python-modules/py3exiv2/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { # Tests are not shipped doCheck = false; - meta = with lib; { + meta = { description = "Python binding to the library exiv2"; homepage = "https://launchpad.net/py3exiv2"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vinymeuh ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vinymeuh ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/development/python-modules/py3langid/default.nix b/pkgs/development/python-modules/py3langid/default.nix index bbc8b3492e80..1dd8a88332ee 100644 --- a/pkgs/development/python-modules/py3langid/default.nix +++ b/pkgs/development/python-modules/py3langid/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "py3langid" ]; - meta = with lib; { + meta = { description = "Fork of the language identification tool langid.py, featuring a modernized codebase and faster execution times"; mainProgram = "langid"; homepage = "https://github.com/adbar/py3langid"; changelog = "https://github.com/adbar/py3langid/blob/v${version}/HISTORY.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ jokatzke ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jokatzke ]; }; } diff --git a/pkgs/development/python-modules/py3nvml/default.nix b/pkgs/development/python-modules/py3nvml/default.nix index af83b7862177..c38d11fac618 100644 --- a/pkgs/development/python-modules/py3nvml/default.nix +++ b/pkgs/development/python-modules/py3nvml/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "py3nvml" ]; - meta = with lib; { + meta = { description = "Python 3 Bindings for the NVIDIA Management Library"; mainProgram = "py3smi"; homepage = "https://pypi.org/project/py3nvml/"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 bsd2 ]; - maintainers = with maintainers; [ happysalada ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/py3rijndael/default.nix b/pkgs/development/python-modules/py3rijndael/default.nix index 5e39b14149b2..23b1b0dfe161 100644 --- a/pkgs/development/python-modules/py3rijndael/default.nix +++ b/pkgs/development/python-modules/py3rijndael/default.nix @@ -20,10 +20,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Rijndael algorithm library"; homepage = "https://github.com/meyt/py3rijndael"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/py3status/default.nix b/pkgs/development/python-modules/py3status/default.nix index bf77116740a6..ef45aadb72cf 100644 --- a/pkgs/development/python-modules/py3status/default.nix +++ b/pkgs/development/python-modules/py3status/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Extensible i3status wrapper"; homepage = "https://github.com/ultrabug/py3status"; changelog = "https://github.com/ultrabug/py3status/blob/${version}/CHANGELOG"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/py4j/default.nix b/pkgs/development/python-modules/py4j/default.nix index 307552130b14..0e1ed4eb2799 100644 --- a/pkgs/development/python-modules/py4j/default.nix +++ b/pkgs/development/python-modules/py4j/default.nix @@ -18,14 +18,14 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Py4J enables Python programs running in a Python interpreter to dynamically access Java objects in a Java Virtual Machine. Methods are called as if the Java objects resided in the Python interpreter and Java collections can be accessed through standard Python collection methods. Py4J also enables Java programs to call back Python objects"; homepage = "https://www.py4j.org/"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode ]; - license = licenses.bsd3; - maintainers = [ maintainers.shlevy ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.shlevy ]; }; } diff --git a/pkgs/development/python-modules/pyTelegramBotAPI/default.nix b/pkgs/development/python-modules/pyTelegramBotAPI/default.nix index 5d81f264a971..ef87fa3a92a6 100644 --- a/pkgs/development/python-modules/pyTelegramBotAPI/default.nix +++ b/pkgs/development/python-modules/pyTelegramBotAPI/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "telebot" ]; - meta = with lib; { + meta = { description = "Python implementation for the Telegram Bot API"; homepage = "https://github.com/eternnoir/pyTelegramBotAPI"; changelog = "https://github.com/eternnoir/pyTelegramBotAPI/releases/tag/${src.tag}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/development/python-modules/pyacaia-async/default.nix b/pkgs/development/python-modules/pyacaia-async/default.nix index a916207eb75f..4f685bcb23ff 100644 --- a/pkgs/development/python-modules/pyacaia-async/default.nix +++ b/pkgs/development/python-modules/pyacaia-async/default.nix @@ -33,13 +33,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyacaia_async" ]; - meta = with lib; { + meta = { description = "Module to interact with Acaia scales"; homepage = "https://github.com/zweckj/pyacaia_async"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only mit ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyacoustid/default.nix b/pkgs/development/python-modules/pyacoustid/default.nix index 30211f9b6fd3..80a06edc804e 100644 --- a/pkgs/development/python-modules/pyacoustid/default.nix +++ b/pkgs/development/python-modules/pyacoustid/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "acoustid" ]; - meta = with lib; { + meta = { description = "Bindings for Chromaprint acoustic fingerprinting"; homepage = "https://github.com/sampsyo/pyacoustid"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyads/default.nix b/pkgs/development/python-modules/pyads/default.nix index 01ae88165ad8..3cfd623b28fa 100644 --- a/pkgs/development/python-modules/pyads/default.nix +++ b/pkgs/development/python-modules/pyads/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyads" ]; - meta = with lib; { + meta = { description = "Python wrapper for TwinCAT ADS library"; homepage = "https://github.com/MrLeeh/pyads"; changelog = "https://github.com/stlehmann/pyads/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/pyaehw4a1/default.nix b/pkgs/development/python-modules/pyaehw4a1/default.nix index 1506bfd80a78..ab7dc9d4b854 100644 --- a/pkgs/development/python-modules/pyaehw4a1/default.nix +++ b/pkgs/development/python-modules/pyaehw4a1/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyaehw4a1" ]; - meta = with lib; { + meta = { description = "Python interface for Hisense AEH-W4A1 module"; homepage = "https://github.com/bannhead/pyaehw4a1"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyaftership/default.nix b/pkgs/development/python-modules/pyaftership/default.nix index 9e7d3b7702ec..98e56e33f476 100644 --- a/pkgs/development/python-modules/pyaftership/default.nix +++ b/pkgs/development/python-modules/pyaftership/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyaftership" ]; - meta = with lib; { + meta = { description = "Python wrapper package for the AfterShip API"; homepage = "https://github.com/ludeeus/pyaftership"; changelog = "https://github.com/ludeeus/pyaftership/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/pyahocorasick/default.nix b/pkgs/development/python-modules/pyahocorasick/default.nix index a394e038063c..95ec0776a714 100644 --- a/pkgs/development/python-modules/pyahocorasick/default.nix +++ b/pkgs/development/python-modules/pyahocorasick/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "ahocorasick" ]; - meta = with lib; { + meta = { description = "Python module implementing Aho-Corasick algorithm"; longDescription = '' This Python module is a fast and memory efficient library for exact or @@ -33,7 +33,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/WojciechMula/pyahocorasick"; changelog = "https://github.com/WojciechMula/pyahocorasick/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyairnow/default.nix b/pkgs/development/python-modules/pyairnow/default.nix index 14516f6efa47..42773a8aec73 100644 --- a/pkgs/development/python-modules/pyairnow/default.nix +++ b/pkgs/development/python-modules/pyairnow/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyairnow" ]; - meta = with lib; { + meta = { description = "Python wrapper for EPA AirNow Air Quality API"; homepage = "https://github.com/asymworks/pyairnow"; changelog = "https://github.com/asymworks/pyairnow/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyairports/default.nix b/pkgs/development/python-modules/pyairports/default.nix index 8b5918e7bf75..d84e10fb1cba 100644 --- a/pkgs/development/python-modules/pyairports/default.nix +++ b/pkgs/development/python-modules/pyairports/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyairports" ]; - meta = with lib; { + meta = { description = "Package which enables airport lookup by 3-letter IATA code"; homepage = "https://github.com/ozeliger/pyairports"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pyairvisual/default.nix b/pkgs/development/python-modules/pyairvisual/default.nix index cb8b3ada0d64..75048f592347 100644 --- a/pkgs/development/python-modules/pyairvisual/default.nix +++ b/pkgs/development/python-modules/pyairvisual/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyairvisual" ]; - meta = with lib; { + meta = { description = "Python library for interacting with AirVisual"; homepage = "https://github.com/bachya/pyairvisual"; changelog = "https://github.com/bachya/pyairvisual/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyais/default.nix b/pkgs/development/python-modules/pyais/default.nix index 23eee3a7e13e..a121d0ed4873 100644 --- a/pkgs/development/python-modules/pyais/default.nix +++ b/pkgs/development/python-modules/pyais/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_full_message_flow" ]; - meta = with lib; { + meta = { description = "Module for decoding and encoding AIS messages (AIVDM/AIVDO)"; homepage = "https://github.com/M0r13n/pyais"; changelog = "https://github.com/M0r13n/pyais/blob/${src.tag}/CHANGELOG.txt"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyalgotrade/default.nix b/pkgs/development/python-modules/pyalgotrade/default.nix index d463972524f3..1b709231644e 100644 --- a/pkgs/development/python-modules/pyalgotrade/default.nix +++ b/pkgs/development/python-modules/pyalgotrade/default.nix @@ -43,9 +43,9 @@ buildPythonPackage rec { # no tests in PyPI tarball doCheck = false; - meta = with lib; { + meta = { description = "Python Algorithmic Trading"; homepage = "http://gbeced.github.io/pyalgotrade/"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pyalsaaudio/default.nix b/pkgs/development/python-modules/pyalsaaudio/default.nix index 7697f6bdf78f..bb5b50059be5 100644 --- a/pkgs/development/python-modules/pyalsaaudio/default.nix +++ b/pkgs/development/python-modules/pyalsaaudio/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { # Unit tests exist in test.py, but they require hardware (and therefore /dev) access. doCheck = false; - meta = with lib; { + meta = { description = "ALSA wrappers for Python"; homepage = "https://github.com/larsimmisch/pyalsaaudio"; changelog = "https://github.com/larsimmisch/pyalsaaudio/blob/${version}/CHANGES.md"; - license = licenses.psfl; - maintainers = with maintainers; [ timschumi ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ timschumi ]; }; } diff --git a/pkgs/development/python-modules/pyamg/default.nix b/pkgs/development/python-modules/pyamg/default.nix index e0a983c6bbc5..5b90e625c330 100644 --- a/pkgs/development/python-modules/pyamg/default.nix +++ b/pkgs/development/python-modules/pyamg/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "pyamg.amg_core.evolution_strength" ]; - meta = with lib; { + meta = { description = "Algebraic Multigrid Solvers in Python"; homepage = "https://github.com/pyamg/pyamg"; changelog = "https://github.com/pyamg/pyamg/blob/v${version}/changelog.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyaml/default.nix b/pkgs/development/python-modules/pyaml/default.nix index 7088ee5ae36b..6df286d6a75e 100644 --- a/pkgs/development/python-modules/pyaml/default.nix +++ b/pkgs/development/python-modules/pyaml/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyaml" ]; - meta = with lib; { + meta = { description = "PyYAML-based module to produce pretty and readable YAML-serialized data"; mainProgram = "pyaml"; homepage = "https://github.com/mk-fg/pretty-yaml"; - license = licenses.wtfpl; + license = lib.licenses.wtfpl; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyannotate/default.nix b/pkgs/development/python-modules/pyannotate/default.nix index f6f55da2f98c..f4d3555aa492 100644 --- a/pkgs/development/python-modules/pyannotate/default.nix +++ b/pkgs/development/python-modules/pyannotate/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "pyannotate_tools/annotations/tests/dundermain_test.py" ]; - meta = with lib; { + meta = { description = "Auto-generate PEP-484 annotations"; homepage = "https://github.com/dropbox/pyannotate"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "pyannotate"; }; diff --git a/pkgs/development/python-modules/pyarlo/default.nix b/pkgs/development/python-modules/pyarlo/default.nix index a9b9c8c040db..3b2b78843416 100644 --- a/pkgs/development/python-modules/pyarlo/default.nix +++ b/pkgs/development/python-modules/pyarlo/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyarlo" ]; - meta = with lib; { + meta = { description = "Python library to work with Netgear Arlo cameras"; homepage = "https://github.com/tchellomello/python-arlo"; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyarr/default.nix b/pkgs/development/python-modules/pyarr/default.nix index 1a5d5eb9eef1..791c6508c251 100644 --- a/pkgs/development/python-modules/pyarr/default.nix +++ b/pkgs/development/python-modules/pyarr/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_upd" ]; - meta = with lib; { + meta = { description = "Python client for Servarr API's (Sonarr, Radarr, Readarr, Lidarr)"; homepage = "https://github.com/totaldebug/pyarr"; changelog = "https://github.com/totaldebug/pyarr/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/pyarrow-hotfix/default.nix b/pkgs/development/python-modules/pyarrow-hotfix/default.nix index f3d5083405bb..2b786b2d06b8 100644 --- a/pkgs/development/python-modules/pyarrow-hotfix/default.nix +++ b/pkgs/development/python-modules/pyarrow-hotfix/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyarrow_hotfix" ]; - meta = with lib; { + meta = { description = "Hotfix for the PyArrow security vulnerability CVE-2023-47248"; homepage = "https://github.com/pitrou/pyarrow-hotfix"; changelog = "https://github.com/pitrou/pyarrow-hotfix/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyarrow/default.nix b/pkgs/development/python-modules/pyarrow/default.nix index 136dd474a527..da0a64a1498f 100644 --- a/pkgs/development/python-modules/pyarrow/default.nix +++ b/pkgs/development/python-modules/pyarrow/default.nix @@ -167,12 +167,12 @@ buildPythonPackage rec { "parquet" ]; - meta = with lib; { + meta = { description = "Cross-language development platform for in-memory data"; homepage = "https://arrow.apache.org/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl cpcloud ]; diff --git a/pkgs/development/python-modules/pyasn/default.nix b/pkgs/development/python-modules/pyasn/default.nix index 7e684c27ae1e..2bc4003e0ac1 100644 --- a/pkgs/development/python-modules/pyasn/default.nix +++ b/pkgs/development/python-modules/pyasn/default.nix @@ -32,13 +32,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyasn" ]; - meta = with lib; { + meta = { description = "Offline IP address to Autonomous System Number lookup module"; homepage = "https://github.com/hadiasghari/pyasn"; - license = with licenses; [ + license = with lib.licenses; [ bsdOriginal mit ]; - maintainers = with maintainers; [ onny ]; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/pyasn1/default.nix b/pkgs/development/python-modules/pyasn1/default.nix index a12b1ff8bb55..727e107b15a5 100644 --- a/pkgs/development/python-modules/pyasn1/default.nix +++ b/pkgs/development/python-modules/pyasn1/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyasn1" ]; - meta = with lib; { + meta = { description = "Generic ASN.1 library for Python"; homepage = "https://pyasn1.readthedocs.io"; changelog = "https://github.com/etingof/pyasn1/blob/master/CHANGES.rst"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyasuswrt/default.nix b/pkgs/development/python-modules/pyasuswrt/default.nix index 5f03675030d3..dc58db36c1b5 100644 --- a/pkgs/development/python-modules/pyasuswrt/default.nix +++ b/pkgs/development/python-modules/pyasuswrt/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyasuswrt" ]; - meta = with lib; { + meta = { description = "Library for communication with ASUSWRT routers via HTTP"; homepage = "https://github.com/ollo69/pyasuswrt"; changelog = "https://github.com/ollo69/pyasuswrt/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyasyncore/default.nix b/pkgs/development/python-modules/pyasyncore/default.nix index 23e09fe01400..ce7f0919e1f3 100644 --- a/pkgs/development/python-modules/pyasyncore/default.nix +++ b/pkgs/development/python-modules/pyasyncore/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Make asyncore available for Python 3.12 onwards"; homepage = "https://github.com/simonrob/pyasyncore"; - license = licenses.psfl; + license = lib.licenses.psfl; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyatag/default.nix b/pkgs/development/python-modules/pyatag/default.nix index 3b2740f1a744..9e3e795b758a 100644 --- a/pkgs/development/python-modules/pyatag/default.nix +++ b/pkgs/development/python-modules/pyatag/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { # nixpkgs-update: no auto update passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Python module to talk to Atag One"; homepage = "https://github.com/MatsNl/pyatag"; changelog = "https://github.com/MatsNl/pyatag/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyatem/default.nix b/pkgs/development/python-modules/pyatem/default.nix index 1c92a75febb7..14289992b84b 100644 --- a/pkgs/development/python-modules/pyatem/default.nix +++ b/pkgs/development/python-modules/pyatem/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyatem" ]; - meta = with lib; { + meta = { description = "Library for controlling Blackmagic Design ATEM video mixers"; homepage = "https://git.sr.ht/~martijnbraam/pyatem"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyathena/default.nix b/pkgs/development/python-modules/pyathena/default.nix index f15193dabdb3..ca329fde08db 100644 --- a/pkgs/development/python-modules/pyathena/default.nix +++ b/pkgs/development/python-modules/pyathena/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyathena" ]; - meta = with lib; { + meta = { description = "Python DB API 2.0 (PEP 249) client for Amazon Athena"; homepage = "https://github.com/laughingman7743/PyAthena/"; changelog = "https://github.com/laughingman7743/PyAthena/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyatmo/default.nix b/pkgs/development/python-modules/pyatmo/default.nix index 770f9c2444c3..6d13ac9859b7 100644 --- a/pkgs/development/python-modules/pyatmo/default.nix +++ b/pkgs/development/python-modules/pyatmo/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyatmo" ]; - meta = with lib; { + meta = { description = "Simple API to access Netatmo weather station data"; homepage = "https://github.com/jabesq/pyatmo"; changelog = "https://github.com/jabesq/pyatmo/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyatome/default.nix b/pkgs/development/python-modules/pyatome/default.nix index 52717116afb4..630055abd582 100644 --- a/pkgs/development/python-modules/pyatome/default.nix +++ b/pkgs/development/python-modules/pyatome/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyatome" ]; - meta = with lib; { + meta = { description = "Python module to get energy consumption data from Atome"; mainProgram = "pyatome"; homepage = "https://github.com/baqs/pyAtome"; - license = licenses.asl20; - maintainers = with maintainers; [ uvnikita ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ uvnikita ]; }; } diff --git a/pkgs/development/python-modules/pyatspi/default.nix b/pkgs/development/python-modules/pyatspi/default.nix index 9e69b571c7fd..d69b3622ce3c 100644 --- a/pkgs/development/python-modules/pyatspi/default.nix +++ b/pkgs/development/python-modules/pyatspi/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "Python client bindings for D-Bus AT-SPI"; homepage = "https://gitlab.gnome.org/GNOME/pyatspi2"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ jtojnar ]; - platforms = with platforms; unix; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/python-modules/pyatv/default.nix b/pkgs/development/python-modules/pyatv/default.nix index c3266fffe3a4..83b1e0fdd08a 100644 --- a/pkgs/development/python-modules/pyatv/default.nix +++ b/pkgs/development/python-modules/pyatv/default.nix @@ -106,11 +106,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyatv" ]; - meta = with lib; { + meta = { description = "Python client library for the Apple TV"; homepage = "https://github.com/postlund/pyatv"; changelog = "https://github.com/postlund/pyatv/blob/${src.tag}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyaudio/default.nix b/pkgs/development/python-modules/pyaudio/default.nix index 7e98869dfc84..a55ff44a5e68 100644 --- a/pkgs/development/python-modules/pyaudio/default.nix +++ b/pkgs/development/python-modules/pyaudio/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { buildInputs = [ pkgs.portaudio ]; - meta = with lib; { + meta = { description = "Python bindings for PortAudio"; homepage = "https://people.csail.mit.edu/hubert/pyaudio/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pyautogui/default.nix b/pkgs/development/python-modules/pyautogui/default.nix index 03cb123a8df3..0180cf974966 100644 --- a/pkgs/development/python-modules/pyautogui/default.nix +++ b/pkgs/development/python-modules/pyautogui/default.nix @@ -51,10 +51,10 @@ buildPythonPackage { pytweening ]; - meta = with lib; { + meta = { description = "PyAutoGUI lets Python control the mouse and keyboard, and other GUI automation tasks"; homepage = "https://github.com/asweigart/pyautogui"; - license = licenses.bsd3; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/pyavm/default.nix b/pkgs/development/python-modules/pyavm/default.nix index 1d42aa9989f9..e7e1186ae4f1 100644 --- a/pkgs/development/python-modules/pyavm/default.nix +++ b/pkgs/development/python-modules/pyavm/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyavm" ]; - meta = with lib; { + meta = { description = "Simple pure-python AVM meta-data handling"; homepage = "https://astrofrog.github.io/pyavm/"; - license = licenses.mit; - maintainers = with maintainers; [ smaret ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ smaret ]; }; } diff --git a/pkgs/development/python-modules/pyaxmlparser/default.nix b/pkgs/development/python-modules/pyaxmlparser/default.nix index 931db4ee8f56..d716d6eca5f1 100644 --- a/pkgs/development/python-modules/pyaxmlparser/default.nix +++ b/pkgs/development/python-modules/pyaxmlparser/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python3 Parser for Android XML file and get Application Name without using Androguard"; mainProgram = "apkinfo"; homepage = "https://github.com/appknox/pyaxmlparser"; # Files from Androguard are licensed ASL 2.0 - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; diff --git a/pkgs/development/python-modules/pybalboa/default.nix b/pkgs/development/python-modules/pybalboa/default.nix index 5ad085c44975..92e63b6d61fc 100644 --- a/pkgs/development/python-modules/pybalboa/default.nix +++ b/pkgs/development/python-modules/pybalboa/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pybalboa" ]; - meta = with lib; { + meta = { description = "Module to communicate with a Balboa spa wifi adapter"; homepage = "https://github.com/garbled1/pybalboa"; changelog = "https://github.com/garbled1/pybalboa/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pybars3/default.nix b/pkgs/development/python-modules/pybars3/default.nix index 937de513347e..7ebeeaee2fb3 100644 --- a/pkgs/development/python-modules/pybars3/default.nix +++ b/pkgs/development/python-modules/pybars3/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pybars" ]; - meta = with lib; { + meta = { description = "Handlebars.js template support for Python 3 and 2"; homepage = "https://github.com/wbond/pybars3"; changelog = "https://github.com/wbond/pybars3/releases/tag/${version}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ jfly matusf ]; diff --git a/pkgs/development/python-modules/pybigwig/default.nix b/pkgs/development/python-modules/pybigwig/default.nix index 86c1a852e4f4..c43d1bb3b90a 100644 --- a/pkgs/development/python-modules/pybigwig/default.nix +++ b/pkgs/development/python-modules/pybigwig/default.nix @@ -41,7 +41,7 @@ buildPythonPackage rec { "testNumpyValues" ]; - meta = with lib; { + meta = { description = "File access to bigBed files, and read and write access to bigWig files"; longDescription = '' A Python extension, written in C, for quick access to bigBed files @@ -50,6 +50,6 @@ buildPythonPackage rec { ''; homepage = "https://github.com/deeptools/pyBigWig"; changelog = "https://github.com/deeptools/pyBigWig/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pybindgen/default.nix b/pkgs/development/python-modules/pybindgen/default.nix index 63321d5c53c0..03849db3513a 100644 --- a/pkgs/development/python-modules/pybindgen/default.nix +++ b/pkgs/development/python-modules/pybindgen/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # Fails to import module 'cxxfilt' from pygccxml on Py3k doCheck = (!isPy3k); - meta = with lib; { + meta = { description = "Python Bindings Generator"; homepage = "https://github.com/gjcarneiro/pybindgen"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/pyblackbird/default.nix b/pkgs/development/python-modules/pyblackbird/default.nix index 93473e82709e..47c5f063cba1 100644 --- a/pkgs/development/python-modules/pyblackbird/default.nix +++ b/pkgs/development/python-modules/pyblackbird/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyblackbird" ]; - meta = with lib; { + meta = { description = "Python implementation for Monoprice Blackbird units"; homepage = "https://github.com/koolsb/pyblackbird"; changelog = "https://github.com/koolsb/pyblackbird/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pybloom-live/default.nix b/pkgs/development/python-modules/pybloom-live/default.nix index 5000e4b72c63..d49fff06e7ac 100644 --- a/pkgs/development/python-modules/pybloom-live/default.nix +++ b/pkgs/development/python-modules/pybloom-live/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pybloom_live" ]; - meta = with lib; { + meta = { description = "Probabilistic data structure"; homepage = "https://github.com/joseph-fox/python-bloomfilter"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pybluez/default.nix b/pkgs/development/python-modules/pybluez/default.nix index 5918a3dd5923..2540bf69addb 100644 --- a/pkgs/development/python-modules/pybluez/default.nix +++ b/pkgs/development/python-modules/pybluez/default.nix @@ -31,10 +31,10 @@ buildPythonPackage { "bluetooth.ble" ]; - meta = with lib; { + meta = { description = "Bluetooth Python extension module"; homepage = "https://github.com/pybluez/pybluez"; - license = licenses.gpl2; + license = lib.licenses.gpl2; broken = stdenv.hostPlatform.isDarwin; # requires pyobjc-core, pyobjc-framework-Cocoa }; } diff --git a/pkgs/development/python-modules/pybotvac/default.nix b/pkgs/development/python-modules/pybotvac/default.nix index 6825c45cf683..8d920699633d 100644 --- a/pkgs/development/python-modules/pybotvac/default.nix +++ b/pkgs/development/python-modules/pybotvac/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pybotvac" ]; - meta = with lib; { + meta = { description = "Python module for interacting with Neato Botvac Connected vacuum robots"; homepage = "https://github.com/stianaske/pybotvac"; changelog = "https://github.com/stianaske/pybotvac/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pybox2d/default.nix b/pkgs/development/python-modules/pybox2d/default.nix index ae1fd153c766..f3924ed6fe8c 100644 --- a/pkgs/development/python-modules/pybox2d/default.nix +++ b/pkgs/development/python-modules/pybox2d/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # Tests need to start GUI windows. doCheck = false; - meta = with lib; { + meta = { description = "2D Game Physics for Python"; homepage = "https://github.com/pybox2d/pybox2d"; - license = licenses.zlib; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/pybravia/default.nix b/pkgs/development/python-modules/pybravia/default.nix index b610c25b3d09..31c3b6f60b12 100644 --- a/pkgs/development/python-modules/pybravia/default.nix +++ b/pkgs/development/python-modules/pybravia/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pybravia" ]; - meta = with lib; { + meta = { description = "Library for remote control of Sony Bravia TVs 2013 and newer"; homepage = "https://github.com/Drafteed/pybravia"; changelog = "https://github.com/Drafteed/pybravia/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pybrowserid/default.nix b/pkgs/development/python-modules/pybrowserid/default.nix index d5783fa02312..80220fc62475 100644 --- a/pkgs/development/python-modules/pybrowserid/default.nix +++ b/pkgs/development/python-modules/pybrowserid/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { mock ]; - meta = with lib; { + meta = { description = "Python library for the BrowserID Protocol"; homepage = "https://github.com/mozilla/PyBrowserID"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pybtex-docutils/default.nix b/pkgs/development/python-modules/pybtex-docutils/default.nix index e1651297a77c..f8c0931a61e3 100644 --- a/pkgs/development/python-modules/pybtex-docutils/default.nix +++ b/pkgs/development/python-modules/pybtex-docutils/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "pybtex_docutils" ]; - meta = with lib; { + meta = { description = "Docutils backend for pybtex"; homepage = "https://github.com/mcmtroffaes/pybtex-docutils"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pybullet/default.nix b/pkgs/development/python-modules/pybullet/default.nix index 63b8ac132026..49adf16e0010 100644 --- a/pkgs/development/python-modules/pybullet/default.nix +++ b/pkgs/development/python-modules/pybullet/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { ./static-libs.patch ]; - meta = with lib; { + meta = { description = "Open-source software for robot simulation, integrated with OpenAI Gym"; downloadPage = "https://github.com/bulletphysics/bullet3"; homepage = "https://pybullet.org/"; - license = licenses.zlib; - maintainers = with maintainers; [ timokau ]; - platforms = platforms.linux; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ timokau ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pycairo/default.nix b/pkgs/development/python-modules/pycairo/default.nix index e3ee49b20113..de263d46813e 100644 --- a/pkgs/development/python-modules/pycairo/default.nix +++ b/pkgs/development/python-modules/pycairo/default.nix @@ -48,13 +48,13 @@ buildPythonPackage rec { "-Dpython=${python.pythonOnBuildForHost.interpreter}" ]; - meta = with lib; { + meta = { description = "Python 3 bindings for cairo"; homepage = "https://pycairo.readthedocs.io/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Only mpl11 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pycangjie/default.nix b/pkgs/development/python-modules/pycangjie/default.nix index dbac3797e77a..7fef42566dd6 100644 --- a/pkgs/development/python-modules/pycangjie/default.nix +++ b/pkgs/development/python-modules/pycangjie/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { mesonCheckPhase ''; - meta = with lib; { + meta = { description = "Python wrapper to libcangjie"; homepage = "https://cangjians.github.io/projects/pycangjie/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/pycares/default.nix b/pkgs/development/python-modules/pycares/default.nix index c496e5c5e607..c25d8bc17e73 100644 --- a/pkgs/development/python-modules/pycares/default.nix +++ b/pkgs/development/python-modules/pycares/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycares" ]; - meta = with lib; { + meta = { description = "Python interface for c-ares"; homepage = "https://github.com/saghul/pycares"; changelog = "https://github.com/saghul/pycares/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycarwings2/default.nix b/pkgs/development/python-modules/pycarwings2/default.nix index 8778ec180fbf..c357a77e3aeb 100644 --- a/pkgs/development/python-modules/pycarwings2/default.nix +++ b/pkgs/development/python-modules/pycarwings2/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycarwings2" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the NissanConnect EV"; homepage = "https://github.com/filcole/pycarwings2"; changelog = "https://github.com/filcole/pycarwings2/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycasbin/default.nix b/pkgs/development/python-modules/pycasbin/default.nix index 8fdbf648e47a..71296d286f47 100644 --- a/pkgs/development/python-modules/pycasbin/default.nix +++ b/pkgs/development/python-modules/pycasbin/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "casbin" ]; - meta = with lib; { + meta = { description = "Authorization library that supports access control models like ACL, RBAC and ABAC"; homepage = "https://github.com/casbin/pycasbin"; changelog = "https://github.com/casbin/pycasbin/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pycayennelpp/default.nix b/pkgs/development/python-modules/pycayennelpp/default.nix index 96a72e2d7f12..e16c16e280b1 100644 --- a/pkgs/development/python-modules/pycayennelpp/default.nix +++ b/pkgs/development/python-modules/pycayennelpp/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Python library for Cayenne Low Power Payload"; homepage = "https://github.com/smlng/pycayennelpp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.haylin ]; }; } diff --git a/pkgs/development/python-modules/pycddl/default.nix b/pkgs/development/python-modules/pycddl/default.nix index 1efadf11713d..3e2fa0d1554a 100644 --- a/pkgs/development/python-modules/pycddl/default.nix +++ b/pkgs/development/python-modules/pycddl/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycddl" ]; - meta = with lib; { + meta = { description = "Python bindings for the Rust cddl crate"; homepage = "https://gitlab.com/tahoe-lafs/pycddl"; changelog = "https://gitlab.com/tahoe-lafs/pycddl/-/tree/v${version}#release-notes"; - license = licenses.mit; - maintainers = [ maintainers.exarkun ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.exarkun ]; }; } diff --git a/pkgs/development/python-modules/pycec/default.nix b/pkgs/development/python-modules/pycec/default.nix index 29a85c252abe..deae2433c492 100644 --- a/pkgs/development/python-modules/pycec/default.nix +++ b/pkgs/development/python-modules/pycec/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycec" ]; - meta = with lib; { + meta = { description = "Python modules to access HDMI CEC devices"; mainProgram = "pycec"; homepage = "https://github.com/konikvranik/pycec/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycep-parser/default.nix b/pkgs/development/python-modules/pycep-parser/default.nix index 4121d15a5668..473e64fdc771 100644 --- a/pkgs/development/python-modules/pycep-parser/default.nix +++ b/pkgs/development/python-modules/pycep-parser/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycep" ]; - meta = with lib; { + meta = { description = "Python based Bicep parser"; homepage = "https://github.com/gruebel/pycep"; changelog = "https://github.com/gruebel/pycep/blob/${version}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycfdns/default.nix b/pkgs/development/python-modules/pycfdns/default.nix index f9ef958474f1..a9c5627d4d5d 100644 --- a/pkgs/development/python-modules/pycfdns/default.nix +++ b/pkgs/development/python-modules/pycfdns/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycfdns" ]; - meta = with lib; { + meta = { description = "Python module for updating Cloudflare DNS A records"; homepage = "https://github.com/ludeeus/pycfdns"; changelog = "https://github.com/ludeeus/pycfdns/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycflow2dot/default.nix b/pkgs/development/python-modules/pycflow2dot/default.nix index feef5a1f4d4a..13b1082b1457 100644 --- a/pkgs/development/python-modules/pycflow2dot/default.nix +++ b/pkgs/development/python-modules/pycflow2dot/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { make all ''; - meta = with lib; { + meta = { description = "Layout C call graphs from cflow using GraphViz dot"; mainProgram = "cflow2dot"; homepage = "https://github.com/johnyf/pycflow2dot"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pycfmodel/default.nix b/pkgs/development/python-modules/pycfmodel/default.nix index 7aa357186294..e67e1fed2d39 100644 --- a/pkgs/development/python-modules/pycfmodel/default.nix +++ b/pkgs/development/python-modules/pycfmodel/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycfmodel" ]; - meta = with lib; { + meta = { description = "Model for Cloud Formation scripts"; homepage = "https://github.com/Skyscanner/pycfmodel"; changelog = "https://github.com/Skyscanner/pycfmodel/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pychannels/default.nix b/pkgs/development/python-modules/pychannels/default.nix index 4558f31aeff6..d6c0b0b5d96d 100644 --- a/pkgs/development/python-modules/pychannels/default.nix +++ b/pkgs/development/python-modules/pychannels/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pychannels" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the Channels app"; homepage = "https://github.com/fancybits/pychannels"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pychm/default.nix b/pkgs/development/python-modules/pychm/default.nix index 8b7c443d6684..c450845d3e06 100644 --- a/pkgs/development/python-modules/pychm/default.nix +++ b/pkgs/development/python-modules/pychm/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "chm" ]; - meta = with lib; { + meta = { description = "Library to manipulate Microsoft HTML Help (CHM) files"; homepage = "https://github.com/dottedmag/pychm"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ alexshpilkin ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ alexshpilkin ]; }; } diff --git a/pkgs/development/python-modules/pychromecast/default.nix b/pkgs/development/python-modules/pychromecast/default.nix index e85eef588c46..c44a2d3c5461 100644 --- a/pkgs/development/python-modules/pychromecast/default.nix +++ b/pkgs/development/python-modules/pychromecast/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pychromecast" ]; - meta = with lib; { + meta = { description = "Library for Python to communicate with the Google Chromecast"; homepage = "https://github.com/home-assistant-libs/pychromecast"; changelog = "https://github.com/home-assistant-libs/pychromecast/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pycketcasts/default.nix b/pkgs/development/python-modules/pycketcasts/default.nix index 96ffaf13af1d..f2320835f6df 100644 --- a/pkgs/development/python-modules/pycketcasts/default.nix +++ b/pkgs/development/python-modules/pycketcasts/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycketcasts" ]; - meta = with lib; { + meta = { description = "Module to interact with PocketCast's unofficial API"; homepage = "https://github.com/nwithan8/pycketcasts"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyclimacell/default.nix b/pkgs/development/python-modules/pyclimacell/default.nix index 992c20aafe2f..05d70e935283 100644 --- a/pkgs/development/python-modules/pyclimacell/default.nix +++ b/pkgs/development/python-modules/pyclimacell/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyclimacell" ]; - meta = with lib; { + meta = { description = "Python client for ClimaCell API"; homepage = "https://github.com/raman325/pyclimacell"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyclipper/default.nix b/pkgs/development/python-modules/pyclipper/default.nix index 56c5a7b7a926..b176c18fe967 100644 --- a/pkgs/development/python-modules/pyclipper/default.nix +++ b/pkgs/development/python-modules/pyclipper/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyclipper" ]; - meta = with lib; { + meta = { description = "Cython wrapper for clipper library"; homepage = "https://github.com/fonttools/pyclipper"; - license = licenses.mit; - maintainers = with maintainers; [ matthuszagh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthuszagh ]; }; } diff --git a/pkgs/development/python-modules/pycmarkgfm/default.nix b/pkgs/development/python-modules/pycmarkgfm/default.nix index 41aedf437fcf..80a3fefcb45c 100644 --- a/pkgs/development/python-modules/pycmarkgfm/default.nix +++ b/pkgs/development/python-modules/pycmarkgfm/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { homepage = "https://github.com/zopieux/pycmarkgfm"; description = "Bindings to GitHub's Flavored Markdown (cmark-gfm), with enhanced support for task lists"; changelog = "https://github.com/zopieux/pycmarkgfm/raw/v${version}/CHANGELOG.md"; - platforms = platforms.linux ++ platforms.darwin; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ zopieux ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ zopieux ]; }; } diff --git a/pkgs/development/python-modules/pycocotools/default.nix b/pkgs/development/python-modules/pycocotools/default.nix index c5bfa9e4d0a0..b93de3d68bc6 100644 --- a/pkgs/development/python-modules/pycocotools/default.nix +++ b/pkgs/development/python-modules/pycocotools/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { description = "Official APIs for the MS-COCO dataset"; homepage = "https://github.com/cocodataset/cocoapi/tree/master/PythonAPI"; - license = licenses.bsd2; - maintainers = with maintainers; [ piegames ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ piegames ]; }; } diff --git a/pkgs/development/python-modules/pycognito/default.nix b/pkgs/development/python-modules/pycognito/default.nix index 61441d6b1ccf..f18912ec597c 100644 --- a/pkgs/development/python-modules/pycognito/default.nix +++ b/pkgs/development/python-modules/pycognito/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycognito" ]; - meta = with lib; { + meta = { description = "Python class to integrate Boto3's Cognito client so it is easy to login users. With SRP support"; homepage = "https://github.com/pvizeli/pycognito"; changelog = "https://github.com/NabuCasa/pycognito/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/pycoin/default.nix b/pkgs/development/python-modules/pycoin/default.nix index f1dc2cbe8fd7..77e59ccad499 100644 --- a/pkgs/development/python-modules/pycoin/default.nix +++ b/pkgs/development/python-modules/pycoin/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { "test_tx_with_gpg" ]; - meta = with lib; { + meta = { description = "Utilities for Bitcoin and altcoin addresses and transaction manipulation"; homepage = "https://github.com/richardkiss/pycoin"; - license = licenses.mit; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/pycollada/default.nix b/pkgs/development/python-modules/pycollada/default.nix index 579164407367..0ba716114fa6 100644 --- a/pkgs/development/python-modules/pycollada/default.nix +++ b/pkgs/development/python-modules/pycollada/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "collada" ]; - meta = with lib; { + meta = { description = "Python library for reading and writing collada documents"; homepage = "http://pycollada.github.io/"; - license = licenses.bsd3; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.bsd3; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/pycomfoconnect/default.nix b/pkgs/development/python-modules/pycomfoconnect/default.nix index 605f4676b453..243391194bf0 100644 --- a/pkgs/development/python-modules/pycomfoconnect/default.nix +++ b/pkgs/development/python-modules/pycomfoconnect/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycomfoconnect" ]; - meta = with lib; { + meta = { description = "Python module to interact with ComfoAir Q350/450/600 units"; homepage = "https://github.com/michaelarnauts/comfoconnect"; changelog = "https://github.com/michaelarnauts/comfoconnect/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycomm3/default.nix b/pkgs/development/python-modules/pycomm3/default.nix index 6281802e3786..3b14843b68f3 100644 --- a/pkgs/development/python-modules/pycomm3/default.nix +++ b/pkgs/development/python-modules/pycomm3/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "tests/online/" ]; - meta = with lib; { + meta = { description = "Python Ethernet/IP library for communicating with Allen-Bradley PLCs"; homepage = "https://github.com/ottowayi/pycomm3"; changelog = "https://github.com/ottowayi/pycomm3/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycomposefile/default.nix b/pkgs/development/python-modules/pycomposefile/default.nix index f82c86315f93..7a6c3930907a 100644 --- a/pkgs/development/python-modules/pycomposefile/default.nix +++ b/pkgs/development/python-modules/pycomposefile/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycomposefile" ]; - meta = with lib; { + meta = { description = "Python library for structured deserialization of Docker Compose files"; homepage = "https://github.com/smurawski/pycomposefile"; changelog = "https://github.com/smurawski/pycomposefile/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ mdarocha ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mdarocha ]; }; } diff --git a/pkgs/development/python-modules/pycontrol4/default.nix b/pkgs/development/python-modules/pycontrol4/default.nix index 03aa785e4a85..df87584f4cec 100644 --- a/pkgs/development/python-modules/pycontrol4/default.nix +++ b/pkgs/development/python-modules/pycontrol4/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "pyControl4.light" ]; - meta = with lib; { + meta = { changelog = "https://github.com/lawtancool/pyControl4/releases/tag/v${version}"; description = "Python 3 asyncio package for interacting with Control4 systems"; homepage = "https://github.com/lawtancool/pyControl4"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pycookiecheat/default.nix b/pkgs/development/python-modules/pycookiecheat/default.nix index 4d89bd956541..d8f59d4f79eb 100644 --- a/pkgs/development/python-modules/pycookiecheat/default.nix +++ b/pkgs/development/python-modules/pycookiecheat/default.nix @@ -64,12 +64,12 @@ buildPythonPackage rec { ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_slack_config" ]; - meta = with lib; { + meta = { description = "Borrow cookies from your browser's authenticated session for use in Python scripts"; homepage = "https://github.com/n8henrie/pycookiecheat"; changelog = "https://github.com/n8henrie/pycookiecheat/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab n8henrie ]; diff --git a/pkgs/development/python-modules/pycotap/default.nix b/pkgs/development/python-modules/pycotap/default.nix index 7b730f20f0d4..1d8996336ad5 100644 --- a/pkgs/development/python-modules/pycotap/default.nix +++ b/pkgs/development/python-modules/pycotap/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { hash = "sha256-Z0NV8BMAvgPff4cXhOSYZSwtiawZzXfujmFlJjSi+Do="; }; - meta = with lib; { + meta = { description = "Test runner for unittest that outputs TAP results to stdout"; homepage = "https://el-tramo.be/pycotap"; - license = licenses.mit; - maintainers = with maintainers; [ mwolfe ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mwolfe ]; }; } diff --git a/pkgs/development/python-modules/pycrc/default.nix b/pkgs/development/python-modules/pycrc/default.nix index b1ec71c1f443..4cf0bda714aa 100644 --- a/pkgs/development/python-modules/pycrc/default.nix +++ b/pkgs/development/python-modules/pycrc/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { sha256 = "d3b0e788b501f48ae2ff6eeb34652343c9095e4356a65df217ed29b51e4045b6"; }; - meta = with lib; { + meta = { homepage = "https://github.com/cristianav/PyCRC"; description = "Python libraries for CRC calculations (it supports CRC-16, CRC-32, CRC-CCITT, etc)"; - license = licenses.gpl3; - maintainers = with maintainers; [ guibou ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ guibou ]; }; } diff --git a/pkgs/development/python-modules/pycritty/default.nix b/pkgs/development/python-modules/pycritty/default.nix index 770d7c3ca29a..31b971cec1e2 100644 --- a/pkgs/development/python-modules/pycritty/default.nix +++ b/pkgs/development/python-modules/pycritty/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycritty" ]; - meta = with lib; { + meta = { description = "CLI tool for changing your alacritty configuration on the fly"; mainProgram = "pycritty"; homepage = "https://github.com/antoniosarosi/pycritty"; - license = licenses.mit; - maintainers = with maintainers; [ jperras ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jperras ]; }; } diff --git a/pkgs/development/python-modules/pycron/default.nix b/pkgs/development/python-modules/pycron/default.nix index aaa931c0a9f9..a52e299b033a 100644 --- a/pkgs/development/python-modules/pycron/default.nix +++ b/pkgs/development/python-modules/pycron/default.nix @@ -41,9 +41,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycron" ]; - meta = with lib; { + meta = { description = "Simple cron-like parser for Python, which determines if current datetime matches conditions"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/kipe/pycron"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/pycryptodome/default.nix b/pkgs/development/python-modules/pycryptodome/default.nix index 5930ba1b8693..d35207c1feee 100644 --- a/pkgs/development/python-modules/pycryptodome/default.nix +++ b/pkgs/development/python-modules/pycryptodome/default.nix @@ -33,14 +33,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "Crypto" ]; - meta = with lib; { + meta = { description = "Self-contained cryptographic library"; homepage = "https://github.com/Legrandin/pycryptodome"; changelog = "https://github.com/Legrandin/pycryptodome/blob/${src.tag}/Changelog.rst"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 # and asl20 ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pycryptodome/vectors.nix b/pkgs/development/python-modules/pycryptodome/vectors.nix index 349738ee0b2a..745c83cca08c 100644 --- a/pkgs/development/python-modules/pycryptodome/vectors.nix +++ b/pkgs/development/python-modules/pycryptodome/vectors.nix @@ -23,13 +23,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycryptodome_test_vectors" ]; - meta = with lib; { + meta = { description = "Test vectors for PyCryptodome cryptographic library"; homepage = "https://www.pycryptodome.org/"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 # and asl20 ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyctr/default.nix b/pkgs/development/python-modules/pyctr/default.nix index e7450bb287b6..98328e8cdf19 100644 --- a/pkgs/development/python-modules/pyctr/default.nix +++ b/pkgs/development/python-modules/pyctr/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyctr" ]; - meta = with lib; { + meta = { description = "Python library to interact with Nintendo 3DS files"; homepage = "https://github.com/ihaveamac/pyctr"; changelog = "https://github.com/ihaveamac/pyctr/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pycuda/default.nix b/pkgs/development/python-modules/pycuda/default.nix index d1b096689302..14e0df82310b 100644 --- a/pkgs/development/python-modules/pycuda/default.nix +++ b/pkgs/development/python-modules/pycuda/default.nix @@ -72,10 +72,10 @@ buildPythonPackage rec { mako ]; - meta = with lib; { + meta = { homepage = "https://github.com/inducer/pycuda/"; description = "CUDA integration for Python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pycups/default.nix b/pkgs/development/python-modules/pycups/default.nix index 8a89193a64eb..178eddc96390 100644 --- a/pkgs/development/python-modules/pycups/default.nix +++ b/pkgs/development/python-modules/pycups/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { # Wants to connect to CUPS doCheck = false; - meta = with lib; { + meta = { description = "Python bindings for libcups"; homepage = "http://cyberelk.net/tim/software/pycups/"; - license = with licenses; [ gpl2Plus ]; + license = with lib.licenses; [ gpl2Plus ]; }; } diff --git a/pkgs/development/python-modules/pycurl/default.nix b/pkgs/development/python-modules/pycurl/default.nix index 224a3f9ebe6f..55c5face0b1e 100644 --- a/pkgs/development/python-modules/pycurl/default.nix +++ b/pkgs/development/python-modules/pycurl/default.nix @@ -115,7 +115,7 @@ buildPythonPackage rec { "https://github.com/pycurl/pycurl/blob/REL_" + replaceStrings [ "." ] [ "_" ] version + "/ChangeLog"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Only mit ]; diff --git a/pkgs/development/python-modules/pycycling/default.nix b/pkgs/development/python-modules/pycycling/default.nix index b324c923ebc0..706975af95ea 100644 --- a/pkgs/development/python-modules/pycycling/default.nix +++ b/pkgs/development/python-modules/pycycling/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ pname ]; - meta = with lib; { + meta = { description = "Package for interacting with Bluetooth Low Energy (BLE) compatible bike trainers, power meters, radars and heart rate monitors"; homepage = "https://github.com/zacharyedwardbull/pycycling"; changelog = "https://github.com/zacharyedwardbull/pycycling/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ viraptor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ viraptor ]; }; } diff --git a/pkgs/development/python-modules/pycyphal/default.nix b/pkgs/development/python-modules/pycyphal/default.nix index 32d68cf73ce8..c2c4cb48ff79 100644 --- a/pkgs/development/python-modules/pycyphal/default.nix +++ b/pkgs/development/python-modules/pycyphal/default.nix @@ -93,14 +93,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycyphal" ]; - meta = with lib; { + meta = { description = "Full-featured implementation of the Cyphal protocol stack in Python"; longDescription = '' Cyphal is an open technology for real-time intravehicular distributed computing and communication based on modern networking standards (Ethernet, CAN FD, etc.). ''; homepage = "https://opencyphal.org/"; changelog = "https://github.com/OpenCyphal/pycyphal/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - teams = [ teams.ororatech ]; + license = lib.licenses.mit; + teams = [ lib.teams.ororatech ]; }; } diff --git a/pkgs/development/python-modules/pydaikin/default.nix b/pkgs/development/python-modules/pydaikin/default.nix index 620b865768c3..d07399899db1 100644 --- a/pkgs/development/python-modules/pydaikin/default.nix +++ b/pkgs/development/python-modules/pydaikin/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydaikin" ]; - meta = with lib; { + meta = { description = "Python Daikin HVAC appliances interface"; homepage = "https://github.com/fredrike/pydaikin"; changelog = "https://github.com/fredrike/pydaikin/releases/tag/${src.tag}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pydaikin"; }; } diff --git a/pkgs/development/python-modules/pydal/default.nix b/pkgs/development/python-modules/pydal/default.nix index 3a628c151449..8a5a49b2b7b6 100644 --- a/pkgs/development/python-modules/pydal/default.nix +++ b/pkgs/development/python-modules/pydal/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydal" ]; - meta = with lib; { + meta = { description = "Python Database Abstraction Layer"; homepage = "https://github.com/web2py/pydal"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ wamserma ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ wamserma ]; }; } diff --git a/pkgs/development/python-modules/pydanfossair/default.nix b/pkgs/development/python-modules/pydanfossair/default.nix index d1f8ef9d645f..e788961a9414 100644 --- a/pkgs/development/python-modules/pydanfossair/default.nix +++ b/pkgs/development/python-modules/pydanfossair/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydanfossair" ]; - meta = with lib; { + meta = { description = "Python interface for Danfoss Air HRV systems"; homepage = "https://github.com/JonasPed/pydanfoss-air"; changelog = "https://github.com/JonasPed/pydanfoss-air/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydantic-core/default.nix b/pkgs/development/python-modules/pydantic-core/default.nix index 4f2e51111c90..27d6186d5e4d 100644 --- a/pkgs/development/python-modules/pydantic-core/default.nix +++ b/pkgs/development/python-modules/pydantic-core/default.nix @@ -73,11 +73,11 @@ let "tests/benchmarks" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pydantic/pydantic-core/releases/tag/v${version}"; description = "Core validation logic for pydantic written in rust"; homepage = "https://github.com/pydantic/pydantic-core"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = pydantic.meta.maintainers; }; }; diff --git a/pkgs/development/python-modules/pydantic-extra-types/default.nix b/pkgs/development/python-modules/pydantic-extra-types/default.nix index 7ca5fb4a06aa..bd3f62e8f928 100644 --- a/pkgs/development/python-modules/pydantic-extra-types/default.nix +++ b/pkgs/development/python-modules/pydantic-extra-types/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { # PermissionError accessing '/etc/localtime' disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ "tests/test_pendulum_dt.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pydantic/pydantic-extra-types/blob/${src.tag}/HISTORY.md"; description = "Extra Pydantic types"; homepage = "https://github.com/pydantic/pydantic-extra-types"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pydantic-scim/default.nix b/pkgs/development/python-modules/pydantic-scim/default.nix index 16282517f874..323ddb299bf1 100644 --- a/pkgs/development/python-modules/pydantic-scim/default.nix +++ b/pkgs/development/python-modules/pydantic-scim/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Pydantic types for SCIM"; homepage = "https://github.com/chalk-ai/pydantic-scim"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pydantic-settings/default.nix b/pkgs/development/python-modules/pydantic-settings/default.nix index cf0144cf7368..c36756564e9a 100644 --- a/pkgs/development/python-modules/pydantic-settings/default.nix +++ b/pkgs/development/python-modules/pydantic-settings/default.nix @@ -57,10 +57,10 @@ let pytest = self.overridePythonAttrs { doCheck = true; }; }; - meta = with lib; { + meta = { description = "Settings management using pydantic"; homepage = "https://github.com/pydantic/pydantic-settings"; - license = licenses.mit; + license = lib.licenses.mit; broken = lib.versionOlder pydantic.version "2.0.0"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/pydantic/default.nix b/pkgs/development/python-modules/pydantic/default.nix index ec6694213699..6cb1b950e923 100644 --- a/pkgs/development/python-modules/pydantic/default.nix +++ b/pkgs/development/python-modules/pydantic/default.nix @@ -87,11 +87,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydantic" ]; - meta = with lib; { + meta = { description = "Data validation and settings management using Python type hinting"; homepage = "https://github.com/pydantic/pydantic"; changelog = "https://github.com/pydantic/pydantic/blob/${src.tag}/HISTORY.md"; - license = licenses.mit; - maintainers = with maintainers; [ wd15 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wd15 ]; }; } diff --git a/pkgs/development/python-modules/pydash/default.nix b/pkgs/development/python-modules/pydash/default.nix index f722a6785e5c..c2b46f54c046 100644 --- a/pkgs/development/python-modules/pydash/default.nix +++ b/pkgs/development/python-modules/pydash/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { "tests/pytest_mypy_testing/" ]; - meta = with lib; { + meta = { description = "Python utility libraries for doing stuff in a functional way"; homepage = "https://pydash.readthedocs.io"; changelog = "https://github.com/dgilland/pydash/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pydata-google-auth/default.nix b/pkgs/development/python-modules/pydata-google-auth/default.nix index c0348b08ed43..fe95d6088f28 100644 --- a/pkgs/development/python-modules/pydata-google-auth/default.nix +++ b/pkgs/development/python-modules/pydata-google-auth/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydata_google_auth" ]; - meta = with lib; { + meta = { description = "Helpers for authenticating to Google APIs"; homepage = "https://github.com/pydata/pydata-google-auth"; changelog = "https://github.com/pydata/pydata-google-auth/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pydata-sphinx-theme/default.nix b/pkgs/development/python-modules/pydata-sphinx-theme/default.nix index beacd7d79138..55ef311bd4e3 100644 --- a/pkgs/development/python-modules/pydata-sphinx-theme/default.nix +++ b/pkgs/development/python-modules/pydata-sphinx-theme/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydata_sphinx_theme" ]; - meta = with lib; { + meta = { description = "Bootstrap-based Sphinx theme from the PyData community"; homepage = "https://github.com/pydata/pydata-sphinx-theme"; changelog = "https://github.com/pydata/pydata-sphinx-theme/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pydateinfer/default.nix b/pkgs/development/python-modules/pydateinfer/default.nix index 777e78efc9b1..565d1f1cbe21 100644 --- a/pkgs/development/python-modules/pydateinfer/default.nix +++ b/pkgs/development/python-modules/pydateinfer/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "dateinfer" ]; - meta = with lib; { + meta = { description = "Infers date format from examples"; homepage = "https://pypi.org/project/pydateinfer/"; - license = licenses.asl20; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/pydeck/default.nix b/pkgs/development/python-modules/pydeck/default.nix index 258d996d1283..df7835503133 100644 --- a/pkgs/development/python-modules/pydeck/default.nix +++ b/pkgs/development/python-modules/pydeck/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { # tries to start a jupyter server disabledTests = [ "test_nbconvert" ]; - meta = with lib; { + meta = { homepage = "https://github.com/visgl/deck.gl/tree/master/bindings/pydeck"; description = "Large-scale interactive data visualization in Python"; - maintainers = with maintainers; [ creator54 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ creator54 ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pydeconz/default.nix b/pkgs/development/python-modules/pydeconz/default.nix index 77f5962a4626..f0e2d04658cf 100644 --- a/pkgs/development/python-modules/pydeconz/default.nix +++ b/pkgs/development/python-modules/pydeconz/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydeconz" ]; - meta = with lib; { + meta = { description = "Python library wrapping the Deconz REST API"; homepage = "https://github.com/Kane610/deconz"; changelog = "https://github.com/Kane610/deconz/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pydeconz"; }; } diff --git a/pkgs/development/python-modules/pydelijn/default.nix b/pkgs/development/python-modules/pydelijn/default.nix index c64eef1c9a63..67b057bca13c 100644 --- a/pkgs/development/python-modules/pydelijn/default.nix +++ b/pkgs/development/python-modules/pydelijn/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydelijn" ]; - meta = with lib; { + meta = { description = "Python package to retrieve realtime data of passages at stops of De Lijn"; homepage = "https://github.com/bollewolle/pydelijn"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydenticon/default.nix b/pkgs/development/python-modules/pydenticon/default.nix index 91fd500cbaca..698a59f91227 100644 --- a/pkgs/development/python-modules/pydenticon/default.nix +++ b/pkgs/development/python-modules/pydenticon/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { mock ]; - meta = with lib; { + meta = { homepage = "https://github.com/azaghal/pydenticon"; description = "Library for generating identicons. Port of Sigil (https://github.com/cupcake/sigil) with enhancements"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/pydeps/default.nix b/pkgs/development/python-modules/pydeps/default.nix index f61739b09776..5c2e873a8ec6 100644 --- a/pkgs/development/python-modules/pydeps/default.nix +++ b/pkgs/development/python-modules/pydeps/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydeps" ]; - meta = with lib; { + meta = { description = "Python module dependency visualization"; homepage = "https://github.com/thebjorn/pydeps"; changelog = "https://github.com/thebjorn/pydeps/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pydeps"; }; } diff --git a/pkgs/development/python-modules/pydes/default.nix b/pkgs/development/python-modules/pydes/default.nix index 2b5fe8f78a34..4cfc1bb8da0e 100644 --- a/pkgs/development/python-modules/pydes/default.nix +++ b/pkgs/development/python-modules/pydes/default.nix @@ -23,10 +23,10 @@ buildPythonPackage { pythonImportsCheck = [ "pyDes" ]; - meta = with lib; { + meta = { description = "Pure python module which implements the DES and Triple-DES encryption algorithms"; homepage = "https://github.com/twhiteman/pyDes"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; }; } diff --git a/pkgs/development/python-modules/pydevtool/default.nix b/pkgs/development/python-modules/pydevtool/default.nix index de29d377379b..bd48cb936603 100644 --- a/pkgs/development/python-modules/pydevtool/default.nix +++ b/pkgs/development/python-modules/pydevtool/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydevtool" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pydoit/pydevtool"; description = "CLI dev tools powered by pydoit"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/pydexcom/default.nix b/pkgs/development/python-modules/pydexcom/default.nix index 97970c7bc923..da88fad14d0e 100644 --- a/pkgs/development/python-modules/pydexcom/default.nix +++ b/pkgs/development/python-modules/pydexcom/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydexcom" ]; - meta = with lib; { + meta = { description = "Python API to interact with Dexcom Share service"; homepage = "https://github.com/gagebenne/pydexcom"; changelog = "https://github.com/gagebenne/pydexcom/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydiscourse/default.nix b/pkgs/development/python-modules/pydiscourse/default.nix index b974af2b98e0..011fb3aee535 100644 --- a/pkgs/development/python-modules/pydiscourse/default.nix +++ b/pkgs/development/python-modules/pydiscourse/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydiscourse" ]; - meta = with lib; { + meta = { description = "Python library for working with Discourse"; mainProgram = "pydiscoursecli"; homepage = "https://github.com/pydiscourse/pydiscourse"; changelog = "https://github.com/pydiscourse/pydiscourse/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ Dettorer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Dettorer ]; }; } diff --git a/pkgs/development/python-modules/pydiscovergy/default.nix b/pkgs/development/python-modules/pydiscovergy/default.nix index 744bb5cd006b..eeda31a4a536 100644 --- a/pkgs/development/python-modules/pydiscovergy/default.nix +++ b/pkgs/development/python-modules/pydiscovergy/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydiscovergy" ]; - meta = with lib; { + meta = { description = "Library for interacting with the Discovergy API"; homepage = "https://github.com/jpbede/pydiscovergy"; changelog = "https://github.com/jpbede/pydiscovergy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydispatcher/default.nix b/pkgs/development/python-modules/pydispatcher/default.nix index 7094534c1563..a2380f659e16 100644 --- a/pkgs/development/python-modules/pydispatcher/default.nix +++ b/pkgs/development/python-modules/pydispatcher/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://pydispatcher.sourceforge.net/"; description = "Signal-registration and routing infrastructure for use in multiple contexts"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pydocstyle/default.nix b/pkgs/development/python-modules/pydocstyle/default.nix index 5fddd80b55e1..b6d1a5a4f073 100644 --- a/pkgs/development/python-modules/pydocstyle/default.nix +++ b/pkgs/development/python-modules/pydocstyle/default.nix @@ -50,12 +50,12 @@ buildPythonPackage rec { "src/tests/test_integration.py" # runs pip install ]; - meta = with lib; { + meta = { description = "Python docstring style checker"; mainProgram = "pydocstyle"; homepage = "https://github.com/PyCQA/pydocstyle"; changelog = "https://github.com/PyCQA/pydocstyle/blob/${version}/docs/release_notes.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dzabraev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dzabraev ]; }; } diff --git a/pkgs/development/python-modules/pydocumentdb/default.nix b/pkgs/development/python-modules/pydocumentdb/default.nix index d074f0a5feae..e6e20fb38033 100644 --- a/pkgs/development/python-modules/pydocumentdb/default.nix +++ b/pkgs/development/python-modules/pydocumentdb/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # requires an active Azure Cosmos service doCheck = false; - meta = with lib; { + meta = { description = "Azure Cosmos DB API"; homepage = "https://github.com/Azure/azure-cosmos-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pydoe/default.nix b/pkgs/development/python-modules/pydoe/default.nix index 04a943c4cb98..6b6e6192e87f 100644 --- a/pkgs/development/python-modules/pydoe/default.nix +++ b/pkgs/development/python-modules/pydoe/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyDOE" ]; - meta = with lib; { + meta = { description = "Design of experiments for Python"; homepage = "https://github.com/tisimst/pyDOE"; - license = licenses.bsd3; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/pydoods/default.nix b/pkgs/development/python-modules/pydoods/default.nix index e74d54245d18..cc98ea4147cc 100644 --- a/pkgs/development/python-modules/pydoods/default.nix +++ b/pkgs/development/python-modules/pydoods/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydoods" ]; - meta = with lib; { + meta = { description = "Python wrapper for the DOODS service"; homepage = "https://github.com/snowzach/pydoods"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydrawise/default.nix b/pkgs/development/python-modules/pydrawise/default.nix index eb4cde102950..87be70bd1ae9 100644 --- a/pkgs/development/python-modules/pydrawise/default.nix +++ b/pkgs/development/python-modules/pydrawise/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydrawise" ]; - meta = with lib; { + meta = { description = "Library for interacting with Hydrawise sprinkler controllers through the GraphQL API"; homepage = "https://github.com/dknowles2/pydrawise"; changelog = "https://github.com/dknowles2/pydrawise/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydrive2/default.nix b/pkgs/development/python-modules/pydrive2/default.nix index a03c4a2c51a3..95833bb924c2 100644 --- a/pkgs/development/python-modules/pydrive2/default.nix +++ b/pkgs/development/python-modules/pydrive2/default.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydrive2" ]; - meta = with lib; { + meta = { description = "Google Drive API Python wrapper library"; homepage = "https://github.com/iterative/PyDrive2"; changelog = "https://github.com/iterative/PyDrive2/releases/tag/${version}"; @@ -61,7 +61,7 @@ buildPythonPackage rec { # https://github.com/iterative/PyDrive2/issues/361 # TODO: re-enable it in `duplicity` when fixed broken = true; - license = licenses.asl20; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sei40kr ]; }; } diff --git a/pkgs/development/python-modules/pydroid-ipcam/default.nix b/pkgs/development/python-modules/pydroid-ipcam/default.nix index 6912c9355136..8f20cda2624b 100644 --- a/pkgs/development/python-modules/pydroid-ipcam/default.nix +++ b/pkgs/development/python-modules/pydroid-ipcam/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydroid_ipcam" ]; - meta = with lib; { + meta = { description = "Python library for Android IP Webcam"; homepage = "https://github.com/home-assistant-libs/pydroid-ipcam"; changelog = "https://github.com/home-assistant-libs/pydroid-ipcam/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydruid/default.nix b/pkgs/development/python-modules/pydruid/default.nix index b60ea009655d..38df1d4a3090 100644 --- a/pkgs/development/python-modules/pydruid/default.nix +++ b/pkgs/development/python-modules/pydruid/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { # druid has a `cli` extra, but it doesn't work with nixpkgs pygments }; - meta = with lib; { + meta = { description = "Simple API to create, execute, and analyze Druid queries"; homepage = "https://github.com/druid-io/pydruid"; - license = licenses.asl20; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pydsdl/default.nix b/pkgs/development/python-modules/pydsdl/default.nix index 3c44802e1cf8..097f1bd10f9a 100644 --- a/pkgs/development/python-modules/pydsdl/default.nix +++ b/pkgs/development/python-modules/pydsdl/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { enabledTestPaths = [ "pydsdl/_test.py" ]; - meta = with lib; { + meta = { description = "Library to process Cyphal DSDL"; longDescription = '' PyDSDL is a Cyphal DSDL compiler front-end implemented in Python. It accepts @@ -42,7 +42,7 @@ buildPythonPackage rec { implementation. ''; homepage = "https://pydsdl.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ wucke13 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wucke13 ]; }; } diff --git a/pkgs/development/python-modules/pydub/default.nix b/pkgs/development/python-modules/pydub/default.nix index c69f32832492..1d72b18fc8b3 100644 --- a/pkgs/development/python-modules/pydub/default.nix +++ b/pkgs/development/python-modules/pydub/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { enabledTestPaths = [ "test/test.py" ]; - meta = with lib; { + meta = { description = "Manipulate audio with a simple and easy high level interface"; homepage = "http://pydub.com"; changelog = "https://github.com/jiaaro/pydub/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyduke-energy/default.nix b/pkgs/development/python-modules/pyduke-energy/default.nix index bc747e6d2f77..df1e5bc91fc1 100644 --- a/pkgs/development/python-modules/pyduke-energy/default.nix +++ b/pkgs/development/python-modules/pyduke-energy/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyduke_energy" ]; - meta = with lib; { + meta = { description = "Python module for the Duke Energy API"; homepage = "https://github.com/mjmeli/pyduke-energy"; changelog = "https://github.com/mjmeli/pyduke-energy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyduotecno/default.nix b/pkgs/development/python-modules/pyduotecno/default.nix index fb0d34beeb13..cdaf5b338be9 100644 --- a/pkgs/development/python-modules/pyduotecno/default.nix +++ b/pkgs/development/python-modules/pyduotecno/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "duotecno" ]; - meta = with lib; { + meta = { description = "Module to interact with Duotecno IP interfaces"; homepage = "https://github.com/Cereal2nd/pyDuotecno"; changelog = "https://github.com/Cereal2nd/pyDuotecno/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pydyf/default.nix b/pkgs/development/python-modules/pydyf/default.nix index 8f9b12f17c0a..5546f99cada5 100644 --- a/pkgs/development/python-modules/pydyf/default.nix +++ b/pkgs/development/python-modules/pydyf/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydyf" ]; - meta = with lib; { + meta = { description = "Low-level PDF generator written in Python and based on PDF specification 1.7"; homepage = "https://doc.courtbouillon.org/pydyf/stable/"; changelog = "https://github.com/CourtBouillon/pydyf/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ rprecenth ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ rprecenth ]; }; } diff --git a/pkgs/development/python-modules/pyeapi/default.nix b/pkgs/development/python-modules/pyeapi/default.nix index 41c594d6f995..23583d58c19c 100644 --- a/pkgs/development/python-modules/pyeapi/default.nix +++ b/pkgs/development/python-modules/pyeapi/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyeapi" ]; - meta = with lib; { + meta = { description = "Client for Arista eAPI"; homepage = "https://github.com/arista-eosplus/pyeapi"; changelog = "https://github.com/arista-eosplus/pyeapi/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ astro ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ astro ]; }; } diff --git a/pkgs/development/python-modules/pyebus/default.nix b/pkgs/development/python-modules/pyebus/default.nix index 5376a546c9b0..92e388aaf335 100644 --- a/pkgs/development/python-modules/pyebus/default.nix +++ b/pkgs/development/python-modules/pyebus/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyebus" ]; - meta = with lib; { + meta = { description = "Pythonic Interface to EBUS Daemon (ebusd)"; homepage = "https://github.com/c0fec0de/pyebus"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyeclib/default.nix b/pkgs/development/python-modules/pyeclib/default.nix index 305508d37dc5..d6ac936cfcb9 100644 --- a/pkgs/development/python-modules/pyeclib/default.nix +++ b/pkgs/development/python-modules/pyeclib/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyeclib" ]; - meta = with lib; { + meta = { description = "This library provides a simple Python interface for implementing erasure codes"; homepage = "https://github.com/openstack/pyeclib"; - license = licenses.bsd2; - teams = [ teams.openstack ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/pyecoforest/default.nix b/pkgs/development/python-modules/pyecoforest/default.nix index 46625f351a13..b872f9cf3411 100644 --- a/pkgs/development/python-modules/pyecoforest/default.nix +++ b/pkgs/development/python-modules/pyecoforest/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyecoforest" ]; - meta = with lib; { + meta = { description = "Module for interacting with Ecoforest devices"; homepage = "https://github.com/pjanuario/pyecoforest"; changelog = "https://github.com/pjanuario/pyecoforest/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyecowitt/default.nix b/pkgs/development/python-modules/pyecowitt/default.nix index 23265992097b..a006eec998f5 100644 --- a/pkgs/development/python-modules/pyecowitt/default.nix +++ b/pkgs/development/python-modules/pyecowitt/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyecowitt" ]; - meta = with lib; { + meta = { description = "Python module for the EcoWitt Protocol"; homepage = "https://github.com/garbled1/pyecowitt"; changelog = "https://github.com/garbled1/pyecowitt/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyedimax/default.nix b/pkgs/development/python-modules/pyedimax/default.nix index dff8a0ffa899..2ce6209621d2 100644 --- a/pkgs/development/python-modules/pyedimax/default.nix +++ b/pkgs/development/python-modules/pyedimax/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyedimax" ]; - meta = with lib; { + meta = { description = "Python library for interfacing with the Edimax smart plugs"; homepage = "https://github.com/andreipop2005/pyedimax"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyee/default.nix b/pkgs/development/python-modules/pyee/default.nix index 34144038080b..8a61975606a9 100644 --- a/pkgs/development/python-modules/pyee/default.nix +++ b/pkgs/development/python-modules/pyee/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyee" ]; - meta = with lib; { + meta = { description = "Port of Node.js's EventEmitter to Python"; homepage = "https://github.com/jfhbrook/pyee"; - license = licenses.mit; - maintainers = with maintainers; [ kmein ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kmein ]; }; } diff --git a/pkgs/development/python-modules/pyefergy/default.nix b/pkgs/development/python-modules/pyefergy/default.nix index f9348b7f9427..61018ddadd02 100644 --- a/pkgs/development/python-modules/pyefergy/default.nix +++ b/pkgs/development/python-modules/pyefergy/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyefergy" ]; - meta = with lib; { + meta = { changelog = "https://github.com/tkdrob/pyefergy/releases/tag/v${version}"; description = "Python API library for Efergy energy meters"; homepage = "https://github.com/tkdrob/pyefergy"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyeight/default.nix b/pkgs/development/python-modules/pyeight/default.nix index 6ccc5f099e4c..84b77da53b2d 100644 --- a/pkgs/development/python-modules/pyeight/default.nix +++ b/pkgs/development/python-modules/pyeight/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyeight" ]; - meta = with lib; { + meta = { description = "Python library to interface with the Eight Sleep API"; homepage = "https://github.com/mezz64/pyEight"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyemby/default.nix b/pkgs/development/python-modules/pyemby/default.nix index 75edc0952049..2daf95e51f1b 100644 --- a/pkgs/development/python-modules/pyemby/default.nix +++ b/pkgs/development/python-modules/pyemby/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyemby" ]; - meta = with lib; { + meta = { description = "Python library to interface with the Emby API"; homepage = "https://github.com/mezz64/pyemby"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyemd/default.nix b/pkgs/development/python-modules/pyemd/default.nix index 4cff9a018ffc..d0f84659cbb3 100644 --- a/pkgs/development/python-modules/pyemd/default.nix +++ b/pkgs/development/python-modules/pyemd/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "test_emd_samples_3" ]; - meta = with lib; { + meta = { description = "Python wrapper for Ofir Pele and Michael Werman's implementation of the Earth Mover's Distance"; homepage = "https://github.com/wmayner/pyemd"; changelog = "https://github.com/wmayner/pyemd/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyemvue/default.nix b/pkgs/development/python-modules/pyemvue/default.nix index 8ad9c9ed046e..0e2fc5a05960 100644 --- a/pkgs/development/python-modules/pyemvue/default.nix +++ b/pkgs/development/python-modules/pyemvue/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/magico13/PyEmVue/releases/tag/v${version}"; description = "Python library for reading data from the Emporia Vue energy monitoring system"; homepage = "https://github.com/magico13/PyEmVue"; - license = licenses.mit; - maintainers = with maintainers; [ presto8 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ presto8 ]; }; } diff --git a/pkgs/development/python-modules/pyenchant/default.nix b/pkgs/development/python-modules/pyenchant/default.nix index a5c440beb9eb..6024528bb534 100644 --- a/pkgs/development/python-modules/pyenchant/default.nix +++ b/pkgs/development/python-modules/pyenchant/default.nix @@ -40,9 +40,9 @@ buildPythonPackage rec { # dictionaries needed for tests doCheck = false; - meta = with lib; { + meta = { description = "Python bindings for the Enchant spellchecker"; homepage = "https://github.com/pyenchant/pyenchant"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/python-modules/pyenphase/default.nix b/pkgs/development/python-modules/pyenphase/default.nix index fb5f5a41a1a9..0b7194910077 100644 --- a/pkgs/development/python-modules/pyenphase/default.nix +++ b/pkgs/development/python-modules/pyenphase/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyenphase" ]; - meta = with lib; { + meta = { description = "Library to control enphase envoy"; homepage = "https://github.com/pyenphase/pyenphase"; changelog = "https://github.com/pyenphase/pyenphase/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyenvisalink/default.nix b/pkgs/development/python-modules/pyenvisalink/default.nix index 1e2489afa191..396b4a6d9d51 100644 --- a/pkgs/development/python-modules/pyenvisalink/default.nix +++ b/pkgs/development/python-modules/pyenvisalink/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyenvisalink" ]; - meta = with lib; { + meta = { description = "Python interface for Envisalink 2DS/3 Alarm API"; homepage = "https://github.com/Cinntax/pyenvisalink"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyepsg/default.nix b/pkgs/development/python-modules/pyepsg/default.nix index 72a2463712dc..92d0ddb22550 100644 --- a/pkgs/development/python-modules/pyepsg/default.nix +++ b/pkgs/development/python-modules/pyepsg/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Simple Python interface to epsg.io"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; homepage = "https://pyepsg.readthedocs.io/en/latest/"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/pyerfa/default.nix b/pkgs/development/python-modules/pyerfa/default.nix index c3d9fed61bb3..0f3da6940a6d 100644 --- a/pkgs/development/python-modules/pyerfa/default.nix +++ b/pkgs/development/python-modules/pyerfa/default.nix @@ -51,7 +51,7 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "erfa" ]; - meta = with lib; { + meta = { description = "Python bindings for ERFA routines"; longDescription = '' PyERFA is the Python wrapper for the ERFA library (Essential Routines @@ -62,7 +62,7 @@ buildPythonPackage rec { array inputs. ''; homepage = "https://github.com/liberfa/pyerfa"; - license = licenses.bsd3; - maintainers = [ maintainers.rmcgibbo ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.rmcgibbo ]; }; } diff --git a/pkgs/development/python-modules/pyeverlights/default.nix b/pkgs/development/python-modules/pyeverlights/default.nix index 29fe46f12642..35448deeabcb 100644 --- a/pkgs/development/python-modules/pyeverlights/default.nix +++ b/pkgs/development/python-modules/pyeverlights/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyeverlights" ]; - meta = with lib; { + meta = { description = "Python module for interfacing with an EverLights control box"; homepage = "https://github.com/joncar/pyeverlights"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyevilgenius/default.nix b/pkgs/development/python-modules/pyevilgenius/default.nix index ebce3deac562..a32ef10f0de0 100644 --- a/pkgs/development/python-modules/pyevilgenius/default.nix +++ b/pkgs/development/python-modules/pyevilgenius/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyevilgenius" ]; - meta = with lib; { + meta = { description = "Python SDK to interact with Evil Genius Labs devices"; homepage = "https://github.com/home-assistant-libs/pyevilgenius"; changelog = "https://github.com/home-assistant-libs/pyevilgenius/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyevmasm/default.nix b/pkgs/development/python-modules/pyevmasm/default.nix index 0b26308b9796..3a2f66cb59f9 100644 --- a/pkgs/development/python-modules/pyevmasm/default.nix +++ b/pkgs/development/python-modules/pyevmasm/default.nix @@ -22,12 +22,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Ethereum Virtual Machine (EVM) assembler and disassembler"; mainProgram = "evmasm"; homepage = "https://github.com/crytic/pyevmasm"; changelog = "https://github.com/crytic/pyevmasm/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ arturcygan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arturcygan ]; }; } diff --git a/pkgs/development/python-modules/pyexploitdb/default.nix b/pkgs/development/python-modules/pyexploitdb/default.nix index 0dcc9fdd17f6..440d42f21942 100644 --- a/pkgs/development/python-modules/pyexploitdb/default.nix +++ b/pkgs/development/python-modules/pyexploitdb/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyexploitdb" ]; - meta = with lib; { + meta = { description = "Library to fetch the most recent exploit-database"; homepage = "https://github.com/Hackman238/pyExploitDb"; changelog = "https://github.com/Hackman238/pyExploitDb/blob/master/ChangeLog.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyface/default.nix b/pkgs/development/python-modules/pyface/default.nix index 4389c2e165b8..a4960e2f07b5 100644 --- a/pkgs/development/python-modules/pyface/default.nix +++ b/pkgs/development/python-modules/pyface/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyface" ]; - meta = with lib; { + meta = { description = "Traits-capable windowing framework"; homepage = "https://github.com/enthought/pyface"; changelog = "https://github.com/enthought/pyface/releases/tag/${version}"; maintainers = [ ]; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; }; } diff --git a/pkgs/development/python-modules/pyfakefs/default.nix b/pkgs/development/python-modules/pyfakefs/default.nix index 5dc6459b2eb8..8a300ad9a97c 100644 --- a/pkgs/development/python-modules/pyfakefs/default.nix +++ b/pkgs/development/python-modules/pyfakefs/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "test_rename_dir_to_existing_dir" ]); - meta = with lib; { + meta = { description = "Fake file system that mocks the Python file system modules"; homepage = "https://pyfakefs.org/"; changelog = "https://github.com/jmcgeheeiv/pyfakefs/blob/v${version}/CHANGES.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyfakewebcam/default.nix b/pkgs/development/python-modules/pyfakewebcam/default.nix index 681b06644ac5..c88a4e993e85 100644 --- a/pkgs/development/python-modules/pyfakewebcam/default.nix +++ b/pkgs/development/python-modules/pyfakewebcam/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyfakewebcam" ]; - meta = with lib; { + meta = { description = "Library for writing RGB frames to a fake webcam device on Linux"; homepage = "https://github.com/jremmons/pyfakewebcam"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pyfcm/default.nix b/pkgs/development/python-modules/pyfcm/default.nix index 3ab2ea6f350d..700dc4e722d8 100644 --- a/pkgs/development/python-modules/pyfcm/default.nix +++ b/pkgs/development/python-modules/pyfcm/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfcm" ]; - meta = with lib; { + meta = { description = "Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)"; homepage = "https://github.com/olucurious/pyfcm"; - license = licenses.mit; - maintainers = with maintainers; [ ldelelis ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ldelelis ]; }; } diff --git a/pkgs/development/python-modules/pyfibaro/default.nix b/pkgs/development/python-modules/pyfibaro/default.nix index fb83863dccdf..448b9a25006a 100644 --- a/pkgs/development/python-modules/pyfibaro/default.nix +++ b/pkgs/development/python-modules/pyfibaro/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfibaro" ]; - meta = with lib; { + meta = { description = "Library to access FIBARO Home center"; homepage = "https://github.com/rappenze/pyfibaro"; changelog = "https://github.com/rappenze/pyfibaro/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyfido/default.nix b/pkgs/development/python-modules/pyfido/default.nix index af48a9847301..017d3fd83d43 100644 --- a/pkgs/development/python-modules/pyfido/default.nix +++ b/pkgs/development/python-modules/pyfido/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyfido" ]; - meta = with lib; { + meta = { description = "Python client to get fido account data"; mainProgram = "pyfido"; homepage = "https://github.com/titilambert/pyfido"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyfiglet/default.nix b/pkgs/development/python-modules/pyfiglet/default.nix index 02dcc63c901d..5a738b0f939f 100644 --- a/pkgs/development/python-modules/pyfiglet/default.nix +++ b/pkgs/development/python-modules/pyfiglet/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "FIGlet in pure Python"; mainProgram = "pyfiglet"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/pyfireservicerota/default.nix b/pkgs/development/python-modules/pyfireservicerota/default.nix index f9f19b7680ee..98dbc50387df 100644 --- a/pkgs/development/python-modules/pyfireservicerota/default.nix +++ b/pkgs/development/python-modules/pyfireservicerota/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfireservicerota" ]; - meta = with lib; { + meta = { changelog = "https://github.com/cyberjunky/python-fireservicerota/releases/tag/${src.tag}"; description = "Python 3 API wrapper for FireServiceRota/BrandweerRooster"; homepage = "https://github.com/cyberjunky/python-fireservicerota"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyflexit/default.nix b/pkgs/development/python-modules/pyflexit/default.nix index 5ab6a9ef72d9..8db6a358941a 100644 --- a/pkgs/development/python-modules/pyflexit/default.nix +++ b/pkgs/development/python-modules/pyflexit/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyflexit" ]; - meta = with lib; { + meta = { description = "Python library for Flexit A/C units"; homepage = "https://github.com/Sabesto/pyflexit"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyflic/default.nix b/pkgs/development/python-modules/pyflic/default.nix index ebf469ff6b32..1b416ffa76e4 100644 --- a/pkgs/development/python-modules/pyflic/default.nix +++ b/pkgs/development/python-modules/pyflic/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyflic" ]; - meta = with lib; { + meta = { description = "Python module to interact with Flic buttons"; homepage = "https://github.com/soldag/pyflic"; - license = with licenses; [ cc0 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ cc0 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyfluidsynth/default.nix b/pkgs/development/python-modules/pyfluidsynth/default.nix index 5e915c911435..63ddd038cb9c 100644 --- a/pkgs/development/python-modules/pyfluidsynth/default.nix +++ b/pkgs/development/python-modules/pyfluidsynth/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fluidsynth" ]; - meta = with lib; { + meta = { description = "Python bindings for FluidSynth, a MIDI synthesizer that uses SoundFont instruments"; homepage = "https://github.com/nwhitehead/pyfluidsynth"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyflume/default.nix b/pkgs/development/python-modules/pyflume/default.nix index e3c1bfe56882..ad51e59c3366 100644 --- a/pkgs/development/python-modules/pyflume/default.nix +++ b/pkgs/development/python-modules/pyflume/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyflume" ]; - meta = with lib; { + meta = { description = "Python module to work with Flume sensors"; homepage = "https://github.com/ChrisMandich/PyFlume"; changelog = "https://github.com/ChrisMandich/PyFlume/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyfma/default.nix b/pkgs/development/python-modules/pyfma/default.nix index 926d03bf3743..975f7537f843 100644 --- a/pkgs/development/python-modules/pyfma/default.nix +++ b/pkgs/development/python-modules/pyfma/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfma" ]; - meta = with lib; { + meta = { description = "Fused multiply-add for Python"; homepage = "https://github.com/nschloe/pyfma"; changelog = "https://github.com/nschloe/pyfma/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyfnip/default.nix b/pkgs/development/python-modules/pyfnip/default.nix index d86c35104d6e..185567b1560e 100644 --- a/pkgs/development/python-modules/pyfnip/default.nix +++ b/pkgs/development/python-modules/pyfnip/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfnip" ]; - meta = with lib; { + meta = { description = "Python client to get fido account data"; homepage = "https://github.com/juhaniemi/pyfnip"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyforked-daapd/default.nix b/pkgs/development/python-modules/pyforked-daapd/default.nix index 472642cd43a2..e869c79399d0 100644 --- a/pkgs/development/python-modules/pyforked-daapd/default.nix +++ b/pkgs/development/python-modules/pyforked-daapd/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { # Tests require a running forked-daapd server doCheck = false; - meta = with lib; { + meta = { description = "Python interface for forked-daapd"; homepage = "https://github.com/uvjustin/pyforked-daapd"; changelog = "https://github.com/uvjustin/pyforked-daapd/blob/v${version}/CHANGES.txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyformlang/default.nix b/pkgs/development/python-modules/pyformlang/default.nix index cdff07c94e25..89c3bc095b05 100644 --- a/pkgs/development/python-modules/pyformlang/default.nix +++ b/pkgs/development/python-modules/pyformlang/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyformlang" ]; - meta = with lib; { + meta = { description = "Framework for formal grammars"; homepage = "https://github.com/Aunsiels/pyformlang"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/pyfreedompro/default.nix b/pkgs/development/python-modules/pyfreedompro/default.nix index bbb476654714..923c2a6ab750 100644 --- a/pkgs/development/python-modules/pyfreedompro/default.nix +++ b/pkgs/development/python-modules/pyfreedompro/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp" ]; - meta = with lib; { + meta = { description = "Python library for Freedompro API"; homepage = "https://github.com/stefano055415/pyfreedompro"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyfribidi/default.nix b/pkgs/development/python-modules/pyfribidi/default.nix index 59aef896beee..69e91b171cc2 100644 --- a/pkgs/development/python-modules/pyfribidi/default.nix +++ b/pkgs/development/python-modules/pyfribidi/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ six ]; - meta = with lib; { + meta = { description = "Simple wrapper around fribidi"; homepage = "https://github.com/pediapress/pyfribidi"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/pyfritzhome/default.nix b/pkgs/development/python-modules/pyfritzhome/default.nix index 5148f374dc32..1bdd490fcd5a 100644 --- a/pkgs/development/python-modules/pyfritzhome/default.nix +++ b/pkgs/development/python-modules/pyfritzhome/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfritzhome" ]; - meta = with lib; { + meta = { description = "Python Library to access AVM FRITZ!Box homeautomation"; mainProgram = "fritzhome"; homepage = "https://github.com/hthiery/python-fritzhome"; changelog = "https://github.com/hthiery/python-fritzhome/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyfronius/default.nix b/pkgs/development/python-modules/pyfronius/default.nix index 217edb838f02..811c79cbda75 100644 --- a/pkgs/development/python-modules/pyfronius/default.nix +++ b/pkgs/development/python-modules/pyfronius/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfronius" ]; - meta = with lib; { + meta = { description = "Python module to communicate with Fronius Symo"; homepage = "https://github.com/nielstron/pyfronius"; changelog = "https://github.com/nielstron/pyfronius/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyftdi/default.nix b/pkgs/development/python-modules/pyftdi/default.nix index c95c9fea7ffb..49d892273294 100644 --- a/pkgs/development/python-modules/pyftdi/default.nix +++ b/pkgs/development/python-modules/pyftdi/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyftdi" ]; - meta = with lib; { + meta = { description = "User-space driver for modern FTDI devices"; longDescription = '' PyFtdi aims at providing a user-space driver for popular FTDI devices. @@ -43,7 +43,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/eblot/pyftdi"; changelog = "https://github.com/eblot/pyftdi/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyftpdlib/default.nix b/pkgs/development/python-modules/pyftpdlib/default.nix index 00bbebf7ef2d..af39e5a9803a 100644 --- a/pkgs/development/python-modules/pyftpdlib/default.nix +++ b/pkgs/development/python-modules/pyftpdlib/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyftpdlib" ]; - meta = with lib; { + meta = { description = "Asynchronous FTP server library"; homepage = "https://github.com/giampaolo/pyftpdlib/"; changelog = "https://github.com/giampaolo/pyftpdlib/blob/release-${version}/HISTORY.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "ftpbench"; }; diff --git a/pkgs/development/python-modules/pyfttt/default.nix b/pkgs/development/python-modules/pyfttt/default.nix index f31759aedc75..aa0c93156fc2 100644 --- a/pkgs/development/python-modules/pyfttt/default.nix +++ b/pkgs/development/python-modules/pyfttt/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { # tests need a server to run against doCheck = false; - meta = with lib; { + meta = { description = "Package for sending events to the IFTTT Webhooks Channel"; mainProgram = "pyfttt"; homepage = "https://github.com/briandconnelly/pyfttt"; - maintainers = with maintainers; [ peterhoeg ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ peterhoeg ]; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/pyfume/default.nix b/pkgs/development/python-modules/pyfume/default.nix index e6649fb17153..b449e3c416e9 100644 --- a/pkgs/development/python-modules/pyfume/default.nix +++ b/pkgs/development/python-modules/pyfume/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfume" ]; - meta = with lib; { + meta = { description = "Python package for fuzzy model estimation"; homepage = "https://github.com/CaroFuchs/pyFUME"; changelog = "https://github.com/CaroFuchs/pyFUME/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyfuse3/default.nix b/pkgs/development/python-modules/pyfuse3/default.nix index 186b9fc3abb6..fe93736f6738 100644 --- a/pkgs/development/python-modules/pyfuse3/default.nix +++ b/pkgs/development/python-modules/pyfuse3/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { "pyfuse3_asyncio" ]; - meta = with lib; { + meta = { description = "Python 3 bindings for libfuse 3 with async I/O support"; homepage = "https://github.com/libfuse/pyfuse3"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ nyanloutre dotlambda ]; diff --git a/pkgs/development/python-modules/pyfxa/default.nix b/pkgs/development/python-modules/pyfxa/default.nix index 884340e0f2b9..680eae2640df 100644 --- a/pkgs/development/python-modules/pyfxa/default.nix +++ b/pkgs/development/python-modules/pyfxa/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "fxa/tests/test_oauth.py" ]; - meta = with lib; { + meta = { description = "Firefox Accounts client library"; mainProgram = "fxa-client"; homepage = "https://github.com/mozilla/PyFxA"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyfzf/default.nix b/pkgs/development/python-modules/pyfzf/default.nix index 28dec72e412c..a555bf33065f 100644 --- a/pkgs/development/python-modules/pyfzf/default.nix +++ b/pkgs/development/python-modules/pyfzf/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Wrapper for fzf"; homepage = "https://github.com/nk412/pyfzf"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pygal/default.nix b/pkgs/development/python-modules/pygal/default.nix index 9912c2131dd7..3d7786799a0c 100644 --- a/pkgs/development/python-modules/pygal/default.nix +++ b/pkgs/development/python-modules/pygal/default.nix @@ -65,12 +65,12 @@ buildPythonPackage rec { export LANG=${if stdenv.hostPlatform.isDarwin then "en_US.UTF-8" else "C.UTF-8"} ''; - meta = with lib; { + meta = { description = "Module for dynamic SVG charting"; homepage = "http://www.pygal.org"; changelog = "https://github.com/Kozea/pygal/blob/${version}/docs/changelog.rst"; downloadPage = "https://github.com/Kozea/pygal"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; mainProgram = "pygal_gen.py"; }; diff --git a/pkgs/development/python-modules/pygame-gui/default.nix b/pkgs/development/python-modules/pygame-gui/default.nix index 4aa759dd63db..ea2fd3040bfe 100644 --- a/pkgs/development/python-modules/pygame-gui/default.nix +++ b/pkgs/development/python-modules/pygame-gui/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { description = "GUI system for pygame"; homepage = "https://github.com/MyreMylar/pygame_gui"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ emilytrau pbsds ]; diff --git a/pkgs/development/python-modules/pygatt/default.nix b/pkgs/development/python-modules/pygatt/default.nix index 6e6ff7905a00..1311a1ffb72e 100644 --- a/pkgs/development/python-modules/pygatt/default.nix +++ b/pkgs/development/python-modules/pygatt/default.nix @@ -45,14 +45,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygatt" ]; - meta = with lib; { + meta = { description = "Python wrapper the BGAPI for accessing Bluetooth LE Devices"; homepage = "https://github.com/peplin/pygatt"; changelog = "https://github.com/peplin/pygatt/blob/v${version}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pygccxml/default.nix b/pkgs/development/python-modules/pygccxml/default.nix index fccceadcb4e4..a900b1e27e80 100644 --- a/pkgs/development/python-modules/pygccxml/default.nix +++ b/pkgs/development/python-modules/pygccxml/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # but the format doesn't accept -isystem directives doCheck = false; - meta = with lib; { + meta = { description = "Python package for easy C++ declarations navigation"; homepage = "https://github.com/gccxml/pygccxml"; changelog = "https://github.com/CastXML/pygccxml/blob/${src.tag}/CHANGELOG.md"; - license = licenses.boost; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/pygdbmi/default.nix b/pkgs/development/python-modules/pygdbmi/default.nix index 66fb880be525..b2ec99d38e46 100644 --- a/pkgs/development/python-modules/pygdbmi/default.nix +++ b/pkgs/development/python-modules/pygdbmi/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { echo "def main(): return 0" > tests/static_tests.py ''; - meta = with lib; { + meta = { description = "Parse gdb machine interface output with Python"; homepage = "https://github.com/cs01/pygdbmi"; - license = licenses.mit; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/python-modules/pygetwindow/default.nix b/pkgs/development/python-modules/pygetwindow/default.nix index ec4328b262f2..cccaf6629b9c 100644 --- a/pkgs/development/python-modules/pygetwindow/default.nix +++ b/pkgs/development/python-modules/pygetwindow/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ pyrect ]; - meta = with lib; { + meta = { description = "Simple, cross-platform module for obtaining GUI information on applications' windows"; homepage = "https://github.com/asweigart/PyGetWindow"; - license = licenses.bsd3; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/pygit2/default.nix b/pkgs/development/python-modules/pygit2/default.nix index 90202f90d407..d8db0834ec2e 100644 --- a/pkgs/development/python-modules/pygit2/default.nix +++ b/pkgs/development/python-modules/pygit2/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygit2" ]; - meta = with lib; { + meta = { description = "Set of Python bindings to the libgit2 shared library"; homepage = "https://github.com/libgit2/pygit2"; changelog = "https://github.com/libgit2/pygit2/blob/v${version}/CHANGELOG.md"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pygitguardian/default.nix b/pkgs/development/python-modules/pygitguardian/default.nix index 13064a6f9958..1817c6d8dbd5 100644 --- a/pkgs/development/python-modules/pygitguardian/default.nix +++ b/pkgs/development/python-modules/pygitguardian/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { env.GITGUARDIAN_API_KEY = "Test key for tests"; - meta = with lib; { + meta = { description = "Library to access the GitGuardian API"; homepage = "https://github.com/GitGuardian/py-gitguardian"; changelog = "https://github.com/GitGuardian/py-gitguardian/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pygithub/default.nix b/pkgs/development/python-modules/pygithub/default.nix index d99fca0cfb90..9aa671e38858 100644 --- a/pkgs/development/python-modules/pygithub/default.nix +++ b/pkgs/development/python-modules/pygithub/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "github" ]; - meta = with lib; { + meta = { description = "Python library to access the GitHub API v3"; homepage = "https://github.com/PyGithub/PyGithub"; changelog = "https://github.com/PyGithub/PyGithub/raw/${src.tag}/doc/changes.rst"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyglm/default.nix b/pkgs/development/python-modules/pyglm/default.nix index 2d8cb9742d35..1f0169022ce6 100644 --- a/pkgs/development/python-modules/pyglm/default.nix +++ b/pkgs/development/python-modules/pyglm/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { "glm" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Zuzu-Typ/PyGLM"; description = "OpenGL Mathematics (GLM) library for Python written in C++"; changelog = "https://github.com/Zuzu-Typ/PyGLM/releases/tag/${src.tag}"; - license = licenses.zlib; - maintainers = with maintainers; [ sund3RRR ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ sund3RRR ]; }; } diff --git a/pkgs/development/python-modules/pygltflib/default.nix b/pkgs/development/python-modules/pygltflib/default.nix index 42bb8a9d9ed7..7b299b9851ec 100644 --- a/pkgs/development/python-modules/pygltflib/default.nix +++ b/pkgs/development/python-modules/pygltflib/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygltflib" ]; - meta = with lib; { + meta = { description = "Module for reading and writing basic glTF files"; homepage = "https://gitlab.com/dodgyville/pygltflib"; changelog = "https://gitlab.com/dodgyville/pygltflib/-/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pygmars/default.nix b/pkgs/development/python-modules/pygmars/default.nix index a160af59a6a9..98a01fd0922f 100644 --- a/pkgs/development/python-modules/pygmars/default.nix +++ b/pkgs/development/python-modules/pygmars/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygmars" ]; - meta = with lib; { + meta = { description = "Python lexing and parsing library"; homepage = "https://github.com/nexB/pygmars"; changelog = "https://github.com/aboutcode-org/pygmars/blob/${src.tag}/CHANGELOG.rst"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pygments-markdown-lexer/default.nix b/pkgs/development/python-modules/pygments-markdown-lexer/default.nix index dd454bc4e807..451e120d3eba 100644 --- a/pkgs/development/python-modules/pygments-markdown-lexer/default.nix +++ b/pkgs/development/python-modules/pygments-markdown-lexer/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/jhermann/pygments-markdown-lexer"; description = "Pygments Markdown Lexer – A Markdown lexer for Pygments to highlight Markdown code snippets"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pygments-style-github/default.nix b/pkgs/development/python-modules/pygments-style-github/default.nix index bf3134645202..6e311d49f09a 100644 --- a/pkgs/development/python-modules/pygments-style-github/default.nix +++ b/pkgs/development/python-modules/pygments-style-github/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygments_style_github" ]; - meta = with lib; { + meta = { description = "Port of the github color scheme for pygments"; homepage = "https://github.com/hugomaiavieira/pygments-style-github"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pygmo/default.nix b/pkgs/development/python-modules/pygmo/default.nix index ab25b1093e99..3f42f2e7e7b3 100644 --- a/pkgs/development/python-modules/pygmo/default.nix +++ b/pkgs/development/python-modules/pygmo/default.nix @@ -52,10 +52,10 @@ toPythonModule ( doCheck = true; - meta = with lib; { + meta = { description = "Parallel optimisation for Python"; homepage = "https://github.com/esa/pygmo2"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pygnmi/default.nix b/pkgs/development/python-modules/pygnmi/default.nix index d47cc165ebd7..40fac9322cda 100644 --- a/pkgs/development/python-modules/pygnmi/default.nix +++ b/pkgs/development/python-modules/pygnmi/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygnmi" ]; - meta = with lib; { + meta = { description = "Pure Python gNMI client to manage network functions and collect telemetry"; mainProgram = "pygnmicli"; homepage = "https://github.com/akarneliuk/pygnmi"; changelog = "https://github.com/akarneliuk/pygnmi/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pygobject-stubs/default.nix b/pkgs/development/python-modules/pygobject-stubs/default.nix index 6a500c1c14a7..937991178bac 100644 --- a/pkgs/development/python-modules/pygobject-stubs/default.nix +++ b/pkgs/development/python-modules/pygobject-stubs/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { # This package does not include any tests. doCheck = false; - meta = with lib; { + meta = { description = "PEP 561 Typing Stubs for PyGObject"; homepage = "https://github.com/pygobject/pygobject-stubs"; changelog = "https://github.com/pygobject/pygobject-stubs/blob/${src.tag}/CHANGELOG.md"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ hacker1024 ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ hacker1024 ]; }; } diff --git a/pkgs/development/python-modules/pygobject/3.nix b/pkgs/development/python-modules/pygobject/3.nix index c058a77b461a..34876d02e283 100644 --- a/pkgs/development/python-modules/pygobject/3.nix +++ b/pkgs/development/python-modules/pygobject/3.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { homepage = "https://pygobject.readthedocs.io/"; description = "Python bindings for Glib"; - license = licenses.lgpl21Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pygpgme/default.nix b/pkgs/development/python-modules/pygpgme/default.nix index a39bc08458ab..0b3e07ee068c 100644 --- a/pkgs/development/python-modules/pygpgme/default.nix +++ b/pkgs/development/python-modules/pygpgme/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ gpgme ]; - meta = with lib; { + meta = { homepage = "https://launchpad.net/pygpgme"; description = "Python wrapper for the GPGME library"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pygraphviz/default.nix b/pkgs/development/python-modules/pygraphviz/default.nix index f0a218a7883c..af20eee7b97c 100644 --- a/pkgs/development/python-modules/pygraphviz/default.nix +++ b/pkgs/development/python-modules/pygraphviz/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygraphviz" ]; - meta = with lib; { + meta = { description = "Python interface to Graphviz graph drawing package"; homepage = "https://github.com/pygraphviz/pygraphviz"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ matthiasbeyer dotlambda ]; diff --git a/pkgs/development/python-modules/pygrok/default.nix b/pkgs/development/python-modules/pygrok/default.nix index 3313a921808d..13e2428c3f35 100644 --- a/pkgs/development/python-modules/pygrok/default.nix +++ b/pkgs/development/python-modules/pygrok/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { - maintainers = with maintainers; [ winpat ]; + meta = { + maintainers = with lib.maintainers; [ winpat ]; description = "Python implementation of jordansissel's grok regular expression library"; homepage = "https://github.com/garyelephant/pygrok"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pygtail/default.nix b/pkgs/development/python-modules/pygtail/default.nix index 8ef39af5c314..7cc002c9c2f3 100644 --- a/pkgs/development/python-modules/pygtail/default.nix +++ b/pkgs/development/python-modules/pygtail/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Library for reading log file lines that have not been read"; mainProgram = "pygtail"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/bgreenlee/pygtail"; }; } diff --git a/pkgs/development/python-modules/pygtfs/default.nix b/pkgs/development/python-modules/pygtfs/default.nix index af9474ac35a6..c6d2d246f4c8 100644 --- a/pkgs/development/python-modules/pygtfs/default.nix +++ b/pkgs/development/python-modules/pygtfs/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygtfs" ]; - meta = with lib; { + meta = { description = "Python module for GTFS"; mainProgram = "gtfs2db"; homepage = "https://github.com/jarondl/pygtfs"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pygtkspellcheck/default.nix b/pkgs/development/python-modules/pygtkspellcheck/default.nix index f392f53a8c1a..d995220fb8bc 100644 --- a/pkgs/development/python-modules/pygtkspellcheck/default.nix +++ b/pkgs/development/python-modules/pygtkspellcheck/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gtkspellcheck" ]; - meta = with lib; { + meta = { homepage = "https://github.com/koehlma/pygtkspellcheck"; description = "Python spell-checking library for GtkTextViews based on Enchant"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyhamcrest/default.nix b/pkgs/development/python-modules/pyhamcrest/default.nix index 698906b19fc5..701b6dc3a7fd 100644 --- a/pkgs/development/python-modules/pyhamcrest/default.nix +++ b/pkgs/development/python-modules/pyhamcrest/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hamcrest" ]; - meta = with lib; { + meta = { description = "Hamcrest framework for matcher objects"; homepage = "https://github.com/hamcrest/PyHamcrest"; - license = licenses.bsd3; - maintainers = with maintainers; [ alunduil ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ alunduil ]; }; } diff --git a/pkgs/development/python-modules/pyhanko-certvalidator/default.nix b/pkgs/development/python-modules/pyhanko-certvalidator/default.nix index 0a7d6dcbd759..5b3fa22460d1 100644 --- a/pkgs/development/python-modules/pyhanko-certvalidator/default.nix +++ b/pkgs/development/python-modules/pyhanko-certvalidator/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { description = "Python library for validating X.509 certificates and paths"; homepage = "https://github.com/MatthiasValvekens/pyHanko/tree/master/pkgs/pyhanko-certvalidator"; changelog = "https://github.com/MatthiasValvekens/pyhanko/blob/pyhanko-certvalidator/${src.tag}/docs/changelog.rst#pyhanko-certvalidator"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.antonmosich ]; }; } diff --git a/pkgs/development/python-modules/pyhaversion/default.nix b/pkgs/development/python-modules/pyhaversion/default.nix index 30f9f71a453f..d1ce96f3749e 100644 --- a/pkgs/development/python-modules/pyhaversion/default.nix +++ b/pkgs/development/python-modules/pyhaversion/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "test_etag" ]; - meta = with lib; { + meta = { description = "Python module to the newest version number of Home Assistant"; homepage = "https://github.com/ludeeus/pyhaversion"; changelog = "https://github.com/ludeeus/pyhaversion/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ makefu ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/pyhcl/default.nix b/pkgs/development/python-modules/pyhcl/default.nix index 101e639cbde7..8801e2dbae25 100644 --- a/pkgs/development/python-modules/pyhcl/default.nix +++ b/pkgs/development/python-modules/pyhcl/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "HCL is a configuration language. pyhcl is a python parser for it"; mainProgram = "hcltool"; homepage = "https://github.com/virtuald/pyhcl"; - license = licenses.mpl20; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pyheck/default.nix b/pkgs/development/python-modules/pyheck/default.nix index 42a6c024ab8f..bea52b9a6fd0 100644 --- a/pkgs/development/python-modules/pyheck/default.nix +++ b/pkgs/development/python-modules/pyheck/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyheck" ]; - meta = with lib; { + meta = { description = "Python bindings for heck, the Rust case conversion library"; homepage = "https://github.com/kevinheavey/pyheck"; changelog = "https://github.com/kevinheavey/pyheck/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyhepmc/default.nix b/pkgs/development/python-modules/pyhepmc/default.nix index 287b4b9fbc4d..5950abc2509a 100644 --- a/pkgs/development/python-modules/pyhepmc/default.nix +++ b/pkgs/development/python-modules/pyhepmc/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyhepmc" ]; - meta = with lib; { + meta = { description = "Easy-to-use Python bindings for HepMC3"; homepage = "https://github.com/scikit-hep/pyhepmc"; changelog = "https://github.com/scikit-hep/pyhepmc/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/pyhocon/default.nix b/pkgs/development/python-modules/pyhocon/default.nix index 1962d5101ee9..82d09a1d97ee 100644 --- a/pkgs/development/python-modules/pyhocon/default.nix +++ b/pkgs/development/python-modules/pyhocon/default.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { "test_include_dict" ]; - meta = with lib; { + meta = { description = "HOCON parser for Python"; mainProgram = "pyhocon"; homepage = "https://github.com/chimpler/pyhocon/"; @@ -61,7 +61,7 @@ buildPythonPackage rec { A HOCON parser for Python. It additionally provides a tool (pyhocon) to convert any HOCON content into JSON, YAML and properties format. ''; - license = licenses.asl20; - maintainers = with maintainers; [ chreekat ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ chreekat ]; }; } diff --git a/pkgs/development/python-modules/pyhomematic/default.nix b/pkgs/development/python-modules/pyhomematic/default.nix index a6cd5f14e724..69587f74d738 100644 --- a/pkgs/development/python-modules/pyhomematic/default.nix +++ b/pkgs/development/python-modules/pyhomematic/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyhomematic" ]; - meta = with lib; { + meta = { description = "Python 3 Interface to interact with Homematic devices"; homepage = "https://github.com/danielperna84/pyhomematic"; changelog = "https://github.com/danielperna84/pyhomematic/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyhomepilot/default.nix b/pkgs/development/python-modules/pyhomepilot/default.nix index a51e73c4109c..6a99eec1ffce 100644 --- a/pkgs/development/python-modules/pyhomepilot/default.nix +++ b/pkgs/development/python-modules/pyhomepilot/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyhomepilot" ]; - meta = with lib; { + meta = { description = "Python module to communicate with the Rademacher HomePilot API"; homepage = "https://github.com/nico0302/pyhomepilot"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyhomeworks/default.nix b/pkgs/development/python-modules/pyhomeworks/default.nix index 48726ee97260..0efe5afe0e82 100644 --- a/pkgs/development/python-modules/pyhomeworks/default.nix +++ b/pkgs/development/python-modules/pyhomeworks/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyhomeworks" ]; - meta = with lib; { + meta = { description = "Python interface to Lutron Homeworks Series 4/8"; homepage = "https://github.com/dubnom/pyhomeworks"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyhumps/default.nix b/pkgs/development/python-modules/pyhumps/default.nix index e5f36fe22d9d..6c149d7600b6 100644 --- a/pkgs/development/python-modules/pyhumps/default.nix +++ b/pkgs/development/python-modules/pyhumps/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "humps" ]; - meta = with lib; { + meta = { description = "Module to convert strings (and dictionary keys) between snake case, camel case and pascal case"; homepage = "https://github.com/nficano/humps"; - license = with licenses; [ unlicense ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ unlicense ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyi2cflash/default.nix b/pkgs/development/python-modules/pyi2cflash/default.nix index a0b47a94cecb..ef37ccb1e917 100644 --- a/pkgs/development/python-modules/pyi2cflash/default.nix +++ b/pkgs/development/python-modules/pyi2cflash/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "i2cflash" ]; - meta = with lib; { + meta = { description = "I2C eeprom device drivers in Python"; homepage = "https://github.com/eblot/pyi2cflash"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyialarm/default.nix b/pkgs/development/python-modules/pyialarm/default.nix index bb52bb4b8c56..a9ef6442df31 100644 --- a/pkgs/development/python-modules/pyialarm/default.nix +++ b/pkgs/development/python-modules/pyialarm/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyialarm" ]; - meta = with lib; { + meta = { description = "Python library to interface with Antifurto365 iAlarm systems"; homepage = "https://github.com/RyuzakiKK/pyialarm"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyicloud/default.nix b/pkgs/development/python-modules/pyicloud/default.nix index 30d349a1dfbf..e5b3c20e46ea 100644 --- a/pkgs/development/python-modules/pyicloud/default.nix +++ b/pkgs/development/python-modules/pyicloud/default.nix @@ -59,12 +59,12 @@ buildPythonPackage rec { "test_storage" ]; - meta = with lib; { + meta = { description = "Module to interact with iCloud webservices"; mainProgram = "icloud"; homepage = "https://github.com/timlaing/pyicloud"; changelog = "https://github.com/timlaing/pyicloud/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/python-modules/pyicu/default.nix b/pkgs/development/python-modules/pyicu/default.nix index e419f43c7a00..0c9b8dfd18d6 100644 --- a/pkgs/development/python-modules/pyicu/default.nix +++ b/pkgs/development/python-modules/pyicu/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "icu" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.pyicu.org/main/pyicu"; description = "Python extension wrapping the ICU C++ API"; changelog = "https://gitlab.pyicu.org/main/pyicu/-/raw/v${version}/CHANGES"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pyicumessageformat/default.nix b/pkgs/development/python-modules/pyicumessageformat/default.nix index f37cee1ad919..145bb15682b5 100644 --- a/pkgs/development/python-modules/pyicumessageformat/default.nix +++ b/pkgs/development/python-modules/pyicumessageformat/default.nix @@ -21,13 +21,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyicumessageformat" ]; - meta = with lib; { + meta = { description = "Unopinionated Python3 parser for ICU MessageFormat"; homepage = "https://github.com/SirStendec/pyicumessageformat/"; # Based on master, as upstream doesn't tag their releases on GitHub anymore changelog = "https://github.com/SirStendec/pyicumessageformat/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/pyimpfuzzy/default.nix b/pkgs/development/python-modules/pyimpfuzzy/default.nix index 469fa542aa87..9cc07e89c3ae 100644 --- a/pkgs/development/python-modules/pyimpfuzzy/default.nix +++ b/pkgs/development/python-modules/pyimpfuzzy/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyimpfuzzy" ]; - meta = with lib; { + meta = { description = "Python module which calculates and compares the impfuzzy (import fuzzy hashing)"; homepage = "https://github.com/JPCERTCC/impfuzzy"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyindego/default.nix b/pkgs/development/python-modules/pyindego/default.nix index 6f01b4391935..d3a082afc811 100644 --- a/pkgs/development/python-modules/pyindego/default.nix +++ b/pkgs/development/python-modules/pyindego/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyIndego" ]; - meta = with lib; { + meta = { description = "Python interface for Bosch API for lawnmowers"; homepage = "https://github.com/sander1988/pyIndego"; changelog = "https://github.com/sander1988/pyIndego/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyinfra/default.nix b/pkgs/development/python-modules/pyinfra/default.nix index 7276fa1f1b47..a5581bbabc7b 100644 --- a/pkgs/development/python-modules/pyinfra/default.nix +++ b/pkgs/development/python-modules/pyinfra/default.nix @@ -58,7 +58,7 @@ buildPythonPackage rec { "test_load_ssh_config" ]; - meta = with lib; { + meta = { description = "Python-based infrastructure automation"; longDescription = '' pyinfra automates/provisions/manages/deploys infrastructure. It can be used for @@ -67,8 +67,8 @@ buildPythonPackage rec { homepage = "https://pyinfra.com"; downloadPage = "https://pyinfra.com/Fizzadar/pyinfra/releases"; changelog = "https://github.com/Fizzadar/pyinfra/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ totoroot ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ totoroot ]; mainProgram = "pyinfra"; }; } diff --git a/pkgs/development/python-modules/pyinotify/default.nix b/pkgs/development/python-modules/pyinotify/default.nix index 8232ab456719..427bd8a1ba34 100644 --- a/pkgs/development/python-modules/pyinotify/default.nix +++ b/pkgs/development/python-modules/pyinotify/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyinotify" ]; - meta = with lib; { + meta = { homepage = "https://github.com/seb-m/pyinotify/wiki"; description = "Monitor filesystems events on Linux platforms with inotify"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pyinputevent/default.nix b/pkgs/development/python-modules/pyinputevent/default.nix index a0e85755b8e7..c3d226a416c0 100644 --- a/pkgs/development/python-modules/pyinputevent/default.nix +++ b/pkgs/development/python-modules/pyinputevent/default.nix @@ -16,10 +16,10 @@ buildPythonPackage { sha256 = "0rkis0xp8f9jc00x7jb9kbvhdla24z1vl30djqa6wy6fx0cr6sib"; }; - meta = with lib; { + meta = { homepage = "https://github.com/ntzrmtthihu777/pyinputevent"; description = "Python interface to the Input Subsystem's input_event and uinput"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pyinsteon/default.nix b/pkgs/development/python-modules/pyinsteon/default.nix index 0f8d7b89614c..38bab408d31e 100644 --- a/pkgs/development/python-modules/pyinsteon/default.nix +++ b/pkgs/development/python-modules/pyinsteon/default.nix @@ -59,7 +59,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyinsteon" ]; - meta = with lib; { + meta = { description = "Python library to support Insteon home automation projects"; longDescription = '' This is a Python package to interface with an Insteon Modem. It has been @@ -68,8 +68,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/pyinsteon/pyinsteon"; changelog = "https://github.com/pyinsteon/pyinsteon/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "insteon_tools"; }; } diff --git a/pkgs/development/python-modules/pyinstrument/default.nix b/pkgs/development/python-modules/pyinstrument/default.nix index 6fe81eaf35b5..7e457dae25ee 100644 --- a/pkgs/development/python-modules/pyinstrument/default.nix +++ b/pkgs/development/python-modules/pyinstrument/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyinstrument" ]; - meta = with lib; { + meta = { description = "Call stack profiler for Python"; mainProgram = "pyinstrument"; homepage = "https://github.com/joerick/pyinstrument"; changelog = "https://github.com/joerick/pyinstrument/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/pyintesishome/default.nix b/pkgs/development/python-modules/pyintesishome/default.nix index 83053ad7fff6..5e26f530c723 100644 --- a/pkgs/development/python-modules/pyintesishome/default.nix +++ b/pkgs/development/python-modules/pyintesishome/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyintesishome" ]; - meta = with lib; { + meta = { description = "Python interface for IntesisHome devices"; homepage = "https://github.com/jnimmo/pyIntesisHome"; changelog = "https://github.com/jnimmo/pyIntesisHome/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyipma/default.nix b/pkgs/development/python-modules/pyipma/default.nix index 61d777e99be2..407e80d4710b 100644 --- a/pkgs/development/python-modules/pyipma/default.nix +++ b/pkgs/development/python-modules/pyipma/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { "tests/test_sea_forecast.py" ]; - meta = with lib; { + meta = { description = "Library to retrieve information from Instituto Português do Mar e Atmosfera"; homepage = "https://github.com/dgomes/pyipma"; changelog = "https://github.com/dgomes/pyipma/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyipp/default.nix b/pkgs/development/python-modules/pyipp/default.nix index eb339091d020..a9779e5d4898 100644 --- a/pkgs/development/python-modules/pyipp/default.nix +++ b/pkgs/development/python-modules/pyipp/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyipp" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ctalkington/python-ipp/releases/tag/${version}"; description = "Asynchronous Python client for Internet Printing Protocol (IPP)"; homepage = "https://github.com/ctalkington/python-ipp"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyipv8/default.nix b/pkgs/development/python-modules/pyipv8/default.nix index 5465c546cbad..b9f12bf7e439 100644 --- a/pkgs/development/python-modules/pyipv8/default.nix +++ b/pkgs/development/python-modules/pyipv8/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python implementation of Tribler's IPv8 p2p-networking layer"; homepage = "https://github.com/Tribler/py-ipv8"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/development/python-modules/pyiqvia/default.nix b/pkgs/development/python-modules/pyiqvia/default.nix index e10b0e5e3491..170eb01ba286 100644 --- a/pkgs/development/python-modules/pyiqvia/default.nix +++ b/pkgs/development/python-modules/pyiqvia/default.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyiqvia" ]; - meta = with lib; { + meta = { description = "Module for working with IQVIA data"; longDescription = '' pyiqvia is an async-focused Python library for allergen, asthma, and @@ -62,7 +62,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/bachya/pyiqvia"; changelog = "https://github.com/bachya/pyiqvia/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyisbn/default.nix b/pkgs/development/python-modules/pyisbn/default.nix index fc4b9973c2dd..2879467e6d98 100644 --- a/pkgs/development/python-modules/pyisbn/default.nix +++ b/pkgs/development/python-modules/pyisbn/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyisbn" ]; - meta = with lib; { + meta = { description = "Python module for working with 10- and 13-digit ISBNs"; homepage = "https://github.com/JNRowe/pyisbn"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ eigengrau ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ eigengrau ]; }; } diff --git a/pkgs/development/python-modules/pyisemail/default.nix b/pkgs/development/python-modules/pyisemail/default.nix index 5c0b37f06a77..aa6db627175a 100644 --- a/pkgs/development/python-modules/pyisemail/default.nix +++ b/pkgs/development/python-modules/pyisemail/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyisemail" ]; - meta = with lib; { + meta = { description = "Module for email validation"; homepage = "https://github.com/michaelherold/pyIsEmail"; changelog = "https://github.com/michaelherold/pyIsEmail/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyisy/default.nix b/pkgs/development/python-modules/pyisy/default.nix index 297fbb1b5cb9..fd9db5d14d68 100644 --- a/pkgs/development/python-modules/pyisy/default.nix +++ b/pkgs/development/python-modules/pyisy/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyisy" ]; - meta = with lib; { + meta = { description = "Python module to talk to ISY994 from UDI"; homepage = "https://github.com/automicus/PyISY"; changelog = "https://github.com/automicus/PyISY/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyixapi/default.nix b/pkgs/development/python-modules/pyixapi/default.nix index 46db024222b1..82107ff174c7 100644 --- a/pkgs/development/python-modules/pyixapi/default.nix +++ b/pkgs/development/python-modules/pyixapi/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyixapi" ]; - meta = with lib; { + meta = { description = "Python API client library for IX-API"; homepage = "https://github.com/peering-manager/pyixapi/"; changelog = "https://github.com/peering-manager/pyixapi/releases/tag/${src.tag}"; - license = licenses.asl20; - teams = [ teams.wdz ]; + license = lib.licenses.asl20; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/pyjnius/default.nix b/pkgs/development/python-modules/pyjnius/default.nix index f119e0d38d51..8d4a6b7864c5 100644 --- a/pkgs/development/python-modules/pyjnius/default.nix +++ b/pkgs/development/python-modules/pyjnius/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jnius" ]; - meta = with lib; { + meta = { description = "Python module to access Java classes as Python classes using the Java Native Interface (JNI)"; homepage = "https://github.com/kivy/pyjnius"; changelog = "https://github.com/kivy/pyjnius/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ ifurther ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ifurther ]; }; } diff --git a/pkgs/development/python-modules/pyjson5/default.nix b/pkgs/development/python-modules/pyjson5/default.nix index 0ad91ceedf48..9366b0c5ff66 100644 --- a/pkgs/development/python-modules/pyjson5/default.nix +++ b/pkgs/development/python-modules/pyjson5/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyjson5" ]; - meta = with lib; { + meta = { description = "JSON5 serializer and parser library"; homepage = "https://github.com/Kijewski/pyjson5"; changelog = "https://github.com/Kijewski/pyjson5/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyjsparser/default.nix b/pkgs/development/python-modules/pyjsparser/default.nix index 6f288964d9f7..33bc7970b6e8 100644 --- a/pkgs/development/python-modules/pyjsparser/default.nix +++ b/pkgs/development/python-modules/pyjsparser/default.nix @@ -27,11 +27,11 @@ let pythonImportsCheck = [ "pyjsparser" ]; - meta = with lib; { + meta = { description = "Fast javascript parser (based on esprima.js)"; homepage = "https://github.com/PiotrDabkowski/pyjsparser"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; }; in diff --git a/pkgs/development/python-modules/pyjwt/default.nix b/pkgs/development/python-modules/pyjwt/default.nix index ce6e51b99bbe..2337feddb5f9 100644 --- a/pkgs/development/python-modules/pyjwt/default.nix +++ b/pkgs/development/python-modules/pyjwt/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { inherit oauthlib; }; - meta = with lib; { + meta = { changelog = "https://github.com/jpadilla/pyjwt/blob/${version}/CHANGELOG.rst"; description = "JSON Web Token implementation in Python"; homepage = "https://github.com/jpadilla/pyjwt"; - license = licenses.mit; - maintainers = with maintainers; [ prikhi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prikhi ]; }; } diff --git a/pkgs/development/python-modules/pykakasi/default.nix b/pkgs/development/python-modules/pykakasi/default.nix index f81ba52312a9..06ae3949b626 100644 --- a/pkgs/development/python-modules/pykakasi/default.nix +++ b/pkgs/development/python-modules/pykakasi/default.nix @@ -50,12 +50,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykakasi" ]; - meta = with lib; { + meta = { description = "Python converter for Japanese Kana-kanji sentences into Kana-Roman"; homepage = "https://codeberg.org/miurahr/pykakasi"; changelog = "https://codeberg.org/miurahr/pykakasi/src/tag/v${version}/CHANGELOG.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "kakasi"; }; } diff --git a/pkgs/development/python-modules/pykaleidescape/default.nix b/pkgs/development/python-modules/pykaleidescape/default.nix index 64b495fe92f8..b8d26ee2a909 100644 --- a/pkgs/development/python-modules/pykaleidescape/default.nix +++ b/pkgs/development/python-modules/pykaleidescape/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "test_concurrency" ]; - meta = with lib; { + meta = { description = "Module for controlling Kaleidescape devices"; homepage = "https://github.com/SteveEasley/pykaleidescape"; changelog = "https://github.com/SteveEasley/pykaleidescape/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pykalman/default.nix b/pkgs/development/python-modules/pykalman/default.nix index 3e5e91022ad3..5d829a2aee26 100644 --- a/pkgs/development/python-modules/pykalman/default.nix +++ b/pkgs/development/python-modules/pykalman/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pykalman" ]; - meta = with lib; { + meta = { description = "Implementation of the Kalman Filter, Kalman Smoother, and EM algorithm in Python"; homepage = "https://github.com/pykalman/pykalman"; - license = licenses.bsd2; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/pykcs11/default.nix b/pkgs/development/python-modules/pykcs11/default.nix index 7edb41e9dcab..51a54bdee1d4 100644 --- a/pkgs/development/python-modules/pykcs11/default.nix +++ b/pkgs/development/python-modules/pykcs11/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pytest = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = "PKCS#11 wrapper for Python"; homepage = "https://github.com/LudovicRousseau/PyKCS11"; changelog = "https://github.com/LudovicRousseau/PyKCS11/releases/tag/${version}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ hulr ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ hulr ]; }; } diff --git a/pkgs/development/python-modules/pykdl/default.nix b/pkgs/development/python-modules/pykdl/default.nix index 49409e6bb131..9777739e2a33 100644 --- a/pkgs/development/python-modules/pykdl/default.nix +++ b/pkgs/development/python-modules/pykdl/default.nix @@ -34,12 +34,12 @@ toPythonModule ( cmakeFlags = [ "-DPYTHON_EXECUTABLE=${lib.getExe python.pythonOnBuildForHost}" ]; - meta = with lib; { + meta = { description = "Kinematics and Dynamics Library (Python bindings)"; homepage = "https://www.orocos.org/kdl.html"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ lopsided98 ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ lopsided98 ]; + platforms = lib.platforms.all; }; } ) diff --git a/pkgs/development/python-modules/pykdtree/default.nix b/pkgs/development/python-modules/pykdtree/default.nix index 8577a695af11..14778ef7279f 100644 --- a/pkgs/development/python-modules/pykdtree/default.nix +++ b/pkgs/development/python-modules/pykdtree/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "kd-tree implementation for fast nearest neighbour search in Python"; homepage = "https://github.com/storpipfugl/pykdtree"; - license = licenses.lgpl3; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/pykeepass/default.nix b/pkgs/development/python-modules/pykeepass/default.nix index 90eef8f57267..8de93163936f 100644 --- a/pkgs/development/python-modules/pykeepass/default.nix +++ b/pkgs/development/python-modules/pykeepass/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykeepass" ]; - meta = with lib; { + meta = { homepage = "https://github.com/libkeepass/pykeepass"; changelog = "https://github.com/libkeepass/pykeepass/blob/${src.rev}/CHANGELOG.rst"; description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pykerberos/default.nix b/pkgs/development/python-modules/pykerberos/default.nix index e70c6b87e30c..a164699f9163 100644 --- a/pkgs/development/python-modules/pykerberos/default.nix +++ b/pkgs/development/python-modules/pykerberos/default.nix @@ -24,8 +24,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "kerberos" ]; - meta = with lib; { + meta = { description = "High-level interface to Kerberos"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pykeyatome/default.nix b/pkgs/development/python-modules/pykeyatome/default.nix index 5b7a1b888da7..61e7b63fbe10 100644 --- a/pkgs/development/python-modules/pykeyatome/default.nix +++ b/pkgs/development/python-modules/pykeyatome/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykeyatome" ]; - meta = with lib; { + meta = { description = "Python module to get data from Atome Key"; mainProgram = "pykeyatome"; homepage = "https://github.com/jugla/pyKeyAtome"; changelog = "https://github.com/jugla/pyKeyAtome/releases/tag/V${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pykira/default.nix b/pkgs/development/python-modules/pykira/default.nix index a23d3b695f6e..885dfdacf49b 100644 --- a/pkgs/development/python-modules/pykira/default.nix +++ b/pkgs/development/python-modules/pykira/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykira" ]; - meta = with lib; { + meta = { description = "Python module to interact with Kira modules"; homepage = "https://github.com/stu-gott/pykira"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pykka/default.nix b/pkgs/development/python-modules/pykka/default.nix index 313303716046..9fb2949c5dce 100644 --- a/pkgs/development/python-modules/pykka/default.nix +++ b/pkgs/development/python-modules/pykka/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykka" ]; - meta = with lib; { + meta = { homepage = "https://www.pykka.org/"; description = "Python implementation of the actor model"; changelog = "https://github.com/jodal/pykka/releases/tag/${src.tag}"; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pykmtronic/default.nix b/pkgs/development/python-modules/pykmtronic/default.nix index 5f2b4b4cbe11..adc16ed59cd9 100644 --- a/pkgs/development/python-modules/pykmtronic/default.nix +++ b/pkgs/development/python-modules/pykmtronic/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pykmtronic" ]; - meta = with lib; { + meta = { description = "Python client to interface with KM-Tronic web relays"; homepage = "https://github.com/dgomes/pykmtronic"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pykodi/default.nix b/pkgs/development/python-modules/pykodi/default.nix index f4f52879d7fe..17e04de1a73e 100644 --- a/pkgs/development/python-modules/pykodi/default.nix +++ b/pkgs/development/python-modules/pykodi/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykodi" ]; - meta = with lib; { + meta = { description = "Async python interface for Kodi over JSON-RPC"; homepage = "https://github.com/OnFreund/PyKodi"; - license = licenses.mit; - maintainers = with maintainers; [ sephalon ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephalon ]; }; } diff --git a/pkgs/development/python-modules/pykoplenti/default.nix b/pkgs/development/python-modules/pykoplenti/default.nix index 27c0e68a97a8..632225fd7c4e 100644 --- a/pkgs/development/python-modules/pykoplenti/default.nix +++ b/pkgs/development/python-modules/pykoplenti/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykoplenti" ]; - meta = with lib; { + meta = { description = "Python REST client API for Kostal Plenticore Inverters"; mainProgram = "pykoplenti"; homepage = "https://github.com/stegm/pykoplenti/"; changelog = "https://github.com/stegm/pykoplenti/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pykostalpiko/default.nix b/pkgs/development/python-modules/pykostalpiko/default.nix index a6d19032f6f1..4d2c5de3e0fa 100644 --- a/pkgs/development/python-modules/pykostalpiko/default.nix +++ b/pkgs/development/python-modules/pykostalpiko/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykostalpiko" ]; - meta = with lib; { + meta = { description = "Library and CLI-tool to fetch the data from a Kostal Piko inverter"; homepage = "https://github.com/Florian7843/pykostalpiko"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pykrakenapi/default.nix b/pkgs/development/python-modules/pykrakenapi/default.nix index 55cdaf71b4bb..1530fca1a595 100644 --- a/pkgs/development/python-modules/pykrakenapi/default.nix +++ b/pkgs/development/python-modules/pykrakenapi/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykrakenapi" ]; - meta = with lib; { + meta = { description = "Python implementation of the Kraken API"; homepage = "https://github.com/dominiktraxl/pykrakenapi"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pykulersky/default.nix b/pkgs/development/python-modules/pykulersky/default.nix index 1a543582d2af..f587245b2cc7 100644 --- a/pkgs/development/python-modules/pykulersky/default.nix +++ b/pkgs/development/python-modules/pykulersky/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykulersky" ]; - meta = with lib; { + meta = { description = "Python module to control Brightech Kuler Sky Bluetooth LED devices"; mainProgram = "pykulersky"; homepage = "https://github.com/emlove/pykulersky"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pykwalify/default.nix b/pkgs/development/python-modules/pykwalify/default.nix index bf1b69d8b68b..40c8a9639229 100644 --- a/pkgs/development/python-modules/pykwalify/default.nix +++ b/pkgs/development/python-modules/pykwalify/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykwalify" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Grokzen/pykwalify"; description = "YAML/JSON validation library"; mainProgram = "pykwalify"; @@ -62,7 +62,7 @@ buildPythonPackage rec { The schema this library is based on and extended from: http://www.kuwata-lab.com/kwalify/ruby/users-guide.01.html#schema ''; - license = licenses.mit; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/pykwb/default.nix b/pkgs/development/python-modules/pykwb/default.nix index 8ff7ab1f68ff..75e94d12a2ff 100644 --- a/pkgs/development/python-modules/pykwb/default.nix +++ b/pkgs/development/python-modules/pykwb/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pykwb" ]; - meta = with lib; { + meta = { description = "Library for interacting with KWB Easyfire Pellet Central Heating Units"; homepage = "https://github.com/bimbar/pykwb"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylacrosse/default.nix b/pkgs/development/python-modules/pylacrosse/default.nix index 46d3bb8bee03..96177d14e52d 100644 --- a/pkgs/development/python-modules/pylacrosse/default.nix +++ b/pkgs/development/python-modules/pylacrosse/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylacrosse" ]; - meta = with lib; { + meta = { description = "Python library for Jeelink LaCrosse"; mainProgram = "pylacrosse"; homepage = "https://github.com/hthiery/python-lacrosse"; - license = with licenses; [ lgpl2Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl2Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylacus/default.nix b/pkgs/development/python-modules/pylacus/default.nix index 83574f60f011..f4829a1b8642 100644 --- a/pkgs/development/python-modules/pylacus/default.nix +++ b/pkgs/development/python-modules/pylacus/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylacus" ]; - meta = with lib; { + meta = { description = "Module to enqueue and query a remote Lacus instance"; homepage = "https://github.com/ail-project/PyLacus"; changelog = "https://github.com/ail-project/PyLacus/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylama/default.nix b/pkgs/development/python-modules/pylama/default.nix index fb256d2e8b49..ed1a787eb7a1 100644 --- a/pkgs/development/python-modules/pylama/default.nix +++ b/pkgs/development/python-modules/pylama/default.nix @@ -72,13 +72,13 @@ let }); }; - meta = with lib; { + meta = { description = "Code audit tool for python"; mainProgram = "pylama"; homepage = "https://github.com/klen/pylama"; changelog = "https://github.com/klen/pylama/blob/${version}/Changelog"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; }; in diff --git a/pkgs/development/python-modules/pylamarzocco/default.nix b/pkgs/development/python-modules/pylamarzocco/default.nix index 2e0beff8327d..5248c037ca02 100644 --- a/pkgs/development/python-modules/pylamarzocco/default.nix +++ b/pkgs/development/python-modules/pylamarzocco/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylamarzocco" ]; - meta = with lib; { + meta = { description = "Library to interface with La Marzocco's cloud"; homepage = "https://github.com/zweckj/pylamarzocco"; changelog = "https://github.com/zweckj/pylamarzocco/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylast/default.nix b/pkgs/development/python-modules/pylast/default.nix index 239a20e05a88..3b7d191450f9 100644 --- a/pkgs/development/python-modules/pylast/default.nix +++ b/pkgs/development/python-modules/pylast/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylast" ]; - meta = with lib; { + meta = { description = "Python interface to last.fm (and compatibles)"; homepage = "https://github.com/pylast/pylast"; changelog = "https://github.com/pylast/pylast/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab rvolosatovs ]; diff --git a/pkgs/development/python-modules/pylatex/default.nix b/pkgs/development/python-modules/pylatex/default.nix index ecd6adf3cdd2..a869ef860616 100644 --- a/pkgs/development/python-modules/pylatex/default.nix +++ b/pkgs/development/python-modules/pylatex/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { (texlive.combine { inherit (texlive) scheme-small lastpage collection-fontsrecommended; }) ]; - meta = with lib; { + meta = { description = "Python library for creating LaTeX files and snippets"; homepage = "https://jeltef.github.io/PyLaTeX/current/"; downloadPage = "https://github.com/JelteF/PyLaTeX/releases"; changelog = "https://jeltef.github.io/PyLaTeX/current/changelog.html"; - license = licenses.mit; - maintainers = with maintainers; [ MayNiklas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MayNiklas ]; }; } diff --git a/pkgs/development/python-modules/pylatexenc/default.nix b/pkgs/development/python-modules/pylatexenc/default.nix index 61dded2a3b6e..d07b43412db3 100644 --- a/pkgs/development/python-modules/pylatexenc/default.nix +++ b/pkgs/development/python-modules/pylatexenc/default.nix @@ -20,12 +20,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylatexenc" ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conversion"; homepage = "https://pylatexenc.readthedocs.io"; downloadPage = "https://www.github.com/phfaist/pylatexenc/releases"; changelog = "https://pylatexenc.readthedocs.io/en/latest/changes/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pylaunches/default.nix b/pkgs/development/python-modules/pylaunches/default.nix index 869c4410c8a6..cac5fd54914c 100644 --- a/pkgs/development/python-modules/pylaunches/default.nix +++ b/pkgs/development/python-modules/pylaunches/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylaunches" ]; - meta = with lib; { + meta = { description = "Python module to get information about upcoming space launches"; homepage = "https://github.com/ludeeus/pylaunches"; changelog = "https://github.com/ludeeus/pylaunches/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyld/default.nix b/pkgs/development/python-modules/pyld/default.nix index d9ebdadcb2e7..b57aa91ba5aa 100644 --- a/pkgs/development/python-modules/pyld/default.nix +++ b/pkgs/development/python-modules/pyld/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { ${python.interpreter} tests/runtests.py -d ${normalization}/tests ''; - meta = with lib; { + meta = { description = "Python implementation of the JSON-LD API"; homepage = "https://github.com/digitalbazaar/pyld"; - license = licenses.bsd3; - maintainers = with maintainers; [ apeschar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ apeschar ]; }; } diff --git a/pkgs/development/python-modules/pyldavis/default.nix b/pkgs/development/python-modules/pyldavis/default.nix index d9fe6d3c0dd8..4a85519730fa 100644 --- a/pkgs/development/python-modules/pyldavis/default.nix +++ b/pkgs/development/python-modules/pyldavis/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "pyLDAvis.gensim_models" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bmabey/pyLDAvis"; description = "Python library for interactive topic model visualization"; - license = licenses.bsd3; - sourceProvenance = with sourceTypes; [ fromSource ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/pylddwrap/default.nix b/pkgs/development/python-modules/pylddwrap/default.nix index f4b4ea8ff7a5..4705c46c2d5e 100644 --- a/pkgs/development/python-modules/pylddwrap/default.nix +++ b/pkgs/development/python-modules/pylddwrap/default.nix @@ -53,15 +53,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "lddwrap" ]; - meta = with lib; { + meta = { description = "Python wrapper around ldd *nix utility to determine shared libraries of a program"; mainProgram = "pylddwrap"; homepage = "https://github.com/Parquery/pylddwrap"; changelog = "https://github.com/Parquery/pylddwrap/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ thiagokokada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thiagokokada ]; # should work in any Unix platform that uses glibc, except for darwin # since it has its own tool (`otool`) - badPlatforms = platforms.darwin; + badPlatforms = lib.platforms.darwin; }; } diff --git a/pkgs/development/python-modules/pyleri/default.nix b/pkgs/development/python-modules/pyleri/default.nix index f1f5368be5b2..5984d7b8b9e8 100644 --- a/pkgs/development/python-modules/pyleri/default.nix +++ b/pkgs/development/python-modules/pyleri/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyleri" ]; - meta = with lib; { + meta = { description = "Module to parse SiriDB"; homepage = "https://github.com/cesbit/pyleri"; changelog = "https://github.com/cesbit/pyleri/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylev/default.nix b/pkgs/development/python-modules/pylev/default.nix index 30831a8c5727..de7a3fb6509e 100644 --- a/pkgs/development/python-modules/pylev/default.nix +++ b/pkgs/development/python-modules/pylev/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylev" ]; - meta = with lib; { + meta = { description = "Python Levenshtein implementation"; homepage = "https://github.com/toastdriven/pylev"; - license = licenses.bsd3; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/pylgnetcast/default.nix b/pkgs/development/python-modules/pylgnetcast/default.nix index 0a7bb8dab9fa..bf20f3d99c16 100644 --- a/pkgs/development/python-modules/pylgnetcast/default.nix +++ b/pkgs/development/python-modules/pylgnetcast/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylgnetcast" ]; - meta = with lib; { + meta = { description = "Python API client for the LG Smart TV running NetCast 3 or 4"; homepage = "https://github.com/Drafteed/python-lgnetcast"; changelog = "https://github.com/Drafteed/python-lgnetcast/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylibconfig2/default.nix b/pkgs/development/python-modules/pylibconfig2/default.nix index 608bb4da583f..2765a890d0ad 100644 --- a/pkgs/development/python-modules/pylibconfig2/default.nix +++ b/pkgs/development/python-modules/pylibconfig2/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ pyparsing ]; - meta = with lib; { + meta = { homepage = "https://github.com/heinzK1X/pylibconfig2"; description = "Pure python library for libconfig syntax"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/pylibdmtx/default.nix b/pkgs/development/python-modules/pylibdmtx/default.nix index 93bcd8b2f53a..3db1993888b1 100644 --- a/pkgs/development/python-modules/pylibdmtx/default.nix +++ b/pkgs/development/python-modules/pylibdmtx/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylibdmtx" ]; - meta = with lib; { + meta = { description = "Read and write Data Matrix barcodes from Python 2 and 3 using the libdmtx library"; homepage = "https://github.com/NaturalHistoryMuseum/pylibdmtx/"; - license = licenses.mit; - maintainers = with maintainers; [ grahamc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ grahamc ]; }; } diff --git a/pkgs/development/python-modules/pylibftdi/default.nix b/pkgs/development/python-modules/pylibftdi/default.nix index 359af2a577d8..beea239311d2 100644 --- a/pkgs/development/python-modules/pylibftdi/default.nix +++ b/pkgs/development/python-modules/pylibftdi/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylibftdi" ]; - meta = with lib; { + meta = { description = "Wrapper to Intra2net's libftdi driver for FTDI's USB devices"; homepage = "https://pylibftdi.readthedocs.io/"; changelog = "https://github.com/codedstructure/pylibftdi/blob/${version}/CHANGES.txt"; - license = licenses.mit; - maintainers = with maintainers; [ matthuszagh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthuszagh ]; }; } diff --git a/pkgs/development/python-modules/pylibjpeg/default.nix b/pkgs/development/python-modules/pylibjpeg/default.nix index bfe43ba55035..9ddc3e9d7a7d 100644 --- a/pkgs/development/python-modules/pylibjpeg/default.nix +++ b/pkgs/development/python-modules/pylibjpeg/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylibjpeg" ]; - meta = with lib; { + meta = { description = "Python framework for decoding JPEG images, with a focus on supporting Pydicom"; homepage = "https://github.com/pydicom/pylibjpeg"; changelog = "https://github.com/pydicom/pylibjpeg/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pylibmc/default.nix b/pkgs/development/python-modules/pylibmc/default.nix index e5730dfeb614..fc321a83b8aa 100644 --- a/pkgs/development/python-modules/pylibmc/default.nix +++ b/pkgs/development/python-modules/pylibmc/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylibmc" ]; - meta = with lib; { + meta = { description = "Quick and small memcached client for Python"; homepage = "http://sendapatch.se/projects/pylibmc/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pylint-celery/default.nix b/pkgs/development/python-modules/pylint-celery/default.nix index 97a78f24ee07..a111e8312592 100644 --- a/pkgs/development/python-modules/pylint-celery/default.nix +++ b/pkgs/development/python-modules/pylint-celery/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # Testing requires a very old version of pylint, incompatible with other dependencies doCheck = false; - meta = with lib; { + meta = { description = "Pylint plugin to analyze Celery applications"; homepage = "https://github.com/PyCQA/pylint-celery"; - license = licenses.gpl2; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pylint-django/default.nix b/pkgs/development/python-modules/pylint-django/default.nix index 01aa04f0817a..1612eec39791 100644 --- a/pkgs/development/python-modules/pylint-django/default.nix +++ b/pkgs/development/python-modules/pylint-django/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylint_django" ]; - meta = with lib; { + meta = { description = "Pylint plugin to analyze Django applications"; homepage = "https://github.com/PyCQA/pylint-django"; changelog = "https://github.com/pylint-dev/pylint-django/releases/tag/v${version}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pylint-flask/default.nix b/pkgs/development/python-modules/pylint-flask/default.nix index 375d1e175774..6feea260ac07 100644 --- a/pkgs/development/python-modules/pylint-flask/default.nix +++ b/pkgs/development/python-modules/pylint-flask/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylint_flask" ]; - meta = with lib; { + meta = { description = "Pylint plugin to analyze Flask applications"; homepage = "https://github.com/jschaf/pylint-flask"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pylint-plugin-utils/default.nix b/pkgs/development/python-modules/pylint-plugin-utils/default.nix index 5e925fe57e58..193107897659 100644 --- a/pkgs/development/python-modules/pylint-plugin-utils/default.nix +++ b/pkgs/development/python-modules/pylint-plugin-utils/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylint_plugin_utils" ]; - meta = with lib; { + meta = { description = "Utilities and helpers for writing Pylint plugins"; homepage = "https://github.com/PyCQA/pylint-plugin-utils"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pylint-venv/default.nix b/pkgs/development/python-modules/pylint-venv/default.nix index dae8550ad418..57eace8aa9a2 100644 --- a/pkgs/development/python-modules/pylint-venv/default.nix +++ b/pkgs/development/python-modules/pylint-venv/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylint_venv" ]; - meta = with lib; { + meta = { description = "Module to make pylint respect virtual environments"; homepage = "https://github.com/jgosmann/pylint-venv/"; changelog = "https://github.com/jgosmann/pylint-venv/blob/v${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylion/default.nix b/pkgs/development/python-modules/pylion/default.nix index 92d6823ffe6d..f93a6078a364 100644 --- a/pkgs/development/python-modules/pylion/default.nix +++ b/pkgs/development/python-modules/pylion/default.nix @@ -47,10 +47,10 @@ buildPythonPackage { cp -r examples $out/share/doc/$name/examples ''; - meta = with lib; { + meta = { description = "LAMMPS wrapper for molecular dynamics simulations of trapped ions"; homepage = "https://bitbucket.org/dtrypogeorgos/pylion"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/pylnk3/default.nix b/pkgs/development/python-modules/pylnk3/default.nix index e4aa915fb9c5..c03c22f61676 100644 --- a/pkgs/development/python-modules/pylnk3/default.nix +++ b/pkgs/development/python-modules/pylnk3/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylnk3" ]; - meta = with lib; { + meta = { description = "Python library for reading and writing Windows shortcut files (.lnk)"; mainProgram = "pylnk3"; homepage = "https://github.com/strayge/pylnk"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ fedx-sudo ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ fedx-sudo ]; }; } diff --git a/pkgs/development/python-modules/pyloadapi/default.nix b/pkgs/development/python-modules/pyloadapi/default.nix index 81a3937c31b8..286d097c367c 100644 --- a/pkgs/development/python-modules/pyloadapi/default.nix +++ b/pkgs/development/python-modules/pyloadapi/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "tests/test_cli.py" ]; - meta = with lib; { + meta = { description = "Simple wrapper for pyLoad's API"; homepage = "https://github.com/tr4nt0r/pyloadapi"; changelog = "https://github.com/tr4nt0r/pyloadapi/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylpsd/default.nix b/pkgs/development/python-modules/pylpsd/default.nix index f583391a0d43..53fcb286cfe6 100644 --- a/pkgs/development/python-modules/pylpsd/default.nix +++ b/pkgs/development/python-modules/pylpsd/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { scipy ]; - meta = with lib; { + meta = { description = "Python implementation of the LPSD algorithm for computing power spectral density with logarithmically spaced points"; homepage = "https://github.com/bleykauf/py-lpsd"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/pylru/default.nix b/pkgs/development/python-modules/pylru/default.nix index 9e2cdd162842..2164db296a25 100644 --- a/pkgs/development/python-modules/pylru/default.nix +++ b/pkgs/development/python-modules/pylru/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylru" ]; - meta = with lib; { + meta = { description = "Least recently used (LRU) cache implementation"; homepage = "https://github.com/jlhutch/pylru"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyls-flake8/default.nix b/pkgs/development/python-modules/pyls-flake8/default.nix index da93d28ab60f..02a8af9b187c 100644 --- a/pkgs/development/python-modules/pyls-flake8/default.nix +++ b/pkgs/development/python-modules/pyls-flake8/default.nix @@ -25,10 +25,10 @@ buildPythonPackage { python-lsp-server ]; - meta = with lib; { + meta = { homepage = "https://github.com/emanspeaks/pyls-flake8"; description = "Flake8 plugin for the Python LSP Server"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pyls-spyder/default.nix b/pkgs/development/python-modules/pyls-spyder/default.nix index feacc1d448f7..bfb5dedd5df8 100644 --- a/pkgs/development/python-modules/pyls-spyder/default.nix +++ b/pkgs/development/python-modules/pyls-spyder/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyls_spyder" ]; - meta = with lib; { + meta = { description = "Spyder extensions for the python-language-server"; homepage = "https://github.com/spyder-ide/pyls-spyder"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pylsl/default.nix b/pkgs/development/python-modules/pylsl/default.nix index 89a728b62554..6f11c43821f6 100644 --- a/pkgs/development/python-modules/pylsl/default.nix +++ b/pkgs/development/python-modules/pylsl/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylsl" ]; - meta = with lib; { + meta = { description = "Python bindings (pylsl) for liblsl"; homepage = "https://github.com/labstreaminglayer/pylsl"; - license = licenses.mit; - maintainers = with maintainers; [ abcsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abcsds ]; }; } diff --git a/pkgs/development/python-modules/pylsqpack/default.nix b/pkgs/development/python-modules/pylsqpack/default.nix index 60572a3f13f3..ca5c4c706225 100644 --- a/pkgs/development/python-modules/pylsqpack/default.nix +++ b/pkgs/development/python-modules/pylsqpack/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylsqpack" ]; - meta = with lib; { + meta = { description = "Python wrapper for the ls-qpack QPACK library"; homepage = "https://github.com/aiortc/pylsqpack"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/pylutron-caseta/default.nix b/pkgs/development/python-modules/pylutron-caseta/default.nix index 3ce36ca60b79..2f62e2a1ce83 100644 --- a/pkgs/development/python-modules/pylutron-caseta/default.nix +++ b/pkgs/development/python-modules/pylutron-caseta/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylutron_caseta" ]; - meta = with lib; { + meta = { description = "Python module to control Lutron Caseta devices"; homepage = "https://github.com/gurumitts/pylutron-caseta"; changelog = "https://github.com/gurumitts/pylutron-caseta/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylutron/default.nix b/pkgs/development/python-modules/pylutron/default.nix index 98771a198cae..359a2e33ecaa 100644 --- a/pkgs/development/python-modules/pylutron/default.nix +++ b/pkgs/development/python-modules/pylutron/default.nix @@ -25,14 +25,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylutron" ]; - meta = with lib; { + meta = { description = "Python library for controlling a Lutron RadioRA 2 system"; homepage = "https://github.com/thecynic/pylutron"; changelog = "https://github.com/thecynic/pylutron/releases/tag/${version}"; - license = with licenses; [ + license = with lib.licenses; [ mit psfl ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pylxd/default.nix b/pkgs/development/python-modules/pylxd/default.nix index f6edde15a919..152b603bb80f 100644 --- a/pkgs/development/python-modules/pylxd/default.nix +++ b/pkgs/development/python-modules/pylxd/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylxd" ]; - meta = with lib; { + meta = { description = "Library for interacting with the LXD REST API"; homepage = "https://pylxd.readthedocs.io/"; changelog = "https://github.com/canonical/pylxd/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pylyrics/default.nix b/pkgs/development/python-modules/pylyrics/default.nix index 189b9d184db0..7de80141a227 100644 --- a/pkgs/development/python-modules/pylyrics/default.nix +++ b/pkgs/development/python-modules/pylyrics/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # tries to connect to lyrics.wikia.com doCheck = false; - meta = with lib; { + meta = { description = "Pythonic Implementation of lyrics.wikia.com for getting lyrics of songs"; homepage = "https://github.com/geekpradd/PyLyrics"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pylzma/default.nix b/pkgs/development/python-modules/pylzma/default.nix index 6449d2a006b8..1dd9404761bd 100644 --- a/pkgs/development/python-modules/pylzma/default.nix +++ b/pkgs/development/python-modules/pylzma/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylzma" ]; - meta = with lib; { + meta = { homepage = "https://www.joachim-bauch.de/projects/pylzma/"; description = "Platform independent python bindings for the LZMA compression library"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/python-modules/pymacaroons/default.nix b/pkgs/development/python-modules/pymacaroons/default.nix index 3abfa6431e06..c6a4f7f5b9fe 100644 --- a/pkgs/development/python-modules/pymacaroons/default.nix +++ b/pkgs/development/python-modules/pymacaroons/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { # Tests require an old version of hypothesis doCheck = false; - meta = with lib; { + meta = { description = "Macaroon library for Python"; homepage = "https://github.com/ecordell/pymacaroons"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pymailgunner/default.nix b/pkgs/development/python-modules/pymailgunner/default.nix index 720961288400..9fa56e2c248c 100644 --- a/pkgs/development/python-modules/pymailgunner/default.nix +++ b/pkgs/development/python-modules/pymailgunner/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymailgunner" ]; - meta = with lib; { + meta = { description = "Library for interacting with Mailgun e-mail service"; homepage = "https://github.com/pschmitt/pymailgunner"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymata-express/default.nix b/pkgs/development/python-modules/pymata-express/default.nix index e4bb1bfb5dbc..51481b0e6814 100644 --- a/pkgs/development/python-modules/pymata-express/default.nix +++ b/pkgs/development/python-modules/pymata-express/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymata_express" ]; - meta = with lib; { + meta = { description = "Python Asyncio Arduino Firmata Client"; longDescription = '' Pymata-Express is a Python Firmata Protocol client. When used in conjunction @@ -34,7 +34,7 @@ buildPythonPackage rec { hardware remotely over a serial link. ''; homepage = "https://mryslab.github.io/pymata-express/"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymatreader/default.nix b/pkgs/development/python-modules/pymatreader/default.nix index d51b4d0b59cf..4a62d6944670 100644 --- a/pkgs/development/python-modules/pymatreader/default.nix +++ b/pkgs/development/python-modules/pymatreader/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymatreader" ]; - meta = with lib; { + meta = { description = "Python package to read all kinds and all versions of Matlab mat files"; homepage = "https://gitlab.com/obob/pymatreader/"; changelog = "https://gitlab.com/obob/pymatreader/-/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/pymatting/default.nix b/pkgs/development/python-modules/pymatting/default.nix index 855f4682ca15..354170c10bd0 100644 --- a/pkgs/development/python-modules/pymatting/default.nix +++ b/pkgs/development/python-modules/pymatting/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { # pyopencl._cl.LogicError: clGetPlatformIDs failed: PLATFORM_NOT_FOUND_KHR disabledTestPaths = lib.optional cudaSupport "tests/test_foreground.py"; - meta = with lib; { + meta = { description = "Python library for alpha matting"; homepage = "https://github.com/pymatting/pymatting"; changelog = "https://github.com/pymatting/pymatting/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pymaven-patch/default.nix b/pkgs/development/python-modules/pymaven-patch/default.nix index a8622f2e9bd5..c59e192662b3 100644 --- a/pkgs/development/python-modules/pymaven-patch/default.nix +++ b/pkgs/development/python-modules/pymaven-patch/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymaven" ]; - meta = with lib; { + meta = { description = "Python access to maven"; homepage = "https://github.com/nexB/pymaven"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pymavlink/default.nix b/pkgs/development/python-modules/pymavlink/default.nix index 01e362ba1241..ad9077414616 100644 --- a/pkgs/development/python-modules/pymavlink/default.nix +++ b/pkgs/development/python-modules/pymavlink/default.nix @@ -36,14 +36,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymavlink" ]; - meta = with lib; { + meta = { description = "Python MAVLink interface and utilities"; homepage = "https://github.com/ArduPilot/pymavlink"; changelog = "https://github.com/ArduPilot/pymavlink/releases/tag/${version}"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus mit ]; - maintainers = with maintainers; [ lopsided98 ]; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/development/python-modules/pymdown-extensions/default.nix b/pkgs/development/python-modules/pymdown-extensions/default.nix index 86756a86747a..628a9a3bf8d4 100644 --- a/pkgs/development/python-modules/pymdown-extensions/default.nix +++ b/pkgs/development/python-modules/pymdown-extensions/default.nix @@ -85,13 +85,13 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { description = "Extensions for Python Markdown"; homepage = "https://facelessuser.github.io/pymdown-extensions/"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd2 ]; - maintainers = with maintainers; [ cpcloud ]; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pymdstat/default.nix b/pkgs/development/python-modules/pymdstat/default.nix index a45c44d7b581..badacf8cd9bb 100644 --- a/pkgs/development/python-modules/pymdstat/default.nix +++ b/pkgs/development/python-modules/pymdstat/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { enabledTestPaths = [ "unitest.py" ]; - meta = with lib; { + meta = { description = "Pythonic library to parse Linux /proc/mdstat file"; homepage = "https://github.com/nicolargo/pymdstat"; - maintainers = with maintainers; [ rhoriguchi ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ rhoriguchi ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pymediaroom/default.nix b/pkgs/development/python-modules/pymediaroom/default.nix index 8702da9fb97b..fca27943f307 100644 --- a/pkgs/development/python-modules/pymediaroom/default.nix +++ b/pkgs/development/python-modules/pymediaroom/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pymediaroom" ]; - meta = with lib; { + meta = { description = "Python Remote Control for Mediaroom STB"; homepage = "https://github.com/dgomes/pymediaroom"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymedio/default.nix b/pkgs/development/python-modules/pymedio/default.nix index aec5c57768b0..94e44c91547d 100644 --- a/pkgs/development/python-modules/pymedio/default.nix +++ b/pkgs/development/python-modules/pymedio/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymedio" ]; - meta = with lib; { + meta = { description = "Read medical image files into Numpy arrays"; homepage = "https://github.com/jcreinhold/pymedio"; changelog = "https://github.com/jcreinhold/pymedio/blob/v${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pymeeus/default.nix b/pkgs/development/python-modules/pymeeus/default.nix index 4178c593aa0b..a48bbdd1878d 100644 --- a/pkgs/development/python-modules/pymeeus/default.nix +++ b/pkgs/development/python-modules/pymeeus/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest7CheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/architest/pymeeus"; description = "Library of astronomical algorithms"; - license = licenses.lgpl3; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/pymemcache/default.nix b/pkgs/development/python-modules/pymemcache/default.nix index 69e96b77011c..6a189911f4dc 100644 --- a/pkgs/development/python-modules/pymemcache/default.nix +++ b/pkgs/development/python-modules/pymemcache/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymemcache" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pinterest/pymemcache/blob/${src.rev}/ChangeLog.rst"; description = "Python memcached client"; homepage = "https://pymemcache.readthedocs.io/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymemoize/default.nix b/pkgs/development/python-modules/pymemoize/default.nix index 064c93931e63..7b1b1a0aee10 100644 --- a/pkgs/development/python-modules/pymemoize/default.nix +++ b/pkgs/development/python-modules/pymemoize/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # django.core.exceptions.ImproperlyConfigured: Requested settings, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings doCheck = false; - meta = with lib; { + meta = { description = "Simple Python cache and memoizing module"; homepage = "https://github.com/mikeboers/PyMemoize"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/pyment/default.nix b/pkgs/development/python-modules/pyment/default.nix index 1628f723aa70..023dfd740de1 100644 --- a/pkgs/development/python-modules/pyment/default.nix +++ b/pkgs/development/python-modules/pyment/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { # Tests are not included in PyPI tarball doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/dadadel/pyment"; description = "Create, update or convert docstrings in existing Python files, managing several styles"; mainProgram = "pyment"; - license = licenses.gpl3; - maintainers = with maintainers; [ jethro ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ jethro ]; }; } diff --git a/pkgs/development/python-modules/pymeta3/default.nix b/pkgs/development/python-modules/pymeta3/default.nix index ba5c244ea49b..f9a5e668ac4b 100644 --- a/pkgs/development/python-modules/pymeta3/default.nix +++ b/pkgs/development/python-modules/pymeta3/default.nix @@ -18,12 +18,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymeta" ]; - meta = with lib; { + meta = { description = "Pattern-matching language based on OMeta for Python 3 and 2"; homepage = "https://github.com/wbond/pymeta3"; changelog = "https://github.com/wbond/pymeta3/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jfly matusf ]; diff --git a/pkgs/development/python-modules/pymetar/default.nix b/pkgs/development/python-modules/pymetar/default.nix index f8657ddfcbf2..117a53b715f4 100644 --- a/pkgs/development/python-modules/pymetar/default.nix +++ b/pkgs/development/python-modules/pymetar/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { ./runtests.sh ''; - meta = with lib; { + meta = { description = "Command-line tool to show the weather report by a given station ID"; mainProgram = "pymetar"; homepage = "https://github.com/klausman/pymetar"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ erosennin ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ erosennin ]; }; } diff --git a/pkgs/development/python-modules/pymeteoclimatic/default.nix b/pkgs/development/python-modules/pymeteoclimatic/default.nix index 15b9d5c23529..0b7f2eb2efb2 100644 --- a/pkgs/development/python-modules/pymeteoclimatic/default.nix +++ b/pkgs/development/python-modules/pymeteoclimatic/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "meteoclimatic" ]; - meta = with lib; { + meta = { description = "Python wrapper around the Meteoclimatic service"; homepage = "https://github.com/adrianmo/pymeteoclimatic"; changelog = "https://github.com/adrianmo/pymeteoclimatic/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymetno/default.nix b/pkgs/development/python-modules/pymetno/default.nix index eaf8dfe40540..5039e1daff29 100644 --- a/pkgs/development/python-modules/pymetno/default.nix +++ b/pkgs/development/python-modules/pymetno/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Library to communicate with the met.no API"; homepage = "https://github.com/Danielhiversen/pyMetno/"; changelog = "https://github.com/Danielhiversen/pyMetno/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ flyfloh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flyfloh ]; }; } diff --git a/pkgs/development/python-modules/pymfy/default.nix b/pkgs/development/python-modules/pymfy/default.nix index 54a8e690574a..0227332b29ea 100644 --- a/pkgs/development/python-modules/pymfy/default.nix +++ b/pkgs/development/python-modules/pymfy/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymfy" ]; - meta = with lib; { + meta = { description = "Python client for the Somfy Open API"; homepage = "https://github.com/tetienne/somfy-open-api"; changelog = "https://github.com/tetienne/somfy-open-api/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymicro-vad/default.nix b/pkgs/development/python-modules/pymicro-vad/default.nix index ca4064261e7a..8c796390bf15 100644 --- a/pkgs/development/python-modules/pymicro-vad/default.nix +++ b/pkgs/development/python-modules/pymicro-vad/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymicro_vad" ]; - meta = with lib; { + meta = { changelog = "https://github.com/rhasspy/pymicro-vad/releases/tag/${version}"; description = "Self-contained voice activity detector"; homepage = "https://github.com/rhasspy/pymicro-vad"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pymicrobot/default.nix b/pkgs/development/python-modules/pymicrobot/default.nix index 76b267338717..cedce8045dbf 100644 --- a/pkgs/development/python-modules/pymicrobot/default.nix +++ b/pkgs/development/python-modules/pymicrobot/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "microbot" ]; - meta = with lib; { + meta = { description = "Library to communicate with MicroBot"; homepage = "https://github.com/spycle/pyMicroBot/"; changelog = "https://github.com/spycle/pyMicroBot/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymiele/default.nix b/pkgs/development/python-modules/pymiele/default.nix index ad5db8569dc1..4f1e19ac6bd9 100644 --- a/pkgs/development/python-modules/pymiele/default.nix +++ b/pkgs/development/python-modules/pymiele/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymiele" ]; - meta = with lib; { + meta = { changelog = "https://github.com/astrandb/pymiele/releases/tag/v${version}"; description = "Lib for Miele integration with Home Assistant"; homepage = "https://github.com/astrandb/pymiele"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/pymilter/default.nix b/pkgs/development/python-modules/pymilter/default.nix index eaeb815b55b9..a54d852e3b83 100644 --- a/pkgs/development/python-modules/pymilter/default.nix +++ b/pkgs/development/python-modules/pymilter/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "Milter" ]; - meta = with lib; { + meta = { homepage = "http://bmsi.com/python/milter.html"; description = "Python bindings for libmilter api"; - maintainers = with maintainers; [ yorickvp ]; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ yorickvp ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/pymitv/default.nix b/pkgs/development/python-modules/pymitv/default.nix index e68fc984383f..a8a7a6015cef 100644 --- a/pkgs/development/python-modules/pymitv/default.nix +++ b/pkgs/development/python-modules/pymitv/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pymitv" ]; - meta = with lib; { + meta = { description = "Python client the Mi Tv 3"; homepage = "https://github.com/simse/pymitv"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymodbus/default.nix b/pkgs/development/python-modules/pymodbus/default.nix index ad61d3014ae5..3af2ccaab429 100644 --- a/pkgs/development/python-modules/pymodbus/default.nix +++ b/pkgs/development/python-modules/pymodbus/default.nix @@ -77,7 +77,7 @@ buildPythonPackage rec { "examples/" ]; - meta = with lib; { + meta = { description = "Python implementation of the Modbus protocol"; longDescription = '' Pymodbus is a full Modbus protocol implementation using twisted, @@ -87,8 +87,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/pymodbus-dev/pymodbus"; changelog = "https://github.com/pymodbus-dev/pymodbus/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pymodbus.simulator"; }; } diff --git a/pkgs/development/python-modules/pymodes/default.nix b/pkgs/development/python-modules/pymodes/default.nix index b37863e351ff..69eacf59178a 100644 --- a/pkgs/development/python-modules/pymodes/default.nix +++ b/pkgs/development/python-modules/pymodes/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyModeS" ]; - meta = with lib; { + meta = { description = "Python Mode-S and ADS-B Decoder"; homepage = "https://github.com/junzis/pyModeS"; changelog = "https://github.com/junzis/pyModeS/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ snicket2100 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ snicket2100 ]; }; } diff --git a/pkgs/development/python-modules/pymorphy2/default.nix b/pkgs/development/python-modules/pymorphy2/default.nix index 748f7d8d24a3..989b9b95ea53 100644 --- a/pkgs/development/python-modules/pymorphy2/default.nix +++ b/pkgs/development/python-modules/pymorphy2/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymorphy2" ]; - meta = with lib; { + meta = { description = "Morphological analyzer/inflection engine for Russian and Ukrainian"; mainProgram = "pymorphy"; homepage = "https://github.com/kmike/pymorphy2"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pympler/default.nix b/pkgs/development/python-modules/pympler/default.nix index 8a68f5bbc245..1ea4ea141622 100644 --- a/pkgs/development/python-modules/pympler/default.nix +++ b/pkgs/development/python-modules/pympler/default.nix @@ -54,9 +54,9 @@ buildPythonPackage rec { doCheck = stdenv.hostPlatform.isLinux; - meta = with lib; { + meta = { description = "Tool to measure, monitor and analyze memory behavior"; homepage = "https://github.com/pympler/pympler"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pymsgbox/default.nix b/pkgs/development/python-modules/pymsgbox/default.nix index c4d52a900851..4e38b9bb0690 100644 --- a/pkgs/development/python-modules/pymsgbox/default.nix +++ b/pkgs/development/python-modules/pymsgbox/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pymsgbox" ]; - meta = with lib; { + meta = { description = "Simple, cross-platform, pure Python module for JavaScript-like message boxes"; homepage = "https://github.com/asweigart/PyMsgBox"; - license = licenses.bsd3; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/pymssql/default.nix b/pkgs/development/python-modules/pymssql/default.nix index 959d7b69e6da..de3b9e8ceda2 100644 --- a/pkgs/development/python-modules/pymssql/default.nix +++ b/pkgs/development/python-modules/pymssql/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymssql" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pymssql/pymssql/blob/v${version}/ChangeLog.rst"; description = "Simple database interface for Python that builds on top of FreeTDS to provide a Python DB-API (PEP-249) interface to Microsoft SQL Server"; homepage = "https://github.com/pymssql/pymssql"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.sith-lord-vader ]; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.sith-lord-vader ]; }; } diff --git a/pkgs/development/python-modules/pymsteams/default.nix b/pkgs/development/python-modules/pymsteams/default.nix index 12775838665f..d831306f6105 100644 --- a/pkgs/development/python-modules/pymsteams/default.nix +++ b/pkgs/development/python-modules/pymsteams/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymsteams" ]; - meta = with lib; { + meta = { description = "Python module to interact with Microsoft Teams"; homepage = "https://github.com/rveachkc/pymsteams"; changelog = "https://github.com/rveachkc/pymsteams/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymumble/default.nix b/pkgs/development/python-modules/pymumble/default.nix index f49acec8ad98..1dc4781b243f 100644 --- a/pkgs/development/python-modules/pymumble/default.nix +++ b/pkgs/development/python-modules/pymumble/default.nix @@ -43,11 +43,11 @@ buildPythonPackage { "pymumble_py3.constants" ]; - meta = with lib; { + meta = { description = "Library to create mumble bots"; homepage = "https://github.com/tjni/pymumble"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ thelegy ]; }; diff --git a/pkgs/development/python-modules/pymunk/default.nix b/pkgs/development/python-modules/pymunk/default.nix index bc25bb966d19..6c576ee771bc 100644 --- a/pkgs/development/python-modules/pymunk/default.nix +++ b/pkgs/development/python-modules/pymunk/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymunk" ]; - meta = with lib; { + meta = { description = "2d physics library"; homepage = "https://www.pymunk.org"; changelog = "https://github.com/viblo/pymunk/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pymvglive/default.nix b/pkgs/development/python-modules/pymvglive/default.nix index 81a135ac4122..dc343a1e948a 100644 --- a/pkgs/development/python-modules/pymvglive/default.nix +++ b/pkgs/development/python-modules/pymvglive/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ requests ]; - meta = with lib; { + meta = { description = "Get live-data from mvg-live.de"; homepage = "https://github.com/pc-coholic/PyMVGLive"; - license = licenses.free; + license = lib.licenses.free; }; } diff --git a/pkgs/development/python-modules/pymysensors/default.nix b/pkgs/development/python-modules/pymysensors/default.nix index 5da2bee9a7c1..d29d29ac7c63 100644 --- a/pkgs/development/python-modules/pymysensors/default.nix +++ b/pkgs/development/python-modules/pymysensors/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "mysensors" ]; - meta = with lib; { + meta = { description = "Python API for talking to a MySensors gateway"; homepage = "https://github.com/theolind/pymysensors"; changelog = "https://github.com/theolind/pymysensors/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pymysensors"; }; } diff --git a/pkgs/development/python-modules/pymysql/default.nix b/pkgs/development/python-modules/pymysql/default.nix index be019c73f185..4064b432fbb2 100644 --- a/pkgs/development/python-modules/pymysql/default.nix +++ b/pkgs/development/python-modules/pymysql/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # Wants to connect to MySQL doCheck = false; - meta = with lib; { + meta = { description = "Pure Python MySQL Client"; homepage = "https://github.com/PyMySQL/PyMySQL"; - license = licenses.mit; - maintainers = [ maintainers.kalbasit ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.kalbasit ]; }; } diff --git a/pkgs/development/python-modules/pymysqlsa/default.nix b/pkgs/development/python-modules/pymysqlsa/default.nix index 53ec483536af..2ae6dd05fdcf 100644 --- a/pkgs/development/python-modules/pymysqlsa/default.nix +++ b/pkgs/development/python-modules/pymysqlsa/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { sqlalchemy ]; - meta = with lib; { + meta = { description = "PyMySQL dialect for SQL Alchemy"; homepage = "https://pypi.python.org/pypi/pymysql_sa"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pymystem3/default.nix b/pkgs/development/python-modules/pymystem3/default.nix index 9cf9eb106c2d..9c62fa60de85 100644 --- a/pkgs/development/python-modules/pymystem3/default.nix +++ b/pkgs/development/python-modules/pymystem3/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { sed -i 's#^_mystem_info = .*#_mystem_info = ["${mystem}/bin", "${mystem}/bin/mystem"]#' pymystem3/constants.py ''; - meta = with lib; { + meta = { description = "Python wrapper for the Yandex MyStem 3.1 morpholocial analyzer of the Russian language"; homepage = "https://github.com/nlpub/pymystem3"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pynac/default.nix b/pkgs/development/python-modules/pynac/default.nix index 0a5e1257a94c..d4a1e684e0df 100644 --- a/pkgs/development/python-modules/pynac/default.nix +++ b/pkgs/development/python-modules/pynac/default.nix @@ -14,9 +14,9 @@ buildPythonPackage { sha256 = "0avzqqcxl54karjmla9jbsyid98mva36lxahwmrsx5h40ys2ggxp"; }; - meta = with lib; { + meta = { homepage = "https://github.com/se-esss-litterbox/Pynac"; description = "Python wrapper around the Dynac charged particle simulator"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/pynamecheap/default.nix b/pkgs/development/python-modules/pynamecheap/default.nix index 4ab6da4a25a9..c53e6d15db78 100644 --- a/pkgs/development/python-modules/pynamecheap/default.nix +++ b/pkgs/development/python-modules/pynamecheap/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "namecheap" ]; - meta = with lib; { + meta = { description = "Namecheap API client in Python"; homepage = "https://github.com/Bemmu/PyNamecheap"; changelog = "https://github.com/Bemmu/PyNamecheap/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pynamodb/default.nix b/pkgs/development/python-modules/pynamodb/default.nix index 862971e81f33..558be3af2b30 100644 --- a/pkgs/development/python-modules/pynamodb/default.nix +++ b/pkgs/development/python-modules/pynamodb/default.nix @@ -62,7 +62,7 @@ buildPythonPackage rec { "test_connection_make_api_call__binary_attributes" ]; - meta = with lib; { + meta = { description = "Interface for Amazon’s DynamoDB"; longDescription = '' DynamoDB is a great NoSQL service provided by Amazon, but the API is @@ -70,7 +70,7 @@ buildPythonPackage rec { ''; homepage = "http://jlafon.io/pynamodb.html"; changelog = "https://github.com/pynamodb/PynamoDB/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pynanoleaf/default.nix b/pkgs/development/python-modules/pynanoleaf/default.nix index 113818784680..0c22beb5cffe 100644 --- a/pkgs/development/python-modules/pynanoleaf/default.nix +++ b/pkgs/development/python-modules/pynanoleaf/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynanoleaf" ]; - meta = with lib; { + meta = { description = "Python3 wrapper for the Nanoleaf API, capable of controlling both Nanoleaf Aurora and Nanoleaf Canvas"; homepage = "https://github.com/Oro/pynanoleaf"; changelog = "https://github.com/Oro/pynanoleaf/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ oro ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oro ]; }; } diff --git a/pkgs/development/python-modules/pync/default.nix b/pkgs/development/python-modules/pync/default.nix index 46af3ed5db2f..4a7f17dced0d 100644 --- a/pkgs/development/python-modules/pync/default.nix +++ b/pkgs/development/python-modules/pync/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { sed -i 's|^\([ ]*\)self.bin_path.*$|\1self.bin_path = "${pkgs.terminal-notifier}/bin/terminal-notifier"|' build/lib/pync/TerminalNotifier.py ''; - meta = with lib; { + meta = { description = "Python Wrapper for Mac OS 10.8 Notification Center"; homepage = "https://pypi.python.org/pypi/pync"; - license = licenses.mit; - platforms = platforms.darwin; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.mit; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ lovek323 ]; }; } diff --git a/pkgs/development/python-modules/pynello/default.nix b/pkgs/development/python-modules/pynello/default.nix index 9aa53b8a0251..ccbc7628f7bd 100644 --- a/pkgs/development/python-modules/pynello/default.nix +++ b/pkgs/development/python-modules/pynello/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynello" ]; - meta = with lib; { + meta = { description = "Python library for nello.io intercoms"; mainProgram = "nello"; homepage = "https://github.com/pschmitt/pynello"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynest2d/default.nix b/pkgs/development/python-modules/pynest2d/default.nix index 5fb72a4cbdb0..7f46f9667123 100644 --- a/pkgs/development/python-modules/pynest2d/default.nix +++ b/pkgs/development/python-modules/pynest2d/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake ''; - meta = with lib; { + meta = { description = "Python bindings for libnest2d"; homepage = "https://github.com/Ultimaker/pynest2d"; - license = licenses.lgpl3; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pynetbox/default.nix b/pkgs/development/python-modules/pynetbox/default.nix index 016ecee277be..2843018a6c6e 100644 --- a/pkgs/development/python-modules/pynetbox/default.nix +++ b/pkgs/development/python-modules/pynetbox/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "tests/integration" ]; - meta = with lib; { + meta = { changelog = "https://github.com/netbox-community/pynetbox/releases/tag/v${version}"; description = "API client library for Netbox"; homepage = "https://github.com/netbox-community/pynetbox"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pynetdicom/default.nix b/pkgs/development/python-modules/pynetdicom/default.nix index 5d5042a8ee32..6dd5452689a0 100644 --- a/pkgs/development/python-modules/pynetdicom/default.nix +++ b/pkgs/development/python-modules/pynetdicom/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynetdicom" ]; - meta = with lib; { + meta = { description = "Python implementation of the DICOM networking protocol"; homepage = "https://github.com/pydicom/pynetdicom"; changelog = "https://github.com/pydicom/pynetdicom/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynetgear/default.nix b/pkgs/development/python-modules/pynetgear/default.nix index 60247ac74ca0..575373e6d142 100644 --- a/pkgs/development/python-modules/pynetgear/default.nix +++ b/pkgs/development/python-modules/pynetgear/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { # https://github.com/MatMaul/pynetgear/issues/109 doCheck = false; - meta = with lib; { + meta = { description = "Module for interacting with Netgear wireless routers"; homepage = "https://github.com/MatMaul/pynetgear"; changelog = "https://github.com/MatMaul/pynetgear/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyngo/default.nix b/pkgs/development/python-modules/pyngo/default.nix index 78cf970ed4ef..b89d8bd91b10 100644 --- a/pkgs/development/python-modules/pyngo/default.nix +++ b/pkgs/development/python-modules/pyngo/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pytest-asyncio ]; - meta = with lib; { + meta = { changelog = "https://github.com/yezz123/pyngo/releases/tag/${src.tag}"; description = "Pydantic model support for Django & Django-Rest-Framework"; homepage = "https://github.com/yezz123/pyngo"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pynina/default.nix b/pkgs/development/python-modules/pynina/default.nix index d283ae30a624..9fa9a3ac46d2 100644 --- a/pkgs/development/python-modules/pynina/default.nix +++ b/pkgs/development/python-modules/pynina/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynina" ]; - meta = with lib; { + meta = { description = "Python API wrapper to retrieve warnings from the german NINA app"; homepage = "https://gitlab.com/DeerMaximum/pynina"; changelog = "https://gitlab.com/DeerMaximum/pynina/-/releases/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynisher/default.nix b/pkgs/development/python-modules/pynisher/default.nix index 8249af5aa44c..8ca39b013be2 100644 --- a/pkgs/development/python-modules/pynisher/default.nix +++ b/pkgs/development/python-modules/pynisher/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynisher" ]; - meta = with lib; { + meta = { description = "Module intended to limit a functions resources"; homepage = "https://github.com/automl/pynisher"; changelog = "https://github.com/automl/pynisher/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/pynitrokey/default.nix b/pkgs/development/python-modules/pynitrokey/default.nix index 03ce0abeba29..52a5b004428b 100644 --- a/pkgs/development/python-modules/pynitrokey/default.nix +++ b/pkgs/development/python-modules/pynitrokey/default.nix @@ -80,15 +80,15 @@ buildPythonPackage { --fish <(_NITROPY_COMPLETE=fish_source $out/bin/${mainProgram}) ''; - meta = with lib; { + meta = { description = "Python client for Nitrokey devices"; homepage = "https://github.com/Nitrokey/pynitrokey"; changelog = "https://github.com/Nitrokey/pynitrokey/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ frogamic ]; inherit mainProgram; diff --git a/pkgs/development/python-modules/pynobo/default.nix b/pkgs/development/python-modules/pynobo/default.nix index 142d8b44d59c..0f8ea1a3fd5f 100644 --- a/pkgs/development/python-modules/pynobo/default.nix +++ b/pkgs/development/python-modules/pynobo/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynobo" ]; - meta = with lib; { + meta = { description = "Python TCP/IP interface for Nobo Hub/Nobo Energy Control devices"; homepage = "https://github.com/echoromeo/pynobo"; changelog = "https://github.com/echoromeo/pynobo/releases/tag/v${version}"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynotifier/default.nix b/pkgs/development/python-modules/pynotifier/default.nix index f264d9a32803..cfdce46a30fb 100644 --- a/pkgs/development/python-modules/pynotifier/default.nix +++ b/pkgs/development/python-modules/pynotifier/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynotifier" ]; - meta = with lib; { + meta = { description = "Module for sending notifications"; homepage = "https://github.com/YuriyLisovskiy/pynotifier"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/pynput/default.nix b/pkgs/development/python-modules/pynput/default.nix index b4d643d6fbb7..52aca02491c9 100644 --- a/pkgs/development/python-modules/pynput/default.nix +++ b/pkgs/development/python-modules/pynput/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Library to control and monitor input devices"; homepage = "https://github.com/moses-palmer/pynput"; - license = licenses.lgpl3; - maintainers = with maintainers; [ nickhu ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ nickhu ]; }; } diff --git a/pkgs/development/python-modules/pynslookup/default.nix b/pkgs/development/python-modules/pynslookup/default.nix index 381000f97d09..756f4670b345 100644 --- a/pkgs/development/python-modules/pynslookup/default.nix +++ b/pkgs/development/python-modules/pynslookup/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nslookup" ]; - meta = with lib; { + meta = { description = "Module to do DNS lookups"; homepage = "https://github.com/wesinator/pynslookup"; - license = licenses.mpl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynuki/default.nix b/pkgs/development/python-modules/pynuki/default.nix index a71a1a6b7c2a..1343b5494c0a 100644 --- a/pkgs/development/python-modules/pynuki/default.nix +++ b/pkgs/development/python-modules/pynuki/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynuki" ]; - meta = with lib; { + meta = { description = "Python bindings for nuki.io bridges"; homepage = "https://github.com/pschmitt/pynuki"; changelog = "https://github.com/pschmitt/pynuki/releases/tag/${version}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynut2/default.nix b/pkgs/development/python-modules/pynut2/default.nix index a00f3d32dcfb..2a02a9898fb3 100644 --- a/pkgs/development/python-modules/pynut2/default.nix +++ b/pkgs/development/python-modules/pynut2/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # tests are unmaintained and broken doCheck = false; - meta = with lib; { + meta = { description = "API overhaul of PyNUT, a Python library to allow communication with NUT (Network UPS Tools) servers"; homepage = "https://github.com/mezz64/python-nut2"; - license = with licenses; [ gpl3Plus ]; - maintainers = [ maintainers.luker ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = [ lib.maintainers.luker ]; }; } diff --git a/pkgs/development/python-modules/pynws/default.nix b/pkgs/development/python-modules/pynws/default.nix index 38013d15ea7b..3f5366ace4ce 100644 --- a/pkgs/development/python-modules/pynws/default.nix +++ b/pkgs/development/python-modules/pynws/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynws" ]; - meta = with lib; { + meta = { description = "Python library to retrieve data from NWS/NOAA"; homepage = "https://github.com/MatthewFlamm/pynws"; changelog = "https://github.com/MatthewFlamm/pynws/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynx584/default.nix b/pkgs/development/python-modules/pynx584/default.nix index 524ddcc430d5..61196ae1baab 100644 --- a/pkgs/development/python-modules/pynx584/default.nix +++ b/pkgs/development/python-modules/pynx584/default.nix @@ -44,10 +44,10 @@ buildPythonPackage { pythonImportsCheck = [ "nx584" ]; - meta = with lib; { + meta = { description = "Python package for communicating to NX584/NX8E interfaces"; homepage = "https://github.com/kk7ds/pynx584"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pynzb/default.nix b/pkgs/development/python-modules/pynzb/default.nix index 565c104096f2..da4d43d0e71b 100644 --- a/pkgs/development/python-modules/pynzb/default.nix +++ b/pkgs/development/python-modules/pynzb/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # Can't get them working doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/ericflo/pynzb"; description = "Unified API for parsing NZB files"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyobihai/default.nix b/pkgs/development/python-modules/pyobihai/default.nix index 1c26aaaaf4bd..a5804bf0d9f9 100644 --- a/pkgs/development/python-modules/pyobihai/default.nix +++ b/pkgs/development/python-modules/pyobihai/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyobihai" ]; - meta = with lib; { + meta = { description = "Module to interact with Obihai devices"; homepage = "https://github.com/ejpenney/pyobihai"; changelog = "https://github.com/ejpenney/pyobihai/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyocr/default.nix b/pkgs/development/python-modules/pyocr/default.nix index 4065747bbd18..ede232b58d73 100644 --- a/pkgs/development/python-modules/pyocr/default.nix +++ b/pkgs/development/python-modules/pyocr/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; changelog = "https://gitlab.gnome.org/World/OpenPaperwork/pyocr/-/blob/${version}/ChangeLog"; description = "Python wrapper for Tesseract and Cuneiform"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ symphorien tomodachi94 ]; diff --git a/pkgs/development/python-modules/pyoctoprintapi/default.nix b/pkgs/development/python-modules/pyoctoprintapi/default.nix index 2da43c3f76cb..844864286057 100644 --- a/pkgs/development/python-modules/pyoctoprintapi/default.nix +++ b/pkgs/development/python-modules/pyoctoprintapi/default.nix @@ -41,11 +41,11 @@ buildPythonPackage { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Simple async wrapper around the Octoprint API"; homepage = "https://github.com/rfleming71/pyoctoprintapi"; changelog = "https://github.com/rfleming71/pyoctoprintapi/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyodbc/default.nix b/pkgs/development/python-modules/pyodbc/default.nix index f5e1da3ce897..5a308bc148bc 100644 --- a/pkgs/development/python-modules/pyodbc/default.nix +++ b/pkgs/development/python-modules/pyodbc/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyodbc" ]; - meta = with lib; { + meta = { description = "Python ODBC module to connect to almost any database"; homepage = "https://github.com/mkleehammer/pyodbc"; changelog = "https://github.com/mkleehammer/pyodbc/releases/tag/${version}"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/pyogg/default.nix b/pkgs/development/python-modules/pyogg/default.nix index 17d77256ce67..8a3d2d33fd97 100644 --- a/pkgs/development/python-modules/pyogg/default.nix +++ b/pkgs/development/python-modules/pyogg/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { }) ]; - meta = with lib; { + meta = { description = "Xiph.org's Ogg Vorbis, Opus and FLAC for Python"; homepage = "https://github.com/Zuzu-Typ/PyOgg"; - license = licenses.publicDomain; - maintainers = with maintainers; [ pmiddend ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ pmiddend ]; }; } diff --git a/pkgs/development/python-modules/pyombi/default.nix b/pkgs/development/python-modules/pyombi/default.nix index 5362e490e7e7..9e28e0d41b5c 100644 --- a/pkgs/development/python-modules/pyombi/default.nix +++ b/pkgs/development/python-modules/pyombi/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyombi" ]; - meta = with lib; { + meta = { description = "Python module to retrieve information from Ombi"; homepage = "https://github.com/larssont/pyombi"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyomo/default.nix b/pkgs/development/python-modules/pyomo/default.nix index a02778e42f56..306e64c304a8 100644 --- a/pkgs/development/python-modules/pyomo/default.nix +++ b/pkgs/development/python-modules/pyomo/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "test_get_os_version" ]; - meta = with lib; { + meta = { description = "Python Optimization Modeling Objects"; homepage = "http://www.pyomo.org/"; changelog = "https://github.com/Pyomo/pyomo/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; mainProgram = "pyomo"; }; diff --git a/pkgs/development/python-modules/pyopengl/default.nix b/pkgs/development/python-modules/pyopengl/default.nix index 54db146e8eaa..07350fd593e0 100644 --- a/pkgs/development/python-modules/pyopengl/default.nix +++ b/pkgs/development/python-modules/pyopengl/default.nix @@ -80,7 +80,7 @@ buildPythonPackage rec { "OpenGL.GLX" ]; - meta = with lib; { + meta = { homepage = "https://mcfletch.github.io/pyopengl/"; description = "PyOpenGL, the Python OpenGL bindings"; longDescription = '' @@ -89,7 +89,7 @@ buildPythonPackage rec { Python 2.5) ctypes library, and is provided under an extremely liberal BSD-style Open-Source license. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; inherit (mesa.meta) platforms; }; } diff --git a/pkgs/development/python-modules/pyopenssl/default.nix b/pkgs/development/python-modules/pyopenssl/default.nix index aab03cea1990..4d1273ad71fd 100644 --- a/pkgs/development/python-modules/pyopenssl/default.nix +++ b/pkgs/development/python-modules/pyopenssl/default.nix @@ -95,11 +95,11 @@ buildPythonPackage rec { "test_verify_with_time" ]; - meta = with lib; { + meta = { description = "Python wrapper around the OpenSSL library"; homepage = "https://github.com/pyca/pyopenssl"; changelog = "https://github.com/pyca/pyopenssl/blob/${version}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyopenuv/default.nix b/pkgs/development/python-modules/pyopenuv/default.nix index 96c03698efaa..f836fbc0e6d7 100644 --- a/pkgs/development/python-modules/pyopenuv/default.nix +++ b/pkgs/development/python-modules/pyopenuv/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyopenuv" ]; - meta = with lib; { + meta = { description = "Python API to retrieve data from openuv.io"; homepage = "https://github.com/bachya/pyopenuv"; changelog = "https://github.com/bachya/pyopenuv/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyopenweathermap/default.nix b/pkgs/development/python-modules/pyopenweathermap/default.nix index 0671a9c1668d..7db1b5118f5f 100644 --- a/pkgs/development/python-modules/pyopenweathermap/default.nix +++ b/pkgs/development/python-modules/pyopenweathermap/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyopenweathermap" ]; - meta = with lib; { + meta = { description = "Python library for OpenWeatherMap API for Home Assistant"; homepage = "https://github.com/freekode/pyopenweathermap"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyoppleio/default.nix b/pkgs/development/python-modules/pyoppleio/default.nix index b9ef0e23a73f..56229e987f5e 100644 --- a/pkgs/development/python-modules/pyoppleio/default.nix +++ b/pkgs/development/python-modules/pyoppleio/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyoppleio" ]; - meta = with lib; { + meta = { description = "Library for interacting with OPPLE lights"; homepage = "https://github.com/jedmeng/python-oppleio"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "oppleio"; }; } diff --git a/pkgs/development/python-modules/pyosf/default.nix b/pkgs/development/python-modules/pyosf/default.nix index 281d2f1c2de8..9b4184aa45ad 100644 --- a/pkgs/development/python-modules/pyosf/default.nix +++ b/pkgs/development/python-modules/pyosf/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyosf" ]; - meta = with lib; { + meta = { description = "Pure Python library for simple sync with Open Science Framework"; homepage = "https://github.com/psychopy/pyosf"; changelog = "https://github.com/psychopy/pyosf/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pyosohotwaterapi/default.nix b/pkgs/development/python-modules/pyosohotwaterapi/default.nix index 87e2d5c5f12e..e342f2d8f2fa 100644 --- a/pkgs/development/python-modules/pyosohotwaterapi/default.nix +++ b/pkgs/development/python-modules/pyosohotwaterapi/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "apyosoenergyapi" ]; - meta = with lib; { + meta = { description = "Module for using the OSO Hotwater API"; homepage = "https://github.com/osohotwateriot/apyosohotwaterapi"; changelog = "https://github.com/osohotwateriot/apyosohotwaterapi/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyotgw/default.nix b/pkgs/development/python-modules/pyotgw/default.nix index 9d62bffa7e50..807642d1e577 100644 --- a/pkgs/development/python-modules/pyotgw/default.nix +++ b/pkgs/development/python-modules/pyotgw/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "connect_timeouterror" ]; - meta = with lib; { + meta = { description = "Python module to interact the OpenTherm Gateway"; homepage = "https://github.com/mvn23/pyotgw"; changelog = "https://github.com/mvn23/pyotgw/blob/${version}/CHANGELOG.md"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyotp/default.nix b/pkgs/development/python-modules/pyotp/default.nix index 312a229c10c1..a0ad2dc5a1d8 100644 --- a/pkgs/development/python-modules/pyotp/default.nix +++ b/pkgs/development/python-modules/pyotp/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyotp" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pyauth/pyotp/blob/v${version}/Changes.rst"; description = "Python One Time Password Library"; homepage = "https://github.com/pyauth/pyotp"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyoutbreaksnearme/default.nix b/pkgs/development/python-modules/pyoutbreaksnearme/default.nix index 62168cc25313..d0ce8d4f6472 100644 --- a/pkgs/development/python-modules/pyoutbreaksnearme/default.nix +++ b/pkgs/development/python-modules/pyoutbreaksnearme/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyoutbreaksnearme" ]; - meta = with lib; { + meta = { description = "Library for retrieving data from for Outbreaks Near Me"; homepage = "https://github.com/bachya/pyoutbreaksnearme"; changelog = "https://github.com/bachya/pyoutbreaksnearme/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyoverkiz/default.nix b/pkgs/development/python-modules/pyoverkiz/default.nix index 2ecc7ceaf856..ed73b8a9a012 100644 --- a/pkgs/development/python-modules/pyoverkiz/default.nix +++ b/pkgs/development/python-modules/pyoverkiz/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyoverkiz" ]; - meta = with lib; { + meta = { description = "Module to interact with the Somfy TaHoma API or other OverKiz APIs"; homepage = "https://github.com/iMicknl/python-overkiz-api"; changelog = "https://github.com/iMicknl/python-overkiz-api/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyowm/default.nix b/pkgs/development/python-modules/pyowm/default.nix index 8b4555f9dfad..de5be3e86497 100644 --- a/pkgs/development/python-modules/pyowm/default.nix +++ b/pkgs/development/python-modules/pyowm/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyowm" ]; - meta = with lib; { + meta = { description = "Python wrapper around the OpenWeatherMap web API"; homepage = "https://pyowm.readthedocs.io/"; changelog = "https://github.com/csparpa/pyowm/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pypandoc/default.nix b/pkgs/development/python-modules/pypandoc/default.nix index 27f54ed1a2a7..5c0b0a5f837f 100644 --- a/pkgs/development/python-modules/pypandoc/default.nix +++ b/pkgs/development/python-modules/pypandoc/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypandoc" ]; - meta = with lib; { + meta = { description = "Thin wrapper for pandoc"; homepage = "https://github.com/JessicaTegner/pypandoc"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann bennofs ]; diff --git a/pkgs/development/python-modules/pyparsing/default.nix b/pkgs/development/python-modules/pyparsing/default.nix index 35734486d287..21b6f5232674 100644 --- a/pkgs/development/python-modules/pyparsing/default.nix +++ b/pkgs/development/python-modules/pyparsing/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { }); }; - meta = with lib; { + meta = { homepage = "https://github.com/pyparsing/pyparsing"; description = "Python library for creating PEG parsers"; longDescription = '' @@ -48,7 +48,7 @@ buildPythonPackage rec { regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code. ''; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pyparted/default.nix b/pkgs/development/python-modules/pyparted/default.nix index 6c8d93e0c2b8..5024e4dbe008 100644 --- a/pkgs/development/python-modules/pyparted/default.nix +++ b/pkgs/development/python-modules/pyparted/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { ]; propagatedBuildInputs = [ pkgs.parted ]; - meta = with lib; { + meta = { homepage = "https://github.com/dcantrell/pyparted/"; description = "Python interface for libparted"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pypblib/default.nix b/pkgs/development/python-modules/pypblib/default.nix index f4971a6b2577..e5547b0c6a95 100644 --- a/pkgs/development/python-modules/pypblib/default.nix +++ b/pkgs/development/python-modules/pypblib/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypblib" ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/pypblib/"; description = "PBLib Python3 Bindings"; - license = licenses.mit; - maintainers = [ maintainers.marius851000 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.marius851000 ]; }; } diff --git a/pkgs/development/python-modules/pypca/default.nix b/pkgs/development/python-modules/pypca/default.nix index 60203cd00fdc..3e2ca8f780a9 100644 --- a/pkgs/development/python-modules/pypca/default.nix +++ b/pkgs/development/python-modules/pypca/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypca" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the PCA 301 smart plugs"; mainProgram = "pypca"; homepage = "https://github.com/majuss/pypca"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pypck/default.nix b/pkgs/development/python-modules/pypck/default.nix index d39fbf604abf..cfee7557f515 100644 --- a/pkgs/development/python-modules/pypck/default.nix +++ b/pkgs/development/python-modules/pypck/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypck" ]; - meta = with lib; { + meta = { description = "LCN-PCK library written in Python"; homepage = "https://github.com/alengwenus/pypck"; changelog = "https://github.com/alengwenus/pypck/releases/tag/${src.tag}"; - license = licenses.epl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pypdf/default.nix b/pkgs/development/python-modules/pypdf/default.nix index 699079c67bd1..e95e1b7f8170 100644 --- a/pkgs/development/python-modules/pypdf/default.nix +++ b/pkgs/development/python-modules/pypdf/default.nix @@ -81,11 +81,11 @@ buildPythonPackage rec { "enable_socket" ]; - meta = with lib; { + meta = { description = "Pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files"; homepage = "https://github.com/py-pdf/pypdf"; changelog = "https://github.com/py-pdf/pypdf/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ javaes ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ javaes ]; }; } diff --git a/pkgs/development/python-modules/pypdf2/default.nix b/pkgs/development/python-modules/pypdf2/default.nix index 367846149147..3dd1a8166818 100644 --- a/pkgs/development/python-modules/pypdf2/default.nix +++ b/pkgs/development/python-modules/pypdf2/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "PyPDF2" ]; - meta = with lib; { + meta = { description = "Pure-Python library built as a PDF toolkit"; homepage = "https://pypdf2.readthedocs.io/"; changelog = "https://github.com/py-pdf/PyPDF2/raw/${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pypdf3/default.nix b/pkgs/development/python-modules/pypdf3/default.nix index f611eb5ae0b9..e74677c2b0bd 100644 --- a/pkgs/development/python-modules/pypdf3/default.nix +++ b/pkgs/development/python-modules/pypdf3/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ tqdm ]; - meta = with lib; { + meta = { description = "Pure-Python library built as a PDF toolkit"; homepage = "https://github.com/sfneal/PyPDF3"; - license = licenses.bsd3; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/pypeg2/default.nix b/pkgs/development/python-modules/pypeg2/default.nix index 3074eb61522d..6c225f19dddd 100644 --- a/pkgs/development/python-modules/pypeg2/default.nix +++ b/pkgs/development/python-modules/pypeg2/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { #https://bitbucket.org/fdik/pypeg/issues/36/test-failures-on-py35 doCheck = !isPy3k; - meta = with lib; { + meta = { description = "PEG parser interpreter in Python"; homepage = "http://fdik.org/pyPEG"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/pypemicro/default.nix b/pkgs/development/python-modules/pypemicro/default.nix index 42c783a6e4c2..1b6c53bed331 100644 --- a/pkgs/development/python-modules/pypemicro/default.nix +++ b/pkgs/development/python-modules/pypemicro/default.nix @@ -20,14 +20,14 @@ buildPythonPackage rec { # connected via USB doCheck = false; - meta = with lib; { + meta = { description = "Python interface for PEMicro debug probes"; homepage = "https://github.com/NXPmicro/pypemicro"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 unfree ]; # it includes shared libraries for which no license is available (https://github.com/NXPmicro/pypemicro/issues/10) - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ frogamic sbruder ]; diff --git a/pkgs/development/python-modules/pyperclip/default.nix b/pkgs/development/python-modules/pyperclip/default.nix index 6ae8a535b2d2..5d69da88c3dc 100644 --- a/pkgs/development/python-modules/pyperclip/default.nix +++ b/pkgs/development/python-modules/pyperclip/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyperclip" ]; - meta = with lib; { + meta = { homepage = "https://github.com/asweigart/pyperclip"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "Cross-platform clipboard module"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyperf/default.nix b/pkgs/development/python-modules/pyperf/default.nix index 8eb9987aeba4..291514e5903e 100644 --- a/pkgs/development/python-modules/pyperf/default.nix +++ b/pkgs/development/python-modules/pyperf/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyperf" ]; - meta = with lib; { + meta = { description = "Python module to generate and modify perf"; mainProgram = "pyperf"; homepage = "https://pyperf.readthedocs.io/"; changelog = "https://github.com/psf/pyperf/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyperscan/default.nix b/pkgs/development/python-modules/pyperscan/default.nix index 152911285702..ff31e3f6f988 100644 --- a/pkgs/development/python-modules/pyperscan/default.nix +++ b/pkgs/development/python-modules/pyperscan/default.nix @@ -38,16 +38,16 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyperscan" ]; - meta = with lib; { + meta = { description = "Hyperscan binding for Python, which supports vectorscan"; homepage = "https://vlaci.github.io/pyperscan/"; changelog = "https://github.com/vlaci/pyperscan/releases/tag/${src.rev}"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tnias vlaci ]; diff --git a/pkgs/development/python-modules/pyphen/default.nix b/pkgs/development/python-modules/pyphen/default.nix index bfb0f0d84038..9152cb860621 100644 --- a/pkgs/development/python-modules/pyphen/default.nix +++ b/pkgs/development/python-modules/pyphen/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyphen" ]; - meta = with lib; { + meta = { description = "Module to hyphenate text"; homepage = "https://github.com/Kozea/Pyphen"; changelog = "https://github.com/Kozea/Pyphen/releases/tag/${version}"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl21 mpl20 diff --git a/pkgs/development/python-modules/pyphotonfile/default.nix b/pkgs/development/python-modules/pyphotonfile/default.nix index 775033c11570..174616fa66ab 100644 --- a/pkgs/development/python-modules/pyphotonfile/default.nix +++ b/pkgs/development/python-modules/pyphotonfile/default.nix @@ -25,9 +25,9 @@ buildPythonPackage { sha256 = "sha256-iB5ky4fPX8ZnvXlDpggqS/345k2x/mPC4cIgb9M0f/c="; }; - meta = with lib; { - maintainers = [ maintainers.cab404 ]; - license = licenses.gpl3Plus; + meta = { + maintainers = [ lib.maintainers.cab404 ]; + license = lib.licenses.gpl3Plus; description = "Library for reading and writing files for the Anycubic Photon 3D-Printer"; homepage = "https://github.com/cab404/pyphotonfile"; }; diff --git a/pkgs/development/python-modules/pypika/default.nix b/pkgs/development/python-modules/pypika/default.nix index 92c043fe8d4e..11fa9455b4bf 100644 --- a/pkgs/development/python-modules/pypika/default.nix +++ b/pkgs/development/python-modules/pypika/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python SQL query builder"; homepage = "https://github.com/kayak/pypika"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pypinyin/default.nix b/pkgs/development/python-modules/pypinyin/default.nix index 8f5011c66981..248cd6c9fb34 100644 --- a/pkgs/development/python-modules/pypinyin/default.nix +++ b/pkgs/development/python-modules/pypinyin/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { enabledTestPaths = [ "tests" ]; - meta = with lib; { + meta = { description = "Chinese Characters to Pinyin - 汉字转拼音"; mainProgram = "pypinyin"; homepage = "https://github.com/mozillazg/python-pinyin"; changelog = "https://github.com/mozillazg/python-pinyin/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/pypiserver/default.nix b/pkgs/development/python-modules/pypiserver/default.nix index bfa5c7d55902..4ec510df331c 100644 --- a/pkgs/development/python-modules/pypiserver/default.nix +++ b/pkgs/development/python-modules/pypiserver/default.nix @@ -84,15 +84,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypiserver" ]; - meta = with lib; { + meta = { description = "Minimal PyPI server for use with pip/easy_install"; homepage = "https://github.com/pypiserver/pypiserver"; changelog = "https://github.com/pypiserver/pypiserver/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ mit zlib ]; - maintainers = with maintainers; [ austinbutler ]; + maintainers = with lib.maintainers; [ austinbutler ]; mainProgram = "pypi-server"; }; } diff --git a/pkgs/development/python-modules/pypitoken/default.nix b/pkgs/development/python-modules/pypitoken/default.nix index e75a720dbad7..aa27b8c8971b 100644 --- a/pkgs/development/python-modules/pypitoken/default.nix +++ b/pkgs/development/python-modules/pypitoken/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypitoken" ]; - meta = with lib; { + meta = { description = "Library for generating and manipulating PyPI tokens"; homepage = "https://pypitoken.readthedocs.io/"; changelog = "https://github.com/ewjoachim/pypitoken/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyplaato/default.nix b/pkgs/development/python-modules/pyplaato/default.nix index 35a3136c9edc..ce06bd3672e0 100644 --- a/pkgs/development/python-modules/pyplaato/default.nix +++ b/pkgs/development/python-modules/pyplaato/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyplaato" ]; - meta = with lib; { + meta = { description = "Python API client for fetching Plaato data"; homepage = "https://github.com/JohNan/pyplaato"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyplatec/default.nix b/pkgs/development/python-modules/pyplatec/default.nix index 360a45925256..4b960f0f7461 100644 --- a/pkgs/development/python-modules/pyplatec/default.nix +++ b/pkgs/development/python-modules/pyplatec/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { env.NIX_CFLAGS_COMPILE = "-std=c++11"; - meta = with lib; { + meta = { description = "Library to simulate plate tectonics with Python bindings"; homepage = "https://github.com/Mindwerks/plate-tectonics"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; }; } diff --git a/pkgs/development/python-modules/pypng/default.nix b/pkgs/development/python-modules/pypng/default.nix index 13f7e7b1d712..7a1f1546ed8a 100644 --- a/pkgs/development/python-modules/pypng/default.nix +++ b/pkgs/development/python-modules/pypng/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pure Python library for PNG image encoding/decoding"; homepage = "https://gitlab.com/drj11/pypng"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/pypoint/default.nix b/pkgs/development/python-modules/pypoint/default.nix index e15cfecdd72b..096feab08a2b 100644 --- a/pkgs/development/python-modules/pypoint/default.nix +++ b/pkgs/development/python-modules/pypoint/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypoint" ]; - meta = with lib; { + meta = { description = "Python module for communicating with Minut Point"; homepage = "https://github.com/fredrike/pypoint"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pypoolstation/default.nix b/pkgs/development/python-modules/pypoolstation/default.nix index 00f99a3bdd68..670e6e28af2a 100644 --- a/pkgs/development/python-modules/pypoolstation/default.nix +++ b/pkgs/development/python-modules/pypoolstation/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypoolstation" ]; - meta = with lib; { + meta = { description = "Python library to interact the the Poolstation platform"; homepage = "https://github.com/cibernox/PyPoolstation"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyppeteer-ng/default.nix b/pkgs/development/python-modules/pyppeteer-ng/default.nix index b4674d023e26..8894038470e9 100644 --- a/pkgs/development/python-modules/pyppeteer-ng/default.nix +++ b/pkgs/development/python-modules/pyppeteer-ng/default.nix @@ -149,12 +149,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyppeteer" ]; - meta = with lib; { + meta = { description = "Headless chrome/chromium automation library (unofficial port of puppeteer)"; mainProgram = "pyppeteer-install"; homepage = "https://github.com/dgtlmoon/pyppeteer-ng"; changelog = "https://github.com/dgtlmoon/pyppeteer-ng/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ thanegill ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thanegill ]; }; } diff --git a/pkgs/development/python-modules/pyppeteer/default.nix b/pkgs/development/python-modules/pyppeteer/default.nix index f7a754b8a1f0..cc4b8eca785f 100644 --- a/pkgs/development/python-modules/pyppeteer/default.nix +++ b/pkgs/development/python-modules/pyppeteer/default.nix @@ -84,12 +84,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyppeteer" ]; - meta = with lib; { + meta = { description = "Headless chrome/chromium automation library (unofficial port of puppeteer)"; mainProgram = "pyppeteer-install"; homepage = "https://github.com/pyppeteer/pyppeteer"; changelog = "https://github.com/pyppeteer/pyppeteer/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kmein ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kmein ]; }; } diff --git a/pkgs/development/python-modules/pyprind/default.nix b/pkgs/development/python-modules/pyprind/default.nix index 3f8b8cf5b895..133f86677c89 100644 --- a/pkgs/development/python-modules/pyprind/default.nix +++ b/pkgs/development/python-modules/pyprind/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { py.test tests ''; - meta = with lib; { + meta = { description = "Python Progress Bar and Percent Indicator Utility"; homepage = "https://github.com/rasbt/pyprind"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyprobables/default.nix b/pkgs/development/python-modules/pyprobables/default.nix index d5982a5825f5..c2213a11ba12 100644 --- a/pkgs/development/python-modules/pyprobables/default.nix +++ b/pkgs/development/python-modules/pyprobables/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "probables" ]; - meta = with lib; { + meta = { description = "Probabilistic data structures"; homepage = "https://github.com/barrust/pyprobables"; changelog = "https://github.com/barrust/pyprobables/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyproj/default.nix b/pkgs/development/python-modules/pyproj/default.nix index 1f552b3e7e34..9cdefcf89b99 100644 --- a/pkgs/development/python-modules/pyproj/default.nix +++ b/pkgs/development/python-modules/pyproj/default.nix @@ -96,15 +96,15 @@ buildPythonPackage rec { "pyproj.exceptions" ]; - meta = with lib; { + meta = { description = "Python interface to PROJ library"; mainProgram = "pyproj"; homepage = "https://github.com/pyproj4/pyproj"; changelog = "https://github.com/pyproj4/pyproj/blob/${src.rev}/docs/history.rst"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; - teams = [ teams.geospatial ]; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/development/python-modules/pyproject-api/default.nix b/pkgs/development/python-modules/pyproject-api/default.nix index 21232a08ca6e..7e2a9abcd07f 100644 --- a/pkgs/development/python-modules/pyproject-api/default.nix +++ b/pkgs/development/python-modules/pyproject-api/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyproject_api" ]; - meta = with lib; { + meta = { changelog = "https://github.com/tox-dev/pyproject-api/releases/tag/${version}"; description = "API to interact with the python pyproject.toml based projects"; homepage = "https://github.com/tox-dev/pyproject-api"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyproject-hooks/default.nix b/pkgs/development/python-modules/pyproject-hooks/default.nix index 8b34fe55b1c5..6cf914490fa2 100644 --- a/pkgs/development/python-modules/pyproject-hooks/default.nix +++ b/pkgs/development/python-modules/pyproject-hooks/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyproject_hooks" ]; - meta = with lib; { + meta = { description = "Low-level library for calling build-backends in `pyproject.toml`-based project"; homepage = "https://github.com/pypa/pyproject-hooks"; changelog = "https://github.com/pypa/pyproject-hooks/blob/v${version}/docs/changelog.rst"; - license = licenses.mit; - teams = [ teams.python ]; + license = lib.licenses.mit; + teams = [ lib.teams.python ]; }; } diff --git a/pkgs/development/python-modules/pyproject-metadata/default.nix b/pkgs/development/python-modules/pyproject-metadata/default.nix index e96efbed0730..d1f4b07cc93a 100644 --- a/pkgs/development/python-modules/pyproject-metadata/default.nix +++ b/pkgs/development/python-modules/pyproject-metadata/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyproject_metadata" ]; - meta = with lib; { + meta = { description = "PEP 621 metadata parsing"; homepage = "https://github.com/FFY00/python-pyproject-metadata"; changelog = "https://github.com/FFY00/python-pyproject-metadata/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pyprosegur/default.nix b/pkgs/development/python-modules/pyprosegur/default.nix index 2e392f9cfa2d..eb55f569ca81 100644 --- a/pkgs/development/python-modules/pyprosegur/default.nix +++ b/pkgs/development/python-modules/pyprosegur/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyprosegur" ]; - meta = with lib; { + meta = { description = "Python module to communicate with Prosegur Residential Alarms"; homepage = "https://github.com/dgomes/pyprosegur"; changelog = "https://github.com/dgomes/pyprosegur/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pyprosegur"; }; } diff --git a/pkgs/development/python-modules/pyprusalink/default.nix b/pkgs/development/python-modules/pyprusalink/default.nix index d57c96c6e9a0..562344d453e6 100644 --- a/pkgs/development/python-modules/pyprusalink/default.nix +++ b/pkgs/development/python-modules/pyprusalink/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyprusalink" ]; - meta = with lib; { + meta = { description = "Library to communicate with PrusaLink"; homepage = "https://github.com/home-assistant-libs/pyprusalink"; changelog = "https://github.com/home-assistant-libs/pyprusalink/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pypsrp/default.nix b/pkgs/development/python-modules/pypsrp/default.nix index 244877d01240..12044ca1cfae 100644 --- a/pkgs/development/python-modules/pypsrp/default.nix +++ b/pkgs/development/python-modules/pypsrp/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { "test_psrp_multiple_commands" ]; - meta = with lib; { + meta = { description = "PowerShell Remoting Protocol Client library"; homepage = "https://github.com/jborean93/pypsrp"; changelog = "https://github.com/jborean93/pypsrp/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyptlib/default.nix b/pkgs/development/python-modules/pyptlib/default.nix index 04a7a13248a2..98c1e46318ef 100644 --- a/pkgs/development/python-modules/pyptlib/default.nix +++ b/pkgs/development/python-modules/pyptlib/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { doCheck = false; # No such file or directory errors on 32bit - meta = with lib; { + meta = { homepage = "https://pypi.org/project/pyptlib/"; description = "Python implementation of the Pluggable Transports for Circumvention specification for Tor"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/pypubsub/default.nix b/pkgs/development/python-modules/pypubsub/default.nix index 895bca300e39..3b4f97f73a61 100644 --- a/pkgs/development/python-modules/pypubsub/default.nix +++ b/pkgs/development/python-modules/pypubsub/default.nix @@ -26,7 +26,7 @@ buildPythonPackage { py.test ''; - meta = with lib; { + meta = { homepage = "https://github.com/schollii/pypubsub"; description = "Python 3 publish-subcribe library"; longDescription = '' @@ -39,6 +39,6 @@ buildPythonPackage { maintaining topics and messages in larger desktop- or server-based applications. ''; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/pypugjs/default.nix b/pkgs/development/python-modules/pypugjs/default.nix index bacf8cf34bd0..3950a03a62f8 100644 --- a/pkgs/development/python-modules/pypugjs/default.nix +++ b/pkgs/development/python-modules/pypugjs/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "pypugjs" ]; - meta = with lib; { + meta = { description = "PugJS syntax template adapter for Django, Jinja2, Mako and Tornado templates"; mainProgram = "pypugjs"; homepage = "https://github.com/kakulukia/pypugjs"; - license = licenses.mit; - maintainers = with maintainers; [ lopsided98 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/development/python-modules/pypykatz/default.nix b/pkgs/development/python-modules/pypykatz/default.nix index 39ce2c969b0b..82eb2d1de893 100644 --- a/pkgs/development/python-modules/pypykatz/default.nix +++ b/pkgs/development/python-modules/pypykatz/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pypykatz" ]; - meta = with lib; { + meta = { description = "Mimikatz implementation in Python"; mainProgram = "pypykatz"; homepage = "https://github.com/skelsec/pypykatz"; changelog = "https://github.com/skelsec/pypykatz/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pypytools/default.nix b/pkgs/development/python-modules/pypytools/default.nix index 6c6a74b43a9e..7a3eb0925355 100644 --- a/pkgs/development/python-modules/pypytools/default.nix +++ b/pkgs/development/python-modules/pypytools/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { "test_clonefunc" ]; - meta = with lib; { + meta = { description = "Collection of tools to use PyPy-specific features"; homepage = "https://github.com/antocuni/pypytools"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyqrcode/default.nix b/pkgs/development/python-modules/pyqrcode/default.nix index 0e56354a96dc..6ed1ca58e0d4 100644 --- a/pkgs/development/python-modules/pyqrcode/default.nix +++ b/pkgs/development/python-modules/pyqrcode/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # No tests in PyPI tarball doCheck = false; - meta = with lib; { + meta = { description = "QR code generator written purely in Python with SVG, EPS, PNG and terminal output"; homepage = "https://github.com/mnooner256/pyqrcode"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyqt-builder/default.nix b/pkgs/development/python-modules/pyqt-builder/default.nix index 4d2c214a579c..82ae97e76fbd 100644 --- a/pkgs/development/python-modules/pyqt-builder/default.nix +++ b/pkgs/development/python-modules/pyqt-builder/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # There aren't tests doCheck = false; - meta = with lib; { + meta = { description = "PEP 517 compliant build system for PyQt"; homepage = "https://github.com/Python-PyQt/PyQt-builder"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index 36dbe9065b92..98e54758ac94 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -198,10 +198,10 @@ buildPythonPackage rec { ++ lib.optional withSerialPort "PyQt5.QtSerialPort" ++ lib.optional withTools "PyQt5.QtDesigner"; - meta = with lib; { + meta = { description = "Python bindings for Qt5"; homepage = "https://riverbankcomputing.com/"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; inherit (mesa.meta) platforms; }; } diff --git a/pkgs/development/python-modules/pyqt/6.x.nix b/pkgs/development/python-modules/pyqt/6.x.nix index 492550a0eded..77f98e1b808b 100644 --- a/pkgs/development/python-modules/pyqt/6.x.nix +++ b/pkgs/development/python-modules/pyqt/6.x.nix @@ -154,11 +154,11 @@ buildPythonPackage rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-Wno-address-of-temporary"; - meta = with lib; { + meta = { description = "Python bindings for Qt6"; homepage = "https://riverbankcomputing.com/"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; inherit (mesa.meta) platforms; - maintainers = with maintainers; [ LunNova ]; + maintainers = with lib.maintainers; [ LunNova ]; }; } diff --git a/pkgs/development/python-modules/pyqt/pyqt6-sip.nix b/pkgs/development/python-modules/pyqt/pyqt6-sip.nix index 48ce7df0fd9a..91c0dcbab06b 100644 --- a/pkgs/development/python-modules/pyqt/pyqt6-sip.nix +++ b/pkgs/development/python-modules/pyqt/pyqt6-sip.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "PyQt6.sip" ]; - meta = with lib; { + meta = { description = "Python bindings for Qt5"; homepage = "https://github.com/Python-SIP/sip"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; inherit (mesa.meta) platforms; - maintainers = with maintainers; [ LunNova ]; + maintainers = with lib.maintainers; [ LunNova ]; }; } diff --git a/pkgs/development/python-modules/pyqt/sip.nix b/pkgs/development/python-modules/pyqt/sip.nix index abb3f7e84387..e6d29d195c4d 100644 --- a/pkgs/development/python-modules/pyqt/sip.nix +++ b/pkgs/development/python-modules/pyqt/sip.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "PyQt5.sip" ]; - meta = with lib; { + meta = { description = "Python bindings for Qt5"; homepage = "https://github.com/Python-SIP/sip"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; inherit (mesa.meta) platforms; }; } diff --git a/pkgs/development/python-modules/pyqt3d/default.nix b/pkgs/development/python-modules/pyqt3d/default.nix index 487ab3a10985..c87af815d288 100644 --- a/pkgs/development/python-modules/pyqt3d/default.nix +++ b/pkgs/development/python-modules/pyqt3d/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "PyQt5.Qt3DCore" ]; - meta = with lib; { + meta = { description = "Python bindings for the Qt 3D framework"; homepage = "https://riverbankcomputing.com/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ panicgh ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ panicgh ]; }; } diff --git a/pkgs/development/python-modules/pyqt5-stubs/default.nix b/pkgs/development/python-modules/pyqt5-stubs/default.nix index f78ba772eedf..507828e71b68 100644 --- a/pkgs/development/python-modules/pyqt5-stubs/default.nix +++ b/pkgs/development/python-modules/pyqt5-stubs/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pyqtwebengine ]; - meta = with lib; { + meta = { description = "Stubs for PyQt5"; homepage = "https://github.com/python-qt-tools/PyQt5-stubs"; - license = licenses.gpl3; - maintainers = with maintainers; [ _999eagle ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ _999eagle ]; }; } diff --git a/pkgs/development/python-modules/pyqtchart/default.nix b/pkgs/development/python-modules/pyqtchart/default.nix index 2ee389ad2075..57890f079cea 100644 --- a/pkgs/development/python-modules/pyqtchart/default.nix +++ b/pkgs/development/python-modules/pyqtchart/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "PyQt5.QtChart" ]; - meta = with lib; { + meta = { description = "Python bindings for the Qt Charts library"; homepage = "https://riverbankcomputing.com/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ panicgh ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ panicgh ]; }; } diff --git a/pkgs/development/python-modules/pyqtdarktheme/default.nix b/pkgs/development/python-modules/pyqtdarktheme/default.nix index 2f9b290a10ab..8803c8fd165b 100644 --- a/pkgs/development/python-modules/pyqtdarktheme/default.nix +++ b/pkgs/development/python-modules/pyqtdarktheme/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { export QT_QPA_PLATFORM=offscreen ''; - meta = with lib; { + meta = { description = "Flat dark theme for PySide and PyQt"; homepage = "https://pyqtdarktheme.readthedocs.io/en/stable"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyqtdatavisualization/default.nix b/pkgs/development/python-modules/pyqtdatavisualization/default.nix index 9fce4b02bc7d..7e3d80623290 100644 --- a/pkgs/development/python-modules/pyqtdatavisualization/default.nix +++ b/pkgs/development/python-modules/pyqtdatavisualization/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "PyQt5.QtDataVisualization" ]; - meta = with lib; { + meta = { description = "Python bindings for the Qt Data Visualization library"; homepage = "https://riverbankcomputing.com/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ panicgh ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ panicgh ]; }; } diff --git a/pkgs/development/python-modules/pyquaternion/default.nix b/pkgs/development/python-modules/pyquaternion/default.nix index 1aba824aeecc..510678422607 100644 --- a/pkgs/development/python-modules/pyquaternion/default.nix +++ b/pkgs/development/python-modules/pyquaternion/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyquaternion" ]; - meta = with lib; { + meta = { description = "Library for representing and using quaternions"; homepage = "http://kieranwynn.github.io/pyquaternion/"; - license = licenses.mit; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/pyquery/default.nix b/pkgs/development/python-modules/pyquery/default.nix index cc905d0842b9..69c80c1dcd0c 100644 --- a/pkgs/development/python-modules/pyquery/default.nix +++ b/pkgs/development/python-modules/pyquery/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { "test_session" ]; - meta = with lib; { + meta = { description = "Jquery-like library for Python"; homepage = "https://github.com/gawel/pyquery"; changelog = "https://github.com/gawel/pyquery/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pyqvrpro/default.nix b/pkgs/development/python-modules/pyqvrpro/default.nix index a9ee08df28d1..39b873ba98e1 100644 --- a/pkgs/development/python-modules/pyqvrpro/default.nix +++ b/pkgs/development/python-modules/pyqvrpro/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyqvrpro" ]; - meta = with lib; { + meta = { description = "Module for interfacing with QVR Pro API"; homepage = "https://github.com/oblogic7/pyqvrpro"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyqwikswitch/default.nix b/pkgs/development/python-modules/pyqwikswitch/default.nix index f519e7c21275..0a22ec145f06 100644 --- a/pkgs/development/python-modules/pyqwikswitch/default.nix +++ b/pkgs/development/python-modules/pyqwikswitch/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { doCheck = false; # no tests in sdist - meta = with lib; { + meta = { description = "QwikSwitch USB Modem API binding for Python"; homepage = "https://github.com/kellerza/pyqwikswitch"; - license = licenses.mit; - teams = [ teams.home-assistant ]; + license = lib.licenses.mit; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/development/python-modules/pyrabbit2/default.nix b/pkgs/development/python-modules/pyrabbit2/default.nix index cd1da7f06184..40515e959ea2 100644 --- a/pkgs/development/python-modules/pyrabbit2/default.nix +++ b/pkgs/development/python-modules/pyrabbit2/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ requests ]; - meta = with lib; { + meta = { description = "Pythonic interface to the RabbitMQ Management HTTP API"; homepage = "https://github.com/deslum/pyrabbit2"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyradiomics/default.nix b/pkgs/development/python-modules/pyradiomics/default.nix index 1126700a431d..ef26b70cb6e2 100644 --- a/pkgs/development/python-modules/pyradiomics/default.nix +++ b/pkgs/development/python-modules/pyradiomics/default.nix @@ -58,12 +58,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "radiomics" ]; - meta = with lib; { + meta = { homepage = "https://pyradiomics.readthedocs.io"; description = "Extraction of Radiomics features from 2D and 3D images and binary masks"; mainProgram = "pyradiomics"; changelog = "https://github.com/AIM-Harvard/pyradiomics/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pyradios/default.nix b/pkgs/development/python-modules/pyradios/default.nix index 1b6832ae642c..147753caf389 100644 --- a/pkgs/development/python-modules/pyradios/default.nix +++ b/pkgs/development/python-modules/pyradios/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # Tests and pythonImportsCheck require network access doCheck = false; - meta = with lib; { + meta = { description = "Python client for the https://api.radio-browser.info"; homepage = "https://github.com/andreztz/pyradios"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyrainbird/default.nix b/pkgs/development/python-modules/pyrainbird/default.nix index b145c5bd469e..f9dd33ae3ed4 100644 --- a/pkgs/development/python-modules/pyrainbird/default.nix +++ b/pkgs/development/python-modules/pyrainbird/default.nix @@ -66,11 +66,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrainbird" ]; - meta = with lib; { + meta = { description = "Module to interact with Rainbird controllers"; homepage = "https://github.com/allenporter/pyrainbird"; changelog = "https://github.com/allenporter/pyrainbird/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyramid-chameleon/default.nix b/pkgs/development/python-modules/pyramid-chameleon/default.nix index 05d692f1c262..f6770c5fd985 100644 --- a/pkgs/development/python-modules/pyramid-chameleon/default.nix +++ b/pkgs/development/python-modules/pyramid-chameleon/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyramid_chameleon" ]; - meta = with lib; { + meta = { description = "Chameleon template compiler for pyramid"; homepage = "https://github.com/Pylons/pyramid_chameleon"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid-exclog/default.nix b/pkgs/development/python-modules/pyramid-exclog/default.nix index be97087ec4fc..1d0a1ca13a74 100644 --- a/pkgs/development/python-modules/pyramid-exclog/default.nix +++ b/pkgs/development/python-modules/pyramid-exclog/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyramid_exclog" ]; - meta = with lib; { + meta = { description = "Package which logs to a Python logger when an exception is raised by a Pyramid application"; homepage = "https://docs.pylonsproject.org/"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid-jinja2/default.nix b/pkgs/development/python-modules/pyramid-jinja2/default.nix index e9f82a762a4b..4932e4276b74 100644 --- a/pkgs/development/python-modules/pyramid-jinja2/default.nix +++ b/pkgs/development/python-modules/pyramid-jinja2/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { "test_options" ]; - meta = with lib; { + meta = { description = "Jinja2 template bindings for the Pyramid web framework"; homepage = "https://github.com/Pylons/pyramid_jinja2"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid-mako/default.nix b/pkgs/development/python-modules/pyramid-mako/default.nix index f362fae17517..4644bffdba25 100644 --- a/pkgs/development/python-modules/pyramid-mako/default.nix +++ b/pkgs/development/python-modules/pyramid-mako/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { mako ]; - meta = with lib; { + meta = { homepage = "https://github.com/Pylons/pyramid_mako"; description = "Mako template bindings for the Pyramid web framework"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid/default.nix b/pkgs/development/python-modules/pyramid/default.nix index 631f23ba8152..66d00057bea9 100644 --- a/pkgs/development/python-modules/pyramid/default.nix +++ b/pkgs/development/python-modules/pyramid/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyramid" ]; - meta = with lib; { + meta = { description = "Python web framework"; homepage = "https://trypyramid.com/"; changelog = "https://github.com/Pylons/pyramid/blob/${version}/CHANGES.rst"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyrdfa3/default.nix b/pkgs/development/python-modules/pyrdfa3/default.nix index a1b7c05a31ee..e0fab4a58ad9 100644 --- a/pkgs/development/python-modules/pyrdfa3/default.nix +++ b/pkgs/development/python-modules/pyrdfa3/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyRdfa" ]; - meta = with lib; { + meta = { description = "RDFa 1.1 distiller/parser library"; homepage = "https://github.com/prrvchr/pyrdfa3/"; changelog = "https://github.com/prrvchr/pyrdfa3/releases/tag/v${version}"; - license = licenses.w3c; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.w3c; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/pyre-extensions/default.nix b/pkgs/development/python-modules/pyre-extensions/default.nix index 3e0fd51915a2..d0d7beb95e0c 100644 --- a/pkgs/development/python-modules/pyre-extensions/default.nix +++ b/pkgs/development/python-modules/pyre-extensions/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { pythonImportsCheck = [ "pyre_extensions" ]; - meta = with lib; { + meta = { description = "This module defines extensions to the standard “typing” module that are supported by the Pyre typechecker"; homepage = "https://pypi.org/project/pyre-extensions"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/pyreaderwriterlock/default.nix b/pkgs/development/python-modules/pyreaderwriterlock/default.nix index 793b3ab382fb..f3e63a7743f8 100644 --- a/pkgs/development/python-modules/pyreaderwriterlock/default.nix +++ b/pkgs/development/python-modules/pyreaderwriterlock/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "readerwriterlock" ]; - meta = with lib; { + meta = { changelog = "https://github.com/elarivie/pyReaderWriterLock/blob/master/CHANGELOG.md"; description = "Implementation of the Readers-writers problem"; homepage = "https://github.com/elarivie/pyReaderWriterLock"; - license = licenses.mit; - maintainers = with maintainers; [ MayNiklas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MayNiklas ]; }; } diff --git a/pkgs/development/python-modules/pyreadstat/default.nix b/pkgs/development/python-modules/pyreadstat/default.nix index a2c0f059e43c..3a2e44cd937a 100644 --- a/pkgs/development/python-modules/pyreadstat/default.nix +++ b/pkgs/development/python-modules/pyreadstat/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Module to read SAS, SPSS and Stata files into pandas data frames"; homepage = "https://github.com/Roche/pyreadstat"; changelog = "https://github.com/Roche/pyreadstat/blob/${src.tag}/change_log.md"; - license = licenses.asl20; - maintainers = with maintainers; [ swflint ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ swflint ]; }; } diff --git a/pkgs/development/python-modules/pyrect/default.nix b/pkgs/development/python-modules/pyrect/default.nix index 757ad7ef886b..a5503cfd2215 100644 --- a/pkgs/development/python-modules/pyrect/default.nix +++ b/pkgs/development/python-modules/pyrect/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrect" ]; - meta = with lib; { + meta = { description = "Simple module with a Rect class for Pygame-like rectangular areas"; homepage = "https://github.com/asweigart/pyrect"; - license = licenses.bsd3; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/pyregion/default.nix b/pkgs/development/python-modules/pyregion/default.nix index 0e2c540b95fa..3fb0bc09fef2 100644 --- a/pkgs/development/python-modules/pyregion/default.nix +++ b/pkgs/development/python-modules/pyregion/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { popd ''; - meta = with lib; { + meta = { changelog = "https://github.com/astropy/pyregion/blob/${src.tag}/CHANGES.rst"; description = "Python parser for ds9 region files"; homepage = "https://github.com/astropy/pyregion"; - license = licenses.mit; - maintainers = [ maintainers.smaret ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.smaret ]; }; } diff --git a/pkgs/development/python-modules/pyrender/default.nix b/pkgs/development/python-modules/pyrender/default.nix index 3e6232463a74..8035880a9b68 100644 --- a/pkgs/development/python-modules/pyrender/default.nix +++ b/pkgs/development/python-modules/pyrender/default.nix @@ -93,11 +93,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrender" ]; - meta = with lib; { + meta = { homepage = "https://pyrender.readthedocs.io/en/latest/"; description = "Easy-to-use glTF 2.0-compliant OpenGL renderer for visualization of 3D scenes"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/development/python-modules/pyrevolve/default.nix b/pkgs/development/python-modules/pyrevolve/default.nix index ba3b693a4ff8..c65e9f79718a 100644 --- a/pkgs/development/python-modules/pyrevolve/default.nix +++ b/pkgs/development/python-modules/pyrevolve/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrevolve" ]; - meta = with lib; { + meta = { homepage = "https://github.com/devitocodes/pyrevolve"; changelog = "https://github.com/devitocodes/pyrevolve/releases/tag/${src.tag}"; description = "Python library to manage checkpointing for adjoints"; - license = licenses.epl10; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ atila ]; }; } diff --git a/pkgs/development/python-modules/pyrfc3339/default.nix b/pkgs/development/python-modules/pyrfc3339/default.nix index f5c37abc52ed..19ad6dbe5808 100644 --- a/pkgs/development/python-modules/pyrfc3339/default.nix +++ b/pkgs/development/python-modules/pyrfc3339/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "pyrfc3339" ]; - meta = with lib; { + meta = { changelog = "https://github.com/kurtraschke/pyRFC3339/blob/${src.tag}/CHANGES.rst"; description = "Generate and parse RFC 3339 timestamps"; homepage = "https://github.com/kurtraschke/pyRFC3339"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pyrfxtrx/default.nix b/pkgs/development/python-modules/pyrfxtrx/default.nix index c4ffab6c9c90..eca156d9383b 100644 --- a/pkgs/development/python-modules/pyrfxtrx/default.nix +++ b/pkgs/development/python-modules/pyrfxtrx/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Library to communicate with the RFXtrx family of devices"; homepage = "https://github.com/Danielhiversen/pyRFXtrx"; changelog = "https://github.com/Danielhiversen/pyRFXtrx/releases/tag/${src.tag}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyric/default.nix b/pkgs/development/python-modules/pyric/default.nix index e8a29ae7258c..23c2aa5856f9 100644 --- a/pkgs/development/python-modules/pyric/default.nix +++ b/pkgs/development/python-modules/pyric/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyric" ]; - meta = with lib; { + meta = { description = "Python Radio Interface Controller"; homepage = "https://github.com/wraith-wireless/PyRIC"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyring-buffer/default.nix b/pkgs/development/python-modules/pyring-buffer/default.nix index 5b8b178b03ba..3cc187c2e5bf 100644 --- a/pkgs/development/python-modules/pyring-buffer/default.nix +++ b/pkgs/development/python-modules/pyring-buffer/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyring_buffer" ]; - meta = with lib; { + meta = { description = "Pure Python ring buffer for bytes"; homepage = "https://github.com/rhasspy/pyring-buffer"; changelog = "https://github.com/rhasspy/pyring-buffer/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyrisco/default.nix b/pkgs/development/python-modules/pyrisco/default.nix index 545260213653..b4a385bb2a6e 100644 --- a/pkgs/development/python-modules/pyrisco/default.nix +++ b/pkgs/development/python-modules/pyrisco/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrisco" ]; - meta = with lib; { + meta = { description = "Python interface to Risco alarm systems through Risco Cloud"; homepage = "https://github.com/OnFreund/pyrisco"; changelog = "https://github.com/OnFreund/pyrisco/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyrituals/default.nix b/pkgs/development/python-modules/pyrituals/default.nix index e883586840fe..b9e5ed8fa0e1 100644 --- a/pkgs/development/python-modules/pyrituals/default.nix +++ b/pkgs/development/python-modules/pyrituals/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrituals" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Rituals Perfume Genie API"; homepage = "https://github.com/milanmeu/pyrituals"; changelog = "https://github.com/milanmeu/pyrituals/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyrmvtransport/default.nix b/pkgs/development/python-modules/pyrmvtransport/default.nix index 1da4794cd2cb..c387465d6f42 100644 --- a/pkgs/development/python-modules/pyrmvtransport/default.nix +++ b/pkgs/development/python-modules/pyrmvtransport/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "RMVtransport" ]; - meta = with lib; { + meta = { homepage = "https://github.com/cgtobi/PyRMVtransport"; description = "Get transport information from opendata.rmv.de"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyro-ppl/default.nix b/pkgs/development/python-modules/pyro-ppl/default.nix index d126bd4a66a8..b655ddfeda69 100644 --- a/pkgs/development/python-modules/pyro-ppl/default.nix +++ b/pkgs/development/python-modules/pyro-ppl/default.nix @@ -73,12 +73,12 @@ buildPythonPackage rec { "pyro.optim" ]; - meta = with lib; { + meta = { description = "Library for probabilistic modeling and inference"; homepage = "http://pyro.ai"; changelog = "https://github.com/pyro-ppl/pyro/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teh georgewhewell ]; diff --git a/pkgs/development/python-modules/pyro4/default.nix b/pkgs/development/python-modules/pyro4/default.nix index 387d5135d2d7..eefb23a01a9b 100644 --- a/pkgs/development/python-modules/pyro4/default.nix +++ b/pkgs/development/python-modules/pyro4/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "Pyro4" ]; - meta = with lib; { + meta = { description = "Distributed object middleware for Python (RPC)"; homepage = "https://github.com/irmen/Pyro4"; changelog = "https://github.com/irmen/Pyro4/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/pyro5/default.nix b/pkgs/development/python-modules/pyro5/default.nix index db4d9ba20209..d67d2b8341e2 100644 --- a/pkgs/development/python-modules/pyro5/default.nix +++ b/pkgs/development/python-modules/pyro5/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "Pyro5" ]; - meta = with lib; { + meta = { description = "Distributed object middleware for Python (RPC)"; homepage = "https://github.com/irmen/Pyro5"; changelog = "https://github.com/irmen/Pyro5/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/pyrogram/default.nix b/pkgs/development/python-modules/pyrogram/default.nix index b7961fa3e690..daf9ccd7869b 100644 --- a/pkgs/development/python-modules/pyrogram/default.nix +++ b/pkgs/development/python-modules/pyrogram/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "pyrogram.types" ]; - meta = with lib; { + meta = { description = "Telegram MTProto API Client Library and Framework for Python"; homepage = "https://github.com/pyrogram/pyrogram"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyroma/default.nix b/pkgs/development/python-modules/pyroma/default.nix index eacbbe5b8b9c..c515f22dd20e 100644 --- a/pkgs/development/python-modules/pyroma/default.nix +++ b/pkgs/development/python-modules/pyroma/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyroma" ]; - meta = with lib; { + meta = { description = "Test your project's packaging friendliness"; mainProgram = "pyroma"; homepage = "https://github.com/regebro/pyroma"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pyroute2/default.nix b/pkgs/development/python-modules/pyroute2/default.nix index 2de70282e0c7..b2f3830d0b40 100644 --- a/pkgs/development/python-modules/pyroute2/default.nix +++ b/pkgs/development/python-modules/pyroute2/default.nix @@ -40,18 +40,18 @@ buildPythonPackage rec { make VERSION ''; - meta = with lib; { + meta = { description = "Python Netlink library"; homepage = "https://github.com/svinota/pyroute2"; changelog = "https://github.com/svinota/pyroute2/blob/${src.tag}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or gpl2Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fab mic92 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pyrr/default.nix b/pkgs/development/python-modules/pyrr/default.nix index 1a3dc11f176f..e9f46606b9fd 100644 --- a/pkgs/development/python-modules/pyrr/default.nix +++ b/pkgs/development/python-modules/pyrr/default.nix @@ -23,10 +23,10 @@ buildPythonPackage { numpy ]; - meta = with lib; { + meta = { description = "3D mathematical functions using NumPy"; homepage = "https://github.com/adamlwgriffiths/Pyrr/"; - license = licenses.bsd2; - maintainers = with maintainers; [ c0deaddict ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ c0deaddict ]; }; } diff --git a/pkgs/development/python-modules/pyrsistent/default.nix b/pkgs/development/python-modules/pyrsistent/default.nix index d64448dad436..e06cd4431fa0 100644 --- a/pkgs/development/python-modules/pyrsistent/default.nix +++ b/pkgs/development/python-modules/pyrsistent/default.nix @@ -32,9 +32,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrsistent" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tobgu/pyrsistent/"; description = "Persistent/Functional/Immutable data structures"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pyrss2gen/default.nix b/pkgs/development/python-modules/pyrss2gen/default.nix index b91b4a27eb24..0f525c4fef79 100644 --- a/pkgs/development/python-modules/pyrss2gen/default.nix +++ b/pkgs/development/python-modules/pyrss2gen/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { homepage = "http://www.dalkescientific.om/Python/PyRSS2Gen.html"; description = "Library for generating RSS 2.0 feeds"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyrtlsdr/default.nix b/pkgs/development/python-modules/pyrtlsdr/default.nix index 21a3b1b4bd1a..b903fc41b56f 100644 --- a/pkgs/development/python-modules/pyrtlsdr/default.nix +++ b/pkgs/development/python-modules/pyrtlsdr/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { # No tests that can be used. doCheck = false; - meta = with lib; { + meta = { description = "Python wrapper for librtlsdr (a driver for Realtek RTL2832U based SDR's)"; homepage = "https://github.com/roger-/pyrtlsdr"; changelog = "https://github.com/pyrtlsdr/pyrtlsdr/releases/tag/v${version}"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/pyrympro/default.nix b/pkgs/development/python-modules/pyrympro/default.nix index ad276f76dd3c..2785dc52493b 100644 --- a/pkgs/development/python-modules/pyrympro/default.nix +++ b/pkgs/development/python-modules/pyrympro/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrympro" ]; - meta = with lib; { + meta = { description = "Module to interact with Read Your Meter Pro"; homepage = "https://github.com/OnFreund/pyrympro"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysaj/default.nix b/pkgs/development/python-modules/pysaj/default.nix index 24a28d49a414..649d911c325a 100644 --- a/pkgs/development/python-modules/pysaj/default.nix +++ b/pkgs/development/python-modules/pysaj/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysaj" ]; - meta = with lib; { + meta = { description = "Library to communicate with SAJ inverters"; homepage = "https://github.com/fredericvl/pysaj"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysaml2/default.nix b/pkgs/development/python-modules/pysaml2/default.nix index c16ae01af0ea..5c967ac883e0 100644 --- a/pkgs/development/python-modules/pysaml2/default.nix +++ b/pkgs/development/python-modules/pysaml2/default.nix @@ -88,13 +88,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "saml2" ]; - meta = with lib; { + meta = { # https://github.com/IdentityPython/pysaml2/issues/947 broken = lib.versionAtLeast xmlschema.version "4.2.0"; description = "Python implementation of SAML Version 2 Standard"; homepage = "https://github.com/IdentityPython/pysaml2"; changelog = "https://github.com/IdentityPython/pysaml2/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysatochip/default.nix b/pkgs/development/python-modules/pysatochip/default.nix index 2d656cd9e1b0..3b09c0c1367c 100644 --- a/pkgs/development/python-modules/pysatochip/default.nix +++ b/pkgs/development/python-modules/pysatochip/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysatochip" ]; - meta = with lib; { + meta = { description = "Simple python library to communicate with a Satochip hardware wallet"; homepage = "https://github.com/Toporin/pysatochip"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ oxalica ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ oxalica ]; }; } diff --git a/pkgs/development/python-modules/pysbd/default.nix b/pkgs/development/python-modules/pysbd/default.nix index 2a915521243b..2d18a6554aa9 100644 --- a/pkgs/development/python-modules/pysbd/default.nix +++ b/pkgs/development/python-modules/pysbd/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysbd" ]; - meta = with lib; { + meta = { description = "Pysbd (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box across many languages"; homepage = "https://github.com/nipunsadvilkar/pySBD"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/pyscaffold/default.nix b/pkgs/development/python-modules/pyscaffold/default.nix index 127ca5bb96c2..76d493543989 100644 --- a/pkgs/development/python-modules/pyscaffold/default.nix +++ b/pkgs/development/python-modules/pyscaffold/default.nix @@ -95,11 +95,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscaffold" ]; - meta = with lib; { + meta = { description = "Template tool for putting up the scaffold of a Python project"; mainProgram = "putup"; homepage = "https://pypi.org/project/PyScaffold/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/pyscaffoldext-cookiecutter/default.nix b/pkgs/development/python-modules/pyscaffoldext-cookiecutter/default.nix index a34bf93334e9..d331dbf338ab 100644 --- a/pkgs/development/python-modules/pyscaffoldext-cookiecutter/default.nix +++ b/pkgs/development/python-modules/pyscaffoldext-cookiecutter/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscaffoldext.cookiecutter" ]; - meta = with lib; { + meta = { description = "Integration of Cookiecutter project templates into PyScaffold (see: https://github.com/cookiecutter/cookiecutter"; homepage = "https://pypi.org/project/pyscaffoldext-cookiecutter/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/pyscaffoldext-custom-extension/default.nix b/pkgs/development/python-modules/pyscaffoldext-custom-extension/default.nix index ee4bc3aa728b..e5fbc7a36b71 100644 --- a/pkgs/development/python-modules/pyscaffoldext-custom-extension/default.nix +++ b/pkgs/development/python-modules/pyscaffoldext-custom-extension/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscaffoldext.custom_extension" ]; - meta = with lib; { + meta = { description = "PyScaffold extension to create a custom PyScaffold extension"; homepage = "https://pypi.org/project/pyscaffoldext-custom-extension/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/pyscaffoldext-django/default.nix b/pkgs/development/python-modules/pyscaffoldext-django/default.nix index e0e9ca4cf69f..41cccd86c7a1 100644 --- a/pkgs/development/python-modules/pyscaffoldext-django/default.nix +++ b/pkgs/development/python-modules/pyscaffoldext-django/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscaffoldext.django" ]; - meta = with lib; { + meta = { description = "Integration of django builtin scaffold cli (django-admin) into PyScaffold"; homepage = "https://pypi.org/project/pyscaffoldext-django/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyscaffoldext-dsproject/default.nix b/pkgs/development/python-modules/pyscaffoldext-dsproject/default.nix index 9763ba8ace95..323cdc6fe95a 100644 --- a/pkgs/development/python-modules/pyscaffoldext-dsproject/default.nix +++ b/pkgs/development/python-modules/pyscaffoldext-dsproject/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscaffoldext.dsproject" ]; - meta = with lib; { + meta = { description = "PyScaffold extension for Data Science projects"; homepage = "https://pypi.org/project/pyscaffoldext-dsproject/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/pyscaffoldext-markdown/default.nix b/pkgs/development/python-modules/pyscaffoldext-markdown/default.nix index 4d6157ed4d99..1f34932fa42d 100644 --- a/pkgs/development/python-modules/pyscaffoldext-markdown/default.nix +++ b/pkgs/development/python-modules/pyscaffoldext-markdown/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscaffoldext.markdown" ]; - meta = with lib; { + meta = { description = "PyScaffold extension which uses Markdown instead of reStructuredText"; homepage = "https://pypi.org/project/pyscaffoldext-markdown/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/pyscaffoldext-travis/default.nix b/pkgs/development/python-modules/pyscaffoldext-travis/default.nix index 6c08f6c23adc..6f97542f17d7 100644 --- a/pkgs/development/python-modules/pyscaffoldext-travis/default.nix +++ b/pkgs/development/python-modules/pyscaffoldext-travis/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscaffoldext.travis" ]; - meta = with lib; { + meta = { description = "Travis CI configurations for PyScaffold"; homepage = "https://pypi.org/project/pyscaffoldext-travis/"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/pyschedule/default.nix b/pkgs/development/python-modules/pyschedule/default.nix index e3f09a5a58a0..a62a288704fe 100644 --- a/pkgs/development/python-modules/pyschedule/default.nix +++ b/pkgs/development/python-modules/pyschedule/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # tests not included with pypi release (in examples) doCheck = false; - meta = with lib; { + meta = { description = "Formulate and solve resource-constrained scheduling problems"; homepage = "https://github.com/timnon/pyschedule"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyschemes/default.nix b/pkgs/development/python-modules/pyschemes/default.nix index 034b110b1d14..327cb078b071 100644 --- a/pkgs/development/python-modules/pyschemes/default.nix +++ b/pkgs/development/python-modules/pyschemes/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { pythonImportsCheck = [ "pyschemes" ]; - meta = with lib; { + meta = { description = "Library for validating data structures in Python"; homepage = "https://github.com/spy16/pyschemes"; - license = licenses.wtfpl; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/pyschlage/default.nix b/pkgs/development/python-modules/pyschlage/default.nix index 18b024d51312..f8c92228d08b 100644 --- a/pkgs/development/python-modules/pyschlage/default.nix +++ b/pkgs/development/python-modules/pyschlage/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyschlage" ]; - meta = with lib; { + meta = { description = "Library for interacting with Schlage Encode WiFi locks"; homepage = "https://github.com/dknowles2/pyschlage"; changelog = "https://github.com/dknowles2/pyschlage/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyscreenshot/default.nix b/pkgs/development/python-modules/pyscreenshot/default.nix index 846b267290cc..6c9f3949eef4 100644 --- a/pkgs/development/python-modules/pyscreenshot/default.nix +++ b/pkgs/development/python-modules/pyscreenshot/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyscreenshot" ]; - meta = with lib; { + meta = { description = "Python screenshot"; homepage = "https://github.com/ponty/pyscreenshot"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyscreeze/default.nix b/pkgs/development/python-modules/pyscreeze/default.nix index 0471fbe99ee4..ce819f7b2956 100644 --- a/pkgs/development/python-modules/pyscreeze/default.nix +++ b/pkgs/development/python-modules/pyscreeze/default.nix @@ -34,10 +34,10 @@ buildPythonPackage { propagatedBuildInputs = [ pillow ]; - meta = with lib; { + meta = { description = "PyScreeze is a simple, cross-platform screenshot module for Python 2 and 3"; homepage = "https://github.com/asweigart/pyscreeze"; - license = licenses.bsd3; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/pyscrypt/default.nix b/pkgs/development/python-modules/pyscrypt/default.nix index 69c613e21d56..b6fc96296e6e 100644 --- a/pkgs/development/python-modules/pyscrypt/default.nix +++ b/pkgs/development/python-modules/pyscrypt/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { ${python.interpreter} tests/run-tests-hash.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/ricmoo/pyscrypt/"; description = "Pure-Python implementation of Scrypt PBKDF and scrypt file format library"; - license = licenses.mit; - maintainers = with maintainers; [ valodim ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ valodim ]; }; } diff --git a/pkgs/development/python-modules/pyscss/default.nix b/pkgs/development/python-modules/pyscss/default.nix index 03602dc94d54..c3731ea6d970 100644 --- a/pkgs/development/python-modules/pyscss/default.nix +++ b/pkgs/development/python-modules/pyscss/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # See https://github.com/Kronuz/pyScss/issues/415 doCheck = false; - meta = with lib; { + meta = { description = "Scss compiler for Python"; homepage = "https://pyscss.readthedocs.org/en/latest/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysdcp/default.nix b/pkgs/development/python-modules/pysdcp/default.nix index 091eb865359b..6261d9217502 100644 --- a/pkgs/development/python-modules/pysdcp/default.nix +++ b/pkgs/development/python-modules/pysdcp/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysdcp" ]; - meta = with lib; { + meta = { description = "Python library to control SONY projectors"; homepage = "https://github.com/Galala7/pySDCP"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysecuritas/default.nix b/pkgs/development/python-modules/pysecuritas/default.nix index 118518859d0b..febbced3467a 100644 --- a/pkgs/development/python-modules/pysecuritas/default.nix +++ b/pkgs/development/python-modules/pysecuritas/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysecuritas" ]; - meta = with lib; { + meta = { description = "Python client to access Securitas Direct Mobile API"; homepage = "https://github.com/Cebeerre/pysecuritas"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pysecuritas"; }; } diff --git a/pkgs/development/python-modules/pysendfile/default.nix b/pkgs/development/python-modules/pysendfile/default.nix index 48cc85cf27b0..73b7074497c9 100644 --- a/pkgs/development/python-modules/pysendfile/default.nix +++ b/pkgs/development/python-modules/pysendfile/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sendfile" ]; - meta = with lib; { + meta = { description = "Python interface to sendfile(2)"; homepage = "https://github.com/giampaolo/pysendfile"; changelog = "https://github.com/giampaolo/pysendfile/blob/release-${version}/HISTORY.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysensibo/default.nix b/pkgs/development/python-modules/pysensibo/default.nix index b3e3caed6226..f11b613c9f27 100644 --- a/pkgs/development/python-modules/pysensibo/default.nix +++ b/pkgs/development/python-modules/pysensibo/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysensibo" ]; - meta = with lib; { + meta = { description = "Module for interacting with Sensibo"; homepage = "https://github.com/andrey-git/pysensibo"; changelog = "https://github.com/andrey-git/pysensibo/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysensors/default.nix b/pkgs/development/python-modules/pysensors/default.nix index 8f09a6e19aed..94cb0f65e423 100644 --- a/pkgs/development/python-modules/pysensors/default.nix +++ b/pkgs/development/python-modules/pysensors/default.nix @@ -31,11 +31,11 @@ buildPythonPackage { "tests" ]; - meta = with lib; { - maintainers = with maintainers; [ guibou ]; + meta = { + maintainers = with lib.maintainers; [ guibou ]; description = "Easy hardware health monitoring in Python for Linux systems"; homepage = "https://bastienleonard.github.io/pysensors/"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix b/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix index ed2f334a66c0..99940e26d627 100644 --- a/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix +++ b/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pytest-asyncio ]; - meta = with lib; { + meta = { changelog = "https://github.com/home-assistant-libs/pyserial-asyncio-fast/releases/tag/${version}"; description = "Fast asyncio extension package for pyserial that implements eager writes"; homepage = "https://github.com/bdraco/pyserial-asyncio-fast"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyserial-asyncio/default.nix b/pkgs/development/python-modules/pyserial-asyncio/default.nix index bd48ff1b4527..6de9984d2972 100644 --- a/pkgs/development/python-modules/pyserial-asyncio/default.nix +++ b/pkgs/development/python-modules/pyserial-asyncio/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "serial_asyncio" ]; - meta = with lib; { + meta = { description = "Asyncio extension package for pyserial"; homepage = "https://github.com/pyserial/pyserial-asyncio"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyserial/default.nix b/pkgs/development/python-modules/pyserial/default.nix index 156cf889185f..07ae23c2ffac 100644 --- a/pkgs/development/python-modules/pyserial/default.nix +++ b/pkgs/development/python-modules/pyserial/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "serial" ]; - meta = with lib; { + meta = { description = "Python serial port extension"; homepage = "https://github.com/pyserial/pyserial"; - license = licenses.bsd3; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/pysftp/default.nix b/pkgs/development/python-modules/pysftp/default.nix index 08ea007ba7b1..565abb80f9f3 100644 --- a/pkgs/development/python-modules/pysftp/default.nix +++ b/pkgs/development/python-modules/pysftp/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ paramiko ]; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/dundeemt/pysftp"; description = "Friendly face on SFTP"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' A simple interface to SFTP. The module offers high level abstractions and task based routines to handle your SFTP needs. Checkout the Cook diff --git a/pkgs/development/python-modules/pyshark/default.nix b/pkgs/development/python-modules/pyshark/default.nix index e2cb49c23797..edc5bd5c7060 100644 --- a/pkgs/development/python-modules/pyshark/default.nix +++ b/pkgs/development/python-modules/pyshark/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { enabledTestPaths = [ "../tests/" ]; - meta = with lib; { + meta = { description = "Python wrapper for tshark, allowing Python packet parsing using Wireshark dissectors"; homepage = "https://github.com/KimiNewt/pyshark/"; changelog = "https://github.com/KimiNewt/pyshark/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyshp/default.nix b/pkgs/development/python-modules/pyshp/default.nix index 54da6ecf661c..00562446c71e 100644 --- a/pkgs/development/python-modules/pyshp/default.nix +++ b/pkgs/development/python-modules/pyshp/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { "test_reader_url" ]; - meta = with lib; { + meta = { description = "Python read/write support for ESRI Shapefile format"; homepage = "https://github.com/GeospatialPython/pyshp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysiaalarm/default.nix b/pkgs/development/python-modules/pysiaalarm/default.nix index 1ec26947d356..42a03413c150 100644 --- a/pkgs/development/python-modules/pysiaalarm/default.nix +++ b/pkgs/development/python-modules/pysiaalarm/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { "pysiaalarm.aio" ]; - meta = with lib; { + meta = { description = "Python package for creating a client that talks with SIA-based alarm systems"; homepage = "https://github.com/eavanvalkenburg/pysiaalarm"; changelog = "https://github.com/eavanvalkenburg/pysiaalarm/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyside2-tools/default.nix b/pkgs/development/python-modules/pyside2-tools/default.nix index 568877012ac2..79eb5fb32849 100644 --- a/pkgs/development/python-modules/pyside2-tools/default.nix +++ b/pkgs/development/python-modules/pyside2-tools/default.nix @@ -63,9 +63,9 @@ stdenv.mkDerivation { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "PySide2 development tools"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://wiki.qt.io/Qt_for_Python"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/pyside2/default.nix b/pkgs/development/python-modules/pyside2/default.nix index bd3182d1202d..069f927dc3cc 100644 --- a/pkgs/development/python-modules/pyside2/default.nix +++ b/pkgs/development/python-modules/pyside2/default.nix @@ -102,12 +102,12 @@ stdenv.mkDerivation rec { cp -r PySide2.egg-info $out/${python.sitePackages}/ ''; - meta = with lib; { + meta = { description = "LGPL-licensed Python bindings for Qt"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; homepage = "https://wiki.qt.io/Qt_for_Python"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-elasticsearch/default.nix b/pkgs/development/python-modules/pysigma-backend-elasticsearch/default.nix index 337adeadf07f..13c856e2bb05 100644 --- a/pkgs/development/python-modules/pysigma-backend-elasticsearch/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-elasticsearch/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "correlation_rule_stats" ]; - meta = with lib; { + meta = { description = "Library to support Elasticsearch for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-backend-elasticsearch"; changelog = "https://github.com/SigmaHQ/pySigma-backend-elasticsearch/releases/tag/v${version}"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix b/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix index 469366fdd4e9..4e80a326567b 100644 --- a/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "sigma.pipelines.insight_idr" ]; - meta = with lib; { + meta = { description = "Library to support the Rapid7 InsightIDR backend for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-backend-insightidr"; - license = with licenses; [ lgpl21Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl21Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-loki/default.nix b/pkgs/development/python-modules/pysigma-backend-loki/default.nix index 058fad6c4941..ce15a421ff00 100644 --- a/pkgs/development/python-modules/pysigma-backend-loki/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-loki/default.nix @@ -34,9 +34,9 @@ buildPythonPackage rec { "tests/test_backend_loki_field_modifiers.py" ]; - meta = with lib; { + meta = { description = "Library to support the loki backend for pySigma"; homepage = "https://github.com/grafana/pySigma-backend-loki"; - license = with licenses; [ lgpl21Only ]; + license = with lib.licenses; [ lgpl21Only ]; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-opensearch/default.nix b/pkgs/development/python-modules/pysigma-backend-opensearch/default.nix index 3acceaeaef5d..a8aa1c7ce1d8 100644 --- a/pkgs/development/python-modules/pysigma-backend-opensearch/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-opensearch/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_connect_lucene" ]; - meta = with lib; { + meta = { description = "Library to support OpenSearch for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-backend-opensearch"; changelog = "https://github.com/SigmaHQ/pySigma-backend-opensearch/releases/tag/v${version}"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-qradar/default.nix b/pkgs/development/python-modules/pysigma-backend-qradar/default.nix index e1af46b003b8..9adfe8e3303f 100644 --- a/pkgs/development/python-modules/pysigma-backend-qradar/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-qradar/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigma.backends.qradar" ]; - meta = with lib; { + meta = { description = "Library to support Qradar for pySigma"; homepage = "https://github.com/nNipsx-Sec/pySigma-backend-qradar"; changelog = "https://github.com/nNipsx-Sec/pySigma-backend-qradar/releases/tag/v${version}"; - license = with licenses; [ lgpl21Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl21Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-splunk/default.nix b/pkgs/development/python-modules/pysigma-backend-splunk/default.nix index 2c3af130fee4..f772be562eab 100644 --- a/pkgs/development/python-modules/pysigma-backend-splunk/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-splunk/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigma.backends.splunk" ]; - meta = with lib; { + meta = { description = "Library to support Splunk for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-backend-splunk"; changelog = "https://github.com/SigmaHQ/pySigma-backend-splunk/releases/tag/v${version}"; - license = with licenses; [ lgpl21Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl21Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-sqlite/default.nix b/pkgs/development/python-modules/pysigma-backend-sqlite/default.nix index e97709672d1d..64e2b7673388 100644 --- a/pkgs/development/python-modules/pysigma-backend-sqlite/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-sqlite/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigma.backends.sqlite" ]; - meta = with lib; { + meta = { description = "Library to support sqlite for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-backend-sqlite"; changelog = "https://github.com/SigmaHQ/pySigma-backend-sqlite/releases/tag/v${version}"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-pipeline-crowdstrike/default.nix b/pkgs/development/python-modules/pysigma-pipeline-crowdstrike/default.nix index 7e14b4879907..fa7961f04f74 100644 --- a/pkgs/development/python-modules/pysigma-pipeline-crowdstrike/default.nix +++ b/pkgs/development/python-modules/pysigma-pipeline-crowdstrike/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { "test_crowdstrike_pipeline_parentimage" ]; - meta = with lib; { + meta = { description = "Library to support CrowdStrike pipeline for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-pipeline-crowdstrike"; changelog = "https://github.com/SigmaHQ/pySigma-pipeline-crowdstrike/releases/tag/v${version}"; - license = with licenses; [ lgpl21Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl21Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-pipeline-sysmon/default.nix b/pkgs/development/python-modules/pysigma-pipeline-sysmon/default.nix index 81ca140ebd90..959330d49386 100644 --- a/pkgs/development/python-modules/pysigma-pipeline-sysmon/default.nix +++ b/pkgs/development/python-modules/pysigma-pipeline-sysmon/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigma.pipelines.sysmon" ]; - meta = with lib; { + meta = { description = "Library to support Sysmon pipeline for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-pipeline-sysmon"; changelog = "https://github.com/SigmaHQ/pySigma-pipeline-sysmon/releases/tag/v${version}"; - license = with licenses; [ lgpl21Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl21Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma-pipeline-windows/default.nix b/pkgs/development/python-modules/pysigma-pipeline-windows/default.nix index 839ccc4ffdf6..9b7e000c22c5 100644 --- a/pkgs/development/python-modules/pysigma-pipeline-windows/default.nix +++ b/pkgs/development/python-modules/pysigma-pipeline-windows/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigma.pipelines.windows" ]; - meta = with lib; { + meta = { description = "Library to support Windows service pipeline for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-pipeline-windows"; changelog = "https://github.com/SigmaHQ/pySigma-pipeline-windows/releases/tag/v${version}"; - license = with licenses; [ lgpl21Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl21Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysigma/default.nix b/pkgs/development/python-modules/pysigma/default.nix index 94cc67a20eff..2c45b9d91e3f 100644 --- a/pkgs/development/python-modules/pysigma/default.nix +++ b/pkgs/development/python-modules/pysigma/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigma" ]; - meta = with lib; { + meta = { description = "Library to parse and convert Sigma rules into queries"; homepage = "https://github.com/SigmaHQ/pySigma"; changelog = "https://github.com/SigmaHQ/pySigma/releases/tag/v${version}"; - license = with licenses; [ lgpl21Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl21Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysignalclirestapi/default.nix b/pkgs/development/python-modules/pysignalclirestapi/default.nix index 6024f726d75f..882244293988 100644 --- a/pkgs/development/python-modules/pysignalclirestapi/default.nix +++ b/pkgs/development/python-modules/pysignalclirestapi/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysignalclirestapi" ]; - meta = with lib; { + meta = { changelog = "https://github.com/bbernhard/pysignalclirestapi/releases/tag/${version}"; description = "Small python library for the Signal Cli REST API"; homepage = "https://github.com/bbernhard/pysignalclirestapi"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pysigset/default.nix b/pkgs/development/python-modules/pysigset/default.nix index e0ecf26d4f39..c1d980866a54 100644 --- a/pkgs/development/python-modules/pysigset/default.nix +++ b/pkgs/development/python-modules/pysigset/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "13ef98b058489ff572b6667c38970a544699895c0844cb3ac2494e3a59ac51e6"; }; - meta = with lib; { + meta = { description = "Provides access to sigprocmask(2) and friends and convenience wrappers to python application developers wanting to SIG_BLOCK and SIG_UNBLOCK signals"; homepage = "https://github.com/ossobv/pysigset"; - license = licenses.gpl3; - maintainers = with maintainers; [ dzabraev ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ dzabraev ]; }; } diff --git a/pkgs/development/python-modules/pysilero-vad/default.nix b/pkgs/development/python-modules/pysilero-vad/default.nix index f2f26e442154..8030df431d92 100644 --- a/pkgs/development/python-modules/pysilero-vad/default.nix +++ b/pkgs/development/python-modules/pysilero-vad/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { doCheck = stdenv.buildPlatform.system != "aarch64-linux"; dontUsePythonImportsCheck = stdenv.buildPlatform.system == "aarch64-linux"; - meta = with lib; { + meta = { description = "Pre-packaged voice activity detector using silero-vad"; homepage = "https://github.com/rhasspy/pysilero-vad"; changelog = "https://github.com/rhasspy/pysilero-vad/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pysim/default.nix b/pkgs/development/python-modules/pysim/default.nix index 99563f726096..ed2908f4d310 100644 --- a/pkgs/development/python-modules/pysim/default.nix +++ b/pkgs/development/python-modules/pysim/default.nix @@ -59,10 +59,10 @@ buildPythonPackage { pythonImportsCheck = [ "pySim" ]; - meta = with lib; { + meta = { description = "Python tool to program SIMs / USIMs / ISIMs"; homepage = "https://github.com/osmocom/pysim"; - license = licenses.gpl2; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/pysimplesoap/default.nix b/pkgs/development/python-modules/pysimplesoap/default.nix index 3d7d25a7b9f8..80eb5b62070d 100644 --- a/pkgs/development/python-modules/pysimplesoap/default.nix +++ b/pkgs/development/python-modules/pysimplesoap/default.nix @@ -62,13 +62,13 @@ buildPythonPackage rec { ] ++ [ ./stringIO.patch ]; - meta = with lib; { + meta = { description = "Python simple and lightweight SOAP Library"; homepage = "https://github.com/pysimplesoap/pysimplesoap"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; # I don't directly use this, only needed it as a dependency of debianbts # so co-maintainers would be welcome. - maintainers = [ maintainers.nicoo ]; + maintainers = [ lib.maintainers.nicoo ]; }; } diff --git a/pkgs/development/python-modules/pysingleton/default.nix b/pkgs/development/python-modules/pysingleton/default.nix index 1013951b0bba..96461a73f82d 100644 --- a/pkgs/development/python-modules/pysingleton/default.nix +++ b/pkgs/development/python-modules/pysingleton/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # No tests in the Pypi package. doCheck = false; - meta = with lib; { + meta = { description = "Provides a decorator to create thread-safe singleton classes"; homepage = "https://github.com/timofurrer/pysingleton"; - license = licenses.mit; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/development/python-modules/pyskyqhub/default.nix b/pkgs/development/python-modules/pyskyqhub/default.nix index ee460a27f566..879c4b92ffb7 100644 --- a/pkgs/development/python-modules/pyskyqhub/default.nix +++ b/pkgs/development/python-modules/pyskyqhub/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyskyqhub" ]; - meta = with lib; { + meta = { description = "Python module for accessing SkyQ Hub"; homepage = "https://github.com/RogerSelwyn/skyq_hub"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyskyqremote/default.nix b/pkgs/development/python-modules/pyskyqremote/default.nix index ec3975bd03a9..a84e17c015bf 100644 --- a/pkgs/development/python-modules/pyskyqremote/default.nix +++ b/pkgs/development/python-modules/pyskyqremote/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyskyqremote" ]; - meta = with lib; { + meta = { description = "Python module for accessing SkyQ boxes"; homepage = "https://github.com/RogerSelwyn/skyq_remote"; changelog = "https://github.com/RogerSelwyn/skyq_remote/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyslim/default.nix b/pkgs/development/python-modules/pyslim/default.nix index 83c0c10f394c..9dd585a4eb4b 100644 --- a/pkgs/development/python-modules/pyslim/default.nix +++ b/pkgs/development/python-modules/pyslim/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyslim" ]; - meta = with lib; { + meta = { description = "Tools for dealing with tree sequences coming to and from SLiM"; homepage = "https://github.com/tskit-dev/pyslim"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyslurm/default.nix b/pkgs/development/python-modules/pyslurm/default.nix index a0f7dec14e75..11b1cea228ef 100644 --- a/pkgs/development/python-modules/pyslurm/default.nix +++ b/pkgs/development/python-modules/pyslurm/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { # Test cases need /etc/slurm/slurm.conf and require a working slurm installation doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/PySlurm/pyslurm"; description = "Python bindings to Slurm"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pysmappee/default.nix b/pkgs/development/python-modules/pysmappee/default.nix index 42fe3a71a5a5..536fe85746ed 100644 --- a/pkgs/development/python-modules/pysmappee/default.nix +++ b/pkgs/development/python-modules/pysmappee/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysmappee" ]; - meta = with lib; { + meta = { description = "Python Library for the Smappee dev API"; homepage = "https://github.com/smappee/pysmappee"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysmart/default.nix b/pkgs/development/python-modules/pysmart/default.nix index b558d274f0e7..0b677126dbcc 100644 --- a/pkgs/development/python-modules/pysmart/default.nix +++ b/pkgs/development/python-modules/pysmart/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pySMART" ]; - meta = with lib; { + meta = { description = "Wrapper for smartctl (smartmontools)"; homepage = "https://github.com/truenas/py-SMART"; changelog = "https://github.com/truenas/py-SMART/blob/${src.tag}/CHANGELOG.md"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/pysmartapp/default.nix b/pkgs/development/python-modules/pysmartapp/default.nix index 1159766d4cf4..c753f4dc9694 100644 --- a/pkgs/development/python-modules/pysmartapp/default.nix +++ b/pkgs/development/python-modules/pysmartapp/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { "tests/test_smartapp.py" ]; - meta = with lib; { + meta = { description = "Python implementation to work with SmartApp lifecycle events"; homepage = "https://github.com/andrewsayre/pysmartapp"; changelog = "https://github.com/andrewsayre/pysmartapp/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysmartdl/default.nix b/pkgs/development/python-modules/pysmartdl/default.nix index d14850086ed9..a46a2113aad4 100644 --- a/pkgs/development/python-modules/pysmartdl/default.nix +++ b/pkgs/development/python-modules/pysmartdl/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pySmartDL" ]; - meta = with lib; { + meta = { homepage = "https://github.com/iTaybb/pySmartDL"; description = "Smart Download Manager for Python"; changelog = "https://github.com/iTaybb/pySmartDL/blob/${src.rev}/ChangeLog.txt"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysmartthings/default.nix b/pkgs/development/python-modules/pysmartthings/default.nix index 739be397a34d..b42ab22cb7e5 100644 --- a/pkgs/development/python-modules/pysmartthings/default.nix +++ b/pkgs/development/python-modules/pysmartthings/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysmartthings" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the SmartThings cloud API"; homepage = "https://github.com/andrewsayre/pysmartthings"; changelog = "https://github.com/andrewsayre/pysmartthings/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysmb/default.nix b/pkgs/development/python-modules/pysmb/default.nix index 09c225e4bff4..5ca3594ff1ed 100644 --- a/pkgs/development/python-modules/pysmb/default.nix +++ b/pkgs/development/python-modules/pysmb/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "smb" ]; - meta = with lib; { + meta = { description = "Experimental SMB/CIFS library to support file sharing between Windows and Linux machines"; homepage = "https://pysmb.readthedocs.io/"; changelog = "https://github.com/miketeo/pysmb/releases/tag/${src.tag}"; - license = licenses.zlib; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pysmbc/default.nix b/pkgs/development/python-modules/pysmbc/default.nix index be9a74ab3e85..5d5f15a86aab 100644 --- a/pkgs/development/python-modules/pysmbc/default.nix +++ b/pkgs/development/python-modules/pysmbc/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "smbc" ]; - meta = with lib; { + meta = { description = "Libsmbclient binding for Python"; homepage = "https://github.com/hamano/pysmbc"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysmf/default.nix b/pkgs/development/python-modules/pysmf/default.nix index dfa1075f0816..3dca63ed4d39 100644 --- a/pkgs/development/python-modules/pysmf/default.nix +++ b/pkgs/development/python-modules/pysmf/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { glib ]; - meta = with lib; { + meta = { homepage = "https://das.nasophon.de/pysmf/"; description = "Python extension module for reading and writing Standard MIDI Files, based on libsmf"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysmi/default.nix b/pkgs/development/python-modules/pysmi/default.nix index 454b5d0402b9..ef75ad1e64a1 100644 --- a/pkgs/development/python-modules/pysmi/default.nix +++ b/pkgs/development/python-modules/pysmi/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { passthru.tests.pytest = pysmi.overridePythonAttrs { doCheck = true; }; - meta = with lib; { + meta = { description = "SNMP MIB parser"; homepage = "https://github.com/lextudio/pysmi"; changelog = "https://github.com/lextudio/pysmi/blob/v${version}/CHANGES.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysml/default.nix b/pkgs/development/python-modules/pysml/default.nix index 3e98a1b800ea..1085eb814046 100644 --- a/pkgs/development/python-modules/pysml/default.nix +++ b/pkgs/development/python-modules/pysml/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sml" ]; - meta = with lib; { + meta = { description = "Python library for EDL21 smart meters using Smart Message Language (SML)"; homepage = "https://github.com/mtdcr/pysml"; changelog = "https://github.com/mtdcr/pysml/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysmt/default.nix b/pkgs/development/python-modules/pysmt/default.nix index 6edf59907d73..c5bdbeefee19 100644 --- a/pkgs/development/python-modules/pysmt/default.nix +++ b/pkgs/development/python-modules/pysmt/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysmt" ]; - meta = with lib; { + meta = { description = "Python library for SMT formulae manipulation and solving"; mainProgram = "pysmt-install"; homepage = "https://github.com/pysmt/pysmt"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysnmp-pyasn1/default.nix b/pkgs/development/python-modules/pysnmp-pyasn1/default.nix index a4600c955456..e1a831c70907 100644 --- a/pkgs/development/python-modules/pysnmp-pyasn1/default.nix +++ b/pkgs/development/python-modules/pysnmp-pyasn1/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyasn1" ]; - meta = with lib; { + meta = { description = "Python ASN.1 encoder and decoder"; homepage = "https://github.com/pysnmp/pyasn1"; changelog = "https://github.com/pysnmp/pyasn1/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysnmp-pysmi/default.nix b/pkgs/development/python-modules/pysnmp-pysmi/default.nix index eb5288f7769c..78f4d7e18e2e 100644 --- a/pkgs/development/python-modules/pysnmp-pysmi/default.nix +++ b/pkgs/development/python-modules/pysnmp-pysmi/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysmi" ]; - meta = with lib; { + meta = { description = "SNMP MIB parser"; homepage = "https://github.com/pysnmp/pysmi"; changelog = "https://github.com/pysnmp/pysmi/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysnmp/default.nix b/pkgs/development/python-modules/pysnmp/default.nix index 46b25ee5c45c..60d654973e40 100644 --- a/pkgs/development/python-modules/pysnmp/default.nix +++ b/pkgs/development/python-modules/pysnmp/default.nix @@ -81,11 +81,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysnmp" ]; - meta = with lib; { + meta = { description = "Python SNMP library"; homepage = "https://github.com/lextudio/pysnmp"; changelog = "https://github.com/lextudio/pysnmp/blob/${src.rev}/CHANGES.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pysnmpcrypto/default.nix b/pkgs/development/python-modules/pysnmpcrypto/default.nix index 047e5cc9a2cc..bcd1e2ebe58c 100644 --- a/pkgs/development/python-modules/pysnmpcrypto/default.nix +++ b/pkgs/development/python-modules/pysnmpcrypto/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysnmpcrypto" ]; - meta = with lib; { + meta = { description = "Strong crypto support for Python SNMP library"; homepage = "https://github.com/lextudio/pysnmpcrypto"; changelog = "https://github.com/lextudio/pysnmpcrypto/blob/${version}/CHANGES.txt"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysnmplib/default.nix b/pkgs/development/python-modules/pysnmplib/default.nix index a99da545455f..180fee35b6e1 100644 --- a/pkgs/development/python-modules/pysnmplib/default.nix +++ b/pkgs/development/python-modules/pysnmplib/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysnmp" ]; - meta = with lib; { + meta = { description = "Implementation of v1/v2c/v3 SNMP engine"; homepage = "https://github.com/pysnmp/pysnmp"; changelog = "https://github.com/pysnmp/pysnmp/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysnooper/default.nix b/pkgs/development/python-modules/pysnooper/default.nix index 8f313fa16b81..03f5ed36644e 100644 --- a/pkgs/development/python-modules/pysnooper/default.nix +++ b/pkgs/development/python-modules/pysnooper/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysnooper" ]; - meta = with lib; { + meta = { description = "Poor man's debugger for Python"; homepage = "https://github.com/cool-RR/PySnooper"; - license = licenses.mit; - maintainers = with maintainers; [ seqizz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seqizz ]; }; } diff --git a/pkgs/development/python-modules/pysnooz/default.nix b/pkgs/development/python-modules/pysnooz/default.nix index a556a54ce599..8801807e098f 100644 --- a/pkgs/development/python-modules/pysnooz/default.nix +++ b/pkgs/development/python-modules/pysnooz/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysnooz" ]; - meta = with lib; { + meta = { description = "Library to control SNOOZ white noise machines"; homepage = "https://github.com/AustinBrunkhorst/pysnooz"; changelog = "https://github.com/AustinBrunkhorst/pysnooz/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysnow/default.nix b/pkgs/development/python-modules/pysnow/default.nix index aed4cb05398d..0df8bc109e35 100644 --- a/pkgs/development/python-modules/pysnow/default.nix +++ b/pkgs/development/python-modules/pysnow/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysnow" ]; - meta = with lib; { + meta = { description = "ServiceNow HTTP client library written in Python"; homepage = "https://github.com/rbw/pysnow"; - license = licenses.mit; - maintainers = with maintainers; [ almac ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ almac ]; }; } diff --git a/pkgs/development/python-modules/pysocks/default.nix b/pkgs/development/python-modules/pysocks/default.nix index 82c8c2dba332..6c521221391c 100644 --- a/pkgs/development/python-modules/pysocks/default.nix +++ b/pkgs/development/python-modules/pysocks/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "SOCKS module for Python"; - license = licenses.bsd3; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/pysol-cards/default.nix b/pkgs/development/python-modules/pysol-cards/default.nix index b1308941a9e2..341a8f7d2cb8 100644 --- a/pkgs/development/python-modules/pysol-cards/default.nix +++ b/pkgs/development/python-modules/pysol-cards/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { random2 ]; - meta = with lib; { + meta = { description = "Generates Solitaire deals"; mainProgram = "pysol_cards"; homepage = "https://github.com/shlomif/pysol_cards"; - license = licenses.mit; - maintainers = with maintainers; [ mwolfe ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mwolfe ]; }; } diff --git a/pkgs/development/python-modules/pysolcast/default.nix b/pkgs/development/python-modules/pysolcast/default.nix index 93aaf0c4bc5f..70179ee3d233 100644 --- a/pkgs/development/python-modules/pysolcast/default.nix +++ b/pkgs/development/python-modules/pysolcast/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysolcast" ]; - meta = with lib; { + meta = { description = "Python library for interacting with the Solcast API"; homepage = "https://github.com/mcaulifn/solcast"; changelog = "https://github.com/mcaulifn/solcast/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysolr/default.nix b/pkgs/development/python-modules/pysolr/default.nix index 82109715550a..4213aa48a5b9 100644 --- a/pkgs/development/python-modules/pysolr/default.nix +++ b/pkgs/development/python-modules/pysolr/default.nix @@ -25,9 +25,9 @@ buildPythonPackage rec { doCheck = false; # requires network access - meta = with lib; { + meta = { description = "Lightweight Python wrapper for Apache Solr"; homepage = "https://github.com/toastdriven/pysolr/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pysoma/default.nix b/pkgs/development/python-modules/pysoma/default.nix index e568b82024b0..18f799a5c41d 100644 --- a/pkgs/development/python-modules/pysoma/default.nix +++ b/pkgs/development/python-modules/pysoma/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "api" ]; - meta = with lib; { + meta = { description = "Python wrapper for the HTTP API provided by SOMA Connect"; homepage = "https://pypi.org/project/pysoma"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysonos/default.nix b/pkgs/development/python-modules/pysonos/default.nix index 234710d7bcf7..5e06250f4761 100644 --- a/pkgs/development/python-modules/pysonos/default.nix +++ b/pkgs/development/python-modules/pysonos/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { "test_desc_from_uri" # test requires network access ]; - meta = with lib; { + meta = { description = "SoCo fork with fixes for Home Assistant"; homepage = "https://github.com/amelchio/pysonos"; - license = licenses.mit; - maintainers = with maintainers; [ juaningan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ juaningan ]; }; } diff --git a/pkgs/development/python-modules/pyspark/default.nix b/pkgs/development/python-modules/pyspark/default.nix index 1bdca03a03f3..41a4ac5d42b9 100644 --- a/pkgs/development/python-modules/pyspark/default.nix +++ b/pkgs/development/python-modules/pyspark/default.nix @@ -57,14 +57,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyspark" ]; - meta = with lib; { + meta = { description = "Python bindings for Apache Spark"; homepage = "https://github.com/apache/spark/tree/master/python"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ shlevy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ shlevy ]; }; } diff --git a/pkgs/development/python-modules/pyspcwebgw/default.nix b/pkgs/development/python-modules/pyspcwebgw/default.nix index e10b743b637e..8b3439db6a3e 100644 --- a/pkgs/development/python-modules/pyspcwebgw/default.nix +++ b/pkgs/development/python-modules/pyspcwebgw/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyspcwebgw" ]; - meta = with lib; { + meta = { description = "Python module for the SPC Web Gateway REST API"; homepage = "https://github.com/mbrrg/pyspcwebgw"; changelog = "https://github.com/pyspcwebgw/pyspcwebgw/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyspellchecker/default.nix b/pkgs/development/python-modules/pyspellchecker/default.nix index f5be2d4d1420..4bdd9ed4cf54 100644 --- a/pkgs/development/python-modules/pyspellchecker/default.nix +++ b/pkgs/development/python-modules/pyspellchecker/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pure python spell checking"; homepage = "https://github.com/barrust/pyspellchecker"; - license = licenses.mit; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/development/python-modules/pyspf/default.nix b/pkgs/development/python-modules/pyspf/default.nix index 73295e3793c7..216e1d09b495 100644 --- a/pkgs/development/python-modules/pyspf/default.nix +++ b/pkgs/development/python-modules/pyspf/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # requires /etc/resolv.conf to exist doCheck = false; - meta = with lib; { + meta = { homepage = "http://bmsi.com/python/milter.html"; description = "Python API for Sendmail Milters (SPF)"; maintainers = [ ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/pyspice/default.nix b/pkgs/development/python-modules/pyspice/default.nix index b9419aeeb7dc..f0ca2d76c7e1 100644 --- a/pkgs/development/python-modules/pyspice/default.nix +++ b/pkgs/development/python-modules/pyspice/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { "ffi.dlopen('${libngspice}/lib/libngspice${stdenv.hostPlatform.extensions.sharedLibrary}')" ''; - meta = with lib; { + meta = { description = "Simulate electronic circuit using Python and the Ngspice / Xyce simulators"; homepage = "https://github.com/FabriceSalvaire/PySpice"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ matthuszagh ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ matthuszagh ]; }; } diff --git a/pkgs/development/python-modules/pyspiflash/default.nix b/pkgs/development/python-modules/pyspiflash/default.nix index 8ef1ab8585da..d943720fc55e 100644 --- a/pkgs/development/python-modules/pyspiflash/default.nix +++ b/pkgs/development/python-modules/pyspiflash/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "spiflash" ]; - meta = with lib; { + meta = { description = "SPI data flash device drivers in Python"; homepage = "https://github.com/eblot/pyspiflash"; changelog = "https://github.com/eblot/pyspiflash/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyspinel/default.nix b/pkgs/development/python-modules/pyspinel/default.nix index c603e2a47907..713077c106c9 100644 --- a/pkgs/development/python-modules/pyspinel/default.nix +++ b/pkgs/development/python-modules/pyspinel/default.nix @@ -27,10 +27,10 @@ buildPythonPackage { pythonImportsCheck = [ "spinel" ]; - meta = with lib; { + meta = { description = "Interface to the OpenThread Network Co-Processor (NCP)"; homepage = "https://github.com/openthread/pyspinel"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyspnego/default.nix b/pkgs/development/python-modules/pyspnego/default.nix index fc879a48cbcc..8eaab8fed19b 100644 --- a/pkgs/development/python-modules/pyspnego/default.nix +++ b/pkgs/development/python-modules/pyspnego/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { env.LC_ALL = "en_US.UTF-8"; - meta = with lib; { + meta = { changelog = "https://github.com/jborean93/pyspnego/blob/${src.tag}/CHANGELOG.md"; description = "Python SPNEGO authentication library"; mainProgram = "pyspnego-parse"; homepage = "https://github.com/jborean93/pyspnego"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysptk/default.nix b/pkgs/development/python-modules/pysptk/default.nix index 1e070413f8f0..977997473aab 100644 --- a/pkgs/development/python-modules/pysptk/default.nix +++ b/pkgs/development/python-modules/pysptk/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysptk" ]; - meta = with lib; { + meta = { description = "Wrapper for Speech Signal Processing Toolkit (SPTK)"; homepage = "https://pysptk.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ hyphon81 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hyphon81 ]; }; } diff --git a/pkgs/development/python-modules/pyspx/default.nix b/pkgs/development/python-modules/pyspx/default.nix index 06e2b58bd33f..57e648ab312a 100644 --- a/pkgs/development/python-modules/pyspx/default.nix +++ b/pkgs/development/python-modules/pyspx/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyspx" ]; - meta = with lib; { + meta = { description = "Python bindings for SPHINCS"; homepage = "https://github.com/sphincs/pyspx"; changelog = "https://github.com/sphincs/pyspx/releases/tag/v${version}"; - license = licenses.cc0; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.cc0; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysqlcipher3/default.nix b/pkgs/development/python-modules/pysqlcipher3/default.nix index 3b371ba727cf..1727d1dd49c8 100644 --- a/pkgs/development/python-modules/pysqlcipher3/default.nix +++ b/pkgs/development/python-modules/pysqlcipher3/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysqlcipher3" ]; - meta = with lib; { + meta = { description = "Python 3 bindings for SQLCipher"; homepage = "https://github.com/rigglemania/pysqlcipher3/"; - license = licenses.zlib; + license = lib.licenses.zlib; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysrim/default.nix b/pkgs/development/python-modules/pysrim/default.nix index 1c13452b0e55..4ac861149d2f 100644 --- a/pkgs/development/python-modules/pysrim/default.nix +++ b/pkgs/development/python-modules/pysrim/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { # pythonImportsCheck does not work # TypeError: load() missing 1 required positional argument: 'Loader' - meta = with lib; { + meta = { description = "Srim Automation of Tasks via Python"; homepage = "https://gitlab.com/costrouc/pysrim"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysrt/default.nix b/pkgs/development/python-modules/pysrt/default.nix index 9be5028a8787..b9ebc40d5b49 100644 --- a/pkgs/development/python-modules/pysrt/default.nix +++ b/pkgs/development/python-modules/pysrt/default.nix @@ -33,9 +33,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/byroot/pysrt"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; description = "Python library used to edit or create SubRip files"; mainProgram = "srt"; }; diff --git a/pkgs/development/python-modules/pystardict/default.nix b/pkgs/development/python-modules/pystardict/default.nix index ac890f7fdbf6..4938fac38e6b 100644 --- a/pkgs/development/python-modules/pystardict/default.nix +++ b/pkgs/development/python-modules/pystardict/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pystardict" ]; - meta = with lib; { + meta = { description = "Library for manipulating StarDict dictionaries from within Python"; homepage = "https://github.com/lig/pystardict"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ thornycrackers ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ thornycrackers ]; }; } diff --git a/pkgs/development/python-modules/pystatgrab/default.nix b/pkgs/development/python-modules/pystatgrab/default.nix index 9f3436fbcb48..aa051c95090a 100644 --- a/pkgs/development/python-modules/pystatgrab/default.nix +++ b/pkgs/development/python-modules/pystatgrab/default.nix @@ -38,13 +38,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "statgrab" ]; - meta = with lib; { + meta = { description = "Python bindings for libstatgrab"; homepage = "https://github.com/libstatgrab/pystatgrab"; changelog = "https://github.com/libstatgrab/pystatgrab/blob/PYSTATGRAB_${ lib.replaceStrings [ "." ] [ "_" ] version }/NEWS"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pystemmer/default.nix b/pkgs/development/python-modules/pystemmer/default.nix index 03f60507f8c4..64a793ae4a12 100644 --- a/pkgs/development/python-modules/pystemmer/default.nix +++ b/pkgs/development/python-modules/pystemmer/default.nix @@ -52,14 +52,14 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Snowball stemming algorithms, for information retrieval"; downloadPage = "https://github.com/snowballstem/pystemmer"; homepage = "http://snowball.tartarus.org/"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 mit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pystray/default.nix b/pkgs/development/python-modules/pystray/default.nix index 20843a88ef18..ad99775b980c 100644 --- a/pkgs/development/python-modules/pystray/default.nix +++ b/pkgs/development/python-modules/pystray/default.nix @@ -70,14 +70,14 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/moses-palmer/pystray"; description = "This library allows you to create a system tray icon"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; - platforms = platforms.all; - maintainers = with maintainers; [ jojosch ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/development/python-modules/pysubs2/default.nix b/pkgs/development/python-modules/pysubs2/default.nix index 158f35f74f28..37c13b3e03a6 100644 --- a/pkgs/development/python-modules/pysubs2/default.nix +++ b/pkgs/development/python-modules/pysubs2/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysubs2" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tkarabela/pysubs2"; description = "Python library for editing subtitle files"; mainProgram = "pysubs2"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysunspec2/default.nix b/pkgs/development/python-modules/pysunspec2/default.nix index eae4daa43782..c8a55dcb2bfa 100644 --- a/pkgs/development/python-modules/pysunspec2/default.nix +++ b/pkgs/development/python-modules/pysunspec2/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sunspec2" ]; - meta = with lib; { + meta = { description = "Python library for interfacing with SunSpec devices"; homepage = "https://github.com/sunspec/pysunspec2"; changelog = "https://github.com/sunspec/pysunspec2/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ lib.maintainers.cheriimoya ]; }; } diff --git a/pkgs/development/python-modules/pysvn/default.nix b/pkgs/development/python-modules/pysvn/default.nix index 86b11fbad936..4616cc98e196 100644 --- a/pkgs/development/python-modules/pysvn/default.nix +++ b/pkgs/development/python-modules/pysvn/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { rm -v $out/share/doc/pysvn-${version}/generate_cpp_docs_from_html_docs.py ''; - meta = with lib; { + meta = { description = "Python bindings for Subversion"; homepage = "https://pysvn.sourceforge.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; # g++: command not found broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/development/python-modules/pyswitchbee/default.nix b/pkgs/development/python-modules/pyswitchbee/default.nix index 65fb6ba5d9a6..6967de52e4a4 100644 --- a/pkgs/development/python-modules/pyswitchbee/default.nix +++ b/pkgs/development/python-modules/pyswitchbee/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "switchbee" ]; - meta = with lib; { + meta = { description = "Library to control SwitchBee smart home device"; homepage = "https://github.com/jafar-atili/pySwitchbee/"; changelog = "https://github.com/jafar-atili/pySwitchbee/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pysychonaut/default.nix b/pkgs/development/python-modules/pysychonaut/default.nix index 408338cb4ef5..b43101ce12ee 100644 --- a/pkgs/development/python-modules/pysychonaut/default.nix +++ b/pkgs/development/python-modules/pysychonaut/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pysychonaut" ]; - meta = with lib; { + meta = { description = "Unofficial python api for Erowid, PsychonautWiki and AskTheCaterpillar"; homepage = "https://github.com/OpenJarbas/PySychonaut"; maintainers = [ ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pysyncobj/default.nix b/pkgs/development/python-modules/pysyncobj/default.nix index bcfa0a5b4311..033be65cca2f 100644 --- a/pkgs/development/python-modules/pysyncobj/default.nix +++ b/pkgs/development/python-modules/pysyncobj/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysyncobj" ]; - meta = with lib; { + meta = { description = "Python library for replicating your class"; homepage = "https://github.com/bakwc/PySyncObj"; changelog = "https://github.com/bakwc/PySyncObj/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "syncobj_admin"; }; } diff --git a/pkgs/development/python-modules/pysyncthru/default.nix b/pkgs/development/python-modules/pysyncthru/default.nix index 097071b98e51..159703bd1053 100644 --- a/pkgs/development/python-modules/pysyncthru/default.nix +++ b/pkgs/development/python-modules/pysyncthru/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysyncthru" ]; - meta = with lib; { + meta = { description = "Automated JSON API based communication with Samsung SyncThru Web Service"; homepage = "https://github.com/nielstron/pysyncthru"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytabix/default.nix b/pkgs/development/python-modules/pytabix/default.nix index b1508c27a08e..fe454cbfe0e1 100644 --- a/pkgs/development/python-modules/pytabix/default.nix +++ b/pkgs/development/python-modules/pytabix/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "tabix" ]; - meta = with lib; { + meta = { homepage = "https://github.com/slowkow/pytabix"; description = "Python interface for tabix"; - license = licenses.mit; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/pytaglib/default.nix b/pkgs/development/python-modules/pytaglib/default.nix index 488a92af40f2..45b75af666b3 100644 --- a/pkgs/development/python-modules/pytaglib/default.nix +++ b/pkgs/development/python-modules/pytaglib/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "taglib" ]; - meta = with lib; { + meta = { description = "Python bindings for the Taglib audio metadata library"; mainProgram = "pyprinttags"; homepage = "https://github.com/supermihi/pytaglib"; changelog = "https://github.com/supermihi/pytaglib/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mrkkrp ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mrkkrp ]; }; } diff --git a/pkgs/development/python-modules/pytankerkoenig/default.nix b/pkgs/development/python-modules/pytankerkoenig/default.nix index 67af15854697..7d29f005ecd7 100644 --- a/pkgs/development/python-modules/pytankerkoenig/default.nix +++ b/pkgs/development/python-modules/pytankerkoenig/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pytankerkoenig" ]; - meta = with lib; { + meta = { description = "Python module to get fuel data from tankerkoenig.de"; homepage = "https://github.com/ultrara1n/pytankerkoenig"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytap2/default.nix b/pkgs/development/python-modules/pytap2/default.nix index 83f82fef49ea..ef0f6387af0a 100644 --- a/pkgs/development/python-modules/pytap2/default.nix +++ b/pkgs/development/python-modules/pytap2/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytap2" ]; - meta = with lib; { + meta = { description = "Object-oriented wrapper around the Linux Tun/Tap device"; homepage = "https://github.com/johnthagen/pytap2"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pytapo/default.nix b/pkgs/development/python-modules/pytapo/default.nix index 211e36c3578d..c5e6e3196104 100644 --- a/pkgs/development/python-modules/pytapo/default.nix +++ b/pkgs/development/python-modules/pytapo/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { # Tests require actual hardware doCheck = false; - meta = with lib; { + meta = { description = "Python library for communication with Tapo Cameras"; homepage = "https://github.com/JurajNyiri/pytapo"; changelog = "https://github.com/JurajNyiri/pytapo/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fleaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fleaz ]; }; } diff --git a/pkgs/development/python-modules/pytask/default.nix b/pkgs/development/python-modules/pytask/default.nix index 4143418bf728..3e6be0731046 100644 --- a/pkgs/development/python-modules/pytask/default.nix +++ b/pkgs/development/python-modules/pytask/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { "test_pdb_interaction_capturing_simple" ]; - meta = with lib; { + meta = { description = "Workflow management system that facilitates reproducible data analyses"; homepage = "https://github.com/pytask-dev/pytask"; changelog = "https://github.com/pytask-dev/pytask/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ erooke ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erooke ]; }; } diff --git a/pkgs/development/python-modules/pytautulli/default.nix b/pkgs/development/python-modules/pytautulli/default.nix index 5effb6abc2e5..39de443d3b4b 100644 --- a/pkgs/development/python-modules/pytautulli/default.nix +++ b/pkgs/development/python-modules/pytautulli/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytautulli" ]; - meta = with lib; { + meta = { description = "Python module to get information from Tautulli"; homepage = "https://github.com/ludeeus/pytautulli"; changelog = "https://github.com/ludeeus/pytautulli/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyte/default.nix b/pkgs/development/python-modules/pyte/default.nix index 0d7ac5bb2d45..1b715c23dcec 100644 --- a/pkgs/development/python-modules/pyte/default.nix +++ b/pkgs/development/python-modules/pyte/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyte" ]; - meta = with lib; { + meta = { description = "Simple VTXXX-compatible linux terminal emulator"; homepage = "https://github.com/selectel/pyte"; - license = licenses.lgpl3; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/pytenable/default.nix b/pkgs/development/python-modules/pytenable/default.nix index e3d05bc51238..9a9e0204176e 100644 --- a/pkgs/development/python-modules/pytenable/default.nix +++ b/pkgs/development/python-modules/pytenable/default.nix @@ -95,11 +95,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tenable" ]; - meta = with lib; { + meta = { description = "Python library for the Tenable.io and TenableSC API"; homepage = "https://github.com/tenable/pyTenable"; changelog = "https://github.com/tenable/pyTenable/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytesseract/default.nix b/pkgs/development/python-modules/pytesseract/default.nix index eedc98c91b76..87bbd56dfd0c 100644 --- a/pkgs/development/python-modules/pytesseract/default.nix +++ b/pkgs/development/python-modules/pytesseract/default.nix @@ -44,9 +44,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/pytesseract/"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Python wrapper for Google Tesseract"; mainProgram = "pytesseract"; maintainers = [ ]; diff --git a/pkgs/development/python-modules/pytest-aio/default.nix b/pkgs/development/python-modules/pytest-aio/default.nix index 8216ac5e5075..e7b6a6bcbc2b 100644 --- a/pkgs/development/python-modules/pytest-aio/default.nix +++ b/pkgs/development/python-modules/pytest-aio/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_aio" ]; - meta = with lib; { + meta = { description = "Pytest plugin for aiohttp support"; homepage = "https://github.com/klen/pytest-aio"; changelog = "https://github.com/klen/pytest-aio/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-aiohttp/default.nix b/pkgs/development/python-modules/pytest-aiohttp/default.nix index 79df48b8250f..104dbc50d3f2 100644 --- a/pkgs/development/python-modules/pytest-aiohttp/default.nix +++ b/pkgs/development/python-modules/pytest-aiohttp/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pytestFlags = [ "-Wignore::pytest.PytestDeprecationWarning" ]; - meta = with lib; { + meta = { homepage = "https://github.com/aio-libs/pytest-aiohttp/"; changelog = "https://github.com/aio-libs/pytest-aiohttp/blob/${src.rev}/CHANGES.rst"; description = "Pytest plugin for aiohttp support"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytest-annotate/default.nix b/pkgs/development/python-modules/pytest-annotate/default.nix index 31ed87e03213..6ba5a249da03 100644 --- a/pkgs/development/python-modules/pytest-annotate/default.nix +++ b/pkgs/development/python-modules/pytest-annotate/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_annotate" ]; - meta = with lib; { + meta = { description = "Generate PyAnnotate annotations from your pytest tests"; homepage = "https://github.com/kensho-technologies/pytest-annotate"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-ansible/default.nix b/pkgs/development/python-modules/pytest-ansible/default.nix index 1d12c30aec00..2246b078486d 100644 --- a/pkgs/development/python-modules/pytest-ansible/default.nix +++ b/pkgs/development/python-modules/pytest-ansible/default.nix @@ -92,12 +92,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_ansible" ]; - meta = with lib; { + meta = { description = "Plugin for pytest to simplify calling ansible modules from tests or fixtures"; homepage = "https://github.com/jlaska/pytest-ansible"; changelog = "https://github.com/ansible-community/pytest-ansible/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ robsliwi ]; }; diff --git a/pkgs/development/python-modules/pytest-arraydiff/default.nix b/pkgs/development/python-modules/pytest-arraydiff/default.nix index 4a1912e95878..5d178ff8e17c 100644 --- a/pkgs/development/python-modules/pytest-arraydiff/default.nix +++ b/pkgs/development/python-modules/pytest-arraydiff/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_arraydiff" ]; - meta = with lib; { + meta = { description = "Pytest plugin to help with comparing array output from tests"; homepage = "https://github.com/astrofrog/pytest-arraydiff"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-astropy-header/default.nix b/pkgs/development/python-modules/pytest-astropy-header/default.nix index 8b87d4422b57..043c5f622f49 100644 --- a/pkgs/development/python-modules/pytest-astropy-header/default.nix +++ b/pkgs/development/python-modules/pytest-astropy-header/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { numpy ]; - meta = with lib; { + meta = { description = "Plugin to add diagnostic information to the header of the test output"; homepage = "https://astropy.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-asyncio/0.nix b/pkgs/development/python-modules/pytest-asyncio/0.nix index e6887edf85e1..d95da94300ff 100644 --- a/pkgs/development/python-modules/pytest-asyncio/0.nix +++ b/pkgs/development/python-modules/pytest-asyncio/0.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_asyncio" ]; - meta = with lib; { + meta = { description = "Library for testing asyncio code with pytest"; homepage = "https://github.com/pytest-dev/pytest-asyncio"; changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/${src.tag}/docs/reference/changelog.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytest-asyncio/default.nix b/pkgs/development/python-modules/pytest-asyncio/default.nix index 6d1d22738532..bd8838b0f84e 100644 --- a/pkgs/development/python-modules/pytest-asyncio/default.nix +++ b/pkgs/development/python-modules/pytest-asyncio/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_asyncio" ]; - meta = with lib; { + meta = { description = "Library for testing asyncio code with pytest"; homepage = "https://github.com/pytest-dev/pytest-asyncio"; changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/${src.tag}/docs/reference/changelog.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytest-base-url/default.nix b/pkgs/development/python-modules/pytest-base-url/default.nix index 23cf7cf96592..baa4dc0afc35 100644 --- a/pkgs/development/python-modules/pytest-base-url/default.nix +++ b/pkgs/development/python-modules/pytest-base-url/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_base_url" ]; - meta = with lib; { + meta = { description = "Pytest plugin for URL based tests"; homepage = "https://github.com/pytest-dev/pytest-base-url"; changelog = "https://github.com/pytest-dev/pytest-base-url/blob/${src.rev}/CHANGES.rst"; - license = licenses.mpl20; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/pytest-bdd/default.nix b/pkgs/development/python-modules/pytest-bdd/default.nix index df3b22f92089..76a123d81fb9 100644 --- a/pkgs/development/python-modules/pytest-bdd/default.nix +++ b/pkgs/development/python-modules/pytest-bdd/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_bdd" ]; - meta = with lib; { + meta = { description = "BDD library for the pytest"; homepage = "https://github.com/pytest-dev/pytest-bdd"; changelog = "https://github.com/pytest-dev/pytest-bdd/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ jm2dev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jm2dev ]; mainProgram = "pytest-bdd"; }; } diff --git a/pkgs/development/python-modules/pytest-black/default.nix b/pkgs/development/python-modules/pytest-black/default.nix index 6fe022b8cd88..567c910a7328 100644 --- a/pkgs/development/python-modules/pytest-black/default.nix +++ b/pkgs/development/python-modules/pytest-black/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_black" ]; - meta = with lib; { + meta = { description = "Pytest plugin to enable format checking with black"; homepage = "https://github.com/shopkeep/pytest-black"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-cases/default.nix b/pkgs/development/python-modules/pytest-cases/default.nix index f6fac10aaadf..0d871cdb9151 100644 --- a/pkgs/development/python-modules/pytest-cases/default.nix +++ b/pkgs/development/python-modules/pytest-cases/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_cases" ]; - meta = with lib; { + meta = { description = "Separate test code from test cases in pytest"; homepage = "https://github.com/smarie/python-pytest-cases"; changelog = "https://github.com/smarie/python-pytest-cases/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-catchlog/default.nix b/pkgs/development/python-modules/pytest-catchlog/default.nix index e4e2dffdbb29..032a7b6f12ed 100644 --- a/pkgs/development/python-modules/pytest-catchlog/default.nix +++ b/pkgs/development/python-modules/pytest-catchlog/default.nix @@ -24,8 +24,8 @@ buildPythonPackage rec { # Requires pytest < 3.1 doCheck = false; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://pypi.python.org/pypi/pytest-catchlog/"; description = "py.test plugin to catch log messages. This is a fork of pytest-capturelog"; }; diff --git a/pkgs/development/python-modules/pytest-celery/default.nix b/pkgs/development/python-modules/pytest-celery/default.nix index 524388907301..87ba92784ef0 100644 --- a/pkgs/development/python-modules/pytest-celery/default.nix +++ b/pkgs/development/python-modules/pytest-celery/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { # Infinite recursion with celery doCheck = false; - meta = with lib; { + meta = { description = "Pytest plugin to enable celery.contrib.pytest"; homepage = "https://github.com/celery/pytest-celery"; changelog = "https://github.com/celery/pytest-celery/blob/${src.tag}/Changelog.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-check/default.nix b/pkgs/development/python-modules/pytest-check/default.nix index 2e0e09028700..b1e8ac16dded 100644 --- a/pkgs/development/python-modules/pytest-check/default.nix +++ b/pkgs/development/python-modules/pytest-check/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_check" ]; - meta = with lib; { + meta = { description = "Pytest plugin allowing multiple failures per test"; homepage = "https://github.com/okken/pytest-check"; changelog = "https://github.com/okken/pytest-check/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/pytest-cid/default.nix b/pkgs/development/python-modules/pytest-cid/default.nix index 068882b2f99d..fa93a1ef0b06 100644 --- a/pkgs/development/python-modules/pytest-cid/default.nix +++ b/pkgs/development/python-modules/pytest-cid/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_cid" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ntninja/pytest-cid"; description = "Simple wrapper around py-cid for easily writing tests involving CIDs in datastructures"; - license = licenses.mpl20; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/pytest-click/default.nix b/pkgs/development/python-modules/pytest-click/default.nix index 7cbcaea84813..1da7ccdd599a 100644 --- a/pkgs/development/python-modules/pytest-click/default.nix +++ b/pkgs/development/python-modules/pytest-click/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pytest plugin for click"; homepage = "https://github.com/Stranger6667/pytest-click"; changelog = "https://github.com/Stranger6667/pytest-click/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-console-scripts/default.nix b/pkgs/development/python-modules/pytest-console-scripts/default.nix index e3f63c4686f0..2eeefc43a70c 100644 --- a/pkgs/development/python-modules/pytest-console-scripts/default.nix +++ b/pkgs/development/python-modules/pytest-console-scripts/default.nix @@ -39,14 +39,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_console_scripts" ]; - meta = with lib; { + meta = { description = "Pytest plugin for testing console scripts"; longDescription = '' Pytest-console-scripts is a pytest plugin for running python scripts from within tests. It's quite similar to subprocess.run(), but it also has an in-process mode, where the scripts are executed by the interpreter that's running pytest (using some amount of sandboxing). ''; homepage = "https://github.com/kvas-it/pytest-console-scripts"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-cov-stub/default.nix b/pkgs/development/python-modules/pytest-cov-stub/default.nix index f223dd0257c7..c43660711cd9 100644 --- a/pkgs/development/python-modules/pytest-cov-stub/default.nix +++ b/pkgs/development/python-modules/pytest-cov-stub/default.nix @@ -14,9 +14,9 @@ buildPythonPackage { build-system = [ hatchling ]; - meta = with lib; { + meta = { description = "Nixpkgs checkPhase stub for pytest-cov"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.pbsds ]; }; } diff --git a/pkgs/development/python-modules/pytest-cov/default.nix b/pkgs/development/python-modules/pytest-cov/default.nix index 67da986e1e91..72233498e3cc 100644 --- a/pkgs/development/python-modules/pytest-cov/default.nix +++ b/pkgs/development/python-modules/pytest-cov/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_cov" ]; - meta = with lib; { + meta = { description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing"; homepage = "https://github.com/pytest-dev/pytest-cov"; changelog = "https://github.com/pytest-dev/pytest-cov/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-datadir/default.nix b/pkgs/development/python-modules/pytest-datadir/default.nix index 0b8532f1ed49..589bdce38eb9 100644 --- a/pkgs/development/python-modules/pytest-datadir/default.nix +++ b/pkgs/development/python-modules/pytest-datadir/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_datadir" ]; - meta = with lib; { + meta = { description = "Pytest plugin for manipulating test data directories and files"; homepage = "https://github.com/gabrielcnr/pytest-datadir"; changelog = "https://github.com/gabrielcnr/pytest-datadir/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kira-bruneau ]; }; } diff --git a/pkgs/development/python-modules/pytest-datafiles/default.nix b/pkgs/development/python-modules/pytest-datafiles/default.nix index 7527668cb321..f591ed8f5ed3 100644 --- a/pkgs/development/python-modules/pytest-datafiles/default.nix +++ b/pkgs/development/python-modules/pytest-datafiles/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_datafiles" ]; - meta = with lib; { + meta = { description = "Pytest plugin to create a tmpdir containing predefined files/directories"; homepage = "https://github.com/omarkohl/pytest-datafiles"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-dependency/default.nix b/pkgs/development/python-modules/pytest-dependency/default.nix index e4409590a971..11738b230adc 100644 --- a/pkgs/development/python-modules/pytest-dependency/default.nix +++ b/pkgs/development/python-modules/pytest-dependency/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_dependency" ]; - meta = with lib; { + meta = { homepage = "https://github.com/RKrahl/pytest-dependency"; changelog = "https://github.com/RKrahl/pytest-dependency/blob/${version}/CHANGES.rst"; description = "Manage dependencies of tests"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-describe/default.nix b/pkgs/development/python-modules/pytest-describe/default.nix index 6eb2b8390b2c..436740349ae3 100644 --- a/pkgs/development/python-modules/pytest-describe/default.nix +++ b/pkgs/development/python-modules/pytest-describe/default.nix @@ -35,11 +35,11 @@ buildPythonPackage { # test_fixture breaks with pytest 8.4 nativeCheckInputs = [ pytest7CheckHook ]; - meta = with lib; { + meta = { description = "Describe-style plugin for the pytest framework"; homepage = "https://github.com/pytest-dev/pytest-describe"; changelog = "https://github.com/pytest-dev/pytest-describe/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pytest-django/default.nix b/pkgs/development/python-modules/pytest-django/default.nix index f407216368d5..964f73614da4 100644 --- a/pkgs/development/python-modules/pytest-django/default.nix +++ b/pkgs/development/python-modules/pytest-django/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://github.com/pytest-dev/pytest-django/blob/v${version}/docs/changelog.rst"; description = "Pytest plugin for testing of Django applications"; homepage = "https://pytest-django.readthedocs.org/en/latest/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-docker-tools/default.nix b/pkgs/development/python-modules/pytest-docker-tools/default.nix index 4462dde07535..8217130f28fe 100644 --- a/pkgs/development/python-modules/pytest-docker-tools/default.nix +++ b/pkgs/development/python-modules/pytest-docker-tools/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_docker_tools" ]; - meta = with lib; { + meta = { description = "Opionated helpers for creating py.test fixtures for Docker integration and smoke testing environments"; homepage = "https://github.com/Jc2k/pytest-docker-tools"; changelog = "https://github.com/Jc2k/pytest-docker-tools/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-doctestplus/default.nix b/pkgs/development/python-modules/pytest-doctestplus/default.nix index 5729927f62af..744c7d5e7606 100644 --- a/pkgs/development/python-modules/pytest-doctestplus/default.nix +++ b/pkgs/development/python-modules/pytest-doctestplus/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { "test_remote_data_all" ]; - meta = with lib; { + meta = { description = "Pytest plugin with advanced doctest features"; homepage = "https://astropy.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-dotenv/default.nix b/pkgs/development/python-modules/pytest-dotenv/default.nix index 7f9a678468b8..a89ebe0bd2ce 100644 --- a/pkgs/development/python-modules/pytest-dotenv/default.nix +++ b/pkgs/development/python-modules/pytest-dotenv/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { description = "Pytest plugin that parses environment files before running tests"; homepage = "https://github.com/quiqua/pytest-dotenv"; - license = licenses.mit; - maintainers = with maintainers; [ cleeyv ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cleeyv ]; }; } diff --git a/pkgs/development/python-modules/pytest-emoji/default.nix b/pkgs/development/python-modules/pytest-emoji/default.nix index d29fe9eee0e0..e2b2a9903acc 100644 --- a/pkgs/development/python-modules/pytest-emoji/default.nix +++ b/pkgs/development/python-modules/pytest-emoji/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "test_emoji_enabled_custom_verbose" ]; - meta = with lib; { + meta = { description = "Pytest plugin that adds emojis to test result report"; homepage = "https://github.com/hackebrot/pytest-emoji"; changelog = "https://github.com/hackebrot/pytest-emoji/releases/tag/0.2.0"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-env/default.nix b/pkgs/development/python-modules/pytest-env/default.nix index e2a4f0e4a8ab..d9ae40da022b 100644 --- a/pkgs/development/python-modules/pytest-env/default.nix +++ b/pkgs/development/python-modules/pytest-env/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pytest plugin used to set environment variables"; homepage = "https://github.com/MobileDynasty/pytest-env"; - license = licenses.mit; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/pytest-error-for-skips/default.nix b/pkgs/development/python-modules/pytest-error-for-skips/default.nix index aec6a3a073ff..9afce76eef76 100644 --- a/pkgs/development/python-modules/pytest-error-for-skips/default.nix +++ b/pkgs/development/python-modules/pytest-error-for-skips/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_error_for_skips" ]; - meta = with lib; { + meta = { description = "Pytest plugin to treat skipped tests a test failures"; homepage = "https://github.com/jankatins/pytest-error-for-skips"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-factoryboy/default.nix b/pkgs/development/python-modules/pytest-factoryboy/default.nix index 5f932e44d25f..5aa8671bf2dd 100644 --- a/pkgs/development/python-modules/pytest-factoryboy/default.nix +++ b/pkgs/development/python-modules/pytest-factoryboy/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { disabledTestPaths = [ "docs" ]; - meta = with lib; { + meta = { description = "Integration of factory_boy into the pytest runner"; homepage = "https://pytest-factoryboy.readthedocs.io/en/latest/"; - maintainers = with maintainers; [ winpat ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ winpat ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pytest-filter-subpackage/default.nix b/pkgs/development/python-modules/pytest-filter-subpackage/default.nix index cdb9765243c0..24e5dc0cfdf9 100644 --- a/pkgs/development/python-modules/pytest-filter-subpackage/default.nix +++ b/pkgs/development/python-modules/pytest-filter-subpackage/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { # missing some files disabledTests = [ "with_rst" ]; - meta = with lib; { + meta = { description = "Meta-package containing dependencies for testing"; homepage = "https://github.com/astropy/pytest-filter-subpackage"; changelog = "https://github.com/astropy/pytest-filter-subpackage/blob/v${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix index c39764c6cfe2..1a0a44f60ff8 100644 --- a/pkgs/development/python-modules/pytest-fixture-config/default.nix +++ b/pkgs/development/python-modules/pytest-fixture-config/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { changelog = "https://github.com/man-group/pytest-plugins/blob/${src.tag}/CHANGES.md"; description = "Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables aren’t set"; homepage = "https://github.com/manahl/pytest-plugins"; - license = licenses.mit; - maintainers = with maintainers; [ ryansydnor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ryansydnor ]; }; } diff --git a/pkgs/development/python-modules/pytest-flakes/default.nix b/pkgs/development/python-modules/pytest-flakes/default.nix index ebf5342bfac4..3e4594037cc1 100644 --- a/pkgs/development/python-modules/pytest-flakes/default.nix +++ b/pkgs/development/python-modules/pytest-flakes/default.nix @@ -32,8 +32,8 @@ buildPythonPackage rec { py.test test_flakes.py -k 'not test_syntax_error' ''; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://pypi.python.org/pypi/pytest-flakes"; description = "Pytest plugin to check source code with pyflakes"; }; diff --git a/pkgs/development/python-modules/pytest-flask/default.nix b/pkgs/development/python-modules/pytest-flask/default.nix index 19db1697a421..7fa7f8de4ae8 100644 --- a/pkgs/development/python-modules/pytest-flask/default.nix +++ b/pkgs/development/python-modules/pytest-flask/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "tests/test_live_server.py" ]; - meta = with lib; { + meta = { description = "Set of pytest fixtures to test Flask applications"; homepage = "https://pytest-flask.readthedocs.io/"; changelog = "https://github.com/pytest-dev/pytest-flask/blob/${version}/docs/changelog.rst"; - license = licenses.mit; - maintainers = with maintainers; [ vanschelven ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vanschelven ]; }; } diff --git a/pkgs/development/python-modules/pytest-freezegun/default.nix b/pkgs/development/python-modules/pytest-freezegun/default.nix index 259f698431ab..802c68186dbe 100644 --- a/pkgs/development/python-modules/pytest-freezegun/default.nix +++ b/pkgs/development/python-modules/pytest-freezegun/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Wrap tests with fixtures in freeze_time"; homepage = "https://github.com/ktosiek/pytest-freezegun"; - license = licenses.mit; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/python-modules/pytest-freezer/default.nix b/pkgs/development/python-modules/pytest-freezer/default.nix index 9f5e8f724dcf..094f9ccc708b 100644 --- a/pkgs/development/python-modules/pytest-freezer/default.nix +++ b/pkgs/development/python-modules/pytest-freezer/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_freezer" ]; - meta = with lib; { + meta = { description = "Pytest plugin providing a fixture interface for spulec/freezegun"; homepage = "https://github.com/pytest-dev/pytest-freezer"; changelog = "https://github.com/pytest-dev/pytest-freezer/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-golden/default.nix b/pkgs/development/python-modules/pytest-golden/default.nix index f87ba271afe0..b26bfd01f94f 100644 --- a/pkgs/development/python-modules/pytest-golden/default.nix +++ b/pkgs/development/python-modules/pytest-golden/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_golden" ]; - meta = with lib; { + meta = { description = "Plugin for pytest that offloads expected outputs to data files"; homepage = "https://github.com/oprypin/pytest-golden"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-grpc/default.nix b/pkgs/development/python-modules/pytest-grpc/default.nix index 93fe47b319ad..ccb040464e93 100644 --- a/pkgs/development/python-modules/pytest-grpc/default.nix +++ b/pkgs/development/python-modules/pytest-grpc/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ grpcio ]; - meta = with lib; { + meta = { description = "Pytest plugin for grpc"; homepage = "https://github.com/MobileDynasty/pytest-env"; - license = licenses.mit; - teams = [ teams.deshaw ]; + license = lib.licenses.mit; + teams = [ lib.teams.deshaw ]; }; } diff --git a/pkgs/development/python-modules/pytest-harvest/default.nix b/pkgs/development/python-modules/pytest-harvest/default.nix index 0f87a6cf7697..7f34250f9969 100644 --- a/pkgs/development/python-modules/pytest-harvest/default.nix +++ b/pkgs/development/python-modules/pytest-harvest/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_harvest" ]; - meta = with lib; { + meta = { description = "Store data created during your `pytest` tests execution, and retrieve it at the end of the session, e.g. for applicative benchmarking purposes"; homepage = "https://github.com/smarie/python-pytest-harvest"; changelog = "https://github.com/smarie/python-pytest-harvest/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/pytest-helpers-namespace/default.nix b/pkgs/development/python-modules/pytest-helpers-namespace/default.nix index ced0389f2887..5de6872ce99e 100644 --- a/pkgs/development/python-modules/pytest-helpers-namespace/default.nix +++ b/pkgs/development/python-modules/pytest-helpers-namespace/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_helpers_namespace" ]; - meta = with lib; { + meta = { homepage = "https://github.com/saltstack/pytest-helpers-namespace"; description = "PyTest Helpers Namespace"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-html/default.nix b/pkgs/development/python-modules/pytest-html/default.nix index 769eaffc3e03..f5b6fb35a7d5 100644 --- a/pkgs/development/python-modules/pytest-html/default.nix +++ b/pkgs/development/python-modules/pytest-html/default.nix @@ -66,10 +66,10 @@ buildPythonPackage { pythonImportsCheck = [ "pytest_html" ]; - meta = with lib; { + meta = { description = "Plugin for generating HTML reports"; homepage = "https://github.com/pytest-dev/pytest-html"; - license = licenses.mpl20; - maintainers = with maintainers; [ mpoquet ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ mpoquet ]; }; } diff --git a/pkgs/development/python-modules/pytest-httpbin/default.nix b/pkgs/development/python-modules/pytest-httpbin/default.nix index 99146020d6ca..009ba2ad281c 100644 --- a/pkgs/development/python-modules/pytest-httpbin/default.nix +++ b/pkgs/development/python-modules/pytest-httpbin/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_httpbin" ]; - meta = with lib; { + meta = { description = "Test your HTTP library against a local copy of httpbin.org"; homepage = "https://github.com/kevin1024/pytest-httpbin"; changelog = "https://github.com/kevin1024/pytest-httpbin/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-httpserver/default.nix b/pkgs/development/python-modules/pytest-httpserver/default.nix index bf2016701dde..c4d785aa7666 100644 --- a/pkgs/development/python-modules/pytest-httpserver/default.nix +++ b/pkgs/development/python-modules/pytest-httpserver/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_httpserver" ]; - meta = with lib; { + meta = { description = "HTTP server for pytest to test HTTP clients"; homepage = "https://www.github.com/csernazs/pytest-httpserver"; changelog = "https://github.com/csernazs/pytest-httpserver/blob/${src.tag}/CHANGES.rst"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-httpx/default.nix b/pkgs/development/python-modules/pytest-httpx/default.nix index a21cf0984267..1a98bcd2fc48 100644 --- a/pkgs/development/python-modules/pytest-httpx/default.nix +++ b/pkgs/development/python-modules/pytest-httpx/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_httpx" ]; - meta = with lib; { + meta = { description = "Send responses to httpx"; homepage = "https://github.com/Colin-b/pytest_httpx"; changelog = "https://github.com/Colin-b/pytest_httpx/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-image-diff/default.nix b/pkgs/development/python-modules/pytest-image-diff/default.nix index 706cf7044c66..97ebdd73968a 100644 --- a/pkgs/development/python-modules/pytest-image-diff/default.nix +++ b/pkgs/development/python-modules/pytest-image-diff/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { recommonmark ]; - meta = with lib; { + meta = { description = "Pytest helps for compare images and regression"; homepage = "https://github.com/Apkawa/pytest-image-diff"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-instafail/default.nix b/pkgs/development/python-modules/pytest-instafail/default.nix index 656a4ee1da5b..fcb5e016d805 100644 --- a/pkgs/development/python-modules/pytest-instafail/default.nix +++ b/pkgs/development/python-modules/pytest-instafail/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_instafail" ]; - meta = with lib; { + meta = { description = "Pytest plugin that shows failures and errors instantly instead of waiting until the end of test session"; homepage = "https://github.com/pytest-dev/pytest-instafail"; changelog = "https://github.com/pytest-dev/pytest-instafail/blob/v${version}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ jacg ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jacg ]; }; } diff --git a/pkgs/development/python-modules/pytest-isort/default.nix b/pkgs/development/python-modules/pytest-isort/default.nix index e770be044dfe..1a3aa1d38d63 100644 --- a/pkgs/development/python-modules/pytest-isort/default.nix +++ b/pkgs/development/python-modules/pytest-isort/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_isort" ]; - meta = with lib; { + meta = { description = "Pytest plugin to perform isort checks (import ordering)"; homepage = "https://github.com/moccu/pytest-isort/"; changelog = "https://github.com/stephrdev/pytest-isort/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-json-report/default.nix b/pkgs/development/python-modules/pytest-json-report/default.nix index 61cd4114abea..a974e74874a0 100644 --- a/pkgs/development/python-modules/pytest-json-report/default.nix +++ b/pkgs/development/python-modules/pytest-json-report/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_jsonreport" ]; - meta = with lib; { + meta = { description = "Pytest plugin to report test results as JSON"; homepage = "https://github.com/numirias/pytest-json-report"; changelog = "https://github.com/numirias/pytest-json-report/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-jupyter/default.nix b/pkgs/development/python-modules/pytest-jupyter/default.nix index 671c0f865a79..777aca7f61ab 100644 --- a/pkgs/development/python-modules/pytest-jupyter/default.nix +++ b/pkgs/development/python-modules/pytest-jupyter/default.nix @@ -68,11 +68,11 @@ let }); }; - meta = with lib; { + meta = { changelog = "https://github.com/jupyter-server/pytest-jupyter/releases/tag/v${version}"; description = "Pytest plugin for testing Jupyter core libraries and extensions"; homepage = "https://github.com/jupyter-server/pytest-jupyter"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/pytest-lazy-fixture/default.nix b/pkgs/development/python-modules/pytest-lazy-fixture/default.nix index 64afaa0d0786..b251c4287384 100644 --- a/pkgs/development/python-modules/pytest-lazy-fixture/default.nix +++ b/pkgs/development/python-modules/pytest-lazy-fixture/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Helps to use fixtures in pytest.mark.parametrize"; homepage = "https://github.com/tvorog/pytest-lazy-fixture"; - license = licenses.mit; - maintainers = with maintainers; [ tobim ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tobim ]; }; } diff --git a/pkgs/development/python-modules/pytest-lazy-fixtures/default.nix b/pkgs/development/python-modules/pytest-lazy-fixtures/default.nix index 4acc40ff1934..5cae30d4ac6d 100644 --- a/pkgs/development/python-modules/pytest-lazy-fixtures/default.nix +++ b/pkgs/development/python-modules/pytest-lazy-fixtures/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_lazy_fixtures" ]; - meta = with lib; { + meta = { description = "Allows you to use fixtures in @pytest.mark.parametrize"; homepage = "https://github.com/dev-petrov/pytest-lazy-fixtures"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-localserver/default.nix b/pkgs/development/python-modules/pytest-localserver/default.nix index ca04db9f65ba..fe84c71df39c 100644 --- a/pkgs/development/python-modules/pytest-localserver/default.nix +++ b/pkgs/development/python-modules/pytest-localserver/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_localserver" ]; - meta = with lib; { + meta = { description = "Plugin for the pytest testing framework to test server connections locally"; homepage = "https://github.com/pytest-dev/pytest-localserver"; changelog = "https://github.com/pytest-dev/pytest-localserver/blob/v${version}/CHANGES"; - license = licenses.mit; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/pytest-logdog/default.nix b/pkgs/development/python-modules/pytest-logdog/default.nix index f16032c17b6a..25f91c4744b5 100644 --- a/pkgs/development/python-modules/pytest-logdog/default.nix +++ b/pkgs/development/python-modules/pytest-logdog/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_logdog" ]; - meta = with lib; { + meta = { description = "Pytest plugin to test logging"; homepage = "https://github.com/ods/pytest-logdog"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-markdown-docs/default.nix b/pkgs/development/python-modules/pytest-markdown-docs/default.nix index d1352941ba7d..8e9e9f78af68 100644 --- a/pkgs/development/python-modules/pytest-markdown-docs/default.nix +++ b/pkgs/development/python-modules/pytest-markdown-docs/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Run pytest on markdown code fence blocks"; homepage = "https://github.com/modal-com/pytest-markdown-docs"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/pytest-md-report/default.nix b/pkgs/development/python-modules/pytest-md-report/default.nix index cb02f5fc7c6d..42746f7db00e 100644 --- a/pkgs/development/python-modules/pytest-md-report/default.nix +++ b/pkgs/development/python-modules/pytest-md-report/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_md_report" ]; - meta = with lib; { + meta = { description = "Pytest plugin to make a test results report with Markdown table format"; homepage = "https://github.com/thombashi/pytest-md-report"; changelog = "https://github.com/thombashi/pytest-md-report/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ rrbutani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rrbutani ]; }; } diff --git a/pkgs/development/python-modules/pytest-metadata/default.nix b/pkgs/development/python-modules/pytest-metadata/default.nix index fc72d1843d38..1c2db8e9fcaa 100644 --- a/pkgs/development/python-modules/pytest-metadata/default.nix +++ b/pkgs/development/python-modules/pytest-metadata/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Plugin for accessing test session metadata"; homepage = "https://github.com/pytest-dev/pytest-metadata"; - license = licenses.mpl20; - maintainers = with maintainers; [ mpoquet ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ mpoquet ]; }; } diff --git a/pkgs/development/python-modules/pytest-mockservers/default.nix b/pkgs/development/python-modules/pytest-mockservers/default.nix index 6f8ad594ab5f..0c94fcb6e303 100644 --- a/pkgs/development/python-modules/pytest-mockservers/default.nix +++ b/pkgs/development/python-modules/pytest-mockservers/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_mockservers" ]; - meta = with lib; { + meta = { description = "Set of fixtures to test your requests to HTTP/UDP servers"; homepage = "https://github.com/Gr1N/pytest-mockservers"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-mpl/default.nix b/pkgs/development/python-modules/pytest-mpl/default.nix index d5bfa4402cbe..7f18ddc71ca8 100644 --- a/pkgs/development/python-modules/pytest-mpl/default.nix +++ b/pkgs/development/python-modules/pytest-mpl/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { --replace-fail "DEFAULT_TOLERANCE = 10 if WIN else 2" "DEFAULT_TOLERANCE = 10" ''; - meta = with lib; { + meta = { description = "Pytest plugin to help with testing figures output from Matplotlib"; homepage = "https://github.com/matplotlib/pytest-mpl"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix index 6a89e77a49f6..1293a89b2449 100644 --- a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix +++ b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { disabledTestPaths = [ "pytest_mypy_plugins/tests/test_explicit_configs.py" ]; - meta = with lib; { + meta = { description = "Pytest plugin for testing mypy types, stubs, and plugins"; homepage = "https://github.com/TypedDjango/pytest-mypy-plugins"; changelog = "https://github.com/typeddjango/pytest-mypy-plugins/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/pytest-order/default.nix b/pkgs/development/python-modules/pytest-order/default.nix index 04059a7e45fe..cd2c9720b14c 100644 --- a/pkgs/development/python-modules/pytest-order/default.nix +++ b/pkgs/development/python-modules/pytest-order/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { strictDeps = true; - meta = with lib; { + meta = { description = "Pytest plugin that allows you to customize the order in which your tests are run"; homepage = "https://github.com/pytest-dev/pytest-order"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jacg Luflosi ]; diff --git a/pkgs/development/python-modules/pytest-parallel/default.nix b/pkgs/development/python-modules/pytest-parallel/default.nix index bb37a365c5cc..50e857b60160 100644 --- a/pkgs/development/python-modules/pytest-parallel/default.nix +++ b/pkgs/development/python-modules/pytest-parallel/default.nix @@ -31,11 +31,11 @@ buildPythonPackage { py ]; - meta = with lib; { + meta = { description = "Pytest plugin for parallel and concurrent testing"; homepage = "https://github.com/kevlened/pytest-parallelt"; changelog = "https://github.com/kevlened/pytest-parallel/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/pytest-param-files/default.nix b/pkgs/development/python-modules/pytest-param-files/default.nix index 3bb78f197750..1ccca1c7c360 100644 --- a/pkgs/development/python-modules/pytest-param-files/default.nix +++ b/pkgs/development/python-modules/pytest-param-files/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Package to generate parametrized pytests from external files"; homepage = "https://github.com/chrisjsewell/pytest-param-files"; - license = licenses.mit; - maintainers = with maintainers; [ loicreynier ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ loicreynier ]; }; } diff --git a/pkgs/development/python-modules/pytest-playwright/default.nix b/pkgs/development/python-modules/pytest-playwright/default.nix index b2b97727317a..9703f4039f27 100644 --- a/pkgs/development/python-modules/pytest-playwright/default.nix +++ b/pkgs/development/python-modules/pytest-playwright/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_playwright" ]; - meta = with lib; { + meta = { description = "Pytest plugin to write end-to-end browser tests with Playwright"; homepage = "https://github.com/microsoft/playwright-pytest"; changelog = "https://github.com/microsoft/playwright-pytest/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/pytest-plt/default.nix b/pkgs/development/python-modules/pytest-plt/default.nix index 8a3c48d2e528..c1d2e34a862e 100644 --- a/pkgs/development/python-modules/pytest-plt/default.nix +++ b/pkgs/development/python-modules/pytest-plt/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { matplotlib ]; - meta = with lib; { + meta = { description = "Provides fixtures for quickly creating Matplotlib plots in your tests"; homepage = "https://www.nengo.ai/pytest-plt/"; changelog = "https://github.com/nengo/pytest-plt/blob/master/CHANGES.rst"; - license = licenses.mit; - maintainers = [ maintainers.doronbehar ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.doronbehar ]; }; } diff --git a/pkgs/development/python-modules/pytest-plus/default.nix b/pkgs/development/python-modules/pytest-plus/default.nix index bcfd6cd33f2d..078736da4c61 100644 --- a/pkgs/development/python-modules/pytest-plus/default.nix +++ b/pkgs/development/python-modules/pytest-plus/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_plus" ]; - meta = with lib; { + meta = { description = "pytest-plus adds new features to pytest"; homepage = "https://github.com/pytest-dev/pytest-plus"; changelog = "https://github.com/pytest-dev/pytest-plus/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ robsliwi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ robsliwi ]; }; } diff --git a/pkgs/development/python-modules/pytest-pylint/default.nix b/pkgs/development/python-modules/pytest-pylint/default.nix index 5df06f4dbc35..3322e4aceddd 100644 --- a/pkgs/development/python-modules/pytest-pylint/default.nix +++ b/pkgs/development/python-modules/pytest-pylint/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_pylint" ]; - meta = with lib; { + meta = { description = "Pytest plugin to check source code with pylint"; homepage = "https://github.com/carsongee/pytest-pylint"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-pytestrail/default.nix b/pkgs/development/python-modules/pytest-pytestrail/default.nix index 99c2c8786673..a44cae806fe5 100644 --- a/pkgs/development/python-modules/pytest-pytestrail/default.nix +++ b/pkgs/development/python-modules/pytest-pytestrail/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_pytestrail" ]; - meta = with lib; { + meta = { description = "Pytest plugin for interaction with TestRail"; homepage = "https://github.com/tolstislon/pytest-pytestrail"; changelog = "https://github.com/tolstislon/pytest-pytestrail/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ aanderse ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ aanderse ]; }; } diff --git a/pkgs/development/python-modules/pytest-qt/default.nix b/pkgs/development/python-modules/pytest-qt/default.nix index 36758f51da08..abd58d900eba 100644 --- a/pkgs/development/python-modules/pytest-qt/default.nix +++ b/pkgs/development/python-modules/pytest-qt/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { # Tests require X server doCheck = false; - meta = with lib; { + meta = { description = "Pytest support for PyQt and PySide applications"; homepage = "https://github.com/pytest-dev/pytest-qt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-quickcheck/default.nix b/pkgs/development/python-modules/pytest-quickcheck/default.nix index 392dc3450ae3..8d42e33fd8f9 100644 --- a/pkgs/development/python-modules/pytest-quickcheck/default.nix +++ b/pkgs/development/python-modules/pytest-quickcheck/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pytest-flakes ]; - meta = with lib; { - license = licenses.asl20; + meta = { + license = lib.licenses.asl20; homepage = "https://pypi.python.org/pypi/pytest-quickcheck"; description = "Pytest plugin to generate random data inspired by QuickCheck"; - maintainers = with maintainers; [ onny ]; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/pytest-raises/default.nix b/pkgs/development/python-modules/pytest-raises/default.nix index 538147315842..c250801478d5 100644 --- a/pkgs/development/python-modules/pytest-raises/default.nix +++ b/pkgs/development/python-modules/pytest-raises/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { "test_pytest_mark_raises_parametrize" ]; - meta = with lib; { + meta = { description = "Implementation of pytest.raises as a pytest.mark fixture"; homepage = "https://github.com/Lemmons/pytest-raises"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-raisesregexp/default.nix b/pkgs/development/python-modules/pytest-raisesregexp/default.nix index e6ce1e3a96e2..061812c70566 100644 --- a/pkgs/development/python-modules/pytest-raisesregexp/default.nix +++ b/pkgs/development/python-modules/pytest-raisesregexp/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { pytest ]; - meta = with lib; { + meta = { description = "Simple pytest plugin to look for regex in Exceptions"; homepage = "https://github.com/Walkman/pytest_raisesregexp"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/pytest-raisin/default.nix b/pkgs/development/python-modules/pytest-raisin/default.nix index 762a3a6fa0ec..0dcca1c25d80 100644 --- a/pkgs/development/python-modules/pytest-raisin/default.nix +++ b/pkgs/development/python-modules/pytest-raisin/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # tests cause circular pytest-raisin already registered with pytest error doCheck = false; - meta = with lib; { + meta = { description = "Plugin enabling the use of exception instances with pytest.raises context"; homepage = "https://github.com/wimglenn/pytest-raisin"; - license = licenses.mit; - maintainers = with maintainers; [ aadibajpai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aadibajpai ]; }; } diff --git a/pkgs/development/python-modules/pytest-random-order/default.nix b/pkgs/development/python-modules/pytest-random-order/default.nix index 1c900d4b6e84..90fea3781213 100644 --- a/pkgs/development/python-modules/pytest-random-order/default.nix +++ b/pkgs/development/python-modules/pytest-random-order/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "random_order" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jbasko/pytest-random-order"; description = "Randomise the order of tests with some control over the randomness"; changelog = "https://github.com/jbasko/pytest-random-order/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/pytest-randomly/default.nix b/pkgs/development/python-modules/pytest-randomly/default.nix index b9300603b9d4..85e24735d012 100644 --- a/pkgs/development/python-modules/pytest-randomly/default.nix +++ b/pkgs/development/python-modules/pytest-randomly/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_randomly" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pytest-dev/pytest-randomly/blob/${version}/CHANGELOG.rst"; description = "Pytest plugin to randomly order tests and control random.seed"; homepage = "https://github.com/pytest-dev/pytest-randomly"; - license = licenses.mit; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/pytest-regressions/default.nix b/pkgs/development/python-modules/pytest-regressions/default.nix index 13c0f38a506a..6e06909ccc97 100644 --- a/pkgs/development/python-modules/pytest-regressions/default.nix +++ b/pkgs/development/python-modules/pytest-regressions/default.nix @@ -76,7 +76,7 @@ buildPythonPackage rec { "pytest_regressions.plugin" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ESSS/pytest-regressions/blob/${src.tag}/CHANGELOG.rst"; description = "Pytest fixtures to write regression tests"; longDescription = '' @@ -86,7 +86,7 @@ buildPythonPackage rec { that future runs produce the same data. ''; homepage = "https://github.com/ESSS/pytest-regressions"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-relaxed/default.nix b/pkgs/development/python-modules/pytest-relaxed/default.nix index 7f317759960b..7e15fc47fb91 100644 --- a/pkgs/development/python-modules/pytest-relaxed/default.nix +++ b/pkgs/development/python-modules/pytest-relaxed/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_relaxed" ]; - meta = with lib; { + meta = { homepage = "https://pytest-relaxed.readthedocs.io/"; description = "Relaxed test discovery/organization for pytest"; changelog = "https://github.com/bitprophet/pytest-relaxed/blob/${version}/docs/changelog.rst"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-remotedata/default.nix b/pkgs/development/python-modules/pytest-remotedata/default.nix index 25cf16b2a6e6..a1667b386756 100644 --- a/pkgs/development/python-modules/pytest-remotedata/default.nix +++ b/pkgs/development/python-modules/pytest-remotedata/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_remotedata" ]; - meta = with lib; { + meta = { description = "Pytest plugin for controlling remote data access"; homepage = "https://github.com/astropy/pytest-remotedata"; changelog = "https://github.com/astropy/pytest-remotedata/blob/v${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-repeat/default.nix b/pkgs/development/python-modules/pytest-repeat/default.nix index 8387f0302501..358b651733ae 100644 --- a/pkgs/development/python-modules/pytest-repeat/default.nix +++ b/pkgs/development/python-modules/pytest-repeat/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_repeat" ]; - meta = with lib; { + meta = { description = "Pytest plugin for repeating tests"; homepage = "https://github.com/pytest-dev/pytest-repeat"; changelog = "https://github.com/pytest-dev/pytest-repeat/blob/v${version}/CHANGES.rst"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix index afd0505c9dee..57f4e5708fb5 100644 --- a/pkgs/development/python-modules/pytest-rerunfailures/default.nix +++ b/pkgs/development/python-modules/pytest-rerunfailures/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Pytest plugin to re-run tests to eliminate flaky failures"; homepage = "https://github.com/pytest-dev/pytest-rerunfailures"; changelog = "https://github.com/pytest-dev/pytest-rerunfailures/blob/${src.tag}/CHANGES.rst"; - license = licenses.mpl20; - maintainers = with maintainers; [ das-g ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ das-g ]; }; } diff --git a/pkgs/development/python-modules/pytest-resource-path/default.nix b/pkgs/development/python-modules/pytest-resource-path/default.nix index d330e6c9ab68..de1c1fc255a2 100644 --- a/pkgs/development/python-modules/pytest-resource-path/default.nix +++ b/pkgs/development/python-modules/pytest-resource-path/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_resource_path" ]; - meta = with lib; { + meta = { description = "Pytest plugin to provide path for uniform access to test resources"; homepage = "https://github.com/yukihiko-shinoda/pytest-resource-path"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-reverse/default.nix b/pkgs/development/python-modules/pytest-reverse/default.nix index 964cc1ad72d9..343b85afaa60 100644 --- a/pkgs/development/python-modules/pytest-reverse/default.nix +++ b/pkgs/development/python-modules/pytest-reverse/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_reverse" ]; - meta = with lib; { + meta = { description = "Pytest plugin to reverse test order"; homepage = "https://github.com/adamchainz/pytest-reverse"; changelog = "https://github.com/adamchainz/pytest-reverse/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/pytest-server-fixtures/default.nix b/pkgs/development/python-modules/pytest-server-fixtures/default.nix index ff3b1f46601f..fd50fd2864e9 100644 --- a/pkgs/development/python-modules/pytest-server-fixtures/default.nix +++ b/pkgs/development/python-modules/pytest-server-fixtures/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { # Don't run integration tests doCheck = false; - meta = with lib; { + meta = { description = "Extensible server fixures for py.test"; homepage = "https://github.com/manahl/pytest-plugins"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-services/default.nix b/pkgs/development/python-modules/pytest-services/default.nix index edc37a706137..c9b7d27c89bf 100644 --- a/pkgs/development/python-modules/pytest-services/default.nix +++ b/pkgs/development/python-modules/pytest-services/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { # Tests use sockets __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Services plugin for pytest testing framework"; homepage = "https://github.com/pytest-dev/pytest-services"; changelog = "https://github.com/pytest-dev/pytest-services/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytest-shutil/default.nix b/pkgs/development/python-modules/pytest-shutil/default.nix index 8636389eb12b..1937aefc634e 100644 --- a/pkgs/development/python-modules/pytest-shutil/default.nix +++ b/pkgs/development/python-modules/pytest-shutil/default.nix @@ -45,10 +45,10 @@ buildPythonPackage { "test_run_integration" ]; - meta = with lib; { + meta = { description = "Goodie-bag of unix shell and environment tools for py.test"; homepage = "https://github.com/manahl/pytest-plugins"; - maintainers = with maintainers; [ ryansydnor ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ryansydnor ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pytest-smtpd/default.nix b/pkgs/development/python-modules/pytest-smtpd/default.nix index af40cceaa320..08884ccec6a1 100644 --- a/pkgs/development/python-modules/pytest-smtpd/default.nix +++ b/pkgs/development/python-modules/pytest-smtpd/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_smtpd" ]; - meta = with lib; { + meta = { description = "Pytest fixture that creates an SMTP server"; homepage = "https://github.com/bebleo/pytest-smtpd"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/pytest-snapshot/default.nix b/pkgs/development/python-modules/pytest-snapshot/default.nix index b4fe9844778a..d3b75b09229f 100644 --- a/pkgs/development/python-modules/pytest-snapshot/default.nix +++ b/pkgs/development/python-modules/pytest-snapshot/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_snapshot" ]; - meta = with lib; { + meta = { description = "Plugin to enable snapshot testing with pytest"; homepage = "https://github.com/joseph-roitman/pytest-snapshot/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-socket/default.nix b/pkgs/development/python-modules/pytest-socket/default.nix index 160130486374..3e66a1e4d7ea 100644 --- a/pkgs/development/python-modules/pytest-socket/default.nix +++ b/pkgs/development/python-modules/pytest-socket/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_socket" ]; - meta = with lib; { + meta = { description = "Pytest Plugin to disable socket calls during tests"; homepage = "https://github.com/miketheman/pytest-socket"; changelog = "https://github.com/miketheman/pytest-socket/blob/${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-subprocess/default.nix b/pkgs/development/python-modules/pytest-subprocess/default.nix index 9b61a0526f83..d3dfb5078333 100644 --- a/pkgs/development/python-modules/pytest-subprocess/default.nix +++ b/pkgs/development/python-modules/pytest-subprocess/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pytestFlags = [ "-Wignore::DeprecationWarning" ]; - meta = with lib; { + meta = { description = "Plugin to fake subprocess for pytest"; homepage = "https://github.com/aklajnert/pytest-subprocess"; changelog = "https://github.com/aklajnert/pytest-subprocess/blob/${src.tag}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytest-subtesthack/default.nix b/pkgs/development/python-modules/pytest-subtesthack/default.nix index abf57ae1832a..5c1f2c06f97b 100644 --- a/pkgs/development/python-modules/pytest-subtesthack/default.nix +++ b/pkgs/development/python-modules/pytest-subtesthack/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { # no upstream test doCheck = false; - meta = with lib; { + meta = { description = "Terrible plugin to set up and tear down fixtures within the test function itself"; homepage = "https://github.com/untitaker/pytest-subtesthack"; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/development/python-modules/pytest-subtests/default.nix b/pkgs/development/python-modules/pytest-subtests/default.nix index 2826f917cee1..ac3f4e69de60 100644 --- a/pkgs/development/python-modules/pytest-subtests/default.nix +++ b/pkgs/development/python-modules/pytest-subtests/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_subtests" ]; - meta = with lib; { + meta = { description = "Pytest plugin for unittest subTest() support and subtests fixture"; homepage = "https://github.com/pytest-dev/pytest-subtests"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-sugar/default.nix b/pkgs/development/python-modules/pytest-sugar/default.nix index eeff296e949c..878a655c8b81 100644 --- a/pkgs/development/python-modules/pytest-sugar/default.nix +++ b/pkgs/development/python-modules/pytest-sugar/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Plugin that changes the default look and feel of pytest"; homepage = "https://github.com/Frozenball/pytest-sugar"; changelog = "https://github.com/Teemu/pytest-sugar/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-tap/default.nix b/pkgs/development/python-modules/pytest-tap/default.nix index d603c17bc5a1..361705a206cf 100644 --- a/pkgs/development/python-modules/pytest-tap/default.nix +++ b/pkgs/development/python-modules/pytest-tap/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_tap" ]; - meta = with lib; { + meta = { description = "Test Anything Protocol (TAP) reporting plugin for pytest"; homepage = "https://github.com/python-tap/pytest-tap"; changelog = "https://github.com/python-tap/pytest-tap/blob/v${version}/docs/releases.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ cynerd ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/development/python-modules/pytest-test-utils/default.nix b/pkgs/development/python-modules/pytest-test-utils/default.nix index a8ce3413c9bf..ea79ae8f38c4 100644 --- a/pkgs/development/python-modules/pytest-test-utils/default.nix +++ b/pkgs/development/python-modules/pytest-test-utils/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_test_utils" ]; - meta = with lib; { + meta = { description = "Pytest utilities for tests"; homepage = "https://github.com/iterative/pytest-test-utils"; changelog = "https://github.com/iterative/pytest-test-utils/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-testinfra/default.nix b/pkgs/development/python-modules/pytest-testinfra/default.nix index d3d1abb38217..f98fd83af363 100644 --- a/pkgs/development/python-modules/pytest-testinfra/default.nix +++ b/pkgs/development/python-modules/pytest-testinfra/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { disabledTestPaths = [ "test/test_modules.py" ]; - meta = with lib; { + meta = { description = "Pytest plugin for testing your infrastructure"; homepage = "https://github.com/pytest-dev/pytest-testinfra"; changelog = "https://github.com/pytest-dev/pytest-testinfra/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ hulr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hulr ]; }; } diff --git a/pkgs/development/python-modules/pytest-testmon/default.nix b/pkgs/development/python-modules/pytest-testmon/default.nix index 4e2fafe3816e..3cd1ada86ad3 100644 --- a/pkgs/development/python-modules/pytest-testmon/default.nix +++ b/pkgs/development/python-modules/pytest-testmon/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "testmon" ]; - meta = with lib; { + meta = { description = "Pytest plug-in which automatically selects and re-executes only tests affected by recent changes"; homepage = "https://github.com/tarpas/pytest-testmon/"; changelog = "https://github.com/tarpas/pytest-testmon/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dmvianna ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dmvianna ]; }; } diff --git a/pkgs/development/python-modules/pytest-timeout/default.nix b/pkgs/development/python-modules/pytest-timeout/default.nix index 751a1286a893..faa7ccad860a 100644 --- a/pkgs/development/python-modules/pytest-timeout/default.nix +++ b/pkgs/development/python-modules/pytest-timeout/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_timeout" ]; - meta = with lib; { + meta = { description = "Pytest plugin to abort hanging tests"; homepage = "https://github.com/pytest-dev/pytest-timeout/"; changelog = "https://github.com/pytest-dev/pytest-timeout/tree/${src.tag}#changelog"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/pytest-tornado/default.nix b/pkgs/development/python-modules/pytest-tornado/default.nix index b4851ea3a50a..8ca97fdad613 100644 --- a/pkgs/development/python-modules/pytest-tornado/default.nix +++ b/pkgs/development/python-modules/pytest-tornado/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ tornado ]; - meta = with lib; { + meta = { description = "Py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications"; homepage = "https://github.com/eugeniy/pytest-tornado"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/pytest-tornasync/default.nix b/pkgs/development/python-modules/pytest-tornasync/default.nix index 94176949f056..f66343a8823b 100644 --- a/pkgs/development/python-modules/pytest-tornasync/default.nix +++ b/pkgs/development/python-modules/pytest-tornasync/default.nix @@ -37,10 +37,10 @@ buildPythonPackage { pytest test ''; - meta = with lib; { + meta = { description = "py.test plugin for testing Python 3.5+ Tornado code"; homepage = "https://github.com/eukaryote/pytest-tornasync"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-twisted/default.nix b/pkgs/development/python-modules/pytest-twisted/default.nix index 3d6856c41725..f375269383bd 100644 --- a/pkgs/development/python-modules/pytest-twisted/default.nix +++ b/pkgs/development/python-modules/pytest-twisted/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_twisted" ]; - meta = with lib; { + meta = { changelog = "https://github.com/pytest-dev/pytest-twisted/releases/tag/v${version}"; description = "Twisted plugin for py.test"; homepage = "https://github.com/pytest-dev/pytest-twisted"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-unordered/default.nix b/pkgs/development/python-modules/pytest-unordered/default.nix index d0d85ef14cd0..4d174bea06de 100644 --- a/pkgs/development/python-modules/pytest-unordered/default.nix +++ b/pkgs/development/python-modules/pytest-unordered/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_unordered" ]; - meta = with lib; { + meta = { changelog = "https://github.com/utapyngo/pytest-unordered/blob/v${version}/CHANGELOG.md"; description = "Test equality of unordered collections in pytest"; homepage = "https://github.com/utapyngo/pytest-unordered"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/pytest-vcr/default.nix b/pkgs/development/python-modules/pytest-vcr/default.nix index c2336df5c5fe..8c460e3be2c6 100644 --- a/pkgs/development/python-modules/pytest-vcr/default.nix +++ b/pkgs/development/python-modules/pytest-vcr/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pytest_vcr" ]; - meta = with lib; { + meta = { description = "Integration VCR.py into pytest"; homepage = "https://github.com/ktosiek/pytest-vcr"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-virtualenv/default.nix b/pkgs/development/python-modules/pytest-virtualenv/default.nix index fc027dd93929..d3ae6ac0c9dd 100644 --- a/pkgs/development/python-modules/pytest-virtualenv/default.nix +++ b/pkgs/development/python-modules/pytest-virtualenv/default.nix @@ -41,10 +41,10 @@ buildPythonPackage { # Don't run integration tests disabledTestPaths = [ "tests/integration/*" ]; - meta = with lib; { + meta = { description = "Create a Python virtual environment in your test that cleans up on teardown. The fixture has utility methods to install packages and list what’s installed"; homepage = "https://github.com/manahl/pytest-plugins"; - license = licenses.mit; - maintainers = with maintainers; [ ryansydnor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ryansydnor ]; }; } diff --git a/pkgs/development/python-modules/pytest-voluptuous/default.nix b/pkgs/development/python-modules/pytest-voluptuous/default.nix index 1e9465c91c0f..235fe32112ee 100644 --- a/pkgs/development/python-modules/pytest-voluptuous/default.nix +++ b/pkgs/development/python-modules/pytest-voluptuous/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/test_plugin.py" ]; - meta = with lib; { + meta = { description = "Pytest plugin for asserting data against voluptuous schema"; homepage = "https://github.com/F-Secure/pytest-voluptuous"; changelog = "https://github.com/F-Secure/pytest-voluptuous/blob/${version}/CHANGELOG.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytest-watch/default.nix b/pkgs/development/python-modules/pytest-watch/default.nix index 400812545767..f8bf50c9fd4e 100644 --- a/pkgs/development/python-modules/pytest-watch/default.nix +++ b/pkgs/development/python-modules/pytest-watch/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pytest_watch" ]; - meta = with lib; { + meta = { homepage = "https://github.com/joeyespo/pytest-watch"; description = "Local continuous test runner with pytest and watchdog"; - license = licenses.mit; - maintainers = with maintainers; [ dmvianna ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dmvianna ]; }; } diff --git a/pkgs/development/python-modules/pytest-xprocess/default.nix b/pkgs/development/python-modules/pytest-xprocess/default.nix index a27712212d30..d4a2751d98d5 100644 --- a/pkgs/development/python-modules/pytest-xprocess/default.nix +++ b/pkgs/development/python-modules/pytest-xprocess/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { # There's no tests in repo doCheck = false; - meta = with lib; { + meta = { description = "Pytest external process plugin"; homepage = "https://github.com/pytest-dev"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-xvfb/default.nix b/pkgs/development/python-modules/pytest-xvfb/default.nix index b7e8221fe0a0..8ef73b17b838 100644 --- a/pkgs/development/python-modules/pytest-xvfb/default.nix +++ b/pkgs/development/python-modules/pytest-xvfb/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { dependencies = [ pyvirtualdisplay ]; - meta = with lib; { + meta = { description = "Pytest plugin to run Xvfb for tests"; homepage = "https://github.com/The-Compiler/pytest-xvfb"; changelog = "https://github.com/The-Compiler/pytest-xvfb/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest/7.nix b/pkgs/development/python-modules/pytest/7.nix index 3c164999bed4..5f66d14c1944 100644 --- a/pkgs/development/python-modules/pytest/7.nix +++ b/pkgs/development/python-modules/pytest/7.nix @@ -102,15 +102,15 @@ let pythonImportsCheck = [ "pytest" ]; - meta = with lib; { + meta = { description = "Framework for writing tests"; homepage = "https://docs.pytest.org"; changelog = "https://github.com/pytest-dev/pytest/releases/tag/${version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 madjar ]; - license = licenses.mit; + license = lib.licenses.mit; }; }; in diff --git a/pkgs/development/python-modules/pytest/8_3.nix b/pkgs/development/python-modules/pytest/8_3.nix index 2b7cc734324f..db07a7aee84a 100644 --- a/pkgs/development/python-modules/pytest/8_3.nix +++ b/pkgs/development/python-modules/pytest/8_3.nix @@ -101,11 +101,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest" ]; - meta = with lib; { + meta = { description = "Framework for writing tests"; homepage = "https://docs.pytest.org"; changelog = "https://github.com/pytest-dev/pytest/releases/tag/${version}"; - teams = [ teams.python ]; - license = licenses.mit; + teams = [ lib.teams.python ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pytest/default.nix b/pkgs/development/python-modules/pytest/default.nix index edd68ff232b8..4d5618cb16a4 100644 --- a/pkgs/development/python-modules/pytest/default.nix +++ b/pkgs/development/python-modules/pytest/default.nix @@ -101,11 +101,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest" ]; - meta = with lib; { + meta = { description = "Framework for writing tests"; homepage = "https://docs.pytest.org"; changelog = "https://github.com/pytest-dev/pytest/releases/tag/${version}"; - teams = [ teams.python ]; - license = licenses.mit; + teams = [ lib.teams.python ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pytestcache/default.nix b/pkgs/development/python-modules/pytestcache/default.nix index 83f24b881a26..165d6da5ad0b 100644 --- a/pkgs/development/python-modules/pytestcache/default.nix +++ b/pkgs/development/python-modules/pytestcache/default.nix @@ -26,8 +26,8 @@ buildPythonPackage rec { # Too many failing tests. Are they maintained? doCheck = false; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; homepage = "https://pypi.python.org/pypi/pytest-cache/"; description = "Pytest plugin with mechanisms for caching across test runs"; }; diff --git a/pkgs/development/python-modules/python-arango/default.nix b/pkgs/development/python-modules/python-arango/default.nix index e707b6c4ee18..7dbc25001b64 100644 --- a/pkgs/development/python-modules/python-arango/default.nix +++ b/pkgs/development/python-modules/python-arango/default.nix @@ -150,11 +150,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "arango" ]; - meta = with lib; { + meta = { description = "Python Driver for ArangoDB"; homepage = "https://github.com/ArangoDB-Community/python-arango"; changelog = "https://github.com/ArangoDB-Community/python-arango/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ jsoo1 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jsoo1 ]; }; } diff --git a/pkgs/development/python-modules/python-axolotl/default.nix b/pkgs/development/python-modules/python-axolotl/default.nix index 48f9794db058..1c0e848ebc1e 100644 --- a/pkgs/development/python-modules/python-axolotl/default.nix +++ b/pkgs/development/python-modules/python-axolotl/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { protobuf ]; - meta = with lib; { + meta = { homepage = "https://github.com/tgalal/python-axolotl"; description = "Python port of libaxolotl-android"; maintainers = [ ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/python-barcode/default.nix b/pkgs/development/python-modules/python-barcode/default.nix index 7d7e59c30af5..8f6647d68234 100644 --- a/pkgs/development/python-modules/python-barcode/default.nix +++ b/pkgs/development/python-modules/python-barcode/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "barcode" ]; - meta = with lib; { + meta = { description = "Create standard barcodes with Python"; mainProgram = "python-barcode"; homepage = "https://github.com/WhyNotHugo/python-barcode"; changelog = "https://github.com/WhyNotHugo/python-barcode/blob/v${version}/docs/changelog.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-baseconv/default.nix b/pkgs/development/python-modules/python-baseconv/default.nix index c6f9386ca36c..ad8a7f8dcbd6 100644 --- a/pkgs/development/python-modules/python-baseconv/default.nix +++ b/pkgs/development/python-modules/python-baseconv/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "baseconv" ]; - meta = with lib; { + meta = { description = "Python module to convert numbers from base 10 integers to base X strings and back again"; homepage = "https://github.com/semente/python-baseconv"; - license = licenses.psfl; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/python-benedict/default.nix b/pkgs/development/python-modules/python-benedict/default.nix index 225e24a69cfa..55f57bf71c30 100644 --- a/pkgs/development/python-modules/python-benedict/default.nix +++ b/pkgs/development/python-modules/python-benedict/default.nix @@ -112,11 +112,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "benedict" ]; - meta = with lib; { + meta = { description = "Module with keylist/keypath support"; homepage = "https://github.com/fabiocaccamo/python-benedict"; changelog = "https://github.com/fabiocaccamo/python-benedict/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-binance/default.nix b/pkgs/development/python-modules/python-binance/default.nix index 35790013e98c..2824ec2ba090 100644 --- a/pkgs/development/python-modules/python-binance/default.nix +++ b/pkgs/development/python-modules/python-binance/default.nix @@ -81,9 +81,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "binance" ]; - meta = with lib; { + meta = { description = "Binance Exchange API python implementation for automated trading"; homepage = "https://github.com/sammchardy/python-binance"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/python-bitcoinlib/default.nix b/pkgs/development/python-modules/python-bitcoinlib/default.nix index ec57a6ee23ee..7d85630bb15b 100644 --- a/pkgs/development/python-modules/python-bitcoinlib/default.nix +++ b/pkgs/development/python-modules/python-bitcoinlib/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { "bitcoin.core.key" ]; - meta = with lib; { + meta = { homepage = "https://github.com/petertodd/python-bitcoinlib"; description = "Easy interface to the Bitcoin data structures and protocol"; changelog = "https://github.com/petertodd/python-bitcoinlib/raw/${src.rev}/release-notes.md"; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ jb55 ]; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ jb55 ]; }; } diff --git a/pkgs/development/python-modules/python-box/default.nix b/pkgs/development/python-modules/python-box/default.nix index 701c93f8f0c9..0f5e4631d36f 100644 --- a/pkgs/development/python-modules/python-box/default.nix +++ b/pkgs/development/python-modules/python-box/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "box" ]; - meta = with lib; { + meta = { description = "Python dictionaries with advanced dot notation access"; homepage = "https://github.com/cdgriffith/Box"; changelog = "https://github.com/cdgriffith/Box/blob/${version}/CHANGES.rst"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-bsblan/default.nix b/pkgs/development/python-modules/python-bsblan/default.nix index a909002d749c..38ffcdaf1155 100644 --- a/pkgs/development/python-modules/python-bsblan/default.nix +++ b/pkgs/development/python-modules/python-bsblan/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bsblan" ]; - meta = with lib; { + meta = { description = "Module to control and monitor an BSBLan device programmatically"; homepage = "https://github.com/liudger/python-bsblan"; changelog = "https://github.com/liudger/python-bsblan/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-bugzilla/default.nix b/pkgs/development/python-modules/python-bugzilla/default.nix index 1aa40b81c0fb..8c103537e00d 100644 --- a/pkgs/development/python-modules/python-bugzilla/default.nix +++ b/pkgs/development/python-modules/python-bugzilla/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { export HOME=$(pwd)/check-phase ''; - meta = with lib; { + meta = { homepage = "https://github.com/python-bugzilla/python-bugzilla"; description = "Bugzilla XMLRPC access module"; mainProgram = "bugzilla"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ pierron ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pierron ]; }; } diff --git a/pkgs/development/python-modules/python-can/default.nix b/pkgs/development/python-modules/python-can/default.nix index e60ef78045d4..a790c5e26582 100644 --- a/pkgs/development/python-modules/python-can/default.nix +++ b/pkgs/development/python-modules/python-can/default.nix @@ -87,12 +87,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "can" ]; - meta = with lib; { + meta = { description = "CAN support for Python"; homepage = "https://python-can.readthedocs.io"; changelog = "https://github.com/hardbyte/python-can/releases/tag/${src.tag}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ fab sorki ]; diff --git a/pkgs/development/python-modules/python-cinderclient/default.nix b/pkgs/development/python-modules/python-cinderclient/default.nix index 6cba303ceffd..20ffbf1b040f 100644 --- a/pkgs/development/python-modules/python-cinderclient/default.nix +++ b/pkgs/development/python-modules/python-cinderclient/default.nix @@ -84,11 +84,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cinderclient" ]; - meta = with lib; { + meta = { description = "OpenStack Block Storage API Client Library"; mainProgram = "cinder"; homepage = "https://github.com/openstack/python-cinderclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-codon-tables/default.nix b/pkgs/development/python-modules/python-codon-tables/default.nix index e1ba3a0b8f5e..9012aee53023 100644 --- a/pkgs/development/python-modules/python-codon-tables/default.nix +++ b/pkgs/development/python-modules/python-codon-tables/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_codon_tables" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Edinburgh-Genome-Foundry/codon-usage-tables"; description = "Codon Usage Tables for Python, from kazusa.or.jp"; changelog = "https://github.com/Edinburgh-Genome-Foundry/python_codon_tables/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/python-constraint/default.nix b/pkgs/development/python-modules/python-constraint/default.nix index 24bbd022c2a5..be842e6fd999 100644 --- a/pkgs/development/python-modules/python-constraint/default.nix +++ b/pkgs/development/python-modules/python-constraint/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "tests/test_util_benchmark.py" ]; - meta = with lib; { + meta = { description = "Constraint Solving Problem resolver for Python"; homepage = "https://labix.org/doc/constraint/"; downloadPage = "https://github.com/python-constraint/python-constraint/releases"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-creole/default.nix b/pkgs/development/python-modules/python-creole/default.nix index e800bb213597..473c9f00a27b 100644 --- a/pkgs/development/python-modules/python-creole/default.nix +++ b/pkgs/development/python-modules/python-creole/default.nix @@ -87,11 +87,11 @@ buildPythonPackage rec { "creole/tests/test_cross_compare_all.py::CrossCompareTests::test_link_without_title" ]; - meta = with lib; { + meta = { description = "Creole markup tools written in Python"; homepage = "https://github.com/jedie/python-creole"; changelog = "https://github.com/jedie/python-creole/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/python-crfsuite/default.nix b/pkgs/development/python-modules/python-crfsuite/default.nix index cc0ee44e25bc..5c062e50f607 100644 --- a/pkgs/development/python-modules/python-crfsuite/default.nix +++ b/pkgs/development/python-modules/python-crfsuite/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycrfsuite" ]; - meta = with lib; { + meta = { description = "Python binding for CRFsuite"; homepage = "https://github.com/scrapinghub/python-crfsuite"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/python-crontab/default.nix b/pkgs/development/python-modules/python-crontab/default.nix index 9fd4c03572ed..994845f5c6e9 100644 --- a/pkgs/development/python-modules/python-crontab/default.nix +++ b/pkgs/development/python-modules/python-crontab/default.nix @@ -38,14 +38,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "crontab" ]; - meta = with lib; { + meta = { description = "Python API for crontab"; longDescription = '' Crontab module for reading and writing crontab files and accessing the system cron automatically and simply using a direct API. ''; homepage = "https://gitlab.com/doctormo/python-crontab/"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ kfollesdal ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ kfollesdal ]; }; } diff --git a/pkgs/development/python-modules/python-csxcad/default.nix b/pkgs/development/python-modules/python-csxcad/default.nix index 364b266a9c73..62e159edad8e 100644 --- a/pkgs/development/python-modules/python-csxcad/default.nix +++ b/pkgs/development/python-modules/python-csxcad/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { "-R${openems}/lib" ]; - meta = with lib; { + meta = { description = "Python interface to CSXCAD"; homepage = "http://openems.de/index.php/Main_Page.html"; - license = licenses.gpl3; - maintainers = with maintainers; [ matthuszagh ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ matthuszagh ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/python-ctags3/default.nix b/pkgs/development/python-modules/python-ctags3/default.nix index 3f00bbcd783a..dfe511ee13b7 100644 --- a/pkgs/development/python-modules/python-ctags3/default.nix +++ b/pkgs/development/python-modules/python-ctags3/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { cython src/_readtags.pyx ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Ctags indexing python bindings"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/python-daemon/default.nix b/pkgs/development/python-modules/python-daemon/default.nix index be0b12cfb819..af1bac2cb252 100644 --- a/pkgs/development/python-modules/python-daemon/default.nix +++ b/pkgs/development/python-modules/python-daemon/default.nix @@ -66,11 +66,11 @@ buildPythonPackage rec { "daemon.pidfile" ]; - meta = with lib; { + meta = { description = "Library to implement a well-behaved Unix daemon process"; homepage = "https://pagure.io/python-daemon/"; # See "Copying" section in https://pagure.io/python-daemon/blob/main/f/README - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus asl20 ]; diff --git a/pkgs/development/python-modules/python-dateutil/default.nix b/pkgs/development/python-modules/python-dateutil/default.nix index 71def22fc9c5..21a4668f1f43 100644 --- a/pkgs/development/python-modules/python-dateutil/default.nix +++ b/pkgs/development/python-modules/python-dateutil/default.nix @@ -38,14 +38,14 @@ buildPythonPackage rec { "dateutil.zoneinfo" ]; - meta = with lib; { + meta = { changelog = "https://github.com/dateutil/dateutil/blob/${version}/NEWS"; description = "Powerful extensions to the standard datetime module"; homepage = "https://github.com/dateutil/dateutil/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 ]; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-dbusmock/default.nix b/pkgs/development/python-modules/python-dbusmock/default.nix index 48dc270bac44..804d40f32bfd 100644 --- a/pkgs/development/python-modules/python-dbusmock/default.nix +++ b/pkgs/development/python-modules/python-dbusmock/default.nix @@ -65,12 +65,12 @@ buildPythonPackage rec { "test_session_service_activation" ]; - meta = with lib; { + meta = { changelog = "https://github.com/martinpitt/python-dbusmock/releases/tag/${src.tag}"; description = "Mock D-Bus objects for tests"; homepage = "https://github.com/martinpitt/python-dbusmock"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ callahad ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ callahad ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/python-decouple/default.nix b/pkgs/development/python-modules/python-decouple/default.nix index 6bbe21fdbd4a..1983e4ef029e 100644 --- a/pkgs/development/python-modules/python-decouple/default.nix +++ b/pkgs/development/python-modules/python-decouple/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "decouple" ]; - meta = with lib; { + meta = { description = "Module to handle code and condifuration"; homepage = "https://github.com/HBNetwork/python-decouple"; changelog = "https://github.com/HBNetwork/python-decouple/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-didl-lite/default.nix b/pkgs/development/python-modules/python-didl-lite/default.nix index 59660aab7748..1e5a571005ae 100644 --- a/pkgs/development/python-modules/python-didl-lite/default.nix +++ b/pkgs/development/python-modules/python-didl-lite/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "didl_lite" ]; - meta = with lib; { + meta = { description = "DIDL-Lite (Digital Item Declaration Language) tools for Python"; homepage = "https://github.com/StevenLooman/python-didl-lite"; changelog = "https://github.com/StevenLooman/python-didl-lite/blob/${version}/CHANGES.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/python-digitalocean/default.nix b/pkgs/development/python-modules/python-digitalocean/default.nix index 4877960c7b5d..160811cc994f 100644 --- a/pkgs/development/python-modules/python-digitalocean/default.nix +++ b/pkgs/development/python-modules/python-digitalocean/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "digitalocean" ]; - meta = with lib; { + meta = { description = "Python API to manage Digital Ocean Droplets and Images"; homepage = "https://github.com/koalalorenzo/python-digitalocean"; changelog = "https://github.com/koalalorenzo/python-digitalocean/releases/tag/v${version}"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ teh ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/python-djvulibre/default.nix b/pkgs/development/python-modules/python-djvulibre/default.nix index 12f31ba423fc..4af980332d64 100644 --- a/pkgs/development/python-modules/python-djvulibre/default.nix +++ b/pkgs/development/python-modules/python-djvulibre/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "-v" ]; - meta = with lib; { + meta = { description = "Python support for the DjVu image format"; homepage = "https://github.com/FriedrichFroebel/python-djvulibre"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; changelog = "https://github.com/FriedrichFroebel/python-djvulibre/releases/tag/${src.tag}"; - maintainers = with maintainers; [ dansbandit ]; + maintainers = with lib.maintainers; [ dansbandit ]; }; } diff --git a/pkgs/development/python-modules/python-docs-theme/default.nix b/pkgs/development/python-modules/python-docs-theme/default.nix index 6c8e0daf0b38..efb296b45dad 100644 --- a/pkgs/development/python-modules/python-docs-theme/default.nix +++ b/pkgs/development/python-modules/python-docs-theme/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_docs_theme" ]; - meta = with lib; { + meta = { description = "Sphinx theme for CPython project"; homepage = "https://github.com/python/python-docs-theme"; changelog = "https://github.com/python/python-docs-theme/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.psfl; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/python-docx/default.nix b/pkgs/development/python-modules/python-docx/default.nix index 456c66eee149..4a88ba157780 100644 --- a/pkgs/development/python-modules/python-docx/default.nix +++ b/pkgs/development/python-modules/python-docx/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "-Wignore::DeprecationWarning" ]; - meta = with lib; { + meta = { description = "Create and update Microsoft Word .docx files"; homepage = "https://python-docx.readthedocs.io/"; changelog = "https://github.com/python-openxml/python-docx/blob/v${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ alexchapman ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alexchapman ]; }; } diff --git a/pkgs/development/python-modules/python-doi/default.nix b/pkgs/development/python-modules/python-doi/default.nix index 37494e57e1e4..ae13490a68d0 100644 --- a/pkgs/development/python-modules/python-doi/default.nix +++ b/pkgs/development/python-modules/python-doi/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { disabled = !isPy3k; - meta = with lib; { + meta = { description = "Python library to work with Document Object Identifiers (doi)"; homepage = "https://github.com/papis/python-doi"; - maintainers = with maintainers; [ teto ]; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/python-dotenv/default.nix b/pkgs/development/python-modules/python-dotenv/default.nix index 44e978008bdf..fa680ba04b92 100644 --- a/pkgs/development/python-modules/python-dotenv/default.nix +++ b/pkgs/development/python-modules/python-dotenv/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dotenv" ]; - meta = with lib; { + meta = { description = "Add .env support to your django/flask apps in development and deployments"; mainProgram = "dotenv"; homepage = "https://github.com/theskumar/python-dotenv"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ erikarvstedt ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ erikarvstedt ]; }; } diff --git a/pkgs/development/python-modules/python-ecobee-api/default.nix b/pkgs/development/python-modules/python-ecobee-api/default.nix index 81cd2477e97e..e5fd9da0bd59 100644 --- a/pkgs/development/python-modules/python-ecobee-api/default.nix +++ b/pkgs/development/python-modules/python-ecobee-api/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyecobee" ]; - meta = with lib; { + meta = { description = "Python API for talking to Ecobee thermostats"; homepage = "https://github.com/nkgilley/python-ecobee-api"; changelog = "https://github.com/nkgilley/python-ecobee-api/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-editor/default.nix b/pkgs/development/python-modules/python-editor/default.nix index 8e3fde5cce16..85c4969a1c81 100644 --- a/pkgs/development/python-modules/python-editor/default.nix +++ b/pkgs/development/python-modules/python-editor/default.nix @@ -19,9 +19,9 @@ buildPythonPackage { # No proper tests doCheck = false; - meta = with lib; { + meta = { description = "Library that provides the `editor` module for programmatically"; homepage = "https://github.com/fmoo/python-editor"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/python-efl/default.nix b/pkgs/development/python-modules/python-efl/default.nix index 587e92193b9a..ca1e4306bd4e 100644 --- a/pkgs/development/python-modules/python-efl/default.nix +++ b/pkgs/development/python-modules/python-efl/default.nix @@ -77,18 +77,18 @@ buildPythonPackage rec { passthru.updateScript = directoryListingUpdater { }; - meta = with lib; { + meta = { description = "Python bindings for Enlightenment Foundation Libraries"; homepage = "https://github.com/DaveMDS/python-efl"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl3 lgpl3 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matejc ftrvxmtrx ]; - teams = [ teams.enlightenment ]; + teams = [ lib.teams.enlightenment ]; }; } diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix index 788c1d5e06c4..b905b22971e8 100644 --- a/pkgs/development/python-modules/python-engineio/default.nix +++ b/pkgs/development/python-modules/python-engineio/default.nix @@ -69,7 +69,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "engineio" ]; - meta = with lib; { + meta = { description = "Python based Engine.IO client and server"; longDescription = '' Engine.IO is a lightweight transport protocol that enables real-time @@ -77,7 +77,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/miguelgrinberg/python-engineio/"; changelog = "https://github.com/miguelgrinberg/python-engineio/blob/${src.tag}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/python-ev3dev2/default.nix b/pkgs/development/python-modules/python-ev3dev2/default.nix index dc185aced7d1..67a039644f6b 100644 --- a/pkgs/development/python-modules/python-ev3dev2/default.nix +++ b/pkgs/development/python-modules/python-ev3dev2/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { ${python.interpreter} -W ignore::ResourceWarning tests/api_tests.py ''; - meta = with lib; { + meta = { description = "Python language bindings for ev3dev"; homepage = "https://github.com/ev3dev/ev3dev-lang-python"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ emilytrau ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/python-family-hub-local/default.nix b/pkgs/development/python-modules/python-family-hub-local/default.nix index 81ea4bff27ca..8d17505c6f01 100644 --- a/pkgs/development/python-modules/python-family-hub-local/default.nix +++ b/pkgs/development/python-modules/python-family-hub-local/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfamilyhublocal" ]; - meta = with lib; { + meta = { description = "Module to accesse information from Samsung FamilyHub fridges locally"; homepage = "https://github.com/Klathmon/python-family-hub-local"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-fedora/default.nix b/pkgs/development/python-modules/python-fedora/default.nix index 4dda6c0bc84d..a7b650d6f0df 100644 --- a/pkgs/development/python-modules/python-fedora/default.nix +++ b/pkgs/development/python-modules/python-fedora/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fedora" ]; - meta = with lib; { + meta = { description = "Module to interact with the infrastructure of the Fedora Project"; homepage = "https://github.com/fedora-infra/python-fedora"; changelog = "https://github.com/fedora-infra/python-fedora/releases/tag/${version}"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-flirt/default.nix b/pkgs/development/python-modules/python-flirt/default.nix index 3f737804b338..7b056638f55e 100644 --- a/pkgs/development/python-modules/python-flirt/default.nix +++ b/pkgs/development/python-modules/python-flirt/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flirt" ]; - meta = with lib; { + meta = { description = "Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures"; homepage = "https://github.com/williballenthin/lancelot/tree/master/pyflirt"; - license = licenses.asl20; - maintainers = with maintainers; [ sbruder ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sbruder ]; }; } diff --git a/pkgs/development/python-modules/python-frontmatter/default.nix b/pkgs/development/python-modules/python-frontmatter/default.nix index 0e6b5bb5c489..ea89d3c2b2dd 100644 --- a/pkgs/development/python-modules/python-frontmatter/default.nix +++ b/pkgs/development/python-modules/python-frontmatter/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "frontmatter" ]; - meta = with lib; { + meta = { homepage = "https://github.com/eyeseast/python-frontmatter"; description = "Parse and manage posts with YAML (or other) frontmatter"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/python-fsutil/default.nix b/pkgs/development/python-modules/python-fsutil/default.nix index f88377959251..e7d5e38a8ccd 100644 --- a/pkgs/development/python-modules/python-fsutil/default.nix +++ b/pkgs/development/python-modules/python-fsutil/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fsutil" ]; - meta = with lib; { + meta = { description = "Module with file-system utilities"; homepage = "https://github.com/fabiocaccamo/python-fsutil"; changelog = "https://github.com/fabiocaccamo/python-fsutil/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-fullykiosk/default.nix b/pkgs/development/python-modules/python-fullykiosk/default.nix index 3f4ed5c4d97b..98b8f782c29b 100644 --- a/pkgs/development/python-modules/python-fullykiosk/default.nix +++ b/pkgs/development/python-modules/python-fullykiosk/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "fullykiosk" ]; - meta = with lib; { + meta = { description = "Wrapper for Fully Kiosk Browser REST interface"; homepage = "https://github.com/cgarwood/python-fullykiosk"; changelog = "https://github.com/cgarwood/python-fullykiosk/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-fx/default.nix b/pkgs/development/python-modules/python-fx/default.nix index 04ad24d77aa3..168a282308b5 100644 --- a/pkgs/development/python-modules/python-fx/default.nix +++ b/pkgs/development/python-modules/python-fx/default.nix @@ -92,12 +92,12 @@ buildPythonPackage rec { "test_start" ]; - meta = with lib; { + meta = { description = "Module to view JSON in a TUI"; homepage = "https://github.com/cielong/pyfx"; changelog = "https://github.com/cielong/pyfx/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pyfx"; }; } diff --git a/pkgs/development/python-modules/python-gammu/default.nix b/pkgs/development/python-modules/python-gammu/default.nix index 2e36ccee20ae..cf7d1d9c0afd 100644 --- a/pkgs/development/python-modules/python-gammu/default.nix +++ b/pkgs/development/python-modules/python-gammu/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gammu" ]; - meta = with lib; { + meta = { description = "Python bindings for Gammu"; homepage = "https://github.com/gammu/python-gammu/"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix index 483a2863a099..b74f1376135d 100644 --- a/pkgs/development/python-modules/python-gitlab/default.nix +++ b/pkgs/development/python-modules/python-gitlab/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gitlab" ]; - meta = with lib; { + meta = { description = "Interact with GitLab API"; homepage = "https://github.com/python-gitlab/python-gitlab"; changelog = "https://github.com/python-gitlab/python-gitlab/blob/v${version}/CHANGELOG.md"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ nyanloutre ]; mainProgram = "gitlab"; }; } diff --git a/pkgs/development/python-modules/python-glanceclient/default.nix b/pkgs/development/python-modules/python-glanceclient/default.nix index aa134b766652..4ccad99c4783 100644 --- a/pkgs/development/python-modules/python-glanceclient/default.nix +++ b/pkgs/development/python-modules/python-glanceclient/default.nix @@ -88,10 +88,10 @@ buildPythonPackage { pythonImportsCheck = [ "glanceclient" ]; - meta = with lib; { + meta = { description = "Python bindings for the OpenStack Images API"; homepage = "https://github.com/openstack/python-glanceclient/"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-gnupg/default.nix b/pkgs/development/python-modules/python-gnupg/default.nix index 0ba82fdcccb8..f0976ccf2f80 100644 --- a/pkgs/development/python-modules/python-gnupg/default.nix +++ b/pkgs/development/python-modules/python-gnupg/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gnupg" ]; - meta = with lib; { + meta = { description = "API for the GNU Privacy Guard (GnuPG)"; homepage = "https://github.com/vsajip/python-gnupg"; changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-google-nest/default.nix b/pkgs/development/python-modules/python-google-nest/default.nix index 39e4b707c5b9..026abda5bff4 100644 --- a/pkgs/development/python-modules/python-google-nest/default.nix +++ b/pkgs/development/python-modules/python-google-nest/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nest" ]; - meta = with lib; { + meta = { description = "Python API and command line tool for talking to Nest thermostats"; homepage = "https://github.com/axlan/python-nest/"; - license = licenses.cc-by-nc-sa-30; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.cc-by-nc-sa-30; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-gvm/default.nix b/pkgs/development/python-modules/python-gvm/default.nix index 303176669a29..6f4ed6134718 100644 --- a/pkgs/development/python-modules/python-gvm/default.nix +++ b/pkgs/development/python-modules/python-gvm/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gvm" ]; - meta = with lib; { + meta = { description = "Collection of APIs that help with remote controlling a Greenbone Security Manager"; homepage = "https://github.com/greenbone/python-gvm"; changelog = "https://github.com/greenbone/python-gvm/releases/tag/${src.tag}"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-hcl2/default.nix b/pkgs/development/python-modules/python-hcl2/default.nix index e464d93876b5..bc9402075f89 100644 --- a/pkgs/development/python-modules/python-hcl2/default.nix +++ b/pkgs/development/python-modules/python-hcl2/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Parser for HCL2 written in Python using Lark"; homepage = "https://github.com/amplify-education/python-hcl2"; changelog = "https://github.com/amplify-education/python-hcl2/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ shivaraj-bh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ shivaraj-bh ]; }; } diff --git a/pkgs/development/python-modules/python-heatclient/default.nix b/pkgs/development/python-modules/python-heatclient/default.nix index 73fce442a20c..bba809a66cc4 100644 --- a/pkgs/development/python-modules/python-heatclient/default.nix +++ b/pkgs/development/python-modules/python-heatclient/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "heatclient" ]; - meta = with lib; { + meta = { description = "Library for Heat built on the Heat orchestration API"; mainProgram = "heat"; homepage = "https://github.com/openstack/python-heatclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-hl7/default.nix b/pkgs/development/python-modules/python-hl7/default.nix index 8edc669e8820..c097f3791a23 100644 --- a/pkgs/development/python-modules/python-hl7/default.nix +++ b/pkgs/development/python-modules/python-hl7/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "hl7" ]; - meta = with lib; { + meta = { description = "Simple library for parsing messages of Health Level 7 (HL7) version 2.x into Python objects"; mainProgram = "mllp_send"; homepage = "https://python-hl7.readthedocs.org"; changelog = "https://python-hl7.readthedocs.io/en/latest/changelog.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/python-homeassistant-analytics/default.nix b/pkgs/development/python-modules/python-homeassistant-analytics/default.nix index 772bf80d35db..7a4f248d3637 100644 --- a/pkgs/development/python-modules/python-homeassistant-analytics/default.nix +++ b/pkgs/development/python-modules/python-homeassistant-analytics/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_homeassistant_analytics" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for Home Assistant Analytics"; changelog = "https://github.com/joostlek/python-homeassistant-analytics/releases/tag/v${version}"; homepage = "https://github.com/joostlek/python-homeassistant-analytics"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/python-homewizard-energy/default.nix b/pkgs/development/python-modules/python-homewizard-energy/default.nix index 7beb77b56623..8c2f163de5b4 100644 --- a/pkgs/development/python-modules/python-homewizard-energy/default.nix +++ b/pkgs/development/python-modules/python-homewizard-energy/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "homewizard_energy" ]; - meta = with lib; { + meta = { description = "Library to communicate with HomeWizard Energy devices"; homepage = "https://github.com/homewizard/python-homewizard-energy"; changelog = "https://github.com/homewizard/python-homewizard-energy/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-hosts/default.nix b/pkgs/development/python-modules/python-hosts/default.nix index 5c7f7418313f..fad9989bd4bc 100644 --- a/pkgs/development/python-modules/python-hosts/default.nix +++ b/pkgs/development/python-modules/python-hosts/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { "test_import_from_url" ]; - meta = with lib; { + meta = { description = "Library for managing a hosts file"; longDescription = '' python-hosts is a Python library for managing a hosts file. It enables you to add @@ -42,7 +42,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/jonhadfield/python-hosts"; changelog = "https://github.com/jonhadfield/python-hosts/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/python-hpilo/default.nix b/pkgs/development/python-modules/python-hpilo/default.nix index 5ac44afe985b..d9eca0f5cbb8 100644 --- a/pkgs/development/python-modules/python-hpilo/default.nix +++ b/pkgs/development/python-modules/python-hpilo/default.nix @@ -24,15 +24,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "hpilo" ]; - meta = with lib; { + meta = { description = "Python module to access the HP iLO XML interface"; homepage = "https://seveas.github.io/python-hpilo/"; changelog = "https://github.com/seveas/python-hpilo/blob/${version}/CHANGES"; - license = with licenses; [ + license = with lib.licenses; [ asl20 gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "hpilo_cli"; }; } diff --git a/pkgs/development/python-modules/python-http-client/default.nix b/pkgs/development/python-modules/python-http-client/default.nix index 7d303d71ef01..2283bd88c5ec 100644 --- a/pkgs/development/python-modules/python-http-client/default.nix +++ b/pkgs/development/python-modules/python-http-client/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_http_client" ]; - meta = with lib; { + meta = { description = "Python HTTP library to call APIs"; homepage = "https://github.com/sendgrid/python-http-client"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-i18n/default.nix b/pkgs/development/python-modules/python-i18n/default.nix index 7ee2794a6dec..dfe0c35ba441 100644 --- a/pkgs/development/python-modules/python-i18n/default.nix +++ b/pkgs/development/python-modules/python-i18n/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { enabledTestPaths = [ "i18n/tests/run_tests.py" ]; pythonImportsCheck = [ "i18n" ]; - meta = with lib; { + meta = { description = "Easy to use i18n library"; homepage = "https://github.com/danhper/python-i18n"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ emilytrau ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/python-idzip/default.nix b/pkgs/development/python-modules/python-idzip/default.nix index 8053d053e9ea..53c6e8835d89 100644 --- a/pkgs/development/python-modules/python-idzip/default.nix +++ b/pkgs/development/python-modules/python-idzip/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { "test_bufferedio_compat" ]; - meta = with lib; { + meta = { description = "Seekable, gzip compatible, compression format"; mainProgram = "idzip"; homepage = "https://github.com/bauman/python-idzip"; changelog = "https://github.com/bauman/python-idzip/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/python-ipmi/default.nix b/pkgs/development/python-modules/python-ipmi/default.nix index 0aec0164d9d7..011a6c9027c1 100644 --- a/pkgs/development/python-modules/python-ipmi/default.nix +++ b/pkgs/development/python-modules/python-ipmi/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyipmi" ]; - meta = with lib; { + meta = { description = "Python IPMI Library"; mainProgram = "ipmitool.py"; homepage = "https://github.com/kontron/python-ipmi"; - license = with licenses; [ lgpl2Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl2Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-ipware/default.nix b/pkgs/development/python-modules/python-ipware/default.nix index fca4653e9002..e5789d4ed7bc 100644 --- a/pkgs/development/python-modules/python-ipware/default.nix +++ b/pkgs/development/python-modules/python-ipware/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_ipware" ]; - meta = with lib; { + meta = { description = "Python package for server applications to retrieve client's IP address"; homepage = "https://github.com/un33k/python-ipware"; changelog = "https://github.com/un33k/python-ipware/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ e1mo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ e1mo ]; }; } diff --git a/pkgs/development/python-modules/python-ironicclient/default.nix b/pkgs/development/python-modules/python-ironicclient/default.nix index b5d1217adaf1..4949b5d88091 100644 --- a/pkgs/development/python-modules/python-ironicclient/default.nix +++ b/pkgs/development/python-modules/python-ironicclient/default.nix @@ -84,11 +84,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ironicclient" ]; - meta = with lib; { + meta = { description = "Client for OpenStack bare metal provisioning API, includes a Python module (ironicclient) and CLI (baremetal)"; mainProgram = "baremetal"; homepage = "https://github.com/openstack/python-ironicclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-izone/default.nix b/pkgs/development/python-modules/python-izone/default.nix index 7946f8201559..1ffeb9b47d5b 100644 --- a/pkgs/development/python-modules/python-izone/default.nix +++ b/pkgs/development/python-modules/python-izone/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pizone" ]; - meta = with lib; { + meta = { description = "Python interface to the iZone airconditioner controller"; homepage = "https://github.com/Swamp-Ig/pizone"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-jenkins/default.nix b/pkgs/development/python-modules/python-jenkins/default.nix index 6e2eb9c169ba..a5e622ff3647 100644 --- a/pkgs/development/python-modules/python-jenkins/default.nix +++ b/pkgs/development/python-modules/python-jenkins/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { stestr run -E "tests.test_plugins.(PluginsTestScenarios.test_plugin_version_comparison|PluginsTestScenarios.test_plugin_version_object_comparison|PluginsTest.test_plugin_equal|PluginsTest.test_plugin_not_equal)" ''; - meta = with lib; { + meta = { description = "Python bindings for the remote Jenkins API"; homepage = "https://pypi.python.org/pypi/python-jenkins"; - license = licenses.bsd3; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/python-jose/default.nix b/pkgs/development/python-modules/python-jose/default.nix index d4f2093c2a3c..0aafd036dc5a 100644 --- a/pkgs/development/python-modules/python-jose/default.nix +++ b/pkgs/development/python-modules/python-jose/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jose" ]; - meta = with lib; { + meta = { description = "JOSE implementation in Python"; homepage = "https://github.com/mpdavis/python-jose"; changelog = "https://github.com/mpdavis/python-jose/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-json-logger/default.nix b/pkgs/development/python-modules/python-json-logger/default.nix index acae4e2689da..58f1a0679bd2 100644 --- a/pkgs/development/python-modules/python-json-logger/default.nix +++ b/pkgs/development/python-modules/python-json-logger/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { "test_json_default_encoder_with_timestamp" ]; - meta = with lib; { + meta = { description = "Json Formatter for the standard python logger"; homepage = "https://github.com/madzak/python-json-logger"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-juicenet/default.nix b/pkgs/development/python-modules/python-juicenet/default.nix index 1ceb9d031cc6..7a7a7f187e7b 100644 --- a/pkgs/development/python-modules/python-juicenet/default.nix +++ b/pkgs/development/python-modules/python-juicenet/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyjuicenet" ]; - meta = with lib; { + meta = { description = "Read and control Juicenet/Juicepoint/Juicebox based EVSE devices"; homepage = "https://github.com/jesserockz/python-juicenet"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-kasa/default.nix b/pkgs/development/python-modules/python-kasa/default.nix index b5322330d8e3..368c0f08b87a 100644 --- a/pkgs/development/python-modules/python-kasa/default.nix +++ b/pkgs/development/python-modules/python-kasa/default.nix @@ -73,12 +73,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "kasa" ]; - meta = with lib; { + meta = { description = "Python API for TP-Link Kasa Smarthome products"; homepage = "https://python-kasa.readthedocs.io/"; changelog = "https://github.com/python-kasa/python-kasa/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "kasa"; }; } diff --git a/pkgs/development/python-modules/python-keycloak/default.nix b/pkgs/development/python-modules/python-keycloak/default.nix index ce8bb180c156..5566eec39910 100644 --- a/pkgs/development/python-modules/python-keycloak/default.nix +++ b/pkgs/development/python-modules/python-keycloak/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "keycloak" ]; - meta = with lib; { + meta = { description = "Provides access to the Keycloak API"; homepage = "https://github.com/marcospereirampj/python-keycloak"; changelog = "https://github.com/marcospereirampj/python-keycloak/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-keystoneclient/default.nix b/pkgs/development/python-modules/python-keystoneclient/default.nix index 6cd64d0cc384..a2bb061e3a11 100644 --- a/pkgs/development/python-modules/python-keystoneclient/default.nix +++ b/pkgs/development/python-modules/python-keystoneclient/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "keystoneclient" ]; - meta = with lib; { + meta = { description = "Client Library for OpenStack Identity"; homepage = "https://github.com/openstack/python-keystoneclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-ldap-test/default.nix b/pkgs/development/python-modules/python-ldap-test/default.nix index 5b2f69f4e5e9..176b2f7978c9 100644 --- a/pkgs/development/python-modules/python-ldap-test/default.nix +++ b/pkgs/development/python-modules/python-ldap-test/default.nix @@ -20,14 +20,14 @@ buildPythonPackage rec { # Tests needs java to be present in path doCheck = false; - meta = with lib; { + meta = { description = "Tool for testing code speaking with LDAP server"; homepage = "https://github.com/zoldar/python-ldap-test"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode ]; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/python-ldap/default.nix b/pkgs/development/python-modules/python-ldap/default.nix index 4ac1ade56c3e..b1dc6f1e6838 100644 --- a/pkgs/development/python-modules/python-ldap/default.nix +++ b/pkgs/development/python-modules/python-ldap/default.nix @@ -71,12 +71,12 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python modules for implementing LDAP clients"; downloadPage = "https://github.com/python-ldap/python-ldap"; homepage = "https://www.python-ldap.org/"; changelog = "https://github.com/python-ldap/python-ldap/releases/tag/python-ldap-${version}"; - license = licenses.psfl; + license = lib.licenses.psfl; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-libnmap/default.nix b/pkgs/development/python-modules/python-libnmap/default.nix index 8d94a1e30d67..4682cf09e550 100644 --- a/pkgs/development/python-modules/python-libnmap/default.nix +++ b/pkgs/development/python-modules/python-libnmap/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "libnmap" ]; - meta = with lib; { + meta = { description = "Library to run nmap scans, parse and diff scan results"; homepage = "https://github.com/savon-noir/python-libnmap"; changelog = "https://github.com/savon-noir/python-libnmap/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-linux-procfs/default.nix b/pkgs/development/python-modules/python-linux-procfs/default.nix index 3a0ed111cb5c..4139f7cea8c7 100644 --- a/pkgs/development/python-modules/python-linux-procfs/default.nix +++ b/pkgs/development/python-modules/python-linux-procfs/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "procfs" ]; - meta = with lib; { + meta = { description = "Python classes to extract information from the Linux kernel /proc files"; mainProgram = "pflags"; homepage = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/python-modules/python-logstash/default.nix b/pkgs/development/python-modules/python-logstash/default.nix index 3976e1996a2c..b0f2e7ab1590 100644 --- a/pkgs/development/python-modules/python-logstash/default.nix +++ b/pkgs/development/python-modules/python-logstash/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Python logging handler for Logstash"; homepage = "https://github.com/vklochan/python-logstash"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/python-louvain/default.nix b/pkgs/development/python-modules/python-louvain/default.nix index 2d908d28c28f..bed67fc98a6a 100644 --- a/pkgs/development/python-modules/python-louvain/default.nix +++ b/pkgs/development/python-modules/python-louvain/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { scipy ]; - meta = with lib; { + meta = { homepage = "https://github.com/taynaud/python-louvain"; description = "Louvain Community Detection"; mainProgram = "community"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix b/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix index b215e67e9cdb..17b64ff66352 100644 --- a/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix +++ b/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylsp_jsonrpc" ]; - meta = with lib; { + meta = { description = "Python server implementation of the JSON RPC 2.0 protocol"; homepage = "https://github.com/python-lsp/python-lsp-jsonrpc"; changelog = "https://github.com/python-lsp/python-lsp-jsonrpc/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-ly/default.nix b/pkgs/development/python-modules/python-ly/default.nix index 1ab14db3f3dc..04af74d98d09 100644 --- a/pkgs/development/python-modules/python-ly/default.nix +++ b/pkgs/development/python-modules/python-ly/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/frescobaldi/python-ly/releases/tag/${src.tag}"; description = "Tool and library for manipulating LilyPond files"; homepage = "https://github.com/frescobaldi/python-ly"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-lzf/default.nix b/pkgs/development/python-modules/python-lzf/default.nix index eda773578239..014bf431c028 100644 --- a/pkgs/development/python-modules/python-lzf/default.nix +++ b/pkgs/development/python-modules/python-lzf/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Liblzf python bindings"; homepage = "https://github.com/teepark/python-lzf"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/python-lzo/default.nix b/pkgs/development/python-modules/python-lzo/default.nix index df2a26e46361..ed301d06c531 100644 --- a/pkgs/development/python-modules/python-lzo/default.nix +++ b/pkgs/development/python-modules/python-lzo/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lzo" ]; - meta = with lib; { + meta = { description = "Python bindings for the LZO data compression library"; homepage = "https://github.com/jd-boyd/python-lzo"; changelog = "https://github.com/jd-boyd/python-lzo/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ jbedo ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ jbedo ]; }; } diff --git a/pkgs/development/python-modules/python-magic/default.nix b/pkgs/development/python-modules/python-magic/default.nix index ee9503865f70..b0aeb1264a38 100644 --- a/pkgs/development/python-modules/python-magic/default.nix +++ b/pkgs/development/python-modules/python-magic/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python interface to the libmagic file type identification library"; homepage = "https://github.com/ahupp/python-magic"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-manilaclient/default.nix b/pkgs/development/python-modules/python-manilaclient/default.nix index 657e3d4e75b5..af9cd074bcd1 100644 --- a/pkgs/development/python-modules/python-manilaclient/default.nix +++ b/pkgs/development/python-modules/python-manilaclient/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "manilaclient" ]; - meta = with lib; { + meta = { description = "Client library for OpenStack Manila API"; mainProgram = "manila"; homepage = "https://github.com/openstack/python-manilaclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-mbedtls/default.nix b/pkgs/development/python-modules/python-mbedtls/default.nix index 758a9c1b24bb..20bfc02d6bde 100644 --- a/pkgs/development/python-modules/python-mbedtls/default.nix +++ b/pkgs/development/python-modules/python-mbedtls/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mbedtls" ]; - meta = with lib; { + meta = { description = "Cryptographic library with an mbed TLS back end"; homepage = "https://github.com/Synss/python-mbedtls"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/python-memcached/default.nix b/pkgs/development/python-modules/python-memcached/default.nix index 048e53e7eb4c..c3b8e28159b3 100644 --- a/pkgs/development/python-modules/python-memcached/default.nix +++ b/pkgs/development/python-modules/python-memcached/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "memcache" ]; - meta = with lib; { + meta = { description = "Pure python memcached client"; homepage = "https://github.com/linsomniac/python-memcached"; - license = licenses.psfl; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-miio/default.nix b/pkgs/development/python-modules/python-miio/default.nix index 3154ef5312d4..5b31c43928ce 100644 --- a/pkgs/development/python-modules/python-miio/default.nix +++ b/pkgs/development/python-modules/python-miio/default.nix @@ -80,10 +80,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "miio" ]; - meta = with lib; { + meta = { description = "Python library for interfacing with Xiaomi smart appliances"; homepage = "https://github.com/rytilahti/python-miio"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ flyfloh ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ flyfloh ]; }; } diff --git a/pkgs/development/python-modules/python-mimeparse/default.nix b/pkgs/development/python-modules/python-mimeparse/default.nix index 9a8ca2837a94..b66bd49c9a9a 100644 --- a/pkgs/development/python-modules/python-mimeparse/default.nix +++ b/pkgs/development/python-modules/python-mimeparse/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Module provides basic functions for parsing mime-type names and matching them against a list of media-ranges"; homepage = "https://github.com/dbtsai/python-mimeparse"; changelog = "https://github.com/falconry/python-mimeparse/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-mistralclient/default.nix b/pkgs/development/python-modules/python-mistralclient/default.nix index 70423d65a6bf..cd17a2259130 100644 --- a/pkgs/development/python-modules/python-mistralclient/default.nix +++ b/pkgs/development/python-modules/python-mistralclient/default.nix @@ -81,11 +81,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mistralclient" ]; - meta = with lib; { + meta = { description = "OpenStack Mistral Command-line Client"; homepage = "https://opendev.org/openstack/python-mistralclient/"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "mistral"; - teams = [ teams.openstack ]; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-mnist/default.nix b/pkgs/development/python-modules/python-mnist/default.nix index ec7d447f36c2..2bd23d7404e0 100644 --- a/pkgs/development/python-modules/python-mnist/default.nix +++ b/pkgs/development/python-modules/python-mnist/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "a0cced01e83b5b844cff86109280df7a672a8e4e38fc19fa68999a17f8a9fbd8"; }; - meta = with lib; { + meta = { homepage = "https://github.com/sorki/python-mnist"; description = "Simple MNIST data parser written in Python"; - license = licenses.bsd3; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/python-motionmount/default.nix b/pkgs/development/python-modules/python-motionmount/default.nix index c43ad5231243..d2466b492b5b 100644 --- a/pkgs/development/python-modules/python-motionmount/default.nix +++ b/pkgs/development/python-modules/python-motionmount/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "motionmount" ]; - meta = with lib; { + meta = { description = "Module to control the TVM7675 Pro (Signature) series of MotionMount"; homepage = "https://github.com/vogelsproducts/python-MotionMount"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-mpv-jsonipc/default.nix b/pkgs/development/python-modules/python-mpv-jsonipc/default.nix index fcba99bc5f24..ae09bfeb7860 100644 --- a/pkgs/development/python-modules/python-mpv-jsonipc/default.nix +++ b/pkgs/development/python-modules/python-mpv-jsonipc/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_mpv_jsonipc" ]; - meta = with lib; { + meta = { homepage = "https://github.com/iwalton3/python-mpv-jsonipc"; description = "Python API to MPV using JSON IPC"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-multipart/default.nix b/pkgs/development/python-modules/python-multipart/default.nix index 2d1558732119..639b696624a2 100644 --- a/pkgs/development/python-modules/python-multipart/default.nix +++ b/pkgs/development/python-modules/python-multipart/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { changelog = "https://github.com/Kludex/python-multipart/blob/${src.tag}/CHANGELOG.md"; description = "Streaming multipart parser for Python"; homepage = "https://github.com/Kludex/python-multipart"; - license = licenses.asl20; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/python-musicpd/default.nix b/pkgs/development/python-modules/python-musicpd/default.nix index ecbe930a832b..7839ee0f7be8 100644 --- a/pkgs/development/python-modules/python-musicpd/default.nix +++ b/pkgs/development/python-modules/python-musicpd/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { build-system = [ setuptools ]; - meta = with lib; { + meta = { description = "MPD (Music Player Daemon) client library written in pure Python"; homepage = "https://gitlab.com/kaliko/python-musicpd"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = with lib.maintainers; [ apfelkuchen6 ]; }; } diff --git a/pkgs/development/python-modules/python-mystrom/default.nix b/pkgs/development/python-modules/python-mystrom/default.nix index 3c5becf1a2c2..0a17aa21498e 100644 --- a/pkgs/development/python-modules/python-mystrom/default.nix +++ b/pkgs/development/python-modules/python-mystrom/default.nix @@ -37,7 +37,7 @@ buildPythonPackage rec { "pymystrom.switch" ]; - meta = with lib; { + meta = { description = "Python API client for interacting with myStrom devices"; longDescription = '' Asynchronous Python API client for interacting with myStrom devices. @@ -45,8 +45,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/home-assistant-ecosystem/python-mystrom"; changelog = "https://github.com/home-assistant-ecosystem/python-mystrom/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "mystrom"; }; } diff --git a/pkgs/development/python-modules/python-ndn/default.nix b/pkgs/development/python-modules/python-ndn/default.nix index 5173b45edabf..859896724bc1 100644 --- a/pkgs/development/python-modules/python-ndn/default.nix +++ b/pkgs/development/python-modules/python-ndn/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ndn" ]; - meta = with lib; { + meta = { description = "NDN client library with AsyncIO support"; homepage = "https://github.com/named-data/python-ndn"; changelog = "https://github.com/named-data/python-ndn/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-nest/default.nix b/pkgs/development/python-modules/python-nest/default.nix index bcac7a5cad8e..75d14361c21b 100644 --- a/pkgs/development/python-modules/python-nest/default.nix +++ b/pkgs/development/python-modules/python-nest/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nest" ]; - meta = with lib; { + meta = { description = "Python API and command line tool for talking to the Nest™ Thermostat"; homepage = "https://github.com/jkoelker/python-nest"; - license = licenses.cc-by-nc-sa-40; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.cc-by-nc-sa-40; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/python-neutronclient/default.nix b/pkgs/development/python-modules/python-neutronclient/default.nix index 0a75d7196e10..217d4cdb0aab 100644 --- a/pkgs/development/python-modules/python-neutronclient/default.nix +++ b/pkgs/development/python-modules/python-neutronclient/default.nix @@ -89,10 +89,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "neutronclient" ]; - meta = with lib; { + meta = { description = "Python bindings for the OpenStack Networking API"; homepage = "https://github.com/openstack/python-neutronclient/"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-nmap/default.nix b/pkgs/development/python-modules/python-nmap/default.nix index 504d9bb56144..21d06b9d1536 100644 --- a/pkgs/development/python-modules/python-nmap/default.nix +++ b/pkgs/development/python-modules/python-nmap/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "nmap" ]; - meta = with lib; { + meta = { description = "Python library which helps in using nmap"; longDescription = '' python-nmap is a Python library which helps in using nmap port scanner. It @@ -36,7 +36,7 @@ buildPythonPackage rec { It also supports nmap script outputs. ''; homepage = "https://xael.org/pages/python-nmap-en.html"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-novaclient/default.nix b/pkgs/development/python-modules/python-novaclient/default.nix index 417efd769013..546057f7d9be 100644 --- a/pkgs/development/python-modules/python-novaclient/default.nix +++ b/pkgs/development/python-modules/python-novaclient/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "novaclient" ]; - meta = with lib; { + meta = { description = "Client library for OpenStack Compute API"; mainProgram = "nova"; homepage = "https://github.com/openstack/python-novaclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-oauth2/default.nix b/pkgs/development/python-modules/python-oauth2/default.nix index 14bf4a05a425..518e0c926aa9 100644 --- a/pkgs/development/python-modules/python-oauth2/default.nix +++ b/pkgs/development/python-modules/python-oauth2/default.nix @@ -16,9 +16,9 @@ buildPythonPackage rec { # attempts to run mysql doCheck = false; - meta = with lib; { + meta = { description = "Framework that aims at making it easy to provide authentication via OAuth 2.0 within an application stack"; homepage = "https://github.com/wndhydrnt/python-oauth2"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/python-octaviaclient/default.nix b/pkgs/development/python-modules/python-octaviaclient/default.nix index 0b1b4bf9c162..7808dd5c2c11 100644 --- a/pkgs/development/python-modules/python-octaviaclient/default.nix +++ b/pkgs/development/python-modules/python-octaviaclient/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "octaviaclient" ]; - meta = with lib; { + meta = { description = "OpenStack Octavia Command-line Client"; homepage = "https://github.com/openstack/python-octaviaclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-opendata-transport/default.nix b/pkgs/development/python-modules/python-opendata-transport/default.nix index d94ed2604721..89e9b10c2089 100644 --- a/pkgs/development/python-modules/python-opendata-transport/default.nix +++ b/pkgs/development/python-modules/python-opendata-transport/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "opendata_transport" ]; - meta = with lib; { + meta = { description = "Python client for interacting with transport.opendata.ch"; homepage = "https://github.com/home-assistant-ecosystem/python-opendata-transport"; changelog = "https://github.com/home-assistant-ecosystem/python-opendata-transport/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-openems/default.nix b/pkgs/development/python-modules/python-openems/default.nix index a13f0d8bff84..7ca3f6f4537b 100644 --- a/pkgs/development/python-modules/python-openems/default.nix +++ b/pkgs/development/python-modules/python-openems/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "openEMS" ]; - meta = with lib; { + meta = { description = "Python interface to OpenEMS"; homepage = "http://openems.de/index.php/Main_Page.html"; - license = licenses.gpl3; - maintainers = with maintainers; [ matthuszagh ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ matthuszagh ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/python-opensky/default.nix b/pkgs/development/python-modules/python-opensky/default.nix index f572a63c6679..2dac54dac914 100644 --- a/pkgs/development/python-modules/python-opensky/default.nix +++ b/pkgs/development/python-modules/python-opensky/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_opensky" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for the OpenSky API"; homepage = "https://github.com/joostlek/python-opensky"; changelog = "https://github.com/joostlek/python-opensky/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-openstackclient/default.nix b/pkgs/development/python-modules/python-openstackclient/default.nix index 41cad8e5e65f..e981bc874b27 100644 --- a/pkgs/development/python-modules/python-openstackclient/default.nix +++ b/pkgs/development/python-modules/python-openstackclient/default.nix @@ -104,11 +104,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "OpenStack Command-line Client"; mainProgram = "openstack"; homepage = "https://github.com/openstack/python-openstackclient"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-openzwave/default.nix b/pkgs/development/python-modules/python-openzwave/default.nix index 90025773dad4..162fc0fb4c3f 100644 --- a/pkgs/development/python-modules/python-openzwave/default.nix +++ b/pkgs/development/python-modules/python-openzwave/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { # no tests available doCheck = false; - meta = with lib; { + meta = { description = "Python wrapper for the OpenZWave C++ library"; homepage = "https://github.com/OpenZWave/python-openzwave"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; inherit (openzwave.meta) platforms; }; diff --git a/pkgs/development/python-modules/python-osc/default.nix b/pkgs/development/python-modules/python-osc/default.nix index d96fa71747b2..6034b76c6b1d 100644 --- a/pkgs/development/python-modules/python-osc/default.nix +++ b/pkgs/development/python-modules/python-osc/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Open Sound Control server and client in pure python"; homepage = "https://github.com/attwad/python-osc"; changelog = "https://github.com/attwad/python-osc/blob/v${version}/CHANGELOG.md"; - license = licenses.unlicense; - maintainers = with maintainers; [ anirrudh ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ anirrudh ]; }; } diff --git a/pkgs/development/python-modules/python-otbr-api/default.nix b/pkgs/development/python-modules/python-otbr-api/default.nix index 6b4396b7a739..c188a00692b2 100644 --- a/pkgs/development/python-modules/python-otbr-api/default.nix +++ b/pkgs/development/python-modules/python-otbr-api/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_otbr_api" ]; - meta = with lib; { + meta = { description = "Library for the Open Thread Border Router"; homepage = "https://github.com/home-assistant-libs/python-otbr-api"; changelog = "https://github.com/home-assistant-libs/python-otbr-api/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-owasp-zap-v2-4/default.nix b/pkgs/development/python-modules/python-owasp-zap-v2-4/default.nix index 4eb3d52452c5..e5b7046029c7 100644 --- a/pkgs/development/python-modules/python-owasp-zap-v2-4/default.nix +++ b/pkgs/development/python-modules/python-owasp-zap-v2-4/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zapv2" ]; - meta = with lib; { + meta = { description = "Python library to access the OWASP ZAP API"; homepage = "https://github.com/zaproxy/zap-api-python"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-packer/default.nix b/pkgs/development/python-modules/python-packer/default.nix index 851cae395ad4..c8912328a88c 100644 --- a/pkgs/development/python-modules/python-packer/default.nix +++ b/pkgs/development/python-modules/python-packer/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # Tests requires network connections doCheck = false; - meta = with lib; { + meta = { description = "Interface for packer.io"; homepage = "https://github.com/nir0s/python-packer"; - license = licenses.asl20; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/python-pae/default.nix b/pkgs/development/python-modules/python-pae/default.nix index 731626689adf..a17443cd4de1 100644 --- a/pkgs/development/python-modules/python-pae/default.nix +++ b/pkgs/development/python-modules/python-pae/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_pae" ]; - meta = with lib; { + meta = { description = "Pre-authentication encoding (PAE) implementation in Python"; homepage = "https://github.com/MatthiasValvekens/python-pae"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-pam/default.nix b/pkgs/development/python-modules/python-pam/default.nix index 05135fdae841..d18dfa2154f8 100644 --- a/pkgs/development/python-modules/python-pam/default.nix +++ b/pkgs/development/python-modules/python-pam/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pam" ]; - meta = with lib; { + meta = { description = "Python pam module"; homepage = "https://github.com/FirefighterBlu3/python-pam"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mkg20001 ]; }; diff --git a/pkgs/development/python-modules/python-pidfile/default.nix b/pkgs/development/python-modules/python-pidfile/default.nix index e5f6e4c90735..3c684e3b5899 100644 --- a/pkgs/development/python-modules/python-pidfile/default.nix +++ b/pkgs/development/python-modules/python-pidfile/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { # see this: https://github.com/mosquito/python-pidfile/issues/7 doCheck = false; - meta = with lib; { + meta = { description = "Python context manager for managing pid files"; homepage = "https://github.com/mosquito/python-pidfile"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-pipedrive/default.nix b/pkgs/development/python-modules/python-pipedrive/default.nix index 9f541ba8005c..74edd260a94f 100644 --- a/pkgs/development/python-modules/python-pipedrive/default.nix +++ b/pkgs/development/python-modules/python-pipedrive/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { doCheck = false; # Tests are not provided. - meta = with lib; { + meta = { description = "Python library for interacting with the pipedrive.com API"; homepage = "https://github.com/jscott1989/python-pipedrive"; - license = licenses.unfree; - maintainers = with maintainers; [ mrmebelman ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/development/python-modules/python-ptrace/default.nix b/pkgs/development/python-modules/python-ptrace/default.nix index 545610fb695f..979ac46343e8 100644 --- a/pkgs/development/python-modules/python-ptrace/default.nix +++ b/pkgs/development/python-modules/python-ptrace/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { # requires distorm, which is optionally doCheck = false; - meta = with lib; { + meta = { description = "Python binding of ptrace library"; homepage = "https://github.com/vstinner/python-ptrace"; changelog = "https://github.com/vstinner/python-ptrace/blob/${version}/doc/changelog.rst"; - license = licenses.gpl2; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/python-rabbitair/default.nix b/pkgs/development/python-modules/python-rabbitair/default.nix index 6a158f0fc1b8..c99feb3a9e4f 100644 --- a/pkgs/development/python-modules/python-rabbitair/default.nix +++ b/pkgs/development/python-modules/python-rabbitair/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { "test_zeroconf" ]; - meta = with lib; { + meta = { description = "Module for the control of Rabbit Air air purifiers"; homepage = "https://github.com/rabbit-air/python-rabbitair"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-redis-lock/default.nix b/pkgs/development/python-modules/python-redis-lock/default.nix index f6f46376f9dd..2700a9b442ad 100644 --- a/pkgs/development/python-modules/python-redis-lock/default.nix +++ b/pkgs/development/python-modules/python-redis-lock/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "redis_lock" ]; - meta = with lib; { + meta = { changelog = "https://github.com/ionelmc/python-redis-lock/blob/v${version}/CHANGELOG.rst"; description = "Lock context manager implemented via redis SETNX/BLPOP"; homepage = "https://github.com/ionelmc/python-redis-lock"; - license = licenses.bsd2; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/python-registry/default.nix b/pkgs/development/python-modules/python-registry/default.nix index 15b631010bc9..0707a41d9fa4 100644 --- a/pkgs/development/python-modules/python-registry/default.nix +++ b/pkgs/development/python-modules/python-registry/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "Registry" ]; - meta = with lib; { + meta = { description = "Module to parse the Windows Registry hives"; homepage = "https://github.com/williballenthin/python-registry"; changelog = "https://github.com/williballenthin/python-registry/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-rtmidi/default.nix b/pkgs/development/python-modules/python-rtmidi/default.nix index c1766b27c5bf..3f06e9f6c0ac 100644 --- a/pkgs/development/python-modules/python-rtmidi/default.nix +++ b/pkgs/development/python-modules/python-rtmidi/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rtmidi" ]; - meta = with lib; { + meta = { description = "Python binding for the RtMidi C++ library implemented using Cython"; homepage = "https://github.com/SpotlightKid/python-rtmidi"; changelog = "https://github.com/SpotlightKid/python-rtmidi/blob/${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-sat/default.nix b/pkgs/development/python-modules/python-sat/default.nix index 4624eb5cb6ef..9f3b351c005d 100644 --- a/pkgs/development/python-modules/python-sat/default.nix +++ b/pkgs/development/python-modules/python-sat/default.nix @@ -46,14 +46,14 @@ buildPythonPackage rec { rm -r pysat ''; - meta = with lib; { + meta = { description = "Toolkit for SAT-based prototyping in Python (without optional dependencies)"; homepage = "https://github.com/pysathq/pysat"; changelog = "https://pysathq.github.io/updates/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ - maintainers.marius851000 - maintainers.chrjabs + lib.maintainers.marius851000 + lib.maintainers.chrjabs ]; platforms = lib.platforms.all; }; diff --git a/pkgs/development/python-modules/python-slugify/default.nix b/pkgs/development/python-modules/python-slugify/default.nix index 41fb3ec779b4..f07098967b13 100644 --- a/pkgs/development/python-modules/python-slugify/default.nix +++ b/pkgs/development/python-modules/python-slugify/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "slugify" ]; - meta = with lib; { + meta = { description = "Python Slugify application that handles Unicode"; mainProgram = "slugify"; homepage = "https://github.com/un33k/python-slugify"; changelog = "https://github.com/un33k/python-slugify/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-smarttub/default.nix b/pkgs/development/python-modules/python-smarttub/default.nix index f865d3d28184..a10b445c719d 100644 --- a/pkgs/development/python-modules/python-smarttub/default.nix +++ b/pkgs/development/python-modules/python-smarttub/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "smarttub" ]; - meta = with lib; { + meta = { description = "Python API for SmartTub enabled hot tubs"; homepage = "https://github.com/mdz/python-smarttub"; changelog = "https://github.com/mdz/python-smarttub/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-snap7/default.nix b/pkgs/development/python-modules/python-snap7/default.nix index b5ed0e39f11b..a9d4ed7d74c5 100644 --- a/pkgs/development/python-modules/python-snap7/default.nix +++ b/pkgs/development/python-modules/python-snap7/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { "snap7.util" ]; - meta = with lib; { + meta = { description = "Python wrapper for the snap7 PLC communication library"; mainProgram = "snap7-server"; homepage = "https://github.com/gijzelaerr/python-snap7"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-snappy/default.nix b/pkgs/development/python-modules/python-snappy/default.nix index 3b0dadc2ac28..982898230065 100644 --- a/pkgs/development/python-modules/python-snappy/default.nix +++ b/pkgs/development/python-modules/python-snappy/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python library for the snappy compression library from Google"; homepage = "https://github.com/intake/python-snappy"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-socks/default.nix b/pkgs/development/python-modules/python-socks/default.nix index 243c23baa07b..022aca1ca197 100644 --- a/pkgs/development/python-modules/python-socks/default.nix +++ b/pkgs/development/python-modules/python-socks/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_socks" ]; - meta = with lib; { + meta = { changelog = "https://github.com/romis2012/python-socks/releases/tag/${src.tag}"; description = "Core proxy client (SOCKS4, SOCKS5, HTTP) functionality for Python"; homepage = "https://github.com/romis2012/python-socks"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-songpal/default.nix b/pkgs/development/python-modules/python-songpal/default.nix index 2d24fcace959..c8d066827b38 100644 --- a/pkgs/development/python-modules/python-songpal/default.nix +++ b/pkgs/development/python-modules/python-songpal/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "songpal" ]; - meta = with lib; { + meta = { description = "Python library for interfacing with Sony's Songpal devices"; mainProgram = "songpal"; homepage = "https://github.com/rytilahti/python-songpal"; changelog = "https://github.com/rytilahti/python-songpal/blob/release/${version}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-status/default.nix b/pkgs/development/python-modules/python-status/default.nix index 5a1c14628dad..a83073c4c912 100644 --- a/pkgs/development/python-modules/python-status/default.nix +++ b/pkgs/development/python-modules/python-status/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "status" ]; - meta = with lib; { + meta = { description = "HTTP Status for Humans"; homepage = "https://github.com/avinassh/status/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-stdnum/default.nix b/pkgs/development/python-modules/python-stdnum/default.nix index 15722e6b4496..9012e5567fea 100644 --- a/pkgs/development/python-modules/python-stdnum/default.nix +++ b/pkgs/development/python-modules/python-stdnum/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stdnum" ]; - meta = with lib; { + meta = { description = "Python module to handle standardized numbers and codes"; homepage = "https://arthurdejong.org/python-stdnum/"; changelog = "https://github.com/arthurdejong/python-stdnum/blob/${version}/ChangeLog"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ johbo ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ johbo ]; }; } diff --git a/pkgs/development/python-modules/python-string-utils/default.nix b/pkgs/development/python-modules/python-string-utils/default.nix index 537f5f1f9a75..43b765a6fe8d 100644 --- a/pkgs/development/python-modules/python-string-utils/default.nix +++ b/pkgs/development/python-modules/python-string-utils/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # tests are not available in pypi tarball doCheck = false; - meta = with lib; { + meta = { description = "Handy Python library to validate, manipulate and generate strings"; homepage = "https://github.com/daveoncode/python-string-utils"; - license = licenses.mit; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/python-swiftclient/default.nix b/pkgs/development/python-modules/python-swiftclient/default.nix index b4e8303c07e3..b227c7a7b368 100644 --- a/pkgs/development/python-modules/python-swiftclient/default.nix +++ b/pkgs/development/python-modules/python-swiftclient/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "swiftclient" ]; - meta = with lib; { + meta = { homepage = "https://github.com/openstack/python-swiftclient"; description = "Python bindings to the OpenStack Object Storage API"; mainProgram = "swift"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/python-tado/default.nix b/pkgs/development/python-modules/python-tado/default.nix index 7cde7aa3d8e6..764d246d798d 100644 --- a/pkgs/development/python-modules/python-tado/default.nix +++ b/pkgs/development/python-modules/python-tado/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "PyTado" ]; - meta = with lib; { + meta = { description = "Python binding for Tado web API"; homepage = "https://github.com/wmalgadey/PyTado"; changelog = "https://github.com/wmalgadey/PyTado/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jamiemagee ]; mainProgram = "pytado"; }; } diff --git a/pkgs/development/python-modules/python-tds/default.nix b/pkgs/development/python-modules/python-tds/default.nix index f4775b8e1798..3865d9332d81 100644 --- a/pkgs/development/python-modules/python-tds/default.nix +++ b/pkgs/development/python-modules/python-tds/default.nix @@ -62,10 +62,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytds" ]; - meta = with lib; { + meta = { description = "Python DBAPI driver for MSSQL using pure Python TDS (Tabular Data Stream) protocol implementation"; homepage = "https://python-tds.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/python-technove/default.nix b/pkgs/development/python-modules/python-technove/default.nix index e3e716f0223e..64070ae59ef4 100644 --- a/pkgs/development/python-modules/python-technove/default.nix +++ b/pkgs/development/python-modules/python-technove/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "technove" ]; - meta = with lib; { + meta = { description = "Python library to interact with TechnoVE local device API"; homepage = "https://github.com/Moustachauve/pytechnove"; changelog = "https://github.com/Moustachauve/pytechnove/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-telegram-bot/default.nix b/pkgs/development/python-modules/python-telegram-bot/default.nix index a7b126f7122f..452e6f274b76 100644 --- a/pkgs/development/python-modules/python-telegram-bot/default.nix +++ b/pkgs/development/python-modules/python-telegram-bot/default.nix @@ -132,12 +132,12 @@ buildPythonPackage rec { "TestWeb" ]; - meta = with lib; { + meta = { description = "Python library to interface with the Telegram Bot API"; homepage = "https://python-telegram-bot.org"; changelog = "https://github.com/python-telegram-bot/python-telegram-bot/blob/${src.tag}/CHANGES.rst"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ veprbl pingiun ]; diff --git a/pkgs/development/python-modules/python-telegram/default.nix b/pkgs/development/python-modules/python-telegram/default.nix index fc0040b2d36d..f978637b2bfb 100644 --- a/pkgs/development/python-modules/python-telegram/default.nix +++ b/pkgs/development/python-modules/python-telegram/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "telegram.client" ]; - meta = with lib; { + meta = { description = "Python client for the Telegram's tdlib"; homepage = "https://github.com/alexander-akhmetov/python-telegram"; changelog = "https://github.com/alexander-akhmetov/python-telegram/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/development/python-modules/python-toolbox/default.nix b/pkgs/development/python-modules/python-toolbox/default.nix index a6f49f9ad8f9..bc0c5726c22a 100644 --- a/pkgs/development/python-modules/python-toolbox/default.nix +++ b/pkgs/development/python-modules/python-toolbox/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { "test_repr" ]; - meta = with lib; { + meta = { description = "Tools for testing PySnooper"; homepage = "https://github.com/cool-RR/python_toolbox"; changelog = "https://github.com/cool-RR/python_toolbox/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ seqizz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seqizz ]; }; } diff --git a/pkgs/development/python-modules/python-trovo/default.nix b/pkgs/development/python-modules/python-trovo/default.nix index dace99e3b34e..9dd313d0b31c 100644 --- a/pkgs/development/python-modules/python-trovo/default.nix +++ b/pkgs/development/python-modules/python-trovo/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "trovoApi" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Trovo API"; homepage = "https://codeberg.org/wolfangaukang/python-trovo"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-twitch-client/default.nix b/pkgs/development/python-modules/python-twitch-client/default.nix index a47ec56941fb..7d331aa6bf0a 100644 --- a/pkgs/development/python-modules/python-twitch-client/default.nix +++ b/pkgs/development/python-modules/python-twitch-client/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "test_update" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Twitch API"; homepage = "https://github.com/tsifrer/python-twitch-client"; changelog = "https://github.com/tsifrer/python-twitch-client/blob/${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-twitter/default.nix b/pkgs/development/python-modules/python-twitter/default.nix index f64c1e3d4eef..641a58bed2c7 100644 --- a/pkgs/development/python-modules/python-twitter/default.nix +++ b/pkgs/development/python-modules/python-twitter/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "twitter" ]; - meta = with lib; { + meta = { description = "Python wrapper around the Twitter API"; homepage = "https://github.com/bear/python-twitter"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-u2flib-host/default.nix b/pkgs/development/python-modules/python-u2flib-host/default.nix index 3edc24d30bbe..18b97e94e811 100644 --- a/pkgs/development/python-modules/python-u2flib-host/default.nix +++ b/pkgs/development/python-modules/python-u2flib-host/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # Tests fail: "ValueError: underlying buffer has been detached" doCheck = false; - meta = with lib; { + meta = { description = "Python based U2F host library"; homepage = "https://github.com/Yubico/python-u2flib-host"; - license = licenses.bsd2; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/python-uinput/default.nix b/pkgs/development/python-modules/python-uinput/default.nix index a40267a5f6a5..25af52c42652 100644 --- a/pkgs/development/python-modules/python-uinput/default.nix +++ b/pkgs/development/python-modules/python-uinput/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Pythonic API to Linux uinput kernel module"; homepage = "https://tjjr.fi/sw/python-uinput/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-ulid/default.nix b/pkgs/development/python-modules/python-ulid/default.nix index 5f231685b6dc..6eaf9f16ce41 100644 --- a/pkgs/development/python-modules/python-ulid/default.nix +++ b/pkgs/development/python-modules/python-ulid/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ulid" ]; - meta = with lib; { + meta = { description = "ULID implementation for Python"; mainProgram = "ulid"; homepage = "https://github.com/mdomke/python-ulid"; changelog = "https://github.com/mdomke/python-ulid/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/python-utils/default.nix b/pkgs/development/python-modules/python-utils/default.nix index b4b3c50b7780..5b3fc2007b6b 100644 --- a/pkgs/development/python-modules/python-utils/default.nix +++ b/pkgs/development/python-modules/python-utils/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { "test_timeout_generator" ]; - meta = with lib; { + meta = { description = "Module with some convenient utilities"; homepage = "https://github.com/WoLpH/python-utils"; changelog = "https://github.com/wolph/python-utils/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-velbus/default.nix b/pkgs/development/python-modules/python-velbus/default.nix index d93267cbcfb4..7acfd53df8e6 100644 --- a/pkgs/development/python-modules/python-velbus/default.nix +++ b/pkgs/development/python-modules/python-velbus/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "velbus" ]; - meta = with lib; { + meta = { description = "Python library to control the Velbus home automation system"; homepage = "https://github.com/thomasdelaet/python-velbus"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-vlc/default.nix b/pkgs/development/python-modules/python-vlc/default.nix index 81a13c881e25..ce09a610ef29 100644 --- a/pkgs/development/python-modules/python-vlc/default.nix +++ b/pkgs/development/python-modules/python-vlc/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vlc" ]; - meta = with lib; { + meta = { description = "Python bindings for VLC, the cross-platform multimedia player and framework"; homepage = "https://wiki.videolan.org/PythonBinding"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ tbenst ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/python-whois/default.nix b/pkgs/development/python-modules/python-whois/default.nix index bc2a155833c9..cedf1e7333c4 100644 --- a/pkgs/development/python-modules/python-whois/default.nix +++ b/pkgs/development/python-modules/python-whois/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "whois" ]; - meta = with lib; { + meta = { description = "Python module to produce parsed WHOIS data"; homepage = "https://github.com/richardpenman/whois"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-wink/default.nix b/pkgs/development/python-modules/python-wink/default.nix index 464daf8ebd02..30556aa9bca8 100644 --- a/pkgs/development/python-modules/python-wink/default.nix +++ b/pkgs/development/python-modules/python-wink/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pywink" ]; - meta = with lib; { + meta = { description = "Python implementation of the Wink API"; homepage = "https://github.com/python-wink/python-wink"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/python-xapp/default.nix b/pkgs/development/python-modules/python-xapp/default.nix index 54d8e7a256e1..7296c69b5301 100644 --- a/pkgs/development/python-modules/python-xapp/default.nix +++ b/pkgs/development/python-modules/python-xapp/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { skipBulkUpdate = true; # This should be bumped as part of Cinnamon update. }; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/python-xapp"; description = "Cross-desktop libraries and common resources for python"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - teams = [ teams.cinnamon ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.cinnamon ]; }; } diff --git a/pkgs/development/python-modules/python-xmp-toolkit/default.nix b/pkgs/development/python-modules/python-xmp-toolkit/default.nix index f5594e983ace..05229ad3df4b 100644 --- a/pkgs/development/python-modules/python-xmp-toolkit/default.nix +++ b/pkgs/development/python-modules/python-xmp-toolkit/default.nix @@ -41,10 +41,10 @@ buildPythonPackage { rm test/{test_exempi,test_files}.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/python-xmp-toolkit/python-xmp-toolkit"; description = "Python XMP Toolkit for working with metadata"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-xz/default.nix b/pkgs/development/python-modules/python-xz/default.nix index 526c54245104..db729aadca62 100644 --- a/pkgs/development/python-modules/python-xz/default.nix +++ b/pkgs/development/python-modules/python-xz/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "xz" ]; - meta = with lib; { + meta = { description = "Pure Python library for seeking within compressed xz files"; homepage = "https://github.com/Rogdham/python-xz"; changelog = "https://github.com/Rogdham/python-xz/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ mxmlnkn ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/python-yate/default.nix b/pkgs/development/python-modules/python-yate/default.nix index 6d6381b80dd5..c7d73bb9eeb8 100644 --- a/pkgs/development/python-modules/python-yate/default.nix +++ b/pkgs/development/python-modules/python-yate/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "yate" ]; - meta = with lib; { + meta = { description = "Python library for the yate telephony engine"; mainProgram = "yate_callgen"; homepage = "https://github.com/eventphone/python-yate"; changelog = "https://github.com/eventphone/python-yate/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ clerie ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ clerie ]; }; } diff --git a/pkgs/development/python-modules/python-zbar/default.nix b/pkgs/development/python-modules/python-zbar/default.nix index a7e8c64146fb..b77cffd6820a 100644 --- a/pkgs/development/python-modules/python-zbar/default.nix +++ b/pkgs/development/python-modules/python-zbar/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zbar" ]; - meta = with lib; { + meta = { description = "Python bindings for zbar"; homepage = "https://github.com/mchehab/zbar"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python3-eventlib/default.nix b/pkgs/development/python-modules/python3-eventlib/default.nix index 0904441944de..db72b957efb4 100644 --- a/pkgs/development/python-modules/python3-eventlib/default.nix +++ b/pkgs/development/python-modules/python3-eventlib/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "eventlib" ]; - meta = with lib; { + meta = { description = "Networking library written in Python"; homepage = "https://github.com/AGProjects/python3-eventlib"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ chanley ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ chanley ]; longDescription = '' Eventlib is a networking library written in Python. It achieves high scalability by using non-blocking I/O while at the same time retaining diff --git a/pkgs/development/python-modules/python3-gnutls/default.nix b/pkgs/development/python-modules/python3-gnutls/default.nix index 88958200c0ec..b1813ac5717d 100644 --- a/pkgs/development/python-modules/python3-gnutls/default.nix +++ b/pkgs/development/python-modules/python3-gnutls/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gnutls" ]; - meta = with lib; { + meta = { description = "Python wrapper for the GnuTLS library"; homepage = "https://github.com/AGProjects/python3-gnutls"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ chanley ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ chanley ]; longDescription = '' This package provides a high level object oriented wrapper around libgnutls, as well as low level bindings to the GnuTLS types and functions via ctypes. diff --git a/pkgs/development/python-modules/python3-openid/default.nix b/pkgs/development/python-modules/python3-openid/default.nix index e096743e909d..6edcb500db2a 100644 --- a/pkgs/development/python-modules/python3-openid/default.nix +++ b/pkgs/development/python-modules/python3-openid/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { disabled = !isPy3k; - meta = with lib; { + meta = { description = "OpenID support for modern servers and consumers"; homepage = "https://github.com/necaris/python3-openid"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/python3-saml/default.nix b/pkgs/development/python-modules/python3-saml/default.nix index 5a01cd3c8778..6d1db67e52d7 100644 --- a/pkgs/development/python-modules/python3-saml/default.nix +++ b/pkgs/development/python-modules/python3-saml/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { "OneLogin_Saml2_Logout_Request_Test" ]; - meta = with lib; { + meta = { description = "OneLogin's SAML Python Toolkit"; homepage = "https://github.com/onelogin/python3-saml"; changelog = "https://github.com/SAML-Toolkits/python3-saml/blob/v${version}/changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/development/python-modules/pythondialog/default.nix b/pkgs/development/python-modules/pythondialog/default.nix index 59d7e96a6b62..2fb348c0ba91 100644 --- a/pkgs/development/python-modules/pythondialog/default.nix +++ b/pkgs/development/python-modules/pythondialog/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { substituteInPlace dialog.py --replace ":/bin:/usr/bin" ":$out/bin" ''; - meta = with lib; { + meta = { description = "Python interface to the UNIX dialog utility and mostly-compatible programs"; homepage = "http://pythondialog.sourceforge.net/"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; }; } diff --git a/pkgs/development/python-modules/pythonegardia/default.nix b/pkgs/development/python-modules/pythonegardia/default.nix index b72cbf86b7fd..de6ff0c31ba1 100644 --- a/pkgs/development/python-modules/pythonegardia/default.nix +++ b/pkgs/development/python-modules/pythonegardia/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pythonegardia" ]; - meta = with lib; { + meta = { description = "Python interface with Egardia/Woonveilig alarms"; homepage = "https://github.com/jeroenterheerdt/python-egardia"; changelog = "https://github.com/jeroenterheerdt/python-egardia/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pythonfinder/default.nix b/pkgs/development/python-modules/pythonfinder/default.nix index 6733bbf21688..2ff2956a5bb5 100644 --- a/pkgs/development/python-modules/pythonfinder/default.nix +++ b/pkgs/development/python-modules/pythonfinder/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pythonfinder" ]; - meta = with lib; { + meta = { description = "Cross platform search tool for finding Python"; mainProgram = "pyfinder"; homepage = "https://github.com/sarugaku/pythonfinder"; changelog = "https://github.com/sarugaku/pythonfinder/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pythonnet/default.nix b/pkgs/development/python-modules/pythonnet/default.nix index ed5d2e93ebaa..b5d914c4a98e 100644 --- a/pkgs/development/python-modules/pythonnet/default.nix +++ b/pkgs/development/python-modules/pythonnet/default.nix @@ -66,14 +66,14 @@ buildPythonPackage { # Rerun this when updating to refresh Nuget dependencies passthru.fetch-deps = dotnet-build.fetch-deps; - meta = with lib; { + meta = { description = ".NET integration for Python"; homepage = "https://pythonnet.github.io"; changelog = "https://github.com/pythonnet/pythonnet/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; # badPlatforms = [ "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jraygauthier mdarocha ]; diff --git a/pkgs/development/python-modules/pythonocc-core/default.nix b/pkgs/development/python-modules/pythonocc-core/default.nix index ffe4a1e1c813..6f55eb6a5c82 100644 --- a/pkgs/development/python-modules/pythonocc-core/default.nix +++ b/pkgs/development/python-modules/pythonocc-core/default.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { skipBulkUpdate = true; }; - meta = with lib; { + meta = { description = "Python wrapper for the OpenCASCADE 3D modeling kernel"; homepage = "https://github.com/tpaviot/pythonocc-core"; changelog = "https://github.com/tpaviot/pythonocc-core/releases/tag/${version}"; - license = licenses.lgpl3; - platforms = platforms.unix; + license = lib.licenses.lgpl3; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytidylib/default.nix b/pkgs/development/python-modules/pytidylib/default.nix index 7f5b2db40dd6..a623602dfce6 100644 --- a/pkgs/development/python-modules/pytidylib/default.nix +++ b/pkgs/development/python-modules/pytidylib/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python wrapper for HTML Tidy (tidylib) on Python 2 and 3"; homepage = "https://countergram.github.io/pytidylib/"; - license = licenses.mit; - maintainers = with maintainers; [ layus ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ layus ]; }; } diff --git a/pkgs/development/python-modules/pytikz-allefeld/default.nix b/pkgs/development/python-modules/pytikz-allefeld/default.nix index 9f78f9d2f9fa..7e05dad794f0 100644 --- a/pkgs/development/python-modules/pytikz-allefeld/default.nix +++ b/pkgs/development/python-modules/pytikz-allefeld/default.nix @@ -48,10 +48,10 @@ buildPythonPackage { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/allefeld/pytikz"; description = "Python interface to TikZ"; - license = licenses.gpl3; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/pytile/default.nix b/pkgs/development/python-modules/pytile/default.nix index 3b7548b5ff78..baad61d8a593 100644 --- a/pkgs/development/python-modules/pytile/default.nix +++ b/pkgs/development/python-modules/pytile/default.nix @@ -51,7 +51,7 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python API for Tile Bluetooth trackers"; longDescription = '' pytile is a simple Python library for retrieving information on Tile @@ -59,7 +59,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/bachya/pytile"; changelog = "https://github.com/bachya/pytile/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytimeparse/default.nix b/pkgs/development/python-modules/pytimeparse/default.nix index adfb6fb288ce..20346161a4da 100644 --- a/pkgs/development/python-modules/pytimeparse/default.nix +++ b/pkgs/development/python-modules/pytimeparse/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytimeparse" ]; - meta = with lib; { + meta = { description = "Library to parse various kinds of time expressions"; homepage = "https://github.com/wroberts/pytimeparse"; changelog = "https://github.com/wroberts/pytimeparse/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytimeparse2/default.nix b/pkgs/development/python-modules/pytimeparse2/default.nix index 4a84005cd991..6becb99ef495 100644 --- a/pkgs/development/python-modules/pytimeparse2/default.nix +++ b/pkgs/development/python-modules/pytimeparse2/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytimeparse2" ]; - meta = with lib; { + meta = { description = "Pytimeparse based project with the aim of optimizing functionality and providing stable support"; homepage = "https://github.com/onegreyonewhite/pytimeparse2"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/pytlv/default.nix b/pkgs/development/python-modules/pytlv/default.nix index 05e002a412c1..38eefde837c9 100644 --- a/pkgs/development/python-modules/pytlv/default.nix +++ b/pkgs/development/python-modules/pytlv/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytlv" ]; - meta = with lib; { + meta = { description = "TLV (tag length lavue) data parser, especially useful for EMV tags parsing"; homepage = "https://github.com/timgabets/pytlv"; - license = licenses.lgpl2; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/pytm/default.nix b/pkgs/development/python-modules/pytm/default.nix index ae3678b3d9ba..99924823ff95 100644 --- a/pkgs/development/python-modules/pytm/default.nix +++ b/pkgs/development/python-modules/pytm/default.nix @@ -31,13 +31,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytm" ]; - meta = with lib; { + meta = { description = "Pythonic framework for threat modeling"; homepage = "https://owasp.org/www-project-pytm/"; - license = with licenses; [ + license = with lib.licenses; [ capec mit ]; - maintainers = with maintainers; [ wamserma ]; + maintainers = with lib.maintainers; [ wamserma ]; }; } diff --git a/pkgs/development/python-modules/pytmx/default.nix b/pkgs/development/python-modules/pytmx/default.nix index 125ceabace4c..deca9f01ff02 100644 --- a/pkgs/development/python-modules/pytmx/default.nix +++ b/pkgs/development/python-modules/pytmx/default.nix @@ -51,10 +51,10 @@ buildPythonPackage { "test_contains_reserved_property_name" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bitcraft/PyTMX"; description = "Python library to read Tiled Map Editor's TMX maps"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/pytomlpp/default.nix b/pkgs/development/python-modules/pytomlpp/default.nix index 0e7930d0db8e..02cd9bc95a61 100644 --- a/pkgs/development/python-modules/pytomlpp/default.nix +++ b/pkgs/development/python-modules/pytomlpp/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytomlpp" ]; - meta = with lib; { + meta = { description = "Python wrapper for tomlplusplus"; homepage = "https://github.com/bobfang1992/pytomlpp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytoolconfig/default.nix b/pkgs/development/python-modules/pytoolconfig/default.nix index cd7d3a6c8b5b..3b9a46c45b58 100644 --- a/pkgs/development/python-modules/pytoolconfig/default.nix +++ b/pkgs/development/python-modules/pytoolconfig/default.nix @@ -67,12 +67,12 @@ buildPythonPackage rec { ] ++ lib.concatAttrValues optional-dependencies; - meta = with lib; { + meta = { description = "Python tool configuration"; homepage = "https://github.com/bagel897/pytoolconfig"; changelog = "https://github.com/bagel897/pytoolconfig/releases/tag/v${version}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fab hexa ]; diff --git a/pkgs/development/python-modules/pytorch-msssim/default.nix b/pkgs/development/python-modules/pytorch-msssim/default.nix index 325450ab7ba7..32ca0b0caeec 100644 --- a/pkgs/development/python-modules/pytorch-msssim/default.nix +++ b/pkgs/development/python-modules/pytorch-msssim/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # This test doesn't have (automatic) tests doCheck = false; - meta = with lib; { + meta = { description = "Fast and differentiable MS-SSIM and SSIM for pytorch"; homepage = "https://github.com/VainF/pytorch-msssim"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/pytraccar/default.nix b/pkgs/development/python-modules/pytraccar/default.nix index 0a6c9873dc10..da708f57c285 100644 --- a/pkgs/development/python-modules/pytraccar/default.nix +++ b/pkgs/development/python-modules/pytraccar/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytraccar" ]; - meta = with lib; { + meta = { description = "Python library to handle device information from Traccar"; homepage = "https://github.com/ludeeus/pytraccar"; changelog = "https://github.com/ludeeus/pytraccar/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytradfri/default.nix b/pkgs/development/python-modules/pytradfri/default.nix index 757ee264246e..22c89053bb14 100644 --- a/pkgs/development/python-modules/pytradfri/default.nix +++ b/pkgs/development/python-modules/pytradfri/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytradfri" ]; - meta = with lib; { + meta = { description = "Python package to communicate with the IKEA Trådfri ZigBee Gateway"; homepage = "https://github.com/home-assistant-libs/pytradfri"; changelog = "https://github.com/home-assistant-libs/pytradfri/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytrafikverket/default.nix b/pkgs/development/python-modules/pytrafikverket/default.nix index f5c4ecd54e8a..7a837ab58234 100644 --- a/pkgs/development/python-modules/pytrafikverket/default.nix +++ b/pkgs/development/python-modules/pytrafikverket/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytrafikverket" ]; - meta = with lib; { + meta = { description = "Library to get data from the Swedish Transport Administration (Trafikverket) API"; homepage = "https://github.com/gjohansson-ST/pytrafikverket"; changelog = "https://github.com/gjohansson-ST/pytrafikverket/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytransportnsw/default.nix b/pkgs/development/python-modules/pytransportnsw/default.nix index db65727bf85d..47caaaca0725 100644 --- a/pkgs/development/python-modules/pytransportnsw/default.nix +++ b/pkgs/development/python-modules/pytransportnsw/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "TransportNSW" ]; - meta = with lib; { + meta = { description = "Python module to access Transport NSW information"; homepage = "https://github.com/Dav0815/TransportNSW"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytransportnswv2/default.nix b/pkgs/development/python-modules/pytransportnswv2/default.nix index c5c4f4d922fb..5e2283d3e5a8 100644 --- a/pkgs/development/python-modules/pytransportnswv2/default.nix +++ b/pkgs/development/python-modules/pytransportnswv2/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "TransportNSWv2" ]; - meta = with lib; { + meta = { description = "Python module to access Transport NSW information"; homepage = "https://github.com/andystewart999/TransportNSW"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pytrydan/default.nix b/pkgs/development/python-modules/pytrydan/default.nix index c788b46487b7..be8de75c22f9 100644 --- a/pkgs/development/python-modules/pytrydan/default.nix +++ b/pkgs/development/python-modules/pytrydan/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytrydan" ]; - meta = with lib; { + meta = { description = "Library to interface with V2C EVSE Trydan"; homepage = "https://github.com/dgomes/pytrydan"; changelog = "https://github.com/dgomes/pytrydan/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pytrydan"; }; } diff --git a/pkgs/development/python-modules/pyttsx3/default.nix b/pkgs/development/python-modules/pyttsx3/default.nix index a66e1ca4489a..7c0d205b7f1c 100644 --- a/pkgs/development/python-modules/pyttsx3/default.nix +++ b/pkgs/development/python-modules/pyttsx3/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # This package has no tests doCheck = false; - meta = with lib; { + meta = { description = "Offline text-to-speech synthesis library"; homepage = "https://github.com/nateshmbhat/pyttsx3"; - license = licenses.mpl20; - maintainers = [ maintainers.ethindp ]; + license = lib.licenses.mpl20; + maintainers = [ lib.maintainers.ethindp ]; }; } diff --git a/pkgs/development/python-modules/pytube/default.nix b/pkgs/development/python-modules/pytube/default.nix index eabf55c89caa..54e34999599c 100644 --- a/pkgs/development/python-modules/pytube/default.nix +++ b/pkgs/development/python-modules/pytube/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytube" ]; - meta = with lib; { + meta = { description = "Python 3 library for downloading YouTube Videos"; mainProgram = "pytube"; homepage = "https://github.com/nficano/pytube"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytun/default.nix b/pkgs/development/python-modules/pytun/default.nix index 166afc454433..2f9254188557 100644 --- a/pkgs/development/python-modules/pytun/default.nix +++ b/pkgs/development/python-modules/pytun/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { # Test directory contains examples, not tests. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/montag451/pytun"; description = "Linux TUN/TAP wrapper for Python"; - license = licenses.mit; - maintainers = with maintainers; [ montag451 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ montag451 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pyturbojpeg/default.nix b/pkgs/development/python-modules/pyturbojpeg/default.nix index 881ff4ec7182..79a23cdeae7e 100644 --- a/pkgs/development/python-modules/pyturbojpeg/default.nix +++ b/pkgs/development/python-modules/pyturbojpeg/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "turbojpeg" ]; - meta = with lib; { + meta = { changelog = "https://github.com/lilohuang/PyTurboJPEG/releases/tag/${src.tag}"; description = "Python wrapper of libjpeg-turbo for decoding and encoding JPEG image"; homepage = "https://github.com/lilohuang/PyTurboJPEG"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytweening/default.nix b/pkgs/development/python-modules/pytweening/default.nix index b15a6e6b6a7a..21280b657deb 100644 --- a/pkgs/development/python-modules/pytweening/default.nix +++ b/pkgs/development/python-modules/pytweening/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { python -m unittest tests.basicTests ''; - meta = with lib; { + meta = { description = "Set of tweening / easing functions implemented in Python"; homepage = "https://github.com/asweigart/pytweening"; - license = licenses.bsd3; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/pytz-deprecation-shim/default.nix b/pkgs/development/python-modules/pytz-deprecation-shim/default.nix index 6725091b76c5..a938d254d112 100644 --- a/pkgs/development/python-modules/pytz-deprecation-shim/default.nix +++ b/pkgs/development/python-modules/pytz-deprecation-shim/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { # The test suite is just very flaky and breaks all the time doCheck = false; - meta = with lib; { + meta = { description = "Shims to make deprecation of pytz easier"; homepage = "https://github.com/pganssle/pytz-deprecation-shim"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytz/default.nix b/pkgs/development/python-modules/pytz/default.nix index 5049c209f088..ad6b92c00b6a 100644 --- a/pkgs/development/python-modules/pytz/default.nix +++ b/pkgs/development/python-modules/pytz/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytz" ]; - meta = with lib; { + meta = { changelog = "https://launchpad.net/pytz/+announcements"; description = "World timezone definitions, modern and historical"; homepage = "https://pythonhosted.org/pytz"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda jherland ]; diff --git a/pkgs/development/python-modules/pyu2f/default.nix b/pkgs/development/python-modules/pyu2f/default.nix index ecc18e49f029..a9f27a755189 100644 --- a/pkgs/development/python-modules/pyu2f/default.nix +++ b/pkgs/development/python-modules/pyu2f/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { "pyu2f/tests/hid/linux_test.py" ]; - meta = with lib; { + meta = { description = "U2F host library for interacting with a U2F device over USB"; homepage = "https://github.com/google/pyu2f"; - license = licenses.asl20; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/pyuca/default.nix b/pkgs/development/python-modules/pyuca/default.nix index e4a7a2a0b5f1..8f698acffcb1 100644 --- a/pkgs/development/python-modules/pyuca/default.nix +++ b/pkgs/development/python-modules/pyuca/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python implementation of the Unicode Collation Algorithm"; homepage = "https://github.com/jtauber/pyuca"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pyudev/default.nix b/pkgs/development/python-modules/pyudev/default.nix index f7b75f0ff22e..c7d1d1f3b5a2 100644 --- a/pkgs/development/python-modules/pyudev/default.nix +++ b/pkgs/development/python-modules/pyudev/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { # https://github.com/pyudev/pyudev/issues/187 doCheck = false; - meta = with lib; { + meta = { homepage = "https://pyudev.readthedocs.org/"; description = "Pure Python libudev binding"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ frogamic ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ frogamic ]; }; } diff --git a/pkgs/development/python-modules/pyunbound/default.nix b/pkgs/development/python-modules/pyunbound/default.nix index 085d9b070471..43a63bc84569 100644 --- a/pkgs/development/python-modules/pyunbound/default.nix +++ b/pkgs/development/python-modules/pyunbound/default.nix @@ -81,10 +81,10 @@ buildPythonPackage rec { patchelf --replace-needed libunbound.so.8 $out/${python.sitePackages}/libunbound.so.8 $out/${python.sitePackages}/_unbound.so ''; - meta = with lib; { + meta = { description = "Python library for Unbound, the validating, recursive, and caching DNS resolver"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://www.unbound.net"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pyunifi/default.nix b/pkgs/development/python-modules/pyunifi/default.nix index b006354be12c..88890c4af085 100644 --- a/pkgs/development/python-modules/pyunifi/default.nix +++ b/pkgs/development/python-modules/pyunifi/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ requests ]; - meta = with lib; { + meta = { description = "API towards Ubiquity Networks UniFi controller"; homepage = "https://github.com/finish06/unifi-api"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/pyunpack/default.nix b/pkgs/development/python-modules/pyunpack/default.nix index 96471c87d132..3e6ce1384ba7 100644 --- a/pkgs/development/python-modules/pyunpack/default.nix +++ b/pkgs/development/python-modules/pyunpack/default.nix @@ -62,10 +62,10 @@ buildPythonPackage rec { "tests/test_zippw.py" ]; - meta = with lib; { + meta = { description = "Unpack archive files in python"; homepage = "https://github.com/ponty/pyunpack"; - license = licenses.bsd2; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/pyupdate/default.nix b/pkgs/development/python-modules/pyupdate/default.nix index 7224907916d2..2cb035efde43 100644 --- a/pkgs/development/python-modules/pyupdate/default.nix +++ b/pkgs/development/python-modules/pyupdate/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { # This description is terrible, but it's what upstream uses. description = "Package to update stuff"; homepage = "https://github.com/ludeeus/pyupdate"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/pyupgrade/default.nix b/pkgs/development/python-modules/pyupgrade/default.nix index c087eb95de61..683da1aab617 100644 --- a/pkgs/development/python-modules/pyupgrade/default.nix +++ b/pkgs/development/python-modules/pyupgrade/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyupgrade" ]; - meta = with lib; { + meta = { description = "Tool to automatically upgrade syntax for newer versions of the language"; mainProgram = "pyupgrade"; homepage = "https://github.com/asottile/pyupgrade"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/pyuptimerobot/default.nix b/pkgs/development/python-modules/pyuptimerobot/default.nix index 39f0cbc0b8b6..eaa5f5e8f3eb 100644 --- a/pkgs/development/python-modules/pyuptimerobot/default.nix +++ b/pkgs/development/python-modules/pyuptimerobot/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyuptimerobot" ]; - meta = with lib; { + meta = { description = "Python API wrapper for Uptime Robot"; homepage = "https://github.com/ludeeus/pyuptimerobot"; changelog = "https://github.com/ludeeus/pyuptimerobot/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyusb/default.nix b/pkgs/development/python-modules/pyusb/default.nix index 87367cdd07c7..7c7a94d47543 100644 --- a/pkgs/development/python-modules/pyusb/default.nix +++ b/pkgs/development/python-modules/pyusb/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "usb" ]; - meta = with lib; { + meta = { description = "Python USB access module (wraps libusb 1.0)"; # can use other backends homepage = "https://pyusb.github.io/pyusb/"; - license = licenses.bsd3; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/pyuseragents/default.nix b/pkgs/development/python-modules/pyuseragents/default.nix index be62eb48bcf8..b210a18e2c4e 100644 --- a/pkgs/development/python-modules/pyuseragents/default.nix +++ b/pkgs/development/python-modules/pyuseragents/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { enabledTestPaths = [ "test.py" ]; pythonImportsCheck = [ "pyuseragents" ]; - meta = with lib; { + meta = { description = "Giving you a random User-Agent Header"; homepage = "https://github.com/Animenosekai/useragents"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ emilytrau ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/pyutil/default.nix b/pkgs/development/python-modules/pyutil/default.nix index f89c26c73b2b..cba7c519d0bf 100644 --- a/pkgs/development/python-modules/pyutil/default.nix +++ b/pkgs/development/python-modules/pyutil/default.nix @@ -57,7 +57,7 @@ buildPythonPackage rec { "test_float" ]; - meta = with lib; { + meta = { description = "Collection of mature utilities for Python programmers"; longDescription = '' These are a few data structures, classes and functions which @@ -69,7 +69,7 @@ buildPythonPackage rec { we're not alone in wanting tools like these. ''; homepage = "https://github.com/tpltnt/pyutil"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/pyuv/default.nix b/pkgs/development/python-modules/pyuv/default.nix index 00073be609f0..3a2c05f39e3c 100644 --- a/pkgs/development/python-modules/pyuv/default.nix +++ b/pkgs/development/python-modules/pyuv/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyuv" ]; - meta = with lib; { + meta = { description = "Python interface for libuv"; homepage = "https://github.com/saghul/pyuv"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyvcd/default.nix b/pkgs/development/python-modules/pyvcd/default.nix index e37c7989dc29..8f5b32d0352a 100644 --- a/pkgs/development/python-modules/pyvcd/default.nix +++ b/pkgs/development/python-modules/pyvcd/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python package for writing Value Change Dump (VCD) files"; homepage = "https://github.com/SanDisk-Open-Source/pyvcd"; changelog = "https://github.com/SanDisk-Open-Source/pyvcd/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sb0 ]; }; diff --git a/pkgs/development/python-modules/pyvera/default.nix b/pkgs/development/python-modules/pyvera/default.nix index bdcef9663071..445b79fa65cf 100644 --- a/pkgs/development/python-modules/pyvera/default.nix +++ b/pkgs/development/python-modules/pyvera/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvera" ]; - meta = with lib; { + meta = { description = "Python library to control devices via the Vera hub"; homepage = "https://github.com/pavoni/pyvera"; changelog = "https://github.com/maximvelichko/pyvera/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyverilog/default.nix b/pkgs/development/python-modules/pyverilog/default.nix index 9e7077a60f57..1126cdbaa89d 100644 --- a/pkgs/development/python-modules/pyverilog/default.nix +++ b/pkgs/development/python-modules/pyverilog/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/PyHDI/Pyverilog"; description = "Python-based Hardware Design Processing Toolkit for Verilog HDL"; - license = licenses.asl20; - maintainers = with maintainers; [ trepetti ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ trepetti ]; }; } diff --git a/pkgs/development/python-modules/pyversasense/default.nix b/pkgs/development/python-modules/pyversasense/default.nix index 07e8cc988e54..31281d3ef84c 100644 --- a/pkgs/development/python-modules/pyversasense/default.nix +++ b/pkgs/development/python-modules/pyversasense/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyversasense" ]; - meta = with lib; { + meta = { description = "Python library to communicate with the VersaSense API"; homepage = "https://github.com/imstevenxyz/pyversasense"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyvesync/default.nix b/pkgs/development/python-modules/pyvesync/default.nix index 81d3cc5cb94c..00a74a3b7480 100644 --- a/pkgs/development/python-modules/pyvesync/default.nix +++ b/pkgs/development/python-modules/pyvesync/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvesync" ]; - meta = with lib; { + meta = { description = "Python library to manage Etekcity Devices and Levoit Air Purifier"; homepage = "https://github.com/webdjoe/pyvesync"; changelog = "https://github.com/webdjoe/pyvesync/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyvex/default.nix b/pkgs/development/python-modules/pyvex/default.nix index f7a50e0a3e5a..26282b0bbf8b 100644 --- a/pkgs/development/python-modules/pyvex/default.nix +++ b/pkgs/development/python-modules/pyvex/default.nix @@ -57,14 +57,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvex" ]; - meta = with lib; { + meta = { description = "Python interface to libVEX and VEX IR"; homepage = "https://github.com/angr/pyvex"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 gpl3Plus lgpl3Plus ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyvicare/default.nix b/pkgs/development/python-modules/pyvicare/default.nix index 768333a8c89b..0ba3442edbb3 100644 --- a/pkgs/development/python-modules/pyvicare/default.nix +++ b/pkgs/development/python-modules/pyvicare/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "PyViCare" ]; - meta = with lib; { + meta = { changelog = "https://github.com/openviess/PyViCare/releases/tag/${src.tag}"; description = "Python Library to access Viessmann ViCare API"; homepage = "https://github.com/somm15/PyViCare"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyvips/default.nix b/pkgs/development/python-modules/pyvips/default.nix index 3db7c77b9103..fa87da354fab 100644 --- a/pkgs/development/python-modules/pyvips/default.nix +++ b/pkgs/development/python-modules/pyvips/default.nix @@ -59,12 +59,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvips" ]; - meta = with lib; { + meta = { description = "Python wrapper for libvips"; homepage = "https://github.com/libvips/pyvips"; changelog = "https://github.com/libvips/pyvips/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ccellado anthonyroussel ]; diff --git a/pkgs/development/python-modules/pyvirtualdisplay/default.nix b/pkgs/development/python-modules/pyvirtualdisplay/default.nix index 6c057c7ea7e6..83a14d52a769 100644 --- a/pkgs/development/python-modules/pyvirtualdisplay/default.nix +++ b/pkgs/development/python-modules/pyvirtualdisplay/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pytestFlags = [ "-v" ]; - meta = with lib; { + meta = { description = "Python wrapper for Xvfb, Xephyr and Xvnc"; homepage = "https://github.com/ponty/pyvirtualdisplay"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ layus ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ layus ]; }; } diff --git a/pkgs/development/python-modules/pyvis/default.nix b/pkgs/development/python-modules/pyvis/default.nix index b6cbdf091ec8..0a63b6be4062 100644 --- a/pkgs/development/python-modules/pyvis/default.nix +++ b/pkgs/development/python-modules/pyvis/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvis" ]; - meta = with lib; { + meta = { homepage = "https://github.com/WestHealth/pyvis"; description = "Python package for creating and visualizing interactive network graphs"; - license = licenses.bsd3; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/pyvisa-sim/default.nix b/pkgs/development/python-modules/pyvisa-sim/default.nix index a93c71ee461b..cc41d2b02efe 100644 --- a/pkgs/development/python-modules/pyvisa-sim/default.nix +++ b/pkgs/development/python-modules/pyvisa-sim/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { # should be fixed after 0.5.1, remove at next release disabledTestPaths = [ "pyvisa_sim/testsuite/test_all.py" ]; - meta = with lib; { + meta = { description = "Simulated backend for PyVISA implementing TCPIP, GPIB, RS232, and USB resources"; homepage = "https://pyvisa.readthedocs.io/projects/pyvisa-sim/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ evilmav ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evilmav ]; }; } diff --git a/pkgs/development/python-modules/pyvisa/default.nix b/pkgs/development/python-modules/pyvisa/default.nix index 465057dde14e..f597b3623fd8 100644 --- a/pkgs/development/python-modules/pyvisa/default.nix +++ b/pkgs/development/python-modules/pyvisa/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { # Test can't find cli tool bin path correctly disabledTests = [ "test_visa_info" ]; - meta = with lib; { + meta = { description = "Python package for support of the Virtual Instrument Software Architecture (VISA)"; homepage = "https://github.com/pyvisa/pyvisa"; - license = licenses.mit; - maintainers = with maintainers; [ mvnetbiz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mvnetbiz ]; }; } diff --git a/pkgs/development/python-modules/pyvista/default.nix b/pkgs/development/python-modules/pyvista/default.nix index e9368b223391..06527bddc607 100644 --- a/pkgs/development/python-modules/pyvista/default.nix +++ b/pkgs/development/python-modules/pyvista/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvista" ]; - meta = with lib; { + meta = { description = "Easier Pythonic interface to VTK"; homepage = "https://pyvista.org"; changelog = "https://github.com/pyvista/pyvista/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/python-modules/pyvizio/default.nix b/pkgs/development/python-modules/pyvizio/default.nix index d981f8b142e4..9cb445ecb454 100644 --- a/pkgs/development/python-modules/pyvizio/default.nix +++ b/pkgs/development/python-modules/pyvizio/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyvizio" ]; - meta = with lib; { + meta = { description = "Python client for Vizio SmartCast"; mainProgram = "pyvizio"; homepage = "https://github.com/vkorn/pyvizio"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyvlx/default.nix b/pkgs/development/python-modules/pyvlx/default.nix index bff1a08f380f..22bbb1197689 100644 --- a/pkgs/development/python-modules/pyvlx/default.nix +++ b/pkgs/development/python-modules/pyvlx/default.nix @@ -36,7 +36,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvlx" ]; - meta = with lib; { + meta = { description = "Python client to work with Velux units"; longDescription = '' PyVLX uses the Velux KLF 200 interface to control io-Homecontrol @@ -44,7 +44,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/Julius2342/pyvlx"; changelog = "https://github.com/Julius2342/pyvlx/releases/tag/${version}"; - license = licenses.lgpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyvmomi/default.nix b/pkgs/development/python-modules/pyvmomi/default.nix index 9ca4de0a1890..4892564584ee 100644 --- a/pkgs/development/python-modules/pyvmomi/default.nix +++ b/pkgs/development/python-modules/pyvmomi/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "pyVmomi" ]; - meta = with lib; { + meta = { description = "Python SDK for the VMware vSphere API that allows you to manage ESX, ESXi, and vCenter"; homepage = "https://github.com/vmware/pyvmomi"; changelog = "https://github.com/vmware/pyvmomi/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyvo/default.nix b/pkgs/development/python-modules/pyvo/default.nix index e5f42940abc7..d820df9f40e8 100644 --- a/pkgs/development/python-modules/pyvo/default.nix +++ b/pkgs/development/python-modules/pyvo/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvo" ]; - meta = with lib; { + meta = { description = "Astropy affiliated package for accessing Virtual Observatory data and services"; homepage = "https://github.com/astropy/pyvo"; - license = licenses.bsd3; - maintainers = with maintainers; [ smaret ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ smaret ]; }; } diff --git a/pkgs/development/python-modules/pyvolumio/default.nix b/pkgs/development/python-modules/pyvolumio/default.nix index 10a846948f24..170fbd8f6e66 100644 --- a/pkgs/development/python-modules/pyvolumio/default.nix +++ b/pkgs/development/python-modules/pyvolumio/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvolumio" ]; - meta = with lib; { + meta = { description = "Python module to control Volumio"; homepage = "https://github.com/OnFreund/PyVolumio"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pywal/default.nix b/pkgs/development/python-modules/pywal/default.nix index 2a5ff3bd8e69..7f683b3733cf 100644 --- a/pkgs/development/python-modules/pywal/default.nix +++ b/pkgs/development/python-modules/pywal/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { done ''; - meta = with lib; { + meta = { description = "Generate and change colorschemes on the fly. A 'wal' rewrite in Python 3"; mainProgram = "wal"; homepage = "https://github.com/dylanaraps/pywal"; - license = licenses.mit; - maintainers = with maintainers; [ Fresheyeball ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Fresheyeball ]; }; } diff --git a/pkgs/development/python-modules/pywatchman/default.nix b/pkgs/development/python-modules/pywatchman/default.nix index 27beb138785d..173fbe4c82c3 100644 --- a/pkgs/development/python-modules/pywatchman/default.nix +++ b/pkgs/development/python-modules/pywatchman/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Watchman client for Python"; homepage = "https://facebook.github.io/watchman/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pywaterkotte/default.nix b/pkgs/development/python-modules/pywaterkotte/default.nix index ad85a2a12541..c9c1e01f546e 100644 --- a/pkgs/development/python-modules/pywaterkotte/default.nix +++ b/pkgs/development/python-modules/pywaterkotte/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywaterkotte" ]; - meta = with lib; { + meta = { description = "Library to communicate with Waterkotte heatpumps"; homepage = "https://github.com/chboland/pywaterkotte"; changelog = "https://github.com/chboland/pywaterkotte/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pywavefront/default.nix b/pkgs/development/python-modules/pywavefront/default.nix index 676f2aaab661..ce532c26152c 100644 --- a/pkgs/development/python-modules/pywavefront/default.nix +++ b/pkgs/development/python-modules/pywavefront/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywavefront" ]; - meta = with lib; { + meta = { description = "Python library for importing Wavefront .obj files"; homepage = "https://github.com/pywavefront/PyWavefront"; changelog = "https://github.com/pywavefront/PyWavefront/blob/${src.rev}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/pywavelets/default.nix b/pkgs/development/python-modules/pywavelets/default.nix index c61dff8b51ca..3d549256693c 100644 --- a/pkgs/development/python-modules/pywavelets/default.nix +++ b/pkgs/development/python-modules/pywavelets/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { "pywt._extensions._swt" ]; - meta = with lib; { + meta = { description = "Wavelet transform module"; homepage = "https://github.com/PyWavelets/pywt"; changelog = "https://github.com/PyWavelets/pywt/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pywayland/default.nix b/pkgs/development/python-modules/pywayland/default.nix index 4dc2fb89330d..add93074f19b 100644 --- a/pkgs/development/python-modules/pywayland/default.nix +++ b/pkgs/development/python-modules/pywayland/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywayland" ]; - meta = with lib; { + meta = { homepage = "https://github.com/flacjacket/pywayland"; description = "Python bindings to wayland using cffi"; mainProgram = "pywayland-scanner"; - license = licenses.ncsa; - maintainers = with maintainers; [ chvp ]; + license = lib.licenses.ncsa; + maintainers = with lib.maintainers; [ chvp ]; }; } diff --git a/pkgs/development/python-modules/pywaze/default.nix b/pkgs/development/python-modules/pywaze/default.nix index 1f705dd3a68f..d53460dc4717 100644 --- a/pkgs/development/python-modules/pywaze/default.nix +++ b/pkgs/development/python-modules/pywaze/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywaze" ]; - meta = with lib; { + meta = { description = "Module for calculating WAZE routes and travel times"; homepage = "https://github.com/eifinger/pywaze"; changelog = "https://github.com/eifinger/pywaze/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pywbem/default.nix b/pkgs/development/python-modules/pywbem/default.nix index bb0680923968..805c7c4a2209 100644 --- a/pkgs/development/python-modules/pywbem/default.nix +++ b/pkgs/development/python-modules/pywbem/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywbem" ]; - meta = with lib; { + meta = { description = "Support for the WBEM standard for systems management"; homepage = "https://pywbem.github.io"; changelog = "https://github.com/pywbem/pywbem/blob/${version}/docs/changes.rst"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyweatherflowrest/default.nix b/pkgs/development/python-modules/pyweatherflowrest/default.nix index f6a4d91ce48b..83e9566d14cd 100644 --- a/pkgs/development/python-modules/pyweatherflowrest/default.nix +++ b/pkgs/development/python-modules/pyweatherflowrest/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyweatherflowrest" ]; - meta = with lib; { + meta = { description = "Python module to get data from WeatherFlow Weather Stations"; homepage = "https://github.com/briis/pyweatherflowrest"; changelog = "https://github.com/briis/pyweatherflowrest/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyweatherflowudp/default.nix b/pkgs/development/python-modules/pyweatherflowudp/default.nix index a085cfeec314..c4a07e9d285c 100644 --- a/pkgs/development/python-modules/pyweatherflowudp/default.nix +++ b/pkgs/development/python-modules/pyweatherflowudp/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "test_invalid_messages" ]; - meta = with lib; { + meta = { description = "Library to receive UDP Packets from Weatherflow Weatherstations"; homepage = "https://github.com/briis/pyweatherflowudp"; changelog = "https://github.com/briis/pyweatherflowudp/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pywebpush/default.nix b/pkgs/development/python-modules/pywebpush/default.nix index 08487c7109c9..b03b0434fd6b 100644 --- a/pkgs/development/python-modules/pywebpush/default.nix +++ b/pkgs/development/python-modules/pywebpush/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywebpush" ]; - meta = with lib; { + meta = { description = "Webpush Data encryption library for Python"; homepage = "https://github.com/web-push-libs/pywebpush"; changelog = "https://github.com/web-push-libs/pywebpush/releases/tag/${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "pywebpush"; }; } diff --git a/pkgs/development/python-modules/pywebview/default.nix b/pkgs/development/python-modules/pywebview/default.nix index aacd36f1e79f..1a304686845d 100644 --- a/pkgs/development/python-modules/pywebview/default.nix +++ b/pkgs/development/python-modules/pywebview/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "webview" ]; - meta = with lib; { + meta = { description = "Lightweight cross-platform wrapper around a webview"; homepage = "https://github.com/r0x0r/pywebview"; - license = licenses.bsd3; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/development/python-modules/pywemo/default.nix b/pkgs/development/python-modules/pywemo/default.nix index c7de9936a248..2e1d9fe9de77 100644 --- a/pkgs/development/python-modules/pywemo/default.nix +++ b/pkgs/development/python-modules/pywemo/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywemo" ]; - meta = with lib; { + meta = { description = "Python module to discover and control WeMo devices"; homepage = "https://github.com/pywemo/pywemo"; changelog = "https://github.com/pywemo/pywemo/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pywerview/default.nix b/pkgs/development/python-modules/pywerview/default.nix index 4c1ac135ba7a..2b64790884bd 100644 --- a/pkgs/development/python-modules/pywerview/default.nix +++ b/pkgs/development/python-modules/pywerview/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywerview" ]; - meta = with lib; { + meta = { description = "Module for PowerSploit's PowerView support"; homepage = "https://github.com/the-useless-one/pywerview"; changelog = "https://github.com/the-useless-one/pywerview/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pywerview"; }; } diff --git a/pkgs/development/python-modules/pywfa/default.nix b/pkgs/development/python-modules/pywfa/default.nix index 92d2d45a9aa3..969db7574beb 100644 --- a/pkgs/development/python-modules/pywfa/default.nix +++ b/pkgs/development/python-modules/pywfa/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "pywfa.align" ]; - meta = with lib; { + meta = { description = "Python wrapper for wavefront alignment using WFA2-lib"; homepage = "https://github.com/kcleal/pywfa"; changelog = "https://github.com/kcleal/pywfa/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/pywilight/default.nix b/pkgs/development/python-modules/pywilight/default.nix index 1c8d28858c75..7a2e6d119212 100644 --- a/pkgs/development/python-modules/pywilight/default.nix +++ b/pkgs/development/python-modules/pywilight/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywilight" ]; - meta = with lib; { + meta = { description = "Python API for WiLight device"; homepage = "https://github.com/leofig-rj/pywilight"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pywinrm/default.nix b/pkgs/development/python-modules/pywinrm/default.nix index fe213f4d6b5b..7ac85a1e5954 100644 --- a/pkgs/development/python-modules/pywinrm/default.nix +++ b/pkgs/development/python-modules/pywinrm/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { enabledTestPaths = [ "winrm/tests/" ]; - meta = with lib; { + meta = { description = "Python library for Windows Remote Management"; homepage = "https://github.com/diyan/pywinrm"; changelog = "https://github.com/diyan/pywinrm/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ elasticdog kamadorueda ]; diff --git a/pkgs/development/python-modules/pywizlight/default.nix b/pkgs/development/python-modules/pywizlight/default.nix index b3ad0ed92bf5..078142ac7b32 100644 --- a/pkgs/development/python-modules/pywizlight/default.nix +++ b/pkgs/development/python-modules/pywizlight/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywizlight" ]; - meta = with lib; { + meta = { description = "Python connector for WiZ light bulbs"; mainProgram = "wizlight"; homepage = "https://github.com/sbidy/pywizlight"; changelog = "https://github.com/sbidy/pywizlight/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pywlroots/default.nix b/pkgs/development/python-modules/pywlroots/default.nix index 2e2d887b4c79..b5a2a7539c8e 100644 --- a/pkgs/development/python-modules/pywlroots/default.nix +++ b/pkgs/development/python-modules/pywlroots/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { inherit qtile; }; - meta = with lib; { + meta = { homepage = "https://github.com/flacjacket/pywlroots"; description = "Python bindings to wlroots using cffi"; - license = licenses.ncsa; - platforms = platforms.linux; - maintainers = with maintainers; [ chvp ]; + license = lib.licenses.ncsa; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ chvp ]; }; } diff --git a/pkgs/development/python-modules/pyworld/default.nix b/pkgs/development/python-modules/pyworld/default.nix index a809f5043b99..7ac0bb756cd0 100644 --- a/pkgs/development/python-modules/pyworld/default.nix +++ b/pkgs/development/python-modules/pyworld/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyworld" ]; - meta = with lib; { + meta = { description = "PyWorld is a Python wrapper for WORLD vocoder"; homepage = "https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder"; - license = licenses.mit; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/python-modules/pyws66i/default.nix b/pkgs/development/python-modules/pyws66i/default.nix index bad163763077..85512eea1bba 100644 --- a/pkgs/development/python-modules/pyws66i/default.nix +++ b/pkgs/development/python-modules/pyws66i/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyws66i" ]; - meta = with lib; { + meta = { description = "Library to interface with WS66i 6-zone amplifier"; homepage = "https://github.com/bigmoby/pyialarmxr"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyx/default.nix b/pkgs/development/python-modules/pyx/default.nix index 0cb5b39462e6..87e078f0ceb7 100644 --- a/pkgs/development/python-modules/pyx/default.nix +++ b/pkgs/development/python-modules/pyx/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Python package for the generation of PostScript, PDF, and SVG files"; homepage = "https://pyx.sourceforge.net/"; - license = with licenses; [ gpl2 ]; + license = with lib.licenses; [ gpl2 ]; }; } diff --git a/pkgs/development/python-modules/pyxattr/default.nix b/pkgs/development/python-modules/pyxattr/default.nix index 67fd9778ebb3..d560e74a3e93 100644 --- a/pkgs/development/python-modules/pyxattr/default.nix +++ b/pkgs/development/python-modules/pyxattr/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { buildInputs = with pkgs; [ attr ]; - meta = with lib; { + meta = { description = "Python extension module which gives access to the extended attributes for filesystem objects available in some operating systems"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; inherit (pkgs.attr.meta) platforms; }; } diff --git a/pkgs/development/python-modules/pyxbe/default.nix b/pkgs/development/python-modules/pyxbe/default.nix index b6a86195e2e2..ed7d2b3d5036 100644 --- a/pkgs/development/python-modules/pyxbe/default.nix +++ b/pkgs/development/python-modules/pyxbe/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xbe" ]; - meta = with lib; { + meta = { description = "Library to work with XBE files"; homepage = "https://github.com/mborgerson/pyxbe"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyxdg/default.nix b/pkgs/development/python-modules/pyxdg/default.nix index a9f2fa227bd6..5d964caa2d6a 100644 --- a/pkgs/development/python-modules/pyxdg/default.nix +++ b/pkgs/development/python-modules/pyxdg/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xdg" ]; - meta = with lib; { + meta = { homepage = "http://freedesktop.org/wiki/Software/pyxdg"; description = "Contains implementations of freedesktop.org standards"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyxeoma/default.nix b/pkgs/development/python-modules/pyxeoma/default.nix index 18199146a921..1575b4b4a712 100644 --- a/pkgs/development/python-modules/pyxeoma/default.nix +++ b/pkgs/development/python-modules/pyxeoma/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyxeoma" ]; - meta = with lib; { + meta = { description = "Python wrapper for Xeoma web server API"; homepage = "https://github.com/jeradM/pyxeoma"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyxiaomigateway/default.nix b/pkgs/development/python-modules/pyxiaomigateway/default.nix index c42d7f055c8c..c09267bae916 100644 --- a/pkgs/development/python-modules/pyxiaomigateway/default.nix +++ b/pkgs/development/python-modules/pyxiaomigateway/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "xiaomi_gateway" ]; - meta = with lib; { + meta = { description = "Python library to communicate with the Xiaomi Gateway"; homepage = "https://github.com/Danielhiversen/PyXiaomiGateway/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyxl3/default.nix b/pkgs/development/python-modules/pyxl3/default.nix index fbe09edf07a0..47f40cab27e0 100644 --- a/pkgs/development/python-modules/pyxl3/default.nix +++ b/pkgs/development/python-modules/pyxl3/default.nix @@ -21,10 +21,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python 3 port of pyxl for writing structured and reusable inline HTML"; homepage = "https://github.com/gvanrossum/pyxl3"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyxlsb/default.nix b/pkgs/development/python-modules/pyxlsb/default.nix index 36e33930d47d..630f6cf3d671 100644 --- a/pkgs/development/python-modules/pyxlsb/default.nix +++ b/pkgs/development/python-modules/pyxlsb/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyxlsb" ]; - meta = with lib; { + meta = { description = "Excel 2007-2010 Binary Workbook (xlsb) parser"; homepage = "https://github.com/willtrnr/pyxlsb"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/pyxnat/default.nix b/pkgs/development/python-modules/pyxnat/default.nix index aebb9ab91e02..73876b9af2ce 100644 --- a/pkgs/development/python-modules/pyxnat/default.nix +++ b/pkgs/development/python-modules/pyxnat/default.nix @@ -74,12 +74,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyxnat" ]; - meta = with lib; { + meta = { homepage = "https://pyxnat.github.io/pyxnat"; description = "Python API to XNAT"; mainProgram = "sessionmirror.py"; changelog = "https://github.com/pyxnat/pyxnat/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pyyaml-env-tag/default.nix b/pkgs/development/python-modules/pyyaml-env-tag/default.nix index 69014895c8ce..9e15b47621c0 100644 --- a/pkgs/development/python-modules/pyyaml-env-tag/default.nix +++ b/pkgs/development/python-modules/pyyaml-env-tag/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yaml_env_tag" ]; - meta = with lib; { + meta = { description = "Custom YAML tag for referencing environment variables"; homepage = "https://github.com/waylan/pyyaml-env-tag"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyyaml/default.nix b/pkgs/development/python-modules/pyyaml/default.nix index 51c2eecdacb8..643417033846 100644 --- a/pkgs/development/python-modules/pyyaml/default.nix +++ b/pkgs/development/python-modules/pyyaml/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/yaml/pyyaml/blob/${src.rev}/CHANGES"; description = "Next generation YAML parser and emitter for Python"; homepage = "https://github.com/yaml/pyyaml"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pyyardian/default.nix b/pkgs/development/python-modules/pyyardian/default.nix index 3dde9c9798d7..99e542b87702 100644 --- a/pkgs/development/python-modules/pyyardian/default.nix +++ b/pkgs/development/python-modules/pyyardian/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyyardian" ]; - meta = with lib; { + meta = { description = "Module for interacting with the Yardian irrigation controller"; homepage = "https://github.com/h3l1o5/pyyardian"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyytlounge/default.nix b/pkgs/development/python-modules/pyytlounge/default.nix index 527f78f765cf..ae959ab074f0 100644 --- a/pkgs/development/python-modules/pyytlounge/default.nix +++ b/pkgs/development/python-modules/pyytlounge/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pytest-asyncio ]; - meta = with lib; { + meta = { description = "Python YouTube Lounge API"; homepage = "https://github.com/FabioGNR/pyytlounge"; - license = licenses.gpl3Only; - maintainers = [ maintainers.lukegb ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.lukegb ]; }; } diff --git a/pkgs/development/python-modules/pyzabbix/default.nix b/pkgs/development/python-modules/pyzabbix/default.nix index aa994c661363..ef9604442461 100644 --- a/pkgs/development/python-modules/pyzabbix/default.nix +++ b/pkgs/development/python-modules/pyzabbix/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyzabbix" ]; - meta = with lib; { + meta = { description = "Module to interact with the Zabbix API"; homepage = "https://github.com/lukecyca/pyzabbix"; changelog = "https://github.com/lukecyca/pyzabbix/blob/${version}/CHANGELOG.md"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyzbar/default.nix b/pkgs/development/python-modules/pyzbar/default.nix index 8bfd6f404bc5..3d91c626e2e4 100644 --- a/pkgs/development/python-modules/pyzbar/default.nix +++ b/pkgs/development/python-modules/pyzbar/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyzbar" ]; - meta = with lib; { + meta = { description = "Read one-dimensional barcodes and QR codes from Python using the zbar library"; homepage = "https://github.com/NaturalHistoryMuseum/pyzbar"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/pyzerproc/default.nix b/pkgs/development/python-modules/pyzerproc/default.nix index 09cf57b13124..eff24f89ef83 100644 --- a/pkgs/development/python-modules/pyzerproc/default.nix +++ b/pkgs/development/python-modules/pyzerproc/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyzerproc" ]; - meta = with lib; { + meta = { description = "Python library to control Zerproc Bluetooth LED smart string lights"; mainProgram = "pyzerproc"; homepage = "https://github.com/emlove/pyzerproc"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pyzipper/default.nix b/pkgs/development/python-modules/pyzipper/default.nix index 187fefec61f1..08fbd85ed3b3 100644 --- a/pkgs/development/python-modules/pyzipper/default.nix +++ b/pkgs/development/python-modules/pyzipper/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "test_CleanImport" ]; - meta = with lib; { + meta = { description = "Python zipfile extensions"; homepage = "https://github.com/danifus/pyzipper"; changelog = "https://github.com/danifus/pyzipper/blob/v${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pyzmq/default.nix b/pkgs/development/python-modules/pyzmq/default.nix index 723997fc32ce..f2c7e9557bee 100644 --- a/pkgs/development/python-modules/pyzmq/default.nix +++ b/pkgs/development/python-modules/pyzmq/default.nix @@ -85,10 +85,10 @@ buildPythonPackage rec { # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python bindings for ØMQ"; homepage = "https://pyzmq.readthedocs.io/"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 # or lgpl3Only ]; diff --git a/pkgs/development/python-modules/qcelemental/default.nix b/pkgs/development/python-modules/qcelemental/default.nix index ba603c58dcc8..fc7c85efc86b 100644 --- a/pkgs/development/python-modules/qcelemental/default.nix +++ b/pkgs/development/python-modules/qcelemental/default.nix @@ -51,12 +51,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "qcelemental" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Periodic table, physical constants and molecule parsing for quantum chemistry"; homepage = "https://github.com/MolSSI/QCElemental"; changelog = "https://github.com/MolSSI/QCElemental/blob/v${version}/docs/changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ sheepforce ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sheepforce ]; }; } diff --git a/pkgs/development/python-modules/qcengine/default.nix b/pkgs/development/python-modules/qcengine/default.nix index 6b282a19f826..4a83cd6af40c 100644 --- a/pkgs/development/python-modules/qcengine/default.nix +++ b/pkgs/development/python-modules/qcengine/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qcengine" ]; - meta = with lib; { + meta = { description = "Quantum chemistry program executor and IO standardizer (QCSchema) for quantum chemistry"; homepage = "https://molssi.github.io/QCElemental/"; - license = licenses.bsd3; - maintainers = with maintainers; [ sheepforce ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sheepforce ]; mainProgram = "qcengine"; }; } diff --git a/pkgs/development/python-modules/qcs-api-client/default.nix b/pkgs/development/python-modules/qcs-api-client/default.nix index 3f7a6b5e2f1c..8e5c9bf6f4fb 100644 --- a/pkgs/development/python-modules/qcs-api-client/default.nix +++ b/pkgs/development/python-modules/qcs-api-client/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qcs_api_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing the Rigetti QCS API"; homepage = "https://qcs-api-client-python.readthedocs.io/"; changelog = "https://github.com/rigetti/qcs-api-client-python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/qdarkstyle/default.nix b/pkgs/development/python-modules/qdarkstyle/default.nix index 80dca57b1d6a..04bce0b8eed7 100644 --- a/pkgs/development/python-modules/qdarkstyle/default.nix +++ b/pkgs/development/python-modules/qdarkstyle/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { qtpy ]; - meta = with lib; { + meta = { description = "Dark stylesheet for Python and Qt applications"; homepage = "https://github.com/ColinDuquesnoy/QDarkStyleSheet"; - license = licenses.mit; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/qdrant-client/default.nix b/pkgs/development/python-modules/qdrant-client/default.nix index a458c1891321..636a7f431d8f 100644 --- a/pkgs/development/python-modules/qdrant-client/default.nix +++ b/pkgs/development/python-modules/qdrant-client/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { fastembed = [ fastembed ]; }; - meta = with lib; { + meta = { description = "Python client for Qdrant vector search engine"; homepage = "https://github.com/qdrant/qdrant-client"; changelog = "https://github.com/qdrant/qdrant-client/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/qemu/default.nix b/pkgs/development/python-modules/qemu/default.nix index 4c182113c8fa..c760f9a50d9b 100644 --- a/pkgs/development/python-modules/qemu/default.nix +++ b/pkgs/development/python-modules/qemu/default.nix @@ -62,11 +62,11 @@ buildPythonPackage { rm $out/bin/qom-fuse ''); - meta = with lib; { + meta = { homepage = "https://www.qemu.org/"; description = "Python tooling used by the QEMU project to build, configure, and test QEMU"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ devplayer0 davhau ]; diff --git a/pkgs/development/python-modules/qiling/default.nix b/pkgs/development/python-modules/qiling/default.nix index 3e4cdc3d0d4e..b8542e39e015 100644 --- a/pkgs/development/python-modules/qiling/default.nix +++ b/pkgs/development/python-modules/qiling/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qiling" ]; - meta = with lib; { + meta = { description = "Qiling Advanced Binary Emulation Framework"; homepage = "https://qiling.io/"; changelog = "https://github.com/qilingframework/qiling/releases/tag/${version}"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; broken = true; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/qingping-ble/default.nix b/pkgs/development/python-modules/qingping-ble/default.nix index 3aee0368c0e9..3ae7390e2c5d 100644 --- a/pkgs/development/python-modules/qingping-ble/default.nix +++ b/pkgs/development/python-modules/qingping-ble/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qingping_ble" ]; - meta = with lib; { + meta = { description = "Library for Qingping BLE devices"; homepage = "https://github.com/bluetooth-devices/qingping-ble"; changelog = "https://github.com/Bluetooth-Devices/qingping-ble/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/qiskit-finance/default.nix b/pkgs/development/python-modules/qiskit-finance/default.nix index c8f778e840a8..ac07ccadb57d 100644 --- a/pkgs/development/python-modules/qiskit-finance/default.nix +++ b/pkgs/development/python-modules/qiskit-finance/default.nix @@ -77,14 +77,14 @@ buildPythonPackage rec { ]; pytestFlags = [ "--durations=10" ]; - meta = with lib; { + meta = { # broken because it depends on qiskit-algorithms which is not yet packaged in nixpkgs broken = true; description = "Software for developing quantum computing programs"; homepage = "https://qiskit.org"; downloadPage = "https://github.com/QISKit/qiskit-optimization/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/qiskit-machine-learning/default.nix b/pkgs/development/python-modules/qiskit-machine-learning/default.nix index 5742c6d940aa..169279ca7109 100644 --- a/pkgs/development/python-modules/qiskit-machine-learning/default.nix +++ b/pkgs/development/python-modules/qiskit-machine-learning/default.nix @@ -83,13 +83,13 @@ buildPythonPackage rec { "test_qgan_training" ]; - meta = with lib; { + meta = { broken = true; # incompatible with qiskit >= 2.0 (see https://github.com/Qiskit/qiskit-machine-learning/issues/934) description = "Software for developing quantum computing programs"; homepage = "https://qiskit.org"; downloadPage = "https://github.com/QISKit/qiskit-optimization/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/qiskit-nature/default.nix b/pkgs/development/python-modules/qiskit-nature/default.nix index 46596f4a9834..501a56e21fcb 100644 --- a/pkgs/development/python-modules/qiskit-nature/default.nix +++ b/pkgs/development/python-modules/qiskit-nature/default.nix @@ -66,18 +66,18 @@ buildPythonPackage rec { "test_two_qubit_reduction" # failure cause unclear ]; - meta = with lib; { + meta = { # broken because it depends on qiskit-algorithms which is not yet packaged in nixpkgs broken = true; description = "Software for developing quantum computing programs"; homepage = "https://qiskit.org"; downloadPage = "https://github.com/QISKit/qiskit-nature/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode # drivers/gaussiand/gauopen/*.so ]; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/qiskit-optimization/default.nix b/pkgs/development/python-modules/qiskit-optimization/default.nix index c27b5577ea96..6ed71630349c 100644 --- a/pkgs/development/python-modules/qiskit-optimization/default.nix +++ b/pkgs/development/python-modules/qiskit-optimization/default.nix @@ -60,14 +60,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "qiskit_optimization" ]; pytestFlags = [ "--durations=10" ]; - meta = with lib; { + meta = { # broken because it depends on qiskit-algorithms which is not yet packaged in nixpkgs broken = true; description = "Software for developing quantum computing programs"; homepage = "https://qiskit.org"; downloadPage = "https://github.com/QISKit/qiskit-optimization/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/qnap-qsw/default.nix b/pkgs/development/python-modules/qnap-qsw/default.nix index 697b0b98fe8a..70a683335ed9 100644 --- a/pkgs/development/python-modules/qnap-qsw/default.nix +++ b/pkgs/development/python-modules/qnap-qsw/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qnap_qsw" ]; - meta = with lib; { + meta = { description = "Python library to interact with the QNAP QSW API"; homepage = "https://github.com/Noltari/python-qnap-qsw"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/qpageview/default.nix b/pkgs/development/python-modules/qpageview/default.nix index 12ab639fd775..78d6a62de293 100644 --- a/pkgs/development/python-modules/qpageview/default.nix +++ b/pkgs/development/python-modules/qpageview/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qpageview" ]; - meta = with lib; { + meta = { description = "Page-based viewer widget for Qt5/PyQt5"; homepage = "https://github.com/frescobaldi/qpageview"; changelog = "https://github.com/frescobaldi/qpageview/blob/${src.tag}/ChangeLog"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ camillemndn ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ camillemndn ]; }; } diff --git a/pkgs/development/python-modules/qpsolvers/default.nix b/pkgs/development/python-modules/qpsolvers/default.nix index eeb696f36760..07dfc0b6a997 100644 --- a/pkgs/development/python-modules/qpsolvers/default.nix +++ b/pkgs/development/python-modules/qpsolvers/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ] ++ optional-dependencies.open_source_solvers; - meta = with lib; { + meta = { changelog = "https://github.com/qpsolvers/qpsolvers/blob/${src.tag}/CHANGELOG.md"; description = "Quadratic programming solvers in Python with a unified API"; homepage = "https://github.com/qpsolvers/qpsolvers"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ renesat ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ renesat ]; }; } diff --git a/pkgs/development/python-modules/qreactor/default.nix b/pkgs/development/python-modules/qreactor/default.nix index edb9b90a941d..42d50befe550 100644 --- a/pkgs/development/python-modules/qreactor/default.nix +++ b/pkgs/development/python-modules/qreactor/default.nix @@ -28,10 +28,10 @@ buildPythonPackage { pythonImportsCheck = [ "qreactor" ]; - meta = with lib; { + meta = { homepage = "https://github.com/frmdstryr/qt-reactor"; description = "Twisted and PyQt5/qtpy eventloop integration base"; - license = licenses.mit; - maintainers = with maintainers; [ raboof ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raboof ]; }; } diff --git a/pkgs/development/python-modules/qscintilla/default.nix b/pkgs/development/python-modules/qscintilla/default.nix index d0074f716990..3aa2ac2c8fa0 100644 --- a/pkgs/development/python-modules/qscintilla/default.nix +++ b/pkgs/development/python-modules/qscintilla/default.nix @@ -82,9 +82,9 @@ pythonPackages.buildPythonPackage { pythonImportsCheck = [ "PyQt${qtVersion}.Qsci" ]; - meta = with lib; { + meta = { description = "Python binding to QScintilla, Qt based text editing control"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; homepage = "https://www.riverbankcomputing.com/software/qscintilla/"; }; } diff --git a/pkgs/development/python-modules/qt5reactor/default.nix b/pkgs/development/python-modules/qt5reactor/default.nix index 3e654ee8b993..6bc07621c7d8 100644 --- a/pkgs/development/python-modules/qt5reactor/default.nix +++ b/pkgs/development/python-modules/qt5reactor/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qt5reactor" ]; - meta = with lib; { + meta = { description = "Twisted Qt Integration"; homepage = "https://github.com/twisted/qt5reactor"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/qtawesome/default.nix b/pkgs/development/python-modules/qtawesome/default.nix index 8ed729763110..f80fe3f9868e 100644 --- a/pkgs/development/python-modules/qtawesome/default.nix +++ b/pkgs/development/python-modules/qtawesome/default.nix @@ -34,13 +34,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "qtawesome" ]; - meta = with lib; { + meta = { description = "Iconic fonts in PyQt and PySide applications"; mainProgram = "qta-browser"; homepage = "https://github.com/spyder-ide/qtawesome"; changelog = "https://github.com/spyder-ide/qtawesome/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; # fails on Darwin + platforms = lib.platforms.linux; # fails on Darwin }; } diff --git a/pkgs/development/python-modules/qtile-extras/default.nix b/pkgs/development/python-modules/qtile-extras/default.nix index 2f99629d1164..edb9d1ce13b6 100644 --- a/pkgs/development/python-modules/qtile-extras/default.nix +++ b/pkgs/development/python-modules/qtile-extras/default.nix @@ -88,11 +88,11 @@ buildPythonPackage rec { passthru.tests.qtile-extras = nixosTests.qtile-extras; - meta = with lib; { + meta = { description = "Extra modules and widgets for the Qtile tiling window manager"; homepage = "https://github.com/elParaguayo/qtile-extras"; changelog = "https://github.com/elParaguayo/qtile-extras/blob/${src.tag}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ arjan-s ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arjan-s ]; }; } diff --git a/pkgs/development/python-modules/qtile/default.nix b/pkgs/development/python-modules/qtile/default.nix index c290e207a946..81e0cb14d868 100644 --- a/pkgs/development/python-modules/qtile/default.nix +++ b/pkgs/development/python-modules/qtile/default.nix @@ -103,13 +103,13 @@ buildPythonPackage rec { install resources/qtile-wayland.desktop -Dt $out/share/wayland-sessions ''; - meta = with lib; { + meta = { homepage = "http://www.qtile.org/"; - license = licenses.mit; + license = lib.licenses.mit; description = "Small, flexible, scriptable tiling window manager written in Python"; mainProgram = "qtile"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ arjan-s sigmanificient ]; diff --git a/pkgs/development/python-modules/qtpy/default.nix b/pkgs/development/python-modules/qtpy/default.nix index 23f382204342..2c7349129b23 100644 --- a/pkgs/development/python-modules/qtpy/default.nix +++ b/pkgs/development/python-modules/qtpy/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { "qtpy/tests/test_uic.py" ]; - meta = with lib; { + meta = { description = "Abstraction layer for PyQt5/PyQt6/PySide2/PySide6"; mainProgram = "qtpy"; homepage = "https://github.com/spyder-ide/qtpy"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/quadprog/default.nix b/pkgs/development/python-modules/quadprog/default.nix index 17faac7d13d4..a070a7a267a9 100644 --- a/pkgs/development/python-modules/quadprog/default.nix +++ b/pkgs/development/python-modules/quadprog/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { scipy ]; - meta = with lib; { + meta = { homepage = "https://github.com/quadprog/quadprog"; changelog = "https://github.com/quadprog/quadprog/releases/tag/v${version}"; description = "Quadratic Programming Solver"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/python-modules/qualysclient/default.nix b/pkgs/development/python-modules/qualysclient/default.nix index 85e167689cfe..739351363ea1 100644 --- a/pkgs/development/python-modules/qualysclient/default.nix +++ b/pkgs/development/python-modules/qualysclient/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qualysclient" ]; - meta = with lib; { + meta = { description = "Python SDK for interacting with the Qualys API"; homepage = "https://qualysclient.readthedocs.io/"; changelog = "https://github.com/woodtechie1428/qualysclient/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/quandl/default.nix b/pkgs/development/python-modules/quandl/default.nix index 18ef2dca507b..e299c2337bce 100644 --- a/pkgs/development/python-modules/quandl/default.nix +++ b/pkgs/development/python-modules/quandl/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "quandl" ]; - meta = with lib; { + meta = { description = "Quandl Python client library"; homepage = "https://github.com/quandl/quandl-python"; changelog = "https://github.com/quandl/quandl-python/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ ilya-kolpakov ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ilya-kolpakov ]; }; } diff --git a/pkgs/development/python-modules/quantile-forest/default.nix b/pkgs/development/python-modules/quantile-forest/default.nix index dff7aff4989a..f938564be56a 100644 --- a/pkgs/development/python-modules/quantile-forest/default.nix +++ b/pkgs/development/python-modules/quantile-forest/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "quantile_forest" ]; - meta = with lib; { + meta = { description = "Quantile Regression Forests compatible with scikit-learn"; homepage = "https://github.com/zillow/quantile-forest"; changelog = "https://github.com/zillow/quantile-forest/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/quantile-python/default.nix b/pkgs/development/python-modules/quantile-python/default.nix index 5d15c9252056..38cc9d2e3a39 100644 --- a/pkgs/development/python-modules/quantile-python/default.nix +++ b/pkgs/development/python-modules/quantile-python/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "quantile" ]; - meta = with lib; { + meta = { description = "Python Implementation of Graham Cormode and S. Muthukrishnan's Effective Computation of Biased Quantiles over Data Streams in ICDE'05"; homepage = "https://github.com/matttproud/python_quantile_estimation"; - license = licenses.asl20; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/quantiphy-eval/default.nix b/pkgs/development/python-modules/quantiphy-eval/default.nix index a95cf4903b5d..e9be490d9ad7 100644 --- a/pkgs/development/python-modules/quantiphy-eval/default.nix +++ b/pkgs/development/python-modules/quantiphy-eval/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { # "quantiphy_eval" # ]; - meta = with lib; { + meta = { description = "QuantiPhy support for evals in-line"; homepage = "https://github.com/KenKundert/quantiphy_eval/"; changelog = "https://github.com/KenKundert/quantiphy_eval/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/quantiphy/default.nix b/pkgs/development/python-modules/quantiphy/default.nix index fe34f20abef6..a533c51fb42c 100644 --- a/pkgs/development/python-modules/quantiphy/default.nix +++ b/pkgs/development/python-modules/quantiphy/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "quantiphy" ]; - meta = with lib; { + meta = { description = "Module for physical quantities (numbers with units)"; homepage = "https://quantiphy.readthedocs.io"; changelog = "https://github.com/KenKundert/quantiphy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/quantities/default.nix b/pkgs/development/python-modules/quantities/default.nix index cfcf76e741dc..7edff2ffa5e3 100644 --- a/pkgs/development/python-modules/quantities/default.nix +++ b/pkgs/development/python-modules/quantities/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "quantities" ]; - meta = with lib; { + meta = { description = "Quantities is designed to handle arithmetic and conversions of physical quantities"; homepage = "https://python-quantities.readthedocs.io/"; changelog = "https://github.com/python-quantities/python-quantities/blob/v${version}/CHANGES.txt"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/quantulum3/default.nix b/pkgs/development/python-modules/quantulum3/default.nix index 1f6605719a4b..bda9e88cfc66 100644 --- a/pkgs/development/python-modules/quantulum3/default.nix +++ b/pkgs/development/python-modules/quantulum3/default.nix @@ -46,11 +46,11 @@ buildPythonPackage { pythonImportsCheck = [ "quantulum3" ]; - meta = with lib; { + meta = { description = "Library for unit extraction - fork of quantulum for python3"; mainProgram = "quantulum3-training"; homepage = "https://github.com/nielstron/quantulum3"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/quantum-gateway/default.nix b/pkgs/development/python-modules/quantum-gateway/default.nix index e39b66b42ae6..0666e2cee992 100644 --- a/pkgs/development/python-modules/quantum-gateway/default.nix +++ b/pkgs/development/python-modules/quantum-gateway/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { "TestGateway3100" ]; - meta = with lib; { + meta = { description = "Python library for interacting with Verizon Fios Quantum gateway devices"; homepage = "https://github.com/cisasteelersfan/quantum_gateway"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/quart-cors/default.nix b/pkgs/development/python-modules/quart-cors/default.nix index aca57d8e08f7..65a4f298b730 100644 --- a/pkgs/development/python-modules/quart-cors/default.nix +++ b/pkgs/development/python-modules/quart-cors/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Quart-CORS is an extension for Quart to enable and control Cross Origin Resource Sharing, CORS"; homepage = "https://github.com/pgjones/quart-cors/"; changelog = "https://github.com/pgjones/quart-cors/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/quart/default.nix b/pkgs/development/python-modules/quart/default.nix index ae415d9e5fce..4867a891647f 100644 --- a/pkgs/development/python-modules/quart/default.nix +++ b/pkgs/development/python-modules/quart/default.nix @@ -74,12 +74,12 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Async Python micro framework for building web applications"; mainProgram = "quart"; homepage = "https://github.com/pallets/quart/"; changelog = "https://github.com/pallets/quart/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/qudida/default.nix b/pkgs/development/python-modules/qudida/default.nix index 6900eef961c7..16c4704c30b2 100644 --- a/pkgs/development/python-modules/qudida/default.nix +++ b/pkgs/development/python-modules/qudida/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qudida" ]; - meta = with lib; { + meta = { description = "QUick and DIrty Domain Adaptation"; homepage = "https://github.com/arsenyinfo/qudida"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/querystring-parser/default.nix b/pkgs/development/python-modules/querystring-parser/default.nix index 61763323bc23..a6ec9ac42ef0 100644 --- a/pkgs/development/python-modules/querystring-parser/default.nix +++ b/pkgs/development/python-modules/querystring-parser/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "querystring_parser" ]; - meta = with lib; { + meta = { description = "Module to handle nested dictionaries"; homepage = "https://github.com/bernii/querystring-parser"; changelog = "https://github.com/bernii/querystring-parser/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ tbenst ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/queuelib/default.nix b/pkgs/development/python-modules/queuelib/default.nix index 3999e1496a76..cceb070f3c34 100644 --- a/pkgs/development/python-modules/queuelib/default.nix +++ b/pkgs/development/python-modules/queuelib/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "queuelib" ]; - meta = with lib; { + meta = { description = "Collection of persistent (disk-based) queues for Python"; homepage = "https://github.com/scrapy/queuelib"; changelog = "https://github.com/scrapy/queuelib/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/quixote/default.nix b/pkgs/development/python-modules/quixote/default.nix index 78eb6b3bf7c4..51c931c01283 100644 --- a/pkgs/development/python-modules/quixote/default.nix +++ b/pkgs/development/python-modules/quixote/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { "quixote/ptl/test/test_ptl.py" ]; - meta = with lib; { + meta = { description = "Small and flexible Python Web application framework"; homepage = "https://pypi.org/project/Quixote/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/r2pipe/default.nix b/pkgs/development/python-modules/r2pipe/default.nix index d72e70e9f10e..1a9d8f42d305 100644 --- a/pkgs/development/python-modules/r2pipe/default.nix +++ b/pkgs/development/python-modules/r2pipe/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { EOF ''; - meta = with lib; { + meta = { description = "Interact with radare2"; homepage = "https://github.com/radare/radare2-r2pipe"; - license = licenses.mit; - maintainers = with maintainers; [ timokau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ timokau ]; }; } diff --git a/pkgs/development/python-modules/rachiopy/default.nix b/pkgs/development/python-modules/rachiopy/default.nix index 7e0761d79e39..d791261c0429 100644 --- a/pkgs/development/python-modules/rachiopy/default.nix +++ b/pkgs/development/python-modules/rachiopy/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rachiopy" ]; - meta = with lib; { + meta = { description = "Python client for Rachio Irrigation controller"; homepage = "https://github.com/rfverbruggen/rachiopy"; changelog = "https://github.com/rfverbruggen/rachiopy/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/radicale-infcloud/default.nix b/pkgs/development/python-modules/radicale-infcloud/default.nix index 073d5125859e..b3386ce4bd0a 100644 --- a/pkgs/development/python-modules/radicale-infcloud/default.nix +++ b/pkgs/development/python-modules/radicale-infcloud/default.nix @@ -27,13 +27,13 @@ buildPythonPackage { pythonImportsCheck = [ "radicale" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Unrud/RadicaleInfCloud/"; description = "Integrate InfCloud into Radicale's web interface"; - license = with licenses; [ + license = with lib.licenses; [ agpl3Plus gpl3Plus ]; - maintainers = with maintainers; [ erictapen ]; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/radio-beam/default.nix b/pkgs/development/python-modules/radio-beam/default.nix index e4ab1116273a..9ad35951491c 100644 --- a/pkgs/development/python-modules/radio-beam/default.nix +++ b/pkgs/development/python-modules/radio-beam/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "radio_beam" ]; - meta = with lib; { + meta = { description = "Tools for Beam IO and Manipulation"; homepage = "http://radio-astro-tools.github.io"; changelog = "https://github.com/radio-astro-tools/radio-beam/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ smaret ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ smaret ]; }; } diff --git a/pkgs/development/python-modules/radios/default.nix b/pkgs/development/python-modules/radios/default.nix index e4da41a6f6b9..599f90c0258a 100644 --- a/pkgs/development/python-modules/radios/default.nix +++ b/pkgs/development/python-modules/radios/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://github.com/frenck/python-radios/releases/tag/v${version}"; description = "Asynchronous Python client for the Radio Browser API"; homepage = "https://github.com/frenck/python-radios"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/radiotherm/default.nix b/pkgs/development/python-modules/radiotherm/default.nix index cea8791fdb8c..ffc906039911 100644 --- a/pkgs/development/python-modules/radiotherm/default.nix +++ b/pkgs/development/python-modules/radiotherm/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "radiotherm" ]; - meta = with lib; { + meta = { description = "Python library for Wifi Radiothermostat"; homepage = "https://github.com/mhrivnak/radiotherm"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/radish-bdd/default.nix b/pkgs/development/python-modules/radish-bdd/default.nix index c2635f27e993..599cf7268a77 100644 --- a/pkgs/development/python-modules/radish-bdd/default.nix +++ b/pkgs/development/python-modules/radish-bdd/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "radish" ]; - meta = with lib; { + meta = { description = "Behaviour-Driven-Development tool for python"; homepage = "https://radish-bdd.github.io/"; changelog = "https://github.com/radish-bdd/radish/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kalbasit l33tname ]; diff --git a/pkgs/development/python-modules/radon/default.nix b/pkgs/development/python-modules/radon/default.nix index 6a9baf65e6a6..3fb25b1a1dde 100644 --- a/pkgs/development/python-modules/radon/default.nix +++ b/pkgs/development/python-modules/radon/default.nix @@ -55,12 +55,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "radon" ]; - meta = with lib; { + meta = { description = "Various code metrics for Python code"; homepage = "https://radon.readthedocs.org"; changelog = "https://github.com/rubik/radon/blob/v${version}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; mainProgram = "radon"; }; } diff --git a/pkgs/development/python-modules/railroad-diagrams/default.nix b/pkgs/development/python-modules/railroad-diagrams/default.nix index b8970bc1ccd4..f66f93c6cca4 100644 --- a/pkgs/development/python-modules/railroad-diagrams/default.nix +++ b/pkgs/development/python-modules/railroad-diagrams/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "railroad" ]; - meta = with lib; { + meta = { description = "Module to generate SVG railroad syntax diagrams"; homepage = "https://github.com/tabatkins/railroad-diagrams"; - license = licenses.cc0; + license = lib.licenses.cc0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rainbowstream/default.nix b/pkgs/development/python-modules/rainbowstream/default.nix index 78ebd833a17e..a99caaf67a2c 100644 --- a/pkgs/development/python-modules/rainbowstream/default.nix +++ b/pkgs/development/python-modules/rainbowstream/default.nix @@ -73,11 +73,11 @@ buildPythonPackage { pythonImportsCheck = [ "rainbowstream" ]; - meta = with lib; { + meta = { description = "Streaming command-line twitter client"; mainProgram = "rainbowstream"; homepage = "https://github.com/orakaro/rainbowstream"; - license = licenses.mit; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/raincloudy/default.nix b/pkgs/development/python-modules/raincloudy/default.nix index 20728bec1608..58973cc8a0a0 100644 --- a/pkgs/development/python-modules/raincloudy/default.nix +++ b/pkgs/development/python-modules/raincloudy/default.nix @@ -75,11 +75,11 @@ buildPythonPackage rec { "test_attributes" ]; - meta = with lib; { + meta = { description = "Module to interact with Melnor RainCloud Smart Garden Watering Irrigation Timer"; homepage = "https://github.com/vanstinator/raincloudy"; changelog = "https://github.com/vanstinator/raincloudy/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ramlfications/default.nix b/pkgs/development/python-modules/ramlfications/default.nix index 22fef92b576d..062a872e626d 100644 --- a/pkgs/development/python-modules/ramlfications/default.nix +++ b/pkgs/development/python-modules/ramlfications/default.nix @@ -27,13 +27,13 @@ buildPythonPackage rec { hash = "sha256-wcQd5j74y7d0xFeWlwlhceZj95ixUmv5upnv/6Rl1ew="; }; - meta = with lib; { + meta = { description = "Python RAML parser"; mainProgram = "ramlfications"; homepage = "https://ramlfications.readthedocs.org"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; doCheck = false; diff --git a/pkgs/development/python-modules/random2/default.nix b/pkgs/development/python-modules/random2/default.nix index 89d544e54a9b..46664c793c2e 100644 --- a/pkgs/development/python-modules/random2/default.nix +++ b/pkgs/development/python-modules/random2/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { }) ]; - meta = with lib; { + meta = { homepage = "http://pypi.python.org/pypi/random2"; description = "Python 3 compatible Python 2 `random` Module"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python-modules/randomfiletree/default.nix b/pkgs/development/python-modules/randomfiletree/default.nix index b4075202f51d..5b6d433f752d 100644 --- a/pkgs/development/python-modules/randomfiletree/default.nix +++ b/pkgs/development/python-modules/randomfiletree/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "randomfiletree" ]; doCheck = false; - meta = with lib; { + meta = { description = "Create a random file/directory tree/structure in python fortesting purposes"; homepage = "https://pypi.org/project/RandomFileTree/"; - license = licenses.mit; - maintainers = with maintainers; [ twitchy0 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ twitchy0 ]; }; } diff --git a/pkgs/development/python-modules/range-typed-integers/default.nix b/pkgs/development/python-modules/range-typed-integers/default.nix index 912bee04ffc7..ed595423079d 100644 --- a/pkgs/development/python-modules/range-typed-integers/default.nix +++ b/pkgs/development/python-modules/range-typed-integers/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Package provides integer types that have a specific range of valid values"; homepage = "https://github.com/theCapypara/range-typed-integers"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ marius851000 ]; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/rangehttpserver/default.nix b/pkgs/development/python-modules/rangehttpserver/default.nix index d9c4512090fd..0b124dbd616d 100644 --- a/pkgs/development/python-modules/rangehttpserver/default.nix +++ b/pkgs/development/python-modules/rangehttpserver/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "RangeHTTPServer" ]; - meta = with lib; { + meta = { description = "SimpleHTTPServer with support for Range requests"; homepage = "https://github.com/danvk/RangeHTTPServer"; changelog = "https://github.com/danvk/RangeHTTPServer/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rangeparser/default.nix b/pkgs/development/python-modules/rangeparser/default.nix index 60330d213a24..33bcd42e24e9 100644 --- a/pkgs/development/python-modules/rangeparser/default.nix +++ b/pkgs/development/python-modules/rangeparser/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rangeparser" ]; - meta = with lib; { + meta = { description = "Parses ranges"; homepage = "https://pypi.org/project/RangeParser/"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rank-bm25/default.nix b/pkgs/development/python-modules/rank-bm25/default.nix index 214b78eda6b2..840f70bb7f7c 100644 --- a/pkgs/development/python-modules/rank-bm25/default.nix +++ b/pkgs/development/python-modules/rank-bm25/default.nix @@ -32,11 +32,11 @@ buildPythonPackage { pythonImportsCheck = [ "rank_bm25" ]; - meta = with lib; { + meta = { description = "Collection of BM25 Algorithms in Python"; homepage = "https://github.com/dorianbrown/rank_bm25"; changelog = "https://github.com/dorianbrown/rank_bm25/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/rapidfuzz-capi/default.nix b/pkgs/development/python-modules/rapidfuzz-capi/default.nix index 342f09b2708b..22102e4695d5 100644 --- a/pkgs/development/python-modules/rapidfuzz-capi/default.nix +++ b/pkgs/development/python-modules/rapidfuzz-capi/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rapidfuzz_capi" ]; - meta = with lib; { + meta = { description = "C-API of RapidFuzz, which can be used to extend RapidFuzz from separate packages"; homepage = "https://github.com/maxbachmann/rapidfuzz_capi"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/rapidgzip/default.nix b/pkgs/development/python-modules/rapidgzip/default.nix index f3dc069b9fff..2f68c6a6fc71 100644 --- a/pkgs/development/python-modules/rapidgzip/default.nix +++ b/pkgs/development/python-modules/rapidgzip/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "rapidgzip" ]; - meta = with lib; { + meta = { description = "Python library for parallel decompression and seeking within compressed gzip files"; mainProgram = "rapidgzip"; homepage = "https://github.com/mxmlnkn/rapidgzip"; changelog = "https://github.com/mxmlnkn/rapidgzip/blob/rapidgzip-v${version}/python/rapidgzip/CHANGELOG.md"; - license = licenses.mit; # dual MIT and asl20, https://internals.rust-lang.org/t/rationale-of-apache-dual-licensing/8952 + license = lib.licenses.mit; # dual MIT and asl20, https://internals.rust-lang.org/t/rationale-of-apache-dual-licensing/8952 maintainers = with lib.maintainers; [ mxmlnkn ]; }; } diff --git a/pkgs/development/python-modules/rapt-ble/default.nix b/pkgs/development/python-modules/rapt-ble/default.nix index 5569bbb88003..f2b586cc3241 100644 --- a/pkgs/development/python-modules/rapt-ble/default.nix +++ b/pkgs/development/python-modules/rapt-ble/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rapt_ble" ]; - meta = with lib; { + meta = { description = "Library for RAPT Pill hydrometer BLE devices"; homepage = "https://github.com/sairon/rapt-ble"; changelog = "https://github.com/sairon/rapt-ble/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rarfile/default.nix b/pkgs/development/python-modules/rarfile/default.nix index 0c6cf5586eb6..09e7e0b955a9 100644 --- a/pkgs/development/python-modules/rarfile/default.nix +++ b/pkgs/development/python-modules/rarfile/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rarfile" ]; - meta = with lib; { + meta = { description = "RAR archive reader for Python"; homepage = "https://github.com/markokr/rarfile"; changelog = "https://github.com/markokr/rarfile/releases/tag/v${version}"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ratarmount/default.nix b/pkgs/development/python-modules/ratarmount/default.nix index c6ae9038fb85..cb4d43ba8153 100644 --- a/pkgs/development/python-modules/ratarmount/default.nix +++ b/pkgs/development/python-modules/ratarmount/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Mounts archives as read-only file systems by way of indexing"; homepage = "https://github.com/mxmlnkn/ratarmount"; changelog = "https://github.com/mxmlnkn/ratarmount/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ mxmlnkn ]; mainProgram = "ratarmount"; }; diff --git a/pkgs/development/python-modules/ratarmountcore/default.nix b/pkgs/development/python-modules/ratarmountcore/default.nix index 2f98dc739350..9371d816b4da 100644 --- a/pkgs/development/python-modules/ratarmountcore/default.nix +++ b/pkgs/development/python-modules/ratarmountcore/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { "test_URL" ]; - meta = with lib; { + meta = { description = "Library for accessing archives by way of indexing"; homepage = "https://github.com/mxmlnkn/ratarmount/tree/master/core"; changelog = "https://github.com/mxmlnkn/ratarmount/blob/core-${src.tag}/core/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ mxmlnkn ]; }; } diff --git a/pkgs/development/python-modules/ratelim/default.nix b/pkgs/development/python-modules/ratelim/default.nix index c48469168cba..a8ede1537a19 100644 --- a/pkgs/development/python-modules/ratelim/default.nix +++ b/pkgs/development/python-modules/ratelim/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # package has no tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/themiurgo/ratelim"; description = "Simple Python library that limits the number of times a function can be called during a time interval"; - license = licenses.mit; - maintainers = with maintainers; [ dgliwka ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dgliwka ]; }; } diff --git a/pkgs/development/python-modules/ratelimit/default.nix b/pkgs/development/python-modules/ratelimit/default.nix index 86721efb55d2..dad43bb905eb 100644 --- a/pkgs/development/python-modules/ratelimit/default.nix +++ b/pkgs/development/python-modules/ratelimit/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ratelimit" ]; - meta = with lib; { + meta = { description = "Python API Rate Limit Decorator"; homepage = "https://github.com/tomasbasham/ratelimit"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rawkit/default.nix b/pkgs/development/python-modules/rawkit/default.nix index 00f469329e66..eae89d508da0 100644 --- a/pkgs/development/python-modules/rawkit/default.nix +++ b/pkgs/development/python-modules/rawkit/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { py.test tests ''; - meta = with lib; { + meta = { description = "CTypes based LibRaw bindings for Python"; homepage = "https://rawkit.readthedocs.org/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/razdel/default.nix b/pkgs/development/python-modules/razdel/default.nix index 7337f52b7d29..a447b1c4fbae 100644 --- a/pkgs/development/python-modules/razdel/default.nix +++ b/pkgs/development/python-modules/razdel/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { enabledTestPaths = [ "razdel" ]; pythonImportsCheck = [ "razdel" ]; - meta = with lib; { + meta = { description = "Rule-based system for Russian sentence and word tokenization"; mainProgram = "razdel-ctl"; homepage = "https://github.com/natasha/razdel"; - license = licenses.mit; - maintainers = with maintainers; [ npatsakula ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ npatsakula ]; }; } diff --git a/pkgs/development/python-modules/rchitect/default.nix b/pkgs/development/python-modules/rchitect/default.nix index b1c9d639bffc..37f298f42082 100644 --- a/pkgs/development/python-modules/rchitect/default.nix +++ b/pkgs/development/python-modules/rchitect/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rchitect" ]; - meta = with lib; { + meta = { description = "Interoperate R with Python"; homepage = "https://github.com/randy3k/rchitect"; changelog = "https://github.com/randy3k/rchitect/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ savyajha ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ savyajha ]; }; } diff --git a/pkgs/development/python-modules/rcssmin/default.nix b/pkgs/development/python-modules/rcssmin/default.nix index 68519d02e7aa..641cf1064035 100644 --- a/pkgs/development/python-modules/rcssmin/default.nix +++ b/pkgs/development/python-modules/rcssmin/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rcssmin" ]; - meta = with lib; { + meta = { description = "CSS minifier written in pure python"; homepage = "http://opensource.perlig.de/rcssmin/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rctclient/default.nix b/pkgs/development/python-modules/rctclient/default.nix index 803af987c96a..a1a7a581be66 100644 --- a/pkgs/development/python-modules/rctclient/default.nix +++ b/pkgs/development/python-modules/rctclient/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python implementation of the RCT Power GmbH Serial Communication Protocol"; homepage = "https://github.com/svalouch/python-rctclient"; changelog = "https://github.com/svalouch/python-rctclient/releases/tag/${src.tag}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ _9R ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ _9R ]; }; } diff --git a/pkgs/development/python-modules/readabilipy/default.nix b/pkgs/development/python-modules/readabilipy/default.nix index c3e1d007baec..6ea7c87ca39c 100644 --- a/pkgs/development/python-modules/readabilipy/default.nix +++ b/pkgs/development/python-modules/readabilipy/default.nix @@ -101,12 +101,12 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "HTML content extractor"; homepage = "https://github.com/alan-turing-institute/ReadabiliPy"; changelog = "https://github.com/alan-turing-institute/ReadabiliPy/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "readabilipy"; }; } diff --git a/pkgs/development/python-modules/readability-lxml/default.nix b/pkgs/development/python-modules/readability-lxml/default.nix index c9a03744a956..1d426588e4e1 100644 --- a/pkgs/development/python-modules/readability-lxml/default.nix +++ b/pkgs/development/python-modules/readability-lxml/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { "test_many_repeated_spaces" ]; - meta = with lib; { + meta = { description = "Fast python port of arc90's readability tool"; homepage = "https://github.com/buriy/python-readability"; - license = licenses.asl20; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/development/python-modules/readchar/default.nix b/pkgs/development/python-modules/readchar/default.nix index 5c93e4d13e0d..1e21838fdc2d 100644 --- a/pkgs/development/python-modules/readchar/default.nix +++ b/pkgs/development/python-modules/readchar/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pexpect ]; - meta = with lib; { + meta = { description = "Python library to read characters and key strokes"; homepage = "https://github.com/magmax/python-readchar"; changelog = "https://github.com/magmax/python-readchar/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmahut ]; }; } diff --git a/pkgs/development/python-modules/readlike/default.nix b/pkgs/development/python-modules/readlike/default.nix index fa7480f31ad4..093dbfe508f8 100644 --- a/pkgs/development/python-modules/readlike/default.nix +++ b/pkgs/development/python-modules/readlike/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { "tests" ]; - meta = with lib; { + meta = { description = "GNU Readline-like line editing module"; homepage = "https://github.com/jangler/readlike"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/readmdict/default.nix b/pkgs/development/python-modules/readmdict/default.nix index 9089bd1b44dd..a3c04d862f4a 100644 --- a/pkgs/development/python-modules/readmdict/default.nix +++ b/pkgs/development/python-modules/readmdict/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "readmdict" ]; - meta = with lib; { + meta = { description = "Read mdx/mdd files (repacking of readmdict from mdict-analysis)"; mainProgram = "readmdict"; homepage = "https://github.com/ffreemt/readmdict"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/readme-renderer/default.nix b/pkgs/development/python-modules/readme-renderer/default.nix index c51c4e74f521..4c7e9f97fcc8 100644 --- a/pkgs/development/python-modules/readme-renderer/default.nix +++ b/pkgs/development/python-modules/readme-renderer/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "readme_renderer" ]; - meta = with lib; { + meta = { description = "Python library for rendering readme descriptions"; homepage = "https://github.com/pypa/readme_renderer"; changelog = "https://github.com/pypa/readme_renderer/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/readme/default.nix b/pkgs/development/python-modules/readme/default.nix index 40ab04142897..c7142c7f2bf6 100644 --- a/pkgs/development/python-modules/readme/default.nix +++ b/pkgs/development/python-modules/readme/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # package is not readme-renderer doCheck = false; - meta = with lib; { + meta = { description = "Readme is a library for rendering readme descriptions for Warehouse"; homepage = "https://github.com/pypa/readme"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/readthedocs-sphinx-ext/default.nix b/pkgs/development/python-modules/readthedocs-sphinx-ext/default.nix index 6d974563bc1e..c373c4b69d8f 100644 --- a/pkgs/development/python-modules/readthedocs-sphinx-ext/default.nix +++ b/pkgs/development/python-modules/readthedocs-sphinx-ext/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { sphinx ]; - meta = with lib; { + meta = { description = "Sphinx extension for Read the Docs overrides"; homepage = "https://github.com/rtfd/readthedocs-sphinx-ext"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/rebulk/default.nix b/pkgs/development/python-modules/rebulk/default.nix index 71ebcbdfddf2..672dada42333 100644 --- a/pkgs/development/python-modules/rebulk/default.nix +++ b/pkgs/development/python-modules/rebulk/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rebulk" ]; - meta = with lib; { + meta = { description = "Advanced string matching from simple patterns"; homepage = "https://github.com/Toilal/rebulk/"; changelog = "https://github.com/Toilal/rebulk/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/recipe-scrapers/default.nix b/pkgs/development/python-modules/recipe-scrapers/default.nix index 424871d3b43a..5b3245ce74ef 100644 --- a/pkgs/development/python-modules/recipe-scrapers/default.nix +++ b/pkgs/development/python-modules/recipe-scrapers/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "Python package for scraping recipes data"; homepage = "https://github.com/hhursev/recipe-scrapers"; changelog = "https://github.com/hhursev/recipe-scrapers/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/recline/default.nix b/pkgs/development/python-modules/recline/default.nix index cc7b09373d0d..767806f0bdbf 100644 --- a/pkgs/development/python-modules/recline/default.nix +++ b/pkgs/development/python-modules/recline/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "recline" ]; - meta = with lib; { + meta = { description = "This library helps you quickly implement an interactive command-based application"; homepage = "https://github.com/NetApp/recline"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/reconplogger/default.nix b/pkgs/development/python-modules/reconplogger/default.nix index 3aa5f56cbf25..100550fea61f 100644 --- a/pkgs/development/python-modules/reconplogger/default.nix +++ b/pkgs/development/python-modules/reconplogger/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { enabledTestPaths = [ "reconplogger_tests.py" ]; - meta = with lib; { + meta = { description = "Module to ease the standardization of logging within omni:us"; homepage = "https://github.com/omni-us/reconplogger"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/recordlinkage/default.nix b/pkgs/development/python-modules/recordlinkage/default.nix index b89a11830bc4..5fad70503da5 100644 --- a/pkgs/development/python-modules/recordlinkage/default.nix +++ b/pkgs/development/python-modules/recordlinkage/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "recordlinkage" ]; - meta = with lib; { + meta = { description = "Library to link records in or between data sources"; homepage = "https://recordlinkage.readthedocs.io/"; changelog = "https://github.com/J535D165/recordlinkage/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/rectangle-packer/default.nix b/pkgs/development/python-modules/rectangle-packer/default.nix index 7163f13bc066..b6eddacd9184 100644 --- a/pkgs/development/python-modules/rectangle-packer/default.nix +++ b/pkgs/development/python-modules/rectangle-packer/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { rm -r rpack ''; - meta = with lib; { + meta = { description = "Pack a set of rectangles into a bounding box with minimum area"; homepage = "https://github.com/Penlect/rectangle-packer"; - license = licenses.mit; - maintainers = with maintainers; [ fbeffa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fbeffa ]; }; } diff --git a/pkgs/development/python-modules/rectpack/default.nix b/pkgs/development/python-modules/rectpack/default.nix index d469d7021ef3..95ce013921e8 100644 --- a/pkgs/development/python-modules/rectpack/default.nix +++ b/pkgs/development/python-modules/rectpack/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rectpack" ]; - meta = with lib; { + meta = { description = "Collection of algorithms for solving the 2D knapsack problem"; homepage = "https://github.com/secnot/rectpack"; - license = licenses.asl20; - maintainers = with maintainers; [ fbeffa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fbeffa ]; }; } diff --git a/pkgs/development/python-modules/red-black-tree-mod/default.nix b/pkgs/development/python-modules/red-black-tree-mod/default.nix index 91de8a60cb74..135379649988 100644 --- a/pkgs/development/python-modules/red-black-tree-mod/default.nix +++ b/pkgs/development/python-modules/red-black-tree-mod/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "red_black_dict_mod" ]; - meta = with lib; { + meta = { description = "Flexible python implementation of red black trees"; homepage = "https://stromberg.dnsalias.org/~strombrg/red-black-tree-mod/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/redbaron/default.nix b/pkgs/development/python-modules/redbaron/default.nix index 51efa7937e29..2e8a90f8eef5 100644 --- a/pkgs/development/python-modules/redbaron/default.nix +++ b/pkgs/development/python-modules/redbaron/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/PyCQA/redbaron"; description = "Abstraction on top of baron, a FST for python to make writing refactoring code a realistic task"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/redis-om/default.nix b/pkgs/development/python-modules/redis-om/default.nix index 336491a51b04..e290fae8f5ec 100644 --- a/pkgs/development/python-modules/redis-om/default.nix +++ b/pkgs/development/python-modules/redis-om/default.nix @@ -80,12 +80,12 @@ buildPythonPackage rec { "redis_om" ]; - meta = with lib; { + meta = { description = "Object mapping, and more, for Redis and Python"; mainProgram = "migrate"; homepage = "https://github.com/redis/redis-om-python"; changelog = "https://github.com/redis/redis-om-python/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/redis/default.nix b/pkgs/development/python-modules/redis/default.nix index 35f2e517fc3a..acfe1b4a8e16 100644 --- a/pkgs/development/python-modules/redis/default.nix +++ b/pkgs/development/python-modules/redis/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { # Tests require a running redis doCheck = false; - meta = with lib; { + meta = { description = "Python client for Redis key-value store"; homepage = "https://github.com/redis/redis-py"; changelog = "https://github.com/redis/redis-py/releases/tag/v${version}"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/reedsolo/default.nix b/pkgs/development/python-modules/reedsolo/default.nix index f04427072774..77af4c7f2803 100644 --- a/pkgs/development/python-modules/reedsolo/default.nix +++ b/pkgs/development/python-modules/reedsolo/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { "tests/test_creedsolo.py" # TODO: package creedsolo ]; - meta = with lib; { + meta = { description = "Pure-python universal errors-and-erasures Reed-Solomon Codec"; homepage = "https://github.com/tomerfiliba/reedsolomon"; - license = licenses.publicDomain; - maintainers = with maintainers; [ yorickvp ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ yorickvp ]; }; } diff --git a/pkgs/development/python-modules/referencing/default.nix b/pkgs/development/python-modules/referencing/default.nix index 2283c7758de9..aad40210be53 100644 --- a/pkgs/development/python-modules/referencing/default.nix +++ b/pkgs/development/python-modules/referencing/default.nix @@ -53,12 +53,12 @@ let pythonImportsCheck = [ "referencing" ]; - meta = with lib; { + meta = { description = "Cross-specification JSON referencing"; homepage = "https://github.com/python-jsonschema/referencing"; changelog = "https://github.com/python-jsonschema/referencing/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; }; in diff --git a/pkgs/development/python-modules/refery/default.nix b/pkgs/development/python-modules/refery/default.nix index cddfa64d361f..e434fa556596 100644 --- a/pkgs/development/python-modules/refery/default.nix +++ b/pkgs/development/python-modules/refery/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # No tests yet doCheck = false; - meta = with lib; { + meta = { description = "Functional testing tool"; homepage = "https://github.com/RostanTabet/refery"; mainProgram = "refery"; - maintainers = with maintainers; [ rostan-t ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ rostan-t ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/reflex-hosting-cli/default.nix b/pkgs/development/python-modules/reflex-hosting-cli/default.nix index 39b2806fdeb4..7b50d2e066df 100644 --- a/pkgs/development/python-modules/reflex-hosting-cli/default.nix +++ b/pkgs/development/python-modules/reflex-hosting-cli/default.nix @@ -59,10 +59,10 @@ buildPythonPackage rec { # no tests on pypi doCheck = false; - meta = with lib; { + meta = { description = "Reflex Hosting CLI"; homepage = "https://pypi.org/project/reflex-hosting-cli/"; - license = licenses.asl20; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/reflink-copy/default.nix b/pkgs/development/python-modules/reflink-copy/default.nix index 6c55782c880c..9cc908b73f49 100644 --- a/pkgs/development/python-modules/reflink-copy/default.nix +++ b/pkgs/development/python-modules/reflink-copy/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "reflink_copy" ]; - meta = with lib; { + meta = { description = "Python wrapper for reflink_copy Rust library"; homepage = "https://github.com/iterative/reflink-copy"; - license = licenses.asl20; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/development/python-modules/reflink/default.nix b/pkgs/development/python-modules/reflink/default.nix index feb533ee69f0..48cbf42a2f3d 100644 --- a/pkgs/development/python-modules/reflink/default.nix +++ b/pkgs/development/python-modules/reflink/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "reflink" ]; - meta = with lib; { + meta = { description = "Python reflink wraps around platform specific reflink implementations"; homepage = "https://gitlab.com/rubdos/pyreflink"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/regenmaschine/default.nix b/pkgs/development/python-modules/regenmaschine/default.nix index 8a15cd56eba3..2697df16528d 100644 --- a/pkgs/development/python-modules/regenmaschine/default.nix +++ b/pkgs/development/python-modules/regenmaschine/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python library for interacting with RainMachine smart sprinkler controllers"; homepage = "https://github.com/bachya/regenmaschine"; changelog = "https://github.com/bachya/regenmaschine/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/regional/default.nix b/pkgs/development/python-modules/regional/default.nix index 97672368fc39..b256fba73f0e 100644 --- a/pkgs/development/python-modules/regional/default.nix +++ b/pkgs/development/python-modules/regional/default.nix @@ -39,10 +39,10 @@ buildPythonPackage { "test_mask" ]; - meta = with lib; { + meta = { description = "Simple manipualtion and display of spatial regions"; homepage = "https://github.com/freeman-lab/regional"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/regress/default.nix b/pkgs/development/python-modules/regress/default.nix index 481b9f41b39d..9ec8bc9dc7a2 100644 --- a/pkgs/development/python-modules/regress/default.nix +++ b/pkgs/development/python-modules/regress/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { hash = "sha256-DOnKFVg+5cIv0T3mKzF8O9jj5+ZenQrLjTltfd+Tm9U="; }; - meta = with lib; { + meta = { description = "Python bindings to the Rust regress crate, exposing ECMA regular expressions"; homepage = "https://github.com/Julian/regress"; - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/reikna/default.nix b/pkgs/development/python-modules/reikna/default.nix index 014b87d8e787..2b4a0b02b8c4 100644 --- a/pkgs/development/python-modules/reikna/default.nix +++ b/pkgs/development/python-modules/reikna/default.nix @@ -41,9 +41,9 @@ buildPythonPackage rec { # Requires device doCheck = false; - meta = with lib; { + meta = { description = "GPGPU algorithms for PyCUDA and PyOpenCL"; homepage = "https://github.com/fjarri/reikna"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/related/default.nix b/pkgs/development/python-modules/related/default.nix index c84e7bcf344e..3716db42d576 100644 --- a/pkgs/development/python-modules/related/default.nix +++ b/pkgs/development/python-modules/related/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "related" ]; - meta = with lib; { + meta = { description = "Nested Object Models in Python"; homepage = "https://github.com/genomoncology/related"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/releases/default.nix b/pkgs/development/python-modules/releases/default.nix index 5b576a26fc33..850c07957e70 100644 --- a/pkgs/development/python-modules/releases/default.nix +++ b/pkgs/development/python-modules/releases/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "releases" ]; - meta = with lib; { + meta = { description = "Sphinx extension for changelog manipulation"; homepage = "https://github.com/bitprophet/releases"; - license = licenses.bsd2; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/remarshal/default.nix b/pkgs/development/python-modules/remarshal/default.nix index 65e1c704cbb3..77131a7aba09 100644 --- a/pkgs/development/python-modules/remarshal/default.nix +++ b/pkgs/development/python-modules/remarshal/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/remarshal-project/remarshal/releases/tag/v${version}"; description = "Convert between TOML, YAML and JSON"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/dbohdan/remarshal"; - maintainers = with maintainers; [ offline ]; + maintainers = with lib.maintainers; [ offline ]; mainProgram = "remarshal"; }; } diff --git a/pkgs/development/python-modules/remote-pdb/default.nix b/pkgs/development/python-modules/remote-pdb/default.nix index c17f48d45155..040ec316501d 100644 --- a/pkgs/development/python-modules/remote-pdb/default.nix +++ b/pkgs/development/python-modules/remote-pdb/default.nix @@ -13,11 +13,11 @@ buildPythonPackage rec { rev = "v${version}"; hash = "sha256-/7RysJOJigU4coC6d/Ob2lrtw8u8nLZI8wBk4oEEY3g="; }; - meta = with lib; { + meta = { description = "Remote vanilla PDB (over TCP sockets)"; homepage = "https://github.com/ionelmc/python-remote-pdb"; - license = licenses.bsd2; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/remotezip/default.nix b/pkgs/development/python-modules/remotezip/default.nix index e33a0276a4b9..923df4c3b2e4 100644 --- a/pkgs/development/python-modules/remotezip/default.nix +++ b/pkgs/development/python-modules/remotezip/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "remotezip" ]; - meta = with lib; { + meta = { description = "Python module to access single members of a zip archive without downloading the full content"; mainProgram = "remotezip"; homepage = "https://github.com/gtsystem/python-remotezip"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/renault-api/default.nix b/pkgs/development/python-modules/renault-api/default.nix index de173f0fb5db..c11eba5dd65e 100644 --- a/pkgs/development/python-modules/renault-api/default.nix +++ b/pkgs/development/python-modules/renault-api/default.nix @@ -57,12 +57,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "renault_api" ]; - meta = with lib; { + meta = { description = "Python library to interact with the Renault API"; homepage = "https://github.com/hacf-fr/renault-api"; changelog = "https://github.com/hacf-fr/renault-api/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "renault-api"; }; } diff --git a/pkgs/development/python-modules/rencode/default.nix b/pkgs/development/python-modules/rencode/default.nix index b99cff73ea1e..46183f602ac9 100644 --- a/pkgs/development/python-modules/rencode/default.nix +++ b/pkgs/development/python-modules/rencode/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { rm -r rencode ''; - meta = with lib; { + meta = { homepage = "https://github.com/aresch/rencode"; description = "Fast (basic) object serialization similar to bencode"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/reno/default.nix b/pkgs/development/python-modules/reno/default.nix index 525534eda715..e778d3576402 100644 --- a/pkgs/development/python-modules/reno/default.nix +++ b/pkgs/development/python-modules/reno/default.nix @@ -80,11 +80,11 @@ buildPythonApplication rec { $out/bin/reno -h ''; - meta = with lib; { + meta = { description = "Release Notes Manager"; mainProgram = "reno"; homepage = "https://docs.openstack.org/reno/latest"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/renson-endura-delta/default.nix b/pkgs/development/python-modules/renson-endura-delta/default.nix index 45aec971ed7e..80d967c27fac 100644 --- a/pkgs/development/python-modules/renson-endura-delta/default.nix +++ b/pkgs/development/python-modules/renson-endura-delta/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "renson_endura_delta" ]; - meta = with lib; { + meta = { description = "Module to interact with Renson endura delta"; homepage = "https://github.com/jimmyd-be/Renson-endura-delta-library"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/reolink-aio/default.nix b/pkgs/development/python-modules/reolink-aio/default.nix index ef30ac23095e..22e33189539a 100644 --- a/pkgs/development/python-modules/reolink-aio/default.nix +++ b/pkgs/development/python-modules/reolink-aio/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { # All tests require a network device doCheck = false; - meta = with lib; { + meta = { description = "Module to interact with the Reolink IP camera API"; homepage = "https://github.com/starkillerOG/reolink_aio"; changelog = "https://github.com/starkillerOG/reolink_aio/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/reolink/default.nix b/pkgs/development/python-modules/reolink/default.nix index 89d4837c6421..d67d0c7c1120 100644 --- a/pkgs/development/python-modules/reolink/default.nix +++ b/pkgs/development/python-modules/reolink/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Module to interact with the Reolink IP camera API"; homepage = "https://github.com/fwestenberg/reolink"; changelog = "https://github.com/fwestenberg/reolink/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/reorder-python-imports/default.nix b/pkgs/development/python-modules/reorder-python-imports/default.nix index 5494096fe80e..c1f83834e258 100644 --- a/pkgs/development/python-modules/reorder-python-imports/default.nix +++ b/pkgs/development/python-modules/reorder-python-imports/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { # and therefore fails the assertion disabledTests = [ "test_success_messages_are_printed_on_stderr" ]; - meta = with lib; { + meta = { description = "Tool for automatically reordering python imports"; homepage = "https://github.com/asottile/reorder_python_imports"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; mainProgram = "reorder-python-imports"; }; } diff --git a/pkgs/development/python-modules/reparser/default.nix b/pkgs/development/python-modules/reparser/default.nix index 4ea2dab3e785..5d35bc128083 100644 --- a/pkgs/development/python-modules/reparser/default.nix +++ b/pkgs/development/python-modules/reparser/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "reparser" ]; - meta = with lib; { + meta = { description = "Simple regex-based lexer/parser for inline markup"; homepage = "https://github.com/xmikos/reparser"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/repeated-test/default.nix b/pkgs/development/python-modules/repeated-test/default.nix index a7a284930a5f..027f227a95c4 100644 --- a/pkgs/development/python-modules/repeated-test/default.nix +++ b/pkgs/development/python-modules/repeated-test/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "repeated_test" ]; - meta = with lib; { + meta = { description = "Unittest-compatible framework for repeating a test function over many fixtures"; homepage = "https://github.com/epsy/repeated_test"; changelog = "https://github.com/epsy/repeated_test/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/repl-python-wakatime/default.nix b/pkgs/development/python-modules/repl-python-wakatime/default.nix index 5eb699fde156..8a88ff234af7 100644 --- a/pkgs/development/python-modules/repl-python-wakatime/default.nix +++ b/pkgs/development/python-modules/repl-python-wakatime/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "repl_python_wakatime" ]; - meta = with lib; { + meta = { description = "Python REPL plugin for automatic time tracking and metrics generated from your programming activity"; homepage = "https://github.com/wakatime/repl-python-wakatime"; changelog = "https://github.com/wakatime/repl-python-wakatime/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jfvillablanca ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jfvillablanca ]; }; } diff --git a/pkgs/development/python-modules/reportlab-qrcode/default.nix b/pkgs/development/python-modules/reportlab-qrcode/default.nix index 67d69ef8cf0f..01354237280b 100644 --- a/pkgs/development/python-modules/reportlab-qrcode/default.nix +++ b/pkgs/development/python-modules/reportlab-qrcode/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "reportlab_qrcode" ]; - meta = with lib; { + meta = { description = "Allows to create QR codes for use with the ReportLab PDF library"; homepage = "https://pypi.org/project/reportlab-qrcode/"; - license = licenses.mit; - maintainers = with maintainers; [ xanderio ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xanderio ]; }; } diff --git a/pkgs/development/python-modules/reportlab/default.nix b/pkgs/development/python-modules/reportlab/default.nix index ed2388dc2dc5..c7a71e56e046 100644 --- a/pkgs/development/python-modules/reportlab/default.nix +++ b/pkgs/development/python-modules/reportlab/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { changelog = "https://hg.reportlab.com/hg-public/reportlab/file/tip/CHANGES.md"; description = "Open Source Python library for generating PDFs and graphics"; homepage = "https://www.reportlab.com/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/repoze-lru/default.nix b/pkgs/development/python-modules/repoze-lru/default.nix index 41455a3e3b6b..45f5a7fedcc4 100644 --- a/pkgs/development/python-modules/repoze-lru/default.nix +++ b/pkgs/development/python-modules/repoze-lru/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonNamespaces = [ "repoze" ]; - meta = with lib; { + meta = { description = "Tiny LRU cache implementation and decorator"; homepage = "http://www.repoze.org/"; changelog = "https://github.com/repoze/repoze.lru/blob/${version}/CHANGES.rst"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix b/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix index c0a132ef5443..bebd9ace09f6 100644 --- a/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix +++ b/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix @@ -46,7 +46,7 @@ buildPythonPackage rec { homepage = "https://github.com/repoze/repoze.sphinx.autointerface"; description = "Auto-generate Sphinx API docs from Zope interfaces"; changelog = "https://github.com/repoze/repoze.sphinx.autointerface/blob/${version}/CHANGES.rst"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; # https://github.com/repoze/repoze.sphinx.autointerface/issues/21 broken = versionAtLeast sphinx.version "7.2"; diff --git a/pkgs/development/python-modules/repoze-who/default.nix b/pkgs/development/python-modules/repoze-who/default.nix index 833a2241b1c7..a38c8523f0d5 100644 --- a/pkgs/development/python-modules/repoze-who/default.nix +++ b/pkgs/development/python-modules/repoze-who/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "repoze.who.plugins" ]; - meta = with lib; { + meta = { description = "WSGI Authentication Middleware / API"; homepage = "http://www.repoze.org"; changelog = "https://github.com/repoze/repoze.who/blob/${version}/CHANGES.rst"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/reprshed/default.nix b/pkgs/development/python-modules/reprshed/default.nix index fb05ed572625..cda1c09028c9 100644 --- a/pkgs/development/python-modules/reprshed/default.nix +++ b/pkgs/development/python-modules/reprshed/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "reprshed" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mentalisttraceur/python-reprshed"; description = "Toolshed for writing great __repr__ methods quickly and easily"; - license = licenses.bsd0; - maintainers = with maintainers; [ netali ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ netali ]; }; } diff --git a/pkgs/development/python-modules/reptor/default.nix b/pkgs/development/python-modules/reptor/default.nix index ba400831c462..0fb7579a662a 100644 --- a/pkgs/development/python-modules/reptor/default.nix +++ b/pkgs/development/python-modules/reptor/default.nix @@ -83,12 +83,12 @@ buildPythonPackage rec { "integration" ]; - meta = with lib; { + meta = { description = "Module to do automated pentest reporting with SysReptor"; homepage = "https://github.com/Syslifters/reptor"; changelog = "https://github.com/Syslifters/reptor/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "reptor"; }; } diff --git a/pkgs/development/python-modules/reqif/default.nix b/pkgs/development/python-modules/reqif/default.nix index 3e43d1f83763..b45c11de4898 100644 --- a/pkgs/development/python-modules/reqif/default.nix +++ b/pkgs/development/python-modules/reqif/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "reqif" ]; - meta = with lib; { + meta = { description = "Python library for ReqIF format"; mainProgram = "reqif"; homepage = "https://github.com/strictdoc-project/reqif"; changelog = "https://github.com/strictdoc-project/reqif/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/requests-aws4auth/default.nix b/pkgs/development/python-modules/requests-aws4auth/default.nix index 53726bc4423f..14fd8d4d4461 100644 --- a/pkgs/development/python-modules/requests-aws4auth/default.nix +++ b/pkgs/development/python-modules/requests-aws4auth/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_aws4auth" ]; - meta = with lib; { + meta = { description = "Amazon Web Services version 4 authentication for the Python Requests library"; homepage = "https://github.com/sam-washington/requests-aws4auth"; changelog = "https://github.com/tedder/requests-aws4auth/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ basvandijk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ basvandijk ]; }; } diff --git a/pkgs/development/python-modules/requests-cache/default.nix b/pkgs/development/python-modules/requests-cache/default.nix index e910e0a22201..634666ecd226 100644 --- a/pkgs/development/python-modules/requests-cache/default.nix +++ b/pkgs/development/python-modules/requests-cache/default.nix @@ -102,11 +102,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_cache" ]; - meta = with lib; { + meta = { description = "Persistent cache for requests library"; homepage = "https://github.com/reclosedev/requests-cache"; changelog = "https://github.com/requests-cache/requests-cache/blob/v${version}/HISTORY.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/requests-credssp/default.nix b/pkgs/development/python-modules/requests-credssp/default.nix index 1ef06e813c68..db41a422f995 100644 --- a/pkgs/development/python-modules/requests-credssp/default.nix +++ b/pkgs/development/python-modules/requests-credssp/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_credssp" ]; - meta = with lib; { + meta = { description = "HTTPS CredSSP authentication with the requests library"; homepage = "https://github.com/jborean93/requests-credssp"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/requests-file/default.nix b/pkgs/development/python-modules/requests-file/default.nix index ce95150ae8f4..b5b58eb26ccb 100644 --- a/pkgs/development/python-modules/requests-file/default.nix +++ b/pkgs/development/python-modules/requests-file/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_file" ]; - meta = with lib; { + meta = { description = "Transport adapter for fetching file:// URLs with the requests python library"; homepage = "https://github.com/dashea/requests-file"; changelog = "https://github.com/dashea/requests-file/blob/${version}/CHANGES.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/requests-futures/default.nix b/pkgs/development/python-modules/requests-futures/default.nix index 6e146fe753b9..51aaa87a8586 100644 --- a/pkgs/development/python-modules/requests-futures/default.nix +++ b/pkgs/development/python-modules/requests-futures/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_futures" ]; - meta = with lib; { + meta = { description = "Asynchronous Python HTTP Requests for Humans using Futures"; homepage = "https://github.com/ross/requests-futures"; changelog = "https://github.com/ross/requests-futures/blob/${src.tag}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ applePrincess ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ applePrincess ]; }; } diff --git a/pkgs/development/python-modules/requests-gssapi/default.nix b/pkgs/development/python-modules/requests-gssapi/default.nix index de1c0e5fd388..aea63d95e0de 100644 --- a/pkgs/development/python-modules/requests-gssapi/default.nix +++ b/pkgs/development/python-modules/requests-gssapi/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_gssapi" ]; - meta = with lib; { + meta = { description = "GSSAPI authentication handler for python-requests"; homepage = "https://github.com/pythongssapi/requests-gssapi"; changelog = "https://github.com/pythongssapi/requests-gssapi/blob/v${version}/HISTORY.rst"; - license = licenses.isc; - maintainers = with maintainers; [ javimerino ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ javimerino ]; }; } diff --git a/pkgs/development/python-modules/requests-hawk/default.nix b/pkgs/development/python-modules/requests-hawk/default.nix index 24370891b5dd..1c82b8f72da5 100644 --- a/pkgs/development/python-modules/requests-hawk/default.nix +++ b/pkgs/development/python-modules/requests-hawk/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { requests ]; - meta = with lib; { + meta = { description = "Hawk authentication strategy for the requests python library"; homepage = "https://github.com/mozilla-services/requests-hawk"; - license = licenses.asl20; - maintainers = with maintainers; [ austinbutler ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ austinbutler ]; }; } diff --git a/pkgs/development/python-modules/requests-http-signature/default.nix b/pkgs/development/python-modules/requests-http-signature/default.nix index 176d9233ae42..25c9bbc35e46 100644 --- a/pkgs/development/python-modules/requests-http-signature/default.nix +++ b/pkgs/development/python-modules/requests-http-signature/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_http_signature" ]; - meta = with lib; { + meta = { description = "Requests authentication module for HTTP Signature"; homepage = "https://github.com/kislyuk/requests-http-signature"; - license = licenses.asl20; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/requests-kerberos/default.nix b/pkgs/development/python-modules/requests-kerberos/default.nix index 04006a4684c6..25e43bfb4cbd 100644 --- a/pkgs/development/python-modules/requests-kerberos/default.nix +++ b/pkgs/development/python-modules/requests-kerberos/default.nix @@ -40,9 +40,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_kerberos" ]; - meta = with lib; { + meta = { description = "Authentication handler for using Kerberos with Python Requests"; homepage = "https://github.com/requests/requests-kerberos"; - license = licenses.isc; + license = lib.licenses.isc; }; } diff --git a/pkgs/development/python-modules/requests-mock/default.nix b/pkgs/development/python-modules/requests-mock/default.nix index d97df4e4b77b..0f159f2a2020 100644 --- a/pkgs/development/python-modules/requests-mock/default.nix +++ b/pkgs/development/python-modules/requests-mock/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { testtools ]; - meta = with lib; { + meta = { description = "Mock out responses from the requests package"; homepage = "https://requests-mock.readthedocs.io"; changelog = "https://github.com/jamielennox/requests-mock/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/requests-ntlm/default.nix b/pkgs/development/python-modules/requests-ntlm/default.nix index baa445aeb17c..cbc20a51826f 100644 --- a/pkgs/development/python-modules/requests-ntlm/default.nix +++ b/pkgs/development/python-modules/requests-ntlm/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { # Tests require networking doCheck = false; - meta = with lib; { + meta = { description = "HTTP NTLM authentication support for python-requests"; homepage = "https://github.com/requests/requests-ntlm"; changelog = "https://github.com/requests/requests-ntlm/releases/tag/v${version}"; - license = licenses.isc; - maintainers = with maintainers; [ elasticdog ]; - platforms = platforms.all; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ elasticdog ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/requests-oauthlib/default.nix b/pkgs/development/python-modules/requests-oauthlib/default.nix index 2cb1259f9315..4927ab67a108 100644 --- a/pkgs/development/python-modules/requests-oauthlib/default.nix +++ b/pkgs/development/python-modules/requests-oauthlib/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_oauthlib" ]; - meta = with lib; { + meta = { description = "OAuthlib authentication support for Requests"; homepage = "https://github.com/requests/requests-oauthlib"; - license = with licenses; [ isc ]; - maintainers = with maintainers; [ prikhi ]; + license = with lib.licenses; [ isc ]; + maintainers = with lib.maintainers; [ prikhi ]; }; } diff --git a/pkgs/development/python-modules/requests-pkcs12/default.nix b/pkgs/development/python-modules/requests-pkcs12/default.nix index e7a84d067fe9..198b9f3a51be 100644 --- a/pkgs/development/python-modules/requests-pkcs12/default.nix +++ b/pkgs/development/python-modules/requests-pkcs12/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_pkcs12" ]; - meta = with lib; { + meta = { description = "PKCS#12 support for the Python requests library"; homepage = "https://github.com/m-click/requests_pkcs12"; - license = with licenses; [ isc ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ isc ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/requests-ratelimiter/default.nix b/pkgs/development/python-modules/requests-ratelimiter/default.nix index 68b8da53b3d6..057bfd8ef46d 100644 --- a/pkgs/development/python-modules/requests-ratelimiter/default.nix +++ b/pkgs/development/python-modules/requests-ratelimiter/default.nix @@ -40,13 +40,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_ratelimiter" ]; - meta = with lib; { + meta = { # https://github.com/JWCook/requests-ratelimiter/issues/78 broken = lib.versionAtLeast pyrate-limiter.version "3"; description = "Module for rate-limiting for requests"; homepage = "https://github.com/JWCook/requests-ratelimiter"; changelog = "https://github.com/JWCook/requests-ratelimiter/blob/${src.rev}/HISTORY.md"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/requests-toolbelt/default.nix b/pkgs/development/python-modules/requests-toolbelt/default.nix index ae687d9645f8..f9e79d5955c3 100644 --- a/pkgs/development/python-modules/requests-toolbelt/default.nix +++ b/pkgs/development/python-modules/requests-toolbelt/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_toolbelt" ]; - meta = with lib; { + meta = { description = "Toolbelt of useful classes and functions to be used with requests"; homepage = "http://toolbelt.rtfd.org"; changelog = "https://github.com/requests/toolbelt/blob/${version}/HISTORY.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/requests-unixsocket/default.nix b/pkgs/development/python-modules/requests-unixsocket/default.nix index 4c935c62372d..e08b56179416 100644 --- a/pkgs/development/python-modules/requests-unixsocket/default.nix +++ b/pkgs/development/python-modules/requests-unixsocket/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_unixsocket" ]; - meta = with lib; { + meta = { description = "Use requests to talk HTTP via a UNIX domain socket"; homepage = "https://github.com/msabramo/requests-unixsocket"; changelog = "https://github.com/msabramo/requests-unixsocket/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/requests-wsgi-adapter/default.nix b/pkgs/development/python-modules/requests-wsgi-adapter/default.nix index 8cdec28f2abb..4996883f4e0c 100644 --- a/pkgs/development/python-modules/requests-wsgi-adapter/default.nix +++ b/pkgs/development/python-modules/requests-wsgi-adapter/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # tests are not contained in pypi-release doCheck = false; - meta = with lib; { + meta = { description = "WSGI Transport Adapter for Requests"; homepage = "https://github.com/seanbrant/requests-wsgi-adapter"; - license = licenses.bsd3; - maintainers = with maintainers; [ betaboon ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ betaboon ]; }; } diff --git a/pkgs/development/python-modules/requests/default.nix b/pkgs/development/python-modules/requests/default.nix index f2ec75477a1d..c669a2591d7f 100644 --- a/pkgs/development/python-modules/requests/default.nix +++ b/pkgs/development/python-modules/requests/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests" ]; - meta = with lib; { + meta = { description = "HTTP library for Python"; homepage = "http://docs.python-requests.org/"; changelog = "https://github.com/psf/requests/blob/v${version}/HISTORY.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/requestsexceptions/default.nix b/pkgs/development/python-modules/requestsexceptions/default.nix index d54569319127..4a1fbfb6a06f 100644 --- a/pkgs/development/python-modules/requestsexceptions/default.nix +++ b/pkgs/development/python-modules/requestsexceptions/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { sed -i '/^hacking/d' test-requirements.txt ''; - meta = with lib; { + meta = { description = "Import exceptions from potentially bundled packages in requests"; homepage = "https://pypi.python.org/pypi/requestsexceptions"; - license = licenses.asl20; - maintainers = with maintainers; [ makefu ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ makefu ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/requirements-detector/default.nix b/pkgs/development/python-modules/requirements-detector/default.nix index 5fced4a51b12..b9154cc1f299 100644 --- a/pkgs/development/python-modules/requirements-detector/default.nix +++ b/pkgs/development/python-modules/requirements-detector/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "requirements_detector" ]; - meta = with lib; { + meta = { description = "Python tool to find and list requirements of a Python project"; homepage = "https://github.com/landscapeio/requirements-detector"; changelog = "https://github.com/landscapeio/requirements-detector/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; mainProgram = "detect-requirements"; }; } diff --git a/pkgs/development/python-modules/requirements-parser/default.nix b/pkgs/development/python-modules/requirements-parser/default.nix index 6586c83cbae7..5e599b2fcb02 100644 --- a/pkgs/development/python-modules/requirements-parser/default.nix +++ b/pkgs/development/python-modules/requirements-parser/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "requirements" ]; - meta = with lib; { + meta = { description = "Pip requirements file parser"; homepage = "https://github.com/davidfischer/requirements-parser"; changelog = "https://github.com/madpah/requirements-parser/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/reretry/default.nix b/pkgs/development/python-modules/reretry/default.nix index 240a37a611ec..48e142790ab8 100644 --- a/pkgs/development/python-modules/reretry/default.nix +++ b/pkgs/development/python-modules/reretry/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { hash = "sha256-8nkfzr5RLqLx0VOih0d4UjqAZIYLWRzZCvwhqL7UMuM="; }; - meta = with lib; { + meta = { description = "Easy to use retry decorator"; homepage = "https://github.com/leshchenko1979/reretry"; - license = licenses.asl20; - maintainers = with maintainers; [ renatoGarcia ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ renatoGarcia ]; }; } diff --git a/pkgs/development/python-modules/resampy/default.nix b/pkgs/development/python-modules/resampy/default.nix index 68a7af9b6813..a4a23fb973fe 100644 --- a/pkgs/development/python-modules/resampy/default.nix +++ b/pkgs/development/python-modules/resampy/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "resampy" ]; - meta = with lib; { + meta = { description = "Efficient signal resampling"; homepage = "https://github.com/bmcfee/resampy"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/resend/default.nix b/pkgs/development/python-modules/resend/default.nix index d62e05e93b86..115276a42e8d 100644 --- a/pkgs/development/python-modules/resend/default.nix +++ b/pkgs/development/python-modules/resend/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "resend" ]; - meta = with lib; { + meta = { description = "SDK for Resend"; homepage = "https://github.com/resend/resend-python"; changelog = "https://github.com/resend/resend-python/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/resize-right/default.nix b/pkgs/development/python-modules/resize-right/default.nix index 5c6498425189..0e1a71b906e0 100644 --- a/pkgs/development/python-modules/resize-right/default.nix +++ b/pkgs/development/python-modules/resize-right/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Correct way to resize images or tensors. For Numpy or Pytorch (differentiable"; homepage = "https://github.com/assafshocher/ResizeRight"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/resolvelib/default.nix b/pkgs/development/python-modules/resolvelib/default.nix index 9dc507922700..232bc2223c7e 100644 --- a/pkgs/development/python-modules/resolvelib/default.nix +++ b/pkgs/development/python-modules/resolvelib/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "resolvelib" ]; - meta = with lib; { + meta = { description = "Resolve abstract dependencies into concrete ones"; homepage = "https://github.com/sarugaku/resolvelib"; changelog = "https://github.com/sarugaku/resolvelib/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/responses/default.nix b/pkgs/development/python-modules/responses/default.nix index 704da532a583..38d7e8f09e0b 100644 --- a/pkgs/development/python-modules/responses/default.nix +++ b/pkgs/development/python-modules/responses/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "responses" ]; - meta = with lib; { + meta = { description = "Python module for mocking out the requests Python library"; homepage = "https://github.com/getsentry/responses"; changelog = "https://github.com/getsentry/responses/blob/${src.tag}/CHANGES"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/respx/default.nix b/pkgs/development/python-modules/respx/default.nix index 866edec08888..e9744775ae74 100644 --- a/pkgs/development/python-modules/respx/default.nix +++ b/pkgs/development/python-modules/respx/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "respx" ]; - meta = with lib; { + meta = { description = "Python library for mocking HTTPX"; homepage = "https://lundberg.github.io/respx/"; changelog = "https://github.com/lundberg/respx/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/restfly/default.nix b/pkgs/development/python-modules/restfly/default.nix index 2012b87fe312..74129c31a3ed 100644 --- a/pkgs/development/python-modules/restfly/default.nix +++ b/pkgs/development/python-modules/restfly/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "restfly" ]; - meta = with lib; { + meta = { description = "Python RESTfly API Library Framework"; homepage = "https://github.com/stevemcgrath/restfly"; changelog = "https://github.com/librestfly/restfly/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/restview/default.nix b/pkgs/development/python-modules/restview/default.nix index 40fda528f261..cbdb77cf6d96 100644 --- a/pkgs/development/python-modules/restview/default.nix +++ b/pkgs/development/python-modules/restview/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { "rest_to_html" ]; - meta = with lib; { + meta = { description = "ReStructuredText viewer"; homepage = "https://mg.pov.lt/restview/"; changelog = "https://github.com/mgedmin/restview/blob/${version}/CHANGES.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ koral ]; mainProgram = "restview"; }; } diff --git a/pkgs/development/python-modules/result/default.nix b/pkgs/development/python-modules/result/default.nix index f94b776f3dcd..a1061716f826 100644 --- a/pkgs/development/python-modules/result/default.nix +++ b/pkgs/development/python-modules/result/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "result" ]; - meta = with lib; { + meta = { description = "Rust-like result type for Python"; homepage = "https://github.com/rustedpy/result"; changelog = "https://github.com/rustedpy/result/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ emattiza ]; }; } diff --git a/pkgs/development/python-modules/rethinkdb/default.nix b/pkgs/development/python-modules/rethinkdb/default.nix index 2a3f6c1db08a..dc8b004eedd3 100644 --- a/pkgs/development/python-modules/rethinkdb/default.nix +++ b/pkgs/development/python-modules/rethinkdb/default.nix @@ -28,9 +28,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "rethinkdb" ]; - meta = with lib; { + meta = { description = "Python driver library for the RethinkDB database server"; homepage = "https://github.com/RethinkDB/rethinkdb-python"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/retry-decorator/default.nix b/pkgs/development/python-modules/retry-decorator/default.nix index 975e878ee45a..e1eca2baa6e6 100644 --- a/pkgs/development/python-modules/retry-decorator/default.nix +++ b/pkgs/development/python-modules/retry-decorator/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "retry_decorator" ]; - meta = with lib; { + meta = { description = "Decorator for retrying when exceptions occur"; homepage = "https://github.com/pnpnpn/retry-decorator"; changelog = "https://github.com/pnpnpn/retry-decorator/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; }; } diff --git a/pkgs/development/python-modules/retry/default.nix b/pkgs/development/python-modules/retry/default.nix index c4df5b909e44..3d80319ff604 100644 --- a/pkgs/development/python-modules/retry/default.nix +++ b/pkgs/development/python-modules/retry/default.nix @@ -35,9 +35,9 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "Easy to use retry decorator"; homepage = "https://github.com/invl/retry"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/retrying/default.nix b/pkgs/development/python-modules/retrying/default.nix index 6339e060e364..82faade9efb4 100644 --- a/pkgs/development/python-modules/retrying/default.nix +++ b/pkgs/development/python-modules/retrying/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "retrying" ]; - meta = with lib; { + meta = { description = "General-purpose retrying library"; homepage = "https://github.com/rholder/retrying"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/returns/default.nix b/pkgs/development/python-modules/returns/default.nix index 74b36df70095..86dc74ed479d 100644 --- a/pkgs/development/python-modules/returns/default.nix +++ b/pkgs/development/python-modules/returns/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { disabledTestPaths = [ "typesafety" ]; - meta = with lib; { + meta = { description = "Make your functions return something meaningful, typed, and safe"; homepage = "https://github.com/dry-python/returns"; changelog = "https://github.com/dry-python/returns/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ jessemoore ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jessemoore ]; }; } diff --git a/pkgs/development/python-modules/reuse/default.nix b/pkgs/development/python-modules/reuse/default.nix index 88457b0cd273..fc6867ac8cdb 100644 --- a/pkgs/development/python-modules/reuse/default.nix +++ b/pkgs/development/python-modules/reuse/default.nix @@ -82,17 +82,17 @@ buildPythonPackage rec { pythonImportsCheck = [ "reuse" ]; - meta = with lib; { + meta = { description = "Tool for compliance with the REUSE Initiative recommendations"; homepage = "https://github.com/fsfe/reuse-tool"; changelog = "https://github.com/fsfe/reuse-tool/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 cc-by-sa-40 cc0 gpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ FlorianFranzen Luflosi ]; diff --git a/pkgs/development/python-modules/rfc3339-validator/default.nix b/pkgs/development/python-modules/rfc3339-validator/default.nix index d4f70dac0763..27da24deb82d 100644 --- a/pkgs/development/python-modules/rfc3339-validator/default.nix +++ b/pkgs/development/python-modules/rfc3339-validator/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "rfc3339_validator" ]; - meta = with lib; { + meta = { description = "RFC 3339 validator for Python"; homepage = "https://github.com/naimetti/rfc3339-validator"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rfc3339/default.nix b/pkgs/development/python-modules/rfc3339/default.nix index f95888578ac5..19250ac307f4 100644 --- a/pkgs/development/python-modules/rfc3339/default.nix +++ b/pkgs/development/python-modules/rfc3339/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rfc3339" ]; - meta = with lib; { + meta = { description = "Format dates according to the RFC 3339"; homepage = "https://hg.sr.ht/~henryprecheur/rfc3339"; - license = licenses.isc; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rfc3986-validator/default.nix b/pkgs/development/python-modules/rfc3986-validator/default.nix index bceb67a22594..6d02c73139c3 100644 --- a/pkgs/development/python-modules/rfc3986-validator/default.nix +++ b/pkgs/development/python-modules/rfc3986-validator/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { rfc3987 ]; - meta = with lib; { + meta = { description = "Pure python rfc3986 validator"; homepage = "https://github.com/naimetti/rfc3986-validator"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rfc3986/default.nix b/pkgs/development/python-modules/rfc3986/default.nix index 863d4562056d..38ae30780889 100644 --- a/pkgs/development/python-modules/rfc3986/default.nix +++ b/pkgs/development/python-modules/rfc3986/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rfc3986" ]; - meta = with lib; { + meta = { description = "Validating URI References per RFC 3986"; homepage = "https://rfc3986.readthedocs.org"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rfc3987/default.nix b/pkgs/development/python-modules/rfc3987/default.nix index 25c77a68e95e..fe50586b3bcc 100644 --- a/pkgs/development/python-modules/rfc3987/default.nix +++ b/pkgs/development/python-modules/rfc3987/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { }; doCheck = false; - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/rfc3987"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; description = "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)"; - maintainers = with maintainers; [ vanschelven ]; + maintainers = with lib.maintainers; [ vanschelven ]; }; } diff --git a/pkgs/development/python-modules/rfc6555/default.nix b/pkgs/development/python-modules/rfc6555/default.nix index 01ee32e3bdec..648147e16ca0 100644 --- a/pkgs/development/python-modules/rfc6555/default.nix +++ b/pkgs/development/python-modules/rfc6555/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rfc6555" ]; - meta = with lib; { + meta = { description = "Python implementation of the Happy Eyeballs Algorithm"; homepage = "https://github.com/sethmlarson/rfc6555"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rfc7464/default.nix b/pkgs/development/python-modules/rfc7464/default.nix index 69b02dd0847d..b14108fa1064 100644 --- a/pkgs/development/python-modules/rfc7464/default.nix +++ b/pkgs/development/python-modules/rfc7464/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { extension = "zip"; }; - meta = with lib; { + meta = { homepage = "https://github.com/moshez/rfc7464"; description = "RFC 7464 is a proposed standard for streaming JSON documents"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ shlevy ]; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ shlevy ]; }; } diff --git a/pkgs/development/python-modules/rfc8785/default.nix b/pkgs/development/python-modules/rfc8785/default.nix index 44e6e4176cee..2742adcf9f5b 100644 --- a/pkgs/development/python-modules/rfc8785/default.nix +++ b/pkgs/development/python-modules/rfc8785/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rfc8785" ]; - meta = with lib; { + meta = { description = "Module for RFC8785 (JSON Canonicalization Scheme)"; homepage = "https://github.com/trailofbits/rfc8785.py"; changelog = "https://github.com/trailofbits/rfc8785.py/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rfcat/default.nix b/pkgs/development/python-modules/rfcat/default.nix index 28c748458870..6e7d7c310408 100644 --- a/pkgs/development/python-modules/rfcat/default.nix +++ b/pkgs/development/python-modules/rfcat/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rflib" ]; - meta = with lib; { + meta = { description = "Swiss Army knife of sub-GHz ISM band radio"; homepage = "https://github.com/atlas0fd00m/rfcat"; - license = licenses.bsd3; - maintainers = with maintainers; [ trepetti ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ trepetti ]; changelog = "https://github.com/atlas0fd00m/rfcat/releases/tag/v${version}"; }; } diff --git a/pkgs/development/python-modules/rflink/default.nix b/pkgs/development/python-modules/rflink/default.nix index e26985722b96..3f2f3af9ebda 100644 --- a/pkgs/development/python-modules/rflink/default.nix +++ b/pkgs/development/python-modules/rflink/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rflink.protocol" ]; - meta = with lib; { + meta = { description = "Library and CLI tools for interacting with RFlink 433MHz transceiver"; homepage = "https://github.com/aequitas/python-rflink"; changelog = "https://github.com/aequitas/python-rflink/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/rich-argparse-plus/default.nix b/pkgs/development/python-modules/rich-argparse-plus/default.nix index 159190d45e1d..81ab5fcf8b97 100644 --- a/pkgs/development/python-modules/rich-argparse-plus/default.nix +++ b/pkgs/development/python-modules/rich-argparse-plus/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { "test_default_highlights" ]; - meta = with lib; { + meta = { description = "Library to help formatting argparse"; homepage = "https://github.com/michelcrypt4d4mus/rich-argparse-plus"; changelog = "https://github.com/michelcrypt4d4mus/rich-argparse-plus/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rich-argparse/default.nix b/pkgs/development/python-modules/rich-argparse/default.nix index d873310b7647..dc12ad76d81a 100644 --- a/pkgs/development/python-modules/rich-argparse/default.nix +++ b/pkgs/development/python-modules/rich-argparse/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rich_argparse" ]; - meta = with lib; { + meta = { description = "Format argparse help output using rich"; homepage = "https://github.com/hamdanal/rich-argparse"; changelog = "https://github.com/hamdanal/rich-argparse/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ graham33 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ graham33 ]; }; } diff --git a/pkgs/development/python-modules/rich-click/default.nix b/pkgs/development/python-modules/rich-click/default.nix index 132277be5992..cd5449f9fa24 100644 --- a/pkgs/development/python-modules/rich-click/default.nix +++ b/pkgs/development/python-modules/rich-click/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "rich_click" ]; - meta = with lib; { + meta = { description = "Module to format click help output nicely with rich"; homepage = "https://github.com/ewels/rich-click"; changelog = "https://github.com/ewels/rich-click/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "rich-click"; }; } diff --git a/pkgs/development/python-modules/rich-pixels/default.nix b/pkgs/development/python-modules/rich-pixels/default.nix index 35f9b8ab7960..fa938f27f663 100644 --- a/pkgs/development/python-modules/rich-pixels/default.nix +++ b/pkgs/development/python-modules/rich-pixels/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rich_pixels" ]; - meta = with lib; { + meta = { description = "Rich-compatible library for writing pixel images and ASCII art to the terminal"; homepage = "https://github.com/darrenburns/rich-pixels"; changelog = "https://github.com/darrenburns/rich-pixels/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rich-rst/default.nix b/pkgs/development/python-modules/rich-rst/default.nix index 7291c6f7d82e..cb2d5b44f9e1 100644 --- a/pkgs/development/python-modules/rich-rst/default.nix +++ b/pkgs/development/python-modules/rich-rst/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rich_rst" ]; - meta = with lib; { + meta = { description = "Beautiful reStructuredText renderer for rich"; homepage = "https://github.com/wasi-master/rich-rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rich/default.nix b/pkgs/development/python-modules/rich/default.nix index fda066f3b813..15ed639a7cfa 100644 --- a/pkgs/development/python-modules/rich/default.nix +++ b/pkgs/development/python-modules/rich/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"; homepage = "https://github.com/Textualize/rich"; changelog = "https://github.com/Textualize/rich/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ ris ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/riden/default.nix b/pkgs/development/python-modules/riden/default.nix index 1574494ba830..4c9a1cb90fab 100644 --- a/pkgs/development/python-modules/riden/default.nix +++ b/pkgs/development/python-modules/riden/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "riden" ]; - meta = with lib; { + meta = { description = "Module for Riden RD power supplies"; homepage = "https://github.com/geeksville/riden"; changelog = "https://github.com/geeksville/Riden/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ring-doorbell/default.nix b/pkgs/development/python-modules/ring-doorbell/default.nix index 67d8e7622519..6f6895e10506 100644 --- a/pkgs/development/python-modules/ring-doorbell/default.nix +++ b/pkgs/development/python-modules/ring-doorbell/default.nix @@ -72,12 +72,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ring_doorbell" ]; - meta = with lib; { + meta = { description = "Library to communicate with Ring Door Bell"; homepage = "https://github.com/tchellomello/python-ring-doorbell"; changelog = "https://github.com/tchellomello/python-ring-doorbell/blob/${version}/CHANGELOG.md"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ graham33 ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ graham33 ]; mainProgram = "ring-doorbell"; }; } diff --git a/pkgs/development/python-modules/rio-tiler/default.nix b/pkgs/development/python-modules/rio-tiler/default.nix index 1be8c56cf9ac..31877bd3012a 100644 --- a/pkgs/development/python-modules/rio-tiler/default.nix +++ b/pkgs/development/python-modules/rio-tiler/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rio_tiler" ]; - meta = with lib; { + meta = { description = "User friendly Rasterio plugin to read raster datasets"; homepage = "https://cogeotiff.github.io/rio-tiler/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; teams = [ lib.teams.geospatial ]; # Tests broken with gdal 3.10 # https://github.com/cogeotiff/rio-tiler/issues/769 diff --git a/pkgs/development/python-modules/ripe-atlas-cousteau/default.nix b/pkgs/development/python-modules/ripe-atlas-cousteau/default.nix index ff8a9acd45d4..a66435cc1036 100644 --- a/pkgs/development/python-modules/ripe-atlas-cousteau/default.nix +++ b/pkgs/development/python-modules/ripe-atlas-cousteau/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ripe.atlas.cousteau" ]; - meta = with lib; { + meta = { description = "Python client library for RIPE ATLAS API"; homepage = "https://github.com/RIPE-NCC/ripe-atlas-cousteau"; changelog = "https://github.com/RIPE-NCC/ripe-atlas-cousteau/blob/v${version}/CHANGES.rst"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/ripe-atlas-sagan/default.nix b/pkgs/development/python-modules/ripe-atlas-sagan/default.nix index 874878308f11..99bf5199a707 100644 --- a/pkgs/development/python-modules/ripe-atlas-sagan/default.nix +++ b/pkgs/development/python-modules/ripe-atlas-sagan/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ripe.atlas.sagan" ]; - meta = with lib; { + meta = { description = "Parsing library for RIPE Atlas measurements results"; homepage = "https://github.com/RIPE-NCC/ripe-atlas-sagan"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/riprova/default.nix b/pkgs/development/python-modules/riprova/default.nix index 737f941f8dbb..7014f95b0595 100644 --- a/pkgs/development/python-modules/riprova/default.nix +++ b/pkgs/development/python-modules/riprova/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "riprova" ]; - meta = with lib; { + meta = { homepage = "https://github.com/h2non/riprova"; description = "Small and versatile library to retry failed operations using different backoff strategies"; - license = licenses.mit; - maintainers = with maintainers; [ mmilata ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mmilata ]; }; } diff --git a/pkgs/development/python-modules/riscof/default.nix b/pkgs/development/python-modules/riscof/default.nix index c62052424d50..0077a235e0cc 100644 --- a/pkgs/development/python-modules/riscof/default.nix +++ b/pkgs/development/python-modules/riscof/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { # No unitests available doCheck = false; - meta = with lib; { + meta = { description = "RISC-V Architectural Test Framework"; mainProgram = "riscof"; homepage = "https://github.com/riscv-software-src/riscof"; changelog = "https://github.com/riscv-software-src/riscof/blob/${version}/CHANGELOG.md"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/riscv-config/default.nix b/pkgs/development/python-modules/riscv-config/default.nix index d3c134b4f45c..d84367e0aa0b 100644 --- a/pkgs/development/python-modules/riscv-config/default.nix +++ b/pkgs/development/python-modules/riscv-config/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "riscv_config" ]; - meta = with lib; { + meta = { description = "RISC-V configuration validator"; homepage = "https://github.com/riscv/riscv-config"; changelog = "https://github.com/riscv-software-src/riscv-config/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ genericnerdyusername ]; mainProgram = "riscv-config"; }; } diff --git a/pkgs/development/python-modules/riscv-isac/default.nix b/pkgs/development/python-modules/riscv-isac/default.nix index dc731438b54a..178ae28c4cd0 100644 --- a/pkgs/development/python-modules/riscv-isac/default.nix +++ b/pkgs/development/python-modules/riscv-isac/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "riscv_isac" ]; - meta = with lib; { + meta = { description = "ISA coverage extraction tool"; mainProgram = "riscv_isac"; homepage = "https://github.com/riscv/riscv-isac"; changelog = "https://github.com/riscv-software-src/riscv-isac/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ genericnerdyusername ]; }; } diff --git a/pkgs/development/python-modules/ritassist/default.nix b/pkgs/development/python-modules/ritassist/default.nix index 8a3691b307c4..9d9d142d8cbd 100644 --- a/pkgs/development/python-modules/ritassist/default.nix +++ b/pkgs/development/python-modules/ritassist/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ritassist" ]; - meta = with lib; { + meta = { description = "Python client to access RitAssist and FleetGO API"; homepage = "https://github.com/depl0y/ritassist-py"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rjpl/default.nix b/pkgs/development/python-modules/rjpl/default.nix index 439d207aa58d..fa64e12dc3ac 100644 --- a/pkgs/development/python-modules/rjpl/default.nix +++ b/pkgs/development/python-modules/rjpl/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rjpl" ]; - meta = with lib; { + meta = { description = "Library for interacting with the Rejseplanen API"; homepage = "https://github.com/tomatpasser/python-rejseplanen"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rjsmin/default.nix b/pkgs/development/python-modules/rjsmin/default.nix index 1395bb481aae..8b077892cf3a 100644 --- a/pkgs/development/python-modules/rjsmin/default.nix +++ b/pkgs/development/python-modules/rjsmin/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rjsmin" ]; - meta = with lib; { + meta = { description = "Module to minify Javascript"; homepage = "http://opensource.perlig.de/rjsmin/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rkm-codes/default.nix b/pkgs/development/python-modules/rkm-codes/default.nix index c4e96a449cb0..4426d2eb261b 100644 --- a/pkgs/development/python-modules/rkm-codes/default.nix +++ b/pkgs/development/python-modules/rkm-codes/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { # tests require quantiphy import doCheck = false; - meta = with lib; { + meta = { description = "QuantiPhy support for RKM codes"; homepage = "https://github.com/kenkundert/rkm_codes/"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/rlcard/default.nix b/pkgs/development/python-modules/rlcard/default.nix index 860f66d40e05..47808048dd5b 100644 --- a/pkgs/development/python-modules/rlcard/default.nix +++ b/pkgs/development/python-modules/rlcard/default.nix @@ -84,11 +84,11 @@ buildPythonPackage rec { "test_reorganize" ]; - meta = with lib; { + meta = { description = "Reinforcement Learning / AI Bots in Card (Poker) Games - Blackjack, Leduc, Texas, DouDizhu, Mahjong, UNO"; homepage = "https://github.com/datamllab/rlcard"; changelog = "https://github.com/datamllab/rlcard/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/rlp/default.nix b/pkgs/development/python-modules/rlp/default.nix index 7f1dd65edf4a..d26675bad741 100644 --- a/pkgs/development/python-modules/rlp/default.nix +++ b/pkgs/development/python-modules/rlp/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { disabledTests = [ "test_install_local_wheel" ]; - meta = with lib; { + meta = { description = "RLP serialization library"; homepage = "https://github.com/ethereum/pyrlp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rmsd/default.nix b/pkgs/development/python-modules/rmsd/default.nix index 6a3664440a78..969db3fb3f6b 100644 --- a/pkgs/development/python-modules/rmsd/default.nix +++ b/pkgs/development/python-modules/rmsd/default.nix @@ -29,13 +29,13 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Calculate root-mean-square deviation (RMSD) between two sets of cartesian coordinates"; mainProgram = "calculate_rmsd"; homepage = "https://github.com/charnley/rmsd"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sheepforce markuskowa ]; diff --git a/pkgs/development/python-modules/rnc2rng/default.nix b/pkgs/development/python-modules/rnc2rng/default.nix index 7b691f638b44..f90a6a41b3dc 100644 --- a/pkgs/development/python-modules/rnc2rng/default.nix +++ b/pkgs/development/python-modules/rnc2rng/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { checkPhase = "${python.interpreter} test.py"; - meta = with lib; { + meta = { homepage = "https://github.com/djc/rnc2rng"; description = "Compact to regular syntax conversion library for RELAX NG schemata"; mainProgram = "rnc2rng"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/rnginline/default.nix b/pkgs/development/python-modules/rnginline/default.nix index 9c64e23fd0a9..2903291088b6 100644 --- a/pkgs/development/python-modules/rnginline/default.nix +++ b/pkgs/development/python-modules/rnginline/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rnginline" ]; - meta = with lib; { + meta = { description = "Python library and command-line tool for loading multi-file RELAX NG schemas from arbitary URLs, and flattening them into a single RELAX NG schema"; homepage = "https://github.com/h4l/rnginline"; changelog = "https://github.com/h4l/rnginline/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ lesuisse ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lesuisse ]; }; } diff --git a/pkgs/development/python-modules/roadlib/default.nix b/pkgs/development/python-modules/roadlib/default.nix index 54df2c7b400e..9b109e8a1f0a 100644 --- a/pkgs/development/python-modules/roadlib/default.nix +++ b/pkgs/development/python-modules/roadlib/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "roadtools.roadlib" ]; - meta = with lib; { + meta = { description = "ROADtools common components library"; homepage = "https://pypi.org/project/roadlib/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/roadrecon/default.nix b/pkgs/development/python-modules/roadrecon/default.nix index 25b528559fac..4bbbf63be2ed 100644 --- a/pkgs/development/python-modules/roadrecon/default.nix +++ b/pkgs/development/python-modules/roadrecon/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "roadtools.roadrecon" ]; - meta = with lib; { + meta = { description = "Azure AD recon"; homepage = "https://pypi.org/project/roadrecon/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/roadtools/default.nix b/pkgs/development/python-modules/roadtools/default.nix index 23ac7be0e0a1..f513548f094d 100644 --- a/pkgs/development/python-modules/roadtools/default.nix +++ b/pkgs/development/python-modules/roadtools/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "roadtools" ]; - meta = with lib; { + meta = { description = "Azure AD tooling framework"; homepage = "https://github.com/dirkjanm/ROADtools"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/roadtx/default.nix b/pkgs/development/python-modules/roadtx/default.nix index bdd0c68c8b17..08dd8ef09f2a 100644 --- a/pkgs/development/python-modules/roadtx/default.nix +++ b/pkgs/development/python-modules/roadtx/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "roadtools.roadtx" ]; - meta = with lib; { + meta = { description = "ROADtools Token eXchange"; homepage = "https://pypi.org/project/roadtx/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/robomachine/default.nix b/pkgs/development/python-modules/robomachine/default.nix index 00f5bce3267d..4132f04d4d68 100644 --- a/pkgs/development/python-modules/robomachine/default.nix +++ b/pkgs/development/python-modules/robomachine/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "robomachine" ]; - meta = with lib; { + meta = { description = "Test data generator for Robot Framework"; homepage = "https://github.com/mkorpela/RoboMachine"; - license = licenses.asl20; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/robot-detection/default.nix b/pkgs/development/python-modules/robot-detection/default.nix index 0e582aa3867b..b343afa58f6e 100644 --- a/pkgs/development/python-modules/robot-detection/default.nix +++ b/pkgs/development/python-modules/robot-detection/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { # no tests in archive doCheck = false; - meta = with lib; { + meta = { description = "Library for detecting if a HTTP User Agent header is likely to be a bot"; homepage = "https://github.com/rory/robot-detection"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/robotframework-databaselibrary/default.nix b/pkgs/development/python-modules/robotframework-databaselibrary/default.nix index 109fc786e775..726b48bcdae0 100644 --- a/pkgs/development/python-modules/robotframework-databaselibrary/default.nix +++ b/pkgs/development/python-modules/robotframework-databaselibrary/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Database Library contains utilities meant for Robot Framework"; homepage = "https://github.com/MarketSquare/Robotframework-Database-Library"; - license = licenses.asl20; - maintainers = with maintainers; [ talkara ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ talkara ]; }; } diff --git a/pkgs/development/python-modules/robotframework-requests/default.nix b/pkgs/development/python-modules/robotframework-requests/default.nix index 7cb634b02c1e..20223ae3d3cd 100644 --- a/pkgs/development/python-modules/robotframework-requests/default.nix +++ b/pkgs/development/python-modules/robotframework-requests/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { enabledTestPaths = [ "utests" ]; - meta = with lib; { + meta = { description = "Robot Framework keyword library wrapper around the HTTP client library requests"; homepage = "https://github.com/bulkan/robotframework-requests"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/robotframework-selenium2library/default.nix b/pkgs/development/python-modules/robotframework-selenium2library/default.nix index c9567e83f16e..5e3cae9270b5 100644 --- a/pkgs/development/python-modules/robotframework-selenium2library/default.nix +++ b/pkgs/development/python-modules/robotframework-selenium2library/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ robotframework-seleniumlibrary ]; - meta = with lib; { + meta = { description = "Web testing library for Robot Framework"; homepage = "https://github.com/robotframework/Selenium2Library"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/robotframework-sshlibrary/default.nix b/pkgs/development/python-modules/robotframework-sshlibrary/default.nix index c8717a2ed2ac..a9d1afb9dd15 100644 --- a/pkgs/development/python-modules/robotframework-sshlibrary/default.nix +++ b/pkgs/development/python-modules/robotframework-sshlibrary/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { scp ]; - meta = with lib; { + meta = { description = "SSHLibrary is a Robot Framework test library for SSH and SFTP"; homepage = "https://github.com/robotframework/SSHLibrary"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/robotframework-tools/default.nix b/pkgs/development/python-modules/robotframework-tools/default.nix index 8a0ba517280d..8bd613595a24 100644 --- a/pkgs/development/python-modules/robotframework-tools/default.nix +++ b/pkgs/development/python-modules/robotframework-tools/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { enabledTestPaths = [ "test" ]; pythonImportsCheck = [ "robottools" ]; - meta = with lib; { + meta = { description = "Python Tools for Robot Framework and Test Libraries"; homepage = "https://github.com/userzimmermann/robotframework-tools"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/robotstatuschecker/default.nix b/pkgs/development/python-modules/robotstatuschecker/default.nix index 3fed106b865f..9edc0a332f8c 100644 --- a/pkgs/development/python-modules/robotstatuschecker/default.nix +++ b/pkgs/development/python-modules/robotstatuschecker/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Tool for checking that Robot Framework test cases have expected statuses and log messages"; homepage = "https://github.com/robotframework/statuschecker"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/robotsuite/default.nix b/pkgs/development/python-modules/robotsuite/default.nix index dc19ae15154e..110e20d69db5 100644 --- a/pkgs/development/python-modules/robotsuite/default.nix +++ b/pkgs/development/python-modules/robotsuite/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python unittest test suite for Robot Framework"; homepage = "https://github.com/collective/robotsuite/"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/development/python-modules/roku/default.nix b/pkgs/development/python-modules/roku/default.nix index 5041ec57ab1a..5baae3a107e8 100644 --- a/pkgs/development/python-modules/roku/default.nix +++ b/pkgs/development/python-modules/roku/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "roku" ]; - meta = with lib; { + meta = { description = "Screw remotes. Control your Roku with Python"; homepage = "https://github.com/jcarbaugh/python-roku"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/rokuecp/default.nix b/pkgs/development/python-modules/rokuecp/default.nix index 71b341b4d10d..95d22e91c562 100644 --- a/pkgs/development/python-modules/rokuecp/default.nix +++ b/pkgs/development/python-modules/rokuecp/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rokuecp" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for Roku (ECP)"; homepage = "https://github.com/ctalkington/python-rokuecp"; changelog = "https://github.com/ctalkington/python-rokuecp/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rollbar/default.nix b/pkgs/development/python-modules/rollbar/default.nix index 57ab4d80b4de..5cb89c26fcdf 100644 --- a/pkgs/development/python-modules/rollbar/default.nix +++ b/pkgs/development/python-modules/rollbar/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rollbar" ]; - meta = with lib; { + meta = { description = "Error tracking and logging from Python to Rollbar"; mainProgram = "rollbar"; homepage = "https://github.com/rollbar/pyrollbar"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/roman/default.nix b/pkgs/development/python-modules/roman/default.nix index 83ab749a7889..074b2108094e 100644 --- a/pkgs/development/python-modules/roman/default.nix +++ b/pkgs/development/python-modules/roman/default.nix @@ -15,9 +15,9 @@ buildPythonPackage rec { sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae"; }; - meta = with lib; { + meta = { description = "Integer to Roman numerals converter"; homepage = "https://pypi.python.org/pypi/roman"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python-modules/romy/default.nix b/pkgs/development/python-modules/romy/default.nix index c5f44188ce17..c09b537da86a 100644 --- a/pkgs/development/python-modules/romy/default.nix +++ b/pkgs/development/python-modules/romy/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "romy" ]; - meta = with lib; { + meta = { description = "Library to control Wi-Fi enabled ROMY vacuum cleaners"; homepage = "https://github.com/xeniter/romy"; changelog = "https://github.com/xeniter/romy/releases/tag/${version}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/roombapy/default.nix b/pkgs/development/python-modules/roombapy/default.nix index cd18675e0ed9..c01f79b678f8 100644 --- a/pkgs/development/python-modules/roombapy/default.nix +++ b/pkgs/development/python-modules/roombapy/default.nix @@ -63,12 +63,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "roombapy" ]; - meta = with lib; { + meta = { description = "Python program and library to control Wi-Fi enabled iRobot Roombas"; mainProgram = "roombapy"; homepage = "https://github.com/pschmitt/roombapy"; changelog = "https://github.com/pschmitt/roombapy/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/roonapi/default.nix b/pkgs/development/python-modules/roonapi/default.nix index 76f93dc33905..26c0ccc355c4 100644 --- a/pkgs/development/python-modules/roonapi/default.nix +++ b/pkgs/development/python-modules/roonapi/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "roonapi" ]; - meta = with lib; { + meta = { description = "Python library to interface with the Roon API"; homepage = "https://github.com/pavoni/pyroon"; changelog = "https://github.com/pavoni/pyroon/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rope/default.nix b/pkgs/development/python-modules/rope/default.nix index f89cbf34869b..7624e9895b1d 100644 --- a/pkgs/development/python-modules/rope/default.nix +++ b/pkgs/development/python-modules/rope/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_hint_parametrized_iterator" ]; - meta = with lib; { + meta = { description = "Python refactoring library"; homepage = "https://github.com/python-rope/rope"; changelog = "https://github.com/python-rope/rope/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ropgadget/default.nix b/pkgs/development/python-modules/ropgadget/default.nix index aa1414665843..3cc80862d8c8 100644 --- a/pkgs/development/python-modules/ropgadget/default.nix +++ b/pkgs/development/python-modules/ropgadget/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ropgadget" ]; - meta = with lib; { + meta = { description = "Tool to search for gadgets in binaries to facilitate ROP exploitation"; mainProgram = "ROPgadget"; homepage = "http://shell-storm.org/project/ROPgadget/"; - license = licenses.bsd3; - maintainers = with maintainers; [ bennofs ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bennofs ]; }; } diff --git a/pkgs/development/python-modules/ropper/default.nix b/pkgs/development/python-modules/ropper/default.nix index 4c8398a101d9..153ff630e5cf 100644 --- a/pkgs/development/python-modules/ropper/default.nix +++ b/pkgs/development/python-modules/ropper/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ropper" ]; - meta = with lib; { + meta = { description = "Show information about files in different file formats"; homepage = "https://scoding.de/ropper/"; changelog = "https://github.com/sashs/Ropper/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ bennofs ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bennofs ]; mainProgram = "ropper"; }; } diff --git a/pkgs/development/python-modules/rotary-embedding-torch/default.nix b/pkgs/development/python-modules/rotary-embedding-torch/default.nix index 6668fde9720a..dd99827eecc8 100644 --- a/pkgs/development/python-modules/rotary-embedding-torch/default.nix +++ b/pkgs/development/python-modules/rotary-embedding-torch/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Implementation of Rotary Embeddings, from the Roformer paper, in Pytorch"; homepage = "https://github.com/lucidrains/rotary-embedding-torch"; changelog = "https://github.com/lucidrains/rotary-embedding-torch/releases/tag/${src.tag}"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/routeros-api/default.nix b/pkgs/development/python-modules/routeros-api/default.nix index 7d724a70bb2a..32769f2e65fb 100644 --- a/pkgs/development/python-modules/routeros-api/default.nix +++ b/pkgs/development/python-modules/routeros-api/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "routeros_api" ]; - meta = with lib; { + meta = { description = "Python API to RouterBoard devices produced by MikroTik"; homepage = "https://github.com/socialwifi/RouterOS-api"; changelog = "https://github.com/socialwifi/RouterOS-api/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ quentin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ quentin ]; }; } diff --git a/pkgs/development/python-modules/routes/default.nix b/pkgs/development/python-modules/routes/default.nix index 925653572f36..9f2afb77bb09 100644 --- a/pkgs/development/python-modules/routes/default.nix +++ b/pkgs/development/python-modules/routes/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "routes" ]; - meta = with lib; { + meta = { description = "Re-implementation of the Rails routes system for mapping URLs to application actions"; homepage = "https://github.com/bbangert/routes"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rova/default.nix b/pkgs/development/python-modules/rova/default.nix index 59dc3882943c..1cadc389e87b 100644 --- a/pkgs/development/python-modules/rova/default.nix +++ b/pkgs/development/python-modules/rova/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rova" ]; - meta = with lib; { + meta = { description = "Module to access for ROVA calendars"; homepage = "https://github.com/GidoHakvoort/rova"; changelog = "https://github.com/GidoHakvoort/rova/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rowan/default.nix b/pkgs/development/python-modules/rowan/default.nix index 003582e9ea8b..6f55b1bbd8de 100644 --- a/pkgs/development/python-modules/rowan/default.nix +++ b/pkgs/development/python-modules/rowan/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rowan" ]; - meta = with lib; { + meta = { description = "Python package for working with quaternions"; homepage = "https://github.com/glotzerlab/rowan"; changelog = "https://github.com/glotzerlab/rowan/blob/${src.rev}/ChangeLog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/rpcq/default.nix b/pkgs/development/python-modules/rpcq/default.nix index f7a1eac3d304..13b98b731458 100644 --- a/pkgs/development/python-modules/rpcq/default.nix +++ b/pkgs/development/python-modules/rpcq/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rpcq" ]; - meta = with lib; { + meta = { description = "RPC framework and message specification for rigetti Quantum Cloud services"; homepage = "https://github.com/rigetti/rpcq"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rpds-py/default.nix b/pkgs/development/python-modules/rpds-py/default.nix index 55bff605038c..ce050584c31a 100644 --- a/pkgs/development/python-modules/rpds-py/default.nix +++ b/pkgs/development/python-modules/rpds-py/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rpds" ]; - meta = with lib; { + meta = { changelog = "https://github.com/crate-py/rpds/releases/tag/v${version}"; description = "Python bindings to Rust's persistent data structures"; homepage = "https://github.com/crate-py/rpds"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rpi-bad-power/default.nix b/pkgs/development/python-modules/rpi-bad-power/default.nix index 73de990287a9..1b575dd4f65a 100644 --- a/pkgs/development/python-modules/rpi-bad-power/default.nix +++ b/pkgs/development/python-modules/rpi-bad-power/default.nix @@ -27,11 +27,11 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python library to detect bad power supply on Raspberry Pi"; homepage = "https://github.com/shenxn/rpi-bad-power"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/rpi-gpio/default.nix b/pkgs/development/python-modules/rpi-gpio/default.nix index 569e8cd07c0c..44bcf31750f0 100644 --- a/pkgs/development/python-modules/rpi-gpio/default.nix +++ b/pkgs/development/python-modules/rpi-gpio/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { # Raspberry Pi doCheck = false; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/p/raspberry-gpio-python"; description = "Python module to control the GPIO on a Raspberry Pi"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/rplcd/default.nix b/pkgs/development/python-modules/rplcd/default.nix index 355f596084d0..927357bad296 100644 --- a/pkgs/development/python-modules/rplcd/default.nix +++ b/pkgs/development/python-modules/rplcd/default.nix @@ -17,13 +17,13 @@ buildPythonPackage rec { # Disable check because it depends on a GPIO library doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/dbrgn/RPLCD"; description = '' Raspberry Pi LCD library for the widely used Hitachi HD44780 controller ''; mainProgram = "rplcd-tests"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/rply/default.nix b/pkgs/development/python-modules/rply/default.nix index 064a7a7a9040..d5a3ab4c07d2 100644 --- a/pkgs/development/python-modules/rply/default.nix +++ b/pkgs/development/python-modules/rply/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { export HOME=$(mktemp -d) ''; - meta = with lib; { + meta = { description = "Python Lex/Yacc that works with RPython"; homepage = "https://github.com/alex/rply"; - license = licenses.bsd3; - maintainers = with maintainers; [ nixy ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nixy ]; }; } diff --git a/pkgs/development/python-modules/rpmfile/default.nix b/pkgs/development/python-modules/rpmfile/default.nix index da05ba50a271..231af0c3c4ec 100644 --- a/pkgs/development/python-modules/rpmfile/default.nix +++ b/pkgs/development/python-modules/rpmfile/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rpmfile" ]; - meta = with lib; { + meta = { description = "Read rpm archive files"; mainProgram = "rpmfile"; homepage = "https://github.com/srossross/rpmfile"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rpmfluff/default.nix b/pkgs/development/python-modules/rpmfluff/default.nix index e74358a59ca7..8c5f88e89df1 100644 --- a/pkgs/development/python-modules/rpmfluff/default.nix +++ b/pkgs/development/python-modules/rpmfluff/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { LC_ALL = "en_US.utf-8"; buildInputs = [ glibcLocales ]; - meta = with lib; { + meta = { description = "Lightweight way of building RPMs, and sabotaging them"; homepage = "https://pagure.io/rpmfluff"; - license = licenses.gpl2; - maintainers = with maintainers; [ disassembler ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ disassembler ]; }; } diff --git a/pkgs/development/python-modules/rpyc/default.nix b/pkgs/development/python-modules/rpyc/default.nix index 3ecd05b27bc5..138a14862866 100644 --- a/pkgs/development/python-modules/rpyc/default.nix +++ b/pkgs/development/python-modules/rpyc/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Remote Python Call (RPyC), a transparent and symmetric RPC library"; homepage = "https://rpyc.readthedocs.org"; changelog = "https://github.com/tomerfiliba-org/rpyc/blob/${version}/CHANGELOG.rst"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rsa/default.nix b/pkgs/development/python-modules/rsa/default.nix index e6ae0e7fd61e..34beb00a7884 100644 --- a/pkgs/development/python-modules/rsa/default.nix +++ b/pkgs/development/python-modules/rsa/default.nix @@ -38,9 +38,9 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/test_mypy.py" ]; - meta = with lib; { + meta = { homepage = "https://stuvel.eu/rsa"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Pure-Python RSA implementation"; }; } diff --git a/pkgs/development/python-modules/rsskey/default.nix b/pkgs/development/python-modules/rsskey/default.nix index e76744b1fb46..bc745427716f 100644 --- a/pkgs/development/python-modules/rsskey/default.nix +++ b/pkgs/development/python-modules/rsskey/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; # upstream has no test pythonImportsCheck = [ "rsskey" ]; - meta = with lib; { + meta = { description = "RSS feed mirror on Misskey"; homepage = "https://sr.ht/~cnx/rsskey"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ McSinyx ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ McSinyx ]; }; } diff --git a/pkgs/development/python-modules/rst2ansi/default.nix b/pkgs/development/python-modules/rst2ansi/default.nix index c7b99f6bfd68..e74e64f800a5 100644 --- a/pkgs/development/python-modules/rst2ansi/default.nix +++ b/pkgs/development/python-modules/rst2ansi/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { propagatedBuildInputs = [ docutils ]; - meta = with lib; { + meta = { description = "Rst converter to ansi-decorated console output"; mainProgram = "rst2ansi"; homepage = "https://github.com/Snaipe/python-rst-to-ansi"; - license = licenses.mit; - maintainers = with maintainers; [ vojta001 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vojta001 ]; }; } diff --git a/pkgs/development/python-modules/rst2pdf/default.nix b/pkgs/development/python-modules/rst2pdf/default.nix index 2c8293672bc9..d57f7162d620 100644 --- a/pkgs/development/python-modules/rst2pdf/default.nix +++ b/pkgs/development/python-modules/rst2pdf/default.nix @@ -72,12 +72,12 @@ buildPythonPackage rec { installManPage rst2pdf.1 ''; - meta = with lib; { + meta = { description = "Convert reStructured Text to PDF via ReportLab"; mainProgram = "rst2pdf"; homepage = "https://rst2pdf.org/"; changelog = "https://github.com/rst2pdf/rst2pdf/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ pyrox0 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/rstcheck-core/default.nix b/pkgs/development/python-modules/rstcheck-core/default.nix index fc516b07d1c6..0554f2018c64 100644 --- a/pkgs/development/python-modules/rstcheck-core/default.nix +++ b/pkgs/development/python-modules/rstcheck-core/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rstcheck_core" ]; - meta = with lib; { + meta = { description = "Library for checking syntax of reStructuredText"; homepage = "https://github.com/rstcheck/rstcheck-core"; changelog = "https://github.com/rstcheck/rstcheck-core/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rstcheck/default.nix b/pkgs/development/python-modules/rstcheck/default.nix index 16d4643df8fd..cfa35f5e76cd 100644 --- a/pkgs/development/python-modules/rstcheck/default.nix +++ b/pkgs/development/python-modules/rstcheck/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { export PATH="$PATH:$out/bin"; ''; - meta = with lib; { + meta = { description = "Checks syntax of reStructuredText and code blocks nested within it"; homepage = "https://github.com/myint/rstcheck"; changelog = "https://github.com/rstcheck/rstcheck/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ staccato ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ staccato ]; mainProgram = "rstcheck"; }; } diff --git a/pkgs/development/python-modules/rstr/default.nix b/pkgs/development/python-modules/rstr/default.nix index cf2a5ef42212..29720b5dbf3f 100644 --- a/pkgs/development/python-modules/rstr/default.nix +++ b/pkgs/development/python-modules/rstr/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python library to generate random strings"; homepage = "https://github.com/leapfrogonline/rstr"; - license = licenses.bsd3; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/rtb-data/default.nix b/pkgs/development/python-modules/rtb-data/default.nix index 4202e2bb1af8..2ca60d5ab4cc 100644 --- a/pkgs/development/python-modules/rtb-data/default.nix +++ b/pkgs/development/python-modules/rtb-data/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rtbdata" ]; - meta = with lib; { + meta = { description = "Data files for the Robotics Toolbox for Python"; homepage = "https://pypi.org/project/rtb-data/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ djacu a-camarillo ]; diff --git a/pkgs/development/python-modules/rtfunicode/default.nix b/pkgs/development/python-modules/rtfunicode/default.nix index 180e94ea0f4b..cfe34f1195f9 100644 --- a/pkgs/development/python-modules/rtfunicode/default.nix +++ b/pkgs/development/python-modules/rtfunicode/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rtfunicode" ]; - meta = with lib; { + meta = { description = "Encoder for unicode to RTF 1.5 command sequences"; - maintainers = [ maintainers.lucasew ]; - license = licenses.bsd2; + maintainers = [ lib.maintainers.lucasew ]; + license = lib.licenses.bsd2; homepage = "https://github.com/mjpieters/rtfunicode"; changelog = "https://github.com/mjpieters/rtfunicode/releases/tag/${version}"; }; diff --git a/pkgs/development/python-modules/rtmidi-python/default.nix b/pkgs/development/python-modules/rtmidi-python/default.nix index 5f7d980de4ef..fe2aa3c54f8e 100644 --- a/pkgs/development/python-modules/rtmidi-python/default.nix +++ b/pkgs/development/python-modules/rtmidi-python/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rtmidi_python" ]; - meta = with lib; { + meta = { description = "Python wrapper for RtMidi"; homepage = "https://github.com/superquadratic/rtmidi-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rtoml/default.nix b/pkgs/development/python-modules/rtoml/default.nix index f55d4060d920..8c2dd08f287e 100644 --- a/pkgs/development/python-modules/rtoml/default.nix +++ b/pkgs/development/python-modules/rtoml/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { rm -rf rtoml ''; - meta = with lib; { + meta = { description = "Rust based TOML library for Python"; homepage = "https://github.com/samuelcolvin/rtoml"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rtp/default.nix b/pkgs/development/python-modules/rtp/default.nix index ad27d151776c..20016f3d23e4 100644 --- a/pkgs/development/python-modules/rtp/default.nix +++ b/pkgs/development/python-modules/rtp/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rtp" ]; - meta = with lib; { + meta = { description = "Library for decoding/encoding rtp packets"; homepage = "https://github.com/bbc/rd-apmm-python-lib-rtp"; - license = licenses.asl20; - maintainers = with maintainers; [ fleaz ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fleaz ]; }; } diff --git a/pkgs/development/python-modules/rtree/default.nix b/pkgs/development/python-modules/rtree/default.nix index 4646eb623c56..c350f0a0d5f7 100644 --- a/pkgs/development/python-modules/rtree/default.nix +++ b/pkgs/development/python-modules/rtree/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "rtree" ]; - meta = with lib; { + meta = { description = "R-Tree spatial index for Python GIS"; homepage = "https://github.com/Toblerity/rtree"; changelog = "https://github.com/Toblerity/rtree/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ bgamari ]; - teams = [ teams.geospatial ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bgamari ]; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/development/python-modules/ruamel-base/default.nix b/pkgs/development/python-modules/ruamel-base/default.nix index 2d38ff808dda..2ceefbf2f6f2 100644 --- a/pkgs/development/python-modules/ruamel-base/default.nix +++ b/pkgs/development/python-modules/ruamel-base/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonNamespaces = [ "ruamel" ]; - meta = with lib; { + meta = { description = "Common routines for ruamel packages"; homepage = "https://sourceforge.net/projects/ruamel-base/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ruamel-yaml-clib/default.nix b/pkgs/development/python-modules/ruamel-yaml-clib/default.nix index 26b531530077..924ae5018220 100644 --- a/pkgs/development/python-modules/ruamel-yaml-clib/default.nix +++ b/pkgs/development/python-modules/ruamel-yaml-clib/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { preBuild = "cython _ruamel_yaml.pyx -3 --module-name _ruamel_yaml -I."; - meta = with lib; { + meta = { description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"; homepage = "https://sourceforge.net/projects/ruamel-yaml-clib/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ruamel-yaml-string/default.nix b/pkgs/development/python-modules/ruamel-yaml-string/default.nix index 0634359f6511..3b5a65d0acf7 100644 --- a/pkgs/development/python-modules/ruamel-yaml-string/default.nix +++ b/pkgs/development/python-modules/ruamel-yaml-string/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ruamel.yaml" ]; - meta = with lib; { + meta = { description = "Add dump_to_string/dumps method that returns YAML document as string"; homepage = "https://sourceforge.net/projects/ruamel-yaml-string/"; - license = licenses.mit; - maintainers = with maintainers; [ fbeffa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fbeffa ]; }; } diff --git a/pkgs/development/python-modules/ruamel-yaml/default.nix b/pkgs/development/python-modules/ruamel-yaml/default.nix index 4096a930e5bf..88939784ccef 100644 --- a/pkgs/development/python-modules/ruamel-yaml/default.nix +++ b/pkgs/development/python-modules/ruamel-yaml/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ruamel.yaml" ]; - meta = with lib; { + meta = { description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"; homepage = "https://sourceforge.net/projects/ruamel-yaml/"; changelog = "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree/CHANGES"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rubymarshal/default.nix b/pkgs/development/python-modules/rubymarshal/default.nix index 91606d9b5534..61fb9164acfa 100644 --- a/pkgs/development/python-modules/rubymarshal/default.nix +++ b/pkgs/development/python-modules/rubymarshal/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rubymarshal" ]; - meta = with lib; { + meta = { description = "Read and write Ruby-marshalled data"; homepage = "https://github.com/d9pouces/RubyMarshal/"; - license = licenses.wtfpl; - maintainers = with maintainers; [ ryantm ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ ryantm ]; }; } diff --git a/pkgs/development/python-modules/ruffus/default.nix b/pkgs/development/python-modules/ruffus/default.nix index 330882d42191..c21d1fcbd0d9 100644 --- a/pkgs/development/python-modules/ruffus/default.nix +++ b/pkgs/development/python-modules/ruffus/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "ruffus" ]; - meta = with lib; { + meta = { description = "Light-weight Python Computational Pipeline Management"; homepage = "http://www.ruffus.org.uk"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rules/default.nix b/pkgs/development/python-modules/rules/default.nix index 9e9235c3a6e9..17eae0ae8800 100644 --- a/pkgs/development/python-modules/rules/default.nix +++ b/pkgs/development/python-modules/rules/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Awesome Django authorization, without the database"; homepage = "https://github.com/dfunckt/django-rules"; changelog = "https://github.com/dfunckt/django-rules/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/rumps/default.nix b/pkgs/development/python-modules/rumps/default.nix index 0e9749b981dd..8086015b8d86 100644 --- a/pkgs/development/python-modules/rumps/default.nix +++ b/pkgs/development/python-modules/rumps/default.nix @@ -23,11 +23,11 @@ buildPythonPackage { pythonImportsCheck = [ "rumps" ]; - meta = with lib; { + meta = { description = "Ridiculously Uncomplicated macOS Python Statusbar apps"; homepage = "https://github.com/jaredks/rumps"; - license = licenses.bsd2; - platforms = platforms.darwin; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/runs/default.nix b/pkgs/development/python-modules/runs/default.nix index 19ea9683b378..22903d5d18cd 100644 --- a/pkgs/development/python-modules/runs/default.nix +++ b/pkgs/development/python-modules/runs/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "runs" ]; - meta = with lib; { + meta = { description = "Run a block of text as a subprocess"; homepage = "https://github.com/rec/runs"; changelog = "https://github.com/rec/runs/blob/${src.rev}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rustworkx/default.nix b/pkgs/development/python-modules/rustworkx/default.nix index 714c29ea781d..08765438fcca 100644 --- a/pkgs/development/python-modules/rustworkx/default.nix +++ b/pkgs/development/python-modules/rustworkx/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rustworkx" ]; - meta = with lib; { + meta = { description = "High performance Python graph library implemented in Rust"; homepage = "https://github.com/Qiskit/rustworkx"; - license = licenses.asl20; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/ruyaml/default.nix b/pkgs/development/python-modules/ruyaml/default.nix index e98c04b4fa7b..883167394200 100644 --- a/pkgs/development/python-modules/ruyaml/default.nix +++ b/pkgs/development/python-modules/ruyaml/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "test_issue_61" ]; - meta = with lib; { + meta = { description = "YAML 1.2 loader/dumper package for Python"; homepage = "https://ruyaml.readthedocs.io/"; changelog = "https://github.com/pycontribs/ruyaml/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rxv/default.nix b/pkgs/development/python-modules/rxv/default.nix index dd798ec72893..391830fd4246 100644 --- a/pkgs/development/python-modules/rxv/default.nix +++ b/pkgs/development/python-modules/rxv/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rxv" ]; - meta = with lib; { + meta = { description = "Python library for communicate with Yamaha RX-Vxxx receivers"; homepage = "https://github.com/wuub/rxv"; - license = licenses.mit; - maintainers = with maintainers; [ flyfloh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flyfloh ]; }; } diff --git a/pkgs/development/python-modules/rzpipe/default.nix b/pkgs/development/python-modules/rzpipe/default.nix index bce20efed4d4..0ee8fe99609b 100644 --- a/pkgs/development/python-modules/rzpipe/default.nix +++ b/pkgs/development/python-modules/rzpipe/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "rzpipe" ]; - meta = with lib; { + meta = { description = "Python interface for rizin"; homepage = "https://rizin.re"; changelog = "https://github.com/rizinorg/rizin/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/s3-credentials/default.nix b/pkgs/development/python-modules/s3-credentials/default.nix index 8a3fccd1e1d8..a8eac52ca3dc 100644 --- a/pkgs/development/python-modules/s3-credentials/default.nix +++ b/pkgs/development/python-modules/s3-credentials/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { "test_put_objects" ]; - meta = with lib; { + meta = { description = "Python CLI utility for creating credentials for accessing S3 buckets"; homepage = "https://github.com/simonw/s3-credentials"; changelog = "https://github.com/simonw/s3-credentials/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ techknowlogick ]; mainProgram = "s3-credentials"; }; } diff --git a/pkgs/development/python-modules/sabctools/default.nix b/pkgs/development/python-modules/sabctools/default.nix index ed98bf75fe3f..d581249d28ec 100644 --- a/pkgs/development/python-modules/sabctools/default.nix +++ b/pkgs/development/python-modules/sabctools/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { inherit sabnzbd; }; - meta = with lib; { + meta = { description = "C implementations of functions for use within SABnzbd"; homepage = "https://github.com/sabnzbd/sabctools"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ adamcstephens ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ adamcstephens ]; }; } diff --git a/pkgs/development/python-modules/sabyenc3/default.nix b/pkgs/development/python-modules/sabyenc3/default.nix index 814ca92de8db..cf5330270969 100644 --- a/pkgs/development/python-modules/sabyenc3/default.nix +++ b/pkgs/development/python-modules/sabyenc3/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sabyenc3" ]; - meta = with lib; { + meta = { description = "yEnc Decoding for Python 3"; homepage = "https://github.com/sabnzbd/sabyenc/"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ lovek323 ]; }; } diff --git a/pkgs/development/python-modules/sacn/default.nix b/pkgs/development/python-modules/sacn/default.nix index e87b2d144ceb..b2eed1245cd5 100644 --- a/pkgs/development/python-modules/sacn/default.nix +++ b/pkgs/development/python-modules/sacn/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sacn" ]; - meta = with lib; { + meta = { description = "Simple ANSI E1.31 (aka sACN) module"; homepage = "https://github.com/Hundemeier/sacn"; changelog = "https://github.com/Hundemeier/sacn/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sacremoses/default.nix b/pkgs/development/python-modules/sacremoses/default.nix index d58461de8a33..9bcfb97d989b 100644 --- a/pkgs/development/python-modules/sacremoses/default.nix +++ b/pkgs/development/python-modules/sacremoses/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pytest -k 'not truecase' ''; - meta = with lib; { + meta = { homepage = "https://github.com/alvations/sacremoses"; description = "Python port of Moses tokenizer, truecaser and normalizer"; mainProgram = "sacremoses"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ pashashocky ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pashashocky ]; }; } diff --git a/pkgs/development/python-modules/safeio/default.nix b/pkgs/development/python-modules/safeio/default.nix index d1920654d2ef..85dbc04339e6 100644 --- a/pkgs/development/python-modules/safeio/default.nix +++ b/pkgs/development/python-modules/safeio/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "safeIO" ]; - meta = with lib; { + meta = { description = "Safely make I/O operations to files in Python even from multiple threads"; homepage = "https://github.com/Animenosekai/safeIO"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/salmon-mail/default.nix b/pkgs/development/python-modules/salmon-mail/default.nix index 4cf32f46c4d4..49e9a3fc2fae 100644 --- a/pkgs/development/python-modules/salmon-mail/default.nix +++ b/pkgs/development/python-modules/salmon-mail/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { export PATH=$out/bin:$PATH ''; - meta = with lib; { + meta = { homepage = "https://salmon-mail.readthedocs.org/"; changelog = "https://github.com/moggers87/salmon/blob/${src.rev}/CHANGELOG.rst"; description = "Pythonic mail application server"; mainProgram = "salmon"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/samarium/default.nix b/pkgs/development/python-modules/samarium/default.nix index 57d8f16bc84d..b175dc29708c 100644 --- a/pkgs/development/python-modules/samarium/default.nix +++ b/pkgs/development/python-modules/samarium/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { dahlia ]; - meta = with lib; { + meta = { changelog = "https://github.com/samarium-lang/samarium/blob/${src.rev}/CHANGELOG.md"; description = "Samarium Programming Language"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://samarium-lang.github.io/Samarium"; - maintainers = with maintainers; [ sigmanificient ]; + maintainers = with lib.maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/samplerate/default.nix b/pkgs/development/python-modules/samplerate/default.nix index 29b54fff729a..06db20871e6a 100644 --- a/pkgs/development/python-modules/samplerate/default.nix +++ b/pkgs/development/python-modules/samplerate/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { rm -rf samplerate ''; - meta = with lib; { + meta = { description = "Python bindings for libsamplerate based on CFFI and NumPy"; homepage = "https://github.com/tuxu/python-samplerate"; changelog = "https://github.com/tuxu/python-samplerate/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/samsungctl/default.nix b/pkgs/development/python-modules/samsungctl/default.nix index 43ed26ace4e2..5e438dc1caac 100644 --- a/pkgs/development/python-modules/samsungctl/default.nix +++ b/pkgs/development/python-modules/samsungctl/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "samsungctl" ]; - meta = with lib; { + meta = { description = "Remote control Samsung televisions via a TCP/IP connection"; mainProgram = "samsungctl"; homepage = "https://github.com/Ape/samsungctl"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/samsungtvws/default.nix b/pkgs/development/python-modules/samsungtvws/default.nix index 777e3afc0bc7..3e98ebed75f1 100644 --- a/pkgs/development/python-modules/samsungtvws/default.nix +++ b/pkgs/development/python-modules/samsungtvws/default.nix @@ -74,11 +74,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "samsungtvws" ]; - meta = with lib; { + meta = { description = "Samsung Smart TV WS API wrapper"; homepage = "https://github.com/xchwarze/samsung-tv-ws-api"; changelog = "https://github.com/xchwarze/samsung-tv-ws-api/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/sane/default.nix b/pkgs/development/python-modules/sane/default.nix index 1b82f6039878..41bae43c4b1e 100644 --- a/pkgs/development/python-modules/sane/default.nix +++ b/pkgs/development/python-modules/sane/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { buildInputs = [ sane-backends ]; - meta = with lib; { + meta = { homepage = "https://github.com/python-pillow/Sane"; description = "Python interface to the SANE scanner and frame grabber"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/saneyaml/default.nix b/pkgs/development/python-modules/saneyaml/default.nix index 0e47b565bba7..da1602d97bbc 100644 --- a/pkgs/development/python-modules/saneyaml/default.nix +++ b/pkgs/development/python-modules/saneyaml/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "saneyaml" ]; - meta = with lib; { + meta = { description = "PyYaml wrapper with sane behaviour to read and write readable YAML safely"; homepage = "https://github.com/nexB/saneyaml"; changelog = "https://github.com/aboutcode-org/saneyaml/blob/v${version}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sanic-auth/default.nix b/pkgs/development/python-modules/sanic-auth/default.nix index 27555052af9c..6ad9c2e20c93 100644 --- a/pkgs/development/python-modules/sanic-auth/default.nix +++ b/pkgs/development/python-modules/sanic-auth/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sanic_auth" ]; - meta = with lib; { + meta = { description = "Simple Authentication for Sanic"; homepage = "https://github.com/pyx/sanic-auth/"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/sanic-routing/default.nix b/pkgs/development/python-modules/sanic-routing/default.nix index ad8ee48f3861..bd847ad93885 100644 --- a/pkgs/development/python-modules/sanic-routing/default.nix +++ b/pkgs/development/python-modules/sanic-routing/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sanic_routing" ]; - meta = with lib; { + meta = { description = "Core routing component for the Sanic web framework"; homepage = "https://github.com/sanic-org/sanic-routing"; changelog = "https://github.com/sanic-org/sanic-routing/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sanic-testing/default.nix b/pkgs/development/python-modules/sanic-testing/default.nix index 9a34d37db049..f8aff64d1409 100644 --- a/pkgs/development/python-modules/sanic-testing/default.nix +++ b/pkgs/development/python-modules/sanic-testing/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pytest = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = "Core testing clients for the Sanic web framework"; homepage = "https://github.com/sanic-org/sanic-testing"; changelog = "https://github.com/sanic-org/sanic-testing/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sanic/default.nix b/pkgs/development/python-modules/sanic/default.nix index 27b0137014c8..5e2c1a77d9f6 100644 --- a/pkgs/development/python-modules/sanic/default.nix +++ b/pkgs/development/python-modules/sanic/default.nix @@ -123,12 +123,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "sanic" ]; - meta = with lib; { + meta = { description = "Web server and web framework"; homepage = "https://github.com/sanic-org/sanic/"; changelog = "https://github.com/sanic-org/sanic/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ p0lyw0lf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ p0lyw0lf ]; mainProgram = "sanic"; }; } diff --git a/pkgs/development/python-modules/sanix/default.nix b/pkgs/development/python-modules/sanix/default.nix index fd5636e28e73..b6ae26fc11b7 100644 --- a/pkgs/development/python-modules/sanix/default.nix +++ b/pkgs/development/python-modules/sanix/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sanix" ]; - meta = with lib; { + meta = { description = "Module to get measurements data from Sanix devices"; homepage = "https://github.com/tomaszsluszniak/sanix_py"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sarge/default.nix b/pkgs/development/python-modules/sarge/default.nix index 3c86f1448599..56416136c799 100644 --- a/pkgs/development/python-modules/sarge/default.nix +++ b/pkgs/development/python-modules/sarge/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sarge" ]; - meta = with lib; { + meta = { description = "Python wrapper for subprocess which provides command pipeline functionality"; homepage = "https://sarge.readthedocs.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sarif-om/default.nix b/pkgs/development/python-modules/sarif-om/default.nix index 98a9503f4457..1eabe2ee461e 100644 --- a/pkgs/development/python-modules/sarif-om/default.nix +++ b/pkgs/development/python-modules/sarif-om/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # no tests included with tarball doCheck = false; - meta = with lib; { + meta = { description = "Classes implementing the SARIF 2.1.0 object model"; homepage = "https://github.com/microsoft/sarif-python-om"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/scalene/default.nix b/pkgs/development/python-modules/scalene/default.nix index a97bc531585e..6c94a69d9877 100644 --- a/pkgs/development/python-modules/scalene/default.nix +++ b/pkgs/development/python-modules/scalene/default.nix @@ -106,13 +106,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "scalene" ]; - meta = with lib; { + meta = { description = "High-resolution, low-overhead CPU, GPU, and memory profiler for Python with AI-powered optimization suggestions"; homepage = "https://github.com/plasma-umass/scalene"; changelog = "https://github.com/plasma-umass/scalene/releases/tag/v${version}"; mainProgram = "scalene"; - license = licenses.asl20; - maintainers = with maintainers; [ sarahec ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sarahec ]; badPlatforms = [ # The scalene doesn't seem to account for arm64 linux "aarch64-linux" diff --git a/pkgs/development/python-modules/scancode-toolkit/default.nix b/pkgs/development/python-modules/scancode-toolkit/default.nix index 42fd4f6c258d..48b3359018f1 100644 --- a/pkgs/development/python-modules/scancode-toolkit/default.nix +++ b/pkgs/development/python-modules/scancode-toolkit/default.nix @@ -147,11 +147,11 @@ buildPythonPackage rec { # Takes a long time and doesn't appear to do anything dontStrip = true; - meta = with lib; { + meta = { description = "Tool to scan code for license, copyright, package and their documented dependencies and other interesting facts"; homepage = "https://github.com/nexB/scancode-toolkit"; changelog = "https://github.com/nexB/scancode-toolkit/blob/v${version}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ asl20 cc-by-40 ]; diff --git a/pkgs/development/python-modules/scapy/default.nix b/pkgs/development/python-modules/scapy/default.nix index e554dd9df25a..0cd64d037cef 100644 --- a/pkgs/development/python-modules/scapy/default.nix +++ b/pkgs/development/python-modules/scapy/default.nix @@ -77,7 +77,7 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "scapy" ]; - meta = with lib; { + meta = { description = "Python-based network packet manipulation program and library"; mainProgram = "scapy"; longDescription = '' @@ -103,9 +103,9 @@ buildPythonPackage rec { ''; homepage = "https://scapy.net/"; changelog = "https://github.com/secdev/scapy/releases/tag/v${version}"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor ]; }; diff --git a/pkgs/development/python-modules/schedule/default.nix b/pkgs/development/python-modules/schedule/default.nix index c0b86fd2ddfd..39432b5f172a 100644 --- a/pkgs/development/python-modules/schedule/default.nix +++ b/pkgs/development/python-modules/schedule/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "schedule" ]; - meta = with lib; { + meta = { description = "Python job scheduling for humans"; homepage = "https://github.com/dbader/schedule"; changelog = "https://github.com/dbader/schedule/blob/${version}/HISTORY.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/scheduler/default.nix b/pkgs/development/python-modules/scheduler/default.nix index 2d190ca8eac3..493d59fdc591 100644 --- a/pkgs/development/python-modules/scheduler/default.nix +++ b/pkgs/development/python-modules/scheduler/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "scheduler" ]; - meta = with lib; { + meta = { description = "Simple in-process python scheduler library with asyncio, threading and timezone support"; homepage = "https://pypi.org/project/scheduler/"; - license = licenses.lgpl3; - maintainers = with maintainers; [ pinpox ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ pinpox ]; }; } diff --git a/pkgs/development/python-modules/schema-salad/default.nix b/pkgs/development/python-modules/schema-salad/default.nix index 66654564b824..ee4fb1d36d7c 100644 --- a/pkgs/development/python-modules/schema-salad/default.nix +++ b/pkgs/development/python-modules/schema-salad/default.nix @@ -84,11 +84,11 @@ buildPythonPackage rec { pycodegen = [ black ]; }; - meta = with lib; { + meta = { description = "Semantic Annotations for Linked Avro Data"; homepage = "https://github.com/common-workflow-language/schema_salad"; changelog = "https://github.com/common-workflow-language/schema_salad/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/schema/default.nix b/pkgs/development/python-modules/schema/default.nix index 37a608515e7c..aa6f9c30ac5c 100644 --- a/pkgs/development/python-modules/schema/default.nix +++ b/pkgs/development/python-modules/schema/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "schema" ]; - meta = with lib; { + meta = { description = "Library for validating Python data structures"; homepage = "https://github.com/keleshev/schema"; - license = licenses.mit; - maintainers = with maintainers; [ tobim ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tobim ]; }; } diff --git a/pkgs/development/python-modules/schemdraw/default.nix b/pkgs/development/python-modules/schemdraw/default.nix index c4ae533dc8eb..0fde7b771522 100644 --- a/pkgs/development/python-modules/schemdraw/default.nix +++ b/pkgs/development/python-modules/schemdraw/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "schemdraw" ]; - meta = with lib; { + meta = { description = "Package for producing high-quality electrical circuit schematic diagrams"; homepage = "https://schemdraw.readthedocs.io/en/latest/"; changelog = "https://schemdraw.readthedocs.io/en/latest/changes.html"; - license = licenses.mit; - maintainers = with maintainers; [ sfrijters ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sfrijters ]; }; } diff --git a/pkgs/development/python-modules/schiene/default.nix b/pkgs/development/python-modules/schiene/default.nix index 20267d300d69..0ad8359871fb 100644 --- a/pkgs/development/python-modules/schiene/default.nix +++ b/pkgs/development/python-modules/schiene/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "schiene" ]; - meta = with lib; { + meta = { description = "Python library for interacting with Bahn.de"; homepage = "https://github.com/kennell/schiene"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/schwifty/default.nix b/pkgs/development/python-modules/schwifty/default.nix index b53318bf2ae8..5e4031029ec5 100644 --- a/pkgs/development/python-modules/schwifty/default.nix +++ b/pkgs/development/python-modules/schwifty/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "schwifty" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mdomke/schwifty/blob/${version}/CHANGELOG.rst"; description = "Validate/generate IBANs and BICs"; homepage = "https://github.com/mdomke/schwifty"; - license = licenses.mit; - maintainers = with maintainers; [ milibopp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ milibopp ]; }; } diff --git a/pkgs/development/python-modules/scienceplots/default.nix b/pkgs/development/python-modules/scienceplots/default.nix index b6421ce40a87..3a4e3656277e 100644 --- a/pkgs/development/python-modules/scienceplots/default.nix +++ b/pkgs/development/python-modules/scienceplots/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Matplotlib styles for scientific plotting"; homepage = "https://github.com/garrettj403/SciencePlots"; - license = licenses.mit; - maintainers = with maintainers; [ kilimnik ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kilimnik ]; }; } diff --git a/pkgs/development/python-modules/scikit-base/default.nix b/pkgs/development/python-modules/scikit-base/default.nix index 8afe652ec3f4..b40849b52738 100644 --- a/pkgs/development/python-modules/scikit-base/default.nix +++ b/pkgs/development/python-modules/scikit-base/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "skbase" ]; - meta = with lib; { + meta = { description = "Base classes for creating scikit-learn-like parametric objects, and tools for working with them"; homepage = "https://github.com/sktime/skbase"; - license = licenses.bsd3; - maintainers = with maintainers; [ kirillrdy ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kirillrdy ]; }; } diff --git a/pkgs/development/python-modules/scikit-build-core/default.nix b/pkgs/development/python-modules/scikit-build-core/default.nix index 6cf05ed16ac7..cc493c1a75c3 100644 --- a/pkgs/development/python-modules/scikit-build-core/default.nix +++ b/pkgs/development/python-modules/scikit-build-core/default.nix @@ -91,11 +91,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "scikit_build_core" ]; - meta = with lib; { + meta = { description = "Next generation Python CMake adaptor and Python API for plugins"; homepage = "https://github.com/scikit-build/scikit-build-core"; changelog = "https://github.com/scikit-build/scikit-build-core/blob/${src.tag}/docs/about/changelog.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/scikit-build/default.nix b/pkgs/development/python-modules/scikit-build/default.nix index b39aa25b7a63..7de999bba146 100644 --- a/pkgs/development/python-modules/scikit-build/default.nix +++ b/pkgs/development/python-modules/scikit-build/default.nix @@ -98,14 +98,14 @@ buildPythonPackage rec { "test_sdist_with_symlinks" ]; - meta = with lib; { + meta = { changelog = "https://github.com/scikit-build/scikit-build/blob/${version}/CHANGES.rst"; description = "Improved build system generator for CPython C/C++/Fortran/Cython extensions"; homepage = "https://github.com/scikit-build/scikit-build"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd2 ]; # BSD due to reuses of PyNE code - maintainers = with maintainers; [ FlorianFranzen ]; + maintainers = with lib.maintainers; [ FlorianFranzen ]; }; } diff --git a/pkgs/development/python-modules/scikit-fmm/default.nix b/pkgs/development/python-modules/scikit-fmm/default.nix index 4f60a99adba7..3f9539e2af5f 100644 --- a/pkgs/development/python-modules/scikit-fmm/default.nix +++ b/pkgs/development/python-modules/scikit-fmm/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python extension module which implements the fast marching method"; homepage = "https://github.com/scikit-fmm/scikit-fmm"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/scikit-fuzzy/default.nix b/pkgs/development/python-modules/scikit-fuzzy/default.nix index d83e9044b9f0..09abe6d6ba1a 100644 --- a/pkgs/development/python-modules/scikit-fuzzy/default.nix +++ b/pkgs/development/python-modules/scikit-fuzzy/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "skfuzzy" ]; - meta = with lib; { + meta = { homepage = "https://github.com/scikit-fuzzy/scikit-fuzzy"; description = "Fuzzy logic toolkit for scientific Python"; changelog = "https://github.com/scikit-fuzzy/scikit-fuzzy/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = [ maintainers.bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/scikit-misc/default.nix b/pkgs/development/python-modules/scikit-misc/default.nix index fc400697a2d0..b8c124b57d9a 100644 --- a/pkgs/development/python-modules/scikit-misc/default.nix +++ b/pkgs/development/python-modules/scikit-misc/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "skmisc" ]; - meta = with lib; { + meta = { description = "Miscellaneous tools for scientific computing"; homepage = "https://github.com/has2k1/scikit-misc"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/scikit-posthocs/default.nix b/pkgs/development/python-modules/scikit-posthocs/default.nix index 3c23cf35c6f1..3b8def6e84e1 100644 --- a/pkgs/development/python-modules/scikit-posthocs/default.nix +++ b/pkgs/development/python-modules/scikit-posthocs/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "scikit_posthocs" ]; - meta = with lib; { + meta = { description = "Multiple Pairwise Comparisons (Post Hoc) Tests in Python"; homepage = "https://github.com/maximtrp/scikit-posthocs"; changelog = "https://github.com/maximtrp/scikit-posthocs/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/scikit-rf/default.nix b/pkgs/development/python-modules/scikit-rf/default.nix index 69179a6b7eec..c73edb33ad1e 100644 --- a/pkgs/development/python-modules/scikit-rf/default.nix +++ b/pkgs/development/python-modules/scikit-rf/default.nix @@ -86,11 +86,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "skrf" ]; - meta = with lib; { + meta = { description = "Python library for RF/Microwave engineering"; homepage = "https://scikit-rf.org/"; changelog = "https://github.com/scikit-rf/scikit-rf/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ lugarun ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lugarun ]; }; } diff --git a/pkgs/development/python-modules/scikit-tda/default.nix b/pkgs/development/python-modules/scikit-tda/default.nix index ea4be734701c..aa36b958343c 100644 --- a/pkgs/development/python-modules/scikit-tda/default.nix +++ b/pkgs/development/python-modules/scikit-tda/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { # tests will be included in next release doCheck = false; - meta = with lib; { + meta = { description = "Topological Data Analysis for humans"; homepage = "https://github.com/scikit-tda/scikit-tda"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/scim2-client/default.nix b/pkgs/development/python-modules/scim2-client/default.nix index 8748ccf4e62b..3eb5ec6e4045 100644 --- a/pkgs/development/python-modules/scim2-client/default.nix +++ b/pkgs/development/python-modules/scim2-client/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { werkzeug = [ werkzeug ]; }; - meta = with lib; { + meta = { description = "Pythonically build SCIM requests and parse SCIM responses"; homepage = "https://scim2-client.readthedocs.io/"; changelog = "https://github.com/python-scim/scim2-client/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/scim2-filter-parser/default.nix b/pkgs/development/python-modules/scim2-filter-parser/default.nix index 883e35096994..54c9966c09fb 100644 --- a/pkgs/development/python-modules/scim2-filter-parser/default.nix +++ b/pkgs/development/python-modules/scim2-filter-parser/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { ] ++ optional-dependencies.django-query; - meta = with lib; { + meta = { description = "Customizable parser/transpiler for SCIM2.0 filters"; homepage = "https://github.com/15five/scim2-filter-parser"; changelog = "https://github.com/15five/scim2-filter-parser/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/development/python-modules/scim2-models/default.nix b/pkgs/development/python-modules/scim2-models/default.nix index 2ea8a47a578a..e59b2f721964 100644 --- a/pkgs/development/python-modules/scim2-models/default.nix +++ b/pkgs/development/python-modules/scim2-models/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "scim2_models" ]; - meta = with lib; { + meta = { description = "SCIM2 models serialization and validation with pydantic"; homepage = "https://github.com/python-scim/scim2-models"; changelog = "https://github.com/python-scim/scim2-models/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/scim2-server/default.nix b/pkgs/development/python-modules/scim2-server/default.nix index 3f5ea98884eb..4f5f468fb29b 100644 --- a/pkgs/development/python-modules/scim2-server/default.nix +++ b/pkgs/development/python-modules/scim2-server/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "scim2_server" ]; - meta = with lib; { + meta = { description = "Lightweight SCIM2 server prototype"; homepage = "https://github.com/python-scim/scim2-server"; changelog = "https://github.com/python-scim/scim2-server/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/scim2-tester/default.nix b/pkgs/development/python-modules/scim2-tester/default.nix index e751ae17f007..3e330a00ea4d 100644 --- a/pkgs/development/python-modules/scim2-tester/default.nix +++ b/pkgs/development/python-modules/scim2-tester/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { optional-dependencies.httpx = scim2-client.optional-dependencies.httpx; - meta = with lib; { + meta = { description = "SCIM RFCs server compliance checker"; homepage = "https://scim2-tester.readthedocs.io/"; changelog = "https://github.com/python-scim/scim2-tester/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/scmrepo/default.nix b/pkgs/development/python-modules/scmrepo/default.nix index 0eb3810abcca..8097ae7fa868 100644 --- a/pkgs/development/python-modules/scmrepo/default.nix +++ b/pkgs/development/python-modules/scmrepo/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "scmrepo" ]; - meta = with lib; { + meta = { description = "SCM wrapper and fsspec filesystem"; homepage = "https://github.com/iterative/scmrepo"; changelog = "https://github.com/iterative/scmrepo/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/scooby/default.nix b/pkgs/development/python-modules/scooby/default.nix index 0649f928efd0..b87c77e4cb8a 100644 --- a/pkgs/development/python-modules/scooby/default.nix +++ b/pkgs/development/python-modules/scooby/default.nix @@ -65,12 +65,12 @@ buildPythonPackage rec { "test_auto_report" ]; - meta = with lib; { + meta = { changelog = "https://github.com/banesullivan/scooby/releases/tag/v${version}"; description = "Lightweight tool for reporting Python package versions and hardware resources"; mainProgram = "scooby"; homepage = "https://github.com/banesullivan/scooby"; - license = licenses.mit; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/python-modules/scour/default.nix b/pkgs/development/python-modules/scour/default.nix index 815a267c0391..ffda524843d5 100644 --- a/pkgs/development/python-modules/scour/default.nix +++ b/pkgs/development/python-modules/scour/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { # No tests included in archive doCheck = false; - meta = with lib; { + meta = { description = "SVG Optimizer / Cleaner"; mainProgram = "scour"; homepage = "https://github.com/scour-project/scour"; - license = licenses.asl20; - maintainers = with maintainers; [ worldofpeace ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ worldofpeace ]; }; } diff --git a/pkgs/development/python-modules/scp/default.nix b/pkgs/development/python-modules/scp/default.nix index cf95431301a7..fb448a5b17ba 100644 --- a/pkgs/development/python-modules/scp/default.nix +++ b/pkgs/development/python-modules/scp/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "scp" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jbardin/scp.py"; description = "SCP module for paramiko"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ xnaveira ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ xnaveira ]; }; } diff --git a/pkgs/development/python-modules/scramp/default.nix b/pkgs/development/python-modules/scramp/default.nix index 63014b75aa34..165b4b0b795e 100644 --- a/pkgs/development/python-modules/scramp/default.nix +++ b/pkgs/development/python-modules/scramp/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { disabledTests = [ "test_readme" ]; - meta = with lib; { + meta = { description = "Implementation of the SCRAM authentication protocol"; homepage = "https://github.com/tlocke/scramp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/scrapy-fake-useragent/default.nix b/pkgs/development/python-modules/scrapy-fake-useragent/default.nix index 7f0b4ab3db53..04ea11279790 100644 --- a/pkgs/development/python-modules/scrapy-fake-useragent/default.nix +++ b/pkgs/development/python-modules/scrapy-fake-useragent/default.nix @@ -53,11 +53,11 @@ buildPythonPackage { "test_random_ua_set_on_exception" ]; - meta = with lib; { + meta = { description = "Random User-Agent middleware based on fake-useragent"; homepage = "https://github.com/alecxe/scrapy-fake-useragent"; changelog = "https://github.com/alecxe/scrapy-fake-useragent/blob/master/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/scrapy/default.nix b/pkgs/development/python-modules/scrapy/default.nix index a3177cf243d1..c84341738cae 100644 --- a/pkgs/development/python-modules/scrapy/default.nix +++ b/pkgs/development/python-modules/scrapy/default.nix @@ -155,7 +155,7 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "High-level web crawling and web scraping framework"; mainProgram = "scrapy"; longDescription = '' @@ -165,7 +165,7 @@ buildPythonPackage rec { ''; homepage = "https://scrapy.org/"; changelog = "https://github.com/scrapy/scrapy/raw/${src.tag}/docs/news.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ vinnymeller ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vinnymeller ]; }; } diff --git a/pkgs/development/python-modules/screed/default.nix b/pkgs/development/python-modules/screed/default.nix index 68dfdfb88c76..a37670fb5cb6 100644 --- a/pkgs/development/python-modules/screed/default.nix +++ b/pkgs/development/python-modules/screed/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "Test_fq_shell_command" ]; - meta = with lib; { + meta = { description = "Simple read-only sequence database, designed for short reads"; mainProgram = "screed"; homepage = "https://pypi.org/project/screed/"; - maintainers = with maintainers; [ luizirber ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ luizirber ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/screeninfo/default.nix b/pkgs/development/python-modules/screeninfo/default.nix index 0b5925222c5b..508d4d3e0f1a 100644 --- a/pkgs/development/python-modules/screeninfo/default.nix +++ b/pkgs/development/python-modules/screeninfo/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "screeninfo" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Fetch location and size of physical screens"; homepage = "https://github.com/rr-/screeninfo"; - license = licenses.mit; - maintainers = with maintainers; [ nickhu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickhu ]; }; } diff --git a/pkgs/development/python-modules/screenlogicpy/default.nix b/pkgs/development/python-modules/screenlogicpy/default.nix index d70c964cf901..317480899e34 100644 --- a/pkgs/development/python-modules/screenlogicpy/default.nix +++ b/pkgs/development/python-modules/screenlogicpy/default.nix @@ -52,12 +52,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "screenlogicpy" ]; - meta = with lib; { + meta = { description = "Python interface for Pentair Screenlogic devices"; mainProgram = "screenlogicpy"; homepage = "https://github.com/dieselrabbit/screenlogicpy"; changelog = "https://github.com/dieselrabbit/screenlogicpy/releases/tag/${src.tag}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/scripttest/default.nix b/pkgs/development/python-modules/scripttest/default.nix index 800c669a8c07..9fd6b8e88c28 100644 --- a/pkgs/development/python-modules/scripttest/default.nix +++ b/pkgs/development/python-modules/scripttest/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # Tests are not included. See https://github.com/pypa/scripttest/issues/11 doCheck = false; - meta = with lib; { + meta = { description = "Library for testing interactive command-line applications"; homepage = "https://pypi.org/project/scripttest/"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sdbus-networkmanager/default.nix b/pkgs/development/python-modules/sdbus-networkmanager/default.nix index dccfa30319b9..ca783eb6cf2a 100644 --- a/pkgs/development/python-modules/sdbus-networkmanager/default.nix +++ b/pkgs/development/python-modules/sdbus-networkmanager/default.nix @@ -20,11 +20,11 @@ buildPythonPackage { hash = "sha256-NXKsOoGJxoPsBBassUh2F3Oo8Iga09eLbW9oZO/5xQs="; }; - meta = with lib; { + meta = { description = "Python-sdbus binds for NetworkManager"; homepage = "https://github.com/python-sdbus/python-sdbus-networkmanager"; - license = licenses.lgpl2; - maintainers = with maintainers; [ camelpunch ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ camelpunch ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/sdbus/default.nix b/pkgs/development/python-modules/sdbus/default.nix index 3af1b04b1aad..73e56df93037 100644 --- a/pkgs/development/python-modules/sdbus/default.nix +++ b/pkgs/development/python-modules/sdbus/default.nix @@ -22,11 +22,11 @@ buildPythonPackage { hash = "sha256-rjkVqz4/ChFmMuHlh235krlSnoKwtJIAbrIvh5Htbes="; }; - meta = with lib; { + meta = { description = "Modern Python library for D-Bus"; homepage = "https://github.com/python-sdbus/python-sdbus"; - license = licenses.lgpl2; - maintainers = with maintainers; [ camelpunch ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ camelpunch ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/sdds/default.nix b/pkgs/development/python-modules/sdds/default.nix index 9cc641d286cc..683b19acce34 100644 --- a/pkgs/development/python-modules/sdds/default.nix +++ b/pkgs/development/python-modules/sdds/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sdds" ]; - meta = with lib; { + meta = { description = "Module to handle SDDS files"; homepage = "https://pylhc.github.io/sdds/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/sdnotify/default.nix b/pkgs/development/python-modules/sdnotify/default.nix index 08ef15ac3dcf..6f775615c85b 100644 --- a/pkgs/development/python-modules/sdnotify/default.nix +++ b/pkgs/development/python-modules/sdnotify/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { inherit pname version; }; - meta = with lib; { + meta = { description = "Pure Python implementation of systemd's service notification protocol"; homepage = "https://github.com/bb4242/sdnotify"; - license = licenses.mit; - maintainers = with maintainers; [ pmiddend ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pmiddend ]; }; } diff --git a/pkgs/development/python-modules/seaborn/default.nix b/pkgs/development/python-modules/seaborn/default.nix index d9420b9ce753..06b5254c9efc 100644 --- a/pkgs/development/python-modules/seaborn/default.nix +++ b/pkgs/development/python-modules/seaborn/default.nix @@ -79,10 +79,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "seaborn" ]; - meta = with lib; { + meta = { description = "Statistical data visualization"; homepage = "https://seaborn.pydata.org/"; changelog = "https://github.com/mwaskom/seaborn/blob/master/doc/whatsnew/${src.rev}.rst"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; }; } diff --git a/pkgs/development/python-modules/seabreeze/default.nix b/pkgs/development/python-modules/seabreeze/default.nix index 1c5972d3144c..f9f28f87b766 100644 --- a/pkgs/development/python-modules/seabreeze/default.nix +++ b/pkgs/development/python-modules/seabreeze/default.nix @@ -86,10 +86,10 @@ buildPythonPackage rec { setupPyBuildFlags = [ "--without-cseabreeze" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ap--/python-seabreeze"; description = "Python library to access Ocean Optics spectrometers"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/seasonal/default.nix b/pkgs/development/python-modules/seasonal/default.nix index 2f24a5a96417..368182ffbdd9 100644 --- a/pkgs/development/python-modules/seasonal/default.nix +++ b/pkgs/development/python-modules/seasonal/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { ] ++ lib.concatAttrValues optional-dependencies; - meta = with lib; { + meta = { description = "Robustly estimate trend and periodicity in a timeseries"; homepage = "https://github.com/welch/seasonal"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/seatconnect/default.nix b/pkgs/development/python-modules/seatconnect/default.nix index 377293d4532c..7f1fec0cef0b 100644 --- a/pkgs/development/python-modules/seatconnect/default.nix +++ b/pkgs/development/python-modules/seatconnect/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "seatconnect" ]; - meta = with lib; { + meta = { description = "Python module to communicate with Seat Connect"; homepage = "https://github.com/farfar/seatconnect"; changelog = "https://github.com/Farfar/seatconnect/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/seccomp/default.nix b/pkgs/development/python-modules/seccomp/default.nix index 8614915e1ff4..951e4b31722a 100644 --- a/pkgs/development/python-modules/seccomp/default.nix +++ b/pkgs/development/python-modules/seccomp/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "seccomp" ]; - meta = with lib; { + meta = { description = "Python bindings for libseccomp"; - license = with licenses; [ lgpl21 ]; - maintainers = with maintainers; [ thoughtpolice ]; + license = with lib.licenses; [ lgpl21 ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/secretstorage/default.nix b/pkgs/development/python-modules/secretstorage/default.nix index 8e59e1efe957..9868f18fbc06 100644 --- a/pkgs/development/python-modules/secretstorage/default.nix +++ b/pkgs/development/python-modules/secretstorage/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "secretstorage" ]; - meta = with lib; { + meta = { description = "Python bindings to FreeDesktop.org Secret Service API"; homepage = "https://github.com/mitya57/secretstorage"; - license = licenses.bsd3; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/development/python-modules/sectools/default.nix b/pkgs/development/python-modules/sectools/default.nix index b2d2d2ee5dc8..6a911f0393b9 100644 --- a/pkgs/development/python-modules/sectools/default.nix +++ b/pkgs/development/python-modules/sectools/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sectools" ]; - meta = with lib; { + meta = { description = "Library containing functions to write security tools"; homepage = "https://github.com/p0dalirius/sectools"; changelog = "https://github.com/p0dalirius/sectools/releases/tag/${src.tag}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/secure/default.nix b/pkgs/development/python-modules/secure/default.nix index 982e53783f92..0e1cd5f1d2e9 100644 --- a/pkgs/development/python-modules/secure/default.nix +++ b/pkgs/development/python-modules/secure/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "secure" ]; - meta = with lib; { + meta = { description = "Adds optional security headers and cookie attributes for Python web frameworks"; homepage = "https://github.com/TypeError/secure.py"; changelog = "https://github.com/TypeError/secure/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/securesystemslib/default.nix b/pkgs/development/python-modules/securesystemslib/default.nix index b31f840d1163..1e7bb4d9d8c4 100644 --- a/pkgs/development/python-modules/securesystemslib/default.nix +++ b/pkgs/development/python-modules/securesystemslib/default.nix @@ -77,11 +77,11 @@ buildPythonPackage rec { "securesystemslib/_vendor/" ]; - meta = with lib; { + meta = { description = "Cryptographic and general-purpose routines"; homepage = "https://github.com/secure-systems-lab/securesystemslib"; changelog = "https://github.com/secure-systems-lab/securesystemslib/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/securetar/default.nix b/pkgs/development/python-modules/securetar/default.nix index 7c38302a6e81..e69c7406abbc 100644 --- a/pkgs/development/python-modules/securetar/default.nix +++ b/pkgs/development/python-modules/securetar/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "securetar" ]; - meta = with lib; { + meta = { description = "Module to handle tarfile backups"; homepage = "https://github.com/pvizeli/securetar"; changelog = "https://github.com/pvizeli/securetar/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/securityreporter/default.nix b/pkgs/development/python-modules/securityreporter/default.nix index a5148e072d78..0eed5cf1a62d 100644 --- a/pkgs/development/python-modules/securityreporter/default.nix +++ b/pkgs/development/python-modules/securityreporter/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "tests/functional/" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Reporter API"; homepage = "https://github.com/dongit-org/python-reporter"; changelog = "https://github.com/dongit-org/python-reporter/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/seedir/default.nix b/pkgs/development/python-modules/seedir/default.nix index ea29422911f8..8a2d263ad2f5 100644 --- a/pkgs/development/python-modules/seedir/default.nix +++ b/pkgs/development/python-modules/seedir/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "seedir" ]; - meta = with lib; { + meta = { description = "Module for for creating, editing, and reading folder tree diagrams"; homepage = "https://github.com/earnestt1234/seedir"; changelog = "https://github.com/earnestt1234/seedir/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "seedir"; }; } diff --git a/pkgs/development/python-modules/seekpath/default.nix b/pkgs/development/python-modules/seekpath/default.nix index 257955ed8d5c..7954f569db90 100644 --- a/pkgs/development/python-modules/seekpath/default.nix +++ b/pkgs/development/python-modules/seekpath/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.bz; - meta = with lib; { + meta = { description = "Module to obtain and visualize band paths in the Brillouin zone of crystal structures"; homepage = "https://github.com/giovannipizzi/seekpath"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/segments/default.nix b/pkgs/development/python-modules/segments/default.nix index 58c6d711cbba..53056bbcdd13 100644 --- a/pkgs/development/python-modules/segments/default.nix +++ b/pkgs/development/python-modules/segments/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pytest-mock ]; - meta = with lib; { + meta = { changelog = "https://github.com/cldf/segments/blob/${src.rev}/CHANGES.md"; description = "Unicode Standard tokenization routines and orthography profile segmentation"; mainProgram = "segments"; homepage = "https://github.com/cldf/segments"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/segno/default.nix b/pkgs/development/python-modules/segno/default.nix index bce0dbeb94bb..58b621416aff 100644 --- a/pkgs/development/python-modules/segno/default.nix +++ b/pkgs/development/python-modules/segno/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "segno" ]; - meta = with lib; { + meta = { changelog = "https://github.com/heuer/segno/releases/tag/${src.tag}"; description = "QR Code and Micro QR Code encoder"; mainProgram = "segno"; homepage = "https://github.com/heuer/segno/"; - license = licenses.bsd3; - maintainers = with maintainers; [ phaer ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/development/python-modules/selenium-wire/default.nix b/pkgs/development/python-modules/selenium-wire/default.nix index 5c4fb3102940..3219692516f4 100644 --- a/pkgs/development/python-modules/selenium-wire/default.nix +++ b/pkgs/development/python-modules/selenium-wire/default.nix @@ -71,8 +71,8 @@ buildPythonPackage rec { description = "Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser"; homepage = "https://github.com/wkeeling/selenium-wire"; changelog = "https://github.com/wkeeling/selenium-wire/blob/${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; broken = versionAtLeast blinker.version "1.8"; }; } diff --git a/pkgs/development/python-modules/selenium/default.nix b/pkgs/development/python-modules/selenium/default.nix index e33fc961c8d4..87b81fa2006b 100644 --- a/pkgs/development/python-modules/selenium/default.nix +++ b/pkgs/development/python-modules/selenium/default.nix @@ -80,10 +80,10 @@ buildPythonPackage rec { testing-vaultwarden = nixosTests.vaultwarden; }; - meta = with lib; { + meta = { description = "Bindings for Selenium WebDriver"; homepage = "https://selenium.dev/"; - license = licenses.asl20; - maintainers = with maintainers; [ jraygauthier ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/development/python-modules/semantic-version/default.nix b/pkgs/development/python-modules/semantic-version/default.nix index 26f33ea2a368..f621998accd2 100644 --- a/pkgs/development/python-modules/semantic-version/default.nix +++ b/pkgs/development/python-modules/semantic-version/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "semantic_version" ]; - meta = with lib; { + meta = { description = "Library implementing the 'SemVer' scheme"; homepage = "https://github.com/rbarrois/python-semanticversion/"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ layus makefu ]; diff --git a/pkgs/development/python-modules/semaphore-bot/default.nix b/pkgs/development/python-modules/semaphore-bot/default.nix index a0989fda28dc..53b4b92c5e48 100644 --- a/pkgs/development/python-modules/semaphore-bot/default.nix +++ b/pkgs/development/python-modules/semaphore-bot/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "semaphore" ]; - meta = with lib; { + meta = { description = "Simple rule-based bot library for Signal Private Messenger"; homepage = "https://github.com/lwesterhof/semaphore"; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ onny ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/semgrep/common.nix b/pkgs/development/python-modules/semgrep/common.nix index 2f88fad424b5..6ff3fd04259b 100644 --- a/pkgs/development/python-modules/semgrep/common.nix +++ b/pkgs/development/python-modules/semgrep/common.nix @@ -41,7 +41,7 @@ rec { }; }; - meta = with lib; { + meta = { homepage = "https://semgrep.dev/"; downloadPage = "https://github.com/semgrep/semgrep/"; changelog = "https://github.com/semgrep/semgrep/blob/v${version}/CHANGELOG.md"; @@ -53,8 +53,8 @@ rec { uploaded. Its rules look like the code you already write; no abstract syntax trees, regex wrestling, or painful DSLs. ''; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ jk ambroisie ]; diff --git a/pkgs/development/python-modules/semver/default.nix b/pkgs/development/python-modules/semver/default.nix index 0ea077a03505..26b678caf3a7 100644 --- a/pkgs/development/python-modules/semver/default.nix +++ b/pkgs/development/python-modules/semver/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "semver" ]; - meta = with lib; { + meta = { description = "Python package to work with Semantic Versioning (http://semver.org/)"; homepage = "https://python-semver.readthedocs.io/"; changelog = "https://github.com/python-semver/python-semver/releases/tag/3.0.0"; - license = licenses.bsd3; - maintainers = with maintainers; [ np ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ np ]; mainProgram = "pysemver"; }; } diff --git a/pkgs/development/python-modules/send2trash/default.nix b/pkgs/development/python-modules/send2trash/default.nix index ef0cef56e59d..cfd3ad98f4b9 100644 --- a/pkgs/development/python-modules/send2trash/default.nix +++ b/pkgs/development/python-modules/send2trash/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Send file to trash natively under macOS, Windows and Linux"; mainProgram = "send2trash"; homepage = "https://github.com/hsoft/send2trash"; changelog = "https://github.com/arsenetar/send2trash/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sendgrid/default.nix b/pkgs/development/python-modules/sendgrid/default.nix index 84a8272e8c39..006dae775b67 100644 --- a/pkgs/development/python-modules/sendgrid/default.nix +++ b/pkgs/development/python-modules/sendgrid/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sendgrid" ]; - meta = with lib; { + meta = { description = "Python client for SendGrid"; homepage = "https://github.com/sendgrid/sendgrid-python"; changelog = "https://github.com/sendgrid/sendgrid-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sensai-utils/default.nix b/pkgs/development/python-modules/sensai-utils/default.nix index fce62362d9c9..8364f07a5577 100644 --- a/pkgs/development/python-modules/sensai-utils/default.nix +++ b/pkgs/development/python-modules/sensai-utils/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Utilities from sensAI, the Python library for sensible AI"; homepage = "https://github.com/opcode81/sensAI-utils"; changelog = "https://github.com/opcode81/sensAI-utils/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/sense-energy/default.nix b/pkgs/development/python-modules/sense-energy/default.nix index 47f09ceebb8a..642c03e969ea 100644 --- a/pkgs/development/python-modules/sense-energy/default.nix +++ b/pkgs/development/python-modules/sense-energy/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sense_energy" ]; - meta = with lib; { + meta = { description = "API for the Sense Energy Monitor"; homepage = "https://github.com/scottbonline/sense"; changelog = "https://github.com/scottbonline/sense/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/sensirion-ble/default.nix b/pkgs/development/python-modules/sensirion-ble/default.nix index 19159e7d734f..86d7d9c841d2 100644 --- a/pkgs/development/python-modules/sensirion-ble/default.nix +++ b/pkgs/development/python-modules/sensirion-ble/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sensirion_ble" ]; - meta = with lib; { + meta = { description = "Parser for Sensirion BLE devices"; homepage = "https://github.com/akx/sensirion-ble"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sensor-state-data/default.nix b/pkgs/development/python-modules/sensor-state-data/default.nix index 3576f71ef934..4d473785437d 100644 --- a/pkgs/development/python-modules/sensor-state-data/default.nix +++ b/pkgs/development/python-modules/sensor-state-data/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sensor_state_data" ]; - meta = with lib; { + meta = { description = "Models for storing and converting Sensor Data state"; homepage = "https://github.com/bluetooth-devices/sensor-state-data"; changelog = "https://github.com/Bluetooth-Devices/sensor-state-data/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sensorpro-ble/default.nix b/pkgs/development/python-modules/sensorpro-ble/default.nix index 028c78b11b39..0aa5e4edf952 100644 --- a/pkgs/development/python-modules/sensorpro-ble/default.nix +++ b/pkgs/development/python-modules/sensorpro-ble/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sensorpro_ble" ]; - meta = with lib; { + meta = { description = "Library for Sensorpro BLE devices"; homepage = "https://github.com/Bluetooth-Devices/sensorpro-ble"; changelog = "https://github.com/Bluetooth-Devices/sensorpro-ble/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sensorpush-ble/default.nix b/pkgs/development/python-modules/sensorpush-ble/default.nix index e1985dd660f7..cda0981eee4e 100644 --- a/pkgs/development/python-modules/sensorpush-ble/default.nix +++ b/pkgs/development/python-modules/sensorpush-ble/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sensorpush_ble" ]; - meta = with lib; { + meta = { description = "Library for SensorPush BLE devices"; homepage = "https://github.com/Bluetooth-Devices/sensorpush-ble"; changelog = "https://github.com/Bluetooth-Devices/sensorpush-ble/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sentence-splitter/default.nix b/pkgs/development/python-modules/sentence-splitter/default.nix index 1b88987698ce..ea4289dc46bd 100644 --- a/pkgs/development/python-modules/sentence-splitter/default.nix +++ b/pkgs/development/python-modules/sentence-splitter/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sentence_splitter" ]; - meta = with lib; { + meta = { description = "Text to sentence splitter using heuristic algorithm by Philipp Koehn and Josh Schroeder"; homepage = "https://github.com/mediacloud/sentence-splitter"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sentinel/default.nix b/pkgs/development/python-modules/sentinel/default.nix index e89a52fa0fbb..21e06e926006 100644 --- a/pkgs/development/python-modules/sentinel/default.nix +++ b/pkgs/development/python-modules/sentinel/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { hash = "sha256-GQko+ZUa9ulKH4Tu/K7XkcKAl90VK4jpiJBr4wBFH9I="; }; - meta = with lib; { + meta = { description = "Create sentinel and singleton objects"; homepage = "https://github.com/eddieantonio/sentinel"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sentinels/default.nix b/pkgs/development/python-modules/sentinels/default.nix index 8a7a2328f9b4..d4a17f2a458e 100644 --- a/pkgs/development/python-modules/sentinels/default.nix +++ b/pkgs/development/python-modules/sentinels/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sentinels" ]; - meta = with lib; { + meta = { homepage = "https://github.com/vmalloc/sentinels/"; description = "Various objects to denote special meanings in python"; - license = licenses.bsd3; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix index 0745d055e92a..8e1c429a260f 100644 --- a/pkgs/development/python-modules/sentry-sdk/default.nix +++ b/pkgs/development/python-modules/sentry-sdk/default.nix @@ -219,11 +219,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sentry_sdk" ]; - meta = with lib; { + meta = { description = "Official Python SDK for Sentry.io"; homepage = "https://github.com/getsentry/sentry-python"; changelog = "https://github.com/getsentry/sentry-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/sepaxml/default.nix b/pkgs/development/python-modules/sepaxml/default.nix index 3be6874fb055..958657a514cd 100644 --- a/pkgs/development/python-modules/sepaxml/default.nix +++ b/pkgs/development/python-modules/sepaxml/default.nix @@ -35,9 +35,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "sepaxml" ]; - meta = with lib; { + meta = { description = "SEPA Direct Debit XML generation in python"; homepage = "https://github.com/raphaelm/python-sepaxml/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/seqdiag/default.nix b/pkgs/development/python-modules/seqdiag/default.nix index 6960ea7fd2b4..969c51902398 100644 --- a/pkgs/development/python-modules/seqdiag/default.nix +++ b/pkgs/development/python-modules/seqdiag/default.nix @@ -33,13 +33,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "seqdiag" ]; - meta = with lib; { + meta = { description = "Generate sequence-diagram image from spec-text file (similar to Graphviz)"; homepage = "http://blockdiag.com/"; changelog = "https://github.com/blockdiag/seqdiag/blob/${version}/CHANGES.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "seqdiag"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/seqeval/default.nix b/pkgs/development/python-modules/seqeval/default.nix index a8a06ed89ab2..d473a7400f15 100644 --- a/pkgs/development/python-modules/seqeval/default.nix +++ b/pkgs/development/python-modules/seqeval/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { "test_by_ground_truth" ]; - meta = with lib; { + meta = { description = "Python framework for sequence labeling evaluation"; homepage = "https://github.com/chakki-works/seqeval"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/serialio/default.nix b/pkgs/development/python-modules/serialio/default.nix index 3d2b91e107a1..2cf0e2e1d819 100644 --- a/pkgs/development/python-modules/serialio/default.nix +++ b/pkgs/development/python-modules/serialio/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "serialio" ]; - meta = with lib; { + meta = { description = "Library for concurrency agnostic serial communication"; homepage = "https://github.com/tiagocoutinho/serialio"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/serializable/default.nix b/pkgs/development/python-modules/serializable/default.nix index 0dd160f37580..fc4e8fe581c3 100644 --- a/pkgs/development/python-modules/serializable/default.nix +++ b/pkgs/development/python-modules/serializable/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { pythonImportsCheck = [ "serializable" ]; - meta = with lib; { + meta = { description = "Base class with serialization methods for user-defined Python objects"; homepage = "https://github.com/iskandr/serializable"; - license = licenses.asl20; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/serpent/default.nix b/pkgs/development/python-modules/serpent/default.nix index 9a1708593f32..d09851da5217 100644 --- a/pkgs/development/python-modules/serpent/default.nix +++ b/pkgs/development/python-modules/serpent/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "serpent" ]; - meta = with lib; { + meta = { description = "Simple serialization library based on ast.literal_eval"; homepage = "https://github.com/irmen/Serpent"; changelog = "https://github.com/irmen/Serpent/releases/tag/serpent-${version}"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/serpy/default.nix b/pkgs/development/python-modules/serpy/default.nix index 10f056184972..190cbd29f054 100644 --- a/pkgs/development/python-modules/serpy/default.nix +++ b/pkgs/development/python-modules/serpy/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "serpy" ]; - meta = with lib; { + meta = { description = "Ridiculously fast object serialization"; homepage = "https://github.com/clarkduvall/serpy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/servefile/default.nix b/pkgs/development/python-modules/servefile/default.nix index 67cd43a9094e..612f647686f8 100644 --- a/pkgs/development/python-modules/servefile/default.nix +++ b/pkgs/development/python-modules/servefile/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "servefile" ]; - meta = with lib; { + meta = { description = "Serve files from shell via a small HTTP server"; mainProgram = "servefile"; homepage = "https://github.com/sebageek/servefile"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/serverlessrepo/default.nix b/pkgs/development/python-modules/serverlessrepo/default.nix index d70d38f0d451..274bba2d326a 100644 --- a/pkgs/development/python-modules/serverlessrepo/default.nix +++ b/pkgs/development/python-modules/serverlessrepo/default.nix @@ -43,14 +43,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "serverlessrepo" ]; - meta = with lib; { + meta = { homepage = "https://github.com/awslabs/aws-serverlessrepo-python"; description = "Helpers for working with the AWS Serverless Application Repository"; longDescription = '' A Python library with convenience helpers for working with the AWS Serverless Application Repository. ''; - license = licenses.asl20; - maintainers = with maintainers; [ dhkl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dhkl ]; }; } diff --git a/pkgs/development/python-modules/service-identity/default.nix b/pkgs/development/python-modules/service-identity/default.nix index 55a101d26f90..8c6a6742fb19 100644 --- a/pkgs/development/python-modules/service-identity/default.nix +++ b/pkgs/development/python-modules/service-identity/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "service_identity" ]; - meta = with lib; { + meta = { description = "Service identity verification for pyOpenSSL"; homepage = "https://service-identity.readthedocs.io"; changelog = "https://github.com/pyca/service-identity/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/setupmeta/default.nix b/pkgs/development/python-modules/setupmeta/default.nix index 5a622073b990..206fd47d107b 100644 --- a/pkgs/development/python-modules/setupmeta/default.nix +++ b/pkgs/development/python-modules/setupmeta/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "setupmeta" ]; - meta = with lib; { + meta = { description = "Python module to simplify setup.py files"; homepage = "https://github.com/codrsquad/setupmeta"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/setuptools-changelog-shortener/default.nix b/pkgs/development/python-modules/setuptools-changelog-shortener/default.nix index fbabcd25700a..70a64e4d1ef8 100644 --- a/pkgs/development/python-modules/setuptools-changelog-shortener/default.nix +++ b/pkgs/development/python-modules/setuptools-changelog-shortener/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "setuptools_changelog_shortener" ]; - meta = with lib; { + meta = { description = "Setuptools-changelog-shortener: add only newest changelog entries to long_description"; homepage = "https://github.com/fschulze/setuptools-changelog-shortener"; changelog = "https://github.com/fschulze/setuptools-changelog-shortener/blob/${src.rev}/README.rst#changelog"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/setuptools-declarative-requirements/default.nix b/pkgs/development/python-modules/setuptools-declarative-requirements/default.nix index 694be226df0d..4c7ee4a66f4c 100644 --- a/pkgs/development/python-modules/setuptools-declarative-requirements/default.nix +++ b/pkgs/development/python-modules/setuptools-declarative-requirements/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "declarative_requirements" ]; - meta = with lib; { + meta = { homepage = "https://github.com/s0undt3ch/setuptools-declarative-requirements"; description = "Declarative setuptools Config Requirements Files Support"; - license = licenses.asl20; - maintainers = [ maintainers.austinbutler ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.austinbutler ]; }; } diff --git a/pkgs/development/python-modules/setuptools-generate/default.nix b/pkgs/development/python-modules/setuptools-generate/default.nix index d87a3ca4a554..8d27256bf21f 100644 --- a/pkgs/development/python-modules/setuptools-generate/default.nix +++ b/pkgs/development/python-modules/setuptools-generate/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "setuptools_generate" ]; - meta = with lib; { + meta = { description = "Generate shell completions and man page when building a python package"; homepage = "https://github.com/Freed-Wu/setuptools-generate"; changelog = "https://github.com/Freed-Wu/setuptools-generate/blob/${src.rev}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/setuptools-git-versioning/default.nix b/pkgs/development/python-modules/setuptools-git-versioning/default.nix index 993ce0323722..37708bda7d3d 100644 --- a/pkgs/development/python-modules/setuptools-git-versioning/default.nix +++ b/pkgs/development/python-modules/setuptools-git-versioning/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { "test_config_not_used" ]; - meta = with lib; { + meta = { description = "Use git repo data (latest tag, current commit hash, etc) for building a version number according PEP-440"; mainProgram = "setuptools-git-versioning"; homepage = "https://github.com/dolfinus/setuptools-git-versioning"; changelog = "https://github.com/dolfinus/setuptools-git-versioning/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/setuptools-lint/default.nix b/pkgs/development/python-modules/setuptools-lint/default.nix index 3c89bdecda35..8cb3496bd8a6 100644 --- a/pkgs/development/python-modules/setuptools-lint/default.nix +++ b/pkgs/development/python-modules/setuptools-lint/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ pylint ]; - meta = with lib; { + meta = { description = "Package to expose pylint as a lint command into setup.py"; homepage = "https://github.com/johnnoone/setuptools-pylint"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ nickhu ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ nickhu ]; }; } diff --git a/pkgs/development/python-modules/setuptools-odoo/default.nix b/pkgs/development/python-modules/setuptools-odoo/default.nix index eea6e2bc4d39..996581f73b48 100644 --- a/pkgs/development/python-modules/setuptools-odoo/default.nix +++ b/pkgs/development/python-modules/setuptools-odoo/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { "test_odoo_addon5_wheel" ]; - meta = with lib; { + meta = { description = "Setuptools plugin for Odoo addons"; homepage = "https://github.com/acsone/setuptools-odoo"; changelog = "https://github.com/acsone/setuptools-odoo/blob/${version}/CHANGES.rst"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/setuptools-rust/default.nix b/pkgs/development/python-modules/setuptools-rust/default.nix index 087e5026c33b..d7ff9f54ee3c 100644 --- a/pkgs/development/python-modules/setuptools-rust/default.nix +++ b/pkgs/development/python-modules/setuptools-rust/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "Setuptools plugin for Rust support"; homepage = "https://github.com/PyO3/setuptools-rust"; changelog = "https://github.com/PyO3/setuptools-rust/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/setuptools-scm-git-archive/default.nix b/pkgs/development/python-modules/setuptools-scm-git-archive/default.nix index cbf498154e96..9ab25d05ad37 100644 --- a/pkgs/development/python-modules/setuptools-scm-git-archive/default.nix +++ b/pkgs/development/python-modules/setuptools-scm-git-archive/default.nix @@ -32,7 +32,7 @@ buildPythonPackage rec { meta = with lib; { description = "setuptools_scm plugin for git archives"; homepage = "https://github.com/Changaco/setuptools_scm_git_archive"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # https://github.com/Changaco/setuptools_scm_git_archive/pull/22 broken = versionAtLeast setuptools-scm.version "8"; diff --git a/pkgs/development/python-modules/setuptools-scm/default.nix b/pkgs/development/python-modules/setuptools-scm/default.nix index a576af2ce364..bde5a8ac60a7 100644 --- a/pkgs/development/python-modules/setuptools-scm/default.nix +++ b/pkgs/development/python-modules/setuptools-scm/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { changelog = "https://github.com/pypa/setuptools_scm/blob/${version}/CHANGELOG.md"; homepage = "https://github.com/pypa/setuptools_scm/"; description = "Handles managing your python package versions in scm metadata"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/setuptools-trial/default.nix b/pkgs/development/python-modules/setuptools-trial/default.nix index 3d1bd90167dc..9dc6b77404ab 100644 --- a/pkgs/development/python-modules/setuptools-trial/default.nix +++ b/pkgs/development/python-modules/setuptools-trial/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "setuptools_trial" ]; - meta = with lib; { + meta = { description = "Setuptools plugin that makes unit tests execute with trial instead of pyunit"; homepage = "https://github.com/rutsky/setuptools-trial"; - license = licenses.bsd2; - maintainers = with maintainers; [ ryansydnor ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ryansydnor ]; }; } diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index 03156d16334c..a8cb29116308 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -45,8 +45,8 @@ buildPythonPackage rec { changelog = "https://setuptools.pypa.io/en/stable/history.html#v${ replaceStrings [ "." ] [ "-" ] version }"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; platforms = python.meta.platforms; - teams = [ teams.python ]; + teams = [ lib.teams.python ]; }; } diff --git a/pkgs/development/python-modules/seventeentrack/default.nix b/pkgs/development/python-modules/seventeentrack/default.nix index a40cc9c78bda..f88f454a80ae 100644 --- a/pkgs/development/python-modules/seventeentrack/default.nix +++ b/pkgs/development/python-modules/seventeentrack/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "seventeentrack" ]; - meta = with lib; { + meta = { description = "Python library to track package info from 17track.com"; homepage = "https://github.com/McSwindler/seventeentrack"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sexpdata/default.nix b/pkgs/development/python-modules/sexpdata/default.nix index 4eb5d9f81322..3cb7f379e93c 100644 --- a/pkgs/development/python-modules/sexpdata/default.nix +++ b/pkgs/development/python-modules/sexpdata/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sexpdata" ]; - meta = with lib; { + meta = { description = "S-expression parser for Python"; homepage = "https://github.com/jd-boyd/sexpdata"; changelog = "https://github.com/jd-boyd/sexpdata/releases/tag/v${version}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sgmllib3k/default.nix b/pkgs/development/python-modules/sgmllib3k/default.nix index 1670a533e664..9fa707ea0efc 100644 --- a/pkgs/development/python-modules/sgmllib3k/default.nix +++ b/pkgs/development/python-modules/sgmllib3k/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sgmllib" ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/sgmllib3k/"; description = "Python 3 port of sgmllib"; - license = licenses.bsd2; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/sgp4/default.nix b/pkgs/development/python-modules/sgp4/default.nix index cea6aa268dee..826d7f9d04a4 100644 --- a/pkgs/development/python-modules/sgp4/default.nix +++ b/pkgs/development/python-modules/sgp4/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sgp4" ]; - meta = with lib; { + meta = { homepage = "https://github.com/brandon-rhodes/python-sgp4"; description = "Python version of the SGP4 satellite position library"; - license = licenses.mit; - maintainers = with maintainers; [ zane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zane ]; }; } diff --git a/pkgs/development/python-modules/sh/default.nix b/pkgs/development/python-modules/sh/default.nix index d128101ca334..0def8696509e 100644 --- a/pkgs/development/python-modules/sh/default.nix +++ b/pkgs/development/python-modules/sh/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { "test_ok_code" ]; - meta = with lib; { + meta = { description = "Python subprocess interface"; homepage = "https://pypi.python.org/pypi/sh/"; - license = licenses.mit; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/shamir-mnemonic/default.nix b/pkgs/development/python-modules/shamir-mnemonic/default.nix index 13303cceba89..03201dbcd990 100644 --- a/pkgs/development/python-modules/shamir-mnemonic/default.nix +++ b/pkgs/development/python-modules/shamir-mnemonic/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "shamir_mnemonic" ]; - meta = with lib; { + meta = { description = "Reference implementation of SLIP-0039"; mainProgram = "shamir"; homepage = "https://github.com/trezor/python-shamir-mnemonic"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/shap/default.nix b/pkgs/development/python-modules/shap/default.nix index 498899a7e78f..d0b786db6d3f 100644 --- a/pkgs/development/python-modules/shap/default.nix +++ b/pkgs/development/python-modules/shap/default.nix @@ -147,12 +147,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "shap" ]; - meta = with lib; { + meta = { description = "Unified approach to explain the output of any machine learning model"; homepage = "https://github.com/slundberg/shap"; changelog = "https://github.com/slundberg/shap/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evax natsukium ]; diff --git a/pkgs/development/python-modules/shaperglot/default.nix b/pkgs/development/python-modules/shaperglot/default.nix index 5b4adb20c0f4..acaf34f76afc 100644 --- a/pkgs/development/python-modules/shaperglot/default.nix +++ b/pkgs/development/python-modules/shaperglot/default.nix @@ -59,12 +59,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "shaperglot" ]; - meta = with lib; { + meta = { description = "Tool to test OpenType fonts for language support"; homepage = "https://github.com/googlefonts/shaperglot"; changelog = "https://github.com/googlefonts/shaperglot/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; mainProgram = "shaperglot"; }; } diff --git a/pkgs/development/python-modules/sharkiq/default.nix b/pkgs/development/python-modules/sharkiq/default.nix index 94b53d0a06d4..2c6b711197e5 100644 --- a/pkgs/development/python-modules/sharkiq/default.nix +++ b/pkgs/development/python-modules/sharkiq/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sharkiq" ]; - meta = with lib; { + meta = { description = "Python API for Shark IQ robots"; homepage = "https://github.com/JeffResc/sharkiq"; changelog = "https://github.com/JeffResc/sharkiq/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sharp-aquos-rc/default.nix b/pkgs/development/python-modules/sharp-aquos-rc/default.nix index 4219d99938b3..178594e4483d 100644 --- a/pkgs/development/python-modules/sharp-aquos-rc/default.nix +++ b/pkgs/development/python-modules/sharp-aquos-rc/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sharp_aquos_rc" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jmoore987/sharp_aquos_rc"; description = "Control Sharp Aquos SmartTVs through the IP interface"; changelog = "https://github.com/jmoore987/sharp_aquos_rc/releases/tag/${version}"; - maintainers = with maintainers; [ jamiemagee ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/shazamio/default.nix b/pkgs/development/python-modules/shazamio/default.nix index 0a4234db5b3e..f1434dc56e0b 100644 --- a/pkgs/development/python-modules/shazamio/default.nix +++ b/pkgs/development/python-modules/shazamio/default.nix @@ -71,7 +71,7 @@ buildPythonPackage rec { description = "Free asynchronous library from reverse engineered Shazam API"; homepage = "https://github.com/dotX12/ShazamIO"; changelog = "https://github.com/dotX12/ShazamIO/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # https://github.com/shazamio/ShazamIO/issues/80 broken = versionAtLeast pydantic.version "2"; diff --git a/pkgs/development/python-modules/shellescape/default.nix b/pkgs/development/python-modules/shellescape/default.nix index fe0a29458b6f..cc31f50cda54 100644 --- a/pkgs/development/python-modules/shellescape/default.nix +++ b/pkgs/development/python-modules/shellescape/default.nix @@ -20,13 +20,13 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "shellescape" ]; - meta = with lib; { + meta = { description = "Shell escape a string to safely use it as a token in a shell command (backport of Python shlex.quote)"; homepage = "https://github.com/chrissimpkins/shellescape"; - license = with licenses; [ + license = with lib.licenses; [ mit psfl ]; - maintainers = with maintainers; [ veprbl ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/shellingham/default.nix b/pkgs/development/python-modules/shellingham/default.nix index 6858d34ee16e..38a634e36247 100644 --- a/pkgs/development/python-modules/shellingham/default.nix +++ b/pkgs/development/python-modules/shellingham/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "shellingham" ]; - meta = with lib; { + meta = { description = "Tool to detect the surrounding shell"; homepage = "https://github.com/sarugaku/shellingham"; changelog = "https://github.com/sarugaku/shellingham/blob/${version}/CHANGELOG.rst"; - license = licenses.isc; - maintainers = with maintainers; [ mbode ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ mbode ]; }; } diff --git a/pkgs/development/python-modules/shiboken2/default.nix b/pkgs/development/python-modules/shiboken2/default.nix index 2721ecb36329..314c89c4da1a 100644 --- a/pkgs/development/python-modules/shiboken2/default.nix +++ b/pkgs/development/python-modules/shiboken2/default.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation { rm $out/bin/shiboken_tool.py ''; - meta = with lib; { + meta = { description = "Generator for the PySide2 Qt bindings"; mainProgram = "shiboken2"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl21 ]; diff --git a/pkgs/development/python-modules/shiv/default.nix b/pkgs/development/python-modules/shiv/default.nix index 7c7e6add3e11..711d1c9d45fe 100644 --- a/pkgs/development/python-modules/shiv/default.nix +++ b/pkgs/development/python-modules/shiv/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { "test_alternate_root_environment_variable" ]; - meta = with lib; { + meta = { description = "Command line utility for building fully self contained Python zipapps"; homepage = "https://github.com/linkedin/shiv"; - license = licenses.bsd2; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/shlib/default.nix b/pkgs/development/python-modules/shlib/default.nix index 1ee79e0ed4f2..4f80f5a33ef7 100644 --- a/pkgs/development/python-modules/shlib/default.nix +++ b/pkgs/development/python-modules/shlib/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "shlib" ]; - meta = with lib; { + meta = { description = "Shell library"; homepage = "https://github.com/KenKundert/shlib"; changelog = "https://github.com/KenKundert/shlib/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/shodan/default.nix b/pkgs/development/python-modules/shodan/default.nix index e83336b07b91..42b74abc5b4a 100644 --- a/pkgs/development/python-modules/shodan/default.nix +++ b/pkgs/development/python-modules/shodan/default.nix @@ -37,13 +37,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "shodan" ]; - meta = with lib; { + meta = { description = "Python library and command-line utility for Shodan"; mainProgram = "shodan"; homepage = "https://github.com/achillean/shodan-python"; changelog = "https://github.com/achillean/shodan-python/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab lihop ]; diff --git a/pkgs/development/python-modules/shortuuid/default.nix b/pkgs/development/python-modules/shortuuid/default.nix index 1ccefc016c93..155e0b9ad0e2 100644 --- a/pkgs/development/python-modules/shortuuid/default.nix +++ b/pkgs/development/python-modules/shortuuid/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "shortuuid" ]; - meta = with lib; { + meta = { description = "Library to generate concise, unambiguous and URL-safe UUIDs"; mainProgram = "shortuuid"; homepage = "https://github.com/stochastic-technologies/shortuuid/"; changelog = "https://github.com/skorokithakis/shortuuid/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ zagy ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ zagy ]; }; } diff --git a/pkgs/development/python-modules/should-dsl/default.nix b/pkgs/development/python-modules/should-dsl/default.nix index 1760ed454397..2405b8cfb938 100644 --- a/pkgs/development/python-modules/should-dsl/default.nix +++ b/pkgs/development/python-modules/should-dsl/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # There are no tests doCheck = false; - meta = with lib; { + meta = { description = "Should assertions in Python as clear and readable as possible"; homepage = "https://github.com/nsi-iff/should-dsl"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/show-in-file-manager/default.nix b/pkgs/development/python-modules/show-in-file-manager/default.nix index a08a874d690c..26afc1e28dd3 100644 --- a/pkgs/development/python-modules/show-in-file-manager/default.nix +++ b/pkgs/development/python-modules/show-in-file-manager/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ packaging ] ++ lib.optional (stdenv.hostPlatform.isLinux) pyxdg; - meta = with lib; { + meta = { homepage = "https://github.com/damonlynch/showinfilemanager"; description = "Open the system file manager and select files in it"; mainProgram = "showinfilemanager"; @@ -37,7 +37,7 @@ buildPythonPackage rec { highlighting the files and allowing the user to quickly do something with them. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/showit/default.nix b/pkgs/development/python-modules/showit/default.nix index cb47f66dbb7d..b62246952537 100644 --- a/pkgs/development/python-modules/showit/default.nix +++ b/pkgs/development/python-modules/showit/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { pytest test ''; - meta = with lib; { + meta = { description = "Simple and sensible display of images"; homepage = "https://github.com/freeman-lab/showit"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/shtab/default.nix b/pkgs/development/python-modules/shtab/default.nix index c72372b84ad4..40bae8237f1d 100644 --- a/pkgs/development/python-modules/shtab/default.nix +++ b/pkgs/development/python-modules/shtab/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "shtab" ]; - meta = with lib; { + meta = { description = "Module for shell tab completion of Python CLI applications"; mainProgram = "shtab"; homepage = "https://docs.iterative.ai/shtab/"; changelog = "https://github.com/iterative/shtab/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/shutilwhich/default.nix b/pkgs/development/python-modules/shutilwhich/default.nix index 4f9b5dd8d629..329312e135c3 100644 --- a/pkgs/development/python-modules/shutilwhich/default.nix +++ b/pkgs/development/python-modules/shutilwhich/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pytest -rs ''; - meta = with lib; { + meta = { description = "Backport of shutil.which"; - license = licenses.psfl; + license = lib.licenses.psfl; homepage = "https://github.com/mbr/shutilwhich"; - maintainers = with maintainers; [ multun ]; + maintainers = with lib.maintainers; [ multun ]; }; } diff --git a/pkgs/development/python-modules/sievelib/default.nix b/pkgs/development/python-modules/sievelib/default.nix index 89ff2df9f467..cbe6fdf33573 100644 --- a/pkgs/development/python-modules/sievelib/default.nix +++ b/pkgs/development/python-modules/sievelib/default.nix @@ -32,7 +32,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "sievelib" ]; - meta = with lib; { + meta = { description = "Client-side Sieve and Managesieve library"; longDescription = '' A library written in Python that implements RFC 5228 (Sieve: An Email @@ -47,6 +47,6 @@ buildPythonPackage rec { ''; homepage = "https://github.com/tonioo/sievelib"; changelog = "https://github.com/tonioo/sievelib/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/signalslot/default.nix b/pkgs/development/python-modules/signalslot/default.nix index d6f122f2a56a..a7e12c9c0a32 100644 --- a/pkgs/development/python-modules/signalslot/default.nix +++ b/pkgs/development/python-modules/signalslot/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "signalslot" ]; - meta = with lib; { + meta = { description = "Simple Signal/Slot implementation"; homepage = "https://github.com/numergy/signalslot"; - license = licenses.mit; - maintainers = with maintainers; [ myaats ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ myaats ]; }; } diff --git a/pkgs/development/python-modules/signedjson/default.nix b/pkgs/development/python-modules/signedjson/default.nix index 36480011c569..f77692b09da9 100644 --- a/pkgs/development/python-modules/signedjson/default.nix +++ b/pkgs/development/python-modules/signedjson/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "signedjson" ]; - meta = with lib; { + meta = { description = "Sign JSON with Ed25519 signatures"; homepage = "https://github.com/matrix-org/python-signedjson"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/signxml/default.nix b/pkgs/development/python-modules/signxml/default.nix index cae86a7df16d..bb86195a9a00 100644 --- a/pkgs/development/python-modules/signxml/default.nix +++ b/pkgs/development/python-modules/signxml/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { enabledTestPaths = [ "test/test.py" ]; - meta = with lib; { + meta = { description = "Python XML Signature and XAdES library"; homepage = "https://github.com/XML-Security/signxml"; changelog = "https://github.com/XML-Security/signxml/blob/${src.tag}/Changes.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sigtools/default.nix b/pkgs/development/python-modules/sigtools/default.nix index 46c3e3caad9f..14db70d8628c 100644 --- a/pkgs/development/python-modules/sigtools/default.nix +++ b/pkgs/development/python-modules/sigtools/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigtools" ]; - meta = with lib; { + meta = { description = "Utilities for working with inspect.Signature objects"; homepage = "https://sigtools.readthedocs.io/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/simanneal/default.nix b/pkgs/development/python-modules/simanneal/default.nix index 2bd0bd80be06..ebface191aaf 100644 --- a/pkgs/development/python-modules/simanneal/default.nix +++ b/pkgs/development/python-modules/simanneal/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest ]; checkPhase = "pytest tests"; - meta = with lib; { + meta = { description = "Python implementation of the simulated annealing optimization technique"; homepage = "https://github.com/perrygeo/simanneal"; - license = licenses.isc; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/simber/default.nix b/pkgs/development/python-modules/simber/default.nix index 3aa1cf1d51e5..88091f8bd42a 100644 --- a/pkgs/development/python-modules/simber/default.nix +++ b/pkgs/development/python-modules/simber/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "simber" ]; - meta = with lib; { + meta = { description = "Simple, minimal and powerful logger for Python"; homepage = "https://github.com/deepjyoti30/simber"; changelog = "https://github.com/deepjyoti30/simber/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; }; } diff --git a/pkgs/development/python-modules/simpful/default.nix b/pkgs/development/python-modules/simpful/default.nix index f86ad67a28dc..96e023095e96 100644 --- a/pkgs/development/python-modules/simpful/default.nix +++ b/pkgs/development/python-modules/simpful/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "simpful" ]; - meta = with lib; { + meta = { description = "Library for fuzzy logic"; homepage = "https://github.com/aresio/simpful"; changelog = "https://github.com/aresio/simpful/releases/tag/${version}"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/development/python-modules/simple-di/default.nix b/pkgs/development/python-modules/simple-di/default.nix index b8d32effc098..6bd7b22893db 100644 --- a/pkgs/development/python-modules/simple-di/default.nix +++ b/pkgs/development/python-modules/simple-di/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # pypi distribution contains no tests doCheck = false; - meta = with lib; { + meta = { description = "Simple dependency injection library"; homepage = "https://github.com/bentoml/simple_di"; - license = licenses.asl20; - maintainers = with maintainers; [ sauyon ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sauyon ]; }; } diff --git a/pkgs/development/python-modules/simple-rest-client/default.nix b/pkgs/development/python-modules/simple-rest-client/default.nix index 5607a169bdbb..2eaba563d606 100644 --- a/pkgs/development/python-modules/simple-rest-client/default.nix +++ b/pkgs/development/python-modules/simple-rest-client/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "simple_rest_client" ]; - meta = with lib; { + meta = { description = "Simple REST client for Python"; homepage = "https://github.com/allisson/python-simple-rest-client"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/simple-rlp/default.nix b/pkgs/development/python-modules/simple-rlp/default.nix index dd5aa752cdbd..c33455ae7cdb 100644 --- a/pkgs/development/python-modules/simple-rlp/default.nix +++ b/pkgs/development/python-modules/simple-rlp/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rlp" ]; - meta = with lib; { + meta = { description = "Simple RLP (Recursive Length Prefix)"; homepage = "https://github.com/SamuelHaidu/simple-rlp"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/simple-salesforce/default.nix b/pkgs/development/python-modules/simple-salesforce/default.nix index 05edcf1b35cd..c1fbf5107e25 100644 --- a/pkgs/development/python-modules/simple-salesforce/default.nix +++ b/pkgs/development/python-modules/simple-salesforce/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "simple_salesforce" ]; - meta = with lib; { + meta = { description = "Very simple Salesforce.com REST API client for Python"; homepage = "https://github.com/simple-salesforce/simple-salesforce"; changelog = "https://github.com/simple-salesforce/simple-salesforce/blob/v${version}/CHANGES"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/simple-term-menu/default.nix b/pkgs/development/python-modules/simple-term-menu/default.nix index 96409771ae3d..f12239d1a6f1 100644 --- a/pkgs/development/python-modules/simple-term-menu/default.nix +++ b/pkgs/development/python-modules/simple-term-menu/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { # no unit tests in the upstream doCheck = false; - meta = with lib; { + meta = { description = "Python package which creates simple interactive menus on the command line"; mainProgram = "simple-term-menu"; homepage = "https://github.com/IngoMeyer441/simple-term-menu"; - license = licenses.mit; + license = lib.licenses.mit; changelog = "https://github.com/IngoMeyer441/simple-term-menu/releases/tag/v${version}"; - maintainers = with maintainers; [ smrehman ]; + maintainers = with lib.maintainers; [ smrehman ]; }; } diff --git a/pkgs/development/python-modules/simple-websocket-server/default.nix b/pkgs/development/python-modules/simple-websocket-server/default.nix index e7e2c0af5ae4..968f95774f11 100644 --- a/pkgs/development/python-modules/simple-websocket-server/default.nix +++ b/pkgs/development/python-modules/simple-websocket-server/default.nix @@ -17,11 +17,11 @@ buildPythonPackage { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Python based websocket server that is simple and easy to use"; homepage = "https://github.com/dpallot/simple-websocket-server/"; - license = licenses.mit; - maintainers = with maintainers; [ rvolosatovs ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvolosatovs ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/simple-websocket/default.nix b/pkgs/development/python-modules/simple-websocket/default.nix index 6f066fc8132a..a4da26a4bdde 100644 --- a/pkgs/development/python-modules/simple-websocket/default.nix +++ b/pkgs/development/python-modules/simple-websocket/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { "SimpleWebSocketClientTestCase" ]; - meta = with lib; { + meta = { description = "Simple WebSocket server and client for Python"; homepage = "https://github.com/miguelgrinberg/simple-websocket"; changelog = "https://github.com/miguelgrinberg/simple-websocket/blob/${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/simpleaudio/default.nix b/pkgs/development/python-modules/simpleaudio/default.nix index 8e336d4e61c2..1518b29537ae 100644 --- a/pkgs/development/python-modules/simpleaudio/default.nix +++ b/pkgs/development/python-modules/simpleaudio/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { buildInputs = [ alsa-lib ]; - meta = with lib; { + meta = { homepage = "https://github.com/hamiltron/py-simple-audio"; description = "Simple audio playback Python extension - cross-platform, asynchronous, dependency-free"; - license = licenses.mit; - maintainers = with maintainers; [ lucus16 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucus16 ]; }; } diff --git a/pkgs/development/python-modules/simplebayes/default.nix b/pkgs/development/python-modules/simplebayes/default.nix index bfa761b59e44..cdb3f6998f67 100644 --- a/pkgs/development/python-modules/simplebayes/default.nix +++ b/pkgs/development/python-modules/simplebayes/default.nix @@ -30,9 +30,9 @@ buildPythonPackage { sed -i -e 's/open *(\([^)]*\))/open(\1, encoding="utf-8")/' setup.py ''; - meta = with lib; { + meta = { description = "Memory-based naive bayesian text classifier"; homepage = "https://github.com/hickeroar/simplebayes"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/simpleeval/default.nix b/pkgs/development/python-modules/simpleeval/default.nix index 83548517b28f..db8c560d5ae8 100644 --- a/pkgs/development/python-modules/simpleeval/default.nix +++ b/pkgs/development/python-modules/simpleeval/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "simpleeval" ]; - meta = with lib; { + meta = { description = "Simple, safe single expression evaluator library"; homepage = "https://github.com/danthedeckie/simpleeval"; changelog = "https://github.com/danthedeckie/simpleeval/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ johbo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ johbo ]; }; } diff --git a/pkgs/development/python-modules/simplefix/default.nix b/pkgs/development/python-modules/simplefix/default.nix index f205e8e60c2d..f3e0ded237cd 100644 --- a/pkgs/development/python-modules/simplefix/default.nix +++ b/pkgs/development/python-modules/simplefix/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { "test" ]; - meta = with lib; { + meta = { description = "Simple FIX Protocol implementation for Python"; homepage = "https://github.com/da4089/simplefix"; changelog = "https://github.com/da4089/simplefix/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/simplehound/default.nix b/pkgs/development/python-modules/simplehound/default.nix index e9462acf1f07..9e694f22dfe5 100644 --- a/pkgs/development/python-modules/simplehound/default.nix +++ b/pkgs/development/python-modules/simplehound/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "simplehound" ]; - meta = with lib; { + meta = { description = "Python API for Sighthound"; homepage = "https://github.com/robmarkcole/simplehound"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/simplejson/default.nix b/pkgs/development/python-modules/simplejson/default.nix index 3a360da09b07..78e4a397f0af 100644 --- a/pkgs/development/python-modules/simplejson/default.nix +++ b/pkgs/development/python-modules/simplejson/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "simplejson" ]; - meta = with lib; { + meta = { description = "Extensible JSON encoder/decoder for Python"; longDescription = '' simplejson covers the full JSON specification for both encoding @@ -34,10 +34,10 @@ buildPythonPackage rec { ''; homepage = "https://github.com/simplejson/simplejson"; changelog = "https://github.com/simplejson/simplejson/blob/v${version}/CHANGES.txt"; - license = with licenses; [ + license = with lib.licenses; [ mit afl21 ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/simplekml/default.nix b/pkgs/development/python-modules/simplekml/default.nix index 99637db57a43..3b0a7b27845f 100644 --- a/pkgs/development/python-modules/simplekml/default.nix +++ b/pkgs/development/python-modules/simplekml/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "simplekml" ]; - meta = with lib; { + meta = { description = "Python package to generate KML"; homepage = "https://simplekml.readthedocs.io/"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ rvolosatovs ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ rvolosatovs ]; }; } diff --git a/pkgs/development/python-modules/simplekv/default.nix b/pkgs/development/python-modules/simplekv/default.nix index d401ea2ca7b7..46d0835dfb1a 100644 --- a/pkgs/development/python-modules/simplekv/default.nix +++ b/pkgs/development/python-modules/simplekv/default.nix @@ -63,12 +63,12 @@ buildPythonPackage rec { */ }; - meta = with lib; { + meta = { description = "Simple key-value store for binary data"; homepage = "https://github.com/mbr/simplekv"; changelog = "https://github.com/mbr/simplekv/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab bbenne10 ]; diff --git a/pkgs/development/python-modules/simplenote/default.nix b/pkgs/development/python-modules/simplenote/default.nix index 2c3203446683..e930779bb7b5 100644 --- a/pkgs/development/python-modules/simplenote/default.nix +++ b/pkgs/development/python-modules/simplenote/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ ]; - meta = with lib; { + meta = { description = "Python library for the simplenote.com web service"; homepage = "http://readthedocs.org/docs/simplenotepy/en/latest/api.html"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/simplepush/default.nix b/pkgs/development/python-modules/simplepush/default.nix index 66a54f722b3d..a5268939622a 100644 --- a/pkgs/development/python-modules/simplepush/default.nix +++ b/pkgs/development/python-modules/simplepush/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "simplepush" ]; - meta = with lib; { + meta = { description = "Module to send push notifications via Simplepush"; homepage = "https://github.com/simplepush/simplepush-python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/simplesat/default.nix b/pkgs/development/python-modules/simplesat/default.nix index 80829fde3552..91cfc7652112 100644 --- a/pkgs/development/python-modules/simplesat/default.nix +++ b/pkgs/development/python-modules/simplesat/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { enabledTestPaths = [ "simplesat/tests" ]; - meta = with lib; { + meta = { description = "Prototype for SAT-based dependency handling"; homepage = "https://github.com/enthought/sat-solver"; changelog = "https://github.com/enthought/sat-solver/blob/${src.tag}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ genericnerdyusername ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ genericnerdyusername ]; }; } diff --git a/pkgs/development/python-modules/simplesqlite/default.nix b/pkgs/development/python-modules/simplesqlite/default.nix index 48ba62e46612..49a11e1a7b64 100644 --- a/pkgs/development/python-modules/simplesqlite/default.nix +++ b/pkgs/development/python-modules/simplesqlite/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "simplesqlite" ]; - meta = with lib; { + meta = { description = "Python library to simplify SQLite database operations"; homepage = "https://github.com/thombashi/simplesqlite"; - license = licenses.mit; - maintainers = with maintainers; [ henrirosten ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ henrirosten ]; }; } diff --git a/pkgs/development/python-modules/simplisafe-python/default.nix b/pkgs/development/python-modules/simplisafe-python/default.nix index 5d82c65a9608..e0a3f54a292b 100644 --- a/pkgs/development/python-modules/simplisafe-python/default.nix +++ b/pkgs/development/python-modules/simplisafe-python/default.nix @@ -71,11 +71,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://github.com/bachya/simplisafe-python/releases/tag/${version}"; description = "Python library the SimpliSafe API"; homepage = "https://simplisafe-python.readthedocs.io/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/single-version/default.nix b/pkgs/development/python-modules/single-version/default.nix index 1b738a665a25..65cf9a935340 100644 --- a/pkgs/development/python-modules/single-version/default.nix +++ b/pkgs/development/python-modules/single-version/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "single_version" ]; - meta = with lib; { + meta = { description = "Utility to let you have a single source of version in your code base"; homepage = "https://github.com/hongquan/single-version"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/siobrultech-protocols/default.nix b/pkgs/development/python-modules/siobrultech-protocols/default.nix index feac0fa01fa8..c46a4353828c 100644 --- a/pkgs/development/python-modules/siobrultech-protocols/default.nix +++ b/pkgs/development/python-modules/siobrultech-protocols/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "siobrultech_protocols.gem.protocol" ]; - meta = with lib; { + meta = { description = "Sans-I/O Python client library for Brultech Devices"; homepage = "https://github.com/sdwilsh/siobrultech-protocols"; changelog = "https://github.com/sdwilsh/siobrultech-protocols/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/siosocks/default.nix b/pkgs/development/python-modules/siosocks/default.nix index 5532b256346f..ad508c33ae05 100644 --- a/pkgs/development/python-modules/siosocks/default.nix +++ b/pkgs/development/python-modules/siosocks/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "siosocks" ]; - meta = with lib; { + meta = { description = "Python socks 4/5 client/server library/framework"; homepage = "https://github.com/pohmelie/siosocks"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sip/4.x.nix b/pkgs/development/python-modules/sip/4.x.nix index b54a0d035259..2c156e30e72f 100644 --- a/pkgs/development/python-modules/sip/4.x.nix +++ b/pkgs/development/python-modules/sip/4.x.nix @@ -57,14 +57,14 @@ buildPythonPackage rec { "sipconfig" ]; - meta = with lib; { + meta = { description = "Creates C++ bindings for Python modules"; mainProgram = "sip"; homepage = "https://riverbankcomputing.com/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lovek323 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index e979ed01b1bd..59f0a75f3ed6 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { inherit poppler-qt5 qgis qgis-ltr; }; - meta = with lib; { + meta = { description = "Creates C++ bindings for Python modules"; homepage = "https://riverbankcomputing.com/"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/siphashc/default.nix b/pkgs/development/python-modules/siphashc/default.nix index d77c27037058..2e491f43b024 100644 --- a/pkgs/development/python-modules/siphashc/default.nix +++ b/pkgs/development/python-modules/siphashc/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "siphashc" ]; - meta = with lib; { + meta = { description = "Python c-module for siphash"; homepage = "https://github.com/WeblateOrg/siphashc"; changelog = "https://github.com/WeblateOrg/siphashc/blob/${version}/CHANGES.rst"; - license = licenses.isc; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/sipyco/default.nix b/pkgs/development/python-modules/sipyco/default.nix index f86a1556e196..dc550eb3fa6a 100644 --- a/pkgs/development/python-modules/sipyco/default.nix +++ b/pkgs/development/python-modules/sipyco/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Simple Python Communications - used by the ARTIQ experimental control package"; mainProgram = "sipyco_rpctool"; homepage = "https://github.com/m-labs/sipyco"; changelog = "https://github.com/m-labs/sipyco/releases/tag/v${version}"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ charlesbaynham ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ charlesbaynham ]; }; } diff --git a/pkgs/development/python-modules/sisyphus-control/default.nix b/pkgs/development/python-modules/sisyphus-control/default.nix index 21daa7c7c4dc..4b5bedcaec24 100644 --- a/pkgs/development/python-modules/sisyphus-control/default.nix +++ b/pkgs/development/python-modules/sisyphus-control/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sisyphus_control" ]; - meta = with lib; { + meta = { description = "Control your Sisyphus Kinetic Art Table"; homepage = "https://github.com/jkeljo/sisyphus-control"; changelog = "https://github.com/jkeljo/sisyphus-control/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/siuba/default.nix b/pkgs/development/python-modules/siuba/default.nix index 8b506f5aed7a..f56a437e5444 100644 --- a/pkgs/development/python-modules/siuba/default.nix +++ b/pkgs/development/python-modules/siuba/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "siuba.data" ]; - meta = with lib; { + meta = { description = "Use dplyr-like syntax with pandas and SQL"; homepage = "https://siuba.org"; changelog = "https://github.com/machow/siuba/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/skidl/default.nix b/pkgs/development/python-modules/skidl/default.nix index a13f71228795..42cafe925864 100644 --- a/pkgs/development/python-modules/skidl/default.nix +++ b/pkgs/development/python-modules/skidl/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "skidl" ]; - meta = with lib; { + meta = { description = "SKiDL is a module that extends Python with the ability to design electronic circuits"; mainProgram = "netlist_to_skidl"; homepage = "https://devbisme.github.io/skidl/"; - license = licenses.mit; - maintainers = with maintainers; [ matthuszagh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthuszagh ]; }; } diff --git a/pkgs/development/python-modules/sklearn-deap/default.nix b/pkgs/development/python-modules/sklearn-deap/default.nix index 7de79db3f8b1..9c3cefee1c23 100644 --- a/pkgs/development/python-modules/sklearn-deap/default.nix +++ b/pkgs/development/python-modules/sklearn-deap/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "evolutionary_search" ]; - meta = with lib; { + meta = { description = "Use evolutionary algorithms instead of gridsearch in scikit-learn"; homepage = "https://github.com/rsteca/sklearn-deap"; - license = licenses.mit; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psyanticy ]; broken = true; # incompatible with scikit-learn >= 1.6 }; } diff --git a/pkgs/development/python-modules/skodaconnect/default.nix b/pkgs/development/python-modules/skodaconnect/default.nix index c671d0fe2a55..92c21fb86c5a 100644 --- a/pkgs/development/python-modules/skodaconnect/default.nix +++ b/pkgs/development/python-modules/skodaconnect/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "skodaconnect" ]; - meta = with lib; { + meta = { description = "Python module to communicate with Skoda Connect"; homepage = "https://github.com/lendy007/skodaconnect"; changelog = "https://github.com/lendy007/skodaconnect/releases/tag/${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/skrl/default.nix b/pkgs/development/python-modules/skrl/default.nix index e5c1b5991899..18ec051189f0 100644 --- a/pkgs/development/python-modules/skrl/default.nix +++ b/pkgs/development/python-modules/skrl/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { "skrl.utils.model_instantiators" ]; - meta = with lib; { + meta = { description = "Reinforcement learning library using PyTorch focusing on readability and simplicity"; changelog = "https://github.com/Toni-SM/skrl/releases/tag/${version}"; homepage = "https://skrl.readthedocs.io"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/skybellpy/default.nix b/pkgs/development/python-modules/skybellpy/default.nix index c05b3b0b96ef..767e020d9be3 100644 --- a/pkgs/development/python-modules/skybellpy/default.nix +++ b/pkgs/development/python-modules/skybellpy/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "skybellpy" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Skybell alarm API"; homepage = "https://github.com/MisterWil/skybellpy"; changelog = "https://github.com/MisterWil/skybellpy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "skybellpy"; }; } diff --git a/pkgs/development/python-modules/skyfield/default.nix b/pkgs/development/python-modules/skyfield/default.nix index 24b19b7e2f86..ad25d62fc9ba 100644 --- a/pkgs/development/python-modules/skyfield/default.nix +++ b/pkgs/development/python-modules/skyfield/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "skyfield" ]; - meta = with lib; { + meta = { homepage = "https://github.com/skyfielders/python-skyfield"; description = "Elegant astronomy for Python"; - license = licenses.mit; - maintainers = with maintainers; [ zane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zane ]; }; } diff --git a/pkgs/development/python-modules/skytemple-dtef/default.nix b/pkgs/development/python-modules/skytemple-dtef/default.nix index eb140824651d..b4cc610fa2f5 100644 --- a/pkgs/development/python-modules/skytemple-dtef/default.nix +++ b/pkgs/development/python-modules/skytemple-dtef/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "skytemple_dtef" ]; - meta = with lib; { + meta = { description = "Format for standardized rule-based tilesets with 256 adjacency combinations"; homepage = "https://github.com/SkyTemple/skytemple-dtef"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/skytemple-eventserver/default.nix b/pkgs/development/python-modules/skytemple-eventserver/default.nix index e0c6c50fa7ec..56e6baeb9527 100644 --- a/pkgs/development/python-modules/skytemple-eventserver/default.nix +++ b/pkgs/development/python-modules/skytemple-eventserver/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { doCheck = false; # there are no tests pythonImportsCheck = [ "skytemple_eventserver" ]; - meta = with lib; { + meta = { homepage = "https://github.com/SkyTemple/skytemple-eventserver"; description = "Websocket server that emits SkyTemple UI events"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/skytemple-files/default.nix b/pkgs/development/python-modules/skytemple-files/default.nix index d5cd9575054b..f3e44cce12df 100644 --- a/pkgs/development/python-modules/skytemple-files/default.nix +++ b/pkgs/development/python-modules/skytemple-files/default.nix @@ -90,12 +90,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "skytemple_files" ]; - meta = with lib; { + meta = { homepage = "https://github.com/SkyTemple/skytemple-files"; description = "Python library to edit the ROM of Pokémon Mystery Dungeon Explorers of Sky"; mainProgram = "skytemple_export_maps"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; broken = stdenv.hostPlatform.isDarwin; # pyobjc is missing }; } diff --git a/pkgs/development/python-modules/skytemple-icons/default.nix b/pkgs/development/python-modules/skytemple-icons/default.nix index 093b1f91e061..c72ac6f693f2 100644 --- a/pkgs/development/python-modules/skytemple-icons/default.nix +++ b/pkgs/development/python-modules/skytemple-icons/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { doCheck = false; # there are no tests pythonImportsCheck = [ "skytemple_icons" ]; - meta = with lib; { + meta = { homepage = "https://github.com/SkyTemple/skytemple-icons"; description = "Icons for SkyTemple"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/skytemple-rust/default.nix b/pkgs/development/python-modules/skytemple-rust/default.nix index ef45f7042396..5bbb8c5eb498 100644 --- a/pkgs/development/python-modules/skytemple-rust/default.nix +++ b/pkgs/development/python-modules/skytemple-rust/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { doCheck = false; # tests for this package are in skytemple-files package pythonImportsCheck = [ "skytemple_rust" ]; - meta = with lib; { + meta = { homepage = "https://github.com/SkyTemple/skytemple-rust"; description = "Binary Rust extensions for SkyTemple"; - license = licenses.mit; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/skytemple-ssb-debugger/default.nix b/pkgs/development/python-modules/skytemple-ssb-debugger/default.nix index dea49fe17c3b..c840f7744058 100644 --- a/pkgs/development/python-modules/skytemple-ssb-debugger/default.nix +++ b/pkgs/development/python-modules/skytemple-ssb-debugger/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { doCheck = false; # requires Pokémon Mystery Dungeon ROM pythonImportsCheck = [ "skytemple_ssb_debugger" ]; - meta = with lib; { + meta = { homepage = "https://github.com/SkyTemple/skytemple-ssb-debugger"; description = "Script Engine Debugger for Pokémon Mystery Dungeon Explorers of Sky"; mainProgram = "skytemple-ssb-debugger"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/slapd/default.nix b/pkgs/development/python-modules/slapd/default.nix index f8793338bb9d..e4c57fe504bd 100644 --- a/pkgs/development/python-modules/slapd/default.nix +++ b/pkgs/development/python-modules/slapd/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "slapd" ]; - meta = with lib; { + meta = { description = "Controls a slapd process in a pythonic way"; homepage = "https://github.com/python-ldap/python-slapd"; changelog = "https://github.com/python-ldap/python-slapd/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/sleekxmpp/default.nix b/pkgs/development/python-modules/sleekxmpp/default.nix index 9c8031a6b878..382cc7c28e7c 100644 --- a/pkgs/development/python-modules/sleekxmpp/default.nix +++ b/pkgs/development/python-modules/sleekxmpp/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { sha256 = "d213c1de71d92505f95ced0460ee0f84fdc4ddcacb7d7dd343739ed4028e5569"; }; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; description = "XMPP library for Python"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "http://sleekxmpp.com/"; }; } diff --git a/pkgs/development/python-modules/sleepyq/default.nix b/pkgs/development/python-modules/sleepyq/default.nix index 2804be073b9e..4a4aabecfaa5 100644 --- a/pkgs/development/python-modules/sleepyq/default.nix +++ b/pkgs/development/python-modules/sleepyq/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "sleepyq" ]; - meta = with lib; { + meta = { description = "Python module for SleepIQ API"; homepage = "https://github.com/technicalpickles/sleepyq"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/slh-dsa/default.nix b/pkgs/development/python-modules/slh-dsa/default.nix index 5b01189f93d0..2dcdf18ae02e 100644 --- a/pkgs/development/python-modules/slh-dsa/default.nix +++ b/pkgs/development/python-modules/slh-dsa/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "slhdsa" ]; - meta = with lib; { + meta = { description = "Pure Python implementation of the SLH-DSA algorithm"; homepage = "https://github.com/colinxu2020/slhdsa"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/slicedimage/default.nix b/pkgs/development/python-modules/slicedimage/default.nix index 6d0901f0f875..c770f9cd8e70 100644 --- a/pkgs/development/python-modules/slicedimage/default.nix +++ b/pkgs/development/python-modules/slicedimage/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "slicedimage" ]; - meta = with lib; { + meta = { description = "Library to access sliced imaging data"; mainProgram = "slicedimage"; homepage = "https://github.com/spacetx/slicedimage"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/slicer/default.nix b/pkgs/development/python-modules/slicer/default.nix index 79e514f7ee9b..321d3f40ffe4 100644 --- a/pkgs/development/python-modules/slicer/default.nix +++ b/pkgs/development/python-modules/slicer/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { scipy ]; - meta = with lib; { + meta = { description = "Wraps tensor-like objects and provides a uniform slicing interface via __getitem__"; homepage = "https://github.com/interpretml/slicer"; - license = licenses.mit; - maintainers = with maintainers; [ evax ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evax ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/slicerator/default.nix b/pkgs/development/python-modules/slicerator/default.nix index 6dc89369d0c3..971535e87eeb 100644 --- a/pkgs/development/python-modules/slicerator/default.nix +++ b/pkgs/development/python-modules/slicerator/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # run_tests.py not packaged with pypi release doCheck = false; - meta = with lib; { + meta = { description = "Lazy-loading, fancy-sliceable iterable"; homepage = "https://github.com/soft-matter/slicerator"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/slip10/default.nix b/pkgs/development/python-modules/slip10/default.nix index 57478107a20d..1c9a9ec4b9e3 100644 --- a/pkgs/development/python-modules/slip10/default.nix +++ b/pkgs/development/python-modules/slip10/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "slip10" ]; - meta = with lib; { + meta = { description = "Minimalistic implementation of SLIP109"; homepage = "https://github.com/trezor/python-slip10"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ prusnak ]; }; diff --git a/pkgs/development/python-modules/slither-analyzer/default.nix b/pkgs/development/python-modules/slither-analyzer/default.nix index 2b637314e7ea..197e476a01a7 100644 --- a/pkgs/development/python-modules/slither-analyzer/default.nix +++ b/pkgs/development/python-modules/slither-analyzer/default.nix @@ -86,7 +86,7 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Static Analyzer for Solidity"; longDescription = '' Slither is a Solidity static analysis framework written in Python 3. It @@ -95,9 +95,9 @@ buildPythonPackage rec { ''; homepage = "https://github.com/trailofbits/slither"; changelog = "https://github.com/crytic/slither/releases/tag/${version}"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; mainProgram = "slither"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ arturcygan fab hellwolf diff --git a/pkgs/development/python-modules/slixmpp/default.nix b/pkgs/development/python-modules/slixmpp/default.nix index 6b94d9f3930b..70fe5df2d6a9 100644 --- a/pkgs/development/python-modules/slixmpp/default.nix +++ b/pkgs/development/python-modules/slixmpp/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "slixmpp" ]; - meta = with lib; { + meta = { description = "Python library for XMPP"; homepage = "https://slixmpp.readthedocs.io/"; changelog = "https://codeberg.org/poezio/slixmpp/releases/tag/slix-${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/slob/default.nix b/pkgs/development/python-modules/slob/default.nix index 3e72030896d5..4f2bbbf28ef8 100644 --- a/pkgs/development/python-modules/slob/default.nix +++ b/pkgs/development/python-modules/slob/default.nix @@ -28,10 +28,10 @@ buildPythonPackage { pythonImportsCheck = [ "slob" ]; - meta = with lib; { + meta = { homepage = "https://github.com/itkach/slob/"; description = "Reference implementation of the slob (sorted list of blobs) format"; mainProgram = "slob"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/development/python-modules/slovnet/default.nix b/pkgs/development/python-modules/slovnet/default.nix index 2800ae54bf47..5a2515ed3810 100644 --- a/pkgs/development/python-modules/slovnet/default.nix +++ b/pkgs/development/python-modules/slovnet/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "slovnet" ]; - meta = with lib; { + meta = { description = "Deep-learning based NLP modeling for Russian language"; homepage = "https://github.com/natasha/slovnet"; - license = licenses.mit; - maintainers = with maintainers; [ npatsakula ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ npatsakula ]; }; } diff --git a/pkgs/development/python-modules/slowapi/default.nix b/pkgs/development/python-modules/slowapi/default.nix index 50211d2f998c..08c7f48fcb07 100644 --- a/pkgs/development/python-modules/slowapi/default.nix +++ b/pkgs/development/python-modules/slowapi/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "slowapi" ]; - meta = with lib; { + meta = { description = "Python library for API rate limiting"; homepage = "https://github.com/laurentS/slowapi"; changelog = "https://github.com/laurentS/slowapi/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/slpp/default.nix b/pkgs/development/python-modules/slpp/default.nix index 10c964c61177..81a55bdd52e0 100644 --- a/pkgs/development/python-modules/slpp/default.nix +++ b/pkgs/development/python-modules/slpp/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "slpp" ]; - meta = with lib; { + meta = { description = "Simple lua-python parser"; homepage = "https://github.com/SirAnthony/slpp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/slugid/default.nix b/pkgs/development/python-modules/slugid/default.nix index 173a93544869..fac01324dfba 100644 --- a/pkgs/development/python-modules/slugid/default.nix +++ b/pkgs/development/python-modules/slugid/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "slugid" ]; - meta = with lib; { + meta = { description = "URL-safe base64 UUID encoder for generating 22 character slugs"; homepage = "https://github.com/taskcluster/slugid.py"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sly/default.nix b/pkgs/development/python-modules/sly/default.nix index 6087af1deee5..c8389467b8e5 100644 --- a/pkgs/development/python-modules/sly/default.nix +++ b/pkgs/development/python-modules/sly/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Improved PLY implementation of lex and yacc for Python 3"; homepage = "https://github.com/dabeaz/sly"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/smart-meter-texas/default.nix b/pkgs/development/python-modules/smart-meter-texas/default.nix index 85e94d6c6244..5761a08106cd 100644 --- a/pkgs/development/python-modules/smart-meter-texas/default.nix +++ b/pkgs/development/python-modules/smart-meter-texas/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { description = "Connect to and retrieve data from the unofficial Smart Meter Texas API"; homepage = "https://github.com/grahamwetzler/smart-meter-texas"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/smart-open/default.nix b/pkgs/development/python-modules/smart-open/default.nix index d4a6d8e7723a..dcd0acf4bb75 100644 --- a/pkgs/development/python-modules/smart-open/default.nix +++ b/pkgs/development/python-modules/smart-open/default.nix @@ -82,10 +82,10 @@ buildPythonPackage rec { "test_seek_from_start" ]; - meta = with lib; { + meta = { changelog = "https://github.com/piskvorky/smart_open/releases/tag/${src.tag}"; description = "Library for efficient streaming of very large file"; homepage = "https://github.com/piskvorky/smart_open"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/smarthab/default.nix b/pkgs/development/python-modules/smarthab/default.nix index 44bde1243e8c..27338295d123 100644 --- a/pkgs/development/python-modules/smarthab/default.nix +++ b/pkgs/development/python-modules/smarthab/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysmarthab" ]; - meta = with lib; { + meta = { description = "Control devices in a SmartHab-powered home"; homepage = "https://gitlab.com/outadoc/python-smarthab"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/smbprotocol/default.nix b/pkgs/development/python-modules/smbprotocol/default.nix index a26fe5d3e592..ecf2332a818e 100644 --- a/pkgs/development/python-modules/smbprotocol/default.nix +++ b/pkgs/development/python-modules/smbprotocol/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "smbprotocol" ]; - meta = with lib; { + meta = { description = "Python SMBv2 and v3 Client"; homepage = "https://github.com/jborean93/smbprotocol"; changelog = "https://github.com/jborean93/smbprotocol/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/smbus-cffi/default.nix b/pkgs/development/python-modules/smbus-cffi/default.nix index 9b1b97158a49..7387d3478808 100644 --- a/pkgs/development/python-modules/smbus-cffi/default.nix +++ b/pkgs/development/python-modules/smbus-cffi/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pyserial ]; - meta = with lib; { + meta = { description = "Python module for SMBus access through Linux I2C /dev interface"; homepage = "https://github.com/bivab/smbus-cffi"; - license = licenses.gpl2; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/smbus2/default.nix b/pkgs/development/python-modules/smbus2/default.nix index 5f7347eb04b3..c6f91764ece9 100644 --- a/pkgs/development/python-modules/smbus2/default.nix +++ b/pkgs/development/python-modules/smbus2/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "smbus2" ]; - meta = with lib; { + meta = { description = "Drop-in replacement for smbus-cffi/smbus-python"; homepage = "https://smbus2.readthedocs.io/"; changelog = "https://github.com/kplindegaard/smbus2/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/smdebug-rulesconfig/default.nix b/pkgs/development/python-modules/smdebug-rulesconfig/default.nix index 2500122c8ffb..31656697d052 100644 --- a/pkgs/development/python-modules/smdebug-rulesconfig/default.nix +++ b/pkgs/development/python-modules/smdebug-rulesconfig/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "smdebug_rulesconfig" ]; - meta = with lib; { + meta = { description = "These builtin rules are available in Amazon SageMaker"; homepage = "https://github.com/awslabs/sagemaker-debugger-rulesconfig"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/smhi-pkg/default.nix b/pkgs/development/python-modules/smhi-pkg/default.nix index a234026958f1..6778e5ae1e14 100644 --- a/pkgs/development/python-modules/smhi-pkg/default.nix +++ b/pkgs/development/python-modules/smhi-pkg/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "smhi" ]; - meta = with lib; { + meta = { description = "Python library for accessing SMHI open forecast data"; homepage = "https://github.com/joysoftware/pypi_smhi"; changelog = "https://github.com/joysoftware/pypi_smhi/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/smpp-pdu/default.nix b/pkgs/development/python-modules/smpp-pdu/default.nix index 1da871ed0da5..69bce63b95c4 100644 --- a/pkgs/development/python-modules/smpp-pdu/default.nix +++ b/pkgs/development/python-modules/smpp-pdu/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Library for parsing Protocol Data Units (PDUs) in SMPP protocol"; homepage = "https://github.com/hologram-io/smpp.pdu"; - license = licenses.asl20; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/smpplib/default.nix b/pkgs/development/python-modules/smpplib/default.nix index 9db4eef1fb65..91747f2dc663 100644 --- a/pkgs/development/python-modules/smpplib/default.nix +++ b/pkgs/development/python-modules/smpplib/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "smpplib" ]; - meta = with lib; { + meta = { description = "SMPP library for Python"; homepage = "https://github.com/python-smpplib/python-smpplib"; changelog = "https://github.com/python-smpplib/python-smpplib/releases/tag/${version}"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/smtpdfix/default.nix b/pkgs/development/python-modules/smtpdfix/default.nix index 412b959234a3..77884cb117ed 100644 --- a/pkgs/development/python-modules/smtpdfix/default.nix +++ b/pkgs/development/python-modules/smtpdfix/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "test_missing_certs" ]; - meta = with lib; { + meta = { description = "SMTP server for use as a pytest fixture for testing"; homepage = "https://github.com/bebleo/smtpdfix"; changelog = "https://github.com/bebleo/smtpdfix/releases/tag/v${version}"; - license = licenses.mit; - teams = [ teams.wdz ]; + license = lib.licenses.mit; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/snakebite/default.nix b/pkgs/development/python-modules/snakebite/default.nix index 26fffc755933..ceaa2d92f002 100644 --- a/pkgs/development/python-modules/snakebite/default.nix +++ b/pkgs/development/python-modules/snakebite/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "snakebite" ]; - meta = with lib; { + meta = { description = "Pure Python HDFS client"; mainProgram = "snakebite"; homepage = "https://github.com/spotify/snakebite"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/snakemake-executor-plugin-cluster-generic/default.nix b/pkgs/development/python-modules/snakemake-executor-plugin-cluster-generic/default.nix index 34633ec6faaf..e6cee39d6167 100644 --- a/pkgs/development/python-modules/snakemake-executor-plugin-cluster-generic/default.nix +++ b/pkgs/development/python-modules/snakemake-executor-plugin-cluster-generic/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "snakemake_executor_plugin_cluster_generic" ]; - meta = with lib; { + meta = { description = "Generic cluster executor for Snakemake"; homepage = "https://github.com/snakemake/snakemake-executor-plugin-cluster-generic"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/snakemake-interface-logger-plugins/default.nix b/pkgs/development/python-modules/snakemake-interface-logger-plugins/default.nix index 6ff22fe4ffdc..d8997225d5aa 100644 --- a/pkgs/development/python-modules/snakemake-interface-logger-plugins/default.nix +++ b/pkgs/development/python-modules/snakemake-interface-logger-plugins/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "snakemake_interface_logger_plugins" ]; - meta = with lib; { + meta = { description = "Stable interface for interactions between Snakemake and its logger plugins"; homepage = "https://github.com/snakemake/snakemake-interface-logger-plugins"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix b/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix index ea74d2b18d18..99486ee2e578 100644 --- a/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix +++ b/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "snakemake_interface_report_plugins" ]; - meta = with lib; { + meta = { description = "Interface for Snakemake report plugins"; homepage = "https://github.com/snakemake/snakemake-interface-report-plugins"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix b/pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix index 70abbf472a52..aee79e56be52 100644 --- a/pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix +++ b/pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "snakemake_interface_storage_plugins" ]; - meta = with lib; { + meta = { description = "This package provides a stable interface for interactions between Snakemake and its storage plugins"; homepage = "https://github.com/snakemake/snakemake-interface-storage-plugins"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/snakemake-storage-plugin-fs/default.nix b/pkgs/development/python-modules/snakemake-storage-plugin-fs/default.nix index 97c0bf3576ab..41c0f43edf22 100644 --- a/pkgs/development/python-modules/snakemake-storage-plugin-fs/default.nix +++ b/pkgs/development/python-modules/snakemake-storage-plugin-fs/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # Use nothing due to a cyclic dependency on snakemake pythonImportsCheck = [ ]; - meta = with lib; { + meta = { description = "Snakemake storage plugin that reads and writes from a locally mounted filesystem using rsync"; homepage = "https://github.com/snakemake/snakemake-storage-plugin-fs"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix b/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix index 2f9526d6fcff..3b8529714ed8 100644 --- a/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix +++ b/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "snakemake_storage_plugin_s3" ]; - meta = with lib; { + meta = { description = "Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)"; homepage = "https://github.com/snakemake/snakemake-storage-plugin-s3"; changelog = "https://github.com/snakemake/snakemake-storage-plugin-s3/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix b/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix index 1b68b506ba3a..344b61d65464 100644 --- a/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix +++ b/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "snakemake_storage_plugin_xrootd" ]; - meta = with lib; { + meta = { description = "Snakemake storage plugin for handling input and output via XRootD"; homepage = "https://github.com/snakemake/snakemake-storage-plugin-xrootd"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/snakeviz/default.nix b/pkgs/development/python-modules/snakeviz/default.nix index 4dd1ad6f7e3d..1c94ce798d59 100644 --- a/pkgs/development/python-modules/snakeviz/default.nix +++ b/pkgs/development/python-modules/snakeviz/default.nix @@ -44,13 +44,13 @@ buildPythonPackage rec { mkdir -p "$HOME" ''; - meta = with lib; { + meta = { description = "Browser based viewer for profiling data"; mainProgram = "snakeviz"; homepage = "https://jiffyclub.github.io/snakeviz"; changelog = "https://github.com/jiffyclub/snakeviz/blob/v${version}/CHANGES.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nixy pbsds ]; diff --git a/pkgs/development/python-modules/snapcast/default.nix b/pkgs/development/python-modules/snapcast/default.nix index 55a766e7ef2f..0c69bffb0f34 100644 --- a/pkgs/development/python-modules/snapcast/default.nix +++ b/pkgs/development/python-modules/snapcast/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "est_stream_setproperty" ]; - meta = with lib; { + meta = { description = "Control Snapcast, a multi-room synchronous audio solution"; homepage = "https://github.com/happyleavesaoc/python-snapcast/"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/snappy-15-knots/default.nix b/pkgs/development/python-modules/snappy-15-knots/default.nix index b08334eabebb..c33f2be14847 100644 --- a/pkgs/development/python-modules/snappy-15-knots/default.nix +++ b/pkgs/development/python-modules/snappy-15-knots/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "snappy_15_knots" ]; - meta = with lib; { + meta = { description = "Database of snappy manifolds"; homepage = "https://snappy.computop.org"; changelog = "https://github.com/3-manifolds/snappy_15_knots/releases/tag/${src.tag}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ noiioiu alejo7797 ]; diff --git a/pkgs/development/python-modules/snapshottest/default.nix b/pkgs/development/python-modules/snapshottest/default.nix index 244a1627f11c..f8f39d6687bc 100644 --- a/pkgs/development/python-modules/snapshottest/default.nix +++ b/pkgs/development/python-modules/snapshottest/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "snapshottest" ]; - meta = with lib; { + meta = { description = "Snapshot testing for pytest, unittest, Django, and Nose"; homepage = "https://github.com/syrusakbary/snapshottest"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/snaptime/default.nix b/pkgs/development/python-modules/snaptime/default.nix index c48cfd27f9b1..6fdf026ff6c7 100644 --- a/pkgs/development/python-modules/snaptime/default.nix +++ b/pkgs/development/python-modules/snaptime/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # no tests on Pypi, no tags on github doCheck = false; - meta = with lib; { + meta = { description = "Transform timestamps with a simple DSL"; homepage = "https://github.com/zartstrom/snaptime"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/sniffio/default.nix b/pkgs/development/python-modules/sniffio/default.nix index 5bfe0e6c191b..4908346c2e59 100644 --- a/pkgs/development/python-modules/sniffio/default.nix +++ b/pkgs/development/python-modules/sniffio/default.nix @@ -34,9 +34,9 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/python-trio/sniffio"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Sniff out which async library your code is running under"; }; } diff --git a/pkgs/development/python-modules/snitun/default.nix b/pkgs/development/python-modules/snitun/default.nix index 06eb472ad17c..6926926605b9 100644 --- a/pkgs/development/python-modules/snitun/default.nix +++ b/pkgs/development/python-modules/snitun/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "snitun" ]; - meta = with lib; { + meta = { description = "SNI proxy with TCP multiplexer"; changelog = "https://github.com/NabuCasa/snitun/releases/tag/${src.tag}"; homepage = "https://github.com/nabucasa/snitun"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Scriptkiddi ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Scriptkiddi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/snorkel/default.nix b/pkgs/development/python-modules/snorkel/default.nix index 5a78118c90f8..e6b0075d4922 100644 --- a/pkgs/development/python-modules/snorkel/default.nix +++ b/pkgs/development/python-modules/snorkel/default.nix @@ -61,11 +61,11 @@ buildPythonPackage { ] ++ dask.optional-dependencies.distributed; - meta = with lib; { + meta = { description = "System for quickly generating training data with weak supervision"; homepage = "https://github.com/snorkel-team/snorkel"; changelog = "https://github.com/snorkel/snorkel/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/snowballstemmer/default.nix b/pkgs/development/python-modules/snowballstemmer/default.nix index e1c49af9e220..3a39c5e4a357 100644 --- a/pkgs/development/python-modules/snowballstemmer/default.nix +++ b/pkgs/development/python-modules/snowballstemmer/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ pystemmer ]; - meta = with lib; { + meta = { description = "16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms"; homepage = "http://sigal.saimon.org/en/latest/index.html"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/snowflake-connector-python/default.nix b/pkgs/development/python-modules/snowflake-connector-python/default.nix index 19e472e14af2..94d85f22f656 100644 --- a/pkgs/development/python-modules/snowflake-connector-python/default.nix +++ b/pkgs/development/python-modules/snowflake-connector-python/default.nix @@ -125,11 +125,11 @@ buildPythonPackage rec { "snowflake.connector" ]; - meta = with lib; { + meta = { description = "Snowflake Connector for Python"; homepage = "https://github.com/snowflakedb/snowflake-connector-python"; changelog = "https://github.com/snowflakedb/snowflake-connector-python/blob/${src.tag}/DESCRIPTION.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/snowflake-sqlalchemy/default.nix b/pkgs/development/python-modules/snowflake-sqlalchemy/default.nix index c22613adaf6c..7788cf781a75 100644 --- a/pkgs/development/python-modules/snowflake-sqlalchemy/default.nix +++ b/pkgs/development/python-modules/snowflake-sqlalchemy/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "snowflake.sqlalchemy" ]; - meta = with lib; { + meta = { description = "Snowflake SQLAlchemy Dialect"; changelog = "https://github.com/snowflakedb/snowflake-sqlalchemy/blob/${src.tag}/DESCRIPTION.md"; homepage = "https://github.com/snowflakedb/snowflake-sqlalchemy"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/snscrape/default.nix b/pkgs/development/python-modules/snscrape/default.nix index cb16c0ace1f6..c9315e2076b3 100644 --- a/pkgs/development/python-modules/snscrape/default.nix +++ b/pkgs/development/python-modules/snscrape/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "snscrape" ]; - meta = with lib; { + meta = { description = "Social networking service scraper"; homepage = "https://github.com/JustAnotherArchivist/snscrape"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ivan ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ivan ]; mainProgram = "snscrape"; }; } diff --git a/pkgs/development/python-modules/snuggs/default.nix b/pkgs/development/python-modules/snuggs/default.nix index 33c8b90249fd..a2833b340713 100644 --- a/pkgs/development/python-modules/snuggs/default.nix +++ b/pkgs/development/python-modules/snuggs/default.nix @@ -43,9 +43,9 @@ buildPythonPackage rec { hypothesis ]; - meta = with lib; { + meta = { description = "S-expressions for Numpy"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/mapbox/snuggs"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/social-auth-app-django/default.nix b/pkgs/development/python-modules/social-auth-app-django/default.nix index 614c65fe8963..b19c2fe6444e 100644 --- a/pkgs/development/python-modules/social-auth-app-django/default.nix +++ b/pkgs/development/python-modules/social-auth-app-django/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { export DJANGO_SETTINGS_MODULE=tests.settings ''; - meta = with lib; { + meta = { broken = lib.versionOlder django.version "5.1"; description = "Module for social authentication/registration mechanism"; homepage = "https://github.com/python-social-auth/social-app-django"; changelog = "https://github.com/python-social-auth/social-app-django/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/social-auth-core/default.nix b/pkgs/development/python-modules/social-auth-core/default.nix index 994433501dcd..a69e79520276 100644 --- a/pkgs/development/python-modules/social-auth-core/default.nix +++ b/pkgs/development/python-modules/social-auth-core/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "social_core" ]; - meta = with lib; { + meta = { description = "Module for social authentication/registration mechanisms"; homepage = "https://github.com/python-social-auth/social-core"; changelog = "https://github.com/python-social-auth/social-core/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/socialscan/default.nix b/pkgs/development/python-modules/socialscan/default.nix index 381dc8b4752c..0d8a4ea5ae1d 100644 --- a/pkgs/development/python-modules/socialscan/default.nix +++ b/pkgs/development/python-modules/socialscan/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "socialscan" ]; - meta = with lib; { + meta = { description = "Python library and CLI for accurately querying username and email usage on online platforms"; mainProgram = "socialscan"; homepage = "https://github.com/iojw/socialscan"; changelog = "https://github.com/iojw/socialscan/releases/tag/v${version}"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/socid-extractor/default.nix b/pkgs/development/python-modules/socid-extractor/default.nix index 1a326732a196..f8c06950d904 100644 --- a/pkgs/development/python-modules/socid-extractor/default.nix +++ b/pkgs/development/python-modules/socid-extractor/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "socid_extractor" ]; - meta = with lib; { + meta = { description = "Python module to extract details from personal pages"; homepage = "https://github.com/soxoj/socid-extractor"; changelog = "https://github.com/soxoj/socid-extractor/blob/v${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "socid_extractor"; }; } diff --git a/pkgs/development/python-modules/socketio-client/default.nix b/pkgs/development/python-modules/socketio-client/default.nix index 4f7177766821..e6c06494f693 100644 --- a/pkgs/development/python-modules/socketio-client/default.nix +++ b/pkgs/development/python-modules/socketio-client/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "socketIO_client" ]; - meta = with lib; { + meta = { description = "Socket.io client library for protocol 1.x"; homepage = "https://github.com/invisibleroads/socketIO-client"; - license = licenses.mit; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/sockio/default.nix b/pkgs/development/python-modules/sockio/default.nix index 0e0f513c257d..15beeeacb2be 100644 --- a/pkgs/development/python-modules/sockio/default.nix +++ b/pkgs/development/python-modules/sockio/default.nix @@ -72,10 +72,10 @@ buildPythonPackage rec { "tests/test_py2.py" ]; - meta = with lib; { + meta = { description = "Implementation of the Modbus protocol"; homepage = "https://tiagocoutinho.github.io/sockio/"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sockjs-tornado/default.nix b/pkgs/development/python-modules/sockjs-tornado/default.nix index ba23c3e7493d..9e3b9f81e97d 100644 --- a/pkgs/development/python-modules/sockjs-tornado/default.nix +++ b/pkgs/development/python-modules/sockjs-tornado/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ tornado ]; - meta = with lib; { + meta = { homepage = "https://github.com/mrjoes/sockjs-tornado/"; description = "SockJS python server implementation on top of Tornado framework"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sockjs/default.nix b/pkgs/development/python-modules/sockjs/default.nix index c23e116d928c..dc9e3b03eefa 100644 --- a/pkgs/development/python-modules/sockjs/default.nix +++ b/pkgs/development/python-modules/sockjs/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sockjs" ]; - meta = with lib; { + meta = { description = "Sockjs server"; homepage = "https://github.com/aio-libs/sockjs"; changelog = "https://github.com/aio-libs/sockjs/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/socksio/default.nix b/pkgs/development/python-modules/socksio/default.nix index decae7430fa2..27af0ec3d25b 100644 --- a/pkgs/development/python-modules/socksio/default.nix +++ b/pkgs/development/python-modules/socksio/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Sans-I/O implementation of SOCKS4, SOCKS4A, and SOCKS5"; homepage = "https://github.com/sethmlarson/socksio"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/socksipy-branch/default.nix b/pkgs/development/python-modules/socksipy-branch/default.nix index 01ebe477275e..30d2a9bbdf21 100644 --- a/pkgs/development/python-modules/socksipy-branch/default.nix +++ b/pkgs/development/python-modules/socksipy-branch/default.nix @@ -15,9 +15,9 @@ buildPythonPackage rec { sha256 = "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p"; }; - meta = with lib; { + meta = { homepage = "http://code.google.com/p/socksipy-branch/"; description = "This Python module allows you to create TCP connections through a SOCKS proxy without any special effort"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/soco/default.nix b/pkgs/development/python-modules/soco/default.nix index 31f343f984bd..879d8bb26ab5 100644 --- a/pkgs/development/python-modules/soco/default.nix +++ b/pkgs/development/python-modules/soco/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "soco" ]; - meta = with lib; { + meta = { description = "CLI and library to control Sonos speakers"; homepage = "http://python-soco.com/"; changelog = "https://github.com/SoCo/SoCo/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/solax/default.nix b/pkgs/development/python-modules/solax/default.nix index e30f9cfc9d3f..8cd6f0754b52 100644 --- a/pkgs/development/python-modules/solax/default.nix +++ b/pkgs/development/python-modules/solax/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { "test_smoke" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Solax Inverter API"; homepage = "https://github.com/squishykid/solax"; changelog = "https://github.com/squishykid/solax/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/solc-select/default.nix b/pkgs/development/python-modules/solc-select/default.nix index 38525508feb1..e740fc0350b3 100644 --- a/pkgs/development/python-modules/solc-select/default.nix +++ b/pkgs/development/python-modules/solc-select/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "solc_select" ]; - meta = with lib; { + meta = { description = "Manage and switch between Solidity compiler versions"; homepage = "https://github.com/crytic/solc-select"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ arturcygan ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ arturcygan ]; }; } diff --git a/pkgs/development/python-modules/solidpython2/default.nix b/pkgs/development/python-modules/solidpython2/default.nix index 7daf7d6c53a4..893b339a6794 100644 --- a/pkgs/development/python-modules/solidpython2/default.nix +++ b/pkgs/development/python-modules/solidpython2/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/jeff-dh/SolidPython"; description = "Python frontend for solid modelling that compiles to OpenSCAD"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ jonboh ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ jonboh ]; }; } diff --git a/pkgs/development/python-modules/solo-python/default.nix b/pkgs/development/python-modules/solo-python/default.nix index 99eff0c3f0ef..905f6c02a17d 100644 --- a/pkgs/development/python-modules/solo-python/default.nix +++ b/pkgs/development/python-modules/solo-python/default.nix @@ -56,8 +56,8 @@ buildPythonPackage rec { meta = with lib; { description = "Python tool and library for SoloKeys Solo 1"; homepage = "https://github.com/solokeys/solo1-cli"; - maintainers = with maintainers; [ wucke13 ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ wucke13 ]; + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/development/python-modules/somajo/default.nix b/pkgs/development/python-modules/somajo/default.nix index c3d9ff6916d5..3a148fbcfe90 100644 --- a/pkgs/development/python-modules/somajo/default.nix +++ b/pkgs/development/python-modules/somajo/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "somajo" ]; - meta = with lib; { + meta = { description = "Tokenizer and sentence splitter for German and English web texts"; homepage = "https://github.com/tsproisl/SoMaJo"; changelog = "https://github.com/tsproisl/SoMaJo/blob/v${version}/CHANGES.txt"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "somajo-tokenizer"; }; diff --git a/pkgs/development/python-modules/somfy-mylink-synergy/default.nix b/pkgs/development/python-modules/somfy-mylink-synergy/default.nix index 1bb28e17cd1f..137b187b0052 100644 --- a/pkgs/development/python-modules/somfy-mylink-synergy/default.nix +++ b/pkgs/development/python-modules/somfy-mylink-synergy/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "somfy_mylink_synergy" ]; - meta = with lib; { + meta = { description = "Python API to utilise the Somfy Synergy JsonRPC API"; homepage = "https://github.com/bendews/somfy-mylink-synergy"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/somweb/default.nix b/pkgs/development/python-modules/somweb/default.nix index 9b9add044ee8..5c56c7f4ba64 100644 --- a/pkgs/development/python-modules/somweb/default.nix +++ b/pkgs/development/python-modules/somweb/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { changelog = "https://github.com/taarskog/pySOMweb/releases/tag/v${version}"; description = "Client library to control garage door operators produced by SOMMER through their SOMweb device"; homepage = "https://github.com/taarskog/pysomweb"; - license = licenses.mit; - maintainers = with maintainers; [ uvnikita ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; mainProgram = "somweb"; }; } diff --git a/pkgs/development/python-modules/sopel/default.nix b/pkgs/development/python-modules/sopel/default.nix index 7fc37cd1f6f6..f54e7bf9b29a 100644 --- a/pkgs/development/python-modules/sopel/default.nix +++ b/pkgs/development/python-modules/sopel/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sopel" ]; - meta = with lib; { + meta = { description = "Simple and extensible IRC bot"; homepage = "https://sopel.chat"; - license = licenses.efl20; - maintainers = with maintainers; [ mog ]; + license = lib.licenses.efl20; + maintainers = with lib.maintainers; [ mog ]; mainProgram = "sopel"; }; } diff --git a/pkgs/development/python-modules/sorl-thumbnail/default.nix b/pkgs/development/python-modules/sorl-thumbnail/default.nix index 161c8119cb93..1c5d04867c7e 100644 --- a/pkgs/development/python-modules/sorl-thumbnail/default.nix +++ b/pkgs/development/python-modules/sorl-thumbnail/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sorl.thumbnail" ]; - meta = with lib; { + meta = { homepage = "https://sorl-thumbnail.readthedocs.org/en/latest/"; description = "Thumbnails for Django"; changelog = "https://github.com/jazzband/sorl-thumbnail/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/sortedcollections/default.nix b/pkgs/development/python-modules/sortedcollections/default.nix index a525167635b6..bf7af7a8c3fa 100644 --- a/pkgs/development/python-modules/sortedcollections/default.nix +++ b/pkgs/development/python-modules/sortedcollections/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sortedcollections" ]; - meta = with lib; { + meta = { description = "Python Sorted Collections"; homepage = "http://www.grantjenks.com/docs/sortedcollections/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sortedcontainers/default.nix b/pkgs/development/python-modules/sortedcontainers/default.nix index 967119bbe776..985644224307 100644 --- a/pkgs/development/python-modules/sortedcontainers/default.nix +++ b/pkgs/development/python-modules/sortedcontainers/default.nix @@ -30,10 +30,10 @@ let }); }; - meta = with lib; { + meta = { description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet"; homepage = "https://grantjenks.com/docs/sortedcontainers/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/soundcloud-v2/default.nix b/pkgs/development/python-modules/soundcloud-v2/default.nix index 6fd5c0b67494..2dbb4d6e6cbd 100644 --- a/pkgs/development/python-modules/soundcloud-v2/default.nix +++ b/pkgs/development/python-modules/soundcloud-v2/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "soundcloud" ]; - meta = with lib; { + meta = { description = "Python wrapper for the v2 SoundCloud API"; homepage = "https://github.com/7x11x13/soundcloud.py"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/soupsieve/default.nix b/pkgs/development/python-modules/soupsieve/default.nix index 784e2423d8cf..14fad40f567b 100644 --- a/pkgs/development/python-modules/soupsieve/default.nix +++ b/pkgs/development/python-modules/soupsieve/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { # Circular dependency on beautifulsoup4 # pythonImportsCheck = [ "soupsieve" ]; - meta = with lib; { + meta = { description = "CSS4 selector implementation for Beautiful Soup"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/facelessuser/soupsieve"; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/sourmash/default.nix b/pkgs/development/python-modules/sourmash/default.nix index 513b03db10bc..b30bffcd2e4c 100644 --- a/pkgs/development/python-modules/sourmash/default.nix +++ b/pkgs/development/python-modules/sourmash/default.nix @@ -69,12 +69,12 @@ buildPythonPackage rec { "test_metagenome_kreport_out_fail" ]; - meta = with lib; { + meta = { description = "Quickly search, compare, and analyze genomic and metagenomic data sets"; mainProgram = "sourmash"; homepage = "https://sourmash.bio"; changelog = "https://github.com/sourmash-bio/sourmash/releases/tag/v${version}"; - maintainers = with maintainers; [ luizirber ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ luizirber ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/soxr/default.nix b/pkgs/development/python-modules/soxr/default.nix index d40716efda38..0b4829d4a741 100644 --- a/pkgs/development/python-modules/soxr/default.nix +++ b/pkgs/development/python-modules/soxr/default.nix @@ -66,11 +66,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/dofuuz/python-soxr/releases/tag/${src.tag}"; description = "High quality, one-dimensional sample-rate conversion library"; homepage = "https://github.com/dofuuz/python-soxr/tree/main"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/spacy-alignments/default.nix b/pkgs/development/python-modules/spacy-alignments/default.nix index 2e7ec4f19371..01c23d155239 100644 --- a/pkgs/development/python-modules/spacy-alignments/default.nix +++ b/pkgs/development/python-modules/spacy-alignments/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "spacy_alignments" ]; - meta = with lib; { + meta = { description = "Align tokenizations for spaCy and transformers"; homepage = "https://github.com/explosion/spacy-alignments"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/spacy-loggers/default.nix b/pkgs/development/python-modules/spacy-loggers/default.nix index fd791827d522..b111a608cbcd 100644 --- a/pkgs/development/python-modules/spacy-loggers/default.nix +++ b/pkgs/development/python-modules/spacy-loggers/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # skipping the checks, because it requires a cycle dependency to spacy as well. doCheck = false; - meta = with lib; { + meta = { description = "Logging utilities for spaCy"; homepage = "https://github.com/explosion/spacy-loggers"; - license = licenses.mit; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; } diff --git a/pkgs/development/python-modules/spacy-pkuseg/default.nix b/pkgs/development/python-modules/spacy-pkuseg/default.nix index d299ab82323c..effa571b159e 100644 --- a/pkgs/development/python-modules/spacy-pkuseg/default.nix +++ b/pkgs/development/python-modules/spacy-pkuseg/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "spacy_pkuseg" ]; - meta = with lib; { + meta = { description = "Toolkit for multi-domain Chinese word segmentation (spaCy fork)"; homepage = "https://github.com/explosion/spacy-pkuseg"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/spacy/legacy.nix b/pkgs/development/python-modules/spacy/legacy.nix index 55f0f97b4e61..c4ffb7c89956 100644 --- a/pkgs/development/python-modules/spacy/legacy.nix +++ b/pkgs/development/python-modules/spacy/legacy.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "spacy_legacy" ]; - meta = with lib; { + meta = { description = "Legacy registered functions for spaCy backwards compatibility"; homepage = "https://github.com/explosion/spacy-legacy"; changelog = "https://github.com/explosion/spacy-legacy/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/spacy/lookups-data.nix b/pkgs/development/python-modules/spacy/lookups-data.nix index 3e1e024350d8..a664f7d2cfde 100644 --- a/pkgs/development/python-modules/spacy/lookups-data.nix +++ b/pkgs/development/python-modules/spacy/lookups-data.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "spacy_lookups_data" ]; - meta = with lib; { + meta = { description = "Additional lookup tables and data resources for spaCy"; homepage = "https://pypi.org/project/spacy-lookups-data"; - license = licenses.mit; - maintainers = with maintainers; [ jboy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jboy ]; }; } diff --git a/pkgs/development/python-modules/spake2/default.nix b/pkgs/development/python-modules/spake2/default.nix index 75fa2bfed15b..ac7f317793ce 100644 --- a/pkgs/development/python-modules/spake2/default.nix +++ b/pkgs/development/python-modules/spake2/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/warner/python-spake2/blob/v${version}/NEWS"; description = "SPAKE2 password-authenticated key exchange library"; homepage = "https://github.com/warner/python-spake2"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/spark-parser/default.nix b/pkgs/development/python-modules/spark-parser/default.nix index 46eea5136304..86b142cdcb97 100644 --- a/pkgs/development/python-modules/spark-parser/default.nix +++ b/pkgs/development/python-modules/spark-parser/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { "-v" ]; - meta = with lib; { + meta = { description = "Early-Algorithm Context-free grammar Parser"; mainProgram = "spark-parser-coverage"; homepage = "https://github.com/rocky/python-spark"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; }; } diff --git a/pkgs/development/python-modules/sparklines/default.nix b/pkgs/development/python-modules/sparklines/default.nix index 493112410477..0b41f563fdb4 100644 --- a/pkgs/development/python-modules/sparklines/default.nix +++ b/pkgs/development/python-modules/sparklines/default.nix @@ -35,13 +35,13 @@ buildPythonPackage rec { --replace-fail "/tmp/" "$TMPDIR/" ''; - meta = with lib; { + meta = { description = "This Python package implements Edward Tufte's concept of sparklines, but limited to text only"; mainProgram = "sparklines"; homepage = "https://github.com/deeplook/sparklines"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rhoriguchi ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sparqlwrapper/default.nix b/pkgs/development/python-modules/sparqlwrapper/default.nix index 20c32f52379f..76b1c502df80 100644 --- a/pkgs/development/python-modules/sparqlwrapper/default.nix +++ b/pkgs/development/python-modules/sparqlwrapper/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ keepalive ]; - meta = with lib; { + meta = { description = "This is a wrapper around a SPARQL service. It helps in creating the query URI and, possibly, convert the result into a more manageable format"; mainProgram = "rqw"; homepage = "http://rdflib.github.io/sparqlwrapper"; - license = licenses.w3c; + license = lib.licenses.w3c; }; } diff --git a/pkgs/development/python-modules/spatialmath-python/default.nix b/pkgs/development/python-modules/spatialmath-python/default.nix index ad4b103fb8b3..877aa910097a 100644 --- a/pkgs/development/python-modules/spatialmath-python/default.nix +++ b/pkgs/development/python-modules/spatialmath-python/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { env.MPLBACKEND = lib.optionalString stdenv.hostPlatform.isDarwin "Agg"; - meta = with lib; { + meta = { description = "Provides spatial maths capability for Python"; homepage = "https://pypi.org/project/spatialmath-python/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ djacu a-camarillo ]; diff --git a/pkgs/development/python-modules/spdx-tools/default.nix b/pkgs/development/python-modules/spdx-tools/default.nix index 2519f3038bbe..08458f9bb14e 100644 --- a/pkgs/development/python-modules/spdx-tools/default.nix +++ b/pkgs/development/python-modules/spdx-tools/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { "test_json_writer" ]; - meta = with lib; { + meta = { description = "SPDX parser and tools"; homepage = "https://github.com/spdx/tools-python"; changelog = "https://github.com/spdx/tools-python/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/speaklater/default.nix b/pkgs/development/python-modules/speaklater/default.nix index 1529e200f731..27f670f8a8d9 100644 --- a/pkgs/development/python-modules/speaklater/default.nix +++ b/pkgs/development/python-modules/speaklater/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "1ab5dbfzzgz6cnz4xlwx79gz83id4bhiw67k1cgqrlzfs0va7zjr"; }; - meta = with lib; { + meta = { description = "Implements a lazy string for python useful for use with gettext"; homepage = "https://github.com/mitsuhiko/speaklater"; - license = licenses.bsd0; - maintainers = with maintainers; [ matejc ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ matejc ]; }; } diff --git a/pkgs/development/python-modules/speaklater3/default.nix b/pkgs/development/python-modules/speaklater3/default.nix index 780ef60bb996..4be3379c42ca 100644 --- a/pkgs/development/python-modules/speaklater3/default.nix +++ b/pkgs/development/python-modules/speaklater3/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "speaklater" ]; - meta = with lib; { + meta = { description = "Implements a lazy string for python useful for use with gettext"; homepage = "https://github.com/mitsuhiko/speaklater"; - license = licenses.bsd0; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/speechrecognition/default.nix b/pkgs/development/python-modules/speechrecognition/default.nix index 41afd46d3628..61cbc9723c10 100644 --- a/pkgs/development/python-modules/speechrecognition/default.nix +++ b/pkgs/development/python-modules/speechrecognition/default.nix @@ -87,14 +87,14 @@ buildPythonPackage rec { "test_sphinx_keywords" ]; - meta = with lib; { + meta = { description = "Speech recognition module for Python, supporting several engines and APIs, online and offline"; homepage = "https://github.com/Uberi/speech_recognition"; changelog = "https://github.com/Uberi/speech_recognition/releases/tag/${src.tag}"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only bsd3 ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/speedtest-cli/default.nix b/pkgs/development/python-modules/speedtest-cli/default.nix index 2b9954d3305b..86a36cf2d78e 100644 --- a/pkgs/development/python-modules/speedtest-cli/default.nix +++ b/pkgs/development/python-modules/speedtest-cli/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { # tests require working internet connection doCheck = false; - meta = with lib; { + meta = { description = "Command line interface for testing internet bandwidth using speedtest.net"; homepage = "https://github.com/sivel/speedtest-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ makefu ]; }; diff --git a/pkgs/development/python-modules/speg/default.nix b/pkgs/development/python-modules/speg/default.nix index 1ec6bc84493d..46116244a9e1 100644 --- a/pkgs/development/python-modules/speg/default.nix +++ b/pkgs/development/python-modules/speg/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # checks fail for seemingly spurious reasons doCheck = false; - meta = with lib; { + meta = { description = "PEG-based parser interpreter with memoization (in time)"; homepage = "https://github.com/avakar/speg"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ xworld21 ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ xworld21 ]; }; } diff --git a/pkgs/development/python-modules/sphfile/default.nix b/pkgs/development/python-modules/sphfile/default.nix index b659f9a4403d..680620637c32 100644 --- a/pkgs/development/python-modules/sphfile/default.nix +++ b/pkgs/development/python-modules/sphfile/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Numpy-based NIST SPH audio-file reader"; homepage = "https://github.com/mcfletch/sphfile"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/sphinx-autoapi/default.nix b/pkgs/development/python-modules/sphinx-autoapi/default.nix index ca3b91b871fd..482218520a27 100644 --- a/pkgs/development/python-modules/sphinx-autoapi/default.nix +++ b/pkgs/development/python-modules/sphinx-autoapi/default.nix @@ -57,7 +57,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "autoapi" ]; - meta = with lib; { + meta = { homepage = "https://github.com/readthedocs/sphinx-autoapi"; changelog = "https://github.com/readthedocs/sphinx-autoapi/blob/${src.tag}/CHANGELOG.rst"; description = "Provides 'autodoc' style documentation"; @@ -66,7 +66,7 @@ buildPythonPackage rec { multiple programming languages without needing to load, run, or import the project being documented. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-autobuild/default.nix b/pkgs/development/python-modules/sphinx-autobuild/default.nix index ce2c41485a35..d6081880c211 100644 --- a/pkgs/development/python-modules/sphinx-autobuild/default.nix +++ b/pkgs/development/python-modules/sphinx-autobuild/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_autobuild" ]; - meta = with lib; { + meta = { description = "Rebuild Sphinx documentation on changes, with live-reload in the browser"; mainProgram = "sphinx-autobuild"; homepage = "https://github.com/sphinx-doc/sphinx-autobuild"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ holgerpeters ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ holgerpeters ]; }; } diff --git a/pkgs/development/python-modules/sphinx-autodoc-typehints/default.nix b/pkgs/development/python-modules/sphinx-autodoc-typehints/default.nix index f06e3580fddc..c18b168e12a3 100644 --- a/pkgs/development/python-modules/sphinx-autodoc-typehints/default.nix +++ b/pkgs/development/python-modules/sphinx-autodoc-typehints/default.nix @@ -39,11 +39,11 @@ buildPythonPackage { pythonImportsCheck = [ "sphinx_autodoc_typehints" ]; - meta = with lib; { + meta = { changelog = "https://github.com/tox-dev/sphinx-autodoc-typehints/releases/tag/${version}"; description = "Type hints (PEP 484) support for the Sphinx autodoc extension"; homepage = "https://github.com/tox-dev/sphinx-autodoc-typehints"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/sphinx-automodapi/default.nix b/pkgs/development/python-modules/sphinx-automodapi/default.nix index 333d2b93ad84..d465a3bd8b3e 100644 --- a/pkgs/development/python-modules/sphinx-automodapi/default.nix +++ b/pkgs/development/python-modules/sphinx-automodapi/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_automodapi" ]; - meta = with lib; { + meta = { description = "Sphinx extension for generating API documentation"; homepage = "https://github.com/astropy/sphinx-automodapi"; changelog = "https://github.com/astropy/sphinx-automodapi/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/sphinx-basic-ng/default.nix b/pkgs/development/python-modules/sphinx-basic-ng/default.nix index 9afde893cfde..030d61b84c9d 100644 --- a/pkgs/development/python-modules/sphinx-basic-ng/default.nix +++ b/pkgs/development/python-modules/sphinx-basic-ng/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_basic_ng" ]; - meta = with lib; { + meta = { description = "Modernised skeleton for Sphinx themes"; homepage = "https://sphinx-basic-ng.readthedocs.io/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/sphinx-better-theme/default.nix b/pkgs/development/python-modules/sphinx-better-theme/default.nix index 130f96e3b78c..02f999b616f0 100644 --- a/pkgs/development/python-modules/sphinx-better-theme/default.nix +++ b/pkgs/development/python-modules/sphinx-better-theme/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "better" ]; - meta = with lib; { + meta = { homepage = "https://github.com/irskep/sphinx-better-theme"; description = "Better Sphinx Theme"; longDescription = '' @@ -48,7 +48,7 @@ buildPythonPackage rec { html_theme_path = [better_theme_path] html_theme = 'better' ''; - license = licenses.bsd2; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinx-book-theme/default.nix b/pkgs/development/python-modules/sphinx-book-theme/default.nix index 9b342a5a702b..db9619909119 100644 --- a/pkgs/development/python-modules/sphinx-book-theme/default.nix +++ b/pkgs/development/python-modules/sphinx-book-theme/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { inherit jupyter-book; }; - meta = with lib; { + meta = { description = "Clean book theme for scientific explanations and documentation with Sphinx"; homepage = "https://github.com/executablebooks/sphinx-book-theme"; changelog = "https://github.com/executablebooks/sphinx-book-theme/raw/v${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-codeautolink/default.nix b/pkgs/development/python-modules/sphinx-codeautolink/default.nix index c8bf7e37a0ab..864ba81d611e 100644 --- a/pkgs/development/python-modules/sphinx-codeautolink/default.nix +++ b/pkgs/development/python-modules/sphinx-codeautolink/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_codeautolink" ]; - meta = with lib; { + meta = { description = "Sphinx extension that makes code examples clickable"; homepage = "https://github.com/felix-hilden/sphinx-codeautolink"; changelog = "https://github.com/felix-hilden/sphinx-codeautolink/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinx-comments/default.nix b/pkgs/development/python-modules/sphinx-comments/default.nix index 65dedffdfacb..217c084115b1 100644 --- a/pkgs/development/python-modules/sphinx-comments/default.nix +++ b/pkgs/development/python-modules/sphinx-comments/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_comments" ]; - meta = with lib; { + meta = { description = "Add comments and annotation to your documentation"; homepage = "https://github.com/executablebooks/sphinx-comments"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-copybutton/default.nix b/pkgs/development/python-modules/sphinx-copybutton/default.nix index 67216681b75e..45cd3932b14b 100644 --- a/pkgs/development/python-modules/sphinx-copybutton/default.nix +++ b/pkgs/development/python-modules/sphinx-copybutton/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_copybutton" ]; - meta = with lib; { + meta = { description = "Small sphinx extension to add a \"copy\" button to code blocks"; homepage = "https://github.com/executablebooks/sphinx-copybutton"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/sphinx-design/default.nix b/pkgs/development/python-modules/sphinx-design/default.nix index 032caf4a0e83..6fe213a7fb77 100644 --- a/pkgs/development/python-modules/sphinx-design/default.nix +++ b/pkgs/development/python-modules/sphinx-design/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_design" ]; - meta = with lib; { + meta = { description = "Sphinx extension for designing beautiful, view size responsive web components"; homepage = "https://github.com/executablebooks/sphinx-design"; changelog = "https://github.com/executablebooks/sphinx-design/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-external-toc/default.nix b/pkgs/development/python-modules/sphinx-external-toc/default.nix index ab45c1b8bfaf..a184544f57b3 100644 --- a/pkgs/development/python-modules/sphinx-external-toc/default.nix +++ b/pkgs/development/python-modules/sphinx-external-toc/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_external_toc" ]; - meta = with lib; { + meta = { description = "Sphinx extension that allows the site-map to be defined in a single YAML file"; mainProgram = "sphinx-etoc"; homepage = "https://github.com/executablebooks/sphinx-external-toc"; changelog = "https://github.com/executablebooks/sphinx-external-toc/raw/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-fortran/default.nix b/pkgs/development/python-modules/sphinx-fortran/default.nix index 341b3a5ce5e0..76e1f9f24e06 100644 --- a/pkgs/development/python-modules/sphinx-fortran/default.nix +++ b/pkgs/development/python-modules/sphinx-fortran/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Fortran domain and autodoc extensions to Sphinx"; homepage = "http://sphinx-fortran.readthedocs.org/"; - license = licenses.cecill21; - maintainers = with maintainers; [ loicreynier ]; + license = lib.licenses.cecill21; + maintainers = with lib.maintainers; [ loicreynier ]; }; } diff --git a/pkgs/development/python-modules/sphinx-inline-tabs/default.nix b/pkgs/development/python-modules/sphinx-inline-tabs/default.nix index 5a36420dc430..de6d7a1ff23a 100644 --- a/pkgs/development/python-modules/sphinx-inline-tabs/default.nix +++ b/pkgs/development/python-modules/sphinx-inline-tabs/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_inline_tabs" ]; - meta = with lib; { + meta = { description = "Add inline tabbed content to your Sphinx documentation"; homepage = "https://github.com/pradyunsg/sphinx-inline-tabs"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/sphinx-intl/default.nix b/pkgs/development/python-modules/sphinx-intl/default.nix index d7a25e8ab7a2..776fcd4d9660 100644 --- a/pkgs/development/python-modules/sphinx-intl/default.nix +++ b/pkgs/development/python-modules/sphinx-intl/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_intl" ]; - meta = with lib; { + meta = { description = "Sphinx utility that make it easy to translate and to apply translation"; homepage = "https://github.com/sphinx-doc/sphinx-intl"; - license = licenses.bsd2; - maintainers = with maintainers; [ thornycrackers ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ thornycrackers ]; }; } diff --git a/pkgs/development/python-modules/sphinx-issues/default.nix b/pkgs/development/python-modules/sphinx-issues/default.nix index 65d224bb9cca..c56115ae1de9 100644 --- a/pkgs/development/python-modules/sphinx-issues/default.nix +++ b/pkgs/development/python-modules/sphinx-issues/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ sphinx ]; - meta = with lib; { + meta = { homepage = "https://github.com/sloria/sphinx-issues"; description = "Sphinx extension for linking to your project's issue tracker"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinx-jinja/default.nix b/pkgs/development/python-modules/sphinx-jinja/default.nix index 7627dddd4ba5..92cbb670aa80 100644 --- a/pkgs/development/python-modules/sphinx-jinja/default.nix +++ b/pkgs/development/python-modules/sphinx-jinja/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_jinja" ]; - meta = with lib; { + meta = { description = "Sphinx extension to include jinja templates in documentation"; homepage = "https://github.com/tardyp/sphinx-jinja"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix b/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix index 454dccbcadac..82b7ec87019f 100644 --- a/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix +++ b/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { defusedxml ]; - meta = with lib; { + meta = { description = "Latex specific features for jupyter book"; homepage = "https://github.com/executablebooks/sphinx-jupyterbook-latex"; changelog = "https://github.com/executablebooks/sphinx-jupyterbook-latex/raw/v${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-markdown-parser/default.nix b/pkgs/development/python-modules/sphinx-markdown-parser/default.nix index a8409208c493..75d50c7dea4d 100644 --- a/pkgs/development/python-modules/sphinx-markdown-parser/default.nix +++ b/pkgs/development/python-modules/sphinx-markdown-parser/default.nix @@ -56,10 +56,10 @@ buildPythonPackage { "test_integration" ]; - meta = with lib; { + meta = { description = "Write markdown inside of docutils & sphinx projects"; homepage = "https://github.com/clayrisser/sphinx-markdown-parser"; - license = licenses.mit; - maintainers = with maintainers; [ FlorianFranzen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ FlorianFranzen ]; }; } diff --git a/pkgs/development/python-modules/sphinx-markdown-tables/default.nix b/pkgs/development/python-modules/sphinx-markdown-tables/default.nix index 373bbd63e184..90c52eaba39d 100644 --- a/pkgs/development/python-modules/sphinx-markdown-tables/default.nix +++ b/pkgs/development/python-modules/sphinx-markdown-tables/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_markdown_tables" ]; - meta = with lib; { + meta = { description = "Sphinx extension for rendering tables written in markdown"; homepage = "https://github.com/ryanfox/sphinx-markdown-tables"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/sphinx-material/default.nix b/pkgs/development/python-modules/sphinx-material/default.nix index 752c15928d40..de3c05706caf 100644 --- a/pkgs/development/python-modules/sphinx-material/default.nix +++ b/pkgs/development/python-modules/sphinx-material/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_material" ]; - meta = with lib; { + meta = { description = "Material-based, responsive theme inspired by mkdocs-material"; homepage = "https://bashtage.github.io/sphinx-material"; changelog = "https://github.com/bashtage/sphinx-material/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ FlorianFranzen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ FlorianFranzen ]; }; } diff --git a/pkgs/development/python-modules/sphinx-mdinclude/default.nix b/pkgs/development/python-modules/sphinx-mdinclude/default.nix index 85c30a91a48c..cfa7885c08da 100644 --- a/pkgs/development/python-modules/sphinx-mdinclude/default.nix +++ b/pkgs/development/python-modules/sphinx-mdinclude/default.nix @@ -38,7 +38,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/omnilib/sphinx-mdinclude"; changelog = "https://github.com/omnilib/sphinx-mdinclude/blob/v${version}/CHANGELOG.md"; description = "Sphinx extension for including or writing pages in Markdown format"; @@ -50,8 +50,8 @@ buildPythonPackage rec { sphinx-mdinclude is a fork of m2r and m2r2, focused only on providing a Sphinx extension. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli JulianFP ]; diff --git a/pkgs/development/python-modules/sphinx-multitoc-numbering/default.nix b/pkgs/development/python-modules/sphinx-multitoc-numbering/default.nix index 66ca1490baca..d76586f60318 100644 --- a/pkgs/development/python-modules/sphinx-multitoc-numbering/default.nix +++ b/pkgs/development/python-modules/sphinx-multitoc-numbering/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_multitoc_numbering" ]; - meta = with lib; { + meta = { description = "Supporting continuous HTML section numbering"; homepage = "https://github.com/executablebooks/sphinx-multitoc-numbering"; changelog = "https://github.com/executablebooks/sphinx-multitoc-numbering/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-multiversion/default.nix b/pkgs/development/python-modules/sphinx-multiversion/default.nix index cadd2d5e7120..0fe57da153ee 100644 --- a/pkgs/development/python-modules/sphinx-multiversion/default.nix +++ b/pkgs/development/python-modules/sphinx-multiversion/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_multiversion" ]; - meta = with lib; { + meta = { description = "Sphinx extension for building self-hosted versioned docs"; homepage = "https://sphinx-contrib.github.io/multiversion"; changelog = "https://github.com/sphinx-contrib/multiversion/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ cynerd ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ cynerd ]; }; } diff --git a/pkgs/development/python-modules/sphinx-notfound-page/default.nix b/pkgs/development/python-modules/sphinx-notfound-page/default.nix index 271c6f7f92b4..7a342ab5667f 100644 --- a/pkgs/development/python-modules/sphinx-notfound-page/default.nix +++ b/pkgs/development/python-modules/sphinx-notfound-page/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "notfound" ]; - meta = with lib; { + meta = { description = "Sphinx extension to create a custom 404 page with absolute URLs hardcoded"; homepage = "https://github.com/readthedocs/sphinx-notfound-page"; changelog = "https://github.com/readthedocs/sphinx-notfound-page/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinx-prompt/default.nix b/pkgs/development/python-modules/sphinx-prompt/default.nix index 46c13eadfca1..7aaa75e139b9 100644 --- a/pkgs/development/python-modules/sphinx-prompt/default.nix +++ b/pkgs/development/python-modules/sphinx-prompt/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Sphinx extension for creating unselectable prompt"; homepage = "https://github.com/sbrunner/sphinx-prompt"; - license = licenses.bsd3; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinx-pytest/default.nix b/pkgs/development/python-modules/sphinx-pytest/default.nix index 23096443218a..b94d899ac837 100644 --- a/pkgs/development/python-modules/sphinx-pytest/default.nix +++ b/pkgs/development/python-modules/sphinx-pytest/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/sphinx-extensions2/sphinx-pytest/releases/tag/v${version}"; description = "Helpful pytest fixtures for Sphinx extensions"; homepage = "https://github.com/chrisjsewell/sphinx-pytest"; - license = licenses.mit; - maintainers = with maintainers; [ loicreynier ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ loicreynier ]; }; } diff --git a/pkgs/development/python-modules/sphinx-rtd-dark-mode/default.nix b/pkgs/development/python-modules/sphinx-rtd-dark-mode/default.nix index ec2be51de60e..d643d6639532 100644 --- a/pkgs/development/python-modules/sphinx-rtd-dark-mode/default.nix +++ b/pkgs/development/python-modules/sphinx-rtd-dark-mode/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_rtd_dark_mode" ]; - meta = with lib; { + meta = { description = "Adds a toggleable dark mode to the Read the Docs theme for Sphinx"; homepage = "https://github.com/MrDogeBro/sphinx_rtd_dark_mode"; changelog = "https://github.com/MrDogeBro/sphinx_rtd_dark_mode/releases/tag/v${version}"; - maintainers = with maintainers; [ wolfgangwalther ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ wolfgangwalther ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sphinx-rtd-theme/default.nix b/pkgs/development/python-modules/sphinx-rtd-theme/default.nix index 1b6df8d72c14..791f0b691d98 100644 --- a/pkgs/development/python-modules/sphinx-rtd-theme/default.nix +++ b/pkgs/development/python-modules/sphinx-rtd-theme/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_rtd_theme" ]; - meta = with lib; { + meta = { description = "Sphinx theme for readthedocs.org"; homepage = "https://github.com/readthedocs/sphinx_rtd_theme"; changelog = "https://github.com/readthedocs/sphinx_rtd_theme/blob/${version}/docs/changelog.rst"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sphinx-serve/default.nix b/pkgs/development/python-modules/sphinx-serve/default.nix index 1b0ab4166f27..e0798d608403 100644 --- a/pkgs/development/python-modules/sphinx-serve/default.nix +++ b/pkgs/development/python-modules/sphinx-serve/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_serve" ]; - meta = with lib; { + meta = { description = "Spawns a simple HTTP server to preview your sphinx documents"; mainProgram = "sphinx-serve"; homepage = "https://github.com/tlatsas/sphinx-serve"; - maintainers = with maintainers; [ FlorianFranzen ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ FlorianFranzen ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sphinx-sitemap/default.nix b/pkgs/development/python-modules/sphinx-sitemap/default.nix index 1d1315f6febb..344f4ad00680 100644 --- a/pkgs/development/python-modules/sphinx-sitemap/default.nix +++ b/pkgs/development/python-modules/sphinx-sitemap/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { defusedxml ]; - meta = with lib; { + meta = { changelog = "https://github.com/jdillard/sphinx-sitemap/releases/tag/${src.tag}"; description = "Sitemap generator for Sphinx"; homepage = "https://github.com/jdillard/sphinx-sitemap"; - maintainers = with maintainers; [ alejandrosame ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ alejandrosame ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sphinx-tabs/default.nix b/pkgs/development/python-modules/sphinx-tabs/default.nix index f2ba6a6019e3..831796e32d8f 100644 --- a/pkgs/development/python-modules/sphinx-tabs/default.nix +++ b/pkgs/development/python-modules/sphinx-tabs/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_tabs" ]; - meta = with lib; { + meta = { description = "Sphinx extension for creating tabbed content when building HTML"; homepage = "https://github.com/executablebooks/sphinx-tabs"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinx-thebe/default.nix b/pkgs/development/python-modules/sphinx-thebe/default.nix index bae64efe8949..76f5fc554136 100644 --- a/pkgs/development/python-modules/sphinx-thebe/default.nix +++ b/pkgs/development/python-modules/sphinx-thebe/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_thebe" ]; - meta = with lib; { + meta = { description = "Integrate interactive code blocks into your documentation with Thebe and Binder"; homepage = "https://github.com/executablebooks/sphinx-thebe"; changelog = "https://github.com/executablebooks/sphinx-thebe/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-togglebutton/default.nix b/pkgs/development/python-modules/sphinx-togglebutton/default.nix index 4af3ba41ce10..45c6354fc757 100644 --- a/pkgs/development/python-modules/sphinx-togglebutton/default.nix +++ b/pkgs/development/python-modules/sphinx-togglebutton/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_togglebutton" ]; - meta = with lib; { + meta = { description = "Toggle page content and collapse admonitions in Sphinx"; homepage = "https://github.com/executablebooks/sphinx-togglebutton"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-actdiag/default.nix b/pkgs/development/python-modules/sphinxcontrib-actdiag/default.nix index c3f22151b775..76e2aae6de44 100644 --- a/pkgs/development/python-modules/sphinxcontrib-actdiag/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-actdiag/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx actdiag extension"; homepage = "https://github.com/blockdiag/sphinxcontrib-actdiag"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix b/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix index 71878c9b3418..4e4348fd8219 100644 --- a/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension for running sphinx-apidoc on each build"; homepage = "https://github.com/sphinx-contrib/apidoc"; - license = licenses.bsd2; - teams = [ teams.openstack ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-applehelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-applehelp/default.nix index a681971300b8..b23298d5928d 100644 --- a/pkgs/development/python-modules/sphinxcontrib-applehelp/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-applehelp/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-applehelp"; - license = licenses.bsd2; - teams = [ teams.sphinx ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.sphinx ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-asyncio/default.nix b/pkgs/development/python-modules/sphinxcontrib-asyncio/default.nix index f935b694e630..5c00e404ee6f 100644 --- a/pkgs/development/python-modules/sphinxcontrib-asyncio/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-asyncio/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension to add asyncio-specific markups"; homepage = "https://github.com/aio-libs/sphinxcontrib-asyncio"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-bayesnet/default.nix b/pkgs/development/python-modules/sphinxcontrib-bayesnet/default.nix index ce7df8dcba70..fb6cf370dcbc 100644 --- a/pkgs/development/python-modules/sphinxcontrib-bayesnet/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-bayesnet/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jluttine/sphinx-bayesnet"; description = "Bayesian networks and factor graphs in Sphinx using TikZ syntax"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix b/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix index 9a081b422404..2e1523056ecf 100644 --- a/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension for BibTeX style citations"; homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-blockdiag/default.nix b/pkgs/development/python-modules/sphinxcontrib-blockdiag/default.nix index 159cc00b32ef..51d3b8e199c9 100644 --- a/pkgs/development/python-modules/sphinxcontrib-blockdiag/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-blockdiag/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx blockdiag extension"; homepage = "https://github.com/blockdiag/sphinxcontrib-blockdiag"; maintainers = [ ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-confluencebuilder/default.nix b/pkgs/development/python-modules/sphinxcontrib-confluencebuilder/default.nix index 5113d3271b9d..1b1d84ea7068 100644 --- a/pkgs/development/python-modules/sphinxcontrib-confluencebuilder/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-confluencebuilder/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Confluence builder for sphinx"; homepage = "https://github.com/sphinx-contrib/confluencebuilder"; changelog = "https://github.com/sphinx-contrib/confluencebuilder/blob/v${version}/CHANGES.rst"; - license = licenses.bsd1; - maintainers = with maintainers; [ graysonhead ]; + license = lib.licenses.bsd1; + maintainers = with lib.maintainers; [ graysonhead ]; mainProgram = "sphinx-build-confluence"; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix index 6d8114020461..4bd01dd3faa7 100644 --- a/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension which outputs Devhelp document"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-devhelp"; - license = licenses.bsd2; - teams = [ teams.sphinx ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.sphinx ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix b/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix index 329db4319a51..5f10d8ecf383 100644 --- a/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx excel-table extension"; homepage = "https://github.com/hackerain/sphinxcontrib-excel-table"; - maintainers = with maintainers; [ raboof ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ raboof ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-fulltoc/default.nix b/pkgs/development/python-modules/sphinxcontrib-fulltoc/default.nix index b8f93d1ad6f6..3fd6d39a31c7 100644 --- a/pkgs/development/python-modules/sphinxcontrib-fulltoc/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-fulltoc/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Include a full table of contents in your Sphinx HTML sidebar"; homepage = "https://sphinxcontrib-fulltoc.readthedocs.org/"; changelog = "https://github.com/sphinx-contrib/fulltoc/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix index 7d99f7027b80..5ac6c84012b8 100644 --- a/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension which renders HTML help files"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp"; - license = licenses.bsd2; - teams = [ teams.sphinx ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.sphinx ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-httpdomain/default.nix b/pkgs/development/python-modules/sphinxcontrib-httpdomain/default.nix index a483e50deea3..6aedbb6abdf3 100644 --- a/pkgs/development/python-modules/sphinxcontrib-httpdomain/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-httpdomain/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Provides a Sphinx domain for describing RESTful HTTP APIs"; homepage = "https://bitbucket.org/birkenfeld/sphinx-contrib"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-jquery/default.nix b/pkgs/development/python-modules/sphinxcontrib-jquery/default.nix index 9377bd19254c..2e56c4e6499a 100644 --- a/pkgs/development/python-modules/sphinxcontrib-jquery/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-jquery/default.nix @@ -50,7 +50,7 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Extension to include jQuery on newer Sphinx releases"; longDescription = '' A sphinx extension that ensures that jQuery is installed for use @@ -58,7 +58,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/sphinx-contrib/jquery"; changelog = "https://github.com/sphinx-contrib/jquery/blob/v${version}/CHANGES.rst"; - license = licenses.bsd0; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-jsmath/default.nix b/pkgs/development/python-modules/sphinxcontrib-jsmath/default.nix index 88cab7448538..963cc8639231 100644 --- a/pkgs/development/python-modules/sphinxcontrib-jsmath/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-jsmath/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension which renders display math in HTML via JavaScript"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-jsmath"; - license = licenses.bsd0; - teams = [ teams.sphinx ]; + license = lib.licenses.bsd0; + teams = [ lib.teams.sphinx ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-katex/default.nix b/pkgs/development/python-modules/sphinxcontrib-katex/default.nix index 987e4d2b94d9..3aa01826200f 100644 --- a/pkgs/development/python-modules/sphinxcontrib-katex/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-katex/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension using KaTeX to render math in HTML"; homepage = "https://github.com/hagenw/sphinxcontrib-katex"; changelog = "https://github.com/hagenw/sphinxcontrib-katex/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-log-cabinet/default.nix b/pkgs/development/python-modules/sphinxcontrib-log-cabinet/default.nix index e74829520279..d62ed7292095 100644 --- a/pkgs/development/python-modules/sphinxcontrib-log-cabinet/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-log-cabinet/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/davidism/sphinxcontrib-log-cabinet"; description = "Sphinx extension to organize changelogs"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-moderncmakedomain/default.nix b/pkgs/development/python-modules/sphinxcontrib-moderncmakedomain/default.nix index 524c9b094674..f59288041195 100644 --- a/pkgs/development/python-modules/sphinxcontrib-moderncmakedomain/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-moderncmakedomain/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension which renders CMake documentation"; homepage = "https://github.com/scikit-build/moderncmakedomain"; - license = licenses.bsd3; - maintainers = with maintainers; [ jhol ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jhol ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix b/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix index d852f1766bea..ca2745b970dc 100644 --- a/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension using mscgen to render diagrams"; homepage = "https://github.com/sphinx-contrib/mscgen"; - license = licenses.bola11; + license = lib.licenses.bola11; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-newsfeed/default.nix b/pkgs/development/python-modules/sphinxcontrib-newsfeed/default.nix index 2f7b6c1ee34d..29282610790f 100644 --- a/pkgs/development/python-modules/sphinxcontrib-newsfeed/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-newsfeed/default.nix @@ -22,9 +22,9 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Extension for adding a simple Blog, News or Announcements section to a Sphinx website"; homepage = "https://github.com/prometheusresearch/sphinxcontrib-newsfeed"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-nwdiag/default.nix b/pkgs/development/python-modules/sphinxcontrib-nwdiag/default.nix index 34857eb5608a..fbc213ab41bb 100644 --- a/pkgs/development/python-modules/sphinxcontrib-nwdiag/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-nwdiag/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx nwdiag extension"; homepage = "https://github.com/blockdiag/sphinxcontrib-nwdiag"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-openapi/default.nix b/pkgs/development/python-modules/sphinxcontrib-openapi/default.nix index 1076db106fcb..da92f50fbfb8 100644 --- a/pkgs/development/python-modules/sphinxcontrib-openapi/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-openapi/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ikalnytskyi/sphinxcontrib-openapi"; description = "OpenAPI (fka Swagger) spec renderer for Sphinx"; - license = licenses.bsd0; - maintainers = [ maintainers.flokli ]; + license = lib.licenses.bsd0; + maintainers = [ lib.maintainers.flokli ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-plantuml/default.nix b/pkgs/development/python-modules/sphinxcontrib-plantuml/default.nix index e21f983ee759..f41829dcb758 100644 --- a/pkgs/development/python-modules/sphinxcontrib-plantuml/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-plantuml/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Provides a Sphinx domain for embedding UML diagram with PlantUML"; homepage = "https://github.com/sphinx-contrib/plantuml/"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix b/pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix index 28aae52a70cb..5300528f1fdd 100644 --- a/pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension to include program output"; homepage = "https://github.com/NextThought/sphinxcontrib-programoutput"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix index 4778da013fba..88cace9d6606 100644 --- a/pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-qthelp/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension which outputs QtHelp document"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-qthelp"; - license = licenses.bsd2; - teams = [ teams.sphinx ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.sphinx ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix b/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix index 3b178d927c44..cf95ccf24b90 100644 --- a/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx seqdiag extension"; homepage = "https://github.com/blockdiag/sphinxcontrib-seqdiag"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix b/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix index 6323f87467b9..7fd3214c1844 100644 --- a/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension which outputs \"serialized\" HTML files (json and pickle)"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-serializinghtml"; - license = licenses.bsd2; - teams = [ teams.sphinx ]; + license = lib.licenses.bsd2; + teams = [ lib.teams.sphinx ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix b/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix index f0cbe1d2c228..5e8e8209be40 100644 --- a/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx spelling extension"; homepage = "https://github.com/sphinx-contrib/spelling"; changelog = "https://github.com/sphinx-contrib/spelling/blob/${version}/docs/source/history.rst"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-tikz/default.nix b/pkgs/development/python-modules/sphinxcontrib-tikz/default.nix index 50c892cd5cd5..af372f13bf95 100644 --- a/pkgs/development/python-modules/sphinxcontrib-tikz/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-tikz/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "TikZ extension for Sphinx"; homepage = "https://bitbucket.org/philexander/tikz"; maintainers = [ ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-wavedrom/default.nix b/pkgs/development/python-modules/sphinxcontrib-wavedrom/default.nix index 3f56d44878e6..ddcd6cfb02f0 100644 --- a/pkgs/development/python-modules/sphinxcontrib-wavedrom/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-wavedrom/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Sphinx extension that allows including wavedrom diagrams by using its text-based representation"; homepage = "https://github.com/bavovanachte/sphinx-wavedrom"; - license = licenses.mit; - maintainers = with maintainers; [ fsagbuya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fsagbuya ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-youtube/default.nix b/pkgs/development/python-modules/sphinxcontrib-youtube/default.nix index 51375672c6c6..0d8de0c666d8 100644 --- a/pkgs/development/python-modules/sphinxcontrib-youtube/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-youtube/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = with lib; { + meta = { description = "Youtube extension for Sphinx"; homepage = "https://github.com/sphinx-contrib/youtube"; - maintainers = with maintainers; [ gador ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ gador ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/sphinxemoji/default.nix b/pkgs/development/python-modules/sphinxemoji/default.nix index eb7228107905..3ac90442ea83 100644 --- a/pkgs/development/python-modules/sphinxemoji/default.nix +++ b/pkgs/development/python-modules/sphinxemoji/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinxemoji" ]; - meta = with lib; { + meta = { description = "Extension to use emoji codes in your Sphinx documentation"; homepage = "https://github.com/sphinx-contrib/emojicodes"; - license = licenses.mit; - maintainers = with maintainers; [ kaction ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/sphinxext-opengraph/default.nix b/pkgs/development/python-modules/sphinxext-opengraph/default.nix index df3118373208..34f5cbba8cb7 100644 --- a/pkgs/development/python-modules/sphinxext-opengraph/default.nix +++ b/pkgs/development/python-modules/sphinxext-opengraph/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinxext.opengraph" ]; - meta = with lib; { + meta = { description = "Sphinx extension to generate unique OpenGraph metadata"; homepage = "https://github.com/wpilibsuite/sphinxext-opengraph"; changelog = "https://github.com/wpilibsuite/sphinxext-opengraph/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/spiderpy/default.nix b/pkgs/development/python-modules/spiderpy/default.nix index 88823aff54ba..afcde96fdb52 100644 --- a/pkgs/development/python-modules/spiderpy/default.nix +++ b/pkgs/development/python-modules/spiderpy/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "spiderpy.spiderapi" ]; - meta = with lib; { + meta = { description = "Unofficial Python wrapper for the Spider API"; homepage = "https://www.github.com/peternijssen/spiderpy"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/spidev/default.nix b/pkgs/development/python-modules/spidev/default.nix index 56c429d9b9ee..fb3f0277bc2f 100644 --- a/pkgs/development/python-modules/spidev/default.nix +++ b/pkgs/development/python-modules/spidev/default.nix @@ -23,12 +23,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "spidev" ]; - meta = with lib; { + meta = { changelog = "https://github.com/doceme/py-spidev/releases/tag/${src.tag}"; homepage = "https://github.com/doceme/py-spidev"; description = "Python bindings for Linux SPI access through spidev"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/spinners/default.nix b/pkgs/development/python-modules/spinners/default.nix index a5dcf83a68c1..049894a49bb0 100644 --- a/pkgs/development/python-modules/spinners/default.nix +++ b/pkgs/development/python-modules/spinners/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "spinners" ]; - meta = with lib; { + meta = { description = "Spinners for the Terminal"; homepage = "https://github.com/manrajgrover/py-spinners"; - license = licenses.mit; - maintainers = with maintainers; [ urbas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urbas ]; }; } diff --git a/pkgs/development/python-modules/spotipy/default.nix b/pkgs/development/python-modules/spotipy/default.nix index f67ad3da2327..1f9de3ebf816 100644 --- a/pkgs/development/python-modules/spotipy/default.nix +++ b/pkgs/development/python-modules/spotipy/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "spotipy.oauth2" ]; - meta = with lib; { + meta = { description = "Library for the Spotify Web API"; homepage = "https://spotipy.readthedocs.org/"; changelog = "https://github.com/plamere/spotipy/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ rvolosatovs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvolosatovs ]; }; } diff --git a/pkgs/development/python-modules/spur/default.nix b/pkgs/development/python-modules/spur/default.nix index ee72cb91612f..6e5cd5baa7c5 100644 --- a/pkgs/development/python-modules/spur/default.nix +++ b/pkgs/development/python-modules/spur/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "spur" ]; - meta = with lib; { + meta = { description = "Python module to run commands and manipulate files locally or over SSH"; homepage = "https://github.com/mwilliamson/spur.py"; changelog = "https://github.com/mwilliamson/spur.py/blob/0.3.23/CHANGES"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/spylls/default.nix b/pkgs/development/python-modules/spylls/default.nix index ecc1b8034ade..ec0e839febcb 100644 --- a/pkgs/development/python-modules/spylls/default.nix +++ b/pkgs/development/python-modules/spylls/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "spylls.hunspell.algo.string_metrics" ]; - meta = with lib; { + meta = { description = "Pure Python spell-checker, (almost) full port of Hunspell"; homepage = "https://github.com/zverok/spylls"; changelog = "https://github.com/zverok/spylls/blob/master/CHANGELOG.rst"; - license = licenses.mpl20; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/spyse-python/default.nix b/pkgs/development/python-modules/spyse-python/default.nix index 0782537359ad..2cc2635e4c78 100644 --- a/pkgs/development/python-modules/spyse-python/default.nix +++ b/pkgs/development/python-modules/spyse-python/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "spyse" ]; - meta = with lib; { + meta = { description = "Python module for spyse.com API"; homepage = "https://github.com/spyse-com/spyse-python"; changelog = "https://github.com/spyse-com/spyse-python/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/spython/default.nix b/pkgs/development/python-modules/spython/default.nix index 66a1c768ee68..d14cd4f71f5e 100644 --- a/pkgs/development/python-modules/spython/default.nix +++ b/pkgs/development/python-modules/spython/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { "spython/tests/test_client.py" ]; - meta = with lib; { + meta = { description = "Streamlined singularity python client (spython) for singularity"; homepage = "https://github.com/singularityhub/singularity-cli"; changelog = "https://github.com/singularityhub/singularity-cli/blob/${version}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "spython"; }; } diff --git a/pkgs/development/python-modules/sqids/default.nix b/pkgs/development/python-modules/sqids/default.nix index 46d9bb62c533..7bb1abeefc77 100644 --- a/pkgs/development/python-modules/sqids/default.nix +++ b/pkgs/development/python-modules/sqids/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqids" ]; - meta = with lib; { + meta = { homepage = "https://sqids.org/python"; description = "Library that lets you generate short YouTube-looking IDs from numbers"; - license = with licenses; mit; - maintainers = with maintainers; [ panicgh ]; + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ panicgh ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy-citext/default.nix b/pkgs/development/python-modules/sqlalchemy-citext/default.nix index 0c0d631bf151..b4b6a87471ce 100644 --- a/pkgs/development/python-modules/sqlalchemy-citext/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-citext/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "citext" ]; - meta = with lib; { + meta = { description = "Sqlalchemy plugin that allows postgres use of CITEXT"; homepage = "https://github.com/mahmoudimus/sqlalchemy-citext"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy-cockroachdb/default.nix b/pkgs/development/python-modules/sqlalchemy-cockroachdb/default.nix index 4d0ba47d58ab..b391790f4062 100644 --- a/pkgs/development/python-modules/sqlalchemy-cockroachdb/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-cockroachdb/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlalchemy_cockroachdb" ]; - meta = with lib; { + meta = { description = "CockroachDB dialect for SQLAlchemy"; homepage = "https://github.com/cockroachdb/sqlalchemy-cockroachdb/tree/master/sqlalchemy_cockroachdb"; - license = licenses.asl20; - maintainers = with maintainers; [ pinpox ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pinpox ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy-continuum/default.nix b/pkgs/development/python-modules/sqlalchemy-continuum/default.nix index 0518e68135b3..351476612f2b 100644 --- a/pkgs/development/python-modules/sqlalchemy-continuum/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-continuum/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlalchemy_continuum" ]; - meta = with lib; { + meta = { description = "Versioning and auditing extension for SQLAlchemy"; homepage = "https://github.com/kvesteri/sqlalchemy-continuum/"; changelog = "https://github.com/kvesteri/sqlalchemy-continuum/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy-file/default.nix b/pkgs/development/python-modules/sqlalchemy-file/default.nix index 0cd6d46988ae..9da6f92ed26e 100644 --- a/pkgs/development/python-modules/sqlalchemy-file/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-file/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { "sqlalchemy_file.helpers" ]; - meta = with lib; { + meta = { description = "SQLAlchemy extension for attaching files to SQLAlchemy model and uploading them to various storage with Apache Libcloud"; homepage = "https://github.com/jowilf/sqlalchemy-file"; changelog = "https://github.com/jowilf/sqlalchemy-file/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy-jsonfield/default.nix b/pkgs/development/python-modules/sqlalchemy-jsonfield/default.nix index 78143049ff62..d46e240b4562 100644 --- a/pkgs/development/python-modules/sqlalchemy-jsonfield/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-jsonfield/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlalchemy_jsonfield" ]; - meta = with lib; { + meta = { description = "SQLALchemy JSONField implementation for storing dicts at SQL independently from JSON type support"; homepage = "https://github.com/penguinolog/sqlalchemy_jsonfield"; changelog = "https://github.com/penguinolog/sqlalchemy_jsonfield/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ ivan-tkatchev ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ivan-tkatchev ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy-mixins/default.nix b/pkgs/development/python-modules/sqlalchemy-mixins/default.nix index 37a0c41ba3f7..1a7bb0c9e18b 100644 --- a/pkgs/development/python-modules/sqlalchemy-mixins/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-mixins/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlalchemy_mixins" ]; - meta = with lib; { + meta = { description = "Python mixins for SQLAlchemy ORM"; homepage = "https://github.com/absent1706/sqlalchemy-mixins"; changelog = "https://github.com/absent1706/sqlalchemy-mixins/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy-utils/default.nix b/pkgs/development/python-modules/sqlalchemy-utils/default.nix index abde2fbec857..0bb84e7e4574 100644 --- a/pkgs/development/python-modules/sqlalchemy-utils/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-utils/default.nix @@ -96,11 +96,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlalchemy_utils" ]; - meta = with lib; { + meta = { description = "Various utility functions and datatypes for SQLAlchemy"; homepage = "https://github.com/kvesteri/sqlalchemy-utils"; changelog = "https://github.com/kvesteri/sqlalchemy-utils/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/sqlalchemy/1_4.nix b/pkgs/development/python-modules/sqlalchemy/1_4.nix index d46a9bd691ca..f1c96deacb9d 100644 --- a/pkgs/development/python-modules/sqlalchemy/1_4.nix +++ b/pkgs/development/python-modules/sqlalchemy/1_4.nix @@ -99,12 +99,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlalchemy" ]; - meta = with lib; { + meta = { changelog = "https://github.com/sqlalchemy/sqlalchemy/releases/tag/rel_${ builtins.replaceStrings [ "." ] [ "_" ] version }"; description = "Database Toolkit for Python"; homepage = "https://github.com/sqlalchemy/sqlalchemy"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sqlalchemy/default.nix b/pkgs/development/python-modules/sqlalchemy/default.nix index 41b2294acfe1..9c55660d9f66 100644 --- a/pkgs/development/python-modules/sqlalchemy/default.nix +++ b/pkgs/development/python-modules/sqlalchemy/default.nix @@ -117,12 +117,12 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { changelog = "https://github.com/sqlalchemy/sqlalchemy/releases/tag/rel_${ builtins.replaceStrings [ "." ] [ "_" ] version }"; description = "Python SQL toolkit and Object Relational Mapper"; homepage = "http://www.sqlalchemy.org/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/sqlcipher3/default.nix b/pkgs/development/python-modules/sqlcipher3/default.nix index 5286d78f7cd3..536cf6479b90 100644 --- a/pkgs/development/python-modules/sqlcipher3/default.nix +++ b/pkgs/development/python-modules/sqlcipher3/default.nix @@ -32,11 +32,11 @@ buildPythonPackage { "sqlcipher3" ]; - meta = with lib; { + meta = { mainProgram = "sqlcipher3"; homepage = "https://github.com/coleifer/sqlcipher3"; description = "Python 3 bindings for SQLCipher"; - license = licenses.zlib; - maintainers = with maintainers; [ phaer ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/development/python-modules/sqlite-anyio/default.nix b/pkgs/development/python-modules/sqlite-anyio/default.nix index e65ea1cc46f5..41f786da9b68 100644 --- a/pkgs/development/python-modules/sqlite-anyio/default.nix +++ b/pkgs/development/python-modules/sqlite-anyio/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { trio ]; - meta = with lib; { + meta = { description = "Asynchronous client for SQLite using AnyIO"; homepage = "https://github.com/davidbrochart/sqlite-anyio"; changelog = "https://github.com/davidbrochart/sqlite-anyio/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sqlite-fts4/default.nix b/pkgs/development/python-modules/sqlite-fts4/default.nix index c84a30ffda52..26b685583b95 100644 --- a/pkgs/development/python-modules/sqlite-fts4/default.nix +++ b/pkgs/development/python-modules/sqlite-fts4/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlite_fts4" ]; - meta = with lib; { + meta = { description = "Custom Python functions for working with SQLite FTS4"; homepage = "https://github.com/simonw/sqlite-fts4"; - license = licenses.asl20; - maintainers = with maintainers; [ meatcar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ meatcar ]; }; } diff --git a/pkgs/development/python-modules/sqlite-migrate/default.nix b/pkgs/development/python-modules/sqlite-migrate/default.nix index 8d2d9855425f..ecba18ac781e 100644 --- a/pkgs/development/python-modules/sqlite-migrate/default.nix +++ b/pkgs/development/python-modules/sqlite-migrate/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlite_migrate" ]; - meta = with lib; { + meta = { description = "Simple database migration system for SQLite, based on sqlite-utils"; homepage = "https://github.com/simonw/sqlite-migrate"; changelog = "https://github.com/simonw/sqlite-migrate/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ aldoborrero ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/development/python-modules/sqlite-utils/default.nix b/pkgs/development/python-modules/sqlite-utils/default.nix index 07cc92b9d433..26f8447c4827 100644 --- a/pkgs/development/python-modules/sqlite-utils/default.nix +++ b/pkgs/development/python-modules/sqlite-utils/default.nix @@ -48,13 +48,13 @@ buildPythonPackage rec { passthru.tests.version = testers.testVersion { package = sqlite-utils; }; - meta = with lib; { + meta = { description = "Python CLI utility and library for manipulating SQLite databases"; mainProgram = "sqlite-utils"; homepage = "https://github.com/simonw/sqlite-utils"; changelog = "https://github.com/simonw/sqlite-utils/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ meatcar techknowlogick ]; diff --git a/pkgs/development/python-modules/sqlitedict/default.nix b/pkgs/development/python-modules/sqlitedict/default.nix index df01743ef358..987d7c1be6f8 100644 --- a/pkgs/development/python-modules/sqlitedict/default.nix +++ b/pkgs/development/python-modules/sqlitedict/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pytestFlags = [ "--benchmark-disable" ]; - meta = with lib; { + meta = { description = "Persistent, thread-safe dict"; homepage = "https://github.com/RaRe-Technologies/sqlitedict"; changelog = "https://github.com/piskvorky/sqlitedict/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/sqliteschema/default.nix b/pkgs/development/python-modules/sqliteschema/default.nix index 7e5b4c883ce1..aa985a8fe238 100644 --- a/pkgs/development/python-modules/sqliteschema/default.nix +++ b/pkgs/development/python-modules/sqliteschema/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { doCheck = true; }); - meta = with lib; { + meta = { description = "Python library to dump table schema of a SQLite database file"; homepage = "https://github.com/thombashi/sqliteschema"; - license = licenses.mit; - maintainers = with maintainers; [ henrirosten ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ henrirosten ]; }; } diff --git a/pkgs/development/python-modules/sqlmap/default.nix b/pkgs/development/python-modules/sqlmap/default.nix index e7be97b7f7b7..55ccae653e5d 100644 --- a/pkgs/development/python-modules/sqlmap/default.nix +++ b/pkgs/development/python-modules/sqlmap/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlmap" ]; - meta = with lib; { + meta = { description = "Automatic SQL injection and database takeover tool"; homepage = "https://sqlmap.org"; changelog = "https://github.com/sqlmapproject/sqlmap/releases/tag/${version}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ bennofs ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ bennofs ]; mainProgram = "sqlmap"; }; } diff --git a/pkgs/development/python-modules/sqlmodel/default.nix b/pkgs/development/python-modules/sqlmodel/default.nix index 69b91405da52..29c948ff476d 100644 --- a/pkgs/development/python-modules/sqlmodel/default.nix +++ b/pkgs/development/python-modules/sqlmodel/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { "tests/test_tutorial/" ]; - meta = with lib; { + meta = { description = "Module to work with SQL databases"; homepage = "https://github.com/tiangolo/sqlmodel"; changelog = "https://github.com/tiangolo/sqlmodel/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sqlobject/default.nix b/pkgs/development/python-modules/sqlobject/default.nix index 8081b5095c7f..321934dc31ef 100644 --- a/pkgs/development/python-modules/sqlobject/default.nix +++ b/pkgs/development/python-modules/sqlobject/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlobject" ]; - meta = with lib; { + meta = { description = "Object Relational Manager for providing an object interface to your database"; homepage = "https://www.sqlobject.org/"; changelog = "https://github.com/sqlobject/sqlobject/blob/${version}/docs/News.rst"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sqlparse/default.nix b/pkgs/development/python-modules/sqlparse/default.nix index 08438babc21f..fda0bf5e4546 100644 --- a/pkgs/development/python-modules/sqlparse/default.nix +++ b/pkgs/development/python-modules/sqlparse/default.nix @@ -45,14 +45,14 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { description = "Non-validating SQL parser for Python"; longDescription = '' Provides support for parsing, splitting and formatting SQL statements. ''; homepage = "https://github.com/andialbrecht/sqlparse"; changelog = "https://github.com/andialbrecht/sqlparse/blob/${version}/CHANGELOG"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "sqlformat"; }; } diff --git a/pkgs/development/python-modules/sqltrie/default.nix b/pkgs/development/python-modules/sqltrie/default.nix index 0d767885a761..96a1758299e0 100644 --- a/pkgs/development/python-modules/sqltrie/default.nix +++ b/pkgs/development/python-modules/sqltrie/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqltrie" ]; - meta = with lib; { + meta = { description = "DVC's data management subsystem"; homepage = "https://github.com/iterative/sqltrie"; changelog = "https://github.com/iterative/sqltrie/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/squarify/default.nix b/pkgs/development/python-modules/squarify/default.nix index de82a86a780c..971c5d6b4a21 100644 --- a/pkgs/development/python-modules/squarify/default.nix +++ b/pkgs/development/python-modules/squarify/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "squarify" ]; - meta = with lib; { + meta = { homepage = "https://github.com/laserson/squarify"; description = "Pure Python implementation of the squarify treemap layout algorithm"; - license = licenses.asl20; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/sre-yield/default.nix b/pkgs/development/python-modules/sre-yield/default.nix index fdd8cc8b4b05..9b583b42c9de 100644 --- a/pkgs/development/python-modules/sre-yield/default.nix +++ b/pkgs/development/python-modules/sre-yield/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python library to efficiently generate all values that can match a given regular expression"; mainProgram = "demo_sre_yield"; homepage = "https://github.com/sre-yield/sre-yield"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/srp/default.nix b/pkgs/development/python-modules/srp/default.nix index e3c9c04fe6d3..e68267b0d045 100644 --- a/pkgs/development/python-modules/srp/default.nix +++ b/pkgs/development/python-modules/srp/default.nix @@ -25,14 +25,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "srp" ]; - meta = with lib; { + meta = { description = "Implementation of the Secure Remote Password protocol (SRP)"; longDescription = '' This package provides an implementation of the Secure Remote Password protocol (SRP). SRP is a cryptographically strong authentication protocol for password-based, mutual authentication over an insecure network connection. ''; homepage = "https://github.com/cocagne/pysrp"; - license = licenses.mit; - maintainers = with maintainers; [ jefflabonte ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jefflabonte ]; }; } diff --git a/pkgs/development/python-modules/srpenergy/default.nix b/pkgs/development/python-modules/srpenergy/default.nix index 45a5be9b2ad4..a6b0ee84199d 100644 --- a/pkgs/development/python-modules/srpenergy/default.nix +++ b/pkgs/development/python-modules/srpenergy/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "srpenergy.client" ]; - meta = with lib; { + meta = { changelog = "https://github.com/lamoreauxlab/srpenergy-api-client-python/releases/tag/${version}"; description = "Unofficial Python module for interacting with Srp Energy data"; homepage = "https://github.com/lamoreauxlab/srpenergy-api-client-python"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/srptools/default.nix b/pkgs/development/python-modules/srptools/default.nix index 9455f16b18f6..d6c3ef14cf86 100644 --- a/pkgs/development/python-modules/srptools/default.nix +++ b/pkgs/development/python-modules/srptools/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "srptools" ]; - meta = with lib; { + meta = { description = "Module to implement Secure Remote Password (SRP) authentication"; mainProgram = "srptools"; homepage = "https://github.com/idlesign/srptools"; changelog = "https://github.com/idlesign/srptools/blob/v${version}/CHANGELOG"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/srsly/default.nix b/pkgs/development/python-modules/srsly/default.nix index d7a5b5a18507..a6f197ca59cd 100644 --- a/pkgs/development/python-modules/srsly/default.nix +++ b/pkgs/development/python-modules/srsly/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "srsly" ]; - meta = with lib; { + meta = { changelog = "https://github.com/explosion/srsly/releases/tag/v${version}"; description = "Modern high-performance serialization utilities for Python"; homepage = "https://github.com/explosion/srsly"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/srt/default.nix b/pkgs/development/python-modules/srt/default.nix index b1badbc6c71b..af45188083b9 100644 --- a/pkgs/development/python-modules/srt/default.nix +++ b/pkgs/development/python-modules/srt/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "srt" ]; - meta = with lib; { + meta = { homepage = "https://github.com/cdown/srt"; description = "Tiny but featureful Python library for parsing, modifying, and composing SRT files"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/srvlookup/default.nix b/pkgs/development/python-modules/srvlookup/default.nix index e70d06d54510..1f6ef8bb9fd8 100644 --- a/pkgs/development/python-modules/srvlookup/default.nix +++ b/pkgs/development/python-modules/srvlookup/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "srvlookup" ]; - meta = with lib; { + meta = { description = "Wrapper for dnspython to return SRV records for a given host, protocol, and domain name"; homepage = "https://github.com/gmr/srvlookup"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ mmlb ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ mmlb ]; }; } diff --git a/pkgs/development/python-modules/ssdeep/default.nix b/pkgs/development/python-modules/ssdeep/default.nix index f679b8806a82..d4da9a02b0a0 100644 --- a/pkgs/development/python-modules/ssdeep/default.nix +++ b/pkgs/development/python-modules/ssdeep/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ssdeep" ]; - meta = with lib; { + meta = { description = "Python wrapper for the ssdeep library"; homepage = "https://github.com/DinoTools/python-ssdeep"; changelog = "https://github.com/DinoTools/python-ssdeep/blob/${version}/CHANGELOG.rst"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ssdp/default.nix b/pkgs/development/python-modules/ssdp/default.nix index 47fa7cbfb6cb..dba7222e9576 100644 --- a/pkgs/development/python-modules/ssdp/default.nix +++ b/pkgs/development/python-modules/ssdp/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ssdp" ]; - meta = with lib; { + meta = { description = "Python asyncio library for Simple Service Discovery Protocol (SSDP)"; homepage = "https://github.com/codingjoe/ssdp"; changelog = "https://github.com/codingjoe/ssdp/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ssdp"; }; } diff --git a/pkgs/development/python-modules/sseclient-py/default.nix b/pkgs/development/python-modules/sseclient-py/default.nix index 8f50c2aa38a9..8b14ff4ad037 100644 --- a/pkgs/development/python-modules/sseclient-py/default.nix +++ b/pkgs/development/python-modules/sseclient-py/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/unittests.py" ]; - meta = with lib; { + meta = { description = "Pure-Python Server Side Events (SSE) client"; homepage = "https://github.com/mpetazzoni/sseclient"; changelog = "https://github.com/mpetazzoni/sseclient/releases/tag/sseclient-py-${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/sseclient/default.nix b/pkgs/development/python-modules/sseclient/default.nix index 70927d104e5d..6ccb999ca925 100644 --- a/pkgs/development/python-modules/sseclient/default.nix +++ b/pkgs/development/python-modules/sseclient/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { disabledTests = [ "event_stream" ]; - meta = with lib; { + meta = { description = "Client library for reading Server Sent Event streams"; homepage = "https://github.com/btubbs/sseclient"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/ssg/default.nix b/pkgs/development/python-modules/ssg/default.nix index a54b198a4533..6175e125d03b 100644 --- a/pkgs/development/python-modules/ssg/default.nix +++ b/pkgs/development/python-modules/ssg/default.nix @@ -47,11 +47,11 @@ buildPythonPackage { postInstall = "rm -rf $out/${python.sitePackages}/scripts"; - meta = with lib; { + meta = { description = "TCRF syllable segmenter for Thai"; homepage = "https://github.com/ponrawee/ssg"; - license = licenses.asl20; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vizid ]; mainProgram = "ssg-cli"; }; } diff --git a/pkgs/development/python-modules/sshfs/default.nix b/pkgs/development/python-modules/sshfs/default.nix index eab87385b4ba..1e89d88034d7 100644 --- a/pkgs/development/python-modules/sshfs/default.nix +++ b/pkgs/development/python-modules/sshfs/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sshfs" ]; - meta = with lib; { + meta = { description = "SSH/SFTP implementation for fsspec"; homepage = "https://github.com/fsspec/sshfs/"; changelog = "https://github.com/fsspec/sshfs/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ melling ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/development/python-modules/sshtunnel/default.nix b/pkgs/development/python-modules/sshtunnel/default.nix index 1cec6aca987b..dbeff29624f9 100644 --- a/pkgs/development/python-modules/sshtunnel/default.nix +++ b/pkgs/development/python-modules/sshtunnel/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { "test_read_private_key_file" ]; - meta = with lib; { + meta = { description = "Pure python SSH tunnels"; mainProgram = "sshtunnel"; homepage = "https://github.com/pahaz/sshtunnel"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sslib/default.nix b/pkgs/development/python-modules/sslib/default.nix index 422a775e1ef5..59697b0d1987 100644 --- a/pkgs/development/python-modules/sslib/default.nix +++ b/pkgs/development/python-modules/sslib/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # No tests available doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/jqueiroz/python-sslib"; description = "Python3 library for sharing secrets"; - license = licenses.mit; - maintainers = with maintainers; [ jqueiroz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jqueiroz ]; }; } diff --git a/pkgs/development/python-modules/stack-data/default.nix b/pkgs/development/python-modules/stack-data/default.nix index 407d54b23be1..f2ee7ca27d3e 100644 --- a/pkgs/development/python-modules/stack-data/default.nix +++ b/pkgs/development/python-modules/stack-data/default.nix @@ -57,12 +57,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "stack_data" ]; - meta = with lib; { + meta = { description = "Extract data from stack frames and tracebacks"; homepage = "https://github.com/alexmojaki/stack_data/"; changelog = "https://github.com/alexmojaki/stack_data/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; mainProgram = "stack-data"; }; } diff --git a/pkgs/development/python-modules/stamina/default.nix b/pkgs/development/python-modules/stamina/default.nix index f21ad8209c6a..a28149fbe795 100644 --- a/pkgs/development/python-modules/stamina/default.nix +++ b/pkgs/development/python-modules/stamina/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stamina" ]; - meta = with lib; { + meta = { description = "Production-grade retries for Python"; homepage = "https://github.com/hynek/stamina"; changelog = "https://github.com/hynek/stamina/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/stanio/default.nix b/pkgs/development/python-modules/stanio/default.nix index a87e753c1886..82ebe10ebf95 100644 --- a/pkgs/development/python-modules/stanio/default.nix +++ b/pkgs/development/python-modules/stanio/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "stanio" ]; - meta = with lib; { + meta = { description = "Preparing inputs to and reading outputs from Stan"; homepage = "https://github.com/WardBrian/stanio"; - license = licenses.bsd3; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/python-modules/stanza/default.nix b/pkgs/development/python-modules/stanza/default.nix index fa2881306aab..b13f8a8f7458 100644 --- a/pkgs/development/python-modules/stanza/default.nix +++ b/pkgs/development/python-modules/stanza/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stanza" ]; - meta = with lib; { + meta = { description = "Official Stanford NLP Python Library for Many Human Languages"; homepage = "https://github.com/stanfordnlp/stanza/"; changelog = "https://github.com/stanfordnlp/stanza/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ riotbib ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ riotbib ]; }; } diff --git a/pkgs/development/python-modules/starkbank-ecdsa/default.nix b/pkgs/development/python-modules/starkbank-ecdsa/default.nix index fc8e079b1674..be277e410215 100644 --- a/pkgs/development/python-modules/starkbank-ecdsa/default.nix +++ b/pkgs/development/python-modules/starkbank-ecdsa/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ellipticcurve" ]; - meta = with lib; { + meta = { description = "Python ECDSA library"; homepage = "https://github.com/starkbank/ecdsa-python"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/starlette-admin/default.nix b/pkgs/development/python-modules/starlette-admin/default.nix index 57a2c5b2f4f4..ba2cf376223d 100644 --- a/pkgs/development/python-modules/starlette-admin/default.nix +++ b/pkgs/development/python-modules/starlette-admin/default.nix @@ -118,11 +118,11 @@ buildPythonPackage rec { "starlette_admin.views" ]; - meta = with lib; { + meta = { description = "Fast, beautiful and extensible administrative interface framework for Starlette & FastApi applications"; homepage = "https://github.com/jowilf/starlette-admin"; changelog = "https://jowilf.github.io/starlette-admin/changelog/"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/starlette-context/default.nix b/pkgs/development/python-modules/starlette-context/default.nix index 434346951b5b..e6b87e68d1a8 100644 --- a/pkgs/development/python-modules/starlette-context/default.nix +++ b/pkgs/development/python-modules/starlette-context/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "starlette_context" ]; - meta = with lib; { + meta = { description = "Middleware for Starlette that allows you to store and access the context data of a request"; homepage = "https://github.com/tomwojcik/starlette-context"; changelog = "https://github.com/tomwojcik/starlette-context/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/starlette-wtf/default.nix b/pkgs/development/python-modules/starlette-wtf/default.nix index 54aafb0f4132..22722251594e 100644 --- a/pkgs/development/python-modules/starlette-wtf/default.nix +++ b/pkgs/development/python-modules/starlette-wtf/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { jinja2 ]; - meta = with lib; { + meta = { description = "Simple tool for integrating Starlette and WTForms"; changelog = "https://github.com/muicss/starlette-wtf/blob/v${version}/CHANGELOG.md"; homepage = "https://github.com/muicss/starlette-wtf"; - license = licenses.mit; - teams = [ teams.wdz ]; + license = lib.licenses.mit; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/starlette/default.nix b/pkgs/development/python-modules/starlette/default.nix index e8e2b425502d..b7c735ba12ec 100644 --- a/pkgs/development/python-modules/starlette/default.nix +++ b/pkgs/development/python-modules/starlette/default.nix @@ -71,12 +71,12 @@ buildPythonPackage rec { inherit fastapi; }; - meta = with lib; { + meta = { changelog = "https://www.starlette.io/release-notes/#${lib.replaceStrings [ "." ] [ "" ] version}"; downloadPage = "https://github.com/encode/starlette"; homepage = "https://www.starlette.io/"; description = "Little ASGI framework that shines"; - license = licenses.bsd3; - maintainers = with maintainers; [ wd15 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ wd15 ]; }; } diff --git a/pkgs/development/python-modules/starline/default.nix b/pkgs/development/python-modules/starline/default.nix index 4fbccc73f76a..fa96ab4bac00 100644 --- a/pkgs/development/python-modules/starline/default.nix +++ b/pkgs/development/python-modules/starline/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { # https://github.com/Anonym-tsk/starline/issues/4 passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Unofficial python library for StarLine API"; homepage = "https://github.com/Anonym-tsk/starline"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/stashy/default.nix b/pkgs/development/python-modules/stashy/default.nix index 96903ff8e51f..7af6dafba694 100644 --- a/pkgs/development/python-modules/stashy/default.nix +++ b/pkgs/development/python-modules/stashy/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "stashy" ]; - meta = with lib; { + meta = { description = "Python client for the Atlassian Bitbucket Server (formerly known as Stash) REST API"; homepage = "https://github.com/cosmin/stashy"; - license = licenses.asl20; - maintainers = with maintainers; [ mupdt ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mupdt ]; }; } diff --git a/pkgs/development/python-modules/static3/default.nix b/pkgs/development/python-modules/static3/default.nix index 7322921cfd78..a834bc313453 100644 --- a/pkgs/development/python-modules/static3/default.nix +++ b/pkgs/development/python-modules/static3/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { ] ++ lib.concatAttrValues optional-dependencies; - meta = with lib; { + meta = { changelog = "https://github.com/rmohr/static3/releases/tag/v${version}"; description = "Really simple WSGI way to serve static (or mixed) content"; mainProgram = "static"; homepage = "https://github.com/rmohr/static3"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/staticjinja/default.nix b/pkgs/development/python-modules/staticjinja/default.nix index f13df2d784dd..57c4bbb92ce0 100644 --- a/pkgs/development/python-modules/staticjinja/default.nix +++ b/pkgs/development/python-modules/staticjinja/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { minimal-template = callPackage ./test-minimal-template { }; }; - meta = with lib; { + meta = { description = "Library and cli tool that makes it easy to build static sites using Jinja2"; mainProgram = "staticjinja"; homepage = "https://staticjinja.readthedocs.io/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/python-modules/staticmap/default.nix b/pkgs/development/python-modules/staticmap/default.nix index 2136f016fc2c..83351a8b77e9 100644 --- a/pkgs/development/python-modules/staticmap/default.nix +++ b/pkgs/development/python-modules/staticmap/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # Tests seem to be broken doCheck = false; - meta = with lib; { + meta = { description = "Small, python-based library for creating map images with lines and markers"; homepage = "https://pypi.org/project/staticmap/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ traxys ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/statmake/default.nix b/pkgs/development/python-modules/statmake/default.nix index d75c9c3727b3..b7eb301f8de3 100644 --- a/pkgs/development/python-modules/statmake/default.nix +++ b/pkgs/development/python-modules/statmake/default.nix @@ -62,12 +62,12 @@ buildPythonPackage rec { "test_load_stylespace_broken_range" ]; - meta = with lib; { + meta = { description = "Applies STAT information from a Stylespace to a variable font"; mainProgram = "statmake"; homepage = "https://github.com/daltonmaag/statmake"; changelog = "https://github.com/daltonmaag/statmake/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/statsd/default.nix b/pkgs/development/python-modules/statsd/default.nix index 83487f2b1655..6efe7540d0c7 100644 --- a/pkgs/development/python-modules/statsd/default.nix +++ b/pkgs/development/python-modules/statsd/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { enabledTestPaths = [ "statsd/tests.py" ]; - meta = with lib; { + meta = { maintainers = [ ]; description = "Simple statsd client"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jsocol/pystatsd"; }; } diff --git a/pkgs/development/python-modules/statsmodels/default.nix b/pkgs/development/python-modules/statsmodels/default.nix index 345bbe85f1e6..c9111049f9ef 100644 --- a/pkgs/development/python-modules/statsmodels/default.nix +++ b/pkgs/development/python-modules/statsmodels/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "statsmodels" ]; - meta = with lib; { + meta = { description = "Statistical computations and models for use with SciPy"; homepage = "https://www.github.com/statsmodels/statsmodels"; changelog = "https://github.com/statsmodels/statsmodels/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/std-uritemplate/default.nix b/pkgs/development/python-modules/std-uritemplate/default.nix index c64c2aca88e2..dc9bde306f3a 100644 --- a/pkgs/development/python-modules/std-uritemplate/default.nix +++ b/pkgs/development/python-modules/std-uritemplate/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stduritemplate" ]; - meta = with lib; { + meta = { description = "Std-uritemplate implementation for Python"; homepage = "https://github.com/std-uritemplate/std-uritemplate"; changelog = "https://github.com/std-uritemplate/std-uritemplate/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/stdiomask/default.nix b/pkgs/development/python-modules/stdiomask/default.nix index 5a78a3a727e1..32f605562a92 100644 --- a/pkgs/development/python-modules/stdiomask/default.nix +++ b/pkgs/development/python-modules/stdiomask/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "stdiomask" ]; - meta = with lib; { + meta = { description = "Python module for masking passwords"; homepage = "https://github.com/asweigart/stdiomask"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/stdlib-list/default.nix b/pkgs/development/python-modules/stdlib-list/default.nix index a5eaf80e0220..18612db16540 100644 --- a/pkgs/development/python-modules/stdlib-list/default.nix +++ b/pkgs/development/python-modules/stdlib-list/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { # tests see mismatches to our standard library doCheck = false; - meta = with lib; { + meta = { description = "List of Python Standard Libraries"; homepage = "https://github.com/jackmaney/python-stdlib-list"; changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/stdlibs/default.nix b/pkgs/development/python-modules/stdlibs/default.nix index 6cd8f8bdfd60..a5bdc9309e8c 100644 --- a/pkgs/development/python-modules/stdlibs/default.nix +++ b/pkgs/development/python-modules/stdlibs/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stdlibs" ]; - meta = with lib; { + meta = { description = "Overview of the Python stdlib"; homepage = "https://github.com/omnilib/stdlibs"; changelog = "https://github.com/omnilib/stdlibs/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/steamship/default.nix b/pkgs/development/python-modules/steamship/default.nix index ef61a2397064..2c8a15e3a511 100644 --- a/pkgs/development/python-modules/steamship/default.nix +++ b/pkgs/development/python-modules/steamship/default.nix @@ -51,8 +51,8 @@ buildPythonPackage rec { description = "Fastest way to add language AI to your product"; homepage = "https://www.steamship.com/"; changelog = "https://github.com/steamship-core/python-client/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; # https://github.com/steamship-core/python-client/issues/503 broken = versionAtLeast pydantic.version "2"; }; diff --git a/pkgs/development/python-modules/stemming/default.nix b/pkgs/development/python-modules/stemming/default.nix index a49c0f394112..9e26a08d9537 100644 --- a/pkgs/development/python-modules/stemming/default.nix +++ b/pkgs/development/python-modules/stemming/default.nix @@ -24,10 +24,10 @@ buildPythonPackage { pythonImportsCheck = [ "stemming" ]; - meta = with lib; { + meta = { description = "Python implementations of various stemming algorithms"; homepage = "https://github.com/nmstoker/stemming"; - license = licenses.unlicense; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/stestr/default.nix b/pkgs/development/python-modules/stestr/default.nix index 2697373f7e9c..7af5331c3a99 100644 --- a/pkgs/development/python-modules/stestr/default.nix +++ b/pkgs/development/python-modules/stestr/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stestr" ]; - meta = with lib; { + meta = { description = "Parallel Python test runner built around subunit"; mainProgram = "stestr"; homepage = "https://github.com/mtreinish/stestr"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/stevedore/default.nix b/pkgs/development/python-modules/stevedore/default.nix index 0c1c38502b08..462a519dcba6 100644 --- a/pkgs/development/python-modules/stevedore/default.nix +++ b/pkgs/development/python-modules/stevedore/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "stevedore" ]; - meta = with lib; { + meta = { description = "Manage dynamic plugins for Python applications"; homepage = "https://github.com/openstack/stevedore"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/stickytape/default.nix b/pkgs/development/python-modules/stickytape/default.nix index 9a788d6a2ac1..e142ec0e7fbe 100644 --- a/pkgs/development/python-modules/stickytape/default.nix +++ b/pkgs/development/python-modules/stickytape/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stickytape" ]; - meta = with lib; { + meta = { description = "Python module to convert Python packages into a single script"; homepage = "https://github.com/mwilliamson/stickytape"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "stickytape"; }; } diff --git a/pkgs/development/python-modules/stix2-patterns/default.nix b/pkgs/development/python-modules/stix2-patterns/default.nix index 7daafa73233b..3ec515b5afd6 100644 --- a/pkgs/development/python-modules/stix2-patterns/default.nix +++ b/pkgs/development/python-modules/stix2-patterns/default.nix @@ -34,13 +34,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "stix2patterns" ]; - meta = with lib; { + meta = { broken = lib.versionAtLeast antlr4-python3-runtime.version "4.10"; description = "Validate patterns used to express cyber observable content in STIX Indicators"; mainProgram = "validate-patterns"; homepage = "https://github.com/oasis-open/cti-pattern-validator"; changelog = "https://github.com/oasis-open/cti-pattern-validator/blob/${version}/CHANGELOG.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/stix2/default.nix b/pkgs/development/python-modules/stix2/default.nix index 4219388f7f46..566aa323c98d 100644 --- a/pkgs/development/python-modules/stix2/default.nix +++ b/pkgs/development/python-modules/stix2/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stix2" ]; - meta = with lib; { + meta = { description = "Produce and consume STIX 2 JSON content"; homepage = "https://stix2.readthedocs.io/en/latest/"; changelog = "https://github.com/oasis-open/cti-python-stix2/blob/v${version}/CHANGELOG"; - license = licenses.bsd3; - maintainers = with maintainers; [ PapayaJackal ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ PapayaJackal ]; }; } diff --git a/pkgs/development/python-modules/stm32loader/default.nix b/pkgs/development/python-modules/stm32loader/default.nix index 79d37c51868b..83811663bcd1 100644 --- a/pkgs/development/python-modules/stm32loader/default.nix +++ b/pkgs/development/python-modules/stm32loader/default.nix @@ -55,12 +55,12 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/unit" ]; - meta = with lib; { + meta = { description = "Flash firmware to STM32 microcontrollers in Python"; mainProgram = "stm32loader"; homepage = "https://github.com/florisla/stm32loader"; changelog = "https://github.com/florisla/stm32loader/blob/v${version}/CHANGELOG.md"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/stone/default.nix b/pkgs/development/python-modules/stone/default.nix index d567ff447c5d..55cbf74889d7 100644 --- a/pkgs/development/python-modules/stone/default.nix +++ b/pkgs/development/python-modules/stone/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stone" ]; - meta = with lib; { + meta = { description = "Official API Spec Language for Dropbox API V2"; homepage = "https://github.com/dropbox/stone"; changelog = "https://github.com/dropbox/stone/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "stone"; }; diff --git a/pkgs/development/python-modules/stopit/default.nix b/pkgs/development/python-modules/stopit/default.nix index b6aa1dd72957..23e27c951bb2 100644 --- a/pkgs/development/python-modules/stopit/default.nix +++ b/pkgs/development/python-modules/stopit/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "stopit" ]; - meta = with lib; { + meta = { description = "Raise asynchronous exceptions in other thread, control the timeout of blocks or callables with a context manager or a decorator"; homepage = "https://github.com/glenfant/stopit"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/stransi/default.nix b/pkgs/development/python-modules/stransi/default.nix index 784a5e70ab4a..7c67ba94aa74 100644 --- a/pkgs/development/python-modules/stransi/default.nix +++ b/pkgs/development/python-modules/stransi/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stransi" ]; - meta = with lib; { + meta = { description = "Lightweight Python parser library for ANSI escape code sequences"; homepage = "https://github.com/getcuia/stransi"; changelog = "https://github.com/getcuia/stransi/releases/tag/${src.rev}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/strawberry-graphql/default.nix b/pkgs/development/python-modules/strawberry-graphql/default.nix index 82794502341c..d09b624601d7 100644 --- a/pkgs/development/python-modules/strawberry-graphql/default.nix +++ b/pkgs/development/python-modules/strawberry-graphql/default.nix @@ -162,12 +162,12 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "GraphQL library for Python that leverages type annotations"; homepage = "https://strawberry.rocks"; changelog = "https://github.com/strawberry-graphql/strawberry/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ izorkin ]; mainProgram = "strawberry"; }; } diff --git a/pkgs/development/python-modules/strct/default.nix b/pkgs/development/python-modules/strct/default.nix index 2eb70091b6d9..ff38db934034 100644 --- a/pkgs/development/python-modules/strct/default.nix +++ b/pkgs/development/python-modules/strct/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "strct.sortedlists" ]; - meta = with lib; { + meta = { description = "Small pure-python package for data structure related utility functions"; homepage = "https://github.com/shaypal5/strct"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/streamcontroller-plugin-tools/default.nix b/pkgs/development/python-modules/streamcontroller-plugin-tools/default.nix index 4dba674e1527..74db135c1f04 100644 --- a/pkgs/development/python-modules/streamcontroller-plugin-tools/default.nix +++ b/pkgs/development/python-modules/streamcontroller-plugin-tools/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "streamcontroller_plugin_tools" ]; - meta = with lib; { + meta = { description = "StreamController plugin tools"; homepage = "https://github.com/StreamController/streamcontroller-plugin-tools"; - license = licenses.gpl3; - maintainers = with maintainers; [ sifmelcara ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ sifmelcara ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/streamdeck/default.nix b/pkgs/development/python-modules/streamdeck/default.nix index a980c1a0a05b..609130d91d32 100644 --- a/pkgs/development/python-modules/streamdeck/default.nix +++ b/pkgs/development/python-modules/streamdeck/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "StreamDeck" ]; doCheck = false; - meta = with lib; { + meta = { description = "Python library to control the Elgato Stream Deck"; homepage = "https://github.com/abcminiuser/python-elgato-streamdeck"; - license = licenses.mit; - maintainers = with maintainers; [ majiir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ majiir ]; }; } diff --git a/pkgs/development/python-modules/streaming-form-data/default.nix b/pkgs/development/python-modules/streaming-form-data/default.nix index 95fa920e8fdf..156366c9da4c 100644 --- a/pkgs/development/python-modules/streaming-form-data/default.nix +++ b/pkgs/development/python-modules/streaming-form-data/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { rm -rf streaming_form_data ''; - meta = with lib; { + meta = { description = "Streaming parser for multipart/form-data"; homepage = "https://github.com/siddhantgoel/streaming-form-data"; - license = licenses.mit; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/development/python-modules/streamlabswater/default.nix b/pkgs/development/python-modules/streamlabswater/default.nix index 6ca91eaa33ca..c14515aba862 100644 --- a/pkgs/development/python-modules/streamlabswater/default.nix +++ b/pkgs/development/python-modules/streamlabswater/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "streamlabswater" ]; - meta = with lib; { + meta = { description = "Python library for the StreamLabs API"; homepage = "https://github.com/streamlabswater/stream-python"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/streamlit/default.nix b/pkgs/development/python-modules/streamlit/default.nix index fc155688f46a..861cf05367f1 100644 --- a/pkgs/development/python-modules/streamlit/default.nix +++ b/pkgs/development/python-modules/streamlit/default.nix @@ -75,15 +75,15 @@ buildPythonPackage rec { rm $out/bin/streamlit.cmd # remove windows helper ''; - meta = with lib; { + meta = { homepage = "https://streamlit.io/"; changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}"; description = "Fastest way to build custom ML tools"; mainProgram = "streamlit"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ natsukium yrashk ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/strenum/default.nix b/pkgs/development/python-modules/strenum/default.nix index 95d80dc77c6b..80e7670cdd0c 100644 --- a/pkgs/development/python-modules/strenum/default.nix +++ b/pkgs/development/python-modules/strenum/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "strenum" ]; - meta = with lib; { + meta = { description = "Module for enum that inherits from str"; homepage = "https://github.com/irgeek/StrEnum"; changelog = "https://github.com/irgeek/StrEnum/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/strict-rfc3339/default.nix b/pkgs/development/python-modules/strict-rfc3339/default.nix index 5f4cfe3b7c4b..275fcd0e6104 100644 --- a/pkgs/development/python-modules/strict-rfc3339/default.nix +++ b/pkgs/development/python-modules/strict-rfc3339/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/danielrichman/strict-rfc3339"; - license = licenses.gpl3; + license = lib.licenses.gpl3; description = "Strict, simple, lightweight RFC3339 functions"; - maintainers = with maintainers; [ vanschelven ]; + maintainers = with lib.maintainers; [ vanschelven ]; }; } diff --git a/pkgs/development/python-modules/strictyaml/default.nix b/pkgs/development/python-modules/strictyaml/default.nix index 9e5a4ed1e3e3..ba0dcd378943 100644 --- a/pkgs/development/python-modules/strictyaml/default.nix +++ b/pkgs/development/python-modules/strictyaml/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "strictyaml" ]; - meta = with lib; { + meta = { description = "Strict, typed YAML parser"; homepage = "https://hitchdev.com/strictyaml/"; changelog = "https://hitchdev.com/strictyaml/changelog/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/stringbrewer/default.nix b/pkgs/development/python-modules/stringbrewer/default.nix index 9b5fe137e087..32ba9eed8a5c 100644 --- a/pkgs/development/python-modules/stringbrewer/default.nix +++ b/pkgs/development/python-modules/stringbrewer/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "stringbrewer" ]; - meta = with lib; { + meta = { description = "Python library to generate random strings matching a pattern"; homepage = "https://github.com/simoncozens/stringbrewer"; - license = licenses.mit; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/stringcase/default.nix b/pkgs/development/python-modules/stringcase/default.nix index 6fa57744e1f9..b9c84339a678 100644 --- a/pkgs/development/python-modules/stringcase/default.nix +++ b/pkgs/development/python-modules/stringcase/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # PyPi package does not include tests. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/okunishinishi/python-stringcase"; description = "Convert string cases between camel case, pascal case, snake case etc…"; - license = licenses.mit; - maintainers = with maintainers; [ alunduil ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alunduil ]; }; } diff --git a/pkgs/development/python-modules/stringly/default.nix b/pkgs/development/python-modules/stringly/default.nix index 342e2f559c13..37245f948f91 100644 --- a/pkgs/development/python-modules/stringly/default.nix +++ b/pkgs/development/python-modules/stringly/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Stringly: Human Readable Object Serialization"; homepage = "https://github.com/evalf/stringly"; - license = licenses.mit; - maintainers = [ maintainers.Scriptkiddi ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/stringparser/default.nix b/pkgs/development/python-modules/stringparser/default.nix index c77b225c56bf..8e7a935da781 100644 --- a/pkgs/development/python-modules/stringparser/default.nix +++ b/pkgs/development/python-modules/stringparser/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stringparser" ]; - meta = with lib; { + meta = { description = "Easy to use pattern matching and information extraction"; homepage = "https://github.com/hgrecco/stringparser"; changelog = "https://github.com/hgrecco/stringparser/blob/${version}/CHANGES"; - license = licenses.bsd3; - maintainers = with maintainers; [ evilmav ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ evilmav ]; }; } diff --git a/pkgs/development/python-modules/stripe/default.nix b/pkgs/development/python-modules/stripe/default.nix index 9f5ede64cbe9..e4d26ad98ef5 100644 --- a/pkgs/development/python-modules/stripe/default.nix +++ b/pkgs/development/python-modules/stripe/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stripe" ]; - meta = with lib; { + meta = { description = "Stripe Python bindings"; homepage = "https://github.com/stripe/stripe-python"; changelog = "https://github.com/stripe/stripe-python/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/striprtf/default.nix b/pkgs/development/python-modules/striprtf/default.nix index ec6ebeb51537..1141bf9ac8e2 100644 --- a/pkgs/development/python-modules/striprtf/default.nix +++ b/pkgs/development/python-modules/striprtf/default.nix @@ -22,12 +22,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "striprtf" ]; - meta = with lib; { + meta = { changelog = "https://github.com/joshy/striprtf/blob/v${version}/CHANGELOG.md"; homepage = "https://github.com/joshy/striprtf"; description = "Simple library to convert rtf to text"; mainProgram = "striprtf"; - maintainers = with maintainers; [ aanderse ]; - license = with licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ aanderse ]; + license = with lib.licenses; [ bsd3 ]; }; } diff --git a/pkgs/development/python-modules/stubserver/default.nix b/pkgs/development/python-modules/stubserver/default.nix index af0ba80ce060..ed9d728eb5b6 100644 --- a/pkgs/development/python-modules/stubserver/default.nix +++ b/pkgs/development/python-modules/stubserver/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "stubserver" ]; - meta = with lib; { + meta = { description = "Web and FTP server for use in unit and7or acceptance tests"; homepage = "https://github.com/tarttelin/Python-Stub-Server"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/stupidartnet/default.nix b/pkgs/development/python-modules/stupidartnet/default.nix index 2d0b71d72b60..97da3e5e9f48 100644 --- a/pkgs/development/python-modules/stupidartnet/default.nix +++ b/pkgs/development/python-modules/stupidartnet/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "stupidArtnet" ]; - meta = with lib; { + meta = { description = "Library implementation of the Art-Net protocol"; homepage = "https://github.com/cpvalente/stupidArtnet"; changelog = "https://github.com/cpvalente/stupidArtnet/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/stups-cli-support/default.nix b/pkgs/development/python-modules/stups-cli-support/default.nix index 1f8247b6bd21..d3b35577a85f 100644 --- a/pkgs/development/python-modules/stups-cli-support/default.nix +++ b/pkgs/development/python-modules/stups-cli-support/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Helper library for all STUPS command line tools"; homepage = "https://github.com/zalando-stups/stups-cli-support"; - license = licenses.asl20; - maintainers = [ maintainers.mschuwalow ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.mschuwalow ]; }; } diff --git a/pkgs/development/python-modules/stups-fullstop/default.nix b/pkgs/development/python-modules/stups-fullstop/default.nix index b071b6a405af..91f20f06c5b7 100644 --- a/pkgs/development/python-modules/stups-fullstop/default.nix +++ b/pkgs/development/python-modules/stups-fullstop/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Convenience command line tool for fullstop. audit reporting"; homepage = "https://github.com/zalando-stups/stups-fullstop-cli"; - license = licenses.asl20; - maintainers = [ maintainers.mschuwalow ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.mschuwalow ]; }; } diff --git a/pkgs/development/python-modules/stups-pierone/default.nix b/pkgs/development/python-modules/stups-pierone/default.nix index 1415e07ab1af..49a03bf47183 100644 --- a/pkgs/development/python-modules/stups-pierone/default.nix +++ b/pkgs/development/python-modules/stups-pierone/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pierone" ]; - meta = with lib; { + meta = { description = "Convenient command line client for STUPS' Pier One Docker registry"; homepage = "https://github.com/zalando-stups/pierone-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ mschuwalow ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mschuwalow ]; }; } diff --git a/pkgs/development/python-modules/stups-tokens/default.nix b/pkgs/development/python-modules/stups-tokens/default.nix index 3d9c4cd07735..a2614e55969e 100644 --- a/pkgs/development/python-modules/stups-tokens/default.nix +++ b/pkgs/development/python-modules/stups-tokens/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python library that keeps OAuth 2.0 service access tokens in memory for your usage"; homepage = "https://github.com/zalando-stups/python-tokens"; - license = licenses.asl20; - maintainers = [ maintainers.mschuwalow ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.mschuwalow ]; }; } diff --git a/pkgs/development/python-modules/stups-zign/default.nix b/pkgs/development/python-modules/stups-zign/default.nix index 1c54cdb51212..d381a2fcb2b1 100644 --- a/pkgs/development/python-modules/stups-zign/default.nix +++ b/pkgs/development/python-modules/stups-zign/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "OAuth2 token management command line utility"; homepage = "https://github.com/zalando-stups/zign"; - license = licenses.asl20; - maintainers = [ maintainers.mschuwalow ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.mschuwalow ]; }; } diff --git a/pkgs/development/python-modules/stytra/default.nix b/pkgs/development/python-modules/stytra/default.nix index 21520a78aaa7..a6f9c13160eb 100644 --- a/pkgs/development/python-modules/stytra/default.nix +++ b/pkgs/development/python-modules/stytra/default.nix @@ -85,10 +85,10 @@ buildPythonPackage rec { "stytra/tests/test_z_experiments.py" ]; - meta = with lib; { + meta = { description = "Modular package to control stimulation and track behaviour"; homepage = "https://github.com/portugueslab/stytra"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ tbenst ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/subarulink/default.nix b/pkgs/development/python-modules/subarulink/default.nix index de81112e882a..933623e33ec1 100644 --- a/pkgs/development/python-modules/subarulink/default.nix +++ b/pkgs/development/python-modules/subarulink/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "subarulink" ]; - meta = with lib; { + meta = { description = "Python module for interacting with STARLINK-enabled vehicle"; homepage = "https://github.com/G-Two/subarulink"; changelog = "https://github.com/G-Two/subarulink/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "subarulink"; }; } diff --git a/pkgs/development/python-modules/subprocess-tee/default.nix b/pkgs/development/python-modules/subprocess-tee/default.nix index a5de7760ee5a..56510a6aec0b 100644 --- a/pkgs/development/python-modules/subprocess-tee/default.nix +++ b/pkgs/development/python-modules/subprocess-tee/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "subprocess_tee" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pycontribs/subprocess-tee"; description = "Subprocess.run drop-in replacement that supports a tee mode"; changelog = "https://github.com/pycontribs/subprocess-tee/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ putchar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ putchar ]; }; } diff --git a/pkgs/development/python-modules/subzerod/default.nix b/pkgs/development/python-modules/subzerod/default.nix index 49d59c66833d..0147d7690c83 100644 --- a/pkgs/development/python-modules/subzerod/default.nix +++ b/pkgs/development/python-modules/subzerod/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "subzerod" ]; - meta = with lib; { + meta = { description = "Python module to help with the enumeration of subdomains"; mainProgram = "subzerod"; homepage = "https://github.com/sanderfoobar/subzerod"; - license = with licenses; [ wtfpl ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ wtfpl ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/summarytools/default.nix b/pkgs/development/python-modules/summarytools/default.nix index 40b5359cb35e..aee9acc4fa86 100644 --- a/pkgs/development/python-modules/summarytools/default.nix +++ b/pkgs/development/python-modules/summarytools/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "summarytools" ]; - meta = with lib; { + meta = { description = "Python port of the R summarytools package for summarizing dataframes"; homepage = "https://github.com/6chaoran/jupyter-summarytools"; changelog = "https://github.com/6chaoran/jupyter-summarytools/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/sumtypes/default.nix b/pkgs/development/python-modules/sumtypes/default.nix index 20a45920f805..c4bd574be331 100644 --- a/pkgs/development/python-modules/sumtypes/default.nix +++ b/pkgs/development/python-modules/sumtypes/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Algebraic data types for Python"; homepage = "https://github.com/radix/sumtypes"; - license = licenses.mit; - maintainers = with maintainers; [ NieDzejkob ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ NieDzejkob ]; }; } diff --git a/pkgs/development/python-modules/sunpy/default.nix b/pkgs/development/python-modules/sunpy/default.nix index e991d99cbab8..32c14b3dcc01 100644 --- a/pkgs/development/python-modules/sunpy/default.nix +++ b/pkgs/development/python-modules/sunpy/default.nix @@ -200,10 +200,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sunpy" ]; - meta = with lib; { + meta = { description = "Python for Solar Physics"; homepage = "https://sunpy.org"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sunwatcher/default.nix b/pkgs/development/python-modules/sunwatcher/default.nix index 9729093eec66..0a3d7a1a1bd6 100644 --- a/pkgs/development/python-modules/sunwatcher/default.nix +++ b/pkgs/development/python-modules/sunwatcher/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sunwatcher" ]; - meta = with lib; { + meta = { description = "Python module for the SolarLog HTTP API"; homepage = "https://bitbucket.org/Lavode/sunwatcher/src/master/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sunweg/default.nix b/pkgs/development/python-modules/sunweg/default.nix index 997e73978bc7..5a87ec4a8001 100644 --- a/pkgs/development/python-modules/sunweg/default.nix +++ b/pkgs/development/python-modules/sunweg/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sunweg" ]; - meta = with lib; { + meta = { description = "Module to access the WEG solar energy platform"; homepage = "https://github.com/rokam/sunweg"; changelog = "https://github.com/rokam/sunweg/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/superqt/default.nix b/pkgs/development/python-modules/superqt/default.nix index bcbbc502495d..aa0109a6b3b2 100644 --- a/pkgs/development/python-modules/superqt/default.nix +++ b/pkgs/development/python-modules/superqt/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { # Segmentation fault # pythonImportsCheck = [ "superqt" ]; - meta = with lib; { + meta = { description = "Missing widgets and components for Qt-python (napari/superqt)"; homepage = "https://github.com/napari/superqt"; changelog = "https://github.com/pyapp-kit/superqt/releases/tag/${src.tag}"; - license = licenses.bsd3; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/surepy/default.nix b/pkgs/development/python-modules/surepy/default.nix index 2f09280b27b0..96154aa10954 100644 --- a/pkgs/development/python-modules/surepy/default.nix +++ b/pkgs/development/python-modules/surepy/default.nix @@ -58,12 +58,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "surepy" ]; - meta = with lib; { + meta = { description = "Python library to interact with the Sure Petcare API"; homepage = "https://github.com/benleb/surepy"; changelog = "https://github.com/benleb/surepy/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "surepy"; }; } diff --git a/pkgs/development/python-modules/surt/default.nix b/pkgs/development/python-modules/surt/default.nix index b4b3bb2d444f..ff78c7be545a 100644 --- a/pkgs/development/python-modules/surt/default.nix +++ b/pkgs/development/python-modules/surt/default.nix @@ -39,10 +39,10 @@ buildPythonPackage { "test_getPublicSuffix" ]; - meta = with lib; { + meta = { description = "Sort-friendly URI Reordering Transform (SURT) python module"; homepage = "https://github.com/internetarchive/surt"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/sv-ttk/default.nix b/pkgs/development/python-modules/sv-ttk/default.nix index 13a3162291ee..91c14db17956 100644 --- a/pkgs/development/python-modules/sv-ttk/default.nix +++ b/pkgs/development/python-modules/sv-ttk/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sv_ttk" ]; - meta = with lib; { + meta = { description = "Gorgeous theme for Tkinter/ttk, based on the Sun Valley visual style"; homepage = "https://github.com/rdbende/Sun-Valley-ttk-theme"; changelog = "https://github.com/rdbende/Sun-Valley-ttk-theme/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ AngryAnt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AngryAnt ]; }; } diff --git a/pkgs/development/python-modules/svg-path/default.nix b/pkgs/development/python-modules/svg-path/default.nix index 5af2a0c1bb27..d58f26f531a2 100644 --- a/pkgs/development/python-modules/svg-path/default.nix +++ b/pkgs/development/python-modules/svg-path/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "svg.path" ]; - meta = with lib; { + meta = { description = "SVG path objects and parser"; homepage = "https://github.com/regebro/svg.path"; changelog = "https://github.com/regebro/svg.path/blob/${version}/CHANGES.txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/svg-py/default.nix b/pkgs/development/python-modules/svg-py/default.nix index cf0eb5e1d005..c08ccd8a17ed 100644 --- a/pkgs/development/python-modules/svg-py/default.nix +++ b/pkgs/development/python-modules/svg-py/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { "tests/test_attributes.py" ]; - meta = with lib; { + meta = { description = "Type-safe Python library to generate SVG files"; homepage = "https://github.com/orsinium-labs/svg.py"; changelog = "https://github.com/orsinium-labs/svg.py/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/svglib/default.nix b/pkgs/development/python-modules/svglib/default.nix index ab8978e144c9..0a260131d0f5 100644 --- a/pkgs/development/python-modules/svglib/default.nix +++ b/pkgs/development/python-modules/svglib/default.nix @@ -43,12 +43,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "svglib.svglib" ]; - meta = with lib; { + meta = { description = "Pure-Python library for reading and converting SVG"; mainProgram = "svg2pdf"; homepage = "https://github.com/deeplook/svglib"; changelog = "https://github.com/deeplook/svglib/blob/v${version}/CHANGELOG.rst"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ trepetti ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ trepetti ]; }; } diff --git a/pkgs/development/python-modules/svgutils/default.nix b/pkgs/development/python-modules/svgutils/default.nix index b628b4ea5baf..d9adb074189c 100644 --- a/pkgs/development/python-modules/svgutils/default.nix +++ b/pkgs/development/python-modules/svgutils/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "svgutils" ]; - meta = with lib; { + meta = { description = "Python tools to create and manipulate SVG files"; homepage = "https://github.com/btel/svg_utils"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/svgwrite/default.nix b/pkgs/development/python-modules/svgwrite/default.nix index 24bb2622ecc1..f4da66ed192a 100644 --- a/pkgs/development/python-modules/svgwrite/default.nix +++ b/pkgs/development/python-modules/svgwrite/default.nix @@ -28,9 +28,9 @@ buildPythonPackage rec { "test_embed_google_web_font" ]; - meta = with lib; { + meta = { description = "Python library to create SVG drawings"; homepage = "https://github.com/mozman/svgwrite"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/swagger-spec-validator/default.nix b/pkgs/development/python-modules/swagger-spec-validator/default.nix index c6f41fd03b1c..5a6ab5ec9bbe 100644 --- a/pkgs/development/python-modules/swagger-spec-validator/default.nix +++ b/pkgs/development/python-modules/swagger-spec-validator/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "swagger_spec_validator" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Yelp/swagger_spec_validator"; - license = licenses.asl20; + license = lib.licenses.asl20; description = "Validation of Swagger specifications"; - maintainers = with maintainers; [ vanschelven ]; + maintainers = with lib.maintainers; [ vanschelven ]; }; } diff --git a/pkgs/development/python-modules/swagger-ui-bundle/default.nix b/pkgs/development/python-modules/swagger-ui-bundle/default.nix index ad8462efc961..928006bb548a 100644 --- a/pkgs/development/python-modules/swagger-ui-bundle/default.nix +++ b/pkgs/development/python-modules/swagger-ui-bundle/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { # package contains no tests doCheck = false; - meta = with lib; { + meta = { description = "Bundled swagger-ui pip package"; homepage = "https://github.com/dtkav/swagger_ui_bundle"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/swift/default.nix b/pkgs/development/python-modules/swift/default.nix index 4abd394022cb..dfec8dd6d471 100644 --- a/pkgs/development/python-modules/swift/default.nix +++ b/pkgs/development/python-modules/swift/default.nix @@ -77,10 +77,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "swift" ]; - meta = with lib; { + meta = { description = "OpenStack Object Storage"; homepage = "https://github.com/openstack/swift"; - license = licenses.asl20; - teams = [ teams.openstack ]; + license = lib.licenses.asl20; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/swisshydrodata/default.nix b/pkgs/development/python-modules/swisshydrodata/default.nix index e9581c48ea5b..04cef8823c70 100644 --- a/pkgs/development/python-modules/swisshydrodata/default.nix +++ b/pkgs/development/python-modules/swisshydrodata/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "swisshydrodata" ]; - meta = with lib; { + meta = { description = "Python client to get data from the Swiss federal Office for Environment FEON"; homepage = "https://github.com/bouni/swisshydrodata"; changelog = "https://github.com/Bouni/swisshydrodata/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/switchbot-api/default.nix b/pkgs/development/python-modules/switchbot-api/default.nix index 5d2a4daccbf3..ec5742d9e370 100644 --- a/pkgs/development/python-modules/switchbot-api/default.nix +++ b/pkgs/development/python-modules/switchbot-api/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "switchbot_api" ]; - meta = with lib; { + meta = { description = "Asynchronous library to use Switchbot API"; homepage = "https://github.com/SeraphicCorp/py-switchbot-api"; changelog = "https://github.com/SeraphicCorp/py-switchbot-api/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sybil/default.nix b/pkgs/development/python-modules/sybil/default.nix index 494f8e042524..9f9dc24bdd8b 100644 --- a/pkgs/development/python-modules/sybil/default.nix +++ b/pkgs/development/python-modules/sybil/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sybil" ]; - meta = with lib; { + meta = { description = "Automated testing for the examples in your documentation"; homepage = "https://github.com/cjw296/sybil"; changelog = "https://github.com/simplistix/sybil/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sympy/default.nix b/pkgs/development/python-modules/sympy/default.nix index 02a2bb572589..a06f80ce2a2f 100644 --- a/pkgs/development/python-modules/sympy/default.nix +++ b/pkgs/development/python-modules/sympy/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { inherit sage; }; - meta = with lib; { + meta = { description = "Python library for symbolic mathematics"; mainProgram = "isympy"; homepage = "https://www.sympy.org/"; - license = licenses.bsd3; - maintainers = with maintainers; [ lovek323 ]; - teams = [ teams.sage ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lovek323 ]; + teams = [ lib.teams.sage ]; }; } diff --git a/pkgs/development/python-modules/syncedlyrics/default.nix b/pkgs/development/python-modules/syncedlyrics/default.nix index 81b05a72600d..228848888546 100644 --- a/pkgs/development/python-modules/syncedlyrics/default.nix +++ b/pkgs/development/python-modules/syncedlyrics/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "syncedlyrics" ]; - meta = with lib; { + meta = { description = "Module to get LRC format (synchronized) lyrics"; homepage = "https://github.com/rtcq/syncedlyrics"; changelog = "https://github.com/rtcq/syncedlyrics/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "syncedlyrics"; }; } diff --git a/pkgs/development/python-modules/syncer/default.nix b/pkgs/development/python-modules/syncer/default.nix index afda386209c1..9a3165d01f0b 100644 --- a/pkgs/development/python-modules/syncer/default.nix +++ b/pkgs/development/python-modules/syncer/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "syncer" ]; - meta = with lib; { + meta = { description = "Python async to sync converter"; homepage = "https://github.com/miyakogi/syncer"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/synergy/default.nix b/pkgs/development/python-modules/synergy/default.nix index ddd32baf85f3..dff034fa20b4 100644 --- a/pkgs/development/python-modules/synergy/default.nix +++ b/pkgs/development/python-modules/synergy/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "synergy" ]; - meta = with lib; { + meta = { description = "Python library for calculating, analyzing, and visualizing drug combination synergy"; homepage = "https://github.com/djwooten/synergy"; maintainers = [ ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/syslog-rfc5424-formatter/default.nix b/pkgs/development/python-modules/syslog-rfc5424-formatter/default.nix index 7fb7c27a3788..9e2cdd64546f 100644 --- a/pkgs/development/python-modules/syslog-rfc5424-formatter/default.nix +++ b/pkgs/development/python-modules/syslog-rfc5424-formatter/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "syslog_rfc5424_formatter" ]; - meta = with lib; { + meta = { description = "Python logging formatter for emitting RFC5424 Syslog messages"; homepage = "https://github.com/easypost/syslog-rfc5424-formatter"; - license = with licenses; [ isc ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ isc ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sysrsync/default.nix b/pkgs/development/python-modules/sysrsync/default.nix index df7047239735..f9a1fb219730 100644 --- a/pkgs/development/python-modules/sysrsync/default.nix +++ b/pkgs/development/python-modules/sysrsync/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sysrsync" ]; - meta = with lib; { + meta = { description = "Simple and safe system's rsync wrapper for Python"; homepage = "https://github.com/gchamon/sysrsync"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/systemd-python/default.nix b/pkgs/development/python-modules/systemd-python/default.nix index e680a563bad2..4722cb04ff40 100644 --- a/pkgs/development/python-modules/systemd-python/default.nix +++ b/pkgs/development/python-modules/systemd-python/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "systemd.login" ]; - meta = with lib; { + meta = { description = "Python module for native access to the systemd facilities"; homepage = "https://www.freedesktop.org/software/systemd/python-systemd/"; changelog = "https://github.com/systemd/python-systemd/blob/v${version}/NEWS"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/sysv-ipc/default.nix b/pkgs/development/python-modules/sysv-ipc/default.nix index d7e2f628756f..d3eefd6d81c2 100644 --- a/pkgs/development/python-modules/sysv-ipc/default.nix +++ b/pkgs/development/python-modules/sysv-ipc/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { sha256 = "0f063cbd36ec232032e425769ebc871f195a7d183b9af32f9901589ea7129ac3"; }; - meta = with lib; { + meta = { description = "SysV IPC primitives (semaphores, shared memory and message queues)"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "http://semanchuk.com/philip/sysv_ipc/"; - maintainers = with maintainers; [ ris ]; + maintainers = with lib.maintainers; [ ris ]; }; } diff --git a/pkgs/development/python-modules/tabcmd/default.nix b/pkgs/development/python-modules/tabcmd/default.nix index dc3d592cd3cf..f31b7e20df8d 100644 --- a/pkgs/development/python-modules/tabcmd/default.nix +++ b/pkgs/development/python-modules/tabcmd/default.nix @@ -94,11 +94,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tabcmd" ]; - meta = with lib; { + meta = { description = "Command line client for working with Tableau Server"; homepage = "https://github.com/tableau/tabcmd"; changelog = "https://github.com/tableau/tabcmd/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "tabcmd"; }; diff --git a/pkgs/development/python-modules/tableaudocumentapi/default.nix b/pkgs/development/python-modules/tableaudocumentapi/default.nix index 9f841867cb5e..fab56a24b6ad 100644 --- a/pkgs/development/python-modules/tableaudocumentapi/default.nix +++ b/pkgs/development/python-modules/tableaudocumentapi/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { # ModuleNotFoundError: No module named 'test.assets' doCheck = false; - meta = with lib; { + meta = { description = "Python module for working with Tableau files"; homepage = "https://github.com/tableau/document-api-python"; changelog = "https://github.com/tableau/document-api-python/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tableauserverclient/default.nix b/pkgs/development/python-modules/tableauserverclient/default.nix index 0a34dd6e7dbd..7900034f768a 100644 --- a/pkgs/development/python-modules/tableauserverclient/default.nix +++ b/pkgs/development/python-modules/tableauserverclient/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tableauserverclient" ]; - meta = with lib; { + meta = { description = "Module for working with the Tableau Server REST API"; homepage = "https://github.com/tableau/server-client-python"; changelog = "https://github.com/tableau/server-client-python/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tables/default.nix b/pkgs/development/python-modules/tables/default.nix index 650f1a403abe..745d9999d684 100644 --- a/pkgs/development/python-modules/tables/default.nix +++ b/pkgs/development/python-modules/tables/default.nix @@ -116,11 +116,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tables" ]; - meta = with lib; { + meta = { description = "Hierarchical datasets for Python"; homepage = "https://www.pytables.org/"; changelog = "https://github.com/PyTables/PyTables/releases/tag/v${version}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tablib/default.nix b/pkgs/development/python-modules/tablib/default.nix index fc8d032e4b29..e299426168e7 100644 --- a/pkgs/development/python-modules/tablib/default.nix +++ b/pkgs/development/python-modules/tablib/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tablib" ]; - meta = with lib; { + meta = { description = "Format-agnostic tabular dataset library"; homepage = "https://tablib.readthedocs.io/"; changelog = "https://github.com/jazzband/tablib/raw/v${version}/HISTORY.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tabula-py/default.nix b/pkgs/development/python-modules/tabula-py/default.nix index b6950378734d..328a242e1c7f 100644 --- a/pkgs/development/python-modules/tabula-py/default.nix +++ b/pkgs/development/python-modules/tabula-py/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "test_read_pdf_with_silent_true" ]; - meta = with lib; { + meta = { description = "Module to extract table from PDF into pandas DataFrame"; homepage = "https://github.com/chezou/tabula-py"; changelog = "https://github.com/chezou/tabula-py/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tabview/default.nix b/pkgs/development/python-modules/tabview/default.nix index 4db25a42b8cd..94fc809c9bda 100644 --- a/pkgs/development/python-modules/tabview/default.nix +++ b/pkgs/development/python-modules/tabview/default.nix @@ -20,12 +20,12 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python curses command line CSV and tabular data viewer"; mainProgram = "tabview"; homepage = "https://github.com/TabViewer/tabview"; changelog = "https://github.com/TabViewer/tabview/blob/main/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/tadasets/default.nix b/pkgs/development/python-modules/tadasets/default.nix index ad437fd3497b..50117d34678c 100644 --- a/pkgs/development/python-modules/tadasets/default.nix +++ b/pkgs/development/python-modules/tadasets/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { scipy ]; - meta = with lib; { + meta = { description = "Great data sets for Topological Data Analysis"; homepage = "https://tadasets.scikit-tda.org"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tag-expressions/default.nix b/pkgs/development/python-modules/tag-expressions/default.nix index 8c543e8a13ec..035d2e3323bb 100644 --- a/pkgs/development/python-modules/tag-expressions/default.nix +++ b/pkgs/development/python-modules/tag-expressions/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tagexpressions" ]; - meta = with lib; { + meta = { description = "Package to parse logical tag expressions"; homepage = "https://github.com/timofurrer/tag-expressions"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kalbasit ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/development/python-modules/tago/default.nix b/pkgs/development/python-modules/tago/default.nix index bfc64cf7f289..11e81757afaa 100644 --- a/pkgs/development/python-modules/tago/default.nix +++ b/pkgs/development/python-modules/tago/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tago" ]; - meta = with lib; { + meta = { description = "Python module for interacting with Tago.io"; homepage = "https://github.com/tago-io/tago-sdk-python"; changelog = "https://github.com/tago-io/tago-sdk-python/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tagoio-sdk/default.nix b/pkgs/development/python-modules/tagoio-sdk/default.nix index 3e462be12678..60a0737930df 100644 --- a/pkgs/development/python-modules/tagoio-sdk/default.nix +++ b/pkgs/development/python-modules/tagoio-sdk/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tagoio_sdk" ]; - meta = with lib; { + meta = { description = "Module for interacting with Tago.io"; homepage = "https://github.com/tago-io/sdk-python"; changelog = "https://github.com/tago-io/sdk-python/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tahoma-api/default.nix b/pkgs/development/python-modules/tahoma-api/default.nix index f9701ab89da0..89c94f8d86b7 100644 --- a/pkgs/development/python-modules/tahoma-api/default.nix +++ b/pkgs/development/python-modules/tahoma-api/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "tahoma_api" ]; - meta = with lib; { + meta = { description = "Python module to interface with Tahoma REST API"; homepage = "https://github.com/philklei/tahoma-api/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tailer/default.nix b/pkgs/development/python-modules/tailer/default.nix index dbdc4e527962..f51577891397 100644 --- a/pkgs/development/python-modules/tailer/default.nix +++ b/pkgs/development/python-modules/tailer/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tailer" ]; - meta = with lib; { + meta = { description = "Python implementation implementation of GNU tail and head"; mainProgram = "pytail"; homepage = "https://github.com/six8/pytailer"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tailscale/default.nix b/pkgs/development/python-modules/tailscale/default.nix index a7708fd7579e..211bdff84112 100644 --- a/pkgs/development/python-modules/tailscale/default.nix +++ b/pkgs/development/python-modules/tailscale/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tailscale" ]; - meta = with lib; { + meta = { description = "Python client for the Tailscale API"; homepage = "https://github.com/frenck/python-tailscale"; changelog = "https://github.com/frenck/python-tailscale/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/takethetime/default.nix b/pkgs/development/python-modules/takethetime/default.nix index e5671d5c08e8..1c2b812d16c2 100644 --- a/pkgs/development/python-modules/takethetime/default.nix +++ b/pkgs/development/python-modules/takethetime/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "takethetime" ]; - meta = with lib; { + meta = { description = "Simple time taking library using context managers"; homepage = "https://github.com/ErikBjare/TakeTheTime"; - maintainers = with maintainers; [ huantian ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ huantian ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/tank-utility/default.nix b/pkgs/development/python-modules/tank-utility/default.nix index 075b788e852b..60f836de6ddb 100644 --- a/pkgs/development/python-modules/tank-utility/default.nix +++ b/pkgs/development/python-modules/tank-utility/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tank_utility" ]; - meta = with lib; { + meta = { description = "Library for the Tank Utility API"; mainProgram = "tank-utility"; homepage = "https://github.com/krismolendyke/tank-utility"; changelog = "https://github.com/krismolendyke/tank-utility/blob/${version}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/taskw-ng/default.nix b/pkgs/development/python-modules/taskw-ng/default.nix index 03f3d77cd0b5..cbe6c5e28b4c 100644 --- a/pkgs/development/python-modules/taskw-ng/default.nix +++ b/pkgs/development/python-modules/taskw-ng/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { # TODO: doesn't pass because `can_use` fails and `task --version` seems not to be answering. # pythonImportsCheck = [ "taskw_ng" ]; - meta = with lib; { + meta = { description = "Module to interact with the Taskwarrior API"; homepage = "https://github.com/bergercookie/taskw-ng"; changelog = "https://github.com/bergercookie/taskw-ng/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raitobezarius ]; }; } diff --git a/pkgs/development/python-modules/taskw/default.nix b/pkgs/development/python-modules/taskw/default.nix index 8e3e33cac1ed..56d9f27415fb 100644 --- a/pkgs/development/python-modules/taskw/default.nix +++ b/pkgs/development/python-modules/taskw/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest7CheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/ralphbean/taskw"; description = "Python bindings for your taskwarrior database"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pierron ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pierron ]; }; } diff --git a/pkgs/development/python-modules/tatsu/default.nix b/pkgs/development/python-modules/tatsu/default.nix index 96e4bfff4c5b..747492a8d679 100644 --- a/pkgs/development/python-modules/tatsu/default.nix +++ b/pkgs/development/python-modules/tatsu/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "tatsu" ]; - meta = with lib; { + meta = { description = "Generates Python parsers from grammars in a variation of EBNF"; longDescription = '' TatSu (the successor to Grako) is a tool that takes grammars in a @@ -43,7 +43,7 @@ buildPythonPackage rec { ''; homepage = "https://tatsu.readthedocs.io/"; changelog = "https://github.com/neogeny/TatSu/releases/tag/${src.tag}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/taxi/default.nix b/pkgs/development/python-modules/taxi/default.nix index 667667a62c85..0b2990ac73ea 100644 --- a/pkgs/development/python-modules/taxi/default.nix +++ b/pkgs/development/python-modules/taxi/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "taxi" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sephii/taxi/"; description = "Timesheeting made easy"; mainProgram = "taxi"; - license = licenses.wtfpl; - maintainers = with maintainers; [ jocelynthode ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ jocelynthode ]; }; } diff --git a/pkgs/development/python-modules/tbats/default.nix b/pkgs/development/python-modules/tbats/default.nix index c2b2efff6261..bf1daa3ca665 100644 --- a/pkgs/development/python-modules/tbats/default.nix +++ b/pkgs/development/python-modules/tbats/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tbats" ]; - meta = with lib; { + meta = { description = "BATS and TBATS forecasting methods"; homepage = "https://github.com/intive-DataScience/tbats"; changelog = "https://github.com/intive-DataScience/tbats/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/tblib/default.nix b/pkgs/development/python-modules/tblib/default.nix index 20c6c61328b2..68d00bd2c271 100644 --- a/pkgs/development/python-modules/tblib/default.nix +++ b/pkgs/development/python-modules/tblib/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ]; - meta = with lib; { + meta = { description = "Traceback fiddling library. Allows you to pickle tracebacks"; homepage = "https://github.com/ionelmc/python-tblib"; - license = licenses.bsd2; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/tbm-utils/default.nix b/pkgs/development/python-modules/tbm-utils/default.nix index b76d95cbda02..c521b3d345eb 100644 --- a/pkgs/development/python-modules/tbm-utils/default.nix +++ b/pkgs/development/python-modules/tbm-utils/default.nix @@ -79,11 +79,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tbm_utils" ]; - meta = with lib; { + meta = { description = "Commonly-used set of utilities"; homepage = "https://github.com/thebigmunch/tbm-utils"; changelog = "https://github.com/thebigmunch/tbm-utils/blob/${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tcolorpy/default.nix b/pkgs/development/python-modules/tcolorpy/default.nix index 39adb610f6da..73a21a97b823 100644 --- a/pkgs/development/python-modules/tcolorpy/default.nix +++ b/pkgs/development/python-modules/tcolorpy/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/thombashi/tcolorpy"; description = "Library to apply true color for terminal text"; - maintainers = with maintainers; [ genericnerdyusername ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ genericnerdyusername ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/tcxparser/default.nix b/pkgs/development/python-modules/tcxparser/default.nix index 97b1e8d97c79..1dee17fb57cb 100644 --- a/pkgs/development/python-modules/tcxparser/default.nix +++ b/pkgs/development/python-modules/tcxparser/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tcxparser" ]; - meta = with lib; { + meta = { description = "Simple parser for Garmin TCX files"; homepage = "https://github.com/vkurup/python-tcxparser"; - license = licenses.bsd2; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/development/python-modules/tcxreader/default.nix b/pkgs/development/python-modules/tcxreader/default.nix index 6ff283568411..818638a549e9 100644 --- a/pkgs/development/python-modules/tcxreader/default.nix +++ b/pkgs/development/python-modules/tcxreader/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tcxreader" ]; - meta = with lib; { + meta = { description = "Reader for Garmin’s TCX file format"; homepage = "https://github.com/alenrajsp/tcxreader"; changelog = "https://github.com/alenrajsp/tcxreader/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ firefly-cpp ]; }; } diff --git a/pkgs/development/python-modules/tdir/default.nix b/pkgs/development/python-modules/tdir/default.nix index c00e0b3f0bc5..a2abb087f97e 100644 --- a/pkgs/development/python-modules/tdir/default.nix +++ b/pkgs/development/python-modules/tdir/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tdir" ]; - meta = with lib; { + meta = { description = "Create, fill a temporary directory"; homepage = "https://github.com/rec/tdir"; changelog = "https://github.com/rec/tdir/blob/${src.rev}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/teamcity-messages/default.nix b/pkgs/development/python-modules/teamcity-messages/default.nix index 2d4e63824622..1a1b57e93805 100644 --- a/pkgs/development/python-modules/teamcity-messages/default.nix +++ b/pkgs/development/python-modules/teamcity-messages/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "teamcity" ]; - meta = with lib; { + meta = { description = "Python unit test reporting to TeamCity"; homepage = "https://github.com/JetBrains/teamcity-messages"; changelog = "https://github.com/JetBrains/teamcity-messages/releases/tag/v${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/telegram-text/default.nix b/pkgs/development/python-modules/telegram-text/default.nix index 5d82175d2242..17085a6d755c 100644 --- a/pkgs/development/python-modules/telegram-text/default.nix +++ b/pkgs/development/python-modules/telegram-text/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python markup module for Telegram messenger"; downloadPage = "https://github.com/SKY-ALIN/telegram-text"; homepage = "https://telegram-text.alinsky.tech/"; changelog = "https://github.com/SKY-ALIN/telegram-text/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/development/python-modules/telegraph/default.nix b/pkgs/development/python-modules/telegraph/default.nix index fedcc91a0d26..bac237a4e84d 100644 --- a/pkgs/development/python-modules/telegraph/default.nix +++ b/pkgs/development/python-modules/telegraph/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "telegraph" ]; - meta = with lib; { + meta = { description = "Telegraph API wrapper"; homepage = "https://github.com/python273/telegraph"; changelog = "https://github.com/python273/telegraph/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ gp2112 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gp2112 ]; }; } diff --git a/pkgs/development/python-modules/telepath/default.nix b/pkgs/development/python-modules/telepath/default.nix index 3af1ba09950f..b3e138831b3a 100644 --- a/pkgs/development/python-modules/telepath/default.nix +++ b/pkgs/development/python-modules/telepath/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "telepath" ]; - meta = with lib; { + meta = { description = "Library for exchanging data between Python and JavaScript"; homepage = "https://github.com/wagtail/telepath"; changelog = "https://github.com/wagtail/telepath/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/telethon-session-sqlalchemy/default.nix b/pkgs/development/python-modules/telethon-session-sqlalchemy/default.nix index 9d24e4c25290..9486f7ed9aaf 100644 --- a/pkgs/development/python-modules/telethon-session-sqlalchemy/default.nix +++ b/pkgs/development/python-modules/telethon-session-sqlalchemy/default.nix @@ -26,8 +26,8 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://github.com/tulir/telethon-session-sqlalchemy"; description = "SQLAlchemy backend for Telethon session storage"; - license = licenses.mit; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nyanloutre ]; # Package requires SQLAlchemy <2 # https://github.com/tulir/telethon-session-sqlalchemy/blob/d498503ddde332e190bfa47e70f0bfa59fe6b5ef/setup.py#L17 diff --git a/pkgs/development/python-modules/teletype/default.nix b/pkgs/development/python-modules/teletype/default.nix index 73aa506b29aa..d05f236ecee8 100644 --- a/pkgs/development/python-modules/teletype/default.nix +++ b/pkgs/development/python-modules/teletype/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "teletype" ]; - meta = with lib; { + meta = { description = "High-level cross platform tty library"; homepage = "https://github.com/jkwill87/teletype"; - license = licenses.mit; - maintainers = with maintainers; [ urlordjames ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urlordjames ]; }; } diff --git a/pkgs/development/python-modules/telfhash/default.nix b/pkgs/development/python-modules/telfhash/default.nix index 18b67b6bf502..ac19a12d1eeb 100644 --- a/pkgs/development/python-modules/telfhash/default.nix +++ b/pkgs/development/python-modules/telfhash/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "telfhash" ]; - meta = with lib; { + meta = { description = "Symbol hash for ELF files"; mainProgram = "telfhash"; homepage = "https://github.com/trendmicro/telfhash"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tellduslive/default.nix b/pkgs/development/python-modules/tellduslive/default.nix index 67d20a25250a..32e9970b28de 100644 --- a/pkgs/development/python-modules/tellduslive/default.nix +++ b/pkgs/development/python-modules/tellduslive/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tellduslive" ]; - meta = with lib; { + meta = { description = "Python module to communicate with Telldus Live"; homepage = "https://github.com/molobrakos/tellduslive"; - license = licenses.unlicense; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "tellduslive"; }; } diff --git a/pkgs/development/python-modules/temescal/default.nix b/pkgs/development/python-modules/temescal/default.nix index c7a824b92c2e..19581cb86d90 100644 --- a/pkgs/development/python-modules/temescal/default.nix +++ b/pkgs/development/python-modules/temescal/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "temescal" ]; - meta = with lib; { + meta = { description = "Module for interacting with LG speaker systems"; homepage = "https://github.com/google/python-temescal"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/temperusb/default.nix b/pkgs/development/python-modules/temperusb/default.nix index 2dc1a2af1ffd..b906df75b858 100644 --- a/pkgs/development/python-modules/temperusb/default.nix +++ b/pkgs/development/python-modules/temperusb/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "temperusb" ]; - meta = with lib; { + meta = { description = "Library to read TEMPer USB HID devices"; homepage = "https://github.com/padelt/temper-python"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tempest/default.nix b/pkgs/development/python-modules/tempest/default.nix index 9fedd75b8dde..d73587e58626 100644 --- a/pkgs/development/python-modules/tempest/default.nix +++ b/pkgs/development/python-modules/tempest/default.nix @@ -93,11 +93,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tempest" ]; - meta = with lib; { + meta = { description = "OpenStack integration test suite that runs against live OpenStack cluster and validates an OpenStack deployment"; homepage = "https://github.com/openstack/tempest"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "tempest"; - teams = [ teams.openstack ]; + teams = [ lib.teams.openstack ]; }; } diff --git a/pkgs/development/python-modules/templateflow/default.nix b/pkgs/development/python-modules/templateflow/default.nix index 9632f5fd338f..f5fcaa4544b5 100644 --- a/pkgs/development/python-modules/templateflow/default.nix +++ b/pkgs/development/python-modules/templateflow/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "templateflow" ]; - meta = with lib; { + meta = { homepage = "https://templateflow.org/python-client"; description = "Python API to query TemplateFlow via pyBIDS"; changelog = "https://github.com/templateflow/python-client/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/tempora/default.nix b/pkgs/development/python-modules/tempora/default.nix index 15ad8fc444ab..f6f347fdce5b 100644 --- a/pkgs/development/python-modules/tempora/default.nix +++ b/pkgs/development/python-modules/tempora/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { "tempora.utc" ]; - meta = with lib; { + meta = { description = "Objects and routines pertaining to date and time"; mainProgram = "calc-prorate"; homepage = "https://github.com/jaraco/tempora"; changelog = "https://github.com/jaraco/tempora/blob/${src.tag}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tenacity/default.nix b/pkgs/development/python-modules/tenacity/default.nix index 39d0ab9086f2..605c370659ac 100644 --- a/pkgs/development/python-modules/tenacity/default.nix +++ b/pkgs/development/python-modules/tenacity/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tenacity" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jd/tenacity"; changelog = "https://github.com/jd/tenacity/releases/tag/${version}"; description = "Retrying library for Python"; - license = licenses.asl20; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index 191d3a343cc0..b06155447dbc 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { "test_sts_credential_with_set_endpoint" ]; - meta = with lib; { + meta = { description = "Tencent Cloud API 3.0 SDK for Python"; homepage = "https://github.com/TencentCloud/tencentcloud-sdk-python"; changelog = "https://github.com/TencentCloud/tencentcloud-sdk-python/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tendo/default.nix b/pkgs/development/python-modules/tendo/default.nix index 5630c802ad43..660ee1132c9d 100644 --- a/pkgs/development/python-modules/tendo/default.nix +++ b/pkgs/development/python-modules/tendo/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tendo" ]; - meta = with lib; { + meta = { description = "Adds basic functionality that is not provided by Python"; homepage = "https://github.com/pycontribs/tendo"; changelog = "https://github.com/pycontribs/tendo/releases/tag/v${version}"; - license = licenses.psfl; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/tensorboard-data-server/default.nix b/pkgs/development/python-modules/tensorboard-data-server/default.nix index 37fbd1eb700a..629fdb75766f 100644 --- a/pkgs/development/python-modules/tensorboard-data-server/default.nix +++ b/pkgs/development/python-modules/tensorboard-data-server/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tensorboard_data_server" ]; - meta = with lib; { + meta = { description = "Fast data loading for TensorBoard"; homepage = "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tensorboard-plugin-profile/default.nix b/pkgs/development/python-modules/tensorboard-plugin-profile/default.nix index 9719d1d0c6a0..d88ee89165eb 100644 --- a/pkgs/development/python-modules/tensorboard-plugin-profile/default.nix +++ b/pkgs/development/python-modules/tensorboard-plugin-profile/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { werkzeug ]; - meta = with lib; { + meta = { description = "Profile Tensorboard Plugin"; homepage = "http://tensorflow.org"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/tensorboard-plugin-wit/default.nix b/pkgs/development/python-modules/tensorboard-plugin-wit/default.nix index 4a5760e3e92e..c68c9fe2e18a 100644 --- a/pkgs/development/python-modules/tensorboard-plugin-wit/default.nix +++ b/pkgs/development/python-modules/tensorboard-plugin-wit/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { sha256 = "0nv855qm2fav70lndsrv810pqgg41sbmd70fk86wk18ih825yxzf"; }; - meta = with lib; { + meta = { description = "What-If Tool TensorBoard plugin"; homepage = "http://tensorflow.org"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/tensorboardx/default.nix b/pkgs/development/python-modules/tensorboardx/default.nix index e9dcad060b5e..52f5886b1ac7 100644 --- a/pkgs/development/python-modules/tensorboardx/default.nix +++ b/pkgs/development/python-modules/tensorboardx/default.nix @@ -75,16 +75,16 @@ buildPythonPackage rec { "tests/test_record_writer.py" ]; - meta = with lib; { + meta = { description = "Library for writing tensorboard-compatible logs"; homepage = "https://tensorboardx.readthedocs.io"; downloadPage = "https://github.com/lanpa/tensorboardX"; changelog = "https://github.com/lanpa/tensorboardX/blob/${src.rev}/HISTORY.rst"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lebastr akamaus ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/tensorflow-estimator/bin.nix b/pkgs/development/python-modules/tensorflow-estimator/bin.nix index 0d43ea9fdc9a..b9ee6496a692 100644 --- a/pkgs/development/python-modules/tensorflow-estimator/bin.nix +++ b/pkgs/development/python-modules/tensorflow-estimator/bin.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { absl-py ]; - meta = with lib; { + meta = { description = "TensorFlow Estimator is a high-level API that encapsulates model training, evaluation, prediction, and exporting"; homepage = "http://tensorflow.org"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/tensorly/default.nix b/pkgs/development/python-modules/tensorly/default.nix index b6e4534c0e8a..f4ee55b15c9e 100644 --- a/pkgs/development/python-modules/tensorly/default.nix +++ b/pkgs/development/python-modules/tensorly/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { "test_svd_time" ]; - meta = with lib; { + meta = { description = "Tensor learning in Python"; homepage = "https://tensorly.org/"; changelog = "https://github.com/tensorly/tensorly/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/termcolor/default.nix b/pkgs/development/python-modules/termcolor/default.nix index eae96afd7b58..04204e79d1c5 100644 --- a/pkgs/development/python-modules/termcolor/default.nix +++ b/pkgs/development/python-modules/termcolor/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/termcolor/termcolor/releases/tag/${version}"; description = "ANSI color formatting for output in terminal"; homepage = "https://github.com/termcolor/termcolor"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/termgraph/default.nix b/pkgs/development/python-modules/termgraph/default.nix index b874c66965d7..d3cfa683165a 100644 --- a/pkgs/development/python-modules/termgraph/default.nix +++ b/pkgs/development/python-modules/termgraph/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "termgraph" ]; - meta = with lib; { + meta = { description = "Python command-line tool which draws basic graphs in the terminal"; mainProgram = "termgraph"; homepage = "https://github.com/mkaz/termgraph"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/terminado/default.nix b/pkgs/development/python-modules/terminado/default.nix index 6b266e62ee74..e1a7d83c680b 100644 --- a/pkgs/development/python-modules/terminado/default.nix +++ b/pkgs/development/python-modules/terminado/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { ]; pytestFlags = [ "-Wignore::pytest.PytestUnraisableExceptionWarning" ]; - meta = with lib; { + meta = { description = "Terminals served by Tornado websockets"; homepage = "https://github.com/jupyter/terminado"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/terminaltables/default.nix b/pkgs/development/python-modules/terminaltables/default.nix index f88cc61838da..7dd13c858f80 100644 --- a/pkgs/development/python-modules/terminaltables/default.nix +++ b/pkgs/development/python-modules/terminaltables/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "ba6eca5cb5ba02bba4c9f4f985af80c54ec3dccf94cfcd190154386255e47543"; }; - meta = with lib; { + meta = { description = "Display simple tables in terminals"; homepage = "https://github.com/Robpol86/terminaltables"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/termplotlib/default.nix b/pkgs/development/python-modules/termplotlib/default.nix index c3dde9b10d7c..275b9ade8cc7 100644 --- a/pkgs/development/python-modules/termplotlib/default.nix +++ b/pkgs/development/python-modules/termplotlib/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { "test_nolabel" ]; - meta = with lib; { + meta = { description = "Matplotlib for your terminal"; homepage = "https://github.com/nschloe/termplotlib"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ thoughtpolice ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/termstyle/default.nix b/pkgs/development/python-modules/termstyle/default.nix index a3d752b7e7a7..f982ad0a4adb 100644 --- a/pkgs/development/python-modules/termstyle/default.nix +++ b/pkgs/development/python-modules/termstyle/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # Only manual tests doCheck = false; - meta = with lib; { + meta = { description = "Console colouring for python"; homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; }; } diff --git a/pkgs/development/python-modules/tern/default.nix b/pkgs/development/python-modules/tern/default.nix index 978ba12ee1a1..ca1d0f3c1448 100644 --- a/pkgs/development/python-modules/tern/default.nix +++ b/pkgs/development/python-modules/tern/default.nix @@ -56,12 +56,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tern" ]; - meta = with lib; { + meta = { description = "Software composition analysis tool and Python library that generates a Software Bill of Materials for container images and Dockerfiles"; mainProgram = "tern"; homepage = "https://github.com/tern-tools/tern"; changelog = "https://github.com/tern-tools/tern/releases/tag/v${version}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tesla-fleet-api/default.nix b/pkgs/development/python-modules/tesla-fleet-api/default.nix index bc1bddb0e021..411088cca34f 100644 --- a/pkgs/development/python-modules/tesla-fleet-api/default.nix +++ b/pkgs/development/python-modules/tesla-fleet-api/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tesla_fleet_api" ]; - meta = with lib; { + meta = { description = "Python library for Tesla Fleet API and Teslemetry"; homepage = "https://github.com/Teslemetry/python-tesla-fleet-api"; changelog = "https://github.com/Teslemetry/python-tesla-fleet-api/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tesla-powerwall/default.nix b/pkgs/development/python-modules/tesla-powerwall/default.nix index e9e60684fbd2..f2f7ab83f516 100644 --- a/pkgs/development/python-modules/tesla-powerwall/default.nix +++ b/pkgs/development/python-modules/tesla-powerwall/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tesla_powerwall" ]; - meta = with lib; { + meta = { description = "API for Tesla Powerwall"; homepage = "https://github.com/jrester/tesla_powerwall"; changelog = "https://github.com/jrester/tesla_powerwall/blob/v${version}/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/teslajsonpy/default.nix b/pkgs/development/python-modules/teslajsonpy/default.nix index 08e6b6fd4010..8c4a3d127ae6 100644 --- a/pkgs/development/python-modules/teslajsonpy/default.nix +++ b/pkgs/development/python-modules/teslajsonpy/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "teslajsonpy" ]; - meta = with lib; { + meta = { description = "Python library to work with Tesla API"; homepage = "https://github.com/zabuldon/teslajsonpy"; changelog = "https://github.com/zabuldon/teslajsonpy/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/test-tube/default.nix b/pkgs/development/python-modules/test-tube/default.nix index 95ed81707792..4ed0f31871c2 100644 --- a/pkgs/development/python-modules/test-tube/default.nix +++ b/pkgs/development/python-modules/test-tube/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { tensorboard ]; - meta = with lib; { + meta = { homepage = "https://github.com/williamFalcon/test-tube"; description = "Framework-agnostic library to track and parallelize hyperparameter search in machine learning experiments"; - license = licenses.mit; - maintainers = [ maintainers.tbenst ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.tbenst ]; }; } diff --git a/pkgs/development/python-modules/testbook/default.nix b/pkgs/development/python-modules/testbook/default.nix index 013291df0f46..2eb1a20b8648 100644 --- a/pkgs/development/python-modules/testbook/default.nix +++ b/pkgs/development/python-modules/testbook/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "testbook" ]; - meta = with lib; { + meta = { description = "Unit testing framework extension for testing code in Jupyter Notebooks"; homepage = "https://testbook.readthedocs.io/"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ djacu ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ djacu ]; }; } diff --git a/pkgs/development/python-modules/testfixtures/default.nix b/pkgs/development/python-modules/testfixtures/default.nix index 547ad584741a..54347ee06d36 100644 --- a/pkgs/development/python-modules/testfixtures/default.nix +++ b/pkgs/development/python-modules/testfixtures/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "testfixtures" ]; - meta = with lib; { + meta = { description = "Collection of helpers and mock objects for unit tests and doc tests"; homepage = "https://github.com/Simplistix/testfixtures"; changelog = "https://github.com/simplistix/testfixtures/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/testing-common-database/default.nix b/pkgs/development/python-modules/testing-common-database/default.nix index 54ad6cbca2fb..8c7682aa333f 100644 --- a/pkgs/development/python-modules/testing-common-database/default.nix +++ b/pkgs/development/python-modules/testing-common-database/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # There are no unit tests doCheck = false; - meta = with lib; { + meta = { description = "Utilities for testing.* packages"; homepage = "https://github.com/tk0miya/testing.common.database"; - license = licenses.asl20; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/testpath/default.nix b/pkgs/development/python-modules/testpath/default.nix index 913226ddc78b..1299343270e3 100644 --- a/pkgs/development/python-modules/testpath/default.nix +++ b/pkgs/development/python-modules/testpath/default.nix @@ -32,9 +32,9 @@ buildPythonPackage rec { export TMPDIR="/tmp" ''; - meta = with lib; { + meta = { description = "Test utilities for code working with files and commands"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jupyter/testpath"; }; } diff --git a/pkgs/development/python-modules/testrepository/default.nix b/pkgs/development/python-modules/testrepository/default.nix index ec6a5d662425..d30375552f04 100644 --- a/pkgs/development/python-modules/testrepository/default.nix +++ b/pkgs/development/python-modules/testrepository/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { ${python.interpreter} ./testr ''; - meta = with lib; { + meta = { description = "Database of test results which can be used as part of developer workflow"; mainProgram = "testr"; homepage = "https://pypi.python.org/pypi/testrepository"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/testscenarios/default.nix b/pkgs/development/python-modules/testscenarios/default.nix index f46f4e2f2c1a..81c48bafe257 100644 --- a/pkgs/development/python-modules/testscenarios/default.nix +++ b/pkgs/development/python-modules/testscenarios/default.nix @@ -48,9 +48,9 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Pyunit extension for dependency injection"; homepage = "https://github.com/testing-cabal/testscenarios"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/texsoup/default.nix b/pkgs/development/python-modules/texsoup/default.nix index d1827c08d38f..d85deebf7479 100644 --- a/pkgs/development/python-modules/texsoup/default.nix +++ b/pkgs/development/python-modules/texsoup/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = with lib; { + meta = { description = "Fault-tolerant Python3 package for searching, navigating, and modifying LaTeX documents"; homepage = "https://github.com/alvinwan/TexSoup"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/text-unidecode/default.nix b/pkgs/development/python-modules/text-unidecode/default.nix index dd72689635ee..cb8cd5bb8f3d 100644 --- a/pkgs/development/python-modules/text-unidecode/default.nix +++ b/pkgs/development/python-modules/text-unidecode/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { py.test ''; - meta = with lib; { + meta = { description = "Most basic Text::Unidecode port"; homepage = "https://github.com/kmike/text-unidecode"; - license = licenses.artistic1; + license = lib.licenses.artistic1; }; } diff --git a/pkgs/development/python-modules/textacy/default.nix b/pkgs/development/python-modules/textacy/default.nix index d65a9c120e9f..c3e7c96b3103 100644 --- a/pkgs/development/python-modules/textacy/default.nix +++ b/pkgs/development/python-modules/textacy/default.nix @@ -63,9 +63,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "textacy" ]; - meta = with lib; { + meta = { description = "Higher-level text processing, built on spaCy"; homepage = "https://textacy.readthedocs.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/textblob/default.nix b/pkgs/development/python-modules/textblob/default.nix index 239f27d4fe75..985fc322a9db 100644 --- a/pkgs/development/python-modules/textblob/default.nix +++ b/pkgs/development/python-modules/textblob/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "textblob" ]; - meta = with lib; { + meta = { changelog = "https://github.com/sloria/TextBlob/releases/tag/${version}"; description = "Simplified Text processing"; homepage = "https://textblob.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ idlip ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ idlip ]; }; } diff --git a/pkgs/development/python-modules/textdistance/default.nix b/pkgs/development/python-modules/textdistance/default.nix index b331d1fdd2f7..e37fad37a2ed 100644 --- a/pkgs/development/python-modules/textdistance/default.nix +++ b/pkgs/development/python-modules/textdistance/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "textdistance" ]; - meta = with lib; { + meta = { description = "Python library for comparing distance between two or more sequences"; homepage = "https://github.com/life4/textdistance"; changelog = "https://github.com/life4/textdistance/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/textfsm/default.nix b/pkgs/development/python-modules/textfsm/default.nix index 26b8053d859d..13347eb047dd 100644 --- a/pkgs/development/python-modules/textfsm/default.nix +++ b/pkgs/development/python-modules/textfsm/default.nix @@ -22,12 +22,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/google/textfsm/releases/tag/${src.tag}"; description = "Python module for parsing semi-structured text into python tables"; mainProgram = "textfsm"; homepage = "https://github.com/google/textfsm"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/textile/default.nix b/pkgs/development/python-modules/textile/default.nix index c05a399e83cc..379ccd7c2d66 100644 --- a/pkgs/development/python-modules/textile/default.nix +++ b/pkgs/development/python-modules/textile/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "textile" ]; - meta = with lib; { + meta = { description = "MOdule for generating web text"; homepage = "https://github.com/textile/python-textile"; changelog = "https://github.com/textile/python-textile/blob/${version}/CHANGELOG.textile"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pytextile"; }; } diff --git a/pkgs/development/python-modules/textparser/default.nix b/pkgs/development/python-modules/textparser/default.nix index f0f2e0b16a3d..0005a0b7e921 100644 --- a/pkgs/development/python-modules/textparser/default.nix +++ b/pkgs/development/python-modules/textparser/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "textparser" ]; - meta = with lib; { + meta = { homepage = "https://github.com/eerimoq/textparser"; description = "Text parser"; - license = licenses.mit; - maintainers = with maintainers; [ gray-heron ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gray-heron ]; }; } diff --git a/pkgs/development/python-modules/texttable/default.nix b/pkgs/development/python-modules/texttable/default.nix index ccf7f474336c..39ae5076996a 100644 --- a/pkgs/development/python-modules/texttable/default.nix +++ b/pkgs/development/python-modules/texttable/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests.py" ]; - meta = with lib; { + meta = { description = "Module to generate a formatted text table, using ASCII characters"; homepage = "https://github.com/foutaise/texttable"; changelog = "https://github.com/foutaise/texttable/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/textual-slider/default.nix b/pkgs/development/python-modules/textual-slider/default.nix index 86f071f3191f..f5c09b0f730a 100644 --- a/pkgs/development/python-modules/textual-slider/default.nix +++ b/pkgs/development/python-modules/textual-slider/default.nix @@ -23,10 +23,10 @@ buildPythonPackage { dependencies = [ textual ]; - meta = with lib; { + meta = { description = "Textual widget for a simple slider"; homepage = "https://github.com/TomJGooding/textual-slider"; - license = licenses.gpl3Only; - maintainers = [ maintainers.lukegb ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.lukegb ]; }; } diff --git a/pkgs/development/python-modules/textual-universal-directorytree/default.nix b/pkgs/development/python-modules/textual-universal-directorytree/default.nix index bf2fa499974a..5c43b846daa5 100644 --- a/pkgs/development/python-modules/textual-universal-directorytree/default.nix +++ b/pkgs/development/python-modules/textual-universal-directorytree/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "textual_universal_directorytree" ]; - meta = with lib; { + meta = { description = "Textual plugin for a DirectoryTree compatible with remote filesystems"; homepage = "https://github.com/juftin/textual-universal-directorytree"; changelog = "https://github.com/juftin/textual-universal-directorytree/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/textwrap3/default.nix b/pkgs/development/python-modules/textwrap3/default.nix index 1cf7dcb376ea..d03aa915059d 100644 --- a/pkgs/development/python-modules/textwrap3/default.nix +++ b/pkgs/development/python-modules/textwrap3/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Textwrap from Python 3.6 backport plus a few tweaks"; homepage = "https://github.com/jonathaneunice/textwrap3"; - license = licenses.psfl; + license = lib.licenses.psfl; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/textx/default.nix b/pkgs/development/python-modules/textx/default.nix index 559327b2f579..9acf41408e6f 100644 --- a/pkgs/development/python-modules/textx/default.nix +++ b/pkgs/development/python-modules/textx/default.nix @@ -57,12 +57,12 @@ let }; }; - meta = with lib; { + meta = { changelog = "https://github.com/textX/textX/blob/${src.tag}/CHANGELOG.md"; description = "Domain-specific languages and parsers in Python"; mainProgram = "textx"; homepage = "https://github.com/textx/textx/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/tflearn/default.nix b/pkgs/development/python-modules/tflearn/default.nix index 3bd15b7fba5e..36e2953e0a84 100644 --- a/pkgs/development/python-modules/tflearn/default.nix +++ b/pkgs/development/python-modules/tflearn/default.nix @@ -30,9 +30,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Deep learning library featuring a higher-level API for TensorFlow"; homepage = "https://github.com/tflearn/tflearn"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/tgcrypto/default.nix b/pkgs/development/python-modules/tgcrypto/default.nix index 7e64bdf01990..b11c09135942 100644 --- a/pkgs/development/python-modules/tgcrypto/default.nix +++ b/pkgs/development/python-modules/tgcrypto/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tgcrypto" ]; - meta = with lib; { + meta = { description = "Fast and Portable Telegram Crypto Library for Python"; homepage = "https://github.com/pyrogram/tgcrypto"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/thefuzz/default.nix b/pkgs/development/python-modules/thefuzz/default.nix index 2f4613da9e00..1597bc6eea69 100644 --- a/pkgs/development/python-modules/thefuzz/default.nix +++ b/pkgs/development/python-modules/thefuzz/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_pep8_conformance" ]; - meta = with lib; { + meta = { description = "Fuzzy string matching for Python"; homepage = "https://github.com/seatgeek/thefuzz"; changelog = "https://github.com/seatgeek/thefuzz/blob/${version}/CHANGES.rst"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ sumnerevans ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sumnerevans ]; }; } diff --git a/pkgs/development/python-modules/thelogrus/default.nix b/pkgs/development/python-modules/thelogrus/default.nix index bed2a590a153..1dc827c22b0e 100644 --- a/pkgs/development/python-modules/thelogrus/default.nix +++ b/pkgs/development/python-modules/thelogrus/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "thelogrus" ]; - meta = with lib; { + meta = { description = "Python 3 version of logrus"; mainProgram = "human-time"; homepage = "https://github.com/unixorn/thelogrus"; changelog = "https://github.com/unixorn/thelogrus/blob/${version}/ChangeLog.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/thermobeacon-ble/default.nix b/pkgs/development/python-modules/thermobeacon-ble/default.nix index 55261be555ca..e2589f55093f 100644 --- a/pkgs/development/python-modules/thermobeacon-ble/default.nix +++ b/pkgs/development/python-modules/thermobeacon-ble/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "thermobeacon_ble" ]; - meta = with lib; { + meta = { description = "Library for Thermobeacon BLE devices"; homepage = "https://github.com/bluetooth-devices/thermobeacon-ble"; changelog = "https://github.com/Bluetooth-Devices/thermobeacon-ble/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/thermopro-ble/default.nix b/pkgs/development/python-modules/thermopro-ble/default.nix index 46e415f1ca45..fa04fda62f5c 100644 --- a/pkgs/development/python-modules/thermopro-ble/default.nix +++ b/pkgs/development/python-modules/thermopro-ble/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "thermopro_ble" ]; - meta = with lib; { + meta = { description = "Library for Thermopro BLE devices"; homepage = "https://github.com/bluetooth-devices/thermopro-ble"; changelog = "https://github.com/Bluetooth-Devices/thermopro-ble/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/thorlabspm100/default.nix b/pkgs/development/python-modules/thorlabspm100/default.nix index c88dab853f57..84c6b88e259d 100644 --- a/pkgs/development/python-modules/thorlabspm100/default.nix +++ b/pkgs/development/python-modules/thorlabspm100/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ThorlabsPM100" ]; - meta = with lib; { + meta = { description = "Interface to the PM100A/D power meter from Thorlabs"; homepage = "https://github.com/clade/ThorlabsPM100/"; - license = licenses.bsd3; - maintainers = with maintainers; [ fsagbuya ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fsagbuya ]; }; } diff --git a/pkgs/development/python-modules/threadloop/default.nix b/pkgs/development/python-modules/threadloop/default.nix index bdc80d921c04..d196d3274fe2 100644 --- a/pkgs/development/python-modules/threadloop/default.nix +++ b/pkgs/development/python-modules/threadloop/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "threadloop" ]; - meta = with lib; { + meta = { description = "Library to run tornado coroutines from synchronous Python"; homepage = "https://github.com/GoodPete/threadloop"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/threadpool/default.nix b/pkgs/development/python-modules/threadpool/default.nix index d3e0499b0354..e14ee1d3ba3b 100644 --- a/pkgs/development/python-modules/threadpool/default.nix +++ b/pkgs/development/python-modules/threadpool/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c"; }; - meta = with lib; { + meta = { homepage = "https://chrisarndt.de/projects/threadpool/"; description = "Easy to use object-oriented thread pool framework"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/threadpoolctl/default.nix b/pkgs/development/python-modules/threadpoolctl/default.nix index 11724165b2b2..922391c89951 100644 --- a/pkgs/development/python-modules/threadpoolctl/default.nix +++ b/pkgs/development/python-modules/threadpoolctl/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "threadpoolctl" ]; - meta = with lib; { + meta = { homepage = "https://github.com/joblib/threadpoolctl"; description = "Helpers to limit number of threads used in native libraries"; - license = licenses.bsd3; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/threat9-test-bed/default.nix b/pkgs/development/python-modules/threat9-test-bed/default.nix index 2e18963fa7dd..62f2f3fa3fe5 100644 --- a/pkgs/development/python-modules/threat9-test-bed/default.nix +++ b/pkgs/development/python-modules/threat9-test-bed/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "test_http_service_mock_random_port" ]; - meta = with lib; { + meta = { description = "Module for adding unittests.mock as view functions"; homepage = "https://github.com/threat9/threat9-test-bed"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "test-bed"; }; } diff --git a/pkgs/development/python-modules/three-merge/default.nix b/pkgs/development/python-modules/three-merge/default.nix index 62d2892a48a4..c4df05cf3d58 100644 --- a/pkgs/development/python-modules/three-merge/default.nix +++ b/pkgs/development/python-modules/three-merge/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "three_merge" ]; - meta = with lib; { + meta = { description = "Simple library for merging two strings with respect to a base one"; homepage = "https://github.com/spyder-ide/three-merge"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/thrift/default.nix b/pkgs/development/python-modules/thrift/default.nix index 214aaea6ced1..1b0a246a0fdf 100644 --- a/pkgs/development/python-modules/thrift/default.nix +++ b/pkgs/development/python-modules/thrift/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "thrift" ]; - meta = with lib; { + meta = { description = "Python bindings for the Apache Thrift RPC system"; homepage = "https://thrift.apache.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ hbunke ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hbunke ]; }; } diff --git a/pkgs/development/python-modules/thriftpy2/default.nix b/pkgs/development/python-modules/thriftpy2/default.nix index d3ebd886d6bf..3fdca7167e1e 100644 --- a/pkgs/development/python-modules/thriftpy2/default.nix +++ b/pkgs/development/python-modules/thriftpy2/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "thriftpy2" ]; - meta = with lib; { + meta = { description = "Python module for Apache Thrift"; homepage = "https://github.com/Thriftpy/thriftpy2"; changelog = "https://github.com/Thriftpy/thriftpy2/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/thttp/default.nix b/pkgs/development/python-modules/thttp/default.nix index 9954ef1b8c03..3aea9788497d 100644 --- a/pkgs/development/python-modules/thttp/default.nix +++ b/pkgs/development/python-modules/thttp/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "thttp" ]; - meta = with lib; { + meta = { description = "Lightweight wrapper around urllib"; homepage = "https://github.com/sesh/thttp"; changelog = "https://github.com/sesh/thttp/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tidyexc/default.nix b/pkgs/development/python-modules/tidyexc/default.nix index 71e62e6d8a94..ae28a9f33263 100644 --- a/pkgs/development/python-modules/tidyexc/default.nix +++ b/pkgs/development/python-modules/tidyexc/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tidyexc" ]; - meta = with lib; { + meta = { description = "Raise rich, helpful exceptions"; homepage = "https://github.com/kalekundert/tidyexc"; changelog = "https://github.com/kalekundert/tidyexc/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/tika-client/default.nix b/pkgs/development/python-modules/tika-client/default.nix index b16ace6df913..0cf177137a81 100644 --- a/pkgs/development/python-modules/tika-client/default.nix +++ b/pkgs/development/python-modules/tika-client/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # The tests expect the tika-server to run in a docker container doChecks = false; - meta = with lib; { + meta = { description = "Modern Python REST client for Apache Tika server"; homepage = "https://github.com/stumpylog/tika-client"; changelog = "https://github.com/stumpylog/tika-client/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ e1mo ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ e1mo ]; }; } diff --git a/pkgs/development/python-modules/tika/default.nix b/pkgs/development/python-modules/tika/default.nix index c32ea79f727b..35a55783f119 100644 --- a/pkgs/development/python-modules/tika/default.nix +++ b/pkgs/development/python-modules/tika/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ pname ]; - meta = with lib; { + meta = { description = "Python binding to the Apache Tika™ REST services"; mainProgram = "tika-python"; homepage = "https://github.com/chrismattmann/tika-python"; - license = licenses.asl20; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Flakebi ]; }; } diff --git a/pkgs/development/python-modules/tiktoken/default.nix b/pkgs/development/python-modules/tiktoken/default.nix index dc6270518095..049ba55b32b4 100644 --- a/pkgs/development/python-modules/tiktoken/default.nix +++ b/pkgs/development/python-modules/tiktoken/default.nix @@ -71,10 +71,10 @@ buildPythonPackage { pythonImportsCheck = [ "tiktoken" ]; - meta = with lib; { + meta = { description = "Fast BPE tokeniser for use with OpenAI's models"; homepage = "https://github.com/openai/tiktoken"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/tilt-ble/default.nix b/pkgs/development/python-modules/tilt-ble/default.nix index 116153fc3cbf..41cfbe89fd50 100644 --- a/pkgs/development/python-modules/tilt-ble/default.nix +++ b/pkgs/development/python-modules/tilt-ble/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tilt_ble" ]; - meta = with lib; { + meta = { description = "Library for Tilt BLE devices"; homepage = "https://github.com/Bluetooth-Devices/tilt-ble"; changelog = "https://github.com/Bluetooth-Devices/tilt-ble/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/time-machine/default.nix b/pkgs/development/python-modules/time-machine/default.nix index 0ac251fe8020..505c5927bd26 100644 --- a/pkgs/development/python-modules/time-machine/default.nix +++ b/pkgs/development/python-modules/time-machine/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "time_machine" ]; - meta = with lib; { + meta = { description = "Travel through time in your tests"; homepage = "https://github.com/adamchainz/time-machine"; changelog = "https://github.com/adamchainz/time-machine/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/timeago/default.nix b/pkgs/development/python-modules/timeago/default.nix index b5b8bb6aaec1..88f565d1f1dc 100644 --- a/pkgs/development/python-modules/timeago/default.nix +++ b/pkgs/development/python-modules/timeago/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "timeago" ]; - meta = with lib; { + meta = { description = "Python module to format past datetime output"; homepage = "https://github.com/hustcc/timeago"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/timecop/default.nix b/pkgs/development/python-modules/timecop/default.nix index 67fc8cd042ad..7de34f0eecce 100644 --- a/pkgs/development/python-modules/timecop/default.nix +++ b/pkgs/development/python-modules/timecop/default.nix @@ -30,9 +30,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "timecop" ]; - meta = with lib; { + meta = { description = "Port of the most excellent TimeCop Ruby Gem for Python"; homepage = "https://github.com/bluekelp/pytimecop"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/timelib/default.nix b/pkgs/development/python-modules/timelib/default.nix index 15e7251dd6a0..7f887f245ead 100644 --- a/pkgs/development/python-modules/timelib/default.nix +++ b/pkgs/development/python-modules/timelib/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { nativeBuildInputs = [ cython ]; - meta = with lib; { + meta = { description = "Parse english textual date descriptions"; homepage = "https://github.com/pediapress/timelib/"; - license = licenses.zlib; + license = lib.licenses.zlib; }; } diff --git a/pkgs/development/python-modules/timeout-decorator/default.nix b/pkgs/development/python-modules/timeout-decorator/default.nix index ea7750dfc97e..272001642a89 100644 --- a/pkgs/development/python-modules/timeout-decorator/default.nix +++ b/pkgs/development/python-modules/timeout-decorator/default.nix @@ -13,9 +13,9 @@ buildPythonPackage rec { sha256 = "6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7"; }; - meta = with lib; { + meta = { description = "Timeout decorator"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/pnpnpn/timeout-decorator"; }; } diff --git a/pkgs/development/python-modules/timeslot/default.nix b/pkgs/development/python-modules/timeslot/default.nix index e8e1673b14a0..1ce22ecdecee 100644 --- a/pkgs/development/python-modules/timeslot/default.nix +++ b/pkgs/development/python-modules/timeslot/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { pythonImportsCheck = [ "timeslot" ]; - meta = with lib; { + meta = { description = "Data type for representing time slots with a start and end"; homepage = "https://github.com/ErikBjare/timeslot"; - maintainers = with maintainers; [ huantian ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ huantian ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/timezonefinder/default.nix b/pkgs/development/python-modules/timezonefinder/default.nix index f530fe5d4d68..419d34ce7aa6 100644 --- a/pkgs/development/python-modules/timezonefinder/default.nix +++ b/pkgs/development/python-modules/timezonefinder/default.nix @@ -64,12 +64,12 @@ buildPythonPackage rec { "tests/utils_test.py" ]; - meta = with lib; { + meta = { description = "Module for finding the timezone of any point on earth (coordinates) offline"; homepage = "https://github.com/MrMinimal64/timezonefinder"; changelog = "https://github.com/jannikmi/timezonefinder/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "timezonefinder"; }; } diff --git a/pkgs/development/python-modules/timy/default.nix b/pkgs/development/python-modules/timy/default.nix index 42613697e20d..04737441bd48 100644 --- a/pkgs/development/python-modules/timy/default.nix +++ b/pkgs/development/python-modules/timy/default.nix @@ -21,10 +21,10 @@ buildPythonPackage { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Minimalist measurement of python code time"; homepage = "https://github.com/ramonsaraiva/timy"; - license = licenses.mit; - maintainers = with maintainers; [ flandweber ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flandweber ]; }; } diff --git a/pkgs/development/python-modules/tiny-proxy/default.nix b/pkgs/development/python-modules/tiny-proxy/default.nix index 37632d6528d5..d4eb5a65ac3e 100644 --- a/pkgs/development/python-modules/tiny-proxy/default.nix +++ b/pkgs/development/python-modules/tiny-proxy/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tiny_proxy" ]; - meta = with lib; { + meta = { description = "SOCKS5/SOCKS4/HTTP proxy server"; homepage = "https://github.com/romis2012/tiny-proxy"; changelog = "https://github.com/romis2012/tiny-proxy/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/tinycss/default.nix b/pkgs/development/python-modules/tinycss/default.nix index f525e40d16b9..557593845190 100644 --- a/pkgs/development/python-modules/tinycss/default.nix +++ b/pkgs/development/python-modules/tinycss/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tinycss" ]; - meta = with lib; { + meta = { description = "Complete yet simple CSS parser for Python"; homepage = "https://tinycss.readthedocs.io"; changelog = "https://github.com/Kozea/tinycss/releases/tag/v${version}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tinycss2/default.nix b/pkgs/development/python-modules/tinycss2/default.nix index a972a495f1db..6a7129ad759e 100644 --- a/pkgs/development/python-modules/tinycss2/default.nix +++ b/pkgs/development/python-modules/tinycss2/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Low-level CSS parser for Python"; homepage = "https://github.com/Kozea/tinycss2"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/tinyrecord/default.nix b/pkgs/development/python-modules/tinyrecord/default.nix index 14c994df25b6..8f4ccc1b1bc7 100644 --- a/pkgs/development/python-modules/tinyrecord/default.nix +++ b/pkgs/development/python-modules/tinyrecord/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tinyrecord" ]; - meta = with lib; { + meta = { description = "Transaction support for TinyDB"; homepage = "https://github.com/eugene-eeo/tinyrecord"; changelog = "https://github.com/eugene-eeo/tinyrecord/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/tinysegmenter/default.nix b/pkgs/development/python-modules/tinysegmenter/default.nix index 788332d379e8..e52da624ab0c 100644 --- a/pkgs/development/python-modules/tinysegmenter/default.nix +++ b/pkgs/development/python-modules/tinysegmenter/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tinysegmenter" ]; - meta = with lib; { + meta = { description = "Very compact Japanese tokenizer"; homepage = "https://tinysegmenter.tuxfamily.org"; - license = licenses.bsd3; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/tinytuya/default.nix b/pkgs/development/python-modules/tinytuya/default.nix index 32e7e4b6ede1..96d110adefc5 100644 --- a/pkgs/development/python-modules/tinytuya/default.nix +++ b/pkgs/development/python-modules/tinytuya/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tinytuya" ]; - meta = with lib; { + meta = { description = "Python API for Tuya WiFi smart devices using a direct local area network (LAN) connection or the cloud (TuyaCloud API)"; homepage = "https://github.com/jasonacox/tinytuya"; changelog = "https://github.com/jasonacox/tinytuya/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ pathob ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pathob ]; }; } diff --git a/pkgs/development/python-modules/titlecase/default.nix b/pkgs/development/python-modules/titlecase/default.nix index 4573f1d27679..00d6a7fa6919 100644 --- a/pkgs/development/python-modules/titlecase/default.nix +++ b/pkgs/development/python-modules/titlecase/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "titlecase" ]; - meta = with lib; { + meta = { description = "Python library to capitalize strings as specified by the New York Times"; mainProgram = "titlecase"; homepage = "https://github.com/ppannuto/python-titlecase"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tld/default.nix b/pkgs/development/python-modules/tld/default.nix index c07115722106..4907bdee2bd1 100644 --- a/pkgs/development/python-modules/tld/default.nix +++ b/pkgs/development/python-modules/tld/default.nix @@ -42,18 +42,18 @@ buildPythonPackage rec { pythonImportsCheck = [ "tld" ]; - meta = with lib; { + meta = { description = "Extracts the top level domain (TLD) from the URL given"; mainProgram = "update-tld-names"; homepage = "https://github.com/barseghyanartur/tld"; changelog = "https://github.com/barseghyanartur/tld/blob/${version}/CHANGELOG.rst"; # https://github.com/barseghyanartur/tld/blob/master/README.rst#license # MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus mpl11 gpl2Only ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tldextract/default.nix b/pkgs/development/python-modules/tldextract/default.nix index e5c15e65a35e..f854b8ecb7c5 100644 --- a/pkgs/development/python-modules/tldextract/default.nix +++ b/pkgs/development/python-modules/tldextract/default.nix @@ -50,7 +50,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "tldextract" ]; - meta = with lib; { + meta = { description = "Python module to accurately separate the TLD from the domain of an URL"; longDescription = '' tldextract accurately separates the gTLD or ccTLD (generic or country code top-level domain) @@ -58,8 +58,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/john-kurkowski/tldextract"; changelog = "https://github.com/john-kurkowski/tldextract/blob/${src.tag}/CHANGELOG.md"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "tldextract"; }; } diff --git a/pkgs/development/python-modules/tlds/default.nix b/pkgs/development/python-modules/tlds/default.nix index 51e7cfc95063..5b210387e2f4 100644 --- a/pkgs/development/python-modules/tlds/default.nix +++ b/pkgs/development/python-modules/tlds/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Automatically updated list of valid TLDs taken directly from IANA"; homepage = "https://github.com/kichik/tlds"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/tls-client/default.nix b/pkgs/development/python-modules/tls-client/default.nix index d2a0c522c53c..7c653918b7e1 100644 --- a/pkgs/development/python-modules/tls-client/default.nix +++ b/pkgs/development/python-modules/tls-client/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tls_client" ]; - meta = with lib; { + meta = { description = "Advanced HTTP Library"; homepage = "https://github.com/FlorianREGAZ/Python-Tls-Client"; changelog = "https://github.com/FlorianREGAZ/Python-Tls-Client/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tls-parser/default.nix b/pkgs/development/python-modules/tls-parser/default.nix index 1b1e552e93d1..d5c2fad2736d 100644 --- a/pkgs/development/python-modules/tls-parser/default.nix +++ b/pkgs/development/python-modules/tls-parser/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tls_parser" ]; - meta = with lib; { + meta = { description = "Small library to parse TLS records"; homepage = "https://github.com/nabla-c0d3/tls_parser"; changelog = "https://github.com/nabla-c0d3/tls_parser/releases/tag/${src.tag}"; - platforms = with platforms; linux ++ darwin; - license = licenses.mit; - maintainers = with maintainers; [ veehaitch ]; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/tlsh/default.nix b/pkgs/development/python-modules/tlsh/default.nix index 241669026257..782e91db3178 100644 --- a/pkgs/development/python-modules/tlsh/default.nix +++ b/pkgs/development/python-modules/tlsh/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tlsh" ]; - meta = with lib; { + meta = { description = "Trend Micro Locality Sensitive Hash"; homepage = "https://tlsh.org/"; changelog = "https://github.com/trendmicro/tlsh/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/tlslite-ng/default.nix b/pkgs/development/python-modules/tlslite-ng/default.nix index de05af7f786c..8d12a1896b93 100644 --- a/pkgs/development/python-modules/tlslite-ng/default.nix +++ b/pkgs/development/python-modules/tlslite-ng/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { "tlslite/integration/tlsasyncdispatchermixin.py" ]; - meta = with lib; { + meta = { description = "Implementation of SSL and TLS"; homepage = "https://github.com/tlsfuzzer/tlslite-ng"; changelog = "https://github.com/tlsfuzzer/tlslite-ng/releases/tag/${src.tag}"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tlslite/default.nix b/pkgs/development/python-modules/tlslite/default.nix index 4d59a12bc82e..59ed24bda1a6 100644 --- a/pkgs/development/python-modules/tlslite/default.nix +++ b/pkgs/development/python-modules/tlslite/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d"; }; - meta = with lib; { + meta = { description = "Pure Python implementation of SSL and TLS"; homepage = "https://pypi.python.org/pypi/tlslite"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/tlv8/default.nix b/pkgs/development/python-modules/tlv8/default.nix index 4e3045ddff50..0a42cbed16ff 100644 --- a/pkgs/development/python-modules/tlv8/default.nix +++ b/pkgs/development/python-modules/tlv8/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "tlv8" ]; - meta = with lib; { + meta = { description = "Type-Length-Value8 (TLV8) for Python"; longDescription = '' Python module to handle type-length-value (TLV) encoded data 8-bit type, 8-bit length, and N-byte @@ -30,7 +30,7 @@ buildPythonPackage rec { Release R2. ''; homepage = "https://github.com/jlusiardi/tlv8_python"; - license = licenses.asl20; - maintainers = with maintainers; [ jojosch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/development/python-modules/tmb/default.nix b/pkgs/development/python-modules/tmb/default.nix index b3aba4481e07..fac605e87aff 100644 --- a/pkgs/development/python-modules/tmb/default.nix +++ b/pkgs/development/python-modules/tmb/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Python library that interacts with TMB API"; homepage = "https://github.com/alemuro/tmb"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/todoist-api-python/default.nix b/pkgs/development/python-modules/todoist-api-python/default.nix index dcb621032cad..c832320646c8 100644 --- a/pkgs/development/python-modules/todoist-api-python/default.nix +++ b/pkgs/development/python-modules/todoist-api-python/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "todoist_api_python" ]; - meta = with lib; { + meta = { description = "Library for the Todoist REST API"; homepage = "https://github.com/Doist/todoist-api-python"; changelog = "https://github.com/Doist/todoist-api-python/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/todoist/default.nix b/pkgs/development/python-modules/todoist/default.nix index 9a7eec1354f6..de18f5288e56 100644 --- a/pkgs/development/python-modules/todoist/default.nix +++ b/pkgs/development/python-modules/todoist/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "todoist" ]; - meta = with lib; { + meta = { description = "Official Todoist Python API library"; homepage = "https://todoist-python.readthedocs.io/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/token-bucket/default.nix b/pkgs/development/python-modules/token-bucket/default.nix index 17af9a17cbfe..8dec27c07f92 100644 --- a/pkgs/development/python-modules/token-bucket/default.nix +++ b/pkgs/development/python-modules/token-bucket/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Token Bucket Implementation for Python Web Apps"; homepage = "https://github.com/falconry/token-bucket"; changelog = "https://github.com/falconry/token-bucket/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/tokenize-rt/default.nix b/pkgs/development/python-modules/tokenize-rt/default.nix index 05de0d83426b..65212d177c22 100644 --- a/pkgs/development/python-modules/tokenize-rt/default.nix +++ b/pkgs/development/python-modules/tokenize-rt/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Wrapper around the stdlib `tokenize` which roundtrips"; mainProgram = "tokenize-rt"; homepage = "https://github.com/asottile/tokenize-rt"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/tokenlib/default.nix b/pkgs/development/python-modules/tokenlib/default.nix index 59a19b81a3f9..44ea387e6a38 100644 --- a/pkgs/development/python-modules/tokenlib/default.nix +++ b/pkgs/development/python-modules/tokenlib/default.nix @@ -38,9 +38,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "tokenlib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mozilla-services/tokenlib"; description = "Generic support library for signed-token-based auth schemes"; - license = licenses.mpl20; + license = lib.licenses.mpl20; }; } diff --git a/pkgs/development/python-modules/tokentrim/default.nix b/pkgs/development/python-modules/tokentrim/default.nix index f4c7a5017cce..86945bf4d895 100644 --- a/pkgs/development/python-modules/tokentrim/default.nix +++ b/pkgs/development/python-modules/tokentrim/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # tests connect to openai doCheck = false; - meta = with lib; { + meta = { description = "Easily trim 'messages' arrays for use with GPTs"; homepage = "https://github.com/KillianLucas/tokentrim"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/tololib/default.nix b/pkgs/development/python-modules/tololib/default.nix index 12800e4ad355..1517bb2c57b4 100644 --- a/pkgs/development/python-modules/tololib/default.nix +++ b/pkgs/development/python-modules/tololib/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { # Network discovery doesn't work in the sandbox for darwin doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Python Library for Controlling TOLO Sauna/Steam Bath Devices"; homepage = "https://gitlab.com/MatthiasLohr/tololib"; changelog = "https://gitlab.com/MatthiasLohr/tololib/-/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "tolo-cli"; }; } diff --git a/pkgs/development/python-modules/toml-adapt/default.nix b/pkgs/development/python-modules/toml-adapt/default.nix index 8743d876283a..e5a93c3d8b75 100644 --- a/pkgs/development/python-modules/toml-adapt/default.nix +++ b/pkgs/development/python-modules/toml-adapt/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "toml_adapt" ]; - meta = with lib; { + meta = { description = "Simple Command-line interface for manipulating toml files"; homepage = "https://github.com/firefly-cpp/toml-adapt"; changelog = "https://github.com/firefly-cpp/toml-adapt/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ firefly-cpp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ firefly-cpp ]; mainProgram = "toml-adapt"; }; } diff --git a/pkgs/development/python-modules/toml/default.nix b/pkgs/development/python-modules/toml/default.nix index 883bfeaeed6d..3c1483d936f4 100644 --- a/pkgs/development/python-modules/toml/default.nix +++ b/pkgs/development/python-modules/toml/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # git to download a test suite. doCheck = false; - meta = with lib; { + meta = { description = "Python library for parsing and creating TOML"; homepage = "https://github.com/uiri/toml"; - license = licenses.mit; - maintainers = with maintainers; [ twey ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/tomli-w/default.nix b/pkgs/development/python-modules/tomli-w/default.nix index 328a471477c2..48881049a4d4 100644 --- a/pkgs/development/python-modules/tomli-w/default.nix +++ b/pkgs/development/python-modules/tomli-w/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tomli_w" ]; - meta = with lib; { + meta = { description = "Write-only counterpart to Tomli, which is a read-only TOML parser"; homepage = "https://github.com/hukkin/tomli-w"; changelog = "https://github.com/hukkin/tomli-w/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/tomli/default.nix b/pkgs/development/python-modules/tomli/default.nix index 8d5498a5fffe..80cc15be0835 100644 --- a/pkgs/development/python-modules/tomli/default.nix +++ b/pkgs/development/python-modules/tomli/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { description = "Python library for parsing TOML, fully compatible with TOML v1.0.0"; homepage = "https://github.com/hukkin/tomli"; - license = licenses.mit; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/tomlkit/default.nix b/pkgs/development/python-modules/tomlkit/default.nix index ff676255fc59..a352884b2a0c 100644 --- a/pkgs/development/python-modules/tomlkit/default.nix +++ b/pkgs/development/python-modules/tomlkit/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tomlkit" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sdispater/tomlkit"; changelog = "https://github.com/sdispater/tomlkit/blob/${version}/CHANGELOG.md"; description = "Style-preserving TOML library for Python"; - license = licenses.mit; - maintainers = with maintainers; [ jakewaksbaum ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jakewaksbaum ]; }; } diff --git a/pkgs/development/python-modules/toolz/default.nix b/pkgs/development/python-modules/toolz/default.nix index 6312d9a4f958..050c44c6fe8f 100644 --- a/pkgs/development/python-modules/toolz/default.nix +++ b/pkgs/development/python-modules/toolz/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { "test_inspect_wrapped_property" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pytoolz/toolz"; changelog = "https://github.com/pytoolz/toolz/releases/tag/${version}"; description = "List processing tools and functional utilities"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/toonapi/default.nix b/pkgs/development/python-modules/toonapi/default.nix index 3d33b1c6ea25..e6fb3e6624c9 100644 --- a/pkgs/development/python-modules/toonapi/default.nix +++ b/pkgs/development/python-modules/toonapi/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "toonapi" ]; - meta = with lib; { + meta = { description = "Python client for the Quby ToonAPI"; homepage = "https://github.com/frenck/python-toonapi"; changelog = "https://github.com/frenck/python-toonapi/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/toposort/default.nix b/pkgs/development/python-modules/toposort/default.nix index 12644de66f1e..b994894d42ab 100644 --- a/pkgs/development/python-modules/toposort/default.nix +++ b/pkgs/development/python-modules/toposort/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "toposort" ]; - meta = with lib; { + meta = { description = "Topological sort algorithm"; homepage = "https://pypi.python.org/pypi/toposort/"; maintainers = [ ]; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/torch-pitch-shift/default.nix b/pkgs/development/python-modules/torch-pitch-shift/default.nix index 409e24a1f1a4..911c1559fc9f 100644 --- a/pkgs/development/python-modules/torch-pitch-shift/default.nix +++ b/pkgs/development/python-modules/torch-pitch-shift/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "torch_pitch_shift" ]; - meta = with lib; { + meta = { description = "Pitch-shift audio clips quickly with PyTorch (CUDA supported)! Additional utilities for searching efficient transformations are included"; homepage = "https://github.com/KentoNishi/torch-pitch-shift"; changelog = "https://github.com/KentoNishi/torch-pitch-shift/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/torchdiffeq/default.nix b/pkgs/development/python-modules/torchdiffeq/default.nix index 34eb33ad2fa5..16970f4f0a6c 100644 --- a/pkgs/development/python-modules/torchdiffeq/default.nix +++ b/pkgs/development/python-modules/torchdiffeq/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Differentiable ODE solvers with full GPU support and O(1)-memory backpropagation"; homepage = "https://github.com/rtqichen/torchdiffeq"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/torchinfo/default.nix b/pkgs/development/python-modules/torchinfo/default.nix index f86da623e86c..ad5fb1cdfa1d 100644 --- a/pkgs/development/python-modules/torchinfo/default.nix +++ b/pkgs/development/python-modules/torchinfo/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "torchinfo" ]; - meta = with lib; { + meta = { description = "API to visualize pytorch models"; homepage = "https://github.com/TylerYep/torchinfo"; - license = licenses.mit; - maintainers = with maintainers; [ petterstorvik ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ petterstorvik ]; }; } diff --git a/pkgs/development/python-modules/torchlibrosa/default.nix b/pkgs/development/python-modules/torchlibrosa/default.nix index 8587f6382b23..3c20af7eeeec 100644 --- a/pkgs/development/python-modules/torchlibrosa/default.nix +++ b/pkgs/development/python-modules/torchlibrosa/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "torchlibrosa" ]; - meta = with lib; { + meta = { description = "PyTorch implemention of part of librosa functions"; homepage = "https://github.com/qiuqiangkong/torchlibrosa"; - license = licenses.mit; - maintainers = with maintainers; [ azuwis ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azuwis ]; }; } diff --git a/pkgs/development/python-modules/torchsde/default.nix b/pkgs/development/python-modules/torchsde/default.nix index b80bc7f871d0..42c6177c38bf 100644 --- a/pkgs/development/python-modules/torchsde/default.nix +++ b/pkgs/development/python-modules/torchsde/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { "test_adjoint" ]; - meta = with lib; { + meta = { changelog = "https://github.com/google-research/torchsde/releases/tag/v${version}"; description = "Differentiable SDE solvers with GPU support and efficient sensitivity analysis"; homepage = "https://github.com/google-research/torchsde"; - license = licenses.asl20; - teams = [ teams.tts ]; + license = lib.licenses.asl20; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/tornado/default.nix b/pkgs/development/python-modules/tornado/default.nix index 0d0787591b4c..a3db28de640c 100644 --- a/pkgs/development/python-modules/tornado/default.nix +++ b/pkgs/development/python-modules/tornado/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { description = "Web framework and asynchronous networking library"; homepage = "https://www.tornadoweb.org/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/torpy/default.nix b/pkgs/development/python-modules/torpy/default.nix index d6f257dfa9ad..31b702fc1616 100644 --- a/pkgs/development/python-modules/torpy/default.nix +++ b/pkgs/development/python-modules/torpy/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cryptography" ]; - meta = with lib; { + meta = { description = "Pure python Tor client"; homepage = "https://github.com/torpyorg/torpy"; - license = licenses.asl20; - maintainers = with maintainers; [ larsr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ larsr ]; }; } diff --git a/pkgs/development/python-modules/torrequest/default.nix b/pkgs/development/python-modules/torrequest/default.nix index 18fc52c24aa6..adfaa1b59016 100644 --- a/pkgs/development/python-modules/torrequest/default.nix +++ b/pkgs/development/python-modules/torrequest/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "torrequest" ]; - meta = with lib; { + meta = { homepage = "https://github.com/erdiaker/torrequest"; description = "Simple Python interface for HTTP(s) requests over Tor"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ applePrincess ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ applePrincess ]; }; } diff --git a/pkgs/development/python-modules/total-connect-client/default.nix b/pkgs/development/python-modules/total-connect-client/default.nix index 5f61748dc1fc..20f8b3c9d449 100644 --- a/pkgs/development/python-modules/total-connect-client/default.nix +++ b/pkgs/development/python-modules/total-connect-client/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "total_connect_client" ]; - meta = with lib; { + meta = { description = "Interact with Total Connect 2 alarm systems"; homepage = "https://github.com/craigjmidwinter/total-connect-client"; changelog = "https://github.com/craigjmidwinter/total-connect-client/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/towncrier/default.nix b/pkgs/development/python-modules/towncrier/default.nix index ca51b35a3d78..830390c10519 100644 --- a/pkgs/development/python-modules/towncrier/default.nix +++ b/pkgs/development/python-modules/towncrier/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "towncrier" ]; - meta = with lib; { + meta = { description = "Utility to produce useful, summarised news files"; homepage = "https://github.com/twisted/towncrier/"; changelog = "https://github.com/twisted/towncrier/blob/${version}/NEWS.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "towncrier"; }; diff --git a/pkgs/development/python-modules/tox/default.nix b/pkgs/development/python-modules/tox/default.nix index 93be8bfdb688..702a53d16b25 100644 --- a/pkgs/development/python-modules/tox/default.nix +++ b/pkgs/development/python-modules/tox/default.nix @@ -66,12 +66,12 @@ buildPythonPackage rec { version = testers.testVersion { package = tox; }; }; - meta = with lib; { + meta = { changelog = "https://github.com/tox-dev/tox/releases/tag/${src.tag}"; description = "Generic virtualenv management and test command line tool"; mainProgram = "tox"; homepage = "https://github.com/tox-dev/tox"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tplink-omada-client/default.nix b/pkgs/development/python-modules/tplink-omada-client/default.nix index 35d35abef9e5..e02e05fb645f 100644 --- a/pkgs/development/python-modules/tplink-omada-client/default.nix +++ b/pkgs/development/python-modules/tplink-omada-client/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tplink_omada_client" ]; - meta = with lib; { + meta = { description = "Library for the TP-Link Omada SDN Controller API"; homepage = "https://github.com/MarkGodwin/tplink-omada-api"; changelog = "https://github.com/MarkGodwin/tplink-omada-api/releases/tag/release%2Fv${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "omada"; }; } diff --git a/pkgs/development/python-modules/tpm2-pytss/default.nix b/pkgs/development/python-modules/tpm2-pytss/default.nix index 3f62db31b9db..d04f2c2b46ea 100644 --- a/pkgs/development/python-modules/tpm2-pytss/default.nix +++ b/pkgs/development/python-modules/tpm2-pytss/default.nix @@ -102,12 +102,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tpm2_pytss" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tpm2-software/tpm2-pytss"; changelog = "https://github.com/tpm2-software/tpm2-pytss/blob/${version}/CHANGELOG.md"; description = "TPM2 TSS Python bindings for Enhanced System API (ESYS)"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ baloo scottstephens ]; diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix index 3ebf8baac17c..ed65cac9def7 100644 --- a/pkgs/development/python-modules/tqdm/default.nix +++ b/pkgs/development/python-modules/tqdm/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tqdm" ]; - meta = with lib; { + meta = { description = "Fast, Extensible Progress Meter"; mainProgram = "tqdm"; homepage = "https://github.com/tqdm/tqdm"; changelog = "https://tqdm.github.io/releases/"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/traceback2/default.nix b/pkgs/development/python-modules/traceback2/default.nix index a0b3eef17ab5..b3749f3035d4 100644 --- a/pkgs/development/python-modules/traceback2/default.nix +++ b/pkgs/development/python-modules/traceback2/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { # circular dependencies for tests doCheck = false; - meta = with lib; { + meta = { description = "Backport of traceback to older supported Pythons"; homepage = "https://pypi.python.org/pypi/traceback2/"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python-modules/tracerite/default.nix b/pkgs/development/python-modules/tracerite/default.nix index 38054a3ebdb5..f65d11f64a4b 100644 --- a/pkgs/development/python-modules/tracerite/default.nix +++ b/pkgs/development/python-modules/tracerite/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tracerite" ]; - meta = with lib; { + meta = { description = "Tracebacks for Humans in Jupyter notebooks"; homepage = "https://github.com/sanic-org/tracerite"; changelog = "https://github.com/sanic-org/tracerite/releases/tag/${src.tag}"; - license = licenses.unlicense; - maintainers = with maintainers; [ p0lyw0lf ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ p0lyw0lf ]; }; } diff --git a/pkgs/development/python-modules/tracing/default.nix b/pkgs/development/python-modules/tracing/default.nix index 1740e6d7bad3..5628f0cfd5a6 100644 --- a/pkgs/development/python-modules/tracing/default.nix +++ b/pkgs/development/python-modules/tracing/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # error: invalid command 'test' doCheck = false; - meta = with lib; { + meta = { homepage = "https://liw.fi/tracing/"; description = "Python debug logging helper"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/trackpy/default.nix b/pkgs/development/python-modules/trackpy/default.nix index 2f7b012cf10b..01d781c13877 100644 --- a/pkgs/development/python-modules/trackpy/default.nix +++ b/pkgs/development/python-modules/trackpy/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "trackpy" ]; - meta = with lib; { + meta = { description = "Particle-tracking toolkit"; homepage = "https://github.com/soft-matter/trackpy"; changelog = "https://github.com/soft-matter/trackpy/releases/tag/${src.tag}"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); }; diff --git a/pkgs/development/python-modules/trailrunner/default.nix b/pkgs/development/python-modules/trailrunner/default.nix index a52ae2ccbcf2..6877598093ed 100644 --- a/pkgs/development/python-modules/trailrunner/default.nix +++ b/pkgs/development/python-modules/trailrunner/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "trailrunner" ]; - meta = with lib; { + meta = { description = "Module to walk paths and run things"; homepage = "https://github.com/omnilib/trailrunner"; changelog = "https://github.com/omnilib/trailrunner/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/trainer/default.nix b/pkgs/development/python-modules/trainer/default.nix index e90b5eee3a62..ded533a94c94 100644 --- a/pkgs/development/python-modules/trainer/default.nix +++ b/pkgs/development/python-modules/trainer/default.nix @@ -55,11 +55,11 @@ buildPythonPackage { pythonImportsCheck = [ "trainer" ]; - meta = with lib; { + meta = { description = "General purpose model trainer, as flexible as it gets"; homepage = "https://github.com/idiap/coqui-ai-Trainer"; changelog = "https://github.com/idiap/coqui-ai-Trainer/releases/tag/v${version}"; - license = licenses.asl20; - teams = [ teams.tts ]; + license = lib.licenses.asl20; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/traitsui/default.nix b/pkgs/development/python-modules/traitsui/default.nix index 7c2b1808e229..dce2dc46006e 100644 --- a/pkgs/development/python-modules/traitsui/default.nix +++ b/pkgs/development/python-modules/traitsui/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "traitsui" ]; - meta = with lib; { + meta = { description = "Traits-capable windowing framework"; homepage = "https://github.com/enthought/traitsui"; changelog = "https://github.com/enthought/traitsui/releases/tag/${version}"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/trampoline/default.nix b/pkgs/development/python-modules/trampoline/default.nix index 802a2da01f28..d6fa1a138eb9 100644 --- a/pkgs/development/python-modules/trampoline/default.nix +++ b/pkgs/development/python-modules/trampoline/default.nix @@ -22,10 +22,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Simple and tiny yield-based trampoline implementation for python"; homepage = "https://gitlab.com/ferreum/trampoline"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/transforms3d/default.nix b/pkgs/development/python-modules/transforms3d/default.nix index 40bd7b7444a4..9057901a20a2 100644 --- a/pkgs/development/python-modules/transforms3d/default.nix +++ b/pkgs/development/python-modules/transforms3d/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "transforms3d" ]; - meta = with lib; { + meta = { homepage = "https://matthew-brett.github.io/transforms3d"; description = "Convert between various geometric transformations"; changelog = "https://github.com/matthew-brett/transforms3d/blob/main/Changelog"; - license = licenses.bsd2; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/transitions/default.nix b/pkgs/development/python-modules/transitions/default.nix index 40afe7e6e5da..1c44cd1ffe12 100644 --- a/pkgs/development/python-modules/transitions/default.nix +++ b/pkgs/development/python-modules/transitions/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "transitions" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pytransitions/transitions"; description = "Lightweight, object-oriented finite state machine implementation in Python"; changelog = "https://github.com/pytransitions/transitions/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/translatehtml/default.nix b/pkgs/development/python-modules/translatehtml/default.nix index da93e4d8484b..3ae69fd354e1 100644 --- a/pkgs/development/python-modules/translatehtml/default.nix +++ b/pkgs/development/python-modules/translatehtml/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Translate HTML using Beautiful Soup and Argos Translate"; homepage = "https://www.argosopentech.com"; - license = licenses.mit; - maintainers = with maintainers; [ misuzu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/development/python-modules/translatepy/default.nix b/pkgs/development/python-modules/translatepy/default.nix index b4857a4893b9..3a37f8f64c84 100644 --- a/pkgs/development/python-modules/translatepy/default.nix +++ b/pkgs/development/python-modules/translatepy/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "translatepy" ]; - meta = with lib; { + meta = { description = "Module grouping multiple translation APIs"; mainProgram = "translatepy"; homepage = "https://github.com/Animenosekai/translate"; - license = with licenses; [ agpl3Only ]; - maintainers = with maintainers; [ emilytrau ]; + license = with lib.licenses; [ agpl3Only ]; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/development/python-modules/translation-finder/default.nix b/pkgs/development/python-modules/translation-finder/default.nix index a6fdc316a4e6..ef5218a8351e 100644 --- a/pkgs/development/python-modules/translation-finder/default.nix +++ b/pkgs/development/python-modules/translation-finder/default.nix @@ -34,13 +34,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "translation_finder" ]; - meta = with lib; { + meta = { description = "Translation file finder for Weblate"; homepage = "https://github.com/WeblateOrg/translation-finder"; changelog = "https://github.com/WeblateOrg/translation-finder/blob/${src.tag}/CHANGES.rst"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "weblate-discover"; - maintainers = with maintainers; [ erictapen ]; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/translationstring/default.nix b/pkgs/development/python-modules/translationstring/default.nix index a6d0742b4eed..f4f90cce84e6 100644 --- a/pkgs/development/python-modules/translationstring/default.nix +++ b/pkgs/development/python-modules/translationstring/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "bf947538d76e69ba12ab17283b10355a9ecfbc078e6123443f43f2107f6376f3"; }; - meta = with lib; { + meta = { homepage = "https://pylonsproject.org/"; description = "Utility library for i18n relied on by various Repoze and Pyramid packages"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/translitcodec/default.nix b/pkgs/development/python-modules/translitcodec/default.nix index f4e046c49838..2751098ba86d 100644 --- a/pkgs/development/python-modules/translitcodec/default.nix +++ b/pkgs/development/python-modules/translitcodec/default.nix @@ -28,10 +28,10 @@ buildPythonPackage { pythonImportsCheck = [ pname ]; - meta = with lib; { + meta = { description = "Unicode to 8-bit charset transliteration codec"; homepage = "https://github.com/claudep/translitcodec"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ rycee ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ rycee ]; }; } diff --git a/pkgs/development/python-modules/transmission-rpc/default.nix b/pkgs/development/python-modules/transmission-rpc/default.nix index acb36edf7bdd..0776872fa1b5 100644 --- a/pkgs/development/python-modules/transmission-rpc/default.nix +++ b/pkgs/development/python-modules/transmission-rpc/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { "test_real" ]; - meta = with lib; { + meta = { description = "Python module that implements the Transmission bittorent client RPC protocol"; homepage = "https://github.com/Trim21/transmission-rpc"; changelog = "https://github.com/trim21/transmission-rpc/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/tree-sitter-html/default.nix b/pkgs/development/python-modules/tree-sitter-html/default.nix index 12ca1b6c087d..869144f1e6fc 100644 --- a/pkgs/development/python-modules/tree-sitter-html/default.nix +++ b/pkgs/development/python-modules/tree-sitter-html/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "tree_sitter_html" ]; - meta = with lib; { + meta = { description = "HTML grammar for tree-sitter"; homepage = "https://github.com/tree-sitter/tree-sitter-html"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/tree-sitter-javascript/default.nix b/pkgs/development/python-modules/tree-sitter-javascript/default.nix index cb7d9ca3822d..fefa1a0148f2 100644 --- a/pkgs/development/python-modules/tree-sitter-javascript/default.nix +++ b/pkgs/development/python-modules/tree-sitter-javascript/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "tree_sitter_javascript" ]; - meta = with lib; { + meta = { description = "JavaScript and JSX grammar for tree-sitter"; homepage = "https://github.com/tree-sitter/tree-sitter-javascript"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/tree-sitter-json/default.nix b/pkgs/development/python-modules/tree-sitter-json/default.nix index 92124bfd2020..460fde7ee00b 100644 --- a/pkgs/development/python-modules/tree-sitter-json/default.nix +++ b/pkgs/development/python-modules/tree-sitter-json/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "tree_sitter_json" ]; - meta = with lib; { + meta = { description = "JSON grammar for tree-sitter"; homepage = "https://github.com/tree-sitter/tree-sitter-json"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/tree-sitter-languages/default.nix b/pkgs/development/python-modules/tree-sitter-languages/default.nix index 0e6ae4e47530..2c8d1706f555 100644 --- a/pkgs/development/python-modules/tree-sitter-languages/default.nix +++ b/pkgs/development/python-modules/tree-sitter-languages/default.nix @@ -56,8 +56,8 @@ buildPythonPackage rec { meta = with lib; { description = "Binary Python wheels for all tree sitter languages"; homepage = "https://github.com/grantjenks/py-tree-sitter-languages"; - license = licenses.asl20; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ doronbehar ]; # https://github.com/grantjenks/py-tree-sitter-languages/issues/67 broken = versionAtLeast tree-sitter.version "0.22"; }; diff --git a/pkgs/development/python-modules/tree-sitter-python/default.nix b/pkgs/development/python-modules/tree-sitter-python/default.nix index 4529fdaf0628..98657560eaa3 100644 --- a/pkgs/development/python-modules/tree-sitter-python/default.nix +++ b/pkgs/development/python-modules/tree-sitter-python/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "tree_sitter_python" ]; - meta = with lib; { + meta = { description = "Python grammar for tree-sitter"; homepage = "https://github.com/tree-sitter/tree-sitter-python"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/tree-sitter-rust/default.nix b/pkgs/development/python-modules/tree-sitter-rust/default.nix index f720341200b1..129f7ef9cda0 100644 --- a/pkgs/development/python-modules/tree-sitter-rust/default.nix +++ b/pkgs/development/python-modules/tree-sitter-rust/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "tree_sitter_rust" ]; - meta = with lib; { + meta = { description = "Rust grammar for tree-sitter"; homepage = "https://github.com/tree-sitter/tree-sitter-rust"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/treelib/default.nix b/pkgs/development/python-modules/treelib/default.nix index 2dd12c5cb06d..6b58921268c6 100644 --- a/pkgs/development/python-modules/treelib/default.nix +++ b/pkgs/development/python-modules/treelib/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "treelib" ]; - meta = with lib; { + meta = { description = "Efficient implementation of tree data structure in python 2/3"; homepage = "https://github.com/caesar0301/treelib"; changelog = "https://github.com/caesar0301/treelib/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/treelog/default.nix b/pkgs/development/python-modules/treelog/default.nix index 7739b8253bb4..f99de27d6748 100644 --- a/pkgs/development/python-modules/treelog/default.nix +++ b/pkgs/development/python-modules/treelog/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ typing-extensions ]; - meta = with lib; { + meta = { description = "Logging framework that organizes messages in a tree structure"; homepage = "https://github.com/evalf/treelog"; - license = licenses.mit; - maintainers = [ maintainers.Scriptkiddi ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/treq/default.nix b/pkgs/development/python-modules/treq/default.nix index 621dc5ad2acc..93a7c75564cf 100644 --- a/pkgs/development/python-modules/treq/default.nix +++ b/pkgs/development/python-modules/treq/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/twisted/treq"; description = "Requests-like API built on top of twisted.web's Agent"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/trezor-agent/default.nix b/pkgs/development/python-modules/trezor-agent/default.nix index 5f4093965fd0..0bbbab1ac6e6 100644 --- a/pkgs/development/python-modules/trezor-agent/default.nix +++ b/pkgs/development/python-modules/trezor-agent/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "libagent" ]; - meta = with lib; { + meta = { description = "Using Trezor as hardware SSH agent"; homepage = "https://github.com/romanz/trezor-agent"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ hkjn np mmahut diff --git a/pkgs/development/python-modules/trezor/default.nix b/pkgs/development/python-modules/trezor/default.nix index 8c62f18b8c6f..55052cd320f5 100644 --- a/pkgs/development/python-modules/trezor/default.nix +++ b/pkgs/development/python-modules/trezor/default.nix @@ -59,13 +59,13 @@ buildPythonPackage rec { $out/bin/trezorctl --version ''; - meta = with lib; { + meta = { description = "Python library for communicating with Trezor Hardware Wallet"; mainProgram = "trezorctl"; homepage = "https://github.com/trezor/trezor-firmware/tree/master/python"; changelog = "https://github.com/trezor/trezor-firmware/blob/python/v${version}/python/CHANGELOG.md"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ np prusnak mmahut diff --git a/pkgs/development/python-modules/trino-python-client/default.nix b/pkgs/development/python-modules/trino-python-client/default.nix index 7c8373fa7e70..a068a7bf33d2 100644 --- a/pkgs/development/python-modules/trino-python-client/default.nix +++ b/pkgs/development/python-modules/trino-python-client/default.nix @@ -76,12 +76,12 @@ buildPythonPackage rec { "test_multithreaded_oauth2_authentication_flow" ]; - meta = with lib; { + meta = { changelog = "https://github.com/trinodb/trino-python-client/blob/${src.tag}/CHANGES.md"; description = "Client for the Trino distributed SQL Engine"; homepage = "https://github.com/trinodb/trino-python-client"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cpcloud flokli ]; diff --git a/pkgs/development/python-modules/trio-asyncio/default.nix b/pkgs/development/python-modules/trio-asyncio/default.nix index b6b32d5110d6..cef3210be1eb 100644 --- a/pkgs/development/python-modules/trio-asyncio/default.nix +++ b/pkgs/development/python-modules/trio-asyncio/default.nix @@ -62,14 +62,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "trio_asyncio" ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-trio/trio-asyncio/blob/v${version}/docs/source/history.rst"; description = "Re-implementation of the asyncio mainloop on top of Trio"; homepage = "https://github.com/python-trio/trio-asyncio"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/trio-websocket/default.nix b/pkgs/development/python-modules/trio-websocket/default.nix index 9cb8b5fd1e88..150a62bc9ce1 100644 --- a/pkgs/development/python-modules/trio-websocket/default.nix +++ b/pkgs/development/python-modules/trio-websocket/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "trio_websocket" ]; - meta = with lib; { + meta = { changelog = "https://github.com/HyperionGray/trio-websocket/blob/${version}/CHANGELOG.md"; description = "WebSocket client and server implementation for Python Trio"; homepage = "https://github.com/HyperionGray/trio-websocket"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tritonclient/default.nix b/pkgs/development/python-modules/tritonclient/default.nix index 4448047f9611..0b90905a475b 100644 --- a/pkgs/development/python-modules/tritonclient/default.nix +++ b/pkgs/development/python-modules/tritonclient/default.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "Triton Python client"; homepage = "https://github.com/triton-inference-server/client"; - license = licenses.bsd3; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/troposphere/default.nix b/pkgs/development/python-modules/troposphere/default.nix index 2581be0a39b3..c2f56d42f2ea 100644 --- a/pkgs/development/python-modules/troposphere/default.nix +++ b/pkgs/development/python-modules/troposphere/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "troposphere" ]; - meta = with lib; { + meta = { description = "Library to create AWS CloudFormation descriptions"; homepage = "https://github.com/cloudtools/troposphere"; changelog = "https://github.com/cloudtools/troposphere/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ jlesquembre ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jlesquembre ]; }; } diff --git a/pkgs/development/python-modules/trueskill/default.nix b/pkgs/development/python-modules/trueskill/default.nix index 8013f252ac9e..51d8baadf93d 100644 --- a/pkgs/development/python-modules/trueskill/default.nix +++ b/pkgs/development/python-modules/trueskill/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # Can't build distribute, see https://github.com/NixOS/nixpkgs/pull/49340 doCheck = false; - meta = with lib; { + meta = { description = "Video game rating system"; homepage = "https://trueskill.org"; - license = licenses.bsd3; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/truncnorm/default.nix b/pkgs/development/python-modules/truncnorm/default.nix index aa11cc342550..8cf30ff9580c 100644 --- a/pkgs/development/python-modules/truncnorm/default.nix +++ b/pkgs/development/python-modules/truncnorm/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "truncnorm" ]; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/truncnorm"; description = "Moments for doubly truncated multivariate normal distributions"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/trustme/default.nix b/pkgs/development/python-modules/trustme/default.nix index e909c4868252..54ca25de2da6 100644 --- a/pkgs/development/python-modules/trustme/default.nix +++ b/pkgs/development/python-modules/trustme/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "trustme" ]; - meta = with lib; { + meta = { description = "High quality TLS certs while you wait, for the discerning tester"; homepage = "https://github.com/python-trio/trustme"; changelog = "https://trustme.readthedocs.io/en/latest/#change-history"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; diff --git a/pkgs/development/python-modules/truststore/default.nix b/pkgs/development/python-modules/truststore/default.nix index 76c07a99dd1b..a05f9b258ba8 100644 --- a/pkgs/development/python-modules/truststore/default.nix +++ b/pkgs/development/python-modules/truststore/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "truststore" ]; - meta = with lib; { + meta = { description = "Verify certificates using native system trust stores"; homepage = "https://github.com/sethmlarson/truststore"; changelog = "https://github.com/sethmlarson/truststore/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ anthonyroussel ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anthonyroussel ]; }; } diff --git a/pkgs/development/python-modules/ttach/default.nix b/pkgs/development/python-modules/ttach/default.nix index 8d966664098c..38f423505523 100644 --- a/pkgs/development/python-modules/ttach/default.nix +++ b/pkgs/development/python-modules/ttach/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "ttach" ]; - meta = with lib; { + meta = { description = "Image Test Time Augmentation with PyTorch"; homepage = "https://github.com/qubvel/ttach"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; }; } diff --git a/pkgs/development/python-modules/ttls/default.nix b/pkgs/development/python-modules/ttls/default.nix index 331804ccd1b4..4f6faef5574a 100644 --- a/pkgs/development/python-modules/ttls/default.nix +++ b/pkgs/development/python-modules/ttls/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ttls" ]; - meta = with lib; { + meta = { description = "Module to interact with Twinkly LEDs"; mainProgram = "ttls"; homepage = "https://github.com/jschlyter/ttls"; changelog = "https://github.com/jschlyter/ttls/blob/v${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ttn-client/default.nix b/pkgs/development/python-modules/ttn-client/default.nix index a23d6b02e47c..06b56ff8ca8e 100644 --- a/pkgs/development/python-modules/ttn-client/default.nix +++ b/pkgs/development/python-modules/ttn-client/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { "test_connection_auth_error" ]; - meta = with lib; { + meta = { description = "Module to fetch/receive and parse uplink messages from The Thinks Network"; homepage = "https://github.com/angelnu/thethingsnetwork_python_client"; changelog = "https://github.com/angelnu/thethingsnetwork_python_client/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ttp-templates/default.nix b/pkgs/development/python-modules/ttp-templates/default.nix index 90767ab2e25e..6097ea2a8919 100644 --- a/pkgs/development/python-modules/ttp-templates/default.nix +++ b/pkgs/development/python-modules/ttp-templates/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # Circular dependency on ttp doCheck = false; - meta = with lib; { + meta = { description = "Template Text Parser Templates collections"; homepage = "https://github.com/dmulyalin/ttp_templates"; changelog = "https://github.com/dmulyalin/ttp_templates/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ttp/default.nix b/pkgs/development/python-modules/ttp/default.nix index 5a6958db6fbb..2e8747666aa8 100644 --- a/pkgs/development/python-modules/ttp/default.nix +++ b/pkgs/development/python-modules/ttp/default.nix @@ -99,12 +99,12 @@ buildPythonPackage rec { enabledTestPaths = [ "test/pytest" ]; - meta = with lib; { + meta = { changelog = "https://github.com/dmulyalin/ttp/releases/tag/${version}"; description = "Template Text Parser"; mainProgram = "ttp"; homepage = "https://github.com/dmulyalin/ttp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ttstokenizer/default.nix b/pkgs/development/python-modules/ttstokenizer/default.nix index a920d85e88cd..621d1dc4a817 100644 --- a/pkgs/development/python-modules/ttstokenizer/default.nix +++ b/pkgs/development/python-modules/ttstokenizer/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Tokenizer for Text to Speech (TTS) models"; homepage = "https://pypi.org/project/ttstokenizer"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ happysalada ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/tubes/default.nix b/pkgs/development/python-modules/tubes/default.nix index 36077d1a4d9c..667863d985cb 100644 --- a/pkgs/development/python-modules/tubes/default.nix +++ b/pkgs/development/python-modules/tubes/default.nix @@ -32,10 +32,10 @@ buildPythonPackage { pythonImportsCheck = [ "tubes" ]; - meta = with lib; { + meta = { description = "Data-processing and flow-control engine for event-driven programs"; homepage = "https://github.com/twisted/tubes"; - license = licenses.mit; - maintainers = with maintainers; [ exarkun ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ exarkun ]; }; } diff --git a/pkgs/development/python-modules/tubeup/default.nix b/pkgs/development/python-modules/tubeup/default.nix index 1e1c0118de09..1b241a6bd53c 100644 --- a/pkgs/development/python-modules/tubeup/default.nix +++ b/pkgs/development/python-modules/tubeup/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { # Tests failing upstream doCheck = false; - meta = with lib; { + meta = { description = "Youtube (and other video site) to Internet Archive Uploader"; mainProgram = "tubeup"; homepage = "https://github.com/bibanon/tubeup"; changelog = "https://github.com/bibanon/tubeup/releases/tag/${version}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tunigo/default.nix b/pkgs/development/python-modules/tunigo/default.nix index 034aed0251b3..f7aec298ffb9 100644 --- a/pkgs/development/python-modules/tunigo/default.nix +++ b/pkgs/development/python-modules/tunigo/default.nix @@ -32,9 +32,9 @@ buildPythonPackage rec { py.test ''; - meta = with lib; { + meta = { description = "Python API for the browse feature of Spotify"; homepage = "https://github.com/trygveaa/python-tunigo"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/turnt/default.nix b/pkgs/development/python-modules/turnt/default.nix index 8d9af7740283..000fb654f2cd 100644 --- a/pkgs/development/python-modules/turnt/default.nix +++ b/pkgs/development/python-modules/turnt/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "turnt" ]; - meta = with lib; { + meta = { description = "Snapshot testing tool"; mainProgram = "turnt"; homepage = "https://github.com/cucapra/turnt"; - license = licenses.mit; - maintainers = with maintainers; [ leungbk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leungbk ]; }; } diff --git a/pkgs/development/python-modules/tuya-device-sharing-sdk/default.nix b/pkgs/development/python-modules/tuya-device-sharing-sdk/default.nix index 9b2555846ec2..50e58af395ff 100644 --- a/pkgs/development/python-modules/tuya-device-sharing-sdk/default.nix +++ b/pkgs/development/python-modules/tuya-device-sharing-sdk/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { doCheck = false; # no tests - meta = with lib; { + meta = { description = "Tuya Device Sharing SDK"; homepage = "https://github.com/tuya/tuya-device-sharing-sdk"; - license = licenses.mit; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aciceri ]; }; } diff --git a/pkgs/development/python-modules/tuya-iot-py-sdk/default.nix b/pkgs/development/python-modules/tuya-iot-py-sdk/default.nix index cf8c96e1b143..7ba2dc3f2959 100644 --- a/pkgs/development/python-modules/tuya-iot-py-sdk/default.nix +++ b/pkgs/development/python-modules/tuya-iot-py-sdk/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tuya_iot" ]; - meta = with lib; { + meta = { description = "Tuya IoT Python SDK for Tuya Open API"; homepage = "https://github.com/tuya/tuya-iot-python-sdk"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tuyaha/default.nix b/pkgs/development/python-modules/tuyaha/default.nix index bd760c94d932..8dcc7e20b3d2 100644 --- a/pkgs/development/python-modules/tuyaha/default.nix +++ b/pkgs/development/python-modules/tuyaha/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "tuyaha" ]; - meta = with lib; { + meta = { description = "Python module with the Tuya API"; homepage = "https://github.com/PaulAnnekov/tuyaha"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tvdb-api/default.nix b/pkgs/development/python-modules/tvdb-api/default.nix index 7006c38dd058..9d93e847ac33 100644 --- a/pkgs/development/python-modules/tvdb-api/default.nix +++ b/pkgs/development/python-modules/tvdb-api/default.nix @@ -25,10 +25,10 @@ buildPythonPackage { # requires network access doCheck = false; - meta = with lib; { + meta = { description = "Simple to use TVDB (thetvdb.com) API in Python"; homepage = "https://github.com/dbr/tvdb_api"; - license = licenses.unlicense; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/tweepy/default.nix b/pkgs/development/python-modules/tweepy/default.nix index ca53304e13c8..9ed0abb9221b 100644 --- a/pkgs/development/python-modules/tweepy/default.nix +++ b/pkgs/development/python-modules/tweepy/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { "testcursornext" ]; - meta = with lib; { + meta = { description = "Twitter library for Python"; homepage = "https://github.com/tweepy/tweepy"; changelog = "https://github.com/tweepy/tweepy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/twentemilieu/default.nix b/pkgs/development/python-modules/twentemilieu/default.nix index 4f0c5322a73f..a70016ff0763 100644 --- a/pkgs/development/python-modules/twentemilieu/default.nix +++ b/pkgs/development/python-modules/twentemilieu/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "twentemilieu" ]; - meta = with lib; { + meta = { description = "Python client for Twente Milieu"; homepage = "https://github.com/frenck/python-twentemilieu"; changelog = "https://github.com/frenck/python-twentemilieu/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/twiggy/default.nix b/pkgs/development/python-modules/twiggy/default.nix index e71d5b122fec..420cc3336f49 100644 --- a/pkgs/development/python-modules/twiggy/default.nix +++ b/pkgs/development/python-modules/twiggy/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { propagatedBuildInputs = [ six ]; doCheck = false; - meta = with lib; { + meta = { homepage = "http://twiggy.wearpants.org"; # Taken from http://i.wearpants.org/blog/meet-twiggy/ description = "Twiggy is the first totally new design for a logger since log4j"; - license = licenses.bsd3; - maintainers = with maintainers; [ pierron ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pierron ]; }; } diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix index 9a9e6f816d71..4bd31ca1fd0d 100644 --- a/pkgs/development/python-modules/twilio/default.nix +++ b/pkgs/development/python-modules/twilio/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "twilio" ]; - meta = with lib; { + meta = { description = "Twilio API client and TwiML generator"; homepage = "https://github.com/twilio/twilio-python/"; changelog = "https://github.com/twilio/twilio-python/blob/${src.tag}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/twill/default.nix b/pkgs/development/python-modules/twill/default.nix index 087f1006865e..c140417e1da5 100644 --- a/pkgs/development/python-modules/twill/default.nix +++ b/pkgs/development/python-modules/twill/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "twill" ]; - meta = with lib; { + meta = { description = "Simple scripting language for Web browsing"; homepage = "https://twill-tools.github.io/twill/"; changelog = "https://github.com/twill-tools/twill/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/twinkly-client/default.nix b/pkgs/development/python-modules/twinkly-client/default.nix index 4f348b29a0ee..7d66ecfc2907 100644 --- a/pkgs/development/python-modules/twinkly-client/default.nix +++ b/pkgs/development/python-modules/twinkly-client/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "twinkly_client" ]; - meta = with lib; { + meta = { description = "Python module to communicate with Twinkly LED strings"; homepage = "https://github.com/dr1rrb/py-twinkly-client"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/twisted/default.nix b/pkgs/development/python-modules/twisted/default.nix index 4b3c8b3e576f..4078baca698a 100644 --- a/pkgs/development/python-modules/twisted/default.nix +++ b/pkgs/development/python-modules/twisted/default.nix @@ -258,11 +258,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/twisted/twisted/blob/twisted-${version}/NEWS.rst"; homepage = "https://github.com/twisted/twisted"; description = "Asynchronous networking framework written in Python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/twitch-python/default.nix b/pkgs/development/python-modules/twitch-python/default.nix index 0f5cfad85ac4..55559085f2f3 100644 --- a/pkgs/development/python-modules/twitch-python/default.nix +++ b/pkgs/development/python-modules/twitch-python/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "twitch" ]; - meta = with lib; { + meta = { description = "Twitch module for Python"; homepage = "https://github.com/PetterKraabol/Twitch-Python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/twitter/default.nix b/pkgs/development/python-modules/twitter/default.nix index 545b7784b9a0..1a99c1db5c34 100644 --- a/pkgs/development/python-modules/twitter/default.nix +++ b/pkgs/development/python-modules/twitter/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "twitter" ]; - meta = with lib; { + meta = { description = "Twitter API library"; homepage = "https://mike.verdone.ca/twitter/"; - license = licenses.mit; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/python-modules/twitterapi/default.nix b/pkgs/development/python-modules/twitterapi/default.nix index 57eec9b4d78a..c142573ed518 100644 --- a/pkgs/development/python-modules/twitterapi/default.nix +++ b/pkgs/development/python-modules/twitterapi/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "TwitterAPI" ]; - meta = with lib; { + meta = { description = "Python wrapper for Twitter's REST and Streaming APIs"; homepage = "https://github.com/geduldig/TwitterAPI"; changelog = "https://github.com/geduldig/TwitterAPI/blob/v${version}/CHANGE.log"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/txaio/default.nix b/pkgs/development/python-modules/txaio/default.nix index 1fd17311aadf..19199419d960 100644 --- a/pkgs/development/python-modules/txaio/default.nix +++ b/pkgs/development/python-modules/txaio/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "txaio" ]; - meta = with lib; { + meta = { description = "Utilities to support code that runs unmodified on Twisted and asyncio"; homepage = "https://github.com/crossbario/txaio"; changelog = "https://github.com/crossbario/txaio/blob/v${version}/docs/releases.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/txamqp/default.nix b/pkgs/development/python-modules/txamqp/default.nix index e68311148f82..eb2ff68a2b25 100644 --- a/pkgs/development/python-modules/txamqp/default.nix +++ b/pkgs/development/python-modules/txamqp/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ twisted ]; - meta = with lib; { + meta = { homepage = "https://github.com/txamqp/txamqp"; description = "Library for communicating with AMQP peers and brokers using Twisted"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/txdbus/default.nix b/pkgs/development/python-modules/txdbus/default.nix index 33ed4a66a68e..83f1809a0ec3 100644 --- a/pkgs/development/python-modules/txdbus/default.nix +++ b/pkgs/development/python-modules/txdbus/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "txdbus" ]; - meta = with lib; { + meta = { description = "Native Python implementation of DBus for Twisted"; homepage = "https://github.com/cocagne/txdbus"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/txgithub/default.nix b/pkgs/development/python-modules/txgithub/default.nix index aa30df3c3c1c..433b9cdbd58f 100644 --- a/pkgs/development/python-modules/txgithub/default.nix +++ b/pkgs/development/python-modules/txgithub/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { # No tests distributed doCheck = false; - meta = with lib; { + meta = { description = "GitHub API client implemented using Twisted"; homepage = "https://github.com/tomprince/txgithub"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/txredisapi/default.nix b/pkgs/development/python-modules/txredisapi/default.nix index d3ebdee8c4bc..c785666de7ed 100644 --- a/pkgs/development/python-modules/txredisapi/default.nix +++ b/pkgs/development/python-modules/txredisapi/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { passthru.tests.unit-tests = nixosTests.txredisapi; - meta = with lib; { + meta = { homepage = "https://github.com/IlyaSkriblovsky/txredisapi"; description = "Non-blocking redis client for python"; - license = licenses.asl20; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/python-modules/txrequests/default.nix b/pkgs/development/python-modules/txrequests/default.nix index 62b4b5c4ef0d..9d9c20422f03 100644 --- a/pkgs/development/python-modules/txrequests/default.nix +++ b/pkgs/development/python-modules/txrequests/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Asynchronous Python HTTP for Humans"; homepage = "https://github.com/tardyp/txrequests"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/txtorcon/default.nix b/pkgs/development/python-modules/txtorcon/default.nix index 81ff771af7f8..01bf77215b3e 100644 --- a/pkgs/development/python-modules/txtorcon/default.nix +++ b/pkgs/development/python-modules/txtorcon/default.nix @@ -48,14 +48,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "txtorcon" ]; - meta = with lib; { + meta = { description = "Twisted-based Tor controller client, with state-tracking and configuration abstractions"; homepage = "https://github.com/meejah/txtorcon"; changelog = "https://github.com/meejah/txtorcon/releases/tag/v${version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jluttine exarkun ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/txzmq/default.nix b/pkgs/development/python-modules/txzmq/default.nix index 6c521d2f69f3..93bee7de6905 100644 --- a/pkgs/development/python-modules/txzmq/default.nix +++ b/pkgs/development/python-modules/txzmq/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "txzmq" ]; - meta = with lib; { + meta = { description = "Twisted bindings for ZeroMQ"; homepage = "https://github.com/smira/txZMQ"; - license = licenses.mpl20; + license = lib.licenses.mpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/type-infer/default.nix b/pkgs/development/python-modules/type-infer/default.nix index a59301e884ec..198ac71cb683 100644 --- a/pkgs/development/python-modules/type-infer/default.nix +++ b/pkgs/development/python-modules/type-infer/default.nix @@ -86,11 +86,11 @@ buildPythonPackage { env.NLTK_DATA = testNltkData; pythonImportsCheck = [ "type_infer" ]; - meta = with lib; { + meta = { changelog = "https://github.com/mindsdb/type_infer/releases/tag/${tag}"; description = "Automated type inference for Machine Learning pipelines"; homepage = "https://github.com/mindsdb/type_infer"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/typechecks/default.nix b/pkgs/development/python-modules/typechecks/default.nix index d6d3d5a74a3e..5899598cab52 100644 --- a/pkgs/development/python-modules/typechecks/default.nix +++ b/pkgs/development/python-modules/typechecks/default.nix @@ -20,10 +20,10 @@ buildPythonPackage { pythonImportsCheck = [ "typechecks" ]; - meta = with lib; { + meta = { description = "Type checking helpers for Python"; homepage = "https://github.com/openvax/typechecks"; - license = licenses.asl20; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/typecode/default.nix b/pkgs/development/python-modules/typecode/default.nix index 148fb1566f01..19ea9dc98517 100644 --- a/pkgs/development/python-modules/typecode/default.nix +++ b/pkgs/development/python-modules/typecode/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "typecode" ]; - meta = with lib; { + meta = { description = "Comprehensive filetype and mimetype detection using libmagic and Pygments"; homepage = "https://github.com/aboutcode-org/typecode"; changelog = "https://github.com/aboutcode-org/typecode/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/typecode/libmagic.nix b/pkgs/development/python-modules/typecode/libmagic.nix index 170cf39df85a..4f2dbdbd9582 100644 --- a/pkgs/development/python-modules/typecode/libmagic.nix +++ b/pkgs/development/python-modules/typecode/libmagic.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "typecode_libmagic" ]; - meta = with lib; { + meta = { description = "ScanCode Toolkit plugin to provide pre-built binary libraries and utilities and their locations"; homepage = "https://github.com/aboutcode-org/scancode-plugins/tree/main/builtins/typecode_libmagic-linux"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/typed-settings/default.nix b/pkgs/development/python-modules/typed-settings/default.nix index 1e8aa9034473..1553c088426e 100644 --- a/pkgs/development/python-modules/typed-settings/default.nix +++ b/pkgs/development/python-modules/typed-settings/default.nix @@ -83,11 +83,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "typed_settings" ]; - meta = with lib; { + meta = { description = "Typed settings based on attrs classes"; homepage = "https://gitlab.com/sscherfke/typed-settings"; changelog = "https://gitlab.com/sscherfke/typed-settings/-/blob/${version}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/typer-shell/default.nix b/pkgs/development/python-modules/typer-shell/default.nix index 973d481fff7d..21143724caf6 100644 --- a/pkgs/development/python-modules/typer-shell/default.nix +++ b/pkgs/development/python-modules/typer-shell/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "typer_shell" ]; - meta = with lib; { + meta = { description = "Library for making beautiful shells/REPLs with Typer"; homepage = "https://github.com/FergusFettes/typer-shell"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6a29d20ded7b..acc967434c20 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -51,11 +51,11 @@ let pythonImportsCheck = [ "types_aiobotocore_${toUnderscore serviceName}" ]; - meta = with lib; { + meta = { description = "Type annotations for aiobotocore ${serviceName}"; homepage = "https://github.com/youtype/mypy_boto3_builder"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; }; in diff --git a/pkgs/development/python-modules/types-aiobotocore/default.nix b/pkgs/development/python-modules/types-aiobotocore/default.nix index 876b55949dd0..dcc29346d115 100644 --- a/pkgs/development/python-modules/types-aiobotocore/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore/default.nix @@ -1107,10 +1107,10 @@ buildPythonPackage rec { # Package has no tests doCheck = false; - meta = with lib; { + meta = { description = "Type annotations for aiobotocore generated with mypy-boto3-builder"; homepage = "https://pypi.org/project/types-aiobotocore/"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/types-awscrt/default.nix b/pkgs/development/python-modules/types-awscrt/default.nix index 6ce850d371bc..a11df13d9d07 100644 --- a/pkgs/development/python-modules/types-awscrt/default.nix +++ b/pkgs/development/python-modules/types-awscrt/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Type annotations and code completion for awscrt"; homepage = "https://github.com/youtype/types-awscrt"; changelog = "https://github.com/youtype/types-awscrt/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-beautifulsoup4/default.nix b/pkgs/development/python-modules/types-beautifulsoup4/default.nix index 6a56dd74bdaa..8ce7175b7312 100644 --- a/pkgs/development/python-modules/types-beautifulsoup4/default.nix +++ b/pkgs/development/python-modules/types-beautifulsoup4/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bs4-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for beautifulsoup4"; homepage = "https://pypi.org/project/types-beautifulsoup4/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-click/default.nix b/pkgs/development/python-modules/types-click/default.nix index 29f2da7b2303..7ad9e8bc0ba2 100644 --- a/pkgs/development/python-modules/types-click/default.nix +++ b/pkgs/development/python-modules/types-click/default.nix @@ -20,10 +20,10 @@ buildPythonPackage { nativeBuildInputs = [ setuptools ]; - meta = with lib; { + meta = { description = "Collection of library stubs for Python, with static types"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ jfvillablanca ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jfvillablanca ]; }; } diff --git a/pkgs/development/python-modules/types-colorama/default.nix b/pkgs/development/python-modules/types-colorama/default.nix index 404583aeffda..e176716e7cf3 100644 --- a/pkgs/development/python-modules/types-colorama/default.nix +++ b/pkgs/development/python-modules/types-colorama/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Typing stubs for colorama"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-dataclasses/default.nix b/pkgs/development/python-modules/types-dataclasses/default.nix index 5823b56f6637..91ed78aa794b 100644 --- a/pkgs/development/python-modules/types-dataclasses/default.nix +++ b/pkgs/development/python-modules/types-dataclasses/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dataclasses-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for dataclasses"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-dateutil/default.nix b/pkgs/development/python-modules/types-dateutil/default.nix index fde52c82ab8f..e5129c0c8907 100644 --- a/pkgs/development/python-modules/types-dateutil/default.nix +++ b/pkgs/development/python-modules/types-dateutil/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dateutil-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for python-dateutil"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ milibopp ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ milibopp ]; }; } diff --git a/pkgs/development/python-modules/types-decorator/default.nix b/pkgs/development/python-modules/types-decorator/default.nix index f322c2778a06..77b07ee19f59 100644 --- a/pkgs/development/python-modules/types-decorator/default.nix +++ b/pkgs/development/python-modules/types-decorator/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "decorator-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for decorator"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-deprecated/default.nix b/pkgs/development/python-modules/types-deprecated/default.nix index 1c9e55b09afb..b9d6243a8657 100644 --- a/pkgs/development/python-modules/types-deprecated/default.nix +++ b/pkgs/development/python-modules/types-deprecated/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "deprecated-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for Deprecated"; homepage = "https://pypi.org/project/types-Deprecated/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-docopt/default.nix b/pkgs/development/python-modules/types-docopt/default.nix index 3825b907c0cc..ac1ae5695dac 100644 --- a/pkgs/development/python-modules/types-docopt/default.nix +++ b/pkgs/development/python-modules/types-docopt/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "docopt-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for docopt"; homepage = "https://pypi.org/project/types-docopt/"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-docutils/default.nix b/pkgs/development/python-modules/types-docutils/default.nix index 4360f0871201..fca59a1bd40f 100644 --- a/pkgs/development/python-modules/types-docutils/default.nix +++ b/pkgs/development/python-modules/types-docutils/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "docutils-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for docutils"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-freezegun/default.nix b/pkgs/development/python-modules/types-freezegun/default.nix index 26456f53f6d7..a87687e39bd3 100644 --- a/pkgs/development/python-modules/types-freezegun/default.nix +++ b/pkgs/development/python-modules/types-freezegun/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "freezegun-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for freezegun"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/types-futures/default.nix b/pkgs/development/python-modules/types-futures/default.nix index 7478d77dc8a7..69222b47b53c 100644 --- a/pkgs/development/python-modules/types-futures/default.nix +++ b/pkgs/development/python-modules/types-futures/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "6fe8ccc2c2af7ef2fdd9bf73eab6d617074f09f30ad7d373510b4043d39c42de"; }; - meta = with lib; { + meta = { description = "Typing stubs for futures"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ andersk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ andersk ]; }; } diff --git a/pkgs/development/python-modules/types-html5lib/default.nix b/pkgs/development/python-modules/types-html5lib/default.nix index a98c7f608aac..98f0b14ae5d6 100644 --- a/pkgs/development/python-modules/types-html5lib/default.nix +++ b/pkgs/development/python-modules/types-html5lib/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "html5lib-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for html5lib"; homepage = "https://pypi.org/project/types-html5lib/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-ipaddress/default.nix b/pkgs/development/python-modules/types-ipaddress/default.nix index 216195c6e1ce..52bce19e64b0 100644 --- a/pkgs/development/python-modules/types-ipaddress/default.nix +++ b/pkgs/development/python-modules/types-ipaddress/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ipaddress-python2-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for ipaddress"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/types-lxml/default.nix b/pkgs/development/python-modules/types-lxml/default.nix index e40f5636c657..1929a8dbcb69 100644 --- a/pkgs/development/python-modules/types-lxml/default.nix +++ b/pkgs/development/python-modules/types-lxml/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { "TestParseid" ]; - meta = with lib; { + meta = { description = "Complete lxml external type annotation"; homepage = "https://github.com/abelcheung/types-lxml"; changelog = "https://github.com/abelcheung/types-lxml/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-markdown/default.nix b/pkgs/development/python-modules/types-markdown/default.nix index cb0860d93fde..c02a571d0bbb 100644 --- a/pkgs/development/python-modules/types-markdown/default.nix +++ b/pkgs/development/python-modules/types-markdown/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "markdown-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for Markdown"; homepage = "https://pypi.org/project/types-Markdown/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-mock/default.nix b/pkgs/development/python-modules/types-mock/default.nix index 07666488adba..1c006723ea44 100644 --- a/pkgs/development/python-modules/types-mock/default.nix +++ b/pkgs/development/python-modules/types-mock/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - meta = with lib; { + meta = { description = "Type stub package for the mock package"; homepage = "https://pypi.org/project/types-mock"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/types-pillow/default.nix b/pkgs/development/python-modules/types-pillow/default.nix index fadbfb610b19..2a637cce55d8 100644 --- a/pkgs/development/python-modules/types-pillow/default.nix +++ b/pkgs/development/python-modules/types-pillow/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "PIL-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for Pillow"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ arjan-s ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arjan-s ]; }; } diff --git a/pkgs/development/python-modules/types-protobuf/default.nix b/pkgs/development/python-modules/types-protobuf/default.nix index e3cca863d351..97c4ebd0b809 100644 --- a/pkgs/development/python-modules/types-protobuf/default.nix +++ b/pkgs/development/python-modules/types-protobuf/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "google-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for protobuf"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ andersk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ andersk ]; }; } diff --git a/pkgs/development/python-modules/types-psutil/default.nix b/pkgs/development/python-modules/types-psutil/default.nix index 32336993ace8..1e10b10ca1d2 100644 --- a/pkgs/development/python-modules/types-psutil/default.nix +++ b/pkgs/development/python-modules/types-psutil/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "psutil-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for psutil"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/types-psycopg2/default.nix b/pkgs/development/python-modules/types-psycopg2/default.nix index 0315fad8ecbd..e8b0b8da460b 100644 --- a/pkgs/development/python-modules/types-psycopg2/default.nix +++ b/pkgs/development/python-modules/types-psycopg2/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Typing stubs for psycopg2"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/types-pyopenssl/default.nix b/pkgs/development/python-modules/types-pyopenssl/default.nix index 1df09d2fb578..36f9352d9ec3 100644 --- a/pkgs/development/python-modules/types-pyopenssl/default.nix +++ b/pkgs/development/python-modules/types-pyopenssl/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "OpenSSL-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for pyopenssl"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/types-python-dateutil/default.nix b/pkgs/development/python-modules/types-python-dateutil/default.nix index a7590da661ba..ac125b8946d6 100644 --- a/pkgs/development/python-modules/types-python-dateutil/default.nix +++ b/pkgs/development/python-modules/types-python-dateutil/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dateutil-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for python-dateutil"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-pytz/default.nix b/pkgs/development/python-modules/types-pytz/default.nix index d55626637223..c3f0fb929eb7 100644 --- a/pkgs/development/python-modules/types-pytz/default.nix +++ b/pkgs/development/python-modules/types-pytz/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytz-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for pytz"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-pyyaml/default.nix b/pkgs/development/python-modules/types-pyyaml/default.nix index e9dbdeb82433..b9ee469c1c78 100644 --- a/pkgs/development/python-modules/types-pyyaml/default.nix +++ b/pkgs/development/python-modules/types-pyyaml/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yaml-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for PyYAML"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ dnr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dnr ]; }; } diff --git a/pkgs/development/python-modules/types-redis/default.nix b/pkgs/development/python-modules/types-redis/default.nix index 1b832700620b..efcf8586e0e1 100644 --- a/pkgs/development/python-modules/types-redis/default.nix +++ b/pkgs/development/python-modules/types-redis/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "redis-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for redis"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/types-requests/default.nix b/pkgs/development/python-modules/types-requests/default.nix index 3c202ae9f13b..e0d604bd1d63 100644 --- a/pkgs/development/python-modules/types-requests/default.nix +++ b/pkgs/development/python-modules/types-requests/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for requests"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-retry/default.nix b/pkgs/development/python-modules/types-retry/default.nix index 419fc5f43a60..1eb6f6218491 100644 --- a/pkgs/development/python-modules/types-retry/default.nix +++ b/pkgs/development/python-modules/types-retry/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "retry-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for retry"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-s3transfer/default.nix b/pkgs/development/python-modules/types-s3transfer/default.nix index 15613a2de024..d1bcca20eab9 100644 --- a/pkgs/development/python-modules/types-s3transfer/default.nix +++ b/pkgs/development/python-modules/types-s3transfer/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "s3transfer-stubs" ]; - meta = with lib; { + meta = { description = "Type annotations and code completion for s3transfer"; homepage = "https://github.com/youtype/types-s3transfer"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-setuptools/default.nix b/pkgs/development/python-modules/types-setuptools/default.nix index 9aa1f469cf14..1d50f1116e12 100644 --- a/pkgs/development/python-modules/types-setuptools/default.nix +++ b/pkgs/development/python-modules/types-setuptools/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "setuptools-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for setuptools"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-tabulate/default.nix b/pkgs/development/python-modules/types-tabulate/default.nix index 4a5f0274bec6..fea8ef565f46 100644 --- a/pkgs/development/python-modules/types-tabulate/default.nix +++ b/pkgs/development/python-modules/types-tabulate/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tabulate-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for tabulate"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/types-toml/default.nix b/pkgs/development/python-modules/types-toml/default.nix index 040177b5e68f..cdbfe471ff9e 100644 --- a/pkgs/development/python-modules/types-toml/default.nix +++ b/pkgs/development/python-modules/types-toml/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "toml-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for toml"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/types-ujson/default.nix b/pkgs/development/python-modules/types-ujson/default.nix index 9c82fa09867c..6c66effdd4e6 100644 --- a/pkgs/development/python-modules/types-ujson/default.nix +++ b/pkgs/development/python-modules/types-ujson/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ujson-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for ujson"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ centromere ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ centromere ]; }; } diff --git a/pkgs/development/python-modules/types-urllib3/default.nix b/pkgs/development/python-modules/types-urllib3/default.nix index e3c91f48197f..4455be29ee79 100644 --- a/pkgs/development/python-modules/types-urllib3/default.nix +++ b/pkgs/development/python-modules/types-urllib3/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "urllib3-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for urllib3"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/typesentry/default.nix b/pkgs/development/python-modules/typesentry/default.nix index 9697c85beae0..649d10fb2049 100644 --- a/pkgs/development/python-modules/typesentry/default.nix +++ b/pkgs/development/python-modules/typesentry/default.nix @@ -22,10 +22,10 @@ buildPythonPackage { propagatedBuildInputs = [ colorama ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python 2.7 & 3.5+ runtime type-checker"; homepage = "https://github.com/h2oai/typesentry"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/typeshed-client/default.nix b/pkgs/development/python-modules/typeshed-client/default.nix index 507bfd771f41..fbbe8f4f7bf5 100644 --- a/pkgs/development/python-modules/typeshed-client/default.nix +++ b/pkgs/development/python-modules/typeshed-client/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { enabledTestPaths = [ "tests/test.py" ]; - meta = with lib; { + meta = { description = "Retrieve information from typeshed and other typing stubs"; homepage = "https://github.com/JelleZijlstra/typeshed_client"; changelog = "https://github.com/JelleZijlstra/typeshed_client/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/typing-extensions/default.nix b/pkgs/development/python-modules/typing-extensions/default.nix index a85bb0348976..ca01caa898f8 100644 --- a/pkgs/development/python-modules/typing-extensions/default.nix +++ b/pkgs/development/python-modules/typing-extensions/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { inherit mashumaro pydantic; }; - meta = with lib; { + meta = { description = "Backported and Experimental Type Hints for Python"; changelog = "https://github.com/python/typing_extensions/blob/${version}/CHANGELOG.md"; homepage = "https://github.com/python/typing"; - license = licenses.psfl; - maintainers = with maintainers; [ pmiddend ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ pmiddend ]; }; } diff --git a/pkgs/development/python-modules/typing-inspect/default.nix b/pkgs/development/python-modules/typing-inspect/default.nix index ce03e47d7614..5d5e70f73108 100644 --- a/pkgs/development/python-modules/typing-inspect/default.nix +++ b/pkgs/development/python-modules/typing-inspect/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "typing_inspect" ]; - meta = with lib; { + meta = { description = "Runtime inspection utilities for Python typing module"; homepage = "https://github.com/ilevkivskyi/typing_inspect"; - license = licenses.mit; - maintainers = with maintainers; [ albakham ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ albakham ]; }; } diff --git a/pkgs/development/python-modules/typing-validation/default.nix b/pkgs/development/python-modules/typing-validation/default.nix index 2feb759bd877..e635a397ea4c 100644 --- a/pkgs/development/python-modules/typing-validation/default.nix +++ b/pkgs/development/python-modules/typing-validation/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "typing_validation" ]; - meta = with lib; { + meta = { description = "Simple library for runtime type-checking"; homepage = "https://github.com/hashberg-io/typing-validation"; changelog = "https://github.com/hashberg-io/typing-validation/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/typish/default.nix b/pkgs/development/python-modules/typish/default.nix index 24ed70098a0b..f6d3170e74d8 100644 --- a/pkgs/development/python-modules/typish/default.nix +++ b/pkgs/development/python-modules/typish/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "typish" ]; - meta = with lib; { + meta = { description = "Python module for checking types of objects"; homepage = "https://github.com/ramonhagenaars/typish"; changelog = "https://github.com/ramonhagenaars/typish/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fmoda3 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fmoda3 ]; }; } diff --git a/pkgs/development/python-modules/typogrify/default.nix b/pkgs/development/python-modules/typogrify/default.nix index 3a73f82e2059..07fef7a92cd3 100644 --- a/pkgs/development/python-modules/typogrify/default.nix +++ b/pkgs/development/python-modules/typogrify/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Filters to enhance web typography, including support for Django & Jinja templates"; homepage = "https://github.com/justinmayer/typogrify"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/tzdata/default.nix b/pkgs/development/python-modules/tzdata/default.nix index c9510654637f..889178fea5bb 100644 --- a/pkgs/development/python-modules/tzdata/default.nix +++ b/pkgs/development/python-modules/tzdata/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tzdata" ]; - meta = with lib; { + meta = { description = "Provider of IANA time zone data"; homepage = "https://github.com/python/tzdata"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tzlocal/default.nix b/pkgs/development/python-modules/tzlocal/default.nix index 3ad58df8776d..835ad48bafa2 100644 --- a/pkgs/development/python-modules/tzlocal/default.nix +++ b/pkgs/development/python-modules/tzlocal/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tzlocal" ]; - meta = with lib; { + meta = { description = "Tzinfo object for the local timezone"; homepage = "https://github.com/regebro/tzlocal"; changelog = "https://github.com/regebro/tzlocal/blob/${version}/CHANGES.txt"; - license = licenses.cddl; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.cddl; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/uarray/default.nix b/pkgs/development/python-modules/uarray/default.nix index a9c408e13bac..168e85e2a231 100644 --- a/pkgs/development/python-modules/uarray/default.nix +++ b/pkgs/development/python-modules/uarray/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Universal array library"; homepage = "https://github.com/Quansight-Labs/uarray"; changelog = "https://github.com/Quansight-Labs/uarray/releases/tag/${src.tag}"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ lib.maintainers.pbsds ]; }; } diff --git a/pkgs/development/python-modules/uart-devices/default.nix b/pkgs/development/python-modules/uart-devices/default.nix index c2081edc3c58..b53c2662aa23 100644 --- a/pkgs/development/python-modules/uart-devices/default.nix +++ b/pkgs/development/python-modules/uart-devices/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "uart_devices" ]; - meta = with lib; { + meta = { description = "UART Devices for Linux"; homepage = "https://github.com/bdraco/uart-devices"; changelog = "https://github.com/bdraco/uart-devices/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/uasiren/default.nix b/pkgs/development/python-modules/uasiren/default.nix index e82ee94bb7ae..8e915f2e4b03 100644 --- a/pkgs/development/python-modules/uasiren/default.nix +++ b/pkgs/development/python-modules/uasiren/default.nix @@ -44,11 +44,11 @@ buildPythonPackage { "uasiren.client" ]; - meta = with lib; { + meta = { changelog = "https://github.com/PaulAnnekov/uasiren/releases/tag/v${version}"; description = "Implements siren.pp.ua API - public wrapper for api.ukrainealarm.com API that returns info about Ukraine air-raid alarms"; homepage = "https://github.com/PaulAnnekov/uasiren"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/ubelt/default.nix b/pkgs/development/python-modules/ubelt/default.nix index ba8c0ac03ab8..2c41402efe62 100644 --- a/pkgs/development/python-modules/ubelt/default.nix +++ b/pkgs/development/python-modules/ubelt/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Python utility library with a stdlib like feel and extra batteries. Paths, Progress, Dicts, Downloads, Caching, Hashing: ubelt makes it easy"; homepage = "https://github.com/Erotemic/ubelt"; changelog = "https://github.com/Erotemic/ubelt/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/uc-micro-py/default.nix b/pkgs/development/python-modules/uc-micro-py/default.nix index 40f6db04b0a0..80e8cb491bc8 100644 --- a/pkgs/development/python-modules/uc-micro-py/default.nix +++ b/pkgs/development/python-modules/uc-micro-py/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Micro subset of unicode data files for linkify-it-py"; homepage = "https://github.com/tsutsu3/uc.micro-py"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ucsmsdk/default.nix b/pkgs/development/python-modules/ucsmsdk/default.nix index 3e983d5dacfb..47995ad6608b 100644 --- a/pkgs/development/python-modules/ucsmsdk/default.nix +++ b/pkgs/development/python-modules/ucsmsdk/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ucsmsdk" ]; - meta = with lib; { + meta = { description = "Python SDK for Cisco UCS"; homepage = "https://github.com/CiscoUcs/ucsmsdk"; changelog = "https://github.com/CiscoUcs/ucsmsdk/blob/${src.tag}/HISTORY.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/udatetime/default.nix b/pkgs/development/python-modules/udatetime/default.nix index 5b194c53e4e2..e161e0f00ff6 100644 --- a/pkgs/development/python-modules/udatetime/default.nix +++ b/pkgs/development/python-modules/udatetime/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "udatetime" ]; - meta = with lib; { + meta = { description = "Fast RFC3339 compliant Python date-time library"; mainProgram = "bench_udatetime.py"; homepage = "https://github.com/freach/udatetime"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ueagle/default.nix b/pkgs/development/python-modules/ueagle/default.nix index 5edd077416ef..409b344c5fdf 100644 --- a/pkgs/development/python-modules/ueagle/default.nix +++ b/pkgs/development/python-modules/ueagle/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uEagle" ]; - meta = with lib; { + meta = { description = "Python library Rainforest EAGLE devices"; homepage = "https://github.com/jcalbert/uEagle"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ufal-chu-liu-edmonds/default.nix b/pkgs/development/python-modules/ufal-chu-liu-edmonds/default.nix index 7eca9f144b1d..19f2a31b9733 100644 --- a/pkgs/development/python-modules/ufal-chu-liu-edmonds/default.nix +++ b/pkgs/development/python-modules/ufal-chu-liu-edmonds/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ufal.chu_liu_edmonds" ]; - meta = with lib; { + meta = { description = "Bindings to Chu-Liu-Edmonds algorithm from TurboParser"; homepage = "https://github.com/ufal/chu_liu_edmonds"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/ufolib2/default.nix b/pkgs/development/python-modules/ufolib2/default.nix index 788bc9a1b799..a686641ef326 100644 --- a/pkgs/development/python-modules/ufolib2/default.nix +++ b/pkgs/development/python-modules/ufolib2/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ufoLib2" ]; - meta = with lib; { + meta = { changelog = "https://github.com/fonttools/ufoLib2/releases/tag/${src.tag}"; description = "Library to deal with UFO font sources"; homepage = "https://github.com/fonttools/ufoLib2"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ufolint/default.nix b/pkgs/development/python-modules/ufolint/default.nix index 714a5cac45f3..5993296e9e37 100644 --- a/pkgs/development/python-modules/ufolint/default.nix +++ b/pkgs/development/python-modules/ufolint/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { nativeBuildInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Linter for Unified Font Object (UFO) source code"; mainProgram = "ufolint"; homepage = "https://github.com/source-foundry/ufolint"; - license = licenses.mit; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/ufonormalizer/default.nix b/pkgs/development/python-modules/ufonormalizer/default.nix index 48637f4088a0..b368e9c0cc0a 100644 --- a/pkgs/development/python-modules/ufonormalizer/default.nix +++ b/pkgs/development/python-modules/ufonormalizer/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools-scm ]; - meta = with lib; { + meta = { description = "Script to normalize the XML and other data inside of a UFO"; mainProgram = "ufonormalizer"; homepage = "https://github.com/unified-font-object/ufoNormalizer"; - license = licenses.bsd3; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/ufoprocessor/default.nix b/pkgs/development/python-modules/ufoprocessor/default.nix index a9bcacc15869..9ba7a11942a5 100644 --- a/pkgs/development/python-modules/ufoprocessor/default.nix +++ b/pkgs/development/python-modules/ufoprocessor/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Read, write and generate UFOs with designspace data"; homepage = "https://github.com/LettError/ufoProcessor"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/uharfbuzz/default.nix b/pkgs/development/python-modules/uharfbuzz/default.nix index d03057e8cc14..25b87a02f88e 100644 --- a/pkgs/development/python-modules/uharfbuzz/default.nix +++ b/pkgs/development/python-modules/uharfbuzz/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uharfbuzz" ]; - meta = with lib; { + meta = { description = "Streamlined Cython bindings for the harfbuzz shaping engine"; homepage = "https://github.com/harfbuzz/uharfbuzz"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/uhi/default.nix b/pkgs/development/python-modules/uhi/default.nix index 500cb3130f39..cea807af4ebc 100644 --- a/pkgs/development/python-modules/uhi/default.nix +++ b/pkgs/development/python-modules/uhi/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Universal Histogram Interface"; homepage = "https://uhi.readthedocs.io/"; - license = licenses.bsd3; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/uiprotect/default.nix b/pkgs/development/python-modules/uiprotect/default.nix index 3ef17e89a15c..b4bc2c7045be 100644 --- a/pkgs/development/python-modules/uiprotect/default.nix +++ b/pkgs/development/python-modules/uiprotect/default.nix @@ -92,11 +92,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "uiprotect" ]; - meta = with lib; { + meta = { description = "Python API for UniFi Protect (Unofficial)"; homepage = "https://github.com/uilibs/uiprotect"; changelog = "https://github.com/uilibs/uiprotect/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/ujson/default.nix b/pkgs/development/python-modules/ujson/default.nix index 129f731b3cae..52fab36e204b 100644 --- a/pkgs/development/python-modules/ujson/default.nix +++ b/pkgs/development/python-modules/ujson/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ujson" ]; - meta = with lib; { + meta = { description = "Ultra fast JSON encoder and decoder"; homepage = "https://github.com/ultrajson/ultrajson"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ukkonen/default.nix b/pkgs/development/python-modules/ukkonen/default.nix index 2a094b6c645a..42567b79919e 100644 --- a/pkgs/development/python-modules/ukkonen/default.nix +++ b/pkgs/development/python-modules/ukkonen/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ukkonen" ]; - meta = with lib; { + meta = { description = "Python implementation of bounded Levenshtein distance (Ukkonen)"; homepage = "https://github.com/asottile/ukkonen"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ukpostcodeparser/default.nix b/pkgs/development/python-modules/ukpostcodeparser/default.nix index 333942e14298..9c3afe6c8917 100644 --- a/pkgs/development/python-modules/ukpostcodeparser/default.nix +++ b/pkgs/development/python-modules/ukpostcodeparser/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "UK Postcode parser"; homepage = "https://github.com/hamstah/ukpostcodeparser"; - license = licenses.publicDomain; - maintainers = with maintainers; [ siddharthist ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ siddharthist ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/ulid-transform/default.nix b/pkgs/development/python-modules/ulid-transform/default.nix index b6a1dff3cacb..cb069836752a 100644 --- a/pkgs/development/python-modules/ulid-transform/default.nix +++ b/pkgs/development/python-modules/ulid-transform/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ulid_transform" ]; - meta = with lib; { + meta = { description = "Library to create and transform ULIDs"; homepage = "https://github.com/bdraco/ulid-transform"; changelog = "https://github.com/bdraco/ulid-transform/blob/${src.tag}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/ultraheat-api/default.nix b/pkgs/development/python-modules/ultraheat-api/default.nix index 9b345f073379..c7614dcdbd62 100644 --- a/pkgs/development/python-modules/ultraheat-api/default.nix +++ b/pkgs/development/python-modules/ultraheat-api/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ultraheat_api" ]; - meta = with lib; { + meta = { description = "Module for working with data from Landis+Gyr Ultraheat heat meter unit"; homepage = "https://github.com/vpathuis/uh50"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/umalqurra/default.nix b/pkgs/development/python-modules/umalqurra/default.nix index 407edb28ff88..dc887510576b 100644 --- a/pkgs/development/python-modules/umalqurra/default.nix +++ b/pkgs/development/python-modules/umalqurra/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { # See for license # https://github.com/tytkal/python-hijiri-ummalqura/issues/4 - meta = with lib; { + meta = { description = "Date Api that support Hijri Umalqurra calendar"; homepage = "https://github.com/tytkal/python-hijiri-ummalqura"; - license = with licenses; [ publicDomain ]; + license = with lib.licenses; [ publicDomain ]; }; } diff --git a/pkgs/development/python-modules/umodbus/default.nix b/pkgs/development/python-modules/umodbus/default.nix index b1a33f1a1d9b..248b5c4bf845 100644 --- a/pkgs/development/python-modules/umodbus/default.nix +++ b/pkgs/development/python-modules/umodbus/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "umodbus" ]; - meta = with lib; { + meta = { description = "Implementation of the Modbus protocol"; homepage = "https://github.com/AdvancedClimateSystems/uModbus/"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/unasync/default.nix b/pkgs/development/python-modules/unasync/default.nix index afdfc152bfa8..03df54ffb5ca 100644 --- a/pkgs/development/python-modules/unasync/default.nix +++ b/pkgs/development/python-modules/unasync/default.nix @@ -38,14 +38,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "unasync" ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-trio/unasync/releases/tag/v${version}"; description = "Project that can transform your asynchronous code into synchronous code"; homepage = "https://github.com/python-trio/unasync"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/undefined/default.nix b/pkgs/development/python-modules/undefined/default.nix index 3bec37cdec9e..3bed50f985c4 100644 --- a/pkgs/development/python-modules/undefined/default.nix +++ b/pkgs/development/python-modules/undefined/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "undefined" ]; - meta = with lib; { + meta = { description = "Like `None`, but different in several ways"; homepage = "https://github.com/Carreau/undefined"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/undetected-chromedriver/default.nix b/pkgs/development/python-modules/undetected-chromedriver/default.nix index bbee7672478b..7f40de5f97f1 100644 --- a/pkgs/development/python-modules/undetected-chromedriver/default.nix +++ b/pkgs/development/python-modules/undetected-chromedriver/default.nix @@ -45,10 +45,10 @@ buildPythonPackage { "from looseversion import LooseVersion" ''; - meta = with lib; { + meta = { description = "Python library for the custom Selenium ChromeDriver that passes all bot mitigation systems"; homepage = "https://github.com/ultrafunkamsterdam/undetected-chromedriver"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/unearth/default.nix b/pkgs/development/python-modules/unearth/default.nix index e94d9c6cbbad..53e044967ca0 100644 --- a/pkgs/development/python-modules/unearth/default.nix +++ b/pkgs/development/python-modules/unearth/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "unearth" ]; - meta = with lib; { + meta = { description = "Utility to fetch and download Python packages"; mainProgram = "unearth"; homepage = "https://github.com/frostming/unearth"; changelog = "https://github.com/frostming/unearth/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ betaboon ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ betaboon ]; }; } diff --git a/pkgs/development/python-modules/unicode-rbnf/default.nix b/pkgs/development/python-modules/unicode-rbnf/default.nix index ed03f3a89ace..57cd808a5c63 100644 --- a/pkgs/development/python-modules/unicode-rbnf/default.nix +++ b/pkgs/development/python-modules/unicode-rbnf/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/rhasspy/unicode-rbnf/blob/v${version}/CHANGELOG.md"; description = "Pure Python implementation of ICU's rule-based number format engine"; homepage = "https://github.com/rhasspy/unicode-rbnf"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/unicodecsv/default.nix b/pkgs/development/python-modules/unicodecsv/default.nix index 1355a7bab4c7..e5e6578e607a 100644 --- a/pkgs/development/python-modules/unicodecsv/default.nix +++ b/pkgs/development/python-modules/unicodecsv/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # ImportError: No module named runtests doCheck = false; - meta = with lib; { + meta = { description = "Drop-in replacement for Python2's stdlib csv module, with unicode support"; homepage = "https://github.com/jdunck/python-unicodecsv"; - maintainers = with maintainers; [ koral ]; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/unicodedata2/default.nix b/pkgs/development/python-modules/unicodedata2/default.nix index 7b60c65ef0b3..9ec69b3952a8 100644 --- a/pkgs/development/python-modules/unicodedata2/default.nix +++ b/pkgs/development/python-modules/unicodedata2/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "unicodedata2" ]; - meta = with lib; { + meta = { description = "Backport and updates for the unicodedata module"; homepage = "https://github.com/mikekap/unicodedata2"; changelog = "https://github.com/fonttools/unicodedata2/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/unicorn-angr/default.nix b/pkgs/development/python-modules/unicorn-angr/default.nix index 350360d8d3dc..92e5c9382009 100644 --- a/pkgs/development/python-modules/unicorn-angr/default.nix +++ b/pkgs/development/python-modules/unicorn-angr/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "unicorn" ]; - meta = with lib; { + meta = { description = "Python bindings for Unicorn CPU emulator engine"; homepage = "https://www.unicorn-engine.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/unicorn/default.nix b/pkgs/development/python-modules/unicorn/default.nix index 1f0fba4be262..661a9faa420c 100644 --- a/pkgs/development/python-modules/unicorn/default.nix +++ b/pkgs/development/python-modules/unicorn/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "unicorn" ]; - meta = with lib; { + meta = { description = "Python bindings for Unicorn CPU emulator engine"; homepage = "https://www.unicorn-engine.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ bennofs ris ]; diff --git a/pkgs/development/python-modules/unicrypto/default.nix b/pkgs/development/python-modules/unicrypto/default.nix index 774a43c98b91..fc9c9b0577f1 100644 --- a/pkgs/development/python-modules/unicrypto/default.nix +++ b/pkgs/development/python-modules/unicrypto/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "unicrypto" ]; - meta = with lib; { + meta = { description = "Unified interface for cryptographic libraries"; homepage = "https://github.com/skelsec/unicrypto"; changelog = "https://github.com/skelsec/unicrypto/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/unicurses/default.nix b/pkgs/development/python-modules/unicurses/default.nix index bdb2a33f8109..0e1a767d42d6 100644 --- a/pkgs/development/python-modules/unicurses/default.nix +++ b/pkgs/development/python-modules/unicurses/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "unicurses" ]; - meta = with lib; { + meta = { description = "Unified Curses Wrapper for Python"; homepage = "https://github.com/unicurses/unicurses"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ michaelBelsanti ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ michaelBelsanti ]; }; } diff --git a/pkgs/development/python-modules/unidecode/default.nix b/pkgs/development/python-modules/unidecode/default.nix index 546ba2381d0a..077606527740 100644 --- a/pkgs/development/python-modules/unidecode/default.nix +++ b/pkgs/development/python-modules/unidecode/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { description = "ASCII transliterations of Unicode text"; mainProgram = "unidecode"; homepage = "https://github.com/avian2/unidecode"; changelog = "https://github.com/avian2/unidecode/blob/unidecode-${version}/ChangeLog"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/unidic-lite/default.nix b/pkgs/development/python-modules/unidic-lite/default.nix index e5b136790171..77463f4c839c 100644 --- a/pkgs/development/python-modules/unidic-lite/default.nix +++ b/pkgs/development/python-modules/unidic-lite/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "unidic_lite" ]; - meta = with lib; { + meta = { description = "Small version of UniDic"; homepage = "https://github.com/polm/unidic-lite"; - license = licenses.mit; - teams = [ teams.tts ]; + license = lib.licenses.mit; + teams = [ lib.teams.tts ]; }; } diff --git a/pkgs/development/python-modules/unidic/default.nix b/pkgs/development/python-modules/unidic/default.nix index 02f6d4d6bd80..7204b2ddbae7 100644 --- a/pkgs/development/python-modules/unidic/default.nix +++ b/pkgs/development/python-modules/unidic/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "unidic" ]; - meta = with lib; { + meta = { description = "Contemporary Written Japanese dictionary"; homepage = "https://github.com/polm/unidic-py"; - license = licenses.mit; - maintainers = with maintainers; [ laurent-f1z1 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ laurent-f1z1 ]; }; } diff --git a/pkgs/development/python-modules/unidiff/default.nix b/pkgs/development/python-modules/unidiff/default.nix index 3f2034098dc0..f7586231e2dc 100644 --- a/pkgs/development/python-modules/unidiff/default.nix +++ b/pkgs/development/python-modules/unidiff/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "unidiff" ]; - meta = with lib; { + meta = { description = "Unified diff python parsing/metadata extraction library"; mainProgram = "unidiff"; homepage = "https://github.com/matiasb/python-unidiff"; changelog = "https://github.com/matiasb/python-unidiff/raw/v${version}/HISTORY"; - license = licenses.mit; - maintainers = [ maintainers.pbsds ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.pbsds ]; }; } diff --git a/pkgs/development/python-modules/unifi-discovery/default.nix b/pkgs/development/python-modules/unifi-discovery/default.nix index 317d6e524452..17443b72d145 100644 --- a/pkgs/development/python-modules/unifi-discovery/default.nix +++ b/pkgs/development/python-modules/unifi-discovery/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "unifi_discovery" ]; - meta = with lib; { + meta = { description = "Module to discover Unifi devices"; homepage = "https://github.com/bdraco/unifi-discovery"; changelog = "https://github.com/bdraco/unifi-discovery/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/unifiled/default.nix b/pkgs/development/python-modules/unifiled/default.nix index b4aff6965c18..c05ebcab4c7d 100644 --- a/pkgs/development/python-modules/unifiled/default.nix +++ b/pkgs/development/python-modules/unifiled/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "unifiled" ]; - meta = with lib; { + meta = { description = "Python module for Ubiquiti Unifi LED controller"; homepage = "https://github.com/florisvdk/unifiled"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/unify/default.nix b/pkgs/development/python-modules/unify/default.nix index 95393e5d0c6d..daad747a52d9 100644 --- a/pkgs/development/python-modules/unify/default.nix +++ b/pkgs/development/python-modules/unify/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "test_format_code_with_backslash_in_comment" ]; - meta = with lib; { + meta = { description = "Modifies strings to all use the same quote where possible"; mainProgram = "unify"; homepage = "https://github.com/myint/unify"; - license = licenses.mit; - maintainers = with maintainers; [ FlorianFranzen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ FlorianFranzen ]; }; } diff --git a/pkgs/development/python-modules/unique-log-filter/default.nix b/pkgs/development/python-modules/unique-log-filter/default.nix index 4800df2fc361..994c7a88fa7d 100644 --- a/pkgs/development/python-modules/unique-log-filter/default.nix +++ b/pkgs/development/python-modules/unique-log-filter/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "unique_log_filter" ]; - meta = with lib; { + meta = { description = "Log filter that removes duplicate log messages"; homepage = "https://github.com/twizmwazin/unique_log_filter"; changelog = "https://github.com/twizmwazin/unique_log_filter/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/unittest-data-provider/default.nix b/pkgs/development/python-modules/unittest-data-provider/default.nix index a9deef7e2eab..8a0670fa6e2c 100644 --- a/pkgs/development/python-modules/unittest-data-provider/default.nix +++ b/pkgs/development/python-modules/unittest-data-provider/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "1gn2ka4vqpayx4cpbp8712agqjh3wdpk9smdxnp709ccc2v7zg46"; }; - meta = with lib; { + meta = { description = "PHPUnit-like @dataprovider decorator for unittest"; homepage = "https://github.com/yourlabs/unittest-data-provider"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/unittest-xml-reporting/default.nix b/pkgs/development/python-modules/unittest-xml-reporting/default.nix index e3b7f3ea8e9f..bc65eb501b8d 100644 --- a/pkgs/development/python-modules/unittest-xml-reporting/default.nix +++ b/pkgs/development/python-modules/unittest-xml-reporting/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmlrunner" ]; - meta = with lib; { + meta = { description = "Unittest-based test runner with Ant/JUnit like XML reporting"; homepage = "https://github.com/xmlrunner/unittest-xml-reporting"; changelog = "https://github.com/xmlrunner/unittest-xml-reporting/releases/tag/${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ rprospero ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ rprospero ]; }; } diff --git a/pkgs/development/python-modules/univers/default.nix b/pkgs/development/python-modules/univers/default.nix index 3924b54ed2be..108670ba09af 100644 --- a/pkgs/development/python-modules/univers/default.nix +++ b/pkgs/development/python-modules/univers/default.nix @@ -56,16 +56,16 @@ buildPythonPackage rec { "test_semver_version" ]; - meta = with lib; { + meta = { description = "Library for parsing version ranges and expressions"; homepage = "https://github.com/aboutcode-org/univers"; changelog = "https://github.com/aboutcode-org/univers/blob/v${version}/CHANGELOG.rst"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ armijnhemel sbruder ]; diff --git a/pkgs/development/python-modules/universal-pathlib/default.nix b/pkgs/development/python-modules/universal-pathlib/default.nix index d5acaff2b326..30db8d3a8671 100644 --- a/pkgs/development/python-modules/universal-pathlib/default.nix +++ b/pkgs/development/python-modules/universal-pathlib/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "upath" ]; - meta = with lib; { + meta = { description = "Pathlib api extended to use fsspec backends"; homepage = "https://github.com/fsspec/universal_pathlib"; changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/universal-silabs-flasher/default.nix b/pkgs/development/python-modules/universal-silabs-flasher/default.nix index ef748c1ac104..f5ccce6c66f0 100644 --- a/pkgs/development/python-modules/universal-silabs-flasher/default.nix +++ b/pkgs/development/python-modules/universal-silabs-flasher/default.nix @@ -67,12 +67,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "universal_silabs_flasher" ]; - meta = with lib; { + meta = { changelog = "https://github.com/NabuCasa/universal-silabs-flasher/releases/tag/${src.tag}"; description = "Flashes Silicon Labs radios running EmberZNet or CPC multi-pan firmware"; mainProgram = "universal-silabs-flasher"; homepage = "https://github.com/NabuCasa/universal-silabs-flasher"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/unix-ar/default.nix b/pkgs/development/python-modules/unix-ar/default.nix index 04155e74221e..b4875f96294f 100644 --- a/pkgs/development/python-modules/unix-ar/default.nix +++ b/pkgs/development/python-modules/unix-ar/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { hash = "sha256-Kstxi8Ewi/gOW52iYU2CQswv475M2LL9Rxm84Ymq/PE="; }; - meta = with lib; { + meta = { description = "AR file handling for Python (including .deb files)"; homepage = "https://github.com/getninjas/unix_ar"; - license = licenses.bsd3; - maintainers = with maintainers; [ tirimia ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ tirimia ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/development/python-modules/unpaddedbase64/default.nix b/pkgs/development/python-modules/unpaddedbase64/default.nix index 786392e556db..f45ffc6078a3 100644 --- a/pkgs/development/python-modules/unpaddedbase64/default.nix +++ b/pkgs/development/python-modules/unpaddedbase64/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { nativeBuildInputs = [ poetry-core ]; - meta = with lib; { + meta = { homepage = "https://github.com/matrix-org/python-unpaddedbase64"; description = "Unpadded Base64"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/unrardll/default.nix b/pkgs/development/python-modules/unrardll/default.nix index b539d805f66e..2eea89693ca8 100644 --- a/pkgs/development/python-modules/unrardll/default.nix +++ b/pkgs/development/python-modules/unrardll/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "unrardll" ]; - meta = with lib; { + meta = { description = "Wrap the Unrar DLL to enable unraring of files in python"; homepage = "https://github.com/kovidgoyal/unrardll"; - license = licenses.bsd3; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/unrpa/default.nix b/pkgs/development/python-modules/unrpa/default.nix index b806af03a2c1..765753dfdc05 100644 --- a/pkgs/development/python-modules/unrpa/default.nix +++ b/pkgs/development/python-modules/unrpa/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { # upstream has no unit tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/Lattyware/unrpa"; changelog = "https://github.com/Lattyware/unrpa/releases/tag/${version}"; description = "Program to extract files from the RPA archive format"; mainProgram = "unrpa"; - license = licenses.gpl3; - maintainers = with maintainers; [ leo60228 ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ leo60228 ]; }; } diff --git a/pkgs/development/python-modules/unstructured-api-tools/default.nix b/pkgs/development/python-modules/unstructured-api-tools/default.nix index af5d0dc4c553..324bd781bf39 100644 --- a/pkgs/development/python-modules/unstructured-api-tools/default.nix +++ b/pkgs/development/python-modules/unstructured-api-tools/default.nix @@ -85,12 +85,12 @@ buildPythonPackage { pytest-mock ]; - meta = with lib; { + meta = { description = ""; mainProgram = "unstructured_api_tools"; homepage = "https://github.com/Unstructured-IO/unstructured-api-tools"; changelog = "https://github.com/Unstructured-IO/unstructured-api-tools/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/unstructured-inference/default.nix b/pkgs/development/python-modules/unstructured-inference/default.nix index 3192eb3132e5..59d41336db59 100644 --- a/pkgs/development/python-modules/unstructured-inference/default.nix +++ b/pkgs/development/python-modules/unstructured-inference/default.nix @@ -95,12 +95,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "unstructured_inference" ]; - meta = with lib; { + meta = { description = "Hosted model inference code for layout parsing models"; homepage = "https://github.com/Unstructured-IO/unstructured-inference"; changelog = "https://github.com/Unstructured-IO/unstructured-inference/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/development/python-modules/unstructured/default.nix b/pkgs/development/python-modules/unstructured/default.nix index beb47c87e7ca..1cf7ac67aa0e 100644 --- a/pkgs/development/python-modules/unstructured/default.nix +++ b/pkgs/development/python-modules/unstructured/default.nix @@ -274,12 +274,12 @@ buildPythonPackage rec { grpcio ]; - meta = with lib; { + meta = { description = "Open source libraries and APIs to build custom preprocessing pipelines for labeling, training, or production machine learning pipelines"; mainProgram = "unstructured-ingest"; homepage = "https://github.com/Unstructured-IO/unstructured"; changelog = "https://github.com/Unstructured-IO/unstructured/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/untangle/default.nix b/pkgs/development/python-modules/untangle/default.nix index 59b8ba763c8e..e28e8c57110a 100644 --- a/pkgs/development/python-modules/untangle/default.nix +++ b/pkgs/development/python-modules/untangle/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { "tests" ]; - meta = with lib; { + meta = { description = "Convert XML documents into Python objects"; homepage = "https://github.com/stchris/untangle"; - license = licenses.mit; - maintainers = [ maintainers.arnoldfarkas ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/untokenize/default.nix b/pkgs/development/python-modules/untokenize/default.nix index e4f6eea843e1..be7c41eed599 100644 --- a/pkgs/development/python-modules/untokenize/default.nix +++ b/pkgs/development/python-modules/untokenize/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Transforms tokens into original source code while preserving whitespace"; homepage = "https://github.com/myint/untokenize"; - license = licenses.mit; - maintainers = with maintainers; [ FlorianFranzen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ FlorianFranzen ]; }; } diff --git a/pkgs/development/python-modules/uonet-request-signer-hebe/default.nix b/pkgs/development/python-modules/uonet-request-signer-hebe/default.nix index 3e8fc7fc5f2f..4881d66114ba 100644 --- a/pkgs/development/python-modules/uonet-request-signer-hebe/default.nix +++ b/pkgs/development/python-modules/uonet-request-signer-hebe/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uonet_request_signer_hebe" ]; - meta = with lib; { + meta = { description = "UONET+ (hebe) request signer for Python"; homepage = "https://github.com/wulkanowy/uonet-request-signer"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/upass/default.nix b/pkgs/development/python-modules/upass/default.nix index 9dbbe1b8bf4f..e14ac62c747f 100644 --- a/pkgs/development/python-modules/upass/default.nix +++ b/pkgs/development/python-modules/upass/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "upass" ]; - meta = with lib; { + meta = { description = "Console UI for pass"; mainProgram = "upass"; homepage = "https://github.com/Kwpolska/upass"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/upcloud-api/default.nix b/pkgs/development/python-modules/upcloud-api/default.nix index d6e6a0241d5b..19c18851adf5 100644 --- a/pkgs/development/python-modules/upcloud-api/default.nix +++ b/pkgs/development/python-modules/upcloud-api/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "upcloud_api" ]; - meta = with lib; { + meta = { changelog = "https://github.com/UpCloudLtd/upcloud-python-api/blob/${src.tag}/CHANGELOG.md"; description = "UpCloud API Client"; homepage = "https://github.com/UpCloudLtd/upcloud-python-api"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/update-checker/default.nix b/pkgs/development/python-modules/update-checker/default.nix index 848028378a45..54dc1c552357 100644 --- a/pkgs/development/python-modules/update-checker/default.nix +++ b/pkgs/development/python-modules/update-checker/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { # requires network doCheck = false; - meta = with lib; { + meta = { description = "Python module that will check for package updates"; homepage = "https://github.com/bboe/update_checker"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/update-copyright/default.nix b/pkgs/development/python-modules/update-copyright/default.nix index 1ad99b7ff4bd..65590975f188 100644 --- a/pkgs/development/python-modules/update-copyright/default.nix +++ b/pkgs/development/python-modules/update-copyright/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { sha256 = "17ybdgbdc62yqhda4kfy1vcs1yzp78d91qfhj5zbvz1afvmvdk7z"; }; - meta = with lib; { + meta = { description = "Automatic copyright update tool"; mainProgram = "update-copyright.py"; homepage = "http://blog.tremily.us/posts/update-copyright"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/update-dotdee/default.nix b/pkgs/development/python-modules/update-dotdee/default.nix index d6f92a0e4061..834fcab35d41 100644 --- a/pkgs/development/python-modules/update-dotdee/default.nix +++ b/pkgs/development/python-modules/update-dotdee/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "test_executable" ]; - meta = with lib; { + meta = { description = "Generic modularized configuration file manager"; mainProgram = "update-dotdee"; homepage = "https://github.com/xolox/python-update-dotdee"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/uplc/default.nix b/pkgs/development/python-modules/uplc/default.nix index 02970d581f6c..f0b808ef35c1 100644 --- a/pkgs/development/python-modules/uplc/default.nix +++ b/pkgs/development/python-modules/uplc/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { cbor2 = cbor2WithoutCExtensions; }; - meta = with lib; { + meta = { description = "Python implementation of untyped plutus language core"; homepage = "https://github.com/OpShin/uplc"; - license = licenses.mit; - maintainers = with maintainers; [ aciceri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aciceri ]; mainProgram = "opshin"; }; } diff --git a/pkgs/development/python-modules/upnpy/default.nix b/pkgs/development/python-modules/upnpy/default.nix index 7bddf9803e64..4e16b9e9da44 100644 --- a/pkgs/development/python-modules/upnpy/default.nix +++ b/pkgs/development/python-modules/upnpy/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "upnpy" ]; - meta = with lib; { + meta = { description = "UPnP client library for Python"; homepage = "https://github.com/5kyc0d3r/upnpy"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/uptime-kuma-api/default.nix b/pkgs/development/python-modules/uptime-kuma-api/default.nix index 7d1e6cb975f6..981ea4f81a1a 100644 --- a/pkgs/development/python-modules/uptime-kuma-api/default.nix +++ b/pkgs/development/python-modules/uptime-kuma-api/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # Tests need an uptime-kuma instance to run doCheck = false; - meta = with lib; { + meta = { description = "Python wrapper for the Uptime Kuma Socket.IO API"; homepage = "https://github.com/lucasheld/uptime-kuma-api"; changelog = "https://github.com/lucasheld/uptime-kuma-api/blob/${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ julienmalka ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ julienmalka ]; }; } diff --git a/pkgs/development/python-modules/uptime-kuma-monitor/default.nix b/pkgs/development/python-modules/uptime-kuma-monitor/default.nix index dcc901125d66..f7a543c62333 100644 --- a/pkgs/development/python-modules/uptime-kuma-monitor/default.nix +++ b/pkgs/development/python-modules/uptime-kuma-monitor/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uptime_kuma_monitor" ]; - meta = with lib; { + meta = { description = "Python wrapper around UptimeKuma /metrics endpoint"; homepage = "https://github.com/meichthys/utptime_kuma_monitor"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/uptime/default.nix b/pkgs/development/python-modules/uptime/default.nix index d20bd4dc5506..afe5a5128843 100644 --- a/pkgs/development/python-modules/uptime/default.nix +++ b/pkgs/development/python-modules/uptime/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uptime" ]; - meta = with lib; { + meta = { description = "Cross-platform way to retrieve system uptime and boot time"; homepage = "https://github.com/Cairnarvon/uptime"; - license = licenses.bsd2; - maintainers = with maintainers; [ rob ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ rob ]; }; } diff --git a/pkgs/development/python-modules/uqbar/default.nix b/pkgs/development/python-modules/uqbar/default.nix index b768e915bd3f..d46a293409c1 100644 --- a/pkgs/development/python-modules/uqbar/default.nix +++ b/pkgs/development/python-modules/uqbar/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "uqbar" ]; - meta = with lib; { + meta = { description = "Tools for creating Sphinx and Graphviz documentation"; homepage = "https://github.com/josiah-wolf-oberholtzer/uqbar"; changelog = "https://github.com/josiah-wolf-oberholtzer/uqbar/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ davisrichard437 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ davisrichard437 ]; }; } diff --git a/pkgs/development/python-modules/uranium/default.nix b/pkgs/development/python-modules/uranium/default.nix index 88adb319bc29..8c621c008205 100644 --- a/pkgs/development/python-modules/uranium/default.nix +++ b/pkgs/development/python-modules/uranium/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { UM/Application.py ''; - meta = with lib; { + meta = { description = "Python framework for building Desktop applications"; homepage = "https://github.com/Ultimaker/Uranium"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/uri-template/default.nix b/pkgs/development/python-modules/uri-template/default.nix index c96b60c1baf2..8fcb7b5c0bc7 100644 --- a/pkgs/development/python-modules/uri-template/default.nix +++ b/pkgs/development/python-modules/uri-template/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uri_template" ]; - meta = with lib; { + meta = { description = "Implementation of RFC 6570 URI Templates"; homepage = "https://github.com/plinss/uri_template/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/uritemplate/default.nix b/pkgs/development/python-modules/uritemplate/default.nix index 2cf866a315b2..0df8edf386ab 100644 --- a/pkgs/development/python-modules/uritemplate/default.nix +++ b/pkgs/development/python-modules/uritemplate/default.nix @@ -25,14 +25,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "uritemplate" ]; - meta = with lib; { + meta = { description = "Implementation of RFC 6570 URI templates"; homepage = "https://github.com/python-hyper/uritemplate"; changelog = "https://github.com/python-hyper/uritemplate/blob/${version}/HISTORY.rst"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 ]; - maintainers = with maintainers; [ matthiasbeyer ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/uritools/default.nix b/pkgs/development/python-modules/uritools/default.nix index 101034a62f87..eb43ddb6ea18 100644 --- a/pkgs/development/python-modules/uritools/default.nix +++ b/pkgs/development/python-modules/uritools/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "uritools" ]; - meta = with lib; { + meta = { description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse"; homepage = "https://github.com/tkem/uritools/"; changelog = "https://github.com/tkem/uritools/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ rvolosatovs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rvolosatovs ]; }; } diff --git a/pkgs/development/python-modules/urlextract/default.nix b/pkgs/development/python-modules/urlextract/default.nix index d7a605b69d69..c59cf10c7e76 100644 --- a/pkgs/development/python-modules/urlextract/default.nix +++ b/pkgs/development/python-modules/urlextract/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "urlextract" ]; - meta = with lib; { + meta = { description = "Collects and extracts URLs from given text"; mainProgram = "urlextract"; homepage = "https://github.com/lipoja/URLExtract"; changelog = "https://github.com/lipoja/URLExtract/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ ilkecan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ilkecan ]; }; } diff --git a/pkgs/development/python-modules/urlgrabber/default.nix b/pkgs/development/python-modules/urlgrabber/default.nix index 11d97578bae9..75c0fa5829bc 100644 --- a/pkgs/development/python-modules/urlgrabber/default.nix +++ b/pkgs/development/python-modules/urlgrabber/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { homepage = "http://urlgrabber.baseurl.org"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; description = "Python module for downloading files"; mainProgram = "urlgrabber"; - maintainers = with maintainers; [ qknight ]; + maintainers = with lib.maintainers; [ qknight ]; }; } diff --git a/pkgs/development/python-modules/urllib3/default.nix b/pkgs/development/python-modules/urllib3/default.nix index cdb50f45df0d..b8404d98e988 100644 --- a/pkgs/development/python-modules/urllib3/default.nix +++ b/pkgs/development/python-modules/urllib3/default.nix @@ -79,12 +79,12 @@ let pythonImportsCheck = [ "urllib3" ]; - meta = with lib; { + meta = { description = "Powerful, user-friendly HTTP client for Python"; homepage = "https://github.com/urllib3/urllib3"; changelog = "https://github.com/urllib3/urllib3/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; }; in diff --git a/pkgs/development/python-modules/urlman/default.nix b/pkgs/development/python-modules/urlman/default.nix index fb6ca4ebb5e9..2198decd752d 100644 --- a/pkgs/development/python-modules/urlman/default.nix +++ b/pkgs/development/python-modules/urlman/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Django URL pattern helpers"; homepage = "https://github.com/andrewgodwin/urlman"; changelog = "https://github.com/andrewgodwin/urlman/blob/${src.rev}/CHANGELOG"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/urlpy/default.nix b/pkgs/development/python-modules/urlpy/default.nix index fda5519701fa..7e1fc83509aa 100644 --- a/pkgs/development/python-modules/urlpy/default.nix +++ b/pkgs/development/python-modules/urlpy/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "urlpy" ]; - meta = with lib; { + meta = { description = "Simple URL parsing, canonicalization and equivalence"; homepage = "https://github.com/nexB/urlpy"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/urwid-readline/default.nix b/pkgs/development/python-modules/urwid-readline/default.nix index bac278b2b3be..3410e0442126 100644 --- a/pkgs/development/python-modules/urwid-readline/default.nix +++ b/pkgs/development/python-modules/urwid-readline/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Textbox edit widget for urwid that supports readline shortcuts"; homepage = "https://github.com/rr-/urwid_readline"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/urwid/default.nix b/pkgs/development/python-modules/urwid/default.nix index 9b79dce6a1fb..03a9dbaab902 100644 --- a/pkgs/development/python-modules/urwid/default.nix +++ b/pkgs/development/python-modules/urwid/default.nix @@ -78,12 +78,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "urwid" ]; - meta = with lib; { + meta = { description = "Full-featured console (xterm et al.) user interface library"; changelog = "https://github.com/urwid/urwid/releases/tag/${src.tag}"; downloadPage = "https://github.com/urwid/urwid"; homepage = "https://urwid.org/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/urwidgets/default.nix b/pkgs/development/python-modules/urwidgets/default.nix index 7533e545978d..f2c62bee143e 100644 --- a/pkgs/development/python-modules/urwidgets/default.nix +++ b/pkgs/development/python-modules/urwidgets/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "urwidgets" ]; - meta = with lib; { + meta = { description = "Collection of widgets for urwid"; homepage = "https://github.com/AnonymouX47/urwidgets"; changelog = "https://github.com/AnonymouX47/urwidgets/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ huyngo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ huyngo ]; }; } diff --git a/pkgs/development/python-modules/urwidtrees/default.nix b/pkgs/development/python-modules/urwidtrees/default.nix index f9085a6479a4..a05eb6734806 100644 --- a/pkgs/development/python-modules/urwidtrees/default.nix +++ b/pkgs/development/python-modules/urwidtrees/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "urwidtrees" ]; - meta = with lib; { + meta = { description = "Tree widgets for urwid"; homepage = "https://github.com/pazz/urwidtrees"; changelog = "https://github.com/pazz/urwidtrees/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/usb-devices/default.nix b/pkgs/development/python-modules/usb-devices/default.nix index d3a3a7797202..8fbab5045cde 100644 --- a/pkgs/development/python-modules/usb-devices/default.nix +++ b/pkgs/development/python-modules/usb-devices/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "usb_devices" ]; - meta = with lib; { + meta = { description = "Library for for mapping, describing, and resetting USB devices"; homepage = "https://github.com/Bluetooth-Devices/usb-devices"; changelog = "https://github.com/Bluetooth-Devices/usb-devices/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/usbtmc/default.nix b/pkgs/development/python-modules/usbtmc/default.nix index 9220c3acde9e..7e933a6c98c5 100644 --- a/pkgs/development/python-modules/usbtmc/default.nix +++ b/pkgs/development/python-modules/usbtmc/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ pyusb ]; - meta = with lib; { + meta = { description = "Python implementation of the USBTMC instrument control protocol"; homepage = "http://alexforencich.com/wiki/en/python-usbtmc/start"; - license = licenses.mit; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/development/python-modules/user-agents/default.nix b/pkgs/development/python-modules/user-agents/default.nix index 1da16e9c6864..072c3185b234 100644 --- a/pkgs/development/python-modules/user-agents/default.nix +++ b/pkgs/development/python-modules/user-agents/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { propagatedBuildInputs = [ ua-parser ]; - meta = with lib; { + meta = { description = "Python library to identify devices by parsing user agent strings"; homepage = "https://github.com/selwin/python-user-agents"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/userpath/default.nix b/pkgs/development/python-modules/userpath/default.nix index 20c387615c48..c312d6aa8c28 100644 --- a/pkgs/development/python-modules/userpath/default.nix +++ b/pkgs/development/python-modules/userpath/default.nix @@ -28,15 +28,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "userpath" ]; - meta = with lib; { + meta = { description = "Cross-platform tool for adding locations to the user PATH"; mainProgram = "userpath"; homepage = "https://github.com/ofek/userpath"; changelog = "https://github.com/ofek/userpath/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ yshym ]; + maintainers = with lib.maintainers; [ yshym ]; }; } diff --git a/pkgs/development/python-modules/ush/default.nix b/pkgs/development/python-modules/ush/default.nix index 714bb5a630b0..9989eec1f271 100644 --- a/pkgs/development/python-modules/ush/default.nix +++ b/pkgs/development/python-modules/ush/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { "tests/test_glob.py" ]; - meta = with lib; { + meta = { description = "Powerful API for invoking with external commands"; homepage = "https://github.com/tarruda/python-ush"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/usort/default.nix b/pkgs/development/python-modules/usort/default.nix index 2420884befc2..18fa3af34695 100644 --- a/pkgs/development/python-modules/usort/default.nix +++ b/pkgs/development/python-modules/usort/default.nix @@ -49,12 +49,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "usort" ]; - meta = with lib; { + meta = { description = "Safe, minimal import sorting for Python projects"; homepage = "https://github.com/facebook/usort"; changelog = "https://github.com/facebook/usort/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "usort"; }; } diff --git a/pkgs/development/python-modules/utils/default.nix b/pkgs/development/python-modules/utils/default.nix index e76fa6e6bab0..d7d229d44ed7 100644 --- a/pkgs/development/python-modules/utils/default.nix +++ b/pkgs/development/python-modules/utils/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "utils" ]; - meta = with lib; { + meta = { description = "Python set of utility functions and objects"; homepage = "https://github.com/haaksmash/pyutils"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/uvcclient/default.nix b/pkgs/development/python-modules/uvcclient/default.nix index 3adfecf98698..1585ee382b30 100644 --- a/pkgs/development/python-modules/uvcclient/default.nix +++ b/pkgs/development/python-modules/uvcclient/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/uilibs/uvcclient/blob/${src.rev}/CHANGELOG.md"; description = "Client for Ubiquiti's Unifi Camera NVR"; mainProgram = "uvc"; homepage = "https://github.com/kk7ds/uvcclient"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/uvicorn/default.nix b/pkgs/development/python-modules/uvicorn/default.nix index ed7eb42839f7..d9ff8740716b 100644 --- a/pkgs/development/python-modules/uvicorn/default.nix +++ b/pkgs/development/python-modules/uvicorn/default.nix @@ -66,12 +66,12 @@ buildPythonPackage rec { pytest = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { homepage = "https://www.uvicorn.org/"; changelog = "https://github.com/encode/uvicorn/blob/${src.tag}/CHANGELOG.md"; description = "Lightning-fast ASGI server"; mainProgram = "uvicorn"; - license = licenses.bsd3; - maintainers = with maintainers; [ wd15 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ wd15 ]; }; } diff --git a/pkgs/development/python-modules/uvloop/default.nix b/pkgs/development/python-modules/uvloop/default.nix index 63251d02f9cf..ed4c643c2245 100644 --- a/pkgs/development/python-modules/uvloop/default.nix +++ b/pkgs/development/python-modules/uvloop/default.nix @@ -99,11 +99,11 @@ buildPythonPackage rec { # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { changelog = "https://github.com/MagicStack/uvloop/releases/tag/v${version}"; description = "Fast implementation of asyncio event loop on top of libuv"; homepage = "https://github.com/MagicStack/uvloop"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/uxsim/default.nix b/pkgs/development/python-modules/uxsim/default.nix index 43060fa388c1..428881cb2f06 100644 --- a/pkgs/development/python-modules/uxsim/default.nix +++ b/pkgs/development/python-modules/uxsim/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { --replace-fail '$NIX_QT_PLUGIN_PATH' '${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix}' ''; - meta = with lib; { + meta = { changelog = "https://github.com/toruseo/UXsim/releases/tag/${src.tag}"; description = "Vehicular traffic flow simulator in road network, written in pure Python"; homepage = "https://github.com/toruseo/UXsim"; - license = licenses.mit; - maintainers = with maintainers; [ vinnymeller ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vinnymeller ]; }; } diff --git a/pkgs/development/python-modules/vaa/default.nix b/pkgs/development/python-modules/vaa/default.nix index 614ab6a53ed2..01d8bd927da9 100644 --- a/pkgs/development/python-modules/vaa/default.nix +++ b/pkgs/development/python-modules/vaa/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vaa" ]; - meta = with lib; { + meta = { description = "VAlidators Adapter makes validation by any existing validator with the same interface"; homepage = "https://github.com/life4/vaa"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/vacuum-map-parser-base/default.nix b/pkgs/development/python-modules/vacuum-map-parser-base/default.nix index 4470581880f3..544ba4356012 100644 --- a/pkgs/development/python-modules/vacuum-map-parser-base/default.nix +++ b/pkgs/development/python-modules/vacuum-map-parser-base/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vacuum_map_parser_base" ]; - meta = with lib; { + meta = { homepage = "https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-base"; description = "Common code for vacuum map parsers"; changelog = "https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-base/releases/tag/${src.tag}"; - maintainers = with maintainers; [ jamiemagee ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ jamiemagee ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/vacuum-map-parser-roborock/default.nix b/pkgs/development/python-modules/vacuum-map-parser-roborock/default.nix index d2bd88d1783e..9c2b794d149c 100644 --- a/pkgs/development/python-modules/vacuum-map-parser-roborock/default.nix +++ b/pkgs/development/python-modules/vacuum-map-parser-roborock/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vacuum_map_parser_roborock" ]; - meta = with lib; { + meta = { description = "Functionalities for Roborock vacuum map parsing"; homepage = "https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-roborock"; changelog = "https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-roborock/releases/tag/${src.tag}"; - maintainers = with maintainers; [ jamiemagee ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ jamiemagee ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/validate-email/default.nix b/pkgs/development/python-modules/validate-email/default.nix index 441a0671461c..99413a899e4f 100644 --- a/pkgs/development/python-modules/validate-email/default.nix +++ b/pkgs/development/python-modules/validate-email/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "validate_email" ]; - meta = with lib; { + meta = { description = "Verify if an email address is valid and really exists"; homepage = "https://github.com/syrusakbary/validate_email"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ mmahut ]; }; } diff --git a/pkgs/development/python-modules/validator-collection/default.nix b/pkgs/development/python-modules/validator-collection/default.nix index f21a13bc81de..95da53abde9a 100644 --- a/pkgs/development/python-modules/validator-collection/default.nix +++ b/pkgs/development/python-modules/validator-collection/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_is_readable" ]; - meta = with lib; { + meta = { description = "Python library of 60+ commonly-used validator functions"; homepage = "https://github.com/insightindustry/validator-collection/"; changelog = "https://github.com/insightindustry/validator-collection/blob/${src.rev}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/validators/default.nix b/pkgs/development/python-modules/validators/default.nix index 59b1177247f6..e70521b24b0b 100644 --- a/pkgs/development/python-modules/validators/default.nix +++ b/pkgs/development/python-modules/validators/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "validators" ]; - meta = with lib; { + meta = { description = "Python Data Validation for Humans"; homepage = "https://github.com/python-validators/validators"; changelog = "https://github.com/python-validators/validators/blob/${version}/CHANGES.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/validobj/default.nix b/pkgs/development/python-modules/validobj/default.nix index 41f2c2924f6a..6f0d9b8555b0 100644 --- a/pkgs/development/python-modules/validobj/default.nix +++ b/pkgs/development/python-modules/validobj/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "validobj" ]; - meta = with lib; { + meta = { description = "Validobj is library that takes semistructured data (for example JSON and YAML configuration files) and converts it to more structured Python objects"; homepage = "https://github.com/Zaharid/validobj"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/variants/default.nix b/pkgs/development/python-modules/variants/default.nix index 5aa3c89afd1b..468034ba58d8 100644 --- a/pkgs/development/python-modules/variants/default.nix +++ b/pkgs/development/python-modules/variants/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "variants" ]; - meta = with lib; { + meta = { description = "Library providing syntactic sugar for creating variant forms of a canonical function"; homepage = "https://github.com/python-variants/variants"; changelog = "https://github.com/python-variants/variants/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/varint/default.nix b/pkgs/development/python-modules/varint/default.nix index 4430fd84f318..e8741ebeca82 100644 --- a/pkgs/development/python-modules/varint/default.nix +++ b/pkgs/development/python-modules/varint/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "varint" ]; - meta = with lib; { + meta = { description = "Basic varint implementation in python"; homepage = "https://github.com/fmoo/python-varint"; - license = licenses.mit; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/vat-moss/default.nix b/pkgs/development/python-modules/vat-moss/default.nix index 8a61f4494f21..2d6fe2fc29a8 100644 --- a/pkgs/development/python-modules/vat-moss/default.nix +++ b/pkgs/development/python-modules/vat-moss/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "tests/test_id.py" ]; - meta = with lib; { + meta = { description = "Python library for dealing with VAT MOSS and Norway VAT on digital services. Includes VAT ID validation, rate calculation based on place of supply, exchange rate and currency tools for invoices"; homepage = "https://github.com/raphaelm/vat_moss-python"; changelog = "https://github.com/raphaelm/vat_moss-python/blob/${src.rev}/changelog.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/vcrpy/default.nix b/pkgs/development/python-modules/vcrpy/default.nix index 32cc24efffa7..df7a53cac07f 100644 --- a/pkgs/development/python-modules/vcrpy/default.nix +++ b/pkgs/development/python-modules/vcrpy/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vcr" ]; - meta = with lib; { + meta = { description = "Automatically mock your HTTP interactions to simplify and speed up testing"; homepage = "https://github.com/kevin1024/vcrpy"; changelog = "https://github.com/kevin1024/vcrpy/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vcversioner/default.nix b/pkgs/development/python-modules/vcversioner/default.nix index 8362e3026241..d0f69829980e 100644 --- a/pkgs/development/python-modules/vcversioner/default.nix +++ b/pkgs/development/python-modules/vcversioner/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "16z10sm78jd7ca3jbkgc3q5i8a8q7y1h21q1li21yy3rlhbhrrns"; }; - meta = with lib; { + meta = { description = "Take version numbers from version control"; homepage = "https://github.com/habnabit/vcversioner"; - license = licenses.isc; + license = lib.licenses.isc; }; } diff --git a/pkgs/development/python-modules/vdf/default.nix b/pkgs/development/python-modules/vdf/default.nix index 1eaa92a65ef3..dbe58cc29206 100644 --- a/pkgs/development/python-modules/vdf/default.nix +++ b/pkgs/development/python-modules/vdf/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { # The python updater requires GitHub releases, but vdf only uses tags passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Library for working with Valve's VDF text format"; homepage = "https://github.com/ValvePython/vdf"; - license = licenses.mit; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kira-bruneau ]; }; } diff --git a/pkgs/development/python-modules/vega/default.nix b/pkgs/development/python-modules/vega/default.nix index 0645e6d7e8b8..1f68138bb848 100644 --- a/pkgs/development/python-modules/vega/default.nix +++ b/pkgs/development/python-modules/vega/default.nix @@ -56,7 +56,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "vega" ]; - meta = with lib; { + meta = { description = "IPython/Jupyter widget for Vega and Vega-Lite"; longDescription = '' To use this you have to enter a nix-shell with vega. Then run: @@ -65,7 +65,7 @@ buildPythonPackage rec { jupyter nbextension enable --user vega ''; homepage = "https://github.com/vega/ipyvega"; - license = licenses.bsd3; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/vehicle/default.nix b/pkgs/development/python-modules/vehicle/default.nix index 2e06c02de5c7..62302b0dc854 100644 --- a/pkgs/development/python-modules/vehicle/default.nix +++ b/pkgs/development/python-modules/vehicle/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vehicle" ]; - meta = with lib; { + meta = { description = "Python client providing RDW vehicle information"; homepage = "https://github.com/frenck/python-vehicle"; changelog = "https://github.com/frenck/python-vehicle/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/velbus-aio/default.nix b/pkgs/development/python-modules/velbus-aio/default.nix index 0c89d22794b4..cc67dbbb92bb 100644 --- a/pkgs/development/python-modules/velbus-aio/default.nix +++ b/pkgs/development/python-modules/velbus-aio/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "velbusaio" ]; - meta = with lib; { + meta = { description = "Python library to support the Velbus home automation system"; homepage = "https://github.com/Cereal2nd/velbus-aio"; changelog = "https://github.com/Cereal2nd/velbus-aio/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/venstarcolortouch/default.nix b/pkgs/development/python-modules/venstarcolortouch/default.nix index a9d0135e4fc1..8804cc9fd8b0 100644 --- a/pkgs/development/python-modules/venstarcolortouch/default.nix +++ b/pkgs/development/python-modules/venstarcolortouch/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "venstarcolortouch" ]; - meta = with lib; { + meta = { description = "Python interface for Venstar ColorTouch thermostats Resources"; homepage = "https://github.com/hpeyerl/venstar_colortouch"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/venusian/default.nix b/pkgs/development/python-modules/venusian/default.nix index 0eca47a17c1f..6b9a45b06fc0 100644 --- a/pkgs/development/python-modules/venusian/default.nix +++ b/pkgs/development/python-modules/venusian/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "Library for deferring decorator actions"; homepage = "https://pylonsproject.org/"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/verboselogs/default.nix b/pkgs/development/python-modules/verboselogs/default.nix index 63393b593fc6..15f1cb47bec5 100644 --- a/pkgs/development/python-modules/verboselogs/default.nix +++ b/pkgs/development/python-modules/verboselogs/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { "test_pylint_plugin" ]; - meta = with lib; { + meta = { description = "Verbose logging for Python's logging module"; homepage = "https://github.com/xolox/python-verboselogs"; - license = licenses.mit; - maintainers = with maintainers; [ eyjhb ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ eyjhb ]; }; } diff --git a/pkgs/development/python-modules/verlib2/default.nix b/pkgs/development/python-modules/verlib2/default.nix index 955f983abea1..60cc30b86544 100644 --- a/pkgs/development/python-modules/verlib2/default.nix +++ b/pkgs/development/python-modules/verlib2/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "verlib2" ]; - meta = with lib; { + meta = { description = "Standalone variant of packaging.version, without anything else"; homepage = "https://pypi.org/project/verlib2/"; - license = licenses.bsd2; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/versioneer/default.nix b/pkgs/development/python-modules/versioneer/default.nix index 26efcbda2dc4..382134534441 100644 --- a/pkgs/development/python-modules/versioneer/default.nix +++ b/pkgs/development/python-modules/versioneer/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "versioneer" ]; - meta = with lib; { + meta = { description = "Version-string management for VCS-controlled trees"; mainProgram = "versioneer"; homepage = "https://github.com/python-versioneer/python-versioneer"; changelog = "https://github.com/python-versioneer/python-versioneer/blob/${version}/NEWS.md"; - license = licenses.publicDomain; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/versionfinder/default.nix b/pkgs/development/python-modules/versionfinder/default.nix index f27decd2c109..e40c826d5915 100644 --- a/pkgs/development/python-modules/versionfinder/default.nix +++ b/pkgs/development/python-modules/versionfinder/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "versionfinder" ]; - meta = with lib; { + meta = { description = "Find the version of another package, whether installed via pip, setuptools or git"; homepage = "https://github.com/jantman/versionfinder"; changelog = "https://github.com/jantman/versionfinder/blob/${version}/CHANGES.rst"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; }; } diff --git a/pkgs/development/python-modules/versioningit/default.nix b/pkgs/development/python-modules/versioningit/default.nix index 802614d21df8..edd16726c0f2 100644 --- a/pkgs/development/python-modules/versioningit/default.nix +++ b/pkgs/development/python-modules/versioningit/default.nix @@ -60,12 +60,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "versioningit" ]; - meta = with lib; { + meta = { description = "Setuptools plugin for determining package version from VCS"; mainProgram = "versioningit"; homepage = "https://github.com/jwodder/versioningit"; changelog = "https://versioningit.readthedocs.io/en/latest/changelog.html"; - license = licenses.mit; - maintainers = with maintainers; [ DeeUnderscore ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DeeUnderscore ]; }; } diff --git a/pkgs/development/python-modules/versiontag/default.nix b/pkgs/development/python-modules/versiontag/default.nix index 4dbb69bd781f..1a8535b10f56 100644 --- a/pkgs/development/python-modules/versiontag/default.nix +++ b/pkgs/development/python-modules/versiontag/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "versiontag" ]; - meta = with lib; { + meta = { description = "Python library designed to make accessing the current version number of your software easy"; homepage = "https://github.com/thelabnyc/python-versiontag"; - license = licenses.isc; - maintainers = with maintainers; [ MaskedBelgian ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ MaskedBelgian ]; }; } diff --git a/pkgs/development/python-modules/versiontools/default.nix b/pkgs/development/python-modules/versiontools/default.nix index d2e3d84727f1..d812439e72bb 100644 --- a/pkgs/development/python-modules/versiontools/default.nix +++ b/pkgs/development/python-modules/versiontools/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { doCheck = (!isPy3k); - meta = with lib; { + meta = { homepage = "https://launchpad.net/versiontools"; description = "Smart replacement for plain tuple used in __version__"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/development/python-modules/verspec/default.nix b/pkgs/development/python-modules/verspec/default.nix index 2da64ec5f653..16b4125733f2 100644 --- a/pkgs/development/python-modules/verspec/default.nix +++ b/pkgs/development/python-modules/verspec/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "verspec" ]; - meta = with lib; { + meta = { description = "Flexible version handling"; homepage = "https://github.com/jimporter/verspec"; changelog = "https://github.com/jimporter/averspec/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 # and asl20 ]; diff --git a/pkgs/development/python-modules/vertica-python/default.nix b/pkgs/development/python-modules/vertica-python/default.nix index 19a8b8ba0df7..dc9c7b3f857a 100644 --- a/pkgs/development/python-modules/vertica-python/default.nix +++ b/pkgs/development/python-modules/vertica-python/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vertica_python" ]; - meta = with lib; { + meta = { description = "Native Python client for Vertica database"; homepage = "https://github.com/vertica/vertica-python"; changelog = "https://github.com/vertica/vertica-python/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/veryprettytable/default.nix b/pkgs/development/python-modules/veryprettytable/default.nix index 01ee6b6930cc..596bb2b30a35 100644 --- a/pkgs/development/python-modules/veryprettytable/default.nix +++ b/pkgs/development/python-modules/veryprettytable/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { colorama ]; - meta = with lib; { + meta = { description = "Simple Python library for easily displaying tabular data in a visually appealing ASCII table format"; homepage = "https://github.com/smeggingsmegger/VeryPrettyTable"; - license = licenses.free; + license = lib.licenses.free; }; } diff --git a/pkgs/development/python-modules/vfblib/default.nix b/pkgs/development/python-modules/vfblib/default.nix index d42f7ac4c35e..5b147d8ebad0 100644 --- a/pkgs/development/python-modules/vfblib/default.nix +++ b/pkgs/development/python-modules/vfblib/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Converter and deserializer for FontLab Studio 5 VFB files"; homepage = "https://github.com/LucasFonts/vfbLib"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jopejoe1 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/vharfbuzz/default.nix b/pkgs/development/python-modules/vharfbuzz/default.nix index 7b06fe7a8252..38669ea02718 100644 --- a/pkgs/development/python-modules/vharfbuzz/default.nix +++ b/pkgs/development/python-modules/vharfbuzz/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vharfbuzz" ]; - meta = with lib; { + meta = { description = "Utility for removing hinting data from TrueType and OpenType fonts"; homepage = "https://github.com/source-foundry/dehinter"; - license = licenses.asl20; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/videocr/default.nix b/pkgs/development/python-modules/videocr/default.nix index ed37faf4bb1f..0be19fa99e43 100644 --- a/pkgs/development/python-modules/videocr/default.nix +++ b/pkgs/development/python-modules/videocr/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "videocr" ]; - meta = with lib; { + meta = { description = "Extract hardcoded subtitles from videos using machine learning"; homepage = "https://github.com/apm1467/videocr"; - license = licenses.mit; - maintainers = with maintainers; [ ozkutuk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ozkutuk ]; }; } diff --git a/pkgs/development/python-modules/vidstab/default.nix b/pkgs/development/python-modules/vidstab/default.nix index fb41510d12dd..d216f69ac3bd 100644 --- a/pkgs/development/python-modules/vidstab/default.nix +++ b/pkgs/development/python-modules/vidstab/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "vidstab" ]; - meta = with lib; { + meta = { homepage = "https://github.com/AdamSpannbauer/python_video_stab"; description = "Video Stabilization using OpenCV"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vilfo-api-client/default.nix b/pkgs/development/python-modules/vilfo-api-client/default.nix index 763445cc9ad0..e0cda56a9349 100644 --- a/pkgs/development/python-modules/vilfo-api-client/default.nix +++ b/pkgs/development/python-modules/vilfo-api-client/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vilfo" ]; - meta = with lib; { + meta = { description = "Simple wrapper client for the Vilfo router API"; homepage = "https://github.com/ManneW/vilfo-api-client-python"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/vincenty/default.nix b/pkgs/development/python-modules/vincenty/default.nix index c4e28ff23f44..2f0fc2fd5d2b 100644 --- a/pkgs/development/python-modules/vincenty/default.nix +++ b/pkgs/development/python-modules/vincenty/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vincenty" ]; - meta = with lib; { + meta = { description = "Calculate the geographical distance between 2 points with extreme accuracy"; homepage = "https://github.com/maurycyp/vincenty"; - license = licenses.unlicense; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/vine/default.nix b/pkgs/development/python-modules/vine/default.nix index 91d884e21071..d5284f14fe23 100644 --- a/pkgs/development/python-modules/vine/default.nix +++ b/pkgs/development/python-modules/vine/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vine" ]; - meta = with lib; { + meta = { description = "Python promises"; homepage = "https://github.com/celery/vine"; changelog = "https://github.com/celery/vine/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/virt-firmware/default.nix b/pkgs/development/python-modules/virt-firmware/default.nix index 01769818b384..8c9d73cf636c 100644 --- a/pkgs/development/python-modules/virt-firmware/default.nix +++ b/pkgs/development/python-modules/virt-firmware/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "virt.firmware.efi" ]; - meta = with lib; { + meta = { description = "Tools for virtual machine firmware volumes"; homepage = "https://gitlab.com/kraxel/virt-firmware"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ raitobezarius ]; }; diff --git a/pkgs/development/python-modules/virtualenv-clone/default.nix b/pkgs/development/python-modules/virtualenv-clone/default.nix index 4cab270b846d..f9bab25df030 100644 --- a/pkgs/development/python-modules/virtualenv-clone/default.nix +++ b/pkgs/development/python-modules/virtualenv-clone/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/edwardgeorge/virtualenv-clone"; description = "Script to clone virtualenvs"; mainProgram = "virtualenv-clone"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/virtualenv/default.nix b/pkgs/development/python-modules/virtualenv/default.nix index 5d26d7d54820..9a35b8a6b457 100644 --- a/pkgs/development/python-modules/virtualenv/default.nix +++ b/pkgs/development/python-modules/virtualenv/default.nix @@ -85,12 +85,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "virtualenv" ]; - meta = with lib; { + meta = { description = "Tool to create isolated Python environments"; mainProgram = "virtualenv"; homepage = "http://www.virtualenv.org"; changelog = "https://github.com/pypa/virtualenv/blob/${version}/docs/changelog.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/virtualenvwrapper/default.nix b/pkgs/development/python-modules/virtualenvwrapper/default.nix index 000e4c679220..b6f6eae27d78 100644 --- a/pkgs/development/python-modules/virtualenvwrapper/default.nix +++ b/pkgs/development/python-modules/virtualenvwrapper/default.nix @@ -83,9 +83,9 @@ buildPythonPackage rec { done ''; - meta = with lib; { + meta = { description = "Enhancements to virtualenv"; homepage = "https://github.com/python-virtualenvwrapper/virtualenvwrapper"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/visitor/default.nix b/pkgs/development/python-modules/visitor/default.nix index 8bab0d88fe4a..727703ca1556 100644 --- a/pkgs/development/python-modules/visitor/default.nix +++ b/pkgs/development/python-modules/visitor/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "02j87v93c50gz68gbgclmbqjcwcr7g7zgvk7c6y4x1mnn81pjwrc"; }; - meta = with lib; { + meta = { homepage = "https://github.com/mbr/visitor"; description = "Tiny pythonic visitor implementation"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vispy/default.nix b/pkgs/development/python-modules/vispy/default.nix index 0d77d9c77373..ccb571e998a6 100644 --- a/pkgs/development/python-modules/vispy/default.nix +++ b/pkgs/development/python-modules/vispy/default.nix @@ -71,11 +71,11 @@ buildPythonPackage rec { "vispy.visuals" ]; - meta = with lib; { + meta = { description = "Interactive scientific visualization in Python"; homepage = "https://vispy.org/index.html"; changelog = "https://github.com/vispy/vispy/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ goertzenator ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ goertzenator ]; }; } diff --git a/pkgs/development/python-modules/viv-utils/default.nix b/pkgs/development/python-modules/viv-utils/default.nix index 45d0aa601e12..1f286aa844cf 100644 --- a/pkgs/development/python-modules/viv-utils/default.nix +++ b/pkgs/development/python-modules/viv-utils/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "viv_utils" ]; - meta = with lib; { + meta = { description = "Utilities for working with vivisect"; homepage = "https://github.com/williballenthin/viv-utils"; changelog = "https://github.com/williballenthin/viv-utils/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vivisect/default.nix b/pkgs/development/python-modules/vivisect/default.nix index 1a80e837d892..fe3792020440 100644 --- a/pkgs/development/python-modules/vivisect/default.nix +++ b/pkgs/development/python-modules/vivisect/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vivisect" ]; - meta = with lib; { + meta = { description = "Python disassembler, debugger, emulator, and static analysis framework"; homepage = "https://github.com/vivisect/vivisect"; changelog = "https://github.com/vivisect/vivisect/blob/v${version}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vmprof/default.nix b/pkgs/development/python-modules/vmprof/default.nix index e8b28062a829..181a319b8321 100644 --- a/pkgs/development/python-modules/vmprof/default.nix +++ b/pkgs/development/python-modules/vmprof/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vmprof" ]; - meta = with lib; { + meta = { description = "Vmprof client"; mainProgram = "vmprofshow"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://vmprof.readthedocs.org/"; }; } diff --git a/pkgs/development/python-modules/vncdo/default.nix b/pkgs/development/python-modules/vncdo/default.nix index 6e69f57b9af5..575c428595b0 100644 --- a/pkgs/development/python-modules/vncdo/default.nix +++ b/pkgs/development/python-modules/vncdo/default.nix @@ -42,13 +42,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "vncdotool" ]; - meta = with lib; { + meta = { description = "Command line VNC client and Python library"; homepage = "https://github.com/sibson/vncdotool"; changelog = "https://github.com/sibson/vncdotool/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ elitak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ elitak ]; mainProgram = "vncdo"; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/development/python-modules/vnoise/default.nix b/pkgs/development/python-modules/vnoise/default.nix index 169f5b3fd61b..e49893c28859 100644 --- a/pkgs/development/python-modules/vnoise/default.nix +++ b/pkgs/development/python-modules/vnoise/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vnoise" ]; - meta = with lib; { + meta = { description = "Vectorized, pure-Python Perlin noise library"; homepage = "https://github.com/plottertools/vnoise"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/vobject/default.nix b/pkgs/development/python-modules/vobject/default.nix index 041ccd2fbd40..bd01b82076a4 100644 --- a/pkgs/development/python-modules/vobject/default.nix +++ b/pkgs/development/python-modules/vobject/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { enabledTestPaths = [ "tests.py" ]; - meta = with lib; { + meta = { description = "Module for reading vCard and vCalendar files"; homepage = "https://github.com/py-vobject/vobject"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/volatile/default.nix b/pkgs/development/python-modules/volatile/default.nix index 3ad6ca654247..be77d04fd042 100644 --- a/pkgs/development/python-modules/volatile/default.nix +++ b/pkgs/development/python-modules/volatile/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "volatile" ]; - meta = with lib; { + meta = { description = "Small extension for the tempfile module"; homepage = "https://github.com/mbr/volatile"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/volkszaehler/default.nix b/pkgs/development/python-modules/volkszaehler/default.nix index a05f22c3958b..68f121a18c50 100644 --- a/pkgs/development/python-modules/volkszaehler/default.nix +++ b/pkgs/development/python-modules/volkszaehler/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "volkszaehler" ]; - meta = with lib; { + meta = { description = "Python module for interacting with the Volkszahler API"; homepage = "https://github.com/home-assistant-ecosystem/python-volkszaehler"; changelog = "https://github.com/home-assistant-ecosystem/python-volkszaehler/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/voluptuous-openapi/default.nix b/pkgs/development/python-modules/voluptuous-openapi/default.nix index 215c495de805..e70cae321220 100644 --- a/pkgs/development/python-modules/voluptuous-openapi/default.nix +++ b/pkgs/development/python-modules/voluptuous-openapi/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "voluptuous_openapi" ]; - meta = with lib; { + meta = { changelog = "https://github.com/home-assistant-libs/voluptuous-openapi/releases/tag/${src.tag}"; description = "Convert voluptuous schemas to OpenAPI Schema object"; homepage = "https://github.com/home-assistant-libs/voluptuous-openapi"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/voluptuous-serialize/default.nix b/pkgs/development/python-modules/voluptuous-serialize/default.nix index 00b81fc64c62..ff23723e924d 100644 --- a/pkgs/development/python-modules/voluptuous-serialize/default.nix +++ b/pkgs/development/python-modules/voluptuous-serialize/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Convert Voluptuous schemas to dictionaries so they can be serialized"; homepage = "https://github.com/home-assistant-libs/voluptuous-serialize"; changelog = "https://github.com/home-assistant-libs/voluptuous-serialize/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/voluptuous-stubs/default.nix b/pkgs/development/python-modules/voluptuous-stubs/default.nix index 1f77a12b4183..27a2f5e2195a 100644 --- a/pkgs/development/python-modules/voluptuous-stubs/default.nix +++ b/pkgs/development/python-modules/voluptuous-stubs/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Typing stubs for voluptuous"; homepage = "https://github.com/ryanwang520/voluptuous-stubs"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/voluptuous/default.nix b/pkgs/development/python-modules/voluptuous/default.nix index 2ed86fdeb456..4cf8ffecfa56 100644 --- a/pkgs/development/python-modules/voluptuous/default.nix +++ b/pkgs/development/python-modules/voluptuous/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { enabledTestPaths = [ "voluptuous/tests/" ]; - meta = with lib; { + meta = { description = "Python data validation library"; downloadPage = "https://github.com/alecthomas/voluptuous"; homepage = "http://alecthomas.github.io/voluptuous/"; changelog = "https://github.com/alecthomas/voluptuous/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/volvooncall/default.nix b/pkgs/development/python-modules/volvooncall/default.nix index deaa8c466f37..6e9d2f326d41 100644 --- a/pkgs/development/python-modules/volvooncall/default.nix +++ b/pkgs/development/python-modules/volvooncall/default.nix @@ -60,12 +60,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "volvooncall" ]; - meta = with lib; { + meta = { description = "Retrieve information from the Volvo On Call web service"; homepage = "https://github.com/molobrakos/volvooncall"; changelog = "https://github.com/molobrakos/volvooncall/releases/tag/v${version}"; - license = licenses.unlicense; + license = lib.licenses.unlicense; mainProgram = "voc"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/vowpalwabbit/default.nix b/pkgs/development/python-modules/vowpalwabbit/default.nix index 10187ec4eb33..6064632568ae 100644 --- a/pkgs/development/python-modules/vowpalwabbit/default.nix +++ b/pkgs/development/python-modules/vowpalwabbit/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { ${python.interpreter} setup.py check -ms ''; - meta = with lib; { + meta = { description = "Vowpal Wabbit is a fast machine learning library for online learning, and this is the python wrapper for the project"; homepage = "https://github.com/JohnLangford/vowpal_wabbit"; - license = licenses.bsd3; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ teh ]; # Test again when new version is released broken = stdenv.hostPlatform.isLinux; }; diff --git a/pkgs/development/python-modules/vpk/default.nix b/pkgs/development/python-modules/vpk/default.nix index 188ef50b36f1..0b8fdbecb630 100644 --- a/pkgs/development/python-modules/vpk/default.nix +++ b/pkgs/development/python-modules/vpk/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Library for working with Valve Pak files"; mainProgram = "vpk"; homepage = "https://github.com/ValvePython/vpk"; - license = licenses.mit; - maintainers = with maintainers; [ joshuafern ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ joshuafern ]; }; } diff --git a/pkgs/development/python-modules/vprof/default.nix b/pkgs/development/python-modules/vprof/default.nix index 9454a25ad81a..d2e502dde7de 100644 --- a/pkgs/development/python-modules/vprof/default.nix +++ b/pkgs/development/python-modules/vprof/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { # The tests are not included in the Pypi sources doCheck = false; - meta = with lib; { + meta = { description = "Visual profiler for Python"; homepage = "https://github.com/nvdv/vprof"; - license = licenses.bsd2; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ GaetanLepage ]; mainProgram = "vprof"; }; } diff --git a/pkgs/development/python-modules/vqgan-jax/default.nix b/pkgs/development/python-modules/vqgan-jax/default.nix index fe259acad018..3d07a2fc43d1 100644 --- a/pkgs/development/python-modules/vqgan-jax/default.nix +++ b/pkgs/development/python-modules/vqgan-jax/default.nix @@ -33,11 +33,11 @@ buildPythonPackage { pythonImportsCheck = [ "vqgan_jax" ]; - meta = with lib; { + meta = { description = "JAX implementation of VQGAN"; homepage = "https://github.com/patil-suraj/vqgan-jax"; # license unknown: https://github.com/patil-suraj/vqgan-jax/issues/9 license = lib.licenses.unfree; - maintainers = with maintainers; [ r-burns ]; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/development/python-modules/vsts-cd-manager/default.nix b/pkgs/development/python-modules/vsts-cd-manager/default.nix index 94ebbbe5e4a3..3e1f3917f360 100644 --- a/pkgs/development/python-modules/vsts-cd-manager/default.nix +++ b/pkgs/development/python-modules/vsts-cd-manager/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vsts_cd_manager" ]; - meta = with lib; { + meta = { description = "Microsoft Azure API Management Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vsts/default.nix b/pkgs/development/python-modules/vsts/default.nix index 6c339204f3dc..e77ab7456ca0 100644 --- a/pkgs/development/python-modules/vsts/default.nix +++ b/pkgs/development/python-modules/vsts/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { ${python.interpreter} -c 'import vsts.version; print(vsts.version.VERSION)' ''; - meta = with lib; { + meta = { description = "Python APIs for interacting with and managing Azure DevOps"; homepage = "https://github.com/microsoft/azure-devops-python-api"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vsure/default.nix b/pkgs/development/python-modules/vsure/default.nix index 77ce5707c5d1..699141afa261 100644 --- a/pkgs/development/python-modules/vsure/default.nix +++ b/pkgs/development/python-modules/vsure/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "verisure" ]; - meta = with lib; { + meta = { description = "Python library for working with verisure devices"; mainProgram = "vsure"; homepage = "https://github.com/persandstrom/python-verisure"; changelog = "https://github.com/persandstrom/python-verisure#version-history"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/vt-py/default.nix b/pkgs/development/python-modules/vt-py/default.nix index 431813221fe8..8a3cff988fdd 100644 --- a/pkgs/development/python-modules/vt-py/default.nix +++ b/pkgs/development/python-modules/vt-py/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vt" ]; - meta = with lib; { + meta = { description = "Python client library for VirusTotal"; homepage = "https://virustotal.github.io/vt-py/"; changelog = "https://github.com/VirusTotal/vt-py/releases/tag//${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/vtjp/default.nix b/pkgs/development/python-modules/vtjp/default.nix index e1c39a0a668a..5c3bc33c447b 100644 --- a/pkgs/development/python-modules/vtjp/default.nix +++ b/pkgs/development/python-modules/vtjp/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "vasttrafik" ]; - meta = with lib; { + meta = { description = "Python wrapper and cli for Västtrafik public API"; mainProgram = "vtjp"; homepage = "https://github.com/Miicroo/python-vasttrafik"; changelog = "https://github.com/Miicroo/python-vasttrafik/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/vultr/default.nix b/pkgs/development/python-modules/vultr/default.nix index 79c4f1060722..0f92af755d87 100644 --- a/pkgs/development/python-modules/vultr/default.nix +++ b/pkgs/development/python-modules/vultr/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "vultr" ]; - meta = with lib; { + meta = { description = "Vultr.com API Client"; homepage = "https://github.com/spry-group/python-vultr"; changelog = "https://github.com/spry-group/python-vultr/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ lihop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lihop ]; }; } diff --git a/pkgs/development/python-modules/vulture/default.nix b/pkgs/development/python-modules/vulture/default.nix index b421c53d8950..493767f5c452 100644 --- a/pkgs/development/python-modules/vulture/default.nix +++ b/pkgs/development/python-modules/vulture/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "vulture" ]; - meta = with lib; { + meta = { description = "Finds unused code in Python programs"; homepage = "https://github.com/jendrikseipp/vulture"; changelog = "https://github.com/jendrikseipp/vulture/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ mcwitt ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mcwitt ]; mainProgram = "vulture"; }; } diff --git a/pkgs/development/python-modules/vxi11/default.nix b/pkgs/development/python-modules/vxi11/default.nix index c7950914b3fd..42da810a5902 100644 --- a/pkgs/development/python-modules/vxi11/default.nix +++ b/pkgs/development/python-modules/vxi11/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "VXI-11 driver for controlling instruments over Ethernet"; mainProgram = "vxi11-cli"; homepage = "https://github.com/python-ivi/python-vxi11"; - license = licenses.mit; - maintainers = with maintainers; [ bgamari ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bgamari ]; }; } diff --git a/pkgs/development/python-modules/w1thermsensor/default.nix b/pkgs/development/python-modules/w1thermsensor/default.nix index 5d7ebfbccb0f..9581adce03d9 100644 --- a/pkgs/development/python-modules/w1thermsensor/default.nix +++ b/pkgs/development/python-modules/w1thermsensor/default.nix @@ -49,7 +49,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "w1thermsensor" ]; - meta = with lib; { + meta = { description = "Python interface to 1-Wire temperature sensors"; mainProgram = "w1thermsensor"; longDescription = '' @@ -59,8 +59,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/timofurrer/w1thermsensor"; changelog = "https://github.com/timofurrer/w1thermsensor/blob/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ quentin ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ quentin ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/w3lib/default.nix b/pkgs/development/python-modules/w3lib/default.nix index e0cfe29155a0..c996deff7680 100644 --- a/pkgs/development/python-modules/w3lib/default.nix +++ b/pkgs/development/python-modules/w3lib/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "w3lib" ]; - meta = with lib; { + meta = { description = "Library of web-related functions"; homepage = "https://github.com/scrapy/w3lib"; changelog = "https://github.com/scrapy/w3lib/blob/v${version}/NEWS"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wadllib/default.nix b/pkgs/development/python-modules/wadllib/default.nix index f5bbaddb6c34..5012671e5d56 100644 --- a/pkgs/development/python-modules/wadllib/default.nix +++ b/pkgs/development/python-modules/wadllib/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # pypi tarball has no tests doCheck = false; - meta = with lib; { + meta = { description = "Navigate HTTP resources using WADL files as guides"; homepage = "https://launchpad.net/wadllib"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wagtail-factories/default.nix b/pkgs/development/python-modules/wagtail-factories/default.nix index c3d3bd399f4d..9dd763b793cf 100644 --- a/pkgs/development/python-modules/wagtail-factories/default.nix +++ b/pkgs/development/python-modules/wagtail-factories/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { passthru.tests.wagtail-factories = callPackage ./tests.nix { }; - meta = with lib; { + meta = { description = "Factory boy classes for wagtail"; homepage = "https://github.com/wagtail/wagtail-factories"; changelog = "https://github.com/wagtail/wagtail-factories/blob/${src.tag}/CHANGES"; - license = licenses.mit; - maintainers = with maintainers; [ sephi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sephi ]; }; } diff --git a/pkgs/development/python-modules/waitress-django/default.nix b/pkgs/development/python-modules/waitress-django/default.nix index cb0c46abb611..9dd47056135f 100644 --- a/pkgs/development/python-modules/waitress-django/default.nix +++ b/pkgs/development/python-modules/waitress-django/default.nix @@ -22,10 +22,10 @@ buildPythonPackage { doCheck = false; - meta = with lib; { + meta = { description = "Waitress WSGI server serving django"; mainProgram = "waitress-serve-django"; - license = licenses.mit; - maintainers = with maintainers; [ basvandijk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ basvandijk ]; }; } diff --git a/pkgs/development/python-modules/waitress/default.nix b/pkgs/development/python-modules/waitress/default.nix index 5849f5d76604..eb05353933e9 100644 --- a/pkgs/development/python-modules/waitress/default.nix +++ b/pkgs/development/python-modules/waitress/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { # Tests use sockets __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { homepage = "https://github.com/Pylons/waitress"; description = "Waitress WSGI server"; mainProgram = "waitress-serve"; - license = licenses.zpl21; + license = lib.licenses.zpl21; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wakeonlan/default.nix b/pkgs/development/python-modules/wakeonlan/default.nix index 4b939184b93b..456f77fbed2e 100644 --- a/pkgs/development/python-modules/wakeonlan/default.nix +++ b/pkgs/development/python-modules/wakeonlan/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "wakeonlan" ]; - meta = with lib; { + meta = { description = "Python module for wake on lan"; mainProgram = "wakeonlan"; homepage = "https://github.com/remcohaszing/pywakeonlan"; changelog = "https://github.com/remcohaszing/pywakeonlan/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/wallet-py3k/default.nix b/pkgs/development/python-modules/wallet-py3k/default.nix index 1237dafc3396..80ae6f1eca33 100644 --- a/pkgs/development/python-modules/wallet-py3k/default.nix +++ b/pkgs/development/python-modules/wallet-py3k/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wallet" ]; - meta = with lib; { + meta = { description = "Passbook file generator"; homepage = "https://pypi.org/project/wallet-py3k"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/walrus/default.nix b/pkgs/development/python-modules/walrus/default.nix index ce8f5d26afa4..44e945538952 100644 --- a/pkgs/development/python-modules/walrus/default.nix +++ b/pkgs/development/python-modules/walrus/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Lightweight Python utilities for working with Redis"; homepage = "https://github.com/coleifer/walrus"; changelog = "https://github.com/coleifer/walrus/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/wand/default.nix b/pkgs/development/python-modules/wand/default.nix index 4e849b8b0c8a..a55258f573b8 100644 --- a/pkgs/development/python-modules/wand/default.nix +++ b/pkgs/development/python-modules/wand/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { passthru.imagemagick = imagemagickBig; - meta = with lib; { + meta = { changelog = "https://docs.wand-py.org/en/${version}/changes.html"; description = "Ctypes-based simple MagickWand API binding for Python"; homepage = "http://wand-py.org/"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ dotlambda ]; + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/waqiasync/default.nix b/pkgs/development/python-modules/waqiasync/default.nix index c627c24290ff..6aa01f97f44e 100644 --- a/pkgs/development/python-modules/waqiasync/default.nix +++ b/pkgs/development/python-modules/waqiasync/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "waqiasync" ]; - meta = with lib; { + meta = { description = "Python library for http://aqicn.org"; homepage = "https://github.com/andrey-git/waqi-async"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/warble/default.nix b/pkgs/development/python-modules/warble/default.nix index da0aa6c92563..c9d278e872e4 100644 --- a/pkgs/development/python-modules/warble/default.nix +++ b/pkgs/development/python-modules/warble/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "mbientlab.warble" ]; - meta = with lib; { + meta = { description = "Python bindings for MbientLab's Warble library"; homepage = "https://github.com/mbientlab/pywarble"; - license = with licenses; [ unfree ]; - maintainers = with maintainers; [ stepbrobd ]; + license = with lib.licenses; [ unfree ]; + maintainers = with lib.maintainers; [ stepbrobd ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/development/python-modules/warcio/default.nix b/pkgs/development/python-modules/warcio/default.nix index 6ae2b535ea43..dd55905bb02c 100644 --- a/pkgs/development/python-modules/warcio/default.nix +++ b/pkgs/development/python-modules/warcio/default.nix @@ -61,12 +61,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "warcio" ]; - meta = with lib; { + meta = { description = "Streaming WARC/ARC library for fast web archive IO"; mainProgram = "warcio"; homepage = "https://github.com/webrecorder/warcio"; changelog = "https://github.com/webrecorder/warcio/blob/master/CHANGELIST.rst"; - license = licenses.asl20; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/ward/default.nix b/pkgs/development/python-modules/ward/default.nix index a8584b32598b..e01741ea3bdf 100644 --- a/pkgs/development/python-modules/ward/default.nix +++ b/pkgs/development/python-modules/ward/default.nix @@ -50,8 +50,8 @@ buildPythonPackage rec { description = "Test framework for Python"; homepage = "https://github.com/darrenburns/ward"; changelog = "https://github.com/darrenburns/ward/releases/tag/release%2F${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ward"; # Old requirements (cucumber-tag-expressions and rich) # https://github.com/darrenburns/ward/issues/380 diff --git a/pkgs/development/python-modules/warlock/default.nix b/pkgs/development/python-modules/warlock/default.nix index 6ad45ae49fa7..b42eae469b28 100644 --- a/pkgs/development/python-modules/warlock/default.nix +++ b/pkgs/development/python-modules/warlock/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "warlock" ]; - meta = with lib; { + meta = { description = "Python object model built on JSON schema and JSON patch"; homepage = "https://github.com/bcwaldon/warlock"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/warrant-lite/default.nix b/pkgs/development/python-modules/warrant-lite/default.nix index 911aa135a775..744e65b70953 100644 --- a/pkgs/development/python-modules/warrant-lite/default.nix +++ b/pkgs/development/python-modules/warrant-lite/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "warrant_lite" ]; - meta = with lib; { + meta = { description = "Module for process SRP requests for AWS Cognito"; homepage = "https://github.com/capless/warrant-lite"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/warrant/default.nix b/pkgs/development/python-modules/warrant/default.nix index 4dc8e940b3b3..72429ff6540b 100644 --- a/pkgs/development/python-modules/warrant/default.nix +++ b/pkgs/development/python-modules/warrant/default.nix @@ -49,7 +49,7 @@ buildPythonPackage { # all the checks are failing doCheck = false; - meta = with lib; { + meta = { description = "Python library for using AWS Cognito with support for SRP"; homepage = "https://github.com/capless/warrant"; license = lib.licenses.asl20; diff --git a/pkgs/development/python-modules/wasabi/default.nix b/pkgs/development/python-modules/wasabi/default.nix index 290e4faec014..55208a9c378c 100644 --- a/pkgs/development/python-modules/wasabi/default.nix +++ b/pkgs/development/python-modules/wasabi/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Lightweight console printing and formatting toolkit"; homepage = "https://github.com/ines/wasabi"; changelog = "https://github.com/ines/wasabi/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wasmer/default.nix b/pkgs/development/python-modules/wasmer/default.nix index 09e87046685d..897e51a0eab2 100644 --- a/pkgs/development/python-modules/wasmer/default.nix +++ b/pkgs/development/python-modules/wasmer/default.nix @@ -71,13 +71,13 @@ let pythonImportsCheck = [ "${lib.replaceStrings [ "-" ] [ "_" ] pname}" ]; - meta = with lib; { + meta = { # https://github.com/wasmerio/wasmer-python/issues/778 broken = pythonAtLeast "3.12"; description = "Python extension to run WebAssembly binaries"; homepage = "https://github.com/wasmerio/wasmer-python"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/wasserstein/default.nix b/pkgs/development/python-modules/wasserstein/default.nix index 1215d3037080..994b83421a7b 100644 --- a/pkgs/development/python-modules/wasserstein/default.nix +++ b/pkgs/development/python-modules/wasserstein/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wasserstein" ]; - meta = with lib; { + meta = { description = "Python/C++ library for computing Wasserstein distances efficiently"; homepage = "https://github.com/pkomiske/Wasserstein"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/wat/default.nix b/pkgs/development/python-modules/wat/default.nix index 916a516ec07e..d3f5a12754a6 100644 --- a/pkgs/development/python-modules/wat/default.nix +++ b/pkgs/development/python-modules/wat/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "wat" ]; - meta = with lib; { + meta = { homepage = "https://igrek51.github.io/wat/"; description = "Deep inspection of python objects"; - license = licenses.mit; - maintainers = with maintainers; [ parras ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ parras ]; }; } diff --git a/pkgs/development/python-modules/watchdog-gevent/default.nix b/pkgs/development/python-modules/watchdog-gevent/default.nix index 852e9f1fa720..555154e3bac2 100644 --- a/pkgs/development/python-modules/watchdog-gevent/default.nix +++ b/pkgs/development/python-modules/watchdog-gevent/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "watchdog_gevent" ]; - meta = with lib; { + meta = { description = "Gevent-based observer for watchdog"; homepage = "https://github.com/Bogdanp/watchdog_gevent"; - license = licenses.asl20; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/watchdog/default.nix b/pkgs/development/python-modules/watchdog/default.nix index e91fc76add79..eeecf41ef2da 100644 --- a/pkgs/development/python-modules/watchdog/default.nix +++ b/pkgs/development/python-modules/watchdog/default.nix @@ -80,12 +80,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "watchdog" ]; - meta = with lib; { + meta = { description = "Python API and shell utilities to monitor file system events"; mainProgram = "watchmedo"; homepage = "https://github.com/gorakhargosh/watchdog"; changelog = "https://github.com/gorakhargosh/watchdog/blob/v${version}/changelog.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/watchgod/default.nix b/pkgs/development/python-modules/watchgod/default.nix index 2545b1605c54..fa36e6e0c471 100644 --- a/pkgs/development/python-modules/watchgod/default.nix +++ b/pkgs/development/python-modules/watchgod/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "watchgod" ]; - meta = with lib; { + meta = { description = "Simple, modern file watching and code reload in python"; mainProgram = "watchgod"; homepage = "https://github.com/samuelcolvin/watchgod"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/watermark/default.nix b/pkgs/development/python-modules/watermark/default.nix index e82744029dd8..4a0a67b95bc3 100644 --- a/pkgs/development/python-modules/watermark/default.nix +++ b/pkgs/development/python-modules/watermark/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "watermark" ]; - meta = with lib; { + meta = { description = "IPython extension for printing date and timestamps, version numbers, and hardware information"; homepage = "https://github.com/rasbt/watermark"; changelog = "https://github.com/rasbt/watermark/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ nphilou ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nphilou ]; }; } diff --git a/pkgs/development/python-modules/wavedrom/default.nix b/pkgs/development/python-modules/wavedrom/default.nix index d5e36be1e9f1..2a041f5fb4e3 100644 --- a/pkgs/development/python-modules/wavedrom/default.nix +++ b/pkgs/development/python-modules/wavedrom/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wavedrom" ]; - meta = with lib; { + meta = { description = "WaveDrom compatible Python command line"; mainProgram = "wavedrompy"; homepage = "https://github.com/wallento/wavedrompy"; - license = licenses.mit; - maintainers = with maintainers; [ airwoodix ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ airwoodix ]; }; } diff --git a/pkgs/development/python-modules/wavefile/default.nix b/pkgs/development/python-modules/wavefile/default.nix index ec23f081e2a1..d34341a7c455 100644 --- a/pkgs/development/python-modules/wavefile/default.nix +++ b/pkgs/development/python-modules/wavefile/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wavefile" ]; - meta = with lib; { + meta = { description = "Pythonic libsndfile wrapper to read and write audio files"; homepage = "https://github.com/vokimon/python-wavefile"; changelog = "https://github.com/vokimon/python-wavefile#version-history"; maintainers = [ ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/wavinsentio/default.nix b/pkgs/development/python-modules/wavinsentio/default.nix index 7efdd81b9247..8597c26f6e7e 100644 --- a/pkgs/development/python-modules/wavinsentio/default.nix +++ b/pkgs/development/python-modules/wavinsentio/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wavinsentio" ]; - meta = with lib; { + meta = { description = "Python module to interact with the Wavin Sentio underfloor heating system"; homepage = "https://github.com/djerik/wavinsentio"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/waybackpy/default.nix b/pkgs/development/python-modules/waybackpy/default.nix index 3ecfae5d4c55..bbac0d042879 100644 --- a/pkgs/development/python-modules/waybackpy/default.nix +++ b/pkgs/development/python-modules/waybackpy/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "waybackpy" ]; - meta = with lib; { + meta = { homepage = "https://akamhy.github.io/waybackpy/"; description = "Wayback Machine API interface & a command-line tool"; - license = licenses.mit; - maintainers = with maintainers; [ chpatrick ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chpatrick ]; }; } diff --git a/pkgs/development/python-modules/wazeroutecalculator/default.nix b/pkgs/development/python-modules/wazeroutecalculator/default.nix index 3812a83ffbfc..65c663544051 100644 --- a/pkgs/development/python-modules/wazeroutecalculator/default.nix +++ b/pkgs/development/python-modules/wazeroutecalculator/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "WazeRouteCalculator" ]; - meta = with lib; { + meta = { description = "Calculate actual route time and distance with Waze API"; homepage = "https://github.com/kovacsbalu/WazeRouteCalculator"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/wcag-contrast-ratio/default.nix b/pkgs/development/python-modules/wcag-contrast-ratio/default.nix index 8fee1eab7e09..27deecbf62b7 100644 --- a/pkgs/development/python-modules/wcag-contrast-ratio/default.nix +++ b/pkgs/development/python-modules/wcag-contrast-ratio/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wcag_contrast_ratio" ]; - meta = with lib; { + meta = { description = "Library for computing contrast ratios, as required by WCAG 2.0"; homepage = "https://github.com/gsnedders/wcag-contrast-ratio"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wcmatch/default.nix b/pkgs/development/python-modules/wcmatch/default.nix index ede8d0ace1db..d6f43a09d7c2 100644 --- a/pkgs/development/python-modules/wcmatch/default.nix +++ b/pkgs/development/python-modules/wcmatch/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wcmatch" ]; - meta = with lib; { + meta = { description = "Wilcard File Name matching library"; homepage = "https://github.com/facelessuser/wcmatch"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wcwidth/default.nix b/pkgs/development/python-modules/wcwidth/default.nix index c79af7be6b5a..bd39d184f861 100644 --- a/pkgs/development/python-modules/wcwidth/default.nix +++ b/pkgs/development/python-modules/wcwidth/default.nix @@ -28,7 +28,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "wcwidth" ]; - meta = with lib; { + meta = { description = "Measures number of Terminal column cells of wide-character codes"; longDescription = '' This API is mainly for Terminal Emulator implementors -- any Python @@ -38,7 +38,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/jquast/wcwidth"; changelog = "https://github.com/jquast/wcwidth/releases/tag/${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/weatherflow4py/default.nix b/pkgs/development/python-modules/weatherflow4py/default.nix index 627eae7a30a2..7bb1530056fa 100644 --- a/pkgs/development/python-modules/weatherflow4py/default.nix +++ b/pkgs/development/python-modules/weatherflow4py/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "test_convert_json_to_weather_data4" ]; - meta = with lib; { + meta = { description = "Module to interact with the WeatherFlow REST API"; homepage = "https://github.com/jeeftor/weatherflow4py"; changelog = "https://github.com/jeeftor/weatherflow4py/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/web-cache/default.nix b/pkgs/development/python-modules/web-cache/default.nix index fbc9cf2aaa8c..816ee85cab5a 100644 --- a/pkgs/development/python-modules/web-cache/default.nix +++ b/pkgs/development/python-modules/web-cache/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "web_cache" ]; - meta = with lib; { + meta = { description = "Simple Python key-value storage backed up by sqlite3 database"; homepage = "https://github.com/desbma/web_cache"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/development/python-modules/web/default.nix b/pkgs/development/python-modules/web/default.nix index 7cedc0a391c0..19e68bdb2d8a 100644 --- a/pkgs/development/python-modules/web/default.nix +++ b/pkgs/development/python-modules/web/default.nix @@ -41,14 +41,14 @@ buildPythonPackage rec { psycopg2 ]; - meta = with lib; { + meta = { description = "Makes web apps"; longDescription = '' Think about the ideal way to write a web app. Write the code to make it happen. ''; homepage = "https://webpy.org/"; - license = licenses.publicDomain; - maintainers = with maintainers; [ layus ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ layus ]; }; } diff --git a/pkgs/development/python-modules/webargs/default.nix b/pkgs/development/python-modules/webargs/default.nix index 43c7700e541d..a3b9e3349214 100644 --- a/pkgs/development/python-modules/webargs/default.nix +++ b/pkgs/development/python-modules/webargs/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "webargs" ]; - meta = with lib; { + meta = { description = "Declarative parsing and validation of HTTP request objects, with built-in support for popular web frameworks"; homepage = "https://github.com/marshmallow-code/webargs"; - license = licenses.mit; - maintainers = with maintainers; [ cript0nauta ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cript0nauta ]; }; } diff --git a/pkgs/development/python-modules/webauthn/default.nix b/pkgs/development/python-modules/webauthn/default.nix index 3ff31f0a009b..6914a90e29c1 100644 --- a/pkgs/development/python-modules/webauthn/default.nix +++ b/pkgs/development/python-modules/webauthn/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "webauthn" ]; - meta = with lib; { + meta = { description = "Implementation of the WebAuthn API"; homepage = "https://github.com/duo-labs/py_webauthn"; changelog = "https://github.com/duo-labs/py_webauthn/blob/${src.tag}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/webcolors/default.nix b/pkgs/development/python-modules/webcolors/default.nix index ecb29d9ecf29..6b98a84af804 100644 --- a/pkgs/development/python-modules/webcolors/default.nix +++ b/pkgs/development/python-modules/webcolors/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "webcolors" ]; - meta = with lib; { + meta = { description = "Library for working with color names/values defined by the HTML and CSS specifications"; homepage = "https://github.com/ubernostrum/webcolors"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/webdav4/default.nix b/pkgs/development/python-modules/webdav4/default.nix index 53ecaf568bd8..57eee2995ed3 100644 --- a/pkgs/development/python-modules/webdav4/default.nix +++ b/pkgs/development/python-modules/webdav4/default.nix @@ -80,12 +80,12 @@ buildPythonPackage rec { "tests/test_cli.py" ]; - meta = with lib; { + meta = { description = "Library for interacting with WebDAV"; mainProgram = "dav"; homepage = "https://skshetry.github.io/webdav4/"; changelog = "https://github.com/skshetry/webdav4/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/webdavclient3/default.nix b/pkgs/development/python-modules/webdavclient3/default.nix index e826dd8153ee..8eaad77be5d3 100644 --- a/pkgs/development/python-modules/webdavclient3/default.nix +++ b/pkgs/development/python-modules/webdavclient3/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "tests/test_tailing_slash_client_it.py" ]; - meta = with lib; { + meta = { description = "Easy to use WebDAV Client for Python 3.x"; homepage = "https://github.com/ezhov-evgeny/webdav-client-python-3"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "wdc"; }; diff --git a/pkgs/development/python-modules/webdriver-manager/default.nix b/pkgs/development/python-modules/webdriver-manager/default.nix index beee52645bb8..aef82314b351 100644 --- a/pkgs/development/python-modules/webdriver-manager/default.nix +++ b/pkgs/development/python-modules/webdriver-manager/default.nix @@ -62,12 +62,12 @@ buildPythonPackage rec { "tests/test_silent_global_logs.py" ]; - meta = with lib; { + meta = { description = "Module to manage the binary drivers for different browsers"; homepage = "https://github.com/SergeyPirogov/webdriver_manager/"; changelog = "https://github.com/SergeyPirogov/webdriver_manager/blob/${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/webexpythonsdk/default.nix b/pkgs/development/python-modules/webexpythonsdk/default.nix index e6944d08e39a..dd3d854a42a2 100644 --- a/pkgs/development/python-modules/webexpythonsdk/default.nix +++ b/pkgs/development/python-modules/webexpythonsdk/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "webexpythonsdk" ]; - meta = with lib; { + meta = { description = "Python module for Webex Teams APIs"; homepage = "https://github.com/WebexCommunity/WebexPythonSDK"; changelog = "https://github.com/WebexCommunity/WebexPythonSDK/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/webexteamssdk/default.nix b/pkgs/development/python-modules/webexteamssdk/default.nix index 137ce28a034e..c232c51d1ba0 100644 --- a/pkgs/development/python-modules/webexteamssdk/default.nix +++ b/pkgs/development/python-modules/webexteamssdk/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "webexteamssdk" ]; - meta = with lib; { + meta = { description = "Python module for Webex Teams APIs"; homepage = "https://github.com/CiscoDevNet/webexteamssdk"; changelog = "https://github.com/WebexCommunity/WebexPythonSDK/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/weblate-language-data/default.nix b/pkgs/development/python-modules/weblate-language-data/default.nix index e9f957ebfe89..635accfa7839 100644 --- a/pkgs/development/python-modules/weblate-language-data/default.nix +++ b/pkgs/development/python-modules/weblate-language-data/default.nix @@ -26,12 +26,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "weblate_language_data" ]; - meta = with lib; { + meta = { description = "Language definitions used by Weblate"; homepage = "https://github.com/WeblateOrg/language-data"; changelog = "https://github.com/WeblateOrg/language-data/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/weblate-schemas/default.nix b/pkgs/development/python-modules/weblate-schemas/default.nix index f3310a3b5094..875ad8802fbe 100644 --- a/pkgs/development/python-modules/weblate-schemas/default.nix +++ b/pkgs/development/python-modules/weblate-schemas/default.nix @@ -40,12 +40,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "weblate_schemas" ]; - meta = with lib; { + meta = { description = "Schemas used by Weblate"; homepage = "https://github.com/WeblateOrg/weblate_schemas"; changelog = "https://github.com/WeblateOrg/weblate_schemas/blob/${version}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/webob/default.nix b/pkgs/development/python-modules/webob/default.nix index d45c06105875..42f99d42c651 100644 --- a/pkgs/development/python-modules/webob/default.nix +++ b/pkgs/development/python-modules/webob/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { inherit pyramid routes tokenlib; }; - meta = with lib; { + meta = { description = "WSGI request and response object"; homepage = "https://webob.org/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/webrtc-noise-gain/default.nix b/pkgs/development/python-modules/webrtc-noise-gain/default.nix index 2ca4717e7e6e..2e6cb401617d 100644 --- a/pkgs/development/python-modules/webrtc-noise-gain/default.nix +++ b/pkgs/development/python-modules/webrtc-noise-gain/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Tiny wrapper around webrtc-audio-processing for noise suppression/auto gain only"; homepage = "https://github.com/rhasspy/webrtc-noise-gain"; changelog = "https://github.com/rhasspy/webrtc-noise-gain/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/websocket-client/default.nix b/pkgs/development/python-modules/websocket-client/default.nix index dbaae49890b5..09551e7cf40b 100644 --- a/pkgs/development/python-modules/websocket-client/default.nix +++ b/pkgs/development/python-modules/websocket-client/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "websocket" ]; - meta = with lib; { + meta = { description = "Websocket client for Python"; homepage = "https://github.com/websocket-client/websocket-client"; changelog = "https://github.com/websocket-client/websocket-client/blob/v${version}/ChangeLog"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "wsdump"; }; } diff --git a/pkgs/development/python-modules/websockets/default.nix b/pkgs/development/python-modules/websockets/default.nix index 25ff8ada5b62..4a3a4d48933c 100644 --- a/pkgs/development/python-modules/websockets/default.nix +++ b/pkgs/development/python-modules/websockets/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "websockets" ]; - meta = with lib; { + meta = { description = "WebSocket implementation in Python"; homepage = "https://websockets.readthedocs.io/"; changelog = "https://github.com/aaugustin/websockets/blob/${src.tag}/docs/project/changelog.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/websockify/default.nix b/pkgs/development/python-modules/websockify/default.nix index 005390911dc3..63593a397668 100644 --- a/pkgs/development/python-modules/websockify/default.nix +++ b/pkgs/development/python-modules/websockify/default.nix @@ -44,12 +44,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "websockify" ]; - meta = with lib; { + meta = { description = "WebSockets support for any application/server"; mainProgram = "websockify"; homepage = "https://github.com/kanaka/websockify"; changelog = "https://github.com/novnc/websockify/releases/tag/${src.tag}"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/webtest-aiohttp/default.nix b/pkgs/development/python-modules/webtest-aiohttp/default.nix index 67c513601e53..f8dfdd4476c5 100644 --- a/pkgs/development/python-modules/webtest-aiohttp/default.nix +++ b/pkgs/development/python-modules/webtest-aiohttp/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "webtest_aiohttp" ]; - meta = with lib; { + meta = { changelog = "https://github.com/sloria/webtest-aiohttp/blob/${src.rev}/CHANGELOG.rst"; description = "Provides integration of WebTest with aiohttp.web applications"; homepage = "https://github.com/sloria/webtest-aiohttp"; - license = licenses.mit; - maintainers = with maintainers; [ cript0nauta ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cript0nauta ]; }; } diff --git a/pkgs/development/python-modules/webtest/default.nix b/pkgs/development/python-modules/webtest/default.nix index 9d5773b6c407..b6d4cefbd216 100644 --- a/pkgs/development/python-modules/webtest/default.nix +++ b/pkgs/development/python-modules/webtest/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "webtest" ]; - meta = with lib; { + meta = { description = "Helper to test WSGI applications"; homepage = "https://webtest.readthedocs.org/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/webthing-ws/default.nix b/pkgs/development/python-modules/webthing-ws/default.nix index 8fda705031d5..c3e80531ab43 100644 --- a/pkgs/development/python-modules/webthing-ws/default.nix +++ b/pkgs/development/python-modules/webthing-ws/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "webthing_ws" ]; - meta = with lib; { + meta = { description = "WebThing WebSocket consumer and API client"; homepage = "https://github.com/home-assistant-ecosystem/webthing-ws"; changelog = "https://github.com/home-assistant-ecosystem/webthing-ws/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/webthing/default.nix b/pkgs/development/python-modules/webthing/default.nix index 4f4ede0e8ba1..096e695ac785 100644 --- a/pkgs/development/python-modules/webthing/default.nix +++ b/pkgs/development/python-modules/webthing/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "webthing" ]; - meta = with lib; { + meta = { description = "Python implementation of a Web Thing server"; homepage = "https://github.com/WebThingsIO/webthing-python"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix index dd97aaad1c84..0573db759011 100644 --- a/pkgs/development/python-modules/weconnect/default.nix +++ b/pkgs/development/python-modules/weconnect/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "weconnect" ]; - meta = with lib; { + meta = { description = "Python client for the Volkswagen WeConnect Services"; homepage = "https://github.com/tillsteinbach/WeConnect-python"; changelog = "https://github.com/tillsteinbach/WeConnect-python/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/west/default.nix b/pkgs/development/python-modules/west/default.nix index 7937886192b2..98469c578c24 100644 --- a/pkgs/development/python-modules/west/default.nix +++ b/pkgs/development/python-modules/west/default.nix @@ -37,7 +37,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "west" ]; - meta = with lib; { + meta = { description = "Zephyr RTOS meta tool"; mainProgram = "west"; longDescription = '' @@ -58,7 +58,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/zephyrproject-rtos/west"; changelog = "https://github.com/zephyrproject-rtos/west/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ siriobalmelli ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/wfuzz/default.nix b/pkgs/development/python-modules/wfuzz/default.nix index 9d00d2a3a5c0..7834083686c5 100644 --- a/pkgs/development/python-modules/wfuzz/default.nix +++ b/pkgs/development/python-modules/wfuzz/default.nix @@ -82,7 +82,7 @@ buildPythonPackage rec { cp -R -T "wordlist" "$out/share/wordlists/wfuzz" ''; - meta = with lib; { + meta = { changelog = "https://github.com/xmendez/wfuzz/releases/tag/v${version}"; description = "Web content fuzzer to facilitate web applications assessments"; longDescription = '' @@ -91,7 +91,7 @@ buildPythonPackage rec { web application vulnerabilities. ''; homepage = "https://wfuzz.readthedocs.io"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ pamplemousse ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ pamplemousse ]; }; } diff --git a/pkgs/development/python-modules/wheel-filename/default.nix b/pkgs/development/python-modules/wheel-filename/default.nix index 94099401fbbd..9406ca87a29b 100644 --- a/pkgs/development/python-modules/wheel-filename/default.nix +++ b/pkgs/development/python-modules/wheel-filename/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wheel_filename" ]; - meta = with lib; { + meta = { description = "Parse wheel filenames"; homepage = "https://github.com/jwodder/wheel-filename"; changelog = "https://github.com/wheelodex/wheel-filename/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ ayazhafiz ]; mainProgram = "wheel-filename"; }; diff --git a/pkgs/development/python-modules/wheel-inspect/default.nix b/pkgs/development/python-modules/wheel-inspect/default.nix index c5874dd5c8c2..f5255960f987 100644 --- a/pkgs/development/python-modules/wheel-inspect/default.nix +++ b/pkgs/development/python-modules/wheel-inspect/default.nix @@ -59,12 +59,12 @@ buildPythonPackage rec { "-Wignore::DeprecationWarning" ]; - meta = with lib; { + meta = { description = "Extract information from wheels"; homepage = "https://github.com/jwodder/wheel-inspect"; changelog = "https://github.com/wheelodex/wheel-inspect/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ ayazhafiz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ayazhafiz ]; mainProgram = "wheel2json"; }; } diff --git a/pkgs/development/python-modules/wheel/default.nix b/pkgs/development/python-modules/wheel/default.nix index 1bc96ff57b58..50696d7c0cf5 100644 --- a/pkgs/development/python-modules/wheel/default.nix +++ b/pkgs/development/python-modules/wheel/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "wheel" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pypa/wheel"; description = "Built-package format for Python"; mainProgram = "wheel"; @@ -40,7 +40,7 @@ buildPythonPackage rec { It should be noted that wheel is not intended to be used as a library, and as such there is no stable, public API. ''; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ siriobalmelli ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python-modules/wheezy-captcha/default.nix b/pkgs/development/python-modules/wheezy-captcha/default.nix index 4582ce93a6b4..13380be1b8d2 100644 --- a/pkgs/development/python-modules/wheezy-captcha/default.nix +++ b/pkgs/development/python-modules/wheezy-captcha/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wheezy.captcha" ]; - meta = with lib; { + meta = { homepage = "https://wheezycaptcha.readthedocs.io/en/latest/"; description = "Lightweight CAPTCHA library"; - license = licenses.mit; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Flakebi ]; }; } diff --git a/pkgs/development/python-modules/wheezy-template/default.nix b/pkgs/development/python-modules/wheezy-template/default.nix index 9d2e7a36d0c4..37b12633eebe 100644 --- a/pkgs/development/python-modules/wheezy-template/default.nix +++ b/pkgs/development/python-modules/wheezy-template/default.nix @@ -16,11 +16,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wheezy.template" ]; - meta = with lib; { + meta = { homepage = "https://wheezytemplate.readthedocs.io/en/latest/"; description = "Lightweight template library"; mainProgram = "wheezy.template"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/whenever/default.nix b/pkgs/development/python-modules/whenever/default.nix index e6aca0c39185..94f15e9026f4 100644 --- a/pkgs/development/python-modules/whenever/default.nix +++ b/pkgs/development/python-modules/whenever/default.nix @@ -74,11 +74,11 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Strict, predictable, and typed datetimes"; homepage = "https://github.com/ariebovenberg/whenever"; changelog = "https://github.com/ariebovenberg/whenever/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/whichcraft/default.nix b/pkgs/development/python-modules/whichcraft/default.nix index e2156831dbb2..7c7ac4e269ae 100644 --- a/pkgs/development/python-modules/whichcraft/default.nix +++ b/pkgs/development/python-modules/whichcraft/default.nix @@ -25,9 +25,9 @@ buildPythonPackage rec { py.test ''; - meta = with lib; { + meta = { homepage = "https://github.com/pydanny/whichcraft"; description = "Cross-platform cross-python shutil.which functionality"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/whirlpool-sixth-sense/default.nix b/pkgs/development/python-modules/whirlpool-sixth-sense/default.nix index d71e045a5470..79ecb0184fda 100644 --- a/pkgs/development/python-modules/whirlpool-sixth-sense/default.nix +++ b/pkgs/development/python-modules/whirlpool-sixth-sense/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "whirlpool" ]; - meta = with lib; { + meta = { description = "Python library for Whirlpool 6th Sense appliances"; homepage = "https://github.com/abmantis/whirlpool-sixth-sense/"; changelog = "https://github.com/abmantis/whirlpool-sixth-sense/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/whispers/default.nix b/pkgs/development/python-modules/whispers/default.nix index 01a41c651830..a4e3167e65dd 100644 --- a/pkgs/development/python-modules/whispers/default.nix +++ b/pkgs/development/python-modules/whispers/default.nix @@ -81,12 +81,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "whispers" ]; - meta = with lib; { + meta = { description = "Tool to identify hardcoded secrets in static structured text"; homepage = "https://github.com/adeptex/whispers"; changelog = "https://github.com/adeptex/whispers/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "whispers"; }; } diff --git a/pkgs/development/python-modules/whitenoise/default.nix b/pkgs/development/python-modules/whitenoise/default.nix index f0b08a5d928b..452673cdc3aa 100644 --- a/pkgs/development/python-modules/whitenoise/default.nix +++ b/pkgs/development/python-modules/whitenoise/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "whitenoise" ]; - meta = with lib; { + meta = { description = "Library to serve static file for WSGI applications"; homepage = "https://whitenoise.readthedocs.io/"; changelog = "https://github.com/evansd/whitenoise/blob/${version}/docs/changelog.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/whodap/default.nix b/pkgs/development/python-modules/whodap/default.nix index 4287b66a5f06..1aa53ff63e27 100644 --- a/pkgs/development/python-modules/whodap/default.nix +++ b/pkgs/development/python-modules/whodap/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "whodap" ]; - meta = with lib; { + meta = { description = "Python RDAP utility for querying and parsing information about domain names"; homepage = "https://github.com/pogzyb/whodap"; changelog = "https://github.com/pogzyb/whodap/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/whois-api/default.nix b/pkgs/development/python-modules/whois-api/default.nix index f3a40dcc9a1a..6f8d1c906ffa 100644 --- a/pkgs/development/python-modules/whois-api/default.nix +++ b/pkgs/development/python-modules/whois-api/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "whoisapi" ]; - meta = with lib; { + meta = { description = "Whois API client library for Python"; homepage = "https://github.com/whois-api-llc/whois-api-py"; changelog = "https://github.com/whois-api-llc/whois-api-py/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/whois/default.nix b/pkgs/development/python-modules/whois/default.nix index ca6f8daf3112..90020bc7d4ac 100644 --- a/pkgs/development/python-modules/whois/default.nix +++ b/pkgs/development/python-modules/whois/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "whois" ]; - meta = with lib; { + meta = { description = "Python module/library for retrieving WHOIS information"; homepage = "https://github.com/DannyCork/python-whois/"; changelog = "https://github.com/DannyCork/python-whois/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/whoisdomain/default.nix b/pkgs/development/python-modules/whoisdomain/default.nix index 3ee27fd7cd91..5d3db83e24ac 100644 --- a/pkgs/development/python-modules/whoisdomain/default.nix +++ b/pkgs/development/python-modules/whoisdomain/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { # Tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Module to perform whois lookups"; homepage = "https://github.com/mboot-github/WhoisDomain"; changelog = "https://github.com/mboot-github/WhoisDomain/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "whoisdomain"; }; } diff --git a/pkgs/development/python-modules/whoosh/default.nix b/pkgs/development/python-modules/whoosh/default.nix index 963e542f25cd..92cc9c9030b8 100644 --- a/pkgs/development/python-modules/whoosh/default.nix +++ b/pkgs/development/python-modules/whoosh/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { disabledTests = [ "test_minimize_dfa" ]; - meta = with lib; { + meta = { description = "Fast, pure-Python full text indexing, search, and spell checking library"; homepage = "https://github.com/mchaput/whoosh"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/widlparser/default.nix b/pkgs/development/python-modules/widlparser/default.nix index 4ac8b869b443..a0da803dd986 100644 --- a/pkgs/development/python-modules/widlparser/default.nix +++ b/pkgs/development/python-modules/widlparser/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Stand-alone WebIDL Parser in Python"; homepage = "https://github.com/plinss/widlparser"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wiffi/default.nix b/pkgs/development/python-modules/wiffi/default.nix index 82cac0cc61d2..ec50634409e6 100644 --- a/pkgs/development/python-modules/wiffi/default.nix +++ b/pkgs/development/python-modules/wiffi/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wiffi" ]; - meta = with lib; { + meta = { description = "Python module to interface with STALL WIFFI devices"; homepage = "https://github.com/mampfes/python-wiffi"; changelog = "https://github.com/mampfes/python-wiffi/blob/${version}/HISTORY.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/wifi/default.nix b/pkgs/development/python-modules/wifi/default.nix index 9dddfad9d2ef..bfbe0da09735 100644 --- a/pkgs/development/python-modules/wifi/default.nix +++ b/pkgs/development/python-modules/wifi/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wifi" ]; - meta = with lib; { + meta = { description = "Provides a command line wrapper for iwlist and /etc/network/interfaces"; mainProgram = "wifi"; homepage = "https://github.com/rockymeza/wifi"; - maintainers = with maintainers; [ rhoriguchi ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ rhoriguchi ]; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/wikipedia-api/default.nix b/pkgs/development/python-modules/wikipedia-api/default.nix index 71a26aafc855..aaab51bd7871 100644 --- a/pkgs/development/python-modules/wikipedia-api/default.nix +++ b/pkgs/development/python-modules/wikipedia-api/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wikipediaapi" ]; - meta = with lib; { + meta = { description = "Python wrapper for Wikipedia"; homepage = "https://github.com/martin-majlis/Wikipedia-API"; changelog = "https://github.com/martin-majlis/Wikipedia-API/blob/${src.tag}/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/wikipedia/default.nix b/pkgs/development/python-modules/wikipedia/default.nix index 93d23d7209a7..023fc3a53115 100644 --- a/pkgs/development/python-modules/wikipedia/default.nix +++ b/pkgs/development/python-modules/wikipedia/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { unittestFlagsArray = [ "tests/ '*test.py'" ]; - meta = with lib; { + meta = { description = "Pythonic wrapper for the Wikipedia API"; homepage = "https://github.com/goldsmith/Wikipedia"; changelog = "https://github.com/goldsmith/Wikipedia/blob/master/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/wikipedia2vec/default.nix b/pkgs/development/python-modules/wikipedia2vec/default.nix index b025edcb1620..fec44eabf0cb 100644 --- a/pkgs/development/python-modules/wikipedia2vec/default.nix +++ b/pkgs/development/python-modules/wikipedia2vec/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "wikipedia2vec" ]; - meta = with lib; { + meta = { description = "Tool for learning vector representations of words and entities from Wikipedia"; mainProgram = "wikipedia2vec"; homepage = "https://wikipedia2vec.github.io/wikipedia2vec/"; changelog = "https://github.com/wikipedia2vec/wikipedia2vec/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ derdennisop ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/winacl/default.nix b/pkgs/development/python-modules/winacl/default.nix index 3ff55cf32a72..178f345877ce 100644 --- a/pkgs/development/python-modules/winacl/default.nix +++ b/pkgs/development/python-modules/winacl/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "winacl" ]; - meta = with lib; { + meta = { description = "Python module for ACL/ACE/Security descriptor manipulation"; homepage = "https://github.com/skelsec/winacl"; changelog = "https://github.com/skelsec/winacl/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/winsspi/default.nix b/pkgs/development/python-modules/winsspi/default.nix index 3008cb6f92f3..b21c7d58d093 100644 --- a/pkgs/development/python-modules/winsspi/default.nix +++ b/pkgs/development/python-modules/winsspi/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "winsspi" ]; - meta = with lib; { + meta = { description = "Python module for ACL/ACE/Security descriptor manipulation"; homepage = "https://github.com/skelsec/winsspi"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/wirerope/default.nix b/pkgs/development/python-modules/wirerope/default.nix index 10622e40b2b4..95b991b40cd3 100644 --- a/pkgs/development/python-modules/wirerope/default.nix +++ b/pkgs/development/python-modules/wirerope/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Wrappers for class callables"; homepage = "https://github.com/youknowone/wirerope"; changelog = "https://github.com/youknowone/wirerope/releases/tag/${version}"; - license = licenses.bsd2WithViews; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.bsd2WithViews; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/withings-api/default.nix b/pkgs/development/python-modules/withings-api/default.nix index 9c589fd060e8..0dcc33b27bfa 100644 --- a/pkgs/development/python-modules/withings-api/default.nix +++ b/pkgs/development/python-modules/withings-api/default.nix @@ -53,8 +53,8 @@ buildPythonPackage rec { description = "Library for the Withings Health API"; homepage = "https://github.com/vangorra/python_withings_api"; changelog = "https://github.com/vangorra/python_withings_api/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kittywitch ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kittywitch ]; broken = versionAtLeast pydantic.version "2"; }; } diff --git a/pkgs/development/python-modules/withings-sync/default.nix b/pkgs/development/python-modules/withings-sync/default.nix index e6efbd9c84a5..204ddcdf86d3 100644 --- a/pkgs/development/python-modules/withings-sync/default.nix +++ b/pkgs/development/python-modules/withings-sync/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "withings_sync" ]; - meta = with lib; { + meta = { description = "Synchronisation of Withings weight"; homepage = "https://github.com/jaroslawhartman/withings-sync"; changelog = "https://github.com/jaroslawhartman/withings-sync/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "withings-sync"; }; } diff --git a/pkgs/development/python-modules/wktutils/default.nix b/pkgs/development/python-modules/wktutils/default.nix index 8ed582230dbe..94dd2cb6cc48 100644 --- a/pkgs/development/python-modules/wktutils/default.nix +++ b/pkgs/development/python-modules/wktutils/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "WKTUtils" ]; - meta = with lib; { + meta = { description = "Collection of tools for handling WKTs"; homepage = "https://github.com/asfadmin/Discovery-WKTUtils"; changelog = "https://github.com/asfadmin/Discovery-WKTUtils/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/wled/default.nix b/pkgs/development/python-modules/wled/default.nix index d950cc72d0a2..7fcd69029332 100644 --- a/pkgs/development/python-modules/wled/default.nix +++ b/pkgs/development/python-modules/wled/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wled" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for WLED"; homepage = "https://github.com/frenck/python-wled"; changelog = "https://github.com/frenck/python-wled/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/wn/default.nix b/pkgs/development/python-modules/wn/default.nix index 30abb03c8eff..f1c8a11a3a3a 100644 --- a/pkgs/development/python-modules/wn/default.nix +++ b/pkgs/development/python-modules/wn/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wn" ]; - meta = with lib; { + meta = { description = "Modern, interlingual wordnet interface for Python"; homepage = "https://github.com/goodmami/wn"; changelog = "https://github.com/goodmami/wn/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/development/python-modules/woodblock/default.nix b/pkgs/development/python-modules/woodblock/default.nix index 12c71c8c55a7..14e28aff13fb 100644 --- a/pkgs/development/python-modules/woodblock/default.nix +++ b/pkgs/development/python-modules/woodblock/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "woodblock" ]; - meta = with lib; { + meta = { description = "Framework to generate file carving test data"; mainProgram = "woodblock"; homepage = "https://github.com/fkie-cad/woodblock"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wordcloud/default.nix b/pkgs/development/python-modules/wordcloud/default.nix index 513e25dae742..0e236ae2de1b 100644 --- a/pkgs/development/python-modules/wordcloud/default.nix +++ b/pkgs/development/python-modules/wordcloud/default.nix @@ -58,12 +58,12 @@ buildPythonPackage rec { "test_coloring_black_works" ]; - meta = with lib; { + meta = { description = "Word cloud generator in Python"; mainProgram = "wordcloud_cli"; homepage = "https://github.com/amueller/word_cloud"; changelog = "https://github.com/amueller/word_cloud/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jm2dev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jm2dev ]; }; } diff --git a/pkgs/development/python-modules/wordfreq/default.nix b/pkgs/development/python-modules/wordfreq/default.nix index d11d3562af6a..7d1a262e9525 100644 --- a/pkgs/development/python-modules/wordfreq/default.nix +++ b/pkgs/development/python-modules/wordfreq/default.nix @@ -46,9 +46,9 @@ buildPythonPackage rec { "test_korean" ]; - meta = with lib; { + meta = { description = "Library for looking up the frequencies of words in many languages, based on many sources of data"; homepage = "https://github.com/rspeer/wordfreq/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/wrapt/default.nix b/pkgs/development/python-modules/wrapt/default.nix index 46cdbd4f9071..49161d50a549 100644 --- a/pkgs/development/python-modules/wrapt/default.nix +++ b/pkgs/development/python-modules/wrapt/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wrapt" ]; - meta = with lib; { + meta = { description = "Module for decorators, wrappers and monkey patching"; homepage = "https://github.com/GrahamDumpleton/wrapt"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wrf-python/default.nix b/pkgs/development/python-modules/wrf-python/default.nix index ce8dfd259aab..25439cd30a0f 100644 --- a/pkgs/development/python-modules/wrf-python/default.nix +++ b/pkgs/development/python-modules/wrf-python/default.nix @@ -48,13 +48,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "wrf" ]; - meta = with lib; { + meta = { # `ModuleNotFoundError: No module named 'distutils.msvccompiler'` on Python 3.11 # `ModuleNotFoundError: No module named 'numpy.distutils'` on Python 3.12 broken = true; description = "WRF postprocessing library for Python"; homepage = "http://wrf-python.rtfd.org"; - license = licenses.asl20; - maintainers = with maintainers; [ mhaselsteiner ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mhaselsteiner ]; }; } diff --git a/pkgs/development/python-modules/ws4py/default.nix b/pkgs/development/python-modules/ws4py/default.nix index 4e66bb4b6e69..1080d93e43b5 100644 --- a/pkgs/development/python-modules/ws4py/default.nix +++ b/pkgs/development/python-modules/ws4py/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ws4py" ]; - meta = with lib; { + meta = { description = "WebSocket package for Python"; homepage = "https://ws4py.readthedocs.org"; changelog = "https://github.com/Lawouach/WebSocket-for-Python/blob/${version}/CHANGELOG.md"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wsdiscovery/default.nix b/pkgs/development/python-modules/wsdiscovery/default.nix index 7af12d7689fe..6587761eba49 100644 --- a/pkgs/development/python-modules/wsdiscovery/default.nix +++ b/pkgs/development/python-modules/wsdiscovery/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wsdiscovery" ]; - meta = with lib; { + meta = { description = "WS-Discovery implementation for Python"; homepage = "https://github.com/andreikop/python-ws-discovery"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/wsgidav/default.nix b/pkgs/development/python-modules/wsgidav/default.nix index a630bbd852fa..76c78093b68c 100644 --- a/pkgs/development/python-modules/wsgidav/default.nix +++ b/pkgs/development/python-modules/wsgidav/default.nix @@ -55,12 +55,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "wsgidav" ]; - meta = with lib; { + meta = { description = "Generic and extendable WebDAV server based on WSGI"; homepage = "https://wsgidav.readthedocs.io/"; changelog = "https://github.com/mar10/wsgidav/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "wsgidav"; }; } diff --git a/pkgs/development/python-modules/wsgiprox/default.nix b/pkgs/development/python-modules/wsgiprox/default.nix index f2b461b0263e..67d6e294f7f1 100644 --- a/pkgs/development/python-modules/wsgiprox/default.nix +++ b/pkgs/development/python-modules/wsgiprox/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { # See https://github.com/webrecorder/wsgiprox/issues/6 doCheck = false; - meta = with lib; { + meta = { description = "Python WSGI Middleware for adding HTTP/S proxy support to any WSGI Application"; homepage = "https://github.com/webrecorder/wsgiprox"; - license = licenses.asl20; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/wsgiproxy2/default.nix b/pkgs/development/python-modules/wsgiproxy2/default.nix index b00109680b71..d05c50d898d9 100644 --- a/pkgs/development/python-modules/wsgiproxy2/default.nix +++ b/pkgs/development/python-modules/wsgiproxy2/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wsgiproxy" ]; - meta = with lib; { + meta = { description = "HTTP proxying tools for WSGI apps"; homepage = "https://wsgiproxy2.readthedocs.io/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wsgitools/default.nix b/pkgs/development/python-modules/wsgitools/default.nix index 18e43357e5a6..35f036b4d7cb 100644 --- a/pkgs/development/python-modules/wsgitools/default.nix +++ b/pkgs/development/python-modules/wsgitools/default.nix @@ -30,8 +30,8 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { - maintainers = with maintainers; [ clkamp ]; + meta = { + maintainers = with lib.maintainers; [ clkamp ]; description = "Set of tools working with WSGI"; longDescription = '' wsgitools is a set of tools working with WSGI (see PEP 333). It @@ -40,7 +40,7 @@ buildPythonPackage rec { in writing it were portability and simplicity. ''; homepage = "https://subdivi.de/~helmut/wsgitools/"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/wsproto/default.nix b/pkgs/development/python-modules/wsproto/default.nix index 880e10b59d7f..6013beee94e0 100644 --- a/pkgs/development/python-modules/wsproto/default.nix +++ b/pkgs/development/python-modules/wsproto/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wsproto" ]; - meta = with lib; { + meta = { description = "Pure Python, pure state-machine WebSocket implementation"; homepage = "https://github.com/python-hyper/wsproto/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wtf-peewee/default.nix b/pkgs/development/python-modules/wtf-peewee/default.nix index 932b96d349bc..4bad85b106c7 100644 --- a/pkgs/development/python-modules/wtf-peewee/default.nix +++ b/pkgs/development/python-modules/wtf-peewee/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "WTForms integration for peewee models"; homepage = "https://github.com/coleifer/wtf-peewee/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wtforms-bootstrap5/default.nix b/pkgs/development/python-modules/wtforms-bootstrap5/default.nix index e55c3b98a82f..e045dabf7998 100644 --- a/pkgs/development/python-modules/wtforms-bootstrap5/default.nix +++ b/pkgs/development/python-modules/wtforms-bootstrap5/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { lxml ]; - meta = with lib; { + meta = { description = "Simple library for rendering WTForms in HTML as Bootstrap 5 form controls"; homepage = "https://github.com/LaunchPlatform/wtforms-bootstrap5"; changelog = "https://github.com/LaunchPlatform/wtforms-bootstrap5/releases/tag/${version}"; - license = licenses.mit; - teams = [ teams.wdz ]; + license = lib.licenses.mit; + teams = [ lib.teams.wdz ]; }; } diff --git a/pkgs/development/python-modules/wtforms/default.nix b/pkgs/development/python-modules/wtforms/default.nix index 9a62a785e7df..0bb9d91e95ad 100644 --- a/pkgs/development/python-modules/wtforms/default.nix +++ b/pkgs/development/python-modules/wtforms/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wtforms" ]; - meta = with lib; { + meta = { description = "Flexible forms validation and rendering library for Python"; homepage = "https://github.com/wtforms/wtforms"; changelog = "https://github.com/wtforms/wtforms/blob/${version}/CHANGES.rst"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/wunsen/default.nix b/pkgs/development/python-modules/wunsen/default.nix index 10cd539ac00f..3707ac16cc4b 100644 --- a/pkgs/development/python-modules/wunsen/default.nix +++ b/pkgs/development/python-modules/wunsen/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wunsen" ]; - meta = with lib; { + meta = { description = "Transliterate/transcribe other languages into Thai Topics"; homepage = "https://github.com/cakimpei/wunsen"; changelog = "https://github.com/cakimpei/wunsen/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/wurlitzer/default.nix b/pkgs/development/python-modules/wurlitzer/default.nix index 949f66bc266a..e70ab59f0b5e 100644 --- a/pkgs/development/python-modules/wurlitzer/default.nix +++ b/pkgs/development/python-modules/wurlitzer/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { enabledTestPaths = [ "test.py" ]; - meta = with lib; { + meta = { description = "Capture C-level output in context managers"; homepage = "https://github.com/minrk/wurlitzer"; changelog = "https://github.com/minrk/wurlitzer/blob/${version}/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wxpython/4.2.nix b/pkgs/development/python-modules/wxpython/4.2.nix index 679fdd4e62e2..28dde7031672 100644 --- a/pkgs/development/python-modules/wxpython/4.2.nix +++ b/pkgs/development/python-modules/wxpython/4.2.nix @@ -177,14 +177,14 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { changelog = "https://github.com/wxWidgets/Phoenix/blob/wxPython-${version}/CHANGES.rst"; description = "Cross platform GUI toolkit for Python, Phoenix version"; homepage = "http://wxpython.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus wxWindowsException31 ]; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/wyoming/default.nix b/pkgs/development/python-modules/wyoming/default.nix index 1caedfb360a1..f85c29309ea7 100644 --- a/pkgs/development/python-modules/wyoming/default.nix +++ b/pkgs/development/python-modules/wyoming/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { inherit wyoming-faster-whisper wyoming-openwakeword wyoming-piper; }; - meta = with lib; { + meta = { changelog = "https://github.com/OHF-Voice/wyoming/releases/tag/${src.tag}"; description = "Protocol for Rhasspy Voice Assistant"; homepage = "https://github.com/OHF-Voice/wyoming"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/x11-hash/default.nix b/pkgs/development/python-modules/x11-hash/default.nix index 92af43fad444..8bdc0ef98706 100644 --- a/pkgs/development/python-modules/x11-hash/default.nix +++ b/pkgs/development/python-modules/x11-hash/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "x11_hash" ]; - meta = with lib; { + meta = { description = "Binding for X11 proof of work hashing"; homepage = "https://github.com/mazaclub/x11_hash"; - license = licenses.mit; - maintainers = with maintainers; [ np ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ np ]; }; } diff --git a/pkgs/development/python-modules/x256/default.nix b/pkgs/development/python-modules/x256/default.nix index 69359f1578fd..ef35b04cbb09 100644 --- a/pkgs/development/python-modules/x256/default.nix +++ b/pkgs/development/python-modules/x256/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Find the nearest xterm 256 color index for an RGB"; homepage = "https://github.com/magarcia/python-x256"; - license = licenses.mit; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/xapian/default.nix b/pkgs/development/python-modules/xapian/default.nix index 6f2a5020418d..a5ce667e34a1 100644 --- a/pkgs/development/python-modules/xapian/default.nix +++ b/pkgs/development/python-modules/xapian/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { ${python.interpreter} python${pythonSuffix}/pythontest.py ''; - meta = with lib; { + meta = { description = "Python Bindings for Xapian"; homepage = "https://xapian.org/"; changelog = "https://xapian.org/docs/xapian-bindings-${version}/NEWS"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xarray-dataclass/default.nix b/pkgs/development/python-modules/xarray-dataclass/default.nix index 675c6cb2ca26..c55b3e974e2b 100644 --- a/pkgs/development/python-modules/xarray-dataclass/default.nix +++ b/pkgs/development/python-modules/xarray-dataclass/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xarray_dataclass" ]; - meta = with lib; { + meta = { description = "Xarray data creation made easy by dataclass"; homepage = "https://xarray-contrib.github.io/xarray-dataclass"; changelog = "https://github.com/xarray-contrib/xarray-dataclass/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/xarray-dataclasses/default.nix b/pkgs/development/python-modules/xarray-dataclasses/default.nix index 829348b91dc8..c92c4bb1448f 100644 --- a/pkgs/development/python-modules/xarray-dataclasses/default.nix +++ b/pkgs/development/python-modules/xarray-dataclasses/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xarray_dataclasses" ]; - meta = with lib; { + meta = { description = "Xarray data creation made easy by dataclass"; homepage = "https://github.com/astropenguin/xarray-dataclasses"; changelog = "https://github.com/astropenguin/xarray-dataclasses/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/xarray-einstats/default.nix b/pkgs/development/python-modules/xarray-einstats/default.nix index 905d9e5799ed..7fb308e4a20c 100644 --- a/pkgs/development/python-modules/xarray-einstats/default.nix +++ b/pkgs/development/python-modules/xarray-einstats/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { "test_pinv" ]; - meta = with lib; { + meta = { description = "Stats, linear algebra and einops for xarray"; homepage = "https://github.com/arviz-devs/xarray-einstats"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/xattr/default.nix b/pkgs/development/python-modules/xattr/default.nix index f90a8afbf64c..6665d938a7d3 100644 --- a/pkgs/development/python-modules/xattr/default.nix +++ b/pkgs/development/python-modules/xattr/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "xattr" ]; - meta = with lib; { + meta = { description = "Python wrapper for extended filesystem attributes"; mainProgram = "xattr"; homepage = "https://github.com/xattr/xattr"; changelog = "https://github.com/xattr/xattr/blob/v${version}/CHANGES.txt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xboxapi/default.nix b/pkgs/development/python-modules/xboxapi/default.nix index 49ea1ec581b5..13a3d9d1ecfb 100644 --- a/pkgs/development/python-modules/xboxapi/default.nix +++ b/pkgs/development/python-modules/xboxapi/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xboxapi" ]; - meta = with lib; { + meta = { description = "Python XBOX One API wrapper"; homepage = "https://github.com/mKeRix/xboxapi-python"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/xcffib/default.nix b/pkgs/development/python-modules/xcffib/default.nix index 093118aa92fb..c5716e940803 100644 --- a/pkgs/development/python-modules/xcffib/default.nix +++ b/pkgs/development/python-modules/xcffib/default.nix @@ -45,12 +45,12 @@ buildPythonPackage rec { # Tests use xvfb __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Drop in replacement for xpyb, an XCB python binding"; homepage = "https://github.com/tych0/xcffib"; changelog = "https://github.com/tych0/xcffib/releases/tag/v${version}"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin ++ platforms.windows; - maintainers = with maintainers; [ kamilchm ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.windows; + maintainers = with lib.maintainers; [ kamilchm ]; }; } diff --git a/pkgs/development/python-modules/xdg-base-dirs/default.nix b/pkgs/development/python-modules/xdg-base-dirs/default.nix index d6608505d172..f57b9312604a 100644 --- a/pkgs/development/python-modules/xdg-base-dirs/default.nix +++ b/pkgs/development/python-modules/xdg-base-dirs/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { sed -i /addopts/d pyproject.toml ''; - meta = with lib; { + meta = { description = "Implementation of the XDG Base Directory Specification in Python"; homepage = "https://github.com/srstevenson/xdg-base-dirs"; changelog = "https://github.com/srstevenson/xdg-base-dirs/releases/tag/${version}"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xdg/default.nix b/pkgs/development/python-modules/xdg/default.nix index 4a2efae3a8fb..371d0294713c 100644 --- a/pkgs/development/python-modules/xdg/default.nix +++ b/pkgs/development/python-modules/xdg/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xdg" ]; - meta = with lib; { + meta = { description = "XDG Base Directory Specification for Python"; homepage = "https://github.com/srstevenson/xdg"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xdoctest/default.nix b/pkgs/development/python-modules/xdoctest/default.nix index 101b0376a41c..b837fbb7af44 100644 --- a/pkgs/development/python-modules/xdoctest/default.nix +++ b/pkgs/development/python-modules/xdoctest/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "xdoctest" ]; - meta = with lib; { + meta = { description = "Rewrite of Python's builtin doctest module (with pytest plugin integration) with AST instead of REGEX"; homepage = "https://github.com/Erotemic/xdoctest"; changelog = "https://github.com/Erotemic/xdoctest/blob/${src.rev}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ natsukium ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ natsukium ]; mainProgram = "xdoctest"; }; } diff --git a/pkgs/development/python-modules/xdot/default.nix b/pkgs/development/python-modules/xdot/default.nix index 944b9f4619e9..6ac7981e1660 100644 --- a/pkgs/development/python-modules/xdot/default.nix +++ b/pkgs/development/python-modules/xdot/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Interactive viewer for graphs written in Graphviz's dot"; mainProgram = "xdot"; homepage = "https://github.com/jrfonseca/xdot.py"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/xdxf2html/default.nix b/pkgs/development/python-modules/xdxf2html/default.nix index f61edcbc6966..3d58775b6166 100644 --- a/pkgs/development/python-modules/xdxf2html/default.nix +++ b/pkgs/development/python-modules/xdxf2html/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xdxf2html" ]; - meta = with lib; { + meta = { description = "Python module for converting XDXF dictionary texts into HTML"; homepage = "https://github.com/Crissium/python-xdxf2html"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ vizid ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ vizid ]; }; } diff --git a/pkgs/development/python-modules/xiaomi-ble/default.nix b/pkgs/development/python-modules/xiaomi-ble/default.nix index c6ac22b0dd2c..a88150252eb4 100644 --- a/pkgs/development/python-modules/xiaomi-ble/default.nix +++ b/pkgs/development/python-modules/xiaomi-ble/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xiaomi_ble" ]; - meta = with lib; { + meta = { description = "Library for Xiaomi BLE devices"; homepage = "https://github.com/Bluetooth-Devices/xiaomi-ble"; changelog = "https://github.com/Bluetooth-Devices/xiaomi-ble/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/xkbcommon/default.nix b/pkgs/development/python-modules/xkbcommon/default.nix index 5d5ce9430959..f842b6c6a4e3 100644 --- a/pkgs/development/python-modules/xkbcommon/default.nix +++ b/pkgs/development/python-modules/xkbcommon/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xkbcommon" ]; - meta = with lib; { + meta = { homepage = "https://github.com/sde1000/python-xkbcommon"; description = "Python bindings for libxkbcommon using cffi"; - license = licenses.mit; - maintainers = with maintainers; [ chvp ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chvp ]; }; } diff --git a/pkgs/development/python-modules/xkcdpass/default.nix b/pkgs/development/python-modules/xkcdpass/default.nix index 8396a24af02d..5c29c1a2acd5 100644 --- a/pkgs/development/python-modules/xkcdpass/default.nix +++ b/pkgs/development/python-modules/xkcdpass/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { install -Dm444 -t $out/share/doc/${pname} README* ''; - meta = with lib; { + meta = { description = "Generate secure multiword passwords/passphrases, inspired by XKCD"; homepage = "https://github.com/redacted/XKCD-password-generator"; - license = licenses.bsd3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "xkcdpass"; }; } diff --git a/pkgs/development/python-modules/xknx/default.nix b/pkgs/development/python-modules/xknx/default.nix index 5c843a747789..762277040f40 100644 --- a/pkgs/development/python-modules/xknx/default.nix +++ b/pkgs/development/python-modules/xknx/default.nix @@ -46,7 +46,7 @@ buildPythonPackage rec { "test_start_secure_routing_manual" ]; - meta = with lib; { + meta = { description = "KNX Library Written in Python"; longDescription = '' XKNX is an asynchronous Python library for reading and writing KNX/IP @@ -54,8 +54,8 @@ buildPythonPackage rec { ''; homepage = "https://github.com/XKNX/xknx"; changelog = "https://github.com/XKNX/xknx/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/xknxproject/default.nix b/pkgs/development/python-modules/xknxproject/default.nix index 8d9a0a3b885c..95252f79de52 100644 --- a/pkgs/development/python-modules/xknxproject/default.nix +++ b/pkgs/development/python-modules/xknxproject/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xknxproject" ]; - meta = with lib; { + meta = { description = "Library to extract KNX projects and parses the underlying XML"; homepage = "https://github.com/XKNX/xknxproject"; changelog = "https://github.com/XKNX/xknxproject/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/xlib/default.nix b/pkgs/development/python-modules/xlib/default.nix index bdb7685f08f4..480cfdb0f68e 100644 --- a/pkgs/development/python-modules/xlib/default.nix +++ b/pkgs/development/python-modules/xlib/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test/test_xlib_display.py" ]; - meta = with lib; { + meta = { changelog = "https://github.com/python-xlib/python-xlib/releases/tag/${version}"; description = "Fully functional X client library for Python programs"; homepage = "https://github.com/python-xlib/python-xlib"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xlrd/default.nix b/pkgs/development/python-modules/xlrd/default.nix index 202fe906dfb5..78308e5127f1 100644 --- a/pkgs/development/python-modules/xlrd/default.nix +++ b/pkgs/development/python-modules/xlrd/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { homepage = "https://www.python-excel.org/"; description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files"; mainProgram = "runxlrd.py"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/xlsx2csv/default.nix b/pkgs/development/python-modules/xlsx2csv/default.nix index a949b0b7d21a..a58f46547ec8 100644 --- a/pkgs/development/python-modules/xlsx2csv/default.nix +++ b/pkgs/development/python-modules/xlsx2csv/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { wheel ]; - meta = with lib; { + meta = { homepage = "https://github.com/dilshod/xlsx2csv"; description = "Convert xlsx to csv"; mainProgram = "xlsx2csv"; - license = licenses.bsd3; - maintainers = with maintainers; [ jb55 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jb55 ]; }; } diff --git a/pkgs/development/python-modules/xlsxwriter/default.nix b/pkgs/development/python-modules/xlsxwriter/default.nix index 7f504256c941..6eef23894335 100644 --- a/pkgs/development/python-modules/xlsxwriter/default.nix +++ b/pkgs/development/python-modules/xlsxwriter/default.nix @@ -27,12 +27,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "xlsxwriter" ]; - meta = with lib; { + meta = { description = "Module for creating Excel XLSX files"; homepage = "https://xlsxwriter.readthedocs.io/"; changelog = "https://xlsxwriter.readthedocs.io/changes.html"; - license = licenses.bsd2; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ jluttine ]; mainProgram = "vba_extract.py"; }; } diff --git a/pkgs/development/python-modules/xmind/default.nix b/pkgs/development/python-modules/xmind/default.nix index aea0f4bd08c1..b6eca903caac 100644 --- a/pkgs/development/python-modules/xmind/default.nix +++ b/pkgs/development/python-modules/xmind/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmind" ]; - meta = with lib; { + meta = { description = "Python module to create mindmaps"; homepage = "https://github.com/zhuifengshen/xmind"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/xml-marshaller/default.nix b/pkgs/development/python-modules/xml-marshaller/default.nix index c56cd4e8130d..67aad175937f 100644 --- a/pkgs/development/python-modules/xml-marshaller/default.nix +++ b/pkgs/development/python-modules/xml-marshaller/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xml_marshaller" ]; - meta = with lib; { + meta = { description = "This module allows one to marshal simple Python data types into a custom XML format"; homepage = "https://www.python.org/community/sigs/current/xml-sig/"; - license = licenses.psfl; - maintainers = with maintainers; [ mazurel ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ mazurel ]; }; } diff --git a/pkgs/development/python-modules/xml2rfc/default.nix b/pkgs/development/python-modules/xml2rfc/default.nix index 19881cdf10d9..6a94c94e3edf 100644 --- a/pkgs/development/python-modules/xml2rfc/default.nix +++ b/pkgs/development/python-modules/xml2rfc/default.nix @@ -77,15 +77,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "xml2rfc" ]; - meta = with lib; { + meta = { description = "Tool generating IETF RFCs and drafts from XML sources"; mainProgram = "xml2rfc"; homepage = "https://github.com/ietf-tools/xml2rfc"; changelog = "https://github.com/ietf-tools/xml2rfc/blob/${src.tag}/CHANGELOG.md"; # Well, parts might be considered unfree, if being strict; see: # http://metadata.ftp-master.debian.org/changelogs/non-free/x/xml2rfc/xml2rfc_2.9.6-1_copyright - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vcunat yrashk ]; diff --git a/pkgs/development/python-modules/xmljson/default.nix b/pkgs/development/python-modules/xmljson/default.nix index 3f1e37c9a38e..42aba72a328f 100644 --- a/pkgs/development/python-modules/xmljson/default.nix +++ b/pkgs/development/python-modules/xmljson/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { nativeCheckInputs = [ lxml ]; - meta = with lib; { + meta = { description = "Converts XML into dictionary structures and vice-versa"; mainProgram = "xml2json"; homepage = "https://github.com/sanand0/xmljson"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ rakesh4g ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/development/python-modules/xmlschema/default.nix b/pkgs/development/python-modules/xmlschema/default.nix index 4997eed9be4e..13159f72c110 100644 --- a/pkgs/development/python-modules/xmlschema/default.nix +++ b/pkgs/development/python-modules/xmlschema/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmlschema" ]; - meta = with lib; { + meta = { description = "XML Schema validator and data conversion library for Python"; homepage = "https://github.com/sissaschool/xmlschema"; changelog = "https://github.com/sissaschool/xmlschema/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xmlsec/default.nix b/pkgs/development/python-modules/xmlsec/default.nix index 159500e51baf..1e1db9c44ddd 100644 --- a/pkgs/development/python-modules/xmlsec/default.nix +++ b/pkgs/development/python-modules/xmlsec/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmlsec" ]; - meta = with lib; { + meta = { description = "Python bindings for the XML Security Library"; homepage = "https://github.com/mehcode/python-xmlsec"; changelog = "https://github.com/xmlsec/python-xmlsec/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/development/python-modules/xmod/default.nix b/pkgs/development/python-modules/xmod/default.nix index 34b197579c3e..5ab12ca54e86 100644 --- a/pkgs/development/python-modules/xmod/default.nix +++ b/pkgs/development/python-modules/xmod/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmod" ]; - meta = with lib; { + meta = { description = "Turn any object into a module"; homepage = "https://github.com/rec/xmod"; changelog = "https://github.com/rec/xmod/blob/${src.rev}/CHANGELOG"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xmodem/default.nix b/pkgs/development/python-modules/xmodem/default.nix index e5cbf9fc8932..feb8e524b60b 100644 --- a/pkgs/development/python-modules/xmodem/default.nix +++ b/pkgs/development/python-modules/xmodem/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "Pure python implementation of the XMODEM protocol"; - maintainers = with maintainers; [ emantor ]; + maintainers = with lib.maintainers; [ emantor ]; homepage = "https://github.com/tehmaze/xmodem"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/xmpppy/default.nix b/pkgs/development/python-modules/xmpppy/default.nix index 53617981f9c9..dc66ff0948f6 100644 --- a/pkgs/development/python-modules/xmpppy/default.nix +++ b/pkgs/development/python-modules/xmpppy/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Python 2/3 implementation of XMPP"; homepage = "https://github.com/xmpppy/xmpppy"; changelog = "https://github.com/xmpppy/xmpppy/blob/${version}/CHANGES.rst"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jopejoe1 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/xpath-expressions/default.nix b/pkgs/development/python-modules/xpath-expressions/default.nix index a2eabdc401c0..720d2a929da0 100644 --- a/pkgs/development/python-modules/xpath-expressions/default.nix +++ b/pkgs/development/python-modules/xpath-expressions/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xpath" ]; - meta = with lib; { + meta = { description = "Python module to handle XPath expressions"; homepage = "https://github.com/orf/xpath-expressions"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/xpybutil/default.nix b/pkgs/development/python-modules/xpybutil/default.nix index a23cd81e7c79..cdcc1c263942 100644 --- a/pkgs/development/python-modules/xpybutil/default.nix +++ b/pkgs/development/python-modules/xpybutil/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xpybutil" ]; - meta = with lib; { + meta = { homepage = "https://github.com/BurntSushi/xpybutil"; description = "Incomplete xcb-util port plus some extras"; - license = licenses.wtfpl; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/development/python-modules/xstatic-asciinema-player/default.nix b/pkgs/development/python-modules/xstatic-asciinema-player/default.nix index 4b44fda0030e..fc28f23bcdd9 100644 --- a/pkgs/development/python-modules/xstatic-asciinema-player/default.nix +++ b/pkgs/development/python-modules/xstatic-asciinema-player/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/python-xstatic/asciinema-player"; description = "Asciinema-player packaged for python"; - license = licenses.asl20; - maintainers = with maintainers; [ aither64 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aither64 ]; }; } diff --git a/pkgs/development/python-modules/xstatic-bootbox/default.nix b/pkgs/development/python-modules/xstatic-bootbox/default.nix index bafdb3adfcac..6f37fd300306 100644 --- a/pkgs/development/python-modules/xstatic-bootbox/default.nix +++ b/pkgs/development/python-modules/xstatic-bootbox/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://bootboxjs.com"; description = "Bootboxjs packaged static files for python"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/xstatic-bootstrap/default.nix b/pkgs/development/python-modules/xstatic-bootstrap/default.nix index a5d8aea5952f..a51fbaafffb8 100644 --- a/pkgs/development/python-modules/xstatic-bootstrap/default.nix +++ b/pkgs/development/python-modules/xstatic-bootstrap/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://getbootstrap.com"; description = "Bootstrap packaged static files for python"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/xstatic-font-awesome/default.nix b/pkgs/development/python-modules/xstatic-font-awesome/default.nix index 1efb647ce53d..f66cd9ce13cd 100644 --- a/pkgs/development/python-modules/xstatic-font-awesome/default.nix +++ b/pkgs/development/python-modules/xstatic-font-awesome/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/python-xstatic/font-awesome"; description = "Font Awesome packaged for python"; - license = licenses.ofl; - maintainers = with maintainers; [ aither64 ]; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ aither64 ]; }; } diff --git a/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix b/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix index a91bf544dc8c..9c98ffcb4e2c 100644 --- a/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix +++ b/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ xstatic-jquery ]; - meta = with lib; { + meta = { homepage = "https://plugins.jquery.com/project/jQuery-File-Upload"; description = "jquery-file-upload packaged static files for python"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/xstatic-jquery-ui/default.nix b/pkgs/development/python-modules/xstatic-jquery-ui/default.nix index 548e6deaccd3..018ceccc13b2 100644 --- a/pkgs/development/python-modules/xstatic-jquery-ui/default.nix +++ b/pkgs/development/python-modules/xstatic-jquery-ui/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ xstatic-jquery ]; - meta = with lib; { + meta = { homepage = "https://jqueryui.com/"; description = "jquery-ui packaged static files for python"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/xstatic-jquery/default.nix b/pkgs/development/python-modules/xstatic-jquery/default.nix index 7688be842da0..cc0d02084464 100644 --- a/pkgs/development/python-modules/xstatic-jquery/default.nix +++ b/pkgs/development/python-modules/xstatic-jquery/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://jquery.org"; description = "jquery packaged static files for python"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/xstatic-pygments/default.nix b/pkgs/development/python-modules/xstatic-pygments/default.nix index ba96e52f65f0..578b91ca3577 100644 --- a/pkgs/development/python-modules/xstatic-pygments/default.nix +++ b/pkgs/development/python-modules/xstatic-pygments/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://pygments.org"; description = "Pygments packaged static files for python"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/xstatic/default.nix b/pkgs/development/python-modules/xstatic/default.nix index 6de703cffbfe..cbf3b968d58b 100644 --- a/pkgs/development/python-modules/xstatic/default.nix +++ b/pkgs/development/python-modules/xstatic/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/thomaswaldmann/xstatic"; description = "Base packaged static files for python"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/python-modules/xxhash/default.nix b/pkgs/development/python-modules/xxhash/default.nix index 66a162f4f266..894c56a20f44 100644 --- a/pkgs/development/python-modules/xxhash/default.nix +++ b/pkgs/development/python-modules/xxhash/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xxhash" ]; - meta = with lib; { + meta = { description = "Python Binding for xxHash"; homepage = "https://github.com/ifduyue/python-xxhash"; changelog = "https://github.com/ifduyue/python-xxhash/blob/v${version}/CHANGELOG.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/yacs/default.nix b/pkgs/development/python-modules/yacs/default.nix index f3e15c5ce41e..e8b5d63afe00 100644 --- a/pkgs/development/python-modules/yacs/default.nix +++ b/pkgs/development/python-modules/yacs/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { ${python.interpreter} yacs/tests.py ''; - meta = with lib; { + meta = { description = "Yet Another Configuration System"; homepage = "https://github.com/rbgirshick/yacs"; - license = licenses.asl20; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/yalesmartalarmclient/default.nix b/pkgs/development/python-modules/yalesmartalarmclient/default.nix index d39b1f20e4ce..048b48436e2e 100644 --- a/pkgs/development/python-modules/yalesmartalarmclient/default.nix +++ b/pkgs/development/python-modules/yalesmartalarmclient/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yalesmartalarmclient" ]; - meta = with lib; { + meta = { description = "Python module to interface with Yale Smart Alarm Systems"; homepage = "https://github.com/domwillcode/yale-smart-alarm-client"; changelog = "https://github.com/domwillcode/yale-smart-alarm-client/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/yalexs-ble/default.nix b/pkgs/development/python-modules/yalexs-ble/default.nix index 24c447ca6c72..fb83867ce3d2 100644 --- a/pkgs/development/python-modules/yalexs-ble/default.nix +++ b/pkgs/development/python-modules/yalexs-ble/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yalexs_ble" ]; - meta = with lib; { + meta = { description = "Library for Yale BLE devices"; homepage = "https://github.com/bdraco/yalexs-ble"; changelog = "https://github.com/bdraco/yalexs-ble/blob/${src.tag}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/yalexs/default.nix b/pkgs/development/python-modules/yalexs/default.nix index 6b3fc00760bf..e1983ff665ec 100644 --- a/pkgs/development/python-modules/yalexs/default.nix +++ b/pkgs/development/python-modules/yalexs/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yalexs" ]; - meta = with lib; { + meta = { description = "Python API for Yale Access (formerly August) Smart Lock and Doorbell"; homepage = "https://github.com/bdraco/yalexs"; changelog = "https://github.com/bdraco/yalexs/blob/${src.tag}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/yamale/default.nix b/pkgs/development/python-modules/yamale/default.nix index 50fbfdce9253..aea1e34c4b70 100644 --- a/pkgs/development/python-modules/yamale/default.nix +++ b/pkgs/development/python-modules/yamale/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "yamale" ]; - meta = with lib; { + meta = { description = "Schema and validator for YAML"; homepage = "https://github.com/23andMe/Yamale"; changelog = "https://github.com/23andMe/Yamale/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ rtburns-jpl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rtburns-jpl ]; mainProgram = "yamale"; }; } diff --git a/pkgs/development/python-modules/yamllint/default.nix b/pkgs/development/python-modules/yamllint/default.nix index 64aa2e5fdbc3..76c2e34272bf 100644 --- a/pkgs/development/python-modules/yamllint/default.nix +++ b/pkgs/development/python-modules/yamllint/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "yamllint" ]; - meta = with lib; { + meta = { description = "Linter for YAML files"; homepage = "https://github.com/adrienverge/yamllint"; changelog = "https://github.com/adrienverge/yamllint/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mikefaille ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mikefaille ]; mainProgram = "yamllint"; }; } diff --git a/pkgs/development/python-modules/yamlordereddictloader/default.nix b/pkgs/development/python-modules/yamlordereddictloader/default.nix index b1f4a0caa652..c29cc6acd681 100644 --- a/pkgs/development/python-modules/yamlordereddictloader/default.nix +++ b/pkgs/development/python-modules/yamlordereddictloader/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yamlordereddictloader" ]; - meta = with lib; { + meta = { description = "YAML loader and dump for PyYAML allowing to keep keys order"; homepage = "https://github.com/fmenabe/python-yamlordereddictloader"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/yangson/default.nix b/pkgs/development/python-modules/yangson/default.nix index 5705ef4dc312..1e11c86edbd8 100644 --- a/pkgs/development/python-modules/yangson/default.nix +++ b/pkgs/development/python-modules/yangson/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yangson" ]; - meta = with lib; { + meta = { description = "Library for working with data modelled in YANG"; mainProgram = "yangson"; homepage = "https://github.com/CZ-NIC/yangson"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; diff --git a/pkgs/development/python-modules/yappi/default.nix b/pkgs/development/python-modules/yappi/default.nix index cb3135509155..85859213d195 100644 --- a/pkgs/development/python-modules/yappi/default.nix +++ b/pkgs/development/python-modules/yappi/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yappi" ]; - meta = with lib; { + meta = { description = "Python profiler that supports multithreading and measuring CPU time"; mainProgram = "yappi"; homepage = "https://github.com/sumerc/yappi"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/yapsy/default.nix b/pkgs/development/python-modules/yapsy/default.nix index ba3818351bab..8041c2b8b2b1 100644 --- a/pkgs/development/python-modules/yapsy/default.nix +++ b/pkgs/development/python-modules/yapsy/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { tagPrefix = "release_Yapsy-"; }; - meta = with lib; { + meta = { homepage = "https://yapsy.sourceforge.net/"; description = "Yet another plugin system"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/yara-python/default.nix b/pkgs/development/python-modules/yara-python/default.nix index 1db47ffb07e6..4e8ff614adde 100644 --- a/pkgs/development/python-modules/yara-python/default.nix +++ b/pkgs/development/python-modules/yara-python/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yara" ]; - meta = with lib; { + meta = { description = "Python interface for YARA"; homepage = "https://github.com/VirusTotal/yara-python"; changelog = "https://github.com/VirusTotal/yara-python/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/yargy/default.nix b/pkgs/development/python-modules/yargy/default.nix index 5a4e7099763b..3617055f03ec 100644 --- a/pkgs/development/python-modules/yargy/default.nix +++ b/pkgs/development/python-modules/yargy/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; enabledTestPaths = [ "tests" ]; - meta = with lib; { + meta = { description = "Rule-based facts extraction for Russian language"; homepage = "https://github.com/natasha/yargy"; - license = licenses.mit; - maintainers = with maintainers; [ npatsakula ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ npatsakula ]; }; } diff --git a/pkgs/development/python-modules/yark/default.nix b/pkgs/development/python-modules/yark/default.nix index 3474c86b2751..0e4bf8ae4f14 100644 --- a/pkgs/development/python-modules/yark/default.nix +++ b/pkgs/development/python-modules/yark/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "yark" ]; - meta = with lib; { + meta = { description = "Module for YouTube archiving"; mainProgram = "yark"; homepage = "https://github.com/Owez/yark"; changelog = "https://github.com/Owez/yark/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/yasi/default.nix b/pkgs/development/python-modules/yasi/default.nix index 1c2fc835be57..80076d43bbb7 100644 --- a/pkgs/development/python-modules/yasi/default.nix +++ b/pkgs/development/python-modules/yasi/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "yasi" ]; - meta = with lib; { + meta = { description = "Dialect-aware s-expression indenter written in Python and newLISP"; mainProgram = "yasi"; homepage = "https://github.com/nkmathew/yasi-sexp-indenter"; changelog = "https://github.com/nkmathew/yasi-sexp-indenter/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kranzes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/development/python-modules/yaspin/default.nix b/pkgs/development/python-modules/yaspin/default.nix index 826c64475f06..db11f15bbf80 100644 --- a/pkgs/development/python-modules/yaspin/default.nix +++ b/pkgs/development/python-modules/yaspin/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yaspin" ]; - meta = with lib; { + meta = { description = "Yet Another Terminal Spinner"; homepage = "https://github.com/pavdmyt/yaspin"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/yaswfp/default.nix b/pkgs/development/python-modules/yaswfp/default.nix index 55cc548c34ba..57c24a34eddd 100644 --- a/pkgs/development/python-modules/yaswfp/default.nix +++ b/pkgs/development/python-modules/yaswfp/default.nix @@ -21,11 +21,11 @@ buildPythonPackage { pythonImportsCheck = [ "yaswfp" ]; - meta = with lib; { + meta = { description = "Python SWF Parser"; mainProgram = "swfparser"; homepage = "https://github.com/facundobatista/yaswfp"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/yattag/default.nix b/pkgs/development/python-modules/yattag/default.nix index e6765bf0df11..30d2a9175d3a 100644 --- a/pkgs/development/python-modules/yattag/default.nix +++ b/pkgs/development/python-modules/yattag/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yattag" ]; - meta = with lib; { + meta = { description = "Library to generate HTML or XML"; homepage = "https://www.yattag.org/"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ydiff/default.nix b/pkgs/development/python-modules/ydiff/default.nix index 6b0d9737f7e8..34a9a80e670a 100644 --- a/pkgs/development/python-modules/ydiff/default.nix +++ b/pkgs/development/python-modules/ydiff/default.nix @@ -44,7 +44,7 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "View colored, incremental diff in workspace or from stdin with side by side and auto pager support (Was \"cdiff\")"; mainProgram = "ydiff"; longDescription = '' @@ -54,7 +54,7 @@ buildPythonPackage rec { and auto pager support. ''; homepage = "https://github.com/ymattw/ydiff"; - license = licenses.bsd3; - teams = [ teams.deshaw ]; + license = lib.licenses.bsd3; + teams = [ lib.teams.deshaw ]; }; } diff --git a/pkgs/development/python-modules/yeelight/default.nix b/pkgs/development/python-modules/yeelight/default.nix index 98f2ca486fcf..2f4fc143e590 100644 --- a/pkgs/development/python-modules/yeelight/default.nix +++ b/pkgs/development/python-modules/yeelight/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yeelight" ]; - meta = with lib; { + meta = { description = "Python library for controlling YeeLight RGB bulbs"; homepage = "https://gitlab.com/stavros/python-yeelight/"; changelog = "https://gitlab.com/stavros/python-yeelight/-/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = with maintainers; [ nyanloutre ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/yfinance/default.nix b/pkgs/development/python-modules/yfinance/default.nix index 14cedb9370b8..28a85f7bb6a0 100644 --- a/pkgs/development/python-modules/yfinance/default.nix +++ b/pkgs/development/python-modules/yfinance/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yfinance" ]; - meta = with lib; { + meta = { description = "Module to doiwnload Yahoo! Finance market data"; homepage = "https://github.com/ranaroussi/yfinance"; changelog = "https://github.com/ranaroussi/yfinance/blob/${src.tag}/CHANGELOG.rst"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/yolink-api/default.nix b/pkgs/development/python-modules/yolink-api/default.nix index dc3b0c8c08e6..4c260bdc45c4 100644 --- a/pkgs/development/python-modules/yolink-api/default.nix +++ b/pkgs/development/python-modules/yolink-api/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yolink" ]; - meta = with lib; { + meta = { description = "Library to interface with Yolink"; homepage = "https://github.com/YoSmart-Inc/yolink-api"; changelog = "https://github.com/YoSmart-Inc/yolink-api/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/yoto-api/default.nix b/pkgs/development/python-modules/yoto-api/default.nix index 71d39460a52c..5e0afaf28551 100644 --- a/pkgs/development/python-modules/yoto-api/default.nix +++ b/pkgs/development/python-modules/yoto-api/default.nix @@ -33,12 +33,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "yoto_api" ]; - meta = with lib; { + meta = { changelog = "https://github.com/cdnninja/yoto_api/releases/tag/${src.tag}"; homepage = "https://github.com/cdnninja/yoto_api"; - platforms = platforms.unix; - maintainers = with maintainers; [ seberm ]; - license = licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ seberm ]; + license = lib.licenses.mit; description = "Python package that makes it a bit easier to work with the yoto play API"; }; } diff --git a/pkgs/development/python-modules/youless-api/default.nix b/pkgs/development/python-modules/youless-api/default.nix index aab71a4d7b67..a4150af9b6a0 100644 --- a/pkgs/development/python-modules/youless-api/default.nix +++ b/pkgs/development/python-modules/youless-api/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "youless_api" ]; - meta = with lib; { + meta = { description = "Python library for YouLess sensors"; homepage = "https://github.com/gjong/youless-python-bridge"; changelog = "https://github.com/gjong/youless-python-bridge/releases/tag/${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/youseedee/default.nix b/pkgs/development/python-modules/youseedee/default.nix index 26b2bfe877be..c52a2bfad34c 100644 --- a/pkgs/development/python-modules/youseedee/default.nix +++ b/pkgs/development/python-modules/youseedee/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python library for querying the Unicode Character Database"; homepage = "https://github.com/simoncozens/youseedee"; - license = licenses.mit; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/youtokentome/default.nix b/pkgs/development/python-modules/youtokentome/default.nix index 4de082609de1..801f1c4fafb4 100644 --- a/pkgs/development/python-modules/youtokentome/default.nix +++ b/pkgs/development/python-modules/youtokentome/default.nix @@ -35,12 +35,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "youtokentome" ]; - meta = with lib; { + meta = { description = "Unsupervised text tokenizer"; mainProgram = "yttm"; homepage = "https://github.com/VKCOM/YouTokenToMe"; changelog = "https://github.com/VKCOM/YouTokenToMe/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/youtube-search-python/default.nix b/pkgs/development/python-modules/youtube-search-python/default.nix index 325b541fa7f4..d9438eb3d408 100644 --- a/pkgs/development/python-modules/youtube-search-python/default.nix +++ b/pkgs/development/python-modules/youtube-search-python/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Search for YouTube videos, channels & playlists & get video information using link without YouTube Data API"; homepage = "https://github.com/alexmercerind/youtube-search-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/youtube-search/default.nix b/pkgs/development/python-modules/youtube-search/default.nix index 9b575729b34d..d02138db2882 100644 --- a/pkgs/development/python-modules/youtube-search/default.nix +++ b/pkgs/development/python-modules/youtube-search/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "youtube_search" ]; - meta = with lib; { + meta = { description = "Tool for searching for youtube videos to avoid using their heavily rate-limited API"; homepage = "https://github.com/joetats/youtube_search"; - license = licenses.mit; - maintainers = with maintainers; [ j0hax ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ j0hax ]; }; } diff --git a/pkgs/development/python-modules/youtube-transcript-api/default.nix b/pkgs/development/python-modules/youtube-transcript-api/default.nix index e10a3d00ec9a..2d1193b8d333 100644 --- a/pkgs/development/python-modules/youtube-transcript-api/default.nix +++ b/pkgs/development/python-modules/youtube-transcript-api/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "youtube_transcript_api" ]; - meta = with lib; { + meta = { description = "Python API which allows you to get the transcripts/subtitles for a given YouTube video"; mainProgram = "youtube_transcript_api"; homepage = "https://github.com/jdepoix/youtube-transcript-api"; changelog = "https://github.com/jdepoix/youtube-transcript-api/releases/tag/${src.tag}"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/yoyo-migrations/default.nix b/pkgs/development/python-modules/yoyo-migrations/default.nix index f0688fdc1e74..8e22ddc8eb9e 100644 --- a/pkgs/development/python-modules/yoyo-migrations/default.nix +++ b/pkgs/development/python-modules/yoyo-migrations/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yoyo" ]; - meta = with lib; { + meta = { description = "Database schema migration tool"; homepage = "https://ollycope.com/software/yoyo"; - license = licenses.asl20; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/yq/default.nix b/pkgs/development/python-modules/yq/default.nix index 8590db58b453..22cbb09fd533 100644 --- a/pkgs/development/python-modules/yq/default.nix +++ b/pkgs/development/python-modules/yq/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "yq" ]; - meta = with lib; { + meta = { description = "Command-line YAML/XML/TOML processor - jq wrapper for YAML, XML, TOML documents"; homepage = "https://github.com/kislyuk/yq"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "yq"; diff --git a/pkgs/development/python-modules/yte/default.nix b/pkgs/development/python-modules/yte/default.nix index e4ae941a803e..f7965514f798 100644 --- a/pkgs/development/python-modules/yte/default.nix +++ b/pkgs/development/python-modules/yte/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { export PATH=$out/bin:$PATH ''; - meta = with lib; { + meta = { description = "YAML template engine with Python expressions"; homepage = "https://github.com/koesterlab/yte"; changelog = "https://github.com/yte-template-engine/yte/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "yte"; }; } diff --git a/pkgs/development/python-modules/ytmusicapi/default.nix b/pkgs/development/python-modules/ytmusicapi/default.nix index f31dc8c4c783..dccd73cc2381 100644 --- a/pkgs/development/python-modules/ytmusicapi/default.nix +++ b/pkgs/development/python-modules/ytmusicapi/default.nix @@ -26,12 +26,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "ytmusicapi" ]; - meta = with lib; { + meta = { description = "Python API for YouTube Music"; homepage = "https://github.com/sigma67/ytmusicapi"; changelog = "https://github.com/sigma67/ytmusicapi/releases/tag/${src.tag}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "ytmusicapi"; }; } diff --git a/pkgs/development/python-modules/yubico-client/default.nix b/pkgs/development/python-modules/yubico-client/default.nix index 13604180ae22..cb339c1572cc 100644 --- a/pkgs/development/python-modules/yubico-client/default.nix +++ b/pkgs/development/python-modules/yubico-client/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { # pypi package missing test_utils and github releases is behind doCheck = false; - meta = with lib; { + meta = { description = "Verifying Yubico OTPs based on the validation protocol version 2.0"; homepage = "https://github.com/Kami/python-yubico-client/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/yubico/default.nix b/pkgs/development/python-modules/yubico/default.nix index 3797bbe3df36..23b9cba70d28 100644 --- a/pkgs/development/python-modules/yubico/default.nix +++ b/pkgs/development/python-modules/yubico/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { "usb" # requires a physical yubikey to test ]; - meta = with lib; { + meta = { description = "Python code to talk to YubiKeys"; homepage = "https://github.com/Yubico/python-yubico"; - license = licenses.bsd2; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/development/python-modules/z3c-checkversions/default.nix b/pkgs/development/python-modules/z3c-checkversions/default.nix index 838192b4b258..5ba265990c9d 100644 --- a/pkgs/development/python-modules/z3c-checkversions/default.nix +++ b/pkgs/development/python-modules/z3c-checkversions/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { ${python.interpreter} -m zope.testrunner --test-path=src [] ''; - meta = with lib; { + meta = { homepage = "https://github.com/zopefoundation/z3c.checkversions"; changelog = "https://github.com/zopefoundation/z3c.checkversions/blob/${version}/CHANGES.rst"; description = "Find newer package versions on PyPI"; mainProgram = "checkversions"; - license = licenses.zpl21; + license = lib.licenses.zpl21; }; } diff --git a/pkgs/development/python-modules/zadnegoale/default.nix b/pkgs/development/python-modules/zadnegoale/default.nix index f704ee59221b..78da4fb2d79a 100644 --- a/pkgs/development/python-modules/zadnegoale/default.nix +++ b/pkgs/development/python-modules/zadnegoale/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "zadnegoale" ]; - meta = with lib; { + meta = { description = "Python wrapper for getting allergen concentration data from Żadnego Ale servers"; homepage = "https://github.com/bieniu/zadnegoale"; changelog = "https://github.com/bieniu/zadnegoale/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/zamg/default.nix b/pkgs/development/python-modules/zamg/default.nix index 5ddb4f8606fc..9e4d82e0b5be 100644 --- a/pkgs/development/python-modules/zamg/default.nix +++ b/pkgs/development/python-modules/zamg/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { "test_properties_fail_2" ]; - meta = with lib; { + meta = { description = "Library to read weather data from ZAMG Austria"; homepage = "https://github.com/killer0071234/python-zamg"; changelog = "https://github.com/killer0071234/python-zamg/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/zcbor/default.nix b/pkgs/development/python-modules/zcbor/default.nix index 96f5955c29e0..95cc1764786d 100644 --- a/pkgs/development/python-modules/zcbor/default.nix +++ b/pkgs/development/python-modules/zcbor/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "zcbor" ]; - meta = with lib; { + meta = { description = "Low footprint CBOR library in the C language (C++ compatible), tailored for use in microcontrollers"; mainProgram = "zcbor"; homepage = "https://pypi.org/project/zcbor/"; changelog = "https://github.com/NordicSemiconductor/zcbor/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ otavio ]; }; } diff --git a/pkgs/development/python-modules/zeep/default.nix b/pkgs/development/python-modules/zeep/default.nix index c59026888863..c3ec8a5634ba 100644 --- a/pkgs/development/python-modules/zeep/default.nix +++ b/pkgs/development/python-modules/zeep/default.nix @@ -91,10 +91,10 @@ buildPythonPackage rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { changelog = "https://github.com/mvantellingen/python-zeep/releases/tag/${version}"; description = "Python SOAP client"; homepage = "http://docs.python-zeep.org"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/zeroc-ice/default.nix b/pkgs/development/python-modules/zeroc-ice/default.nix index d6bb679931f8..f95f770d5652 100644 --- a/pkgs/development/python-modules/zeroc-ice/default.nix +++ b/pkgs/development/python-modules/zeroc-ice/default.nix @@ -33,9 +33,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "Ice" ]; - meta = with lib; { + meta = { homepage = "https://zeroc.com/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more"; mainProgram = "slice2py"; maintainers = [ ]; diff --git a/pkgs/development/python-modules/zeroconf/default.nix b/pkgs/development/python-modules/zeroconf/default.nix index f87b2173b662..1d6d14fe4e41 100644 --- a/pkgs/development/python-modules/zeroconf/default.nix +++ b/pkgs/development/python-modules/zeroconf/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { "zeroconf.asyncio" ]; - meta = with lib; { + meta = { description = "Python implementation of multicast DNS service discovery"; homepage = "https://github.com/python-zeroconf/python-zeroconf"; changelog = "https://github.com/python-zeroconf/python-zeroconf/blob/${src.tag}/CHANGELOG.md"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zerorpc/default.nix b/pkgs/development/python-modules/zerorpc/default.nix index 25523376be32..1ee354d22bc4 100644 --- a/pkgs/development/python-modules/zerorpc/default.nix +++ b/pkgs/development/python-modules/zerorpc/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { doCheck = false; # pypi version doesn't include tests - meta = with lib; { + meta = { description = "Easy to use, intuitive, and cross-language RPC"; mainProgram = "zerorpc"; homepage = "https://www.zerorpc.io"; - license = licenses.mit; - maintainers = with maintainers; [ xeji ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ xeji ]; }; } diff --git a/pkgs/development/python-modules/zetup/default.nix b/pkgs/development/python-modules/zetup/default.nix index 5f46e398bbcb..56e672f29aa9 100644 --- a/pkgs/development/python-modules/zetup/default.nix +++ b/pkgs/development/python-modules/zetup/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zetup" ]; - meta = with lib; { + meta = { description = "Zimmermann's Extensible Tools for Unified Project setups"; homepage = "https://github.com/zimmermanncode/zetup"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/zeversolarlocal/default.nix b/pkgs/development/python-modules/zeversolarlocal/default.nix index b4c5db9ec61a..4b2ec00450d5 100644 --- a/pkgs/development/python-modules/zeversolarlocal/default.nix +++ b/pkgs/development/python-modules/zeversolarlocal/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zeversolarlocal" ]; - meta = with lib; { + meta = { description = "Python module to interact with Zeversolar inverters"; homepage = "https://github.com/sander76/zeversolarlocal"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/zfec/default.nix b/pkgs/development/python-modules/zfec/default.nix index 07616470b31e..f92829e94c0c 100644 --- a/pkgs/development/python-modules/zfec/default.nix +++ b/pkgs/development/python-modules/zfec/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "zfec" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tahoe-lafs/zfec"; description = "Fast erasure codec which can be used with the command-line, C, Python, or Haskell"; longDescription = '' @@ -44,7 +44,7 @@ buildPythonPackage rec { zfec package includes command-line tools, C API, Python API, and Haskell API. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix index 171160c0e139..85bd1b89ebe1 100644 --- a/pkgs/development/python-modules/zha-quirks/default.nix +++ b/pkgs/development/python-modules/zha-quirks/default.nix @@ -57,12 +57,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "zhaquirks" ]; - meta = with lib; { + meta = { description = "ZHA Device Handlers are custom quirks implementations for Zigpy"; homepage = "https://github.com/dmulcahey/zha-device-handlers"; changelog = "https://github.com/zigpy/zha-device-handlers/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/zha/default.nix b/pkgs/development/python-modules/zha/default.nix index 1dae74548700..e9d6a386e5e2 100644 --- a/pkgs/development/python-modules/zha/default.nix +++ b/pkgs/development/python-modules/zha/default.nix @@ -95,11 +95,11 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/test_cluster_handlers.py" ]; - meta = with lib; { + meta = { description = "Zigbee Home Automation"; homepage = "https://github.com/zigpy/zha"; changelog = "https://github.com/zigpy/zha/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/zict/default.nix b/pkgs/development/python-modules/zict/default.nix index b2305bc243fd..30d91cd3e714 100644 --- a/pkgs/development/python-modules/zict/default.nix +++ b/pkgs/development/python-modules/zict/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pytest-timeout ]; - meta = with lib; { + meta = { description = "Mutable mapping tools"; homepage = "https://github.com/dask/zict"; - license = licenses.bsd3; - maintainers = with maintainers; [ teh ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ teh ]; }; } diff --git a/pkgs/development/python-modules/zigpy-cc/default.nix b/pkgs/development/python-modules/zigpy-cc/default.nix index 048fc2b17d10..0c4a010546f0 100644 --- a/pkgs/development/python-modules/zigpy-cc/default.nix +++ b/pkgs/development/python-modules/zigpy-cc/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "zigpy_cc" ]; - meta = with lib; { + meta = { description = "Library which communicates with Texas Instruments CC2531 radios for zigpy"; homepage = "https://github.com/zigpy/zigpy-cc"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mvnetbiz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/zigpy-deconz/default.nix b/pkgs/development/python-modules/zigpy-deconz/default.nix index 17adcdbee8a1..01c3eb9daa1e 100644 --- a/pkgs/development/python-modules/zigpy-deconz/default.nix +++ b/pkgs/development/python-modules/zigpy-deconz/default.nix @@ -41,12 +41,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "zigpy_deconz" ]; - meta = with lib; { + meta = { description = "Library which communicates with Deconz radios for zigpy"; homepage = "https://github.com/zigpy/zigpy-deconz"; changelog = "https://github.com/zigpy/zigpy-deconz/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mvnetbiz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/zigpy-xbee/default.nix b/pkgs/development/python-modules/zigpy-xbee/default.nix index a144dbc63a97..58066991b84e 100644 --- a/pkgs/development/python-modules/zigpy-xbee/default.nix +++ b/pkgs/development/python-modules/zigpy-xbee/default.nix @@ -37,12 +37,12 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/zigpy/zigpy-xbee/releases/tag/${version}"; description = "Library which communicates with XBee radios for zigpy"; homepage = "https://github.com/zigpy/zigpy-xbee"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mvnetbiz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/zigpy-zigate/default.nix b/pkgs/development/python-modules/zigpy-zigate/default.nix index 2651f7a1bc86..434c63be1741 100644 --- a/pkgs/development/python-modules/zigpy-zigate/default.nix +++ b/pkgs/development/python-modules/zigpy-zigate/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "zigpy_zigate" ]; - meta = with lib; { + meta = { description = "Library which communicates with ZiGate radios for zigpy"; homepage = "https://github.com/zigpy/zigpy-zigate"; changelog = "https://github.com/zigpy/zigpy-zigate/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mvnetbiz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/zigpy-znp/default.nix b/pkgs/development/python-modules/zigpy-znp/default.nix index cbc45c200bab..a8ccfebf8651 100644 --- a/pkgs/development/python-modules/zigpy-znp/default.nix +++ b/pkgs/development/python-modules/zigpy-znp/default.nix @@ -67,12 +67,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "zigpy_znp" ]; - meta = with lib; { + meta = { description = "Library for zigpy which communicates with TI ZNP radios"; homepage = "https://github.com/zigpy/zigpy-znp"; changelog = "https://github.com/zigpy/zigpy-znp/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mvnetbiz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/zigpy/default.nix b/pkgs/development/python-modules/zigpy/default.nix index 75983d04e358..52d97a6f9eca 100644 --- a/pkgs/development/python-modules/zigpy/default.nix +++ b/pkgs/development/python-modules/zigpy/default.nix @@ -88,12 +88,12 @@ buildPythonPackage rec { "zigpy.zcl" ]; - meta = with lib; { + meta = { description = "Library implementing a ZigBee stack"; homepage = "https://github.com/zigpy/zigpy"; changelog = "https://github.com/zigpy/zigpy/releases/tag/${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ mvnetbiz ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mvnetbiz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/zimports/default.nix b/pkgs/development/python-modules/zimports/default.nix index 4d1a4f1902c4..000338a49034 100644 --- a/pkgs/development/python-modules/zimports/default.nix +++ b/pkgs/development/python-modules/zimports/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zimports" ]; - meta = with lib; { + meta = { description = "Python import rewriter"; homepage = "https://github.com/sqlalchemyorg/zimports"; - license = licenses.mit; - maintainers = with maintainers; [ timokau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ timokau ]; }; } diff --git a/pkgs/development/python-modules/zipfile2/default.nix b/pkgs/development/python-modules/zipfile2/default.nix index 68b1af2e79bd..40e2861a235e 100644 --- a/pkgs/development/python-modules/zipfile2/default.nix +++ b/pkgs/development/python-modules/zipfile2/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { "test_extract" ]; - meta = with lib; { + meta = { description = "Backwards-compatible improved zipfile class"; homepage = "https://github.com/cournape/zipfile2"; changelog = "https://github.com/itziakos/zipfile2/releases/tag/v${version}"; - license = licenses.psfl; - maintainers = with maintainers; [ genericnerdyusername ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ genericnerdyusername ]; }; } diff --git a/pkgs/development/python-modules/zipp/default.nix b/pkgs/development/python-modules/zipp/default.nix index f7c9a5ad3149..de464ac22409 100644 --- a/pkgs/development/python-modules/zipp/default.nix +++ b/pkgs/development/python-modules/zipp/default.nix @@ -47,10 +47,10 @@ let }); }; - meta = with lib; { + meta = { description = "Pathlib-compatible object wrapper for zip files"; homepage = "https://github.com/jaraco/zipp"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/zipstream-ng/default.nix b/pkgs/development/python-modules/zipstream-ng/default.nix index 4f10c8715b02..08f28feefed9 100644 --- a/pkgs/development/python-modules/zipstream-ng/default.nix +++ b/pkgs/development/python-modules/zipstream-ng/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Library to generate streamable zip files"; mainProgram = "zipserver"; longDescription = '' @@ -36,7 +36,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/pR0Ps/zipstream-ng"; changelog = "https://github.com/pR0Ps/zipstream-ng/blob/v${version}/CHANGELOG.md"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/zlib-ng/default.nix b/pkgs/development/python-modules/zlib-ng/default.nix index f17959460b61..98cbcf677e7e 100644 --- a/pkgs/development/python-modules/zlib-ng/default.nix +++ b/pkgs/development/python-modules/zlib-ng/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_decompress_infile_outfile_error" ]; - meta = with lib; { + meta = { description = "Drop-in replacement for Python's zlib and gzip modules using zlib-ng"; homepage = "https://github.com/pycompression/python-zlib-ng"; changelog = "https://github.com/pycompression/python-zlib-ng/blob/${src.rev}/CHANGELOG.rst"; - license = licenses.psfl; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/zm-py/default.nix b/pkgs/development/python-modules/zm-py/default.nix index ae33b13ccd7e..16163ea3de5a 100644 --- a/pkgs/development/python-modules/zm-py/default.nix +++ b/pkgs/development/python-modules/zm-py/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "zoneminder" ]; - meta = with lib; { + meta = { description = "Loose python wrapper around the ZoneMinder REST API"; homepage = "https://github.com/rohankapoorcom/zm-py"; changelog = "https://github.com/rohankapoorcom/zm-py/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/zope-configuration/default.nix b/pkgs/development/python-modules/zope-configuration/default.nix index bd10c096a65e..e56ebb23371d 100644 --- a/pkgs/development/python-modules/zope-configuration/default.nix +++ b/pkgs/development/python-modules/zope-configuration/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonNamespaces = [ "zope" ]; - meta = with lib; { + meta = { description = "Zope Configuration Markup Language (ZCML)"; homepage = "https://github.com/zopefoundation/zope.configuration"; changelog = "https://github.com/zopefoundation/zope.configuration/blob/${version}/CHANGES.rst"; - license = licenses.zpl21; + license = lib.licenses.zpl21; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-hookable/default.nix b/pkgs/development/python-modules/zope-hookable/default.nix index 66f599332f22..bcc3adaa2b32 100644 --- a/pkgs/development/python-modules/zope-hookable/default.nix +++ b/pkgs/development/python-modules/zope-hookable/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonNamespaces = [ "zope" ]; - meta = with lib; { + meta = { description = "Supports the efficient creation of “hookable” objects"; homepage = "https://github.com/zopefoundation/zope.hookable"; changelog = "https://github.com/zopefoundation/zope.hookable/blob/${src.tag}/CHANGES.rst"; - license = licenses.zpl21; + license = lib.licenses.zpl21; }; } diff --git a/pkgs/development/python-modules/zopfli/default.nix b/pkgs/development/python-modules/zopfli/default.nix index fc6c0f9cb581..d0082de5d7a8 100644 --- a/pkgs/development/python-modules/zopfli/default.nix +++ b/pkgs/development/python-modules/zopfli/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "CPython bindings for zopfli"; homepage = "https://github.com/obp/py-zopfli"; - license = licenses.asl20; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/zstd/default.nix b/pkgs/development/python-modules/zstd/default.nix index 32b453396b34..e430ecc567b1 100644 --- a/pkgs/development/python-modules/zstd/default.nix +++ b/pkgs/development/python-modules/zstd/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { description = "Simple python bindings to Yann Collet ZSTD compression library"; homepage = "https://github.com/sergey-dryabzhinsky/python-zstd"; - license = licenses.bsd2; - maintainers = with maintainers; [ eadwu ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ eadwu ]; }; } diff --git a/pkgs/development/python-modules/zwave-js-server-python/default.nix b/pkgs/development/python-modules/zwave-js-server-python/default.nix index bd10656f4724..d0ae0e45b48f 100644 --- a/pkgs/development/python-modules/zwave-js-server-python/default.nix +++ b/pkgs/development/python-modules/zwave-js-server-python/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "zwave_js_server" ]; - meta = with lib; { + meta = { description = "Python wrapper for zwave-js-server"; homepage = "https://github.com/home-assistant-libs/zwave-js-server-python"; changelog = "https://github.com/home-assistant-libs/zwave-js-server-python/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "zwave-js-server-python"; }; } diff --git a/pkgs/development/python-modules/zwave-me-ws/default.nix b/pkgs/development/python-modules/zwave-me-ws/default.nix index d48384caa093..842b80f4ee87 100644 --- a/pkgs/development/python-modules/zwave-me-ws/default.nix +++ b/pkgs/development/python-modules/zwave-me-ws/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "zwave_me_ws" ]; - meta = with lib; { + meta = { description = "Library to connect to a ZWave-Me instance"; homepage = "https://github.com/Z-Wave-Me/zwave-me-ws"; changelog = "https://github.com/Z-Wave-Me/zwave-me-ws/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/zxcvbn-rs-py/default.nix b/pkgs/development/python-modules/zxcvbn-rs-py/default.nix index c28c0c3a1ce2..8bd0348ce72a 100644 --- a/pkgs/development/python-modules/zxcvbn-rs-py/default.nix +++ b/pkgs/development/python-modules/zxcvbn-rs-py/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "zxcvbn_rs_py" ]; - meta = with lib; { + meta = { description = "Python bindings for zxcvbn-rs, the Rust implementation of zxcvbn"; homepage = "https://github.com/fief-dev/zxcvbn-rs-py/"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/zxcvbn/default.nix b/pkgs/development/python-modules/zxcvbn/default.nix index 689d7dd3459f..f6fbcb8945d8 100644 --- a/pkgs/development/python-modules/zxcvbn/default.nix +++ b/pkgs/development/python-modules/zxcvbn/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Python implementation of Dropbox's realistic password strength estimator"; mainProgram = "zxcvbn"; homepage = "https://github.com/dwolfhub/zxcvbn-python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python2-modules/attrs/default.nix b/pkgs/development/python2-modules/attrs/default.nix index c7fd1a72abcd..d2613cfcfb42 100644 --- a/pkgs/development/python2-modules/attrs/default.nix +++ b/pkgs/development/python2-modules/attrs/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { # Instead, we do this as a passthru.tests test. doCheck = false; - meta = with lib; { + meta = { description = "Python attributes without boilerplate"; homepage = "https://github.com/hynek/attrs"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python2-modules/configparser/default.nix b/pkgs/development/python2-modules/configparser/default.nix index ff46fa579a31..679d19c59f47 100644 --- a/pkgs/development/python2-modules/configparser/default.nix +++ b/pkgs/development/python2-modules/configparser/default.nix @@ -25,9 +25,9 @@ buildPythonPackage rec { export LC_ALL=${if stdenv.hostPlatform.isDarwin then "en_US" else "C"}.UTF-8 ''; - meta = with lib; { + meta = { description = "Updated configparser from Python 3.7 for Python 2.6+"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jaraco/configparser"; }; } diff --git a/pkgs/development/python2-modules/enum/default.nix b/pkgs/development/python2-modules/enum/default.nix index 15bf2e30836a..332fbc71f1d1 100644 --- a/pkgs/development/python2-modules/enum/default.nix +++ b/pkgs/development/python2-modules/enum/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { doCheck = !isPyPy; - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/enum/"; description = "Robust enumerated type support in Python"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python2-modules/filelock/default.nix b/pkgs/development/python2-modules/filelock/default.nix index fc94a3aff28b..8f6358ffd654 100644 --- a/pkgs/development/python2-modules/filelock/default.nix +++ b/pkgs/development/python2-modules/filelock/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { setuptools-scm ]; - meta = with lib; { + meta = { homepage = "https://github.com/benediktschmitt/py-filelock"; description = "Platform independent file lock for Python"; - license = licenses.unlicense; - maintainers = with maintainers; [ henkkalkwater ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ henkkalkwater ]; }; } diff --git a/pkgs/development/python2-modules/futures/default.nix b/pkgs/development/python2-modules/futures/default.nix index 0b195b6b53c2..ac1b6ff2f9eb 100644 --- a/pkgs/development/python2-modules/futures/default.nix +++ b/pkgs/development/python2-modules/futures/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Backport of the concurrent.futures package from Python 3.2"; homepage = "https://github.com/agronholm/pythonfutures"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; }; } diff --git a/pkgs/development/python2-modules/hypothesis/default.nix b/pkgs/development/python2-modules/hypothesis/default.nix index b4234e6ac1fc..d2b8c9066f89 100644 --- a/pkgs/development/python2-modules/hypothesis/default.nix +++ b/pkgs/development/python2-modules/hypothesis/default.nix @@ -53,9 +53,9 @@ buildPythonPackage rec { py.test tests/cover ''; - meta = with lib; { + meta = { description = "Python library for property based testing"; homepage = "https://github.com/HypothesisWorks/hypothesis"; - license = licenses.mpl20; + license = lib.licenses.mpl20; }; } diff --git a/pkgs/development/python2-modules/importlib-metadata/default.nix b/pkgs/development/python2-modules/importlib-metadata/default.nix index 926926f3d578..7aaa45854161 100644 --- a/pkgs/development/python2-modules/importlib-metadata/default.nix +++ b/pkgs/development/python2-modules/importlib-metadata/default.nix @@ -37,9 +37,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "importlib_metadata" ]; - meta = with lib; { + meta = { description = "Read metadata from Python packages"; homepage = "https://importlib-metadata.readthedocs.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python2-modules/jinja2/default.nix b/pkgs/development/python2-modules/jinja2/default.nix index 26d5b37a0e9b..d66b6544e14e 100644 --- a/pkgs/development/python2-modules/jinja2/default.nix +++ b/pkgs/development/python2-modules/jinja2/default.nix @@ -34,15 +34,15 @@ buildPythonPackage rec { pytest -v tests -W ignore::DeprecationWarning ''; - meta = with lib; { + meta = { homepage = "http://jinja.pocoo.org/"; description = "Stand-alone template engine"; - license = licenses.bsd3; + license = lib.licenses.bsd3; longDescription = '' Jinja2 is a template engine written in pure Python. It provides a Django inspired non-XML syntax but supports inline expressions and an optional sandboxed environment. ''; - maintainers = with maintainers; [ pierron ]; + maintainers = with lib.maintainers; [ pierron ]; }; } diff --git a/pkgs/development/python2-modules/markupsafe/default.nix b/pkgs/development/python2-modules/markupsafe/default.nix index 3687ea68d9cc..ec6aa8cb600c 100644 --- a/pkgs/development/python2-modules/markupsafe/default.nix +++ b/pkgs/development/python2-modules/markupsafe/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"; }; - meta = with lib; { + meta = { description = "Implements a XML/HTML/XHTML Markup safe string"; homepage = "http://dev.pocoo.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; diff --git a/pkgs/development/python2-modules/mock/default.nix b/pkgs/development/python2-modules/mock/default.nix index e28e5e651a80..3e100689eb54 100644 --- a/pkgs/development/python2-modules/mock/default.nix +++ b/pkgs/development/python2-modules/mock/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pytest ]; - meta = with lib; { + meta = { description = "Mock objects for Python"; homepage = "http://python-mock.sourceforge.net/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python2-modules/packaging/default.nix b/pkgs/development/python2-modules/packaging/default.nix index 71d4d6747176..f5a0f459bd4e 100644 --- a/pkgs/development/python2-modules/packaging/default.nix +++ b/pkgs/development/python2-modules/packaging/default.nix @@ -34,13 +34,13 @@ buildPythonPackage rec { # Prevent circular dependency doCheck = false; - meta = with lib; { + meta = { description = "Core utilities for Python packages"; homepage = "https://github.com/pypa/packaging"; license = [ - licenses.bsd2 - licenses.asl20 + lib.licenses.bsd2 + lib.licenses.asl20 ]; - maintainers = with maintainers; [ bennofs ]; + maintainers = with lib.maintainers; [ bennofs ]; }; } diff --git a/pkgs/development/python2-modules/pycairo/default.nix b/pkgs/development/python2-modules/pycairo/default.nix index 85430cae6ac2..ed4f1f2e6e21 100644 --- a/pkgs/development/python2-modules/pycairo/default.nix +++ b/pkgs/development/python2-modules/pycairo/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { "-Dpython=${python.pythonOnBuildForHost.interpreter}" ]; - meta = with lib; { + meta = { description = "Python 2 bindings for cairo"; homepage = "https://pycairo.readthedocs.io/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Only mpl11 ]; diff --git a/pkgs/development/python2-modules/pygobject/default.nix b/pkgs/development/python2-modules/pygobject/default.nix index 01920854cb04..88a4375b0029 100644 --- a/pkgs/development/python2-modules/pygobject/default.nix +++ b/pkgs/development/python2-modules/pygobject/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { chmod a-x $out/share/pygobject/*/codegen/*.py ''; - meta = with lib; { + meta = { homepage = "https://pygobject.readthedocs.io/"; description = "Python bindings for GLib"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; }; } diff --git a/pkgs/development/python2-modules/pygtk/default.nix b/pkgs/development/python2-modules/pygtk/default.nix index 805f7163feac..e5702f908169 100644 --- a/pkgs/development/python2-modules/pygtk/default.nix +++ b/pkgs/development/python2-modules/pygtk/default.nix @@ -89,11 +89,11 @@ buildPythonPackage rec { $out/${python.sitePackages}/${pname}-${version}.pth ''; - meta = with lib; { + meta = { description = "GTK 2 Python bindings"; homepage = "https://gitlab.gnome.org/Archive/pygtk"; - platforms = platforms.all; - license = with licenses; [ lgpl21Plus ]; + platforms = lib.platforms.all; + license = with lib.licenses; [ lgpl21Plus ]; maintainers = with lib.maintainers; [ bryango ]; }; } diff --git a/pkgs/development/python2-modules/pyparsing/default.nix b/pkgs/development/python2-modules/pyparsing/default.nix index 7b7f31d0c51c..36de6922e72d 100644 --- a/pkgs/development/python2-modules/pyparsing/default.nix +++ b/pkgs/development/python2-modules/pyparsing/default.nix @@ -39,10 +39,10 @@ let }); }; - meta = with lib; { + meta = { homepage = "https://github.com/pyparsing/pyparsing"; description = "Alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions"; - license = licenses.mit; + license = lib.licenses.mit; }; }; in diff --git a/pkgs/development/python2-modules/pytest-xdist/default.nix b/pkgs/development/python2-modules/pytest-xdist/default.nix index 496479af6c87..96db76de1488 100644 --- a/pkgs/development/python2-modules/pytest-xdist/default.nix +++ b/pkgs/development/python2-modules/pytest-xdist/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { and not test_rsyncignore" ''; - meta = with lib; { + meta = { description = "py.test xdist plugin for distributed testing and loop-on-failing modes"; homepage = "https://github.com/pytest-dev/pytest-xdist"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python2-modules/pytest/default.nix b/pkgs/development/python2-modules/pytest/default.nix index 95602bfb09bf..21a1967e837c 100644 --- a/pkgs/development/python2-modules/pytest/default.nix +++ b/pkgs/development/python2-modules/pytest/default.nix @@ -91,14 +91,14 @@ buildPythonPackage rec { appendToVar preDistPhases pytestRemoveBytecodePhase ''; - meta = with lib; { + meta = { homepage = "https://docs.pytest.org"; description = "Framework for writing tests"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 madjar ]; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python2-modules/scandir/default.nix b/pkgs/development/python2-modules/scandir/default.nix index 48adbc976009..1558114f2309 100644 --- a/pkgs/development/python2-modules/scandir/default.nix +++ b/pkgs/development/python2-modules/scandir/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { checkPhase = "${python.interpreter} test/run_tests.py"; - meta = with lib; { + meta = { description = "Better directory iterator and faster os.walk()"; homepage = "https://github.com/benhoyt/scandir"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python2-modules/setuptools-scm/default.nix b/pkgs/development/python2-modules/setuptools-scm/default.nix index a33c9dc592ed..46056a8b6ff5 100644 --- a/pkgs/development/python2-modules/setuptools-scm/default.nix +++ b/pkgs/development/python2-modules/setuptools-scm/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "setuptools_scm" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pypa/setuptools_scm/"; description = "Handles managing your python package versions in scm metadata"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python2-modules/setuptools/default.nix b/pkgs/development/python2-modules/setuptools/default.nix index 3761a055a0a2..e95e3bb82ef5 100644 --- a/pkgs/development/python2-modules/setuptools/default.nix +++ b/pkgs/development/python2-modules/setuptools/default.nix @@ -75,10 +75,10 @@ buildPythonPackage { # Requires pytest, causing infinite recursion. doCheck = false; - meta = with lib; { + meta = { description = "Utilities to facilitate the installation of Python packages"; homepage = "https://pypi.python.org/pypi/setuptools"; - license = with licenses; [ + license = with lib.licenses; [ psfl zpl20 ]; diff --git a/pkgs/development/python2-modules/typing/default.nix b/pkgs/development/python2-modules/typing/default.nix index 6fbc394f0768..5cc48c6b12e8 100644 --- a/pkgs/development/python2-modules/typing/default.nix +++ b/pkgs/development/python2-modules/typing/default.nix @@ -37,9 +37,9 @@ buildPythonPackage rec { testDir ]; - meta = with lib; { + meta = { description = "Backport of typing module to Python versions older than 3.5"; homepage = "https://docs.python.org/3/library/typing.html"; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/development/python2-modules/wheel/default.nix b/pkgs/development/python2-modules/wheel/default.nix index 95841e413c63..de2fa27e9489 100644 --- a/pkgs/development/python2-modules/wheel/default.nix +++ b/pkgs/development/python2-modules/wheel/default.nix @@ -37,7 +37,7 @@ buildPythonPackage rec { # We add this flag to ignore the copy installed by bootstrapped-pip pipInstallFlags = [ "--ignore-installed" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pypa/wheel"; description = "Built-package format for Python"; longDescription = '' @@ -52,7 +52,7 @@ buildPythonPackage rec { It should be noted that wheel is not intended to be used as a library, and as such there is no stable, public API. ''; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ siriobalmelli ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ siriobalmelli ]; }; } diff --git a/pkgs/development/python2-modules/zipp/default.nix b/pkgs/development/python2-modules/zipp/default.nix index dd7416d40e59..a08e88cc6d7d 100644 --- a/pkgs/development/python2-modules/zipp/default.nix +++ b/pkgs/development/python2-modules/zipp/default.nix @@ -34,9 +34,9 @@ buildPythonPackage rec { # Prevent infinite recursion with pytest doCheck = false; - meta = with lib; { + meta = { description = "Pathlib-compatible object wrapper for zip files"; homepage = "https://github.com/jaraco/zipp"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/rocm-modules/6/amdsmi/default.nix b/pkgs/development/rocm-modules/6/amdsmi/default.nix index a145e4d61ded..089420f3ccea 100644 --- a/pkgs/development/rocm-modules/6/amdsmi/default.nix +++ b/pkgs/development/rocm-modules/6/amdsmi/default.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "System management interface for AMD GPUs supported by ROCm"; homepage = "https://github.com/ROCm/rocm_smi_lib"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; platforms = [ "x86_64-linux" ]; mainProgram = "amd-smi"; }; diff --git a/pkgs/development/rocm-modules/6/aqlprofile/default.nix b/pkgs/development/rocm-modules/6/aqlprofile/default.nix index e1f492515922..d44da400200f 100644 --- a/pkgs/development/rocm-modules/6/aqlprofile/default.nix +++ b/pkgs/development/rocm-modules/6/aqlprofile/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { clr ]; - meta = with lib; { + meta = { description = "AQLPROFILE library for AMD HSA runtime API extension support"; homepage = "https://github.com/ROCm/aqlprofile/"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/rocm-modules/6/clr/default.nix b/pkgs/development/rocm-modules/6/clr/default.nix index d5f3e42f1193..4b0fad82e7ef 100644 --- a/pkgs/development/rocm-modules/6/clr/default.nix +++ b/pkgs/development/rocm-modules/6/clr/default.nix @@ -299,12 +299,12 @@ stdenv.mkDerivation (finalAttrs: { if supported == [ ] then localGpuTargets else lib.lists.intersectLists localGpuTargets supported; }; - meta = with lib; { + meta = { description = "AMD Common Language Runtime for hipamd, opencl, and rocclr"; homepage = "https://github.com/ROCm/clr"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/clr/test-opencl-example.nix b/pkgs/development/rocm-modules/6/clr/test-opencl-example.nix index 90da7f085617..c09093946c67 100644 --- a/pkgs/development/rocm-modules/6/clr/test-opencl-example.nix +++ b/pkgs/development/rocm-modules/6/clr/test-opencl-example.nix @@ -49,11 +49,11 @@ let cmakeFlags = [ "-DBUILD_CPP_CL=OFF" ]; - meta = with lib; { + meta = { description = "Samples from the AMD APP SDK (with OpenCRun support)"; homepage = "https://github.com/OpenCL/AMD_APP_samples"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; teams = [ lib.teams.rocm ]; }; }; @@ -82,7 +82,7 @@ makeImpureTest { HelloWorld | grep HelloWorld ''; - meta = with lib; { - teams = [ teams.rocm ]; + meta = { + teams = [ lib.teams.rocm ]; }; } diff --git a/pkgs/development/rocm-modules/6/clr/test-rocm-smi.nix b/pkgs/development/rocm-modules/6/clr/test-rocm-smi.nix index 904c4ae441b0..acdbc1928d35 100644 --- a/pkgs/development/rocm-modules/6/clr/test-rocm-smi.nix +++ b/pkgs/development/rocm-modules/6/clr/test-rocm-smi.nix @@ -21,7 +21,7 @@ makeImpureTest { rocm-smi | grep -A1 GPU ''; - meta = with lib; { - teams = [ teams.rocm ]; + meta = { + teams = [ lib.teams.rocm ]; }; } diff --git a/pkgs/development/rocm-modules/6/composable_kernel/base.nix b/pkgs/development/rocm-modules/6/composable_kernel/base.nix index ba5131c67408..60127e37eadc 100644 --- a/pkgs/development/rocm-modules/6/composable_kernel/base.nix +++ b/pkgs/development/rocm-modules/6/composable_kernel/base.nix @@ -186,12 +186,12 @@ stdenv.mkDerivation (finalAttrs: { ]) != [ ]; }; - meta = with lib; { + meta = { description = "Performance portable programming model for machine learning tensor operators"; homepage = "https://github.com/ROCm/composable_kernel"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; broken = true; # this base package shouldn't be built directly }; }) diff --git a/pkgs/development/rocm-modules/6/composable_kernel/ck4inductor.nix b/pkgs/development/rocm-modules/6/composable_kernel/ck4inductor.nix index 5f839677bca0..8d12893d2b27 100644 --- a/pkgs/development/rocm-modules/6/composable_kernel/ck4inductor.nix +++ b/pkgs/development/rocm-modules/6/composable_kernel/ck4inductor.nix @@ -33,11 +33,11 @@ buildPythonPackage { exit 1 fi ''; - meta = with lib; { + meta = { description = "Pytorch inductor backend which uses composable_kernel universal GEMM implementations"; homepage = "https://github.com/ROCm/composable_kernel"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/rocm-modules/6/half/default.nix b/pkgs/development/rocm-modules/6/half/default.nix index 429439591ffd..ca3a3ab58f17 100644 --- a/pkgs/development/rocm-modules/6/half/default.nix +++ b/pkgs/development/rocm-modules/6/half/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "C++ library for half precision floating point arithmetics"; homepage = "https://github.com/ROCm/half"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/rocm-modules/6/hip-common/default.nix b/pkgs/development/rocm-modules/6/hip-common/default.nix index 1c967cf065b8..b915e0b93827 100644 --- a/pkgs/development/rocm-modules/6/hip-common/default.nix +++ b/pkgs/development/rocm-modules/6/hip-common/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "C++ Heterogeneous-Compute Interface for Portability"; homepage = "https://github.com/ROCm/HIP"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipblas-common/default.nix b/pkgs/development/rocm-modules/6/hipblas-common/default.nix index 8763e916c034..20dc26075c5d 100644 --- a/pkgs/development/rocm-modules/6/hipblas-common/default.nix +++ b/pkgs/development/rocm-modules/6/hipblas-common/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) owner; inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Common files shared by hipBLAS and hipBLASLt"; homepage = "https://github.com/ROCm/hipBLASlt"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipblas/default.nix b/pkgs/development/rocm-modules/6/hipblas/default.nix index 0622f6f0b263..e27185ef5b4b 100644 --- a/pkgs/development/rocm-modules/6/hipblas/default.nix +++ b/pkgs/development/rocm-modules/6/hipblas/default.nix @@ -132,11 +132,11 @@ stdenv.mkDerivation (finalAttrs: { buildSamples = true; }; - meta = with lib; { + meta = { description = "ROCm BLAS marshalling library"; homepage = "https://github.com/ROCm/hipBLAS"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipblaslt/default.nix b/pkgs/development/rocm-modules/6/hipblaslt/default.nix index fe395d874d15..2c6c5679f817 100644 --- a/pkgs/development/rocm-modules/6/hipblaslt/default.nix +++ b/pkgs/development/rocm-modules/6/hipblaslt/default.nix @@ -238,11 +238,11 @@ stdenv.mkDerivation (finalAttrs: { name = finalAttrs.pname; inherit (finalAttrs.src) owner repo; }; - meta = with lib; { + meta = { description = "Library that provides general matrix-matrix operations with a flexible API"; homepage = "https://github.com/ROCm/hipBLASlt"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipcc/default.nix b/pkgs/development/rocm-modules/6/hipcc/default.nix index 1525cb49b223..1ed7dd6f4271 100644 --- a/pkgs/development/rocm-modules/6/hipcc/default.nix +++ b/pkgs/development/rocm-modules/6/hipcc/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { ln -s $out/bin $out/hip/bin ''; - meta = with lib; { + meta = { description = "Compiler driver utility that calls clang or nvcc"; homepage = "https://github.com/ROCm/HIPCC"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipcub/default.nix b/pkgs/development/rocm-modules/6/hipcub/default.nix index 137b7e76f9c4..6348947d8433 100644 --- a/pkgs/development/rocm-modules/6/hipcub/default.nix +++ b/pkgs/development/rocm-modules/6/hipcub/default.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Thin wrapper library on top of rocPRIM or CUB"; homepage = "https://github.com/ROCm/hipCUB"; - license = with licenses; [ bsd3 ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ bsd3 ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipfft/default.nix b/pkgs/development/rocm-modules/6/hipfft/default.nix index bd4c2505eb6c..449c9e7c1dc6 100644 --- a/pkgs/development/rocm-modules/6/hipfft/default.nix +++ b/pkgs/development/rocm-modules/6/hipfft/default.nix @@ -110,11 +110,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "FFT marshalling library"; homepage = "https://github.com/ROCm/hipFFT"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipfort/default.nix b/pkgs/development/rocm-modules/6/hipfort/default.nix index 7a803c1fe3b0..7e86a1b0ef12 100644 --- a/pkgs/development/rocm-modules/6/hipfort/default.nix +++ b/pkgs/development/rocm-modules/6/hipfort/default.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Fortran interfaces for ROCm libraries"; homepage = "https://github.com/ROCm/hipfort"; - license = with licenses; [ mit ]; # mitx11 - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; # mitx11 + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipify/default.nix b/pkgs/development/rocm-modules/6/hipify/default.nix index 8d77fed0cf2e..15a436814ef0 100644 --- a/pkgs/development/rocm-modules/6/hipify/default.nix +++ b/pkgs/development/rocm-modules/6/hipify/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs $out/libexec/ ''; - meta = with lib; { + meta = { description = "Convert CUDA to Portable C++ Code"; homepage = "https://github.com/ROCm/HIPIFY"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hiprand/default.nix b/pkgs/development/rocm-modules/6/hiprand/default.nix index d22dd2ee6708..d72e86b5ef08 100644 --- a/pkgs/development/rocm-modules/6/hiprand/default.nix +++ b/pkgs/development/rocm-modules/6/hiprand/default.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "HIP wrapper for rocRAND and cuRAND"; homepage = "https://github.com/ROCm/hipRAND"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipsolver/default.nix b/pkgs/development/rocm-modules/6/hipsolver/default.nix index 17b888d2a269..b5f8395be608 100644 --- a/pkgs/development/rocm-modules/6/hipsolver/default.nix +++ b/pkgs/development/rocm-modules/6/hipsolver/default.nix @@ -106,11 +106,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "ROCm SOLVER marshalling library"; homepage = "https://github.com/ROCm/hipSOLVER"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/hipsparse/default.nix b/pkgs/development/rocm-modules/6/hipsparse/default.nix index 6d91497c67d5..cf96ecfd234e 100644 --- a/pkgs/development/rocm-modules/6/hipsparse/default.nix +++ b/pkgs/development/rocm-modules/6/hipsparse/default.nix @@ -137,11 +137,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "ROCm SPARSE marshalling library"; homepage = "https://github.com/ROCm/hipSPARSE"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/migraphx/default.nix b/pkgs/development/rocm-modules/6/migraphx/default.nix index 3db72ed78d05..723e987c829b 100644 --- a/pkgs/development/rocm-modules/6/migraphx/default.nix +++ b/pkgs/development/rocm-modules/6/migraphx/default.nix @@ -187,11 +187,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "AMD's graph optimization engine"; homepage = "https://github.com/ROCm/AMDMIGraphX"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/miopen/default.nix b/pkgs/development/rocm-modules/6/miopen/default.nix index 01770ce8c16b..a4b00cc2a744 100644 --- a/pkgs/development/rocm-modules/6/miopen/default.nix +++ b/pkgs/development/rocm-modules/6/miopen/default.nix @@ -321,11 +321,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Machine intelligence library for ROCm"; homepage = "https://github.com/ROCm/MIOpen"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/mivisionx/default.nix b/pkgs/development/rocm-modules/6/mivisionx/default.nix index b502511c140f..fd0f16ec05f6 100644 --- a/pkgs/development/rocm-modules/6/mivisionx/default.nix +++ b/pkgs/development/rocm-modules/6/mivisionx/default.nix @@ -131,12 +131,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Set of comprehensive computer vision and machine intelligence libraries, utilities, and applications"; homepage = "https://github.com/ROCm/MIVisionX"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; broken = useOpenCL; }; }) diff --git a/pkgs/development/rocm-modules/6/rccl/default.nix b/pkgs/development/rocm-modules/6/rccl/default.nix index 32c096c475e5..af55ded29c50 100644 --- a/pkgs/development/rocm-modules/6/rccl/default.nix +++ b/pkgs/development/rocm-modules/6/rccl/default.nix @@ -148,14 +148,14 @@ stdenv.mkDerivation (finalAttrs: { buildTests = true; }; - meta = with lib; { + meta = { description = "ROCm communication collectives library"; homepage = "https://github.com/ROCm/rccl"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rdc/default.nix b/pkgs/development/rocm-modules/6/rdc/default.nix index 315e922feb5a..48fa4c203661 100644 --- a/pkgs/development/rocm-modules/6/rdc/default.nix +++ b/pkgs/development/rocm-modules/6/rdc/default.nix @@ -132,11 +132,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Simplifies administration and addresses infrastructure challenges in cluster and datacenter environments"; homepage = "https://github.com/ROCm/rdc"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocalution/default.nix b/pkgs/development/rocm-modules/6/rocalution/default.nix index 807f53187730..b83aed0a86ce 100644 --- a/pkgs/development/rocm-modules/6/rocalution/default.nix +++ b/pkgs/development/rocm-modules/6/rocalution/default.nix @@ -116,11 +116,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Iterative sparse solvers for ROCm"; homepage = "https://github.com/ROCm/rocALUTION"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocblas/default.nix b/pkgs/development/rocm-modules/6/rocblas/default.nix index c6bce658f6cc..c7523b883d7f 100644 --- a/pkgs/development/rocm-modules/6/rocblas/default.nix +++ b/pkgs/development/rocm-modules/6/rocblas/default.nix @@ -192,11 +192,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { description = "BLAS implementation for ROCm platform"; homepage = "https://github.com/ROCm/rocBLAS"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocdbgapi/default.nix b/pkgs/development/rocm-modules/6/rocdbgapi/default.nix index ba4cd52b2a74..ca760ec933a0 100644 --- a/pkgs/development/rocm-modules/6/rocdbgapi/default.nix +++ b/pkgs/development/rocm-modules/6/rocdbgapi/default.nix @@ -105,11 +105,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Debugger support for control of execution and inspection state"; homepage = "https://github.com/ROCm/ROCdbgapi"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocfft/default.nix b/pkgs/development/rocm-modules/6/rocfft/default.nix index 0f948250297c..4b5cae75a206 100644 --- a/pkgs/development/rocm-modules/6/rocfft/default.nix +++ b/pkgs/development/rocm-modules/6/rocfft/default.nix @@ -159,11 +159,11 @@ stdenv.mkDerivation (finalAttrs: { requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { description = "FFT implementation for ROCm"; homepage = "https://github.com/ROCm/rocFFT"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocgdb/default.nix b/pkgs/development/rocm-modules/6/rocgdb/default.nix index 96909655c5c2..9453e6292fc3 100644 --- a/pkgs/development/rocm-modules/6/rocgdb/default.nix +++ b/pkgs/development/rocm-modules/6/rocgdb/default.nix @@ -107,11 +107,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "ROCm source-level debugger for Linux, based on GDB"; homepage = "https://github.com/ROCm/ROCgdb"; - license = licenses.gpl3Plus; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocm-bandwidth-test/default.nix b/pkgs/development/rocm-modules/6/rocm-bandwidth-test/default.nix index 1da28d9b2f10..43708495442a 100644 --- a/pkgs/development/rocm-modules/6/rocm-bandwidth-test/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-bandwidth-test/default.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation (finalAttrs: { "-DROCT_INC_DIR=${rocmPackages.rocm-runtime}/include/libhsakmt" ]; - meta = with lib; { + meta = { description = "Bandwidth test for AMD GPUs supported by ROCm"; homepage = "https://github.com/ROCm/rocm_bandwidth_test"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fangpen ]; - teams = [ teams.rocm ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fangpen ]; + teams = [ lib.teams.rocm ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/development/rocm-modules/6/rocm-cmake/default.nix b/pkgs/development/rocm-modules/6/rocm-cmake/default.nix index 8ccc8ff182ad..c8dfc1539076 100644 --- a/pkgs/development/rocm-modules/6/rocm-cmake/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-cmake/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "CMake modules for common build tasks for the ROCm stack"; homepage = "https://github.com/ROCm/rocm-cmake"; - license = licenses.mit; - teams = [ teams.rocm ]; - platforms = platforms.unix; + license = lib.licenses.mit; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/rocm-modules/6/rocm-comgr/default.nix b/pkgs/development/rocm-modules/6/rocm-comgr/default.nix index 69b4d953c35d..ed824ad5a94d 100644 --- a/pkgs/development/rocm-modules/6/rocm-comgr/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-comgr/default.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation (finalAttrs: { "-DLLVM_TARGETS_TO_BUILD=AMDGPU;${llvmNativeTarget}" ]; - meta = with lib; { + meta = { description = "APIs for compiling and inspecting AMDGPU code objects"; homepage = "https://github.com/ROCm/ROCm-CompilerSupport/tree/amd-stg-open/lib/comgr"; - license = licenses.ncsa; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = lib.licenses.ncsa; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocm-core/default.nix b/pkgs/development/rocm-modules/6/rocm-core/default.nix index 6c0e178aad86..54955d0064d2 100644 --- a/pkgs/development/rocm-modules/6/rocm-core/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-core/default.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation (finalAttrs: { page = "tags?per_page=4"; }; - meta = with lib; { + meta = { description = "Utility for getting the ROCm release version"; homepage = "https://github.com/ROCm/rocm-core"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocm-device-libs/default.nix b/pkgs/development/rocm-modules/6/rocm-device-libs/default.nix index 910a95ac9ff9..b66fe0bbe1f8 100644 --- a/pkgs/development/rocm-modules/6/rocm-device-libs/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-device-libs/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { "-DLLVM_TARGETS_TO_BUILD=AMDGPU;${llvmNativeTarget}" ]; - meta = with lib; { + meta = { description = "Set of AMD-specific device-side language runtime libraries"; homepage = "https://github.com/ROCm/ROCm-Device-Libs"; - license = licenses.ncsa; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = lib.licenses.ncsa; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocm-docs-core/default.nix b/pkgs/development/rocm-modules/6/rocm-docs-core/default.nix index c8329621d5f6..1e3fb53ac8a7 100644 --- a/pkgs/development/rocm-modules/6/rocm-docs-core/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-docs-core/default.nix @@ -58,14 +58,14 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "ROCm Documentation Python package for ReadTheDocs build standardization"; homepage = "https://github.com/ROCm/rocm-docs-core"; - license = with licenses; [ + license = with lib.licenses; [ mit cc-by-40 ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/rocm-modules/6/rocm-runtime/default.nix b/pkgs/development/rocm-modules/6/rocm-runtime/default.nix index 56d4fb253490..94b520cf4049 100644 --- a/pkgs/development/rocm-modules/6/rocm-runtime/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-runtime/default.nix @@ -107,12 +107,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Platform runtime for ROCm"; homepage = "https://github.com/ROCm/ROCR-Runtime"; - license = with licenses; [ ncsa ]; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ ncsa ]; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocm-smi/default.nix b/pkgs/development/rocm-modules/6/rocm-smi/default.nix index 15477b7e9d9e..26107f9de3f6 100644 --- a/pkgs/development/rocm-modules/6/rocm-smi/default.nix +++ b/pkgs/development/rocm-modules/6/rocm-smi/default.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "System management interface for AMD GPUs supported by ROCm"; homepage = "https://github.com/ROCm/rocm_smi_lib"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/development/rocm-modules/6/rocminfo/default.nix b/pkgs/development/rocm-modules/6/rocminfo/default.nix index e3e76b4fd35f..9a149e58a9b2 100644 --- a/pkgs/development/rocm-modules/6/rocminfo/default.nix +++ b/pkgs/development/rocm-modules/6/rocminfo/default.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "ROCm Application for Reporting System Info"; homepage = "https://github.com/ROCm/rocminfo"; - license = licenses.ncsa; + license = lib.licenses.ncsa; mainProgram = "rocminfo"; - maintainers = with maintainers; [ lovesegfault ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lovesegfault ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocmlir/default.nix b/pkgs/development/rocm-modules/6/rocmlir/default.nix index cc2b298f6ce1..487c3b460a96 100644 --- a/pkgs/development/rocm-modules/6/rocmlir/default.nix +++ b/pkgs/development/rocm-modules/6/rocmlir/default.nix @@ -141,11 +141,11 @@ stdenv.mkDerivation (finalAttrs: { page = "tags?per_page=4"; }; - meta = with lib; { + meta = { description = "MLIR-based convolution and GEMM kernel generator"; homepage = "https://github.com/ROCm/rocMLIR"; - license = with licenses; [ asl20 ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ asl20 ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocprim/default.nix b/pkgs/development/rocm-modules/6/rocprim/default.nix index 567fe7b6ae97..690f1415df34 100644 --- a/pkgs/development/rocm-modules/6/rocprim/default.nix +++ b/pkgs/development/rocm-modules/6/rocprim/default.nix @@ -86,11 +86,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "ROCm parallel primitives"; homepage = "https://github.com/ROCm/rocPRIM"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocprofiler-register/default.nix b/pkgs/development/rocm-modules/6/rocprofiler-register/default.nix index 7a3a0b004c97..97de42a61e61 100644 --- a/pkgs/development/rocm-modules/6/rocprofiler-register/default.nix +++ b/pkgs/development/rocm-modules/6/rocprofiler-register/default.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Profiling with perf-counters and derived metrics"; homepage = "https://github.com/ROCm/rocprofiler"; - license = with licenses; [ mit ]; # mitx11 - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; # mitx11 + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocprofiler/default.nix b/pkgs/development/rocm-modules/6/rocprofiler/default.nix index c9a181ce01b4..82d974d990aa 100644 --- a/pkgs/development/rocm-modules/6/rocprofiler/default.nix +++ b/pkgs/development/rocm-modules/6/rocprofiler/default.nix @@ -130,11 +130,11 @@ stdenv.mkDerivation (finalAttrs: { }; passthru.rocmtoolkit-merged = rocmtoolkit-merged; - meta = with lib; { + meta = { description = "Profiling with perf-counters and derived metrics"; homepage = "https://github.com/ROCm/rocprofiler"; - license = with licenses; [ mit ]; # mitx11 - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; # mitx11 + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocr-debug-agent/default.nix b/pkgs/development/rocm-modules/6/rocr-debug-agent/default.nix index 54af3dd967e4..6a76b9c7e5b9 100644 --- a/pkgs/development/rocm-modules/6/rocr-debug-agent/default.nix +++ b/pkgs/development/rocm-modules/6/rocr-debug-agent/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Library that provides some debugging functionality for ROCr"; homepage = "https://github.com/ROCm/rocr_debug_agent"; - license = with licenses; [ ncsa ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ ncsa ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocrand/default.nix b/pkgs/development/rocm-modules/6/rocrand/default.nix index f0219f66955b..b691ca6db264 100644 --- a/pkgs/development/rocm-modules/6/rocrand/default.nix +++ b/pkgs/development/rocm-modules/6/rocrand/default.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Generate pseudo-random and quasi-random numbers"; homepage = "https://github.com/ROCm/rocRAND"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocsolver/default.nix b/pkgs/development/rocm-modules/6/rocsolver/default.nix index c055e5abf735..a47da7a68a2a 100644 --- a/pkgs/development/rocm-modules/6/rocsolver/default.nix +++ b/pkgs/development/rocm-modules/6/rocsolver/default.nix @@ -121,12 +121,12 @@ stdenv.mkDerivation (finalAttrs: { requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { description = "ROCm LAPACK implementation"; homepage = "https://github.com/ROCm/rocSOLVER"; - license = with licenses; [ bsd2 ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ bsd2 ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; timeout = 14400; # 4 hours maxSilent = 14400; # 4 hours }; diff --git a/pkgs/development/rocm-modules/6/rocsparse/default.nix b/pkgs/development/rocm-modules/6/rocsparse/default.nix index c16b67408fd3..dc7ca260d293 100644 --- a/pkgs/development/rocm-modules/6/rocsparse/default.nix +++ b/pkgs/development/rocm-modules/6/rocsparse/default.nix @@ -146,11 +146,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "ROCm SPARSE implementation"; homepage = "https://github.com/ROCm/rocSPARSE"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocthrust/default.nix b/pkgs/development/rocm-modules/6/rocthrust/default.nix index bf334571c68f..298f2149e6a9 100644 --- a/pkgs/development/rocm-modules/6/rocthrust/default.nix +++ b/pkgs/development/rocm-modules/6/rocthrust/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "ROCm parallel algorithm library"; homepage = "https://github.com/ROCm/rocThrust"; - license = with licenses; [ asl20 ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ asl20 ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/roctracer/default.nix b/pkgs/development/rocm-modules/6/roctracer/default.nix index f560e4a235ec..43e161df0f27 100644 --- a/pkgs/development/rocm-modules/6/roctracer/default.nix +++ b/pkgs/development/rocm-modules/6/roctracer/default.nix @@ -107,11 +107,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Tracer callback/activity library"; homepage = "https://github.com/ROCm/roctracer"; - license = with licenses; [ mit ]; # mitx11 - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; # mitx11 + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rocwmma/default.nix b/pkgs/development/rocm-modules/6/rocwmma/default.nix index bfed05aaf72b..daffc4407560 100644 --- a/pkgs/development/rocm-modules/6/rocwmma/default.nix +++ b/pkgs/development/rocm-modules/6/rocwmma/default.nix @@ -105,11 +105,11 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Mixed precision matrix multiplication and accumulation"; homepage = "https://github.com/ROCm/rocWMMA"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/rocm-modules/6/rpp/default.nix b/pkgs/development/rocm-modules/6/rpp/default.nix index 41cbf54089e0..65909ee616fb 100644 --- a/pkgs/development/rocm-modules/6/rpp/default.nix +++ b/pkgs/development/rocm-modules/6/rpp/default.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src) repo; }; - meta = with lib; { + meta = { description = "Comprehensive high-performance computer vision library for AMD processors"; homepage = "https://github.com/ROCm/rpp"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; broken = useOpenCL; }; }) diff --git a/pkgs/development/rocm-modules/6/tensile/default.nix b/pkgs/development/rocm-modules/6/tensile/default.nix index d54c5dd92365..6eb09fc4247d 100644 --- a/pkgs/development/rocm-modules/6/tensile/default.nix +++ b/pkgs/development/rocm-modules/6/tensile/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { inherit (src) owner repo; }; - meta = with lib; { + meta = { description = "GEMMs and tensor contractions"; homepage = "https://github.com/ROCm/Tensile"; - license = with licenses; [ mit ]; - teams = [ teams.rocm ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + teams = [ lib.teams.rocm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/rocq-modules/hierarchy-builder/default.nix b/pkgs/development/rocq-modules/hierarchy-builder/default.nix index 4933ae7767c3..5cc0e55698eb 100644 --- a/pkgs/development/rocq-modules/hierarchy-builder/default.nix +++ b/pkgs/development/rocq-modules/hierarchy-builder/default.nix @@ -26,13 +26,13 @@ let propagatedBuildInputs = [ rocq-elpi ]; - meta = with lib; { + meta = { description = "High level commands to declare a hierarchy based on packed classes"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ cohencyril siraben ]; - license = licenses.mit; + license = lib.licenses.mit; }; }; in diff --git a/pkgs/development/rocq-modules/vsrocq-language-server/default.nix b/pkgs/development/rocq-modules/vsrocq-language-server/default.nix index f08a40967d6d..cc96fe9a78ac 100644 --- a/pkgs/development/rocq-modules/vsrocq-language-server/default.nix +++ b/pkgs/development/rocq-modules/vsrocq-language-server/default.nix @@ -70,8 +70,8 @@ ocamlPackages.buildDunePackage { { description = "Language server for the vsrocq vscode/codium extension"; homepage = "https://github.com/rocq-prover/vsrocq"; - maintainers = with maintainers; [ cohencyril ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ cohencyril ]; + license = lib.licenses.mit; } // optionalAttrs (fetched.broken or false) { rocqFilter = true; diff --git a/pkgs/development/skaware-packages/build-skaware-man-pages.nix b/pkgs/development/skaware-packages/build-skaware-man-pages.nix index 5f5471d8caaa..d5c5d8632aab 100644 --- a/pkgs/development/skaware-packages/build-skaware-man-pages.nix +++ b/pkgs/development/skaware-packages/build-skaware-man-pages.nix @@ -41,9 +41,9 @@ stdenv.mkDerivation { dontBuild = true; - meta = with lib; { + meta = { inherit description license maintainers; inherit (src.meta) homepage; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/alloy/default.nix b/pkgs/development/tools/alloy/default.nix index 3bfc729b15ed..5d4ce53daecf 100644 --- a/pkgs/development/tools/alloy/default.nix +++ b/pkgs/development/tools/alloy/default.nix @@ -47,7 +47,7 @@ let cp -r ${desktopItem}/share/applications $out/share ''; - meta = with lib; { + meta = { description = "Language & tool for relational models"; longDescription = '' Alloy is a language for describing structures and a tool for exploring @@ -60,10 +60,10 @@ let ''; homepage = "https://alloytools.org/"; downloadPage = "https://alloytools.org/download.html"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ notbandali ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ notbandali ]; }; }; diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix index 7fc9012751b6..20330856ade3 100644 --- a/pkgs/development/tools/ammonite/default.nix +++ b/pkgs/development/tools/ammonite/default.nix @@ -72,7 +72,7 @@ let runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Improved Scala REPL"; longDescription = '' The Ammonite-REPL is an improved Scala REPL, re-implemented from first principles. @@ -81,9 +81,9 @@ let that may be familiar to people coming from IDEs or other REPLs such as IPython or Zsh. ''; homepage = "https://github.com/com-lihaoyi/Ammonite"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "amm"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; in diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index 4130e343146e..0ead2df091d8 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { ++ lib.optionals stdenv.hostPlatform.isLinux [ inotify ] ); - meta = with lib; { + meta = { description = "Static type checker for JavaScript"; mainProgram = "flow"; homepage = "https://flow.org/"; changelog = "https://github.com/facebook/flow/blob/v${version}/Changelog.md"; - license = licenses.mit; + license = lib.licenses.mit; platforms = ocamlPackages.ocaml.meta.platforms; - maintainers = with maintainers; [ puffnfresh ]; + maintainers = with lib.maintainers; [ puffnfresh ]; }; } diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 620c682e3f20..8aaf257c572b 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { patchShebangs $out/bin/include-what-you-use ''; - meta = with lib; { + meta = { description = "Analyze #includes in C/C++ source files with clang"; longDescription = '' For every symbol (type, function variable, or macro) that you use in @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { replacing #includes with forward-declares when possible. ''; homepage = "https://include-what-you-use.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ - maintainers.ja1den + lib.maintainers.ja1den ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/analysis/massif-visualizer/default.nix b/pkgs/development/tools/analysis/massif-visualizer/default.nix index e20b252ae02d..71e6d2f8a572 100644 --- a/pkgs/development/tools/analysis/massif-visualizer/default.nix +++ b/pkgs/development/tools/analysis/massif-visualizer/default.nix @@ -45,11 +45,11 @@ mkDerivation rec { kgraphviewer ]; - meta = with lib; { + meta = { description = "Tool that visualizes massif data generated by valgrind"; mainProgram = "massif-visualizer"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ zraexy ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zraexy ]; }; } diff --git a/pkgs/development/tools/analysis/rizin/cutter.nix b/pkgs/development/tools/analysis/rizin/cutter.nix index 4e1a8fc07a80..a1656b09588d 100644 --- a/pkgs/development/tools/analysis/rizin/cutter.nix +++ b/pkgs/development/tools/analysis/rizin/cutter.nix @@ -88,12 +88,12 @@ let }; }; - meta = with lib; { + meta = { description = "Free and Open Source Reverse Engineering Platform powered by rizin"; homepage = src.meta.homepage; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "cutter"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mic92 dtzWill ]; diff --git a/pkgs/development/tools/analysis/rizin/jsdec.nix b/pkgs/development/tools/analysis/rizin/jsdec.nix index a6dbec600756..728d0b2a36a5 100644 --- a/pkgs/development/tools/analysis/rizin/jsdec.nix +++ b/pkgs/development/tools/analysis/rizin/jsdec.nix @@ -48,15 +48,15 @@ stdenv.mkDerivation (finalAttrs: { rizin ]; - meta = with lib; { + meta = { description = "Simple decompiler for Rizin"; homepage = finalAttrs.src.meta.homepage; changelog = "${finalAttrs.src.meta.homepage}/releases/tag/${finalAttrs.src.rev}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd3 mit ]; - maintainers = with maintainers; [ chayleaf ]; + maintainers = with lib.maintainers; [ chayleaf ]; }; }) diff --git a/pkgs/development/tools/analysis/rizin/rz-ghidra.nix b/pkgs/development/tools/analysis/rizin/rz-ghidra.nix index 4348c8da7ffc..4518f1e36c30 100644 --- a/pkgs/development/tools/analysis/rizin/rz-ghidra.nix +++ b/pkgs/development/tools/analysis/rizin/rz-ghidra.nix @@ -50,14 +50,14 @@ stdenv.mkDerivation (finalAttrs: { "-DCUTTER_INSTALL_PLUGDIR=share/rizin/cutter/plugins/native" ]; - meta = with lib; { + meta = { # errors out with undefined symbols from Cutter broken = enableCutterPlugin && stdenv.hostPlatform.isDarwin; description = "Deep ghidra decompiler and sleigh disassembler integration for rizin"; homepage = finalAttrs.src.meta.homepage; changelog = "${finalAttrs.src.meta.homepage}/releases/tag/${finalAttrs.src.rev}"; - license = licenses.lgpl3; - maintainers = with maintainers; [ chayleaf ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ chayleaf ]; inherit (rizin.meta) platforms; }; }) diff --git a/pkgs/development/tools/analysis/rizin/sigdb.nix b/pkgs/development/tools/analysis/rizin/sigdb.nix index 3aa1c91f33a1..5bbe6685ca8b 100644 --- a/pkgs/development/tools/analysis/rizin/sigdb.nix +++ b/pkgs/development/tools/analysis/rizin/sigdb.nix @@ -28,10 +28,10 @@ stdenvNoCC.mkDerivation rec { mv installdir $out/share/rizin/sigdb ''; - meta = with lib; { + meta = { description = "Rizin FLIRT Signature Database"; homepage = src.meta.homepage; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; maintainers = with lib.maintainers; [ chayleaf ]; }; } diff --git a/pkgs/development/tools/analysis/rr/zen_workaround.nix b/pkgs/development/tools/analysis/rr/zen_workaround.nix index d7b8664d8993..739691b7d723 100644 --- a/pkgs/development/tools/analysis/rr/zen_workaround.nix +++ b/pkgs/development/tools/analysis/rr/zen_workaround.nix @@ -51,8 +51,8 @@ stdenv.mkDerivation { meta = with lib; { description = "Kernel module supporting the rr debugger on (some) AMD Zen-based CPUs"; homepage = "https://github.com/rr-debugger/rr/wiki/Zen#kernel-module"; - license = licenses.gpl2; - maintainers = [ maintainers.vcunat ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.vcunat ]; platforms = [ "x86_64-linux" ]; broken = versionOlder kernel.version "4.19"; # 4.14 breaks and 4.19 works }; diff --git a/pkgs/development/tools/analysis/splint/default.nix b/pkgs/development/tools/analysis/splint/default.nix index d09042d92ab9..fa35bf32b445 100644 --- a/pkgs/development/tools/analysis/splint/default.nix +++ b/pkgs/development/tools/analysis/splint/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "http://www.splint.org/"; description = "Annotation-assisted lightweight static analyzer for C"; mainProgram = "splint"; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { checking than can be done by any standard lint. ''; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-aws.nix b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-aws.nix index 8f27ce63a5ed..a6a14996044d 100644 --- a/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-aws.nix +++ b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-aws.nix @@ -41,11 +41,11 @@ buildGoModule rec { rm -R $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/terraform-linters/tflint-ruleset-aws"; changelog = "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v${version}/CHANGELOG.md"; description = "TFLint ruleset plugin for Terraform AWS Provider"; - maintainers = with maintainers; [ flokli ]; - license = with licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ flokli ]; + license = with lib.licenses; [ mpl20 ]; }; } diff --git a/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix index 10de0f0cb6f5..69a46409d924 100644 --- a/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix +++ b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix @@ -35,11 +35,11 @@ buildGoModule rec { ln -s $out/github.com/terraform-linters/${pname}/${version}/${pname} $out/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/terraform-linters/tflint-ruleset-google"; description = "TFLint ruleset plugin for Terraform Google Provider"; - platforms = platforms.unix; - maintainers = with maintainers; [ john-rodewald ]; - license = with licenses; [ mpl20 ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ john-rodewald ]; + license = with lib.licenses; [ mpl20 ]; }; } diff --git a/pkgs/development/tools/asn2quickder/default.nix b/pkgs/development/tools/asn2quickder/default.nix index bd179fc4a27d..14c5fe339cf7 100644 --- a/pkgs/development/tools/asn2quickder/default.nix +++ b/pkgs/development/tools/asn2quickder/default.nix @@ -45,10 +45,10 @@ buildPythonApplication rec { doCheck = false; # Flaky tests - meta = with lib; { + meta = { description = "ASN.1 compiler with a backend for Quick DER"; homepage = "https://gitlab.com/arpa2/quick-der"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/boomerang/default.nix b/pkgs/development/tools/boomerang/default.nix index ca639ca9b254..b96d48068359 100644 --- a/pkgs/development/tools/boomerang/default.nix +++ b/pkgs/development/tools/boomerang/default.nix @@ -46,9 +46,9 @@ mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/BoomerangDecompiler/boomerang"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "General, open source, retargetable decompiler"; maintainers = [ ]; }; diff --git a/pkgs/development/tools/build-managers/buck/default.nix b/pkgs/development/tools/build-managers/buck/default.nix index c4066663a9d9..a5010236588c 100644 --- a/pkgs/development/tools/build-managers/buck/default.nix +++ b/pkgs/development/tools/build-managers/buck/default.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { homepage = "https://buck.build/"; description = "High-performance build tool"; mainProgram = "buck"; - maintainers = [ maintainers.jgertm ]; - license = licenses.asl20; - platforms = platforms.all; + maintainers = [ lib.maintainers.jgertm ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; # https://github.com/facebook/buck/issues/2666 broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/development/tools/build-managers/build2/bdep.nix b/pkgs/development/tools/build-managers/build2/bdep.nix index a1cebf3a49b2..f6deb8bdd6b1 100644 --- a/pkgs/development/tools/build-managers/build2/bdep.nix +++ b/pkgs/development/tools/build-managers/build2/bdep.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { "config.bin.lib=${build2.configSharedStatic enableShared enableStatic}" ]; - meta = with lib; { + meta = { description = "Build2 project dependency manager"; mainProgram = "bdep"; # https://build2.org/bdep/doc/bdep.xhtml @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://build2.org/"; changelog = "https://git.build2.org/cgit/bdep/tree/NEWS"; - license = licenses.mit; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/build-managers/build2/bpkg.nix b/pkgs/development/tools/build-managers/build2/bpkg.nix index 3aba98bac711..cf550e51e09e 100644 --- a/pkgs/development/tools/build-managers/build2/bpkg.nix +++ b/pkgs/development/tools/build-managers/build2/bpkg.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { install_name_tool -add_rpath '${lib.getLib build2}/lib' "''${!outputBin}/bin/bpkg" ''; - meta = with lib; { + meta = { description = "Build2 package dependency manager"; mainProgram = "bpkg"; # https://build2.org/bpkg/doc/bpkg.xhtml @@ -69,8 +69,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://build2.org/"; changelog = "https://git.build2.org/cgit/bpkg/tree/NEWS"; - license = licenses.mit; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/build-managers/build2/default.nix b/pkgs/development/tools/build-managers/build2/default.nix index 0c73acf952b4..e8f21f173ebb 100644 --- a/pkgs/development/tools/build-managers/build2/default.nix +++ b/pkgs/development/tools/build-managers/build2/default.nix @@ -98,10 +98,10 @@ stdenv.mkDerivation rec { inherit configSharedStatic; }; - meta = with lib; { + meta = { homepage = "https://www.build2.org/"; description = "Build2 build system"; - license = licenses.mit; + license = lib.licenses.mit; longDescription = '' build2 is an open source (MIT), cross-platform build toolchain that aims to approximate Rust Cargo's convenience for developing @@ -115,8 +115,8 @@ stdenv.mkDerivation rec { one of these languages (see bash and rust modules, for example). ''; changelog = "https://git.build2.org/cgit/build2/tree/NEWS"; - platforms = platforms.all; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ hiro98 r-burns ]; diff --git a/pkgs/development/tools/build-managers/drake/default.nix b/pkgs/development/tools/build-managers/drake/default.nix index 3ccf765d354e..a96c917ea3b9 100644 --- a/pkgs/development/tools/build-managers/drake/default.nix +++ b/pkgs/development/tools/build-managers/drake/default.nix @@ -11,15 +11,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "drake"; - meta = with lib; { + meta = { description = "Branch of Rake supporting automatic parallelizing of tasks"; homepage = "http://quix.github.io/rake/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ romildo manveru nicknovitski ]; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/build-managers/gnumake/default.nix b/pkgs/development/tools/build-managers/gnumake/default.nix index 81cfedf6f604..15bd19b21e6a 100644 --- a/pkgs/development/tools/build-managers/gnumake/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/default.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { gnumakeWithGuile = gnumake.override { guileSupport = true; }; }; - meta = with lib; { + meta = { description = "Tool to control the generation of non-source files from sources"; longDescription = '' Make is a tool which controls the generation of executables and @@ -71,9 +71,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://www.gnu.org/software/make/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "make"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index efb0253e4c65..309e3abe5792 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -319,7 +319,7 @@ let null; meta = - with lib; + { inherit platforms; description = "Enterprise-grade build system"; @@ -334,12 +334,12 @@ let homepage = "https://www.gradle.org/"; changelog = "https://docs.gradle.org/${version}/release-notes.html"; downloadPage = "https://gradle.org/next-steps/?version=${version}"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ britter liff lorenzleutgeb diff --git a/pkgs/development/tools/build-managers/qbs/default.nix b/pkgs/development/tools/build-managers/qbs/default.nix index fb2cb702e5b5..9bac8e827fc0 100644 --- a/pkgs/development/tools/build-managers/qbs/default.nix +++ b/pkgs/development/tools/build-managers/qbs/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { qtscript ]; - meta = with lib; { + meta = { description = "Tool that helps simplify the build process for developing projects across multiple platforms"; homepage = "https://wiki.qt.io/Qbs"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/build-managers/sbt/default.nix b/pkgs/development/tools/build-managers/sbt/default.nix index f042d41f8764..83549e090a50 100644 --- a/pkgs/development/tools/build-managers/sbt/default.nix +++ b/pkgs/development/tools/build-managers/sbt/default.nix @@ -51,17 +51,17 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.scala-sbt.org/"; - license = licenses.bsd3; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.bsd3; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; description = "Build tool for Scala, Java and more"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kashw2 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/tools/ceedling/default.nix b/pkgs/development/tools/ceedling/default.nix index 0ae54aabf890..7146dabc440b 100644 --- a/pkgs/development/tools/ceedling/default.nix +++ b/pkgs/development/tools/ceedling/default.nix @@ -8,12 +8,12 @@ bundlerApp { gemdir = ./.; exes = [ "ceedling" ]; - meta = with lib; { + meta = { description = "Build system for C projects that is something of an extension around Ruby's Rake"; homepage = "https://www.throwtheswitch.org/ceedling"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.rlwrnc ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.rlwrnc ]; mainProgram = "ceedling"; }; } diff --git a/pkgs/development/tools/compass/default.nix b/pkgs/development/tools/compass/default.nix index c8e214c1cffa..f30e4bce5aea 100644 --- a/pkgs/development/tools/compass/default.nix +++ b/pkgs/development/tools/compass/default.nix @@ -14,16 +14,16 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "compass"; - meta = with lib; { + meta = { description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain"; homepage = "https://github.com/Compass/compass"; - license = with licenses; mit; - maintainers = with maintainers; [ + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ offline manveru nicknovitski ]; mainProgram = "compass"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/continuous-integration/buildbot/master.nix b/pkgs/development/tools/continuous-integration/buildbot/master.nix index d6c541cf590b..9602ca5bec53 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/master.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/master.nix @@ -165,11 +165,11 @@ buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Open-source continuous integration framework for automating software build, test, and release processes"; homepage = "https://buildbot.net/"; changelog = "https://github.com/buildbot/buildbot/releases/tag/v${version}"; - teams = [ teams.buildbot ]; - license = licenses.gpl2Only; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/development/tools/continuous-integration/buildbot/pkg.nix b/pkgs/development/tools/continuous-integration/buildbot/pkg.nix index 053172a0355c..fccabdead3cb 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/pkg.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/pkg.nix @@ -24,10 +24,10 @@ buildPythonPackage { disabled = !isPy3k; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Packaging Helper"; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/tools/continuous-integration/buildbot/plugins.nix b/pkgs/development/tools/continuous-integration/buildbot/plugins.nix index 8cd88b44efa9..c9997553f75a 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/plugins.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/plugins.nix @@ -35,11 +35,11 @@ # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot UI"; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; }; @@ -58,11 +58,11 @@ # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Console View Plugin"; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; }; @@ -81,11 +81,11 @@ # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Waterfall View Plugin"; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; }; @@ -104,11 +104,11 @@ # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Grid View Plugin"; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; }; @@ -127,11 +127,11 @@ # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot WSGI dashboards Plugin"; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; }; @@ -155,12 +155,12 @@ # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Badges Plugin"; - maintainers = [ maintainers.julienmalka ]; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + maintainers = [ lib.maintainers.julienmalka ]; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; }; diff --git a/pkgs/development/tools/continuous-integration/buildbot/worker.nix b/pkgs/development/tools/continuous-integration/buildbot/worker.nix index 8bb6910bfed7..10eaa8933986 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/worker.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/worker.nix @@ -52,10 +52,10 @@ buildPythonPackage { smoke-test = nixosTests.buildbot; }; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Worker Daemon"; - teams = [ teams.buildbot ]; - license = licenses.gpl2; + teams = [ lib.teams.buildbot ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/tools/continuous-integration/buildkite-test-collector-rust/default.nix b/pkgs/development/tools/continuous-integration/buildkite-test-collector-rust/default.nix index fdad5d18f382..46830e563a68 100644 --- a/pkgs/development/tools/continuous-integration/buildkite-test-collector-rust/default.nix +++ b/pkgs/development/tools/continuous-integration/buildkite-test-collector-rust/default.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Rust adapter for Buildkite Test Analytics"; mainProgram = "buildkite-test-collector"; homepage = "https://buildkite.com/test-analytics"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ jfroche ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ jfroche ]; }; } diff --git a/pkgs/development/tools/continuous-integration/drone/default.nix b/pkgs/development/tools/continuous-integration/drone/default.nix index c077fae90f93..c9d90368ad70 100644 --- a/pkgs/development/tools/continuous-integration/drone/default.nix +++ b/pkgs/development/tools/continuous-integration/drone/default.nix @@ -25,14 +25,14 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Continuous Integration platform built on container technology"; mainProgram = "drone-server"; homepage = "https://github.com/harness/drone"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ vdemeester techknowlogick ]; - license = with licenses; if enableUnfree then unfreeRedistributable else asl20; + license = with lib.licenses; if enableUnfree then unfreeRedistributable else asl20; }; } diff --git a/pkgs/development/tools/database/indradb/default.nix b/pkgs/development/tools/database/indradb/default.nix index ce75d260cea3..1a6d05747099 100644 --- a/pkgs/development/tools/database/indradb/default.nix +++ b/pkgs/development/tools/database/indradb/default.nix @@ -14,15 +14,15 @@ let sha256 = "sha256-g4Jam7yxMc+piYQzgMvVsNTF+ce1U3thzYl/M9rKG4o="; }; - meta = with lib; { + meta = { # Marked broken 2025-11-28 because both indradb-server and indradb-client # have failed on Hydra for nearly a year. broken = true; description = "Graph database written in rust"; homepage = "https://github.com/indradb/indradb"; - license = licenses.mpl20; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.unix; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.unix; }; in { diff --git a/pkgs/development/tools/database/squirrel-sql/default.nix b/pkgs/development/tools/database/squirrel-sql/default.nix index 37383153a2a7..502672fdb26e 100644 --- a/pkgs/development/tools/database/squirrel-sql/default.nix +++ b/pkgs/development/tools/database/squirrel-sql/default.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { icon = "squirrel-sql"; }; - meta = with lib; { + meta = { description = "Universal SQL Client"; mainProgram = "squirrel-sql"; homepage = "http://squirrel-sql.sourceforge.net/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/devpi-server/default.nix b/pkgs/development/tools/devpi-server/default.nix index 9cb67f2871c0..2433a8075e82 100644 --- a/pkgs/development/tools/devpi-server/default.nix +++ b/pkgs/development/tools/devpi-server/default.nix @@ -131,11 +131,11 @@ buildPythonApplication rec { rev-prefix = "server-"; }; - meta = with lib; { + meta = { homepage = "http://doc.devpi.net"; description = "Github-style pypi index server and packaging meta tool"; changelog = "https://github.com/devpi/devpi/blob/${src.rev}/server/CHANGELOG"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/development/tools/electron/binary/generic.nix b/pkgs/development/tools/electron/binary/generic.nix index 72c6fdc6f4ab..9f14ac48d435 100644 --- a/pkgs/development/tools/electron/binary/generic.nix +++ b/pkgs/development/tools/electron/binary/generic.nix @@ -42,9 +42,9 @@ let meta = with lib; { description = "Cross platform desktop application shell"; homepage = "https://github.com/electron/electron"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "electron"; - teams = [ teams.electron ]; + teams = [ lib.teams.electron ]; platforms = [ "x86_64-darwin" "x86_64-linux" @@ -52,7 +52,7 @@ let "aarch64-linux" "aarch64-darwin" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # https://www.electronjs.org/docs/latest/tutorial/electron-timelines knownVulnerabilities = optional (versionOlder version "37.0.0") "Electron version ${version} is EOL"; }; diff --git a/pkgs/development/tools/electron/chromedriver/generic.nix b/pkgs/development/tools/electron/chromedriver/generic.nix index 9eaa0470ab3d..b3d1ca7f8cf2 100644 --- a/pkgs/development/tools/electron/chromedriver/generic.nix +++ b/pkgs/development/tools/electron/chromedriver/generic.nix @@ -14,7 +14,7 @@ version: hashes: let pname = "electron-chromedriver"; - meta = with lib; { + meta = { homepage = "https://www.electronjs.org/"; description = "WebDriver server for running Selenium tests on Chrome"; longDescription = '' @@ -25,12 +25,12 @@ let an unofficial build of ChromeDriver compiled by the Electronjs project. ''; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ liammurphy14 ]; - teams = [ teams.electron ]; + teams = [ lib.teams.electron ]; platforms = [ "x86_64-darwin" "x86_64-linux" diff --git a/pkgs/development/tools/electron/common.nix b/pkgs/development/tools/electron/common.nix index 2fb4b0dccb19..e68d07f5c18f 100644 --- a/pkgs/development/tools/electron/common.nix +++ b/pkgs/development/tools/electron/common.nix @@ -322,8 +322,8 @@ in description = "Cross platform desktop application shell"; homepage = "https://github.com/electron/electron"; platforms = lib.platforms.linux; - license = licenses.mit; - teams = [ teams.electron ]; + license = lib.licenses.mit; + teams = [ lib.teams.electron ]; mainProgram = "electron"; hydraPlatforms = lib.optionals (!(hasInfix "alpha" info.version) && !(hasInfix "beta" info.version)) diff --git a/pkgs/development/tools/enochecker-test/default.nix b/pkgs/development/tools/enochecker-test/default.nix index 08a7e3080512..24e1d67a4902 100644 --- a/pkgs/development/tools/enochecker-test/default.nix +++ b/pkgs/development/tools/enochecker-test/default.nix @@ -58,12 +58,12 @@ buildPythonApplication rec { # tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Automatically test services/checker using the enochecker API"; mainProgram = "enochecker_test"; homepage = "https://github.com/enowars/enochecker_test"; changelog = "https://github.com/enowars/enochecker_test/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fwc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fwc ]; }; } diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix index 76ab05ba857c..17a34ee8b5da 100644 --- a/pkgs/development/tools/esbuild/default.nix +++ b/pkgs/development/tools/esbuild/default.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Extremely fast JavaScript bundler"; homepage = "https://esbuild.github.io"; changelog = "https://github.com/evanw/esbuild/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucus16 undefined-moe ivan diff --git a/pkgs/development/tools/esbuild/netlify.nix b/pkgs/development/tools/esbuild/netlify.nix index e1bedd603cb4..d0d18dbf5af8 100644 --- a/pkgs/development/tools/esbuild/netlify.nix +++ b/pkgs/development/tools/esbuild/netlify.nix @@ -24,11 +24,11 @@ buildGoModule { }; }; - meta = with lib; { + meta = { description = "Fork of esbuild maintained by netlify"; homepage = "https://github.com/netlify/esbuild"; - license = licenses.mit; - maintainers = with maintainers; [ roberth ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ roberth ]; mainProgram = "esbuild"; }; } diff --git a/pkgs/development/tools/flatpak-builder/default.nix b/pkgs/development/tools/flatpak-builder/default.nix index 9f26830f9833..a8c179d5142c 100644 --- a/pkgs/development/tools/flatpak-builder/default.nix +++ b/pkgs/development/tools/flatpak-builder/default.nix @@ -149,12 +149,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Tool to build flatpaks from source"; mainProgram = "flatpak-builder"; homepage = "https://github.com/flatpak/flatpak-builder"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ arthsmn ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ arthsmn ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/tools/gammaray/default.nix b/pkgs/development/tools/gammaray/default.nix index 8058fd231650..79cf10a11395 100644 --- a/pkgs/development/tools/gammaray/default.nix +++ b/pkgs/development/tools/gammaray/default.nix @@ -60,13 +60,13 @@ stdenv.mkDerivation rec { "-DGAMMARAY_BUILD_DOCS=OFF" ]; - meta = with lib; { + meta = { description = "Software introspection tool for Qt applications developed by KDAB"; homepage = "https://github.com/KDAB/GammaRay"; changelog = "https://github.com/KDAB/GammaRay/releases/tag/${src.tag}"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ wineee ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ wineee ]; mainProgram = "gammaray"; }; } diff --git a/pkgs/development/tools/github-changelog-generator/default.nix b/pkgs/development/tools/github-changelog-generator/default.nix index 4faae1cfe0e6..6df22424bca2 100644 --- a/pkgs/development/tools/github-changelog-generator/default.nix +++ b/pkgs/development/tools/github-changelog-generator/default.nix @@ -11,14 +11,14 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "github-changelog-generator"; - meta = with lib; { + meta = { description = "Fully automated changelog generation - This gem generates a changelog file based on tags, issues and merged pull requests"; homepage = "https://github.com/github-changelog-generator/github-changelog-generator"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scriptkiddi nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/godot/3/default.nix b/pkgs/development/tools/godot/3/default.nix index c711aeda47bf..da4e0f7ea081 100644 --- a/pkgs/development/tools/godot/3/default.nix +++ b/pkgs/development/tools/godot/3/default.nix @@ -173,16 +173,16 @@ stdenv.mkDerivation (self: { ] ); - meta = with lib; { + meta = { homepage = "https://godotengine.org"; description = "Free and Open Source 2D and 3D game engine (" + self.godotBuildDescription + ")"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ rotaerk twey ]; diff --git a/pkgs/development/tools/hotdoc/default.nix b/pkgs/development/tools/hotdoc/default.nix index b6ee390228d9..64f7538ca37b 100644 --- a/pkgs/development/tools/hotdoc/default.nix +++ b/pkgs/development/tools/hotdoc/default.nix @@ -146,10 +146,10 @@ buildPythonApplication rec { inherit (gst_all_1) gstreamer gst-plugins-base; }; - meta = with lib; { + meta = { description = "Tastiest API documentation system"; homepage = "https://hotdoc.github.io/"; - license = [ licenses.lgpl21Plus ]; + license = [ lib.licenses.lgpl21Plus ]; maintainers = [ ]; }; } diff --git a/pkgs/development/tools/iaca/2.1.nix b/pkgs/development/tools/iaca/2.1.nix index dea1cbd9d76e..8b85ccc19f33 100644 --- a/pkgs/development/tools/iaca/2.1.nix +++ b/pkgs/development/tools/iaca/2.1.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { $out/bin/iaca ''; postFixup = "wrapProgram $out/bin/iaca --set LD_LIBRARY_PATH $out/lib"; - meta = with lib; { + meta = { description = "Intel Architecture Code Analyzer"; homepage = "https://software.intel.com/en-us/articles/intel-architecture-code-analyzer/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ kazcw ]; + maintainers = with lib.maintainers; [ kazcw ]; }; } diff --git a/pkgs/development/tools/iaca/3.0.nix b/pkgs/development/tools/iaca/3.0.nix index 742aadae3a2a..d85fbdf70789 100644 --- a/pkgs/development/tools/iaca/3.0.nix +++ b/pkgs/development/tools/iaca/3.0.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cp iaca $out/bin patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 $out/bin/iaca ''; - meta = with lib; { + meta = { description = "Intel Architecture Code Analyzer"; homepage = "https://software.intel.com/en-us/articles/intel-architecture-code-analyzer/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ kazcw ]; + maintainers = with lib.maintainers; [ kazcw ]; }; } diff --git a/pkgs/development/tools/infisical/default.nix b/pkgs/development/tools/infisical/default.nix index 3a1ecd2f9ec7..2a97f8b7a357 100644 --- a/pkgs/development/tools/infisical/default.nix +++ b/pkgs/development/tools/infisical/default.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { description = "Official Infisical CLI"; longDescription = '' Infisical is the open-source secret management platform: @@ -82,10 +82,10 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://infisical.com"; changelog = "https://github.com/infisical/infisical/releases/tag/infisical-cli%2Fv${version}"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "infisical"; - maintainers = with maintainers; [ hausken ]; - teams = [ teams.infisical ]; + maintainers = with lib.maintainers; [ hausken ]; + teams = [ lib.teams.infisical ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/development/tools/irony-server/default.nix b/pkgs/development/tools/irony-server/default.nix index 2a2b97222d19..df196cf112eb 100644 --- a/pkgs/development/tools/irony-server/default.nix +++ b/pkgs/development/tools/irony-server/default.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { cmakeDir = "server"; - meta = with lib; { + meta = { description = "Server part of irony"; mainProgram = "irony-server"; homepage = "https://melpa.org/#/irony"; - maintainers = [ maintainers.deepfire ]; - platforms = platforms.unix; - license = licenses.free; + maintainers = [ lib.maintainers.deepfire ]; + platforms = lib.platforms.unix; + license = lib.licenses.free; }; } diff --git a/pkgs/development/tools/kgt/default.nix b/pkgs/development/tools/kgt/default.nix index 684561d195f0..e578ff678773 100644 --- a/pkgs/development/tools/kgt/default.nix +++ b/pkgs/development/tools/kgt/default.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation { ${cleanPackaging.checkForRemainingFiles} ''; - meta = with lib; { + meta = { description = "BNF wrangling and railroad diagrams"; mainProgram = "kgt"; longDescription = '' @@ -89,9 +89,9 @@ stdenv.mkDerivation { Output: Various BNF-like syntaxes, AST dumps, and Railroad Syntax Diagrams ''; homepage = "https://github.com/katef/kgt"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ Profpatsch ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ Profpatsch ]; }; } diff --git a/pkgs/development/tools/kustomize/3.nix b/pkgs/development/tools/kustomize/3.nix index 1d8382f01a55..4e72e6bd024f 100644 --- a/pkgs/development/tools/kustomize/3.nix +++ b/pkgs/development/tools/kustomize/3.nix @@ -34,7 +34,7 @@ buildGoModule rec { vendorHash = "sha256-xLeetcmzvpILLLMhMx7oahWLxguFjG3qbYpeeWpFUlw="; - meta = with lib; { + meta = { description = "Customization of kubernetes YAML configurations"; longDescription = '' kustomize lets you customize raw, template-free YAML files for @@ -42,8 +42,8 @@ buildGoModule rec { as is. ''; homepage = "https://github.com/kubernetes-sigs/kustomize"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ carlosdagos vdemeester zaninime diff --git a/pkgs/development/tools/kustomize/4.nix b/pkgs/development/tools/kustomize/4.nix index 3cb015099741..82b511ecf65f 100644 --- a/pkgs/development/tools/kustomize/4.nix +++ b/pkgs/development/tools/kustomize/4.nix @@ -43,7 +43,7 @@ buildGoModule rec { --zsh <($out/bin/kustomize completion zsh) ''; - meta = with lib; { + meta = { description = "Customization of kubernetes YAML configurations"; mainProgram = "kustomize"; longDescription = '' @@ -52,8 +52,8 @@ buildGoModule rec { as is. ''; homepage = "https://github.com/kubernetes-sigs/kustomize"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ carlosdagos vdemeester periklis diff --git a/pkgs/development/tools/kustomize/kustomize-sops.nix b/pkgs/development/tools/kustomize/kustomize-sops.nix index 91fe9b157b60..3bee0bbecb2a 100644 --- a/pkgs/development/tools/kustomize/kustomize-sops.nix +++ b/pkgs/development/tools/kustomize/kustomize-sops.nix @@ -29,14 +29,14 @@ buildGoModule rec { # Tests are broken in a nix environment doCheck = false; - meta = with lib; { + meta = { description = "Flexible Kustomize Plugin for SOPS Encrypted Resource"; longDescription = '' KSOPS can be used to decrypt any Kubernetes resource, but is most commonly used to decrypt encrypted Kubernetes Secrets and ConfigMaps. ''; homepage = "https://github.com/viaduct-ai/kustomize-sops"; - license = licenses.asl20; - maintainers = with maintainers; [ starcraft66 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ starcraft66 ]; }; } diff --git a/pkgs/development/tools/language-servers/crystalline/default.nix b/pkgs/development/tools/language-servers/crystalline/default.nix index 1555dc35e824..ee347a86788c 100644 --- a/pkgs/development/tools/language-servers/crystalline/default.nix +++ b/pkgs/development/tools/language-servers/crystalline/default.nix @@ -47,11 +47,11 @@ crystal.buildCrystalPackage { wrapProgram "$out/bin/crystalline" --prefix PATH : '${lib.makeBinPath [ llvmPackages.llvm.dev ]}' ''; - meta = with lib; { + meta = { description = "Language Server Protocol implementation for Crystal"; mainProgram = "crystalline"; homepage = "https://github.com/elbywan/crystalline"; - license = licenses.mit; - maintainers = with maintainers; [ donovanglover ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ donovanglover ]; }; } diff --git a/pkgs/development/tools/language-servers/fortls/default.nix b/pkgs/development/tools/language-servers/fortls/default.nix index c0f63112a243..7d6b2791a561 100644 --- a/pkgs/development/tools/language-servers/fortls/default.nix +++ b/pkgs/development/tools/language-servers/fortls/default.nix @@ -29,11 +29,11 @@ buildPythonApplication rec { doCheck = true; checkPhase = "$out/bin/fortls --help 1>/dev/null"; - meta = with lib; { + meta = { description = "Fortran Language Server"; mainProgram = "fortls"; homepage = "https://github.com/fortran-lang/fortls"; - license = [ licenses.mit ]; - maintainers = [ maintainers.sheepforce ]; + license = [ lib.licenses.mit ]; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/tools/language-servers/fortran-language-server/default.nix b/pkgs/development/tools/language-servers/fortran-language-server/default.nix index 0cf0a4e4f370..59abe18298f8 100644 --- a/pkgs/development/tools/language-servers/fortran-language-server/default.nix +++ b/pkgs/development/tools/language-servers/fortran-language-server/default.nix @@ -17,11 +17,11 @@ buildPythonApplication rec { checkPhase = "$out/bin/fortls --help 1>/dev/null"; pythonImportsCheck = [ "fortls" ]; - meta = with lib; { + meta = { description = "FORTRAN Language Server for the Language Server Protocol"; mainProgram = "fortls"; homepage = "https://pypi.org/project/fortran-language-server/"; - license = [ licenses.mit ]; - maintainers = [ maintainers.sheepforce ]; + license = [ lib.licenses.mit ]; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/tools/license_finder/default.nix b/pkgs/development/tools/license_finder/default.nix index c30860a9a4ba..6eb7fe397a9c 100644 --- a/pkgs/development/tools/license_finder/default.nix +++ b/pkgs/development/tools/license_finder/default.nix @@ -14,11 +14,11 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "license_finder"; - meta = with lib; { + meta = { description = "Find licenses for your project's dependencies"; homepage = "https://github.com/pivotal/licensefinder"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/loganalyzer/default.nix b/pkgs/development/tools/loganalyzer/default.nix index 76e782e8f8b9..818dd1052520 100644 --- a/pkgs/development/tools/loganalyzer/default.nix +++ b/pkgs/development/tools/loganalyzer/default.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { ln -s $out/bin/LogAnalyzer $out/bin/loganalyzer ''; - meta = with lib; { + meta = { description = "Tool that helps you to analyze your log files by reducing the content with patterns you define"; homepage = "https://github.com/pbek/loganalyzer"; changelog = "https://github.com/pbek/loganalyzer/blob/develop/CHANGELOG.md"; downloadPage = "https://github.com/pbek/loganalyzer/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ pbek ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pbek ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/minizinc/default.nix b/pkgs/development/tools/minizinc/default.nix index 9c968bac87dd..3b64b09d4dbb 100644 --- a/pkgs/development/tools/minizinc/default.nix +++ b/pkgs/development/tools/minizinc/default.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { simple = callPackage ./simple-test { }; }; - meta = with lib; { + meta = { homepage = "https://www.minizinc.org/"; description = "Medium-level constraint modelling language"; longDescription = '' @@ -78,8 +78,8 @@ stdenv.mkDerivation (finalAttrs: { that it can be mapped onto existing solvers easily and consistently. It is a subset of the higher-level language Zinc. ''; - license = licenses.mpl20; - platforms = platforms.unix; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/development/tools/minizinc/ide.nix b/pkgs/development/tools/minizinc/ide.nix index 4823728839d2..b70ca26a24dc 100644 --- a/pkgs/development/tools/minizinc/ide.nix +++ b/pkgs/development/tools/minizinc/ide.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://www.minizinc.org/"; description = "IDE for MiniZinc, a medium-level constraint modelling language"; mainProgram = "MiniZincIDE"; @@ -90,8 +90,8 @@ stdenv.mkDerivation rec { that it can be mapped onto existing solvers easily and consistently. It is a subset of the higher-level language Zinc. ''; - license = licenses.mpl20; - platforms = platforms.unix; - maintainers = [ maintainers.dtzWill ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.dtzWill ]; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.16.x.nix b/pkgs/development/tools/misc/automake/automake-1.16.x.nix index 4fa03389760d..8751317729fa 100644 --- a/pkgs/development/tools/misc/automake/automake-1.16.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.16.x.nix @@ -36,16 +36,16 @@ stdenv.mkDerivation rec { # "fixed" path in generated files! dontPatchShebangs = true; - meta = with lib; { + meta = { branch = "1.16"; homepage = "https://www.gnu.org/software/automake/"; description = "GNU standard-compliant makefile generator"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' GNU Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding Standards. Automake requires the use of Autoconf. ''; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.18.x.nix b/pkgs/development/tools/misc/automake/automake-1.18.x.nix index b149a15846bb..7d1a496081db 100644 --- a/pkgs/development/tools/misc/automake/automake-1.18.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.18.x.nix @@ -36,16 +36,16 @@ stdenv.mkDerivation rec { # "fixed" path in generated files! dontPatchShebangs = true; - meta = with lib; { + meta = { branch = "1.18"; homepage = "https://www.gnu.org/software/automake/"; description = "GNU standard-compliant makefile generator"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' GNU Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding Standards. Automake requires the use of Autoconf. ''; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/binutils/2.38/default.nix b/pkgs/development/tools/misc/binutils/2.38/default.nix index 80a34de000ea..76fd22da449a 100644 --- a/pkgs/development/tools/misc/binutils/2.38/default.nix +++ b/pkgs/development/tools/misc/binutils/2.38/default.nix @@ -253,7 +253,7 @@ stdenv.mkDerivation { isGNU = true; }; - meta = with lib; { + meta = { description = "Tools for manipulating binaries (linker, assembler, etc.)"; longDescription = '' The GNU Binutils are a collection of binary tools. The main @@ -262,12 +262,12 @@ stdenv.mkDerivation { `gprof', `nm', `strip', etc. ''; homepage = "https://www.gnu.org/software/binutils/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ericson2314 lovesegfault ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # INFO: Give binutils a lower priority than gcc-wrapper to prevent a # collision due to the ld/as wrappers/symlinks in the latter. diff --git a/pkgs/development/tools/misc/binutils/2.38/libbfd.nix b/pkgs/development/tools/misc/binutils/2.38/libbfd.nix index d63405118e71..1566b212bd36 100644 --- a/pkgs/development/tools/misc/binutils/2.38/libbfd.nix +++ b/pkgs/development/tools/misc/binutils/2.38/libbfd.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Library for manipulating containers of machine code"; longDescription = '' BFD is a library which provides a single interface to read and write @@ -75,8 +75,8 @@ stdenv.mkDerivation { it. ''; homepage = "https://www.gnu.org/software/binutils/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ericson2314 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ericson2314 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/binutils/2.38/libopcodes.nix b/pkgs/development/tools/misc/binutils/2.38/libopcodes.nix index 90377382eafb..b6cbfaabd66d 100644 --- a/pkgs/development/tools/misc/binutils/2.38/libopcodes.nix +++ b/pkgs/development/tools/misc/binutils/2.38/libopcodes.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Library from binutils for manipulating machine code"; homepage = "https://www.gnu.org/software/binutils/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ericson2314 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ericson2314 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index 706489915c3f..3642e3c24a53 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -360,7 +360,7 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Tools for manipulating binaries (linker, assembler, etc.)"; longDescription = '' The GNU Binutils are a collection of binary tools. The main @@ -369,12 +369,12 @@ stdenv.mkDerivation (finalAttrs: { `gprof', `nm', `strip', etc. ''; homepage = "https://www.gnu.org/software/binutils/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ericson2314 lovesegfault ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # INFO: Give binutils a lower priority than gcc-wrapper to prevent a # collision due to the ld/as wrappers/symlinks in the latter. diff --git a/pkgs/development/tools/misc/binutils/libbfd.nix b/pkgs/development/tools/misc/binutils/libbfd.nix index 0985fff642cd..443c90ef83c8 100644 --- a/pkgs/development/tools/misc/binutils/libbfd.nix +++ b/pkgs/development/tools/misc/binutils/libbfd.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { inherit (binutils-unwrapped-all-targets) src dev plugin-api-header; }; - meta = with lib; { + meta = { description = "Library for manipulating containers of machine code"; longDescription = '' BFD is a library which provides a single interface to read and write @@ -29,8 +29,8 @@ stdenv.mkDerivation { it. ''; homepage = "https://www.gnu.org/software/binutils/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ericson2314 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ericson2314 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/binutils/libopcodes.nix b/pkgs/development/tools/misc/binutils/libopcodes.nix index e118e56d59ae..496dc83620f1 100644 --- a/pkgs/development/tools/misc/binutils/libopcodes.nix +++ b/pkgs/development/tools/misc/binutils/libopcodes.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { inherit (binutils-unwrapped-all-targets) dev; }; - meta = with lib; { + meta = { description = "Library from binutils for manipulating machine code"; homepage = "https://www.gnu.org/software/binutils/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ericson2314 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ericson2314 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/chruby/default.nix b/pkgs/development/tools/misc/chruby/default.nix index 279c1238f055..98bfab55f6b9 100644 --- a/pkgs/development/tools/misc/chruby/default.nix +++ b/pkgs/development/tools/misc/chruby/default.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { cp -r share $out ''; - meta = with lib; { + meta = { description = "Changes the current Ruby"; homepage = "https://github.com/postmodern/chruby"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "chruby-exec"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix index cca98110ba7e..21310886cbc7 100644 --- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix +++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix @@ -76,21 +76,21 @@ let make crossgcc-${arch} CPUS=$NIX_BUILD_CORES DEST=$out ''; - meta = with lib; { + meta = { homepage = "https://www.coreboot.org"; description = "Coreboot toolchain for ${arch} targets"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 gpl2 lgpl2Plus gpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ felixsinger jmbaur ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) ); diff --git a/pkgs/development/tools/misc/creduce/default.nix b/pkgs/development/tools/misc/creduce/default.nix index abd83ca195a5..23d88f07cdcb 100644 --- a/pkgs/development/tools/misc/creduce/default.nix +++ b/pkgs/development/tools/misc/creduce/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation { wrapProgram $out/bin/creduce --prefix PERL5LIB : "$PERL5LIB" ''; - meta = with lib; { + meta = { description = "C program reducer"; mainProgram = "creduce"; homepage = "https://embed.cs.utah.edu/creduce"; # Officially, the license is: https://github.com/csmith-project/creduce/blob/master/COPYING - license = licenses.ncsa; + license = lib.licenses.ncsa; longDescription = '' C-Reduce is a tool that takes a large C or C++ program that has a property of interest (such as triggering a compiler bug) and @@ -77,6 +77,6 @@ stdenv.mkDerivation { bugs in compilers and other tools that process C/C++ code. ''; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/ctags/default.nix b/pkgs/development/tools/misc/ctags/default.nix index 5d3bd729129d..445cb77b1931 100644 --- a/pkgs/development/tools/misc/ctags/default.nix +++ b/pkgs/development/tools/misc/ctags/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ./unused-collision.patch ]; - meta = with lib; { + meta = { description = "Tool for fast source code browsing (exuberant ctags)"; mainProgram = "ctags"; longDescription = '' @@ -39,8 +39,8 @@ stdenv.mkDerivation rec { programming languages are supported. ''; homepage = "https://ctags.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; # So that Exuberant ctags is preferred over emacs's ctags priority = 1; diff --git a/pkgs/development/tools/misc/cvise/default.nix b/pkgs/development/tools/misc/cvise/default.nix index 5fb507488c55..06563d379de2 100644 --- a/pkgs/development/tools/misc/cvise/default.nix +++ b/pkgs/development/tools/misc/cvise/default.nix @@ -90,11 +90,11 @@ buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/marxin/cvise"; description = "Super-parallel Python port of C-Reduce"; - license = licenses.ncsa; + license = lib.licenses.ncsa; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/misc/gdbgui/default.nix b/pkgs/development/tools/misc/gdbgui/default.nix index ac4450076f54..0998ecaa38ba 100644 --- a/pkgs/development/tools/misc/gdbgui/default.nix +++ b/pkgs/development/tools/misc/gdbgui/default.nix @@ -44,13 +44,13 @@ buildPythonApplication rec { # tests do not work without stdout/stdin doCheck = false; - meta = with lib; { + meta = { description = "Browser-based frontend for GDB"; mainProgram = "gdbgui"; homepage = "https://www.gdbgui.com/"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ yrashk dump_stack ]; diff --git a/pkgs/development/tools/misc/gede/default.nix b/pkgs/development/tools/misc/gede/default.nix index f56769a9220b..6b6d64829692 100644 --- a/pkgs/development/tools/misc/gede/default.nix +++ b/pkgs/development/tools/misc/gede/default.nix @@ -48,12 +48,12 @@ mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Graphical frontend (GUI) to GDB"; mainProgram = "gede"; homepage = "http://gede.dexar.se"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ juliendehos ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ juliendehos ]; }; } diff --git a/pkgs/development/tools/misc/libtool/libtool2.nix b/pkgs/development/tools/misc/libtool/libtool2.nix index 4f50293ca64d..059fbf70e4d0 100644 --- a/pkgs/development/tools/misc/libtool/libtool2.nix +++ b/pkgs/development/tools/misc/libtool/libtool2.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "GNU Libtool, a generic library support script"; longDescription = '' GNU libtool is a generic library support script. Libtool hides @@ -80,9 +80,9 @@ stdenv.mkDerivation rec { documentation for details. ''; homepage = "https://www.gnu.org/software/libtool/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "libtool"; }; } diff --git a/pkgs/development/tools/misc/linuxkit/default.nix b/pkgs/development/tools/misc/linuxkit/default.nix index d7b65e7eb44e..183384f101c3 100644 --- a/pkgs/development/tools/misc/linuxkit/default.nix +++ b/pkgs/development/tools/misc/linuxkit/default.nix @@ -59,11 +59,11 @@ buildGoModule rec { command = "linuxkit version"; }; - meta = with lib; { + meta = { description = "Toolkit for building secure, portable and lean operating systems for containers"; mainProgram = "linuxkit"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/linuxkit/linuxkit"; - maintainers = with maintainers; [ nicknovitski ]; + maintainers = with lib.maintainers; [ nicknovitski ]; }; } diff --git a/pkgs/development/tools/misc/luarocks/default.nix b/pkgs/development/tools/misc/luarocks/default.nix index 9b823ac3982f..b2e6ef8bab50 100644 --- a/pkgs/development/tools/misc/luarocks/default.nix +++ b/pkgs/development/tools/misc/luarocks/default.nix @@ -131,15 +131,15 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Package manager for Lua"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin teto ]; mainProgram = "luarocks"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; downloadPage = "http://luarocks.org/releases/"; }; }) diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix index 1164a4f7aee2..086e18e94185 100644 --- a/pkgs/development/tools/misc/patchelf/default.nix +++ b/pkgs/development/tools/misc/patchelf/default.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { # fails 8 out of 24 tests, problems when loading libc.so.6 doCheck = stdenv.name == "stdenv-linux"; - meta = with lib; { + meta = { homepage = "https://github.com/NixOS/patchelf"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; description = "Small utility to modify the dynamic linker and RPATH of ELF executables"; mainProgram = "patchelf"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix index 5e7e7d34f86e..2ce9d985b7bb 100644 --- a/pkgs/development/tools/misc/patchelf/unstable.nix +++ b/pkgs/development/tools/misc/patchelf/unstable.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/NixOS/patchelf"; - license = licenses.gpl3; + license = lib.licenses.gpl3; description = "Small utility to modify the dynamic linker and RPATH of ELF executables"; mainProgram = "patchelf"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/premake/default.nix b/pkgs/development/tools/misc/premake/default.nix index 1435c2c4c578..6ed590eb6293 100644 --- a/pkgs/development/tools/misc/premake/default.nix +++ b/pkgs/development/tools/misc/premake/default.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { premake_cmd = "premake4"; setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Simple build configuration and project generation tool using lua"; homepage = "https://premake.github.io/"; license = lib.licenses.bsd3; - maintainers = [ maintainers.bjornfor ]; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "premake4"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/qtspim/default.nix b/pkgs/development/tools/misc/qtspim/default.nix index c9f2902780bc..a8c2ce355529 100644 --- a/pkgs/development/tools/misc/qtspim/default.nix +++ b/pkgs/development/tools/misc/qtspim/default.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "New user interface for spim, a MIPS simulator"; mainProgram = "qtspim"; homepage = "https://spimsimulator.sourceforge.net/"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.linux; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/misc/seer/default.nix b/pkgs/development/tools/misc/seer/default.nix index e0f960ced322..263b67ec465c 100644 --- a/pkgs/development/tools/misc/seer/default.nix +++ b/pkgs/development/tools/misc/seer/default.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { kdePackages.wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Qt gui frontend for GDB"; mainProgram = "seergdb"; homepage = "https://github.com/epasveer/seer"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ foolnotion ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ foolnotion ]; }; } diff --git a/pkgs/development/tools/misc/watson-ruby/default.nix b/pkgs/development/tools/misc/watson-ruby/default.nix index bceddf51643f..0061a6b6545a 100644 --- a/pkgs/development/tools/misc/watson-ruby/default.nix +++ b/pkgs/development/tools/misc/watson-ruby/default.nix @@ -28,15 +28,15 @@ stdenv.mkDerivation rec { passthru.updateScript = bundlerUpdateScript "watson-ruby"; - meta = with lib; { + meta = { description = "Inline issue manager"; homepage = "https://goosecode.com/watson/"; - license = with licenses; mit; - maintainers = with maintainers; [ + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ robertodr nicknovitski ]; mainProgram = "watson"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/whatstyle/default.nix b/pkgs/development/tools/misc/whatstyle/default.nix index 8cda134d1514..fa1470213238 100644 --- a/pkgs/development/tools/misc/whatstyle/default.nix +++ b/pkgs/development/tools/misc/whatstyle/default.nix @@ -28,12 +28,12 @@ python3.pkgs.buildPythonApplication rec { doCheck = false; # 3 or 4 failures depending on version, haven't investigated. - meta = with lib; { + meta = { description = "Find a code format style that fits given source files"; mainProgram = "whatstyle"; homepage = "https://github.com/mikr/whatstyle"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/yakut/default.nix b/pkgs/development/tools/misc/yakut/default.nix index 2e1e3e062d74..3c9900c24196 100644 --- a/pkgs/development/tools/misc/yakut/default.nix +++ b/pkgs/development/tools/misc/yakut/default.nix @@ -48,13 +48,13 @@ buildPythonApplication rec { # All these require extra permissions and/or actual hardware connected doCheck = false; - meta = with lib; { + meta = { description = "Simple CLI tool for diagnostics and debugging of Cyphal networks"; longDescription = '' Yakút is a simple cross-platform command-line interface (CLI) tool for diagnostics and debugging of Cyphal networks. By virtue of being based on PyCyphal, Yakut supports all Cyphal transports (UDP, serial, CAN, ...) and is compatible with all major features of the protocol. It is designed to be usable with GNU/Linux, Windows, and macOS. ''; homepage = "https://github.com/OpenCyphal/yakut/"; - license = licenses.mit; - teams = [ teams.ororatech ]; + license = lib.licenses.mit; + teams = [ lib.teams.ororatech ]; }; } diff --git a/pkgs/development/tools/ocaml/cppo/default.nix b/pkgs/development/tools/ocaml/cppo/default.nix index 6a94480be688..ed827b96111c 100644 --- a/pkgs/development/tools/ocaml/cppo/default.nix +++ b/pkgs/development/tools/ocaml/cppo/default.nix @@ -11,15 +11,15 @@ let pname = "cppo"; - meta = with lib; { + meta = { description = "C preprocessor for OCaml"; mainProgram = "cppo"; longDescription = '' Cppo is an equivalent of the C preprocessor targeted at the OCaml language and its variants. ''; homepage = "https://github.com/ocaml-community/${pname}"; - maintainers = [ maintainers.vbgl ]; - license = licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; + license = lib.licenses.bsd3; }; in diff --git a/pkgs/development/tools/ocaml/dune-release/default.nix b/pkgs/development/tools/ocaml/dune-release/default.nix index 7fe150f5a1f6..78d34121d1f7 100644 --- a/pkgs/development/tools/ocaml/dune-release/default.nix +++ b/pkgs/development/tools/ocaml/dune-release/default.nix @@ -94,12 +94,12 @@ buildDunePackage rec { --prefix PATH : "${lib.makeBinPath runtimeInputs}" ''; - meta = with lib; { + meta = { description = "Release dune packages in opam"; mainProgram = "dune-release"; homepage = "https://github.com/ocamllabs/dune-release"; changelog = "https://github.com/tarides/dune-release/blob/${version}/CHANGES.md"; - license = licenses.isc; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/tools/ocaml/merlin/4.x.nix b/pkgs/development/tools/ocaml/merlin/4.x.nix index 8f32bc5d8521..530c9c6ac829 100644 --- a/pkgs/development/tools/ocaml/merlin/4.x.nix +++ b/pkgs/development/tools/ocaml/merlin/4.x.nix @@ -95,14 +95,14 @@ buildDunePackage { runHook postCheck ''; - meta = with lib; { + meta = { description = "Editor-independent tool to ease the development of programs in OCaml"; homepage = "https://github.com/ocaml/merlin"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "ocamlmerlin"; maintainers = [ - maintainers.vbgl - maintainers.sternenseemann + lib.maintainers.vbgl + lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix index 858520d5b891..048ea46551d9 100644 --- a/pkgs/development/tools/ocaml/merlin/default.nix +++ b/pkgs/development/tools/ocaml/merlin/default.nix @@ -46,10 +46,10 @@ buildDunePackage rec { menhirSdk ]; - meta = with lib; { + meta = { description = "Editor-independent tool to ease the development of programs in OCaml"; homepage = "https://github.com/ocaml/merlin"; - license = licenses.mit; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix b/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix index df404d66b16c..dbffe33f83a1 100644 --- a/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix +++ b/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix @@ -30,11 +30,11 @@ buildDunePackage rec { ] ); - meta = with lib; { + meta = { description = "Reads config files for merlin"; mainProgram = "dot-merlin-reader"; homepage = "https://github.com/ocaml/merlin"; - license = licenses.mit; - maintainers = [ maintainers.hongchangwu ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.hongchangwu ]; }; } diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix index 9d42c8a36451..b4ae80a41969 100644 --- a/pkgs/development/tools/ocaml/oasis/default.nix +++ b/pkgs/development/tools/ocaml/oasis/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Configure, build and install system for OCaml projects"; homepage = "https://github.com/ocaml/oasis"; - license = licenses.lgpl21; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ vbgl ]; mainProgram = "oasis"; broken = lib.versionAtLeast ocaml.version "5.0"; inherit (ocaml.meta) platforms; diff --git a/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix b/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix index 1d91614bfb9b..d4049e0b1bfa 100644 --- a/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix +++ b/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix @@ -31,15 +31,15 @@ buildDunePackage rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Simple fork of OCaml parser with support for error recovery"; homepage = "https://github.com/serokell/ocaml-recovery-parser"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Only mit mpl20 ]; - maintainers = with maintainers; [ romildo ]; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "menhir-recover"; broken = lib.versionAtLeast ocaml.version "5.0"; }; diff --git a/pkgs/development/tools/ocaml/ocamlbuild/default.nix b/pkgs/development/tools/ocaml/ocamlbuild/default.nix index 5458c9bfbf9c..29a567c51356 100644 --- a/pkgs/development/tools/ocaml/ocamlbuild/default.nix +++ b/pkgs/development/tools/ocaml/ocamlbuild/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Build system with builtin rules to easily build most OCaml projects"; homepage = "https://github.com/ocaml/ocamlbuild/"; - license = licenses.lgpl2; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ vbgl ]; mainProgram = "ocamlbuild"; inherit (ocaml.meta) platforms; }; diff --git a/pkgs/development/tools/ocaml/ocamlscript/default.nix b/pkgs/development/tools/ocaml/ocamlscript/default.nix index 0527e70c16cc..0c2084630dee 100644 --- a/pkgs/development/tools/ocaml/ocamlscript/default.nix +++ b/pkgs/development/tools/ocaml/ocamlscript/default.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { preInstall = "mkdir -p $out/bin"; createFindlibDestdir = true; - meta = with lib; { + meta = { inherit (src.meta) homepage; - license = licenses.boost; + license = lib.licenses.boost; inherit (ocaml.meta) platforms; description = "Natively-compiled OCaml scripts"; - maintainers = [ maintainers.vbgl ]; + maintainers = [ lib.maintainers.vbgl ]; mainProgram = "ocamlscript"; broken = !(lib.versionAtLeast ocaml.version "4.08"); }; diff --git a/pkgs/development/tools/ocaml/ocp-build/default.nix b/pkgs/development/tools/ocaml/ocp-build/default.nix index ddca215607cf..444dd096c28e 100644 --- a/pkgs/development/tools/ocaml/ocp-build/default.nix +++ b/pkgs/development/tools/ocaml/ocp-build/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ ncurses ]; preInstall = "mkdir -p $out/bin"; - meta = with lib; { + meta = { description = "Build tool for OCaml"; longDescription = '' ocp-build is a build system for OCaml application, based on simple @@ -52,8 +52,8 @@ stdenv.mkDerivation rec { between source files. ''; homepage = "https://www.typerex.org/ocp-build.html"; - license = licenses.gpl3; - maintainers = [ maintainers.jirkamarsik ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.jirkamarsik ]; mainProgram = "ocp-build"; broken = lib.versionAtLeast ocaml.version "5.0"; inherit (ocaml.meta) platforms; diff --git a/pkgs/development/tools/ocaml/ocp-indent/default.nix b/pkgs/development/tools/ocaml/ocp-indent/default.nix index 21ff45f76d0d..b59f91a3a4d9 100644 --- a/pkgs/development/tools/ocaml/ocp-indent/default.nix +++ b/pkgs/development/tools/ocaml/ocp-indent/default.nix @@ -22,11 +22,11 @@ buildDunePackage rec { buildInputs = [ cmdliner ]; propagatedBuildInputs = [ findlib ]; - meta = with lib; { + meta = { homepage = "https://www.typerex.org/ocp-indent.html"; description = "Customizable tool to indent OCaml code"; mainProgram = "ocp-indent"; - license = licenses.gpl3; - maintainers = [ maintainers.jirkamarsik ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/tools/ofono-phonesim/default.nix b/pkgs/development/tools/ofono-phonesim/default.nix index ab01fa1a32a8..bda989f71a85 100644 --- a/pkgs/development/tools/ofono-phonesim/default.nix +++ b/pkgs/development/tools/ofono-phonesim/default.nix @@ -30,12 +30,12 @@ mkDerivation { "UIC=${qtbase.dev}/bin/uic" ]; - meta = with lib; { + meta = { description = "Phone Simulator for modem testing"; mainProgram = "phonesim"; homepage = "https://01.org/ofono"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/parsing/antlr/2.7.7.nix b/pkgs/development/tools/parsing/antlr/2.7.7.nix index df89324aba6a..dc476806e1bb 100644 --- a/pkgs/development/tools/parsing/antlr/2.7.7.nix +++ b/pkgs/development/tools/parsing/antlr/2.7.7.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { CXXFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-D_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION"; - meta = with lib; { + meta = { description = "Powerful parser generator"; longDescription = '' ANTLR (ANother Tool for Language Recognition) is a powerful parser @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { walk parse trees. ''; homepage = "https://www.antlr.org/"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/parsing/antlr/3.4.nix b/pkgs/development/tools/parsing/antlr/3.4.nix index 16d1c7045cf4..8406695bbce0 100644 --- a/pkgs/development/tools/parsing/antlr/3.4.nix +++ b/pkgs/development/tools/parsing/antlr/3.4.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { inherit jre; - meta = with lib; { + meta = { description = "Powerful parser generator"; longDescription = '' ANTLR (ANother Tool for Language Recognition) is a powerful parser @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { walk parse trees. ''; homepage = "https://www.antlr.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/development/tools/parsing/antlr/3.5.nix b/pkgs/development/tools/parsing/antlr/3.5.nix index f0804a2e6868..390c03f9c32b 100644 --- a/pkgs/development/tools/parsing/antlr/3.5.nix +++ b/pkgs/development/tools/parsing/antlr/3.5.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { inherit jre; - meta = with lib; { + meta = { description = "Powerful parser generator"; longDescription = '' ANTLR (ANother Tool for Language Recognition) is a powerful parser @@ -52,9 +52,9 @@ stdenv.mkDerivation rec { walk parse trees. ''; homepage = "https://www.antlr.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.bsd3; - platforms = platforms.linux ++ platforms.darwin; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux ++ lib.platforms.darwin; maintainers = [ lib.maintainers.workflow ]; }; } diff --git a/pkgs/development/tools/parsing/flex/2.5.35.nix b/pkgs/development/tools/parsing/flex/2.5.35.nix index e27af7640142..3f31e0e66948 100644 --- a/pkgs/development/tools/parsing/flex/2.5.35.nix +++ b/pkgs/development/tools/parsing/flex/2.5.35.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { doCheck = false; # fails 2 out of 46 tests - meta = with lib; { + meta = { branch = "2.5.35"; homepage = "https://flex.sourceforge.net/"; description = "Fast lexical analyser generator"; mainProgram = "flex"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/parsing/flex/default.nix b/pkgs/development/tools/parsing/flex/default.nix index 15aa95351878..31029af8a5fc 100644 --- a/pkgs/development/tools/parsing/flex/default.nix +++ b/pkgs/development/tools/parsing/flex/default.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { ln -s $out/bin/flex $out/bin/lex ''; - meta = with lib; { + meta = { homepage = "https://github.com/westes/flex"; description = "Fast lexical analyser generator"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/parsing/ragel/default.nix b/pkgs/development/tools/parsing/ragel/default.nix index 949c282ecd73..a07a40097b9d 100644 --- a/pkgs/development/tools/parsing/ragel/default.nix +++ b/pkgs/development/tools/parsing/ragel/default.nix @@ -44,13 +44,13 @@ let enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.colm.net/open-source/ragel/"; description = "State machine compiler"; mainProgram = "ragel"; inherit broken license; - platforms = platforms.unix; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; }; }; diff --git a/pkgs/development/tools/profiling/sysprof/default.nix b/pkgs/development/tools/profiling/sysprof/default.nix index 0aae2741885f..75770fa1b6e2 100644 --- a/pkgs/development/tools/profiling/sysprof/default.nix +++ b/pkgs/development/tools/profiling/sysprof/default.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "System-wide profiler for Linux"; homepage = "https://gitlab.gnome.org/GNOME/sysprof"; longDescription = '' @@ -86,8 +86,8 @@ stdenv.mkDerivation (finalAttrs: { do not need to be recompiled. In fact they don't even have to be restarted. ''; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/tools/prospector/default.nix b/pkgs/development/tools/prospector/default.nix index dcfbcd52fa1e..832504cf19dd 100644 --- a/pkgs/development/tools/prospector/default.nix +++ b/pkgs/development/tools/prospector/default.nix @@ -68,11 +68,11 @@ python3.pkgs.buildPythonApplication rec { "tests/tools/pyroma/test_pyroma_tool.py" ]; - meta = with lib; { + meta = { description = "Tool to analyse Python code and output information about errors, potential problems, convention violations and complexity"; homepage = "https://github.com/PyCQA/prospector"; changelog = "https://github.com/PyCQA/prospector/blob/v${version}/CHANGELOG.rst"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ kamadorueda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/tools/prospector/setoptconf.nix b/pkgs/development/tools/prospector/setoptconf.nix index fb00acd10909..d3730c958085 100644 --- a/pkgs/development/tools/prospector/setoptconf.nix +++ b/pkgs/development/tools/prospector/setoptconf.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { # Base tests provided via PyPi are broken doCheck = false; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/setoptconf-tmp"; description = "Module for retrieving program settings from various sources in a consistant method"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kamadorueda ]; }; diff --git a/pkgs/development/tools/protoc-gen-grpc-web/default.nix b/pkgs/development/tools/protoc-gen-grpc-web/default.nix index 357d1d9a7272..418c0d157fb1 100644 --- a/pkgs/development/tools/protoc-gen-grpc-web/default.nix +++ b/pkgs/development/tools/protoc-gen-grpc-web/default.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://github.com/grpc/grpc-web"; changelog = "https://github.com/grpc/grpc-web/blob/${finalAttrs.version}/CHANGELOG.md"; description = "gRPC web support for Google's protocol buffers"; mainProgram = "protoc-gen-grpc-web"; - license = licenses.asl20; - maintainers = with maintainers; [ jk ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/tools/replay-io/default.nix b/pkgs/development/tools/replay-io/default.nix index 029b0b9e003b..0bf3e5160526 100644 --- a/pkgs/development/tools/replay-io/default.nix +++ b/pkgs/development/tools/replay-io/default.nix @@ -41,11 +41,11 @@ rec { postFixup = '' patchelf --set-rpath "$(patchelf --print-rpath $out):${lib.makeLibraryPath [ openssl ]}" $out ''; - meta = with lib; { + meta = { description = "RecordReplay internal recording library"; homepage = "https://www.replay.io/"; license = lib.licenses.unfree; - maintainers = with maintainers; [ phryneas ]; + maintainers = with lib.maintainers; [ phryneas ]; platforms = [ "x86_64-linux" ]; }; }; @@ -79,7 +79,7 @@ rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Time Travel Debugger for Web Development"; longDescription = '' Replay allows you to record and replay web applications with familiar browser dev tools. @@ -91,7 +91,7 @@ rec { downloadPage = "https://www.replay.io/"; mainProgram = "replay-io"; license = lib.licenses.mpl20; - maintainers = with maintainers; [ phryneas ]; + maintainers = with lib.maintainers; [ phryneas ]; platforms = [ "x86_64-linux" ]; }; }; @@ -122,12 +122,12 @@ rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Event-driven I/O framework for the V8 JavaScript engine, patched for replay"; homepage = "https://github.com/RecordReplay/node"; - license = licenses.mit; - maintainers = with maintainers; [ phryneas ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ phryneas ]; + platforms = lib.platforms.linux; mainProgram = "replay-node"; }; }; @@ -159,7 +159,7 @@ rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Time Travel Debugger for Web Development - Node Command Line"; longDescription = '' The Replay Node Command Line allows you to record node applications and debug them @@ -171,7 +171,7 @@ rec { homepage = "https://www.replay.io/"; mainProgram = "replay-node"; license = lib.licenses.bsd3; - maintainers = with maintainers; [ phryneas ]; + maintainers = with lib.maintainers; [ phryneas ]; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; diff --git a/pkgs/development/tools/rgp/default.nix b/pkgs/development/tools/rgp/default.nix index 427662df90a8..2f73ea910a23 100644 --- a/pkgs/development/tools/rgp/default.nix +++ b/pkgs/development/tools/rgp/default.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Tool from AMD that allows for deep inspection of GPU workloads"; homepage = "https://gpuopen.com/rgp/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ Flakebi ]; + maintainers = with lib.maintainers; [ Flakebi ]; }; } diff --git a/pkgs/development/tools/rust/bindgen/unwrapped.nix b/pkgs/development/tools/rust/bindgen/unwrapped.nix index c78eeb55be78..cf1624fec9a0 100644 --- a/pkgs/development/tools/rust/bindgen/unwrapped.nix +++ b/pkgs/development/tools/rust/bindgen/unwrapped.nix @@ -43,16 +43,16 @@ rustPlatform.buildRustPackage rec { passthru = { inherit clang; }; - meta = with lib; { + meta = { description = "Automatically generates Rust FFI bindings to C (and some C++) libraries"; longDescription = '' Bindgen takes a c or c++ header file and turns them into rust ffi declarations. ''; homepage = "https://github.com/rust-lang/rust-bindgen"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ johntitor ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ johntitor ]; mainProgram = "bindgen"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/rust/rustup-toolchain-install-master/default.nix b/pkgs/development/tools/rust/rustup-toolchain-install-master/default.nix index 06245f52e1ed..d5dddf1988ec 100644 --- a/pkgs/development/tools/rust/rustup-toolchain-install-master/default.nix +++ b/pkgs/development/tools/rust/rustup-toolchain-install-master/default.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage (finalAttrs: { xz ]; - meta = with lib; { + meta = { description = "Install a rustc master toolchain usable from rustup"; mainProgram = "rustup-toolchain-install-master"; homepage = "https://github.com/kennytm/rustup-toolchain-install-master"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; }) diff --git a/pkgs/development/tools/selenium/chromedriver/binary.nix b/pkgs/development/tools/selenium/chromedriver/binary.nix index 48b03a6cb2b4..0a1ed753a8c9 100644 --- a/pkgs/development/tools/selenium/chromedriver/binary.nix +++ b/pkgs/development/tools/selenium/chromedriver/binary.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation { passthru.tests.version = testers.testVersion { package = chromedriver; }; - meta = with lib; { + meta = { homepage = "https://chromedriver.chromium.org/"; description = "WebDriver server for running Selenium tests on Chrome"; longDescription = '' @@ -57,12 +57,12 @@ stdenv.mkDerivation { input, JavaScript execution, and more. ChromeDriver is a standalone server that implements the W3C WebDriver standard. ''; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.bsd3; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.bsd3; maintainers = [ ]; # Note from primeos: By updating Chromium I also update Google Chrome and # ChromeDriver. - platforms = platforms.darwin; + platforms = lib.platforms.darwin; mainProgram = "chromedriver"; }; } diff --git a/pkgs/development/tools/simavr/default.nix b/pkgs/development/tools/simavr/default.nix index b6488baca834..e3b1e037e0e6 100644 --- a/pkgs/development/tools/simavr/default.nix +++ b/pkgs/development/tools/simavr/default.nix @@ -63,14 +63,14 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "-C tests run_tests"; - meta = with lib; { + meta = { description = "Lean and mean Atmel AVR simulator"; mainProgram = "simavr"; homepage = "https://github.com/buserror/simavr"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ goodrone patryk27 ]; diff --git a/pkgs/development/tools/toluapp/default.nix b/pkgs/development/tools/toluapp/default.nix index 78eab8d64644..f1ce649c27b4 100644 --- a/pkgs/development/tools/toluapp/default.nix +++ b/pkgs/development/tools/toluapp/default.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Tool to integrate C/Cpp code with Lua"; homepage = "http://www.codenix.com/~tolua/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ colinsane ]; mainProgram = "tolua++"; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/tools/tora/default.nix b/pkgs/development/tools/tora/default.nix index fdf4002975b7..e003d73a97e4 100644 --- a/pkgs/development/tools/tora/default.nix +++ b/pkgs/development/tools/tora/default.nix @@ -79,12 +79,12 @@ mkDerivation { --replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 3.1 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)" ''; - meta = with lib; { + meta = { description = "Tora SQL tool"; mainProgram = "tora"; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; - license = licenses.asl20; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; # fails to build on hydra since 2024 broken = true; }; diff --git a/pkgs/development/tools/wasmedge/default.nix b/pkgs/development/tools/wasmedge/default.nix index 771d33daa3b6..67eb3d6c64d4 100644 --- a/pkgs/development/tools/wasmedge/default.nix +++ b/pkgs/development/tools/wasmedge/default.nix @@ -63,11 +63,11 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://wasmedge.org/"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; description = "Lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge, and decentralized applications"; - maintainers = with maintainers; [ dit7ya ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ dit7ya ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/web/grails/default.nix b/pkgs/development/web/grails/default.nix index 3fb7833d3a96..1747917d053b 100644 --- a/pkgs/development/web/grails/default.nix +++ b/pkgs/development/web/grails/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Full stack, web application framework for the JVM"; mainProgram = "grails"; longDescription = '' @@ -61,9 +61,9 @@ stdenv.mkDerivation rec { experience. ''; homepage = "https://grails.org/"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix index a81592ee05d8..d11aafdb1713 100644 --- a/pkgs/development/web/nodejs/nodejs.nix +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -554,9 +554,9 @@ let description = "Event-driven I/O framework for the V8 JavaScript engine"; homepage = "https://nodejs.org"; changelog = "https://github.com/nodejs/node/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ aduh95 ]; - platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aduh95 ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin ++ lib.platforms.freebsd; # This broken condition is likely too conservative. Feel free to loosen it if it works. broken = !canExecute && !canEmulate && (stdenv.buildPlatform.parsed.cpu != stdenv.hostPlatform.parsed.cpu); diff --git a/pkgs/games/cataclysm-dda/common.nix b/pkgs/games/cataclysm-dda/common.nix index fa5091758d40..19eaf0f97f79 100644 --- a/pkgs/games/cataclysm-dda/common.nix +++ b/pkgs/games/cataclysm-dda/common.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation { isCurses = !tiles; }; - meta = with lib; { + meta = { description = "Free, post apocalyptic, zombie infested rogue-like"; mainProgram = "cataclysm-tiles"; longDescription = '' @@ -123,11 +123,11 @@ stdenv.mkDerivation { than their original form. ''; homepage = "https://cataclysmdda.org/"; - license = licenses.cc-by-sa-30; - maintainers = with maintainers; [ + license = lib.licenses.cc-by-sa-30; + maintainers = with lib.maintainers; [ mnacamura DeeUnderscore ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/games/cataclysm-dda/pkgs/tilesets/UndeadPeople/default.nix b/pkgs/games/cataclysm-dda/pkgs/tilesets/UndeadPeople/default.nix index 30c2793f6a8f..4b3039fbefb6 100644 --- a/pkgs/games/cataclysm-dda/pkgs/tilesets/UndeadPeople/default.nix +++ b/pkgs/games/cataclysm-dda/pkgs/tilesets/UndeadPeople/default.nix @@ -17,11 +17,11 @@ buildTileSet { modRoot = "MSX++UnDeadPeopleEdition"; - meta = with lib; { + meta = { description = "Cataclysm DDA tileset based on MSX++ tileset"; homepage = "https://github.com/jmz-b/UndeadPeopleTileset"; - license = licenses.unfree; - maintainers = with maintainers; [ mnacamura ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ mnacamura ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/games/curseofwar/default.nix b/pkgs/games/curseofwar/default.nix index 2bf91002024e..a6f411ca53ce 100644 --- a/pkgs/games/curseofwar/default.nix +++ b/pkgs/games/curseofwar/default.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = with lib; { + meta = { description = "Fast-paced action strategy game"; homepage = "https://a-nikolaev.github.io/curseofwar/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = if SDL != null then "curseofwar-sdl" else "curseofwar"; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/games/duckmarines/default.nix b/pkgs/games/duckmarines/default.nix index aaa32419cb7e..6f733132cde0 100644 --- a/pkgs/games/duckmarines/default.nix +++ b/pkgs/games/duckmarines/default.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { ln -s ${desktopItem}/share/applications/* $out/share/applications/ ''; - meta = with lib; { + meta = { description = "Duck-themed action puzzle video game"; - platforms = platforms.linux; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; - license = licenses.free; + license = lib.licenses.free; downloadPage = "http://tangramgames.dk/games/duckmarines"; }; diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix index 75be441dd985..0973f5eb47e2 100644 --- a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix +++ b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix @@ -54,15 +54,15 @@ stdenv.mkDerivation rec { inherit maxDfVersion; }; - meta = with lib; { + meta = { mainProgram = "dwarftherapist"; description = "Tool to manage dwarves in a running game of Dwarf Fortress"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bendlas numinit ]; - license = licenses.mit; - platforms = platforms.x86; + license = lib.licenses.mit; + platforms = lib.platforms.x86; homepage = "https://github.com/Dwarf-Therapist/Dwarf-Therapist"; }; } diff --git a/pkgs/games/dwarf-fortress/legends-browser/default.nix b/pkgs/games/dwarf-fortress/legends-browser/default.nix index a4aab7863c26..7d7d70589db2 100644 --- a/pkgs/games/dwarf-fortress/legends-browser/default.nix +++ b/pkgs/games/dwarf-fortress/legends-browser/default.nix @@ -32,15 +32,15 @@ buildEnv { inherit name; paths = [ script ]; - meta = with lib; { + meta = { description = "Multi-platform, open source, java-based legends viewer for dwarf fortress"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ Baughn numinit ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.mit; - platforms = platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; homepage = "https://github.com/robertjanetzko/LegendsBrowser"; }; } diff --git a/pkgs/games/fltrator/default.nix b/pkgs/games/fltrator/default.nix index d1a39f76a130..63d80f7b34f2 100644 --- a/pkgs/games/fltrator/default.nix +++ b/pkgs/games/fltrator/default.nix @@ -49,16 +49,16 @@ stdenv.mkDerivation rec { cp rsc/fltrator-128.png $out/share/icons/hicolor/128x128/apps/fltrator2.png ''; - meta = with lib; { + meta = { description = "Simple retro style arcade side-scroller game"; longDescription = '' FLTrator is a simple retro style arcade side-scroller game in which you steer a spaceship through a landscape with hostile rockets and other obstacles. It has ten different levels and a level editor to create new levels or modify the existing. ''; # from https://libregamewiki.org/FLTrator homepage = "https://fltrator.sourceforge.net/"; - platforms = platforms.linux; - maintainers = [ maintainers.marius851000 ]; - license = licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.marius851000 ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/games/fteqw/generic.nix b/pkgs/games/fteqw/generic.nix index 096638764764..a64fd05d9121 100644 --- a/pkgs/games/fteqw/generic.nix +++ b/pkgs/games/fteqw/generic.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { inherit description; homepage = "https://fteqw.org"; longDescription = '' @@ -63,8 +63,8 @@ stdenv.mkDerivation { limits, vulkan and OpenGL renderers, a dedicated server, and fteqcc, for easier QuakeC development ''; - maintainers = with maintainers; [ necrophcodr ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ necrophcodr ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/gscrabble/default.nix b/pkgs/games/gscrabble/default.nix index a262af977e68..fe4a5a0b8dd4 100644 --- a/pkgs/games/gscrabble/default.nix +++ b/pkgs/games/gscrabble/default.nix @@ -50,15 +50,15 @@ buildPythonApplication { ) ''; - meta = with lib; { + meta = { # Fails to build, probably incompatible with latest Python # error: Multiple top-level packages discovered in a flat-layout # https://github.com/RaaH/gscrabble/issues/13 broken = true; description = "Golden Scrabble crossword puzzle game"; homepage = "https://github.com/RaaH/gscrabble/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/games/liquidwar/5.nix b/pkgs/games/liquidwar/5.nix index 65dbcc58b065..a39d316d767a 100644 --- a/pkgs/games/liquidwar/5.nix +++ b/pkgs/games/liquidwar/5.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { "-lm" ]; - meta = with lib; { + meta = { description = "Classic version of a quick tactics game LiquidWar"; - maintainers = [ maintainers.raskin ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.raskin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/liquidwar/default.nix b/pkgs/games/liquidwar/default.nix index c974c71ecd50..0ac6905c9f34 100644 --- a/pkgs/games/liquidwar/default.nix +++ b/pkgs/games/liquidwar/default.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation rec { # To avoid problems finding SDL_types.h. configureFlags = [ "CFLAGS=-I${lib.getDev SDL}/include/SDL" ]; - meta = with lib; { + meta = { description = "Quick tactics game"; homepage = "https://www.gnu.org/software/liquidwar6/"; - maintainers = [ maintainers.raskin ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = [ lib.maintainers.raskin ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/minecraft-servers/derivation.nix b/pkgs/games/minecraft-servers/derivation.nix index 211d6ab02f37..4192dff1ccf6 100644 --- a/pkgs/games/minecraft-servers/derivation.nix +++ b/pkgs/games/minecraft-servers/derivation.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation { updateScript = ./update.py; }; - meta = with lib; { + meta = { description = "Minecraft Server"; homepage = "https://minecraft.net"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfreeRedistributable; - platforms = platforms.unix; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice tomberek costrouc diff --git a/pkgs/games/openttd/grfcodec.nix b/pkgs/games/openttd/grfcodec.nix index 584816769ef3..292fa0de4a7f 100644 --- a/pkgs/games/openttd/grfcodec.nix +++ b/pkgs/games/openttd/grfcodec.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation { cp -a grfcodec grfid grfstrip nforenum $out/bin/ ''; - meta = with lib; { + meta = { description = "Low-level (dis)assembler and linter for OpenTTD GRF files"; homepage = "http://openttd.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ToxicFrog ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/games/openttd/nml.nix b/pkgs/games/openttd/nml.nix index 77e0ee18a6bd..a0672b15e996 100644 --- a/pkgs/games/openttd/nml.nix +++ b/pkgs/games/openttd/nml.nix @@ -20,11 +20,11 @@ python3.pkgs.buildPythonApplication rec { pillow ]; - meta = with lib; { + meta = { homepage = "http://openttdcoop.org/"; description = "Compiler for OpenTTD NML files"; mainProgram = "nmlc"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ToxicFrog ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/games/openxray/default.nix b/pkgs/games/openxray/default.nix index 563c12e02393..51579c472311 100644 --- a/pkgs/games/openxray/default.nix +++ b/pkgs/games/openxray/default.nix @@ -80,14 +80,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { mainProgram = "xr_3da"; description = "Improved version of the X-Ray Engine, the game engine used in the world-famous S.T.A.L.K.E.R. game series by GSC Game World"; homepage = "https://github.com/OpenXRay/xray-16/"; - license = licenses.unfree // { + license = lib.licenses.unfree // { url = "https://github.com/OpenXRay/xray-16/blob/${finalAttrs.version}/License.txt"; }; - maintainers = with maintainers; [ OPNA2608 ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/games/pentobi/default.nix b/pkgs/games/pentobi/default.nix index cbcddf570b03..657891db9af6 100644 --- a/pkgs/games/pentobi/default.nix +++ b/pkgs/games/pentobi/default.nix @@ -54,11 +54,11 @@ mkDerivation rec { "-DMETAINFO_ITS=${appstream}/share/gettext/its/metainfo.its" ]; - meta = with lib; { + meta = { description = "Computer opponent for the board game Blokus"; homepage = "https://pentobi.sourceforge.io"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/pokerth/default.nix b/pkgs/games/pokerth/default.nix index 5321d15eafff..9f2df261d8e2 100644 --- a/pkgs/games/pokerth/default.nix +++ b/pkgs/games/pokerth/default.nix @@ -87,12 +87,12 @@ mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I${lib.getDev SDL}/include/SDL"; - meta = with lib; { + meta = { homepage = "https://www.pokerth.net"; description = "Poker game ${target}"; mainProgram = "pokerth"; - license = licenses.gpl3; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/games/quake2/yquake2/default.nix b/pkgs/games/quake2/yquake2/default.nix index 1646cb3163c3..9f0999136ef0 100644 --- a/pkgs/games/quake2/yquake2/default.nix +++ b/pkgs/games/quake2/yquake2/default.nix @@ -92,12 +92,12 @@ let }) ]; - meta = with lib; { + meta = { description = "Yamagi Quake II client"; homepage = "https://www.yamagi.org/quake2/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ tadfisher ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tadfisher ]; }; }; diff --git a/pkgs/games/quake2/yquake2/games.nix b/pkgs/games/quake2/yquake2/games.nix index 2e1053eded72..86cd05f6c7d8 100644 --- a/pkgs/games/quake2/yquake2/games.nix +++ b/pkgs/games/quake2/yquake2/games.nix @@ -55,12 +55,12 @@ let runHook postInstall ''; - meta = with lib; { + meta = { inherit (data) description; homepage = "https://www.yamagi.org/quake2/"; - license = licenses.unfree; - platforms = platforms.unix; - maintainers = with maintainers; [ tadfisher ]; + license = lib.licenses.unfree; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tadfisher ]; }; }; diff --git a/pkgs/games/quake3/content/demo.nix b/pkgs/games/quake3/content/demo.nix index 3edf3e76a6b1..dfcbbced56c0 100644 --- a/pkgs/games/quake3/content/demo.nix +++ b/pkgs/games/quake3/content/demo.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Demo of Quake 3 Arena, a classic first-person shooter"; longDescription = '' Quake III Arena and it's demo don't offer current wide screen resolutions in the menu. @@ -39,8 +39,8 @@ stdenv.mkDerivation { $ quake3 +set r_mode -1 +set r_customwidth 2560 +set r_customheight 1440 +set r_fullscreen 1 ''; homepage = "https://www.idsoftware.com/"; - license = licenses.unfreeRedistributable; - platforms = platforms.all; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/games/quake3/content/hires.nix b/pkgs/games/quake3/content/hires.nix index ec07228f03d1..85b9fe497bb8 100644 --- a/pkgs/games/quake3/content/hires.nix +++ b/pkgs/games/quake3/content/hires.nix @@ -65,10 +65,10 @@ stdenv.mkDerivation (finalAttrs: { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Quake 3 high-resolution textures"; - license = licenses.cc0; - platforms = platforms.all; - maintainers = with maintainers; [ rvolosatovs ]; + license = lib.licenses.cc0; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ rvolosatovs ]; }; }) diff --git a/pkgs/games/quake3/content/pointrelease.nix b/pkgs/games/quake3/content/pointrelease.nix index 6eb81e2bc7ce..47790a738fce 100644 --- a/pkgs/games/quake3/content/pointrelease.nix +++ b/pkgs/games/quake3/content/pointrelease.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Quake 3 Arena point release"; - license = licenses.unfreeRedistributable; - platforms = platforms.all; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix index c3194589ee26..e957a80bbd0e 100644 --- a/pkgs/games/spring/springlobby.nix +++ b/pkgs/games/spring/springlobby.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { --set SPRING_BUNDLE_DIR "${spring}/lib" ''; - meta = with lib; { + meta = { homepage = "https://springlobby.springrts.com"; description = "Cross-platform lobby client for the Spring RTS project"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qknight ]; platforms = [ diff --git a/pkgs/games/stuntrally/default.nix b/pkgs/games/stuntrally/default.nix index 6f0590dd0e1a..656d4ca91510 100644 --- a/pkgs/games/stuntrally/default.nix +++ b/pkgs/games/stuntrally/default.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation rec { tinyxml-2 ]; - meta = with lib; { + meta = { description = "Stunt Rally game with Track Editor, based on VDrift and OGRE"; homepage = "http://stuntrally.tuxfamily.org/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/vessel/default.nix b/pkgs/games/vessel/default.nix index 353f05a157d1..5de04c1de709 100644 --- a/pkgs/games/vessel/default.nix +++ b/pkgs/games/vessel/default.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { chmod +x $out/bin/Vessel ''; - meta = with lib; { + meta = { description = "Fluid physics based puzzle game"; longDescription = '' Living liquid machines have overrun this world of unstoppable progress, @@ -96,8 +96,8 @@ stdenv.mkDerivation rec { to life, and all the consequences that ensue. ''; homepage = "http://www.strangeloopgames.com"; - license = licenses.unfree; - maintainers = with maintainers; [ jcumming ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jcumming ]; }; } diff --git a/pkgs/kde/misc/kup/default.nix b/pkgs/kde/misc/kup/default.nix index a093834a998e..931e16fbe8e1 100644 --- a/pkgs/kde/misc/kup/default.nix +++ b/pkgs/kde/misc/kup/default.nix @@ -17,9 +17,9 @@ mkKdeDerivation rec { extraBuildInputs = [ libgit2 ]; - meta = with lib; { - license = licenses.gpl2Plus; - maintainers = [ maintainers.pwoelfel ]; + meta = { + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.pwoelfel ]; teams = [ ]; }; } diff --git a/pkgs/kde/third-party/applet-window-buttons6/default.nix b/pkgs/kde/third-party/applet-window-buttons6/default.nix index da2401736690..0785c54c3edf 100644 --- a/pkgs/kde/third-party/applet-window-buttons6/default.nix +++ b/pkgs/kde/third-party/applet-window-buttons6/default.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { libplasma ]; - meta = with lib; { + meta = { description = "Plasma 6 applet in order to show window buttons in your panels"; homepage = "https://github.com/moodyhunter/applet-window-buttons6"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ A1ca7raz ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ A1ca7raz ]; }; } diff --git a/pkgs/kde/third-party/wallpaper-engine-plugin/default.nix b/pkgs/kde/third-party/wallpaper-engine-plugin/default.nix index 529e98c53668..eba33ed81d0e 100644 --- a/pkgs/kde/third-party/wallpaper-engine-plugin/default.nix +++ b/pkgs/kde/third-party/wallpaper-engine-plugin/default.nix @@ -67,11 +67,11 @@ mkKdeDerivation { cd - ''; - meta = with lib; { + meta = { description = "KDE wallpaper plugin integrating Wallpaper Engine"; homepage = "https://github.com/catsout/wallpaper-engine-kde-plugin"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ macronova ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ macronova ]; teams = [ ]; }; } diff --git a/pkgs/misc/arm-trusted-firmware/default.nix b/pkgs/misc/arm-trusted-firmware/default.nix index c813e6e94b10..65a951c83eb7 100644 --- a/pkgs/misc/arm-trusted-firmware/default.nix +++ b/pkgs/misc/arm-trusted-firmware/default.nix @@ -113,15 +113,15 @@ let ]; meta = - with lib; + { homepage = "https://github.com/ARM-software/arm-trusted-firmware"; description = "Reference implementation of secure world software for ARMv8-A"; license = [ - licenses.bsd3 + lib.licenses.bsd3 ] - ++ lib.optionals (!deleteHDCPBlobBeforeBuild) [ licenses.unfreeRedistributable ]; - maintainers = with maintainers; [ lopsided98 ]; + ++ lib.optionals (!deleteHDCPBlobBeforeBuild) [ lib.licenses.unfreeRedistributable ]; + maintainers = with lib.maintainers; [ lopsided98 ]; } // extraMeta; } diff --git a/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix b/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix index 05e1c20a722a..d9394bf6e217 100644 --- a/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix +++ b/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix @@ -66,14 +66,14 @@ in } ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother ${model} printer driver"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=gb&lang=en&prod=${model}_all&os=128"; - maintainers = with maintainers; [ marcovergueira ]; + maintainers = with lib.maintainers; [ marcovergueira ]; }; }; @@ -114,14 +114,14 @@ in ln -s $out/opt/brother/Printers/${model}/cupswrapper/brother_${model}_printer_en.ppd $out/share/cups/model/ ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother ${model} printer CUPS wrapper driver"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=gb&lang=en&prod=${model}_all&os=128"; - maintainers = with maintainers; [ marcovergueira ]; + maintainers = with lib.maintainers; [ marcovergueira ]; }; }; } diff --git a/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix b/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix index 7cf4e1017314..52e71502de48 100644 --- a/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix +++ b/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix @@ -66,14 +66,14 @@ in } ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother ${model} printer driver"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=gb&lang=en&prod=${model}_eu&os=128"; - maintainers = with maintainers; [ pshirshov ]; + maintainers = with lib.maintainers; [ pshirshov ]; }; }; @@ -114,14 +114,14 @@ in ln -s $out/opt/brother/Printers/${model}/cupswrapper/brother_${model}_printer_en.ppd $out/share/cups/model/ ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother ${model} printer CUPS wrapper driver"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=gb&lang=en&prod=${model}_eu&os=128"; - maintainers = with maintainers; [ pshirshov ]; + maintainers = with lib.maintainers; [ pshirshov ]; }; }; } diff --git a/pkgs/misc/cups/drivers/cnijfilter_2_80/default.nix b/pkgs/misc/cups/drivers/cnijfilter_2_80/default.nix index 7e1e9d160471..b41494ad90be 100644 --- a/pkgs/misc/cups/drivers/cnijfilter_2_80/default.nix +++ b/pkgs/misc/cups/drivers/cnijfilter_2_80/default.nix @@ -131,15 +131,15 @@ stdenv.mkDerivation { # https://github.com/NixOS/nixpkgs/issues/276125 hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "Canon InkJet printer drivers for the iP5400, MP520, MP210, MP140, iP3500, and MP610 series. (MP520 drivers also work for MX700.)"; homepage = "http://support-asia.canon-asia.com/content/EN/0100084101.html"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ jerith666 ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jerith666 ]; }; } diff --git a/pkgs/misc/cups/drivers/hl2260d/default.nix b/pkgs/misc/cups/drivers/hl2260d/default.nix index 22d1ab057f03..7b7b5928550d 100644 --- a/pkgs/misc/cups/drivers/hl2260d/default.nix +++ b/pkgs/misc/cups/drivers/hl2260d/default.nix @@ -107,16 +107,16 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother HL-2260D printer driver"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "i686-linux" ]; downloadPage = "https://support.brother.com/g/b/downloadtop.aspx?c=cn_ot&lang=en&prod=hl2260d_cn"; - maintainers = with maintainers; [ u2x1 ]; + maintainers = with lib.maintainers; [ u2x1 ]; }; } diff --git a/pkgs/misc/cups/drivers/hll2340dw/default.nix b/pkgs/misc/cups/drivers/hll2340dw/default.nix index 0f41b255e920..adb9db434d98 100644 --- a/pkgs/misc/cups/drivers/hll2340dw/default.nix +++ b/pkgs/misc/cups/drivers/hll2340dw/default.nix @@ -93,13 +93,13 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { homepage = "http://www.brother.com/"; description = "Brother hl-l2340dw printer driver"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=us&lang=es&prod=hll2340dw_us_eu_as&os=128&flang=English"; - maintainers = [ maintainers.qknight ]; + maintainers = [ lib.maintainers.qknight ]; }; } diff --git a/pkgs/misc/cups/drivers/hll3230cdw/default.nix b/pkgs/misc/cups/drivers/hll3230cdw/default.nix index 3e7893b36cf8..f954eee5cf65 100644 --- a/pkgs/misc/cups/drivers/hll3230cdw/default.nix +++ b/pkgs/misc/cups/drivers/hll3230cdw/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { --replace \"\$"@"\" \"\$"@\" | LD_PRELOAD= ${gnused}/bin/sed -E '/^(function list :|resource file :).*/{s#/opt#$out/opt#}'" ''; - meta = with lib; { + meta = { description = "Brother HL-L3230CDW printer driver"; - license = licenses.unfree; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ aplund ]; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ aplund ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/misc/cups/drivers/mfcj6510dwlpr/default.nix b/pkgs/misc/cups/drivers/mfcj6510dwlpr/default.nix index b63b297a17aa..5a42ba4ef296 100644 --- a/pkgs/misc/cups/drivers/mfcj6510dwlpr/default.nix +++ b/pkgs/misc/cups/drivers/mfcj6510dwlpr/default.nix @@ -113,13 +113,13 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Brother MFC-J6510DW LPR driver"; downloadPage = "http://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj6510dw_all&os=128"; homepage = "http://www.brother.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = with licenses; unfree; - maintainers = with maintainers; [ ramkromberg ]; - platforms = with platforms; linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with lib.licenses; unfree; + maintainers = with lib.maintainers; [ ramkromberg ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/misc/lilypond/fonts.nix b/pkgs/misc/lilypond/fonts.nix index 150d7ee9ea69..bafc9e640934 100644 --- a/pkgs/misc/lilypond/fonts.nix +++ b/pkgs/misc/lilypond/fonts.nix @@ -43,11 +43,11 @@ let done ''; - meta = with lib; { + meta = { inherit (lilypond.meta) homepage platforms; description = "${fontName} font for LilyPond"; - license = licenses.ofl; - maintainers = with maintainers; [ yurrriq ]; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ yurrriq ]; }; }; diff --git a/pkgs/misc/logging/beats/7.x.nix b/pkgs/misc/logging/beats/7.x.nix index 8f5b8d607c3a..dc214f05e617 100644 --- a/pkgs/misc/logging/beats/7.x.nix +++ b/pkgs/misc/logging/beats/7.x.nix @@ -28,14 +28,14 @@ let subPackages = [ package ]; - meta = with lib; { + meta = { homepage = "https://www.elastic.co/products/beats"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ basvandijk dfithian ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } extraArgs ); diff --git a/pkgs/misc/opcua-client-gui/default.nix b/pkgs/misc/opcua-client-gui/default.nix index 26ef34fd7715..3e94817640d9 100644 --- a/pkgs/misc/opcua-client-gui/default.nix +++ b/pkgs/misc/opcua-client-gui/default.nix @@ -55,11 +55,11 @@ python3Packages.buildPythonApplication rec { }) ]; - meta = with lib; { + meta = { description = "OPC UA GUI Client"; homepage = "https://github.com/FreeOpcUa/opcua-client-gui"; - platforms = platforms.unix; - license = licenses.gpl3Only; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "opcua-client"; }; diff --git a/pkgs/misc/optee-os/default.nix b/pkgs/misc/optee-os/default.nix index dca4d6000019..e191a254a023 100644 --- a/pkgs/misc/optee-os/default.nix +++ b/pkgs/misc/optee-os/default.nix @@ -95,13 +95,13 @@ let ''; meta = - with lib; + { description = "Trusted Execution Environment for ARM"; homepage = "https://github.com/OP-TEE/optee_os"; changelog = "https://github.com/OP-TEE/optee_os/blob/${defaultVersion}/CHANGELOG.md"; - license = licenses.bsd2; - maintainers = [ maintainers.jmbaur ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.jmbaur ]; } // extraMeta; } diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 2545487ed477..9cddfe24341c 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -122,11 +122,11 @@ in postInstall = '' sed -i -e 's|''${PLUGIN_DIR}/catppuccin-selected-theme.tmuxtheme|''${TMUX_TMPDIR}/catppuccin-selected-theme.tmuxtheme|g' $target/catppuccin.tmux ''; - meta = with lib; { + meta = { homepage = "https://github.com/catppuccin/tmux"; description = "Soothing pastel theme for Tmux"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; maintainers = [ ]; }; }; @@ -359,11 +359,11 @@ in rev = "28ed7ce3c73a328d8463d4f4aaa6ccb851e520fa"; hash = "sha256-tl0SjG/CeolrN7OIHj6MgkB9lFmFgEuJevsSuwVs+78="; }; - meta = with lib; { + meta = { homepage = "https://github.com/wfxr/tmux-fzf-url"; description = "Quickly open urls on your terminal screen"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; }; @@ -412,12 +412,12 @@ in postInstall = '' sed -i -e 's|ruby|${pkgs.ruby}/bin/ruby|g' $target/scripts/tmux-jump.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/schasse/tmux-jump"; description = "Vimium/Easymotion like navigation for tmux"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ arnarg ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ arnarg ]; }; }; @@ -468,12 +468,12 @@ in ] } ''; - meta = with lib; { + meta = { homepage = "https://github.com/bcampolo/tmux-lazy-restore"; description = "session manager plugin that allows sessions to be lazily restored in order to save memory and processing power"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bbigras ]; }; }; @@ -524,12 +524,12 @@ in rev = "11520829210a34dc9c7e5be9dead152eaf3a4423"; hash = "sha256-hlhBKC6UzkpUrCanJehs2FxK5SoYBoiGiioXdx6trC4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/MunifTanjim/tmux-mode-indicator"; description = "Plugin that displays prompt indicating currently active Tmux mode"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ aacebedo ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ aacebedo ]; }; }; @@ -687,11 +687,11 @@ in rev = "16bbde801378a70512059541d104c5ae35be32b9"; hash = "sha256-IyYQyIONMnVBwhhcI3anOPxKpv2TfI2KZgJ5o5JtZ8I="; }; - meta = with lib; { + meta = { description = "Tmux powerline theme"; homepage = "https://github.com/wfxr/tmux-power"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; }; @@ -784,7 +784,7 @@ in rev = "V${version}"; hash = "sha256-mLpZQSo8nildawsPxGwkcETNwlRq6O1pfy/VusMNMaw="; }; - meta = with lib; { + meta = { homepage = "https://github.com/27medkamal/tmux-session-wizard"; description = "Tmux plugin for creating and switching between sessions based on recently accessed directories"; longDescription = '' @@ -794,9 +794,9 @@ in * Switching sessions * Viewing current or creating new sessions in one popup ''; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ mandos ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mandos ]; }; nativeBuildInputs = [ pkgs.makeWrapper ]; postInstall = '' @@ -861,12 +861,12 @@ in hash = "sha256-wP3c+p/DM6ve7GUhi0QEzggct7NS4XUa78sVQFSKrfo="; }; - meta = with lib; { + meta = { homepage = "https://github.com/jabirali/tmux-tilish"; description = "Plugin which makes tmux work and feel like i3wm"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ arnarg ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ arnarg ]; }; }; @@ -880,12 +880,12 @@ in rev = "caf6cbb4c3a32d716dfedc02bc63ec8cf238f632"; hash = "sha256-TOS9+eOEMInAgosB3D9KhahudW2i1ZEH+IXEc0RCpU0="; }; - meta = with lib; { + meta = { homepage = "https://github.com/janoamaral/tokyo-night-tmux"; description = "Clean, dark Tmux theme that celebrates the lights of Downtown Tokyo at night"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ redyf ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ redyf ]; }; }; @@ -1108,12 +1108,12 @@ in hash = "sha256-ITZMu2q80deOf0zqgYJDDgWQHWhJEzZlK6lVFPY4FIw="; }; - meta = with lib; { + meta = { homepage = "https://github.com/tmux-plugins/vim-tmux-focus-events"; description = "Makes FocusGained and FocusLost autocommand events work in vim when using tmux"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ ronanmacf ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ronanmacf ]; }; }; @@ -1140,12 +1140,12 @@ in hash = "sha256-of9E/npEsF1JVc9ttwrbC5WkIAwCNBJAgTfExfj79i4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/xamut/tmux-weather"; description = "Shows weather in the status line"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ jfvillablanca ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ jfvillablanca ]; }; }; @@ -1174,12 +1174,12 @@ in rev = "v${version}"; hash = "sha256-0LIql8as2+OendEHVqR0F3pmQTxC1oqapwhxT+34lJo="; }; - meta = with lib; { + meta = { homepage = "https://github.com/o0th/tmux-nova"; description = "Tmux-nova theme"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ o0th ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ o0th ]; }; }; @@ -1193,12 +1193,12 @@ in tag = "v${version}"; hash = "sha256-tiiM5ETSrceyAyqhYRXjG1qCbjzZ0NJL5GWWbWX7Cbo="; }; - meta = with lib; { + meta = { homepage = "https://github.com/loichyan/tmux-toggle-popup"; description = "Handy plugin to create toggleable popups"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ szaffarano ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ szaffarano ]; }; }; } diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix index 7a8811a5492c..1c4fab7c75ab 100644 --- a/pkgs/misc/uboot/default.nix +++ b/pkgs/misc/uboot/default.nix @@ -146,12 +146,12 @@ let dontStrip = true; meta = - with lib; + { homepage = "https://www.denx.de/wiki/U-Boot/"; description = "Boot loader for embedded systems"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dezgeg lopsided98 ]; diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix b/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix index d327e17dda4a..0f8e5b812fea 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix @@ -17,7 +17,7 @@ mkDerivation { alwaysKeepStatic = true; - meta = with lib; { - license = licenses.cddl; + meta = { + license = lib.licenses.cddl; }; } diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/zfs-data.nix b/pkgs/os-specific/bsd/freebsd/pkgs/zfs-data.nix index 8b13f7ba9d76..371e35ea4fb1 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/zfs-data.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/zfs-data.nix @@ -3,7 +3,7 @@ mkDerivation { path = "cddl/share/zfs/compatibility.d"; extraPaths = [ "sys/contrib/openzfs/cmd/zpool/compatibility.d" ]; - meta = with lib; { - license = licenses.cddl; + meta = { + license = lib.licenses.cddl; }; } diff --git a/pkgs/os-specific/bsd/netbsd/pkgs/mkDerivation.nix b/pkgs/os-specific/bsd/netbsd/pkgs/mkDerivation.nix index e4a0703b8726..8d7d37096b60 100644 --- a/pkgs/os-specific/bsd/netbsd/pkgs/mkDerivation.nix +++ b/pkgs/os-specific/bsd/netbsd/pkgs/mkDerivation.nix @@ -91,12 +91,12 @@ lib.makeOverridable ( strictDeps = true; - meta = with lib; { - maintainers = with maintainers; [ + meta = { + maintainers = with lib.maintainers; [ qyliss ]; - platforms = platforms.unix; - license = licenses.bsd2; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; }; } // lib.optionalAttrs stdenv'.hasCC { diff --git a/pkgs/os-specific/bsd/openbsd/pkgs/compat/package.nix b/pkgs/os-specific/bsd/openbsd/pkgs/compat/package.nix index a6ce50596f92..0705a3624a2d 100644 --- a/pkgs/os-specific/bsd/openbsd/pkgs/compat/package.nix +++ b/pkgs/os-specific/bsd/openbsd/pkgs/compat/package.nix @@ -4,7 +4,7 @@ runCommand "openbsd-compat" { include = ./include; - meta = with lib; { + meta = { description = "Header-only library for running OpenBSD software on Linux"; platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ artemist ]; diff --git a/pkgs/os-specific/bsd/openbsd/pkgs/mkDerivation.nix b/pkgs/os-specific/bsd/openbsd/pkgs/mkDerivation.nix index e3fd1520049a..6a618c88ebaf 100644 --- a/pkgs/os-specific/bsd/openbsd/pkgs/mkDerivation.nix +++ b/pkgs/os-specific/bsd/openbsd/pkgs/mkDerivation.nix @@ -88,10 +88,10 @@ lib.makeOverridable ( strictDeps = true; - meta = with lib; { - maintainers = with maintainers; [ ericson2314 ]; - platforms = platforms.openbsd; - license = licenses.bsd2; + meta = { + maintainers = with lib.maintainers; [ ericson2314 ]; + platforms = lib.platforms.openbsd; + license = lib.licenses.bsd2; }; } // lib.optionalAttrs stdenv'.hasCC { diff --git a/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix index 9aacbce1c790..73068c3fb8ed 100644 --- a/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix +++ b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { cp reattach-to-user-namespace $out/bin/ ''; - meta = with lib; { + meta = { description = "Wrapper that provides access to the Mac OS X pasteboard service"; - license = licenses.bsd2; - maintainers = with maintainers; [ lnl7 ]; - platforms = platforms.darwin; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ lnl7 ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/os-specific/darwin/sigtool/default.nix b/pkgs/os-specific/darwin/sigtool/default.nix index 41dccbfff6c0..f9872578826f 100644 --- a/pkgs/os-specific/darwin/sigtool/default.nix +++ b/pkgs/os-specific/darwin/sigtool/default.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Tool for working with embedded signatures in Mach-O files"; homepage = "https://github.com/thefloweringash/sigtool"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/os-specific/darwin/xcode/default.nix b/pkgs/os-specific/darwin/xcode/default.nix index 3dea1e64bdd8..039a6879369b 100644 --- a/pkgs/os-specific/darwin/xcode/default.nix +++ b/pkgs/os-specific/darwin/xcode/default.nix @@ -42,14 +42,14 @@ let rm -rf Xcode.app ''; }; - meta = with lib; { + meta = { homepage = "https://developer.apple.com/xcode/"; description = "Apple's Xcode developer tools"; maintainers = with lib.maintainers; [ DimitarNestorov ]; - license = licenses.unfree; - platforms = platforms.darwin ++ platforms.linux; + license = lib.licenses.unfree; + platforms = lib.platforms.darwin ++ lib.platforms.linux; hydraPlatforms = [ ]; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; in diff --git a/pkgs/os-specific/linux/acpi-call/default.nix b/pkgs/os-specific/linux/acpi-call/default.nix index 504b713b908d..a49b1155db3a 100644 --- a/pkgs/os-specific/linux/acpi-call/default.nix +++ b/pkgs/os-specific/linux/acpi-call/default.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { install -D -m755 examples/turn_off_gpu.sh $out/bin/test_discrete_video_off.sh ''; - meta = with lib; { - maintainers = with maintainers; [ + meta = { + maintainers = with lib.maintainers; [ raskin mic92 ]; homepage = "https://github.com/nix-community/acpi_call"; - platforms = platforms.linux; + platforms = lib.platforms.linux; description = "Module allowing arbitrary ACPI calls; use case: hybrid video"; mainProgram = "test_discrete_video_off.sh"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/os-specific/linux/akvcam/default.nix b/pkgs/os-specific/linux/akvcam/default.nix index 6b6c50dc1614..04a9e8bf82d3 100644 --- a/pkgs/os-specific/linux/akvcam/default.nix +++ b/pkgs/os-specific/linux/akvcam/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Virtual camera driver for Linux"; homepage = "https://github.com/webcamoid/akvcam"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/os-specific/linux/amdgpu-i2c/default.nix b/pkgs/os-specific/linux/amdgpu-i2c/default.nix index 566aac2e0146..e8457bde06be 100644 --- a/pkgs/os-specific/linux/amdgpu-i2c/default.nix +++ b/pkgs/os-specific/linux/amdgpu-i2c/default.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation { make -C ${KDIR} M=/build/source INSTALL_MOD_PATH="$out" modules_install ''; - meta = with lib; { + meta = { homepage = "https://github.com/twifty/amd-gpu-i2c"; downloadPage = "https://github.com/twifty/amd-gpu-i2c"; description = "Exposes i2c interface to set colors on AMD GPUs"; broken = kernel.kernelOlder "6.1.0" || kernel.isLibre; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ thardin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thardin ]; }; } diff --git a/pkgs/os-specific/linux/asus-ec-sensors/default.nix b/pkgs/os-specific/linux/asus-ec-sensors/default.nix index 4a6337ec6e10..a63e198438c6 100644 --- a/pkgs/os-specific/linux/asus-ec-sensors/default.nix +++ b/pkgs/os-specific/linux/asus-ec-sensors/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { install asus-ec-sensors.ko -Dm444 -t ${placeholder "out"}/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon ''; - meta = with lib; { + meta = { description = "Linux HWMON sensors driver for ASUS motherboards to read sensor data from the embedded controller"; homepage = "https://github.com/zeule/asus-ec-sensors"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ nickhu ]; + maintainers = with lib.maintainers; [ nickhu ]; broken = kernel.kernelOlder "5.11"; }; } diff --git a/pkgs/os-specific/linux/bbswitch/default.nix b/pkgs/os-specific/linux/bbswitch/default.nix index b42cc6660569..7b0a04c1e52b 100644 --- a/pkgs/os-specific/linux/bbswitch/default.nix +++ b/pkgs/os-specific/linux/bbswitch/default.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation { chmod +x $out/bin/discrete_vga_poweroff $out/bin/discrete_vga_poweron ''; - meta = with lib; { + meta = { description = "Module for powering off hybrid GPUs"; platforms = [ "x86_64-linux" @@ -70,6 +70,6 @@ stdenv.mkDerivation { ]; homepage = "https://github.com/Bumblebee-Project/bbswitch"; maintainers = [ ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/os-specific/linux/bionic-prebuilt/default.nix b/pkgs/os-specific/linux/bionic-prebuilt/default.nix index 9830f07266fd..a647ea98db36 100644 --- a/pkgs/os-specific/linux/bionic-prebuilt/default.nix +++ b/pkgs/os-specific/linux/bionic-prebuilt/default.nix @@ -151,11 +151,11 @@ stdenvNoCC.mkDerivation rec { ]; passthru.linuxHeaders = kernelHeaders; - meta = with lib; { + meta = { description = "Android libc implementation"; homepage = "https://android.googlesource.com/platform/bionic/"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ s1341 ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ s1341 ]; }; } diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix index be5c25312345..1142e8c1fc30 100644 --- a/pkgs/os-specific/linux/busybox/default.nix +++ b/pkgs/os-specific/linux/busybox/default.nix @@ -218,16 +218,16 @@ stdenv.mkDerivation rec { passthru.shellPath = "/bin/ash"; - meta = with lib; { + meta = { description = "Tiny versions of common UNIX utilities in a single small executable"; homepage = "https://busybox.net/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "busybox"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ TethysSvensson qyliss ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; priority = 15; # below systemd (halt, init, poweroff, reboot) and coreutils }; } diff --git a/pkgs/os-specific/linux/can-isotp/default.nix b/pkgs/os-specific/linux/can-isotp/default.nix index b01cb541f446..d700de7a96d5 100644 --- a/pkgs/os-specific/linux/can-isotp/default.nix +++ b/pkgs/os-specific/linux/can-isotp/default.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { nativeBuildInputs = kernel.moduleBuildDependencies; - meta = with lib; { + meta = { broken = kernel.kernelAtLeast "5.16"; description = "Kernel module for ISO-TP (ISO 15765-2)"; homepage = "https://github.com/hartkopp/can-isotp"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.evck ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.evck ]; }; } diff --git a/pkgs/os-specific/linux/ch9344/default.nix b/pkgs/os-specific/linux/ch9344/default.nix index 29436d3a7f0a..63d9223d6c9d 100644 --- a/pkgs/os-specific/linux/ch9344/default.nix +++ b/pkgs/os-specific/linux/ch9344/default.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.wch-ic.com/"; downloadPage = "https://github.com/WCHSoftGroup/ch9344ser_linux"; description = "WCH CH9344/CH348 UART driver"; longDescription = '' A kernel module for WinChipHead CH9344/CH348 USB To Multi Serial Ports controller. ''; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ RadxaYuntian ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ RadxaYuntian ]; }; } diff --git a/pkgs/os-specific/linux/cpupower-gui/default.nix b/pkgs/os-specific/linux/cpupower-gui/default.nix index f29cce5b8f19..0711f7e77b80 100644 --- a/pkgs/os-specific/linux/cpupower-gui/default.nix +++ b/pkgs/os-specific/linux/cpupower-gui/default.nix @@ -99,11 +99,11 @@ buildPythonApplication rec { wrapPythonProgramsIn $out/lib "$out $propagatedBuildInputs" ''; - meta = with lib; { + meta = { description = "Change the frequency limits of your cpu and its governor"; mainProgram = "cpupower-gui"; homepage = "https://github.com/vagnum08/cpupower-gui/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ unode ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ unode ]; }; } diff --git a/pkgs/os-specific/linux/cpupower/default.nix b/pkgs/os-specific/linux/cpupower/default.nix index e439be715d9a..290cda2d7396 100644 --- a/pkgs/os-specific/linux/cpupower/default.nix +++ b/pkgs/os-specific/linux/cpupower/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Tool to examine and tune power saving features"; homepage = "https://www.kernel.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "cpupower"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/ddcci/default.nix b/pkgs/os-specific/linux/ddcci/default.nix index 29f7fe8b5d02..9e0fbb6894bd 100644 --- a/pkgs/os-specific/linux/ddcci/default.nix +++ b/pkgs/os-specific/linux/ddcci/default.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { "INCLUDEDIR=$(out)/include" ]; - meta = with lib; { + meta = { description = "Kernel module driver for DDC/CI monitors"; homepage = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ kiike ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ kiike ]; + platforms = lib.platforms.linux; broken = kernel.kernelOlder "5.1"; }; } diff --git a/pkgs/os-specific/linux/decklink/default.nix b/pkgs/os-specific/linux/decklink/default.nix index 5cb0d8ad6991..eb77f2f068ca 100644 --- a/pkgs/os-specific/linux/decklink/default.nix +++ b/pkgs/os-specific/linux/decklink/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.blackmagicdesign.com/support/family/capture-and-playback"; - maintainers = [ maintainers.naxdy ]; - license = licenses.unfree; + maintainers = [ lib.maintainers.naxdy ]; + license = lib.licenses.unfree; description = "Kernel module for the Blackmagic Design Decklink cards"; sourceProvenance = with lib.sourceTypes; [ binaryFirmware ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/os-specific/linux/digimend/default.nix b/pkgs/os-specific/linux/digimend/default.nix index 839f524fd526..c5292d70cb1b 100644 --- a/pkgs/os-specific/linux/digimend/default.nix +++ b/pkgs/os-specific/linux/digimend/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { "INSTALL_MOD_PATH=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "DIGImend graphics tablet drivers for the Linux kernel"; homepage = "https://digimend.github.io/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ PuercoPop ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ PuercoPop ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/dpdk-kmods/default.nix b/pkgs/os-specific/linux/dpdk-kmods/default.nix index 72938768fb01..034d0545fc58 100644 --- a/pkgs/os-specific/linux/dpdk-kmods/default.nix +++ b/pkgs/os-specific/linux/dpdk-kmods/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Kernel modules for DPDK"; homepage = "https://git.dpdk.org/dpdk-kmods/"; - license = licenses.gpl2Only; - maintainers = [ maintainers.mic92 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.mic92 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/drbd/driver.nix b/pkgs/os-specific/linux/drbd/driver.nix index cb0d86eda25e..1c6fe2cad896 100644 --- a/pkgs/os-specific/linux/drbd/driver.nix +++ b/pkgs/os-specific/linux/drbd/driver.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.drbd-driver = nixosTests.drbd-driver; - meta = with lib; { + meta = { homepage = "https://github.com/LINBIT/drbd"; description = "LINBIT DRBD kernel module"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ birkb ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ birkb ]; longDescription = '' DRBD is a software-based, shared-nothing, replicated storage solution mirroring the content of block devices (hard disks, partitions, logical volumes, and so on) between hosts. diff --git a/pkgs/os-specific/linux/drbd/utils.nix b/pkgs/os-specific/linux/drbd/utils.nix index c29891a60215..7d16146e4244 100644 --- a/pkgs/os-specific/linux/drbd/utils.nix +++ b/pkgs/os-specific/linux/drbd/utils.nix @@ -116,12 +116,12 @@ stdenv.mkDerivation rec { passthru.tests.drbd = nixosTests.drbd; - meta = with lib; { + meta = { homepage = "https://linbit.com/drbd/"; description = "Distributed Replicated Block Device, a distributed storage system for Linux (userspace utilities)"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ryantm astro birkb diff --git a/pkgs/os-specific/linux/ena/default.nix b/pkgs/os-specific/linux/ena/default.nix index 3ec04247df66..6957307b89b0 100644 --- a/pkgs/os-specific/linux/ena/default.nix +++ b/pkgs/os-specific/linux/ena/default.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation { inherit rev-prefix; }; - meta = with lib; { + meta = { description = "Amazon Elastic Network Adapter (ENA) driver for Linux"; homepage = "https://github.com/amzn/amzn-drivers"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sielicki arianvp ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/error-inject/default.nix b/pkgs/os-specific/linux/error-inject/default.nix index 3617e22d79b8..b7c16ee49b05 100644 --- a/pkgs/os-specific/linux/error-inject/default.nix +++ b/pkgs/os-specific/linux/error-inject/default.nix @@ -34,10 +34,10 @@ cp test/* $out/test/. ''; - meta = with lib; { + meta = { description = "MCE error injection tool"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; }; @@ -67,10 +67,10 @@ cp examples/* $out/examples/. ''; - meta = with lib; { + meta = { description = "PCIE AER error injection tool"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; }; diff --git a/pkgs/os-specific/linux/facetimehd/default.nix b/pkgs/os-specific/linux/facetimehd/default.nix index c766744fa706..4b2d4758caa9 100644 --- a/pkgs/os-specific/linux/facetimehd/default.nix +++ b/pkgs/os-specific/linux/facetimehd/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ]; - meta = with lib; { + meta = { homepage = "https://github.com/patjak/bcwc_pcie"; description = "Linux driver for the Facetime HD (Broadcom 1570) PCIe webcam"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ womfoo grahamc kraem diff --git a/pkgs/os-specific/linux/fanout/default.nix b/pkgs/os-specific/linux/fanout/default.nix index 701f90ac7125..878ee59bf811 100644 --- a/pkgs/os-specific/linux/fanout/default.nix +++ b/pkgs/os-specific/linux/fanout/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { passthru.tests = { inherit (nixosTests) fanout; }; - meta = with lib; { + meta = { description = "Kernel-based publish-subscribe system"; homepage = "https://github.com/bob-linuxtoys/fanout"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ therishidesai ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ therishidesai ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/ffado/default.nix b/pkgs/os-specific/linux/ffado/default.nix index 50c9250293c1..c91c014045b2 100644 --- a/pkgs/os-specific/linux/ffado/default.nix +++ b/pkgs/os-specific/linux/ffado/default.nix @@ -121,13 +121,13 @@ stdenv.mkDerivation rec { wrapQtApp "$bin/bin/ffado-mixer" ''; - meta = with lib; { + meta = { homepage = "http://www.ffado.org"; description = "FireWire audio drivers"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ michojel ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix b/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix index 10ca576bd6ec..b85f5f60385c 100644 --- a/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix +++ b/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation rec { b43-fwcutter -w $out/lib/firmware *.wl_apsta.o ''; - meta = with lib; { + meta = { description = "Firmware for cards supported by the b43 kernel module"; homepage = "https://wireless.wiki.kernel.org/en/users/drivers/b43"; downloadPage = "http://www.lwfinger.com/b43-firmware"; - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix b/pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix index b602c7532481..f1e8e8e465f7 100644 --- a/pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix +++ b/pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix @@ -53,10 +53,10 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Firmware related ARM stubs for the Raspberry Pi"; homepage = "https://github.com/raspberrypi/tools"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "armv6l-linux" "armv7l-linux" diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix index 3844d9ca1716..2307dc6a8b82 100644 --- a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix +++ b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation rec { dontBuild = true; dontFixup = true; - meta = with lib; { + meta = { description = "Firmware for the Raspberry Pi board"; homepage = "https://github.com/raspberrypi/firmware"; - license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom - maintainers = with maintainers; [ dezgeg ]; + license = lib.licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom + maintainers = with lib.maintainers; [ dezgeg ]; # Hash mismatch on source, mystery. # Maybe due to https://github.com/NixOS/nix/issues/847 broken = stdenvNoCC.hostPlatform.isDarwin; diff --git a/pkgs/os-specific/linux/framework-laptop-kmod/default.nix b/pkgs/os-specific/linux/framework-laptop-kmod/default.nix index 6f3edcd7d3a9..e7580c388fec 100644 --- a/pkgs/os-specific/linux/framework-laptop-kmod/default.nix +++ b/pkgs/os-specific/linux/framework-laptop-kmod/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Kernel module that exposes the Framework Laptop (13, 16)'s battery charge limit and LEDs to userspace"; homepage = "https://github.com/DHowett/framework-laptop-kmod"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ gaykitty ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ gaykitty ]; + platforms = lib.platforms.linux; broken = lib.versionOlder kernel.version "6.1"; }; } diff --git a/pkgs/os-specific/linux/freefall/default.nix b/pkgs/os-specific/linux/freefall/default.nix index f195da103289..e5e9d03c6ac2 100644 --- a/pkgs/os-specific/linux/freefall/default.nix +++ b/pkgs/os-specific/linux/freefall/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { inherit (kernel.meta) homepage license; description = "Free-fall protection for spinning HP/Dell laptop hard drives"; @@ -33,6 +33,6 @@ stdenv.mkDerivation { disk heads, and an accelerometer device. It has no effect on SSD devices! ''; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/freeipa/default.nix b/pkgs/os-specific/linux/freeipa/default.nix index 1cc4f2109f5f..c99bd7e9ddc9 100644 --- a/pkgs/os-specific/linux/freeipa/default.nix +++ b/pkgs/os-specific/linux/freeipa/default.nix @@ -174,7 +174,7 @@ stdenv.mkDerivation rec { versionCheckProgramArg = "--version"; doInstallCheck = true; - meta = with lib; { + meta = { description = "Identity, Policy and Audit system"; longDescription = '' IPA is an integrated solution to provide centrally managed Identity (users, @@ -184,12 +184,12 @@ stdenv.mkDerivation rec { and integration with Active Directory based infrastructures (Trusts). ''; homepage = "https://www.freeipa.org/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ s1341 benley ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ipa"; }; } diff --git a/pkgs/os-specific/linux/fwts/module.nix b/pkgs/os-specific/linux/fwts/module.nix index 922abd9019ec..0483fa2658d0 100644 --- a/pkgs/os-specific/linux/fwts/module.nix +++ b/pkgs/os-specific/linux/fwts/module.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation (finalAttrs: { "INSTALL_MOD_PATH=${placeholder "out"}" ]; - meta = with lib; { + meta = { inherit (fwts.meta) homepage license; description = fwts.meta.description + "(efi-runtime kernel module)"; - maintainers = with maintainers; [ dtzWill ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ dtzWill ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/os-specific/linux/gasket/default.nix b/pkgs/os-specific/linux/gasket/default.nix index a36bac89657d..7091e9cedcd9 100644 --- a/pkgs/os-specific/linux/gasket/default.nix +++ b/pkgs/os-specific/linux/gasket/default.nix @@ -58,9 +58,9 @@ stdenv.mkDerivation { meta = with lib; { description = "Coral Gasket Driver allows usage of the Coral EdgeTPU on Linux systems"; homepage = "https://github.com/google/gasket-driver"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ lib.maintainers.kylehendricks ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = versionOlder kernel.version "5.15"; }; } diff --git a/pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix b/pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix index d621bf282f6f..3db979bee6d9 100644 --- a/pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix +++ b/pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { install -D {,$out/${kerneldir}/extra/}gcadapter_oc.ko ''; - meta = with lib; { + meta = { description = "Kernel module for overclocking the Nintendo Wii U/Mayflash GameCube adapter"; homepage = "https://github.com/HannesMann/gcadapter-oc-kmod"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ r-burns ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ r-burns ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/hid-ite8291r3/default.nix b/pkgs/os-specific/linux/hid-ite8291r3/default.nix index ebb6dad72708..1c062bd8a6d6 100644 --- a/pkgs/os-specific/linux/hid-ite8291r3/default.nix +++ b/pkgs/os-specific/linux/hid-ite8291r3/default.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Linux driver for the ITE 8291 RGB keyboard backlight controller"; homepage = "https://github.com/pobrn/hid-ite8291r3/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ aacebedo ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ aacebedo ]; + platforms = lib.platforms.linux; broken = kernel.kernelOlder "5.9"; }; } diff --git a/pkgs/os-specific/linux/hid-t150/default.nix b/pkgs/os-specific/linux/hid-t150/default.nix index dd96c044c99f..5e6a50531af1 100644 --- a/pkgs/os-specific/linux/hid-t150/default.nix +++ b/pkgs/os-specific/linux/hid-t150/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { make -C ${kernel.dev}/lib/modules/${kernel.modDirVersion}/build M=$(pwd) modules_install $makeFlags ''; - meta = with lib; { + meta = { description = "Linux kernel driver for Thrustmaster T150 and TMX Force Feedback wheel"; homepage = "https://github.com/scarburato/t150_driver"; - license = licenses.gpl2; - maintainers = [ maintainers.dbalan ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.dbalan ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/hid-tmff2/default.nix b/pkgs/os-specific/linux/hid-tmff2/default.nix index 620bd9f3c447..ce3fa8536b42 100644 --- a/pkgs/os-specific/linux/hid-tmff2/default.nix +++ b/pkgs/os-specific/linux/hid-tmff2/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { postPatch = "sed -i '/depmod -A/d' Makefile"; - meta = with lib; { + meta = { description = "Linux kernel module for Thrustmaster T300RS, T248 and TX(experimental)"; homepage = "https://github.com/Kimplul/hid-tmff2"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.rayslash ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.rayslash ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/hyperv-daemons/default.nix b/pkgs/os-specific/linux/hyperv-daemons/default.nix index dd458e973f5a..4637b5cae272 100644 --- a/pkgs/os-specific/linux/hyperv-daemons/default.nix +++ b/pkgs/os-specific/linux/hyperv-daemons/default.nix @@ -119,7 +119,7 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Integration Services for running NixOS under HyperV"; mainProgram = "lsvmbus"; longDescription = '' @@ -130,7 +130,7 @@ stdenv.mkDerivation { we use that name here. ''; homepage = "https://kernel.org"; - maintainers = with maintainers; [ peterhoeg ]; + maintainers = with lib.maintainers; [ peterhoeg ]; platforms = kernel.meta.platforms; }; } diff --git a/pkgs/os-specific/linux/i7z/default.nix b/pkgs/os-specific/linux/i7z/default.nix index 904e459e3351..c7f26a82386b 100644 --- a/pkgs/os-specific/linux/i7z/default.nix +++ b/pkgs/os-specific/linux/i7z/default.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { install -Dm755 GUI/i7z_GUI $out/bin/i7z-gui ''; - meta = with lib; { + meta = { description = "Better i7 (and now i3, i5) reporting tool for Linux"; mainProgram = "i7z"; homepage = "https://github.com/DimitryAndric/i7z"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; # broken on ARM platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/os-specific/linux/iio-utils/default.nix b/pkgs/os-specific/linux/iio-utils/default.nix index b2d8a8a14c97..7974733b5914 100644 --- a/pkgs/os-specific/linux/iio-utils/default.nix +++ b/pkgs/os-specific/linux/iio-utils/default.nix @@ -14,10 +14,10 @@ stdenv.mkDerivation { cd tools/iio ''; - meta = with lib; { + meta = { description = "Userspace tool for interacting with Linux IIO"; homepage = "https://www.kernel.org/"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/intel-speed-select/default.nix b/pkgs/os-specific/linux/intel-speed-select/default.nix index 57b8284326f9..1ea8119c7990 100644 --- a/pkgs/os-specific/linux/intel-speed-select/default.nix +++ b/pkgs/os-specific/linux/intel-speed-select/default.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation { sed -i 's,/usr,,g' Makefile ''; - meta = with lib; { + meta = { description = "Tool to enumerate and control the Intel Speed Select Technology features"; mainProgram = "intel-speed-select"; homepage = "https://www.kernel.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/os-specific/linux/iptables/default.nix b/pkgs/os-specific/linux/iptables/default.nix index d9f2ee61c266..7c8c33c999cb 100644 --- a/pkgs/os-specific/linux/iptables/default.nix +++ b/pkgs/os-specific/linux/iptables/default.nix @@ -88,13 +88,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Program to configure the Linux IP packet filtering ruleset"; homepage = "https://www.netfilter.org/projects/iptables/index.html"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "iptables"; - maintainers = with maintainers; [ fpletz ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fpletz ]; + license = lib.licenses.gpl2Plus; downloadPage = "https://www.netfilter.org/projects/iptables/files/"; }; } diff --git a/pkgs/os-specific/linux/iputils/default.nix b/pkgs/os-specific/linux/iputils/default.nix index a8bab01405aa..ae246f9c7b23 100644 --- a/pkgs/os-specific/linux/iputils/default.nix +++ b/pkgs/os-specific/linux/iputils/default.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { homepage = "https://github.com/iputils/iputils"; changelog = "https://github.com/iputils/iputils/releases/tag/${version}"; description = "Set of small useful utilities for Linux networking"; @@ -90,11 +90,11 @@ stdenv.mkDerivation rec { - ping: send ICMP ECHO_REQUEST to network hosts - tracepath: traces path to a network host discovering MTU along this path ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus bsd3 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/os-specific/linux/isgx/default.nix b/pkgs/os-specific/linux/isgx/default.nix index a883f4c879d9..332e682bee2b 100644 --- a/pkgs/os-specific/linux/isgx/default.nix +++ b/pkgs/os-specific/linux/isgx/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Intel SGX Linux Driver"; longDescription = '' The linux-sgx-driver project (isgx) hosts an out-of-tree driver @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { based attestation on the platforms without Flexible Launch Control. ''; homepage = "https://github.com/intel/linux-sgx-driver"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 # OR gpl2Only ]; diff --git a/pkgs/os-specific/linux/it87/default.nix b/pkgs/os-specific/linux/it87/default.nix index a448f7600756..a445e84df613 100644 --- a/pkgs/os-specific/linux/it87/default.nix +++ b/pkgs/os-specific/linux/it87/default.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation rec { "MODDESTDIR=$(out)/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon" ]; - meta = with lib; { + meta = { description = "Patched module for IT87xx superio chip sensors support"; homepage = "https://github.com/frankcrawford/it87"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" ]; - teams = [ teams.lumiguide ]; + teams = [ lib.teams.lumiguide ]; }; } diff --git a/pkgs/os-specific/linux/ithc/default.nix b/pkgs/os-specific/linux/ithc/default.nix index e9dce7825361..cebbf5ded939 100644 --- a/pkgs/os-specific/linux/ithc/default.nix +++ b/pkgs/os-specific/linux/ithc/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Linux driver for Intel Touch Host Controller"; homepage = "https://github.com/quo/ithc-linux"; - license = licenses.publicDomain; - maintainers = with maintainers; [ aacebedo ]; - platforms = platforms.linux; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ aacebedo ]; + platforms = lib.platforms.linux; broken = kernel.kernelOlder "5.9" || kernel.kernelAtLeast "6.10"; }; } diff --git a/pkgs/os-specific/linux/ixgbevf/default.nix b/pkgs/os-specific/linux/ixgbevf/default.nix index 635c6463854c..c69dd60f3c6a 100644 --- a/pkgs/os-specific/linux/ixgbevf/default.nix +++ b/pkgs/os-specific/linux/ixgbevf/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Intel 82599 Virtual Function Driver"; homepage = "https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; priority = 20; # kernels ship ixgbevf driver for a long time already, maybe switch to a newest kernel? broken = versionAtLeast kernel.version "5.2"; diff --git a/pkgs/os-specific/linux/kmod/default.nix b/pkgs/os-specific/linux/kmod/default.nix index 5cc3d51987ec..f539ceca14e3 100644 --- a/pkgs/os-specific/linux/kmod/default.nix +++ b/pkgs/os-specific/linux/kmod/default.nix @@ -110,7 +110,7 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Tools for loading and managing Linux kernel modules"; longDescription = '' kmod is a set of tools to handle common tasks with Linux kernel modules @@ -121,11 +121,11 @@ stdenv.mkDerivation rec { homepage = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/"; downloadPage = "https://www.kernel.org/pub/linux/utils/kernel/kmod/"; changelog = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/plain/NEWS?h=v${version}"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus gpl2Plus ]; # GPLv2+ for tools - platforms = platforms.linux; - maintainers = with maintainers; [ artturin ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/os-specific/linux/kvmfr/default.nix b/pkgs/os-specific/linux/kvmfr/default.nix index 6db5f935593b..2fe5f55a4971 100644 --- a/pkgs/os-specific/linux/kvmfr/default.nix +++ b/pkgs/os-specific/linux/kvmfr/default.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation { install -D kvmfr.ko -t "$out/lib/modules/${kernel.modDirVersion}/kernel/drivers/misc/" ''; - meta = with lib; { + meta = { description = "Optional kernel module for LookingGlass"; longDescription = '' This kernel module implements a basic interface to the IVSHMEM device for LookingGlass when using LookingGlass in VM->VM mode Additionally, in VM->host mode, it can be used to generate a shared memory device on the host machine that supports dmabuf ''; homepage = "https://github.com/gnif/LookingGlass"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ j-brn ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ j-brn ]; platforms = [ "x86_64-linux" ]; broken = kernel.kernelOlder "5.3"; }; diff --git a/pkgs/os-specific/linux/libbpf/0.x.nix b/pkgs/os-specific/linux/libbpf/0.x.nix index 603fded29262..d5203c070c07 100644 --- a/pkgs/os-specific/linux/libbpf/0.x.nix +++ b/pkgs/os-specific/linux/libbpf/0.x.nix @@ -51,19 +51,19 @@ stdenv.mkDerivation rec { # outputs = [ "out" "dev" ]; - meta = with lib; { + meta = { description = "Upstream mirror of libbpf"; homepage = "https://github.com/libbpf/libbpf"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 # or bsd2 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice vcunat saschagrunert martinetd ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/libbpf/default.nix b/pkgs/os-specific/linux/libbpf/default.nix index 0f8a08b25789..86c256760210 100644 --- a/pkgs/os-specific/linux/libbpf/default.nix +++ b/pkgs/os-specific/linux/libbpf/default.nix @@ -59,19 +59,19 @@ stdenv.mkDerivation rec { # outputs = [ "out" "dev" ]; - meta = with lib; { + meta = { description = "Library for loading eBPF programs and reading and manipulating eBPF objects from user-space"; homepage = "https://github.com/libbpf/libbpf"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 # or bsd2 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice vcunat saschagrunert martinetd ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/liquidtux/default.nix b/pkgs/os-specific/linux/liquidtux/default.nix index ee5afc3dfb04..5b29487d4112 100644 --- a/pkgs/os-specific/linux/liquidtux/default.nix +++ b/pkgs/os-specific/linux/liquidtux/default.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux kernel hwmon drivers for AIO liquid coolers and other devices"; homepage = "https://github.com/liquidctl/liquidtux"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ nickhu ]; + maintainers = with lib.maintainers; [ nickhu ]; broken = lib.versionOlder kernel.version "5.10"; }; } diff --git a/pkgs/os-specific/linux/lttng-modules/default.nix b/pkgs/os-specific/linux/lttng-modules/default.nix index 4b7fa8e95f8a..6a8d645247aa 100644 --- a/pkgs/os-specific/linux/lttng-modules/default.nix +++ b/pkgs/os-specific/linux/lttng-modules/default.nix @@ -32,16 +32,16 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Linux kernel modules for LTTng tracing"; homepage = "https://lttng.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Only gpl2Only mit ]; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; broken = (lib.versions.majorMinor kernel.modDirVersion) == "5.10" || (lib.versions.majorMinor kernel.modDirVersion) == "5.4"; diff --git a/pkgs/os-specific/linux/lvm2/common.nix b/pkgs/os-specific/linux/lvm2/common.nix index c357a3e7ebdc..b55d436ffcc4 100644 --- a/pkgs/os-specific/linux/lvm2/common.nix +++ b/pkgs/os-specific/linux/lvm2/common.nix @@ -232,16 +232,16 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "http://sourceware.org/lvm2/"; description = "Tools to support Logical Volume Management (LVM) on Linux"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl2Only bsd2 lgpl21 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raskin ajs124 ]; diff --git a/pkgs/os-specific/linux/mba6x_bl/default.nix b/pkgs/os-specific/linux/mba6x_bl/default.nix index 46c149854c47..550c99a7e3ef 100644 --- a/pkgs/os-specific/linux/mba6x_bl/default.nix +++ b/pkgs/os-specific/linux/mba6x_bl/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { "INSTALL_MOD_PATH=$(out)" ]; - meta = with lib; { + meta = { description = "MacBook Air 6,1 and 6,2 (mid 2013) backlight driver"; homepage = "https://github.com/patjak/mba6x_bl"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.simonvandel ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.simonvandel ]; }; } diff --git a/pkgs/os-specific/linux/mbp-modules/mbp2018-bridge-drv/default.nix b/pkgs/os-specific/linux/mbp-modules/mbp2018-bridge-drv/default.nix index 8fa84fd95dba..0800a22c7dbe 100644 --- a/pkgs/os-specific/linux/mbp-modules/mbp2018-bridge-drv/default.nix +++ b/pkgs/os-specific/linux/mbp-modules/mbp2018-bridge-drv/default.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation { INSTALL_MOD_PATH=$out M=$(pwd) modules_install $makeFlags ''; - meta = with lib; { + meta = { description = "Driver for MacBook models 2018 and newer, which makes the keyboard, mouse and audio output work"; longDescription = '' A driver for MacBook models 2018 and newer, implementing the VHCI (required for mouse/keyboard/etc.) and audio functionality. ''; homepage = "https://github.com/MCMrARM/mbp2018-bridge-drv"; license = lib.licenses.gpl2Only; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ lib.maintainers.hlolli ]; broken = kernel.kernelOlder "5.4"; }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix b/pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix index df180c0646eb..037c3254edc7 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix @@ -125,12 +125,12 @@ kaem.runCommand "${pname}-${version}" mkdir ''${out} ''; - meta = with lib; { + meta = { description = "GNU Bourne-Again Shell, the de facto standard shell on Linux"; homepage = "https://www.gnu.org/software/bash"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix index 4b8dd891b1e3..758490eaf32c 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix @@ -93,12 +93,12 @@ bootBash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU Bourne-Again Shell, the de facto standard shell on Linux"; homepage = "https://www.gnu.org/software/bash"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/binutils/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/binutils/default.nix index a5430d219890..8cee29b10634 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/binutils/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/binutils/default.nix @@ -74,12 +74,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "Tools for manipulating binaries (linker, assembler, etc.)"; homepage = "https://www.gnu.org/software/binutils"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/bzip2/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/bzip2/default.nix index 7ccfbd406535..e2401f2dcdf2 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/bzip2/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/bzip2/default.nix @@ -34,12 +34,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "High-quality data compression program"; homepage = "https://www.sourceware.org/bzip2"; - license = licenses.bsdOriginal; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.bsdOriginal; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix index 40601a8483e5..2ddcbd247434 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix @@ -81,12 +81,12 @@ kaem.runCommand "${pname}-${version}" gnupatch ]; - meta = with lib; { + meta = { description = "GNU Core Utilities"; homepage = "https://www.gnu.org/software/coreutils"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix index 8753b67db489..3606e378c27b 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix @@ -52,12 +52,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU Core Utilities"; homepage = "https://www.gnu.org/software/coreutils"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/diffutils/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/diffutils/default.nix index c74d4b07a2ad..cfe9e81fbcf2 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/diffutils/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/diffutils/default.nix @@ -43,12 +43,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "Commands for showing the differences between files (diff, cmp, etc.)"; homepage = "https://www.gnu.org/software/diffutils/diffutils.html"; - license = licenses.gpl3Only; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/findutils/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/findutils/default.nix index 3ba4d39dd18a..84590519a36f 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/findutils/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/findutils/default.nix @@ -42,12 +42,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU Find Utilities, the basic directory searching utilities of the GNU operating system"; homepage = "https://www.gnu.org/software/findutils"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix b/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix index 35c12b8bfa32..866d43df8b0b 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix @@ -1,11 +1,11 @@ { lib }: { - meta = with lib; { + meta = { description = "GNU implementation of the Awk programming language"; homepage = "https://www.gnu.org/software/gawk"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.cxx.nix b/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.cxx.nix index f4bc0d4784c3..cb778f0ddc40 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.cxx.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.cxx.nix @@ -96,12 +96,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU Compiler Collection, version ${version}"; homepage = "https://gcc.gnu.org"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; mainProgram = "gcc"; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.nix b/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.nix index 0acddf7e042c..2335cf80057e 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gcc/4.6.nix @@ -78,12 +78,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU Compiler Collection, version ${version}"; homepage = "https://gcc.gnu.org"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; mainProgram = "gcc"; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gcc/8.nix b/pkgs/os-specific/linux/minimal-bootstrap/gcc/8.nix index 8f996d7dea22..683aaeb24315 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gcc/8.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gcc/8.nix @@ -95,12 +95,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU Compiler Collection, version ${version}"; homepage = "https://gcc.gnu.org"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; mainProgram = "gcc"; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gcc/latest.nix b/pkgs/os-specific/linux/minimal-bootstrap/gcc/latest.nix index 262232d669e5..f028819e8190 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gcc/latest.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gcc/latest.nix @@ -94,12 +94,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU Compiler Collection, version ${version}"; homepage = "https://gcc.gnu.org"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; mainProgram = "gcc"; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnugrep/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnugrep/default.nix index fb73a3216e73..8485f078179c 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnugrep/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnugrep/default.nix @@ -37,13 +37,13 @@ bash.runCommand "${pname}-${version}" mkdir ''${out} ''; - meta = with lib; { + meta = { description = "GNU implementation of the Unix grep command"; homepage = "https://www.gnu.org/software/grep"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "grep"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnumake/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnumake/default.nix index b3e0208476d6..04690844d911 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnumake/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnumake/default.nix @@ -163,13 +163,13 @@ kaem.runCommand "${pname}-${version}" gnupatch ]; - meta = with lib; { + meta = { description = "Tool to control the generation of non-source files from sources"; homepage = "https://www.gnu.org/software/make"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "make"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnumake/musl.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnumake/musl.nix index 69d7bfece73c..b5d18e61e156 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnumake/musl.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnumake/musl.nix @@ -53,13 +53,13 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "Tool to control the generation of non-source files from sources"; homepage = "https://www.gnu.org/software/make"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "make"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnupatch/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnupatch/default.nix index 8e18b829fc59..d034ccbad4b1 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnupatch/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnupatch/default.nix @@ -74,13 +74,13 @@ kaem.runCommand "${pname}-${version}" nativeBuildInputs = [ tinycc.compiler ]; - meta = with lib; { + meta = { description = "GNU Patch, a program to apply differences to files"; homepage = "https://www.gnu.org/software/patch"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "patch"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnused/common.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnused/common.nix index f9e776854ed0..f4aeb3e40f39 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnused/common.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnused/common.nix @@ -1,12 +1,12 @@ { lib }: { - meta = with lib; { + meta = { description = "GNU sed, a batch stream editor"; homepage = "https://www.gnu.org/software/sed"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "sed"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnutar/latest.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnutar/latest.nix index e31f977f5e3b..094e1c1250d1 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnutar/latest.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnutar/latest.nix @@ -46,13 +46,13 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU implementation of the `tar' archiver"; homepage = "https://www.gnu.org/software/tar"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "tar"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnutar/mes.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnutar/mes.nix index 0296da13e3de..96df8b509185 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnutar/mes.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnutar/mes.nix @@ -37,13 +37,13 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU implementation of the `tar' archiver"; homepage = "https://www.gnu.org/software/tar"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "tar"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnutar/musl.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnutar/musl.nix index 3e3829a7dd3e..97900363d6c7 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnutar/musl.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnutar/musl.nix @@ -38,13 +38,13 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU implementation of the `tar' archiver"; homepage = "https://www.gnu.org/software/tar"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "tar"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gzip/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gzip/default.nix index 950968bc178b..7b0d5cfba17c 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gzip/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gzip/default.nix @@ -34,12 +34,12 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "GNU zip compression program"; homepage = "https://www.gnu.org/software/gzip"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/heirloom-devtools/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/heirloom-devtools/default.nix index 234240ea7cbb..49ea1e71a730 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/heirloom-devtools/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/heirloom-devtools/default.nix @@ -44,16 +44,16 @@ kaem.runCommand "${pname}-${version}" coreutils ]; - meta = with lib; { + meta = { description = "Portable yacc and lex derived from OpenSolaris"; homepage = "https://heirloom.sourceforge.net/devtools.html"; - license = with licenses; [ + license = with lib.licenses; [ cddl bsdOriginalUC caldera ]; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/heirloom/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/heirloom/default.nix index 7e1f45be50e1..ef6451717501 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/heirloom/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/heirloom/default.nix @@ -93,10 +93,10 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "Heirloom Toolchest is a collection of standard Unix utilities"; homepage = "https://heirloom.sourceforge.net/tools.html"; - license = with licenses; [ + license = with lib.licenses; [ # All licenses according to LICENSE/ zlib caldera @@ -108,8 +108,8 @@ bash.runCommand "${pname}-${version}" lpl-102 info-zip ]; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/linux-headers/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/linux-headers/default.nix index 851b164afa16..255e6c1ee62a 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/linux-headers/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/linux-headers/default.nix @@ -33,11 +33,11 @@ bash.runCommand "${pname}-${version}" xz ]; - meta = with lib; { + meta = { description = "Header files and scripts for Linux kernel"; - license = licenses.gpl2Only; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.linux; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/ln-boot/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/ln-boot/default.nix index 4cd211f6817c..05f4a2f3adba 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/ln-boot/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/ln-boot/default.nix @@ -13,12 +13,12 @@ kaem.runCommand "${pname}-${version}" { inherit pname version; - meta = with lib; { + meta = { description = "Basic tool for creating symbolic links"; - license = licenses.mit; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.mit; + teams = [ lib.teams.minimal-bootstrap ]; mainProgram = "ln"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix index bbec9847013f..f704204f365d 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix @@ -38,11 +38,11 @@ let # add symlink() to libc+tcc so we can use it in ln-boot libc_tcc_SOURCES = sources.libc_tcc_SOURCES ++ [ "lib/linux/symlink.c" ]; - meta = with lib; { + meta = { description = "Scheme interpreter and C compiler for bootstrapping"; homepage = "https://www.gnu.org/software/mes"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; platforms = [ "i686-linux" ]; }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/mes/libc.nix b/pkgs/os-specific/linux/minimal-bootstrap/mes/libc.nix index 751e627097a2..505baafed201 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/mes/libc.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/mes/libc.nix @@ -29,11 +29,11 @@ kaem.runCommand "${pname}-${version}" passthru.CFLAGS = "-DHAVE_CONFIG_H=1 -I${mes-libc}/include -I${mes-libc}/include/linux/x86"; - meta = with lib; { + meta = { description = "Mes C Library"; homepage = "https://www.gnu.org/software/mes"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; platforms = [ "i686-linux" ]; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/mes/nyacc.nix b/pkgs/os-specific/linux/minimal-bootstrap/mes/nyacc.nix index 58a577e11230..6332fc15f257 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/mes/nyacc.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/mes/nyacc.nix @@ -22,16 +22,16 @@ kaem.runCommand "${pname}-${version}" passthru.guilePath = "${nyacc}/share/${pname}-${version}/module"; - meta = with lib; { + meta = { description = "Modules for generating parsers and lexical analyzers"; longDescription = '' Not Yet Another Compiler Compiler is a set of guile modules for generating computer language parsers and lexical analyzers. ''; homepage = "https://savannah.nongnu.org/projects/nyacc"; - license = licenses.lgpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.all; }; } '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/musl/common.nix b/pkgs/os-specific/linux/minimal-bootstrap/musl/common.nix index 2aa266455041..eb36f5db0fb8 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/musl/common.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/musl/common.nix @@ -3,11 +3,11 @@ { pname = "musl"; - meta = with lib; { + meta = { description = "Efficient, small, quality libc implementation"; homepage = "https://musl.libc.org"; - license = licenses.mit; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + license = lib.licenses.mit; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix index 1cbddd9c4c10..661b375b8d9a 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix @@ -35,11 +35,11 @@ derivationWithMeta { (placeholder "out") ]; - meta = with lib; { + meta = { description = "Minimal assembler for bootstrapping"; homepage = "https://github.com/oriansj/stage0-posix"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; inherit platforms; }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix index 091436dcf482..77647dd418ad 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix @@ -54,11 +54,11 @@ derivationWithMeta { // (removeAttrs env [ "nativeBuildInputs" ]) ); - meta = with lib; { + meta = { description = "Minimal build tool for running scripts on systems that lack any shell"; homepage = "https://github.com/oriansj/mescc-tools"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix index b06bd900e45a..ce6ace992476 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix @@ -16,11 +16,11 @@ derivationWithMeta { (placeholder "out") ]; - meta = with lib; { + meta = { description = "First stage minimal scriptable build tool for bootstrapping"; homepage = "https://github.com/oriansj/stage0-posix"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/make-bootstrap-sources.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/make-bootstrap-sources.nix index c819a6105220..02d128fa1258 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/make-bootstrap-sources.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/make-bootstrap-sources.nix @@ -51,11 +51,11 @@ fetchFromGitHub { } ''; - meta = with lib; { + meta = { description = "Packaged sources for the first bootstrapping stage"; homepage = "https://github.com/oriansj/stage0-posix"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-boot.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-boot.nix index 783c3c93cc46..2c968c465cc1 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-boot.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-boot.nix @@ -57,11 +57,11 @@ rec { args ; - meta = with lib; { + meta = { description = "Collection of tools written for use in bootstrapping"; homepage = "https://github.com/oriansj/stage0-posix"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; inherit platforms; }; }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix index ec263d72cff6..6c72a3b79981 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix @@ -26,11 +26,11 @@ derivationWithMeta { ./build.kaem ]; - meta = with lib; { + meta = { description = "Collection of tools written for use in bootstrapping"; homepage = "https://github.com/oriansj/mescc-tools-extra"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix index b6b8f790da3f..b1027a29a5a4 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix @@ -106,11 +106,11 @@ derivationWithMeta { endianFlag ; - meta = with lib; { + meta = { description = "Collection of tools written for use in bootstrapping"; homepage = "https://github.com/oriansj/mescc-tools"; - license = licenses.gpl3Plus; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.minimal-bootstrap ]; inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/tinycc/bootstrappable.nix b/pkgs/os-specific/linux/minimal-bootstrap/tinycc/bootstrappable.nix index 65234932c71e..4c6dd1bb6cb9 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/tinycc/bootstrappable.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/tinycc/bootstrappable.nix @@ -39,11 +39,11 @@ let '') + "/tinycc-${rev}"; - meta = with lib; { + meta = { description = "Tiny C Compiler's bootstrappable fork"; homepage = "https://gitlab.com/janneke/tinycc"; - license = licenses.lgpl21Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.lgpl21Only; + teams = [ lib.teams.minimal-bootstrap ]; platforms = [ "i686-linux" ]; }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/tinycc/mes.nix b/pkgs/os-specific/linux/minimal-bootstrap/tinycc/mes.nix index 596e53a1c83b..3cd2e35de7ef 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/tinycc/mes.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/tinycc/mes.nix @@ -35,11 +35,11 @@ let '') + "/tinycc-${builtins.substring 0 7 rev}"; - meta = with lib; { + meta = { description = "Small, fast, and embeddable C compiler and interpreter"; homepage = "https://repo.or.cz/w/tinycc.git"; - license = licenses.lgpl21Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.lgpl21Only; + teams = [ lib.teams.minimal-bootstrap ]; platforms = [ "i686-linux" ]; }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/tinycc/musl.nix b/pkgs/os-specific/linux/minimal-bootstrap/tinycc/musl.nix index 9065e2f1f727..a8b624c0efba 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/tinycc/musl.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/tinycc/musl.nix @@ -26,11 +26,11 @@ let ./static-link.patch ]; - meta = with lib; { + meta = { description = "Small, fast, and embeddable C compiler and interpreter"; homepage = "https://repo.or.cz/w/tinycc.git"; - license = licenses.lgpl21Only; - teams = [ teams.minimal-bootstrap ]; + license = lib.licenses.lgpl21Only; + teams = [ lib.teams.minimal-bootstrap ]; platforms = [ "i686-linux" ]; }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/xz/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/xz/default.nix index 13bc5708a678..d0c1e5eb6976 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/xz/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/xz/default.nix @@ -42,15 +42,15 @@ bash.runCommand "${pname}-${version}" mkdir $out ''; - meta = with lib; { + meta = { description = "General-purpose data compression software, successor of LZMA"; homepage = "https://tukaani.org/xz"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - teams = [ teams.minimal-bootstrap ]; - platforms = platforms.unix; + teams = [ lib.teams.minimal-bootstrap ]; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/morse-driver/default.nix b/pkgs/os-specific/linux/morse-driver/default.nix index a16ef40e1d22..1daca912e80a 100644 --- a/pkgs/os-specific/linux/morse-driver/default.nix +++ b/pkgs/os-specific/linux/morse-driver/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Morse Micro Wi-Fi driver"; homepage = "https://github.com/MorseMicro/morse_driver"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ govindsi ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ govindsi ]; broken = kernel.kernelOlder "6.1" || kernel.kernelAtLeast "6.12.56"; }; } diff --git a/pkgs/os-specific/linux/mstflint_access/default.nix b/pkgs/os-specific/linux/mstflint_access/default.nix index d36d76947bc2..01160a4cc26a 100644 --- a/pkgs/os-specific/linux/mstflint_access/default.nix +++ b/pkgs/os-specific/linux/mstflint_access/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { ] ++ makeFlags; - meta = with lib; { + meta = { description = "Kernel module for Nvidia NIC firmware update"; homepage = "https://github.com/Mellanox/mstflint"; - license = [ licenses.gpl2Only ]; - maintainers = with maintainers; [ thillux ]; - platforms = platforms.linux; + license = [ lib.licenses.gpl2Only ]; + maintainers = with lib.maintainers; [ thillux ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/mxu11x0/default.nix b/pkgs/os-specific/linux/mxu11x0/default.nix index 7978e5bb5830..39ec57acfe94 100644 --- a/pkgs/os-specific/linux/mxu11x0/default.nix +++ b/pkgs/os-specific/linux/mxu11x0/default.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "pic" ]; - meta = with lib; { + meta = { description = "MOXA UPort 11x0 USB to Serial Hub driver"; homepage = "https://www.moxa.com/en/products/industrial-edge-connectivity/usb-to-serial-converters-usb-hubs/usb-to-serial-converters/uport-1000-series"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ uralbash ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ uralbash ]; + platforms = lib.platforms.linux; # broken due to API change in write_room() > v5.14-rc1 # https://github.com/torvalds/linux/commit/94cc7aeaf6c0cff0b8aeb7cb3579cee46b923560 broken = kernel.kernelAtLeast "5.14"; diff --git a/pkgs/os-specific/linux/nct6687d/default.nix b/pkgs/os-specific/linux/nct6687d/default.nix index dbb1a1537343..773a28f19a9b 100644 --- a/pkgs/os-specific/linux/nct6687d/default.nix +++ b/pkgs/os-specific/linux/nct6687d/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { extraArgs = [ "--version=branch=main" ]; }; - meta = with lib; { + meta = { description = "Kernel module for the Nuvoton NCT6687-R chipset found on many B550/B650 motherboards from ASUS and MSI"; - license = with licenses; [ gpl2Only ]; + license = with lib.licenses; [ gpl2Only ]; homepage = "https://github.com/Fred78290/nct6687d/"; - platforms = platforms.linux; - maintainers = with maintainers; [ atemu ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ atemu ]; }; } diff --git a/pkgs/os-specific/linux/nftables/default.nix b/pkgs/os-specific/linux/nftables/default.nix index 2e8c760fa504..be125ae38862 100644 --- a/pkgs/os-specific/linux/nftables/default.nix +++ b/pkgs/os-specific/linux/nftables/default.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Project that aims to replace the existing {ip,ip6,arp,eb}tables framework"; homepage = "https://netfilter.org/projects/nftables/"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ izorkin ]; mainProgram = "nft"; }; } diff --git a/pkgs/os-specific/linux/nullfs/default.nix b/pkgs/os-specific/linux/nullfs/default.nix index b8c373e67207..3ec5a6361ca7 100644 --- a/pkgs/os-specific/linux/nullfs/default.nix +++ b/pkgs/os-specific/linux/nullfs/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Virtual black hole file system that behaves like /dev/null"; homepage = "https://github.com/abbbi/nullfsvfs"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ callumio ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ callumio ]; }; } diff --git a/pkgs/os-specific/linux/nvidia-x11/generic.nix b/pkgs/os-specific/linux/nvidia-x11/generic.nix index 15a0f84045ca..7f9a5d32a7a4 100644 --- a/pkgs/os-specific/linux/nvidia-x11/generic.nix +++ b/pkgs/os-specific/linux/nvidia-x11/generic.nix @@ -327,18 +327,18 @@ stdenv.mkDerivation (finalAttrs: { inherit lib32; }; - meta = with lib; { + meta = { homepage = "https://www.nvidia.com/object/unix.html"; description = "${ if useFabricmanager then "Data Center" else "X.org" } driver and kernel module for NVIDIA cards"; - license = licenses.unfreeRedistributable; + license = lib.licenses.unfreeRedistributable; platforms = [ "x86_64-linux" ] ++ lib.optionals (sha256_32bit != null) [ "i686-linux" ] ++ lib.optionals (sha256_aarch64 != null) [ "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kiskae ]; priority = 4; # resolves collision with xorg-server's "lib/xorg/modules/extensions/libglx.so" diff --git a/pkgs/os-specific/linux/nvidia-x11/open.nix b/pkgs/os-specific/linux/nvidia-x11/open.nix index bd5653f5c9c8..e095cc47facb 100644 --- a/pkgs/os-specific/linux/nvidia-x11/open.nix +++ b/pkgs/os-specific/linux/nvidia-x11/open.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation ( installTargets = [ "modules_install" ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "NVIDIA Linux Open GPU Kernel Module"; homepage = "https://github.com/NVIDIA/open-gpu-kernel-modules"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus mit ]; @@ -54,7 +54,7 @@ stdenv.mkDerivation ( "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ nickcao ]; + maintainers = with lib.maintainers; [ nickcao ]; inherit broken; }; } diff --git a/pkgs/os-specific/linux/nvidiabl/default.nix b/pkgs/os-specific/linux/nvidiabl/default.nix index 4d38b42eb63d..c9921629191c 100644 --- a/pkgs/os-specific/linux/nvidiabl/default.nix +++ b/pkgs/os-specific/linux/nvidiabl/default.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation rec { "KVER=${kernel.modDirVersion}" ]; - meta = with lib; { + meta = { description = "Linux driver for setting the backlight brightness on laptops using NVIDIA GPU"; homepage = "https://github.com/yorickvP/nvidiabl"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = with maintainers; [ yorickvp ]; + maintainers = with lib.maintainers; [ yorickvp ]; broken = kernel.kernelAtLeast "5.18"; }; } diff --git a/pkgs/os-specific/linux/opensnitch-ebpf/default.nix b/pkgs/os-specific/linux/opensnitch-ebpf/default.nix index f7557a0c9ca2..2f701298a882 100644 --- a/pkgs/os-specific/linux/opensnitch-ebpf/default.nix +++ b/pkgs/os-specific/linux/opensnitch-ebpf/default.nix @@ -63,14 +63,14 @@ stdenv.mkDerivation rec { inherit (nixosTests) opensnitch; }; - meta = with lib; { + meta = { description = "eBPF process monitor module for OpenSnitch"; homepage = "https://github.com/evilsocket/opensnitch"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny grimmauld ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/ply/default.nix b/pkgs/os-specific/linux/ply/default.nix index 53d3553afc0a..b26faa7779ae 100644 --- a/pkgs/os-specific/linux/ply/default.nix +++ b/pkgs/os-specific/linux/ply/default.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { ./autogen.sh --prefix=$out ''; - meta = with lib; { + meta = { description = "Dynamic tracing in Linux"; mainProgram = "ply"; homepage = "https://wkz.github.io/ply/"; - license = [ licenses.gpl2Only ]; - maintainers = with maintainers; [ + license = [ lib.licenses.gpl2Only ]; + maintainers = with lib.maintainers; [ mic92 mbbx6spp ]; diff --git a/pkgs/os-specific/linux/qc71_laptop/default.nix b/pkgs/os-specific/linux/qc71_laptop/default.nix index bd4ca2183635..f326f7763ba7 100644 --- a/pkgs/os-specific/linux/qc71_laptop/default.nix +++ b/pkgs/os-specific/linux/qc71_laptop/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { description = "Linux driver for QC71 laptop"; homepage = "https://github.com/pobrn/qc71_laptop/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ aacebedo lucasfa ]; diff --git a/pkgs/os-specific/linux/r8168/default.nix b/pkgs/os-specific/linux/r8168/default.nix index 1a70c4b00332..703a33868906 100644 --- a/pkgs/os-specific/linux/r8168/default.nix +++ b/pkgs/os-specific/linux/r8168/default.nix @@ -52,15 +52,15 @@ stdenv.mkDerivation rec { find ${modDestDir} -name '*.ko' -exec xz -f '{}' \; ''; - meta = with lib; { + meta = { description = "Realtek r8168 driver"; longDescription = '' A kernel module for Realtek 8168 network cards. If you want to use this driver, you might need to blacklist the r8169 driver by adding "r8169" to boot.blacklistedKernelModules. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; broken = lib.versionAtLeast kernel.modDirVersion "6.13"; }; diff --git a/pkgs/os-specific/linux/rfkill/udev.nix b/pkgs/os-specific/linux/rfkill/udev.nix index eb908a13622a..bf870ff10a69 100644 --- a/pkgs/os-specific/linux/rfkill/udev.nix +++ b/pkgs/os-specific/linux/rfkill/udev.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation { cp ${rfkillHook} "$out/bin/rfkill-hook.sh" ''; - meta = with lib; { + meta = { homepage = "http://wireless.kernel.org/en/users/Documentation/rfkill"; description = "Rules+hook for udev to catch rfkill state changes"; mainProgram = "rfkill-hook.sh"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/os-specific/linux/rtl8188eus-aircrack/default.nix b/pkgs/os-specific/linux/rtl8188eus-aircrack/default.nix index 949c5acff28d..547b489f66e7 100644 --- a/pkgs/os-specific/linux/rtl8188eus-aircrack/default.nix +++ b/pkgs/os-specific/linux/rtl8188eus-aircrack/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { mkdir -p "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" ''; - meta = with lib; { + meta = { description = "RealTek RTL8188eus WiFi driver with monitor mode & frame injection support"; homepage = "https://github.com/aircrack-ng/rtl8188eus"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ moni ]; broken = ((lib.versions.majorMinor kernel.version) == "5.4" && kernel.isHardened) || kernel.kernelAtLeast "6.17"; diff --git a/pkgs/os-specific/linux/rtl8189es/default.nix b/pkgs/os-specific/linux/rtl8189es/default.nix index 66cf0d8b0a9c..a6a2345f2c06 100644 --- a/pkgs/os-specific/linux/rtl8189es/default.nix +++ b/pkgs/os-specific/linux/rtl8189es/default.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { nuke-refs $out/lib/modules/*/kernel/net/wireless/*.ko ''; - meta = with lib; { + meta = { description = "Driver for Realtek rtl8189es"; homepage = "https://github.com/jwrdegoede/rtl8189ES_linux"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ danielfullmer ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ danielfullmer ]; }; } diff --git a/pkgs/os-specific/linux/rtl8192eu/default.nix b/pkgs/os-specific/linux/rtl8192eu/default.nix index 8e9675eaacfd..b3002a4ed9d3 100644 --- a/pkgs/os-specific/linux/rtl8192eu/default.nix +++ b/pkgs/os-specific/linux/rtl8192eu/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Realtek rtl8192eu driver"; homepage = "https://github.com/Mange/rtl8192eu-linux-driver"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; broken = stdenv.hostPlatform.isAarch64 || kernel.kernelAtLeast "6.17"; - maintainers = with maintainers; [ troydm ]; + maintainers = with lib.maintainers; [ troydm ]; }; } diff --git a/pkgs/os-specific/linux/rtl8812au/default.nix b/pkgs/os-specific/linux/rtl8812au/default.nix index e9b9dded3e2a..2b805e92ab1e 100644 --- a/pkgs/os-specific/linux/rtl8812au/default.nix +++ b/pkgs/os-specific/linux/rtl8812au/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Driver for Realtek 802.11ac, rtl8812au, provides the 8812au mod"; homepage = "https://github.com/morrownr/8812au-20210820"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ moni ]; broken = kernel.kernelOlder "5.10" || kernel.kernelAtLeast "6.15"; }; } diff --git a/pkgs/os-specific/linux/rtl8814au/default.nix b/pkgs/os-specific/linux/rtl8814au/default.nix index cc1e5f91b398..8cdc1b4dd386 100644 --- a/pkgs/os-specific/linux/rtl8814au/default.nix +++ b/pkgs/os-specific/linux/rtl8814au/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Realtek 8814AU USB WiFi driver"; homepage = "https://github.com/morrownr/8814au"; - license = licenses.gpl2Only; - maintainers = [ maintainers.lassulus ]; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.lassulus ]; broken = kernel.kernelOlder "5.2" || kernel.kernelAtLeast "6.15"; }; } diff --git a/pkgs/os-specific/linux/rtl8821au/default.nix b/pkgs/os-specific/linux/rtl8821au/default.nix index 861e6d921585..2a6dc32c2129 100644 --- a/pkgs/os-specific/linux/rtl8821au/default.nix +++ b/pkgs/os-specific/linux/rtl8821au/default.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "rtl8821AU and rtl8812AU chipset driver with firmware"; homepage = "https://github.com/morrownr/8821au-20210708"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = lib.platforms.linux; - maintainers = with maintainers; [ plchldr ]; + maintainers = with lib.maintainers; [ plchldr ]; broken = kernel.kernelOlder "5.4" || kernel.kernelAtLeast "6.15"; }; } diff --git a/pkgs/os-specific/linux/rtl8852au/default.nix b/pkgs/os-specific/linux/rtl8852au/default.nix index dc4e8e3f5518..dc8e1df64408 100644 --- a/pkgs/os-specific/linux/rtl8852au/default.nix +++ b/pkgs/os-specific/linux/rtl8852au/default.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Driver for Realtek 802.11ac, rtl8852au, provides the 8852au mod"; homepage = "https://github.com/lwfinger/rtl8852au"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; # FIX: error: invalid initializer broken = (kernel.kernelOlder "6" && kernel.isHardened) || kernel.kernelAtLeast "6.17"; - maintainers = with maintainers; [ lonyelon ]; + maintainers = with lib.maintainers; [ lonyelon ]; }; }) diff --git a/pkgs/os-specific/linux/rtl88x2bu/default.nix b/pkgs/os-specific/linux/rtl88x2bu/default.nix index 66e151e7d8c6..c7a6451b0691 100644 --- a/pkgs/os-specific/linux/rtl88x2bu/default.nix +++ b/pkgs/os-specific/linux/rtl88x2bu/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Realtek rtl88x2bu driver"; homepage = "https://github.com/RinCat/RTL88x2BU-Linux-Driver"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ otavio claymorwan ]; diff --git a/pkgs/os-specific/linux/rtl88xxau-aircrack/default.nix b/pkgs/os-specific/linux/rtl88xxau-aircrack/default.nix index 30b1c71c0960..1c1dcab8b51f 100644 --- a/pkgs/os-specific/linux/rtl88xxau-aircrack/default.nix +++ b/pkgs/os-specific/linux/rtl88xxau-aircrack/default.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = '' Aircrack-ng kernel module for Realtek 88XXau network cards (8811au, 8812au, 8814au and 8821au chipsets) with monitor mode and injection support.''; homepage = "https://github.com/aircrack-ng/rtl8812au"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ - maintainers.ja1den - maintainers.jethro + lib.maintainers.ja1den + lib.maintainers.jethro ]; platforms = [ "x86_64-linux" diff --git a/pkgs/os-specific/linux/rtw88/default.nix b/pkgs/os-specific/linux/rtw88/default.nix index 7d88e07c1f6b..4eb1dede5df4 100644 --- a/pkgs/os-specific/linux/rtw88/default.nix +++ b/pkgs/os-specific/linux/rtw88/default.nix @@ -40,18 +40,18 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = with lib; { + meta = { description = "Backport of the latest Realtek RTW88 driver from wireless-next for older kernels"; homepage = "https://github.com/lwfinger/rtw88"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 gpl2Only ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tvorog atila ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = kernel.kernelOlder "4.20"; priority = -1; }; diff --git a/pkgs/os-specific/linux/rtw89/default.nix b/pkgs/os-specific/linux/rtw89/default.nix index 8c745ec51122..6c4317f8bac1 100644 --- a/pkgs/os-specific/linux/rtw89/default.nix +++ b/pkgs/os-specific/linux/rtw89/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Driver for Realtek 8852AE, 8852BE, and 8853CE, 802.11ax devices"; homepage = "https://github.com/lwfinger/rtw89"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ tvorog ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ tvorog ]; + platforms = lib.platforms.linux; broken = kernel.kernelOlder "5.7"; priority = -1; }; diff --git a/pkgs/os-specific/linux/sinit/default.nix b/pkgs/os-specific/linux/sinit/default.nix index 6f4f279750c6..2272c3a43ef5 100644 --- a/pkgs/os-specific/linux/sinit/default.nix +++ b/pkgs/os-specific/linux/sinit/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { rcreboot != null ) ''sed -re 's@(rc(reboot)cmd[^"]*")[^"]*"@\1${rcreboot}"@' -i config.def.h; ''); - meta = with lib; { + meta = { description = "Very minimal Linux init implementation from suckless.org"; mainProgram = "sinit"; - license = licenses.mit; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://tools.suckless.org/sinit"; downloadPage = "https://git.suckless.org/sinit"; }; diff --git a/pkgs/os-specific/linux/tmon/default.nix b/pkgs/os-specific/linux/tmon/default.nix index 2968d0b2c2bc..3b306b193f80 100644 --- a/pkgs/os-specific/linux/tmon/default.nix +++ b/pkgs/os-specific/linux/tmon/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Monitoring and Testing Tool for Linux kernel thermal subsystem"; mainProgram = "tmon"; homepage = "https://www.kernel.org/"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/trace-cmd/default.nix b/pkgs/os-specific/linux/trace-cmd/default.nix index 192f8ff35901..4a71afc5b9b9 100644 --- a/pkgs/os-specific/linux/trace-cmd/default.nix +++ b/pkgs/os-specific/linux/trace-cmd/default.nix @@ -92,16 +92,16 @@ stdenv.mkDerivation rec { rev-prefix = "trace-cmd-v"; }; - meta = with lib; { + meta = { description = "User-space tools for the Linux kernel ftrace subsystem"; mainProgram = "trace-cmd"; homepage = "https://www.trace-cmd.org/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Only gpl2Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice basvandijk wentasah diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix index 003b2a006aa7..d7136f4a5d71 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation (finalAttrs: { "-DTT_FONT_FILE=${freefont_ttf}/share/fonts/truetype/FreeSans.ttf" ]; - meta = with lib; { + meta = { description = "GUI for trace-cmd which is an interface for the Linux kernel ftrace subsystem"; homepage = "https://kernelshark.org/"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ basvandijk ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ basvandijk ]; }; }) diff --git a/pkgs/os-specific/linux/trelay/default.nix b/pkgs/os-specific/linux/trelay/default.nix index ec2155ea213f..eaf83d64f982 100644 --- a/pkgs/os-specific/linux/trelay/default.nix +++ b/pkgs/os-specific/linux/trelay/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { "INSTALL_MOD_PATH=$(out)" ]; - meta = with lib; { + meta = { description = "For relaying IP packets between two devices to build a IP bridge between them"; longDescription = '' A kernel module that relays ethernet packets between two devices (similar to a bridge), @@ -48,9 +48,9 @@ stdenv.mkDerivation (finalAttrs: { supposed to exit from. ''; homepage = "https://github.com/openwrt/openwrt/tree/main/package/kernel/trelay"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.aprl ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.aprl ]; + platforms = lib.platforms.linux; broken = lib.versionOlder kernel.version "5.10"; }; }) diff --git a/pkgs/os-specific/linux/turbostat/default.nix b/pkgs/os-specific/linux/turbostat/default.nix index dcec8df4eca9..22bf211fa072 100644 --- a/pkgs/os-specific/linux/turbostat/default.nix +++ b/pkgs/os-specific/linux/turbostat/default.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation { cd tools/power/x86/turbostat ''; - meta = with lib; { + meta = { description = "Report processor frequency and idle statistics"; mainProgram = "turbostat"; homepage = "https://www.kernel.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/os-specific/linux/usbip/default.nix b/pkgs/os-specific/linux/usbip/default.nix index 4fc50dae8a0c..4f03d9377fde 100644 --- a/pkgs/os-specific/linux/usbip/default.nix +++ b/pkgs/os-specific/linux/usbip/default.nix @@ -40,14 +40,14 @@ stdenv.mkDerivation { configureFlags = [ "--with-usbids-dir=${hwdata}/share/hwdata/" ]; - meta = with lib; { + meta = { homepage = "https://github.com/torvalds/linux/tree/master/tools/usb/usbip"; description = "Allows to pass USB device from server to client over the network"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl2Plus ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = kernelOlder "4.10"; }; } diff --git a/pkgs/os-specific/linux/usbrelay/default.nix b/pkgs/os-specific/linux/usbrelay/default.nix index bf5935b6af67..3f1e6bf61007 100644 --- a/pkgs/os-specific/linux/usbrelay/default.nix +++ b/pkgs/os-specific/linux/usbrelay/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { installManPage usbrelay.1 ''; - meta = with lib; { + meta = { description = "Tool to control USB HID relays"; mainProgram = "usbrelay"; homepage = "https://github.com/darrylb123/usbrelay"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ wentasah ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ wentasah ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/os-specific/linux/vendor-reset/default.nix b/pkgs/os-specific/linux/vendor-reset/default.nix index bcf1b6e5d6fb..bfa5cfa6c4fa 100644 --- a/pkgs/os-specific/linux/vendor-reset/default.nix +++ b/pkgs/os-specific/linux/vendor-reset/default.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Linux kernel vendor specific hardware reset module"; homepage = "https://github.com/gnif/vendor-reset"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; platforms = [ "x86_64-linux" ]; broken = kernel.kernelOlder "4.19"; diff --git a/pkgs/os-specific/linux/virtio_vmmci/default.nix b/pkgs/os-specific/linux/virtio_vmmci/default.nix index edd77f3fb9e4..a14808e85403 100644 --- a/pkgs/os-specific/linux/virtio_vmmci/default.nix +++ b/pkgs/os-specific/linux/virtio_vmmci/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { "KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ]; - meta = with lib; { + meta = { description = "OpenBSD VMM Control Interface (vmmci) for Linux"; homepage = "https://github.com/voutilad/virtio_vmmci"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qbit ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qbit ]; + platforms = lib.platforms.linux; }; enableParallelBuilding = true; diff --git a/pkgs/os-specific/linux/vmm_clock/default.nix b/pkgs/os-specific/linux/vmm_clock/default.nix index 11242fccbc95..eacf4352a762 100644 --- a/pkgs/os-specific/linux/vmm_clock/default.nix +++ b/pkgs/os-specific/linux/vmm_clock/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { "KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ]; - meta = with lib; { + meta = { description = "Experimental implementation of a kvmclock-derived clocksource for Linux guests under OpenBSD's hypervisor"; homepage = "https://github.com/voutilad/vmm_clock"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ qbit ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qbit ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/os-specific/linux/wireguard/default.nix b/pkgs/os-specific/linux/wireguard/default.nix index 733f08fa0fd9..b5f161ef3948 100644 --- a/pkgs/os-specific/linux/wireguard/default.nix +++ b/pkgs/os-specific/linux/wireguard/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { inherit (wireguard-tools) tests; }; - meta = with lib; { + meta = { inherit (wireguard-tools.meta) homepage license maintainers; description = "Kernel module for the WireGuard secure network tunnel"; longDescription = '' @@ -57,6 +57,6 @@ stdenv.mkDerivation rec { (as WireGuard was merged into the Linux kernel for 5.6) ''; downloadPage = "https://git.zx2c4.com/wireguard-linux-compat/refs/"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/wpa_supplicant/default.nix b/pkgs/os-specific/linux/wpa_supplicant/default.nix index 04d63bfbc883..204481e0c096 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/default.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix @@ -169,14 +169,14 @@ stdenv.mkDerivation rec { inherit wpa_supplicant_gui; # inherits the src+version updates }; - meta = with lib; { + meta = { homepage = "https://w1.fi/wpa_supplicant/"; description = "Tool for connecting to WPA and WPA2-protected wireless networks"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ marcweber ma27 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/wpa_supplicant/gui.nix b/pkgs/os-specific/linux/wpa_supplicant/gui.nix index 60289d136c96..57fe44ff5e12 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/gui.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/gui.nix @@ -34,11 +34,11 @@ mkDerivation { cp -av icons/hicolor $out/share/icons ''; - meta = with lib; { + meta = { description = "Qt-based GUI for wpa_supplicant"; mainProgram = "wpa_gui"; homepage = "https://hostap.epitest.fi/wpa_supplicant/"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/x86_energy_perf_policy/default.nix b/pkgs/os-specific/linux/x86_energy_perf_policy/default.nix index 1183b4dc32b7..7d850fac60d6 100644 --- a/pkgs/os-specific/linux/x86_energy_perf_policy/default.nix +++ b/pkgs/os-specific/linux/x86_energy_perf_policy/default.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { description = "Set the energy versus performance policy preference bias on recent X86 processors"; mainProgram = "x86_energy_perf_policy"; homepage = "https://www.kernel.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/os-specific/linux/xone/default.nix b/pkgs/os-specific/linux/xone/default.nix index 94fcd55918e2..c80ae4261577 100644 --- a/pkgs/os-specific/linux/xone/default.nix +++ b/pkgs/os-specific/linux/xone/default.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ]; installTargets = [ "modules_install" ]; - meta = with lib; { + meta = { description = "Linux kernel driver for Xbox One and Xbox Series X|S accessories"; homepage = "https://github.com/dlundqvist/xone"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ rhysmdnz fazzi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = kernel.kernelOlder "6"; }; }) diff --git a/pkgs/os-specific/linux/xp-pen-drivers/deco-01-v2/default.nix b/pkgs/os-specific/linux/xp-pen-drivers/deco-01-v2/default.nix index c983b0cfa89a..ad30afd0e1ab 100644 --- a/pkgs/os-specific/linux/xp-pen-drivers/deco-01-v2/default.nix +++ b/pkgs/os-specific/linux/xp-pen-drivers/deco-01-v2/default.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { --run 'if [ ! -d /${dataDir} ]; then mkdir -p /${dataDir}; cp -r '$out'/opt/conf /${dataDir}; chmod u+w -R /${dataDir}; fi' ''; - meta = with lib; { + meta = { homepage = "https://www.xp-pen.com/product/461.html"; description = "Drivers for the XP-PEN Deco 01 v2 drawing tablet"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ virchau13 ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ virchau13 ]; + license = lib.licenses.unfree; }; } diff --git a/pkgs/os-specific/linux/zenergy/default.nix b/pkgs/os-specific/linux/zenergy/default.nix index 750608c2a97e..53b243e4e974 100644 --- a/pkgs/os-specific/linux/zenergy/default.nix +++ b/pkgs/os-specific/linux/zenergy/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { substituteInPlace Makefile --replace-fail "PWD modules_install" "PWD INSTALL_MOD_PATH=$out modules_install" ''; - meta = with lib; { + meta = { description = "Based on AMD_ENERGY driver, but with some jiffies added so non-root users can read it safely"; homepage = "https://github.com/BoukeHaarsma23/zenergy"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ wizardlink ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ wizardlink ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/os-specific/linux/zenpower/default.nix b/pkgs/os-specific/linux/zenpower/default.nix index 9a4af7542324..d8d062ac8976 100644 --- a/pkgs/os-specific/linux/zenpower/default.nix +++ b/pkgs/os-specific/linux/zenpower/default.nix @@ -29,8 +29,8 @@ stdenv.mkDerivation rec { meta = with lib; { inherit (src.meta) homepage; description = "Linux kernel driver for reading temperature, voltage(SVI2), current(SVI2) and power(SVI2) for AMD Zen family CPUs"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ alexbakker artturin ]; diff --git a/pkgs/servers/asterisk/default.nix b/pkgs/servers/asterisk/default.nix index 9187ddc4a6b4..efb9949e2cdc 100644 --- a/pkgs/servers/asterisk/default.nix +++ b/pkgs/servers/asterisk/default.nix @@ -150,12 +150,12 @@ let make install-headers ''; - meta = with lib; { + meta = { description = "Software implementation of a telephone private branch exchange (PBX)"; homepage = "https://www.asterisk.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "asterisk"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ auntie DerTim1 yorickvp diff --git a/pkgs/servers/authelia/default.nix b/pkgs/servers/authelia/default.nix index 22b4f8f88e03..428fdb199f6c 100644 --- a/pkgs/servers/authelia/default.nix +++ b/pkgs/servers/authelia/default.nix @@ -89,7 +89,7 @@ buildGoModule rec { tests = { inherit (nixosTests) authelia; }; }; - meta = with lib; { + meta = { homepage = "https://www.authelia.com/"; changelog = "https://github.com/authelia/authelia/releases/tag/v${version}"; description = "Single Sign-On Multi-Factor portal for web apps"; @@ -101,8 +101,8 @@ buildGoModule rec { should either be allowed or redirected to Authelia's portal for authentication. ''; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk dit7ya nicomem diff --git a/pkgs/servers/dcnnt/default.nix b/pkgs/servers/dcnnt/default.nix index dbdb08f74003..6f82a28ff33a 100644 --- a/pkgs/servers/dcnnt/default.nix +++ b/pkgs/servers/dcnnt/default.nix @@ -19,15 +19,15 @@ buildPythonApplication rec { pycryptodome ]; - meta = with lib; { + meta = { homepage = "https://github.com/cyanomiko/dcnnt-py"; description = "UI-less tool to connect Android phone with desktop"; longDescription = '' Yet another tool to connect Android phone with desktop similar to KDE Connect. ''; - license = licenses.mit; - maintainers = with maintainers; [ arnoutkroeze ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arnoutkroeze ]; mainProgram = "dcnnt"; }; } diff --git a/pkgs/servers/deconz/default.nix b/pkgs/servers/deconz/default.nix index 783133f06319..d7ea9aeb32e7 100644 --- a/pkgs/servers/deconz/default.nix +++ b/pkgs/servers/deconz/default.nix @@ -86,13 +86,13 @@ stdenv.mkDerivation rec { tests = { inherit (nixosTests) deconz; }; }; - meta = with lib; { + meta = { description = "Manage Zigbee network with ConBee, ConBee II or RaspBee hardware"; homepage = "https://www.dresden-elektronik.com/wireless/software/deconz.html"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ bjornfor ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ bjornfor ]; mainProgram = "deCONZ"; }; } diff --git a/pkgs/servers/dict/libmaa.nix b/pkgs/servers/dict/libmaa.nix index b9deb77368d7..4945cb7e459b 100644 --- a/pkgs/servers/dict/libmaa.nix +++ b/pkgs/servers/dict/libmaa.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=format-truncation"; - meta = with lib; { + meta = { description = "Provides many low-level data structures which are helpful for writing compilers"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/dict/wiktionary/default.nix b/pkgs/servers/dict/wiktionary/default.nix index ea3ba3bfd824..c8fcd868f06a 100644 --- a/pkgs/servers/dict/wiktionary/default.nix +++ b/pkgs/servers/dict/wiktionary/default.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "DICT version of English Wiktionary"; homepage = "https://en.wiktionary.org/"; - maintainers = with maintainers; [ qyliss ]; - platforms = platforms.all; - license = with licenses; [ + maintainers = with lib.maintainers; [ qyliss ]; + platforms = lib.platforms.all; + license = with lib.licenses; [ cc-by-sa-30 fdl11Plus ]; diff --git a/pkgs/servers/diod/default.nix b/pkgs/servers/diod/default.nix index 21d3f5d9a43a..778a806bf752 100644 --- a/pkgs/servers/diod/default.nix +++ b/pkgs/servers/diod/default.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { description = "I/O forwarding server that implements a variant of the 9P protocol"; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/servers/dns/nsd/default.nix b/pkgs/servers/dns/nsd/default.nix index d2b4f68661fe..e0cbb46ff7e4 100644 --- a/pkgs/servers/dns/nsd/default.nix +++ b/pkgs/servers/dns/nsd/default.nix @@ -80,10 +80,10 @@ stdenv.mkDerivation rec { inherit (nixosTests) nsd; }; - meta = with lib; { + meta = { homepage = "https://www.nlnetlabs.nl"; description = "Authoritative only, high performance, simple and open source name server"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/felix/default.nix b/pkgs/servers/felix/default.nix index 9ea571dc219a..a519acb070c7 100644 --- a/pkgs/servers/felix/default.nix +++ b/pkgs/servers/felix/default.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { mkdir -p $out cp -av * $out ''; - meta = with lib; { + meta = { description = "OSGi gateway"; homepage = "https://felix.apache.org"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; mainProgram = "felix.jar"; }; } diff --git a/pkgs/servers/firebird/default.nix b/pkgs/servers/firebird/default.nix index 4f4401f31a71..1377a7d5454d 100644 --- a/pkgs/servers/firebird/default.nix +++ b/pkgs/servers/firebird/default.nix @@ -17,7 +17,7 @@ let base = { pname = "firebird"; - meta = with lib; { + meta = { description = "SQL relational database management system"; downloadPage = "https://github.com/FirebirdSQL/firebird/"; homepage = "https://firebirdsql.org/"; @@ -26,8 +26,8 @@ let mpl11 interbase ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bbenno marcweber ]; diff --git a/pkgs/servers/gpm/default.nix b/pkgs/servers/gpm/default.nix index 9a83d607c4c3..7552e6fbf13c 100644 --- a/pkgs/servers/gpm/default.nix +++ b/pkgs/servers/gpm/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation { passthru.tests.static = pkgsStatic.gpm; - meta = with lib; { + meta = { homepage = "https://www.nico.schottelius.org/software/gpm/"; description = "Daemon that provides mouse support on the Linux console"; - license = licenses.gpl2Plus; - platforms = platforms.linux ++ platforms.cygwin; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux ++ lib.platforms.cygwin; maintainers = [ ]; }; } diff --git a/pkgs/servers/hbase/default.nix b/pkgs/servers/hbase/default.nix index 6e9f3be1d362..8e494c049ca3 100644 --- a/pkgs/servers/hbase/default.nix +++ b/pkgs/servers/hbase/default.nix @@ -35,10 +35,10 @@ let passthru = { inherit tests; }; - meta = with lib; { + meta = { description = "Distributed, scalable, big data store"; homepage = "https://hbase.apache.org"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ illustris ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/servers/hockeypuck/server.nix b/pkgs/servers/hockeypuck/server.nix index ab031dd2c96f..ad5254df27bd 100644 --- a/pkgs/servers/hockeypuck/server.nix +++ b/pkgs/servers/hockeypuck/server.nix @@ -17,10 +17,10 @@ buildGoModule { passthru.tests = nixosTests.hockeypuck; - meta = with lib; { + meta = { description = "OpenPGP Key Server"; homepage = "https://github.com/hockeypuck/hockeypuck"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/servers/hockeypuck/web.nix b/pkgs/servers/hockeypuck/web.nix index a2f35a4d0cdb..42fdaf5bff7f 100644 --- a/pkgs/servers/hockeypuck/web.nix +++ b/pkgs/servers/hockeypuck/web.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation { passthru.tests = nixosTests.hockeypuck; - meta = with lib; { + meta = { description = "OpenPGP Key Server web resources"; homepage = "https://github.com/hockeypuck/hockeypuck"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/servers/home-assistant/appdaemon.nix b/pkgs/servers/home-assistant/appdaemon.nix index 18ca5ac5d03e..e5111151f087 100644 --- a/pkgs/servers/home-assistant/appdaemon.nix +++ b/pkgs/servers/home-assistant/appdaemon.nix @@ -47,12 +47,12 @@ python3Packages.buildPythonApplication rec { $out/bin/appdaemon -v | grep -q "${version}" ''; - meta = with lib; { + meta = { description = "Sandboxed Python execution environment for writing automation apps for Home Assistant"; mainProgram = "appdaemon"; homepage = "https://github.com/AppDaemon/appdaemon"; changelog = "https://github.com/AppDaemon/appdaemon/blob/${version}/docs/HISTORY.md"; - license = licenses.mit; - teams = [ teams.home-assistant ]; + license = lib.licenses.mit; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/adaptive_lighting/package.nix b/pkgs/servers/home-assistant/custom-components/adaptive_lighting/package.nix index 1847719d66e9..720cf95a1a52 100644 --- a/pkgs/servers/home-assistant/custom-components/adaptive_lighting/package.nix +++ b/pkgs/servers/home-assistant/custom-components/adaptive_lighting/package.nix @@ -21,11 +21,11 @@ buildHomeAssistantComponent rec { ulid-transform ]; - meta = with lib; { + meta = { changelog = "https://github.com/basnijholt/adaptive-lighting/releases/tag/${src.tag}"; description = "Home Assistant Adaptive Lighting Plugin - Sun Synchronized Lighting"; homepage = "https://github.com/basnijholt/adaptive-lighting"; - maintainers = with maintainers; [ mindstorms6 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ mindstorms6 ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/home-assistant/custom-components/alarmo/package.nix b/pkgs/servers/home-assistant/custom-components/alarmo/package.nix index f3264b8837f5..077d5e904bc4 100644 --- a/pkgs/servers/home-assistant/custom-components/alarmo/package.nix +++ b/pkgs/servers/home-assistant/custom-components/alarmo/package.nix @@ -20,11 +20,11 @@ buildHomeAssistantComponent rec { find ./custom_components/alarmo/frontend -mindepth 1 -maxdepth 1 ! -name "dist" -exec rm -rf {} \; ''; - meta = with lib; { + meta = { changelog = "https://github.com/nielsfaber/alarmo/releases/tag/v${version}"; description = "Alarm System for Home Assistant"; homepage = "https://github.com/nielsfaber/alarmo"; - maintainers = with maintainers; [ mindstorms6 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ mindstorms6 ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/home-assistant/custom-components/average/package.nix b/pkgs/servers/home-assistant/custom-components/average/package.nix index 8c7e92d3e59c..45f73daab89c 100644 --- a/pkgs/servers/home-assistant/custom-components/average/package.nix +++ b/pkgs/servers/home-assistant/custom-components/average/package.nix @@ -20,11 +20,11 @@ buildHomeAssistantComponent rec { sed -i "/pip>=/d" custom_components/average/manifest.json ''; - meta = with lib; { + meta = { changelog = "https://github.com/Limych/ha-average/releases/tag/${version}"; description = "Average Sensor for Home Assistant"; homepage = "https://github.com/Limych/ha-average"; - maintainers = with maintainers; [ matthiasbeyer ]; - license = licenses.cc-by-nc-40; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + license = lib.licenses.cc-by-nc-40; }; } diff --git a/pkgs/servers/home-assistant/custom-components/awtrix/package.nix b/pkgs/servers/home-assistant/custom-components/awtrix/package.nix index afe9a0c71c88..48aaa52d5ccf 100644 --- a/pkgs/servers/home-assistant/custom-components/awtrix/package.nix +++ b/pkgs/servers/home-assistant/custom-components/awtrix/package.nix @@ -22,10 +22,10 @@ buildHomeAssistantComponent rec { requests ]; - meta = with lib; { + meta = { description = "Home-assistant integration for awtrix"; homepage = "https://github.com/10der/homeassistant-custom_components-awtrix"; - maintainers = with maintainers; [ pinpox ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ pinpox ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/dirigera_platform/package.nix b/pkgs/servers/home-assistant/custom-components/dirigera_platform/package.nix index 43fff7a6fde3..b5bbb966cc4b 100644 --- a/pkgs/servers/home-assistant/custom-components/dirigera_platform/package.nix +++ b/pkgs/servers/home-assistant/custom-components/dirigera_platform/package.nix @@ -26,10 +26,10 @@ buildHomeAssistantComponent rec { ignoreVersionRequirement = [ "dirigera" ]; - meta = with lib; { + meta = { description = "Home-assistant integration for IKEA Dirigera hub"; homepage = "https://github.com/sanjoyg/dirigera_platform"; - maintainers = with maintainers; [ rhoriguchi ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ rhoriguchi ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/dwd/package.nix b/pkgs/servers/home-assistant/custom-components/dwd/package.nix index 247e18106af3..01eaea2a9a6b 100644 --- a/pkgs/servers/home-assistant/custom-components/dwd/package.nix +++ b/pkgs/servers/home-assistant/custom-components/dwd/package.nix @@ -22,11 +22,11 @@ buildHomeAssistantComponent rec { # defusedxml version mismatch dontCheckManifest = true; - meta = with lib; { + meta = { description = "Custom component for Home Assistant that integrates weather data (measurements and forecasts) of Deutscher Wetterdienst"; homepage = "https://github.com/hg1337/homeassistant-dwd"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa emilylange ]; diff --git a/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix b/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix index b7caad0497ec..0b8ace31bf57 100644 --- a/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix +++ b/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix @@ -42,12 +42,12 @@ buildHomeAssistantComponent rec { home-assistant ]; - meta = with lib; { + meta = { changelog = "https://github.com/danielcherubini/elegoo-homeassistant/releases/tag/v${version}"; description = "Home Assistant integration for Elegoo 3D printers using the SDCP protocol"; homepage = "https://github.com/danielcherubini/elegoo-homeassistant"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ typedrat ]; }; diff --git a/pkgs/servers/home-assistant/custom-components/elevenlabs_tts/package.nix b/pkgs/servers/home-assistant/custom-components/elevenlabs_tts/package.nix index dd1f43813b81..087c5bd5b149 100644 --- a/pkgs/servers/home-assistant/custom-components/elevenlabs_tts/package.nix +++ b/pkgs/servers/home-assistant/custom-components/elevenlabs_tts/package.nix @@ -16,11 +16,11 @@ buildHomeAssistantComponent rec { hash = "sha256-/hszK5J1iGB46WfmCCK9/F0JOR405gplMwVC4niAqig="; }; - meta = with lib; { + meta = { changelog = "https://github.com/carleeno/elevenlabs_tts/releases/tag/${version}"; description = "Home Assistant Eleven Labs TTS Integration"; homepage = "https://github.com/carleeno/elevenlabs_tts"; - maintainers = with maintainers; [ mindstorms6 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ mindstorms6 ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/home-assistant/custom-components/emporia_vue/package.nix b/pkgs/servers/home-assistant/custom-components/emporia_vue/package.nix index 3fb13521be69..ac1e54eb8ba3 100644 --- a/pkgs/servers/home-assistant/custom-components/emporia_vue/package.nix +++ b/pkgs/servers/home-assistant/custom-components/emporia_vue/package.nix @@ -25,11 +25,11 @@ buildHomeAssistantComponent rec { "pyemvue" ]; - meta = with lib; { + meta = { description = "Reads data from the Emporia Vue energy monitor into Home Assistant"; homepage = "https://github.com/magico13/ha-emporia-vue"; changelog = "https://github.com/magico13/ha-emporia-vue/releases/tag/v${version}"; - maintainers = with maintainers; [ presto8 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ presto8 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/epex_spot/package.nix b/pkgs/servers/home-assistant/custom-components/epex_spot/package.nix index 463345603916..f69dd248f573 100644 --- a/pkgs/servers/home-assistant/custom-components/epex_spot/package.nix +++ b/pkgs/servers/home-assistant/custom-components/epex_spot/package.nix @@ -25,11 +25,11 @@ buildHomeAssistantComponent rec { dontConfigure = true; doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/mampfes/ha_epex_spot/releases/tag/${version}"; description = "This component adds electricity prices from stock exchange EPEX Spot to Home Assistant"; homepage = "https://github.com/mampfes/ha_epex_spot"; - maintainers = with maintainers; [ _9R ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ _9R ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/frigate/package.nix b/pkgs/servers/home-assistant/custom-components/frigate/package.nix index 9025606067e0..d303600c28a5 100644 --- a/pkgs/servers/home-assistant/custom-components/frigate/package.nix +++ b/pkgs/servers/home-assistant/custom-components/frigate/package.nix @@ -53,11 +53,11 @@ buildHomeAssistantComponent rec { "tests/test_media_source.py" ]; - meta = with lib; { + meta = { description = "Provides Home Assistant integration to interface with a separately running Frigate service"; homepage = "https://github.com/blakeblackshear/frigate-hass-integration"; changelog = "https://github.com/blakeblackshear/frigate-hass-integration/releases/tag/v${version}"; - maintainers = with maintainers; [ presto8 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ presto8 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/garmin_connect/package.nix b/pkgs/servers/home-assistant/custom-components/garmin_connect/package.nix index d3dca515c8e6..cb06ea0f4ff4 100644 --- a/pkgs/servers/home-assistant/custom-components/garmin_connect/package.nix +++ b/pkgs/servers/home-assistant/custom-components/garmin_connect/package.nix @@ -23,14 +23,14 @@ buildHomeAssistantComponent rec { tzlocal ]; - meta = with lib; { + meta = { changelog = "https://github.com/cyberjunky/home-assistant-garmin_connect/releases/tag/${src.tag}"; description = "Garmin Connect integration allows you to expose data from Garmin Connect to Home Assistant"; homepage = "https://github.com/cyberjunky/home-assistant-garmin_connect"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthiasbeyer dmadisetti ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/govee-lan/package.nix b/pkgs/servers/home-assistant/custom-components/govee-lan/package.nix index 3e3c4c816158..723e1083df87 100644 --- a/pkgs/servers/home-assistant/custom-components/govee-lan/package.nix +++ b/pkgs/servers/home-assistant/custom-components/govee-lan/package.nix @@ -41,10 +41,10 @@ buildHomeAssistantComponent { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Control Govee lights via the LAN API from Home Assistant"; homepage = "https://github.com/wez/govee-lan-hass"; - maintainers = with maintainers; [ SuperSandro2000 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/gpio/package.nix b/pkgs/servers/home-assistant/custom-components/gpio/package.nix index a87bb0c1e5c8..9ace56873262 100644 --- a/pkgs/servers/home-assistant/custom-components/gpio/package.nix +++ b/pkgs/servers/home-assistant/custom-components/gpio/package.nix @@ -20,10 +20,10 @@ buildHomeAssistantComponent rec { dependencies = [ libgpiod ]; - meta = with lib; { + meta = { description = "Home Assistant GPIO custom integration"; homepage = "https://codeberg.org/raboof/ha-gpio"; - maintainers = with maintainers; [ raboof ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ raboof ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/home-assistant/custom-components/home_connect_alt/package.nix b/pkgs/servers/home-assistant/custom-components/home_connect_alt/package.nix index ad47b44e5655..b727a6fb132b 100644 --- a/pkgs/servers/home-assistant/custom-components/home_connect_alt/package.nix +++ b/pkgs/servers/home-assistant/custom-components/home_connect_alt/package.nix @@ -19,11 +19,11 @@ buildHomeAssistantComponent rec { dependencies = [ home-connect-async ]; - meta = with lib; { + meta = { changelog = "https://github.com/ekutner/home-connect-hass/releases/tag/${src.tag}"; description = "Alternative (and improved) Home Connect integration for Home Assistant"; homepage = "https://github.com/ekutner/home-connect-hass"; - maintainers = with maintainers; [ kranzes ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ kranzes ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/indego/package.nix b/pkgs/servers/home-assistant/custom-components/indego/package.nix index ff0df6e511b7..8b480d5cfc7b 100644 --- a/pkgs/servers/home-assistant/custom-components/indego/package.nix +++ b/pkgs/servers/home-assistant/custom-components/indego/package.nix @@ -19,11 +19,11 @@ buildHomeAssistantComponent rec { dependencies = [ pyindego ]; - meta = with lib; { + meta = { description = "Bosch Indego lawn mower component"; changelog = "https://github.com/sander1988/Indego/releases/tag/${version}"; homepage = "https://github.com/sander1988/Indego"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/local_luftdaten/package.nix b/pkgs/servers/home-assistant/custom-components/local_luftdaten/package.nix index 34139c980a59..de343fbe27da 100644 --- a/pkgs/servers/home-assistant/custom-components/local_luftdaten/package.nix +++ b/pkgs/servers/home-assistant/custom-components/local_luftdaten/package.nix @@ -20,11 +20,11 @@ buildHomeAssistantComponent rec { # Replace undeclared async-timeout dependency with native asyncio.timeout patches = [ ./async-timeout.patch ]; - meta = with lib; { + meta = { changelog = "https://github.com/lichtteil/local_luftdaten/releases/tag/${version}"; description = "Custom component for Home Assistant that integrates your (own) local Luftdaten sensor (air quality/particle sensor) without using the cloud"; homepage = "https://github.com/lichtteil/local_luftdaten"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/localtuya/package.nix b/pkgs/servers/home-assistant/custom-components/localtuya/package.nix index b4bf9f47ba49..fc6ba3f89327 100644 --- a/pkgs/servers/home-assistant/custom-components/localtuya/package.nix +++ b/pkgs/servers/home-assistant/custom-components/localtuya/package.nix @@ -16,11 +16,11 @@ buildHomeAssistantComponent rec { hash = "sha256-TISiZchkLZ3AaNh622nolIyBjDgdJBQrc30oBHN/INE="; }; - meta = with lib; { + meta = { changelog = "https://github.com/xZetsubou/hass-localtuya/releases/tag/${version}"; description = "Home Assistant custom Integration for local handling of Tuya-based devices, fork from local-tuya"; homepage = "https://github.com/xZetsubou/hass-localtuya"; - maintainers = with maintainers; [ rhoriguchi ]; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ rhoriguchi ]; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/servers/home-assistant/custom-components/midea-air-appliances-lan/package.nix b/pkgs/servers/home-assistant/custom-components/midea-air-appliances-lan/package.nix index 8e4b7ca0059c..eb62d7767ac0 100644 --- a/pkgs/servers/home-assistant/custom-components/midea-air-appliances-lan/package.nix +++ b/pkgs/servers/home-assistant/custom-components/midea-air-appliances-lan/package.nix @@ -19,11 +19,11 @@ buildHomeAssistantComponent rec { dependencies = [ midea-beautiful-air ]; - meta = with lib; { + meta = { description = "Home Assistant custom component adding support for controlling Midea air conditioners and dehumidifiers on local network"; homepage = "https://github.com/nbogojevic/homeassistant-midea-air-appliances-lan"; changelog = "https://github.com/nbogojevic/homeassistant-midea-air-appliances-lan/releases/tag/v${version}"; - maintainers = with maintainers; [ k900 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/midea_ac/package.nix b/pkgs/servers/home-assistant/custom-components/midea_ac/package.nix index dc05f14b0144..0830f8692fb4 100644 --- a/pkgs/servers/home-assistant/custom-components/midea_ac/package.nix +++ b/pkgs/servers/home-assistant/custom-components/midea_ac/package.nix @@ -26,12 +26,12 @@ buildHomeAssistantComponent rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://github.com/mill1000/midea-ac-py/releases/tag/${src.tag}"; description = "Home Assistant custom integration to control Midea (and associated brands) air conditioners via LAN"; homepage = "https://github.com/mill1000/midea-ac-py"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa emilylange ]; diff --git a/pkgs/servers/home-assistant/custom-components/midea_ac_lan/package.nix b/pkgs/servers/home-assistant/custom-components/midea_ac_lan/package.nix index c8ba6fe59fef..f2d9c609fba7 100644 --- a/pkgs/servers/home-assistant/custom-components/midea_ac_lan/package.nix +++ b/pkgs/servers/home-assistant/custom-components/midea_ac_lan/package.nix @@ -19,11 +19,11 @@ buildHomeAssistantComponent rec { dependencies = [ midea-local ]; - meta = with lib; { + meta = { description = "Auto-configure and then control your Midea M-Smart devices (Air conditioner, Fan, Water heater, Washer, etc) via local area network"; homepage = "https://github.com/wuwentao/midea_ac_lan/"; changelog = "https://github.com/wuwentao/midea_ac_lan/releases/tag/v${version}"; - maintainers = with maintainers; [ k900 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/mitsubishi/package.nix b/pkgs/servers/home-assistant/custom-components/mitsubishi/package.nix index 193d4fa377f9..d0267fbfc86d 100644 --- a/pkgs/servers/home-assistant/custom-components/mitsubishi/package.nix +++ b/pkgs/servers/home-assistant/custom-components/mitsubishi/package.nix @@ -32,11 +32,11 @@ buildHomeAssistantComponent rec { pytest-homeassistant-custom-component ]; - meta = with lib; { + meta = { description = "Home Assistant Mitsubishi Air Conditioner Integration"; changelog = "https://github.com/pymitsubishi/homeassistant-mitsubishi/releases/tag/v${version}"; homepage = "https://github.com/pymitsubishi/homeassistant-mitsubishi"; - maintainers = with maintainers; [ uvnikita ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/moonraker/package.nix b/pkgs/servers/home-assistant/custom-components/moonraker/package.nix index 2cb9f006e74d..87e5b2804008 100644 --- a/pkgs/servers/home-assistant/custom-components/moonraker/package.nix +++ b/pkgs/servers/home-assistant/custom-components/moonraker/package.nix @@ -37,11 +37,11 @@ buildHomeAssistantComponent rec { #skip phases with nothing to do dontConfigure = true; - meta = with lib; { + meta = { changelog = "https://github.com/marcolivierarsenault/moonraker-home-assistant/releases/tag/${version}"; description = "Custom integration for Moonraker and Klipper in Home Assistant"; homepage = "https://github.com/marcolivierarsenault/moonraker-home-assistant"; - maintainers = with maintainers; [ _9R ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ _9R ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/nest_protect/package.nix b/pkgs/servers/home-assistant/custom-components/nest_protect/package.nix index 637bca16e298..3f57589feaec 100644 --- a/pkgs/servers/home-assistant/custom-components/nest_protect/package.nix +++ b/pkgs/servers/home-assistant/custom-components/nest_protect/package.nix @@ -18,11 +18,11 @@ buildHomeAssistantComponent rec { # AttributeError: 'async_generator' object has no attribute 'data' doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/iMicknl/ha-nest-protect/releases/tag/v${version}"; description = "Nest Protect integration for Home Assistant"; homepage = "https://github.com/iMicknl/ha-nest-protect"; - maintainers = with maintainers; [ jamiemagee ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/ntfy/package.nix b/pkgs/servers/home-assistant/custom-components/ntfy/package.nix index 689fc37c9417..e839fe073bc4 100644 --- a/pkgs/servers/home-assistant/custom-components/ntfy/package.nix +++ b/pkgs/servers/home-assistant/custom-components/ntfy/package.nix @@ -21,13 +21,13 @@ buildHomeAssistantComponent rec { requests ]; - meta = with lib; { + meta = { description = "Send notifications with ntfy.sh and selfhosted ntfy-servers"; homepage = "https://github.com/hbrennhaeuser/homeassistant_integration_ntfy"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ koral baksa ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/servers/home-assistant/custom-components/omnik_inverter/package.nix b/pkgs/servers/home-assistant/custom-components/omnik_inverter/package.nix index 0342372aa2ce..91edb53b71ff 100644 --- a/pkgs/servers/home-assistant/custom-components/omnik_inverter/package.nix +++ b/pkgs/servers/home-assistant/custom-components/omnik_inverter/package.nix @@ -23,11 +23,11 @@ buildHomeAssistantComponent rec { doCheck = false; # no tests - meta = with lib; { + meta = { changelog = "https://github.com/robbinjanssen/home-assistant-omnik-inverter/releases/tag/v${version}"; description = "Omnik Inverter integration will scrape data from an Omnik inverter connected to your local network"; homepage = "https://github.com/robbinjanssen/home-assistant-omnik-inverter"; - maintainers = with maintainers; [ _9R ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ _9R ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/prometheus_sensor/package.nix b/pkgs/servers/home-assistant/custom-components/prometheus_sensor/package.nix index 76d064d5ad0d..fb2da022a49a 100644 --- a/pkgs/servers/home-assistant/custom-components/prometheus_sensor/package.nix +++ b/pkgs/servers/home-assistant/custom-components/prometheus_sensor/package.nix @@ -16,11 +16,11 @@ buildHomeAssistantComponent rec { hash = "sha256-d13KJXgRPWrR2ilpEgZbVS/a6/y7DBRdEiGLpBaBsPc="; }; - meta = with lib; { + meta = { changelog = "https://github.com/mweinelt/ha-prometheus-sensor/blob/${version}/CHANGELOG.md"; description = "Import prometheus query results into Home Assistant"; homepage = "https://github.com/mweinelt/ha-prometheus-sensor"; - maintainers = with maintainers; [ hexa ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/rct_power/package.nix b/pkgs/servers/home-assistant/custom-components/rct_power/package.nix index d22d017e53c2..5e90be09b62c 100644 --- a/pkgs/servers/home-assistant/custom-components/rct_power/package.nix +++ b/pkgs/servers/home-assistant/custom-components/rct_power/package.nix @@ -28,11 +28,11 @@ buildHomeAssistantComponent rec { doCheck = false; # no tests - meta = with lib; { + meta = { changelog = "https://github.com/weltenwort/home-assistant-rct-power-integration/releases/tag/${src.tag}"; description = "Custom integration for RCT Power Inverters"; homepage = "https://github.com/weltenwort/home-assistant-rct-power-integration"; - maintainers = with maintainers; [ _9R ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ _9R ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/samsungtv-smart/package.nix b/pkgs/servers/home-assistant/custom-components/samsungtv-smart/package.nix index f9174d72a2a5..187779bfd159 100644 --- a/pkgs/servers/home-assistant/custom-components/samsungtv-smart/package.nix +++ b/pkgs/servers/home-assistant/custom-components/samsungtv-smart/package.nix @@ -27,11 +27,11 @@ buildHomeAssistantComponent rec { wakeonlan ]; - meta = with lib; { + meta = { changelog = "https://github.com/ollo69/ha-samsungtv-smart/releases/tag/v${version}"; description = "Home Assistant Samsung TV Integration"; homepage = "https://github.com/ollo69/ha-samsungtv-smart"; - maintainers = with maintainers; [ mindstorms6 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ mindstorms6 ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/home-assistant/custom-components/sensi/package.nix b/pkgs/servers/home-assistant/custom-components/sensi/package.nix index e12aaa385a76..103826c278b0 100644 --- a/pkgs/servers/home-assistant/custom-components/sensi/package.nix +++ b/pkgs/servers/home-assistant/custom-components/sensi/package.nix @@ -20,11 +20,11 @@ buildHomeAssistantComponent rec { websockets ]; - meta = with lib; { + meta = { changelog = "https://github.com/iprak/sensi/releases/tag/v${version}"; description = "HomeAssistant integration for Sensi thermostat"; homepage = "https://github.com/iprak/sensi"; - maintainers = with maintainers; [ ivan ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ivan ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/smartir/package.nix b/pkgs/servers/home-assistant/custom-components/smartir/package.nix index a7d8be601fb0..d01c8463b5ff 100644 --- a/pkgs/servers/home-assistant/custom-components/smartir/package.nix +++ b/pkgs/servers/home-assistant/custom-components/smartir/package.nix @@ -30,11 +30,11 @@ buildHomeAssistantComponent rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/smartHomeHub/SmartIR/releases/tag/v${version}"; description = "Integration for Home Assistant to control climate, TV and fan devices via IR/RF controllers (Broadlink, Xiaomi, MQTT, LOOKin, ESPHome)"; homepage = "https://github.com/smartHomeHub/SmartIR"; - maintainers = with maintainers; [ azuwis ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ azuwis ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/smartthinq-sensors/package.nix b/pkgs/servers/home-assistant/custom-components/smartthinq-sensors/package.nix index 20694c6dce63..c01a2804632d 100644 --- a/pkgs/servers/home-assistant/custom-components/smartthinq-sensors/package.nix +++ b/pkgs/servers/home-assistant/custom-components/smartthinq-sensors/package.nix @@ -25,11 +25,11 @@ buildHomeAssistantComponent rec { xmltodict ]; - meta = with lib; { + meta = { description = "Home Assistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface"; homepage = "https://github.com/ollo69/ha-smartthinq-sensors"; changelog = "https://github.com/ollo69/ha-smartthinq-sensors/releases/tag/v${version}"; - maintainers = with maintainers; [ k900 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ k900 ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix b/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix index 04fbba9c5ef1..bb4e0b6ce674 100644 --- a/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix +++ b/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix @@ -24,11 +24,11 @@ buildHomeAssistantComponent rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Home Assistant integration for the SolisCloud PV Monitoring portal via SolisCloud API"; changelog = "https://github.com/hultenvp/solis-sensor/releases/tag/v${version}"; homepage = "https://github.com/hultenvp/solis-sensor"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/somweb/package.nix b/pkgs/servers/home-assistant/custom-components/somweb/package.nix index ed259b5d1abb..9f4f90b3d09a 100644 --- a/pkgs/servers/home-assistant/custom-components/somweb/package.nix +++ b/pkgs/servers/home-assistant/custom-components/somweb/package.nix @@ -19,11 +19,11 @@ buildHomeAssistantComponent rec { dependencies = [ somweb ]; - meta = with lib; { + meta = { changelog = "https://github.com/taarskog/home-assistant-component-somweb/releases/tag/v${version}"; description = "Custom component for Home Assistant to manage garage doors and gates by Sommer through SOMweb"; homepage = "https://github.com/taarskog/home-assistant-component-somweb"; - maintainers = with maintainers; [ uvnikita ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/systemair/package.nix b/pkgs/servers/home-assistant/custom-components/systemair/package.nix index 9fd91c02a641..f9c24121dd45 100644 --- a/pkgs/servers/home-assistant/custom-components/systemair/package.nix +++ b/pkgs/servers/home-assistant/custom-components/systemair/package.nix @@ -30,11 +30,11 @@ buildHomeAssistantComponent rec { aiohttp ]; - meta = with lib; { + meta = { changelog = "https://github.com/AN3Orik/systemair/releases/tag/v${version}"; description = "Home Assistant component for Systemair SAVE ventilation units"; homepage = "https://github.com/AN3Orik/systemair"; - maintainers = with maintainers; [ uvnikita ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ uvnikita ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/tuya_local/package.nix b/pkgs/servers/home-assistant/custom-components/tuya_local/package.nix index 30502aa036de..50c50973c877 100644 --- a/pkgs/servers/home-assistant/custom-components/tuya_local/package.nix +++ b/pkgs/servers/home-assistant/custom-components/tuya_local/package.nix @@ -25,11 +25,11 @@ buildHomeAssistantComponent rec { tuya-device-sharing-sdk ]; - meta = with lib; { + meta = { description = "Local support for Tuya devices in Home Assistant"; homepage = "https://github.com/make-all/tuya-local"; changelog = "https://github.com/make-all/tuya-local/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ pathob ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pathob ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/waste_collection_schedule/package.nix b/pkgs/servers/home-assistant/custom-components/waste_collection_schedule/package.nix index 9e447f443ac5..4211a2ce3bf4 100644 --- a/pkgs/servers/home-assistant/custom-components/waste_collection_schedule/package.nix +++ b/pkgs/servers/home-assistant/custom-components/waste_collection_schedule/package.nix @@ -31,11 +31,11 @@ buildHomeAssistantComponent rec { pypdf ]; - meta = with lib; { + meta = { changelog = "https://github.com/mampfes/hacs_waste_collection_schedule/releases/tag/${version}"; description = "Home Assistant integration framework for (garbage collection) schedules"; homepage = "https://github.com/mampfes/hacs_waste_collection_schedule"; - maintainers = with maintainers; [ jamiemagee ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/xiaomi_gateway3/package.nix b/pkgs/servers/home-assistant/custom-components/xiaomi_gateway3/package.nix index fda6c22cee4c..2685f62381cc 100644 --- a/pkgs/servers/home-assistant/custom-components/xiaomi_gateway3/package.nix +++ b/pkgs/servers/home-assistant/custom-components/xiaomi_gateway3/package.nix @@ -22,11 +22,11 @@ buildHomeAssistantComponent rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/AlexxIT/XiaomiGateway3/releases/tag/v${version}"; description = "Home Assistant custom component for control Xiaomi Multimode Gateway (aka Gateway 3), Xiaomi Multimode Gateway 2, Aqara Hub E1 on default firmwares over LAN"; homepage = "https://github.com/AlexxIT/XiaomiGateway3"; - maintainers = with maintainers; [ azuwis ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ azuwis ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix b/pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix index 81a30f8438b2..ec468dd58840 100644 --- a/pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix +++ b/pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix @@ -21,11 +21,11 @@ buildHomeAssistantComponent rec { yoto-api ]; - meta = with lib; { + meta = { changelog = "https://github.com/cdnninja/yoto_ha/releases/tag/${src.tag}"; description = "Home Assistant Integration for Yoto"; homepage = "https://github.com/cdnninja/yoto_ha"; - maintainers = with maintainers; [ seberm ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ seberm ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/apexcharts-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/apexcharts-card/package.nix index 62cccba51338..e4f8d89c041b 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/apexcharts-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/apexcharts-card/package.nix @@ -26,12 +26,12 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lovelace card to display advanced graphs and charts based on ApexChartsJS for Home Assistant"; homepage = "https://github.com/RomRider/apexcharts-card"; changelog = "https://github.com/RomRider/apexcharts-card/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix index d58d8e61da3d..6c79dffa15f6 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/auto-entities/package.nix @@ -25,11 +25,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Automatically populate the entities-list of lovelace cards"; homepage = "https://github.com/thomasloven/lovelace-auto-entities"; changelog = "https://github.com/thomasloven/lovelace-auto-entities/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with maintainers; [ kranzes ]; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/bubble-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/bubble-card/package.nix index e2be1e62ee51..09c6939296f6 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/bubble-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/bubble-card/package.nix @@ -31,11 +31,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/Clooos/bubble-card/releases/tag/v${version}"; description = "Bubble Card is a minimalist card collection for Home Assistant with a nice pop-up touch"; homepage = "https://github.com/Clooos/Bubble-Card"; - license = licenses.mit; - maintainers = with maintainers; [ pta2002 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pta2002 ]; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix index ec2dd2328ea1..44acd8cb224d 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix @@ -28,11 +28,11 @@ buildNpmPackage rec { passthru.entrypoint = "card-mod.js"; - meta = with lib; { + meta = { description = "Add CSS styles to (almost) any lovelace card"; homepage = "https://github.com/thomasloven/lovelace-card-mod"; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/decluttering-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/decluttering-card/package.nix index bed75c9c63b7..10e7425f0db8 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/decluttering-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/decluttering-card/package.nix @@ -26,12 +26,12 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Declutter your lovelace configuration with the help of this card"; homepage = "https://github.com/custom-cards/decluttering-card"; changelog = "https://github.com/custom-cards/decluttering-card/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/hourly-weather/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/hourly-weather/package.nix index f1ce637f5048..0b36dd0b246b 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/hourly-weather/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/hourly-weather/package.nix @@ -28,11 +28,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Hourly weather card for Home Assistant. Visualize upcoming weather conditions as a colored horizontal bar"; homepage = "https://github.com/decompil3d/lovelace-hourly-weather"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/lg-webos-remote-control/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/lg-webos-remote-control/package.nix index 674dd3b4e741..21a5e5fb99e6 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/lg-webos-remote-control/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/lg-webos-remote-control/package.nix @@ -28,11 +28,11 @@ buildNpmPackage rec { passthru.entrypoint = "lg-remote-control.js"; - meta = with lib; { + meta = { description = "Remote Control for LG TV WebOS"; homepage = "https://github.com/madmicio/LG-WebOS-Remote-Control"; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/package.nix index 0f467b690166..7a6fbb975da7 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/light-entity-card/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { passthru.entrypoint = "light-entity-card.js"; - meta = with lib; { + meta = { description = "Control any light or switch entity"; homepage = "https://github.com/ljmerza/light-entity-card"; changelog = "https://github.com/ljmerza/light-entity-card/releases/tag/${version}"; - maintainers = with maintainers; [ SuperSandro2000 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/mini-graph-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/mini-graph-card/package.nix index 31691cb11b13..611b9eea18fe 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/mini-graph-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/mini-graph-card/package.nix @@ -28,11 +28,11 @@ buildNpmPackage rec { passthru.entrypoint = "mini-graph-card-bundle.js"; - meta = with lib; { + meta = { changelog = "https://github.com/kalkih/mini-graph-card/releases/tag/v${version}"; description = "Minimalistic graph card for Home Assistant Lovelace UI"; homepage = "https://github.com/kalkih/mini-graph-card"; - maintainers = with maintainers; [ hexa ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/mini-media-player/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/mini-media-player/package.nix index 1779b31937af..7420d5621ae1 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/mini-media-player/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/mini-media-player/package.nix @@ -28,11 +28,11 @@ buildNpmPackage rec { passthru.entrypoint = "mini-media-player-bundle.js"; - meta = with lib; { + meta = { changelog = "https://github.com/kalkih/mini-media-player/releases/tag/v${version}"; description = "Minimalistic media card for Home Assistant Lovelace UI"; homepage = "https://github.com/kalkih/mini-media-player"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/mushroom/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/mushroom/package.nix index e053b4fe5bbc..ec721d61d8c2 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/mushroom/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/mushroom/package.nix @@ -26,11 +26,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/piitaya/lovelace-mushroom/releases/tag/v${version}"; description = "Mushroom Cards - Build a beautiful dashboard easily"; homepage = "https://github.com/piitaya/lovelace-mushroom"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/rmv-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/rmv-card/package.nix index ec1fc6b201e0..16519311cb11 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/rmv-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/rmv-card/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Custom card for the RMV component"; homepage = "https://github.com/custom-cards/rmv-card"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/swipe-navigation/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/swipe-navigation/package.nix index 3c646c63bb04..aeae930139d3 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/swipe-navigation/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/swipe-navigation/package.nix @@ -34,11 +34,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/zanna-37/hass-swipe-navigation/releases/tag/v${version}"; description = "Swipe through Home Assistant Dashboard views on mobile"; homepage = "https://github.com/zanna-37/hass-swipe-navigation"; - license = licenses.mit; - maintainers = with maintainers; [ jpinz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpinz ]; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/template-entity-row/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/template-entity-row/package.nix index d4fbd31640ec..83d55ea094a4 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/template-entity-row/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/template-entity-row/package.nix @@ -26,12 +26,12 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/thomasloven/lovelace-template-entity-row/releases/tag/${src.rev}"; description = "Display whatever you want in an entities card row"; homepage = "https://github.com/thomasloven/lovelace-template-entity-row"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix index f5b7aa7bfe47..46f5cc835f57 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { passthru.entrypoint = "universal-remote-card.min.js"; - meta = with lib; { + meta = { description = "Completely customizable universal remote card for Home Assistant. Supports multiple platforms out of the box"; homepage = "https://github.com/Nerwyn/android-tv-card"; - license = licenses.asl20; - maintainers = with maintainers; [ k900 ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ k900 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/vacuum-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/vacuum-card/package.nix index 1b384501eb03..372b798f08b9 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/vacuum-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/vacuum-card/package.nix @@ -28,11 +28,11 @@ buildNpmPackage rec { passthru.entrypoint = "vacuum-card.js"; - meta = with lib; { + meta = { description = "Vacuum cleaner card for Home Assistant Lovelace UI"; homepage = "https://github.com/denysdovhan/vacuum-card"; - license = licenses.mit; - maintainers = with maintainers; [ baksa ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ baksa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/valetudo-map-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/valetudo-map-card/package.nix index d08b8dd0ba60..e8fe72b7be89 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/valetudo-map-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/valetudo-map-card/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { passthru.entrypoint = "valetudo-map-card.js"; - meta = with lib; { + meta = { description = "Display the map from a valetudo-enabled robot in a home assistant dashboard card"; homepage = "https://github.com/Hypfer/lovelace-valetudo-map-card"; - license = licenses.mit; - maintainers = with maintainers; [ k900 ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ k900 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/versatile-thermostat-ui-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/versatile-thermostat-ui-card/package.nix index 36a77659ef08..4f152446b223 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/versatile-thermostat-ui-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/versatile-thermostat-ui-card/package.nix @@ -27,11 +27,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { changelog = "https://github.com/jmcollin78/versatile-thermostat-ui-card/releases/tag/${version}"; description = "Home Assistant card for the Versatile Thermostat integration"; homepage = "https://github.com/jmcollin78/versatile-thermostat-ui-card"; - license = licenses.mit; - maintainers = with maintainers; [ pwoelfel ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pwoelfel ]; }; } diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index edb335c54dd9..e882e2ac4771 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -526,13 +526,13 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://home-assistant.io/"; changelog = "https://github.com/home-assistant/core/releases/tag/${src.tag}"; description = "Open source home automation that puts local control and privacy first"; - license = licenses.asl20; - teams = [ teams.home-assistant ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + teams = [ lib.teams.home-assistant ]; + platforms = lib.platforms.linux; mainProgram = "hass"; }; } diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix index 7f86786d442b..0d1b4311f2ae 100644 --- a/pkgs/servers/home-assistant/frontend.nix +++ b/pkgs/servers/home-assistant/frontend.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { # no Python tests implemented doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/home-assistant/frontend/releases/tag/${version}"; description = "Frontend for Home Assistant"; homepage = "https://github.com/home-assistant/frontend"; - license = licenses.asl20; - teams = [ teams.home-assistant ]; + license = lib.licenses.asl20; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/servers/home-assistant/intents.nix b/pkgs/servers/home-assistant/intents.nix index 70d148a252fd..ad059c8c2f1a 100644 --- a/pkgs/servers/home-assistant/intents.nix +++ b/pkgs/servers/home-assistant/intents.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { "intents/tests" ]; - meta = with lib; { + meta = { changelog = "https://github.com/OHF-Voice/intents-package/releases/tag/${src.tag}"; description = "Intents to be used with Home Assistant"; homepage = "https://github.com/OHF-Voice/intents-package"; - license = licenses.cc-by-40; - teams = [ teams.home-assistant ]; + license = lib.licenses.cc-by-40; + teams = [ lib.teams.home-assistant ]; }; } diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index e8cb9ed3c53b..762aa9a757dc 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -157,11 +157,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Apache HTTPD, the world's most popular web server"; homepage = "https://httpd.apache.org/"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ lovek323 ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_auth_mellon/default.nix b/pkgs/servers/http/apache-modules/mod_auth_mellon/default.nix index 3691aa8e80bb..151e409c0a77 100644 --- a/pkgs/servers/http/apache-modules/mod_auth_mellon/default.nix +++ b/pkgs/servers/http/apache-modules/mod_auth_mellon/default.nix @@ -59,13 +59,13 @@ stdenv.mkDerivation rec { cp ./.libs/mod_auth_mellon.so $out/modules ''; - meta = with lib; { + meta = { homepage = "https://github.com/latchset/mod_auth_mellon"; description = "Apache module with a simple SAML 2.0 service provider"; mainProgram = "mellon_create_metadata.sh"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ womfoo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ womfoo ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_ca/default.nix b/pkgs/servers/http/apache-modules/mod_ca/default.nix index 4eb67f02c9a0..4e628ab48bcf 100644 --- a/pkgs/servers/http/apache-modules/mod_ca/default.nix +++ b/pkgs/servers/http/apache-modules/mod_ca/default.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax CA service module"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_ca/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_crl/default.nix b/pkgs/servers/http/apache-modules/mod_crl/default.nix index 340bc3a962ed..eb840288de78 100644 --- a/pkgs/servers/http/apache-modules/mod_crl/default.nix +++ b/pkgs/servers/http/apache-modules/mod_crl/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax module for Certificate Revocation Lists"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_crl/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_cspnonce/default.nix b/pkgs/servers/http/apache-modules/mod_cspnonce/default.nix index 2ee6f59041a4..7845140a4a88 100644 --- a/pkgs/servers/http/apache-modules/mod_cspnonce/default.nix +++ b/pkgs/servers/http/apache-modules/mod_cspnonce/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Apache2 module that makes it dead simple to add nonce values to the CSP"; homepage = "https://github.com/wyattoday/mod_cspnonce"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dasj19 ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dasj19 ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_csr/default.nix b/pkgs/servers/http/apache-modules/mod_csr/default.nix index 0fb6d8d0a0ac..5e8b8faa6b40 100644 --- a/pkgs/servers/http/apache-modules/mod_csr/default.nix +++ b/pkgs/servers/http/apache-modules/mod_csr/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax CA service module to handle Certificate Signing Requests"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_csr/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_dnssd/default.nix b/pkgs/servers/http/apache-modules/mod_dnssd/default.nix index eba1fce8eb12..74778a1209f6 100644 --- a/pkgs/servers/http/apache-modules/mod_dnssd/default.nix +++ b/pkgs/servers/http/apache-modules/mod_dnssd/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { stripDebugList=modules ''; - meta = with lib; { + meta = { homepage = "https://0pointer.de/lennart/projects/mod_dnssd"; description = "Provide Zeroconf support via DNS-SD using Avahi"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_itk/default.nix b/pkgs/servers/http/apache-modules/mod_itk/default.nix index 514be6f12994..baa050b5e876 100644 --- a/pkgs/servers/http/apache-modules/mod_itk/default.nix +++ b/pkgs/servers/http/apache-modules/mod_itk/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "MPM (Multi-Processing Module) for the Apache web server"; - maintainers = [ maintainers.zupo ]; + maintainers = [ lib.maintainers.zupo ]; homepage = "http://mpm-itk.sesse.net/"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/http/apache-modules/mod_mbtiles/default.nix b/pkgs/servers/http/apache-modules/mod_mbtiles/default.nix index abf2ddaa3f52..12296de0bf0b 100644 --- a/pkgs/servers/http/apache-modules/mod_mbtiles/default.nix +++ b/pkgs/servers/http/apache-modules/mod_mbtiles/default.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/systemed/mod_mbtiles"; description = "Serve tiles with Apache directly from an .mbtiles file"; - license = licenses.free; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.free; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/http/apache-modules/mod_ocsp/default.nix b/pkgs/servers/http/apache-modules/mod_ocsp/default.nix index 2f4b754cfc6b..92bdbcee2fa9 100644 --- a/pkgs/servers/http/apache-modules/mod_ocsp/default.nix +++ b/pkgs/servers/http/apache-modules/mod_ocsp/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax CA service modules of OCSP Online Certificate Validation"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_csr/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_perl/default.nix b/pkgs/servers/http/apache-modules/mod_perl/default.nix index 09089855d1cd..4c08d2aaf22d 100644 --- a/pkgs/servers/http/apache-modules/mod_perl/default.nix +++ b/pkgs/servers/http/apache-modules/mod_perl/default.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Integration of perl with the Apache2 web server"; homepage = "https://perl.apache.org/download/index.html"; changelog = "https://github.com/apache/mod_perl/blob/trunk/Changes"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "mp2bug"; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/http/apache-modules/mod_pkcs12/default.nix b/pkgs/servers/http/apache-modules/mod_pkcs12/default.nix index 0f8962b275c0..d7a216b6ee07 100644 --- a/pkgs/servers/http/apache-modules/mod_pkcs12/default.nix +++ b/pkgs/servers/http/apache-modules/mod_pkcs12/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax CA service modules for PKCS#12 format files"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_pkcs12/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_scep/default.nix b/pkgs/servers/http/apache-modules/mod_scep/default.nix index 40561e41ba88..a65f9ae40d69 100644 --- a/pkgs/servers/http/apache-modules/mod_scep/default.nix +++ b/pkgs/servers/http/apache-modules/mod_scep/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax CA service modules for SCEP (Automatic ceritifcate issue/renewal)"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_scep/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_spkac/default.nix b/pkgs/servers/http/apache-modules/mod_spkac/default.nix index fc4c796e6eda..eee9762d988e 100644 --- a/pkgs/servers/http/apache-modules/mod_spkac/default.nix +++ b/pkgs/servers/http/apache-modules/mod_spkac/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax CA service module for handling the Netscape keygen requests"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_spkac/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_tile/default.nix b/pkgs/servers/http/apache-modules/mod_tile/default.nix index 5f375343ba69..c7400c6d37f0 100644 --- a/pkgs/servers/http/apache-modules/mod_tile/default.nix +++ b/pkgs/servers/http/apache-modules/mod_tile/default.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/openstreetmap/mod_tile"; description = "Efficiently render and serve OpenStreetMap tiles using Apache and Mapnik"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ jglukasik ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ jglukasik ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/http/apache-modules/mod_timestamp/default.nix b/pkgs/servers/http/apache-modules/mod_timestamp/default.nix index 91323c62e7b1..d3dc6694d9dd 100644 --- a/pkgs/servers/http/apache-modules/mod_timestamp/default.nix +++ b/pkgs/servers/http/apache-modules/mod_timestamp/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { url = "https://redwax.eu/dist/rs/"; }; - meta = with lib; { + meta = { description = "RedWax CA service module for issuing signed timestamps"; homepage = "https://redwax.eu"; changelog = "https://source.redwax.eu/projects/RS/repos/mod_timestamp/browse/ChangeLog"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ dirkx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dirkx ]; }; } diff --git a/pkgs/servers/http/couchdb/3.nix b/pkgs/servers/http/couchdb/3.nix index 4f3239c6cd84..6c5e67fc4ce1 100644 --- a/pkgs/servers/http/couchdb/3.nix +++ b/pkgs/servers/http/couchdb/3.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) couchdb; }; - meta = with lib; { + meta = { description = "Database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API"; homepage = "https://couchdb.apache.org"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ lostnet ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ lostnet ]; broken = stdenv.isDarwin && stdenv.isAarch64; }; } diff --git a/pkgs/servers/http/jetty/default.nix b/pkgs/servers/http/jetty/default.nix index 3665c7a04569..f0a92e993a41 100644 --- a/pkgs/servers/http/jetty/default.nix +++ b/pkgs/servers/http/jetty/default.nix @@ -32,17 +32,17 @@ let rev-prefix = "jetty-"; }; - meta = with lib; { + meta = { changelog = "https://github.com/jetty/jetty.project/releases/tag/jetty-${version}"; description = "Web server and javax.servlet container"; homepage = "https://jetty.org/"; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = with licenses; [ + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = with lib.licenses; [ asl20 epl10 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ emmanuelrosa anthonyroussel ]; diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix index c414553c676c..439306eaad26 100644 --- a/pkgs/servers/http/nginx/modules.nix +++ b/pkgs/servers/http/nginx/modules.nix @@ -53,10 +53,10 @@ let "${src}/patch/${patchName}.patch" ]; - meta = with lib; { + meta = { description = "Forward proxy module for CONNECT request handling"; homepage = "https://github.com/chobits/ngx_http_proxy_connect_module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -77,10 +77,10 @@ let inputs = [ openssl ]; - meta = with lib; { + meta = { description = "Validates Akamai v2 query string tokens"; homepage = "https://github.com/kaltura/nginx-akamai-token-validate-module"; - license = with licenses; [ agpl3Only ]; + license = with lib.licenses; [ agpl3Only ]; maintainers = [ ]; }; }; @@ -108,10 +108,10 @@ let })) ]; - meta = with lib; { + meta = { description = "Integrate ARPA2 Resource ACLs into nginx"; homepage = "https://gitlab.com/arpa2/nginx-auth-a2aclr"; - license = with licenses; [ isc ]; + license = with lib.licenses; [ isc ]; maintainers = [ ]; }; }; @@ -126,10 +126,10 @@ let sha256 = "10z67g40w7wpd13fwxyknkbg3p6hn61i4v8xw6lh27br29v1y6h9"; }; - meta = with lib; { + meta = { description = "Proxy to authenticated AWS services"; homepage = "https://github.com/anomalizer/ngx_aws_auth"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -154,10 +154,10 @@ let inputs = [ brotli ]; - meta = with lib; { + meta = { description = "Brotli compression"; homepage = "https://github.com/google/ngx_brotli"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -172,10 +172,10 @@ let sha256 = "0va4jz36mxj76nmq05n3fgnpdad30cslg7c10vnlhdmmic9vqncd"; }; - meta = with lib; { + meta = { description = "Adds ability to purge content from FastCGI, proxy, SCGI and uWSGI caches"; homepage = "https://github.com/nginx-modules/ngx_cache_purge"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -190,10 +190,10 @@ let sha256 = "1idj0cqmfsdqawjcqpr1fsq670fdki51ksqk2lslfpcs3yrfjpqh"; }; - meta = with lib; { + meta = { description = "Collection of small and useful nginx add-ons"; homepage = "https://github.com/FRiCKLE/ngx_coolkit"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -210,10 +210,10 @@ let inputs = [ expat ]; - meta = with lib; { + meta = { description = "WebDAV PROPFIND,OPTIONS,LOCK,UNLOCK support"; homepage = "https://github.com/arut/nginx-dav-ext-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -228,10 +228,10 @@ let hash = "sha256-/RQUVHwIdNqm3UemQ/oNs2ksg8beziA4Pxejd5Yg0Pg="; }; - meta = with lib; { + meta = { description = "Adds additional generic tools that module developers can use in their own modules"; homepage = "https://github.com/vision5/ngx_devel_kit"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; }; }; @@ -248,10 +248,10 @@ let hash = "sha256-K7oOE0yxPYLf+3YMVbBsncpHRpGHXjs/8B5QPO3MQC4="; }; - meta = with lib; { + meta = { description = "Brings echo, sleep, time, exec and more shell-style goodies to Nginx"; homepage = "https://github.com/openresty/echo-nginx-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -266,11 +266,11 @@ let sha256 = "0nar45lp3jays3p6b01a78a6gwh6v0snpzcncgiphcqmj5kw8ipg"; }; - meta = with lib; { + meta = { description = "Fancy indexes module"; homepage = "https://github.com/aperezdc/ngx-fancyindex"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ aneeshusa ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ aneeshusa ]; }; }; @@ -284,10 +284,10 @@ let sha256 = "1ycb5zd9sw60ra53jpak1m73zwrjikwhrrh9q6266h1mlyns7zxm"; }; - meta = with lib; { + meta = { description = "Fluentd data collector"; homepage = "https://github.com/fluent/nginx-fluentd-module"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; maintainers = [ ]; }; }; @@ -304,11 +304,11 @@ let inputs = [ libmaxminddb ]; - meta = with lib; { + meta = { description = "Creates variables with values from the maxmind geoip2 databases"; homepage = "https://github.com/leev/ngx_http_geoip2_module"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ pinpox ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ pinpox ]; }; }; @@ -338,10 +338,10 @@ let inputs = [ libbsd ]; - meta = with lib; { + meta = { description = "IP address anonymizer"; homepage = "https://github.com/masonicboom/ipscrub"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; }; }; @@ -356,10 +356,10 @@ let sha256 = "0kkrd08zpcwx938i2is07vq6pgjkvn97xzjab0g4zaz8bivgmjp8"; }; - meta = with lib; { + meta = { description = "Limit the total speed from the specific user"; homepage = "https://github.com/yaoweibin/nginx_limit_speed_module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -374,10 +374,10 @@ let sha256 = "1kpnhl4b50zim84z22ahqxyxfq4jv8ab85kzsy2n5ciqbyg491lz"; }; - meta = with lib; { + meta = { description = "HTTP live module"; homepage = "https://github.com/arut/nginx-live-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -410,10 +410,10 @@ let allowMemoryWriteExecute = true; - meta = with lib; { + meta = { description = "Embed the Power of Lua"; homepage = "https://github.com/openresty/lua-nginx-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -431,10 +431,10 @@ let inputs = [ luajit_openresty ]; allowMemoryWriteExecute = true; - meta = with lib; { + meta = { description = "Expose Lua API to ngx_lua for Nginx upstreams"; homepage = "https://github.com/openresty/lua-upstream-nginx-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -459,10 +459,10 @@ let yajl ]; - meta = with lib; { + meta = { description = "Open source, cross platform web application firewall (WAF)"; homepage = "https://github.com/SpiderLabs/ModSecurity"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; maintainers = [ ]; }; }; @@ -477,11 +477,11 @@ let sha256 = "sha256-X+ygIesQ9PGm5yM+u1BOLYVpm1172P8jWwXNr3ixFY4="; }; - meta = with lib; { + meta = { description = "Set, add, and clear arbitrary output headers"; homepage = "https://github.com/openresty/headers-more-nginx-module"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; }; @@ -495,10 +495,10 @@ let sha256 = "12dxcyy6wna1fccl3a9lnsbymd6p4apnwz6c24w74v97qvpfdxqd"; }; - meta = with lib; { + meta = { description = "MPEG-TS Live Module"; homepage = "https://github.com/arut/nginx-ts-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -515,10 +515,10 @@ let } + "/naxsi_src"; - meta = with lib; { + meta = { description = "Open-source, high performance, low rules maintenance WAF"; homepage = "https://github.com/nbs-system/naxsi"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; maintainers = [ ]; }; }; @@ -550,11 +550,11 @@ let passthru.tests = nixosTests.nginx-njs; - meta = with lib; { + meta = { description = "Subset of the JavaScript language that allows extending nginx functionality"; homepage = "https://nginx.org/en/docs/njs/"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ jvanbruegge ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ jvanbruegge ]; }; }; @@ -590,10 +590,10 @@ let ]; # psol deps allowMemoryWriteExecute = true; - meta = with lib; { + meta = { description = "Automatic PageSpeed optimization"; homepage = "https://github.com/apache/incubator-pagespeed-ngx"; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; maintainers = [ ]; }; }; @@ -610,10 +610,10 @@ let inputs = [ pam ]; - meta = with lib; { + meta = { description = "Use PAM for simple http authentication"; homepage = "https://github.com/sto/ngx_http_auth_pam_module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -628,10 +628,10 @@ let sha256 = "00fii8bjvyipq6q47xhjhm3ylj4rhzmlk3qwxmfpdn37j7bc8p8c"; }; - meta = with lib; { + meta = { description = "Pinba module for nginx"; homepage = "https://github.com/tony2001/ngx_http_pinba_module"; - license = with licenses; [ unfree ]; # no license in repo + license = with lib.licenses; [ unfree ]; # no license in repo maintainers = [ ]; }; }; @@ -646,10 +646,10 @@ let sha256 = "0ijka32b37dl07k2jl48db5a32ix43jaczrpjih84cvq8yph0jjr"; }; - meta = with lib; { + meta = { description = "Pure stream http push technology"; homepage = "https://github.com/wandenberg/nginx-push-stream-module"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; maintainers = [ ]; }; }; @@ -664,10 +664,10 @@ let sha256 = "0y45bswk213yhkc2v1xca2rnsxrhx8v6azxz9pvi71vvxcggqv6h"; }; - meta = with lib; { + meta = { description = "Media Streaming Server"; homepage = "https://github.com/arut/nginx-rtmp-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -685,10 +685,10 @@ let inputs = [ openssl ]; - meta = with lib; { + meta = { description = "Generates CDN tokens, either as a cookie or as a query string parameter"; homepage = "https://github.com/kaltura/nginx-secure-token-module"; - license = with licenses; [ agpl3Only ]; + license = with lib.licenses; [ agpl3Only ]; maintainers = [ ]; }; }; @@ -703,10 +703,10 @@ let hash = "sha256-jMMj3Ki1uSfQzagoB/O4NarxPjiaF9YRwjSKo+cgMxo="; }; - meta = with lib; { + meta = { description = "Various set_xxx directives added to the rewrite module (md5/sha1, sql/json quoting and many more)"; homepage = "https://github.com/openresty/set-misc-nginx-module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -721,10 +721,10 @@ let sha256 = "136zjipaz7iikgcgqwdv1mrh3ya996zyzbkdy6d4k07s2h9g7hy6"; }; - meta = with lib; { + meta = { description = "Shibboleth auth request"; homepage = "https://github.com/nginx-shib/nginx-http-shibboleth"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -739,10 +739,10 @@ let sha256 = "1x5hm6r0dkm02ffny8kjd7mmq8przyd9amg2qvy5700x6lb63pbs"; }; - meta = with lib; { + meta = { description = "Implements a collection of augmented statistics based on HTTP-codes and upstreams response time"; homepage = "https://github.com/goldenclone/nginx-sla"; - license = with licenses; [ unfree ]; # no license in repo + license = with lib.licenses; [ unfree ]; # no license in repo maintainers = [ ]; }; }; @@ -757,10 +757,10 @@ let sha256 = "1gyza02pcws3zqm1phv3ag50db5gnapxyjwy8skjmvawz7p5bmxr"; }; - meta = with lib; { + meta = { description = "Adds ability to cache static files"; homepage = "https://github.com/friCKLE/ngx_slowfs_cache"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -775,10 +775,10 @@ let sha256 = "0p6b0hcws39n27fx4xp9k4hb3pcv7b6kah4qqaj0pzjy3nbp4gj7"; }; - meta = with lib; { + meta = { description = "Expose querystring parameters sorted in a variable"; homepage = "https://github.com/wandenberg/nginx-sorted-querystring-module"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; }; @@ -795,11 +795,11 @@ let inputs = [ libkrb5 ]; - meta = with lib; { + meta = { description = "SPNEGO HTTP Authentication Module"; homepage = "https://github.com/stnoonan/spnego-http-auth-nginx-module"; - license = with licenses; [ bsd2 ]; - teams = [ teams.deshaw ]; + license = with lib.licenses; [ bsd2 ]; + teams = [ lib.teams.deshaw ]; }; }; @@ -813,10 +813,10 @@ let sha256 = "1x8j4i1i2ahrr7qvz03vkldgdjdxi6mx75mzkfizfcc8smr4salr"; }; - meta = with lib; { + meta = { description = "Send statistics to statsd"; homepage = "https://github.com/harvesthq/nginx-statsd"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; }; }; @@ -831,10 +831,10 @@ let sha256 = "1jdj1kik6l3rl9nyx61xkqk7hmqbncy0rrqjz3dmjqsz92y8zaya"; }; - meta = with lib; { + meta = { description = "Stream server traffic status core module"; homepage = "https://github.com/vozlt/nginx-module-stream-sts"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -849,10 +849,10 @@ let sha256 = "0nvb29641x1i7mdbydcny4qwlvdpws38xscxirajd2x7nnfdflrk"; }; - meta = with lib; { + meta = { description = "Stream server traffic status module"; homepage = "https://github.com/vozlt/nginx-module-sts"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -867,10 +867,10 @@ let sha256 = "sha256-3sWgue6QZYwK69XSi9q8r3WYGVyMCIgfqqLvPBHqJKU="; }; - meta = with lib; { + meta = { description = "Filter module which can do both regular expression and fixed string substitutions"; homepage = "https://github.com/yaoweibin/ngx_http_substitutions_filter_module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -885,10 +885,10 @@ let sha256 = "19c6w6wscbq9phnx7vzbdf4ay6p2ys0g7kp2rmc9d4fb53phrhfx"; }; - meta = with lib; { + meta = { description = "Nginx sysguard module"; homepage = "https://github.com/vozlt/nginx-module-sysguard"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -903,10 +903,10 @@ let sha256 = "8veZP516oC7TESO368ZsZreetbDt+1eTcamk7P1kWjU="; }; - meta = with lib; { + meta = { description = "Handle file uploads using multipart/form-data encoding and resumable uploads"; homepage = "https://github.com/fdintino/nginx-upload-module"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; maintainers = [ ]; }; }; @@ -921,10 +921,10 @@ let sha256 = "06y7k04072xzqyqyb08m0vaaizkp4rfwm0q7i735imbzw2rxb74l"; }; - meta = with lib; { + meta = { description = "Support upstream health check"; homepage = "https://github.com/yaoweibin/nginx_upstream_check_module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -944,10 +944,10 @@ let yajl ]; - meta = with lib; { + meta = { description = "Tarantool NginX upstream module (REST, JSON API, websockets, load balancing)"; homepage = "https://github.com/tarantool/nginx_upstream_module"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -962,10 +962,10 @@ let sha256 = "0mk1gjmfnry6hgdsnlavww9bn7223idw50jlkhh5k00q5509w4ip"; }; - meta = with lib; { + meta = { description = "URL encoding converting module"; homepage = "https://github.com/vozlt/nginx-module-url"; - license = with licenses; [ bsd2 ]; + license = with lib.licenses; [ bsd2 ]; maintainers = [ ]; }; }; @@ -986,10 +986,10 @@ let libjpeg ]; - meta = with lib; { + meta = { description = "Extract thumbs from a video file"; homepage = "https://github.com/wandenberg/nginx-video-thumbextractor-module"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; maintainers = [ ]; }; }; @@ -1018,10 +1018,10 @@ let libiconv ]; - meta = with lib; { + meta = { description = "VOD packager"; homepage = "https://github.com/kaltura/nginx-vod-module"; - license = with licenses; [ agpl3Only ]; + license = with lib.licenses; [ agpl3Only ]; maintainers = [ ]; }; }; @@ -1036,11 +1036,11 @@ let sha256 = "sha256-ReTmYGVSOwtnYDMkQDMWwxw09vT4iHYfYZvgd8iBotk="; }; - meta = with lib; { + meta = { description = "Virtual host traffic status module"; homepage = "https://github.com/vozlt/nginx-module-vts"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; }; @@ -1054,12 +1054,12 @@ let hash = "sha256-2bUyGsLSaomzaijnAcHQV9TNSuV7Z3G9EUbrZzLG+mk="; }; - meta = with lib; { + meta = { description = "Streaming ZIP archiver for nginx"; homepage = "https://github.com/evanmiller/mod_zip"; - license = with licenses; [ bsd3 ]; + license = with lib.licenses; [ bsd3 ]; broken = stdenv.hostPlatform.isDarwin; - teams = [ teams.apm ]; + teams = [ lib.teams.apm ]; }; }; @@ -1075,11 +1075,11 @@ let inputs = [ zstd ]; - meta = with lib; { + meta = { description = "Nginx modules for the Zstandard compression"; homepage = "https://github.com/tokers/zstd-nginx-module"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; }; }; diff --git a/pkgs/servers/http/tengine/default.nix b/pkgs/servers/http/tengine/default.nix index f949284f808d..6c7f37612f9e 100644 --- a/pkgs/servers/http/tengine/default.nix +++ b/pkgs/servers/http/tengine/default.nix @@ -148,12 +148,12 @@ stdenv.mkDerivation rec { tests = nixosTests.nginx-variants.tengine; }; - meta = with lib; { + meta = { description = "Web server based on Nginx and has many advanced features, originated by Taobao"; mainProgram = "nginx"; homepage = "https://tengine.taobao.org"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/servers/http/tomcat/tomcat-native.nix b/pkgs/servers/http/tomcat/tomcat-native.nix index 43cb08c137ba..62ad9717e2c6 100644 --- a/pkgs/servers/http/tomcat/tomcat-native.nix +++ b/pkgs/servers/http/tomcat/tomcat-native.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "--with-ssl=${openssl.dev}" ]; - meta = with lib; { + meta = { description = "Optional component for use with Apache Tomcat that allows Tomcat to use certain native resources for performance, compatibility, etc"; homepage = "https://tomcat.apache.org/native-doc/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ aanderse ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ aanderse ]; }; } diff --git a/pkgs/servers/icingaweb2/default.nix b/pkgs/servers/icingaweb2/default.nix index 92e13f55ee80..06666e5884df 100644 --- a/pkgs/servers/icingaweb2/default.nix +++ b/pkgs/servers/icingaweb2/default.nix @@ -30,16 +30,16 @@ stdenvNoCC.mkDerivation rec { passthru.tests = { inherit (nixosTests) icingaweb2; }; - meta = with lib; { + meta = { description = "Webinterface for Icinga 2"; longDescription = '' A lightweight and extensible web interface to keep an eye on your environment. Analyse problems and act on them. ''; homepage = "https://www.icinga.com/products/icinga-web-2/"; - license = licenses.gpl2Plus; - teams = [ teams.helsinki-systems ]; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.helsinki-systems ]; mainProgram = "icingacli"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/icingaweb2/theme-april/default.nix b/pkgs/servers/icingaweb2/theme-april/default.nix index 51633ea0a8d0..3ee96dfb11f7 100644 --- a/pkgs/servers/icingaweb2/theme-april/default.nix +++ b/pkgs/servers/icingaweb2/theme-april/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp -r * "$out" ''; - meta = with lib; { + meta = { description = "Icingaweb2 theme for april fools"; homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-april"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/servers/icingaweb2/theme-lsd/default.nix b/pkgs/servers/icingaweb2/theme-lsd/default.nix index 5e3afdc72bb3..0b6c110e9f13 100644 --- a/pkgs/servers/icingaweb2/theme-lsd/default.nix +++ b/pkgs/servers/icingaweb2/theme-lsd/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp -r * "$out" ''; - meta = with lib; { + meta = { description = "Psychadelic theme for IcingaWeb 2"; homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-lsd"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/servers/icingaweb2/theme-particles/default.nix b/pkgs/servers/icingaweb2/theme-particles/default.nix index da9aaaf6a499..82e76da65ead 100644 --- a/pkgs/servers/icingaweb2/theme-particles/default.nix +++ b/pkgs/servers/icingaweb2/theme-particles/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp -r * "$out" ''; - meta = with lib; { + meta = { description = "This theme adds a nice particle effect to the login screen of Icingaweb 2"; homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-particles"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/servers/icingaweb2/theme-snow/default.nix b/pkgs/servers/icingaweb2/theme-snow/default.nix index e38ea325e2ab..75a18da9d619 100644 --- a/pkgs/servers/icingaweb2/theme-snow/default.nix +++ b/pkgs/servers/icingaweb2/theme-snow/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { cp -r * "$out" ''; - meta = with lib; { + meta = { description = "Snow theme for Icingaweb 2"; homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-snow"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/servers/icingaweb2/theme-spring/default.nix b/pkgs/servers/icingaweb2/theme-spring/default.nix index 618e78a1bd74..d02f376adf54 100644 --- a/pkgs/servers/icingaweb2/theme-spring/default.nix +++ b/pkgs/servers/icingaweb2/theme-spring/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp -r * "$out" ''; - meta = with lib; { + meta = { description = "Theme with some soft colors and nice background images loaded from unsplash.com"; homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-spring"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/servers/icingaweb2/theme-unicorn/default.nix b/pkgs/servers/icingaweb2/theme-unicorn/default.nix index 7fc162b90b25..9cbe14cc8be1 100644 --- a/pkgs/servers/icingaweb2/theme-unicorn/default.nix +++ b/pkgs/servers/icingaweb2/theme-unicorn/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { cp unicorn.png "$out/public/img/unicorn.png" ''; - meta = with lib; { + meta = { description = "Unicorn theme for IcingaWeb 2"; homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-unicorn"; - license = licenses.publicDomain; - platforms = platforms.all; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/servers/isso/default.nix b/pkgs/servers/isso/default.nix index 95ee0c9f3ad1..abe4144e0d0f 100644 --- a/pkgs/servers/isso/default.nix +++ b/pkgs/servers/isso/default.nix @@ -73,11 +73,11 @@ buildPythonApplication rec { passthru.tests = { inherit (nixosTests) isso; }; - meta = with lib; { + meta = { description = "Commenting server similar to Disqus"; mainProgram = "isso"; homepage = "https://posativ.org/isso/"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/servers/klipper/default.nix b/pkgs/servers/klipper/default.nix index dfa16651b69f..440e8b1e729f 100644 --- a/pkgs/servers/klipper/default.nix +++ b/pkgs/servers/klipper/default.nix @@ -110,16 +110,16 @@ stdenv.mkDerivation rec { tagPrefix = "v"; }; - meta = with lib; { + meta = { description = "Klipper 3D printer firmware"; mainProgram = "klippy"; homepage = "https://github.com/KevinOConnor/klipper"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovesegfault zhaofengli cab404 ]; - platforms = platforms.linux; - license = licenses.gpl3Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/servers/klipper/klipper-firmware.nix b/pkgs/servers/klipper/klipper-firmware.nix index 5be57bbf5d92..c5c5dbc43fc9 100644 --- a/pkgs/servers/klipper/klipper-firmware.nix +++ b/pkgs/servers/klipper/klipper-firmware.nix @@ -107,13 +107,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { inherit (klipper.meta) homepage license; description = "Firmware part of Klipper"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ vtuan10 cab404 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/mail/mailman/mailman-hyperkitty.nix b/pkgs/servers/mail/mailman/mailman-hyperkitty.nix index b4537fca7489..478c3149122e 100644 --- a/pkgs/servers/mail/mailman/mailman-hyperkitty.nix +++ b/pkgs/servers/mail/mailman/mailman-hyperkitty.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { passthru.tests = { inherit (nixosTests) mailman; }; - meta = with lib; { + meta = { description = "Mailman archiver plugin for HyperKitty"; homepage = "https://gitlab.com/mailman/mailman-hyperkitty"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ qyliss ]; }; } diff --git a/pkgs/servers/mail/mailman/postorius.nix b/pkgs/servers/mail/mailman/postorius.nix index 7b5f140d3b27..84944c14b9af 100644 --- a/pkgs/servers/mail/mailman/postorius.nix +++ b/pkgs/servers/mail/mailman/postorius.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { passthru.tests = { inherit (nixosTests) mailman; }; - meta = with lib; { + meta = { homepage = "https://docs.mailman3.org/projects/postorius"; description = "Web-based user interface for managing GNU Mailman"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ qyliss ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ qyliss ]; }; } diff --git a/pkgs/servers/mail/mailman/web.nix b/pkgs/servers/mail/mailman/web.nix index abe62fa2fd7c..a22068a03501 100644 --- a/pkgs/servers/mail/mailman/web.nix +++ b/pkgs/servers/mail/mailman/web.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { passthru.tests = { inherit (nixosTests) mailman; }; - meta = with lib; { + meta = { homepage = "https://gitlab.com/mailman/mailman-web"; description = "Django project for Mailman 3 web interface"; mainProgram = "mailman-web"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ qyliss m1cr0man ]; diff --git a/pkgs/servers/mail/public-inbox/default.nix b/pkgs/servers/mail/public-inbox/default.nix index 32effee18f62..ef1b07ef775a 100644 --- a/pkgs/servers/mail/public-inbox/default.nix +++ b/pkgs/servers/mail/public-inbox/default.nix @@ -181,13 +181,13 @@ buildPerlPackage rec { nixos-public-inbox = nixosTests.public-inbox; }; - meta = with lib; { + meta = { homepage = "https://public-inbox.org/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ julm qyliss ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/mail/system-sendmail/default.nix b/pkgs/servers/mail/system-sendmail/default.nix index 352f7d9d5efe..b4c0fdefa780 100644 --- a/pkgs/servers/mail/system-sendmail/default.nix +++ b/pkgs/servers/mail/system-sendmail/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { chmod +x $out/bin/sendmail ''; - meta = with lib; { + meta = { description = '' A sendmail wrapper that calls the system sendmail. Do not install as system-wide sendmail! ''; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "sendmail"; }; } diff --git a/pkgs/servers/mastodon/default.nix b/pkgs/servers/mastodon/default.nix index 63cae5c19e3c..ff7ae2e1495f 100644 --- a/pkgs/servers/mastodon/default.nix +++ b/pkgs/servers/mastodon/default.nix @@ -170,16 +170,16 @@ stdenv.mkDerivation rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Self-hosted, globally interconnected microblogging software based on ActivityPub"; homepage = "https://joinmastodon.org"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ happy-river erictapen izorkin diff --git a/pkgs/servers/mautrix-telegram/default.nix b/pkgs/servers/mautrix-telegram/default.nix index a5f25d2c5d09..ce006b56011c 100644 --- a/pkgs/servers/mautrix-telegram/default.nix +++ b/pkgs/servers/mautrix-telegram/default.nix @@ -80,12 +80,12 @@ python.pkgs.buildPythonPackage rec { # has no tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/mautrix/telegram"; description = "Matrix-Telegram hybrid puppeting/relaybot bridge"; - license = licenses.agpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nyanloutre ma27 nickcao diff --git a/pkgs/servers/minio/default.nix b/pkgs/servers/minio/default.nix index 48b422fd72c7..69c99f1ef9e8 100644 --- a/pkgs/servers/minio/default.nix +++ b/pkgs/servers/minio/default.nix @@ -64,15 +64,15 @@ buildGoModule rec { passthru.tests.minio = nixosTests.minio; - meta = with lib; { + meta = { homepage = "https://www.minio.io/"; description = "S3-compatible object storage server"; changelog = "https://github.com/minio/minio/releases/tag/RELEASE.${version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bachp ryan4yin ]; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; mainProgram = "minio"; }; } diff --git a/pkgs/servers/minio/legacy_fs.nix b/pkgs/servers/minio/legacy_fs.nix index c528ec192590..0f9c02fb7e50 100644 --- a/pkgs/servers/minio/legacy_fs.nix +++ b/pkgs/servers/minio/legacy_fs.nix @@ -57,12 +57,12 @@ buildGoModule rec { passthru.tests.minio = nixosTests.minio; - meta = with lib; { + meta = { homepage = "https://www.minio.io/"; description = "S3-compatible object storage server"; mainProgram = "minio"; changelog = "https://github.com/minio/minio/releases/tag/RELEASE.${version}"; - maintainers = with maintainers; [ bachp ]; - license = licenses.agpl3Plus; + maintainers = with lib.maintainers; [ bachp ]; + license = lib.licenses.agpl3Plus; }; } diff --git a/pkgs/servers/misc/qremotecontrol-server/default.nix b/pkgs/servers/misc/qremotecontrol-server/default.nix index 02a044e5250a..6114f32fdd35 100644 --- a/pkgs/servers/misc/qremotecontrol-server/default.nix +++ b/pkgs/servers/misc/qremotecontrol-server/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation { --replace /usr $out ''; - meta = with lib; { - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ fgaz ]; + meta = { + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; homepage = "https://sourceforge.net/projects/qrc/"; description = "Remote control your desktop from your mobile"; mainProgram = "qremotecontrol-server"; diff --git a/pkgs/servers/mobilizon/default.nix b/pkgs/servers/mobilizon/default.nix index 22dc3be2c832..c86bfa453768 100644 --- a/pkgs/servers/mobilizon/default.nix +++ b/pkgs/servers/mobilizon/default.nix @@ -149,12 +149,12 @@ mixRelease rec { elixirPackage = beamPackages.elixir; }; - meta = with lib; { + meta = { description = "Mobilizon is an online tool to help manage your events, your profiles and your groups"; homepage = "https://joinmobilizon.org/"; changelog = "https://framagit.org/framasoft/mobilizon/-/releases/${src.tag}"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ minijackson erictapen ]; diff --git a/pkgs/servers/mobilizon/frontend.nix b/pkgs/servers/mobilizon/frontend.nix index 4feda08bda9e..73539c19e9e5 100644 --- a/pkgs/servers/mobilizon/frontend.nix +++ b/pkgs/servers/mobilizon/frontend.nix @@ -19,11 +19,11 @@ buildNpmPackage { cp -r priv/static $out/static ''; - meta = with lib; { + meta = { description = "Frontend for the Mobilizon server"; homepage = "https://joinmobilizon.org/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ minijackson erictapen ]; diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix index 489c45db5fd5..d3aa9a725a27 100644 --- a/pkgs/servers/monitoring/grafana/default.nix +++ b/pkgs/servers/monitoring/grafana/default.nix @@ -154,11 +154,11 @@ buildGoModule (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; homepage = "https://grafana.com"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ offline fpletz globin diff --git a/pkgs/servers/monitoring/grafana/plugins/bsull-console-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/bsull-console-datasource/default.nix index 2ac2b3087fae..9ad5206750e6 100644 --- a/pkgs/servers/monitoring/grafana/plugins/bsull-console-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/bsull-console-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "bsull-console-datasource"; version = "1.0.1"; zipHash = "sha256-V6D/VIdwwQvG21nVMXD/xF86Uy8WRecL2RjyDTZr1wQ="; - meta = with lib; { + meta = { description = "Grafana data source which can connect to the Tokio console subscriber"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/doitintl-bigquery-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/doitintl-bigquery-datasource/default.nix index 3220ab078b0a..9a57d94d4277 100644 --- a/pkgs/servers/monitoring/grafana/plugins/doitintl-bigquery-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/doitintl-bigquery-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "doitintl-bigquery-datasource"; version = "2.0.3"; zipHash = "sha256-QxUNRsO1ony+6tVdpwx3P/63XNIdAVIren6hUwChf9E="; - meta = with lib; { + meta = { description = "BigQuery DataSource for Grafana"; - license = licenses.mit; - maintainers = with maintainers; [ jwygoda ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jwygoda ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/fetzerch-sunandmoon-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/fetzerch-sunandmoon-datasource/default.nix index ccd4ec4277ff..76a64be89857 100644 --- a/pkgs/servers/monitoring/grafana/plugins/fetzerch-sunandmoon-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/fetzerch-sunandmoon-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "fetzerch-sunandmoon-datasource"; version = "0.3.3"; zipHash = "sha256-IJe1OiPt9MxqqPymuH0K27jToSb92M0P4XGZXvk0paE="; - meta = with lib; { + meta = { description = "Calculates the position of Sun and Moon as well as the Moon illumination using SunCalc"; - license = licenses.mit; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/frser-sqlite-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/frser-sqlite-datasource/default.nix index fc797bcd6ee5..df5423f67bda 100644 --- a/pkgs/servers/monitoring/grafana/plugins/frser-sqlite-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/frser-sqlite-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "frser-sqlite-datasource"; version = "3.8.2"; zipHash = "sha256-TJMKHB1loDiBrTWKpIUNfcMTBXhorxqvLrdBEuUspto="; - meta = with lib; { + meta = { description = "Use a SQLite database as a data source in Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafadruid-druid-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafadruid-druid-datasource/default.nix index dbd870d414e1..adc045f07dc0 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafadruid-druid-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafadruid-druid-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafadruid-druid-datasource"; version = "1.7.0"; zipHash = "sha256-aVAIk5x+zKdq5SYjsl5LekZ96LW7g/ykaq/lPUNUi7k="; - meta = with lib; { + meta = { description = "Connects Grafana to Druid"; - license = licenses.asl20; - maintainers = with maintainers; [ nukaduka ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nukaduka ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-clickhouse-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-clickhouse-datasource/default.nix index 028c75b93fd4..0dd94721b924 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-clickhouse-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-clickhouse-datasource/default.nix @@ -11,9 +11,9 @@ grafanaPlugin rec { }; meta = with lib; { description = "Connects Grafana to ClickHouse"; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ moody ]; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ moody ]; platforms = attrNames zipHash; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-clock-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-clock-panel/default.nix index 92f91af7b8ce..0be2c8c210ec 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-clock-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-clock-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-clock-panel"; version = "2.1.9"; zipHash = "sha256-awc1bA3MHg0z7HDzqhhWOymVPeEsOHUdxX0xneOd7kY="; - meta = with lib; { + meta = { description = "Clock panel for Grafana"; - license = licenses.mit; - maintainers = with maintainers; [ lukegb ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukegb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-discourse-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-discourse-datasource/default.nix index ebc94742f58e..663605cf6cb4 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-discourse-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-discourse-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-discourse-datasource"; version = "2.0.2"; zipHash = "sha256-0MTxPe7RJHMA0SwjOcFlbi4VkhlLUFP+5r2DsHAaffc="; - meta = with lib; { + meta = { description = "Allows users to search and view topics, posts, users, tags, categories, and reports on a given Discourse forum through Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-exploretraces-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-exploretraces-app/default.nix index 98259ec8d827..a5c62f35b612 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-exploretraces-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-exploretraces-app/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-exploretraces-app"; version = "1.2.2"; zipHash = "sha256-vQSnjSPiYvgwpbO7VvmG77DfP85+R6fRoGGpr+xslTc="; - meta = with lib; { + meta = { description = "Opinionated traces app"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; teams = [ lib.teams.fslabs ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-github-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-github-datasource/default.nix index 0c901113cec5..667ec0fa8f3b 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-github-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-github-datasource/default.nix @@ -9,10 +9,10 @@ grafanaPlugin { x86_64-darwin = "sha256-5WrWvZriXjQIId52Y6THAVg7RfQFl1CT5qhKr/m0vVk="; aarch64-darwin = "sha256-4IowlmyDGjxHBHvBD/eqZvouuOEvlad0nW8L0n8hf+g"; }; - meta = with lib; { + meta = { description = "Allows GitHub API data to be visually represented in Grafana dashboards"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-googlesheets-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-googlesheets-datasource/default.nix index b63987a89af6..35884dc0bb48 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-googlesheets-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-googlesheets-datasource/default.nix @@ -9,10 +9,10 @@ grafanaPlugin { x86_64-darwin = "sha256-EwE6w67ARVp/2GE9pSqaD5TuBnsgwsDLZCrEXPfRfUE="; aarch64-darwin = "sha256-3UGd/t1k6aZsKsQCplLV9klmjQAga19VaopHx330xUs="; }; - meta = with lib; { + meta = { description = "Integrate JSON data into Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix index cb860441ec09..5c81315bd639 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-lokiexplore-app"; version = "1.0.31"; zipHash = "sha256-IFt2w4DYgxYw86XngS8xfSAMqMdbf3fxml/KwGB8lLY="; - meta = with lib; { + meta = { description = "Browse Loki logs without the need for writing complex queries"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; teams = [ lib.teams.fslabs ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-metricsdrilldown-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-metricsdrilldown-app/default.nix index 5d05663c516a..fb81f8ab8155 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-metricsdrilldown-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-metricsdrilldown-app/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-metricsdrilldown-app"; version = "1.0.24"; zipHash = "sha256-aoivPnxr8/8EQhz3hD/WAgvfwQ3nUXWjs22izx7yDp8="; - meta = with lib; { + meta = { description = "Queryless experience for browsing Prometheus-compatible metrics. Quickly find related metrics without writing PromQL queries"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ lib.maintainers.marcel ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-mqtt-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-mqtt-datasource/default.nix index b08f460c9adf..eb4e60088746 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-mqtt-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-mqtt-datasource/default.nix @@ -9,10 +9,10 @@ grafanaPlugin { x86_64-darwin = "sha256-7gGw/RCuzHmj/vaIAweXLPqQYAl0EMSXXjPCtjRC4vU="; aarch64-darwin = "sha256-i2/lE7QickowFSvHoo7CuaZ1ChFVpsQgZjvuBTQapq4="; }; - meta = with lib; { + meta = { description = "Visualize streaming MQTT data from within Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-oncall-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-oncall-app/default.nix index aed9b5c6d4c5..fc8617ecd582 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-oncall-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-oncall-app/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-oncall-app"; version = "1.16.7"; zipHash = "sha256-bfMp4IzLo4W/5+ZmHabgTqpN4MpF+rJ+uVUvANmzcLo="; - meta = with lib; { + meta = { description = "Developer-friendly incident response for Grafana"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; teams = [ lib.teams.fslabs ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-opensearch-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-opensearch-datasource/default.nix index 2ae30664d711..1f66ac6ed142 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-opensearch-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-opensearch-datasource/default.nix @@ -9,10 +9,10 @@ grafanaPlugin { x86_64-darwin = "sha256-HMifdRPl8RNb+m/eFaXATNRgDYLMG1UA6N/rWHMTR04="; aarch64-darwin = "sha256-MLVyOeVZ42zJjLpOnGSa5ogGNa7rlcA4qjASCVeA3eU="; }; - meta = with lib; { + meta = { description = "Empowers you to seamlessly integrate JSON data into Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-piechart-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-piechart-panel/default.nix index af5baf31d443..d93fc148edbf 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-piechart-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-piechart-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-piechart-panel"; version = "1.6.4"; zipHash = "sha256-bdAl3OmZgSNB+IxxlCb81abR+4dykKkRY3MpQUQyLks="; - meta = with lib; { + meta = { description = "Pie chart panel for Grafana"; - license = licenses.mit; - maintainers = with maintainers; [ lukegb ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukegb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-polystat-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-polystat-panel/default.nix index 184cc7124a48..49a03ce04322 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-polystat-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-polystat-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-polystat-panel"; version = "2.1.15"; zipHash = "sha256-l6jhlnZ9E8OdCHcX0HMpD1VjShq+mtBYeciPNkzsjlA="; - meta = with lib; { + meta = { description = "Hexagonal multi-stat panel for Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ lukegb ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lukegb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-pyroscope-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-pyroscope-app/default.nix index 925e8cd3f6c5..36ba4275b5a2 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-pyroscope-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-pyroscope-app/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-pyroscope-app"; version = "1.12.0"; zipHash = "sha256-Zxp/ebNEwcq/JRhSbtWsFWVY5mIGEexVnH/jtEnKXec="; - meta = with lib; { + meta = { description = "Integrate seamlessly with Pyroscope, the open-source continuous profiling platform, providing a smooth, query-less experience for browsing and analyzing profiling data"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; teams = [ lib.teams.fslabs ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-worldmap-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-worldmap-panel/default.nix index f0d6bc5824ab..a3ea753592cf 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-worldmap-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-worldmap-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "grafana-worldmap-panel"; version = "1.0.6"; zipHash = "sha256-/lgsdBEL9HdJX1X1Qy0THBlYdUUI8SRtgF1Wig1Ktpk="; - meta = with lib; { + meta = { description = "World Map panel for Grafana"; - license = licenses.mit; - maintainers = with maintainers; [ lukegb ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lukegb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-calendar-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-calendar-panel/default.nix index 48b6ab5607f8..c3479c55a884 100644 --- a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-calendar-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-calendar-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "marcusolsson-calendar-panel"; version = "4.2.0"; zipHash = "sha256-GQcLaeTvbHTdbH5NWa0SL5rUP9WTQOqy38ndZb4/rA8="; - meta = with lib; { + meta = { description = "Calendar Panel is a Grafana plugin that displays events from various data sources"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-csv-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-csv-datasource/default.nix index 1ec7528f6fe5..4a992df410fe 100644 --- a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-csv-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-csv-datasource/default.nix @@ -9,10 +9,10 @@ grafanaPlugin { x86_64-darwin = "sha256-6sGA06INQbiRCd23ykdtUWAR+oA3YFh57KBT7zWUP44="; aarch64-darwin = "sha256-gzQRcPeRqLvl27SB18hTTtcHx/namT2V0NOgX5J1mbs="; }; - meta = with lib; { + meta = { description = "Load CSV data into Grafana, expanding your capabilities to visualize and analyze data stored in CSV (Comma-Separated Values) format"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-dynamictext-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-dynamictext-panel/default.nix index 8dea64d08d3d..7bdafecf2e50 100644 --- a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-dynamictext-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-dynamictext-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "marcusolsson-dynamictext-panel"; version = "6.2.0"; zipHash = "sha256-pxTmylBvI73csDM6rMoUjGN9EM5zR/PfH1ZE1XKW94c="; - meta = with lib; { + meta = { description = "Dynamic, data-driven text panel for Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ herbetom ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ herbetom ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-json-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-json-datasource/default.nix index 7ced44fa2c01..35c167172aff 100644 --- a/pkgs/servers/monitoring/grafana/plugins/marcusolsson-json-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/marcusolsson-json-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "marcusolsson-json-datasource"; version = "1.3.24"; zipHash = "sha256-gKFy7T5FQU2OUGBDokNWj0cT4EuOLLMcOFezlArtdww="; - meta = with lib; { + meta = { description = "Grafana JSON Datasource plugin empowers you to seamlessly integrate JSON data into Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/redis-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/redis-app/default.nix index 501b8c4bbde8..1aed71260068 100644 --- a/pkgs/servers/monitoring/grafana/plugins/redis-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/redis-app/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "redis-app"; version = "2.2.1"; zipHash = "sha256-1ZzJaGhlM6CaTecj69aqJ9fqN7wYSsiDCMTRVkZJUb0="; - meta = with lib; { + meta = { description = "Redis Application plugin for Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/redis-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/redis-datasource/default.nix index 22d9ecc8b5ba..88a2da5326ae 100644 --- a/pkgs/servers/monitoring/grafana/plugins/redis-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/redis-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "redis-datasource"; version = "2.2.0"; zipHash = "sha256-a4at8o185XSOyNxZZKfb0/j1CVoKQ9JZx0ofoPUBqKs="; - meta = with lib; { + meta = { description = "Redis Data Source for Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/redis-explorer-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/redis-explorer-app/default.nix index 8d6805426223..57b89adf01eb 100644 --- a/pkgs/servers/monitoring/grafana/plugins/redis-explorer-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/redis-explorer-app/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "redis-explorer-app"; version = "2.1.1"; zipHash = "sha256-t5L9XURNcswDbZWSmehs/JYU7NoEwhX1If7ghbi509g="; - meta = with lib; { + meta = { description = "Redis Explorer plugin for Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/ventura-psychrometric-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/ventura-psychrometric-panel/default.nix index 650816940857..96a1d4e2a1fe 100644 --- a/pkgs/servers/monitoring/grafana/plugins/ventura-psychrometric-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/ventura-psychrometric-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "ventura-psychrometric-panel"; version = "5.0.4"; zipHash = "sha256-bBPESByCux0X711UjmT5bQrJDz1BC9+9EGOOJ4jqcj0="; - meta = with lib; { + meta = { description = "Grafana plugin to display air conditions on a psychrometric chart"; - license = licenses.bsd3Lbnl; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.bsd3Lbnl; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-echarts-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-echarts-panel/default.nix index 39e53f921201..872c74a23e57 100644 --- a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-echarts-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-echarts-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "volkovlabs-echarts-panel"; version = "7.2.2"; zipHash = "sha256-4y7L8SSqjtQ2bk+v8FeZsZ8gTd9qnBvi2F9cNLPjKGE="; - meta = with lib; { + meta = { description = "Visualization panel for Grafana that allows you to incorporate the popular Apache ECharts library into your Grafana dashboard"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-form-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-form-panel/default.nix index e514350b0431..b8df247fa933 100644 --- a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-form-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-form-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "volkovlabs-form-panel"; version = "6.3.1"; zipHash = "sha256-HuzhTWey/6xLu6GPXGnN4/D3rs7yJ2sPGzO8PPuZmNA="; - meta = with lib; { + meta = { description = "Plugin that allows inserting and updating application data, as well as modifying configuration directly from your Grafana dashboard"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-rss-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-rss-datasource/default.nix index 7dcb00f007da..3db477e171ed 100644 --- a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-rss-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-rss-datasource/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "volkovlabs-rss-datasource"; version = "4.4.0"; zipHash = "sha256-0/B5E1DSjVq9e+1FAFw0J3Kuc7oud6apP9b07icg1Hk="; - meta = with lib; { + meta = { description = "Plugin for Grafana that retrieves RSS/Atom feeds and allows visualizing them using Dynamic Text and other panels"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-variable-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-variable-panel/default.nix index c018e0503c2b..dabca7dd0e95 100644 --- a/pkgs/servers/monitoring/grafana/plugins/volkovlabs-variable-panel/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/volkovlabs-variable-panel/default.nix @@ -4,10 +4,10 @@ grafanaPlugin { pname = "volkovlabs-variable-panel"; version = "5.1.1"; zipHash = "sha256-lLzOCgOh4a/Ee6QO5gJkJkHoPzylk9Y3vilXBtvn5G8="; - meta = with lib; { + meta = { description = "Variable panel allows you to have dashboard filters in a separate panel which you can place anywhere on the dashboard"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/grafana/plugins/yesoreyeram-infinity-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/yesoreyeram-infinity-datasource/default.nix index 42186a3656df..dbef03383e42 100644 --- a/pkgs/servers/monitoring/grafana/plugins/yesoreyeram-infinity-datasource/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/yesoreyeram-infinity-datasource/default.nix @@ -9,10 +9,10 @@ grafanaPlugin { x86_64-darwin = "sha256-BuOMpZK+NoJx32f3pqcDI5szIW4bQl3+yFZI9zjzYE8="; aarch64-darwin = "sha256-ss/HxouKDZYZvF42KWJgMbOh9kSviH5oz6f/mrlcXk8="; }; - meta = with lib; { + meta = { description = "Visualize data from JSON, CSV, XML, GraphQL and HTML endpoints in Grafana"; - license = licenses.asl20; - maintainers = with maintainers; [ nagisa ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nagisa ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/nagios-plugins/check_wmi_plus/default.nix b/pkgs/servers/monitoring/nagios-plugins/check_wmi_plus/default.nix index 53840bcfc454..b7bc0cb46fa1 100644 --- a/pkgs/servers/monitoring/nagios-plugins/check_wmi_plus/default.nix +++ b/pkgs/servers/monitoring/nagios-plugins/check_wmi_plus/default.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation rec { gzip $out/share/man/man1/check_wmi_plus.1 ''; - meta = with lib; { + meta = { description = "Sensu/nagios plugin using WMI to query Windows hosts"; homepage = "https://edcint.co.nz/checkwmiplus/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "check_wmi_plus"; - maintainers = with maintainers; [ peterhoeg ]; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix b/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix index 94051a4bbc0f..c23a9d65482f 100644 --- a/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix +++ b/pkgs/servers/monitoring/prometheus/jmx-httpserver.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { makeWrapper "${jre}/bin/java" $out/bin/jmx_prometheus_httpserver --add-flags "-jar $out/libexec/$jarName" ''; - meta = with lib; { + meta = { homepage = "https://github.com/prometheus/jmx_exporter"; description = "Process for exposing JMX Beans via HTTP for Prometheus consumption"; mainProgram = "jmx_prometheus_httpserver"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = [ maintainers.offline ]; - platforms = platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/monitoring/prometheus/kthxbye.nix b/pkgs/servers/monitoring/prometheus/kthxbye.nix index a8cd32b3e02d..8fedfcd1916a 100644 --- a/pkgs/servers/monitoring/prometheus/kthxbye.nix +++ b/pkgs/servers/monitoring/prometheus/kthxbye.nix @@ -31,11 +31,11 @@ buildGoModule rec { kthxbye = nixosTests.kthxbye; }; - meta = with lib; { + meta = { description = "Prometheus Alertmanager alert acknowledgement management daemon"; mainProgram = "kthxbye"; homepage = "https://github.com/prymitive/kthxbye"; - license = licenses.asl20; - maintainers = with maintainers; [ nukaduka ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nukaduka ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/prom2json.nix b/pkgs/servers/monitoring/prometheus/prom2json.nix index 5a5420149c4d..053a810d8345 100644 --- a/pkgs/servers/monitoring/prometheus/prom2json.nix +++ b/pkgs/servers/monitoring/prometheus/prom2json.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-PZXuhPpO02ix88RtBpsGaQxgQNVn+LW09rrN66+mCpw="; - meta = with lib; { + meta = { description = "Tool to scrape a Prometheus client and dump the result as JSON"; mainProgram = "prom2json"; homepage = "https://github.com/prometheus/prom2json"; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benley ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/sachet.nix b/pkgs/servers/monitoring/prometheus/sachet.nix index 8011b96e23a2..168694f24e85 100644 --- a/pkgs/servers/monitoring/prometheus/sachet.nix +++ b/pkgs/servers/monitoring/prometheus/sachet.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "SMS alerting tool for Prometheus's Alertmanager"; mainProgram = "sachet"; homepage = "https://github.com/messagebird/sachet"; - license = licenses.bsd2; - maintainers = with maintainers; [ govanify ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ govanify ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/smokeping-prober.nix b/pkgs/servers/monitoring/prometheus/smokeping-prober.nix index 260593285757..eeed06ca0d26 100644 --- a/pkgs/servers/monitoring/prometheus/smokeping-prober.nix +++ b/pkgs/servers/monitoring/prometheus/smokeping-prober.nix @@ -39,11 +39,11 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests.prometheus-exporters) smokeping; }; - meta = with lib; { + meta = { description = "Prometheus exporter for sending continual ICMP/UDP pings"; mainProgram = "smokeping_prober"; homepage = "https://github.com/SuperQ/smokeping_prober"; - license = licenses.asl20; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lukegb ]; }; } diff --git a/pkgs/servers/mtprotoproxy/default.nix b/pkgs/servers/mtprotoproxy/default.nix index 773f41d6de70..79fad4195681 100644 --- a/pkgs/servers/mtprotoproxy/default.nix +++ b/pkgs/servers/mtprotoproxy/default.nix @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Async MTProto proxy for Telegram"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/alexbers/mtprotoproxy"; platforms = python.meta.platforms; maintainers = [ ]; diff --git a/pkgs/servers/nextcloud/notify_push.nix b/pkgs/servers/nextcloud/notify_push.nix index 55f39fe8aba3..165c6fb7e058 100644 --- a/pkgs/servers/nextcloud/notify_push.nix +++ b/pkgs/servers/nextcloud/notify_push.nix @@ -56,13 +56,13 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/nextcloud/notify_push/releases/tag/v${version}"; description = "Update notifications for nextcloud clients"; mainProgram = "notify_push"; homepage = "https://github.com/nextcloud/notify_push"; - license = licenses.agpl3Plus; - platforms = platforms.linux; - teams = [ teams.helsinki-systems ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; + teams = [ lib.teams.helsinki-systems ]; }; } diff --git a/pkgs/servers/nextcloud/packages/apps/recognize.nix b/pkgs/servers/nextcloud/packages/apps/recognize.nix index 7a6a001967fd..d4137aa14d23 100644 --- a/pkgs/servers/nextcloud/packages/apps/recognize.nix +++ b/pkgs/servers/nextcloud/packages/apps/recognize.nix @@ -121,9 +121,9 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { - license = licenses.agpl3Only; - maintainers = with maintainers; [ beardhatcode ]; + meta = { + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ beardhatcode ]; longDescription = '' Nextcloud app that does Smart media tagging and face recognition with on-premises machine learning models. This app goes through your media collection and adds fitting tags, automatically categorizing your photos and music. diff --git a/pkgs/servers/nosql/apache-jena/binary.nix b/pkgs/servers/nosql/apache-jena/binary.nix index 670a974307b6..137be8f9ef71 100644 --- a/pkgs/servers/nosql/apache-jena/binary.nix +++ b/pkgs/servers/nosql/apache-jena/binary.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { wrapProgram "$i" --prefix "PATH" : "${java}/bin/" done ''; - meta = with lib; { + meta = { description = "RDF database"; - license = licenses.asl20; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; homepage = "https://jena.apache.org"; downloadPage = "https://archive.apache.org/dist/jena/binaries/"; }; diff --git a/pkgs/servers/nosql/apache-jena/fuseki-binary.nix b/pkgs/servers/nosql/apache-jena/fuseki-binary.nix index e0db8d18f3a9..2c5aff4df692 100644 --- a/pkgs/servers/nosql/apache-jena/fuseki-binary.nix +++ b/pkgs/servers/nosql/apache-jena/fuseki-binary.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { basic-test = pkgs.callPackage ./fuseki-test.nix { }; }; }; - meta = with lib; { + meta = { description = "SPARQL server"; - license = licenses.asl20; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.all; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.all; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; diff --git a/pkgs/servers/nosql/cassandra/generic.nix b/pkgs/servers/nosql/cassandra/generic.nix index 4cd3944d3156..df6c9eb3e08a 100644 --- a/pkgs/servers/nosql/cassandra/generic.nix +++ b/pkgs/servers/nosql/cassandra/generic.nix @@ -130,17 +130,17 @@ stdenv.mkDerivation rec { }; meta = - with lib; + { homepage = "https://cassandra.apache.org/"; description = "Massively scalable open source NoSQL database"; - platforms = platforms.unix; - license = licenses.asl20; - sourceProvenance = with sourceTypes; [ + platforms = lib.platforms.unix; + license = lib.licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode # bundled dependency libsigar ]; - maintainers = [ maintainers.roberth ]; + maintainers = [ lib.maintainers.roberth ]; } // extraMeta; } diff --git a/pkgs/servers/nosql/influxdb/default.nix b/pkgs/servers/nosql/influxdb/default.nix index 2b771894b456..bad6613878ca 100644 --- a/pkgs/servers/nosql/influxdb/default.nix +++ b/pkgs/servers/nosql/influxdb/default.nix @@ -95,11 +95,11 @@ buildGoModule rec { inherit (nixosTests) influxdb; }; - meta = with lib; { + meta = { description = "Open-source distributed time series database"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://influxdata.com/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ offline zimbatm ]; diff --git a/pkgs/servers/nosql/influxdb2/cli.nix b/pkgs/servers/nosql/influxdb2/cli.nix index f22bca89052e..c7833547a8a3 100644 --- a/pkgs/servers/nosql/influxdb2/cli.nix +++ b/pkgs/servers/nosql/influxdb2/cli.nix @@ -38,9 +38,9 @@ buildGoModule { --zsh <($out/bin/influx completion zsh) ''; - meta = with lib; { + meta = { description = "CLI for managing resources in InfluxDB v2"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://influxdata.com/"; maintainers = [ ]; mainProgram = "influx"; diff --git a/pkgs/servers/nosql/influxdb2/default.nix b/pkgs/servers/nosql/influxdb2/default.nix index 42f19bbcf136..dab91241e8fa 100644 --- a/pkgs/servers/nosql/influxdb2/default.nix +++ b/pkgs/servers/nosql/influxdb2/default.nix @@ -134,9 +134,9 @@ buildGoModule { inherit (nixosTests) influxdb2; }; - meta = with lib; { + meta = { description = "Open-source distributed time series database"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://influxdata.com/"; maintainers = [ ]; }; diff --git a/pkgs/servers/nosql/influxdb2/provision.nix b/pkgs/servers/nosql/influxdb2/provision.nix index 01be841f6a8a..40fb2e9accfb 100644 --- a/pkgs/servers/nosql/influxdb2/provision.nix +++ b/pkgs/servers/nosql/influxdb2/provision.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/influxdb2-provision --prefix PYTHONPATH : "$PYTHONPATH" ''; - meta = with lib; { + meta = { description = "Small utility to help provisioning influxdb2"; homepage = "https://github.com/oddlama/influxdb2-provision"; - license = licenses.mit; - maintainers = with maintainers; [ oddlama ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oddlama ]; mainProgram = "influxdb2-provision"; }; } diff --git a/pkgs/servers/nosql/influxdb2/token-manipulator.nix b/pkgs/servers/nosql/influxdb2/token-manipulator.nix index 12db726fdb56..3dbb87f2b4b7 100644 --- a/pkgs/servers/nosql/influxdb2/token-manipulator.nix +++ b/pkgs/servers/nosql/influxdb2/token-manipulator.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-zBZk7JbNILX18g9+2ukiESnFtnIVWhdN/J/MBhIITh8="; - meta = with lib; { + meta = { description = "Utility program to manipulate influxdb api tokens for declarative setups"; homepage = "https://github.com/oddlama/influxdb2-token-manipulator"; - license = licenses.mit; - maintainers = with maintainers; [ oddlama ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oddlama ]; mainProgram = "influxdb2-token-manipulator"; }; } diff --git a/pkgs/servers/nosql/mongodb/mongodb.nix b/pkgs/servers/nosql/mongodb/mongodb.nix index f532e9b09322..ca90935250ff 100644 --- a/pkgs/servers/nosql/mongodb/mongodb.nix +++ b/pkgs/servers/nosql/mongodb/mongodb.nix @@ -169,12 +169,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Scalable, high-performance, open source NoSQL database"; homepage = "http://www.mongodb.org"; inherit license; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ offline ]; platforms = subtractLists systems.doubles.i686 systems.doubles.unix; diff --git a/pkgs/servers/openafs/1.8/default.nix b/pkgs/servers/openafs/1.8/default.nix index 51e1981d509f..0eddcefa4382 100644 --- a/pkgs/servers/openafs/1.8/default.nix +++ b/pkgs/servers/openafs/1.8/default.nix @@ -143,7 +143,7 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { outputsToInstall = [ "out" "doc" @@ -151,10 +151,10 @@ stdenv.mkDerivation { ]; description = "Open AFS client"; homepage = "https://www.openafs.org"; - license = licenses.ipl10; - platforms = platforms.linux; + license = lib.licenses.ipl10; + platforms = lib.platforms.linux; maintainers = [ - maintainers.spacefrogg + lib.maintainers.spacefrogg ]; }; } diff --git a/pkgs/servers/openafs/1.8/module.nix b/pkgs/servers/openafs/1.8/module.nix index fc8015cdc42a..18e00f843cd9 100644 --- a/pkgs/servers/openafs/1.8/module.nix +++ b/pkgs/servers/openafs/1.8/module.nix @@ -89,12 +89,12 @@ stdenv.mkDerivation { xz -f ${modDestDir}/libafs.ko ''; - meta = with lib; { + meta = { description = "Open AFS client kernel module"; homepage = "https://www.openafs.org"; - license = licenses.ipl10; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.ipl10; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ andersk spacefrogg ]; diff --git a/pkgs/servers/osmocom/libasn1c/default.nix b/pkgs/servers/osmocom/libasn1c/default.nix index 983ef5dbc196..01eb7cf3bd45 100644 --- a/pkgs/servers/osmocom/libasn1c/default.nix +++ b/pkgs/servers/osmocom/libasn1c/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Runtime library of Lev Walkin's asn1c split out as separate library"; homepage = "https://github.com/osmocom/libasn1c/"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/servers/persistent-evdev/default.nix b/pkgs/servers/persistent-evdev/default.nix index 18ccb834d2f8..be068d8ccdc8 100644 --- a/pkgs/servers/persistent-evdev/default.nix +++ b/pkgs/servers/persistent-evdev/default.nix @@ -48,12 +48,12 @@ buildPythonPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/aiberia/persistent-evdev"; description = "Persistent virtual input devices for qemu/libvirt/evdev hotplug support"; - license = licenses.mit; - maintainers = [ maintainers.lodi ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lodi ]; + platforms = lib.platforms.linux; mainProgram = "persistent-evdev.py"; }; } diff --git a/pkgs/servers/plex/raw.nix b/pkgs/servers/plex/raw.nix index afef84ee6352..7ebe1e58deac 100644 --- a/pkgs/servers/plex/raw.nix +++ b/pkgs/servers/plex/raw.nix @@ -84,15 +84,15 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://plex.tv/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ badmutex forkk lnl7 diff --git a/pkgs/servers/plik/programs.nix b/pkgs/servers/plik/programs.nix index d526aba9c545..66dae265238d 100644 --- a/pkgs/servers/plik/programs.nix +++ b/pkgs/servers/plik/programs.nix @@ -19,11 +19,11 @@ let vendorHash = null; - meta = with lib; { + meta = { homepage = "https://plik.root.gg/"; description = "Scalable & friendly temporary file upload system"; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "plik"; }; diff --git a/pkgs/servers/polaris/default.nix b/pkgs/servers/polaris/default.nix index 6bd847dfe164..bd276dbc6dc6 100644 --- a/pkgs/servers/polaris/default.nix +++ b/pkgs/servers/polaris/default.nix @@ -52,7 +52,7 @@ rustPlatform.buildRustPackage rec { passthru.tests = nixosTests.polaris; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Self-host your music collection, and access it from any computer and mobile device"; longDescription = '' Polaris is a FOSS music streaming application, designed to let you enjoy your music collection @@ -61,9 +61,9 @@ rustPlatform.buildRustPackage rec { The only requirement is that your computer stays on while it streams your music! ''; homepage = "https://github.com/agersant/polaris"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; + platforms = lib.platforms.unix; mainProgram = "polaris"; }; } diff --git a/pkgs/servers/polaris/web.nix b/pkgs/servers/polaris/web.nix index 39cc8e906561..6e524bbe18e8 100644 --- a/pkgs/servers/polaris/web.nix +++ b/pkgs/servers/polaris/web.nix @@ -30,10 +30,10 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Web client for Polaris"; homepage = "https://github.com/agersant/polaris-web"; - license = licenses.mit; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/servers/pulseaudio/hsphfpd.nix b/pkgs/servers/pulseaudio/hsphfpd.nix index 53893cf4b58a..86780cab2c4e 100644 --- a/pkgs/servers/pulseaudio/hsphfpd.nix +++ b/pkgs/servers/pulseaudio/hsphfpd.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Bluetooth HSP/HFP daemon"; homepage = "https://github.com/pali/hsphfpd-prototype"; - license = licenses.artistic1; + license = lib.licenses.artistic1; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/rainloop/default.nix b/pkgs/servers/rainloop/default.nix index d4f8bd7dd5ac..aa67022466f8 100644 --- a/pkgs/servers/rainloop/default.nix +++ b/pkgs/servers/rainloop/default.nix @@ -65,13 +65,13 @@ let chmod 700 $out/data ''; - meta = with lib; { + meta = { description = "Simple, modern & fast web-based email client"; homepage = "https://www.rainloop.net"; downloadPage = "https://github.com/RainLoop/rainloop-webmail/releases"; - license = with licenses; if edition == "" then unfree else agpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ das_j ]; + license = with lib.licenses; if edition == "" then unfree else agpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ das_j ]; }; }; in diff --git a/pkgs/servers/samba/4.x.nix b/pkgs/servers/samba/4.x.nix index a9827881bf1f..502dff10a6f9 100644 --- a/pkgs/servers/samba/4.x.nix +++ b/pkgs/servers/samba/4.x.nix @@ -330,14 +330,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://www.samba.org"; changelog = "https://www.samba.org/samba/history/samba-${finalAttrs.version}.html"; description = "Standard Windows interoperability suite of programs for Linux and Unix"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; broken = enableGlusterFS; - maintainers = with maintainers; [ aneeshusa ]; + maintainers = with lib.maintainers; [ aneeshusa ]; pkgConfigModules = [ "ndr_krb5pac" "ndr_nbt" diff --git a/pkgs/servers/search/elasticsearch/7.x.nix b/pkgs/servers/search/elasticsearch/7.x.nix index e95f5292109d..f80358ee0aac 100644 --- a/pkgs/servers/search/elasticsearch/7.x.nix +++ b/pkgs/servers/search/elasticsearch/7.x.nix @@ -83,15 +83,15 @@ stdenv.mkDerivation rec { enableUnfree = true; }; - meta = with lib; { + meta = { description = "Open Source, Distributed, RESTful Search Engine"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = licenses.elastic20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.elastic20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ apeschar basvandijk ]; diff --git a/pkgs/servers/shairplay/default.nix b/pkgs/servers/shairplay/default.nix index 3bfdd8ead9af..d7eb009476ac 100644 --- a/pkgs/servers/shairplay/default.nix +++ b/pkgs/servers/shairplay/default.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { $out/bin/shairplay ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Apple AirPlay and RAOP protocol server"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "shairplay"; }; } diff --git a/pkgs/servers/shishi/default.nix b/pkgs/servers/shishi/default.nix index b0ec3ee78b62..79551bfde1ce 100644 --- a/pkgs/servers/shishi/default.nix +++ b/pkgs/servers/shishi/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { -e 's,\(-ltasn1\),-L${libtasn1.out}/lib \1,' ''; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/shishi/"; description = "Implementation of the Kerberos 5 network security system"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/sks/default.nix b/pkgs/servers/sks/default.nix index 7042b1d6c015..910e3b0fad39 100644 --- a/pkgs/servers/sks/default.nix +++ b/pkgs/servers/sks/default.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { passthru.tests.nixos = nixosTests.sks; - meta = with lib; { + meta = { description = "Easily deployable & decentralized OpenPGP keyserver"; longDescription = '' SKS is an OpenPGP keyserver whose goal is to provide easy to deploy, @@ -82,8 +82,8 @@ stdenv.mkDerivation rec { spotty connectivity, can fully synchronize with rest of the system. ''; inherit (src.meta) homepage; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/servers/sql/mariadb/connector-c/default.nix b/pkgs/servers/sql/mariadb/connector-c/default.nix index a53dc025b4c1..7d7d2c7b3eaf 100644 --- a/pkgs/servers/sql/mariadb/connector-c/default.nix +++ b/pkgs/servers/sql/mariadb/connector-c/default.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation { install -Dm644 include/ma_config.h $dev/include/mariadb/my_config.h ''; - meta = with lib; { + meta = { description = "Client library that can be used to connect to MySQL or MariaDB"; homepage = "https://github.com/mariadb-corporation/mariadb-connector-c"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 2ffe92954ffb..9c26ce8bb6e5 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -216,13 +216,13 @@ let mysql-replication = nixosTests.mysql-replication.${testVersion}; }; - meta = with lib; { + meta = { description = "Enhanced, drop-in replacement for MySQL"; homepage = "https://mariadb.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ thoughtpolice ]; - teams = [ teams.helsinki-systems ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ thoughtpolice ]; + teams = [ lib.teams.helsinki-systems ]; + platforms = lib.platforms.all; }; }; diff --git a/pkgs/servers/sql/mssql/jdbc/jtds.nix b/pkgs/servers/sql/mssql/jdbc/jtds.nix index 91b3dfd03ba2..51678ec3793a 100644 --- a/pkgs/servers/sql/mssql/jdbc/jtds.nix +++ b/pkgs/servers/sql/mssql/jdbc/jtds.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ unzip ]; - meta = with lib; { + meta = { description = "Pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server"; homepage = "https://jtds.sourceforge.net/"; - license = licenses.lgpl21; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/sql/mysql/8.0.x.nix b/pkgs/servers/sql/mysql/8.0.x.nix index 41c67e77983d..3119c7b68ec5 100644 --- a/pkgs/servers/sql/mysql/8.0.x.nix +++ b/pkgs/servers/sql/mysql/8.0.x.nix @@ -120,11 +120,11 @@ stdenv.mkDerivation (finalAttrs: { tests = nixosTests.mysql.mysql80; }; - meta = with lib; { + meta = { homepage = "https://www.mysql.com/"; description = "World's most popular open source database"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/servers/sql/percona-server/8_0.nix b/pkgs/servers/sql/percona-server/8_0.nix index f206675de9b3..125cc007e43b 100644 --- a/pkgs/servers/sql/percona-server/8_0.nix +++ b/pkgs/servers/sql/percona-server/8_0.nix @@ -199,15 +199,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://www.percona.com/software/mysql-database/percona-server"; description = '' A free, fully compatible, enhanced, open source drop-in replacement for MySQL® that provides superior performance, scalability and instrumentation. Long-term support release. ''; - license = licenses.gpl2Only; - teams = [ teams.flyingcircus ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.flyingcircus ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/servers/sql/percona-server/8_4.nix b/pkgs/servers/sql/percona-server/8_4.nix index 3ad0cdf9bea6..f7ae2b9e6abf 100644 --- a/pkgs/servers/sql/percona-server/8_4.nix +++ b/pkgs/servers/sql/percona-server/8_4.nix @@ -211,15 +211,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://www.percona.com/software/mysql-database/percona-server"; description = '' A free, fully compatible, enhanced, open source drop-in replacement for MySQL® that provides superior performance, scalability and instrumentation. Long-term support release. ''; - license = licenses.gpl2Only; - teams = [ teams.flyingcircus ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + teams = [ lib.teams.flyingcircus ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/servers/sql/postgresql/generic.nix b/pkgs/servers/sql/postgresql/generic.nix index 67756050a004..55627971fd80 100644 --- a/pkgs/servers/sql/postgresql/generic.nix +++ b/pkgs/servers/sql/postgresql/generic.nix @@ -621,19 +621,19 @@ let }; }; - meta = with lib; { + meta = { homepage = "https://www.postgresql.org"; description = "Powerful, open source object-relational database system"; - license = licenses.postgresql; + license = lib.licenses.postgresql; changelog = "https://www.postgresql.org/docs/release/${finalAttrs.version}/"; - teams = [ teams.postgres ]; + teams = [ lib.teams.postgres ]; pkgConfigModules = [ "libecpg" "libecpg_compat" "libpgtypes" "libpq" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; # JIT support doesn't work with cross-compilation. It is attempted to build LLVM-bytecode # (`%.bc` is the corresponding `make(1)`-rule) for each sub-directory in `backend/` for diff --git a/pkgs/servers/tautulli/default.nix b/pkgs/servers/tautulli/default.nix index 5166c49fbfdb..ab9d07d9056d 100644 --- a/pkgs/servers/tautulli/default.nix +++ b/pkgs/servers/tautulli/default.nix @@ -53,11 +53,11 @@ buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python based monitoring and tracking tool for Plex Media Server"; homepage = "https://tautulli.com/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ rhoriguchi ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rhoriguchi ]; }; } diff --git a/pkgs/servers/varnish/default.nix b/pkgs/servers/varnish/default.nix index 6bfdb9b912e1..c96b9b11df59 100644 --- a/pkgs/servers/varnish/default.nix +++ b/pkgs/servers/varnish/default.nix @@ -97,12 +97,12 @@ let nixosTests."varnish${builtins.replaceStrings [ "." ] [ "" ] (lib.versions.majorMinor version)}"; }; - meta = with lib; { + meta = { description = "Web application accelerator also known as a caching HTTP reverse proxy"; homepage = "https://www.varnish-cache.org"; - license = licenses.bsd2; + license = lib.licenses.bsd2; teams = [ lib.teams.flyingcircus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }; in diff --git a/pkgs/servers/web-apps/discourse/default.nix b/pkgs/servers/web-apps/discourse/default.nix index 1d44b19da0df..f1663f7831d8 100644 --- a/pkgs/servers/web-apps/discourse/default.nix +++ b/pkgs/servers/web-apps/discourse/default.nix @@ -529,11 +529,11 @@ let ; }; }; - meta = with lib; { + meta = { homepage = "https://www.discourse.org/"; - platforms = platforms.linux; - maintainers = with maintainers; [ talyz ]; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.gpl2Plus; description = "Open source discussion platform"; }; }; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-bbcode-color/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-bbcode-color/default.nix index 0acecf9b617b..30b6e1cef0ea 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-bbcode-color/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-bbcode-color/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "14b8370160cda35568470a36a25e508eb8364609"; sha256 = "sha256-3yIV5LKsYSDrhBwsalKZo9jY6j8kNzz99x/AJ95kPuk="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-bbcode-color"; - maintainers = with maintainers; [ ryantm ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ryantm ]; + license = lib.licenses.mit; description = "Support BBCode color tags"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix index 617da737f0af..931f5d8d7d9b 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "ff5d738a9f9d85847e6fc226f8324ad9cf466007"; sha256 = "sha256-p5QYM6jbsqe9a3UouHdVimSxZeBvsoM/hb0UQ7iV1IM="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-docs"; - maintainers = with maintainers; [ dpausp ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ dpausp ]; + license = lib.licenses.mit; description = "Find and filter knowledge base topics"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix index c93a3e115878..f0fd1062a708 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix @@ -14,10 +14,10 @@ mkDiscoursePlugin { rev = "fa1d661004ca99036ff628a9c4be12a81265d784"; sha256 = "sha256-2DYrYgC3H+e8USoo1MbJin1f5tshIUsQa6J7avnpvEc="; }; - meta = with lib; { + meta = { homepage = "https://github.com/jonmbake/discourse-ldap-auth"; - maintainers = with maintainers; [ ryantm ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ryantm ]; + license = lib.licenses.mit; description = "Discourse plugin to enable LDAP/Active Directory authentication"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix index db3f2d84b027..0dce7ec38416 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix @@ -21,10 +21,10 @@ mkDiscoursePlugin { ./spec-import-fix-abi-version.patch ]; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-prometheus"; - maintainers = with maintainers; [ dpausp ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ dpausp ]; + license = lib.licenses.mit; description = "Official Discourse Plugin for Prometheus Monitoring"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix index 0fe4190d41d6..4010a455c5a2 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "e9afd599d95fa79ba8a37316290c1a059e995e04"; sha256 = "sha256-UtXDY3IxxM+JFOGZlN9mgiwrDImOAzJJuHNlhIdnotM="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-saved-searches"; - maintainers = with maintainers; [ dpausp ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ dpausp ]; + license = lib.licenses.mit; description = "Allow users to save searches and be notified of new results"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix index 8043d24ad70f..c046ab72c48b 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "a6baf4a5998a616091d94c31c23b9930409cd3e2"; sha256 = "sha256-KP/lQqS47oGTz4Rw/+0p2LZVQEWdUtx0sRPxh3/Ua8A="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-yearly-review"; - maintainers = with maintainers; [ talyz ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.mit; description = "Publishes an automated Year in Review topic"; }; } diff --git a/pkgs/servers/web-apps/ethercalc/default.nix b/pkgs/servers/web-apps/ethercalc/default.nix index 5b2af5aed37f..9b82baaef237 100644 --- a/pkgs/servers/web-apps/ethercalc/default.nix +++ b/pkgs/servers/web-apps/ethercalc/default.nix @@ -16,9 +16,9 @@ let ethercalc = lib.head (lib.attrValues nodePackages); combined = ethercalc.override { - meta = with lib; { + meta = { description = "Online collaborative spreadsheet"; - license = with licenses; [ + license = with lib.licenses; [ cpal10 artistic2 mit @@ -27,8 +27,8 @@ let mpl20 ]; homepage = "https://github.com/audreyt/ethercalc"; - maintainers = with maintainers; [ iblech ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ iblech ]; + platforms = lib.platforms.unix; }; }; in diff --git a/pkgs/servers/web-apps/freshrss/default.nix b/pkgs/servers/web-apps/freshrss/default.nix index 531ea7772604..82a01ed0d9be 100644 --- a/pkgs/servers/web-apps/freshrss/default.nix +++ b/pkgs/servers/web-apps/freshrss/default.nix @@ -48,11 +48,11 @@ stdenvNoCC.mkDerivation rec { inherit (nixosTests) freshrss; }; - meta = with lib; { + meta = { description = "FreshRSS is a free, self-hostable RSS aggregator"; homepage = "https://www.freshrss.org/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; diff --git a/pkgs/servers/web-apps/lemmy/server.nix b/pkgs/servers/web-apps/lemmy/server.nix index b5272ba34ff0..c1c354856c77 100644 --- a/pkgs/servers/web-apps/lemmy/server.nix +++ b/pkgs/servers/web-apps/lemmy/server.nix @@ -65,11 +65,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = ./update.py; passthru.tests.lemmy-server = nixosTests.lemmy; - meta = with lib; { + meta = { description = "🐀 Building a federated alternative to reddit in rust"; homepage = "https://join-lemmy.org/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ happysalada billewanick georgyo diff --git a/pkgs/servers/web-apps/moodle/default.nix b/pkgs/servers/web-apps/moodle/default.nix index 8905ddef8602..9286ab68ab5f 100644 --- a/pkgs/servers/web-apps/moodle/default.nix +++ b/pkgs/servers/web-apps/moodle/default.nix @@ -136,11 +136,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) moodle; }; - meta = with lib; { + meta = { description = "Free and open-source learning management system (LMS) written in PHP"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://moodle.org/"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/web-apps/outline/default.nix b/pkgs/servers/web-apps/outline/default.nix index d917ac92f777..1cd32fd1152a 100644 --- a/pkgs/servers/web-apps/outline/default.nix +++ b/pkgs/servers/web-apps/outline/default.nix @@ -88,16 +88,16 @@ stdenv.mkDerivation rec { offlineCache = yarnOfflineCache; }; - meta = with lib; { + meta = { description = "Fastest wiki and knowledge base for growing teams. Beautiful, feature rich, and markdown compatible"; homepage = "https://www.getoutline.com/"; changelog = "https://github.com/outline/outline/releases"; - license = licenses.bsl11; - maintainers = with maintainers; [ + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ cab404 yrd ]; - teams = [ teams.cyberus ]; - platforms = platforms.linux; + teams = [ lib.teams.cyberus ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/web-apps/pingvin-share/backend.nix b/pkgs/servers/web-apps/pingvin-share/backend.nix index 787f9b4870c9..fc9ea5c55c17 100644 --- a/pkgs/servers/web-apps/pingvin-share/backend.nix +++ b/pkgs/servers/web-apps/pingvin-share/backend.nix @@ -39,12 +39,12 @@ buildNpmPackage { pingvin-share = nixosTests.pingvin-share; }; - meta = with lib; { + meta = { description = "Backend of pingvin-share, a self-hosted file sharing platform"; homepage = "https://github.com/stonith404/pingvin-share"; downloadPage = "https://github.com/stonith404/pingvin-share/releases"; changelog = "https://github.com/stonith404/pingvin-share/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ ratcornu ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ratcornu ]; }; } diff --git a/pkgs/servers/web-apps/pingvin-share/frontend.nix b/pkgs/servers/web-apps/pingvin-share/frontend.nix index bf320dd95531..15a2e7764de9 100644 --- a/pkgs/servers/web-apps/pingvin-share/frontend.nix +++ b/pkgs/servers/web-apps/pingvin-share/frontend.nix @@ -31,12 +31,12 @@ buildNpmPackage { pingvin-share = nixosTests.pingvin-share; }; - meta = with lib; { + meta = { description = "Frontend of pingvin-share, a self-hosted file sharing platform"; homepage = "https://github.com/stonith404/pingvin-share"; downloadPage = "https://github.com/stonith404/pingvin-share/releases"; changelog = "https://github.com/stonith404/pingvin-share/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ ratcornu ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ratcornu ]; }; } diff --git a/pkgs/servers/web-apps/szurubooru/client.nix b/pkgs/servers/web-apps/szurubooru/client.nix index 9553390862d4..d427c64774c7 100644 --- a/pkgs/servers/web-apps/szurubooru/client.nix +++ b/pkgs/servers/web-apps/szurubooru/client.nix @@ -27,10 +27,10 @@ buildNpmPackage { runHook postInstall ''; - meta = with lib; { + meta = { description = "Client of szurubooru, an image board engine for small and medium communities"; homepage = "https://github.com/rr-/szurubooru"; - license = licenses.gpl3; - maintainers = with maintainers; [ ratcornu ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ratcornu ]; }; } diff --git a/pkgs/servers/web-apps/szurubooru/server.nix b/pkgs/servers/web-apps/szurubooru/server.nix index 594ef1d04859..8e6ab9ae594a 100644 --- a/pkgs/servers/web-apps/szurubooru/server.nix +++ b/pkgs/servers/web-apps/szurubooru/server.nix @@ -75,10 +75,10 @@ python.pkgs.buildPythonApplication { passthru.tests.szurubooru = nixosTests.szurubooru; - meta = with lib; { + meta = { description = "Server of szurubooru, an image board engine for small and medium communities"; homepage = "https://github.com/rr-/szurubooru"; - license = licenses.gpl3; - maintainers = with maintainers; [ ratcornu ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ratcornu ]; }; } diff --git a/pkgs/servers/web-apps/wordpress/generic.nix b/pkgs/servers/web-apps/wordpress/generic.nix index 577a4bc45741..6489843a8a22 100644 --- a/pkgs/servers/web-apps/wordpress/generic.nix +++ b/pkgs/servers/web-apps/wordpress/generic.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { update-source-version wordpress $version --file=./pkgs/servers/web-apps/wordpress/default.nix ''; - meta = with lib; { + meta = { homepage = "https://wordpress.org"; description = "Open source software you can use to create a beautiful website, blog, or app"; - license = [ licenses.gpl2Plus ]; - maintainers = [ maintainers.basvandijk ]; - platforms = platforms.all; + license = [ lib.licenses.gpl2Plus ]; + maintainers = [ lib.maintainers.basvandijk ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/x11/xorg/xcb-util-xrm.nix b/pkgs/servers/x11/xorg/xcb-util-xrm.nix index 487e0cb40661..e5a8b0694242 100644 --- a/pkgs/servers/x11/xorg/xcb-util-xrm.nix +++ b/pkgs/servers/x11/xorg/xcb-util-xrm.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { libX11 ]; - meta = with lib; { + meta = { description = "XCB utility functions for the X resource manager"; homepage = "https://github.com/Airblader/xcb-util-xrm"; - license = licenses.mit; # X11 variant - platforms = with platforms; unix; + license = lib.licenses.mit; # X11 variant + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/servers/x11/xorg/xwayland.nix b/pkgs/servers/x11/xorg/xwayland.nix index 78c624811784..e9771299d6c0 100644 --- a/pkgs/servers/x11/xorg/xwayland.nix +++ b/pkgs/servers/x11/xorg/xwayland.nix @@ -132,15 +132,15 @@ stdenv.mkDerivation rec { rev-prefix = "xwayland-"; }; - meta = with lib; { + meta = { description = "X server for interfacing X11 apps with the Wayland protocol"; homepage = "https://wayland.freedesktop.org/xserver.html"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "Xwayland"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ emantor k900 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/xmpp/prosody/default.nix b/pkgs/servers/xmpp/prosody/default.nix index bc261542477d..82eaa558dabd 100644 --- a/pkgs/servers/xmpp/prosody/default.nix +++ b/pkgs/servers/xmpp/prosody/default.nix @@ -111,13 +111,13 @@ stdenv.mkDerivation (finalAttrs: { tests = { inherit (nixosTests) prosody prosody-mysql; }; }; - meta = with lib; { + meta = { description = "Open-source XMPP application server written in Lua"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://prosody.im"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "prosody"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ toastal mirror230469 ]; diff --git a/pkgs/shells/fish/babelfish.nix b/pkgs/shells/fish/babelfish.nix index d5a317b61863..368bdee4b4ab 100644 --- a/pkgs/shells/fish/babelfish.nix +++ b/pkgs/shells/fish/babelfish.nix @@ -16,12 +16,12 @@ buildGoModule rec { vendorHash = "sha256-HY9ejLfT6gj3vUMSzbNZ4QlpB+liigTtNDBNWCy8X38="; - meta = with lib; { + meta = { description = "Translate bash scripts to fish"; mainProgram = "babelfish"; homepage = "https://github.com/bouk/babelfish"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bouk kevingriffin ]; diff --git a/pkgs/shells/fish/plugins/async-prompt.nix b/pkgs/shells/fish/plugins/async-prompt.nix index 93c880ffb77f..61285a90c84c 100644 --- a/pkgs/shells/fish/plugins/async-prompt.nix +++ b/pkgs/shells/fish/plugins/async-prompt.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { hash = "sha256-B7Ze0a5Zp+5JVsQUOv97mKHh5wiv3ejsDhJMrK7YOx4="; }; - meta = with lib; { + meta = { description = "Make your prompt asynchronous to improve the reactivity"; homepage = "https://github.com/acomagu/fish-async-prompt"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/shells/fish/plugins/autopair.nix b/pkgs/shells/fish/plugins/autopair.nix index add028c2cc5c..a68f54d284be 100644 --- a/pkgs/shells/fish/plugins/autopair.nix +++ b/pkgs/shells/fish/plugins/autopair.nix @@ -15,11 +15,11 @@ buildFishPlugin rec { sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU="; }; - meta = with lib; { + meta = { description = "Auto-complete matching pairs in the Fish command line"; homepage = "https://github.com/jorgebucaran/autopair.fish"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kidonng ]; }; diff --git a/pkgs/shells/fish/plugins/bass.nix b/pkgs/shells/fish/plugins/bass.nix index d651f9f3af7b..4894e95c2b47 100644 --- a/pkgs/shells/fish/plugins/bass.nix +++ b/pkgs/shells/fish/plugins/bass.nix @@ -26,9 +26,9 @@ buildFishPlugin rec { make test ''; - meta = with lib; { + meta = { description = "Fish function making it easy to use utilities written for Bash in Fish shell"; homepage = "https://github.com/edc/bass"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/shells/fish/plugins/bobthefish.nix b/pkgs/shells/fish/plugins/bobthefish.nix index c5bf4ce50a34..ce433dd92618 100644 --- a/pkgs/shells/fish/plugins/bobthefish.nix +++ b/pkgs/shells/fish/plugins/bobthefish.nix @@ -14,10 +14,10 @@ buildFishPlugin { sha256 = "sha256-cXOYvdn74H4rkMWSC7G6bT4wa9d3/3vRnKed2ixRnuA="; }; - meta = with lib; { + meta = { description = "Powerline-style, Git-aware fish theme optimized for awesome"; homepage = "https://github.com/oh-my-fish/theme-bobthefish"; - license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/shells/fish/plugins/bobthefisher.nix b/pkgs/shells/fish/plugins/bobthefisher.nix index 39d16ea6100b..4242840c8252 100644 --- a/pkgs/shells/fish/plugins/bobthefisher.nix +++ b/pkgs/shells/fish/plugins/bobthefisher.nix @@ -14,10 +14,10 @@ buildFishPlugin { sha256 = "sha256-l1DHSZa40BX2/4GCjm5E53UOeFEnMioWbZtCW14WX6k="; }; - meta = with lib; { + meta = { description = "Powerline-style, Git-aware fish theme optimized for awesome (fork of bobthefish)"; homepage = "https://github.com/Scrumplex/bobthefisher"; - license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/shells/fish/plugins/clownfish.nix b/pkgs/shells/fish/plugins/clownfish.nix index c70dc11fd3e4..660eff3632ef 100644 --- a/pkgs/shells/fish/plugins/clownfish.nix +++ b/pkgs/shells/fish/plugins/clownfish.nix @@ -15,10 +15,10 @@ buildFishPlugin { sha256 = "04xvikyrdm6yxh588vbpwvm04fas76pa7sigsaqrip7yh021xxab"; }; - meta = with lib; { + meta = { description = "Fish function to mock the behaviour of commands"; homepage = "https://github.com/IlanCosman/clownfish"; - license = licenses.mit; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ euxane ]; }; } diff --git a/pkgs/shells/fish/plugins/colored-man-pages.nix b/pkgs/shells/fish/plugins/colored-man-pages.nix index d2326ed74bb6..8069143e8c5c 100644 --- a/pkgs/shells/fish/plugins/colored-man-pages.nix +++ b/pkgs/shells/fish/plugins/colored-man-pages.nix @@ -15,10 +15,10 @@ buildFishPlugin { sha256 = "0ifqdbaw09hd1ai0ykhxl8735fcsm0x2fwfzsk7my2z52ds60bwa"; }; - meta = with lib; { + meta = { description = "Fish shell plugin to colorize man pages"; homepage = "https://github.com/PatrickF1/colored_man_pages.fish"; - license = licenses.mit; - maintainers = [ maintainers.jocelynthode ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jocelynthode ]; }; } diff --git a/pkgs/shells/fish/plugins/done.nix b/pkgs/shells/fish/plugins/done.nix index f3f564b73f31..1f2fdba74286 100644 --- a/pkgs/shells/fish/plugins/done.nix +++ b/pkgs/shells/fish/plugins/done.nix @@ -21,10 +21,10 @@ buildFishPlugin rec { fishtape test/done.fish ''; - meta = with lib; { + meta = { description = "Automatically receive notifications when long processes finish"; homepage = "https://github.com/franciscolourenco/done"; - license = licenses.mit; - maintainers = [ maintainers.malo ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.malo ]; }; } diff --git a/pkgs/shells/fish/plugins/fifc.nix b/pkgs/shells/fish/plugins/fifc.nix index 0b287d39ba2f..a3b4ae23068b 100644 --- a/pkgs/shells/fish/plugins/fifc.nix +++ b/pkgs/shells/fish/plugins/fifc.nix @@ -14,10 +14,10 @@ buildFishPlugin rec { hash = "sha256-p5E4Mx6j8hcM1bDbeftikyhfHxQ+qPDanuM1wNqGm6E="; }; - meta = with lib; { + meta = { description = "Fzf powers on top of fish completion engine and allows customizable completion rules"; homepage = "https://github.com/gazorby/fifc"; - license = licenses.mit; - maintainers = with maintainers; [ hmajid2301 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hmajid2301 ]; }; } diff --git a/pkgs/shells/fish/plugins/fishtape_3.nix b/pkgs/shells/fish/plugins/fishtape_3.nix index fa9d1c3839a0..dcec083218a3 100644 --- a/pkgs/shells/fish/plugins/fishtape_3.nix +++ b/pkgs/shells/fish/plugins/fishtape_3.nix @@ -20,10 +20,10 @@ buildFishPlugin rec { fishtape tests/*.fish ''; - meta = with lib; { + meta = { description = "100% pure-Fish test runner"; homepage = "https://github.com/jorgebucaran/fishtape"; - license = licenses.mit; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ euxane ]; }; } diff --git a/pkgs/shells/fish/plugins/foreign-env/default.nix b/pkgs/shells/fish/plugins/foreign-env/default.nix index ac9548b23523..fe1713f991e0 100644 --- a/pkgs/shells/fish/plugins/foreign-env/default.nix +++ b/pkgs/shells/fish/plugins/foreign-env/default.nix @@ -27,10 +27,10 @@ buildFishPlugin { -i functions/* ''; - meta = with lib; { + meta = { description = "Foreign environment interface for Fish shell"; - license = licenses.mit; - maintainers = with maintainers; [ jgillich ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jgillich ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/shells/fish/plugins/forgit.nix b/pkgs/shells/fish/plugins/forgit.nix index 52454d37e304..91f532c77744 100644 --- a/pkgs/shells/fish/plugins/forgit.nix +++ b/pkgs/shells/fish/plugins/forgit.nix @@ -19,10 +19,10 @@ buildFishPlugin rec { cp -r bin $out/share/fish/vendor_conf.d/ ''; - meta = with lib; { + meta = { description = "Utility tool powered by fzf for using git interactively"; homepage = "https://github.com/wfxr/forgit"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/shells/fish/plugins/fzf-fish.nix b/pkgs/shells/fish/plugins/fzf-fish.nix index f21a145db918..d4104c22a69e 100644 --- a/pkgs/shells/fish/plugins/fzf-fish.nix +++ b/pkgs/shells/fish/plugins/fzf-fish.nix @@ -57,12 +57,12 @@ buildFishPlugin rec { ''script -c 'fish -c "fishtape tests/*/*.fish"' '' ); - meta = with lib; { + meta = { description = "Augment your fish command line with fzf key bindings"; homepage = "https://github.com/PatrickF1/fzf.fish"; changelog = "https://github.com/PatrickF1/fzf.fish/releases/tag/${src.rev}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ euxane natsukium ]; diff --git a/pkgs/shells/fish/plugins/fzf.nix b/pkgs/shells/fish/plugins/fzf.nix index 8e9d99a18a9d..fccbc588c715 100644 --- a/pkgs/shells/fish/plugins/fzf.nix +++ b/pkgs/shells/fish/plugins/fzf.nix @@ -14,10 +14,10 @@ buildFishPlugin rec { sha256 = "sha256-28QW/WTLckR4lEfHv6dSotwkAKpNJFCShxmKFGQQ1Ew="; }; - meta = with lib; { + meta = { description = "Ef-fish-ient fish keybindings for fzf"; homepage = "https://github.com/jethrokuan/fzf"; - license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/shells/fish/plugins/git-abbr.nix b/pkgs/shells/fish/plugins/git-abbr.nix index 743600d61132..c9a0d588c0e4 100644 --- a/pkgs/shells/fish/plugins/git-abbr.nix +++ b/pkgs/shells/fish/plugins/git-abbr.nix @@ -14,10 +14,10 @@ buildFishPlugin { hash = "sha256-6z3Wr2t8CP85xVEp6UCYaM2KC9PX4MDyx19f/wjHkb0="; }; - meta = with lib; { + meta = { description = "Abbreviations for git for the fish shell 🐟"; homepage = "https://github.com/lewisacidic/fish-git-abbr"; - license = licenses.mit; - maintainers = with maintainers; [ hmajid2301 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hmajid2301 ]; }; } diff --git a/pkgs/shells/fish/plugins/github-copilot-cli-fish.nix b/pkgs/shells/fish/plugins/github-copilot-cli-fish.nix index 0a1370f71561..0a6b078aad78 100644 --- a/pkgs/shells/fish/plugins/github-copilot-cli-fish.nix +++ b/pkgs/shells/fish/plugins/github-copilot-cli-fish.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { hash = "sha256-CFXbeO0euC/UtvQV0KCz4WQfdJgsuXKPM6M9oaw7hvg="; }; - meta = with lib; { + meta = { description = "GitHub Copilot CLI aliases for Fish Shell"; homepage = "https://github.com/z11i/github-copilot-cli.fish"; - license = licenses.asl20; - maintainers = [ maintainers.malo ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.malo ]; }; } diff --git a/pkgs/shells/fish/plugins/grc.nix b/pkgs/shells/fish/plugins/grc.nix index c607dbce2cf5..15a8b09135be 100644 --- a/pkgs/shells/fish/plugins/grc.nix +++ b/pkgs/shells/fish/plugins/grc.nix @@ -19,10 +19,10 @@ buildFishPlugin { cp conf.d/executables $out/share/fish/vendor_conf.d/ ''; - meta = with lib; { + meta = { description = "Grc Colourizer for some commands on Fish shell"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/shells/fish/plugins/humantime-fish.nix b/pkgs/shells/fish/plugins/humantime-fish.nix index 15b4bd6d4d5d..89be08861cdf 100644 --- a/pkgs/shells/fish/plugins/humantime-fish.nix +++ b/pkgs/shells/fish/plugins/humantime-fish.nix @@ -20,10 +20,10 @@ buildFishPlugin { fishtape tests/humantime.fish ''; - meta = with lib; { + meta = { description = "Turn milliseconds into a human-readable string in Fish"; homepage = "https://github.com/jorgebucaran/humantime.fish"; - license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/shells/fish/plugins/hydro.nix b/pkgs/shells/fish/plugins/hydro.nix index cbde3c602379..dc33038c5545 100644 --- a/pkgs/shells/fish/plugins/hydro.nix +++ b/pkgs/shells/fish/plugins/hydro.nix @@ -15,10 +15,10 @@ buildFishPlugin { hash = "sha256-QYq4sU41/iKvDUczWLYRGqDQpVASF/+6brJJ8IxypjE="; }; - meta = with lib; { + meta = { description = "Ultra-pure, lag-free prompt with async Git status"; homepage = "https://github.com/jorgebucaran/hydro"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/shells/fish/plugins/pisces.nix b/pkgs/shells/fish/plugins/pisces.nix index be59b248277b..0ddbe19c83b3 100644 --- a/pkgs/shells/fish/plugins/pisces.nix +++ b/pkgs/shells/fish/plugins/pisces.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { sha256 = "sha256-Oou2IeNNAqR00ZT3bss/DbhrJjGeMsn9dBBYhgdafBw="; }; - meta = with lib; { + meta = { description = "Paired symbols in the command line"; homepage = "https://github.com/laughedelic/pisces"; - license = licenses.lgpl3; - maintainers = with maintainers; [ vanilla ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ vanilla ]; }; } diff --git a/pkgs/shells/fish/plugins/sdkman-for-fish.nix b/pkgs/shells/fish/plugins/sdkman-for-fish.nix index c137cc2cded9..826215e0ed03 100644 --- a/pkgs/shells/fish/plugins/sdkman-for-fish.nix +++ b/pkgs/shells/fish/plugins/sdkman-for-fish.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { hash = "sha256-7cgyR3hQ30Jv+9lJS5qaBvSaI/0YVT8xPXlUhDBTdFc="; }; - meta = with lib; { + meta = { description = "Adds support for SDKMAN! to fish"; homepage = "https://github.com/reitzig/sdkman-for-fish"; - license = licenses.mit; - maintainers = with maintainers; [ giorgiga ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ giorgiga ]; }; } diff --git a/pkgs/shells/fish/plugins/tide.nix b/pkgs/shells/fish/plugins/tide.nix index 9e9268c66f19..e53f0cdaf3de 100644 --- a/pkgs/shells/fish/plugins/tide.nix +++ b/pkgs/shells/fish/plugins/tide.nix @@ -22,10 +22,10 @@ buildFishPlugin rec { cp -R functions/tide $out/share/fish/vendor_functions.d/ ''; - meta = with lib; { + meta = { description = "Ultimate Fish prompt"; homepage = "https://github.com/IlanCosman/tide"; - license = licenses.mit; - maintainers = [ maintainers.jocelynthode ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jocelynthode ]; }; } diff --git a/pkgs/shells/fish/plugins/transient-fish.nix b/pkgs/shells/fish/plugins/transient-fish.nix index 8acdec2cbd65..e075197c2a7f 100644 --- a/pkgs/shells/fish/plugins/transient-fish.nix +++ b/pkgs/shells/fish/plugins/transient-fish.nix @@ -14,10 +14,10 @@ buildFishPlugin { hash = "sha256-rEkCimnkxcydKRI2y4DxEM7FD7F2/cGTZJN2Edq/Acc="; }; - meta = with lib; { + meta = { description = "Fish plugin to enable a transient prompt"; homepage = "https://github.com/zzhaolei/transient.fish"; - license = licenses.mit; - maintainers = with maintainers; [ iynaix ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ iynaix ]; }; } diff --git a/pkgs/shells/fish/plugins/wakatime-fish.nix b/pkgs/shells/fish/plugins/wakatime-fish.nix index 743164202ddf..53e5a0683b46 100644 --- a/pkgs/shells/fish/plugins/wakatime-fish.nix +++ b/pkgs/shells/fish/plugins/wakatime-fish.nix @@ -22,10 +22,10 @@ buildFishPlugin rec { --replace-fail "(type -p wakatime)" "${lib.getExe wakatime-cli}" ''; - meta = with lib; { + meta = { description = "Fish plugin for wakatime"; homepage = "https://github.com/ik11235/wakatime.fish"; - license = licenses.mit; - maintainers = with maintainers; [ ocfox ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ocfox ]; }; } diff --git a/pkgs/shells/fish/plugins/z.nix b/pkgs/shells/fish/plugins/z.nix index 0bf42ecb56fd..e613a746cc14 100644 --- a/pkgs/shells/fish/plugins/z.nix +++ b/pkgs/shells/fish/plugins/z.nix @@ -14,10 +14,10 @@ buildFishPlugin rec { sha256 = "sha256-+FUBM7CodtZrYKqU542fQD+ZDGrd2438trKM0tIESs0="; }; - meta = with lib; { + meta = { description = "Pure-fish z directory jumping"; homepage = "https://github.com/jethrokuan/z"; - license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix index 9ac5cf6df732..3d103f6e1a61 100644 --- a/pkgs/shells/nushell/default.nix +++ b/pkgs/shells/nushell/default.nix @@ -95,11 +95,11 @@ rustPlatform.buildRustPackage { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Modern shell written in Rust"; homepage = "https://www.nushell.sh/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ johntitor joaquintrinanes ryan4yin diff --git a/pkgs/test/haskell/upstreamStackHpackVersion/default.nix b/pkgs/test/haskell/upstreamStackHpackVersion/default.nix index 5b7a7ff724b5..7787b32c17f3 100644 --- a/pkgs/test/haskell/upstreamStackHpackVersion/default.nix +++ b/pkgs/test/haskell/upstreamStackHpackVersion/default.nix @@ -147,9 +147,9 @@ stdenv.mkDerivation { '' + testScript; - meta = with lib; { + meta = { description = "Test that the stack in Nixpkgs uses the same version of Hpack as the upstream stack release"; - maintainers = with maintainers; [ cdepillabout ]; + maintainers = with lib.maintainers; [ cdepillabout ]; # This derivation internally runs a statically-linked version of stack from # upstream. This statically-linked version of stack is only available for diff --git a/pkgs/tools/X11/libstrangle/default.nix b/pkgs/tools/X11/libstrangle/default.nix index bf6a529848c0..fb63ed546b22 100644 --- a/pkgs/tools/X11/libstrangle/default.nix +++ b/pkgs/tools/X11/libstrangle/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { --replace "libstrangle_vk.so" "$out/lib/libstrangle/lib64/libstrangle_vk.so" ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/torkel104/libstrangle"; description = "Frame rate limiter for Linux/OpenGL"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ aske ]; + maintainers = with lib.maintainers; [ aske ]; mainProgram = "strangle"; }; } diff --git a/pkgs/tools/X11/virtualgl/lib.nix b/pkgs/tools/X11/virtualgl/lib.nix index 65433208c155..e5de61e4d2b0 100644 --- a/pkgs/tools/X11/virtualgl/lib.nix +++ b/pkgs/tools/X11/virtualgl/lib.nix @@ -63,14 +63,14 @@ stdenv.mkDerivation rec { --replace "LD_PRELOAD=libgefaker" "LD_PRELOAD=$out/lib/libgefaker" ''; - meta = with lib; { + meta = { homepage = "https://www.virtualgl.org/"; description = "X11 GL rendering in a remote computer with full 3D hw acceleration"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus wxWindowsException31 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/tools/admin/cdist/default.nix b/pkgs/tools/admin/cdist/default.nix index 03d04f1abc50..239e611e5b6a 100644 --- a/pkgs/tools/admin/cdist/default.nix +++ b/pkgs/tools/admin/cdist/default.nix @@ -57,14 +57,14 @@ buildPythonApplication rec { mv docs/dist/man $out/share ''; - meta = with lib; { + meta = { description = "Minimalistic configuration management system"; homepage = "https://www.sdi.st"; changelog = "https://code.ungleich.ch/ungleich-public/cdist/src/tag/${version}/docs/changelog"; # Mostly. There are still couple types that are gpl3-only. - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kaction ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kaction ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/admin/meraki-cli/default.nix b/pkgs/tools/admin/meraki-cli/default.nix index afe8b5fc161a..066c5cedffa2 100644 --- a/pkgs/tools/admin/meraki-cli/default.nix +++ b/pkgs/tools/admin/meraki-cli/default.nix @@ -50,12 +50,12 @@ buildPythonApplication rec { "meraki_cli" ]; - meta = with lib; { + meta = { homepage = "https://github.com/PackeTsar/meraki-cli"; description = "Simple CLI tool to automate and control your Cisco Meraki Dashboard"; - license = licenses.mit; - maintainers = with maintainers; [ dylanmtaylor ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dylanmtaylor ]; + platforms = lib.platforms.unix; mainProgram = "meraki"; }; } diff --git a/pkgs/tools/admin/meshcentral/default.nix b/pkgs/tools/admin/meshcentral/default.nix index 5e2325a301fd..cec69a3cc4fa 100644 --- a/pkgs/tools/admin/meshcentral/default.nix +++ b/pkgs/tools/admin/meshcentral/default.nix @@ -45,11 +45,11 @@ yarn2nix-moretea.mkYarnPackage { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Computer management web app"; homepage = "https://meshcentral.com/"; - maintainers = with maintainers; [ ma27 ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ ma27 ]; + license = lib.licenses.asl20; mainProgram = "meshcentral"; }; } diff --git a/pkgs/tools/admin/pulumi-bin/default.nix b/pkgs/tools/admin/pulumi-bin/default.nix index 05932f950772..6a10d4ca58eb 100644 --- a/pkgs/tools/admin/pulumi-bin/default.nix +++ b/pkgs/tools/admin/pulumi-bin/default.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation { ]; buildInputs = [ stdenv.cc.cc.libgcc or null ]; - meta = with lib; { + meta = { homepage = "https://pulumi.io/"; description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = with licenses; [ asl20 ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with lib.licenses; [ asl20 ]; platforms = builtins.attrNames data.pulumiPkgs; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ghuntley jlesquembre cpcloud diff --git a/pkgs/tools/archivers/unar/default.nix b/pkgs/tools/archivers/unar/default.nix index 3bbd3f8e5509..43806054954d 100644 --- a/pkgs/tools/archivers/unar/default.nix +++ b/pkgs/tools/archivers/unar/default.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://theunarchiver.com"; description = "Archive unpacker program"; longDescription = '' @@ -109,9 +109,9 @@ stdenv.mkDerivation rec { Compact Pro, Packit, cpio, compress (.Z), ARJ, ARC, PAK, ACE, ZOO, LZH, ADF, DMS, LZX, PowerPacker, LBR, Squeeze, Crunch, and other old formats. ''; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "unar"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/archivers/unrar-wrapper/default.nix b/pkgs/tools/archivers/unrar-wrapper/default.nix index 3a5a9810d043..a6b697eb2a5d 100644 --- a/pkgs/tools/archivers/unrar-wrapper/default.nix +++ b/pkgs/tools/archivers/unrar-wrapper/default.nix @@ -31,15 +31,15 @@ buildPythonApplication rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { homepage = "https://github.com/openSUSE/unrar_wrapper"; description = "Backwards compatibility between unar and unrar"; longDescription = '' unrar_wrapper is a wrapper python script that transforms the basic UnRAR commands to unar and lsar calls in order to provide a backwards compatibility. ''; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/tools/audio/opl3bankeditor/common.nix b/pkgs/tools/audio/opl3bankeditor/common.nix index 63af82790a03..c6f8ea4351ff 100644 --- a/pkgs/tools/audio/opl3bankeditor/common.nix +++ b/pkgs/tools/audio/opl3bankeditor/common.nix @@ -69,12 +69,12 @@ mkDerivation rec { ln -s "$out/Applications/${binname}.app/Contents/MacOS/${binname}" $out/bin/${mainProgram} ''; - meta = with lib; { + meta = { inherit mainProgram; description = "Small cross-platform editor of the ${chip} FM banks of different formats"; homepage = src.meta.homepage; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ OPNA2608 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ OPNA2608 ]; }; } diff --git a/pkgs/tools/audio/video2midi/default.nix b/pkgs/tools/audio/video2midi/default.nix index c9bd76310e0a..36b5a75298e4 100644 --- a/pkgs/tools/audio/video2midi/default.nix +++ b/pkgs/tools/audio/video2midi/default.nix @@ -38,12 +38,12 @@ pythonPackages.buildPythonApplication rec { install -Dm755 v2m.py $out/bin/v2m.py ''; - meta = with lib; { + meta = { description = "Youtube synthesia video to midi conversion tool"; homepage = src.meta.homepage; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "v2m.py"; }; } diff --git a/pkgs/tools/audio/yabridge/default.nix b/pkgs/tools/audio/yabridge/default.nix index 6fa9b6b1994f..d5356b6e9eb7 100644 --- a/pkgs/tools/audio/yabridge/default.nix +++ b/pkgs/tools/audio/yabridge/default.nix @@ -162,12 +162,12 @@ multiStdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Modern and transparent way to use Windows VST2 and VST3 plugins on Linux"; homepage = "https://github.com/robbert-vdh/yabridge"; changelog = "https://github.com/robbert-vdh/yabridge/blob/${finalAttrs.version}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kira-bruneau ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/tools/audio/yabridgectl/default.nix b/pkgs/tools/audio/yabridgectl/default.nix index 10ae17dd2979..aba3c158d691 100644 --- a/pkgs/tools/audio/yabridgectl/default.nix +++ b/pkgs/tools/audio/yabridgectl/default.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage { } ''; - meta = with lib; { + meta = { description = "Small, optional utility to help set up and update yabridge for several directories at once"; homepage = "${yabridge.src.meta.homepage}/tree/${yabridge.version}/tools/yabridgectl"; changelog = yabridge.meta.changelog; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kira-bruneau ]; platforms = yabridge.meta.platforms; mainProgram = "yabridgectl"; }; diff --git a/pkgs/tools/backup/percona-xtrabackup/generic.nix b/pkgs/tools/backup/percona-xtrabackup/generic.nix index 1460b5fa3387..686178c57952 100644 --- a/pkgs/tools/backup/percona-xtrabackup/generic.nix +++ b/pkgs/tools/backup/percona-xtrabackup/generic.nix @@ -104,12 +104,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.mysqlVersion = lib.versions.majorMinor finalAttrs.version; - meta = with lib; { + meta = { description = "Non-blocking backup tool for MySQL"; homepage = "http://www.percona.com/software/percona-xtrabackup"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.izorkin ]; - teams = [ teams.flyingcircus ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.izorkin ]; + teams = [ lib.teams.flyingcircus ]; }; }) diff --git a/pkgs/tools/backup/ugarit-manifest-maker/default.nix b/pkgs/tools/backup/ugarit-manifest-maker/default.nix index 0334352c8762..9f8b1fc82199 100644 --- a/pkgs/tools/backup/ugarit-manifest-maker/default.nix +++ b/pkgs/tools/backup/ugarit-manifest-maker/default.nix @@ -29,12 +29,12 @@ eggDerivation rec { numbers ]; - meta = with lib; { + meta = { homepage = "https://www.kitten-technologies.co.uk/project/ugarit-manifest-maker/"; description = "Tool for generating import manifests for Ugarit"; mainProgram = "ugarit-manifest-maker"; - license = licenses.bsd3; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/backup/ugarit/default.nix b/pkgs/tools/backup/ugarit/default.nix index 724f65495b5c..7ceec6eedea5 100644 --- a/pkgs/tools/backup/ugarit/default.nix +++ b/pkgs/tools/backup/ugarit/default.nix @@ -39,11 +39,11 @@ eggDerivation rec { z3 ]; - meta = with lib; { + meta = { homepage = "https://www.kitten-technologies.co.uk/project/ugarit/"; description = "Backup/archival system based around content-addressible storage"; - license = licenses.bsd3; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/cd-dvd/unetbootin/default.nix b/pkgs/tools/cd-dvd/unetbootin/default.nix index bd2e66c72b47..cfcda5d5350a 100644 --- a/pkgs/tools/cd-dvd/unetbootin/default.nix +++ b/pkgs/tools/cd-dvd/unetbootin/default.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { "--set QT_X11_NO_MITSHM 1" ]; - meta = with lib; { + meta = { description = "Tool to create bootable live USB drives from ISO images"; homepage = "https://unetbootin.github.io/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ebzzry ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ebzzry ]; + platforms = lib.platforms.linux; mainProgram = "unetbootin"; }; } diff --git a/pkgs/tools/compression/bzip2/1_1.nix b/pkgs/tools/compression/bzip2/1_1.nix index c39868078bda..5d84b4a52f54 100644 --- a/pkgs/tools/compression/bzip2/1_1.nix +++ b/pkgs/tools/compression/bzip2/1_1.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "High-quality data compression program"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; pkgConfigModules = [ "bz2" ]; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; }; }) diff --git a/pkgs/tools/compression/bzip2/default.nix b/pkgs/tools/compression/bzip2/default.nix index 34ba76acc1e0..89e39eed4b23 100644 --- a/pkgs/tools/compression/bzip2/default.nix +++ b/pkgs/tools/compression/bzip2/default.nix @@ -71,14 +71,14 @@ stdenv.mkDerivation ( passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "High-quality data compression program"; homepage = "https://www.sourceware.org/bzip2"; changelog = "https://sourceware.org/git/?p=bzip2.git;a=blob;f=CHANGES;hb=HEAD"; - license = licenses.bsdOriginal; + license = lib.licenses.bsdOriginal; pkgConfigModules = [ "bzip2" ]; - platforms = platforms.all; - maintainers = with maintainers; [ mic92 ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mic92 ]; }; } ) diff --git a/pkgs/tools/compression/kzipmix/default.nix b/pkgs/tools/compression/kzipmix/default.nix index dd3eb8a0baa3..b4b64fd6c412 100644 --- a/pkgs/tools/compression/kzipmix/default.nix +++ b/pkgs/tools/compression/kzipmix/default.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation rec { patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux.so.2 $out/bin/zipmix ''; - meta = with lib; { + meta = { description = "Tool that aggressively optimizes the sizes of Zip archives"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; homepage = "http://advsys.net/ken/utils.htm"; }; } diff --git a/pkgs/tools/compression/xdelta/unstable.nix b/pkgs/tools/compression/xdelta/unstable.nix index a8272fdb7653..75420d1f70fe 100644 --- a/pkgs/tools/compression/xdelta/unstable.nix +++ b/pkgs/tools/compression/xdelta/unstable.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { install -D -m644 xdelta3.1 $out/share/man/man1/xdelta3.1 ''; - meta = with lib; { + meta = { description = "Binary differential compression in VCDIFF (RFC 3284) format"; longDescription = '' xdelta is a command line program for delta encoding, which generates two @@ -62,8 +62,8 @@ stdenv.mkDerivation rec { for binary files and does not generate human readable output. ''; homepage = "http://xdelta.org/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "xdelta3"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/compression/xz/default.nix b/pkgs/tools/compression/xz/default.nix index 2668c1693292..b89d3d79b4bf 100644 --- a/pkgs/tools/compression/xz/default.nix +++ b/pkgs/tools/compression/xz/default.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/tukaani-project/xz/releases/tag/v${finalAttrs.version}"; description = "General-purpose data compression software, successor of LZMA"; homepage = "https://tukaani.org/xz/"; @@ -94,11 +94,11 @@ stdenv.mkDerivation (finalAttrs: { create 30 % smaller output than gzip and 15 % smaller output than bzip2. ''; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - platforms = platforms.all; + platforms = lib.platforms.all; pkgConfigModules = [ "liblzma" ]; }; }) diff --git a/pkgs/tools/compression/zstd/default.nix b/pkgs/tools/compression/zstd/default.nix index e6c850bbd083..13da3b9f7de4 100644 --- a/pkgs/tools/compression/zstd/default.nix +++ b/pkgs/tools/compression/zstd/default.nix @@ -137,7 +137,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Zstandard real-time compression algorithm"; longDescription = '' Zstd, short for Zstandard, is a fast lossless compression algorithm, @@ -150,9 +150,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://facebook.github.io/zstd/"; changelog = "https://github.com/facebook/zstd/blob/v${finalAttrs.version}/CHANGELOG"; - license = with licenses; [ bsd3 ]; # Or, at your opinion, GPL-2.0-only. + license = with lib.licenses; [ bsd3 ]; # Or, at your opinion, GPL-2.0-only. mainProgram = "zstd"; - platforms = platforms.all; + platforms = lib.platforms.all; maintainers = [ ]; pkgConfigModules = [ "libzstd" ]; }; diff --git a/pkgs/tools/filesystems/disorderfs/default.nix b/pkgs/tools/filesystems/disorderfs/default.nix index 294222cb5044..e15225bc89de 100644 --- a/pkgs/tools/filesystems/disorderfs/default.nix +++ b/pkgs/tools/filesystems/disorderfs/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Overlay FUSE filesystem that introduces non-determinism into filesystem metadata"; mainProgram = "disorderfs"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/tools/filesystems/kio-fuse/default.nix b/pkgs/tools/filesystems/kio-fuse/default.nix index 72fff8406702..ad6e84e2f10b 100644 --- a/pkgs/tools/filesystems/kio-fuse/default.nix +++ b/pkgs/tools/filesystems/kio-fuse/default.nix @@ -28,11 +28,11 @@ mkDerivation rec { fuse3 ]; - meta = with lib; { + meta = { description = "FUSE Interface for KIO"; homepage = "https://invent.kde.org/system/kio-fuse"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ _1000teslas ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ _1000teslas ]; }; } diff --git a/pkgs/tools/filesystems/mergerfs/tools.nix b/pkgs/tools/filesystems/mergerfs/tools.nix index 3b89c3c00c79..0edb96509d45 100644 --- a/pkgs/tools/filesystems/mergerfs/tools.nix +++ b/pkgs/tools/filesystems/mergerfs/tools.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/mergerfs.mktrash --prefix PATH : ${lib.makeBinPath [ python3.pkgs.xattr ]} ''; - meta = with lib; { + meta = { description = "Optional tools to help manage data in a mergerfs pool"; homepage = "https://github.com/trapexit/mergerfs-tools"; - license = licenses.isc; - platforms = platforms.linux; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.isc; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/tools/games/alice-tools/default.nix b/pkgs/tools/games/alice-tools/default.nix index 68a380b0e1b6..b70300a65871 100644 --- a/pkgs/tools/games/alice-tools/default.nix +++ b/pkgs/tools/games/alice-tools/default.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Tools for extracting/editing files from AliceSoft games"; homepage = "https://github.com/nunuhara/alice-tools"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ OPNA2608 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ OPNA2608 ]; mainProgram = if withGUI then "galice" else "alice"; }; }) diff --git a/pkgs/tools/games/gamemode/default.nix b/pkgs/tools/games/gamemode/default.nix index db98dafd58a4..45122bf701b0 100644 --- a/pkgs/tools/games/gamemode/default.nix +++ b/pkgs/tools/games/gamemode/default.nix @@ -105,13 +105,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Optimise Linux system performance on demand"; homepage = "https://feralinteractive.github.io/gamemode"; changelog = "https://github.com/FeralInteractive/gamemode/blob/${finalAttrs.version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ kira-bruneau ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ kira-bruneau ]; + platforms = lib.platforms.linux; mainProgram = "gamemoderun"; # Requires NixOS module to run }; }) diff --git a/pkgs/tools/games/minecraft/optifine/generic.nix b/pkgs/tools/games/minecraft/optifine/generic.nix index 124e8eb1598b..2d8778987d3a 100644 --- a/pkgs/tools/games/minecraft/optifine/generic.nix +++ b/pkgs/tools/games/minecraft/optifine/generic.nix @@ -32,7 +32,7 @@ runCommand "optifine-${mcVersion}" supportedFeatures = [ "commit" ]; }; - meta = with lib; { + meta = { homepage = "https://optifine.net/"; description = "Minecraft ${mcVersion} optimization mod"; longDescription = '' @@ -40,10 +40,10 @@ runCommand "optifine-${mcVersion}" It allows Minecraft to run faster and look better with full support for HD textures and many configuration options. This is for version ${mcVersion} of Minecraft. ''; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.unfree; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "optifine"; }; } diff --git a/pkgs/tools/games/pokefinder/default.nix b/pkgs/tools/games/pokefinder/default.nix index 19f0dd56d803..f291d461e23e 100644 --- a/pkgs/tools/games/pokefinder/default.nix +++ b/pkgs/tools/games/pokefinder/default.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://github.com/Admiral-Fish/PokeFinder"; description = "Cross platform Pokémon RNG tool"; mainProgram = "PokeFinder"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ leo60228 ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ leo60228 ]; }; } diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix index 8397e5ea71fc..56e23675e279 100644 --- a/pkgs/tools/graphics/gnuplot/default.nix +++ b/pkgs/tools/graphics/gnuplot/default.nix @@ -119,12 +119,12 @@ in enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.gnuplot.info/"; description = "Portable command-line driven graphing utility for many platforms"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; license = lib.licenses.gnuplot; - maintainers = with maintainers; [ lovek323 ]; + maintainers = with lib.maintainers; [ lovek323 ]; mainProgram = "gnuplot"; }; } diff --git a/pkgs/tools/graphics/graphviz/default.nix b/pkgs/tools/graphics/graphviz/default.nix index 03fc9497cb95..3f6c1aea1c95 100644 --- a/pkgs/tools/graphics/graphviz/default.nix +++ b/pkgs/tools/graphics/graphviz/default.nix @@ -103,12 +103,12 @@ stdenv.mkDerivation rec { ; }; - meta = with lib; { + meta = { homepage = "https://graphviz.org"; description = "Graph visualization tools"; - license = licenses.epl10; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.epl10; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor raskin ]; diff --git a/pkgs/tools/graphics/mangohud/default.nix b/pkgs/tools/graphics/mangohud/default.nix index cf83d4254baa..d8481387503f 100644 --- a/pkgs/tools/graphics/mangohud/default.nix +++ b/pkgs/tools/graphics/mangohud/default.nix @@ -238,13 +238,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Vulkan and OpenGL overlay for monitoring FPS, temperatures, CPU/GPU load and more"; homepage = "https://github.com/flightlessmango/MangoHud"; changelog = "https://github.com/flightlessmango/MangoHud/releases/tag/v${finalAttrs.version}"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kira-bruneau zeratax ]; diff --git a/pkgs/tools/graphics/nifskope/default.nix b/pkgs/tools/graphics/nifskope/default.nix index 5d74c450fd5b..50c718b0cb89 100644 --- a/pkgs/tools/graphics/nifskope/default.nix +++ b/pkgs/tools/graphics/nifskope/default.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/niftools/nifskope"; description = "Tool for analyzing and editing NetImmerse/Gamebryo '*.nif' files"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; mainProgram = "NifSkope"; }; } diff --git a/pkgs/tools/graphics/pfstools/default.nix b/pkgs/tools/graphics/pfstools/default.nix index 4e4d7440792c..50d491759a86 100644 --- a/pkgs/tools/graphics/pfstools/default.nix +++ b/pkgs/tools/graphics/pfstools/default.nix @@ -80,11 +80,11 @@ mkDerivation rec { ./pfsalign.patch ]; - meta = with lib; { + meta = { homepage = "https://pfstools.sourceforge.net/"; description = "Toolkit for manipulation of HDR images"; - platforms = platforms.linux; - license = licenses.lgpl2; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2; + maintainers = [ lib.maintainers.juliendehos ]; }; } diff --git a/pkgs/tools/graphics/pixel2svg/default.nix b/pkgs/tools/graphics/pixel2svg/default.nix index 413a80dbb8b6..196b897f1cf8 100644 --- a/pkgs/tools/graphics/pixel2svg/default.nix +++ b/pkgs/tools/graphics/pixel2svg/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { svgwrite ]; - meta = with lib; { + meta = { homepage = "https://florian-berger.de/en/software/pixel2svg/"; description = "Converts pixel art to SVG - pixel by pixel"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ annaaurora ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ annaaurora ]; mainProgram = "pixel2svg.py"; }; } diff --git a/pkgs/tools/graphics/rocket/default.nix b/pkgs/tools/graphics/rocket/default.nix index 438737633ef0..c8efbf199abb 100644 --- a/pkgs/tools/graphics/rocket/default.nix +++ b/pkgs/tools/graphics/rocket/default.nix @@ -27,12 +27,12 @@ mkDerivation { cp -r editor/editor $out/bin/ ''; - meta = with lib; { + meta = { description = "Tool for synchronizing music and visuals in demoscene productions"; mainProgram = "editor"; homepage = "https://github.com/rocket/rocket"; - license = licenses.zlib; - platforms = platforms.linux; - maintainers = [ maintainers.dezgeg ]; + license = lib.licenses.zlib; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.dezgeg ]; }; } diff --git a/pkgs/tools/graphics/twilight/default.nix b/pkgs/tools/graphics/twilight/default.nix index 8597b97d34d0..1542834e4a70 100644 --- a/pkgs/tools/graphics/twilight/default.nix +++ b/pkgs/tools/graphics/twilight/default.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { install -Dm755 twilight $out/bin/twilight ''; - meta = with lib; { + meta = { description = "Redo of IRIX twilight backdrop in old school OpenGL"; homepage = src.meta.homepage; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "twilight"; }; diff --git a/pkgs/tools/graphics/vkbasalt/default.nix b/pkgs/tools/graphics/vkbasalt/default.nix index 075846b697ba..053a43006461 100644 --- a/pkgs/tools/graphics/vkbasalt/default.nix +++ b/pkgs/tools/graphics/vkbasalt/default.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation (finalAttrs: { --replace "VK_LAYER_VKBASALT_post_processing" "VK_LAYER_VKBASALT_post_processing_${toString stdenv.hostPlatform.parsed.cpu.bits}" ''; - meta = with lib; { + meta = { description = "Vulkan post processing layer for Linux"; homepage = "https://github.com/DadSchoorse/vkBasalt"; - license = licenses.zlib; - maintainers = with maintainers; [ kira-bruneau ]; - platforms = platforms.linux; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ kira-bruneau ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/tools/graphics/vulkan-caps-viewer/default.nix b/pkgs/tools/graphics/vulkan-caps-viewer/default.nix index 0bccbbe0a6ae..bfaf01b1620e 100644 --- a/pkgs/tools/graphics/vulkan-caps-viewer/default.nix +++ b/pkgs/tools/graphics/vulkan-caps-viewer/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { cp -r vulkanCapsViewer.app "$out/Applications" ''; - meta = with lib; { + meta = { mainProgram = "vulkanCapsViewer"; description = "Vulkan hardware capability viewer"; longDescription = '' @@ -61,9 +61,9 @@ stdenv.mkDerivation rec { The hardware reports can be submitted to a public online database that allows comparing different devices, browsing available features, extensions, formats, etc. ''; homepage = "https://vulkan.gpuinfo.org/"; - platforms = platforms.unix; - license = licenses.gpl2Only; - maintainers = with maintainers; [ pedrohlc ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pedrohlc ]; changelog = "https://github.com/SaschaWillems/VulkanCapsViewer/releases/tag/${version}"; }; } diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix index 58b64c4fd1a1..44b360e28d15 100644 --- a/pkgs/tools/graphics/zbar/default.nix +++ b/pkgs/tools/graphics/zbar/default.nix @@ -168,7 +168,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Bar code reader"; longDescription = '' ZBar is an open source software suite for reading bar codes from various @@ -177,9 +177,9 @@ stdenv.mkDerivation rec { EAN-13/UPC-A, UPC-E, EAN-8, Code 128, Code 39, Interleaved 2 of 5 and QR Code. ''; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.lgpl21; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21; homepage = "https://github.com/mchehab/zbar"; mainProgram = "zbarimg"; }; diff --git a/pkgs/tools/inputmethods/fcitx5/default.nix b/pkgs/tools/inputmethods/fcitx5/default.nix index ea67b9f186e6..4287ee5e00f6 100644 --- a/pkgs/tools/inputmethods/fcitx5/default.nix +++ b/pkgs/tools/inputmethods/fcitx5/default.nix @@ -107,12 +107,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Next generation of fcitx"; homepage = "https://github.com/fcitx/fcitx5"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; mainProgram = "fcitx5"; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix index 609f75a25ee9..ddd1c62e6775 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { anthy ]; - meta = with lib; { + meta = { description = "Anthy Wrapper for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-anthy"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ elnudev ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ elnudev ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-chewing.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-chewing.nix index 37dc4795f020..7285218e8f3c 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-chewing.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-chewing.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { libchewing ]; - meta = with lib; { + meta = { description = "Chewing wrapper for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-chewing"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ xrelkd ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ xrelkd ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix index 8a5d88de0cb0..774771e95100 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix @@ -70,15 +70,15 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Addons related to Chinese, including IME previous bundled inside fcitx4"; mainProgram = "scel2org5"; homepage = "https://github.com/fcitx/fcitx5-chinese-addons"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix index 42624da68c7c..2b9a193597bc 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation rec { ] ); - meta = with lib; { + meta = { description = "Configuration Tool for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-configtool"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; mainProgram = "fcitx5-config-qt"; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix index b27ecea3c3fd..b54bd499cd0c 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { gobject-introspection ]; - meta = with lib; { + meta = { description = "Fcitx5 gtk im module and glib based dbus client library"; homepage = "https://github.com/fcitx/fcitx5-gtk"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix index 2f36dd961401..ad84a793ede1 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) fcitx5; }; - meta = with lib; { + meta = { description = "Hangul wrapper for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-hangul"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ xrelkd ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ xrelkd ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix index ef6e52cba9cf..89772b77e010 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { extraLdLibraries = [ lua ]; }; - meta = with lib; { + meta = { description = "Lua support for Fcitx 5"; homepage = "https://github.com/fcitx/fcitx5-lua"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix index 76c76e229c80..a8bdc6083177 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) fcitx5; }; - meta = with lib; { + meta = { description = "m17n support for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-m17n"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ Technical27 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ Technical27 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix index 60de5a67b019..5f4d61819834 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix @@ -51,14 +51,14 @@ stdenv.mkDerivation rec { wayland ]; - meta = with lib; { + meta = { description = "Fcitx5 Qt Library"; homepage = "https://github.com/fcitx/fcitx5-qt"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus bsd3 ]; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix index 166940e436c4..510547079701 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { cp -r "${rimeDataDrv}/share/rime-data/." $out/share/rime-data/ ''; - meta = with lib; { + meta = { description = "RIME support for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-rime"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-skk.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-skk.nix index 46abbdf069bf..0af6cde4079f 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-skk.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-skk.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Input method engine for Fcitx5, which uses libskk as its backend"; homepage = "https://github.com/fcitx/fcitx5-skk"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wattmto ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wattmto ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-table-extra.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-table-extra.nix index ad4b33829f81..e0d4827d79be 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-table-extra.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-table-extra.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { description = "Extra table for Fcitx, including Boshiamy, Zhengma, Cangjie, and Quick"; homepage = "https://github.com/fcitx/fcitx5-table-extra"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix index 95b965babeea..b1cabc0f9b96 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { description = "Some other tables for Fcitx"; homepage = "https://github.com/fcitx/fcitx5-table-other"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ poscat ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ poscat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix index 991536fe2146..27e78124532d 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Unikey engine support for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-unikey"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ berberman ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ berberman ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix index 26b2af5c9ff5..e0778bc562b8 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out ''; - meta = with lib; { + meta = { isIbusEngine = true; description = "IBus interface to the anthy input method"; homepage = "https://github.com/fujiwarat/ibus-anthy"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix index df9a14bddd2c..adf43ad5a74b 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { isIbusEngine = true; description = "Vietnamese IME for IBus"; homepage = "https://github.com/BambooEngine/ibus-bamboo"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix index 8548c13dbff4..52f508fbe7cc 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation rec { )) ]; - meta = with lib; { + meta = { isIbusEngine = true; description = "Ibus Hangul engine"; mainProgram = "ibus-setup-hangul"; homepage = "https://github.com/libhangul/ibus-hangul"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-libthai/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-libthai/default.nix index c723247f2aa1..c539d2a043f5 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-libthai/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-libthai/default.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { libthai ]; - meta = with lib; { + meta = { isIbusEngine = true; homepage = "https://linux.thai.net/projects/ibus-libthai"; description = "Thai input method engine for IBus"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix index 8c8237c650be..9b74cede7466 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "--with-gtk=3.0" ]; - meta = with lib; { + meta = { isIbusEngine = true; description = "m17n engine for ibus"; homepage = "https://github.com/ibus/ibus-m17n"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix index 3dffa53af8ff..fe8ad54daf08 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { cp -r "${rimeDataDrv}/share/rime-data/." $out/share/rime-data/ ''; - meta = with lib; { + meta = { isIbusEngine = true; description = "Rime input method engine for IBus"; homepage = "https://rime.im/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ pmy ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pmy ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix index fca8239debde..ed10c59c04a5 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { export HOME=$TMPDIR ''; - meta = with lib; { + meta = { isIbusEngine = true; description = "Various table-based input methods for IBus"; homepage = "https://github.com/moebiuscurve/ibus-table-others"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mudri McSinyx ]; diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix index ed9198747ce8..43a4d481e082 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation rec { --replace "docbook2man" "docbook2man --sgml" ''; - meta = with lib; { + meta = { isIbusEngine = true; description = "IBus framework for table-based input methods"; mainProgram = "ibus-table-createdb"; homepage = "https://github.com/kaio/ibus-table/wiki"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = with maintainers; [ mudri ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mudri ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix index 85ef39776850..d11634eb4c75 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${m17n_lib}/lib") ''; - meta = with lib; { + meta = { homepage = "https://mike-fabian.github.io/ibus-typing-booster/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; description = "Completion input method for faster typing"; mainProgram = "emoji-picker"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; isIbusEngine = true; }; } diff --git a/pkgs/tools/inputmethods/interception-tools/caps2esc.nix b/pkgs/tools/inputmethods/interception-tools/caps2esc.nix index 00e7c8416ecc..b5450e225c0c 100644 --- a/pkgs/tools/inputmethods/interception-tools/caps2esc.nix +++ b/pkgs/tools/inputmethods/interception-tools/caps2esc.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/interception/linux/plugins/caps2esc"; description = "Transforming the most useless key ever into the most useful one"; mainProgram = "caps2esc"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix b/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix index d9a786213bfb..6e362867e267 100644 --- a/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix +++ b/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/interception/linux/plugins/dual-function-keys"; description = "Tap for one key, hold for another"; - license = licenses.mit; - maintainers = with maintainers; [ svend ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ svend ]; + platforms = lib.platforms.linux; mainProgram = "dual-function-keys"; }; } diff --git a/pkgs/tools/inputmethods/skk/skk-dicts/default.nix b/pkgs/tools/inputmethods/skk/skk-dicts/default.nix index eada4b39a20a..ef96d331bdf5 100644 --- a/pkgs/tools/inputmethods/skk/skk-dicts/default.nix +++ b/pkgs/tools/inputmethods/skk/skk-dicts/default.nix @@ -73,18 +73,18 @@ let ]; }; - meta = with lib; { + meta = { inherit description license; longDescription = '' This package provides a kana-to-kanji conversion dictionary for the SKK Japanese input method. ''; homepage = "https://github.com/skk-dev/dict"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ yuriaisaka midchildan ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; }; diff --git a/pkgs/tools/misc/antimicrox/default.nix b/pkgs/tools/misc/antimicrox/default.nix index 3475d66f7e7e..fef3147a5641 100644 --- a/pkgs/tools/misc/antimicrox/default.nix +++ b/pkgs/tools/misc/antimicrox/default.nix @@ -43,12 +43,12 @@ mkDerivation rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "GUI for mapping keyboard and mouse controls to a gamepad"; inherit (src.meta) homepage; - maintainers = with maintainers; [ sbruder ]; - license = licenses.gpl3Plus; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ sbruder ]; + license = lib.licenses.gpl3Plus; + platforms = with lib.platforms; linux; mainProgram = "antimicrox"; }; } diff --git a/pkgs/tools/misc/anystyle-cli/default.nix b/pkgs/tools/misc/anystyle-cli/default.nix index 959956bb916e..06f6ea893692 100644 --- a/pkgs/tools/misc/anystyle-cli/default.nix +++ b/pkgs/tools/misc/anystyle-cli/default.nix @@ -34,15 +34,15 @@ buildRubyGem rec { wrapProgram $out/bin/anystyle --prefix PATH : ${poppler-utils}/bin ''; - meta = with lib; { + meta = { description = "Command line interface to the AnyStyle Parser and Finder"; homepage = "https://anystyle.io/"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ aschleck shamilton ]; mainProgram = "anystyle"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/birdfont/default.nix b/pkgs/tools/misc/birdfont/default.nix index 3e1d065d7217..4cc6f208a41a 100644 --- a/pkgs/tools/misc/birdfont/default.nix +++ b/pkgs/tools/misc/birdfont/default.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Font editor which can generate fonts in TTF, EOT, SVG and BIRDFONT format"; homepage = "https://birdfont.org"; - license = licenses.gpl3; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ dtzWill ]; }; }) diff --git a/pkgs/tools/misc/birdfont/xmlbird.nix b/pkgs/tools/misc/birdfont/xmlbird.nix index edfe0c80dda8..a7ac65105866 100644 --- a/pkgs/tools/misc/birdfont/xmlbird.nix +++ b/pkgs/tools/misc/birdfont/xmlbird.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { installPhase = "./install.py"; - meta = with lib; { + meta = { description = "XML parser for Vala and C programs"; homepage = "https://birdfont.org/xmlbird.php"; - license = licenses.lgpl3; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/tools/misc/chef-cli/default.nix b/pkgs/tools/misc/chef-cli/default.nix index dd273aff3d7f..088ab23a3661 100644 --- a/pkgs/tools/misc/chef-cli/default.nix +++ b/pkgs/tools/misc/chef-cli/default.nix @@ -14,11 +14,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "chef-cli"; - meta = with lib; { + meta = { description = "Chef Infra Client is a powerful agent that applies your configurations on remote Linux, macOS, Windows and cloud-based systems"; homepage = "https://chef.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ dylanmtaylor ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dylanmtaylor ]; mainProgram = "chef-cli"; }; } diff --git a/pkgs/tools/misc/ckb-next/default.nix b/pkgs/tools/misc/ckb-next/default.nix index 28fe6432acd4..61682c9b017c 100644 --- a/pkgs/tools/misc/ckb-next/default.nix +++ b/pkgs/tools/misc/ckb-next/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { --replace-fail "/usr/bin/env sed" "${lib.getExe gnused}" ''; - meta = with lib; { + meta = { description = "Driver and configuration tool for Corsair keyboards and mice"; homepage = "https://github.com/ckb-next/ckb-next"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "ckb-next"; maintainers = [ ]; }; diff --git a/pkgs/tools/misc/cmdpack/default.nix b/pkgs/tools/misc/cmdpack/default.nix index a40317ba248e..0148aeeadcd6 100644 --- a/pkgs/tools/misc/cmdpack/default.nix +++ b/pkgs/tools/misc/cmdpack/default.nix @@ -36,13 +36,13 @@ let runHook postInstall ''; - meta = with lib; { + meta = { inherit description; homepage = "https://web.archive.org/web/20140330233023/http://www.neillcorlett.com/cmdpack/"; - platforms = platforms.all; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ zane ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ zane ]; }; }; in diff --git a/pkgs/tools/misc/coreboot-configurator/default.nix b/pkgs/tools/misc/coreboot-configurator/default.nix index 7c352238fb21..0c44e23bee3c 100644 --- a/pkgs/tools/misc/coreboot-configurator/default.nix +++ b/pkgs/tools/misc/coreboot-configurator/default.nix @@ -61,12 +61,12 @@ mkDerivation { --replace '/usr/bin/coreboot-configurator' 'coreboot-configurator' ''; - meta = with lib; { + meta = { description = "Simple GUI to change settings in Coreboot's CBFS"; homepage = "https://support.starlabs.systems/kb/guides/coreboot-configurator"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ danth ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ danth ]; mainProgram = "coreboot-configurator"; }; } diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 221f9853f6af..dd6cfcdb68d0 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -264,7 +264,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/coreutils/"; description = "GNU Core Utilities"; longDescription = '' @@ -272,9 +272,9 @@ stdenv.mkDerivation rec { utilities of the GNU operating system. These are the core utilities which are expected to exist on every operating system. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ das_j ]; - platforms = with platforms; unix ++ windows; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ das_j ]; + platforms = with lib.platforms; unix ++ windows; priority = 10; }; } diff --git a/pkgs/tools/misc/dialogbox/default.nix b/pkgs/tools/misc/dialogbox/default.nix index a6f6f7d94d57..4be8bdc21aee 100644 --- a/pkgs/tools/misc/dialogbox/default.nix +++ b/pkgs/tools/misc/dialogbox/default.nix @@ -37,13 +37,13 @@ mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/martynets/dialogbox/"; description = "Qt-based scriptable engine providing GUI dialog boxes"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "dialogbox"; }; } diff --git a/pkgs/tools/misc/dvtm/dvtm.nix b/pkgs/tools/misc/dvtm/dvtm.nix index 8bf1dd971d05..5374e5b52f49 100644 --- a/pkgs/tools/misc/dvtm/dvtm.nix +++ b/pkgs/tools/misc/dvtm/dvtm.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Dynamic virtual terminal manager"; homepage = "http://www.brain-dump.org/projects/dvtm"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix index 3d423accffd0..c96214519966 100644 --- a/pkgs/tools/misc/file/default.nix +++ b/pkgs/tools/misc/file/default.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { homepage = "https://darwinsys.com/file"; description = "Program that shows the type of files"; - maintainers = with maintainers; [ doronbehar ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ doronbehar ]; + license = lib.licenses.bsd2; pkgConfigModules = [ "libmagic" ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "file"; }; }) diff --git a/pkgs/tools/misc/fltrdr/default.nix b/pkgs/tools/misc/fltrdr/default.nix index f70e9a5a2583..399536b0d5a5 100644 --- a/pkgs/tools/misc/fltrdr/default.nix +++ b/pkgs/tools/misc/fltrdr/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { homepage = "https://octobanana.com/software/fltrdr"; description = "TUI text reader for the terminal"; @@ -39,9 +39,9 @@ stdenv.mkDerivation rec { setting. ''; - platforms = platforms.linux; # can only test linux - license = licenses.mit; - maintainers = [ maintainers.matthiasbeyer ]; + platforms = lib.platforms.linux; # can only test linux + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthiasbeyer ]; mainProgram = "fltrdr"; }; } diff --git a/pkgs/tools/misc/fluentd/default.nix b/pkgs/tools/misc/fluentd/default.nix index e87f69408ac8..d7140f31c836 100644 --- a/pkgs/tools/misc/fluentd/default.nix +++ b/pkgs/tools/misc/fluentd/default.nix @@ -15,14 +15,14 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "fluentd"; passthru.tests.fluentd = nixosTests.fluentd; - meta = with lib; { + meta = { description = "Data collector"; homepage = "https://www.fluentd.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/gams/default.nix b/pkgs/tools/misc/gams/default.nix index d27d3ddacd9d..9c4c9f976d2f 100644 --- a/pkgs/tools/misc/gams/default.nix +++ b/pkgs/tools/misc/gams/default.nix @@ -45,16 +45,16 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "General Algebraic Modeling System"; longDescription = '' The General Algebraic Modeling System is a high-level modeling system for mathematical optimization. GAMS is designed for modeling and solving linear, nonlinear, and mixed-integer optimization problems. ''; homepage = "https://www.gams.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.Scriptkiddi ]; - platforms = platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.Scriptkiddi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/misc/geekbench/4.nix b/pkgs/tools/misc/geekbench/4.nix index 7e3b75a198bb..a47a10ca4927 100644 --- a/pkgs/tools/misc/geekbench/4.nix +++ b/pkgs/tools/misc/geekbench/4.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cross-platform benchmark"; homepage = "https://geekbench.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.michalrus ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.michalrus ]; platforms = [ "x86_64-linux" ]; mainProgram = "geekbench4"; }; diff --git a/pkgs/tools/misc/geekbench/5.nix b/pkgs/tools/misc/geekbench/5.nix index 0bec3ca724a2..bed5a5c6c745 100644 --- a/pkgs/tools/misc/geekbench/5.nix +++ b/pkgs/tools/misc/geekbench/5.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cross-platform benchmark"; homepage = "https://geekbench.com/"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.michalrus ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.michalrus ]; platforms = builtins.attrNames sources; mainProgram = "geekbench5"; }; diff --git a/pkgs/tools/misc/graylog/graylog.nix b/pkgs/tools/misc/graylog/graylog.nix index 3890f493f295..7a605a9693f5 100644 --- a/pkgs/tools/misc/graylog/graylog.nix +++ b/pkgs/tools/misc/graylog/graylog.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/graylogctl $makeWrapperArgs ''; - meta = with lib; { + meta = { description = "Open source log management solution"; homepage = "https://www.graylog.org/"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; inherit license; inherit maintainers; mainProgram = "graylogctl"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/grub/default.nix b/pkgs/tools/misc/grub/default.nix index e589e33f60a8..497464af54e1 100644 --- a/pkgs/tools/misc/grub/default.nix +++ b/pkgs/tools/misc/grub/default.nix @@ -670,7 +670,7 @@ stdenv.mkDerivation rec { nixos-install-grub-uefi-spec = nixosTests.installer.simpleUefiGrubSpecialisation; }; - meta = with lib; { + meta = { description = "GNU GRUB, the Grand Unified Boot Loader"; longDescription = '' @@ -687,7 +687,7 @@ stdenv.mkDerivation rec { homepage = "https://www.gnu.org/software/grub/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = if efiSupport then @@ -697,7 +697,7 @@ stdenv.mkDerivation rec { else if xenPvhSupport then lib.attrNames xenPvhSystemsBuild else - platforms.gnu ++ platforms.linux; + lib.platforms.gnu ++ lib.platforms.linux; maintainers = [ ]; }; diff --git a/pkgs/tools/misc/grub4dos/default.nix b/pkgs/tools/misc/grub4dos/default.nix index 25651c6f5c58..473dc8b2aceb 100644 --- a/pkgs/tools/misc/grub4dos/default.nix +++ b/pkgs/tools/misc/grub4dos/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { # make[2]: *** No rule to make target 'pre_stage2_fullsize', needed by 'all-am'. Stop. enableParallelBuilding = false; - meta = with lib; { + meta = { homepage = "http://grub4dos.chenall.net/"; description = "GRUB for DOS is the dos extension of GRUB"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; # Needs a port to modern binutils: # https://github.com/chenall/grub4dos/issues/160 broken = true; diff --git a/pkgs/tools/misc/gwe/default.nix b/pkgs/tools/misc/gwe/default.nix index 10c67af8cd80..97dc53555fef 100644 --- a/pkgs/tools/misc/gwe/default.nix +++ b/pkgs/tools/misc/gwe/default.nix @@ -92,11 +92,11 @@ stdenv.mkDerivation rec { ''${gappsWrapperArgs[@]} ''; - meta = with lib; { + meta = { description = "System utility designed to provide information, control the fans and overclock your NVIDIA card"; homepage = "https://gitlab.com/leinardi/gwe"; - platforms = platforms.linux; - license = licenses.gpl3Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "gwe"; }; diff --git a/pkgs/tools/misc/haste-client/default.nix b/pkgs/tools/misc/haste-client/default.nix index abaf8312dc35..0ff27c6a0fd7 100644 --- a/pkgs/tools/misc/haste-client/default.nix +++ b/pkgs/tools/misc/haste-client/default.nix @@ -8,12 +8,12 @@ bundlerApp { gemdir = ./.; exes = [ "haste" ]; - meta = with lib; { + meta = { description = "Command line interface to the AnyStyle Parser and Finder"; homepage = "https://rubygems.org/gems/haste"; - license = licenses.mit; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.unix; mainProgram = "haste"; }; } diff --git a/pkgs/tools/misc/hdf5/default.nix b/pkgs/tools/misc/hdf5/default.nix index 5ffe4f810dcd..9434865d8e2c 100644 --- a/pkgs/tools/misc/hdf5/default.nix +++ b/pkgs/tools/misc/hdf5/default.nix @@ -133,7 +133,7 @@ stdenv.mkDerivation rec { inherit (python3.pkgs) h5py; }; - meta = with lib; { + meta = { description = "Data model, library, and file format for storing and managing data"; longDescription = '' HDF5 supports an unlimited variety of datatypes, and is designed for flexible and efficient @@ -141,9 +141,9 @@ stdenv.mkDerivation rec { applications to evolve in their use of HDF5. The HDF5 Technology suite includes tools and applications for managing, manipulating, viewing, and analyzing data in the HDF5 format. ''; - license = licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant - maintainers = [ maintainers.markuskowa ]; + license = lib.licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant + maintainers = [ lib.maintainers.markuskowa ]; homepage = "https://www.hdfgroup.org/HDF5/"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/html-proofer/default.nix b/pkgs/tools/misc/html-proofer/default.nix index 32d810ee4e41..0b8202d03fd4 100644 --- a/pkgs/tools/misc/html-proofer/default.nix +++ b/pkgs/tools/misc/html-proofer/default.nix @@ -15,12 +15,12 @@ bundlerEnv rec { passthru.updateScript = bundlerUpdateScript pname; - meta = with lib; { + meta = { description = "Tool to validate HTML files"; homepage = "https://github.com/gjtorikian/html-proofer"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "htmlproofer"; }; } diff --git a/pkgs/tools/misc/kronometer/default.nix b/pkgs/tools/misc/kronometer/default.nix index a3c5818a4933..5ad32d67810e 100644 --- a/pkgs/tools/misc/kronometer/default.nix +++ b/pkgs/tools/misc/kronometer/default.nix @@ -26,11 +26,11 @@ mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/utilities/kronometer/"; description = "Stopwatch application"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "kronometer"; }; nativeBuildInputs = [ diff --git a/pkgs/tools/misc/lice/default.nix b/pkgs/tools/misc/lice/default.nix index 79511817950d..fb54089a231a 100644 --- a/pkgs/tools/misc/lice/default.nix +++ b/pkgs/tools/misc/lice/default.nix @@ -19,12 +19,12 @@ buildPythonPackage rec { propagatedBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Print license based on selection and user options"; homepage = "https://github.com/licenses/lice"; - license = licenses.bsd3; - maintainers = with maintainers; [ swflint ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ swflint ]; + platforms = lib.platforms.unix; mainProgram = "lice"; }; diff --git a/pkgs/tools/misc/logstash/7.x.nix b/pkgs/tools/misc/logstash/7.x.nix index df84399d2b16..7d09cd140ff6 100644 --- a/pkgs/tools/misc/logstash/7.x.nix +++ b/pkgs/tools/misc/logstash/7.x.nix @@ -65,17 +65,17 @@ let runHook postInstall ''; - meta = with lib; { + meta = { description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems"; homepage = "https://www.elastic.co/products/logstash"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars binaryNativeCode # bundled jruby includes native code ]; - license = if enableUnfree then licenses.elastic20 else licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = if enableUnfree then lib.licenses.elastic20 else lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ offline basvandijk ]; diff --git a/pkgs/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix index 8842122cca6a..8ff9aa80d4ea 100644 --- a/pkgs/tools/misc/moreutils/default.nix +++ b/pkgs/tools/misc/moreutils/default.nix @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { url = "git://git.joeyh.name/moreutils"; }; - meta = with lib; { + meta = { description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young"; homepage = "https://joeyh.name/code/moreutils/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ koral pSub ]; - platforms = platforms.all; - license = licenses.gpl2Plus; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/tools/misc/nvfancontrol/default.nix b/pkgs/tools/misc/nvfancontrol/default.nix index edcb8717d6bd..89149abffb32 100644 --- a/pkgs/tools/misc/nvfancontrol/default.nix +++ b/pkgs/tools/misc/nvfancontrol/default.nix @@ -31,13 +31,13 @@ rustPlatform.buildRustPackage rec { export LIBRARY_PATH=${libXNVCtrl}/lib:${libX11}/lib:${libXext}/lib ''; - meta = with lib; { + meta = { description = "Nvidia dynamic fan control for Linux"; homepage = "https://github.com/foucault/nvfancontrol"; changelog = "https://github.com/foucault/nvfancontrol/releases/tag/${version}"; - license = with licenses; [ gpl3Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ devins2518 ]; + license = with lib.licenses; [ gpl3Only ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ devins2518 ]; mainProgram = "nvfancontrol"; }; } diff --git a/pkgs/tools/misc/online-judge-template-generator/default.nix b/pkgs/tools/misc/online-judge-template-generator/default.nix index a06a93c39e1d..1335fcc6a52e 100644 --- a/pkgs/tools/misc/online-judge-template-generator/default.nix +++ b/pkgs/tools/misc/online-judge-template-generator/default.nix @@ -44,10 +44,10 @@ buildPythonApplication rec { # Needs internet to run tests doCheck = false; - meta = with lib; { + meta = { description = "Analyze problems of competitive programming and automatically generate boilerplate"; homepage = "https://github.com/online-judge-tools/template-generator"; - license = licenses.mit; - maintainers = with maintainers; [ sei40kr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sei40kr ]; }; } diff --git a/pkgs/tools/misc/opentelemetry-collector/releases.nix b/pkgs/tools/misc/opentelemetry-collector/releases.nix index 0dd0d4510afc..656ee5fc0aa2 100644 --- a/pkgs/tools/misc/opentelemetry-collector/releases.nix +++ b/pkgs/tools/misc/opentelemetry-collector/releases.nix @@ -124,7 +124,7 @@ let }; }; - meta = with lib; { + meta = { homepage = "https://github.com/open-telemetry/opentelemetry-collector-releases"; description = "OpenTelemetry Collector Official Releases"; longDescription = '' @@ -134,8 +134,8 @@ let support open-source telemetry data formats (e.g. Jaeger, Prometheus, etc.) sending to multiple open-source or commercial back-ends. ''; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk zimbatm ]; diff --git a/pkgs/tools/misc/pandoc-acro/default.nix b/pkgs/tools/misc/pandoc-acro/default.nix index 345c56f9eafb..95f15d32d76c 100644 --- a/pkgs/tools/misc/pandoc-acro/default.nix +++ b/pkgs/tools/misc/pandoc-acro/default.nix @@ -61,11 +61,11 @@ buildPythonApplication { ! grep -q "\+afaik" $out/example.txt ''; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/pandoc-acro/"; description = "Pandoc filter which manages acronyms in Pandoc flavored Markdown sources"; - license = licenses.bsd2; - maintainers = with maintainers; [ tfc ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ tfc ]; mainProgram = "pandoc-acro"; }; } diff --git a/pkgs/tools/misc/pandoc-drawio-filter/default.nix b/pkgs/tools/misc/pandoc-drawio-filter/default.nix index 7e330dcdde00..c49a057289b1 100644 --- a/pkgs/tools/misc/pandoc-drawio-filter/default.nix +++ b/pkgs/tools/misc/pandoc-drawio-filter/default.nix @@ -45,11 +45,11 @@ let pandoc -F pandoc-drawio example.md -T pdf -o $out ''; - meta = with lib; { + meta = { homepage = "https://github.com/tfc/pandoc-drawio-filter"; description = "Pandoc filter which converts draw.io diagrams to PDF"; - license = licenses.mit; - maintainers = with maintainers; [ tfc ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tfc ]; mainProgram = "pandoc-drawio"; }; }; diff --git a/pkgs/tools/misc/pandoc-eqnos/default.nix b/pkgs/tools/misc/pandoc-eqnos/default.nix index 0947d6769aac..30124ea4b11a 100644 --- a/pkgs/tools/misc/pandoc-eqnos/default.nix +++ b/pkgs/tools/misc/pandoc-eqnos/default.nix @@ -27,11 +27,11 @@ buildPythonApplication rec { # Different pandoc executables are not available doCheck = false; - meta = with lib; { + meta = { description = "Standalone pandoc filter from the pandoc-xnos suite for numbering equations and equation references"; homepage = "https://github.com/tomduck/pandoc-eqnos"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ppenguin ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ppenguin ]; mainProgram = "pandoc-eqnos"; }; } diff --git a/pkgs/tools/misc/pandoc-fignos/default.nix b/pkgs/tools/misc/pandoc-fignos/default.nix index 226405ba1429..ee38652cd89d 100644 --- a/pkgs/tools/misc/pandoc-fignos/default.nix +++ b/pkgs/tools/misc/pandoc-fignos/default.nix @@ -27,11 +27,11 @@ buildPythonApplication rec { # Different pandoc executables are not available doCheck = false; - meta = with lib; { + meta = { description = "Standalone pandoc filter from the pandoc-xnos suite for numbering figures and figure references"; homepage = "https://github.com/tomduck/pandoc-fignos"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ppenguin ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ppenguin ]; mainProgram = "pandoc-fignos"; }; } diff --git a/pkgs/tools/misc/pandoc-imagine/default.nix b/pkgs/tools/misc/pandoc-imagine/default.nix index 305d7b92a12a..c9e36942c76d 100644 --- a/pkgs/tools/misc/pandoc-imagine/default.nix +++ b/pkgs/tools/misc/pandoc-imagine/default.nix @@ -26,14 +26,14 @@ buildPythonApplication rec { # No tests in archive doCheck = false; - meta = with lib; { + meta = { homepage = src.meta.homepage; description = '' A pandoc filter that will turn code blocks tagged with certain classes into images or ASCII art ''; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ synthetica ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ synthetica ]; mainProgram = "pandoc-imagine"; }; } diff --git a/pkgs/tools/misc/pandoc-include/default.nix b/pkgs/tools/misc/pandoc-include/default.nix index cee692c0ba61..d915a587f787 100644 --- a/pkgs/tools/misc/pandoc-include/default.nix +++ b/pkgs/tools/misc/pandoc-include/default.nix @@ -35,11 +35,11 @@ buildPythonApplication rec { pythonImportsCheck = [ "pandoc_include.main" ]; - meta = with lib; { + meta = { description = "Pandoc filter to allow file and header includes"; homepage = "https://github.com/DCsunset/pandoc-include"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ppenguin DCsunset ]; diff --git a/pkgs/tools/misc/pandoc-secnos/default.nix b/pkgs/tools/misc/pandoc-secnos/default.nix index d76e2d905fe9..87245face55a 100644 --- a/pkgs/tools/misc/pandoc-secnos/default.nix +++ b/pkgs/tools/misc/pandoc-secnos/default.nix @@ -31,11 +31,11 @@ buildPythonApplication rec { # Different pandoc executables are not available doCheck = false; - meta = with lib; { + meta = { description = "Standalone pandoc filter from the pandoc-xnos suite for numbering sections and section references"; homepage = "https://github.com/tomduck/pandoc-secnos"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ppenguin ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ppenguin ]; mainProgram = "pandoc-secnos"; }; } diff --git a/pkgs/tools/misc/pandoc-tablenos/default.nix b/pkgs/tools/misc/pandoc-tablenos/default.nix index eede87b92e19..24009a29ec14 100644 --- a/pkgs/tools/misc/pandoc-tablenos/default.nix +++ b/pkgs/tools/misc/pandoc-tablenos/default.nix @@ -27,11 +27,11 @@ buildPythonApplication rec { # Different pandoc executables are not available doCheck = false; - meta = with lib; { + meta = { description = "Standalone pandoc filter from the pandoc-xnos suite for numbering tables and table references"; homepage = "https://github.com/tomduck/pandoc-tablenos"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ppenguin ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ppenguin ]; mainProgram = "pandoc-tablenos"; }; } diff --git a/pkgs/tools/misc/qflipper/default.nix b/pkgs/tools/misc/qflipper/default.nix index 568a16845daf..62f253871e8e 100644 --- a/pkgs/tools/misc/qflipper/default.nix +++ b/pkgs/tools/misc/qflipper/default.nix @@ -98,12 +98,12 @@ mkDerivation { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Cross-platform desktop tool to manage your flipper device"; homepage = "https://flipperzero.one/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ cab404 ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ cab404 ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/tools/misc/qjoypad/default.nix b/pkgs/tools/misc/qjoypad/default.nix index 5059fb58bfea..e2b56f9b53bf 100644 --- a/pkgs/tools/misc/qjoypad/default.nix +++ b/pkgs/tools/misc/qjoypad/default.nix @@ -38,7 +38,7 @@ mkDerivation rec { qtx11extras ]; - meta = with lib; { + meta = { description = "Program that lets you use gaming devices anywhere"; longDescription = '' A simple Linux/QT program that lets you use your gaming devices @@ -58,7 +58,7 @@ mkDerivation rec { ''; homepage = "https://github.com/panzi/qjoypad/"; license = lib.licenses.gpl2Only; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; mainProgram = "qjoypad"; }; } diff --git a/pkgs/tools/misc/qt5ct/default.nix b/pkgs/tools/misc/qt5ct/default.nix index dec3ed188802..2f2aec26273e 100644 --- a/pkgs/tools/misc/qt5ct/default.nix +++ b/pkgs/tools/misc/qt5ct/default.nix @@ -37,11 +37,11 @@ mkDerivation rec { "LIBDIR=${placeholder "out"}/lib" ]; - meta = with lib; { + meta = { description = "Qt5 Configuration Tool"; homepage = "https://sourceforge.net/projects/qt5ct/"; - platforms = platforms.linux; - license = licenses.bsd2; + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "qt5ct"; }; diff --git a/pkgs/tools/misc/r3ctl/default.nix b/pkgs/tools/misc/r3ctl/default.nix index 5e315286c427..892b618e44f9 100644 --- a/pkgs/tools/misc/r3ctl/default.nix +++ b/pkgs/tools/misc/r3ctl/default.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { qtwebsockets ]; - meta = with lib; { + meta = { description = "Cmdline tool to control the r3 hackerspace lights"; mainProgram = "r3ctl"; homepage = "https://github.com/0xfeedc0de64/r3ctl"; - maintainers = with maintainers; [ mkg20001 ]; - license = licenses.gpl3Only; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ mkg20001 ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/misc/radeon-profile/default.nix b/pkgs/tools/misc/radeon-profile/default.nix index 5b39116a42cf..d9156426e5e2 100644 --- a/pkgs/tools/misc/radeon-profile/default.nix +++ b/pkgs/tools/misc/radeon-profile/default.nix @@ -36,11 +36,11 @@ mkDerivation rec { --replace "/usr/" "$out/" ''; - meta = with lib; { + meta = { description = "Application to read current clocks of AMD Radeon cards"; homepage = "https://github.com/marazmista/radeon-profile"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "radeon-profile"; }; diff --git a/pkgs/tools/misc/remote-exec/default.nix b/pkgs/tools/misc/remote-exec/default.nix index 4c0ddc47b679..fb4c4e1e3355 100644 --- a/pkgs/tools/misc/remote-exec/default.nix +++ b/pkgs/tools/misc/remote-exec/default.nix @@ -64,11 +64,11 @@ buildPythonApplication rec { "test/test_file_changes.py" ]; - meta = with lib; { + meta = { description = "Work with remote hosts seamlessly via rsync and ssh"; homepage = "https://github.com/remote-cli/remote"; changelog = "https://github.com/remote-cli/remote/releases/tag/v${version}"; - license = licenses.bsd2; - maintainers = with maintainers; [ pbsds ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ pbsds ]; }; } diff --git a/pkgs/tools/misc/rmlint/default.nix b/pkgs/tools/misc/rmlint/default.nix index 8e15a2cfe545..3646164672bb 100644 --- a/pkgs/tools/misc/rmlint/default.nix +++ b/pkgs/tools/misc/rmlint/default.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${python3.pkgs.pygobject3}):$(toPythonPath ${python3.pkgs.pycairo})") ''; - meta = with lib; { + meta = { description = "Extremely fast tool to remove duplicates and other lint from your filesystem"; homepage = "https://rmlint.readthedocs.org"; - platforms = platforms.unix; - license = licenses.gpl3; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ aaschmid koral ]; diff --git a/pkgs/tools/misc/scfbuild/default.nix b/pkgs/tools/misc/scfbuild/default.nix index e5831a33ce9a..99b17307263e 100644 --- a/pkgs/tools/misc/scfbuild/default.nix +++ b/pkgs/tools/misc/scfbuild/default.nix @@ -39,10 +39,10 @@ buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { description = "SVGinOT color font builder"; homepage = "https://github.com/13rac1/scfbuild"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; mainProgram = "scfbuild"; }; diff --git a/pkgs/tools/misc/seaborn-data/default.nix b/pkgs/tools/misc/seaborn-data/default.nix index 65a81c299c80..f105756072f1 100644 --- a/pkgs/tools/misc/seaborn-data/default.nix +++ b/pkgs/tools/misc/seaborn-data/default.nix @@ -9,11 +9,11 @@ let base = { version = "unstable-2023-01-26"; dontBuild = true; - meta = with lib; { + meta = { description = "Data repository for seaborn examples"; homepage = "https://github.com/mwaskom/seaborn-data"; - platforms = platforms.all; - maintainers = with maintainers; [ mbalatsko ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mbalatsko ]; }; }; makeSeabornDataPackage = diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix index 04564c690f1a..d89d12f1b735 100644 --- a/pkgs/tools/misc/tlp/default.nix +++ b/pkgs/tools/misc/tlp/default.nix @@ -136,15 +136,15 @@ stdenv.mkDerivation rec { rm -rf $out/share/metainfo ''; - meta = with lib; { + meta = { description = "Advanced Power Management for Linux"; homepage = "https://linrunner.de/en/tlp/docs/tlp-linux-advanced-power-management.html"; changelog = "https://github.com/linrunner/TLP/releases/tag/${version}"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "tlp"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovesegfault ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/tools/misc/ultrastar-creator/default.nix b/pkgs/tools/misc/ultrastar-creator/default.nix index 05772fba6bec..2af29bf9ae83 100644 --- a/pkgs/tools/misc/ultrastar-creator/default.nix +++ b/pkgs/tools/misc/ultrastar-creator/default.nix @@ -53,11 +53,11 @@ mkDerivation { libbass_fx ]; - meta = with lib; { + meta = { mainProgram = "UltraStar-Creator"; description = "Ultrastar karaoke song creation tool"; homepage = "https://github.com/UltraStar-Deluxe/UltraStar-Creator"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ Profpatsch ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ Profpatsch ]; }; } diff --git a/pkgs/tools/misc/ultrastar-manager/default.nix b/pkgs/tools/misc/ultrastar-manager/default.nix index 8017c5653531..870ac9b4987a 100644 --- a/pkgs/tools/misc/ultrastar-manager/default.nix +++ b/pkgs/tools/misc/ultrastar-manager/default.nix @@ -137,11 +137,11 @@ mkDerivation { nativeBuildInputs = [ pkg-config ]; inherit buildInputs; - meta = with lib; { + meta = { description = "Ultrastar karaoke song manager"; mainProgram = "UltraStar-Manager"; homepage = "https://github.com/UltraStar-Deluxe/UltraStar-Manager"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ Profpatsch ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ Profpatsch ]; }; } diff --git a/pkgs/tools/misc/vimpager/build.nix b/pkgs/tools/misc/vimpager/build.nix index f3e146fd14f1..d8dfc0dd3c85 100644 --- a/pkgs/tools/misc/vimpager/build.nix +++ b/pkgs/tools/misc/vimpager/build.nix @@ -32,14 +32,14 @@ stdenv.mkDerivation { make ''; - meta = with lib; { + meta = { description = "Use Vim as PAGER"; homepage = "https://www.vim.org/scripts/script.php?script_id=1723"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 mit vim ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/vimwiki-markdown/default.nix b/pkgs/tools/misc/vimwiki-markdown/default.nix index 7a9674023a5a..00cf23aa9b36 100644 --- a/pkgs/tools/misc/vimwiki-markdown/default.nix +++ b/pkgs/tools/misc/vimwiki-markdown/default.nix @@ -21,11 +21,11 @@ buildPythonApplication rec { pygments ]; - meta = with lib; { + meta = { description = "Vimwiki markdown plugin"; homepage = "https://github.com/WnP/vimwiki_markdown"; - license = licenses.mit; - maintainers = with maintainers; [ seqizz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ seqizz ]; mainProgram = "vimwiki_markdown"; }; } diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index 5f55e49c2b2c..d70ee0ede206 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -76,11 +76,11 @@ stdenvNoCC.mkDerivation { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Convenience script to run a virtualized X-Server"; - platforms = platforms.linux; - license = licenses.gpl2Only; - maintainers = [ maintainers.artturin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.artturin ]; mainProgram = "xvfb-run"; }; } diff --git a/pkgs/tools/misc/yafetch/default.nix b/pkgs/tools/misc/yafetch/default.nix index 8b05f19e7447..b9a453737bff 100644 --- a/pkgs/tools/misc/yafetch/default.nix +++ b/pkgs/tools/misc/yafetch/default.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { # Fixes installation path PREFIX = placeholder "out"; - meta = with lib; { + meta = { homepage = "https://github.com/kira64xyz/yafetch"; description = "Yet another fetch clone written in C++"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ashley ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ashley ]; + platforms = lib.platforms.linux; mainProgram = "yafetch"; }; } diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 2591f562a403..f51d1e26687f 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -97,7 +97,7 @@ buildPythonPackage rec { # Requires network doCheck = false; - meta = with lib; { + meta = { homepage = "https://ytdl-org.github.io/youtube-dl/"; description = "Command-line tool to download videos from YouTube.com and other sites"; longDescription = '' @@ -106,11 +106,11 @@ buildPythonPackage rec { the public domain, which means you can modify it, redistribute it or use it however you like. ''; - license = licenses.unlicense; - maintainers = with maintainers; [ + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ fpletz ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "youtube-dl"; knownVulnerabilities = [ "youtube-dl is unmaintained, migrate to yt-dlp, if possible" diff --git a/pkgs/tools/networking/acme-client/default.nix b/pkgs/tools/networking/acme-client/default.nix index 539c93807448..6523c9eb9ac6 100644 --- a/pkgs/tools/networking/acme-client/default.nix +++ b/pkgs/tools/networking/acme-client/default.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Secure ACME/Let's Encrypt client"; homepage = "https://git.wolfsden.cz/acme-client-portable"; - platforms = platforms.unix; - license = licenses.isc; - maintainers = with maintainers; [ pmahoney ]; + platforms = lib.platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ pmahoney ]; mainProgram = "acme-client"; }; } diff --git a/pkgs/tools/networking/apc-temp-fetch/default.nix b/pkgs/tools/networking/apc-temp-fetch/default.nix index 9abd00897025..5f92ebd8a243 100644 --- a/pkgs/tools/networking/apc-temp-fetch/default.nix +++ b/pkgs/tools/networking/apc-temp-fetch/default.nix @@ -32,10 +32,10 @@ buildPythonApplication rec { "APC_Temp_fetch" ]; - meta = with lib; { + meta = { description = "Unified temperature fetcher interface to several UPS network adapters"; homepage = "https://github.com/YZITE/APC_Temp_fetch"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/tools/networking/axel/default.nix b/pkgs/tools/networking/axel/default.nix index 47b02c198a69..9c06651ff328 100644 --- a/pkgs/tools/networking/axel/default.nix +++ b/pkgs/tools/networking/axel/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { cp doc/axelrc.example $out/share/doc/axelrc.example ''; - meta = with lib; { + meta = { description = "Console downloading program with some features for parallel connections for faster downloading"; homepage = "https://github.com/axel-download-accelerator/axel"; - maintainers = with maintainers; [ pSub ]; - platforms = with platforms; unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub ]; + platforms = with lib.platforms; unix; + license = lib.licenses.gpl2Plus; mainProgram = "axel"; }; } diff --git a/pkgs/tools/networking/dd-agent/datadog-agent.nix b/pkgs/tools/networking/dd-agent/datadog-agent.nix index 94261b7be1ce..d6815111c982 100644 --- a/pkgs/tools/networking/dd-agent/datadog-agent.nix +++ b/pkgs/tools/networking/dd-agent/datadog-agent.nix @@ -124,14 +124,14 @@ buildGoModule rec { command = "agent version"; }; - meta = with lib; { + meta = { description = '' Event collector for the DataDog analysis service -- v6 new golang implementation. ''; homepage = "https://www.datadoghq.com"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; diff --git a/pkgs/tools/networking/dnschef/default.nix b/pkgs/tools/networking/dnschef/default.nix index 5d36f80253fb..093005ed979e 100644 --- a/pkgs/tools/networking/dnschef/default.nix +++ b/pkgs/tools/networking/dnschef/default.nix @@ -23,11 +23,11 @@ buildPythonApplication { propagatedBuildInputs = [ dnslib ]; - meta = with lib; { + meta = { homepage = "https://github.com/iphelix/dnschef"; description = "Highly configurable DNS proxy for penetration testers and malware analysts"; mainProgram = "dnschef"; - license = licenses.bsd3; - maintainers = [ maintainers.gfrascadorio ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.gfrascadorio ]; }; } diff --git a/pkgs/tools/networking/ebpf-verifier/default.nix b/pkgs/tools/networking/ebpf-verifier/default.nix index cd31356411c2..549b0bbb6106 100644 --- a/pkgs/tools/networking/ebpf-verifier/default.nix +++ b/pkgs/tools/networking/ebpf-verifier/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "eBPF verifier based on abstract interpretation"; homepage = "https://github.com/vbpf/ebpf-verifier"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ gaelreyrol ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "ebpf-verifier"; }; } diff --git a/pkgs/tools/networking/flannel/default.nix b/pkgs/tools/networking/flannel/default.nix index 3ef641264350..4d0c0961ea19 100644 --- a/pkgs/tools/networking/flannel/default.nix +++ b/pkgs/tools/networking/flannel/default.nix @@ -26,15 +26,15 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) flannel; }; - meta = with lib; { + meta = { description = "Network fabric for containers, designed for Kubernetes"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/flannel-io/flannel"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ johanot offline ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; mainProgram = "flannel"; }; } diff --git a/pkgs/tools/networking/flannel/plugin.nix b/pkgs/tools/networking/flannel/plugin.nix index 411f5490d4aa..f8ae18521f80 100644 --- a/pkgs/tools/networking/flannel/plugin.nix +++ b/pkgs/tools/networking/flannel/plugin.nix @@ -38,12 +38,12 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Network fabric for containers designed to work in conjunction with flannel"; mainProgram = "flannel"; homepage = "https://github.com/flannel-io/cni-plugin/"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ abbe ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbe ]; }; } diff --git a/pkgs/tools/networking/gandi-cli/default.nix b/pkgs/tools/networking/gandi-cli/default.nix index 7bee2bc59db5..a75381c1fb9f 100644 --- a/pkgs/tools/networking/gandi-cli/default.nix +++ b/pkgs/tools/networking/gandi-cli/default.nix @@ -31,11 +31,11 @@ buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "gandi" ]; - meta = with lib; { + meta = { description = "Command-line interface to the public Gandi.net API"; mainProgram = "gandi"; homepage = "https://cli.gandi.net/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/tools/networking/globalprotect-openconnect/default.nix b/pkgs/tools/networking/globalprotect-openconnect/default.nix index fdc1814cd920..cc470829875f 100644 --- a/pkgs/tools/networking/globalprotect-openconnect/default.nix +++ b/pkgs/tools/networking/globalprotect-openconnect/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { find . -name "CMakeLists.txt" -exec sed -i 's/cmake_minimum_required(VERSION [^)]*)/cmake_minimum_required(VERSION 3.16)/g' {} \; ''; - meta = with lib; { + meta = { description = "GlobalProtect VPN client (GUI) for Linux based on OpenConnect that supports SAML auth mode"; homepage = "https://github.com/yuezk/GlobalProtect-openconnect"; - license = licenses.gpl3Only; - maintainers = [ maintainers.jerith666 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.jerith666 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/networking/gmrender-resurrect/default.nix b/pkgs/tools/networking/gmrender-resurrect/default.nix index 1be8d6d62a6a..2ccf6bb68a17 100644 --- a/pkgs/tools/networking/gmrender-resurrect/default.nix +++ b/pkgs/tools/networking/gmrender-resurrect/default.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Resource efficient UPnP/DLNA renderer, optimal for Raspberry Pi, CuBox or a general MediaServer"; mainProgram = "gmediarender"; homepage = "https://github.com/hzeller/gmrender-resurrect"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ koral hzeller ]; diff --git a/pkgs/tools/networking/iperf/2.nix b/pkgs/tools/networking/iperf/2.nix index ec623e9dcefc..d749be1b8332 100644 --- a/pkgs/tools/networking/iperf/2.nix +++ b/pkgs/tools/networking/iperf/2.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation (finalAttrs: { ln -s $out/bin/iperf2 $out/bin/iperf ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/iperf/"; description = "Tool to measure IP bandwidth using UDP or TCP"; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; # prioritize iperf3 priority = 10; diff --git a/pkgs/tools/networking/iroh/default.nix b/pkgs/tools/networking/iroh/default.nix index 1768772ab381..fdb4f8196b53 100644 --- a/pkgs/tools/networking/iroh/default.nix +++ b/pkgs/tools/networking/iroh/default.nix @@ -31,14 +31,14 @@ let # Some tests require network access which is not available in nix build sandbox. doCheck = false; - meta = with lib; { + meta = { description = "Efficient IPFS for the whole world right now"; homepage = "https://iroh.computer"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ andreashgk cameronfyfe ]; diff --git a/pkgs/tools/networking/knock/package.nix b/pkgs/tools/networking/knock/package.nix index c7b591c7939d..26fc0dbcee8c 100644 --- a/pkgs/tools/networking/knock/package.nix +++ b/pkgs/tools/networking/knock/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { installManPage man/man1/knock.1 ''; - meta = with lib; { + meta = { description = "Simple CLI network reachability tester"; homepage = "https://codeberg.org/nat-418/knock"; - license = licenses.bsd0; + license = lib.licenses.bsd0; changelog = "https://codeberg.org/nat-418/knock/raw/branch/trunk/CHANGELOG.md"; - maintainers = with maintainers; [ nat-418 ]; + maintainers = with lib.maintainers; [ nat-418 ]; }; } diff --git a/pkgs/tools/networking/lxi-tools/default.nix b/pkgs/tools/networking/lxi-tools/default.nix index c7fab943cfb3..100d34c13075 100644 --- a/pkgs/tools/networking/lxi-tools/default.nix +++ b/pkgs/tools/networking/lxi-tools/default.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { postInstall = lib.optionalString withGui "glib-compile-schemas $out/share/glib-2.0/schemas"; - meta = with lib; { + meta = { description = "Tool for communicating with LXI compatible instruments"; longDescription = '' lxi-tools is a collection of open source software tools @@ -73,9 +73,9 @@ stdenv.mkDerivation rec { spectrum analyzers etc. ''; homepage = "https://lxi-tools.github.io/"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = [ maintainers.vq ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.vq ]; mainProgram = "lxi"; }; } diff --git a/pkgs/tools/networking/maubot/default.nix b/pkgs/tools/networking/maubot/default.nix index b7be40c88d40..3288379b6025 100644 --- a/pkgs/tools/networking/maubot/default.nix +++ b/pkgs/tools/networking/maubot/default.nix @@ -133,16 +133,16 @@ let withBaseConfig = baseConfig: wrapper { inherit baseConfig; }; }; - meta = with lib; { + meta = { description = "Plugin-based Matrix bot system written in Python"; homepage = "https://maubot.xyz/"; changelog = "https://github.com/maubot/maubot/blob/v${version}/CHANGELOG.md"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; # Presumably, people running "nix run nixpkgs#maubot" will want to run the tool # for interacting with Maubot rather than Maubot itself, which should be used as # a NixOS module. mainProgram = "mbc"; - maintainers = with maintainers; [ chayleaf ]; + maintainers = with lib.maintainers; [ chayleaf ]; }; }; diff --git a/pkgs/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix index c78d310d2781..913b123cc9bb 100644 --- a/pkgs/tools/networking/miniupnpd/default.nix +++ b/pkgs/tools/networking/miniupnpd/default.nix @@ -117,11 +117,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) upnp; }; - meta = with lib; { + meta = { homepage = "https://miniupnp.tuxfamily.org/"; description = "Daemon that implements the UPnP Internet Gateway Device (IGD) specification"; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; mainProgram = "miniupnpd"; }; } diff --git a/pkgs/tools/networking/mtr/default.nix b/pkgs/tools/networking/mtr/default.nix index 7f7e1ab9f5ae..9f5d1875490f 100644 --- a/pkgs/tools/networking/mtr/default.nix +++ b/pkgs/tools/networking/mtr/default.nix @@ -49,17 +49,17 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Network diagnostics tool"; homepage = "https://www.bitwizard.nl/mtr/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ koral raskin globin ryan4yin ]; mainProgram = "mtr"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/namespaced-openvpn/default.nix b/pkgs/tools/networking/namespaced-openvpn/default.nix index ec48d8723049..ce74cd82937a 100644 --- a/pkgs/tools/networking/namespaced-openvpn/default.nix +++ b/pkgs/tools/networking/namespaced-openvpn/default.nix @@ -46,12 +46,12 @@ buildPythonPackage rec { cp namespaced-openvpn seal-unseal-gateway $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/slingamn/namespaced-openvpn"; description = "Network namespace isolation for OpenVPN tunnels"; - license = licenses.mit; - maintainers = [ maintainers.lodi ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lodi ]; + platforms = lib.platforms.linux; mainProgram = "namespaced-openvpn"; }; } diff --git a/pkgs/tools/networking/nxdomain/default.nix b/pkgs/tools/networking/nxdomain/default.nix index 87a3a2bc279a..636ef4100963 100644 --- a/pkgs/tools/networking/nxdomain/default.nix +++ b/pkgs/tools/networking/nxdomain/default.nix @@ -26,12 +26,12 @@ buildPythonApplication rec { grep -q 'address=/example.org/' dnsmasq.conf ''; - meta = with lib; { + meta = { homepage = "https://github.com/zopieux/nxdomain"; description = "Domain (ad) block list creator"; mainProgram = "nxdomain"; - platforms = platforms.all; - license = licenses.gpl3Only; - maintainers = with maintainers; [ zopieux ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ zopieux ]; }; } diff --git a/pkgs/tools/networking/openconnect/common.nix b/pkgs/tools/networking/openconnect/common.nix index a3b76f017c17..be972bf2636b 100644 --- a/pkgs/tools/networking/openconnect/common.nix +++ b/pkgs/tools/networking/openconnect/common.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation { autoreconfHook ]; - meta = with lib; { + meta = { description = "VPN Client for Cisco's AnyConnect SSL VPN"; homepage = "https://www.infradead.org/openconnect/"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ tricktron pentane ]; diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix index 0f5c809ffc8c..ef02532cd73f 100644 --- a/pkgs/tools/networking/openvpn/default.nix +++ b/pkgs/tools/networking/openvpn/default.nix @@ -81,13 +81,13 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) initrd-network-openvpn systemd-initrd-networkd-openvpn; }; - meta = with lib; { + meta = { description = "Robust and highly flexible tunneling application"; downloadPage = "https://openvpn.net/community-downloads/"; homepage = "https://openvpn.net/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "openvpn"; }; }) diff --git a/pkgs/tools/networking/openvpn/openvpn-auth-ldap.nix b/pkgs/tools/networking/openvpn/openvpn-auth-ldap.nix index e046e861e8ef..818eadf2483f 100644 --- a/pkgs/tools/networking/openvpn/openvpn-auth-ldap.nix +++ b/pkgs/tools/networking/openvpn/openvpn-auth-ldap.nix @@ -64,14 +64,14 @@ stdenv.mkDerivation rec { cp auth-ldap.conf $out/share/doc/openvpn/examples/ ''; - meta = with lib; { + meta = { description = "LDAP authentication plugin for OpenVPN"; homepage = "https://github.com/threerings/openvpn-auth-ldap"; license = [ - licenses.asl20 - licenses.bsd3 + lib.licenses.asl20 + lib.licenses.bsd3 ]; - maintainers = [ maintainers.benley ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.benley ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/openvpn/update-resolv-conf.nix b/pkgs/tools/networking/openvpn/update-resolv-conf.nix index 3ae303a1d53a..fc17c9cab943 100644 --- a/pkgs/tools/networking/openvpn/update-resolv-conf.nix +++ b/pkgs/tools/networking/openvpn/update-resolv-conf.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Script to update your /etc/resolv.conf with DNS settings that come from the received push dhcp-options"; homepage = "https://github.com/masterkorp/openvpn-update-resolv-conf/"; maintainers = [ ]; - license = licenses.gpl2Only; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/openvpn/update-systemd-resolved.nix b/pkgs/tools/networking/openvpn/update-systemd-resolved.nix index bc0ef08d56c9..51ce93de31aa 100644 --- a/pkgs/tools/networking/openvpn/update-systemd-resolved.nix +++ b/pkgs/tools/networking/openvpn/update-systemd-resolved.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Helper script for OpenVPN to directly update the DNS settings of a link through systemd-resolved via DBus"; homepage = "https://github.com/jonathanio/update-systemd-resolved"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ eadwu ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ eadwu ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/networking/privoxy/default.nix b/pkgs/tools/networking/privoxy/default.nix index b55637e6649c..4ce3c3892425 100644 --- a/pkgs/tools/networking/privoxy/default.nix +++ b/pkgs/tools/networking/privoxy/default.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation rec { passthru.tests.privoxy = nixosTests.privoxy; - meta = with lib; { + meta = { homepage = "https://www.privoxy.org/"; description = "Non-caching web proxy with advanced filtering capabilities"; # When linked with mbedtls, the license becomes GPLv3 (or later), otherwise # GPLv2 (or later). See https://www.privoxy.org/user-manual/copyright.html - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "privoxy"; }; diff --git a/pkgs/tools/networking/s3cmd/default.nix b/pkgs/tools/networking/s3cmd/default.nix index 888f4d4ef72f..72d23e85acbe 100644 --- a/pkgs/tools/networking/s3cmd/default.nix +++ b/pkgs/tools/networking/s3cmd/default.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { python-dateutil ]; - meta = with lib; { + meta = { homepage = "https://s3tools.org/s3cmd"; description = "Command line tool for managing Amazon S3 and CloudFront services"; mainProgram = "s3cmd"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/tools/networking/spoof-mac/default.nix b/pkgs/tools/networking/spoof-mac/default.nix index 9cdadce0996b..d631fa0aac2f 100644 --- a/pkgs/tools/networking/spoof-mac/default.nix +++ b/pkgs/tools/networking/spoof-mac/default.nix @@ -24,11 +24,11 @@ buildPythonPackage { pythonImportsCheck = [ "spoofmac" ]; - meta = with lib; { + meta = { description = "Change your MAC address for debugging purposes"; homepage = "https://github.com/feross/SpoofMAC"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/spoofer/default.nix b/pkgs/tools/networking/spoofer/default.nix index 6be56b4901e5..72ff5de2946e 100644 --- a/pkgs/tools/networking/spoofer/default.nix +++ b/pkgs/tools/networking/spoofer/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.caida.org/projects/spoofer"; description = "Assess and report on deployment of source address validation"; longDescription = '' @@ -52,8 +52,8 @@ stdenv.mkDerivation rec { deploying source address validation (e.g., network location, business type). ''; - platforms = platforms.all; - license = licenses.gpl3Plus; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; mainProgram = "spoofer-prober"; }; } diff --git a/pkgs/tools/networking/tinc/pre.nix b/pkgs/tools/networking/tinc/pre.nix index 738bf5bf0e8b..254021b801a2 100644 --- a/pkgs/tools/networking/tinc/pre.nix +++ b/pkgs/tools/networking/tinc/pre.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { passthru.tests = { inherit (nixosTests) tinc; }; - meta = with lib; { + meta = { description = "VPN daemon with full mesh routing"; longDescription = '' tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and @@ -65,9 +65,9 @@ stdenv.mkDerivation rec { authentication, compression and ethernet bridging. ''; homepage = "http://www.tinc-vpn.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lassulus mic92 ]; diff --git a/pkgs/tools/networking/vpn-slice/default.nix b/pkgs/tools/networking/vpn-slice/default.nix index 884667c39172..6d4abb23d99f 100644 --- a/pkgs/tools/networking/vpn-slice/default.nix +++ b/pkgs/tools/networking/vpn-slice/default.nix @@ -51,11 +51,11 @@ buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/dlenski/vpn-slice"; description = "vpnc-script replacement for easy and secure split-tunnel VPN setup"; mainProgram = "vpn-slice"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/tools/package-management/akku/akku.nix b/pkgs/tools/package-management/akku/akku.nix index e539e1315b0a..4e74493e44fc 100644 --- a/pkgs/tools/package-management/akku/akku.nix +++ b/pkgs/tools/package-management/akku/akku.nix @@ -43,13 +43,13 @@ stdenv.mkDerivation rec { extraArgs = [ "--version=branch" ]; }; - meta = with lib; { + meta = { homepage = "https://akkuscm.org/"; description = "Language package manager for Scheme"; changelog = "https://gitlab.com/akkuscm/akku/-/raw/v${version}/NEWS.md"; - platforms = platforms.all; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nagy konst-aa ]; diff --git a/pkgs/tools/package-management/apk-tools/default.nix b/pkgs/tools/package-management/apk-tools/default.nix index c3857f8afd2e..3823a384c777 100644 --- a/pkgs/tools/package-management/apk-tools/default.nix +++ b/pkgs/tools/package-management/apk-tools/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://gitlab.alpinelinux.org/alpine/apk-tools"; description = "Alpine Package Keeper"; maintainers = [ ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "apk"; }; } diff --git a/pkgs/tools/package-management/fpm/default.nix b/pkgs/tools/package-management/fpm/default.nix index d3da891a7ae1..640eba252bea 100644 --- a/pkgs/tools/package-management/fpm/default.nix +++ b/pkgs/tools/package-management/fpm/default.nix @@ -11,15 +11,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "fpm"; - meta = with lib; { + meta = { description = "Tool to build packages for multiple platforms with ease"; homepage = "https://github.com/jordansissel/fpm"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "fpm"; }; } diff --git a/pkgs/tools/package-management/licensee/default.nix b/pkgs/tools/package-management/licensee/default.nix index dcb6b7417706..1f1a10d66ac2 100644 --- a/pkgs/tools/package-management/licensee/default.nix +++ b/pkgs/tools/package-management/licensee/default.nix @@ -11,12 +11,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "licensee"; - meta = with lib; { + meta = { description = "Ruby Gem to detect under what license a project is distributed"; homepage = "https://licensee.github.io/licensee/"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; + platforms = lib.platforms.unix; mainProgram = "licensee"; }; } diff --git a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix index 6cab4931bca7..579814a3bacf 100644 --- a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix +++ b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix @@ -49,10 +49,10 @@ let preferLocalBuild = true; - meta = with lib; { + meta = { description = "Script used to obtain source hashes for fetch${tool}"; - maintainers = with maintainers; [ bennofs ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bennofs ]; + platforms = lib.platforms.unix; mainProgram = "nix-prefetch-${tool}"; }; }; @@ -103,10 +103,10 @@ rec { nix-prefetch-pijul ]; - meta = with lib; { + meta = { description = "Collection of all the nix-prefetch-* scripts which may be used to obtain source hashes"; - maintainers = with maintainers; [ bennofs ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bennofs ]; + platforms = lib.platforms.unix; }; }; } diff --git a/pkgs/tools/package-management/nix-visualize/default.nix b/pkgs/tools/package-management/nix-visualize/default.nix index 0dfc01a198e7..999b03a637f0 100644 --- a/pkgs/tools/package-management/nix-visualize/default.nix +++ b/pkgs/tools/package-management/nix-visualize/default.nix @@ -40,11 +40,11 @@ python.pkgs.buildPythonApplication { # No tests doCheck = false; - meta = with lib; { + meta = { description = "Generate dependency graphs of a given nix package"; mainProgram = "nix-visualize"; homepage = "https://github.com/craigmbooth/nix-visualize"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ henrirosten ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ henrirosten ]; }; } diff --git a/pkgs/tools/package-management/nix/common-meson.nix b/pkgs/tools/package-management/nix/common-meson.nix index 40094ecac21b..f9a8f2574e90 100644 --- a/pkgs/tools/package-management/nix/common-meson.nix +++ b/pkgs/tools/package-management/nix/common-meson.nix @@ -271,9 +271,9 @@ stdenv.mkDerivation (finalAttrs: { environments. ''; homepage = "https://nixos.org/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; inherit maintainers teams; - platforms = platforms.unix; + platforms = lib.platforms.unix; # Gets stuck in functional-tests in cross-trunk jobset and doesn't timeout # https://hydra.nixos.org/build/298175022 # probably https://github.com/NixOS/nix/issues/13042 diff --git a/pkgs/tools/package-management/packagekit/default.nix b/pkgs/tools/package-management/packagekit/default.nix index 1577b56c11ed..25c3a64abaca 100644 --- a/pkgs/tools/package-management/packagekit/default.nix +++ b/pkgs/tools/package-management/packagekit/default.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation rec { nixos-test = nixosTests.packagekit; }; - meta = with lib; { + meta = { description = "System to facilitate installing and updating packages"; longDescription = '' PackageKit is a system designed to make installing and updating software @@ -116,8 +116,8 @@ stdenv.mkDerivation rec { mode package managers. ''; homepage = "https://github.com/PackageKit/PackageKit"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index 343004ddc324..73d4ca724464 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -129,14 +129,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://www.rpm.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; description = "RPM package manager"; maintainers = [ ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/tools/security/b2sum/default.nix b/pkgs/tools/security/b2sum/default.nix index bbbc5ee0c783..ff8447cd4730 100644 --- a/pkgs/tools/security/b2sum/default.nix +++ b/pkgs/tools/security/b2sum/default.nix @@ -35,16 +35,16 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "BLAKE2 cryptographic hash function"; mainProgram = "b2sum"; homepage = "https://blake2.net"; - license = with licenses; [ + license = with lib.licenses; [ asl20 cc0 openssl ]; - maintainers = with maintainers; [ kirelagin ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ kirelagin ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/tools/security/bitwarden-directory-connector/default.nix b/pkgs/tools/security/bitwarden-directory-connector/default.nix index 84a2ba782842..eadade06df07 100644 --- a/pkgs/tools/security/bitwarden-directory-connector/default.nix +++ b/pkgs/tools/security/bitwarden-directory-connector/default.nix @@ -54,15 +54,15 @@ let pkg-config ]; - meta = with lib; { + meta = { description = "LDAP connector for Bitwarden"; homepage = "https://github.com/bitwarden/directory-connector"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Silver-Golden SuperSandro2000 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = name; }; }; diff --git a/pkgs/tools/security/bmrsa/11.nix b/pkgs/tools/security/bmrsa/11.nix index f3bf100ff745..19f0b6d0bf32 100644 --- a/pkgs/tools/security/bmrsa/11.nix +++ b/pkgs/tools/security/bmrsa/11.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { echo -e 'install:\n\tcp bmrsa '$out'/bin' >> Makefile ''; - meta = with lib; { + meta = { description = "RSA utility"; mainProgram = "bmrsa"; homepage = "http://bmrsa.sourceforge.net/"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/security/bundler-audit/default.nix b/pkgs/tools/security/bundler-audit/default.nix index eb67135e889f..8db9959c2ad3 100644 --- a/pkgs/tools/security/bundler-audit/default.nix +++ b/pkgs/tools/security/bundler-audit/default.nix @@ -15,7 +15,7 @@ bundlerEnv rec { passthru.updateScript = bundlerUpdateScript "bundler-audit"; - meta = with lib; { + meta = { description = "Patch-level verification for Bundler"; longDescription = '' Features: @@ -27,10 +27,10 @@ bundlerEnv rec { ''; homepage = "https://github.com/rubysec/bundler-audit"; changelog = "https://github.com/rubysec/bundler-audit/blob/v${version}/ChangeLog.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/chipsec/default.nix b/pkgs/tools/security/chipsec/default.nix index a012e336d343..e9693fd06ac5 100644 --- a/pkgs/tools/security/chipsec/default.nix +++ b/pkgs/tools/security/chipsec/default.nix @@ -67,7 +67,7 @@ python3.pkgs.buildPythonApplication rec { "chipsec" ]; - meta = with lib; { + meta = { description = "Platform Security Assessment Framework"; longDescription = '' CHIPSEC is a framework for analyzing the security of PC platforms @@ -76,9 +76,9 @@ python3.pkgs.buildPythonApplication rec { interfaces, and forensic capabilities. It can be run on Windows, Linux, Mac OS X and UEFI shell. ''; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "https://github.com/chipsec/chipsec"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ johnazoidberg erdnaxe ]; diff --git a/pkgs/tools/security/chrome-token-signing/default.nix b/pkgs/tools/security/chrome-token-signing/default.nix index 51e4aceb9bce..330383160a02 100644 --- a/pkgs/tools/security/chrome-token-signing/default.nix +++ b/pkgs/tools/security/chrome-token-signing/default.nix @@ -40,12 +40,12 @@ mkDerivation rec { install -D -t $out/lib/mozilla/native-messaging-hosts host-linux/ff/ee.ria.esteid.json ''; - meta = with lib; { + meta = { description = "Chrome and Firefox extension for signing with your eID on the web"; mainProgram = "chrome-token-signing"; homepage = "https://github.com/open-eid/chrome-token-signing/wiki"; - license = licenses.lgpl21; - maintainers = [ maintainers.mmahut ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.mmahut ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/security/cve-bin-tool/default.nix b/pkgs/tools/security/cve-bin-tool/default.nix index c0286ed3ec2a..2efbf33f0390 100644 --- a/pkgs/tools/security/cve-bin-tool/default.nix +++ b/pkgs/tools/security/cve-bin-tool/default.nix @@ -107,11 +107,11 @@ buildPythonApplication rec { (lib.makeBinPath [ google-cloud-sdk ]) ]; - meta = with lib; { + meta = { description = "CVE Binary Checker Tool"; homepage = "https://github.com/intel/cve-bin-tool"; changelog = "https://github.com/intel/cve-bin-tool/releases/tag/${src.tag}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/tools/security/ghidra/build.nix b/pkgs/tools/security/ghidra/build.nix index 5171667f2554..9a84f9c11164 100644 --- a/pkgs/tools/security/ghidra/build.nix +++ b/pkgs/tools/security/ghidra/build.nix @@ -195,7 +195,7 @@ stdenv.mkDerivation (finalAttrs: { withExtensions = callPackage ./with-extensions.nix { ghidra = finalAttrs.finalPackage; }; }; - meta = with lib; { + meta = { changelog = "https://htmlpreview.github.io/?https://github.com/NationalSecurityAgency/ghidra/blob/Ghidra_${finalAttrs.version}_build/Ghidra/Configurations/Public_Release/src/global/docs/ChangeHistory.html"; description = "Software reverse engineering (SRE) suite of tools"; mainProgram = "ghidra"; @@ -206,12 +206,12 @@ stdenv.mkDerivation (finalAttrs: { "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ roblabla vringar ]; diff --git a/pkgs/tools/security/ghidra/default.nix b/pkgs/tools/security/ghidra/default.nix index 5ee58d2a5d7e..abfd577c1e4b 100644 --- a/pkgs/tools/security/ghidra/default.nix +++ b/pkgs/tools/security/ghidra/default.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ openjdk21 ]} ''; - meta = with lib; { + meta = { description = "Software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission"; mainProgram = "ghidra"; homepage = "https://github.com/NationalSecurityAgency/ghidra"; @@ -82,9 +82,9 @@ stdenv.mkDerivation rec { "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.asl20; - maintainers = with maintainers; [ + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ck3d govanify mic92 diff --git a/pkgs/tools/security/ghidra/extensions/ghidraninja-ghidra-scripts/default.nix b/pkgs/tools/security/ghidra/extensions/ghidraninja-ghidra-scripts/default.nix index 1e4fcefabdc3..51e8b58838d7 100644 --- a/pkgs/tools/security/ghidra/extensions/ghidraninja-ghidra-scripts/default.nix +++ b/pkgs/tools/security/ghidra/extensions/ghidraninja-ghidra-scripts/default.nix @@ -26,10 +26,10 @@ buildGhidraScripts { substituteInPlace YaraSearch.py --replace-fail '"yara "' '"${yara}/bin/yara "' ''; - meta = with lib; { + meta = { description = "Scripts for the Ghidra software reverse engineering suite"; homepage = "https://github.com/ghidraninja/ghidra_scripts"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only gpl2Only ]; diff --git a/pkgs/tools/security/ghidra/extensions/gnudisassembler/default.nix b/pkgs/tools/security/ghidra/extensions/gnudisassembler/default.nix index 07c04989e706..3577b64ea656 100644 --- a/pkgs/tools/security/ghidra/extensions/gnudisassembler/default.nix +++ b/pkgs/tools/security/ghidra/extensions/gnudisassembler/default.nix @@ -61,10 +61,10 @@ buildGhidraExtension { runHook postInstall ''; - meta = with lib; { + meta = { description = "Leverage the binutils disassembler capabilities for various processors"; homepage = "https://ghidra-sre.org/"; downloadPage = "https://github.com/NationalSecurityAgency/ghidra/tree/master/GPL/GnuDisassembler"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/tools/security/ghidra/extensions/machinelearning/default.nix b/pkgs/tools/security/ghidra/extensions/machinelearning/default.nix index a34845db0578..86d19e7075f5 100644 --- a/pkgs/tools/security/ghidra/extensions/machinelearning/default.nix +++ b/pkgs/tools/security/ghidra/extensions/machinelearning/default.nix @@ -23,11 +23,11 @@ buildGhidraExtension { runHook postInstall ''; - meta = with lib; { + meta = { inherit (ghidra.meta) homepage license; description = "Finds functions using ML"; downloadPage = "https://github.com/NationalSecurityAgency/ghidra/tree/master/Ghidra/Extensions/MachineLearning"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; diff --git a/pkgs/tools/security/ghidra/extensions/ret-sync/default.nix b/pkgs/tools/security/ghidra/extensions/ret-sync/default.nix index e7791eb90b2b..57bc754257c5 100644 --- a/pkgs/tools/security/ghidra/extensions/ret-sync/default.nix +++ b/pkgs/tools/security/ghidra/extensions/ret-sync/default.nix @@ -34,9 +34,9 @@ buildGhidraExtension { rm dist/ghidra* mv dist/safe.zip dist/$correct_version ''; - meta = with lib; { + meta = { description = "Reverse-Engineering Tools SYNChronization. Allows syncing between a debugging session and Ghidra"; homepage = "https://github.com/bootleg/ret-sync"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/tools/security/ghidra/extensions/sleighdevtools/default.nix b/pkgs/tools/security/ghidra/extensions/sleighdevtools/default.nix index 90a495459ab1..0f88a85ead6f 100644 --- a/pkgs/tools/security/ghidra/extensions/sleighdevtools/default.nix +++ b/pkgs/tools/security/ghidra/extensions/sleighdevtools/default.nix @@ -25,7 +25,7 @@ buildGhidraExtension { runHook postInstall ''; - meta = with lib; { + meta = { inherit (ghidra.meta) homepage license; description = "Sleigh language development tools including external disassembler capabilities"; longDescription = '' @@ -33,7 +33,7 @@ buildGhidraExtension { The GnuDisassembler extension may be also be required as a disassembly provider. ''; downloadPage = "https://github.com/NationalSecurityAgency/ghidra/tree/master/Ghidra/Extensions/SleighDevTools"; - sourceProvenance = with sourceTypes; [ + sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode # deps ]; diff --git a/pkgs/tools/security/gnupg/24.nix b/pkgs/tools/security/gnupg/24.nix index 0012e2f9c595..ddca7735483a 100644 --- a/pkgs/tools/security/gnupg/24.nix +++ b/pkgs/tools/security/gnupg/24.nix @@ -194,11 +194,11 @@ stdenv.mkDerivation rec { passthru.tests = nixosTests.gnupg; - meta = with lib; { + meta = { homepage = "https://gnupg.org"; changelog = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=${pname}.git;a=blob;f=NEWS;hb=refs/tags/${pname}-${version}"; description = "Modern release of the GNU Privacy Guard, a GPL OpenPGP implementation"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; longDescription = '' The GNU Privacy Guard is the GNU project's complete and free implementation of the OpenPGP standard as defined by RFC4880. GnuPG @@ -210,11 +210,11 @@ stdenv.mkDerivation rec { frontend applications and libraries are available. Version 2 of GnuPG also provides support for S/MIME. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fpletz sgo ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "gpg"; }; } diff --git a/pkgs/tools/security/gopass/git-credential.nix b/pkgs/tools/security/gopass/git-credential.nix index 247d9b125387..47664681bbc8 100644 --- a/pkgs/tools/security/gopass/git-credential.nix +++ b/pkgs/tools/security/gopass/git-credential.nix @@ -35,12 +35,12 @@ buildGoModule rec { --prefix PATH : "${lib.makeBinPath [ gopass ]}" ''; - meta = with lib; { + meta = { description = "Manage git credentials using gopass"; homepage = "https://github.com/gopasspw/git-credential-gopass"; changelog = "https://github.com/gopasspw/git-credential-gopass/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ benneti ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ benneti ]; mainProgram = "git-credential-gopass"; }; } diff --git a/pkgs/tools/security/gopass/hibp.nix b/pkgs/tools/security/gopass/hibp.nix index a9972f64be83..6d19f7972909 100644 --- a/pkgs/tools/security/gopass/hibp.nix +++ b/pkgs/tools/security/gopass/hibp.nix @@ -37,12 +37,12 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Gopass haveibeenpwnd.com integration"; homepage = "https://github.com/gopasspw/gopass-hibp"; changelog = "https://github.com/gopasspw/gopass-hibp/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "gopass-hibp"; }; } diff --git a/pkgs/tools/security/gopass/summon.nix b/pkgs/tools/security/gopass/summon.nix index 088f90eff42c..70390ec48e4e 100644 --- a/pkgs/tools/security/gopass/summon.nix +++ b/pkgs/tools/security/gopass/summon.nix @@ -35,12 +35,12 @@ buildGoModule rec { --prefix PATH : "${lib.makeBinPath [ gopass ]}" ''; - meta = with lib; { + meta = { description = "Gopass Summon Provider"; homepage = "https://github.com/gopasspw/gopass-summon-provider"; changelog = "https://github.com/gopasspw/gopass-summon-provider/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "gopass-summon-provider"; }; } diff --git a/pkgs/tools/security/gpg-tui/default.nix b/pkgs/tools/security/gpg-tui/default.nix index 4e11e68251ee..0d974a230347 100644 --- a/pkgs/tools/security/gpg-tui/default.nix +++ b/pkgs/tools/security/gpg-tui/default.nix @@ -47,12 +47,12 @@ rustPlatform.buildRustPackage rec { libresolv ]; - meta = with lib; { + meta = { description = "Terminal user interface for GnuPG"; homepage = "https://github.com/orhun/gpg-tui"; changelog = "https://github.com/orhun/gpg-tui/blob/${src.rev}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda matthiasbeyer ]; diff --git a/pkgs/tools/security/keybase/default.nix b/pkgs/tools/security/keybase/default.nix index 6cbac8c1fa93..0053edce69e9 100644 --- a/pkgs/tools/security/keybase/default.nix +++ b/pkgs/tools/security/keybase/default.nix @@ -38,18 +38,18 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://www.keybase.io/"; description = "Keybase official command-line utility and service"; mainProgram = "keybase"; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ avaq np rvolosatovs shofius ryand56 ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/tools/security/keybase/gui.nix b/pkgs/tools/security/keybase/gui.nix index 41093199dc83..a856cb60b7f8 100644 --- a/pkgs/tools/security/keybase/gui.nix +++ b/pkgs/tools/security/keybase/gui.nix @@ -132,12 +132,12 @@ stdenv.mkDerivation rec { --replace run_keybase $out/bin/keybase-gui ''; - meta = with lib; { + meta = { homepage = "https://www.keybase.io/"; description = "Keybase official GUI"; mainProgram = "keybase-gui"; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ avaq rvolosatovs puffnfresh @@ -145,7 +145,7 @@ stdenv.mkDerivation rec { shofius ryand56 ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.bsd3; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/tools/security/keybase/kbfs.nix b/pkgs/tools/security/keybase/kbfs.nix index f09affe19c7b..5353aa455aee 100644 --- a/pkgs/tools/security/keybase/kbfs.nix +++ b/pkgs/tools/security/keybase/kbfs.nix @@ -22,16 +22,16 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { homepage = "https://keybase.io/docs/kbfs"; description = "Keybase filesystem"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ avaq rvolosatovs bennofs np shofius ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/tools/security/kwalletcli/default.nix b/pkgs/tools/security/kwalletcli/default.nix index 906dde10bda9..4b5922899f7c 100644 --- a/pkgs/tools/security/kwalletcli/default.nix +++ b/pkgs/tools/security/kwalletcli/default.nix @@ -62,10 +62,10 @@ mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Command-Line Interface to the KDE Wallet"; homepage = "https://www.mirbsd.org/kwalletcli.htm"; - license = licenses.miros; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.miros; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/tools/security/metasploit/default.nix b/pkgs/tools/security/metasploit/default.nix index 3f61d6185e32..9e583db985da 100644 --- a/pkgs/tools/security/metasploit/default.nix +++ b/pkgs/tools/security/metasploit/default.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation (finalAttrs: { # run with: nix-shell maintainers/scripts/update.nix --argstr path metasploit passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Metasploit Framework - a collection of exploits"; homepage = "https://docs.metasploit.com/"; - platforms = platforms.unix; - license = licenses.bsd3; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab makefu ]; diff --git a/pkgs/tools/security/mkpasswd/default.nix b/pkgs/tools/security/mkpasswd/default.nix index 1a59c38496f8..59c9c411af81 100644 --- a/pkgs/tools/security/mkpasswd/default.nix +++ b/pkgs/tools/security/mkpasswd/default.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { buildPhase = "make mkpasswd"; installPhase = "make install-mkpasswd"; - meta = with lib; { + meta = { homepage = "https://packages.qa.debian.org/w/whois.html"; description = "Overfeatured front-end to crypt, from the Debian whois package"; mainProgram = "mkpasswd"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/nitrokey-app/default.nix b/pkgs/tools/security/nitrokey-app/default.nix index cdb837262499..b5521973ead4 100644 --- a/pkgs/tools/security/nitrokey-app/default.nix +++ b/pkgs/tools/security/nitrokey-app/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { "cmake_policy(SET CMP0043 NEW)" ''; - meta = with lib; { + meta = { description = "Provides extra functionality for the Nitrokey Pro and Storage"; mainProgram = "nitrokey-app"; longDescription = '' @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/Nitrokey/nitrokey-app"; changelog = "https://github.com/Nitrokey/nitrokey-app/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kaiha panicgh ]; diff --git a/pkgs/tools/security/nitrokey-app2/default.nix b/pkgs/tools/security/nitrokey-app2/default.nix index cecbb27c6e00..384078074af1 100644 --- a/pkgs/tools/security/nitrokey-app2/default.nix +++ b/pkgs/tools/security/nitrokey-app2/default.nix @@ -72,12 +72,12 @@ buildPythonApplication rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "This application allows to manage Nitrokey 3 devices"; homepage = "https://github.com/Nitrokey/nitrokey-app2"; changelog = "https://github.com/Nitrokey/nitrokey-app2/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ _999eagle panicgh ]; diff --git a/pkgs/tools/security/nsjail/default.nix b/pkgs/tools/security/nsjail/default.nix index 2e6665c7204a..16a96ffe8970 100644 --- a/pkgs/tools/security/nsjail/default.nix +++ b/pkgs/tools/security/nsjail/default.nix @@ -56,17 +56,17 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Light-weight process isolation tool, making use of Linux namespaces and seccomp-bpf syscall filters"; homepage = "https://nsjail.dev/"; changelog = "https://github.com/google/nsjail/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arturcygan bosu c0bw3b ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "nsjail"; }; } diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix index b8697e016280..4d098e50050f 100644 --- a/pkgs/tools/security/pass/default.nix +++ b/pkgs/tools/security/pass/default.nix @@ -188,12 +188,12 @@ stdenv.mkDerivation rec { withExtensions = env; }; - meta = with lib; { + meta = { description = "Stores, retrieves, generates, and synchronizes passwords securely"; homepage = "https://www.passwordstore.org/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "pass"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ lovek323 fpletz tadfisher @@ -201,7 +201,7 @@ stdenv.mkDerivation rec { ma27 ryan4yin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; longDescription = '' pass is a very simple password store that keeps passwords inside gpg2 diff --git a/pkgs/tools/security/pass/extensions/audit/default.nix b/pkgs/tools/security/pass/extensions/audit/default.nix index 4aa96fe40909..84cc5b65aeb1 100644 --- a/pkgs/tools/security/pass/extensions/audit/default.nix +++ b/pkgs/tools/security/pass/extensions/audit/default.nix @@ -66,11 +66,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "pass_audit" ]; - meta = with lib; { + meta = { description = "Pass extension for auditing your password repository"; homepage = "https://github.com/roddhjav/pass-audit"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ ma27 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ma27 ]; }; } diff --git a/pkgs/tools/security/pass/extensions/checkup.nix b/pkgs/tools/security/pass/extensions/checkup.nix index 633b0be00cc7..689525089b89 100644 --- a/pkgs/tools/security/pass/extensions/checkup.nix +++ b/pkgs/tools/security/pass/extensions/checkup.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Pass extension to check against the Have I been pwned API to see if your passwords are publicly leaked or not"; homepage = "https://github.com/etu/pass-checkup"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ etu ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ etu ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/pass/extensions/file.nix b/pkgs/tools/security/pass/extensions/file.nix index 54c7e0f8e12c..1291ebeea5dd 100644 --- a/pkgs/tools/security/pass/extensions/file.nix +++ b/pkgs/tools/security/pass/extensions/file.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Pass extension that allows to add files to password-store"; homepage = "https://github.com/dvogt23/pass-file"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ taranarmo ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ taranarmo ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/pass/extensions/genphrase.nix b/pkgs/tools/security/pass/extensions/genphrase.nix index 085b77342fbe..460ef0c7b03e 100644 --- a/pkgs/tools/security/pass/extensions/genphrase.nix +++ b/pkgs/tools/security/pass/extensions/genphrase.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { --replace '$EXTENSIONS' "$out/lib/password-store/extensions/" ''; - meta = with lib; { + meta = { description = "Pass extension that generates memorable passwords"; homepage = "https://github.com/congma/pass-genphrase"; - license = licenses.gpl3; - maintainers = with maintainers; [ seqizz ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ seqizz ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/pass/extensions/import.nix b/pkgs/tools/security/pass/extensions/import.nix index cb0b836bf03e..aa59df137e2f 100644 --- a/pkgs/tools/security/pass/extensions/import.nix +++ b/pkgs/tools/security/pass/extensions/import.nix @@ -52,17 +52,17 @@ python3Packages.buildPythonApplication rec { $out/bin/pimport --list-exporters --list-importers ''; - meta = with lib; { + meta = { description = "Pass extension for importing data from existing password managers"; mainProgram = "pimport"; homepage = "https://github.com/roddhjav/pass-import"; changelog = "https://github.com/roddhjav/pass-import/blob/v${version}/CHANGELOG.rst"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lovek323 fpletz tadfisher ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/pass/extensions/otp.nix b/pkgs/tools/security/pass/extensions/otp.nix index dbde743461af..783334b412bd 100644 --- a/pkgs/tools/security/pass/extensions/otp.nix +++ b/pkgs/tools/security/pass/extensions/otp.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation rec { "BASHCOMPDIR=$(out)/share/bash-completion/completions" ]; - meta = with lib; { + meta = { description = "Pass extension for managing one-time-password (OTP) tokens"; homepage = "https://github.com/tadfisher/pass-otp"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ jwiegley tadfisher toonn ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/pass/extensions/tomb.nix b/pkgs/tools/security/pass/extensions/tomb.nix index f9ad7fe0f894..16d0b6858e1f 100644 --- a/pkgs/tools/security/pass/extensions/tomb.nix +++ b/pkgs/tools/security/pass/extensions/tomb.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { --replace 'TOMB="''${PASSWORD_STORE_TOMB:-tomb}"' 'TOMB="''${PASSWORD_STORE_TOMB:-${tomb}/bin/tomb}"' ''; - meta = with lib; { + meta = { description = "Pass extension that keeps the password store encrypted inside a tomb"; homepage = "https://github.com/roddhjav/pass-tomb"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lovek323 fpletz tadfisher ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/pass/extensions/update.nix b/pkgs/tools/security/pass/extensions/update.nix index 6f53159c9b67..767be885f613 100644 --- a/pkgs/tools/security/pass/extensions/update.nix +++ b/pkgs/tools/security/pass/extensions/update.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Pass extension that provides an easy flow for updating passwords"; homepage = "https://github.com/roddhjav/pass-update"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ lovek323 fpletz tadfisher ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/pass2csv/default.nix b/pkgs/tools/security/pass2csv/default.nix index 854ddf13901d..8325ebe8fef8 100644 --- a/pkgs/tools/security/pass2csv/default.nix +++ b/pkgs/tools/security/pass2csv/default.nix @@ -27,11 +27,11 @@ buildPythonApplication rec { # Project has no tests. doCheck = false; - meta = with lib; { + meta = { description = "Export pass(1), \"Standard unix password manager\", to CSV"; mainProgram = "pass2csv"; homepage = "https://codeberg.org/svartstare/pass2csv"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/tools/security/proxmark3/default.nix b/pkgs/tools/security/proxmark3/default.nix index 4b0c8e646c05..4872a8c868f3 100644 --- a/pkgs/tools/security/proxmark3/default.nix +++ b/pkgs/tools/security/proxmark3/default.nix @@ -88,15 +88,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Client for proxmark3, powerful general purpose RFID tool"; homepage = "https://github.com/RfidResearchGroup/proxmark3"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nyanotech emilytrau ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "pm3"; }; }) diff --git a/pkgs/tools/security/rekor/default.nix b/pkgs/tools/security/rekor/default.nix index 46eeeb5a15c9..fd8f88104c56 100644 --- a/pkgs/tools/security/rekor/default.nix +++ b/pkgs/tools/security/rekor/default.nix @@ -60,12 +60,12 @@ let --zsh <($out/bin/${pname} completion zsh) ''; - meta = with lib; { + meta = { inherit description; homepage = "https://github.com/sigstore/rekor"; changelog = "https://github.com/sigstore/rekor/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lesuisse jk developer-guy diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix index 753fc2233c0c..be72db39953a 100644 --- a/pkgs/tools/security/sslscan/default.nix +++ b/pkgs/tools/security/sslscan/default.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation rec { "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = with lib; { + meta = { description = "Tests SSL/TLS services and discover supported cipher suites"; mainProgram = "sslscan"; homepage = "https://github.com/rbsec/sslscan"; changelog = "https://github.com/rbsec/sslscan/blob/${version}/Changelog"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fpletz ]; }; diff --git a/pkgs/tools/security/stoken/default.nix b/pkgs/tools/security/stoken/default.nix index 2cb69294c95e..69e3aee37361 100644 --- a/pkgs/tools/security/stoken/default.nix +++ b/pkgs/tools/security/stoken/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { gtk3 ]; - meta = with lib; { + meta = { description = "Software Token for Linux/UNIX"; homepage = "https://github.com/cernekee/stoken"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/tools/security/web-eid-app/default.nix b/pkgs/tools/security/web-eid-app/default.nix index 4ea05272e8d4..0d8df0f677a6 100644 --- a/pkgs/tools/security/web-eid-app/default.nix +++ b/pkgs/tools/security/web-eid-app/default.nix @@ -32,7 +32,7 @@ mkDerivation rec { pcsclite ]; - meta = with lib; { + meta = { description = "Signing and authentication operations with smart cards for the Web eID browser extension"; mainProgram = "web-eid"; longDescription = '' @@ -43,8 +43,8 @@ mkDerivation rec { mode. ''; homepage = "https://github.com/web-eid/web-eid-app"; - license = licenses.mit; - maintainers = [ maintainers.flokli ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.flokli ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/system/cm-rgb/default.nix b/pkgs/tools/system/cm-rgb/default.nix index 2348953521de..1a0510a646c9 100644 --- a/pkgs/tools/system/cm-rgb/default.nix +++ b/pkgs/tools/system/cm-rgb/default.nix @@ -47,7 +47,7 @@ buildPythonApplication rec { > $out/etc/udev/rules.d/60-cm-rgb.rules ''; - meta = with lib; { + meta = { description = "Control AMD Wraith Prism RGB LEDs"; longDescription = '' cm-rgb controls AMD Wraith Prism RGB LEDS. @@ -57,8 +57,8 @@ buildPythonApplication rec { in configuration.nix. ''; homepage = "https://github.com/gfduszynski/cm-rgb"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/tools/system/hw-probe/default.nix b/pkgs/tools/system/hw-probe/default.nix index 9aa36189390d..6ce4cc29c8f6 100644 --- a/pkgs/tools/system/hw-probe/default.nix +++ b/pkgs/tools/system/hw-probe/default.nix @@ -144,15 +144,15 @@ stdenv.mkDerivation rec { $makeWrapperArgs ''; - meta = with lib; { + meta = { description = "Probe for hardware, check operability and find drivers"; homepage = "https://github.com/linuxhw/hw-probe"; - platforms = with platforms; (linux ++ freebsd ++ netbsd ++ openbsd); - license = with licenses; [ + platforms = with lib.platforms; (linux ++ freebsd ++ netbsd ++ openbsd); + license = with lib.licenses; [ lgpl21 bsdOriginal ]; - maintainers = with maintainers; [ rehno-lindeque ]; + maintainers = with lib.maintainers; [ rehno-lindeque ]; mainProgram = "hw-probe"; }; } diff --git a/pkgs/tools/system/minijail/default.nix b/pkgs/tools/system/minijail/default.nix index c4f820679aff..4e687011ba33 100644 --- a/pkgs/tools/system/minijail/default.nix +++ b/pkgs/tools/system/minijail/default.nix @@ -49,16 +49,16 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://chromium.googlesource.com/chromiumos/platform/minijail/+/refs/heads/main/README.md"; description = "Sandboxing library and application using Linux namespaces and capabilities"; changelog = "https://chromium.googlesource.com/chromiumos/platform/minijail/+/refs/tags/linux-v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pcarrier qyliss ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "minijail0"; }; } diff --git a/pkgs/tools/system/minijail/tools.nix b/pkgs/tools/system/minijail/tools.nix index 4614b7a16370..d80ab9e103e6 100644 --- a/pkgs/tools/system/minijail/tools.nix +++ b/pkgs/tools/system/minijail/tools.nix @@ -38,10 +38,10 @@ buildPythonApplication { cp -v constants.json $out/share/constants.json ''; - meta = with lib; { + meta = { homepage = "https://android.googlesource.com/platform/external/minijail/+/refs/heads/master/tools/"; description = "Set of tools for minijail"; - license = licenses.asl20; + license = lib.licenses.asl20; inherit (minijail.meta) maintainers platforms; }; } diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix index 139c0fdb9e73..a1ee8907459d 100644 --- a/pkgs/tools/system/netdata/default.nix +++ b/pkgs/tools/system/netdata/default.nix @@ -339,10 +339,10 @@ stdenv.mkDerivation ( description = "Real-time performance monitoring tool"; homepage = "https://www.netdata.cloud/"; changelog = "https://github.com/netdata/netdata/releases/tag/v${version}"; - license = [ licenses.gpl3Plus ] ++ lib.optionals withCloudUi [ licenses.ncul1 ]; + license = [ lib.licenses.gpl3Plus ] ++ lib.optionals withCloudUi [ lib.licenses.ncul1 ]; mainProgram = "netdata"; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mkg20001 rhoriguchi ]; diff --git a/pkgs/tools/system/nvtop/build-nvtop.nix b/pkgs/tools/system/nvtop/build-nvtop.nix index df66ef58e24a..cde5f844929e 100644 --- a/pkgs/tools/system/nvtop/build-nvtop.nix +++ b/pkgs/tools/system/nvtop/build-nvtop.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "htop-like task monitor for AMD, Adreno, Intel and NVIDIA GPUs"; longDescription = '' Nvtop stands for Neat Videocard TOP, a (h)top like task monitor for AMD, Adreno, Intel and NVIDIA GPUs. @@ -106,9 +106,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://github.com/Syllo/nvtop"; changelog = "https://github.com/Syllo/nvtop/releases/tag/${finalAttrs.version}"; - license = licenses.gpl3Only; - platforms = if apple then platforms.darwin else platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = if apple then lib.platforms.darwin else lib.platforms.linux; + maintainers = with lib.maintainers; [ gbtb anthonyroussel moni diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix index 44c192d1ee6d..6e5eb4c06682 100644 --- a/pkgs/tools/system/plan9port/default.nix +++ b/pkgs/tools/system/plan9port/default.nix @@ -125,15 +125,15 @@ stdenv.mkDerivation rec { ./test ''; - meta = with lib; { + meta = { homepage = "https://9fans.github.io/plan9port/"; description = "Plan 9 from User Space"; longDescription = '' Plan 9 from User Space (aka plan9port) is a port of many Plan 9 programs from their native Plan 9 environment to Unix-like operating systems. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bbarker ftrvxmtrx kovirobi @@ -141,7 +141,7 @@ stdenv.mkDerivation rec { ylh ]; mainProgram = "9"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } # TODO: investigate the mouse chording support patch diff --git a/pkgs/tools/text/diffutils/default.nix b/pkgs/tools/text/diffutils/default.nix index aa42eeaf0b9f..a681ff46aef8 100644 --- a/pkgs/tools/text/diffutils/default.nix +++ b/pkgs/tools/text/diffutils/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { # Test failure on QEMU only (#300550) doCheck = !stdenv.buildPlatform.isRiscV64; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/diffutils/diffutils.html"; description = "Commands for showing the differences between files (diff, cmp, etc.)"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; maintainers = lib.teams.helsinki-systems.members; }; } diff --git a/pkgs/tools/text/glogg/default.nix b/pkgs/tools/text/glogg/default.nix index e3ac44ff4dbd..82bf05853720 100644 --- a/pkgs/tools/text/glogg/default.nix +++ b/pkgs/tools/text/glogg/default.nix @@ -34,15 +34,15 @@ mkDerivation rec { rm -fr $out/{bin,share} ''; - meta = with lib; { + meta = { description = "Fast, smart log explorer"; mainProgram = "glogg"; longDescription = '' A multi-platform GUI application to browse and search through long or complex log files. It is designed with programmers and system administrators in mind. glogg can be seen as a graphical, interactive combination of grep and less. ''; homepage = "https://glogg.bonnefon.org/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ c0bw3b ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ c0bw3b ]; }; } diff --git a/pkgs/tools/text/gnugrep/default.nix b/pkgs/tools/text/gnugrep/default.nix index e32a5a867c0f..b0f1cbc803c9 100644 --- a/pkgs/tools/text/gnugrep/default.nix +++ b/pkgs/tools/text/gnugrep/default.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation { NIX_CFLAGS_COMPILE = "-Wno-error=format-security"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/grep/"; description = "GNU implementation of the Unix grep command"; @@ -106,13 +106,13 @@ stdenv.mkDerivation { prints the matching lines. ''; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ - maintainers.das_j - maintainers.m00wl + lib.maintainers.das_j + lib.maintainers.m00wl ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "grep"; }; diff --git a/pkgs/tools/text/highlight/default.nix b/pkgs/tools/text/highlight/default.nix index 4cd623c77118..a0ff8ecf4706 100644 --- a/pkgs/tools/text/highlight/default.nix +++ b/pkgs/tools/text/highlight/default.nix @@ -71,11 +71,11 @@ let make -C extras/swig clean # Clean up intermediate files. ''; - meta = with lib; { + meta = { description = "Source code highlighting tool"; mainProgram = "highlight"; homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; }; diff --git a/pkgs/tools/text/mdcat/default.nix b/pkgs/tools/text/mdcat/default.nix index dda3a3977cc4..90211ef1b393 100644 --- a/pkgs/tools/text/mdcat/default.nix +++ b/pkgs/tools/text/mdcat/default.nix @@ -64,11 +64,11 @@ rustPlatform.buildRustPackage rec { done ''; - meta = with lib; { + meta = { description = "cat for markdown"; homepage = "https://github.com/swsnr/mdcat"; changelog = "https://github.com/swsnr/mdcat/releases/tag/mdcat-${version}"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/tools/text/mecab/default.nix b/pkgs/tools/text/mecab/default.nix index 135351f6a1b0..9cbf246aa615 100644 --- a/pkgs/tools/text/mecab/default.nix +++ b/pkgs/tools/text/mecab/default.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation ( ln -s ${mecab-ipadic} $out/lib/mecab/dic/ipadic ''; - meta = with lib; { + meta = { description = "Japanese morphological analysis system"; homepage = "http://taku910.github.io/mecab"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; mainProgram = "mecab"; - maintainers = with maintainers; [ auntie ]; + maintainers = with lib.maintainers; [ auntie ]; }; } ) diff --git a/pkgs/tools/text/nltk-data/default.nix b/pkgs/tools/text/nltk-data/default.nix index e4aa7f06c355..ee919adfc0ac 100644 --- a/pkgs/tools/text/nltk-data/default.nix +++ b/pkgs/tools/text/nltk-data/default.nix @@ -11,12 +11,12 @@ let nativeBuildInputs = [ unzip ]; dontBuild = true; dontFixup = true; - meta = with lib; { + meta = { description = "NLTK Data"; homepage = "https://github.com/nltk/nltk_data"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bengsparks happysalada ]; diff --git a/pkgs/tools/text/patchutils/generic.nix b/pkgs/tools/text/patchutils/generic.nix index 9d1da3980742..cd2882fc3849 100644 --- a/pkgs/tools/text/patchutils/generic.nix +++ b/pkgs/tools/text/patchutils/generic.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { -exec sed -i '{}' -e 's|/bin/echo|echo|g' \; ''; - meta = with lib; { + meta = { description = "Tools to manipulate patch files"; homepage = "http://cyberelk.net/tim/software/patchutils"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ artturin ]; }; } diff --git a/pkgs/tools/text/uniscribe/default.nix b/pkgs/tools/text/uniscribe/default.nix index e45f430b44eb..3a7a092c98bb 100644 --- a/pkgs/tools/text/uniscribe/default.nix +++ b/pkgs/tools/text/uniscribe/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { passthru.updateScript = bundlerUpdateScript "uniscribe"; - meta = with lib; { + meta = { description = "Explains Unicode characters/code points: Displays their name, category, and shows compositions"; mainProgram = "uniscribe"; homepage = "https://github.com/janlelis/uniscribe"; - license = licenses.mit; - maintainers = with maintainers; [ kjeremy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kjeremy ]; }; } diff --git a/pkgs/tools/typesetting/kramdown-asciidoc/default.nix b/pkgs/tools/typesetting/kramdown-asciidoc/default.nix index ac2c5d8a5a63..24f6b7dc6fe7 100644 --- a/pkgs/tools/typesetting/kramdown-asciidoc/default.nix +++ b/pkgs/tools/typesetting/kramdown-asciidoc/default.nix @@ -27,12 +27,12 @@ let # updateScript = bundlerUpdateScript "kramdown-asciidoc"; # }; - meta = with lib; { + meta = { description = "Kramdown extension for converting Markdown documents to AsciiDoc"; homepage = "https://asciidoctor.org/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "kramdoc"; }; }; diff --git a/pkgs/tools/typesetting/tex/advi/default.nix b/pkgs/tools/typesetting/tex/advi/default.nix index 037ab1389b91..1a5521f0555e 100644 --- a/pkgs/tools/typesetting/tex/advi/default.nix +++ b/pkgs/tools/typesetting/tex/advi/default.nix @@ -73,10 +73,10 @@ ocamlPackages.buildDunePackage rec { # TODO: redirect /share/advi/tex/latex to tex output compatible with texlive.combine # (requires patching check() in advi-latex-files) - meta = with lib; { + meta = { homepage = "http://advi.inria.fr/"; description = "Unix-platform DVI previewer and a programmable presenter for slides written in LaTeX"; - license = licenses.lgpl21Only; - maintainers = [ maintainers.xworld21 ]; + license = lib.licenses.lgpl21Only; + maintainers = [ lib.maintainers.xworld21 ]; }; } diff --git a/pkgs/tools/typesetting/tex/tetex/default.nix b/pkgs/tools/typesetting/tex/tetex/default.nix index eb561b13b448..f2c6be3a08b6 100644 --- a/pkgs/tools/typesetting/tex/tetex/default.nix +++ b/pkgs/tools/typesetting/tex/tetex/default.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { substituteInPlace ./tetex-src-3.0/configure --replace /usr/bin/install $(type -P install) ''; - meta = with lib; { + meta = { description = "Full-featured (La)TeX distribution"; homepage = "http://www.tug.org/tetex/"; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; hydraPlatforms = [ ]; }; } diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix index f7d4a1b408a9..48b22d07c144 100644 --- a/pkgs/tools/typesetting/tex/texlive/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive/bin.nix @@ -350,17 +350,17 @@ rec { passthru = { inherit version buildInputs; }; - meta = with lib; { + meta = { description = "Basic binaries for TeX Live"; homepage = "http://www.tug.org/texlive"; license = lib.licenses.gpl2Plus; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ veprbl lovek323 raskin jwiegley ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; @@ -557,10 +557,10 @@ rec { ninja ]; - meta = with lib; { + meta = { description = "LUAMETATEX engine is a follow up on LUATEX and is again part of CONTEXT development"; homepage = "https://www.pragma-ade.nl/luametatex-1.htm"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ apfelkuchen6 xworld21 @@ -668,7 +668,7 @@ rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.ctan.org/pkg/pygmentex"; description = "Auxiliary tool for typesetting code listings in LaTeX documents using Pygments"; longDescription = '' @@ -679,8 +679,8 @@ rec { software such as forum systems, wikis or other applications that need to prettify source code. ''; - license = licenses.lppl13c; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.lppl13c; + maintainers = with lib.maintainers; [ romildo ]; }; }; diff --git a/pkgs/tools/typesetting/tikzit/default.nix b/pkgs/tools/typesetting/tikzit/default.nix index 5b5ae38e95e3..e084c56b00a1 100644 --- a/pkgs/tools/typesetting/tikzit/default.nix +++ b/pkgs/tools/typesetting/tikzit/default.nix @@ -35,7 +35,7 @@ mkDerivation { # src/data/tikzlexer.l:29:10: fatal error: tikzparser.parser.hpp: No such file or directory enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Graphical tool for rapidly creating graphs and diagrams using PGF/TikZ"; longDescription = '' TikZiT is a simple GUI editor for graphs and string diagrams. @@ -44,11 +44,11 @@ mkDerivation { For preview support the texlive package 'preview' has to be installed. ''; homepage = "https://tikzit.github.io/"; - license = licenses.gpl3Plus; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; maintainers = [ - maintainers.iblech - maintainers.mgttlinger + lib.maintainers.iblech + lib.maintainers.mgttlinger ]; mainProgram = "tikzit"; }; diff --git a/pkgs/tools/video/swftools/default.nix b/pkgs/tools/video/swftools/default.nix index 85ada19739de..60ab7234fa84 100644 --- a/pkgs/tools/video/swftools/default.nix +++ b/pkgs/tools/video/swftools/default.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Collection of SWF manipulation and creation utilities"; homepage = "http://www.swftools.org/about.html"; - license = licenses.gpl2Only; - maintainers = [ maintainers.koral ]; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.koral ]; platforms = lib.platforms.unix; knownVulnerabilities = [ "CVE-2017-10976" diff --git a/pkgs/tools/virtualization/cloud-init/default.nix b/pkgs/tools/virtualization/cloud-init/default.nix index 4d1d3d212fe7..cff8d291e0a7 100644 --- a/pkgs/tools/virtualization/cloud-init/default.nix +++ b/pkgs/tools/virtualization/cloud-init/default.nix @@ -139,18 +139,18 @@ python3.pkgs.buildPythonApplication rec { updateScript = gitUpdater { ignoredVersions = ".ubuntu.*"; }; }; - meta = with lib; { + meta = { homepage = "https://github.com/canonical/cloud-init"; description = "Provides configuration and customization of cloud instance"; changelog = "https://github.com/canonical/cloud-init/raw/${version}/ChangeLog"; - license = with licenses; [ + license = with lib.licenses; [ asl20 gpl3Plus ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ illustris jfroche ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/tools/virtualization/ec2instanceconnectcli/default.nix b/pkgs/tools/virtualization/ec2instanceconnectcli/default.nix index 4794c17522a1..860a747a7e69 100644 --- a/pkgs/tools/virtualization/ec2instanceconnectcli/default.nix +++ b/pkgs/tools/virtualization/ec2instanceconnectcli/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ec2instanceconnectcli" ]; - meta = with lib; { + meta = { description = "Command Line Interface for AWS EC2 Instance Connect"; homepage = "https://github.com/aws/aws-ec2-instance-connect-cli"; - license = licenses.asl20; - maintainers = with maintainers; [ yurrriq ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ yurrriq ]; }; } diff --git a/pkgs/tools/virtualization/google-compute-engine/default.nix b/pkgs/tools/virtualization/google-compute-engine/default.nix index 0fd448ebb28f..26a2fea8ad55 100644 --- a/pkgs/tools/virtualization/google-compute-engine/default.nix +++ b/pkgs/tools/virtualization/google-compute-engine/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "google_compute_engine" ]; - meta = with lib; { + meta = { description = "Google Compute Engine tools and services"; homepage = "https://github.com/GoogleCloudPlatform/compute-image-packages"; - license = licenses.asl20; - maintainers = with maintainers; [ zimbatm ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zimbatm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/virtualization/supermin/default.nix b/pkgs/tools/virtualization/supermin/default.nix index ffc624d59463..51b307e88861 100644 --- a/pkgs/tools/virtualization/supermin/default.nix +++ b/pkgs/tools/virtualization/supermin/default.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs src/bin2c.pl ''; - meta = with lib; { + meta = { homepage = "https://libguestfs.org/supermin.1.html"; description = "Tool for creating and building supermin appliances"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "supermin"; }; }) diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix index e034c781aa36..bc5b3bb649ae 100644 --- a/pkgs/top-level/lua-packages.nix +++ b/pkgs/top-level/lua-packages.nix @@ -145,13 +145,13 @@ rec { runHook postInstall ''; - meta = with lib; { + meta = { # The package does not build with lua 5.4 or luaJIT broken = luaAtLeast "5.4" || isLuaJIT; description = "Lua module for PAM authentication"; homepage = "https://github.com/devurandom/lua-pam"; - license = licenses.mit; - maintainers = with maintainers; [ traxys ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ traxys ]; }; } ) { }; @@ -171,10 +171,10 @@ rec { propagatedBuildInputs = [ lua-resty-lrucache ]; - meta = with lib; { + meta = { description = "New FFI-based API for lua-nginx-module"; homepage = "https://github.com/openresty/lua-resty-core"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } @@ -193,10 +193,10 @@ rec { sha256 = "sha256-G2l4Zo9Xm/m4zRfxrgzEvRE5LMO+UuX3kd7FwlCnxDA="; }; - meta = with lib; { + meta = { description = "Lua-land LRU Cache based on LuaJIT FFI"; homepage = "https://github.com/openresty/lua-resty-lrucache"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } @@ -238,13 +238,13 @@ rec { ); ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Lightweight UNIX I/O and POSIX binding for Lua"; homepage = "https://www.gitano.org.uk/luxio/"; - license = licenses.mit; - maintainers = with maintainers; [ richardipsum ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ richardipsum ]; + platforms = lib.platforms.unix; }; } ) { }; @@ -274,17 +274,17 @@ rec { printf "package.path = '$out/lib/lua/${lua.luaversion}/?/init.lua;' .. package.path\nreturn require((...) .. '.init')\n" > $out/lib/lua/${lua.luaversion}/vicious.lua ''; - meta = with lib; { + meta = { description = "Modular widget library for the awesome window manager"; homepage = "https://vicious.rtfd.io"; changelog = "https://vicious.rtfd.io/en/v${version}/changelog.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ makefu mic92 McSinyx ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } ) { }; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 72b09d91b201..c463614fe75d 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -27256,9 +27256,9 @@ with self; url = "mirror://cpan/authors/id/J/JM/JMACFARLA/Parse-Win32Registry-1.1.tar.gz"; hash = "sha256-wWOyAr5q17WPSEZJT/crjJqXloPKmU5DgOmsZWTcBbo="; }; - meta = with lib; { + meta = { description = "Module for parsing Windows Registry files"; - license = with licenses; [ + license = with lib.licenses; [ artistic1 gpl1Only ];